diff --git a/.idea/misc.xml b/.idea/misc.xml index 53624c9..dd7d771 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,5 +1,8 @@ + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - { + "keyToString": { + "Makefile 타깃.all.executor": "Run", + "Makefile 타깃.gen/onvif.h.executor": "Run", + "Makefile 타깃.onvif-client.exe.executor": "Run", + "Makefile 타깃.onvif-server.exe.executor": "Run", + "ModuleVcsDetector.initialDetectionPerformed": "true", + "RunOnceActivity.RadMigrateCodeStyle": "true", + "RunOnceActivity.ShowReadmeOnStart": "true", + "RunOnceActivity.cidr.known.project.marker": "true", + "RunOnceActivity.git.unshallow": "true", + "RunOnceActivity.readMode.enableVisualFormatting": "true", + "SHELLCHECK.PATH": "/home/cityhunter/.local/share/JetBrains/CLion2025.1/Shell Script/shellcheck", + "cf.first.check.clang-format": "false", + "cidr.known.project.marker": "true", + "git-widget-placeholder": "main", + "last_opened_file_path": "/home/cityhunter/CLionProjects/v4l2onvif", + "node.js.detected.package.eslint": "true", + "node.js.detected.package.tslint": "true", + "node.js.selected.package.eslint": "(autodetect)", + "node.js.selected.package.tslint": "(autodetect)", + "nodejs_package_manager_path": "npm", + "settings.editor.selected.configurable": "MakefileSettings", + "vue.rearranger.settings.migration": "true" } -}]]> - +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - @@ -250,6 +597,24 @@ + + + + + + + + + + + + + + + + + + @@ -268,7 +633,14 @@ + + + + + + + @@ -284,6 +656,7 @@ + @@ -300,8 +673,20 @@ - + + + + + + + @@ -330,4 +715,8 @@ + + + \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index fa32877..dda2573 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,188 +1,169 @@ +# 최소 CMake 버전 정의 cmake_minimum_required(VERSION 3.10) -project(onvif) +project(v4l2onvif) -# gSOAP 설정 -set(GSOAP_PREFIX "/usr/local" CACHE PATH "gSOAP installation prefix") +# GSOAP 기본 설정 +set(GSOAP_PREFIX "/usr/local") +set(GSOAP_BIN "${GSOAP_PREFIX}/bin") +set(GSOAP_PLUGINS "${GSOAP_PREFIX}/share/gsoap/plugin") set(GSOAP_BASE "${GSOAP_PREFIX}/share/gsoap") -set(GSOAP_PLUGINS "${GSOAP_BASE}/plugin") -set(GSOAP_IMPORT "${GSOAP_BASE}/import") - -# SOAP 소스 파일 -file(GLOB SOAP_SOURCES - "gen/soapC_*.cpp" - "gen/soap*.cpp" - "gen/stdsoap2.cpp" -) - -# WSSE 소스 -set(WSSE_SOURCES - ${GSOAP_PLUGINS}/wsseapi.c - ${GSOAP_PLUGINS}/smdevp.c - ${GSOAP_PLUGINS}/mecevp.c - ${GSOAP_BASE}/custom/struct_timeval.c -) -set_source_files_properties(${WSSE_SOURCES} PROPERTIES LANGUAGE CXX) - -# ONVIF 서비스 구현 소스 -file(GLOB SERVICE_SOURCES - "src/ServiceDevice.cpp" - "src/ServiceMedia.cpp" - "src/ServicePTZ.cpp" - "src/ServiceImaging.cpp" - "src/ServiceEvent.cpp" - "src/ServiceIO.cpp" - "src/ServiceAnalytics.cpp" - "src/ServiceRecording.cpp" - "src/ServiceReplay.cpp" - "src/ServiceReceiver.cpp" - "src/ServiceDisplay.cpp" -) - -# SOAP 라이브러리 -add_library(soap_lib STATIC - ${SOAP_SOURCES} - ${SERVICE_SOURCES} # 서비스 구현 추가 -) -target_include_directories(soap_lib PUBLIC - ${CMAKE_SOURCE_DIR}/gen - ${CMAKE_SOURCE_DIR}/inc - ${GSOAP_PREFIX}/include - ${GSOAP_PLUGINS} - ${GSOAP_IMPORT} -) -# onvif server 라이브러리 -file(GLOB SERVER_SOURCES "src/server*.cpp") -add_library(onvif_server STATIC ${SERVER_SOURCES}) -target_link_libraries(onvif_server PUBLIC soap_lib) - -# 실행 파일 -add_executable(onvif-server - src/onvif-server.cpp - src/onvif_impl.cpp - ${WSSE_SOURCES} +# C++ 표준 및 빌드 플래그 설정 +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g2 -I inc -I ws-discovery/gsoap/ -I gen -I ${GSOAP_PREFIX}/include -I ${GSOAP_PLUGINS} -DWITH_DOM -DWITH_OPENSSL -DSOAP_PURE_VIRTUAL -fpermissive -pthread") +set(CMAKE_EXE_LINKER_FLAGS "-static-libstdc++ -static-libgcc -L${GSOAP_PREFIX}/lib -ldl -lpthread") + +# SYSROOT 환경 변수 확인 +set(SYSROOT $ENV{CXX_SYSROOT}) +if (NOT SYSROOT) + execute_process(COMMAND ${CMAKE_CXX_COMPILER} --print-sysroot OUTPUT_VARIABLE SYSROOT OUTPUT_STRIP_TRAILING_WHITESPACE) +endif() + +# 버전 관리 +find_package(Git REQUIRED) +execute_process( + COMMAND git describe --tags --always --dirty + OUTPUT_VARIABLE VERSION + OUTPUT_STRIP_TRAILING_WHITESPACE ) +add_compile_definitions(VERSION="${VERSION}") -target_link_libraries(onvif-server - PRIVATE - onvif_server - soap_lib - wsdd - v4l2rtsp - v4l2cpp - liveMedia - groupsock - BasicUsageEnvironment - UsageEnvironment - gsoapssl++ - ssl - crypto - z - pthread - dl +# include 디렉토리 설정 +include_directories( + ${CMAKE_SOURCE_DIR}/inc + ${GEN_DIR} + ${CMAKE_SOURCE_DIR}/ws-discovery/gsoap + ${GSOAP_PREFIX}/include + ${GSOAP_PLUGINS} + gen + v4l2rtspserver/inc + v4l2rtspserver/libv4l2cpp/inc + v4l2rtspserver/live/groupsock/include + v4l2rtspserver/live/liveMedia/include + v4l2rtspserver/live/UsageEnvironment/include + v4l2rtspserver/live/BasicUsageEnvironment/include + v4l2rtspserver/src + v4l2rtspserver/libv4l2cpp/src + v4l2rtspserver/libv4l2cpp/inc ) +link_directories(${GSOAP_PREFIX}/lib) -# gSOAP 생성 코드 -file(MAKE_DIRECTORY gen) -add_custom_command( - OUTPUT gen/onvif.h - COMMAND ${GSOAP_PREFIX}/bin/wsdl2h -d -Ntev -W -L -o gen/onvif.h ${CMAKE_SOURCE_DIR}/wsdl/* - COMMAND ${GSOAP_PREFIX}/bin/soapcpp2 -2jx gen/onvif.h -I${GSOAP_IMPORT} -I${GSOAP_BASE} -Iinc -dgen -f1000 -w - DEPENDS ${CMAKE_SOURCE_DIR}/wsdl/* +# 컴파일 옵션 +add_compile_options( + -std=c++11 -g2 -fpermissive -pthread + -DWITH_DOM -DWITH_OPENSSL -DSOAP_PURE_VIRTUAL ) -# 버전 설정 -execute_process( - COMMAND git describe --tags --always --dirty - OUTPUT_VARIABLE VERSION - OUTPUT_STRIP_TRAILING_WHITESPACE +# GSOAP 관련 파일 설정 +file(GLOB WSSE_SRC + "${GSOAP_PLUGINS}/wsseapi.c" + "${GSOAP_PLUGINS}/smdevp.c" + "${GSOAP_PLUGINS}/mecevp.c" + "${GSOAP_PLUGINS}/wsaapi.c" + "${GSOAP_BASE}/custom/struct_timeval.c" ) -add_definitions(-DVERSION="${VERSION}") - -# 컴파일러 옵션 -set(CMAKE_CXX_STANDARD 11) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g2 -fpermissive") -# WSSE 소스를 C++로 컴파일하도록 설정 +# C 파일의 속성을 C++로 설정 set_source_files_properties( - ${GSOAP_PLUGINS}/wsseapi.c - ${GSOAP_PLUGINS}/smdevp.c - ${GSOAP_PLUGINS}/mecevp.c - ${GSOAP_BASE}/custom/struct_timeval.c + ${WSSE_SRC} PROPERTIES LANGUAGE CXX ) -# 포함 디렉토리 -include_directories( - inc - ws-discovery/gsoap - gen - ${GSOAP_PREFIX}/include - ${GSOAP_PLUGINS} +# SOAP 관련 파일 +file(GLOB SOAP_SRC "gen/soapC_*.cpp") +file(GLOB SERVER_OBJ + "gen/soap*.o" ) - -# 정의 -add_definitions( - -DWITH_DOM - -DWITH_OPENSSL - -DSOAP_PURE_VIRTUAL +file(GLOB CLIENT_OBJ + "gen/soap*.o" ) +file(GLOB ONVIF_SRC "src/server*.cpp") -# ws-discovery -add_custom_command( - OUTPUT ${CMAKE_BINARY_DIR}/libwsdd.a - #COMMAND git submodule init ws-discovery - #COMMAND git submodule update ws-discovery - COMMAND make -C ws-discovery/gsoap libwsdd.a - COMMAND cp ws-discovery/gsoap/libwsdd.a ${CMAKE_BINARY_DIR} +# RTSP 및 V4L2 라이브러리 소스 파일 +file(GLOB V4L2RTSP_SRC + ${CMAKE_SOURCE_DIR}/v4l2rtspserver/src/*.cpp ) -add_custom_target(wsdd_build DEPENDS ${CMAKE_BINARY_DIR}/libwsdd.a) -add_library(wsdd STATIC IMPORTED) -set_target_properties(wsdd PROPERTIES IMPORTED_LOCATION ${CMAKE_BINARY_DIR}/libwsdd.a) +file(GLOB V4L2CPP_SRC + ${CMAKE_SOURCE_DIR}/v4l2rtspserver/libv4l2cpp/src/*.cpp +) + +# 라이브러리 생성 +add_library(libserver STATIC ${SERVER_OBJ} ${SOAP_SRC}) +add_library(libclient STATIC ${CLIENT_OBJ} ${SOAP_SRC} gen/soapNotificationConsumerBindingService.cpp) +add_library(libonvif STATIC ${ONVIF_SRC}) -# v4l2rtspserver +# ws-discovery 설정 +set(WSD_GSOAP_DIR ${CMAKE_SOURCE_DIR}/ws-discovery/gsoap) + +# libwsdd.a 생성 명령 추가 add_custom_command( - OUTPUT ${CMAKE_BINARY_DIR}/liblibv4l2rtspserver.a - COMMAND git submodule update --recursive --init v4l2rtspserver - COMMAND cd v4l2rtspserver && cmake -DALSA=OFF . && make libv4l2rtspserver - COMMAND cp v4l2rtspserver/liblibv4l2rtspserver.a ${CMAKE_BINARY_DIR} + OUTPUT ${CMAKE_BINARY_DIR}/libwsdd.a + COMMAND git submodule init ws-discovery + COMMAND git submodule update ws-discovery + COMMAND ${CMAKE_MAKE_PROGRAM} -C ${WSD_GSOAP_DIR} libwsdd.a + COMMAND ${CMAKE_COMMAND} -E copy ${WSD_GSOAP_DIR}/libwsdd.a ${CMAKE_BINARY_DIR}/libwsdd.a + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMENT "Building libwsdd.a from ${WSD_GSOAP_DIR}" + VERBATIM ) -add_custom_target(v4l2rtsp_build DEPENDS ${CMAKE_BINARY_DIR}/liblibv4l2rtspserver.a) -add_library(v4l2rtsp STATIC IMPORTED) -set_target_properties(v4l2rtsp PROPERTIES IMPORTED_LOCATION ${CMAKE_BINARY_DIR}/liblibv4l2rtspserver.a) - -# v4l2cpp -add_library(v4l2cpp STATIC IMPORTED) -set_target_properties(v4l2cpp PROPERTIES - IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/v4l2rtspserver/libv4l2cpp/liblibv4l2cpp.a + +# libwsdd 타겟 생성 +add_custom_target(libwsdd DEPENDS ${CMAKE_BINARY_DIR}/libwsdd.a) + +# onvif-server 실행 파일 생성 +add_executable(onvif-server + src/onvif-server.o + src/onvif_impl.o + ${WSSE_SRC} + gen/soapNotificationConsumerBindingProxy.o + gen/soapDisplayBindingProxy.o + ${V4L2RTSP_SRC} + ${V4L2CPP_SRC} ) +add_dependencies(onvif-server libwsdd) -# live555 설정 -set(LIVE_DIR ${CMAKE_SOURCE_DIR}/v4l2rtspserver/live) -include_directories( - ${LIVE_DIR}/groupsock/include - ${LIVE_DIR}/liveMedia/include - ${LIVE_DIR}/UsageEnvironment/include - ${LIVE_DIR}/BasicUsageEnvironment/include - v4l2rtspserver/inc - v4l2rtspserver/libv4l2cpp/inc +target_link_libraries(onvif-server + PRIVATE + libserver + libclient + libonvif + gsoapssl++ + gsoap++ + ssl + crypto + dl + pthread + liveMedia + groupsock + BasicUsageEnvironment + UsageEnvironment + z + ${CMAKE_BINARY_DIR}/libwsdd.a ) -# 빌드 순서 설정 -add_dependencies(onvif-server wsdd_build v4l2rtsp_build) +# onvif-client 실행 파일 생성 +add_executable(onvif-client + src/onvif-client.o + ${WSSE_SRC} +) -add_executable(onvif-client src/onvif-client.cpp ${WSSE_SOURCES} ${GSOAP_PLUGINS}/wsaapi.c) target_link_libraries(onvif-client - onvif_server + PRIVATE + libclient + libonvif gsoapssl++ + gsoap++ ssl crypto - z - pthread dl + pthread + liveMedia + groupsock + BasicUsageEnvironment + UsageEnvironment + z ) -# 설치 -install(TARGETS onvif-server onvif-client - RUNTIME DESTINATION bin -) \ No newline at end of file +# 설치 경로 설정 +install(TARGETS onvif-server onvif-client DESTINATION ${CMAKE_INSTALL_PREFIX}/bin) \ No newline at end of file diff --git a/Makefile b/Makefile index bef1094..afa5fcf 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ all: gen/onvif.h libwsdd.a liblibv4l2rtspserver.a onvif-server.exe onvif-client. gen/onvif.h: $(wildcard wsdl/*) mkdir -p gen - $(GSOAP_BIN)/wsdl2h -d -Ntev -W -L -o $@ $^ + $(GSOAP_BIN)/wsdl2h -c++ -d -Ntev -W -L -o $@ $^ $(GSOAP_BIN)/soapcpp2 -2jx $@ -I $(GSOAP_BASE)/import -I $(GSOAP_BASE) -I inc -d gen -f1000 -w || : make diff --git a/Makefile_back b/Makefile_back index df9d5cd..bef1094 100644 --- a/Makefile_back +++ b/Makefile_back @@ -87,4 +87,4 @@ clean: install: mkdir -p $(DESTDIR) install -D -m 0755 onvif-server.exe $(DESTDIR) - install -D -m 0755 onvif-client.exe $(DESTDIR) + install -D -m 0755 onvif-client.exe $(DESTDIR) \ No newline at end of file diff --git a/README.md b/README.md index b84c042..3e73225 100644 --- a/README.md +++ b/README.md @@ -7,40 +7,41 @@ # v4l2-onvif - It is a try to implements an ONVIF server : +이 프로젝트는 ONVIF 서버를 구현하려는 시도입니다: - * for V4L2 capture devices (NVT/NVS), - * for V4L2 output devices (NVD). - - The web services data binding is generated using [gSOAP](http://www.genivia.com/). + * V4L2 장치의 **캡처 장치**용 (NVT/NVS), + * V4L2 장치의 **출력 장치**용 (NVD). -## Build +웹서비스 데이터 바인딩은 [gSOAP](http://www.genivia.com/)을 사용하여 생성됩니다. - make +## 빌드 방법 -## Usage - onvif-server.exe [-H http port] [-R rtsp port] [-u username] [-p password] [-i v4l2 input device] [-o v4l2 output device] + make +## 사용법 +### 서버 실행 + onvif-server.exe [-H http port] [-R rtsp port] [-u username] [-p password] [-i v4l2 input device] [-o v4l2 output device] +### 클라이언트 실행 onvif-client.exe [-u username] [-p password] url -Using Docker image -=============== -You can start the application using the docker image : +## Docker 이미지를 사용하여 실행 +Docker 이미지를 사용하여 애플리케이션을 시작할 수 있습니다: +### 기본 실행 docker run -p 8080:8080 -it mpromonet/v4l2onvif -You can expose V4L2 devices from your host using : - +### V4L2 장치를 호스트에서 컨테이너로 노출 docker run --device=/dev/video0 -p 8080:8080 -it mpromonet/v4l2onvif -The container entry point is the onvif-server.exe application, then you can : +컨테이너의 기본 엔트리포인트는 애플리케이션입니다. 이를 통해 다음 작업을 실행할 수 있습니다: `onvif-server.exe` + +### 도움말 확인 -* get the help using : docker run -it mpromonet/v4l2onvif -h -* run the container specifying some paramaters : +### 특정 매개변수를 전달하여 컨테이너 실행 docker run --device=/dev/video0 -p 8080:8080 -it mpromonet/v4l2onvif -uadmin -padmin diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt deleted file mode 100644 index f671c0d..0000000 --- a/build/CMakeCache.txt +++ /dev/null @@ -1,385 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/cityhunter/CLionProjects/v4l2onvif/build -# It was generated by CMake: /usr/local/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/pkgRedirects - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=onvif - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//gSOAP installation prefix -GSOAP_PREFIX:PATH=/usr/local - -//Value Computed by CMake -onvif_BINARY_DIR:STATIC=/home/cityhunter/CLionProjects/v4l2onvif/build - -//Value Computed by CMake -onvif_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -onvif_SOURCE_DIR:STATIC=/home/cityhunter/CLionProjects/v4l2onvif - -//Dependencies for the target -onvif_server_LIB_DEPENDS:STATIC=general;soap_lib; - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/cityhunter/CLionProjects/v4l2onvif/build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=0 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/local/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/cityhunter/CLionProjects/v4l2onvif -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//Name of CMakeLists files to read -CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/local/share/cmake-4.0 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 - diff --git a/build/CMakeFiles/4.0.1/CMakeCXXCompiler.cmake b/build/CMakeFiles/4.0.1/CMakeCXXCompiler.cmake deleted file mode 100644 index 9a0a739..0000000 --- a/build/CMakeFiles/4.0.1/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,103 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "13.3.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_STANDARD_LATEST "23") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -set(CMAKE_CXX26_COMPILE_FEATURES "") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-13") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld") -set(CMAKE_CXX_COMPILER_LINKER_ID "GNU") -set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.42) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) -set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) -set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") - - - diff --git a/build/CMakeFiles/4.0.1/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/4.0.1/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 0e5f034..0000000 Binary files a/build/CMakeFiles/4.0.1/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/build/CMakeFiles/4.0.1/CMakeSystem.cmake b/build/CMakeFiles/4.0.1/CMakeSystem.cmake deleted file mode 100644 index fc21666..0000000 --- a/build/CMakeFiles/4.0.1/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-6.11.0-24-generic") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "6.11.0-24-generic") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-6.11.0-24-generic") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "6.11.0-24-generic") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/4.0.1/CompilerIdC/a.out b/build/CMakeFiles/4.0.1/CompilerIdC/a.out deleted file mode 100755 index ecc315e..0000000 Binary files a/build/CMakeFiles/4.0.1/CompilerIdC/a.out and /dev/null differ diff --git a/build/CMakeFiles/4.0.1/CompilerIdCXX/a.out b/build/CMakeFiles/4.0.1/CompilerIdCXX/a.out deleted file mode 100755 index c8ced32..0000000 Binary files a/build/CMakeFiles/4.0.1/CompilerIdCXX/a.out and /dev/null differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml index 301a7eb..5c0d890 100644 --- a/build/CMakeFiles/CMakeConfigureLog.yaml +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -5,7 +5,7 @@ events: kind: "message-v1" backtrace: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineSystem.cmake:205 (message)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | The system is: Linux - 6.11.0-24-generic - x86_64 - @@ -14,7 +14,7 @@ events: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. Compiler: /usr/bin/cc @@ -36,7 +36,7 @@ events: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler: /usr/bin/c++ @@ -57,12 +57,12 @@ events: backtrace: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" checks: - "Detecting C compiler ABI info" directories: - source: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-9JBwmj" - binary: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-9JBwmj" + source: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-oTb775" + binary: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-oTb775" cmakeVariables: CMAKE_C_FLAGS: "" CMAKE_C_FLAGS_DEBUG: "-g" @@ -71,13 +71,13 @@ events: variable: "CMAKE_C_ABI_COMPILED" cached: true stdout: | - Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-9JBwmj' + Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-oTb775' - Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_14168/fast - /usr/bin/gmake -f CMakeFiles/cmTC_14168.dir/build.make CMakeFiles/cmTC_14168.dir/build - gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-9JBwmj' - Building C object CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o - /usr/bin/cc -v -o CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c + Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_dac7c/fast + /usr/bin/gmake -f CMakeFiles/cmTC_dac7c.dir/build.make CMakeFiles/cmTC_dac7c.dir/build + gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-oTb775' + Building C object CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -v -o CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c Using built-in specs. COLLECT_GCC=/usr/bin/cc OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa @@ -87,8 +87,8 @@ events: Thread model: posix Supported LTO compression algorithms: zlib zstd gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_14168.dir/' - /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_14168.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccQeAWed.s + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_dac7c.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_dac7c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccfURTTQ.s GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu) compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP @@ -105,14 +105,14 @@ events: /usr/include End of search list. Compiler executable checksum: 38987c28e967c64056a6454abdef726e - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_14168.dir/' - as -v --64 -o CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o /tmp/ccQeAWed.s + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_dac7c.dir/' + as -v --64 -o CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o /tmp/ccfURTTQ.s GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.' - Linking C executable cmTC_14168 - /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_14168.dir/link.txt --verbose=1 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_dac7c + /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dac7c.dir/link.txt --verbose=1 Using built-in specs. COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper @@ -125,14 +125,14 @@ events: gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_14168' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_14168.' - /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyl9PCt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_14168 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_dac7c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_dac7c.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyKK4cL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_dac7c /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o collect2 version 13.3.0 - /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyl9PCt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_14168 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyKK4cL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_dac7c /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o GNU ld (GNU Binutils for Ubuntu) 2.42 - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_14168' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_14168.' - /usr/bin/cc -v -Wl,-v CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o -o cmTC_14168 - gmake[1]: Leaving directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-9JBwmj' + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_dac7c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_dac7c.' + /usr/bin/cc -v -Wl,-v CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o -o cmTC_dac7c + gmake[1]: Leaving directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-oTb775' exitCode: 0 - @@ -140,7 +140,7 @@ events: backtrace: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Parsed C implicit include dir info: rv=done found start of include info @@ -162,18 +162,18 @@ events: backtrace: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Parsed C implicit link information: link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] - ignore line: [Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-9JBwmj'] + ignore line: [Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-oTb775'] ignore line: [] - ignore line: [Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_14168/fast] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_14168.dir/build.make CMakeFiles/cmTC_14168.dir/build] - ignore line: [gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-9JBwmj'] - ignore line: [Building C object CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c] + ignore line: [Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_dac7c/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_dac7c.dir/build.make CMakeFiles/cmTC_dac7c.dir/build] + ignore line: [gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-oTb775'] + ignore line: [Building C object CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] @@ -183,8 +183,8 @@ events: ignore line: [Thread model: posix] ignore line: [Supported LTO compression algorithms: zlib zstd] ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_14168.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_14168.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccQeAWed.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_dac7c.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-4.0/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_dac7c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccfURTTQ.s] ignore line: [GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] ignore line: [] @@ -201,14 +201,14 @@ events: ignore line: [ /usr/include] ignore line: [End of search list.] ignore line: [Compiler executable checksum: 38987c28e967c64056a6454abdef726e] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_14168.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o /tmp/ccQeAWed.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_dac7c.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o /tmp/ccfURTTQ.s] ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_14168] - ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_14168.dir/link.txt --verbose=1] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_dac7c] + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dac7c.dir/link.txt --verbose=1] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] @@ -221,13 +221,13 @@ events: ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_14168' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_14168.'] - link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyl9PCt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_14168 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_dac7c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_dac7c.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyKK4cL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_dac7c /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccyl9PCt.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccyKK4cL.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -245,7 +245,7 @@ events: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_14168] ==> ignore + arg [cmTC_dac7c] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] @@ -258,7 +258,7 @@ events: arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] arg [-v] ==> ignore - arg [CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o] ==> ignore arg [-lgcc] ==> lib [gcc] arg [--push-state] ==> ignore arg [--as-needed] ==> ignore @@ -273,7 +273,7 @@ events: arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ignore line: [collect2 version 13.3.0] - ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyl9PCt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_14168 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_14168.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccyKK4cL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_dac7c /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_dac7c.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] linker tool for 'C': /usr/bin/ld collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] @@ -298,7 +298,7 @@ events: - "/usr/local/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:264 (cmake_determine_linker_id)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Running the C compiler's linker: "/usr/bin/ld" "-v" GNU ld (GNU Binutils for Ubuntu) 2.42 @@ -307,12 +307,12 @@ events: backtrace: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" checks: - "Detecting CXX compiler ABI info" directories: - source: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-XiUd0f" - binary: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-XiUd0f" + source: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-yVMMUu" + binary: "/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-yVMMUu" cmakeVariables: CMAKE_CXX_FLAGS: "" CMAKE_CXX_FLAGS_DEBUG: "-g" @@ -322,13 +322,13 @@ events: variable: "CMAKE_CXX_ABI_COMPILED" cached: true stdout: | - Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-XiUd0f' + Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-yVMMUu' - Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_5b63e/fast - /usr/bin/gmake -f CMakeFiles/cmTC_5b63e.dir/build.make CMakeFiles/cmTC_5b63e.dir/build - gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-XiUd0f' - Building CXX object CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o - /usr/bin/c++ -v -o CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp + Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_3aab7/fast + /usr/bin/gmake -f CMakeFiles/cmTC_3aab7.dir/build.make CMakeFiles/cmTC_3aab7.dir/build + gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-yVMMUu' + Building CXX object CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -v -o CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp Using built-in specs. COLLECT_GCC=/usr/bin/c++ OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa @@ -338,8 +338,8 @@ events: Thread model: posix Supported LTO compression algorithms: zlib zstd gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5b63e.dir/' - /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_5b63e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc1HxtPD.s + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3aab7.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_3aab7.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccNLLoav.s GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu) compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP @@ -360,14 +360,14 @@ events: /usr/include End of search list. Compiler executable checksum: c81c05345ce537099dafd5580045814a - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5b63e.dir/' - as -v --64 -o CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc1HxtPD.s + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3aab7.dir/' + as -v --64 -o CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccNLLoav.s GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.' - Linking CXX executable cmTC_5b63e - /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5b63e.dir/link.txt --verbose=1 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_3aab7 + /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3aab7.dir/link.txt --verbose=1 Using built-in specs. COLLECT_GCC=/usr/bin/c++ COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper @@ -380,14 +380,14 @@ events: gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5b63e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_5b63e.' - /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGzxOoX.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5b63e /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_3aab7' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_3aab7.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cctvsSKA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_3aab7 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o collect2 version 13.3.0 - /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGzxOoX.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5b63e /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cctvsSKA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_3aab7 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o GNU ld (GNU Binutils for Ubuntu) 2.42 - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5b63e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_5b63e.' - /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5b63e - gmake[1]: Leaving directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-XiUd0f' + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_3aab7' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_3aab7.' + /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_3aab7 + gmake[1]: Leaving directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-yVMMUu' exitCode: 0 - @@ -395,7 +395,7 @@ events: backtrace: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Parsed CXX implicit include dir info: rv=done found start of include info @@ -423,18 +423,18 @@ events: backtrace: - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Parsed CXX implicit link information: link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] - ignore line: [Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-XiUd0f'] + ignore line: [Change Dir: '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-yVMMUu'] ignore line: [] - ignore line: [Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_5b63e/fast] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_5b63e.dir/build.make CMakeFiles/cmTC_5b63e.dir/build] - ignore line: [gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-XiUd0f'] - ignore line: [Building CXX object CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_3aab7/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_3aab7.dir/build.make CMakeFiles/cmTC_3aab7.dir/build] + ignore line: [gmake[1]: Entering directory '/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/CMakeScratch/TryCompile-yVMMUu'] + ignore line: [Building CXX object CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/c++] ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] @@ -444,8 +444,8 @@ events: ignore line: [Thread model: posix] ignore line: [Supported LTO compression algorithms: zlib zstd] ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5b63e.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_5b63e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc1HxtPD.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3aab7.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-4.0/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_3aab7.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccNLLoav.s] ignore line: [GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] ignore line: [] @@ -466,14 +466,14 @@ events: ignore line: [ /usr/include] ignore line: [End of search list.] ignore line: [Compiler executable checksum: c81c05345ce537099dafd5580045814a] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5b63e.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc1HxtPD.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3aab7.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccNLLoav.s] ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_5b63e] - ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5b63e.dir/link.txt --verbose=1] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_3aab7] + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3aab7.dir/link.txt --verbose=1] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/c++] ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] @@ -486,13 +486,13 @@ events: ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_5b63e' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_5b63e.'] - link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGzxOoX.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5b63e /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_3aab7' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_3aab7.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cctvsSKA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_3aab7 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccGzxOoX.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cctvsSKA.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -510,7 +510,7 @@ events: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_5b63e] ==> ignore + arg [cmTC_3aab7] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] @@ -523,7 +523,7 @@ events: arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] arg [-v] ==> ignore - arg [CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [-lgcc_s] ==> lib [gcc_s] @@ -534,7 +534,7 @@ events: arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ignore line: [collect2 version 13.3.0] - ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGzxOoX.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_5b63e /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_5b63e.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cctvsSKA.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_3aab7 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. -v CMakeFiles/cmTC_3aab7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] linker tool for 'CXX': /usr/bin/ld collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] @@ -559,7 +559,7 @@ events: - "/usr/local/share/cmake-4.0/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" - "/usr/local/share/cmake-4.0/Modules/CMakeDetermineCompilerABI.cmake:264 (cmake_determine_linker_id)" - "/usr/local/share/cmake-4.0/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" + - "CMakeLists.txt:3 (project)" message: | Running the CXX compiler's linker: "/usr/bin/ld" "-v" GNU ld (GNU Binutils for Ubuntu) 2.42 diff --git a/build/CMakeFiles/CMakeRuleHashes.txt b/build/CMakeFiles/CMakeRuleHashes.txt deleted file mode 100644 index 6cfea73..0000000 --- a/build/CMakeFiles/CMakeRuleHashes.txt +++ /dev/null @@ -1,5 +0,0 @@ -# Hashes of file build rules. -686c8c0041e54cd5f2af43d7b731ee18 CMakeFiles/v4l2rtsp_build -686c8c0041e54cd5f2af43d7b731ee18 CMakeFiles/wsdd_build -52af219526357d0d13b1fefbc5dcc133 liblibv4l2rtspserver.a -248b4e86c7be7a97e19aefd7cf60a7db libwsdd.a diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake index 4847140..c13f275 100644 --- a/build/CMakeFiles/Makefile.cmake +++ b/build/CMakeFiles/Makefile.cmake @@ -98,6 +98,9 @@ set(CMAKE_MAKEFILE_DEPENDS "/usr/local/share/cmake-4.0/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" "/usr/local/share/cmake-4.0/Modules/Compiler/zOS-C-DetermineCompiler.cmake" "/usr/local/share/cmake-4.0/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-4.0/Modules/FindGit.cmake" + "/usr/local/share/cmake-4.0/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/local/share/cmake-4.0/Modules/FindPackageMessage.cmake" "/usr/local/share/cmake-4.0/Modules/Internal/CMakeCLinkerInformation.cmake" "/usr/local/share/cmake-4.0/Modules/Internal/CMakeCXXLinkerInformation.cmake" "/usr/local/share/cmake-4.0/Modules/Internal/CMakeCommonLinkerInformation.cmake" @@ -141,10 +144,10 @@ set(CMAKE_MAKEFILE_PRODUCTS # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/soap_lib.dir/DependInfo.cmake" - "CMakeFiles/onvif_server.dir/DependInfo.cmake" + "CMakeFiles/libserver.dir/DependInfo.cmake" + "CMakeFiles/libclient.dir/DependInfo.cmake" + "CMakeFiles/libonvif.dir/DependInfo.cmake" + "CMakeFiles/libwsdd.dir/DependInfo.cmake" "CMakeFiles/onvif-server.dir/DependInfo.cmake" - "CMakeFiles/wsdd_build.dir/DependInfo.cmake" - "CMakeFiles/v4l2rtsp_build.dir/DependInfo.cmake" "CMakeFiles/onvif-client.dir/DependInfo.cmake" ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 deleted file mode 100644 index b6b73f1..0000000 --- a/build/CMakeFiles/Makefile2 +++ /dev/null @@ -1,298 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/cityhunter/CLionProjects/v4l2onvif - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/cityhunter/CLionProjects/v4l2onvif/build - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/soap_lib.dir/all -all: CMakeFiles/onvif_server.dir/all -all: CMakeFiles/onvif-server.dir/all -all: CMakeFiles/onvif-client.dir/all -.PHONY : all - -# The main recursive "codegen" target. -codegen: CMakeFiles/soap_lib.dir/codegen -codegen: CMakeFiles/onvif_server.dir/codegen -codegen: CMakeFiles/onvif-server.dir/codegen -codegen: CMakeFiles/onvif-client.dir/codegen -.PHONY : codegen - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/soap_lib.dir/clean -clean: CMakeFiles/onvif_server.dir/clean -clean: CMakeFiles/onvif-server.dir/clean -clean: CMakeFiles/wsdd_build.dir/clean -clean: CMakeFiles/v4l2rtsp_build.dir/clean -clean: CMakeFiles/onvif-client.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/soap_lib.dir - -# All Build rule for target. -CMakeFiles/soap_lib.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73 "Built target soap_lib" -.PHONY : CMakeFiles/soap_lib.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/soap_lib.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 43 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/soap_lib.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 0 -.PHONY : CMakeFiles/soap_lib.dir/rule - -# Convenience name for target. -soap_lib: CMakeFiles/soap_lib.dir/rule -.PHONY : soap_lib - -# codegen rule for target. -CMakeFiles/soap_lib.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73 "Finished codegen for target soap_lib" -.PHONY : CMakeFiles/soap_lib.dir/codegen - -# clean rule for target. -CMakeFiles/soap_lib.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/clean -.PHONY : CMakeFiles/soap_lib.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/onvif_server.dir - -# All Build rule for target. -CMakeFiles/onvif_server.dir/all: CMakeFiles/soap_lib.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 "Built target onvif_server" -.PHONY : CMakeFiles/onvif_server.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/onvif_server.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 59 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/onvif_server.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 0 -.PHONY : CMakeFiles/onvif_server.dir/rule - -# Convenience name for target. -onvif_server: CMakeFiles/onvif_server.dir/rule -.PHONY : onvif_server - -# codegen rule for target. -CMakeFiles/onvif_server.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 "Finished codegen for target onvif_server" -.PHONY : CMakeFiles/onvif_server.dir/codegen - -# clean rule for target. -CMakeFiles/onvif_server.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/clean -.PHONY : CMakeFiles/onvif_server.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/onvif-server.dir - -# All Build rule for target. -CMakeFiles/onvif-server.dir/all: CMakeFiles/wsdd_build.dir/all -CMakeFiles/onvif-server.dir/all: CMakeFiles/v4l2rtsp_build.dir/all -CMakeFiles/onvif-server.dir/all: CMakeFiles/soap_lib.dir/all -CMakeFiles/onvif-server.dir/all: CMakeFiles/onvif_server.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=8,9,10,11,12,13,14 "Built target onvif-server" -.PHONY : CMakeFiles/onvif-server.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/onvif-server.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 68 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/onvif-server.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 0 -.PHONY : CMakeFiles/onvif-server.dir/rule - -# Convenience name for target. -onvif-server: CMakeFiles/onvif-server.dir/rule -.PHONY : onvif-server - -# codegen rule for target. -CMakeFiles/onvif-server.dir/codegen: CMakeFiles/wsdd_build.dir/all -CMakeFiles/onvif-server.dir/codegen: CMakeFiles/v4l2rtsp_build.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=8,9,10,11,12,13,14 "Finished codegen for target onvif-server" -.PHONY : CMakeFiles/onvif-server.dir/codegen - -# clean rule for target. -CMakeFiles/onvif-server.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/clean -.PHONY : CMakeFiles/onvif-server.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/wsdd_build.dir - -# All Build rule for target. -CMakeFiles/wsdd_build.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/wsdd_build.dir/build.make CMakeFiles/wsdd_build.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/wsdd_build.dir/build.make CMakeFiles/wsdd_build.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=75 "Built target wsdd_build" -.PHONY : CMakeFiles/wsdd_build.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/wsdd_build.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/wsdd_build.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 0 -.PHONY : CMakeFiles/wsdd_build.dir/rule - -# Convenience name for target. -wsdd_build: CMakeFiles/wsdd_build.dir/rule -.PHONY : wsdd_build - -# codegen rule for target. -CMakeFiles/wsdd_build.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/wsdd_build.dir/build.make CMakeFiles/wsdd_build.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=75 "Finished codegen for target wsdd_build" -.PHONY : CMakeFiles/wsdd_build.dir/codegen - -# clean rule for target. -CMakeFiles/wsdd_build.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/wsdd_build.dir/build.make CMakeFiles/wsdd_build.dir/clean -.PHONY : CMakeFiles/wsdd_build.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/v4l2rtsp_build.dir - -# All Build rule for target. -CMakeFiles/v4l2rtsp_build.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/v4l2rtsp_build.dir/build.make CMakeFiles/v4l2rtsp_build.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/v4l2rtsp_build.dir/build.make CMakeFiles/v4l2rtsp_build.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=74 "Built target v4l2rtsp_build" -.PHONY : CMakeFiles/v4l2rtsp_build.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/v4l2rtsp_build.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/v4l2rtsp_build.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 0 -.PHONY : CMakeFiles/v4l2rtsp_build.dir/rule - -# Convenience name for target. -v4l2rtsp_build: CMakeFiles/v4l2rtsp_build.dir/rule -.PHONY : v4l2rtsp_build - -# codegen rule for target. -CMakeFiles/v4l2rtsp_build.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/v4l2rtsp_build.dir/build.make CMakeFiles/v4l2rtsp_build.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=74 "Finished codegen for target v4l2rtsp_build" -.PHONY : CMakeFiles/v4l2rtsp_build.dir/codegen - -# clean rule for target. -CMakeFiles/v4l2rtsp_build.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/v4l2rtsp_build.dir/build.make CMakeFiles/v4l2rtsp_build.dir/clean -.PHONY : CMakeFiles/v4l2rtsp_build.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/onvif-client.dir - -# All Build rule for target. -CMakeFiles/onvif-client.dir/all: CMakeFiles/soap_lib.dir/all -CMakeFiles/onvif-client.dir/all: CMakeFiles/onvif_server.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=1,2,3,4,5,6,7 "Built target onvif-client" -.PHONY : CMakeFiles/onvif-client.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/onvif-client.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 66 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/onvif-client.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 0 -.PHONY : CMakeFiles/onvif-client.dir/rule - -# Convenience name for target. -onvif-client: CMakeFiles/onvif-client.dir/rule -.PHONY : onvif-client - -# codegen rule for target. -CMakeFiles/onvif-client.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=1,2,3,4,5,6,7 "Finished codegen for target onvif-client" -.PHONY : CMakeFiles/onvif-client.dir/codegen - -# clean rule for target. -CMakeFiles/onvif-client.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/clean -.PHONY : CMakeFiles/onvif-client.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/CMakeFiles/Progress/15 b/build/CMakeFiles/Progress/15 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/15 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/16 b/build/CMakeFiles/Progress/16 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/16 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/17 b/build/CMakeFiles/Progress/17 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/17 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/18 b/build/CMakeFiles/Progress/18 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/18 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/19 b/build/CMakeFiles/Progress/19 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/19 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/20 b/build/CMakeFiles/Progress/20 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/20 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/21 b/build/CMakeFiles/Progress/21 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/21 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/22 b/build/CMakeFiles/Progress/22 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/22 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/23 b/build/CMakeFiles/Progress/23 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/23 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/24 b/build/CMakeFiles/Progress/24 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/24 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/25 b/build/CMakeFiles/Progress/25 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/25 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/26 b/build/CMakeFiles/Progress/26 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/26 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/27 b/build/CMakeFiles/Progress/27 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/27 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/28 b/build/CMakeFiles/Progress/28 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/28 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/29 b/build/CMakeFiles/Progress/29 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/29 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/30 b/build/CMakeFiles/Progress/30 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/30 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/31 b/build/CMakeFiles/Progress/31 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/31 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/32 b/build/CMakeFiles/Progress/32 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/32 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/33 b/build/CMakeFiles/Progress/33 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/33 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/34 b/build/CMakeFiles/Progress/34 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/34 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/35 b/build/CMakeFiles/Progress/35 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/35 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/36 b/build/CMakeFiles/Progress/36 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/36 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/37 b/build/CMakeFiles/Progress/37 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/37 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/38 b/build/CMakeFiles/Progress/38 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/38 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/39 b/build/CMakeFiles/Progress/39 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/39 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/40 b/build/CMakeFiles/Progress/40 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/40 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/41 b/build/CMakeFiles/Progress/41 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/41 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/42 b/build/CMakeFiles/Progress/42 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/42 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/43 b/build/CMakeFiles/Progress/43 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/43 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/44 b/build/CMakeFiles/Progress/44 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/44 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/45 b/build/CMakeFiles/Progress/45 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/45 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/46 b/build/CMakeFiles/Progress/46 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/46 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/47 b/build/CMakeFiles/Progress/47 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/47 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/48 b/build/CMakeFiles/Progress/48 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/48 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/49 b/build/CMakeFiles/Progress/49 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/49 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/50 b/build/CMakeFiles/Progress/50 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/50 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/51 b/build/CMakeFiles/Progress/51 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/51 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/52 b/build/CMakeFiles/Progress/52 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/52 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/53 b/build/CMakeFiles/Progress/53 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/53 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/54 b/build/CMakeFiles/Progress/54 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/54 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/55 b/build/CMakeFiles/Progress/55 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/55 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/56 b/build/CMakeFiles/Progress/56 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/56 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/57 b/build/CMakeFiles/Progress/57 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/57 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/58 b/build/CMakeFiles/Progress/58 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/58 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/59 b/build/CMakeFiles/Progress/59 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/59 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/60 b/build/CMakeFiles/Progress/60 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/60 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/61 b/build/CMakeFiles/Progress/61 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/61 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/62 b/build/CMakeFiles/Progress/62 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/62 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/63 b/build/CMakeFiles/Progress/63 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/63 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/64 b/build/CMakeFiles/Progress/64 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/64 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/65 b/build/CMakeFiles/Progress/65 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/65 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/66 b/build/CMakeFiles/Progress/66 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/66 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/67 b/build/CMakeFiles/Progress/67 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/67 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/68 b/build/CMakeFiles/Progress/68 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/68 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/69 b/build/CMakeFiles/Progress/69 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/69 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/70 b/build/CMakeFiles/Progress/70 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/70 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/71 b/build/CMakeFiles/Progress/71 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/71 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/72 b/build/CMakeFiles/Progress/72 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/72 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/73 b/build/CMakeFiles/Progress/73 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/73 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/75 b/build/CMakeFiles/Progress/75 deleted file mode 100644 index 7b4d68d..0000000 --- a/build/CMakeFiles/Progress/75 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/count.txt b/build/CMakeFiles/Progress/count.txt deleted file mode 100644 index 78eb67c..0000000 --- a/build/CMakeFiles/Progress/count.txt +++ /dev/null @@ -1 +0,0 @@ -75 diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt index 557df8b..f25635c 100644 --- a/build/CMakeFiles/TargetDirectories.txt +++ b/build/CMakeFiles/TargetDirectories.txt @@ -1,8 +1,8 @@ -/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/soap_lib.dir -/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/onvif_server.dir +/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/libserver.dir +/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/libclient.dir +/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/libonvif.dir +/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/libwsdd.dir /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/onvif-server.dir -/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/wsdd_build.dir -/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/v4l2rtsp_build.dir /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/onvif-client.dir /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/edit_cache.dir /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/onvif-client.dir/DependInfo.cmake b/build/CMakeFiles/onvif-client.dir/DependInfo.cmake index 1b4018f..0706d29 100644 --- a/build/CMakeFiles/onvif-client.dir/DependInfo.cmake +++ b/build/CMakeFiles/onvif-client.dir/DependInfo.cmake @@ -8,11 +8,10 @@ set(CMAKE_DEPENDS_LANGUAGES # The set of dependency files which are needed: set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/usr/local/share/gsoap/plugin/wsaapi.c" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" "gcc" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/onvif-client.cpp" "CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o" "gcc" "CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o.d" "/usr/local/share/gsoap/custom/struct_timeval.c" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" "gcc" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o.d" "/usr/local/share/gsoap/plugin/mecevp.c" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o" "gcc" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o.d" "/usr/local/share/gsoap/plugin/smdevp.c" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o" "gcc" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o.d" + "/usr/local/share/gsoap/plugin/wsaapi.c" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" "gcc" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o.d" "/usr/local/share/gsoap/plugin/wsseapi.c" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" "gcc" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o.d" "" "onvif-client" "gcc" "CMakeFiles/onvif-client.dir/link.d" ) diff --git a/build/CMakeFiles/onvif-client.dir/build.make b/build/CMakeFiles/onvif-client.dir/build.make index cb6674b..3e0c5ab 100644 --- a/build/CMakeFiles/onvif-client.dir/build.make +++ b/build/CMakeFiles/onvif-client.dir/build.make @@ -72,33 +72,33 @@ include CMakeFiles/onvif-client.dir/flags.make CMakeFiles/onvif-client.dir/codegen: .PHONY : CMakeFiles/onvif-client.dir/codegen -CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o: CMakeFiles/onvif-client.dir/flags.make -CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-client.cpp -CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o: CMakeFiles/onvif-client.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o -MF CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o.d -o CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-client.cpp +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: CMakeFiles/onvif-client.dir/flags.make +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: /usr/local/share/gsoap/custom/struct_timeval.c +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: CMakeFiles/onvif-client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -c /usr/local/share/gsoap/custom/struct_timeval.c -CMakeFiles/onvif-client.dir/src/onvif-client.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/src/onvif-client.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-client.cpp > CMakeFiles/onvif-client.dir/src/onvif-client.cpp.i +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/custom/struct_timeval.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.i -CMakeFiles/onvif-client.dir/src/onvif-client.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/src/onvif-client.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-client.cpp -o CMakeFiles/onvif-client.dir/src/onvif-client.cpp.s +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/custom/struct_timeval.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.s -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: CMakeFiles/onvif-client.dir/flags.make -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: /usr/local/share/gsoap/plugin/wsseapi.c -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: CMakeFiles/onvif-client.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -c /usr/local/share/gsoap/plugin/wsseapi.c +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o: CMakeFiles/onvif-client.dir/flags.make +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o: /usr/local/share/gsoap/plugin/mecevp.c +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o: CMakeFiles/onvif-client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o -c /usr/local/share/gsoap/plugin/mecevp.c -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/wsseapi.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.i +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/mecevp.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.i -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/wsseapi.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.s +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/mecevp.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.s CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o: CMakeFiles/onvif-client.dir/flags.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o: /usr/local/share/gsoap/plugin/smdevp.c @@ -114,72 +114,58 @@ CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.s" /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/smdevp.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.s -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o: CMakeFiles/onvif-client.dir/flags.make -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o: /usr/local/share/gsoap/plugin/mecevp.c -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o: CMakeFiles/onvif-client.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o -c /usr/local/share/gsoap/plugin/mecevp.c - -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/mecevp.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.i - -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/mecevp.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.s - -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: CMakeFiles/onvif-client.dir/flags.make -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: /usr/local/share/gsoap/custom/struct_timeval.c -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: CMakeFiles/onvif-client.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -c /usr/local/share/gsoap/custom/struct_timeval.c - -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/custom/struct_timeval.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.i - -CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/custom/struct_timeval.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.s - CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o: CMakeFiles/onvif-client.dir/flags.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o: /usr/local/share/gsoap/plugin/wsaapi.c CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o: CMakeFiles/onvif-client.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o -c /usr/local/share/gsoap/plugin/wsaapi.c + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o -c /usr/local/share/gsoap/plugin/wsaapi.c CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.i" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /usr/local/share/gsoap/plugin/wsaapi.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.i + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/wsaapi.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.i CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /usr/local/share/gsoap/plugin/wsaapi.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.s + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/wsaapi.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.s + +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: CMakeFiles/onvif-client.dir/flags.make +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: /usr/local/share/gsoap/plugin/wsseapi.c +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: CMakeFiles/onvif-client.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -MF CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o.d -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -c /usr/local/share/gsoap/plugin/wsseapi.c + +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/wsseapi.c > CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.i + +CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/wsseapi.c -o CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.s # Object files for target onvif-client onvif__client_OBJECTS = \ -"CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o" \ -"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" \ -"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o" \ -"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o" \ "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" \ -"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" +"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o" \ +"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o" \ +"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" \ +"CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" # External object files for target onvif-client -onvif__client_EXTERNAL_OBJECTS = +onvif__client_EXTERNAL_OBJECTS = \ +"/home/cityhunter/CLionProjects/v4l2onvif/src/onvif-client.o" -onvif-client: CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o -onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o -onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o +onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o +onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o +onvif-client: CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o +onvif-client: /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-client.o onvif-client: CMakeFiles/onvif-client.dir/build.make onvif-client: CMakeFiles/onvif-client.dir/compiler_depend.ts -onvif-client: libonvif_server.a -onvif-client: libsoap_lib.a +onvif-client: liblibclient.a +onvif-client: liblibonvif.a onvif-client: CMakeFiles/onvif-client.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking CXX executable onvif-client" + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking CXX executable onvif-client" $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/onvif-client.dir/link.txt --verbose=$(VERBOSE) # Rule to build all files generated by this target. diff --git a/build/CMakeFiles/onvif-client.dir/cmake_clean.cmake b/build/CMakeFiles/onvif-client.dir/cmake_clean.cmake deleted file mode 100644 index e141010..0000000 --- a/build/CMakeFiles/onvif-client.dir/cmake_clean.cmake +++ /dev/null @@ -1,22 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/onvif-client.dir/link.d" - "CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o" - "CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o.d" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o.d" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o.d" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o.d" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o.d" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" - "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o.d" - "onvif-client" - "onvif-client.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang C CXX) - include(CMakeFiles/onvif-client.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/onvif-client.dir/compiler_depend.make b/build/CMakeFiles/onvif-client.dir/compiler_depend.make deleted file mode 100644 index c68c440..0000000 --- a/build/CMakeFiles/onvif-client.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for onvif-client. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/onvif-client.dir/flags.make b/build/CMakeFiles/onvif-client.dir/flags.make index d0eab43..976b243 100644 --- a/build/CMakeFiles/onvif-client.dir/flags.make +++ b/build/CMakeFiles/onvif-client.dir/flags.make @@ -1,17 +1,10 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 4.0 -# compile C with /usr/bin/cc # compile CXX with /usr/bin/c++ -C_DEFINES = -DSOAP_PURE_VIRTUAL -DVERSION=\"\" -DWITH_DOM -DWITH_OPENSSL +CXX_DEFINES = -DVERSION=\"4ef17a4-dirty\" -C_INCLUDES = -I/home/cityhunter/CLionProjects/v4l2onvif/inc -I/home/cityhunter/CLionProjects/v4l2onvif/ws-discovery/gsoap -I/home/cityhunter/CLionProjects/v4l2onvif/gen -I/usr/local/share/gsoap/plugin -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/groupsock/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/liveMedia/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/UsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/BasicUsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/inc -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/inc -I/usr/local/share/gsoap/import +CXX_INCLUDES = -I/home/cityhunter/CLionProjects/v4l2onvif/inc -I/home/cityhunter/CLionProjects/v4l2onvif/ws-discovery/gsoap -I/usr/local/share/gsoap/plugin -I/home/cityhunter/CLionProjects/v4l2onvif/gen -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/inc -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/inc -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/groupsock/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/liveMedia/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/UsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/BasicUsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/src -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/src -C_FLAGS = - -CXX_DEFINES = -DSOAP_PURE_VIRTUAL -DVERSION=\"\" -DWITH_DOM -DWITH_OPENSSL - -CXX_INCLUDES = -I/home/cityhunter/CLionProjects/v4l2onvif/inc -I/home/cityhunter/CLionProjects/v4l2onvif/ws-discovery/gsoap -I/home/cityhunter/CLionProjects/v4l2onvif/gen -I/usr/local/share/gsoap/plugin -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/groupsock/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/liveMedia/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/UsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/BasicUsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/inc -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/inc -I/usr/local/share/gsoap/import - -CXX_FLAGS = -g2 -fpermissive -std=gnu++11 +CXX_FLAGS = -g2 -I inc -I ws-discovery/gsoap/ -I gen -I /usr/local/include -I /usr/local/share/gsoap/plugin -DWITH_DOM -DWITH_OPENSSL -DSOAP_PURE_VIRTUAL -fpermissive -pthread -std=gnu++11 -std=c++11 -g2 -fpermissive -pthread -DWITH_DOM -DWITH_OPENSSL -DSOAP_PURE_VIRTUAL diff --git a/build/CMakeFiles/onvif-client.dir/link.txt b/build/CMakeFiles/onvif-client.dir/link.txt deleted file mode 100644 index 66e32dd..0000000 --- a/build/CMakeFiles/onvif-client.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/c++ -g2 -fpermissive -Wl,--dependency-file=CMakeFiles/onvif-client.dir/link.d "CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" "CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" -o onvif-client libonvif_server.a -lgsoapssl++ -lssl -lcrypto -lz -lpthread -ldl libsoap_lib.a diff --git a/build/CMakeFiles/onvif-client.dir/progress.make b/build/CMakeFiles/onvif-client.dir/progress.make deleted file mode 100644 index 2f82315..0000000 --- a/build/CMakeFiles/onvif-client.dir/progress.make +++ /dev/null @@ -1,8 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 -CMAKE_PROGRESS_3 = 3 -CMAKE_PROGRESS_4 = 4 -CMAKE_PROGRESS_5 = 5 -CMAKE_PROGRESS_6 = 6 -CMAKE_PROGRESS_7 = 7 - diff --git a/build/CMakeFiles/onvif-server.dir/DependInfo.cmake b/build/CMakeFiles/onvif-server.dir/DependInfo.cmake deleted file mode 100644 index d0caa0a..0000000 --- a/build/CMakeFiles/onvif-server.dir/DependInfo.cmake +++ /dev/null @@ -1,29 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/cityhunter/CLionProjects/v4l2onvif/src/onvif-server.cpp" "CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o" "gcc" "CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/onvif_impl.cpp" "CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o" "gcc" "CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o.d" - "/usr/local/share/gsoap/custom/struct_timeval.c" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" "gcc" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o.d" - "/usr/local/share/gsoap/plugin/mecevp.c" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o" "gcc" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o.d" - "/usr/local/share/gsoap/plugin/smdevp.c" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o" "gcc" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o.d" - "/usr/local/share/gsoap/plugin/wsseapi.c" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" "gcc" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o.d" - "" "onvif-server" "gcc" "CMakeFiles/onvif-server.dir/link.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/onvif-server.dir/build.make b/build/CMakeFiles/onvif-server.dir/build.make deleted file mode 100644 index 84051a5..0000000 --- a/build/CMakeFiles/onvif-server.dir/build.make +++ /dev/null @@ -1,199 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/cityhunter/CLionProjects/v4l2onvif - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/cityhunter/CLionProjects/v4l2onvif/build - -# Include any dependencies generated for this target. -include CMakeFiles/onvif-server.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/onvif-server.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/onvif-server.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/onvif-server.dir/flags.make - -CMakeFiles/onvif-server.dir/codegen: -.PHONY : CMakeFiles/onvif-server.dir/codegen - -CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o: CMakeFiles/onvif-server.dir/flags.make -CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-server.cpp -CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o: CMakeFiles/onvif-server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o -MF CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o.d -o CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-server.cpp - -CMakeFiles/onvif-server.dir/src/onvif-server.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-server.dir/src/onvif-server.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-server.cpp > CMakeFiles/onvif-server.dir/src/onvif-server.cpp.i - -CMakeFiles/onvif-server.dir/src/onvif-server.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-server.dir/src/onvif-server.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/onvif-server.cpp -o CMakeFiles/onvif-server.dir/src/onvif-server.cpp.s - -CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o: CMakeFiles/onvif-server.dir/flags.make -CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/onvif_impl.cpp -CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o: CMakeFiles/onvif-server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o -MF CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o.d -o CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/onvif_impl.cpp - -CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/onvif_impl.cpp > CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.i - -CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/onvif_impl.cpp -o CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.s - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: CMakeFiles/onvif-server.dir/flags.make -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: /usr/local/share/gsoap/plugin/wsseapi.c -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o: CMakeFiles/onvif-server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -MF CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o.d -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -c /usr/local/share/gsoap/plugin/wsseapi.c - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/wsseapi.c > CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.i - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/wsseapi.c -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.s - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o: CMakeFiles/onvif-server.dir/flags.make -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o: /usr/local/share/gsoap/plugin/smdevp.c -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o: CMakeFiles/onvif-server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o -MF CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o.d -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o -c /usr/local/share/gsoap/plugin/smdevp.c - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/smdevp.c > CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.i - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/smdevp.c -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.s - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o: CMakeFiles/onvif-server.dir/flags.make -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o: /usr/local/share/gsoap/plugin/mecevp.c -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o: CMakeFiles/onvif-server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o -MF CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o.d -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o -c /usr/local/share/gsoap/plugin/mecevp.c - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/plugin/mecevp.c > CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.i - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/plugin/mecevp.c -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.s - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: CMakeFiles/onvif-server.dir/flags.make -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: /usr/local/share/gsoap/custom/struct_timeval.c -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o: CMakeFiles/onvif-server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -MF CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o.d -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -c /usr/local/share/gsoap/custom/struct_timeval.c - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /usr/local/share/gsoap/custom/struct_timeval.c > CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.i - -CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /usr/local/share/gsoap/custom/struct_timeval.c -o CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.s - -# Object files for target onvif-server -onvif__server_OBJECTS = \ -"CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o" \ -"CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o" \ -"CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" \ -"CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o" \ -"CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o" \ -"CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" - -# External object files for target onvif-server -onvif__server_EXTERNAL_OBJECTS = - -onvif-server: CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o -onvif-server: CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o -onvif-server: CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -onvif-server: CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o -onvif-server: CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o -onvif-server: CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -onvif-server: CMakeFiles/onvif-server.dir/build.make -onvif-server: CMakeFiles/onvif-server.dir/compiler_depend.ts -onvif-server: libonvif_server.a -onvif-server: libsoap_lib.a -onvif-server: libwsdd.a -onvif-server: liblibv4l2rtspserver.a -onvif-server: /home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/liblibv4l2cpp.a -onvif-server: CMakeFiles/onvif-server.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking CXX executable onvif-server" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/onvif-server.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/onvif-server.dir/build: onvif-server -.PHONY : CMakeFiles/onvif-server.dir/build - -CMakeFiles/onvif-server.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/onvif-server.dir/cmake_clean.cmake -.PHONY : CMakeFiles/onvif-server.dir/clean - -CMakeFiles/onvif-server.dir/depend: - cd /home/cityhunter/CLionProjects/v4l2onvif/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/onvif-server.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/onvif-server.dir/depend - diff --git a/build/CMakeFiles/onvif-server.dir/cmake_clean.cmake b/build/CMakeFiles/onvif-server.dir/cmake_clean.cmake index 4c1538e..ce28e7c 100644 --- a/build/CMakeFiles/onvif-server.dir/cmake_clean.cmake +++ b/build/CMakeFiles/onvif-server.dir/cmake_clean.cmake @@ -1,17 +1,55 @@ file(REMOVE_RECURSE "CMakeFiles/onvif-server.dir/link.d" - "CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o" - "CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o.d" - "CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o" - "CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o.d" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o.d" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o.d" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o.d" + "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsaapi.c.o" + "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsaapi.c.o.d" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Access.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Access.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Capture.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Capture.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Device.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Device.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2MmapDevice.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2MmapDevice.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Output.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2Output.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2ReadWriteDevice.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/V4l2ReadWriteDevice.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/logger.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/libv4l2cpp/src/logger.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/ALSACapture.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/ALSACapture.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/H264_V4l2DeviceSource.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/H264_V4l2DeviceSource.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/H265_V4l2DeviceSource.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/H265_V4l2DeviceSource.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/H26x_V4l2DeviceSource.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/H26x_V4l2DeviceSource.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/HTTPServer.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/HTTPServer.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/MJPEGVideoSource.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/MJPEGVideoSource.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/MemoryBufferSink.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/MemoryBufferSink.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/MulticastServerMediaSubsession.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/MulticastServerMediaSubsession.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/ServerMediaSubsession.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/ServerMediaSubsession.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/TSServerMediaSubsession.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/TSServerMediaSubsession.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/UnicastServerMediaSubsession.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/UnicastServerMediaSubsession.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/V4L2DeviceSource.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/V4L2DeviceSource.cpp.o.d" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/V4l2RTSPServer.cpp.o" + "CMakeFiles/onvif-server.dir/v4l2rtspserver/src/V4l2RTSPServer.cpp.o.d" "onvif-server" "onvif-server.pdb" ) diff --git a/build/CMakeFiles/onvif-server.dir/depend.make b/build/CMakeFiles/onvif-server.dir/depend.make deleted file mode 100644 index 3239993..0000000 --- a/build/CMakeFiles/onvif-server.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for onvif-server. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/onvif-server.dir/flags.make b/build/CMakeFiles/onvif-server.dir/flags.make deleted file mode 100644 index 5a5c5b1..0000000 --- a/build/CMakeFiles/onvif-server.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# compile CXX with /usr/bin/c++ -CXX_DEFINES = -DSOAP_PURE_VIRTUAL -DVERSION=\"\" -DWITH_DOM -DWITH_OPENSSL - -CXX_INCLUDES = -I/home/cityhunter/CLionProjects/v4l2onvif/inc -I/home/cityhunter/CLionProjects/v4l2onvif/ws-discovery/gsoap -I/home/cityhunter/CLionProjects/v4l2onvif/gen -I/usr/local/share/gsoap/plugin -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/groupsock/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/liveMedia/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/UsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/BasicUsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/inc -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/inc -I/usr/local/share/gsoap/import - -CXX_FLAGS = -g2 -fpermissive - diff --git a/build/CMakeFiles/onvif-server.dir/link.txt b/build/CMakeFiles/onvif-server.dir/link.txt deleted file mode 100644 index 89288f4..0000000 --- a/build/CMakeFiles/onvif-server.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/c++ -g2 -fpermissive -Wl,--dependency-file=CMakeFiles/onvif-server.dir/link.d "CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o" "CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o" "CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o" -o onvif-server libonvif_server.a libsoap_lib.a libwsdd.a liblibv4l2rtspserver.a /home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/liblibv4l2cpp.a -lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment -lgsoapssl++ -lssl -lcrypto -lz -lpthread -ldl diff --git a/build/CMakeFiles/onvif-server.dir/progress.make b/build/CMakeFiles/onvif-server.dir/progress.make index 87259ac..54b225c 100644 --- a/build/CMakeFiles/onvif-server.dir/progress.make +++ b/build/CMakeFiles/onvif-server.dir/progress.make @@ -1,8 +1,27 @@ -CMAKE_PROGRESS_1 = 8 -CMAKE_PROGRESS_2 = 9 -CMAKE_PROGRESS_3 = 10 -CMAKE_PROGRESS_4 = 11 -CMAKE_PROGRESS_5 = 12 -CMAKE_PROGRESS_6 = 13 -CMAKE_PROGRESS_7 = 14 +CMAKE_PROGRESS_1 = 35 +CMAKE_PROGRESS_2 = 36 +CMAKE_PROGRESS_3 = 37 +CMAKE_PROGRESS_4 = 38 +CMAKE_PROGRESS_5 = 39 +CMAKE_PROGRESS_6 = 40 +CMAKE_PROGRESS_7 = 41 +CMAKE_PROGRESS_8 = 42 +CMAKE_PROGRESS_9 = 43 +CMAKE_PROGRESS_10 = 44 +CMAKE_PROGRESS_11 = 45 +CMAKE_PROGRESS_12 = 46 +CMAKE_PROGRESS_13 = 47 +CMAKE_PROGRESS_14 = 48 +CMAKE_PROGRESS_15 = 49 +CMAKE_PROGRESS_16 = 50 +CMAKE_PROGRESS_17 = 51 +CMAKE_PROGRESS_18 = 52 +CMAKE_PROGRESS_19 = 53 +CMAKE_PROGRESS_20 = 54 +CMAKE_PROGRESS_21 = 55 +CMAKE_PROGRESS_22 = 56 +CMAKE_PROGRESS_23 = 57 +CMAKE_PROGRESS_24 = 58 +CMAKE_PROGRESS_25 = 59 +CMAKE_PROGRESS_26 = 60 diff --git a/build/CMakeFiles/onvif_server.dir/DependInfo.cmake b/build/CMakeFiles/onvif_server.dir/DependInfo.cmake deleted file mode 100644 index 7493697..0000000 --- a/build/CMakeFiles/onvif_server.dir/DependInfo.cmake +++ /dev/null @@ -1,37 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverDevice.cpp" "CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverDeviceIO.cpp" "CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverDisplay.cpp" "CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverEvent.cpp" "CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverImaging.cpp" "CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverMedia.cpp" "CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationConsumer.cpp" "CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationProducer.cpp" "CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverPTZ.cpp" "CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverPullPointSubscription.cpp" "CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverReceiver.cpp" "CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverRecording.cpp" "CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverReplay.cpp" "CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverSearch.cpp" "CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/src/serverSubscriptionManager.cpp" "CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o" "gcc" "CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/onvif_server.dir/build.make b/build/CMakeFiles/onvif_server.dir/build.make deleted file mode 100644 index d0e25a6..0000000 --- a/build/CMakeFiles/onvif_server.dir/build.make +++ /dev/null @@ -1,338 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/cityhunter/CLionProjects/v4l2onvif - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/cityhunter/CLionProjects/v4l2onvif/build - -# Include any dependencies generated for this target. -include CMakeFiles/onvif_server.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/onvif_server.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/onvif_server.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/onvif_server.dir/flags.make - -CMakeFiles/onvif_server.dir/codegen: -.PHONY : CMakeFiles/onvif_server.dir/codegen - -CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverDevice.cpp -CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverDevice.cpp - -CMakeFiles/onvif_server.dir/src/serverDevice.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverDevice.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverDevice.cpp > CMakeFiles/onvif_server.dir/src/serverDevice.cpp.i - -CMakeFiles/onvif_server.dir/src/serverDevice.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverDevice.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverDevice.cpp -o CMakeFiles/onvif_server.dir/src/serverDevice.cpp.s - -CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverDeviceIO.cpp -CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverDeviceIO.cpp - -CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverDeviceIO.cpp > CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.i - -CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverDeviceIO.cpp -o CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.s - -CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverDisplay.cpp -CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverDisplay.cpp - -CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverDisplay.cpp > CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.i - -CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverDisplay.cpp -o CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.s - -CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverEvent.cpp -CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverEvent.cpp - -CMakeFiles/onvif_server.dir/src/serverEvent.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverEvent.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverEvent.cpp > CMakeFiles/onvif_server.dir/src/serverEvent.cpp.i - -CMakeFiles/onvif_server.dir/src/serverEvent.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverEvent.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverEvent.cpp -o CMakeFiles/onvif_server.dir/src/serverEvent.cpp.s - -CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverImaging.cpp -CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverImaging.cpp - -CMakeFiles/onvif_server.dir/src/serverImaging.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverImaging.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverImaging.cpp > CMakeFiles/onvif_server.dir/src/serverImaging.cpp.i - -CMakeFiles/onvif_server.dir/src/serverImaging.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverImaging.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverImaging.cpp -o CMakeFiles/onvif_server.dir/src/serverImaging.cpp.s - -CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverMedia.cpp -CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverMedia.cpp - -CMakeFiles/onvif_server.dir/src/serverMedia.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverMedia.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverMedia.cpp > CMakeFiles/onvif_server.dir/src/serverMedia.cpp.i - -CMakeFiles/onvif_server.dir/src/serverMedia.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverMedia.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverMedia.cpp -o CMakeFiles/onvif_server.dir/src/serverMedia.cpp.s - -CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationConsumer.cpp -CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationConsumer.cpp - -CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationConsumer.cpp > CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.i - -CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationConsumer.cpp -o CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.s - -CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationProducer.cpp -CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationProducer.cpp - -CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationProducer.cpp > CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.i - -CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationProducer.cpp -o CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.s - -CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverPTZ.cpp -CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverPTZ.cpp - -CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverPTZ.cpp > CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.i - -CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverPTZ.cpp -o CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.s - -CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverPullPointSubscription.cpp -CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverPullPointSubscription.cpp - -CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverPullPointSubscription.cpp > CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.i - -CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverPullPointSubscription.cpp -o CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.s - -CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverReceiver.cpp -CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverReceiver.cpp - -CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverReceiver.cpp > CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.i - -CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverReceiver.cpp -o CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.s - -CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverRecording.cpp -CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverRecording.cpp - -CMakeFiles/onvif_server.dir/src/serverRecording.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverRecording.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverRecording.cpp > CMakeFiles/onvif_server.dir/src/serverRecording.cpp.i - -CMakeFiles/onvif_server.dir/src/serverRecording.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverRecording.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverRecording.cpp -o CMakeFiles/onvif_server.dir/src/serverRecording.cpp.s - -CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverReplay.cpp -CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverReplay.cpp - -CMakeFiles/onvif_server.dir/src/serverReplay.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverReplay.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverReplay.cpp > CMakeFiles/onvif_server.dir/src/serverReplay.cpp.i - -CMakeFiles/onvif_server.dir/src/serverReplay.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverReplay.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverReplay.cpp -o CMakeFiles/onvif_server.dir/src/serverReplay.cpp.s - -CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverSearch.cpp -CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverSearch.cpp - -CMakeFiles/onvif_server.dir/src/serverSearch.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverSearch.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverSearch.cpp > CMakeFiles/onvif_server.dir/src/serverSearch.cpp.i - -CMakeFiles/onvif_server.dir/src/serverSearch.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverSearch.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverSearch.cpp -o CMakeFiles/onvif_server.dir/src/serverSearch.cpp.s - -CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o: CMakeFiles/onvif_server.dir/flags.make -CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/src/serverSubscriptionManager.cpp -CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o: CMakeFiles/onvif_server.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o -MF CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o.d -o CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/src/serverSubscriptionManager.cpp - -CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/src/serverSubscriptionManager.cpp > CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.i - -CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/src/serverSubscriptionManager.cpp -o CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.s - -# Object files for target onvif_server -onvif_server_OBJECTS = \ -"CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o" \ -"CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o" - -# External object files for target onvif_server -onvif_server_EXTERNAL_OBJECTS = - -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o -libonvif_server.a: CMakeFiles/onvif_server.dir/build.make -libonvif_server.a: CMakeFiles/onvif_server.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Linking CXX static library libonvif_server.a" - $(CMAKE_COMMAND) -P CMakeFiles/onvif_server.dir/cmake_clean_target.cmake - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/onvif_server.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/onvif_server.dir/build: libonvif_server.a -.PHONY : CMakeFiles/onvif_server.dir/build - -CMakeFiles/onvif_server.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/onvif_server.dir/cmake_clean.cmake -.PHONY : CMakeFiles/onvif_server.dir/clean - -CMakeFiles/onvif_server.dir/depend: - cd /home/cityhunter/CLionProjects/v4l2onvif/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/onvif_server.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/onvif_server.dir/depend - diff --git a/build/CMakeFiles/onvif_server.dir/cmake_clean.cmake b/build/CMakeFiles/onvif_server.dir/cmake_clean.cmake deleted file mode 100644 index 1184cd6..0000000 --- a/build/CMakeFiles/onvif_server.dir/cmake_clean.cmake +++ /dev/null @@ -1,39 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o.d" - "CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o" - "CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o.d" - "libonvif_server.a" - "libonvif_server.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/onvif_server.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/onvif_server.dir/cmake_clean_target.cmake b/build/CMakeFiles/onvif_server.dir/cmake_clean_target.cmake deleted file mode 100644 index c96632f..0000000 --- a/build/CMakeFiles/onvif_server.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libonvif_server.a" -) diff --git a/build/CMakeFiles/onvif_server.dir/compiler_depend.make b/build/CMakeFiles/onvif_server.dir/compiler_depend.make deleted file mode 100644 index 8eb561a..0000000 --- a/build/CMakeFiles/onvif_server.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for onvif_server. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/onvif_server.dir/compiler_depend.ts b/build/CMakeFiles/onvif_server.dir/compiler_depend.ts deleted file mode 100644 index 3b1e44b..0000000 --- a/build/CMakeFiles/onvif_server.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for onvif_server. diff --git a/build/CMakeFiles/onvif_server.dir/depend.make b/build/CMakeFiles/onvif_server.dir/depend.make deleted file mode 100644 index cc6bf5e..0000000 --- a/build/CMakeFiles/onvif_server.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for onvif_server. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/onvif_server.dir/flags.make b/build/CMakeFiles/onvif_server.dir/flags.make deleted file mode 100644 index 5a5c5b1..0000000 --- a/build/CMakeFiles/onvif_server.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# compile CXX with /usr/bin/c++ -CXX_DEFINES = -DSOAP_PURE_VIRTUAL -DVERSION=\"\" -DWITH_DOM -DWITH_OPENSSL - -CXX_INCLUDES = -I/home/cityhunter/CLionProjects/v4l2onvif/inc -I/home/cityhunter/CLionProjects/v4l2onvif/ws-discovery/gsoap -I/home/cityhunter/CLionProjects/v4l2onvif/gen -I/usr/local/share/gsoap/plugin -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/groupsock/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/liveMedia/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/UsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/BasicUsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/inc -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/inc -I/usr/local/share/gsoap/import - -CXX_FLAGS = -g2 -fpermissive - diff --git a/build/CMakeFiles/onvif_server.dir/link.txt b/build/CMakeFiles/onvif_server.dir/link.txt deleted file mode 100644 index 093ec81..0000000 --- a/build/CMakeFiles/onvif_server.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/usr/bin/ar qc libonvif_server.a CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o -/usr/bin/ranlib libonvif_server.a diff --git a/build/CMakeFiles/onvif_server.dir/progress.make b/build/CMakeFiles/onvif_server.dir/progress.make deleted file mode 100644 index 6ed7310..0000000 --- a/build/CMakeFiles/onvif_server.dir/progress.make +++ /dev/null @@ -1,17 +0,0 @@ -CMAKE_PROGRESS_1 = 15 -CMAKE_PROGRESS_2 = 16 -CMAKE_PROGRESS_3 = 17 -CMAKE_PROGRESS_4 = 18 -CMAKE_PROGRESS_5 = 19 -CMAKE_PROGRESS_6 = 20 -CMAKE_PROGRESS_7 = 21 -CMAKE_PROGRESS_8 = 22 -CMAKE_PROGRESS_9 = 23 -CMAKE_PROGRESS_10 = 24 -CMAKE_PROGRESS_11 = 25 -CMAKE_PROGRESS_12 = 26 -CMAKE_PROGRESS_13 = 27 -CMAKE_PROGRESS_14 = 28 -CMAKE_PROGRESS_15 = 29 -CMAKE_PROGRESS_16 = 30 - diff --git a/build/CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o deleted file mode 100644 index 43860e8..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o.d deleted file mode 100644 index e373695..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o.d +++ /dev/null @@ -1,329 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverDevice.cpp \ - /usr/include/stdc-predef.h /usr/include/ifaddrs.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/net/if.h /usr/include/netpacket/packet.h \ - /usr/include/resolv.h /usr/include/x86_64-linux-gnu/sys/param.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h /usr/include/signal.h \ - /usr/include/x86_64-linux-gnu/bits/signum-generic.h \ - /usr/include/x86_64-linux-gnu/bits/signum-arch.h \ - /usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \ - /usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \ - /usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \ - /usr/include/x86_64-linux-gnu/bits/sigaction.h \ - /usr/include/x86_64-linux-gnu/bits/sigcontext.h \ - /usr/include/x86_64-linux-gnu/bits/types/stack_t.h \ - /usr/include/x86_64-linux-gnu/sys/ucontext.h \ - /usr/include/x86_64-linux-gnu/bits/sigstack.h \ - /usr/include/x86_64-linux-gnu/bits/sigstksz.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h \ - /usr/include/x86_64-linux-gnu/bits/ss_flags.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \ - /usr/include/x86_64-linux-gnu/bits/sigthread.h \ - /usr/include/x86_64-linux-gnu/bits/signal_ext.h \ - /usr/include/x86_64-linux-gnu/bits/param.h /usr/include/linux/param.h \ - /usr/include/x86_64-linux-gnu/asm/param.h \ - /usr/include/asm-generic/param.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/netinet/in.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/in.h /usr/include/arpa/nameser.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/arpa/nameser_compat.h \ - /usr/include/x86_64-linux-gnu/bits/types/res_state.h \ - /usr/include/x86_64-linux-gnu/sys/utsname.h \ - /usr/include/x86_64-linux-gnu/bits/utsname.h /usr/include/c++/13/map \ - /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/tuple /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/erase_if.h \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator_args.h \ - /usr/include/c++/13/sstream /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/cctype \ - /usr/include/ctype.h /usr/include/c++/13/bits/ios_base.h \ - /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/c++/13/bits/sstream.tcc /usr/include/c++/13/iomanip \ - /usr/include/c++/13/locale \ - /usr/include/c++/13/bits/locale_facets_nonio.h /usr/include/c++/13/ctime \ - /usr/include/x86_64-linux-gnu/c++/13/bits/time_members.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/messages_members.h \ - /usr/include/libintl.h /usr/include/c++/13/bits/codecvt.h \ - /usr/include/c++/13/bits/locale_facets_nonio.tcc \ - /usr/include/c++/13/bits/locale_conv.h \ - /usr/include/c++/13/bits/quoted_string.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/local/include/stdsoap2.h \ - /usr/include/c++/13/stdlib.h /usr/include/string.h \ - /usr/include/strings.h /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/netinet/tcp.h \ - /usr/include/arpa/inet.h /usr/include/netdb.h /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o deleted file mode 100644 index 686ec97..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o.d deleted file mode 100644 index 89b96fc..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverDeviceIO.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o deleted file mode 100644 index 0b151e0..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o.d deleted file mode 100644 index 0f8a13c..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverDisplay.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o deleted file mode 100644 index 4ae4e5e..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o.d deleted file mode 100644 index a3bb8d9..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o.d +++ /dev/null @@ -1,293 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverEvent.cpp \ - /usr/include/stdc-predef.h /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/new /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/cctype \ - /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/c++/13/bits/sstream.tcc \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/local/include/stdsoap2.h \ - /usr/include/c++/13/stdlib.h /usr/include/string.h \ - /usr/include/strings.h /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o deleted file mode 100644 index 87f099a..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o.d deleted file mode 100644 index 20c40f9..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o.d +++ /dev/null @@ -1,297 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverImaging.cpp \ - /usr/include/stdc-predef.h /usr/include/linux/videodev2.h \ - /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/features.h \ - /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/linux/ioctl.h /usr/include/x86_64-linux-gnu/asm/ioctl.h \ - /usr/include/asm-generic/ioctl.h /usr/include/linux/types.h \ - /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h /usr/include/linux/v4l2-common.h \ - /usr/include/linux/v4l2-controls.h /usr/include/linux/const.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o deleted file mode 100644 index d39907d..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o.d deleted file mode 100644 index 56feb14..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverMedia.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o deleted file mode 100644 index 1dcfa27..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o.d deleted file mode 100644 index 9320766..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationConsumer.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o deleted file mode 100644 index 163d8c4..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o.d deleted file mode 100644 index 2e40e48..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o.d +++ /dev/null @@ -1,294 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverNotificationProducer.cpp \ - /usr/include/stdc-predef.h /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/new /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/cctype \ - /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/c++/13/bits/sstream.tcc \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/local/include/stdsoap2.h \ - /usr/include/c++/13/stdlib.h /usr/include/string.h \ - /usr/include/strings.h /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o deleted file mode 100644 index ebbb08e..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o.d deleted file mode 100644 index cd6020b..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o.d +++ /dev/null @@ -1,297 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverPTZ.cpp \ - /usr/include/stdc-predef.h /usr/include/linux/videodev2.h \ - /usr/include/x86_64-linux-gnu/sys/time.h /usr/include/features.h \ - /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/linux/ioctl.h /usr/include/x86_64-linux-gnu/asm/ioctl.h \ - /usr/include/asm-generic/ioctl.h /usr/include/linux/types.h \ - /usr/include/x86_64-linux-gnu/asm/types.h \ - /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h /usr/include/linux/v4l2-common.h \ - /usr/include/linux/v4l2-controls.h /usr/include/linux/const.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o deleted file mode 100644 index 7a5479e..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o.d deleted file mode 100644 index 62576fc..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o.d +++ /dev/null @@ -1,293 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverPullPointSubscription.cpp \ - /usr/include/stdc-predef.h /usr/include/c++/13/sstream \ - /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h /usr/include/c++/13/istream \ - /usr/include/c++/13/ios /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h \ - /usr/include/c++/13/bits/memoryfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/c++/13/exception /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/hash_bytes.h \ - /usr/include/c++/13/new /usr/include/c++/13/bits/move.h \ - /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/13/cctype \ - /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/bits/ptr_traits.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/refwrap.h /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/basic_string.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_construct.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdlib \ - /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/alloca.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/c++/13/cstdio \ - /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/streambuf \ - /usr/include/c++/13/bits/streambuf.tcc \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc /usr/include/c++/13/ostream \ - /usr/include/c++/13/bits/ostream.tcc \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/c++/13/bits/sstream.tcc \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/vector.tcc /usr/local/include/stdsoap2.h \ - /usr/include/c++/13/stdlib.h /usr/include/string.h \ - /usr/include/strings.h /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o deleted file mode 100644 index 04005b9..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o.d deleted file mode 100644 index 4d76eb8..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverReceiver.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o deleted file mode 100644 index 73aa808..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o.d deleted file mode 100644 index 75c6469..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverRecording.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o deleted file mode 100644 index ef104c1..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o.d deleted file mode 100644 index c9db717..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverReplay.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o deleted file mode 100644 index 8639a84..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o.d deleted file mode 100644 index 53b5864..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverSearch.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o b/build/CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o deleted file mode 100644 index 35d3a84..0000000 Binary files a/build/CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o.d b/build/CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o.d deleted file mode 100644 index 7a1a400..0000000 --- a/build/CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o.d +++ /dev/null @@ -1,292 +0,0 @@ -CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/src/serverSubscriptionManager.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h \ - /home/cityhunter/CLionProjects/v4l2onvif/inc/onvif_impl.h \ - /usr/include/c++/13/list /usr/include/c++/13/bits/stl_list.h \ - /usr/include/c++/13/bits/list.tcc /usr/include/c++/13/map \ - /usr/include/c++/13/bits/stl_tree.h \ - /usr/include/c++/13/bits/node_handle.h \ - /usr/include/c++/13/bits/stl_map.h \ - /usr/include/c++/13/bits/stl_multimap.h \ - /usr/include/c++/13/bits/erase_if.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks deleted file mode 100644 index 78eb67c..0000000 --- a/build/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -75 diff --git a/build/CMakeFiles/soap_lib.dir/DependInfo.cmake b/build/CMakeFiles/soap_lib.dir/DependInfo.cmake deleted file mode 100644 index 94ce4d6..0000000 --- a/build/CMakeFiles/soap_lib.dir/DependInfo.cmake +++ /dev/null @@ -1,64 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_001.cpp" "CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_002.cpp" "CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_003.cpp" "CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_004.cpp" "CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.cpp" "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddProxy.cpp" "CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o.d" - "/home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddService.cpp" "CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o" "gcc" "CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/soap_lib.dir/build.make b/build/CMakeFiles/soap_lib.dir/build.make deleted file mode 100644 index 6348c31..0000000 --- a/build/CMakeFiles/soap_lib.dir/build.make +++ /dev/null @@ -1,770 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/cityhunter/CLionProjects/v4l2onvif - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/cityhunter/CLionProjects/v4l2onvif/build - -# Include any dependencies generated for this target. -include CMakeFiles/soap_lib.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/soap_lib.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/soap_lib.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/soap_lib.dir/flags.make - -CMakeFiles/soap_lib.dir/codegen: -.PHONY : CMakeFiles/soap_lib.dir/codegen - -CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_001.cpp -CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_001.cpp - -CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_001.cpp > CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_001.cpp -o CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_002.cpp -CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_002.cpp - -CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_002.cpp > CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_002.cpp -o CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_003.cpp -CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_003.cpp - -CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_003.cpp > CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_003.cpp -o CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_004.cpp -CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_004.cpp - -CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_004.cpp > CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_004.cpp -o CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_20) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_21) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_22) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_23) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_24) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_25) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_26) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_27) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_28) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_29) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_30) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_31) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_32) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_33) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_34) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_35) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_36) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_37) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_38) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_39) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.cpp -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_40) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.cpp - -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.cpp > CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.cpp -o CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddProxy.cpp -CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_41) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddProxy.cpp - -CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddProxy.cpp > CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddProxy.cpp -o CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.s - -CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o: CMakeFiles/soap_lib.dir/flags.make -CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o: /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddService.cpp -CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o: CMakeFiles/soap_lib.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_42) "Building CXX object CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o -MF CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o.d -o CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o -c /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddService.cpp - -CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddService.cpp > CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.i - -CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddService.cpp -o CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.s - -# Object files for target soap_lib -soap_lib_OBJECTS = \ -"CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o" \ -"CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o" - -# External object files for target soap_lib -soap_lib_EXTERNAL_OBJECTS = - -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o -libsoap_lib.a: CMakeFiles/soap_lib.dir/build.make -libsoap_lib.a: CMakeFiles/soap_lib.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_43) "Linking CXX static library libsoap_lib.a" - $(CMAKE_COMMAND) -P CMakeFiles/soap_lib.dir/cmake_clean_target.cmake - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/soap_lib.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/soap_lib.dir/build: libsoap_lib.a -.PHONY : CMakeFiles/soap_lib.dir/build - -CMakeFiles/soap_lib.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/soap_lib.dir/cmake_clean.cmake -.PHONY : CMakeFiles/soap_lib.dir/clean - -CMakeFiles/soap_lib.dir/depend: - cd /home/cityhunter/CLionProjects/v4l2onvif/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/soap_lib.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/soap_lib.dir/depend - diff --git a/build/CMakeFiles/soap_lib.dir/cmake_clean.cmake b/build/CMakeFiles/soap_lib.dir/cmake_clean.cmake deleted file mode 100644 index 6ae4b35..0000000 --- a/build/CMakeFiles/soap_lib.dir/cmake_clean.cmake +++ /dev/null @@ -1,93 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o.d" - "CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o" - "CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o.d" - "libsoap_lib.a" - "libsoap_lib.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/soap_lib.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/soap_lib.dir/cmake_clean_target.cmake b/build/CMakeFiles/soap_lib.dir/cmake_clean_target.cmake deleted file mode 100644 index 57a6e5b..0000000 --- a/build/CMakeFiles/soap_lib.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libsoap_lib.a" -) diff --git a/build/CMakeFiles/soap_lib.dir/compiler_depend.make b/build/CMakeFiles/soap_lib.dir/compiler_depend.make deleted file mode 100644 index 10ec685..0000000 --- a/build/CMakeFiles/soap_lib.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for soap_lib. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/soap_lib.dir/compiler_depend.ts b/build/CMakeFiles/soap_lib.dir/compiler_depend.ts deleted file mode 100644 index 6f6bfd3..0000000 --- a/build/CMakeFiles/soap_lib.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for soap_lib. diff --git a/build/CMakeFiles/soap_lib.dir/depend.make b/build/CMakeFiles/soap_lib.dir/depend.make deleted file mode 100644 index 3017662..0000000 --- a/build/CMakeFiles/soap_lib.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for soap_lib. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/soap_lib.dir/flags.make b/build/CMakeFiles/soap_lib.dir/flags.make deleted file mode 100644 index a73d621..0000000 --- a/build/CMakeFiles/soap_lib.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# compile CXX with /usr/bin/c++ -CXX_DEFINES = -DSOAP_PURE_VIRTUAL -DVERSION=\"\" -DWITH_DOM -DWITH_OPENSSL - -CXX_INCLUDES = -I/home/cityhunter/CLionProjects/v4l2onvif/gen -I/home/cityhunter/CLionProjects/v4l2onvif/inc -I/usr/local/share/gsoap/plugin -I/usr/local/share/gsoap/import -I/home/cityhunter/CLionProjects/v4l2onvif/ws-discovery/gsoap -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/groupsock/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/liveMedia/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/UsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/live/BasicUsageEnvironment/include -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/inc -I/home/cityhunter/CLionProjects/v4l2onvif/v4l2rtspserver/libv4l2cpp/inc - -CXX_FLAGS = -g2 -fpermissive - diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o deleted file mode 100644 index 66f1e44..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o.d deleted file mode 100644 index 40a37cb..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o.d +++ /dev/null @@ -1,282 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_001.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o deleted file mode 100644 index 26c778f..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o.d deleted file mode 100644 index fa3df23..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o.d +++ /dev/null @@ -1,282 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_002.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o deleted file mode 100644 index 71b609b..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o.d deleted file mode 100644 index 676cfb6..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o.d +++ /dev/null @@ -1,282 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_003.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o deleted file mode 100644 index a44efc2..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o.d deleted file mode 100644 index 4d4af27..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o.d +++ /dev/null @@ -1,282 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapC_004.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o deleted file mode 100644 index e66edb1..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o.d deleted file mode 100644 index f056916..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o deleted file mode 100644 index 182e37b..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o.d deleted file mode 100644 index 2329798..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapCreatePullPointBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o deleted file mode 100644 index e695fb9..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o.d deleted file mode 100644 index 2968dab..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o deleted file mode 100644 index 9295171..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o.d deleted file mode 100644 index 7ab837f..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o deleted file mode 100644 index a5fa758..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o.d deleted file mode 100644 index 096f975..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o deleted file mode 100644 index 02b7d3d..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o.d deleted file mode 100644 index cf8417e..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDeviceIOBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o deleted file mode 100644 index 593ef21..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o.d deleted file mode 100644 index abb30cc..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o deleted file mode 100644 index ba79be7..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o.d deleted file mode 100644 index 007afcf..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapDisplayBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o deleted file mode 100644 index 139938e..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o.d deleted file mode 100644 index dcad94b..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o deleted file mode 100644 index bdd4e0d..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o.d deleted file mode 100644 index d153e78..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapEventBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o deleted file mode 100644 index 0d48b8a..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o.d deleted file mode 100644 index 6ec9dd7..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o deleted file mode 100644 index 95243ac..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o.d deleted file mode 100644 index 05ab18e..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapImagingBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o deleted file mode 100644 index 414786b..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o.d deleted file mode 100644 index 7fcf366..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o deleted file mode 100644 index ed49bda..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o.d deleted file mode 100644 index affaa29..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapMediaBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o deleted file mode 100644 index 4eda179..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o.d deleted file mode 100644 index 38e3677..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o deleted file mode 100644 index e921ec4..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o.d deleted file mode 100644 index 97d5aee..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationConsumerBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o deleted file mode 100644 index b6ab5f7..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o.d deleted file mode 100644 index 53b9ef1..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o deleted file mode 100644 index dba7746..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o.d deleted file mode 100644 index 59e76d7..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapNotificationProducerBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o deleted file mode 100644 index 93eea93..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o.d deleted file mode 100644 index b95af99..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o deleted file mode 100644 index 068bc42..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o.d deleted file mode 100644 index 6260313..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPTZBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o deleted file mode 100644 index 4f4f3d7..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o.d deleted file mode 100644 index e9c2154..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o deleted file mode 100644 index 9cf2f2c..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o.d deleted file mode 100644 index 003e78a..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPausableSubscriptionManagerBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o deleted file mode 100644 index b4a7d5a..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o.d deleted file mode 100644 index 7538f0a..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o deleted file mode 100644 index 95d788d..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o.d deleted file mode 100644 index 59e5c13..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o deleted file mode 100644 index 08a34cd..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o.d deleted file mode 100644 index 97bd085..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o deleted file mode 100644 index 23720e0..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o.d deleted file mode 100644 index 124a003..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapPullPointSubscriptionBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o deleted file mode 100644 index 6ea96af..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o.d deleted file mode 100644 index e4a4b22..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o deleted file mode 100644 index 4eba4f1..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o.d deleted file mode 100644 index d56cc1c..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReceiverBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o deleted file mode 100644 index 5958776..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o.d deleted file mode 100644 index 2b0a07b..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o deleted file mode 100644 index ce9dee7..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o.d deleted file mode 100644 index 0d1f23f..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapRecordingBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o deleted file mode 100644 index bc64214..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o.d deleted file mode 100644 index a79055b..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o deleted file mode 100644 index c3fa53f..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o.d deleted file mode 100644 index a36a03e..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapReplayBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o deleted file mode 100644 index 784dc8e..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o.d deleted file mode 100644 index 7ed3d92..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o deleted file mode 100644 index 432171c..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o.d deleted file mode 100644 index 1394e4f..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSearchBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o deleted file mode 100644 index f68efa4..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o.d deleted file mode 100644 index f7cec97..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o deleted file mode 100644 index c30b090..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o.d deleted file mode 100644 index e921cd0..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapSubscriptionManagerBindingService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o deleted file mode 100644 index b5c0b61..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o.d deleted file mode 100644 index 6f9a42e..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddProxy.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddProxy.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o b/build/CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o deleted file mode 100644 index e5a6cef..0000000 Binary files a/build/CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o and /dev/null differ diff --git a/build/CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o.d b/build/CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o.d deleted file mode 100644 index 9d5e67c..0000000 --- a/build/CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o.d +++ /dev/null @@ -1,283 +0,0 @@ -CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o: \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddService.cpp \ - /usr/include/stdc-predef.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapwsddService.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapH.h \ - /home/cityhunter/CLionProjects/v4l2onvif/gen/soapStub.h \ - /usr/include/c++/13/vector /usr/include/c++/13/bits/requires_hosted.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ - /usr/include/c++/13/pstl/pstl_config.h \ - /usr/include/c++/13/bits/stl_algobase.h \ - /usr/include/c++/13/bits/functexcept.h \ - /usr/include/c++/13/bits/exception_defines.h \ - /usr/include/c++/13/bits/cpp_type_traits.h \ - /usr/include/c++/13/ext/type_traits.h \ - /usr/include/c++/13/ext/numeric_traits.h \ - /usr/include/c++/13/bits/stl_pair.h /usr/include/c++/13/type_traits \ - /usr/include/c++/13/bits/move.h /usr/include/c++/13/bits/utility.h \ - /usr/include/c++/13/bits/stl_iterator_base_types.h \ - /usr/include/c++/13/bits/stl_iterator_base_funcs.h \ - /usr/include/c++/13/bits/concept_check.h \ - /usr/include/c++/13/debug/assertions.h \ - /usr/include/c++/13/bits/stl_iterator.h \ - /usr/include/c++/13/bits/ptr_traits.h /usr/include/c++/13/debug/debug.h \ - /usr/include/c++/13/bits/predefined_ops.h /usr/include/c++/13/bit \ - /usr/include/c++/13/bits/allocator.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++allocator.h \ - /usr/include/c++/13/bits/new_allocator.h /usr/include/c++/13/new \ - /usr/include/c++/13/bits/exception.h \ - /usr/include/c++/13/bits/memoryfwd.h \ - /usr/include/c++/13/bits/stl_construct.h \ - /usr/include/c++/13/bits/stl_uninitialized.h \ - /usr/include/c++/13/ext/alloc_traits.h \ - /usr/include/c++/13/bits/alloc_traits.h \ - /usr/include/c++/13/bits/stl_vector.h \ - /usr/include/c++/13/initializer_list \ - /usr/include/c++/13/bits/stl_bvector.h \ - /usr/include/c++/13/bits/functional_hash.h \ - /usr/include/c++/13/bits/hash_bytes.h /usr/include/c++/13/bits/refwrap.h \ - /usr/include/c++/13/bits/invoke.h \ - /usr/include/c++/13/bits/stl_function.h \ - /usr/include/c++/13/backward/binders.h \ - /usr/include/c++/13/bits/range_access.h \ - /usr/include/c++/13/bits/vector.tcc \ - /usr/include/c++/13/bits/memory_resource.h /usr/include/c++/13/cstddef \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/include/c++/13/bits/uses_allocator.h \ - /usr/include/c++/13/bits/uses_allocator_args.h /usr/include/c++/13/tuple \ - /usr/local/include/stdsoap2.h /usr/include/c++/13/stdlib.h \ - /usr/include/c++/13/cstdlib /usr/include/stdlib.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/waitflags.h \ - /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/x86_64-linux-gnu/sys/types.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/byteswap.h \ - /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ - /usr/include/x86_64-linux-gnu/sys/select.h \ - /usr/include/x86_64-linux-gnu/bits/select.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ - /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ - /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ - /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ - /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ - /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/c++/13/bits/std_abs.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/ctype.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \ - /usr/include/x86_64-linux-gnu/bits/uio_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/float.h \ - /usr/include/c++/13/math.h /usr/include/c++/13/cmath /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ - /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ - /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ - /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ - /usr/include/x86_64-linux-gnu/bits/fp-fast.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls.h \ - /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \ - /usr/include/x86_64-linux-gnu/bits/iscanonical.h \ - /usr/include/c++/13/bits/specfun.h /usr/include/c++/13/limits \ - /usr/include/c++/13/tr1/gamma.tcc \ - /usr/include/c++/13/tr1/special_function_util.h \ - /usr/include/c++/13/tr1/bessel_function.tcc \ - /usr/include/c++/13/tr1/beta_function.tcc \ - /usr/include/c++/13/tr1/ell_integral.tcc \ - /usr/include/c++/13/tr1/exp_integral.tcc \ - /usr/include/c++/13/tr1/hypergeometric.tcc \ - /usr/include/c++/13/tr1/legendre_function.tcc \ - /usr/include/c++/13/tr1/modified_bessel_func.tcc \ - /usr/include/c++/13/tr1/poly_hermite.tcc \ - /usr/include/c++/13/tr1/poly_laguerre.tcc \ - /usr/include/c++/13/tr1/riemann_zeta.tcc /usr/include/locale.h \ - /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/poll.h \ - /usr/include/x86_64-linux-gnu/sys/poll.h \ - /usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/c++/13/iterator \ - /usr/include/c++/13/bits/stream_iterator.h /usr/include/c++/13/iosfwd \ - /usr/include/c++/13/bits/stringfwd.h /usr/include/c++/13/bits/postypes.h \ - /usr/include/c++/13/cwchar /usr/include/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \ - /usr/include/c++/13/bits/streambuf_iterator.h \ - /usr/include/c++/13/streambuf /usr/include/c++/13/bits/localefwd.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/c++locale.h \ - /usr/include/c++/13/clocale /usr/include/c++/13/cctype \ - /usr/include/c++/13/bits/ios_base.h /usr/include/c++/13/ext/atomicity.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/gthr-default.h \ - /usr/include/pthread.h /usr/include/sched.h \ - /usr/include/x86_64-linux-gnu/bits/sched.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \ - /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/timex.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/setjmp.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/atomic_word.h \ - /usr/include/x86_64-linux-gnu/sys/single_threaded.h \ - /usr/include/c++/13/bits/locale_classes.h /usr/include/c++/13/string \ - /usr/include/c++/13/bits/char_traits.h \ - /usr/include/c++/13/bits/ostream_insert.h \ - /usr/include/c++/13/bits/cxxabi_forced.h \ - /usr/include/c++/13/bits/basic_string.h /usr/include/c++/13/string_view \ - /usr/include/c++/13/bits/string_view.tcc \ - /usr/include/c++/13/ext/string_conversions.h /usr/include/c++/13/cstdio \ - /usr/include/c++/13/cerrno /usr/include/errno.h \ - /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \ - /usr/include/x86_64-linux-gnu/asm/errno.h \ - /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \ - /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ - /usr/include/c++/13/bits/charconv.h \ - /usr/include/c++/13/bits/basic_string.tcc \ - /usr/include/c++/13/bits/locale_classes.tcc \ - /usr/include/c++/13/system_error \ - /usr/include/x86_64-linux-gnu/c++/13/bits/error_constants.h \ - /usr/include/c++/13/stdexcept /usr/include/c++/13/exception \ - /usr/include/c++/13/bits/exception_ptr.h \ - /usr/include/c++/13/bits/cxxabi_init_exception.h \ - /usr/include/c++/13/typeinfo /usr/include/c++/13/bits/nested_exception.h \ - /usr/include/c++/13/bits/streambuf.tcc /usr/include/c++/13/memory \ - /usr/include/c++/13/bits/stl_tempbuf.h \ - /usr/include/c++/13/bits/stl_raw_storage_iter.h \ - /usr/include/c++/13/bits/align.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ - /usr/include/c++/13/bits/unique_ptr.h \ - /usr/include/c++/13/bits/shared_ptr.h \ - /usr/include/c++/13/bits/shared_ptr_base.h \ - /usr/include/c++/13/bits/allocated_ptr.h \ - /usr/include/c++/13/ext/aligned_buffer.h \ - /usr/include/c++/13/ext/concurrence.h \ - /usr/include/c++/13/bits/shared_ptr_atomic.h \ - /usr/include/c++/13/bits/atomic_base.h \ - /usr/include/c++/13/bits/atomic_lockfree_defines.h \ - /usr/include/c++/13/backward/auto_ptr.h \ - /usr/include/c++/13/pstl/glue_memory_defs.h \ - /usr/include/c++/13/pstl/execution_defs.h /usr/include/c++/13/iostream \ - /usr/include/c++/13/ostream /usr/include/c++/13/ios \ - /usr/include/c++/13/bits/basic_ios.h \ - /usr/include/c++/13/bits/locale_facets.h /usr/include/c++/13/cwctype \ - /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_base.h \ - /usr/include/x86_64-linux-gnu/c++/13/bits/ctype_inline.h \ - /usr/include/c++/13/bits/locale_facets.tcc \ - /usr/include/c++/13/bits/basic_ios.tcc \ - /usr/include/c++/13/bits/ostream.tcc /usr/include/c++/13/istream \ - /usr/include/c++/13/bits/istream.tcc \ - /usr/include/x86_64-linux-gnu/sys/time.h \ - /usr/include/x86_64-linux-gnu/sys/socket.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \ - /usr/include/x86_64-linux-gnu/bits/socket.h \ - /usr/include/x86_64-linux-gnu/bits/socket_type.h \ - /usr/include/x86_64-linux-gnu/bits/sockaddr.h \ - /usr/include/x86_64-linux-gnu/asm/socket.h \ - /usr/include/asm-generic/socket.h /usr/include/linux/posix_types.h \ - /usr/include/linux/stddef.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ - /usr/include/asm-generic/posix_types.h \ - /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ - /usr/include/asm-generic/bitsperlong.h \ - /usr/include/x86_64-linux-gnu/asm/sockios.h \ - /usr/include/asm-generic/sockios.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \ - /usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/bits/in.h \ - /usr/include/netinet/tcp.h /usr/include/arpa/inet.h /usr/include/netdb.h \ - /usr/include/rpc/netdb.h \ - /usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \ - /usr/include/x86_64-linux-gnu/bits/netdb.h /usr/include/unistd.h \ - /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ - /usr/include/x86_64-linux-gnu/bits/environments.h \ - /usr/include/x86_64-linux-gnu/bits/confname.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ - /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ - /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ - /usr/include/linux/close_range.h /usr/include/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl.h \ - /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h \ - /usr/include/linux/falloc.h /usr/include/x86_64-linux-gnu/bits/stat.h \ - /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ - /usr/include/openssl/bio.h /usr/include/openssl/macros.h \ - /usr/include/x86_64-linux-gnu/openssl/opensslconf.h \ - /usr/include/x86_64-linux-gnu/openssl/configuration.h \ - /usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \ - /usr/include/openssl/crypto.h /usr/include/openssl/safestack.h \ - /usr/include/openssl/stack.h /usr/include/openssl/types.h \ - /usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \ - /usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \ - /usr/include/openssl/bioerr.h /usr/include/openssl/err.h \ - /usr/include/openssl/lhash.h /usr/include/openssl/rand.h \ - /usr/include/openssl/randerr.h /usr/include/openssl/evp.h \ - /usr/include/openssl/core_dispatch.h /usr/include/openssl/evperr.h \ - /usr/include/openssl/params.h /usr/include/openssl/bn.h \ - /usr/include/openssl/bnerr.h /usr/include/openssl/objects.h \ - /usr/include/openssl/obj_mac.h /usr/include/openssl/asn1.h \ - /usr/include/openssl/asn1err.h /usr/include/openssl/objectserr.h \ - /usr/include/openssl/ssl.h /usr/include/openssl/comp.h \ - /usr/include/openssl/comperr.h /usr/include/openssl/x509.h \ - /usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \ - /usr/include/openssl/ec.h /usr/include/openssl/ecerr.h \ - /usr/include/openssl/rsa.h /usr/include/openssl/rsaerr.h \ - /usr/include/openssl/dsa.h /usr/include/openssl/dh.h \ - /usr/include/openssl/dherr.h /usr/include/openssl/dsaerr.h \ - /usr/include/openssl/sha.h /usr/include/openssl/x509err.h \ - /usr/include/openssl/x509_vfy.h /usr/include/openssl/pkcs7.h \ - /usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \ - /usr/include/openssl/conf.h /usr/include/openssl/conferr.h \ - /usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \ - /usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \ - /usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \ - /usr/include/openssl/ct.h /usr/include/openssl/cterr.h \ - /usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \ - /usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \ - /usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \ - /usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \ - /usr/include/openssl/x509v3.h /usr/include/openssl/x509v3err.h diff --git a/build/CMakeFiles/soap_lib.dir/link.txt b/build/CMakeFiles/soap_lib.dir/link.txt deleted file mode 100644 index 4de33aa..0000000 --- a/build/CMakeFiles/soap_lib.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/usr/bin/ar qc libsoap_lib.a CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o -/usr/bin/ranlib libsoap_lib.a diff --git a/build/CMakeFiles/soap_lib.dir/progress.make b/build/CMakeFiles/soap_lib.dir/progress.make deleted file mode 100644 index 3f98aad..0000000 --- a/build/CMakeFiles/soap_lib.dir/progress.make +++ /dev/null @@ -1,44 +0,0 @@ -CMAKE_PROGRESS_1 = 31 -CMAKE_PROGRESS_2 = 32 -CMAKE_PROGRESS_3 = 33 -CMAKE_PROGRESS_4 = 34 -CMAKE_PROGRESS_5 = 35 -CMAKE_PROGRESS_6 = 36 -CMAKE_PROGRESS_7 = 37 -CMAKE_PROGRESS_8 = 38 -CMAKE_PROGRESS_9 = 39 -CMAKE_PROGRESS_10 = 40 -CMAKE_PROGRESS_11 = 41 -CMAKE_PROGRESS_12 = 42 -CMAKE_PROGRESS_13 = 43 -CMAKE_PROGRESS_14 = 44 -CMAKE_PROGRESS_15 = 45 -CMAKE_PROGRESS_16 = 46 -CMAKE_PROGRESS_17 = 47 -CMAKE_PROGRESS_18 = 48 -CMAKE_PROGRESS_19 = 49 -CMAKE_PROGRESS_20 = 50 -CMAKE_PROGRESS_21 = 51 -CMAKE_PROGRESS_22 = 52 -CMAKE_PROGRESS_23 = 53 -CMAKE_PROGRESS_24 = 54 -CMAKE_PROGRESS_25 = 55 -CMAKE_PROGRESS_26 = 56 -CMAKE_PROGRESS_27 = 57 -CMAKE_PROGRESS_28 = 58 -CMAKE_PROGRESS_29 = 59 -CMAKE_PROGRESS_30 = 60 -CMAKE_PROGRESS_31 = 61 -CMAKE_PROGRESS_32 = 62 -CMAKE_PROGRESS_33 = 63 -CMAKE_PROGRESS_34 = 64 -CMAKE_PROGRESS_35 = 65 -CMAKE_PROGRESS_36 = 66 -CMAKE_PROGRESS_37 = 67 -CMAKE_PROGRESS_38 = 68 -CMAKE_PROGRESS_39 = 69 -CMAKE_PROGRESS_40 = 70 -CMAKE_PROGRESS_41 = 71 -CMAKE_PROGRESS_42 = 72 -CMAKE_PROGRESS_43 = 73 - diff --git a/build/CMakeFiles/v4l2rtsp_build.dir/DependInfo.cmake b/build/CMakeFiles/v4l2rtsp_build.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/v4l2rtsp_build.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/v4l2rtsp_build.dir/build.make b/build/CMakeFiles/v4l2rtsp_build.dir/build.make deleted file mode 100644 index 0b56a08..0000000 --- a/build/CMakeFiles/v4l2rtsp_build.dir/build.make +++ /dev/null @@ -1,96 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/cityhunter/CLionProjects/v4l2onvif - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/cityhunter/CLionProjects/v4l2onvif/build - -# Utility rule file for v4l2rtsp_build. - -# Include any custom commands dependencies for this target. -include CMakeFiles/v4l2rtsp_build.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/v4l2rtsp_build.dir/progress.make - -CMakeFiles/v4l2rtsp_build: liblibv4l2rtspserver.a - -liblibv4l2rtspserver.a: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating liblibv4l2rtspserver.a" - git submodule update --recursive --init v4l2rtspserver - cd v4l2rtspserver && cmake -DALSA=OFF . && make libv4l2rtspserver - cp v4l2rtspserver/liblibv4l2rtspserver.a /home/cityhunter/CLionProjects/v4l2onvif/build - -CMakeFiles/v4l2rtsp_build.dir/codegen: -.PHONY : CMakeFiles/v4l2rtsp_build.dir/codegen - -v4l2rtsp_build: CMakeFiles/v4l2rtsp_build -v4l2rtsp_build: liblibv4l2rtspserver.a -v4l2rtsp_build: CMakeFiles/v4l2rtsp_build.dir/build.make -.PHONY : v4l2rtsp_build - -# Rule to build all files generated by this target. -CMakeFiles/v4l2rtsp_build.dir/build: v4l2rtsp_build -.PHONY : CMakeFiles/v4l2rtsp_build.dir/build - -CMakeFiles/v4l2rtsp_build.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/v4l2rtsp_build.dir/cmake_clean.cmake -.PHONY : CMakeFiles/v4l2rtsp_build.dir/clean - -CMakeFiles/v4l2rtsp_build.dir/depend: - cd /home/cityhunter/CLionProjects/v4l2onvif/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/v4l2rtsp_build.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/v4l2rtsp_build.dir/depend - diff --git a/build/CMakeFiles/v4l2rtsp_build.dir/cmake_clean.cmake b/build/CMakeFiles/v4l2rtsp_build.dir/cmake_clean.cmake deleted file mode 100644 index 02d7de1..0000000 --- a/build/CMakeFiles/v4l2rtsp_build.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/v4l2rtsp_build" - "liblibv4l2rtspserver.a" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/v4l2rtsp_build.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/v4l2rtsp_build.dir/compiler_depend.make b/build/CMakeFiles/v4l2rtsp_build.dir/compiler_depend.make deleted file mode 100644 index 87b2694..0000000 --- a/build/CMakeFiles/v4l2rtsp_build.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for v4l2rtsp_build. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/v4l2rtsp_build.dir/compiler_depend.ts b/build/CMakeFiles/v4l2rtsp_build.dir/compiler_depend.ts deleted file mode 100644 index bfa6449..0000000 --- a/build/CMakeFiles/v4l2rtsp_build.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for v4l2rtsp_build. diff --git a/build/CMakeFiles/v4l2rtsp_build.dir/progress.make b/build/CMakeFiles/v4l2rtsp_build.dir/progress.make deleted file mode 100644 index 108af77..0000000 --- a/build/CMakeFiles/v4l2rtsp_build.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 74 - diff --git a/build/CMakeFiles/wsdd_build.dir/DependInfo.cmake b/build/CMakeFiles/wsdd_build.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/wsdd_build.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/wsdd_build.dir/build.make b/build/CMakeFiles/wsdd_build.dir/build.make deleted file mode 100644 index 0ffe2b9..0000000 --- a/build/CMakeFiles/wsdd_build.dir/build.make +++ /dev/null @@ -1,97 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/cityhunter/CLionProjects/v4l2onvif - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/cityhunter/CLionProjects/v4l2onvif/build - -# Utility rule file for wsdd_build. - -# Include any custom commands dependencies for this target. -include CMakeFiles/wsdd_build.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/wsdd_build.dir/progress.make - -CMakeFiles/wsdd_build: libwsdd.a - -libwsdd.a: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating libwsdd.a" - git submodule init ws-discovery - git submodule update ws-discovery - make -C ws-discovery/gsoap libwsdd.a - cp ws-discovery/gsoap/libwsdd.a /home/cityhunter/CLionProjects/v4l2onvif/build - -CMakeFiles/wsdd_build.dir/codegen: -.PHONY : CMakeFiles/wsdd_build.dir/codegen - -wsdd_build: CMakeFiles/wsdd_build -wsdd_build: libwsdd.a -wsdd_build: CMakeFiles/wsdd_build.dir/build.make -.PHONY : wsdd_build - -# Rule to build all files generated by this target. -CMakeFiles/wsdd_build.dir/build: wsdd_build -.PHONY : CMakeFiles/wsdd_build.dir/build - -CMakeFiles/wsdd_build.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/wsdd_build.dir/cmake_clean.cmake -.PHONY : CMakeFiles/wsdd_build.dir/clean - -CMakeFiles/wsdd_build.dir/depend: - cd /home/cityhunter/CLionProjects/v4l2onvif/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/wsdd_build.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/wsdd_build.dir/depend - diff --git a/build/CMakeFiles/wsdd_build.dir/cmake_clean.cmake b/build/CMakeFiles/wsdd_build.dir/cmake_clean.cmake deleted file mode 100644 index 23b50e9..0000000 --- a/build/CMakeFiles/wsdd_build.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/wsdd_build" - "libwsdd.a" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/wsdd_build.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/CMakeFiles/wsdd_build.dir/compiler_depend.make b/build/CMakeFiles/wsdd_build.dir/compiler_depend.make deleted file mode 100644 index 8ae431e..0000000 --- a/build/CMakeFiles/wsdd_build.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for wsdd_build. -# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/wsdd_build.dir/compiler_depend.ts b/build/CMakeFiles/wsdd_build.dir/compiler_depend.ts deleted file mode 100644 index d8628bd..0000000 --- a/build/CMakeFiles/wsdd_build.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for wsdd_build. diff --git a/build/CMakeFiles/wsdd_build.dir/progress.make b/build/CMakeFiles/wsdd_build.dir/progress.make deleted file mode 100644 index 5acded2..0000000 --- a/build/CMakeFiles/wsdd_build.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 75 - diff --git a/build/Makefile b/build/Makefile deleted file mode 100644 index ed57556..0000000 --- a/build/Makefile +++ /dev/null @@ -1,2040 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake - -# The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/cityhunter/CLionProjects/v4l2onvif - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/cityhunter/CLionProjects/v4l2onvif/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." - /usr/local/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /usr/local/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /usr/local/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles /home/cityhunter/CLionProjects/v4l2onvif/build//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named soap_lib - -# Build rule for target. -soap_lib: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 soap_lib -.PHONY : soap_lib - -# fast build rule for target. -soap_lib/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/build -.PHONY : soap_lib/fast - -#============================================================================= -# Target rules for targets named onvif_server - -# Build rule for target. -onvif_server: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 onvif_server -.PHONY : onvif_server - -# fast build rule for target. -onvif_server/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/build -.PHONY : onvif_server/fast - -#============================================================================= -# Target rules for targets named onvif-server - -# Build rule for target. -onvif-server: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 onvif-server -.PHONY : onvif-server - -# fast build rule for target. -onvif-server/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/build -.PHONY : onvif-server/fast - -#============================================================================= -# Target rules for targets named wsdd_build - -# Build rule for target. -wsdd_build: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 wsdd_build -.PHONY : wsdd_build - -# fast build rule for target. -wsdd_build/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/wsdd_build.dir/build.make CMakeFiles/wsdd_build.dir/build -.PHONY : wsdd_build/fast - -#============================================================================= -# Target rules for targets named v4l2rtsp_build - -# Build rule for target. -v4l2rtsp_build: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 v4l2rtsp_build -.PHONY : v4l2rtsp_build - -# fast build rule for target. -v4l2rtsp_build/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/v4l2rtsp_build.dir/build.make CMakeFiles/v4l2rtsp_build.dir/build -.PHONY : v4l2rtsp_build/fast - -#============================================================================= -# Target rules for targets named onvif-client - -# Build rule for target. -onvif-client: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 onvif-client -.PHONY : onvif-client - -# fast build rule for target. -onvif-client/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/build -.PHONY : onvif-client/fast - -gen/soapC_001.o: gen/soapC_001.cpp.o -.PHONY : gen/soapC_001.o - -# target to build an object file -gen/soapC_001.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.o -.PHONY : gen/soapC_001.cpp.o - -gen/soapC_001.i: gen/soapC_001.cpp.i -.PHONY : gen/soapC_001.i - -# target to preprocess a source file -gen/soapC_001.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.i -.PHONY : gen/soapC_001.cpp.i - -gen/soapC_001.s: gen/soapC_001.cpp.s -.PHONY : gen/soapC_001.s - -# target to generate assembly for a file -gen/soapC_001.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_001.cpp.s -.PHONY : gen/soapC_001.cpp.s - -gen/soapC_002.o: gen/soapC_002.cpp.o -.PHONY : gen/soapC_002.o - -# target to build an object file -gen/soapC_002.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.o -.PHONY : gen/soapC_002.cpp.o - -gen/soapC_002.i: gen/soapC_002.cpp.i -.PHONY : gen/soapC_002.i - -# target to preprocess a source file -gen/soapC_002.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.i -.PHONY : gen/soapC_002.cpp.i - -gen/soapC_002.s: gen/soapC_002.cpp.s -.PHONY : gen/soapC_002.s - -# target to generate assembly for a file -gen/soapC_002.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_002.cpp.s -.PHONY : gen/soapC_002.cpp.s - -gen/soapC_003.o: gen/soapC_003.cpp.o -.PHONY : gen/soapC_003.o - -# target to build an object file -gen/soapC_003.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.o -.PHONY : gen/soapC_003.cpp.o - -gen/soapC_003.i: gen/soapC_003.cpp.i -.PHONY : gen/soapC_003.i - -# target to preprocess a source file -gen/soapC_003.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.i -.PHONY : gen/soapC_003.cpp.i - -gen/soapC_003.s: gen/soapC_003.cpp.s -.PHONY : gen/soapC_003.s - -# target to generate assembly for a file -gen/soapC_003.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_003.cpp.s -.PHONY : gen/soapC_003.cpp.s - -gen/soapC_004.o: gen/soapC_004.cpp.o -.PHONY : gen/soapC_004.o - -# target to build an object file -gen/soapC_004.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.o -.PHONY : gen/soapC_004.cpp.o - -gen/soapC_004.i: gen/soapC_004.cpp.i -.PHONY : gen/soapC_004.i - -# target to preprocess a source file -gen/soapC_004.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.i -.PHONY : gen/soapC_004.cpp.i - -gen/soapC_004.s: gen/soapC_004.cpp.s -.PHONY : gen/soapC_004.s - -# target to generate assembly for a file -gen/soapC_004.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapC_004.cpp.s -.PHONY : gen/soapC_004.cpp.s - -gen/soapCreatePullPointBindingProxy.o: gen/soapCreatePullPointBindingProxy.cpp.o -.PHONY : gen/soapCreatePullPointBindingProxy.o - -# target to build an object file -gen/soapCreatePullPointBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.o -.PHONY : gen/soapCreatePullPointBindingProxy.cpp.o - -gen/soapCreatePullPointBindingProxy.i: gen/soapCreatePullPointBindingProxy.cpp.i -.PHONY : gen/soapCreatePullPointBindingProxy.i - -# target to preprocess a source file -gen/soapCreatePullPointBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.i -.PHONY : gen/soapCreatePullPointBindingProxy.cpp.i - -gen/soapCreatePullPointBindingProxy.s: gen/soapCreatePullPointBindingProxy.cpp.s -.PHONY : gen/soapCreatePullPointBindingProxy.s - -# target to generate assembly for a file -gen/soapCreatePullPointBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingProxy.cpp.s -.PHONY : gen/soapCreatePullPointBindingProxy.cpp.s - -gen/soapCreatePullPointBindingService.o: gen/soapCreatePullPointBindingService.cpp.o -.PHONY : gen/soapCreatePullPointBindingService.o - -# target to build an object file -gen/soapCreatePullPointBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.o -.PHONY : gen/soapCreatePullPointBindingService.cpp.o - -gen/soapCreatePullPointBindingService.i: gen/soapCreatePullPointBindingService.cpp.i -.PHONY : gen/soapCreatePullPointBindingService.i - -# target to preprocess a source file -gen/soapCreatePullPointBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.i -.PHONY : gen/soapCreatePullPointBindingService.cpp.i - -gen/soapCreatePullPointBindingService.s: gen/soapCreatePullPointBindingService.cpp.s -.PHONY : gen/soapCreatePullPointBindingService.s - -# target to generate assembly for a file -gen/soapCreatePullPointBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapCreatePullPointBindingService.cpp.s -.PHONY : gen/soapCreatePullPointBindingService.cpp.s - -gen/soapDeviceBindingProxy.o: gen/soapDeviceBindingProxy.cpp.o -.PHONY : gen/soapDeviceBindingProxy.o - -# target to build an object file -gen/soapDeviceBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.o -.PHONY : gen/soapDeviceBindingProxy.cpp.o - -gen/soapDeviceBindingProxy.i: gen/soapDeviceBindingProxy.cpp.i -.PHONY : gen/soapDeviceBindingProxy.i - -# target to preprocess a source file -gen/soapDeviceBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.i -.PHONY : gen/soapDeviceBindingProxy.cpp.i - -gen/soapDeviceBindingProxy.s: gen/soapDeviceBindingProxy.cpp.s -.PHONY : gen/soapDeviceBindingProxy.s - -# target to generate assembly for a file -gen/soapDeviceBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceBindingProxy.cpp.s -.PHONY : gen/soapDeviceBindingProxy.cpp.s - -gen/soapDeviceBindingService.o: gen/soapDeviceBindingService.cpp.o -.PHONY : gen/soapDeviceBindingService.o - -# target to build an object file -gen/soapDeviceBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.o -.PHONY : gen/soapDeviceBindingService.cpp.o - -gen/soapDeviceBindingService.i: gen/soapDeviceBindingService.cpp.i -.PHONY : gen/soapDeviceBindingService.i - -# target to preprocess a source file -gen/soapDeviceBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.i -.PHONY : gen/soapDeviceBindingService.cpp.i - -gen/soapDeviceBindingService.s: gen/soapDeviceBindingService.cpp.s -.PHONY : gen/soapDeviceBindingService.s - -# target to generate assembly for a file -gen/soapDeviceBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceBindingService.cpp.s -.PHONY : gen/soapDeviceBindingService.cpp.s - -gen/soapDeviceIOBindingProxy.o: gen/soapDeviceIOBindingProxy.cpp.o -.PHONY : gen/soapDeviceIOBindingProxy.o - -# target to build an object file -gen/soapDeviceIOBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.o -.PHONY : gen/soapDeviceIOBindingProxy.cpp.o - -gen/soapDeviceIOBindingProxy.i: gen/soapDeviceIOBindingProxy.cpp.i -.PHONY : gen/soapDeviceIOBindingProxy.i - -# target to preprocess a source file -gen/soapDeviceIOBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.i -.PHONY : gen/soapDeviceIOBindingProxy.cpp.i - -gen/soapDeviceIOBindingProxy.s: gen/soapDeviceIOBindingProxy.cpp.s -.PHONY : gen/soapDeviceIOBindingProxy.s - -# target to generate assembly for a file -gen/soapDeviceIOBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingProxy.cpp.s -.PHONY : gen/soapDeviceIOBindingProxy.cpp.s - -gen/soapDeviceIOBindingService.o: gen/soapDeviceIOBindingService.cpp.o -.PHONY : gen/soapDeviceIOBindingService.o - -# target to build an object file -gen/soapDeviceIOBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.o -.PHONY : gen/soapDeviceIOBindingService.cpp.o - -gen/soapDeviceIOBindingService.i: gen/soapDeviceIOBindingService.cpp.i -.PHONY : gen/soapDeviceIOBindingService.i - -# target to preprocess a source file -gen/soapDeviceIOBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.i -.PHONY : gen/soapDeviceIOBindingService.cpp.i - -gen/soapDeviceIOBindingService.s: gen/soapDeviceIOBindingService.cpp.s -.PHONY : gen/soapDeviceIOBindingService.s - -# target to generate assembly for a file -gen/soapDeviceIOBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDeviceIOBindingService.cpp.s -.PHONY : gen/soapDeviceIOBindingService.cpp.s - -gen/soapDisplayBindingProxy.o: gen/soapDisplayBindingProxy.cpp.o -.PHONY : gen/soapDisplayBindingProxy.o - -# target to build an object file -gen/soapDisplayBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.o -.PHONY : gen/soapDisplayBindingProxy.cpp.o - -gen/soapDisplayBindingProxy.i: gen/soapDisplayBindingProxy.cpp.i -.PHONY : gen/soapDisplayBindingProxy.i - -# target to preprocess a source file -gen/soapDisplayBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.i -.PHONY : gen/soapDisplayBindingProxy.cpp.i - -gen/soapDisplayBindingProxy.s: gen/soapDisplayBindingProxy.cpp.s -.PHONY : gen/soapDisplayBindingProxy.s - -# target to generate assembly for a file -gen/soapDisplayBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDisplayBindingProxy.cpp.s -.PHONY : gen/soapDisplayBindingProxy.cpp.s - -gen/soapDisplayBindingService.o: gen/soapDisplayBindingService.cpp.o -.PHONY : gen/soapDisplayBindingService.o - -# target to build an object file -gen/soapDisplayBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.o -.PHONY : gen/soapDisplayBindingService.cpp.o - -gen/soapDisplayBindingService.i: gen/soapDisplayBindingService.cpp.i -.PHONY : gen/soapDisplayBindingService.i - -# target to preprocess a source file -gen/soapDisplayBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.i -.PHONY : gen/soapDisplayBindingService.cpp.i - -gen/soapDisplayBindingService.s: gen/soapDisplayBindingService.cpp.s -.PHONY : gen/soapDisplayBindingService.s - -# target to generate assembly for a file -gen/soapDisplayBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapDisplayBindingService.cpp.s -.PHONY : gen/soapDisplayBindingService.cpp.s - -gen/soapEventBindingProxy.o: gen/soapEventBindingProxy.cpp.o -.PHONY : gen/soapEventBindingProxy.o - -# target to build an object file -gen/soapEventBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.o -.PHONY : gen/soapEventBindingProxy.cpp.o - -gen/soapEventBindingProxy.i: gen/soapEventBindingProxy.cpp.i -.PHONY : gen/soapEventBindingProxy.i - -# target to preprocess a source file -gen/soapEventBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.i -.PHONY : gen/soapEventBindingProxy.cpp.i - -gen/soapEventBindingProxy.s: gen/soapEventBindingProxy.cpp.s -.PHONY : gen/soapEventBindingProxy.s - -# target to generate assembly for a file -gen/soapEventBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapEventBindingProxy.cpp.s -.PHONY : gen/soapEventBindingProxy.cpp.s - -gen/soapEventBindingService.o: gen/soapEventBindingService.cpp.o -.PHONY : gen/soapEventBindingService.o - -# target to build an object file -gen/soapEventBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.o -.PHONY : gen/soapEventBindingService.cpp.o - -gen/soapEventBindingService.i: gen/soapEventBindingService.cpp.i -.PHONY : gen/soapEventBindingService.i - -# target to preprocess a source file -gen/soapEventBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.i -.PHONY : gen/soapEventBindingService.cpp.i - -gen/soapEventBindingService.s: gen/soapEventBindingService.cpp.s -.PHONY : gen/soapEventBindingService.s - -# target to generate assembly for a file -gen/soapEventBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapEventBindingService.cpp.s -.PHONY : gen/soapEventBindingService.cpp.s - -gen/soapImagingBindingProxy.o: gen/soapImagingBindingProxy.cpp.o -.PHONY : gen/soapImagingBindingProxy.o - -# target to build an object file -gen/soapImagingBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.o -.PHONY : gen/soapImagingBindingProxy.cpp.o - -gen/soapImagingBindingProxy.i: gen/soapImagingBindingProxy.cpp.i -.PHONY : gen/soapImagingBindingProxy.i - -# target to preprocess a source file -gen/soapImagingBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.i -.PHONY : gen/soapImagingBindingProxy.cpp.i - -gen/soapImagingBindingProxy.s: gen/soapImagingBindingProxy.cpp.s -.PHONY : gen/soapImagingBindingProxy.s - -# target to generate assembly for a file -gen/soapImagingBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapImagingBindingProxy.cpp.s -.PHONY : gen/soapImagingBindingProxy.cpp.s - -gen/soapImagingBindingService.o: gen/soapImagingBindingService.cpp.o -.PHONY : gen/soapImagingBindingService.o - -# target to build an object file -gen/soapImagingBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.o -.PHONY : gen/soapImagingBindingService.cpp.o - -gen/soapImagingBindingService.i: gen/soapImagingBindingService.cpp.i -.PHONY : gen/soapImagingBindingService.i - -# target to preprocess a source file -gen/soapImagingBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.i -.PHONY : gen/soapImagingBindingService.cpp.i - -gen/soapImagingBindingService.s: gen/soapImagingBindingService.cpp.s -.PHONY : gen/soapImagingBindingService.s - -# target to generate assembly for a file -gen/soapImagingBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapImagingBindingService.cpp.s -.PHONY : gen/soapImagingBindingService.cpp.s - -gen/soapMediaBindingProxy.o: gen/soapMediaBindingProxy.cpp.o -.PHONY : gen/soapMediaBindingProxy.o - -# target to build an object file -gen/soapMediaBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.o -.PHONY : gen/soapMediaBindingProxy.cpp.o - -gen/soapMediaBindingProxy.i: gen/soapMediaBindingProxy.cpp.i -.PHONY : gen/soapMediaBindingProxy.i - -# target to preprocess a source file -gen/soapMediaBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.i -.PHONY : gen/soapMediaBindingProxy.cpp.i - -gen/soapMediaBindingProxy.s: gen/soapMediaBindingProxy.cpp.s -.PHONY : gen/soapMediaBindingProxy.s - -# target to generate assembly for a file -gen/soapMediaBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapMediaBindingProxy.cpp.s -.PHONY : gen/soapMediaBindingProxy.cpp.s - -gen/soapMediaBindingService.o: gen/soapMediaBindingService.cpp.o -.PHONY : gen/soapMediaBindingService.o - -# target to build an object file -gen/soapMediaBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.o -.PHONY : gen/soapMediaBindingService.cpp.o - -gen/soapMediaBindingService.i: gen/soapMediaBindingService.cpp.i -.PHONY : gen/soapMediaBindingService.i - -# target to preprocess a source file -gen/soapMediaBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.i -.PHONY : gen/soapMediaBindingService.cpp.i - -gen/soapMediaBindingService.s: gen/soapMediaBindingService.cpp.s -.PHONY : gen/soapMediaBindingService.s - -# target to generate assembly for a file -gen/soapMediaBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapMediaBindingService.cpp.s -.PHONY : gen/soapMediaBindingService.cpp.s - -gen/soapNotificationConsumerBindingProxy.o: gen/soapNotificationConsumerBindingProxy.cpp.o -.PHONY : gen/soapNotificationConsumerBindingProxy.o - -# target to build an object file -gen/soapNotificationConsumerBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.o -.PHONY : gen/soapNotificationConsumerBindingProxy.cpp.o - -gen/soapNotificationConsumerBindingProxy.i: gen/soapNotificationConsumerBindingProxy.cpp.i -.PHONY : gen/soapNotificationConsumerBindingProxy.i - -# target to preprocess a source file -gen/soapNotificationConsumerBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.i -.PHONY : gen/soapNotificationConsumerBindingProxy.cpp.i - -gen/soapNotificationConsumerBindingProxy.s: gen/soapNotificationConsumerBindingProxy.cpp.s -.PHONY : gen/soapNotificationConsumerBindingProxy.s - -# target to generate assembly for a file -gen/soapNotificationConsumerBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingProxy.cpp.s -.PHONY : gen/soapNotificationConsumerBindingProxy.cpp.s - -gen/soapNotificationConsumerBindingService.o: gen/soapNotificationConsumerBindingService.cpp.o -.PHONY : gen/soapNotificationConsumerBindingService.o - -# target to build an object file -gen/soapNotificationConsumerBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.o -.PHONY : gen/soapNotificationConsumerBindingService.cpp.o - -gen/soapNotificationConsumerBindingService.i: gen/soapNotificationConsumerBindingService.cpp.i -.PHONY : gen/soapNotificationConsumerBindingService.i - -# target to preprocess a source file -gen/soapNotificationConsumerBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.i -.PHONY : gen/soapNotificationConsumerBindingService.cpp.i - -gen/soapNotificationConsumerBindingService.s: gen/soapNotificationConsumerBindingService.cpp.s -.PHONY : gen/soapNotificationConsumerBindingService.s - -# target to generate assembly for a file -gen/soapNotificationConsumerBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationConsumerBindingService.cpp.s -.PHONY : gen/soapNotificationConsumerBindingService.cpp.s - -gen/soapNotificationProducerBindingProxy.o: gen/soapNotificationProducerBindingProxy.cpp.o -.PHONY : gen/soapNotificationProducerBindingProxy.o - -# target to build an object file -gen/soapNotificationProducerBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.o -.PHONY : gen/soapNotificationProducerBindingProxy.cpp.o - -gen/soapNotificationProducerBindingProxy.i: gen/soapNotificationProducerBindingProxy.cpp.i -.PHONY : gen/soapNotificationProducerBindingProxy.i - -# target to preprocess a source file -gen/soapNotificationProducerBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.i -.PHONY : gen/soapNotificationProducerBindingProxy.cpp.i - -gen/soapNotificationProducerBindingProxy.s: gen/soapNotificationProducerBindingProxy.cpp.s -.PHONY : gen/soapNotificationProducerBindingProxy.s - -# target to generate assembly for a file -gen/soapNotificationProducerBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingProxy.cpp.s -.PHONY : gen/soapNotificationProducerBindingProxy.cpp.s - -gen/soapNotificationProducerBindingService.o: gen/soapNotificationProducerBindingService.cpp.o -.PHONY : gen/soapNotificationProducerBindingService.o - -# target to build an object file -gen/soapNotificationProducerBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.o -.PHONY : gen/soapNotificationProducerBindingService.cpp.o - -gen/soapNotificationProducerBindingService.i: gen/soapNotificationProducerBindingService.cpp.i -.PHONY : gen/soapNotificationProducerBindingService.i - -# target to preprocess a source file -gen/soapNotificationProducerBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.i -.PHONY : gen/soapNotificationProducerBindingService.cpp.i - -gen/soapNotificationProducerBindingService.s: gen/soapNotificationProducerBindingService.cpp.s -.PHONY : gen/soapNotificationProducerBindingService.s - -# target to generate assembly for a file -gen/soapNotificationProducerBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapNotificationProducerBindingService.cpp.s -.PHONY : gen/soapNotificationProducerBindingService.cpp.s - -gen/soapPTZBindingProxy.o: gen/soapPTZBindingProxy.cpp.o -.PHONY : gen/soapPTZBindingProxy.o - -# target to build an object file -gen/soapPTZBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.o -.PHONY : gen/soapPTZBindingProxy.cpp.o - -gen/soapPTZBindingProxy.i: gen/soapPTZBindingProxy.cpp.i -.PHONY : gen/soapPTZBindingProxy.i - -# target to preprocess a source file -gen/soapPTZBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.i -.PHONY : gen/soapPTZBindingProxy.cpp.i - -gen/soapPTZBindingProxy.s: gen/soapPTZBindingProxy.cpp.s -.PHONY : gen/soapPTZBindingProxy.s - -# target to generate assembly for a file -gen/soapPTZBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPTZBindingProxy.cpp.s -.PHONY : gen/soapPTZBindingProxy.cpp.s - -gen/soapPTZBindingService.o: gen/soapPTZBindingService.cpp.o -.PHONY : gen/soapPTZBindingService.o - -# target to build an object file -gen/soapPTZBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.o -.PHONY : gen/soapPTZBindingService.cpp.o - -gen/soapPTZBindingService.i: gen/soapPTZBindingService.cpp.i -.PHONY : gen/soapPTZBindingService.i - -# target to preprocess a source file -gen/soapPTZBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.i -.PHONY : gen/soapPTZBindingService.cpp.i - -gen/soapPTZBindingService.s: gen/soapPTZBindingService.cpp.s -.PHONY : gen/soapPTZBindingService.s - -# target to generate assembly for a file -gen/soapPTZBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPTZBindingService.cpp.s -.PHONY : gen/soapPTZBindingService.cpp.s - -gen/soapPausableSubscriptionManagerBindingProxy.o: gen/soapPausableSubscriptionManagerBindingProxy.cpp.o -.PHONY : gen/soapPausableSubscriptionManagerBindingProxy.o - -# target to build an object file -gen/soapPausableSubscriptionManagerBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.o -.PHONY : gen/soapPausableSubscriptionManagerBindingProxy.cpp.o - -gen/soapPausableSubscriptionManagerBindingProxy.i: gen/soapPausableSubscriptionManagerBindingProxy.cpp.i -.PHONY : gen/soapPausableSubscriptionManagerBindingProxy.i - -# target to preprocess a source file -gen/soapPausableSubscriptionManagerBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.i -.PHONY : gen/soapPausableSubscriptionManagerBindingProxy.cpp.i - -gen/soapPausableSubscriptionManagerBindingProxy.s: gen/soapPausableSubscriptionManagerBindingProxy.cpp.s -.PHONY : gen/soapPausableSubscriptionManagerBindingProxy.s - -# target to generate assembly for a file -gen/soapPausableSubscriptionManagerBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingProxy.cpp.s -.PHONY : gen/soapPausableSubscriptionManagerBindingProxy.cpp.s - -gen/soapPausableSubscriptionManagerBindingService.o: gen/soapPausableSubscriptionManagerBindingService.cpp.o -.PHONY : gen/soapPausableSubscriptionManagerBindingService.o - -# target to build an object file -gen/soapPausableSubscriptionManagerBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.o -.PHONY : gen/soapPausableSubscriptionManagerBindingService.cpp.o - -gen/soapPausableSubscriptionManagerBindingService.i: gen/soapPausableSubscriptionManagerBindingService.cpp.i -.PHONY : gen/soapPausableSubscriptionManagerBindingService.i - -# target to preprocess a source file -gen/soapPausableSubscriptionManagerBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.i -.PHONY : gen/soapPausableSubscriptionManagerBindingService.cpp.i - -gen/soapPausableSubscriptionManagerBindingService.s: gen/soapPausableSubscriptionManagerBindingService.cpp.s -.PHONY : gen/soapPausableSubscriptionManagerBindingService.s - -# target to generate assembly for a file -gen/soapPausableSubscriptionManagerBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPausableSubscriptionManagerBindingService.cpp.s -.PHONY : gen/soapPausableSubscriptionManagerBindingService.cpp.s - -gen/soapPullPointBindingProxy.o: gen/soapPullPointBindingProxy.cpp.o -.PHONY : gen/soapPullPointBindingProxy.o - -# target to build an object file -gen/soapPullPointBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.o -.PHONY : gen/soapPullPointBindingProxy.cpp.o - -gen/soapPullPointBindingProxy.i: gen/soapPullPointBindingProxy.cpp.i -.PHONY : gen/soapPullPointBindingProxy.i - -# target to preprocess a source file -gen/soapPullPointBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.i -.PHONY : gen/soapPullPointBindingProxy.cpp.i - -gen/soapPullPointBindingProxy.s: gen/soapPullPointBindingProxy.cpp.s -.PHONY : gen/soapPullPointBindingProxy.s - -# target to generate assembly for a file -gen/soapPullPointBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointBindingProxy.cpp.s -.PHONY : gen/soapPullPointBindingProxy.cpp.s - -gen/soapPullPointBindingService.o: gen/soapPullPointBindingService.cpp.o -.PHONY : gen/soapPullPointBindingService.o - -# target to build an object file -gen/soapPullPointBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.o -.PHONY : gen/soapPullPointBindingService.cpp.o - -gen/soapPullPointBindingService.i: gen/soapPullPointBindingService.cpp.i -.PHONY : gen/soapPullPointBindingService.i - -# target to preprocess a source file -gen/soapPullPointBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.i -.PHONY : gen/soapPullPointBindingService.cpp.i - -gen/soapPullPointBindingService.s: gen/soapPullPointBindingService.cpp.s -.PHONY : gen/soapPullPointBindingService.s - -# target to generate assembly for a file -gen/soapPullPointBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointBindingService.cpp.s -.PHONY : gen/soapPullPointBindingService.cpp.s - -gen/soapPullPointSubscriptionBindingProxy.o: gen/soapPullPointSubscriptionBindingProxy.cpp.o -.PHONY : gen/soapPullPointSubscriptionBindingProxy.o - -# target to build an object file -gen/soapPullPointSubscriptionBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.o -.PHONY : gen/soapPullPointSubscriptionBindingProxy.cpp.o - -gen/soapPullPointSubscriptionBindingProxy.i: gen/soapPullPointSubscriptionBindingProxy.cpp.i -.PHONY : gen/soapPullPointSubscriptionBindingProxy.i - -# target to preprocess a source file -gen/soapPullPointSubscriptionBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.i -.PHONY : gen/soapPullPointSubscriptionBindingProxy.cpp.i - -gen/soapPullPointSubscriptionBindingProxy.s: gen/soapPullPointSubscriptionBindingProxy.cpp.s -.PHONY : gen/soapPullPointSubscriptionBindingProxy.s - -# target to generate assembly for a file -gen/soapPullPointSubscriptionBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingProxy.cpp.s -.PHONY : gen/soapPullPointSubscriptionBindingProxy.cpp.s - -gen/soapPullPointSubscriptionBindingService.o: gen/soapPullPointSubscriptionBindingService.cpp.o -.PHONY : gen/soapPullPointSubscriptionBindingService.o - -# target to build an object file -gen/soapPullPointSubscriptionBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.o -.PHONY : gen/soapPullPointSubscriptionBindingService.cpp.o - -gen/soapPullPointSubscriptionBindingService.i: gen/soapPullPointSubscriptionBindingService.cpp.i -.PHONY : gen/soapPullPointSubscriptionBindingService.i - -# target to preprocess a source file -gen/soapPullPointSubscriptionBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.i -.PHONY : gen/soapPullPointSubscriptionBindingService.cpp.i - -gen/soapPullPointSubscriptionBindingService.s: gen/soapPullPointSubscriptionBindingService.cpp.s -.PHONY : gen/soapPullPointSubscriptionBindingService.s - -# target to generate assembly for a file -gen/soapPullPointSubscriptionBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapPullPointSubscriptionBindingService.cpp.s -.PHONY : gen/soapPullPointSubscriptionBindingService.cpp.s - -gen/soapReceiverBindingProxy.o: gen/soapReceiverBindingProxy.cpp.o -.PHONY : gen/soapReceiverBindingProxy.o - -# target to build an object file -gen/soapReceiverBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.o -.PHONY : gen/soapReceiverBindingProxy.cpp.o - -gen/soapReceiverBindingProxy.i: gen/soapReceiverBindingProxy.cpp.i -.PHONY : gen/soapReceiverBindingProxy.i - -# target to preprocess a source file -gen/soapReceiverBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.i -.PHONY : gen/soapReceiverBindingProxy.cpp.i - -gen/soapReceiverBindingProxy.s: gen/soapReceiverBindingProxy.cpp.s -.PHONY : gen/soapReceiverBindingProxy.s - -# target to generate assembly for a file -gen/soapReceiverBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReceiverBindingProxy.cpp.s -.PHONY : gen/soapReceiverBindingProxy.cpp.s - -gen/soapReceiverBindingService.o: gen/soapReceiverBindingService.cpp.o -.PHONY : gen/soapReceiverBindingService.o - -# target to build an object file -gen/soapReceiverBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.o -.PHONY : gen/soapReceiverBindingService.cpp.o - -gen/soapReceiverBindingService.i: gen/soapReceiverBindingService.cpp.i -.PHONY : gen/soapReceiverBindingService.i - -# target to preprocess a source file -gen/soapReceiverBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.i -.PHONY : gen/soapReceiverBindingService.cpp.i - -gen/soapReceiverBindingService.s: gen/soapReceiverBindingService.cpp.s -.PHONY : gen/soapReceiverBindingService.s - -# target to generate assembly for a file -gen/soapReceiverBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReceiverBindingService.cpp.s -.PHONY : gen/soapReceiverBindingService.cpp.s - -gen/soapRecordingBindingProxy.o: gen/soapRecordingBindingProxy.cpp.o -.PHONY : gen/soapRecordingBindingProxy.o - -# target to build an object file -gen/soapRecordingBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.o -.PHONY : gen/soapRecordingBindingProxy.cpp.o - -gen/soapRecordingBindingProxy.i: gen/soapRecordingBindingProxy.cpp.i -.PHONY : gen/soapRecordingBindingProxy.i - -# target to preprocess a source file -gen/soapRecordingBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.i -.PHONY : gen/soapRecordingBindingProxy.cpp.i - -gen/soapRecordingBindingProxy.s: gen/soapRecordingBindingProxy.cpp.s -.PHONY : gen/soapRecordingBindingProxy.s - -# target to generate assembly for a file -gen/soapRecordingBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapRecordingBindingProxy.cpp.s -.PHONY : gen/soapRecordingBindingProxy.cpp.s - -gen/soapRecordingBindingService.o: gen/soapRecordingBindingService.cpp.o -.PHONY : gen/soapRecordingBindingService.o - -# target to build an object file -gen/soapRecordingBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.o -.PHONY : gen/soapRecordingBindingService.cpp.o - -gen/soapRecordingBindingService.i: gen/soapRecordingBindingService.cpp.i -.PHONY : gen/soapRecordingBindingService.i - -# target to preprocess a source file -gen/soapRecordingBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.i -.PHONY : gen/soapRecordingBindingService.cpp.i - -gen/soapRecordingBindingService.s: gen/soapRecordingBindingService.cpp.s -.PHONY : gen/soapRecordingBindingService.s - -# target to generate assembly for a file -gen/soapRecordingBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapRecordingBindingService.cpp.s -.PHONY : gen/soapRecordingBindingService.cpp.s - -gen/soapReplayBindingProxy.o: gen/soapReplayBindingProxy.cpp.o -.PHONY : gen/soapReplayBindingProxy.o - -# target to build an object file -gen/soapReplayBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.o -.PHONY : gen/soapReplayBindingProxy.cpp.o - -gen/soapReplayBindingProxy.i: gen/soapReplayBindingProxy.cpp.i -.PHONY : gen/soapReplayBindingProxy.i - -# target to preprocess a source file -gen/soapReplayBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.i -.PHONY : gen/soapReplayBindingProxy.cpp.i - -gen/soapReplayBindingProxy.s: gen/soapReplayBindingProxy.cpp.s -.PHONY : gen/soapReplayBindingProxy.s - -# target to generate assembly for a file -gen/soapReplayBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReplayBindingProxy.cpp.s -.PHONY : gen/soapReplayBindingProxy.cpp.s - -gen/soapReplayBindingService.o: gen/soapReplayBindingService.cpp.o -.PHONY : gen/soapReplayBindingService.o - -# target to build an object file -gen/soapReplayBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.o -.PHONY : gen/soapReplayBindingService.cpp.o - -gen/soapReplayBindingService.i: gen/soapReplayBindingService.cpp.i -.PHONY : gen/soapReplayBindingService.i - -# target to preprocess a source file -gen/soapReplayBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.i -.PHONY : gen/soapReplayBindingService.cpp.i - -gen/soapReplayBindingService.s: gen/soapReplayBindingService.cpp.s -.PHONY : gen/soapReplayBindingService.s - -# target to generate assembly for a file -gen/soapReplayBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapReplayBindingService.cpp.s -.PHONY : gen/soapReplayBindingService.cpp.s - -gen/soapSearchBindingProxy.o: gen/soapSearchBindingProxy.cpp.o -.PHONY : gen/soapSearchBindingProxy.o - -# target to build an object file -gen/soapSearchBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.o -.PHONY : gen/soapSearchBindingProxy.cpp.o - -gen/soapSearchBindingProxy.i: gen/soapSearchBindingProxy.cpp.i -.PHONY : gen/soapSearchBindingProxy.i - -# target to preprocess a source file -gen/soapSearchBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.i -.PHONY : gen/soapSearchBindingProxy.cpp.i - -gen/soapSearchBindingProxy.s: gen/soapSearchBindingProxy.cpp.s -.PHONY : gen/soapSearchBindingProxy.s - -# target to generate assembly for a file -gen/soapSearchBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSearchBindingProxy.cpp.s -.PHONY : gen/soapSearchBindingProxy.cpp.s - -gen/soapSearchBindingService.o: gen/soapSearchBindingService.cpp.o -.PHONY : gen/soapSearchBindingService.o - -# target to build an object file -gen/soapSearchBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.o -.PHONY : gen/soapSearchBindingService.cpp.o - -gen/soapSearchBindingService.i: gen/soapSearchBindingService.cpp.i -.PHONY : gen/soapSearchBindingService.i - -# target to preprocess a source file -gen/soapSearchBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.i -.PHONY : gen/soapSearchBindingService.cpp.i - -gen/soapSearchBindingService.s: gen/soapSearchBindingService.cpp.s -.PHONY : gen/soapSearchBindingService.s - -# target to generate assembly for a file -gen/soapSearchBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSearchBindingService.cpp.s -.PHONY : gen/soapSearchBindingService.cpp.s - -gen/soapSubscriptionManagerBindingProxy.o: gen/soapSubscriptionManagerBindingProxy.cpp.o -.PHONY : gen/soapSubscriptionManagerBindingProxy.o - -# target to build an object file -gen/soapSubscriptionManagerBindingProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.o -.PHONY : gen/soapSubscriptionManagerBindingProxy.cpp.o - -gen/soapSubscriptionManagerBindingProxy.i: gen/soapSubscriptionManagerBindingProxy.cpp.i -.PHONY : gen/soapSubscriptionManagerBindingProxy.i - -# target to preprocess a source file -gen/soapSubscriptionManagerBindingProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.i -.PHONY : gen/soapSubscriptionManagerBindingProxy.cpp.i - -gen/soapSubscriptionManagerBindingProxy.s: gen/soapSubscriptionManagerBindingProxy.cpp.s -.PHONY : gen/soapSubscriptionManagerBindingProxy.s - -# target to generate assembly for a file -gen/soapSubscriptionManagerBindingProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingProxy.cpp.s -.PHONY : gen/soapSubscriptionManagerBindingProxy.cpp.s - -gen/soapSubscriptionManagerBindingService.o: gen/soapSubscriptionManagerBindingService.cpp.o -.PHONY : gen/soapSubscriptionManagerBindingService.o - -# target to build an object file -gen/soapSubscriptionManagerBindingService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.o -.PHONY : gen/soapSubscriptionManagerBindingService.cpp.o - -gen/soapSubscriptionManagerBindingService.i: gen/soapSubscriptionManagerBindingService.cpp.i -.PHONY : gen/soapSubscriptionManagerBindingService.i - -# target to preprocess a source file -gen/soapSubscriptionManagerBindingService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.i -.PHONY : gen/soapSubscriptionManagerBindingService.cpp.i - -gen/soapSubscriptionManagerBindingService.s: gen/soapSubscriptionManagerBindingService.cpp.s -.PHONY : gen/soapSubscriptionManagerBindingService.s - -# target to generate assembly for a file -gen/soapSubscriptionManagerBindingService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapSubscriptionManagerBindingService.cpp.s -.PHONY : gen/soapSubscriptionManagerBindingService.cpp.s - -gen/soapwsddProxy.o: gen/soapwsddProxy.cpp.o -.PHONY : gen/soapwsddProxy.o - -# target to build an object file -gen/soapwsddProxy.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.o -.PHONY : gen/soapwsddProxy.cpp.o - -gen/soapwsddProxy.i: gen/soapwsddProxy.cpp.i -.PHONY : gen/soapwsddProxy.i - -# target to preprocess a source file -gen/soapwsddProxy.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.i -.PHONY : gen/soapwsddProxy.cpp.i - -gen/soapwsddProxy.s: gen/soapwsddProxy.cpp.s -.PHONY : gen/soapwsddProxy.s - -# target to generate assembly for a file -gen/soapwsddProxy.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapwsddProxy.cpp.s -.PHONY : gen/soapwsddProxy.cpp.s - -gen/soapwsddService.o: gen/soapwsddService.cpp.o -.PHONY : gen/soapwsddService.o - -# target to build an object file -gen/soapwsddService.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.o -.PHONY : gen/soapwsddService.cpp.o - -gen/soapwsddService.i: gen/soapwsddService.cpp.i -.PHONY : gen/soapwsddService.i - -# target to preprocess a source file -gen/soapwsddService.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.i -.PHONY : gen/soapwsddService.cpp.i - -gen/soapwsddService.s: gen/soapwsddService.cpp.s -.PHONY : gen/soapwsddService.s - -# target to generate assembly for a file -gen/soapwsddService.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/soap_lib.dir/build.make CMakeFiles/soap_lib.dir/gen/soapwsddService.cpp.s -.PHONY : gen/soapwsddService.cpp.s - -src/onvif-client.o: src/onvif-client.cpp.o -.PHONY : src/onvif-client.o - -# target to build an object file -src/onvif-client.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/src/onvif-client.cpp.o -.PHONY : src/onvif-client.cpp.o - -src/onvif-client.i: src/onvif-client.cpp.i -.PHONY : src/onvif-client.i - -# target to preprocess a source file -src/onvif-client.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/src/onvif-client.cpp.i -.PHONY : src/onvif-client.cpp.i - -src/onvif-client.s: src/onvif-client.cpp.s -.PHONY : src/onvif-client.s - -# target to generate assembly for a file -src/onvif-client.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/src/onvif-client.cpp.s -.PHONY : src/onvif-client.cpp.s - -src/onvif-server.o: src/onvif-server.cpp.o -.PHONY : src/onvif-server.o - -# target to build an object file -src/onvif-server.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/src/onvif-server.cpp.o -.PHONY : src/onvif-server.cpp.o - -src/onvif-server.i: src/onvif-server.cpp.i -.PHONY : src/onvif-server.i - -# target to preprocess a source file -src/onvif-server.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/src/onvif-server.cpp.i -.PHONY : src/onvif-server.cpp.i - -src/onvif-server.s: src/onvif-server.cpp.s -.PHONY : src/onvif-server.s - -# target to generate assembly for a file -src/onvif-server.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/src/onvif-server.cpp.s -.PHONY : src/onvif-server.cpp.s - -src/onvif_impl.o: src/onvif_impl.cpp.o -.PHONY : src/onvif_impl.o - -# target to build an object file -src/onvif_impl.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.o -.PHONY : src/onvif_impl.cpp.o - -src/onvif_impl.i: src/onvif_impl.cpp.i -.PHONY : src/onvif_impl.i - -# target to preprocess a source file -src/onvif_impl.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.i -.PHONY : src/onvif_impl.cpp.i - -src/onvif_impl.s: src/onvif_impl.cpp.s -.PHONY : src/onvif_impl.s - -# target to generate assembly for a file -src/onvif_impl.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/src/onvif_impl.cpp.s -.PHONY : src/onvif_impl.cpp.s - -src/serverDevice.o: src/serverDevice.cpp.o -.PHONY : src/serverDevice.o - -# target to build an object file -src/serverDevice.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDevice.cpp.o -.PHONY : src/serverDevice.cpp.o - -src/serverDevice.i: src/serverDevice.cpp.i -.PHONY : src/serverDevice.i - -# target to preprocess a source file -src/serverDevice.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDevice.cpp.i -.PHONY : src/serverDevice.cpp.i - -src/serverDevice.s: src/serverDevice.cpp.s -.PHONY : src/serverDevice.s - -# target to generate assembly for a file -src/serverDevice.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDevice.cpp.s -.PHONY : src/serverDevice.cpp.s - -src/serverDeviceIO.o: src/serverDeviceIO.cpp.o -.PHONY : src/serverDeviceIO.o - -# target to build an object file -src/serverDeviceIO.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.o -.PHONY : src/serverDeviceIO.cpp.o - -src/serverDeviceIO.i: src/serverDeviceIO.cpp.i -.PHONY : src/serverDeviceIO.i - -# target to preprocess a source file -src/serverDeviceIO.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.i -.PHONY : src/serverDeviceIO.cpp.i - -src/serverDeviceIO.s: src/serverDeviceIO.cpp.s -.PHONY : src/serverDeviceIO.s - -# target to generate assembly for a file -src/serverDeviceIO.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDeviceIO.cpp.s -.PHONY : src/serverDeviceIO.cpp.s - -src/serverDisplay.o: src/serverDisplay.cpp.o -.PHONY : src/serverDisplay.o - -# target to build an object file -src/serverDisplay.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.o -.PHONY : src/serverDisplay.cpp.o - -src/serverDisplay.i: src/serverDisplay.cpp.i -.PHONY : src/serverDisplay.i - -# target to preprocess a source file -src/serverDisplay.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.i -.PHONY : src/serverDisplay.cpp.i - -src/serverDisplay.s: src/serverDisplay.cpp.s -.PHONY : src/serverDisplay.s - -# target to generate assembly for a file -src/serverDisplay.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverDisplay.cpp.s -.PHONY : src/serverDisplay.cpp.s - -src/serverEvent.o: src/serverEvent.cpp.o -.PHONY : src/serverEvent.o - -# target to build an object file -src/serverEvent.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverEvent.cpp.o -.PHONY : src/serverEvent.cpp.o - -src/serverEvent.i: src/serverEvent.cpp.i -.PHONY : src/serverEvent.i - -# target to preprocess a source file -src/serverEvent.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverEvent.cpp.i -.PHONY : src/serverEvent.cpp.i - -src/serverEvent.s: src/serverEvent.cpp.s -.PHONY : src/serverEvent.s - -# target to generate assembly for a file -src/serverEvent.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverEvent.cpp.s -.PHONY : src/serverEvent.cpp.s - -src/serverImaging.o: src/serverImaging.cpp.o -.PHONY : src/serverImaging.o - -# target to build an object file -src/serverImaging.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverImaging.cpp.o -.PHONY : src/serverImaging.cpp.o - -src/serverImaging.i: src/serverImaging.cpp.i -.PHONY : src/serverImaging.i - -# target to preprocess a source file -src/serverImaging.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverImaging.cpp.i -.PHONY : src/serverImaging.cpp.i - -src/serverImaging.s: src/serverImaging.cpp.s -.PHONY : src/serverImaging.s - -# target to generate assembly for a file -src/serverImaging.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverImaging.cpp.s -.PHONY : src/serverImaging.cpp.s - -src/serverMedia.o: src/serverMedia.cpp.o -.PHONY : src/serverMedia.o - -# target to build an object file -src/serverMedia.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverMedia.cpp.o -.PHONY : src/serverMedia.cpp.o - -src/serverMedia.i: src/serverMedia.cpp.i -.PHONY : src/serverMedia.i - -# target to preprocess a source file -src/serverMedia.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverMedia.cpp.i -.PHONY : src/serverMedia.cpp.i - -src/serverMedia.s: src/serverMedia.cpp.s -.PHONY : src/serverMedia.s - -# target to generate assembly for a file -src/serverMedia.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverMedia.cpp.s -.PHONY : src/serverMedia.cpp.s - -src/serverNotificationConsumer.o: src/serverNotificationConsumer.cpp.o -.PHONY : src/serverNotificationConsumer.o - -# target to build an object file -src/serverNotificationConsumer.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.o -.PHONY : src/serverNotificationConsumer.cpp.o - -src/serverNotificationConsumer.i: src/serverNotificationConsumer.cpp.i -.PHONY : src/serverNotificationConsumer.i - -# target to preprocess a source file -src/serverNotificationConsumer.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.i -.PHONY : src/serverNotificationConsumer.cpp.i - -src/serverNotificationConsumer.s: src/serverNotificationConsumer.cpp.s -.PHONY : src/serverNotificationConsumer.s - -# target to generate assembly for a file -src/serverNotificationConsumer.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverNotificationConsumer.cpp.s -.PHONY : src/serverNotificationConsumer.cpp.s - -src/serverNotificationProducer.o: src/serverNotificationProducer.cpp.o -.PHONY : src/serverNotificationProducer.o - -# target to build an object file -src/serverNotificationProducer.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.o -.PHONY : src/serverNotificationProducer.cpp.o - -src/serverNotificationProducer.i: src/serverNotificationProducer.cpp.i -.PHONY : src/serverNotificationProducer.i - -# target to preprocess a source file -src/serverNotificationProducer.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.i -.PHONY : src/serverNotificationProducer.cpp.i - -src/serverNotificationProducer.s: src/serverNotificationProducer.cpp.s -.PHONY : src/serverNotificationProducer.s - -# target to generate assembly for a file -src/serverNotificationProducer.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverNotificationProducer.cpp.s -.PHONY : src/serverNotificationProducer.cpp.s - -src/serverPTZ.o: src/serverPTZ.cpp.o -.PHONY : src/serverPTZ.o - -# target to build an object file -src/serverPTZ.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.o -.PHONY : src/serverPTZ.cpp.o - -src/serverPTZ.i: src/serverPTZ.cpp.i -.PHONY : src/serverPTZ.i - -# target to preprocess a source file -src/serverPTZ.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.i -.PHONY : src/serverPTZ.cpp.i - -src/serverPTZ.s: src/serverPTZ.cpp.s -.PHONY : src/serverPTZ.s - -# target to generate assembly for a file -src/serverPTZ.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverPTZ.cpp.s -.PHONY : src/serverPTZ.cpp.s - -src/serverPullPointSubscription.o: src/serverPullPointSubscription.cpp.o -.PHONY : src/serverPullPointSubscription.o - -# target to build an object file -src/serverPullPointSubscription.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.o -.PHONY : src/serverPullPointSubscription.cpp.o - -src/serverPullPointSubscription.i: src/serverPullPointSubscription.cpp.i -.PHONY : src/serverPullPointSubscription.i - -# target to preprocess a source file -src/serverPullPointSubscription.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.i -.PHONY : src/serverPullPointSubscription.cpp.i - -src/serverPullPointSubscription.s: src/serverPullPointSubscription.cpp.s -.PHONY : src/serverPullPointSubscription.s - -# target to generate assembly for a file -src/serverPullPointSubscription.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverPullPointSubscription.cpp.s -.PHONY : src/serverPullPointSubscription.cpp.s - -src/serverReceiver.o: src/serverReceiver.cpp.o -.PHONY : src/serverReceiver.o - -# target to build an object file -src/serverReceiver.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.o -.PHONY : src/serverReceiver.cpp.o - -src/serverReceiver.i: src/serverReceiver.cpp.i -.PHONY : src/serverReceiver.i - -# target to preprocess a source file -src/serverReceiver.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.i -.PHONY : src/serverReceiver.cpp.i - -src/serverReceiver.s: src/serverReceiver.cpp.s -.PHONY : src/serverReceiver.s - -# target to generate assembly for a file -src/serverReceiver.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverReceiver.cpp.s -.PHONY : src/serverReceiver.cpp.s - -src/serverRecording.o: src/serverRecording.cpp.o -.PHONY : src/serverRecording.o - -# target to build an object file -src/serverRecording.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverRecording.cpp.o -.PHONY : src/serverRecording.cpp.o - -src/serverRecording.i: src/serverRecording.cpp.i -.PHONY : src/serverRecording.i - -# target to preprocess a source file -src/serverRecording.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverRecording.cpp.i -.PHONY : src/serverRecording.cpp.i - -src/serverRecording.s: src/serverRecording.cpp.s -.PHONY : src/serverRecording.s - -# target to generate assembly for a file -src/serverRecording.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverRecording.cpp.s -.PHONY : src/serverRecording.cpp.s - -src/serverReplay.o: src/serverReplay.cpp.o -.PHONY : src/serverReplay.o - -# target to build an object file -src/serverReplay.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverReplay.cpp.o -.PHONY : src/serverReplay.cpp.o - -src/serverReplay.i: src/serverReplay.cpp.i -.PHONY : src/serverReplay.i - -# target to preprocess a source file -src/serverReplay.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverReplay.cpp.i -.PHONY : src/serverReplay.cpp.i - -src/serverReplay.s: src/serverReplay.cpp.s -.PHONY : src/serverReplay.s - -# target to generate assembly for a file -src/serverReplay.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverReplay.cpp.s -.PHONY : src/serverReplay.cpp.s - -src/serverSearch.o: src/serverSearch.cpp.o -.PHONY : src/serverSearch.o - -# target to build an object file -src/serverSearch.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverSearch.cpp.o -.PHONY : src/serverSearch.cpp.o - -src/serverSearch.i: src/serverSearch.cpp.i -.PHONY : src/serverSearch.i - -# target to preprocess a source file -src/serverSearch.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverSearch.cpp.i -.PHONY : src/serverSearch.cpp.i - -src/serverSearch.s: src/serverSearch.cpp.s -.PHONY : src/serverSearch.s - -# target to generate assembly for a file -src/serverSearch.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverSearch.cpp.s -.PHONY : src/serverSearch.cpp.s - -src/serverSubscriptionManager.o: src/serverSubscriptionManager.cpp.o -.PHONY : src/serverSubscriptionManager.o - -# target to build an object file -src/serverSubscriptionManager.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.o -.PHONY : src/serverSubscriptionManager.cpp.o - -src/serverSubscriptionManager.i: src/serverSubscriptionManager.cpp.i -.PHONY : src/serverSubscriptionManager.i - -# target to preprocess a source file -src/serverSubscriptionManager.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.i -.PHONY : src/serverSubscriptionManager.cpp.i - -src/serverSubscriptionManager.s: src/serverSubscriptionManager.cpp.s -.PHONY : src/serverSubscriptionManager.s - -# target to generate assembly for a file -src/serverSubscriptionManager.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif_server.dir/build.make CMakeFiles/onvif_server.dir/src/serverSubscriptionManager.cpp.s -.PHONY : src/serverSubscriptionManager.cpp.s - -usr/local/share/gsoap/custom/struct_timeval.o: usr/local/share/gsoap/custom/struct_timeval.c.o -.PHONY : usr/local/share/gsoap/custom/struct_timeval.o - -# target to build an object file -usr/local/share/gsoap/custom/struct_timeval.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.o -.PHONY : usr/local/share/gsoap/custom/struct_timeval.c.o - -usr/local/share/gsoap/custom/struct_timeval.i: usr/local/share/gsoap/custom/struct_timeval.c.i -.PHONY : usr/local/share/gsoap/custom/struct_timeval.i - -# target to preprocess a source file -usr/local/share/gsoap/custom/struct_timeval.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.i -.PHONY : usr/local/share/gsoap/custom/struct_timeval.c.i - -usr/local/share/gsoap/custom/struct_timeval.s: usr/local/share/gsoap/custom/struct_timeval.c.s -.PHONY : usr/local/share/gsoap/custom/struct_timeval.s - -# target to generate assembly for a file -usr/local/share/gsoap/custom/struct_timeval.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/custom/struct_timeval.c.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/custom/struct_timeval.c.s -.PHONY : usr/local/share/gsoap/custom/struct_timeval.c.s - -usr/local/share/gsoap/plugin/mecevp.o: usr/local/share/gsoap/plugin/mecevp.c.o -.PHONY : usr/local/share/gsoap/plugin/mecevp.o - -# target to build an object file -usr/local/share/gsoap/plugin/mecevp.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.o -.PHONY : usr/local/share/gsoap/plugin/mecevp.c.o - -usr/local/share/gsoap/plugin/mecevp.i: usr/local/share/gsoap/plugin/mecevp.c.i -.PHONY : usr/local/share/gsoap/plugin/mecevp.i - -# target to preprocess a source file -usr/local/share/gsoap/plugin/mecevp.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.i -.PHONY : usr/local/share/gsoap/plugin/mecevp.c.i - -usr/local/share/gsoap/plugin/mecevp.s: usr/local/share/gsoap/plugin/mecevp.c.s -.PHONY : usr/local/share/gsoap/plugin/mecevp.s - -# target to generate assembly for a file -usr/local/share/gsoap/plugin/mecevp.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/mecevp.c.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/mecevp.c.s -.PHONY : usr/local/share/gsoap/plugin/mecevp.c.s - -usr/local/share/gsoap/plugin/smdevp.o: usr/local/share/gsoap/plugin/smdevp.c.o -.PHONY : usr/local/share/gsoap/plugin/smdevp.o - -# target to build an object file -usr/local/share/gsoap/plugin/smdevp.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.o -.PHONY : usr/local/share/gsoap/plugin/smdevp.c.o - -usr/local/share/gsoap/plugin/smdevp.i: usr/local/share/gsoap/plugin/smdevp.c.i -.PHONY : usr/local/share/gsoap/plugin/smdevp.i - -# target to preprocess a source file -usr/local/share/gsoap/plugin/smdevp.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.i -.PHONY : usr/local/share/gsoap/plugin/smdevp.c.i - -usr/local/share/gsoap/plugin/smdevp.s: usr/local/share/gsoap/plugin/smdevp.c.s -.PHONY : usr/local/share/gsoap/plugin/smdevp.s - -# target to generate assembly for a file -usr/local/share/gsoap/plugin/smdevp.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/smdevp.c.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/smdevp.c.s -.PHONY : usr/local/share/gsoap/plugin/smdevp.c.s - -usr/local/share/gsoap/plugin/wsaapi.o: usr/local/share/gsoap/plugin/wsaapi.c.o -.PHONY : usr/local/share/gsoap/plugin/wsaapi.o - -# target to build an object file -usr/local/share/gsoap/plugin/wsaapi.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.o -.PHONY : usr/local/share/gsoap/plugin/wsaapi.c.o - -usr/local/share/gsoap/plugin/wsaapi.i: usr/local/share/gsoap/plugin/wsaapi.c.i -.PHONY : usr/local/share/gsoap/plugin/wsaapi.i - -# target to preprocess a source file -usr/local/share/gsoap/plugin/wsaapi.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.i -.PHONY : usr/local/share/gsoap/plugin/wsaapi.c.i - -usr/local/share/gsoap/plugin/wsaapi.s: usr/local/share/gsoap/plugin/wsaapi.c.s -.PHONY : usr/local/share/gsoap/plugin/wsaapi.s - -# target to generate assembly for a file -usr/local/share/gsoap/plugin/wsaapi.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsaapi.c.s -.PHONY : usr/local/share/gsoap/plugin/wsaapi.c.s - -usr/local/share/gsoap/plugin/wsseapi.o: usr/local/share/gsoap/plugin/wsseapi.c.o -.PHONY : usr/local/share/gsoap/plugin/wsseapi.o - -# target to build an object file -usr/local/share/gsoap/plugin/wsseapi.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.o -.PHONY : usr/local/share/gsoap/plugin/wsseapi.c.o - -usr/local/share/gsoap/plugin/wsseapi.i: usr/local/share/gsoap/plugin/wsseapi.c.i -.PHONY : usr/local/share/gsoap/plugin/wsseapi.i - -# target to preprocess a source file -usr/local/share/gsoap/plugin/wsseapi.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.i -.PHONY : usr/local/share/gsoap/plugin/wsseapi.c.i - -usr/local/share/gsoap/plugin/wsseapi.s: usr/local/share/gsoap/plugin/wsseapi.c.s -.PHONY : usr/local/share/gsoap/plugin/wsseapi.s - -# target to generate assembly for a file -usr/local/share/gsoap/plugin/wsseapi.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-server.dir/build.make CMakeFiles/onvif-server.dir/usr/local/share/gsoap/plugin/wsseapi.c.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/onvif-client.dir/build.make CMakeFiles/onvif-client.dir/usr/local/share/gsoap/plugin/wsseapi.c.s -.PHONY : usr/local/share/gsoap/plugin/wsseapi.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... v4l2rtsp_build" - @echo "... wsdd_build" - @echo "... onvif-client" - @echo "... onvif-server" - @echo "... onvif_server" - @echo "... soap_lib" - @echo "... gen/soapC_001.o" - @echo "... gen/soapC_001.i" - @echo "... gen/soapC_001.s" - @echo "... gen/soapC_002.o" - @echo "... gen/soapC_002.i" - @echo "... gen/soapC_002.s" - @echo "... gen/soapC_003.o" - @echo "... gen/soapC_003.i" - @echo "... gen/soapC_003.s" - @echo "... gen/soapC_004.o" - @echo "... gen/soapC_004.i" - @echo "... gen/soapC_004.s" - @echo "... gen/soapCreatePullPointBindingProxy.o" - @echo "... gen/soapCreatePullPointBindingProxy.i" - @echo "... gen/soapCreatePullPointBindingProxy.s" - @echo "... gen/soapCreatePullPointBindingService.o" - @echo "... gen/soapCreatePullPointBindingService.i" - @echo "... gen/soapCreatePullPointBindingService.s" - @echo "... gen/soapDeviceBindingProxy.o" - @echo "... gen/soapDeviceBindingProxy.i" - @echo "... gen/soapDeviceBindingProxy.s" - @echo "... gen/soapDeviceBindingService.o" - @echo "... gen/soapDeviceBindingService.i" - @echo "... gen/soapDeviceBindingService.s" - @echo "... gen/soapDeviceIOBindingProxy.o" - @echo "... gen/soapDeviceIOBindingProxy.i" - @echo "... gen/soapDeviceIOBindingProxy.s" - @echo "... gen/soapDeviceIOBindingService.o" - @echo "... gen/soapDeviceIOBindingService.i" - @echo "... gen/soapDeviceIOBindingService.s" - @echo "... gen/soapDisplayBindingProxy.o" - @echo "... gen/soapDisplayBindingProxy.i" - @echo "... gen/soapDisplayBindingProxy.s" - @echo "... gen/soapDisplayBindingService.o" - @echo "... gen/soapDisplayBindingService.i" - @echo "... gen/soapDisplayBindingService.s" - @echo "... gen/soapEventBindingProxy.o" - @echo "... gen/soapEventBindingProxy.i" - @echo "... gen/soapEventBindingProxy.s" - @echo "... gen/soapEventBindingService.o" - @echo "... gen/soapEventBindingService.i" - @echo "... gen/soapEventBindingService.s" - @echo "... gen/soapImagingBindingProxy.o" - @echo "... gen/soapImagingBindingProxy.i" - @echo "... gen/soapImagingBindingProxy.s" - @echo "... gen/soapImagingBindingService.o" - @echo "... gen/soapImagingBindingService.i" - @echo "... gen/soapImagingBindingService.s" - @echo "... gen/soapMediaBindingProxy.o" - @echo "... gen/soapMediaBindingProxy.i" - @echo "... gen/soapMediaBindingProxy.s" - @echo "... gen/soapMediaBindingService.o" - @echo "... gen/soapMediaBindingService.i" - @echo "... gen/soapMediaBindingService.s" - @echo "... gen/soapNotificationConsumerBindingProxy.o" - @echo "... gen/soapNotificationConsumerBindingProxy.i" - @echo "... gen/soapNotificationConsumerBindingProxy.s" - @echo "... gen/soapNotificationConsumerBindingService.o" - @echo "... gen/soapNotificationConsumerBindingService.i" - @echo "... gen/soapNotificationConsumerBindingService.s" - @echo "... gen/soapNotificationProducerBindingProxy.o" - @echo "... gen/soapNotificationProducerBindingProxy.i" - @echo "... gen/soapNotificationProducerBindingProxy.s" - @echo "... gen/soapNotificationProducerBindingService.o" - @echo "... gen/soapNotificationProducerBindingService.i" - @echo "... gen/soapNotificationProducerBindingService.s" - @echo "... gen/soapPTZBindingProxy.o" - @echo "... gen/soapPTZBindingProxy.i" - @echo "... gen/soapPTZBindingProxy.s" - @echo "... gen/soapPTZBindingService.o" - @echo "... gen/soapPTZBindingService.i" - @echo "... gen/soapPTZBindingService.s" - @echo "... gen/soapPausableSubscriptionManagerBindingProxy.o" - @echo "... gen/soapPausableSubscriptionManagerBindingProxy.i" - @echo "... gen/soapPausableSubscriptionManagerBindingProxy.s" - @echo "... gen/soapPausableSubscriptionManagerBindingService.o" - @echo "... gen/soapPausableSubscriptionManagerBindingService.i" - @echo "... gen/soapPausableSubscriptionManagerBindingService.s" - @echo "... gen/soapPullPointBindingProxy.o" - @echo "... gen/soapPullPointBindingProxy.i" - @echo "... gen/soapPullPointBindingProxy.s" - @echo "... gen/soapPullPointBindingService.o" - @echo "... gen/soapPullPointBindingService.i" - @echo "... gen/soapPullPointBindingService.s" - @echo "... gen/soapPullPointSubscriptionBindingProxy.o" - @echo "... gen/soapPullPointSubscriptionBindingProxy.i" - @echo "... gen/soapPullPointSubscriptionBindingProxy.s" - @echo "... gen/soapPullPointSubscriptionBindingService.o" - @echo "... gen/soapPullPointSubscriptionBindingService.i" - @echo "... gen/soapPullPointSubscriptionBindingService.s" - @echo "... gen/soapReceiverBindingProxy.o" - @echo "... gen/soapReceiverBindingProxy.i" - @echo "... gen/soapReceiverBindingProxy.s" - @echo "... gen/soapReceiverBindingService.o" - @echo "... gen/soapReceiverBindingService.i" - @echo "... gen/soapReceiverBindingService.s" - @echo "... gen/soapRecordingBindingProxy.o" - @echo "... gen/soapRecordingBindingProxy.i" - @echo "... gen/soapRecordingBindingProxy.s" - @echo "... gen/soapRecordingBindingService.o" - @echo "... gen/soapRecordingBindingService.i" - @echo "... gen/soapRecordingBindingService.s" - @echo "... gen/soapReplayBindingProxy.o" - @echo "... gen/soapReplayBindingProxy.i" - @echo "... gen/soapReplayBindingProxy.s" - @echo "... gen/soapReplayBindingService.o" - @echo "... gen/soapReplayBindingService.i" - @echo "... gen/soapReplayBindingService.s" - @echo "... gen/soapSearchBindingProxy.o" - @echo "... gen/soapSearchBindingProxy.i" - @echo "... gen/soapSearchBindingProxy.s" - @echo "... gen/soapSearchBindingService.o" - @echo "... gen/soapSearchBindingService.i" - @echo "... gen/soapSearchBindingService.s" - @echo "... gen/soapSubscriptionManagerBindingProxy.o" - @echo "... gen/soapSubscriptionManagerBindingProxy.i" - @echo "... gen/soapSubscriptionManagerBindingProxy.s" - @echo "... gen/soapSubscriptionManagerBindingService.o" - @echo "... gen/soapSubscriptionManagerBindingService.i" - @echo "... gen/soapSubscriptionManagerBindingService.s" - @echo "... gen/soapwsddProxy.o" - @echo "... gen/soapwsddProxy.i" - @echo "... gen/soapwsddProxy.s" - @echo "... gen/soapwsddService.o" - @echo "... gen/soapwsddService.i" - @echo "... gen/soapwsddService.s" - @echo "... src/onvif-client.o" - @echo "... src/onvif-client.i" - @echo "... src/onvif-client.s" - @echo "... src/onvif-server.o" - @echo "... src/onvif-server.i" - @echo "... src/onvif-server.s" - @echo "... src/onvif_impl.o" - @echo "... src/onvif_impl.i" - @echo "... src/onvif_impl.s" - @echo "... src/serverDevice.o" - @echo "... src/serverDevice.i" - @echo "... src/serverDevice.s" - @echo "... src/serverDeviceIO.o" - @echo "... src/serverDeviceIO.i" - @echo "... src/serverDeviceIO.s" - @echo "... src/serverDisplay.o" - @echo "... src/serverDisplay.i" - @echo "... src/serverDisplay.s" - @echo "... src/serverEvent.o" - @echo "... src/serverEvent.i" - @echo "... src/serverEvent.s" - @echo "... src/serverImaging.o" - @echo "... src/serverImaging.i" - @echo "... src/serverImaging.s" - @echo "... src/serverMedia.o" - @echo "... src/serverMedia.i" - @echo "... src/serverMedia.s" - @echo "... src/serverNotificationConsumer.o" - @echo "... src/serverNotificationConsumer.i" - @echo "... src/serverNotificationConsumer.s" - @echo "... src/serverNotificationProducer.o" - @echo "... src/serverNotificationProducer.i" - @echo "... src/serverNotificationProducer.s" - @echo "... src/serverPTZ.o" - @echo "... src/serverPTZ.i" - @echo "... src/serverPTZ.s" - @echo "... src/serverPullPointSubscription.o" - @echo "... src/serverPullPointSubscription.i" - @echo "... src/serverPullPointSubscription.s" - @echo "... src/serverReceiver.o" - @echo "... src/serverReceiver.i" - @echo "... src/serverReceiver.s" - @echo "... src/serverRecording.o" - @echo "... src/serverRecording.i" - @echo "... src/serverRecording.s" - @echo "... src/serverReplay.o" - @echo "... src/serverReplay.i" - @echo "... src/serverReplay.s" - @echo "... src/serverSearch.o" - @echo "... src/serverSearch.i" - @echo "... src/serverSearch.s" - @echo "... src/serverSubscriptionManager.o" - @echo "... src/serverSubscriptionManager.i" - @echo "... src/serverSubscriptionManager.s" - @echo "... usr/local/share/gsoap/custom/struct_timeval.o" - @echo "... usr/local/share/gsoap/custom/struct_timeval.i" - @echo "... usr/local/share/gsoap/custom/struct_timeval.s" - @echo "... usr/local/share/gsoap/plugin/mecevp.o" - @echo "... usr/local/share/gsoap/plugin/mecevp.i" - @echo "... usr/local/share/gsoap/plugin/mecevp.s" - @echo "... usr/local/share/gsoap/plugin/smdevp.o" - @echo "... usr/local/share/gsoap/plugin/smdevp.i" - @echo "... usr/local/share/gsoap/plugin/smdevp.s" - @echo "... usr/local/share/gsoap/plugin/wsaapi.o" - @echo "... usr/local/share/gsoap/plugin/wsaapi.i" - @echo "... usr/local/share/gsoap/plugin/wsaapi.s" - @echo "... usr/local/share/gsoap/plugin/wsseapi.o" - @echo "... usr/local/share/gsoap/plugin/wsseapi.i" - @echo "... usr/local/share/gsoap/plugin/wsseapi.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake index 1813f63..6e3bc21 100644 --- a/build/cmake_install.cmake +++ b/build/cmake_install.cmake @@ -43,37 +43,69 @@ if(NOT DEFINED CMAKE_OBJDUMP) endif() if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-server" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-server") + if(EXISTS "$ENV{DESTDIR}/usr/local/bin/onvif-server" AND + NOT IS_SYMLINK "$ENV{DESTDIR}/usr/local/bin/onvif-server") file(RPATH_CHECK - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-server" + FILE "$ENV{DESTDIR}/usr/local/bin/onvif-server" RPATH "") endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/cityhunter/CLionProjects/v4l2onvif/build/onvif-server") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-server" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-server") + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/usr/local/bin/onvif-server") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/usr/local/bin" TYPE EXECUTABLE FILES "/home/cityhunter/CLionProjects/v4l2onvif/build/onvif-server") + if(EXISTS "$ENV{DESTDIR}/usr/local/bin/onvif-server" AND + NOT IS_SYMLINK "$ENV{DESTDIR}/usr/local/bin/onvif-server") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}/usr/local/bin/onvif-server" + OLD_RPATH "/usr/local/lib:" + NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-server") + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}/usr/local/bin/onvif-server") endif() endif() endif() if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-client" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-client") + include("/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/onvif-server.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}/usr/local/bin/onvif-client" AND + NOT IS_SYMLINK "$ENV{DESTDIR}/usr/local/bin/onvif-client") file(RPATH_CHECK - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-client" + FILE "$ENV{DESTDIR}/usr/local/bin/onvif-client" RPATH "") endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/home/cityhunter/CLionProjects/v4l2onvif/build/onvif-client") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-client" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-client") + list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES + "/usr/local/bin/onvif-client") + if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION) + message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION) + message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}") + endif() + file(INSTALL DESTINATION "/usr/local/bin" TYPE EXECUTABLE FILES "/home/cityhunter/CLionProjects/v4l2onvif/build/onvif-client") + if(EXISTS "$ENV{DESTDIR}/usr/local/bin/onvif-client" AND + NOT IS_SYMLINK "$ENV{DESTDIR}/usr/local/bin/onvif-client") + file(RPATH_CHANGE + FILE "$ENV{DESTDIR}/usr/local/bin/onvif-client" + OLD_RPATH "/usr/local/lib:" + NEW_RPATH "") if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/onvif-client") + execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}/usr/local/bin/onvif-client") endif() endif() endif() +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + include("/home/cityhunter/CLionProjects/v4l2onvif/build/CMakeFiles/onvif-client.dir/install-cxx-module-bmi-noconfig.cmake" OPTIONAL) +endif() + string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT "${CMAKE_INSTALL_MANIFEST_FILES}") if(CMAKE_INSTALL_LOCAL_ONLY) diff --git a/build/libonvif_server.a b/build/libonvif_server.a deleted file mode 100644 index 27cb231..0000000 Binary files a/build/libonvif_server.a and /dev/null differ diff --git a/build/libsoap_lib.a b/build/libsoap_lib.a deleted file mode 100644 index 075135a..0000000 Binary files a/build/libsoap_lib.a and /dev/null differ diff --git a/gen/CreatePullPointBinding.nsmap b/gen/CreatePullPointBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/CreatePullPointBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/DeviceBinding.nsmap b/gen/DeviceBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/DeviceBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/DisplayBinding.nsmap b/gen/DisplayBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/DisplayBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/EventBinding.nsmap b/gen/EventBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/EventBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/PTZBinding.nsmap b/gen/PTZBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/PTZBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/PausableSubscriptionManagerBinding.nsmap b/gen/PausableSubscriptionManagerBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/PausableSubscriptionManagerBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/PullPointSubscriptionBinding.nsmap b/gen/PullPointSubscriptionBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/PullPointSubscriptionBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/RecordingBinding.nsmap b/gen/RecordingBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/RecordingBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/SubscriptionManagerBinding.nsmap b/gen/SubscriptionManagerBinding.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/SubscriptionManagerBinding.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/gen/onvif.h b/gen/onvif.h index 904bf94..446787a 100644 --- a/gen/onvif.h +++ b/gen/onvif.h @@ -2,7 +2,7 @@ #import "wsse.h" /* gen/onvif.h Generated by wsdl2h 2.8.138 from wsdl/b-2.xsd wsdl/bf-2.xsd wsdl/bw-2.wsdl wsdl/common.xsd wsdl/deviceio.wsdl wsdl/devicemgmt.wsdl wsdl/display.wsdl wsdl/event.wsdl wsdl/imaging.wsdl wsdl/include wsdl/media.wsdl wsdl/onvif.xsd wsdl/ptz.wsdl wsdl/r-2.xsd wsdl/receiver.wsdl wsdl/recording.wsdl wsdl/replay.wsdl wsdl/rw-2.wsdl wsdl/search.wsdl wsdl/t-1.xsd and typemap.dat - 2025-04-24 07:11:06 GMT + 2025-04-28 01:47:04 GMT DO NOT INCLUDE THIS ANNOTATED FILE DIRECTLY IN YOUR PROJECT SOURCE CODE. USE THE FILES GENERATED BY soapcpp2 FOR YOUR PROJECT'S SOURCE CODE. diff --git a/gen/soapC_001.cpp b/gen/soapC_001.cpp deleted file mode 100644 index c130dc0..0000000 --- a/gen/soapC_001.cpp +++ /dev/null @@ -1,177838 +0,0 @@ -/* soapC_nnn.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#if defined(__BORLANDC__) -#pragma option push -w-8060 -#pragma option push -w-8004 -#endif - -#include "soapH.h" - -SOAP_SOURCE_STAMP("@(#) soapC_nnn.cpp ver 2.8.138 2025-04-24 07:11:07 GMT") - - -#ifndef WITH_NOGLOBAL - -SOAP_FMAC3 int SOAP_FMAC4 soap_getheader(struct soap *soap) -{ - soap->part = SOAP_IN_HEADER; - soap->header = soap_in_SOAP_ENV__Header(soap, "SOAP-ENV:Header", soap->header, NULL); - soap->part = SOAP_END_HEADER; - return soap->header == NULL; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_putheader(struct soap *soap) -{ - if (soap->version && soap->header) - { soap->part = SOAP_IN_HEADER; - if (soap_out_SOAP_ENV__Header(soap, "SOAP-ENV:Header", 0, soap->header, "")) - return soap->error; - soap->part = SOAP_END_HEADER; - } - return SOAP_OK; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serializeheader(struct soap *soap) -{ - if (soap->version && soap->header) - soap_serialize_SOAP_ENV__Header(soap, soap->header); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_header(struct soap *soap) -{ - if (soap->header == NULL) - { if ((soap->header = soap_new_SOAP_ENV__Header(soap))) - soap_default_SOAP_ENV__Header(soap, soap->header); - } -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_fault(struct soap *soap) -{ - if (soap->fault == NULL) - { soap->fault = soap_new_SOAP_ENV__Fault(soap, -1); - if (soap->fault == NULL) - return; - } - if (soap->version == 2 && soap->fault->SOAP_ENV__Code == NULL) - soap->fault->SOAP_ENV__Code = soap_new_SOAP_ENV__Code(soap, -1); - if (soap->version == 2 && soap->fault->SOAP_ENV__Reason == NULL) - soap->fault->SOAP_ENV__Reason = soap_new_SOAP_ENV__Reason(soap, -1); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serializefault(struct soap *soap) -{ - if (soap->fault) - soap_serialize_SOAP_ENV__Fault(soap, soap->fault); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_putfault(struct soap *soap) -{ - if (soap->fault) - return soap_put_SOAP_ENV__Fault(soap, soap->fault, "SOAP-ENV:Fault", ""); - return SOAP_OK; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_getfault(struct soap *soap) -{ - return (soap->fault = soap_get_SOAP_ENV__Fault(soap, NULL, "SOAP-ENV:Fault", NULL)) == NULL; -} - -SOAP_FMAC3 const char ** SOAP_FMAC4 soap_faultcode(struct soap *soap) -{ - soap_fault(soap); - if (soap->fault == NULL) - return NULL; - if (soap->version == 2 && soap->fault->SOAP_ENV__Code) - return (const char**)(void*)&soap->fault->SOAP_ENV__Code->SOAP_ENV__Value; - return (const char**)(void*)&soap->fault->faultcode; -} - -SOAP_FMAC3 const char ** SOAP_FMAC4 soap_faultsubcode(struct soap *soap) -{ - soap_fault(soap); - if (soap->fault == NULL) - return NULL; - if (soap->version == 2 && soap->fault->SOAP_ENV__Code) - { if (soap->fault->SOAP_ENV__Code->SOAP_ENV__Subcode == NULL) - { soap->fault->SOAP_ENV__Code->SOAP_ENV__Subcode = soap_new_SOAP_ENV__Code(soap, -1); - if (soap->fault->SOAP_ENV__Code->SOAP_ENV__Subcode == NULL) - return NULL; - } - return (const char**)(void*)&soap->fault->SOAP_ENV__Code->SOAP_ENV__Subcode->SOAP_ENV__Value; - } - return (const char**)(void*)&soap->fault->faultcode; -} - -SOAP_FMAC3 const char * SOAP_FMAC4 soap_fault_subcode(struct soap *soap) -{ - if (!soap->fault) - return NULL; - if (soap->version == 2) - return soap->fault->SOAP_ENV__Code && soap->fault->SOAP_ENV__Code->SOAP_ENV__Subcode ? soap->fault->SOAP_ENV__Code->SOAP_ENV__Subcode->SOAP_ENV__Value : NULL; - return soap->fault->faultcode; -} - -SOAP_FMAC3 const char ** SOAP_FMAC4 soap_faultstring(struct soap *soap) -{ - soap_fault(soap); - if (soap->fault == NULL) - return NULL; - if (soap->version == 2 && soap->fault->SOAP_ENV__Reason) - return (const char**)(void*)&soap->fault->SOAP_ENV__Reason->SOAP_ENV__Text; - return (const char**)(void*)&soap->fault->faultstring; -} - -SOAP_FMAC3 const char * SOAP_FMAC4 soap_fault_string(struct soap *soap) -{ - const char **s = soap_faultstring(soap); - return s ? *s : NULL; -} - -SOAP_FMAC3 const char ** SOAP_FMAC4 soap_faultdetail(struct soap *soap) -{ - soap_fault(soap); - if (soap->fault == NULL) - return NULL; - if (soap->version == 2) - { if (soap->fault->SOAP_ENV__Detail == NULL) - soap->fault->SOAP_ENV__Detail = soap_new_SOAP_ENV__Detail(soap, -1); - return (const char**)(void*)&soap->fault->SOAP_ENV__Detail->__any; - } - if (soap->fault->detail == NULL) - soap->fault->detail = soap_new_SOAP_ENV__Detail(soap, -1); - return (const char**)(void*)&soap->fault->detail->__any; -} - -SOAP_FMAC3 const char * SOAP_FMAC4 soap_fault_detail(struct soap *soap) -{ - const char **s = soap_faultdetail(soap); - return s ? *s : NULL; -} - -#endif - -#ifndef WITH_NOIDREF -SOAP_FMAC3 int SOAP_FMAC4 soap_getindependent(struct soap *soap) -{ - int t; - if (soap->version == 1) - { for (;;) - { if (!soap_getelement(soap, NULL, &t)) - if ((soap->error && soap->error != SOAP_TAG_MISMATCH) || soap_ignore_element(soap)) - break; - } - } - if (soap->error == SOAP_NO_TAG || soap->error == SOAP_EOF) - soap->error = SOAP_OK; - return soap->error; -} -#endif - -#ifdef __cplusplus -extern "C" { -#endif -SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, int *type) -{ (void)type; - if (soap_peek_element(soap)) - return NULL; -#ifndef WITH_NOIDREF - if (!*soap->id || !(*type = soap_lookup_type(soap, soap->id))) - *type = soap_lookup_type(soap, soap->href); - switch (*type) - { - case SOAP_TYPE_byte: - return soap_in_byte(soap, tag, NULL, "xsd:byte"); - case SOAP_TYPE_tt__IANA_IfTypes: - return soap_in_tt__IANA_IfTypes(soap, tag, NULL, "tt:IANA-IfTypes"); - case SOAP_TYPE_int: - return soap_in_int(soap, tag, NULL, "xsd:int"); - case SOAP_TYPE_float: - return soap_in_float(soap, tag, NULL, "xsd:float"); - case SOAP_TYPE_double: - return soap_in_double(soap, tag, NULL, "xsd:double"); - case SOAP_TYPE_unsignedByte: - return soap_in_unsignedByte(soap, tag, NULL, "xsd:unsignedByte"); - case SOAP_TYPE_unsignedInt: - return soap_in_unsignedInt(soap, tag, NULL, "xsd:unsignedInt"); - case SOAP_TYPE_ULONG64: - return soap_in_ULONG64(soap, tag, NULL, "xsd:unsignedLong"); - case SOAP_TYPE_timg__ImagingPresetType: - return soap_in_timg__ImagingPresetType(soap, tag, NULL, "timg:ImagingPresetType"); - case SOAP_TYPE_tds__StorageType: - return soap_in_tds__StorageType(soap, tag, NULL, "tds:StorageType"); - case SOAP_TYPE_tds__AutoGeoModes: - return soap_in_tds__AutoGeoModes(soap, tag, NULL, "tds:AutoGeoModes"); - case SOAP_TYPE_tmd__ParityBit: - return soap_in_tmd__ParityBit(soap, tag, NULL, "tmd:ParityBit"); - case SOAP_TYPE_tmd__SerialPortType: - return soap_in_tmd__SerialPortType(soap, tag, NULL, "tmd:SerialPortType"); - case SOAP_TYPE_tt__OSDType: - return soap_in_tt__OSDType(soap, tag, NULL, "tt:OSDType"); - case SOAP_TYPE_tt__ModeOfOperation: - return soap_in_tt__ModeOfOperation(soap, tag, NULL, "tt:ModeOfOperation"); - case SOAP_TYPE_tt__TrackType: - return soap_in_tt__TrackType(soap, tag, NULL, "tt:TrackType"); - case SOAP_TYPE_tt__RecordingStatus: - return soap_in_tt__RecordingStatus(soap, tag, NULL, "tt:RecordingStatus"); - case SOAP_TYPE_tt__SearchState: - return soap_in_tt__SearchState(soap, tag, NULL, "tt:SearchState"); - case SOAP_TYPE_tt__ReceiverState: - return soap_in_tt__ReceiverState(soap, tag, NULL, "tt:ReceiverState"); - case SOAP_TYPE_tt__ReceiverMode: - return soap_in_tt__ReceiverMode(soap, tag, NULL, "tt:ReceiverMode"); - case SOAP_TYPE_tt__Direction: - return soap_in_tt__Direction(soap, tag, NULL, "tt:Direction"); - case SOAP_TYPE_tt__PropertyOperation: - return soap_in_tt__PropertyOperation(soap, tag, NULL, "tt:PropertyOperation"); - case SOAP_TYPE_tt__ImageSendingType: - return soap_in_tt__ImageSendingType(soap, tag, NULL, "tt:ImageSendingType"); - case SOAP_TYPE_tt__DefoggingMode: - return soap_in_tt__DefoggingMode(soap, tag, NULL, "tt:DefoggingMode"); - case SOAP_TYPE_tt__ToneCompensationMode: - return soap_in_tt__ToneCompensationMode(soap, tag, NULL, "tt:ToneCompensationMode"); - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType: - return soap_in_tt__IrCutFilterAutoBoundaryType(soap, tag, NULL, "tt:IrCutFilterAutoBoundaryType"); - case SOAP_TYPE_tt__ImageStabilizationMode: - return soap_in_tt__ImageStabilizationMode(soap, tag, NULL, "tt:ImageStabilizationMode"); - case SOAP_TYPE_tt__IrCutFilterMode: - return soap_in_tt__IrCutFilterMode(soap, tag, NULL, "tt:IrCutFilterMode"); - case SOAP_TYPE_tt__WhiteBalanceMode: - return soap_in_tt__WhiteBalanceMode(soap, tag, NULL, "tt:WhiteBalanceMode"); - case SOAP_TYPE_tt__Enabled: - return soap_in_tt__Enabled(soap, tag, NULL, "tt:Enabled"); - case SOAP_TYPE_tt__ExposureMode: - return soap_in_tt__ExposureMode(soap, tag, NULL, "tt:ExposureMode"); - case SOAP_TYPE_tt__ExposurePriority: - return soap_in_tt__ExposurePriority(soap, tag, NULL, "tt:ExposurePriority"); - case SOAP_TYPE_tt__BacklightCompensationMode: - return soap_in_tt__BacklightCompensationMode(soap, tag, NULL, "tt:BacklightCompensationMode"); - case SOAP_TYPE_tt__WideDynamicMode: - return soap_in_tt__WideDynamicMode(soap, tag, NULL, "tt:WideDynamicMode"); - case SOAP_TYPE_tt__AFModes: - return soap_in_tt__AFModes(soap, tag, NULL, "tt:AFModes"); - case SOAP_TYPE_tt__AutoFocusMode: - return soap_in_tt__AutoFocusMode(soap, tag, NULL, "tt:AutoFocusMode"); - case SOAP_TYPE_tt__MoveAndTrackMethod: - return soap_in_tt__MoveAndTrackMethod(soap, tag, NULL, "tt:MoveAndTrackMethod"); - case SOAP_TYPE_tt__PTZPresetTourOperation: - return soap_in_tt__PTZPresetTourOperation(soap, tag, NULL, "tt:PTZPresetTourOperation"); - case SOAP_TYPE_tt__PTZPresetTourDirection: - return soap_in_tt__PTZPresetTourDirection(soap, tag, NULL, "tt:PTZPresetTourDirection"); - case SOAP_TYPE_tt__PTZPresetTourState: - return soap_in_tt__PTZPresetTourState(soap, tag, NULL, "tt:PTZPresetTourState"); - case SOAP_TYPE_tt__ReverseMode: - return soap_in_tt__ReverseMode(soap, tag, NULL, "tt:ReverseMode"); - case SOAP_TYPE_tt__EFlipMode: - return soap_in_tt__EFlipMode(soap, tag, NULL, "tt:EFlipMode"); - case SOAP_TYPE_tt__DigitalIdleState: - return soap_in_tt__DigitalIdleState(soap, tag, NULL, "tt:DigitalIdleState"); - case SOAP_TYPE_tt__RelayMode: - return soap_in_tt__RelayMode(soap, tag, NULL, "tt:RelayMode"); - case SOAP_TYPE_tt__RelayIdleState: - return soap_in_tt__RelayIdleState(soap, tag, NULL, "tt:RelayIdleState"); - case SOAP_TYPE_tt__RelayLogicalState: - return soap_in_tt__RelayLogicalState(soap, tag, NULL, "tt:RelayLogicalState"); - case SOAP_TYPE_tt__UserLevel: - return soap_in_tt__UserLevel(soap, tag, NULL, "tt:UserLevel"); - case SOAP_TYPE_tt__SetDateTimeType: - return soap_in_tt__SetDateTimeType(soap, tag, NULL, "tt:SetDateTimeType"); - case SOAP_TYPE_tt__FactoryDefaultType: - return soap_in_tt__FactoryDefaultType(soap, tag, NULL, "tt:FactoryDefaultType"); - case SOAP_TYPE_tt__SystemLogType: - return soap_in_tt__SystemLogType(soap, tag, NULL, "tt:SystemLogType"); - case SOAP_TYPE_tt__CapabilityCategory: - return soap_in_tt__CapabilityCategory(soap, tag, NULL, "tt:CapabilityCategory"); - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite: - return soap_in_tt__Dot11AuthAndMangementSuite(soap, tag, NULL, "tt:Dot11AuthAndMangementSuite"); - case SOAP_TYPE_tt__Dot11SignalStrength: - return soap_in_tt__Dot11SignalStrength(soap, tag, NULL, "tt:Dot11SignalStrength"); - case SOAP_TYPE_tt__Dot11Cipher: - return soap_in_tt__Dot11Cipher(soap, tag, NULL, "tt:Dot11Cipher"); - case SOAP_TYPE_tt__Dot11SecurityMode: - return soap_in_tt__Dot11SecurityMode(soap, tag, NULL, "tt:Dot11SecurityMode"); - case SOAP_TYPE_tt__Dot11StationMode: - return soap_in_tt__Dot11StationMode(soap, tag, NULL, "tt:Dot11StationMode"); - case SOAP_TYPE_tt__DynamicDNSType: - return soap_in_tt__DynamicDNSType(soap, tag, NULL, "tt:DynamicDNSType"); - case SOAP_TYPE_tt__IPAddressFilterType: - return soap_in_tt__IPAddressFilterType(soap, tag, NULL, "tt:IPAddressFilterType"); - case SOAP_TYPE_tt__IPType: - return soap_in_tt__IPType(soap, tag, NULL, "tt:IPType"); - case SOAP_TYPE_tt__NetworkHostType: - return soap_in_tt__NetworkHostType(soap, tag, NULL, "tt:NetworkHostType"); - case SOAP_TYPE_tt__NetworkProtocolType: - return soap_in_tt__NetworkProtocolType(soap, tag, NULL, "tt:NetworkProtocolType"); - case SOAP_TYPE_tt__IPv6DHCPConfiguration: - return soap_in_tt__IPv6DHCPConfiguration(soap, tag, NULL, "tt:IPv6DHCPConfiguration"); - case SOAP_TYPE_tt__Duplex: - return soap_in_tt__Duplex(soap, tag, NULL, "tt:Duplex"); - case SOAP_TYPE_tt__DiscoveryMode: - return soap_in_tt__DiscoveryMode(soap, tag, NULL, "tt:DiscoveryMode"); - case SOAP_TYPE_tt__ScopeDefinition: - return soap_in_tt__ScopeDefinition(soap, tag, NULL, "tt:ScopeDefinition"); - case SOAP_TYPE_tt__TransportProtocol: - return soap_in_tt__TransportProtocol(soap, tag, NULL, "tt:TransportProtocol"); - case SOAP_TYPE_tt__StreamType: - return soap_in_tt__StreamType(soap, tag, NULL, "tt:StreamType"); - case SOAP_TYPE_tt__MetadataCompressionType: - return soap_in_tt__MetadataCompressionType(soap, tag, NULL, "tt:MetadataCompressionType"); - case SOAP_TYPE_tt__AudioEncodingMimeNames: - return soap_in_tt__AudioEncodingMimeNames(soap, tag, NULL, "tt:AudioEncodingMimeNames"); - case SOAP_TYPE_tt__AudioEncoding: - return soap_in_tt__AudioEncoding(soap, tag, NULL, "tt:AudioEncoding"); - case SOAP_TYPE_tt__VideoEncodingProfiles: - return soap_in_tt__VideoEncodingProfiles(soap, tag, NULL, "tt:VideoEncodingProfiles"); - case SOAP_TYPE_tt__VideoEncodingMimeNames: - return soap_in_tt__VideoEncodingMimeNames(soap, tag, NULL, "tt:VideoEncodingMimeNames"); - case SOAP_TYPE_tt__H264Profile: - return soap_in_tt__H264Profile(soap, tag, NULL, "tt:H264Profile"); - case SOAP_TYPE_tt__Mpeg4Profile: - return soap_in_tt__Mpeg4Profile(soap, tag, NULL, "tt:Mpeg4Profile"); - case SOAP_TYPE_tt__VideoEncoding: - return soap_in_tt__VideoEncoding(soap, tag, NULL, "tt:VideoEncoding"); - case SOAP_TYPE_tt__ViewModes: - return soap_in_tt__ViewModes(soap, tag, NULL, "tt:ViewModes"); - case SOAP_TYPE_tt__SceneOrientationOption: - return soap_in_tt__SceneOrientationOption(soap, tag, NULL, "tt:SceneOrientationOption"); - case SOAP_TYPE_tt__SceneOrientationMode: - return soap_in_tt__SceneOrientationMode(soap, tag, NULL, "tt:SceneOrientationMode"); - case SOAP_TYPE_tt__RotateMode: - return soap_in_tt__RotateMode(soap, tag, NULL, "tt:RotateMode"); - case SOAP_TYPE_tt__Entity: - return soap_in_tt__Entity(soap, tag, NULL, "tt:Entity"); - case SOAP_TYPE_tt__MoveStatus: - return soap_in_tt__MoveStatus(soap, tag, NULL, "tt:MoveStatus"); - case SOAP_TYPE_bool: - return soap_in_bool(soap, tag, NULL, "xsd:boolean"); - case SOAP_TYPE__wsa5__IsReferenceParameter: - return soap_in__wsa5__IsReferenceParameter(soap, tag, NULL, "wsa5:IsReferenceParameter"); - case SOAP_TYPE_wsa5__FaultCodesType: - return soap_in_wsa5__FaultCodesType(soap, tag, NULL, "wsa5:FaultCodesType"); - case SOAP_TYPE_wsa5__RelationshipType: - return soap_in_wsa5__RelationshipType(soap, tag, NULL, "wsa5:RelationshipType"); - case SOAP_TYPE_saml2__DecisionType: - return soap_in_saml2__DecisionType(soap, tag, NULL, "saml2:DecisionType"); - case SOAP_TYPE_saml1__DecisionType: - return soap_in_saml1__DecisionType(soap, tag, NULL, "saml1:DecisionType"); - case SOAP_TYPE_wsc__FaultCodeType: - return soap_in_wsc__FaultCodeType(soap, tag, NULL, "wsc:FaultCodeType"); - case SOAP_TYPE_wsse__FaultcodeEnum: - return soap_in_wsse__FaultcodeEnum(soap, tag, NULL, "wsse:FaultcodeEnum"); - case SOAP_TYPE_wsu__tTimestampFault: - return soap_in_wsu__tTimestampFault(soap, tag, NULL, "wsu:tTimestampFault"); - case SOAP_TYPE_wsdd__FaultCodeType: - return soap_in_wsdd__FaultCodeType(soap, tag, NULL, "wsdd:FaultCodeType"); - case SOAP_TYPE_wsa__FaultSubcodeValues: - return soap_in_wsa__FaultSubcodeValues(soap, tag, NULL, "wsa:FaultSubcodeValues"); - case SOAP_TYPE_wsa__RelationshipTypeValues: - return soap_in_wsa__RelationshipTypeValues(soap, tag, NULL, "wsa:RelationshipTypeValues"); - case SOAP_TYPE_tt__RecordingJobReference__: - return soap_in_tt__RecordingJobReference__(soap, tag, NULL, "tt:RecordingJobReference"); - case SOAP_TYPE_tt__RecordingJobReference: - return soap_in_tt__RecordingJobReference(soap, tag, NULL, "tt:RecordingJobReference"); - case SOAP_TYPE_tt__JobToken__: - return soap_in_tt__JobToken__(soap, tag, NULL, "tt:JobToken"); - case SOAP_TYPE_tt__JobToken: - return soap_in_tt__JobToken(soap, tag, NULL, "tt:JobToken"); - case SOAP_TYPE_tt__TrackReference__: - return soap_in_tt__TrackReference__(soap, tag, NULL, "tt:TrackReference"); - case SOAP_TYPE_tt__TrackReference: - return soap_in_tt__TrackReference(soap, tag, NULL, "tt:TrackReference"); - case SOAP_TYPE_tt__RecordingReference__: - return soap_in_tt__RecordingReference__(soap, tag, NULL, "tt:RecordingReference"); - case SOAP_TYPE_tt__RecordingReference: - return soap_in_tt__RecordingReference(soap, tag, NULL, "tt:RecordingReference"); - case SOAP_TYPE_tt__ReceiverReference__: - return soap_in_tt__ReceiverReference__(soap, tag, NULL, "tt:ReceiverReference"); - case SOAP_TYPE_tt__ReceiverReference: - return soap_in_tt__ReceiverReference(soap, tag, NULL, "tt:ReceiverReference"); - case SOAP_TYPE_wstop__SimpleTopicExpression__: - return soap_in_wstop__SimpleTopicExpression__(soap, tag, NULL, "wstop:SimpleTopicExpression"); - case SOAP_TYPE_wstop__SimpleTopicExpression: - return soap_in_wstop__SimpleTopicExpression(soap, tag, NULL, "xsd:QName"); - case SOAP_TYPE_wstop__ConcreteTopicExpression__: - return soap_in_wstop__ConcreteTopicExpression__(soap, tag, NULL, "wstop:ConcreteTopicExpression"); - case SOAP_TYPE_wstop__ConcreteTopicExpression: - return soap_in_wstop__ConcreteTopicExpression(soap, tag, NULL, "wstop:ConcreteTopicExpression"); - case SOAP_TYPE_wstop__FullTopicExpression__: - return soap_in_wstop__FullTopicExpression__(soap, tag, NULL, "wstop:FullTopicExpression"); - case SOAP_TYPE_wstop__FullTopicExpression: - return soap_in_wstop__FullTopicExpression(soap, tag, NULL, "wstop:FullTopicExpression"); - case SOAP_TYPE_timg__ImagingPresetType_: - return soap_in_timg__ImagingPresetType_(soap, tag, NULL, "timg:ImagingPresetType"); - case SOAP_TYPE_tds__StorageType_: - return soap_in_tds__StorageType_(soap, tag, NULL, "tds:StorageType"); - case SOAP_TYPE_tds__AutoGeoModes_: - return soap_in_tds__AutoGeoModes_(soap, tag, NULL, "tds:AutoGeoModes"); - case SOAP_TYPE_tmd__ParityBit_: - return soap_in_tmd__ParityBit_(soap, tag, NULL, "tmd:ParityBit"); - case SOAP_TYPE_tmd__SerialPortType_: - return soap_in_tmd__SerialPortType_(soap, tag, NULL, "tmd:SerialPortType"); - case SOAP_TYPE_tt__OSDType_: - return soap_in_tt__OSDType_(soap, tag, NULL, "tt:OSDType"); - case SOAP_TYPE_tt__AudioClassType__: - return soap_in_tt__AudioClassType__(soap, tag, NULL, "tt:AudioClassType"); - case SOAP_TYPE_tt__AudioClassType: - return soap_in_tt__AudioClassType(soap, tag, NULL, "tt:AudioClassType"); - case SOAP_TYPE_tt__ModeOfOperation_: - return soap_in_tt__ModeOfOperation_(soap, tag, NULL, "tt:ModeOfOperation"); - case SOAP_TYPE_tt__RecordingJobState__: - return soap_in_tt__RecordingJobState__(soap, tag, NULL, "tt:RecordingJobState"); - case SOAP_TYPE_tt__RecordingJobState: - return soap_in_tt__RecordingJobState(soap, tag, NULL, "tt:RecordingJobState"); - case SOAP_TYPE_tt__RecordingJobMode__: - return soap_in_tt__RecordingJobMode__(soap, tag, NULL, "tt:RecordingJobMode"); - case SOAP_TYPE_tt__RecordingJobMode: - return soap_in_tt__RecordingJobMode(soap, tag, NULL, "tt:RecordingJobMode"); - case SOAP_TYPE_tt__TrackType_: - return soap_in_tt__TrackType_(soap, tag, NULL, "tt:TrackType"); - case SOAP_TYPE_tt__RecordingStatus_: - return soap_in_tt__RecordingStatus_(soap, tag, NULL, "tt:RecordingStatus"); - case SOAP_TYPE_tt__SearchState_: - return soap_in_tt__SearchState_(soap, tag, NULL, "tt:SearchState"); - case SOAP_TYPE_tt__XPathExpression__: - return soap_in_tt__XPathExpression__(soap, tag, NULL, "tt:XPathExpression"); - case SOAP_TYPE_tt__XPathExpression: - return soap_in_tt__XPathExpression(soap, tag, NULL, "tt:XPathExpression"); - case SOAP_TYPE_tt__Description__: - return soap_in_tt__Description__(soap, tag, NULL, "tt:Description"); - case SOAP_TYPE_tt__Description: - return soap_in_tt__Description(soap, tag, NULL, "tt:Description"); - case SOAP_TYPE_tt__ReceiverState_: - return soap_in_tt__ReceiverState_(soap, tag, NULL, "tt:ReceiverState"); - case SOAP_TYPE_tt__ReceiverMode_: - return soap_in_tt__ReceiverMode_(soap, tag, NULL, "tt:ReceiverMode"); - case SOAP_TYPE_tt__Direction_: - return soap_in_tt__Direction_(soap, tag, NULL, "tt:Direction"); - case SOAP_TYPE_tt__PropertyOperation_: - return soap_in_tt__PropertyOperation_(soap, tag, NULL, "tt:PropertyOperation"); - case SOAP_TYPE_tt__ImageSendingType_: - return soap_in_tt__ImageSendingType_(soap, tag, NULL, "tt:ImageSendingType"); - case SOAP_TYPE_tt__DefoggingMode_: - return soap_in_tt__DefoggingMode_(soap, tag, NULL, "tt:DefoggingMode"); - case SOAP_TYPE_tt__ToneCompensationMode_: - return soap_in_tt__ToneCompensationMode_(soap, tag, NULL, "tt:ToneCompensationMode"); - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_: - return soap_in_tt__IrCutFilterAutoBoundaryType_(soap, tag, NULL, "tt:IrCutFilterAutoBoundaryType"); - case SOAP_TYPE_tt__ImageStabilizationMode_: - return soap_in_tt__ImageStabilizationMode_(soap, tag, NULL, "tt:ImageStabilizationMode"); - case SOAP_TYPE_tt__IrCutFilterMode_: - return soap_in_tt__IrCutFilterMode_(soap, tag, NULL, "tt:IrCutFilterMode"); - case SOAP_TYPE_tt__WhiteBalanceMode_: - return soap_in_tt__WhiteBalanceMode_(soap, tag, NULL, "tt:WhiteBalanceMode"); - case SOAP_TYPE_tt__Enabled_: - return soap_in_tt__Enabled_(soap, tag, NULL, "tt:Enabled"); - case SOAP_TYPE_tt__ExposureMode_: - return soap_in_tt__ExposureMode_(soap, tag, NULL, "tt:ExposureMode"); - case SOAP_TYPE_tt__ExposurePriority_: - return soap_in_tt__ExposurePriority_(soap, tag, NULL, "tt:ExposurePriority"); - case SOAP_TYPE_tt__BacklightCompensationMode_: - return soap_in_tt__BacklightCompensationMode_(soap, tag, NULL, "tt:BacklightCompensationMode"); - case SOAP_TYPE_tt__WideDynamicMode_: - return soap_in_tt__WideDynamicMode_(soap, tag, NULL, "tt:WideDynamicMode"); - case SOAP_TYPE_tt__AFModes_: - return soap_in_tt__AFModes_(soap, tag, NULL, "tt:AFModes"); - case SOAP_TYPE_tt__AutoFocusMode_: - return soap_in_tt__AutoFocusMode_(soap, tag, NULL, "tt:AutoFocusMode"); - case SOAP_TYPE_tt__MoveAndTrackMethod_: - return soap_in_tt__MoveAndTrackMethod_(soap, tag, NULL, "tt:MoveAndTrackMethod"); - case SOAP_TYPE_tt__PTZPresetTourOperation_: - return soap_in_tt__PTZPresetTourOperation_(soap, tag, NULL, "tt:PTZPresetTourOperation"); - case SOAP_TYPE_tt__PTZPresetTourDirection_: - return soap_in_tt__PTZPresetTourDirection_(soap, tag, NULL, "tt:PTZPresetTourDirection"); - case SOAP_TYPE_tt__PTZPresetTourState_: - return soap_in_tt__PTZPresetTourState_(soap, tag, NULL, "tt:PTZPresetTourState"); - case SOAP_TYPE_tt__AuxiliaryData__: - return soap_in_tt__AuxiliaryData__(soap, tag, NULL, "tt:AuxiliaryData"); - case SOAP_TYPE_tt__AuxiliaryData: - return soap_in_tt__AuxiliaryData(soap, tag, NULL, "tt:AuxiliaryData"); - case SOAP_TYPE_tt__ReverseMode_: - return soap_in_tt__ReverseMode_(soap, tag, NULL, "tt:ReverseMode"); - case SOAP_TYPE_tt__EFlipMode_: - return soap_in_tt__EFlipMode_(soap, tag, NULL, "tt:EFlipMode"); - case SOAP_TYPE_tt__DigitalIdleState_: - return soap_in_tt__DigitalIdleState_(soap, tag, NULL, "tt:DigitalIdleState"); - case SOAP_TYPE_tt__RelayMode_: - return soap_in_tt__RelayMode_(soap, tag, NULL, "tt:RelayMode"); - case SOAP_TYPE_tt__RelayIdleState_: - return soap_in_tt__RelayIdleState_(soap, tag, NULL, "tt:RelayIdleState"); - case SOAP_TYPE_tt__RelayLogicalState_: - return soap_in_tt__RelayLogicalState_(soap, tag, NULL, "tt:RelayLogicalState"); - case SOAP_TYPE_tt__UserLevel_: - return soap_in_tt__UserLevel_(soap, tag, NULL, "tt:UserLevel"); - case SOAP_TYPE_tt__SetDateTimeType_: - return soap_in_tt__SetDateTimeType_(soap, tag, NULL, "tt:SetDateTimeType"); - case SOAP_TYPE_tt__FactoryDefaultType_: - return soap_in_tt__FactoryDefaultType_(soap, tag, NULL, "tt:FactoryDefaultType"); - case SOAP_TYPE_tt__SystemLogType_: - return soap_in_tt__SystemLogType_(soap, tag, NULL, "tt:SystemLogType"); - case SOAP_TYPE_tt__CapabilityCategory_: - return soap_in_tt__CapabilityCategory_(soap, tag, NULL, "tt:CapabilityCategory"); - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite_: - return soap_in_tt__Dot11AuthAndMangementSuite_(soap, tag, NULL, "tt:Dot11AuthAndMangementSuite"); - case SOAP_TYPE_tt__Dot11SignalStrength_: - return soap_in_tt__Dot11SignalStrength_(soap, tag, NULL, "tt:Dot11SignalStrength"); - case SOAP_TYPE_tt__Dot11PSKPassphrase__: - return soap_in_tt__Dot11PSKPassphrase__(soap, tag, NULL, "tt:Dot11PSKPassphrase"); - case SOAP_TYPE_tt__Dot11PSKPassphrase: - return soap_in_tt__Dot11PSKPassphrase(soap, tag, NULL, "tt:Dot11PSKPassphrase"); - case SOAP_TYPE_tt__Dot11PSK__: - return soap_in_tt__Dot11PSK__(soap, tag, NULL, "tt:Dot11PSK"); - case SOAP_TYPE_tt__Dot11PSK: - return soap_in_tt__Dot11PSK(soap, tag, NULL, "tt:Dot11PSK"); - case SOAP_TYPE_tt__Dot11Cipher_: - return soap_in_tt__Dot11Cipher_(soap, tag, NULL, "tt:Dot11Cipher"); - case SOAP_TYPE_tt__Dot11SecurityMode_: - return soap_in_tt__Dot11SecurityMode_(soap, tag, NULL, "tt:Dot11SecurityMode"); - case SOAP_TYPE_tt__Dot11StationMode_: - return soap_in_tt__Dot11StationMode_(soap, tag, NULL, "tt:Dot11StationMode"); - case SOAP_TYPE_tt__Dot11SSIDType__: - return soap_in_tt__Dot11SSIDType__(soap, tag, NULL, "tt:Dot11SSIDType"); - case SOAP_TYPE_tt__Dot11SSIDType: - return soap_in_tt__Dot11SSIDType(soap, tag, NULL, "tt:Dot11SSIDType"); - case SOAP_TYPE_tt__DynamicDNSType_: - return soap_in_tt__DynamicDNSType_(soap, tag, NULL, "tt:DynamicDNSType"); - case SOAP_TYPE_tt__IPAddressFilterType_: - return soap_in_tt__IPAddressFilterType_(soap, tag, NULL, "tt:IPAddressFilterType"); - case SOAP_TYPE_tt__Domain__: - return soap_in_tt__Domain__(soap, tag, NULL, "tt:Domain"); - case SOAP_TYPE_tt__Domain: - return soap_in_tt__Domain(soap, tag, NULL, "tt:Domain"); - case SOAP_TYPE_tt__DNSName__: - return soap_in_tt__DNSName__(soap, tag, NULL, "tt:DNSName"); - case SOAP_TYPE_tt__DNSName: - return soap_in_tt__DNSName(soap, tag, NULL, "tt:DNSName"); - case SOAP_TYPE_tt__IPType_: - return soap_in_tt__IPType_(soap, tag, NULL, "tt:IPType"); - case SOAP_TYPE_tt__HwAddress__: - return soap_in_tt__HwAddress__(soap, tag, NULL, "tt:HwAddress"); - case SOAP_TYPE_tt__HwAddress: - return soap_in_tt__HwAddress(soap, tag, NULL, "tt:HwAddress"); - case SOAP_TYPE_tt__IPv6Address__: - return soap_in_tt__IPv6Address__(soap, tag, NULL, "tt:IPv6Address"); - case SOAP_TYPE_tt__IPv6Address: - return soap_in_tt__IPv6Address(soap, tag, NULL, "tt:IPv6Address"); - case SOAP_TYPE_tt__IPv4Address__: - return soap_in_tt__IPv4Address__(soap, tag, NULL, "tt:IPv4Address"); - case SOAP_TYPE_tt__IPv4Address: - return soap_in_tt__IPv4Address(soap, tag, NULL, "tt:IPv4Address"); - case SOAP_TYPE_tt__NetworkHostType_: - return soap_in_tt__NetworkHostType_(soap, tag, NULL, "tt:NetworkHostType"); - case SOAP_TYPE_tt__NetworkProtocolType_: - return soap_in_tt__NetworkProtocolType_(soap, tag, NULL, "tt:NetworkProtocolType"); - case SOAP_TYPE_tt__IPv6DHCPConfiguration_: - return soap_in_tt__IPv6DHCPConfiguration_(soap, tag, NULL, "tt:IPv6DHCPConfiguration"); - case SOAP_TYPE_tt__IANA_IfTypes__: - return soap_in_tt__IANA_IfTypes__(soap, tag, NULL, "tt:IANA-IfTypes"); - case SOAP_TYPE_tt__Duplex_: - return soap_in_tt__Duplex_(soap, tag, NULL, "tt:Duplex"); - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority__: - return soap_in_tt__NetworkInterfaceConfigPriority__(soap, tag, NULL, "tt:NetworkInterfaceConfigPriority"); - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority: - return soap_in_tt__NetworkInterfaceConfigPriority(soap, tag, NULL, "tt:NetworkInterfaceConfigPriority"); - case SOAP_TYPE_tt__DiscoveryMode_: - return soap_in_tt__DiscoveryMode_(soap, tag, NULL, "tt:DiscoveryMode"); - case SOAP_TYPE_tt__ScopeDefinition_: - return soap_in_tt__ScopeDefinition_(soap, tag, NULL, "tt:ScopeDefinition"); - case SOAP_TYPE_tt__TransportProtocol_: - return soap_in_tt__TransportProtocol_(soap, tag, NULL, "tt:TransportProtocol"); - case SOAP_TYPE_tt__StreamType_: - return soap_in_tt__StreamType_(soap, tag, NULL, "tt:StreamType"); - case SOAP_TYPE_tt__MetadataCompressionType_: - return soap_in_tt__MetadataCompressionType_(soap, tag, NULL, "tt:MetadataCompressionType"); - case SOAP_TYPE_tt__AudioEncodingMimeNames_: - return soap_in_tt__AudioEncodingMimeNames_(soap, tag, NULL, "tt:AudioEncodingMimeNames"); - case SOAP_TYPE_tt__AudioEncoding_: - return soap_in_tt__AudioEncoding_(soap, tag, NULL, "tt:AudioEncoding"); - case SOAP_TYPE_tt__VideoEncodingProfiles_: - return soap_in_tt__VideoEncodingProfiles_(soap, tag, NULL, "tt:VideoEncodingProfiles"); - case SOAP_TYPE_tt__VideoEncodingMimeNames_: - return soap_in_tt__VideoEncodingMimeNames_(soap, tag, NULL, "tt:VideoEncodingMimeNames"); - case SOAP_TYPE_tt__H264Profile_: - return soap_in_tt__H264Profile_(soap, tag, NULL, "tt:H264Profile"); - case SOAP_TYPE_tt__Mpeg4Profile_: - return soap_in_tt__Mpeg4Profile_(soap, tag, NULL, "tt:Mpeg4Profile"); - case SOAP_TYPE_tt__VideoEncoding_: - return soap_in_tt__VideoEncoding_(soap, tag, NULL, "tt:VideoEncoding"); - case SOAP_TYPE_tt__ViewModes_: - return soap_in_tt__ViewModes_(soap, tag, NULL, "tt:ViewModes"); - case SOAP_TYPE_tt__SceneOrientationOption_: - return soap_in_tt__SceneOrientationOption_(soap, tag, NULL, "tt:SceneOrientationOption"); - case SOAP_TYPE_tt__SceneOrientationMode_: - return soap_in_tt__SceneOrientationMode_(soap, tag, NULL, "tt:SceneOrientationMode"); - case SOAP_TYPE_tt__RotateMode_: - return soap_in_tt__RotateMode_(soap, tag, NULL, "tt:RotateMode"); - case SOAP_TYPE_tt__Name__: - return soap_in_tt__Name__(soap, tag, NULL, "tt:Name"); - case SOAP_TYPE_tt__Name: - return soap_in_tt__Name(soap, tag, NULL, "tt:Name"); - case SOAP_TYPE_tt__Entity_: - return soap_in_tt__Entity_(soap, tag, NULL, "tt:Entity"); - case SOAP_TYPE_tt__MoveStatus_: - return soap_in_tt__MoveStatus_(soap, tag, NULL, "tt:MoveStatus"); - case SOAP_TYPE_tt__ReferenceToken__: - return soap_in_tt__ReferenceToken__(soap, tag, NULL, "tt:ReferenceToken"); - case SOAP_TYPE_tt__ReferenceToken: - return soap_in_tt__ReferenceToken(soap, tag, NULL, "tt:ReferenceToken"); - case SOAP_TYPE_trc__EncodingTypes: - return soap_in_trc__EncodingTypes(soap, tag, NULL, "trc:EncodingTypes"); - case SOAP_TYPE_trt__EncodingTypes: - return soap_in_trt__EncodingTypes(soap, tag, NULL, "trt:EncodingTypes"); - case SOAP_TYPE_tds__EAPMethodTypes: - return soap_in_tds__EAPMethodTypes(soap, tag, NULL, "tds:EAPMethodTypes"); - case SOAP_TYPE_tmd__DelayTimes: - return soap_in_tmd__DelayTimes(soap, tag, NULL, "tmd:DelayTimes"); - case SOAP_TYPE_tt__ReferenceTokenList: - return soap_in_tt__ReferenceTokenList(soap, tag, NULL, "tt:ReferenceTokenList"); - case SOAP_TYPE_tt__StringList: - return soap_in_tt__StringList(soap, tag, NULL, "tt:StringList"); - case SOAP_TYPE_tt__StringAttrList: - return soap_in_tt__StringAttrList(soap, tag, NULL, "tt:StringAttrList"); - case SOAP_TYPE_tt__FloatAttrList: - return soap_in_tt__FloatAttrList(soap, tag, NULL, "tt:FloatAttrList"); - case SOAP_TYPE_tt__IntAttrList: - return soap_in_tt__IntAttrList(soap, tag, NULL, "tt:IntAttrList"); - case SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType: - return soap_in_wsnt__AbsoluteOrRelativeTimeType(soap, tag, NULL, "wsnt:AbsoluteOrRelativeTimeType"); - case SOAP_TYPE_wstop__TopicSetType: - return soap_in_wstop__TopicSetType(soap, tag, NULL, "wstop:TopicSetType"); - case SOAP_TYPE_wstop__TopicType: - return soap_in_wstop__TopicType(soap, tag, NULL, "wstop:TopicType"); - case SOAP_TYPE_wstop__TopicNamespaceType: - return soap_in_wstop__TopicNamespaceType(soap, tag, NULL, "wstop:TopicNamespaceType"); - case SOAP_TYPE_wstop__QueryExpressionType: - return soap_in_wstop__QueryExpressionType(soap, tag, NULL, "wstop:QueryExpressionType"); - case SOAP_TYPE_wstop__ExtensibleDocumented: - return soap_in_wstop__ExtensibleDocumented(soap, tag, NULL, "wstop:ExtensibleDocumented"); - case SOAP_TYPE_wstop__Documentation: - return soap_in_wstop__Documentation(soap, tag, NULL, "wstop:Documentation"); - case SOAP_TYPE_tse__Capabilities: - return soap_in_tse__Capabilities(soap, tag, NULL, "tse:Capabilities"); - case SOAP_TYPE_trp__Capabilities: - return soap_in_trp__Capabilities(soap, tag, NULL, "trp:Capabilities"); - case SOAP_TYPE_trc__TrackOptions: - return soap_in_trc__TrackOptions(soap, tag, NULL, "trc:TrackOptions"); - case SOAP_TYPE_trc__JobOptions: - return soap_in_trc__JobOptions(soap, tag, NULL, "trc:JobOptions"); - case SOAP_TYPE_trc__RecordingOptions: - return soap_in_trc__RecordingOptions(soap, tag, NULL, "trc:RecordingOptions"); - case SOAP_TYPE_trc__Capabilities: - return soap_in_trc__Capabilities(soap, tag, NULL, "trc:Capabilities"); - case SOAP_TYPE_trv__Capabilities: - return soap_in_trv__Capabilities(soap, tag, NULL, "trv:Capabilities"); - case SOAP_TYPE_wsrfr__ResourceUnavailableFaultType: - return soap_in_wsrfr__ResourceUnavailableFaultType(soap, tag, NULL, "wsrfr:ResourceUnavailableFaultType"); - case SOAP_TYPE_wsrfr__ResourceUnknownFaultType: - return soap_in_wsrfr__ResourceUnknownFaultType(soap, tag, NULL, "wsrfr:ResourceUnknownFaultType"); - case SOAP_TYPE_tptz__Capabilities: - return soap_in_tptz__Capabilities(soap, tag, NULL, "tptz:Capabilities"); - case SOAP_TYPE_trt__VideoSourceModeExtension: - return soap_in_trt__VideoSourceModeExtension(soap, tag, NULL, "trt:VideoSourceModeExtension"); - case SOAP_TYPE_trt__VideoSourceMode: - return soap_in_trt__VideoSourceMode(soap, tag, NULL, "trt:VideoSourceMode"); - case SOAP_TYPE_trt__StreamingCapabilities: - return soap_in_trt__StreamingCapabilities(soap, tag, NULL, "trt:StreamingCapabilities"); - case SOAP_TYPE_trt__ProfileCapabilities: - return soap_in_trt__ProfileCapabilities(soap, tag, NULL, "trt:ProfileCapabilities"); - case SOAP_TYPE_trt__Capabilities: - return soap_in_trt__Capabilities(soap, tag, NULL, "trt:Capabilities"); - case SOAP_TYPE_xop__Include: - return soap_in_xop__Include(soap, tag, NULL, "xop:Include"); - case SOAP_TYPE_timg__ImagingPreset: - return soap_in_timg__ImagingPreset(soap, tag, NULL, "timg:ImagingPreset"); - case SOAP_TYPE_timg__Capabilities: - return soap_in_timg__Capabilities(soap, tag, NULL, "timg:Capabilities"); - case SOAP_TYPE_tls__Capabilities: - return soap_in_tls__Capabilities(soap, tag, NULL, "tls:Capabilities"); - case SOAP_TYPE_tds__StorageConfiguration: - return soap_in_tds__StorageConfiguration(soap, tag, NULL, "tds:StorageConfiguration"); - case SOAP_TYPE_tds__StorageConfigurationData: - return soap_in_tds__StorageConfigurationData(soap, tag, NULL, "tds:StorageConfigurationData"); - case SOAP_TYPE_tds__UserCredential: - return soap_in_tds__UserCredential(soap, tag, NULL, "tds:UserCredential"); - case SOAP_TYPE_tds__MiscCapabilities: - return soap_in_tds__MiscCapabilities(soap, tag, NULL, "tds:MiscCapabilities"); - case SOAP_TYPE_tds__SystemCapabilities: - return soap_in_tds__SystemCapabilities(soap, tag, NULL, "tds:SystemCapabilities"); - case SOAP_TYPE_tds__SecurityCapabilities: - return soap_in_tds__SecurityCapabilities(soap, tag, NULL, "tds:SecurityCapabilities"); - case SOAP_TYPE_tds__NetworkCapabilities: - return soap_in_tds__NetworkCapabilities(soap, tag, NULL, "tds:NetworkCapabilities"); - case SOAP_TYPE_tds__DeviceServiceCapabilities: - return soap_in_tds__DeviceServiceCapabilities(soap, tag, NULL, "tds:DeviceServiceCapabilities"); - case SOAP_TYPE_tds__Service: - return soap_in_tds__Service(soap, tag, NULL, "tds:Service"); - case SOAP_TYPE_tmd__ParityBitList: - return soap_in_tmd__ParityBitList(soap, tag, NULL, "tmd:ParityBitList"); - case SOAP_TYPE_tmd__SerialPortConfigurationOptions: - return soap_in_tmd__SerialPortConfigurationOptions(soap, tag, NULL, "tmd:SerialPortConfigurationOptions"); - case SOAP_TYPE_tmd__SerialPortConfiguration: - return soap_in_tmd__SerialPortConfiguration(soap, tag, NULL, "tmd:SerialPortConfiguration"); - case SOAP_TYPE_tmd__SerialPort: - return soap_in_tmd__SerialPort(soap, tag, NULL, "tmd:SerialPort"); - case SOAP_TYPE_tmd__SerialData: - return soap_in_tmd__SerialData(soap, tag, NULL, "tmd:SerialData"); - case SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions: - return soap_in_tmd__DigitalInputConfigurationInputOptions(soap, tag, NULL, "tmd:DigitalInputConfigurationInputOptions"); - case SOAP_TYPE_tmd__GetResponse: - return soap_in_tmd__GetResponse(soap, tag, NULL, "tmd:GetResponse"); - case SOAP_TYPE_tmd__Get: - return soap_in_tmd__Get(soap, tag, NULL, "tmd:Get"); - case SOAP_TYPE_tmd__RelayOutputOptionsExtension: - return soap_in_tmd__RelayOutputOptionsExtension(soap, tag, NULL, "tmd:RelayOutputOptionsExtension"); - case SOAP_TYPE_tmd__RelayOutputOptions: - return soap_in_tmd__RelayOutputOptions(soap, tag, NULL, "tmd:RelayOutputOptions"); - case SOAP_TYPE_tmd__Capabilities: - return soap_in_tmd__Capabilities(soap, tag, NULL, "tmd:Capabilities"); - case SOAP_TYPE_tt__PolygonOptions: - return soap_in_tt__PolygonOptions(soap, tag, NULL, "tt:PolygonOptions"); - case SOAP_TYPE_tt__StorageReferencePathExtension: - return soap_in_tt__StorageReferencePathExtension(soap, tag, NULL, "tt:StorageReferencePathExtension"); - case SOAP_TYPE_tt__StorageReferencePath: - return soap_in_tt__StorageReferencePath(soap, tag, NULL, "tt:StorageReferencePath"); - case SOAP_TYPE_tt__ArrayOfFileProgressExtension: - return soap_in_tt__ArrayOfFileProgressExtension(soap, tag, NULL, "tt:ArrayOfFileProgressExtension"); - case SOAP_TYPE_tt__ArrayOfFileProgress: - return soap_in_tt__ArrayOfFileProgress(soap, tag, NULL, "tt:ArrayOfFileProgress"); - case SOAP_TYPE_tt__FileProgress: - return soap_in_tt__FileProgress(soap, tag, NULL, "tt:FileProgress"); - case SOAP_TYPE_tt__OSDConfigurationOptionsExtension: - return soap_in_tt__OSDConfigurationOptionsExtension(soap, tag, NULL, "tt:OSDConfigurationOptionsExtension"); - case SOAP_TYPE_tt__OSDConfigurationOptions: - return soap_in_tt__OSDConfigurationOptions(soap, tag, NULL, "tt:OSDConfigurationOptions"); - case SOAP_TYPE_tt__MaximumNumberOfOSDs: - return soap_in_tt__MaximumNumberOfOSDs(soap, tag, NULL, "tt:MaximumNumberOfOSDs"); - case SOAP_TYPE_tt__OSDConfigurationExtension: - return soap_in_tt__OSDConfigurationExtension(soap, tag, NULL, "tt:OSDConfigurationExtension"); - case SOAP_TYPE_tt__OSDConfiguration: - return soap_in_tt__OSDConfiguration(soap, tag, NULL, "tt:OSDConfiguration"); - case SOAP_TYPE_tt__OSDImgOptionsExtension: - return soap_in_tt__OSDImgOptionsExtension(soap, tag, NULL, "tt:OSDImgOptionsExtension"); - case SOAP_TYPE_tt__OSDImgOptions: - return soap_in_tt__OSDImgOptions(soap, tag, NULL, "tt:OSDImgOptions"); - case SOAP_TYPE_tt__OSDTextOptionsExtension: - return soap_in_tt__OSDTextOptionsExtension(soap, tag, NULL, "tt:OSDTextOptionsExtension"); - case SOAP_TYPE_tt__OSDTextOptions: - return soap_in_tt__OSDTextOptions(soap, tag, NULL, "tt:OSDTextOptions"); - case SOAP_TYPE_tt__OSDColorOptionsExtension: - return soap_in_tt__OSDColorOptionsExtension(soap, tag, NULL, "tt:OSDColorOptionsExtension"); - case SOAP_TYPE_tt__OSDColorOptions: - return soap_in_tt__OSDColorOptions(soap, tag, NULL, "tt:OSDColorOptions"); - case SOAP_TYPE_tt__ColorOptions: - return soap_in_tt__ColorOptions(soap, tag, NULL, "tt:ColorOptions"); - case SOAP_TYPE_tt__ColorspaceRange: - return soap_in_tt__ColorspaceRange(soap, tag, NULL, "tt:ColorspaceRange"); - case SOAP_TYPE_tt__OSDImgConfigurationExtension: - return soap_in_tt__OSDImgConfigurationExtension(soap, tag, NULL, "tt:OSDImgConfigurationExtension"); - case SOAP_TYPE_tt__OSDImgConfiguration: - return soap_in_tt__OSDImgConfiguration(soap, tag, NULL, "tt:OSDImgConfiguration"); - case SOAP_TYPE_tt__OSDTextConfigurationExtension: - return soap_in_tt__OSDTextConfigurationExtension(soap, tag, NULL, "tt:OSDTextConfigurationExtension"); - case SOAP_TYPE_tt__OSDTextConfiguration: - return soap_in_tt__OSDTextConfiguration(soap, tag, NULL, "tt:OSDTextConfiguration"); - case SOAP_TYPE_tt__OSDColor: - return soap_in_tt__OSDColor(soap, tag, NULL, "tt:OSDColor"); - case SOAP_TYPE_tt__OSDPosConfigurationExtension: - return soap_in_tt__OSDPosConfigurationExtension(soap, tag, NULL, "tt:OSDPosConfigurationExtension"); - case SOAP_TYPE_tt__OSDPosConfiguration: - return soap_in_tt__OSDPosConfiguration(soap, tag, NULL, "tt:OSDPosConfiguration"); - case SOAP_TYPE_tt__OSDReference: - return soap_in_tt__OSDReference(soap, tag, NULL, "tt:OSDReference"); - case SOAP_TYPE_tt__ProfileStatusExtension: - return soap_in_tt__ProfileStatusExtension(soap, tag, NULL, "tt:ProfileStatusExtension"); - case SOAP_TYPE_tt__ProfileStatus: - return soap_in_tt__ProfileStatus(soap, tag, NULL, "tt:ProfileStatus"); - case SOAP_TYPE_tt__ActiveConnection: - return soap_in_tt__ActiveConnection(soap, tag, NULL, "tt:ActiveConnection"); - case SOAP_TYPE_tt__AudioClassDescriptorExtension: - return soap_in_tt__AudioClassDescriptorExtension(soap, tag, NULL, "tt:AudioClassDescriptorExtension"); - case SOAP_TYPE_tt__AudioClassDescriptor: - return soap_in_tt__AudioClassDescriptor(soap, tag, NULL, "tt:AudioClassDescriptor"); - case SOAP_TYPE_tt__AudioClassCandidate: - return soap_in_tt__AudioClassCandidate(soap, tag, NULL, "tt:AudioClassCandidate"); - case SOAP_TYPE_tt__ActionEngineEventPayloadExtension: - return soap_in_tt__ActionEngineEventPayloadExtension(soap, tag, NULL, "tt:ActionEngineEventPayloadExtension"); - case SOAP_TYPE_tt__ActionEngineEventPayload: - return soap_in_tt__ActionEngineEventPayload(soap, tag, NULL, "tt:ActionEngineEventPayload"); - case SOAP_TYPE_tt__AnalyticsState: - return soap_in_tt__AnalyticsState(soap, tag, NULL, "tt:AnalyticsState"); - case SOAP_TYPE_tt__AnalyticsStateInformation: - return soap_in_tt__AnalyticsStateInformation(soap, tag, NULL, "tt:AnalyticsStateInformation"); - case SOAP_TYPE_tt__AnalyticsEngineControl: - return soap_in_tt__AnalyticsEngineControl(soap, tag, NULL, "tt:AnalyticsEngineControl"); - case SOAP_TYPE_tt__MetadataInputExtension: - return soap_in_tt__MetadataInputExtension(soap, tag, NULL, "tt:MetadataInputExtension"); - case SOAP_TYPE_tt__MetadataInput: - return soap_in_tt__MetadataInput(soap, tag, NULL, "tt:MetadataInput"); - case SOAP_TYPE_tt__SourceIdentificationExtension: - return soap_in_tt__SourceIdentificationExtension(soap, tag, NULL, "tt:SourceIdentificationExtension"); - case SOAP_TYPE_tt__SourceIdentification: - return soap_in_tt__SourceIdentification(soap, tag, NULL, "tt:SourceIdentification"); - case SOAP_TYPE_tt__AnalyticsEngineInput: - return soap_in_tt__AnalyticsEngineInput(soap, tag, NULL, "tt:AnalyticsEngineInput"); - case SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension: - return soap_in_tt__AnalyticsEngineInputInfoExtension(soap, tag, NULL, "tt:AnalyticsEngineInputInfoExtension"); - case SOAP_TYPE_tt__AnalyticsEngineInputInfo: - return soap_in_tt__AnalyticsEngineInputInfo(soap, tag, NULL, "tt:AnalyticsEngineInputInfo"); - case SOAP_TYPE_tt__EngineConfiguration: - return soap_in_tt__EngineConfiguration(soap, tag, NULL, "tt:EngineConfiguration"); - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension: - return soap_in_tt__AnalyticsDeviceEngineConfigurationExtension(soap, tag, NULL, "tt:AnalyticsDeviceEngineConfigurationExtension"); - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration: - return soap_in_tt__AnalyticsDeviceEngineConfiguration(soap, tag, NULL, "tt:AnalyticsDeviceEngineConfiguration"); - case SOAP_TYPE_tt__AnalyticsEngine: - return soap_in_tt__AnalyticsEngine(soap, tag, NULL, "tt:AnalyticsEngine"); - case SOAP_TYPE_tt__ReplayConfiguration: - return soap_in_tt__ReplayConfiguration(soap, tag, NULL, "tt:ReplayConfiguration"); - case SOAP_TYPE_tt__GetRecordingJobsResponseItem: - return soap_in_tt__GetRecordingJobsResponseItem(soap, tag, NULL, "tt:GetRecordingJobsResponseItem"); - case SOAP_TYPE_tt__RecordingJobStateTrack: - return soap_in_tt__RecordingJobStateTrack(soap, tag, NULL, "tt:RecordingJobStateTrack"); - case SOAP_TYPE_tt__RecordingJobStateTracks: - return soap_in_tt__RecordingJobStateTracks(soap, tag, NULL, "tt:RecordingJobStateTracks"); - case SOAP_TYPE_tt__RecordingJobStateSource: - return soap_in_tt__RecordingJobStateSource(soap, tag, NULL, "tt:RecordingJobStateSource"); - case SOAP_TYPE_tt__RecordingJobStateInformationExtension: - return soap_in_tt__RecordingJobStateInformationExtension(soap, tag, NULL, "tt:RecordingJobStateInformationExtension"); - case SOAP_TYPE_tt__RecordingJobStateInformation: - return soap_in_tt__RecordingJobStateInformation(soap, tag, NULL, "tt:RecordingJobStateInformation"); - case SOAP_TYPE_tt__RecordingJobTrack: - return soap_in_tt__RecordingJobTrack(soap, tag, NULL, "tt:RecordingJobTrack"); - case SOAP_TYPE_tt__RecordingJobSourceExtension: - return soap_in_tt__RecordingJobSourceExtension(soap, tag, NULL, "tt:RecordingJobSourceExtension"); - case SOAP_TYPE_tt__RecordingJobSource: - return soap_in_tt__RecordingJobSource(soap, tag, NULL, "tt:RecordingJobSource"); - case SOAP_TYPE_tt__RecordingJobConfigurationExtension: - return soap_in_tt__RecordingJobConfigurationExtension(soap, tag, NULL, "tt:RecordingJobConfigurationExtension"); - case SOAP_TYPE_tt__RecordingJobConfiguration: - return soap_in_tt__RecordingJobConfiguration(soap, tag, NULL, "tt:RecordingJobConfiguration"); - case SOAP_TYPE_tt__GetTracksResponseItem: - return soap_in_tt__GetTracksResponseItem(soap, tag, NULL, "tt:GetTracksResponseItem"); - case SOAP_TYPE_tt__GetTracksResponseList: - return soap_in_tt__GetTracksResponseList(soap, tag, NULL, "tt:GetTracksResponseList"); - case SOAP_TYPE_tt__GetRecordingsResponseItem: - return soap_in_tt__GetRecordingsResponseItem(soap, tag, NULL, "tt:GetRecordingsResponseItem"); - case SOAP_TYPE_tt__TrackConfiguration: - return soap_in_tt__TrackConfiguration(soap, tag, NULL, "tt:TrackConfiguration"); - case SOAP_TYPE_tt__RecordingConfiguration: - return soap_in_tt__RecordingConfiguration(soap, tag, NULL, "tt:RecordingConfiguration"); - case SOAP_TYPE_tt__MetadataAttributes: - return soap_in_tt__MetadataAttributes(soap, tag, NULL, "tt:MetadataAttributes"); - case SOAP_TYPE_tt__AudioAttributes: - return soap_in_tt__AudioAttributes(soap, tag, NULL, "tt:AudioAttributes"); - case SOAP_TYPE_tt__VideoAttributes: - return soap_in_tt__VideoAttributes(soap, tag, NULL, "tt:VideoAttributes"); - case SOAP_TYPE_tt__TrackAttributesExtension: - return soap_in_tt__TrackAttributesExtension(soap, tag, NULL, "tt:TrackAttributesExtension"); - case SOAP_TYPE_tt__TrackAttributes: - return soap_in_tt__TrackAttributes(soap, tag, NULL, "tt:TrackAttributes"); - case SOAP_TYPE_tt__MediaAttributes: - return soap_in_tt__MediaAttributes(soap, tag, NULL, "tt:MediaAttributes"); - case SOAP_TYPE_tt__TrackInformation: - return soap_in_tt__TrackInformation(soap, tag, NULL, "tt:TrackInformation"); - case SOAP_TYPE_tt__RecordingSourceInformation: - return soap_in_tt__RecordingSourceInformation(soap, tag, NULL, "tt:RecordingSourceInformation"); - case SOAP_TYPE_tt__RecordingInformation: - return soap_in_tt__RecordingInformation(soap, tag, NULL, "tt:RecordingInformation"); - case SOAP_TYPE_tt__FindMetadataResult: - return soap_in_tt__FindMetadataResult(soap, tag, NULL, "tt:FindMetadataResult"); - case SOAP_TYPE_tt__FindMetadataResultList: - return soap_in_tt__FindMetadataResultList(soap, tag, NULL, "tt:FindMetadataResultList"); - case SOAP_TYPE_tt__FindPTZPositionResult: - return soap_in_tt__FindPTZPositionResult(soap, tag, NULL, "tt:FindPTZPositionResult"); - case SOAP_TYPE_tt__FindPTZPositionResultList: - return soap_in_tt__FindPTZPositionResultList(soap, tag, NULL, "tt:FindPTZPositionResultList"); - case SOAP_TYPE_tt__FindEventResult: - return soap_in_tt__FindEventResult(soap, tag, NULL, "tt:FindEventResult"); - case SOAP_TYPE_tt__FindEventResultList: - return soap_in_tt__FindEventResultList(soap, tag, NULL, "tt:FindEventResultList"); - case SOAP_TYPE_tt__FindRecordingResultList: - return soap_in_tt__FindRecordingResultList(soap, tag, NULL, "tt:FindRecordingResultList"); - case SOAP_TYPE_tt__MetadataFilter: - return soap_in_tt__MetadataFilter(soap, tag, NULL, "tt:MetadataFilter"); - case SOAP_TYPE_tt__PTZPositionFilter: - return soap_in_tt__PTZPositionFilter(soap, tag, NULL, "tt:PTZPositionFilter"); - case SOAP_TYPE_tt__EventFilter: - return soap_in_tt__EventFilter(soap, tag, NULL, "tt:EventFilter"); - case SOAP_TYPE_tt__SearchScopeExtension: - return soap_in_tt__SearchScopeExtension(soap, tag, NULL, "tt:SearchScopeExtension"); - case SOAP_TYPE_tt__SearchScope: - return soap_in_tt__SearchScope(soap, tag, NULL, "tt:SearchScope"); - case SOAP_TYPE_tt__RecordingSummary: - return soap_in_tt__RecordingSummary(soap, tag, NULL, "tt:RecordingSummary"); - case SOAP_TYPE_tt__DateTimeRange: - return soap_in_tt__DateTimeRange(soap, tag, NULL, "tt:DateTimeRange"); - case SOAP_TYPE_tt__SourceReference: - return soap_in_tt__SourceReference(soap, tag, NULL, "tt:SourceReference"); - case SOAP_TYPE_tt__ReceiverStateInformation: - return soap_in_tt__ReceiverStateInformation(soap, tag, NULL, "tt:ReceiverStateInformation"); - case SOAP_TYPE_tt__ReceiverConfiguration: - return soap_in_tt__ReceiverConfiguration(soap, tag, NULL, "tt:ReceiverConfiguration"); - case SOAP_TYPE_tt__Receiver: - return soap_in_tt__Receiver(soap, tag, NULL, "tt:Receiver"); - case SOAP_TYPE_tt__PaneOptionExtension: - return soap_in_tt__PaneOptionExtension(soap, tag, NULL, "tt:PaneOptionExtension"); - case SOAP_TYPE_tt__PaneLayoutOptions: - return soap_in_tt__PaneLayoutOptions(soap, tag, NULL, "tt:PaneLayoutOptions"); - case SOAP_TYPE_tt__LayoutOptionsExtension: - return soap_in_tt__LayoutOptionsExtension(soap, tag, NULL, "tt:LayoutOptionsExtension"); - case SOAP_TYPE_tt__LayoutOptions: - return soap_in_tt__LayoutOptions(soap, tag, NULL, "tt:LayoutOptions"); - case SOAP_TYPE_tt__CodingCapabilities: - return soap_in_tt__CodingCapabilities(soap, tag, NULL, "tt:CodingCapabilities"); - case SOAP_TYPE_tt__LayoutExtension: - return soap_in_tt__LayoutExtension(soap, tag, NULL, "tt:LayoutExtension"); - case SOAP_TYPE_tt__Layout: - return soap_in_tt__Layout(soap, tag, NULL, "tt:Layout"); - case SOAP_TYPE_tt__PaneLayout: - return soap_in_tt__PaneLayout(soap, tag, NULL, "tt:PaneLayout"); - case SOAP_TYPE_tt__PaneConfiguration: - return soap_in_tt__PaneConfiguration(soap, tag, NULL, "tt:PaneConfiguration"); - case SOAP_TYPE_tt__CellLayout: - return soap_in_tt__CellLayout(soap, tag, NULL, "tt:CellLayout"); - case SOAP_TYPE_tt__MotionExpressionConfiguration: - return soap_in_tt__MotionExpressionConfiguration(soap, tag, NULL, "tt:MotionExpressionConfiguration"); - case SOAP_TYPE_tt__MotionExpression: - return soap_in_tt__MotionExpression(soap, tag, NULL, "tt:MotionExpression"); - case SOAP_TYPE_tt__PolylineArrayConfiguration: - return soap_in_tt__PolylineArrayConfiguration(soap, tag, NULL, "tt:PolylineArrayConfiguration"); - case SOAP_TYPE_tt__PolylineArrayExtension: - return soap_in_tt__PolylineArrayExtension(soap, tag, NULL, "tt:PolylineArrayExtension"); - case SOAP_TYPE_tt__PolylineArray: - return soap_in_tt__PolylineArray(soap, tag, NULL, "tt:PolylineArray"); - case SOAP_TYPE_tt__SupportedAnalyticsModulesExtension: - return soap_in_tt__SupportedAnalyticsModulesExtension(soap, tag, NULL, "tt:SupportedAnalyticsModulesExtension"); - case SOAP_TYPE_tt__SupportedAnalyticsModules: - return soap_in_tt__SupportedAnalyticsModules(soap, tag, NULL, "tt:SupportedAnalyticsModules"); - case SOAP_TYPE_tt__SupportedRulesExtension: - return soap_in_tt__SupportedRulesExtension(soap, tag, NULL, "tt:SupportedRulesExtension"); - case SOAP_TYPE_tt__SupportedRules: - return soap_in_tt__SupportedRules(soap, tag, NULL, "tt:SupportedRules"); - case SOAP_TYPE_tt__ConfigDescriptionExtension: - return soap_in_tt__ConfigDescriptionExtension(soap, tag, NULL, "tt:ConfigDescriptionExtension"); - case SOAP_TYPE_tt__ConfigDescription: - return soap_in_tt__ConfigDescription(soap, tag, NULL, "tt:ConfigDescription"); - case SOAP_TYPE_tt__Config: - return soap_in_tt__Config(soap, tag, NULL, "tt:Config"); - case SOAP_TYPE_tt__RuleEngineConfigurationExtension: - return soap_in_tt__RuleEngineConfigurationExtension(soap, tag, NULL, "tt:RuleEngineConfigurationExtension"); - case SOAP_TYPE_tt__RuleEngineConfiguration: - return soap_in_tt__RuleEngineConfiguration(soap, tag, NULL, "tt:RuleEngineConfiguration"); - case SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension: - return soap_in_tt__AnalyticsEngineConfigurationExtension(soap, tag, NULL, "tt:AnalyticsEngineConfigurationExtension"); - case SOAP_TYPE_tt__AnalyticsEngineConfiguration: - return soap_in_tt__AnalyticsEngineConfiguration(soap, tag, NULL, "tt:AnalyticsEngineConfiguration"); - case SOAP_TYPE_tt__Polyline: - return soap_in_tt__Polyline(soap, tag, NULL, "tt:Polyline"); - case SOAP_TYPE_tt__ItemListDescriptionExtension: - return soap_in_tt__ItemListDescriptionExtension(soap, tag, NULL, "tt:ItemListDescriptionExtension"); - case SOAP_TYPE_tt__ItemListDescription: - return soap_in_tt__ItemListDescription(soap, tag, NULL, "tt:ItemListDescription"); - case SOAP_TYPE_tt__MessageDescriptionExtension: - return soap_in_tt__MessageDescriptionExtension(soap, tag, NULL, "tt:MessageDescriptionExtension"); - case SOAP_TYPE_tt__MessageDescription: - return soap_in_tt__MessageDescription(soap, tag, NULL, "tt:MessageDescription"); - case SOAP_TYPE_tt__ItemListExtension: - return soap_in_tt__ItemListExtension(soap, tag, NULL, "tt:ItemListExtension"); - case SOAP_TYPE_tt__ItemList: - return soap_in_tt__ItemList(soap, tag, NULL, "tt:ItemList"); - case SOAP_TYPE_tt__MessageExtension: - return soap_in_tt__MessageExtension(soap, tag, NULL, "tt:MessageExtension"); - case SOAP_TYPE_tt__NoiseReductionOptions: - return soap_in_tt__NoiseReductionOptions(soap, tag, NULL, "tt:NoiseReductionOptions"); - case SOAP_TYPE_tt__DefoggingOptions: - return soap_in_tt__DefoggingOptions(soap, tag, NULL, "tt:DefoggingOptions"); - case SOAP_TYPE_tt__ToneCompensationOptions: - return soap_in_tt__ToneCompensationOptions(soap, tag, NULL, "tt:ToneCompensationOptions"); - case SOAP_TYPE_tt__FocusOptions20Extension: - return soap_in_tt__FocusOptions20Extension(soap, tag, NULL, "tt:FocusOptions20Extension"); - case SOAP_TYPE_tt__FocusOptions20: - return soap_in_tt__FocusOptions20(soap, tag, NULL, "tt:FocusOptions20"); - case SOAP_TYPE_tt__WhiteBalanceOptions20Extension: - return soap_in_tt__WhiteBalanceOptions20Extension(soap, tag, NULL, "tt:WhiteBalanceOptions20Extension"); - case SOAP_TYPE_tt__WhiteBalanceOptions20: - return soap_in_tt__WhiteBalanceOptions20(soap, tag, NULL, "tt:WhiteBalanceOptions20"); - case SOAP_TYPE_tt__FocusConfiguration20Extension: - return soap_in_tt__FocusConfiguration20Extension(soap, tag, NULL, "tt:FocusConfiguration20Extension"); - case SOAP_TYPE_tt__FocusConfiguration20: - return soap_in_tt__FocusConfiguration20(soap, tag, NULL, "tt:FocusConfiguration20"); - case SOAP_TYPE_tt__WhiteBalance20Extension: - return soap_in_tt__WhiteBalance20Extension(soap, tag, NULL, "tt:WhiteBalance20Extension"); - case SOAP_TYPE_tt__WhiteBalance20: - return soap_in_tt__WhiteBalance20(soap, tag, NULL, "tt:WhiteBalance20"); - case SOAP_TYPE_tt__RelativeFocusOptions20: - return soap_in_tt__RelativeFocusOptions20(soap, tag, NULL, "tt:RelativeFocusOptions20"); - case SOAP_TYPE_tt__MoveOptions20: - return soap_in_tt__MoveOptions20(soap, tag, NULL, "tt:MoveOptions20"); - case SOAP_TYPE_tt__ExposureOptions20: - return soap_in_tt__ExposureOptions20(soap, tag, NULL, "tt:ExposureOptions20"); - case SOAP_TYPE_tt__BacklightCompensationOptions20: - return soap_in_tt__BacklightCompensationOptions20(soap, tag, NULL, "tt:BacklightCompensationOptions20"); - case SOAP_TYPE_tt__WideDynamicRangeOptions20: - return soap_in_tt__WideDynamicRangeOptions20(soap, tag, NULL, "tt:WideDynamicRangeOptions20"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension: - return soap_in_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag, NULL, "tt:IrCutFilterAutoAdjustmentOptionsExtension"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions: - return soap_in_tt__IrCutFilterAutoAdjustmentOptions(soap, tag, NULL, "tt:IrCutFilterAutoAdjustmentOptions"); - case SOAP_TYPE_tt__ImageStabilizationOptionsExtension: - return soap_in_tt__ImageStabilizationOptionsExtension(soap, tag, NULL, "tt:ImageStabilizationOptionsExtension"); - case SOAP_TYPE_tt__ImageStabilizationOptions: - return soap_in_tt__ImageStabilizationOptions(soap, tag, NULL, "tt:ImageStabilizationOptions"); - case SOAP_TYPE_tt__ImagingOptions20Extension4: - return soap_in_tt__ImagingOptions20Extension4(soap, tag, NULL, "tt:ImagingOptions20Extension4"); - case SOAP_TYPE_tt__ImagingOptions20Extension3: - return soap_in_tt__ImagingOptions20Extension3(soap, tag, NULL, "tt:ImagingOptions20Extension3"); - case SOAP_TYPE_tt__ImagingOptions20Extension2: - return soap_in_tt__ImagingOptions20Extension2(soap, tag, NULL, "tt:ImagingOptions20Extension2"); - case SOAP_TYPE_tt__ImagingOptions20Extension: - return soap_in_tt__ImagingOptions20Extension(soap, tag, NULL, "tt:ImagingOptions20Extension"); - case SOAP_TYPE_tt__ImagingOptions20: - return soap_in_tt__ImagingOptions20(soap, tag, NULL, "tt:ImagingOptions20"); - case SOAP_TYPE_tt__NoiseReduction: - return soap_in_tt__NoiseReduction(soap, tag, NULL, "tt:NoiseReduction"); - case SOAP_TYPE_tt__DefoggingExtension: - return soap_in_tt__DefoggingExtension(soap, tag, NULL, "tt:DefoggingExtension"); - case SOAP_TYPE_tt__Defogging: - return soap_in_tt__Defogging(soap, tag, NULL, "tt:Defogging"); - case SOAP_TYPE_tt__ToneCompensationExtension: - return soap_in_tt__ToneCompensationExtension(soap, tag, NULL, "tt:ToneCompensationExtension"); - case SOAP_TYPE_tt__ToneCompensation: - return soap_in_tt__ToneCompensation(soap, tag, NULL, "tt:ToneCompensation"); - case SOAP_TYPE_tt__Exposure20: - return soap_in_tt__Exposure20(soap, tag, NULL, "tt:Exposure20"); - case SOAP_TYPE_tt__BacklightCompensation20: - return soap_in_tt__BacklightCompensation20(soap, tag, NULL, "tt:BacklightCompensation20"); - case SOAP_TYPE_tt__WideDynamicRange20: - return soap_in_tt__WideDynamicRange20(soap, tag, NULL, "tt:WideDynamicRange20"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension: - return soap_in_tt__IrCutFilterAutoAdjustmentExtension(soap, tag, NULL, "tt:IrCutFilterAutoAdjustmentExtension"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustment: - return soap_in_tt__IrCutFilterAutoAdjustment(soap, tag, NULL, "tt:IrCutFilterAutoAdjustment"); - case SOAP_TYPE_tt__ImageStabilizationExtension: - return soap_in_tt__ImageStabilizationExtension(soap, tag, NULL, "tt:ImageStabilizationExtension"); - case SOAP_TYPE_tt__ImageStabilization: - return soap_in_tt__ImageStabilization(soap, tag, NULL, "tt:ImageStabilization"); - case SOAP_TYPE_tt__ImagingSettingsExtension204: - return soap_in_tt__ImagingSettingsExtension204(soap, tag, NULL, "tt:ImagingSettingsExtension204"); - case SOAP_TYPE_tt__ImagingSettingsExtension203: - return soap_in_tt__ImagingSettingsExtension203(soap, tag, NULL, "tt:ImagingSettingsExtension203"); - case SOAP_TYPE_tt__ImagingSettingsExtension202: - return soap_in_tt__ImagingSettingsExtension202(soap, tag, NULL, "tt:ImagingSettingsExtension202"); - case SOAP_TYPE_tt__ImagingSettingsExtension20: - return soap_in_tt__ImagingSettingsExtension20(soap, tag, NULL, "tt:ImagingSettingsExtension20"); - case SOAP_TYPE_tt__ImagingSettings20: - return soap_in_tt__ImagingSettings20(soap, tag, NULL, "tt:ImagingSettings20"); - case SOAP_TYPE_tt__FocusStatus20Extension: - return soap_in_tt__FocusStatus20Extension(soap, tag, NULL, "tt:FocusStatus20Extension"); - case SOAP_TYPE_tt__FocusStatus20: - return soap_in_tt__FocusStatus20(soap, tag, NULL, "tt:FocusStatus20"); - case SOAP_TYPE_tt__ImagingStatus20Extension: - return soap_in_tt__ImagingStatus20Extension(soap, tag, NULL, "tt:ImagingStatus20Extension"); - case SOAP_TYPE_tt__ImagingStatus20: - return soap_in_tt__ImagingStatus20(soap, tag, NULL, "tt:ImagingStatus20"); - case SOAP_TYPE_tt__WhiteBalance: - return soap_in_tt__WhiteBalance(soap, tag, NULL, "tt:WhiteBalance"); - case SOAP_TYPE_tt__ContinuousFocusOptions: - return soap_in_tt__ContinuousFocusOptions(soap, tag, NULL, "tt:ContinuousFocusOptions"); - case SOAP_TYPE_tt__RelativeFocusOptions: - return soap_in_tt__RelativeFocusOptions(soap, tag, NULL, "tt:RelativeFocusOptions"); - case SOAP_TYPE_tt__AbsoluteFocusOptions: - return soap_in_tt__AbsoluteFocusOptions(soap, tag, NULL, "tt:AbsoluteFocusOptions"); - case SOAP_TYPE_tt__MoveOptions: - return soap_in_tt__MoveOptions(soap, tag, NULL, "tt:MoveOptions"); - case SOAP_TYPE_tt__ContinuousFocus: - return soap_in_tt__ContinuousFocus(soap, tag, NULL, "tt:ContinuousFocus"); - case SOAP_TYPE_tt__RelativeFocus: - return soap_in_tt__RelativeFocus(soap, tag, NULL, "tt:RelativeFocus"); - case SOAP_TYPE_tt__AbsoluteFocus: - return soap_in_tt__AbsoluteFocus(soap, tag, NULL, "tt:AbsoluteFocus"); - case SOAP_TYPE_tt__FocusMove: - return soap_in_tt__FocusMove(soap, tag, NULL, "tt:FocusMove"); - case SOAP_TYPE_tt__WhiteBalanceOptions: - return soap_in_tt__WhiteBalanceOptions(soap, tag, NULL, "tt:WhiteBalanceOptions"); - case SOAP_TYPE_tt__ExposureOptions: - return soap_in_tt__ExposureOptions(soap, tag, NULL, "tt:ExposureOptions"); - case SOAP_TYPE_tt__FocusOptions: - return soap_in_tt__FocusOptions(soap, tag, NULL, "tt:FocusOptions"); - case SOAP_TYPE_tt__BacklightCompensationOptions: - return soap_in_tt__BacklightCompensationOptions(soap, tag, NULL, "tt:BacklightCompensationOptions"); - case SOAP_TYPE_tt__WideDynamicRangeOptions: - return soap_in_tt__WideDynamicRangeOptions(soap, tag, NULL, "tt:WideDynamicRangeOptions"); - case SOAP_TYPE_tt__ImagingOptions: - return soap_in_tt__ImagingOptions(soap, tag, NULL, "tt:ImagingOptions"); - case SOAP_TYPE_tt__BacklightCompensation: - return soap_in_tt__BacklightCompensation(soap, tag, NULL, "tt:BacklightCompensation"); - case SOAP_TYPE_tt__WideDynamicRange: - return soap_in_tt__WideDynamicRange(soap, tag, NULL, "tt:WideDynamicRange"); - case SOAP_TYPE_tt__Exposure: - return soap_in_tt__Exposure(soap, tag, NULL, "tt:Exposure"); - case SOAP_TYPE_tt__ImagingSettingsExtension: - return soap_in_tt__ImagingSettingsExtension(soap, tag, NULL, "tt:ImagingSettingsExtension"); - case SOAP_TYPE_tt__ImagingSettings: - return soap_in_tt__ImagingSettings(soap, tag, NULL, "tt:ImagingSettings"); - case SOAP_TYPE_tt__FocusConfiguration: - return soap_in_tt__FocusConfiguration(soap, tag, NULL, "tt:FocusConfiguration"); - case SOAP_TYPE_tt__FocusStatus: - return soap_in_tt__FocusStatus(soap, tag, NULL, "tt:FocusStatus"); - case SOAP_TYPE_tt__ImagingStatus: - return soap_in_tt__ImagingStatus(soap, tag, NULL, "tt:ImagingStatus"); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension: - return soap_in_tt__PTZPresetTourStartingConditionOptionsExtension(soap, tag, NULL, "tt:PTZPresetTourStartingConditionOptionsExtension"); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions: - return soap_in_tt__PTZPresetTourStartingConditionOptions(soap, tag, NULL, "tt:PTZPresetTourStartingConditionOptions"); - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension: - return soap_in_tt__PTZPresetTourPresetDetailOptionsExtension(soap, tag, NULL, "tt:PTZPresetTourPresetDetailOptionsExtension"); - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions: - return soap_in_tt__PTZPresetTourPresetDetailOptions(soap, tag, NULL, "tt:PTZPresetTourPresetDetailOptions"); - case SOAP_TYPE_tt__PTZPresetTourSpotOptions: - return soap_in_tt__PTZPresetTourSpotOptions(soap, tag, NULL, "tt:PTZPresetTourSpotOptions"); - case SOAP_TYPE_tt__PTZPresetTourOptions: - return soap_in_tt__PTZPresetTourOptions(soap, tag, NULL, "tt:PTZPresetTourOptions"); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension: - return soap_in_tt__PTZPresetTourStartingConditionExtension(soap, tag, NULL, "tt:PTZPresetTourStartingConditionExtension"); - case SOAP_TYPE_tt__PTZPresetTourStartingCondition: - return soap_in_tt__PTZPresetTourStartingCondition(soap, tag, NULL, "tt:PTZPresetTourStartingCondition"); - case SOAP_TYPE_tt__PTZPresetTourStatusExtension: - return soap_in_tt__PTZPresetTourStatusExtension(soap, tag, NULL, "tt:PTZPresetTourStatusExtension"); - case SOAP_TYPE_tt__PTZPresetTourStatus: - return soap_in_tt__PTZPresetTourStatus(soap, tag, NULL, "tt:PTZPresetTourStatus"); - case SOAP_TYPE_tt__PTZPresetTourTypeExtension: - return soap_in_tt__PTZPresetTourTypeExtension(soap, tag, NULL, "tt:PTZPresetTourTypeExtension"); - case SOAP_TYPE_tt__PTZPresetTourPresetDetail: - return soap_in_tt__PTZPresetTourPresetDetail(soap, tag, NULL, "tt:PTZPresetTourPresetDetail"); - case SOAP_TYPE_tt__PTZPresetTourSpotExtension: - return soap_in_tt__PTZPresetTourSpotExtension(soap, tag, NULL, "tt:PTZPresetTourSpotExtension"); - case SOAP_TYPE_tt__PTZPresetTourSpot: - return soap_in_tt__PTZPresetTourSpot(soap, tag, NULL, "tt:PTZPresetTourSpot"); - case SOAP_TYPE_tt__PTZPresetTourExtension: - return soap_in_tt__PTZPresetTourExtension(soap, tag, NULL, "tt:PTZPresetTourExtension"); - case SOAP_TYPE_tt__PresetTour: - return soap_in_tt__PresetTour(soap, tag, NULL, "tt:PresetTour"); - case SOAP_TYPE_tt__PTZPreset: - return soap_in_tt__PTZPreset(soap, tag, NULL, "tt:PTZPreset"); - case SOAP_TYPE_tt__PTZSpeed: - return soap_in_tt__PTZSpeed(soap, tag, NULL, "tt:PTZSpeed"); - case SOAP_TYPE_tt__Space1DDescription: - return soap_in_tt__Space1DDescription(soap, tag, NULL, "tt:Space1DDescription"); - case SOAP_TYPE_tt__Space2DDescription: - return soap_in_tt__Space2DDescription(soap, tag, NULL, "tt:Space2DDescription"); - case SOAP_TYPE_tt__PTZSpacesExtension: - return soap_in_tt__PTZSpacesExtension(soap, tag, NULL, "tt:PTZSpacesExtension"); - case SOAP_TYPE_tt__PTZSpaces: - return soap_in_tt__PTZSpaces(soap, tag, NULL, "tt:PTZSpaces"); - case SOAP_TYPE_tt__ZoomLimits: - return soap_in_tt__ZoomLimits(soap, tag, NULL, "tt:ZoomLimits"); - case SOAP_TYPE_tt__PanTiltLimits: - return soap_in_tt__PanTiltLimits(soap, tag, NULL, "tt:PanTiltLimits"); - case SOAP_TYPE_tt__ReverseOptionsExtension: - return soap_in_tt__ReverseOptionsExtension(soap, tag, NULL, "tt:ReverseOptionsExtension"); - case SOAP_TYPE_tt__ReverseOptions: - return soap_in_tt__ReverseOptions(soap, tag, NULL, "tt:ReverseOptions"); - case SOAP_TYPE_tt__EFlipOptionsExtension: - return soap_in_tt__EFlipOptionsExtension(soap, tag, NULL, "tt:EFlipOptionsExtension"); - case SOAP_TYPE_tt__EFlipOptions: - return soap_in_tt__EFlipOptions(soap, tag, NULL, "tt:EFlipOptions"); - case SOAP_TYPE_tt__PTControlDirectionOptionsExtension: - return soap_in_tt__PTControlDirectionOptionsExtension(soap, tag, NULL, "tt:PTControlDirectionOptionsExtension"); - case SOAP_TYPE_tt__PTControlDirectionOptions: - return soap_in_tt__PTControlDirectionOptions(soap, tag, NULL, "tt:PTControlDirectionOptions"); - case SOAP_TYPE_tt__PTZConfigurationOptions2: - return soap_in_tt__PTZConfigurationOptions2(soap, tag, NULL, "tt:PTZConfigurationOptions2"); - case SOAP_TYPE_tt__PTZConfigurationOptions: - return soap_in_tt__PTZConfigurationOptions(soap, tag, NULL, "tt:PTZConfigurationOptions"); - case SOAP_TYPE_tt__Reverse: - return soap_in_tt__Reverse(soap, tag, NULL, "tt:Reverse"); - case SOAP_TYPE_tt__EFlip: - return soap_in_tt__EFlip(soap, tag, NULL, "tt:EFlip"); - case SOAP_TYPE_tt__PTControlDirectionExtension: - return soap_in_tt__PTControlDirectionExtension(soap, tag, NULL, "tt:PTControlDirectionExtension"); - case SOAP_TYPE_tt__PTControlDirection: - return soap_in_tt__PTControlDirection(soap, tag, NULL, "tt:PTControlDirection"); - case SOAP_TYPE_tt__PTZConfigurationExtension2: - return soap_in_tt__PTZConfigurationExtension2(soap, tag, NULL, "tt:PTZConfigurationExtension2"); - case SOAP_TYPE_tt__PTZConfigurationExtension: - return soap_in_tt__PTZConfigurationExtension(soap, tag, NULL, "tt:PTZConfigurationExtension"); - case SOAP_TYPE_tt__PTZConfiguration: - return soap_in_tt__PTZConfiguration(soap, tag, NULL, "tt:PTZConfiguration"); - case SOAP_TYPE_tt__PTZPresetTourSupportedExtension: - return soap_in_tt__PTZPresetTourSupportedExtension(soap, tag, NULL, "tt:PTZPresetTourSupportedExtension"); - case SOAP_TYPE_tt__PTZPresetTourSupported: - return soap_in_tt__PTZPresetTourSupported(soap, tag, NULL, "tt:PTZPresetTourSupported"); - case SOAP_TYPE_tt__PTZNodeExtension2: - return soap_in_tt__PTZNodeExtension2(soap, tag, NULL, "tt:PTZNodeExtension2"); - case SOAP_TYPE_tt__PTZNodeExtension: - return soap_in_tt__PTZNodeExtension(soap, tag, NULL, "tt:PTZNodeExtension"); - case SOAP_TYPE_tt__PTZNode: - return soap_in_tt__PTZNode(soap, tag, NULL, "tt:PTZNode"); - case SOAP_TYPE_tt__DigitalInput: - return soap_in_tt__DigitalInput(soap, tag, NULL, "tt:DigitalInput"); - case SOAP_TYPE_tt__RelayOutput: - return soap_in_tt__RelayOutput(soap, tag, NULL, "tt:RelayOutput"); - case SOAP_TYPE_tt__RelayOutputSettings: - return soap_in_tt__RelayOutputSettings(soap, tag, NULL, "tt:RelayOutputSettings"); - case SOAP_TYPE_tt__GenericEapPwdConfigurationExtension: - return soap_in_tt__GenericEapPwdConfigurationExtension(soap, tag, NULL, "tt:GenericEapPwdConfigurationExtension"); - case SOAP_TYPE_tt__TLSConfiguration: - return soap_in_tt__TLSConfiguration(soap, tag, NULL, "tt:TLSConfiguration"); - case SOAP_TYPE_tt__EapMethodExtension: - return soap_in_tt__EapMethodExtension(soap, tag, NULL, "tt:EapMethodExtension"); - case SOAP_TYPE_tt__EAPMethodConfiguration: - return soap_in_tt__EAPMethodConfiguration(soap, tag, NULL, "tt:EAPMethodConfiguration"); - case SOAP_TYPE_tt__Dot1XConfigurationExtension: - return soap_in_tt__Dot1XConfigurationExtension(soap, tag, NULL, "tt:Dot1XConfigurationExtension"); - case SOAP_TYPE_tt__Dot1XConfiguration: - return soap_in_tt__Dot1XConfiguration(soap, tag, NULL, "tt:Dot1XConfiguration"); - case SOAP_TYPE_tt__CertificateInformationExtension: - return soap_in_tt__CertificateInformationExtension(soap, tag, NULL, "tt:CertificateInformationExtension"); - case SOAP_TYPE_tt__CertificateUsage: - return soap_in_tt__CertificateUsage(soap, tag, NULL, "tt:CertificateUsage"); - case SOAP_TYPE_tt__CertificateInformation: - return soap_in_tt__CertificateInformation(soap, tag, NULL, "tt:CertificateInformation"); - case SOAP_TYPE_tt__CertificateWithPrivateKey: - return soap_in_tt__CertificateWithPrivateKey(soap, tag, NULL, "tt:CertificateWithPrivateKey"); - case SOAP_TYPE_tt__CertificateStatus: - return soap_in_tt__CertificateStatus(soap, tag, NULL, "tt:CertificateStatus"); - case SOAP_TYPE_tt__Certificate: - return soap_in_tt__Certificate(soap, tag, NULL, "tt:Certificate"); - case SOAP_TYPE_tt__CertificateGenerationParametersExtension: - return soap_in_tt__CertificateGenerationParametersExtension(soap, tag, NULL, "tt:CertificateGenerationParametersExtension"); - case SOAP_TYPE_tt__CertificateGenerationParameters: - return soap_in_tt__CertificateGenerationParameters(soap, tag, NULL, "tt:CertificateGenerationParameters"); - case SOAP_TYPE_tt__UserExtension: - return soap_in_tt__UserExtension(soap, tag, NULL, "tt:UserExtension"); - case SOAP_TYPE_tt__User: - return soap_in_tt__User(soap, tag, NULL, "tt:User"); - case SOAP_TYPE_tt__RemoteUser: - return soap_in_tt__RemoteUser(soap, tag, NULL, "tt:RemoteUser"); - case SOAP_TYPE_tt__TimeZone: - return soap_in_tt__TimeZone(soap, tag, NULL, "tt:TimeZone"); - case SOAP_TYPE_tt__Time: - return soap_in_tt__Time(soap, tag, NULL, "tt:Time"); - case SOAP_TYPE_tt__Date: - return soap_in_tt__Date(soap, tag, NULL, "tt:Date"); - case SOAP_TYPE_tt__DateTime: - return soap_in_tt__DateTime(soap, tag, NULL, "tt:DateTime"); - case SOAP_TYPE_tt__SystemDateTimeExtension: - return soap_in_tt__SystemDateTimeExtension(soap, tag, NULL, "tt:SystemDateTimeExtension"); - case SOAP_TYPE_tt__SystemDateTime: - return soap_in_tt__SystemDateTime(soap, tag, NULL, "tt:SystemDateTime"); - case SOAP_TYPE_tt__SystemLogUri: - return soap_in_tt__SystemLogUri(soap, tag, NULL, "tt:SystemLogUri"); - case SOAP_TYPE_tt__SystemLogUriList: - return soap_in_tt__SystemLogUriList(soap, tag, NULL, "tt:SystemLogUriList"); - case SOAP_TYPE_tt__BackupFile: - return soap_in_tt__BackupFile(soap, tag, NULL, "tt:BackupFile"); - case SOAP_TYPE_tt__AttachmentData: - return soap_in_tt__AttachmentData(soap, tag, NULL, "tt:AttachmentData"); - case SOAP_TYPE_tt__BinaryData: - return soap_in_tt__BinaryData(soap, tag, NULL, "tt:BinaryData"); - case SOAP_TYPE_tt__SupportInformation: - return soap_in_tt__SupportInformation(soap, tag, NULL, "tt:SupportInformation"); - case SOAP_TYPE_tt__SystemLog: - return soap_in_tt__SystemLog(soap, tag, NULL, "tt:SystemLog"); - case SOAP_TYPE_tt__AnalyticsDeviceExtension: - return soap_in_tt__AnalyticsDeviceExtension(soap, tag, NULL, "tt:AnalyticsDeviceExtension"); - case SOAP_TYPE_tt__AnalyticsDeviceCapabilities: - return soap_in_tt__AnalyticsDeviceCapabilities(soap, tag, NULL, "tt:AnalyticsDeviceCapabilities"); - case SOAP_TYPE_tt__ReceiverCapabilities: - return soap_in_tt__ReceiverCapabilities(soap, tag, NULL, "tt:ReceiverCapabilities"); - case SOAP_TYPE_tt__ReplayCapabilities: - return soap_in_tt__ReplayCapabilities(soap, tag, NULL, "tt:ReplayCapabilities"); - case SOAP_TYPE_tt__SearchCapabilities: - return soap_in_tt__SearchCapabilities(soap, tag, NULL, "tt:SearchCapabilities"); - case SOAP_TYPE_tt__RecordingCapabilities: - return soap_in_tt__RecordingCapabilities(soap, tag, NULL, "tt:RecordingCapabilities"); - case SOAP_TYPE_tt__DisplayCapabilities: - return soap_in_tt__DisplayCapabilities(soap, tag, NULL, "tt:DisplayCapabilities"); - case SOAP_TYPE_tt__DeviceIOCapabilities: - return soap_in_tt__DeviceIOCapabilities(soap, tag, NULL, "tt:DeviceIOCapabilities"); - case SOAP_TYPE_tt__PTZCapabilities: - return soap_in_tt__PTZCapabilities(soap, tag, NULL, "tt:PTZCapabilities"); - case SOAP_TYPE_tt__ImagingCapabilities: - return soap_in_tt__ImagingCapabilities(soap, tag, NULL, "tt:ImagingCapabilities"); - case SOAP_TYPE_tt__OnvifVersion: - return soap_in_tt__OnvifVersion(soap, tag, NULL, "tt:OnvifVersion"); - case SOAP_TYPE_tt__SystemCapabilitiesExtension2: - return soap_in_tt__SystemCapabilitiesExtension2(soap, tag, NULL, "tt:SystemCapabilitiesExtension2"); - case SOAP_TYPE_tt__SystemCapabilitiesExtension: - return soap_in_tt__SystemCapabilitiesExtension(soap, tag, NULL, "tt:SystemCapabilitiesExtension"); - case SOAP_TYPE_tt__SystemCapabilities: - return soap_in_tt__SystemCapabilities(soap, tag, NULL, "tt:SystemCapabilities"); - case SOAP_TYPE_tt__SecurityCapabilitiesExtension2: - return soap_in_tt__SecurityCapabilitiesExtension2(soap, tag, NULL, "tt:SecurityCapabilitiesExtension2"); - case SOAP_TYPE_tt__SecurityCapabilitiesExtension: - return soap_in_tt__SecurityCapabilitiesExtension(soap, tag, NULL, "tt:SecurityCapabilitiesExtension"); - case SOAP_TYPE_tt__SecurityCapabilities: - return soap_in_tt__SecurityCapabilities(soap, tag, NULL, "tt:SecurityCapabilities"); - case SOAP_TYPE_tt__NetworkCapabilitiesExtension2: - return soap_in_tt__NetworkCapabilitiesExtension2(soap, tag, NULL, "tt:NetworkCapabilitiesExtension2"); - case SOAP_TYPE_tt__NetworkCapabilitiesExtension: - return soap_in_tt__NetworkCapabilitiesExtension(soap, tag, NULL, "tt:NetworkCapabilitiesExtension"); - case SOAP_TYPE_tt__NetworkCapabilities: - return soap_in_tt__NetworkCapabilities(soap, tag, NULL, "tt:NetworkCapabilities"); - case SOAP_TYPE_tt__ProfileCapabilities: - return soap_in_tt__ProfileCapabilities(soap, tag, NULL, "tt:ProfileCapabilities"); - case SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension: - return soap_in_tt__RealTimeStreamingCapabilitiesExtension(soap, tag, NULL, "tt:RealTimeStreamingCapabilitiesExtension"); - case SOAP_TYPE_tt__RealTimeStreamingCapabilities: - return soap_in_tt__RealTimeStreamingCapabilities(soap, tag, NULL, "tt:RealTimeStreamingCapabilities"); - case SOAP_TYPE_tt__MediaCapabilitiesExtension: - return soap_in_tt__MediaCapabilitiesExtension(soap, tag, NULL, "tt:MediaCapabilitiesExtension"); - case SOAP_TYPE_tt__MediaCapabilities: - return soap_in_tt__MediaCapabilities(soap, tag, NULL, "tt:MediaCapabilities"); - case SOAP_TYPE_tt__IOCapabilitiesExtension2: - return soap_in_tt__IOCapabilitiesExtension2(soap, tag, NULL, "tt:IOCapabilitiesExtension2"); - case SOAP_TYPE_tt__IOCapabilitiesExtension: - return soap_in_tt__IOCapabilitiesExtension(soap, tag, NULL, "tt:IOCapabilitiesExtension"); - case SOAP_TYPE_tt__IOCapabilities: - return soap_in_tt__IOCapabilities(soap, tag, NULL, "tt:IOCapabilities"); - case SOAP_TYPE_tt__EventCapabilities: - return soap_in_tt__EventCapabilities(soap, tag, NULL, "tt:EventCapabilities"); - case SOAP_TYPE_tt__DeviceCapabilitiesExtension: - return soap_in_tt__DeviceCapabilitiesExtension(soap, tag, NULL, "tt:DeviceCapabilitiesExtension"); - case SOAP_TYPE_tt__DeviceCapabilities: - return soap_in_tt__DeviceCapabilities(soap, tag, NULL, "tt:DeviceCapabilities"); - case SOAP_TYPE_tt__AnalyticsCapabilities: - return soap_in_tt__AnalyticsCapabilities(soap, tag, NULL, "tt:AnalyticsCapabilities"); - case SOAP_TYPE_tt__CapabilitiesExtension2: - return soap_in_tt__CapabilitiesExtension2(soap, tag, NULL, "tt:CapabilitiesExtension2"); - case SOAP_TYPE_tt__CapabilitiesExtension: - return soap_in_tt__CapabilitiesExtension(soap, tag, NULL, "tt:CapabilitiesExtension"); - case SOAP_TYPE_tt__Capabilities: - return soap_in_tt__Capabilities(soap, tag, NULL, "tt:Capabilities"); - case SOAP_TYPE_tt__Dot11AvailableNetworksExtension: - return soap_in_tt__Dot11AvailableNetworksExtension(soap, tag, NULL, "tt:Dot11AvailableNetworksExtension"); - case SOAP_TYPE_tt__Dot11AvailableNetworks: - return soap_in_tt__Dot11AvailableNetworks(soap, tag, NULL, "tt:Dot11AvailableNetworks"); - case SOAP_TYPE_tt__Dot11Status: - return soap_in_tt__Dot11Status(soap, tag, NULL, "tt:Dot11Status"); - case SOAP_TYPE_tt__Dot11Capabilities: - return soap_in_tt__Dot11Capabilities(soap, tag, NULL, "tt:Dot11Capabilities"); - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2: - return soap_in_tt__NetworkInterfaceSetConfigurationExtension2(soap, tag, NULL, "tt:NetworkInterfaceSetConfigurationExtension2"); - case SOAP_TYPE_tt__Dot11PSKSetExtension: - return soap_in_tt__Dot11PSKSetExtension(soap, tag, NULL, "tt:Dot11PSKSetExtension"); - case SOAP_TYPE_tt__Dot11PSKSet: - return soap_in_tt__Dot11PSKSet(soap, tag, NULL, "tt:Dot11PSKSet"); - case SOAP_TYPE_tt__Dot11SecurityConfigurationExtension: - return soap_in_tt__Dot11SecurityConfigurationExtension(soap, tag, NULL, "tt:Dot11SecurityConfigurationExtension"); - case SOAP_TYPE_tt__Dot11SecurityConfiguration: - return soap_in_tt__Dot11SecurityConfiguration(soap, tag, NULL, "tt:Dot11SecurityConfiguration"); - case SOAP_TYPE_tt__Dot11Configuration: - return soap_in_tt__Dot11Configuration(soap, tag, NULL, "tt:Dot11Configuration"); - case SOAP_TYPE_tt__IPAddressFilterExtension: - return soap_in_tt__IPAddressFilterExtension(soap, tag, NULL, "tt:IPAddressFilterExtension"); - case SOAP_TYPE_tt__IPAddressFilter: - return soap_in_tt__IPAddressFilter(soap, tag, NULL, "tt:IPAddressFilter"); - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension2: - return soap_in_tt__NetworkZeroConfigurationExtension2(soap, tag, NULL, "tt:NetworkZeroConfigurationExtension2"); - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension: - return soap_in_tt__NetworkZeroConfigurationExtension(soap, tag, NULL, "tt:NetworkZeroConfigurationExtension"); - case SOAP_TYPE_tt__NetworkZeroConfiguration: - return soap_in_tt__NetworkZeroConfiguration(soap, tag, NULL, "tt:NetworkZeroConfiguration"); - case SOAP_TYPE_tt__NetworkGateway: - return soap_in_tt__NetworkGateway(soap, tag, NULL, "tt:NetworkGateway"); - case SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration: - return soap_in_tt__IPv4NetworkInterfaceSetConfiguration(soap, tag, NULL, "tt:IPv4NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration: - return soap_in_tt__IPv6NetworkInterfaceSetConfiguration(soap, tag, NULL, "tt:IPv6NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension: - return soap_in_tt__NetworkInterfaceSetConfigurationExtension(soap, tag, NULL, "tt:NetworkInterfaceSetConfigurationExtension"); - case SOAP_TYPE_tt__NetworkInterfaceSetConfiguration: - return soap_in_tt__NetworkInterfaceSetConfiguration(soap, tag, NULL, "tt:NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_tt__DynamicDNSInformationExtension: - return soap_in_tt__DynamicDNSInformationExtension(soap, tag, NULL, "tt:DynamicDNSInformationExtension"); - case SOAP_TYPE_tt__DynamicDNSInformation: - return soap_in_tt__DynamicDNSInformation(soap, tag, NULL, "tt:DynamicDNSInformation"); - case SOAP_TYPE_tt__NTPInformationExtension: - return soap_in_tt__NTPInformationExtension(soap, tag, NULL, "tt:NTPInformationExtension"); - case SOAP_TYPE_tt__NTPInformation: - return soap_in_tt__NTPInformation(soap, tag, NULL, "tt:NTPInformation"); - case SOAP_TYPE_tt__DNSInformationExtension: - return soap_in_tt__DNSInformationExtension(soap, tag, NULL, "tt:DNSInformationExtension"); - case SOAP_TYPE_tt__DNSInformation: - return soap_in_tt__DNSInformation(soap, tag, NULL, "tt:DNSInformation"); - case SOAP_TYPE_tt__HostnameInformationExtension: - return soap_in_tt__HostnameInformationExtension(soap, tag, NULL, "tt:HostnameInformationExtension"); - case SOAP_TYPE_tt__HostnameInformation: - return soap_in_tt__HostnameInformation(soap, tag, NULL, "tt:HostnameInformation"); - case SOAP_TYPE_tt__PrefixedIPv6Address: - return soap_in_tt__PrefixedIPv6Address(soap, tag, NULL, "tt:PrefixedIPv6Address"); - case SOAP_TYPE_tt__PrefixedIPv4Address: - return soap_in_tt__PrefixedIPv4Address(soap, tag, NULL, "tt:PrefixedIPv4Address"); - case SOAP_TYPE_tt__IPAddress: - return soap_in_tt__IPAddress(soap, tag, NULL, "tt:IPAddress"); - case SOAP_TYPE_tt__NetworkHostExtension: - return soap_in_tt__NetworkHostExtension(soap, tag, NULL, "tt:NetworkHostExtension"); - case SOAP_TYPE_tt__NetworkHost: - return soap_in_tt__NetworkHost(soap, tag, NULL, "tt:NetworkHost"); - case SOAP_TYPE_tt__NetworkProtocolExtension: - return soap_in_tt__NetworkProtocolExtension(soap, tag, NULL, "tt:NetworkProtocolExtension"); - case SOAP_TYPE_tt__NetworkProtocol: - return soap_in_tt__NetworkProtocol(soap, tag, NULL, "tt:NetworkProtocol"); - case SOAP_TYPE_tt__IPv6ConfigurationExtension: - return soap_in_tt__IPv6ConfigurationExtension(soap, tag, NULL, "tt:IPv6ConfigurationExtension"); - case SOAP_TYPE_tt__IPv6Configuration: - return soap_in_tt__IPv6Configuration(soap, tag, NULL, "tt:IPv6Configuration"); - case SOAP_TYPE_tt__IPv4Configuration: - return soap_in_tt__IPv4Configuration(soap, tag, NULL, "tt:IPv4Configuration"); - case SOAP_TYPE_tt__IPv4NetworkInterface: - return soap_in_tt__IPv4NetworkInterface(soap, tag, NULL, "tt:IPv4NetworkInterface"); - case SOAP_TYPE_tt__IPv6NetworkInterface: - return soap_in_tt__IPv6NetworkInterface(soap, tag, NULL, "tt:IPv6NetworkInterface"); - case SOAP_TYPE_tt__NetworkInterfaceInfo: - return soap_in_tt__NetworkInterfaceInfo(soap, tag, NULL, "tt:NetworkInterfaceInfo"); - case SOAP_TYPE_tt__NetworkInterfaceConnectionSetting: - return soap_in_tt__NetworkInterfaceConnectionSetting(soap, tag, NULL, "tt:NetworkInterfaceConnectionSetting"); - case SOAP_TYPE_tt__NetworkInterfaceLink: - return soap_in_tt__NetworkInterfaceLink(soap, tag, NULL, "tt:NetworkInterfaceLink"); - case SOAP_TYPE_tt__NetworkInterfaceExtension2: - return soap_in_tt__NetworkInterfaceExtension2(soap, tag, NULL, "tt:NetworkInterfaceExtension2"); - case SOAP_TYPE_tt__Dot3Configuration: - return soap_in_tt__Dot3Configuration(soap, tag, NULL, "tt:Dot3Configuration"); - case SOAP_TYPE_tt__NetworkInterfaceExtension: - return soap_in_tt__NetworkInterfaceExtension(soap, tag, NULL, "tt:NetworkInterfaceExtension"); - case SOAP_TYPE_tt__NetworkInterface: - return soap_in_tt__NetworkInterface(soap, tag, NULL, "tt:NetworkInterface"); - case SOAP_TYPE_tt__Scope: - return soap_in_tt__Scope(soap, tag, NULL, "tt:Scope"); - case SOAP_TYPE_tt__MediaUri: - return soap_in_tt__MediaUri(soap, tag, NULL, "tt:MediaUri"); - case SOAP_TYPE_tt__Transport: - return soap_in_tt__Transport(soap, tag, NULL, "tt:Transport"); - case SOAP_TYPE_tt__StreamSetup: - return soap_in_tt__StreamSetup(soap, tag, NULL, "tt:StreamSetup"); - case SOAP_TYPE_tt__MulticastConfiguration: - return soap_in_tt__MulticastConfiguration(soap, tag, NULL, "tt:MulticastConfiguration"); - case SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension: - return soap_in_tt__AudioDecoderConfigurationOptionsExtension(soap, tag, NULL, "tt:AudioDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_tt__G726DecOptions: - return soap_in_tt__G726DecOptions(soap, tag, NULL, "tt:G726DecOptions"); - case SOAP_TYPE_tt__AACDecOptions: - return soap_in_tt__AACDecOptions(soap, tag, NULL, "tt:AACDecOptions"); - case SOAP_TYPE_tt__G711DecOptions: - return soap_in_tt__G711DecOptions(soap, tag, NULL, "tt:G711DecOptions"); - case SOAP_TYPE_tt__AudioDecoderConfigurationOptions: - return soap_in_tt__AudioDecoderConfigurationOptions(soap, tag, NULL, "tt:AudioDecoderConfigurationOptions"); - case SOAP_TYPE_tt__AudioDecoderConfiguration: - return soap_in_tt__AudioDecoderConfiguration(soap, tag, NULL, "tt:AudioDecoderConfiguration"); - case SOAP_TYPE_tt__AudioOutputConfigurationOptions: - return soap_in_tt__AudioOutputConfigurationOptions(soap, tag, NULL, "tt:AudioOutputConfigurationOptions"); - case SOAP_TYPE_tt__AudioOutputConfiguration: - return soap_in_tt__AudioOutputConfiguration(soap, tag, NULL, "tt:AudioOutputConfiguration"); - case SOAP_TYPE_tt__AudioOutput: - return soap_in_tt__AudioOutput(soap, tag, NULL, "tt:AudioOutput"); - case SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension: - return soap_in_tt__VideoDecoderConfigurationOptionsExtension(soap, tag, NULL, "tt:VideoDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_tt__Mpeg4DecOptions: - return soap_in_tt__Mpeg4DecOptions(soap, tag, NULL, "tt:Mpeg4DecOptions"); - case SOAP_TYPE_tt__JpegDecOptions: - return soap_in_tt__JpegDecOptions(soap, tag, NULL, "tt:JpegDecOptions"); - case SOAP_TYPE_tt__H264DecOptions: - return soap_in_tt__H264DecOptions(soap, tag, NULL, "tt:H264DecOptions"); - case SOAP_TYPE_tt__VideoDecoderConfigurationOptions: - return soap_in_tt__VideoDecoderConfigurationOptions(soap, tag, NULL, "tt:VideoDecoderConfigurationOptions"); - case SOAP_TYPE_tt__VideoOutputConfigurationOptions: - return soap_in_tt__VideoOutputConfigurationOptions(soap, tag, NULL, "tt:VideoOutputConfigurationOptions"); - case SOAP_TYPE_tt__VideoOutputConfiguration: - return soap_in_tt__VideoOutputConfiguration(soap, tag, NULL, "tt:VideoOutputConfiguration"); - case SOAP_TYPE_tt__VideoOutputExtension: - return soap_in_tt__VideoOutputExtension(soap, tag, NULL, "tt:VideoOutputExtension"); - case SOAP_TYPE_tt__VideoOutput: - return soap_in_tt__VideoOutput(soap, tag, NULL, "tt:VideoOutput"); - case SOAP_TYPE_tt__PTZStatusFilterOptionsExtension: - return soap_in_tt__PTZStatusFilterOptionsExtension(soap, tag, NULL, "tt:PTZStatusFilterOptionsExtension"); - case SOAP_TYPE_tt__PTZStatusFilterOptions: - return soap_in_tt__PTZStatusFilterOptions(soap, tag, NULL, "tt:PTZStatusFilterOptions"); - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2: - return soap_in_tt__MetadataConfigurationOptionsExtension2(soap, tag, NULL, "tt:MetadataConfigurationOptionsExtension2"); - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension: - return soap_in_tt__MetadataConfigurationOptionsExtension(soap, tag, NULL, "tt:MetadataConfigurationOptionsExtension"); - case SOAP_TYPE_tt__MetadataConfigurationOptions: - return soap_in_tt__MetadataConfigurationOptions(soap, tag, NULL, "tt:MetadataConfigurationOptions"); - case SOAP_TYPE_tt__EventSubscription: - return soap_in_tt__EventSubscription(soap, tag, NULL, "tt:EventSubscription"); - case SOAP_TYPE_tt__PTZFilter: - return soap_in_tt__PTZFilter(soap, tag, NULL, "tt:PTZFilter"); - case SOAP_TYPE_tt__MetadataConfigurationExtension: - return soap_in_tt__MetadataConfigurationExtension(soap, tag, NULL, "tt:MetadataConfigurationExtension"); - case SOAP_TYPE_tt__MetadataConfiguration: - return soap_in_tt__MetadataConfiguration(soap, tag, NULL, "tt:MetadataConfiguration"); - case SOAP_TYPE_tt__VideoAnalyticsConfiguration: - return soap_in_tt__VideoAnalyticsConfiguration(soap, tag, NULL, "tt:VideoAnalyticsConfiguration"); - case SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions: - return soap_in_tt__AudioEncoder2ConfigurationOptions(soap, tag, NULL, "tt:AudioEncoder2ConfigurationOptions"); - case SOAP_TYPE_tt__AudioEncoder2Configuration: - return soap_in_tt__AudioEncoder2Configuration(soap, tag, NULL, "tt:AudioEncoder2Configuration"); - case SOAP_TYPE_tt__AudioEncoderConfigurationOption: - return soap_in_tt__AudioEncoderConfigurationOption(soap, tag, NULL, "tt:AudioEncoderConfigurationOption"); - case SOAP_TYPE_tt__AudioEncoderConfigurationOptions: - return soap_in_tt__AudioEncoderConfigurationOptions(soap, tag, NULL, "tt:AudioEncoderConfigurationOptions"); - case SOAP_TYPE_tt__AudioEncoderConfiguration: - return soap_in_tt__AudioEncoderConfiguration(soap, tag, NULL, "tt:AudioEncoderConfiguration"); - case SOAP_TYPE_tt__AudioSourceOptionsExtension: - return soap_in_tt__AudioSourceOptionsExtension(soap, tag, NULL, "tt:AudioSourceOptionsExtension"); - case SOAP_TYPE_tt__AudioSourceConfigurationOptions: - return soap_in_tt__AudioSourceConfigurationOptions(soap, tag, NULL, "tt:AudioSourceConfigurationOptions"); - case SOAP_TYPE_tt__AudioSourceConfiguration: - return soap_in_tt__AudioSourceConfiguration(soap, tag, NULL, "tt:AudioSourceConfiguration"); - case SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions: - return soap_in_tt__VideoEncoder2ConfigurationOptions(soap, tag, NULL, "tt:VideoEncoder2ConfigurationOptions"); - case SOAP_TYPE_tt__VideoRateControl2: - return soap_in_tt__VideoRateControl2(soap, tag, NULL, "tt:VideoRateControl2"); - case SOAP_TYPE_tt__VideoResolution2: - return soap_in_tt__VideoResolution2(soap, tag, NULL, "tt:VideoResolution2"); - case SOAP_TYPE_tt__VideoEncoder2Configuration: - return soap_in_tt__VideoEncoder2Configuration(soap, tag, NULL, "tt:VideoEncoder2Configuration"); - case SOAP_TYPE_tt__H264Options2: - return soap_in_tt__H264Options2(soap, tag, NULL, "tt:H264Options2"); - case SOAP_TYPE_tt__H264Options: - return soap_in_tt__H264Options(soap, tag, NULL, "tt:H264Options"); - case SOAP_TYPE_tt__Mpeg4Options2: - return soap_in_tt__Mpeg4Options2(soap, tag, NULL, "tt:Mpeg4Options2"); - case SOAP_TYPE_tt__Mpeg4Options: - return soap_in_tt__Mpeg4Options(soap, tag, NULL, "tt:Mpeg4Options"); - case SOAP_TYPE_tt__JpegOptions2: - return soap_in_tt__JpegOptions2(soap, tag, NULL, "tt:JpegOptions2"); - case SOAP_TYPE_tt__JpegOptions: - return soap_in_tt__JpegOptions(soap, tag, NULL, "tt:JpegOptions"); - case SOAP_TYPE_tt__VideoEncoderOptionsExtension2: - return soap_in_tt__VideoEncoderOptionsExtension2(soap, tag, NULL, "tt:VideoEncoderOptionsExtension2"); - case SOAP_TYPE_tt__VideoEncoderOptionsExtension: - return soap_in_tt__VideoEncoderOptionsExtension(soap, tag, NULL, "tt:VideoEncoderOptionsExtension"); - case SOAP_TYPE_tt__VideoEncoderConfigurationOptions: - return soap_in_tt__VideoEncoderConfigurationOptions(soap, tag, NULL, "tt:VideoEncoderConfigurationOptions"); - case SOAP_TYPE_tt__H264Configuration: - return soap_in_tt__H264Configuration(soap, tag, NULL, "tt:H264Configuration"); - case SOAP_TYPE_tt__Mpeg4Configuration: - return soap_in_tt__Mpeg4Configuration(soap, tag, NULL, "tt:Mpeg4Configuration"); - case SOAP_TYPE_tt__VideoRateControl: - return soap_in_tt__VideoRateControl(soap, tag, NULL, "tt:VideoRateControl"); - case SOAP_TYPE_tt__VideoResolution: - return soap_in_tt__VideoResolution(soap, tag, NULL, "tt:VideoResolution"); - case SOAP_TYPE_tt__VideoEncoderConfiguration: - return soap_in_tt__VideoEncoderConfiguration(soap, tag, NULL, "tt:VideoEncoderConfiguration"); - case SOAP_TYPE_tt__SceneOrientation: - return soap_in_tt__SceneOrientation(soap, tag, NULL, "tt:SceneOrientation"); - case SOAP_TYPE_tt__RotateOptionsExtension: - return soap_in_tt__RotateOptionsExtension(soap, tag, NULL, "tt:RotateOptionsExtension"); - case SOAP_TYPE_tt__RotateOptions: - return soap_in_tt__RotateOptions(soap, tag, NULL, "tt:RotateOptions"); - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2: - return soap_in_tt__VideoSourceConfigurationOptionsExtension2(soap, tag, NULL, "tt:VideoSourceConfigurationOptionsExtension2"); - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension: - return soap_in_tt__VideoSourceConfigurationOptionsExtension(soap, tag, NULL, "tt:VideoSourceConfigurationOptionsExtension"); - case SOAP_TYPE_tt__VideoSourceConfigurationOptions: - return soap_in_tt__VideoSourceConfigurationOptions(soap, tag, NULL, "tt:VideoSourceConfigurationOptions"); - case SOAP_TYPE_tt__LensDescription: - return soap_in_tt__LensDescription(soap, tag, NULL, "tt:LensDescription"); - case SOAP_TYPE_tt__LensOffset: - return soap_in_tt__LensOffset(soap, tag, NULL, "tt:LensOffset"); - case SOAP_TYPE_tt__LensProjection: - return soap_in_tt__LensProjection(soap, tag, NULL, "tt:LensProjection"); - case SOAP_TYPE_tt__RotateExtension: - return soap_in_tt__RotateExtension(soap, tag, NULL, "tt:RotateExtension"); - case SOAP_TYPE_tt__Rotate: - return soap_in_tt__Rotate(soap, tag, NULL, "tt:Rotate"); - case SOAP_TYPE_tt__VideoSourceConfigurationExtension2: - return soap_in_tt__VideoSourceConfigurationExtension2(soap, tag, NULL, "tt:VideoSourceConfigurationExtension2"); - case SOAP_TYPE_tt__VideoSourceConfigurationExtension: - return soap_in_tt__VideoSourceConfigurationExtension(soap, tag, NULL, "tt:VideoSourceConfigurationExtension"); - case SOAP_TYPE_tt__VideoSourceConfiguration: - return soap_in_tt__VideoSourceConfiguration(soap, tag, NULL, "tt:VideoSourceConfiguration"); - case SOAP_TYPE_tt__ConfigurationEntity: - return soap_in_tt__ConfigurationEntity(soap, tag, NULL, "tt:ConfigurationEntity"); - case SOAP_TYPE_tt__ProfileExtension2: - return soap_in_tt__ProfileExtension2(soap, tag, NULL, "tt:ProfileExtension2"); - case SOAP_TYPE_tt__ProfileExtension: - return soap_in_tt__ProfileExtension(soap, tag, NULL, "tt:ProfileExtension"); - case SOAP_TYPE_tt__Profile: - return soap_in_tt__Profile(soap, tag, NULL, "tt:Profile"); - case SOAP_TYPE_tt__AudioSource: - return soap_in_tt__AudioSource(soap, tag, NULL, "tt:AudioSource"); - case SOAP_TYPE_tt__VideoSourceExtension2: - return soap_in_tt__VideoSourceExtension2(soap, tag, NULL, "tt:VideoSourceExtension2"); - case SOAP_TYPE_tt__VideoSourceExtension: - return soap_in_tt__VideoSourceExtension(soap, tag, NULL, "tt:VideoSourceExtension"); - case SOAP_TYPE_tt__VideoSource: - return soap_in_tt__VideoSource(soap, tag, NULL, "tt:VideoSource"); - case SOAP_TYPE_tt__AnyHolder: - return soap_in_tt__AnyHolder(soap, tag, NULL, "tt:AnyHolder"); - case SOAP_TYPE_tt__FloatItems: - return soap_in_tt__FloatItems(soap, tag, NULL, "tt:FloatItems"); - case SOAP_TYPE_tt__IntItems: - return soap_in_tt__IntItems(soap, tag, NULL, "tt:IntItems"); - case SOAP_TYPE_tt__DurationRange: - return soap_in_tt__DurationRange(soap, tag, NULL, "tt:DurationRange"); - case SOAP_TYPE_tt__FloatRange: - return soap_in_tt__FloatRange(soap, tag, NULL, "tt:FloatRange"); - case SOAP_TYPE_tt__IntRectangleRange: - return soap_in_tt__IntRectangleRange(soap, tag, NULL, "tt:IntRectangleRange"); - case SOAP_TYPE_tt__IntRectangle: - return soap_in_tt__IntRectangle(soap, tag, NULL, "tt:IntRectangle"); - case SOAP_TYPE_tt__DeviceEntity: - return soap_in_tt__DeviceEntity(soap, tag, NULL, "tt:DeviceEntity"); - case SOAP_TYPE_tt__LocationEntity: - return soap_in_tt__LocationEntity(soap, tag, NULL, "tt:LocationEntity"); - case SOAP_TYPE_tt__LocalOrientation: - return soap_in_tt__LocalOrientation(soap, tag, NULL, "tt:LocalOrientation"); - case SOAP_TYPE_tt__LocalLocation: - return soap_in_tt__LocalLocation(soap, tag, NULL, "tt:LocalLocation"); - case SOAP_TYPE_tt__GeoOrientation: - return soap_in_tt__GeoOrientation(soap, tag, NULL, "tt:GeoOrientation"); - case SOAP_TYPE_tt__GeoLocation: - return soap_in_tt__GeoLocation(soap, tag, NULL, "tt:GeoLocation"); - case SOAP_TYPE_tt__TransformationExtension: - return soap_in_tt__TransformationExtension(soap, tag, NULL, "tt:TransformationExtension"); - case SOAP_TYPE_tt__Transformation: - return soap_in_tt__Transformation(soap, tag, NULL, "tt:Transformation"); - case SOAP_TYPE_tt__ColorDescriptor: - return soap_in_tt__ColorDescriptor(soap, tag, NULL, "tt:ColorDescriptor"); - case SOAP_TYPE_tt__ColorCovariance: - return soap_in_tt__ColorCovariance(soap, tag, NULL, "tt:ColorCovariance"); - case SOAP_TYPE_tt__Color: - return soap_in_tt__Color(soap, tag, NULL, "tt:Color"); - case SOAP_TYPE_tt__Polygon: - return soap_in_tt__Polygon(soap, tag, NULL, "tt:Polygon"); - case SOAP_TYPE_tt__Rectangle: - return soap_in_tt__Rectangle(soap, tag, NULL, "tt:Rectangle"); - case SOAP_TYPE_tt__Vector: - return soap_in_tt__Vector(soap, tag, NULL, "tt:Vector"); - case SOAP_TYPE_tt__PTZMoveStatus: - return soap_in_tt__PTZMoveStatus(soap, tag, NULL, "tt:PTZMoveStatus"); - case SOAP_TYPE_tt__PTZStatus: - return soap_in_tt__PTZStatus(soap, tag, NULL, "tt:PTZStatus"); - case SOAP_TYPE_tt__PTZVector: - return soap_in_tt__PTZVector(soap, tag, NULL, "tt:PTZVector"); - case SOAP_TYPE_tt__Vector1D: - return soap_in_tt__Vector1D(soap, tag, NULL, "tt:Vector1D"); - case SOAP_TYPE_tt__Vector2D: - return soap_in_tt__Vector2D(soap, tag, NULL, "tt:Vector2D"); - case SOAP_TYPE_tt__IntRange: - return soap_in_tt__IntRange(soap, tag, NULL, "tt:IntRange"); - case SOAP_TYPE_tev__SubscriptionPolicy: - return soap_in_tev__SubscriptionPolicy(soap, tag, NULL, "tev:SubscriptionPolicy"); - case SOAP_TYPE_tev__Capabilities: - return soap_in_tev__Capabilities(soap, tag, NULL, "tev:Capabilities"); - case SOAP_TYPE_wsrfbf__BaseFaultType: - return soap_in_wsrfbf__BaseFaultType(soap, tag, NULL, "wsrfbf:BaseFaultType"); - case SOAP_TYPE_wsnt__ResumeFailedFaultType: - return soap_in_wsnt__ResumeFailedFaultType(soap, tag, NULL, "wsnt:ResumeFailedFaultType"); - case SOAP_TYPE_wsnt__PauseFailedFaultType: - return soap_in_wsnt__PauseFailedFaultType(soap, tag, NULL, "wsnt:PauseFailedFaultType"); - case SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType: - return soap_in_wsnt__UnableToDestroySubscriptionFaultType(soap, tag, NULL, "wsnt:UnableToDestroySubscriptionFaultType"); - case SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType: - return soap_in_wsnt__UnacceptableTerminationTimeFaultType(soap, tag, NULL, "wsnt:UnacceptableTerminationTimeFaultType"); - case SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType: - return soap_in_wsnt__UnableToCreatePullPointFaultType(soap, tag, NULL, "wsnt:UnableToCreatePullPointFaultType"); - case SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType: - return soap_in_wsnt__UnableToDestroyPullPointFaultType(soap, tag, NULL, "wsnt:UnableToDestroyPullPointFaultType"); - case SOAP_TYPE_wsnt__UnableToGetMessagesFaultType: - return soap_in_wsnt__UnableToGetMessagesFaultType(soap, tag, NULL, "wsnt:UnableToGetMessagesFaultType"); - case SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType: - return soap_in_wsnt__NoCurrentMessageOnTopicFaultType(soap, tag, NULL, "wsnt:NoCurrentMessageOnTopicFaultType"); - case SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType: - return soap_in_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag, NULL, "wsnt:UnacceptableInitialTerminationTimeFaultType"); - case SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType: - return soap_in_wsnt__NotifyMessageNotSupportedFaultType(soap, tag, NULL, "wsnt:NotifyMessageNotSupportedFaultType"); - case SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType: - return soap_in_wsnt__UnsupportedPolicyRequestFaultType(soap, tag, NULL, "wsnt:UnsupportedPolicyRequestFaultType"); - case SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType: - return soap_in_wsnt__UnrecognizedPolicyRequestFaultType(soap, tag, NULL, "wsnt:UnrecognizedPolicyRequestFaultType"); - case SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType: - return soap_in_wsnt__InvalidMessageContentExpressionFaultType(soap, tag, NULL, "wsnt:InvalidMessageContentExpressionFaultType"); - case SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType: - return soap_in_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag, NULL, "wsnt:InvalidProducerPropertiesExpressionFaultType"); - case SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType: - return soap_in_wsnt__MultipleTopicsSpecifiedFaultType(soap, tag, NULL, "wsnt:MultipleTopicsSpecifiedFaultType"); - case SOAP_TYPE_wsnt__TopicNotSupportedFaultType: - return soap_in_wsnt__TopicNotSupportedFaultType(soap, tag, NULL, "wsnt:TopicNotSupportedFaultType"); - case SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType: - return soap_in_wsnt__InvalidTopicExpressionFaultType(soap, tag, NULL, "wsnt:InvalidTopicExpressionFaultType"); - case SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType: - return soap_in_wsnt__TopicExpressionDialectUnknownFaultType(soap, tag, NULL, "wsnt:TopicExpressionDialectUnknownFaultType"); - case SOAP_TYPE_wsnt__InvalidFilterFaultType: - return soap_in_wsnt__InvalidFilterFaultType(soap, tag, NULL, "wsnt:InvalidFilterFaultType"); - case SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType: - return soap_in_wsnt__SubscribeCreationFailedFaultType(soap, tag, NULL, "wsnt:SubscribeCreationFailedFaultType"); - case SOAP_TYPE_wsnt__NotificationMessageHolderType: - return soap_in_wsnt__NotificationMessageHolderType(soap, tag, NULL, "wsnt:NotificationMessageHolderType"); - case SOAP_TYPE_wsnt__SubscriptionPolicyType: - return soap_in_wsnt__SubscriptionPolicyType(soap, tag, NULL, "wsnt:SubscriptionPolicyType"); - case SOAP_TYPE_wsnt__FilterType: - return soap_in_wsnt__FilterType(soap, tag, NULL, "wsnt:FilterType"); - case SOAP_TYPE_wsnt__TopicExpressionType: - return soap_in_wsnt__TopicExpressionType(soap, tag, NULL, "wsnt:TopicExpressionType"); - case SOAP_TYPE_wsnt__QueryExpressionType: - return soap_in_wsnt__QueryExpressionType(soap, tag, NULL, "wsnt:QueryExpressionType"); - case SOAP_TYPE_xsd__token__: - return soap_in_xsd__token__(soap, tag, NULL, "xsd:token"); - case SOAP_TYPE_xsd__token: - return soap_in_xsd__token(soap, tag, NULL, "xsd:token"); - case SOAP_TYPE_xsd__string_: - return soap_in_xsd__string_(soap, tag, NULL, "xsd:string"); - case SOAP_TYPE_xsd__nonNegativeInteger__: - return soap_in_xsd__nonNegativeInteger__(soap, tag, NULL, "xsd:nonNegativeInteger"); - case SOAP_TYPE_xsd__nonNegativeInteger: - return soap_in_xsd__nonNegativeInteger(soap, tag, NULL, "xsd:nonNegativeInteger"); - case SOAP_TYPE_xsd__integer__: - return soap_in_xsd__integer__(soap, tag, NULL, "xsd:integer"); - case SOAP_TYPE_xsd__integer: - return soap_in_xsd__integer(soap, tag, NULL, "xsd:integer"); - case SOAP_TYPE_xsd__int_: - return soap_in_xsd__int_(soap, tag, NULL, "xsd:int"); - case SOAP_TYPE_xsd__hexBinary__: - return soap_in_xsd__hexBinary__(soap, tag, NULL, "xsd:hexBinary"); - case SOAP_TYPE_xsd__float_: - return soap_in_xsd__float_(soap, tag, NULL, "xsd:float"); - case SOAP_TYPE_xsd__duration__: - return soap_in_xsd__duration__(soap, tag, NULL, "xsd:duration"); - case SOAP_TYPE_xsd__duration: - return soap_in_xsd__duration(soap, tag, NULL, "xsd:duration"); - case SOAP_TYPE_xsd__double_: - return soap_in_xsd__double_(soap, tag, NULL, "xsd:double"); - case SOAP_TYPE_xsd__dateTime__: - return soap_in_xsd__dateTime__(soap, tag, NULL, "xsd:dateTime"); - case SOAP_TYPE_xsd__boolean_: - return soap_in_xsd__boolean_(soap, tag, NULL, "xsd:boolean"); - case SOAP_TYPE_xsd__base64Binary__: - return soap_in_xsd__base64Binary__(soap, tag, NULL, "xsd:base64Binary"); - case SOAP_TYPE_xsd__anyURI__: - return soap_in_xsd__anyURI__(soap, tag, NULL, "xsd:anyURI"); - case SOAP_TYPE_xsd__anyURI: - return soap_in_xsd__anyURI(soap, tag, NULL, "xsd:anyURI"); - case SOAP_TYPE_xsd__anySimpleType__: - return soap_in_xsd__anySimpleType__(soap, tag, NULL, "xsd:anySimpleType"); - case SOAP_TYPE_xsd__anySimpleType: - return soap_in_xsd__anySimpleType(soap, tag, NULL, "xsd:anySimpleType"); - case SOAP_TYPE_xsd__QName__: - return soap_in_xsd__QName__(soap, tag, NULL, "xsd:QName"); - case SOAP_TYPE_xsd__NCName__: - return soap_in_xsd__NCName__(soap, tag, NULL, "xsd:NCName"); - case SOAP_TYPE_xsd__NCName: - return soap_in_xsd__NCName(soap, tag, NULL, "xsd:NCName"); - case SOAP_TYPE_SOAP_ENV__Fault_: - return soap_in_SOAP_ENV__Fault_(soap, tag, NULL, "SOAP-ENV:Fault"); - case SOAP_TYPE_SOAP_ENV__Envelope__: - return soap_in_SOAP_ENV__Envelope__(soap, tag, NULL, "SOAP-ENV:Envelope"); - case SOAP_TYPE_SOAP_ENV__Envelope: - return soap_in_SOAP_ENV__Envelope(soap, tag, NULL, "SOAP-ENV:Envelope"); - case SOAP_TYPE_wsa5__EndpointReferenceType__: - return soap_in_wsa5__EndpointReferenceType__(soap, tag, NULL, "wsa5:EndpointReferenceType"); - case SOAP_TYPE_tt__IntList__: - return soap_in_tt__IntList__(soap, tag, NULL, "tt:IntList"); - case SOAP_TYPE_tt__FloatList__: - return soap_in_tt__FloatList__(soap, tag, NULL, "tt:FloatList"); - case SOAP_TYPE_xsd__hexBinary: - return soap_in_xsd__hexBinary(soap, tag, NULL, "xsd:hexBinary"); - case SOAP_TYPE_xsd__base64Binary: - return soap_in_xsd__base64Binary(soap, tag, NULL, "xsd:base64Binary"); - case SOAP_TYPE_xsd__QName: - return soap_in_xsd__QName(soap, tag, NULL, "xsd:QName"); - case SOAP_TYPE_std__string: - return soap_in_std__string(soap, tag, NULL, "xsd:string"); - case SOAP_TYPE_chan__ChannelInstanceType: - return soap_in_chan__ChannelInstanceType(soap, tag, NULL, "chan:ChannelInstanceType"); - case SOAP_TYPE_wsa5__ProblemActionType: - return soap_in_wsa5__ProblemActionType(soap, tag, NULL, "wsa5:ProblemActionType"); - case SOAP_TYPE_wsa5__RelatesToType: - return soap_in_wsa5__RelatesToType(soap, tag, NULL, "wsa5:RelatesToType"); - case SOAP_TYPE_wsa5__MetadataType: - return soap_in_wsa5__MetadataType(soap, tag, NULL, "wsa5:MetadataType"); - case SOAP_TYPE_wsa5__ReferenceParametersType: - return soap_in_wsa5__ReferenceParametersType(soap, tag, NULL, "wsa5:ReferenceParametersType"); - case SOAP_TYPE_wsa5__EndpointReferenceType: - return soap_in_wsa5__EndpointReferenceType(soap, tag, NULL, "wsa5:EndpointReferenceType"); - case SOAP_TYPE_xsd__anyAttribute: - return soap_in_xsd__anyAttribute(soap, tag, NULL, "xsd:anyAttribute"); - case SOAP_TYPE_xsd__anyType: - return soap_in_xsd__anyType(soap, tag, NULL, "xsd:anyType"); - case SOAP_TYPE_saml2__AttributeType: - return soap_in_saml2__AttributeType(soap, tag, NULL, "saml2:AttributeType"); - case SOAP_TYPE_saml2__AttributeStatementType: - return soap_in_saml2__AttributeStatementType(soap, tag, NULL, "saml2:AttributeStatementType"); - case SOAP_TYPE_saml2__EvidenceType: - return soap_in_saml2__EvidenceType(soap, tag, NULL, "saml2:EvidenceType"); - case SOAP_TYPE_saml2__ActionType: - return soap_in_saml2__ActionType(soap, tag, NULL, "saml2:ActionType"); - case SOAP_TYPE_saml2__AuthzDecisionStatementType: - return soap_in_saml2__AuthzDecisionStatementType(soap, tag, NULL, "saml2:AuthzDecisionStatementType"); - case SOAP_TYPE_saml2__AuthnContextType: - return soap_in_saml2__AuthnContextType(soap, tag, NULL, "saml2:AuthnContextType"); - case SOAP_TYPE_saml2__SubjectLocalityType: - return soap_in_saml2__SubjectLocalityType(soap, tag, NULL, "saml2:SubjectLocalityType"); - case SOAP_TYPE_saml2__AuthnStatementType: - return soap_in_saml2__AuthnStatementType(soap, tag, NULL, "saml2:AuthnStatementType"); - case SOAP_TYPE_saml2__StatementAbstractType: - return soap_in_saml2__StatementAbstractType(soap, tag, NULL, "saml2:StatementAbstractType"); - case SOAP_TYPE_saml2__AdviceType: - return soap_in_saml2__AdviceType(soap, tag, NULL, "saml2:AdviceType"); - case SOAP_TYPE_saml2__ProxyRestrictionType: - return soap_in_saml2__ProxyRestrictionType(soap, tag, NULL, "saml2:ProxyRestrictionType"); - case SOAP_TYPE_saml2__OneTimeUseType: - return soap_in_saml2__OneTimeUseType(soap, tag, NULL, "saml2:OneTimeUseType"); - case SOAP_TYPE_saml2__AudienceRestrictionType: - return soap_in_saml2__AudienceRestrictionType(soap, tag, NULL, "saml2:AudienceRestrictionType"); - case SOAP_TYPE_saml2__ConditionAbstractType: - return soap_in_saml2__ConditionAbstractType(soap, tag, NULL, "saml2:ConditionAbstractType"); - case SOAP_TYPE_saml2__ConditionsType: - return soap_in_saml2__ConditionsType(soap, tag, NULL, "saml2:ConditionsType"); - case SOAP_TYPE_saml2__KeyInfoConfirmationDataType: - return soap_in_saml2__KeyInfoConfirmationDataType(soap, tag, NULL, "saml2:KeyInfoConfirmationDataType"); - case SOAP_TYPE_saml2__SubjectConfirmationDataType: - return soap_in_saml2__SubjectConfirmationDataType(soap, tag, NULL, "saml2:SubjectConfirmationDataType"); - case SOAP_TYPE_saml2__SubjectConfirmationType: - return soap_in_saml2__SubjectConfirmationType(soap, tag, NULL, "saml2:SubjectConfirmationType"); - case SOAP_TYPE_saml2__SubjectType: - return soap_in_saml2__SubjectType(soap, tag, NULL, "saml2:SubjectType"); - case SOAP_TYPE_saml2__AssertionType: - return soap_in_saml2__AssertionType(soap, tag, NULL, "saml2:AssertionType"); - case SOAP_TYPE_saml2__EncryptedElementType: - return soap_in_saml2__EncryptedElementType(soap, tag, NULL, "saml2:EncryptedElementType"); - case SOAP_TYPE_saml2__NameIDType: - return soap_in_saml2__NameIDType(soap, tag, NULL, "saml2:NameIDType"); - case SOAP_TYPE_saml2__BaseIDAbstractType: - return soap_in_saml2__BaseIDAbstractType(soap, tag, NULL, "saml2:BaseIDAbstractType"); - case SOAP_TYPE_saml1__AttributeType: - return soap_in_saml1__AttributeType(soap, tag, NULL, "saml1:AttributeType"); - case SOAP_TYPE_saml1__AttributeDesignatorType: - return soap_in_saml1__AttributeDesignatorType(soap, tag, NULL, "saml1:AttributeDesignatorType"); - case SOAP_TYPE_saml1__AttributeStatementType: - return soap_in_saml1__AttributeStatementType(soap, tag, NULL, "saml1:AttributeStatementType"); - case SOAP_TYPE_saml1__EvidenceType: - return soap_in_saml1__EvidenceType(soap, tag, NULL, "saml1:EvidenceType"); - case SOAP_TYPE_saml1__ActionType: - return soap_in_saml1__ActionType(soap, tag, NULL, "saml1:ActionType"); - case SOAP_TYPE_saml1__AuthorizationDecisionStatementType: - return soap_in_saml1__AuthorizationDecisionStatementType(soap, tag, NULL, "saml1:AuthorizationDecisionStatementType"); - case SOAP_TYPE_saml1__AuthorityBindingType: - return soap_in_saml1__AuthorityBindingType(soap, tag, NULL, "saml1:AuthorityBindingType"); - case SOAP_TYPE_saml1__SubjectLocalityType: - return soap_in_saml1__SubjectLocalityType(soap, tag, NULL, "saml1:SubjectLocalityType"); - case SOAP_TYPE_saml1__AuthenticationStatementType: - return soap_in_saml1__AuthenticationStatementType(soap, tag, NULL, "saml1:AuthenticationStatementType"); - case SOAP_TYPE_saml1__SubjectConfirmationType: - return soap_in_saml1__SubjectConfirmationType(soap, tag, NULL, "saml1:SubjectConfirmationType"); - case SOAP_TYPE_saml1__NameIdentifierType: - return soap_in_saml1__NameIdentifierType(soap, tag, NULL, "saml1:NameIdentifierType"); - case SOAP_TYPE_saml1__SubjectType: - return soap_in_saml1__SubjectType(soap, tag, NULL, "saml1:SubjectType"); - case SOAP_TYPE_saml1__SubjectStatementAbstractType: - return soap_in_saml1__SubjectStatementAbstractType(soap, tag, NULL, "saml1:SubjectStatementAbstractType"); - case SOAP_TYPE_saml1__StatementAbstractType: - return soap_in_saml1__StatementAbstractType(soap, tag, NULL, "saml1:StatementAbstractType"); - case SOAP_TYPE_saml1__AdviceType: - return soap_in_saml1__AdviceType(soap, tag, NULL, "saml1:AdviceType"); - case SOAP_TYPE_saml1__DoNotCacheConditionType: - return soap_in_saml1__DoNotCacheConditionType(soap, tag, NULL, "saml1:DoNotCacheConditionType"); - case SOAP_TYPE_saml1__AudienceRestrictionConditionType: - return soap_in_saml1__AudienceRestrictionConditionType(soap, tag, NULL, "saml1:AudienceRestrictionConditionType"); - case SOAP_TYPE_saml1__ConditionAbstractType: - return soap_in_saml1__ConditionAbstractType(soap, tag, NULL, "saml1:ConditionAbstractType"); - case SOAP_TYPE_saml1__ConditionsType: - return soap_in_saml1__ConditionsType(soap, tag, NULL, "saml1:ConditionsType"); - case SOAP_TYPE_saml1__AssertionType: - return soap_in_saml1__AssertionType(soap, tag, NULL, "saml1:AssertionType"); - case SOAP_TYPE_xsd__dateTime: - return soap_in_xsd__dateTime(soap, tag, NULL, "xsd:dateTime"); - case SOAP_TYPE_wsc__PropertiesType: - return soap_in_wsc__PropertiesType(soap, tag, NULL, "wsc:PropertiesType"); - case SOAP_TYPE_wsc__DerivedKeyTokenType: - return soap_in_wsc__DerivedKeyTokenType(soap, tag, NULL, "wsc:DerivedKeyTokenType"); - case SOAP_TYPE_wsc__SecurityContextTokenType: - return soap_in_wsc__SecurityContextTokenType(soap, tag, NULL, "wsc:SecurityContextTokenType"); - case SOAP_TYPE_xenc__EncryptionPropertyType: - return soap_in_xenc__EncryptionPropertyType(soap, tag, NULL, "xenc:EncryptionPropertyType"); - case SOAP_TYPE_xenc__EncryptionPropertiesType: - return soap_in_xenc__EncryptionPropertiesType(soap, tag, NULL, "xenc:EncryptionPropertiesType"); - case SOAP_TYPE_xenc__ReferenceType: - return soap_in_xenc__ReferenceType(soap, tag, NULL, "xenc:ReferenceType"); - case SOAP_TYPE_xenc__AgreementMethodType: - return soap_in_xenc__AgreementMethodType(soap, tag, NULL, "xenc:AgreementMethodType"); - case SOAP_TYPE_xenc__EncryptedDataType: - return soap_in_xenc__EncryptedDataType(soap, tag, NULL, "xenc:EncryptedDataType"); - case SOAP_TYPE_xenc__TransformsType: - return soap_in_xenc__TransformsType(soap, tag, NULL, "xenc:TransformsType"); - case SOAP_TYPE_xenc__CipherReferenceType: - return soap_in_xenc__CipherReferenceType(soap, tag, NULL, "xenc:CipherReferenceType"); - case SOAP_TYPE_xenc__CipherDataType: - return soap_in_xenc__CipherDataType(soap, tag, NULL, "xenc:CipherDataType"); - case SOAP_TYPE_xenc__EncryptionMethodType: - return soap_in_xenc__EncryptionMethodType(soap, tag, NULL, "xenc:EncryptionMethodType"); - case SOAP_TYPE_xenc__EncryptedType: - return soap_in_xenc__EncryptedType(soap, tag, NULL, "xenc:EncryptedType"); - case SOAP_TYPE_ds__RSAKeyValueType: - return soap_in_ds__RSAKeyValueType(soap, tag, NULL, "ds:RSAKeyValueType"); - case SOAP_TYPE_ds__DSAKeyValueType: - return soap_in_ds__DSAKeyValueType(soap, tag, NULL, "ds:DSAKeyValueType"); - case SOAP_TYPE_ds__X509IssuerSerialType: - return soap_in_ds__X509IssuerSerialType(soap, tag, NULL, "ds:X509IssuerSerialType"); - case SOAP_TYPE_ds__RetrievalMethodType: - return soap_in_ds__RetrievalMethodType(soap, tag, NULL, "ds:RetrievalMethodType"); - case SOAP_TYPE_ds__KeyValueType: - return soap_in_ds__KeyValueType(soap, tag, NULL, "ds:KeyValueType"); - case SOAP_TYPE_ds__DigestMethodType: - return soap_in_ds__DigestMethodType(soap, tag, NULL, "ds:DigestMethodType"); - case SOAP_TYPE_ds__TransformType: - return soap_in_ds__TransformType(soap, tag, NULL, "ds:TransformType"); - case SOAP_TYPE_ds__TransformsType: - return soap_in_ds__TransformsType(soap, tag, NULL, "ds:TransformsType"); - case SOAP_TYPE_ds__ReferenceType: - return soap_in_ds__ReferenceType(soap, tag, NULL, "ds:ReferenceType"); - case SOAP_TYPE_ds__SignatureMethodType: - return soap_in_ds__SignatureMethodType(soap, tag, NULL, "ds:SignatureMethodType"); - case SOAP_TYPE_ds__CanonicalizationMethodType: - return soap_in_ds__CanonicalizationMethodType(soap, tag, NULL, "ds:CanonicalizationMethodType"); - case SOAP_TYPE_ds__SignedInfoType: - return soap_in_ds__SignedInfoType(soap, tag, NULL, "ds:SignedInfoType"); - case SOAP_TYPE_ds__SignatureType: - return soap_in_ds__SignatureType(soap, tag, NULL, "ds:SignatureType"); - case SOAP_TYPE_xenc__EncryptedKeyType: - return soap_in_xenc__EncryptedKeyType(soap, tag, NULL, "xenc:EncryptedKeyType"); - case SOAP_TYPE_ds__KeyInfoType: - return soap_in_ds__KeyInfoType(soap, tag, NULL, "ds:KeyInfoType"); - case SOAP_TYPE_ds__X509DataType: - return soap_in_ds__X509DataType(soap, tag, NULL, "ds:X509DataType"); - case SOAP_TYPE_wsse__EncodedString: - return soap_in_wsse__EncodedString(soap, tag, NULL, "wsse:EncodedString"); - case SOAP_TYPE_wsdd__AppSequenceType: - return soap_in_wsdd__AppSequenceType(soap, tag, NULL, "wsdd:AppSequenceType"); - case SOAP_TYPE_wsdd__SigType: - return soap_in_wsdd__SigType(soap, tag, NULL, "wsdd:SigType"); - case SOAP_TYPE_wsdd__SecurityType: - return soap_in_wsdd__SecurityType(soap, tag, NULL, "wsdd:SecurityType"); - case SOAP_TYPE_wsdd__ScopesType: - return soap_in_wsdd__ScopesType(soap, tag, NULL, "wsdd:ScopesType"); - case SOAP_TYPE_wsdd__ResolveMatchType: - return soap_in_wsdd__ResolveMatchType(soap, tag, NULL, "wsdd:ResolveMatchType"); - case SOAP_TYPE_wsdd__ResolveMatchesType: - return soap_in_wsdd__ResolveMatchesType(soap, tag, NULL, "wsdd:ResolveMatchesType"); - case SOAP_TYPE_wsdd__ResolveType: - return soap_in_wsdd__ResolveType(soap, tag, NULL, "wsdd:ResolveType"); - case SOAP_TYPE_wsdd__ProbeMatchType: - return soap_in_wsdd__ProbeMatchType(soap, tag, NULL, "wsdd:ProbeMatchType"); - case SOAP_TYPE_wsdd__ProbeMatchesType: - return soap_in_wsdd__ProbeMatchesType(soap, tag, NULL, "wsdd:ProbeMatchesType"); - case SOAP_TYPE_wsdd__ProbeType: - return soap_in_wsdd__ProbeType(soap, tag, NULL, "wsdd:ProbeType"); - case SOAP_TYPE_wsdd__ByeType: - return soap_in_wsdd__ByeType(soap, tag, NULL, "wsdd:ByeType"); - case SOAP_TYPE_wsdd__HelloType: - return soap_in_wsdd__HelloType(soap, tag, NULL, "wsdd:HelloType"); - case SOAP_TYPE_wsa__Relationship: - return soap_in_wsa__Relationship(soap, tag, NULL, "wsa:Relationship"); - case SOAP_TYPE_wsa__ServiceNameType: - return soap_in_wsa__ServiceNameType(soap, tag, NULL, "wsa:ServiceNameType"); - case SOAP_TYPE_wsa__ReferenceParametersType: - return soap_in_wsa__ReferenceParametersType(soap, tag, NULL, "wsa:ReferenceParametersType"); - case SOAP_TYPE_wsa__ReferencePropertiesType: - return soap_in_wsa__ReferencePropertiesType(soap, tag, NULL, "wsa:ReferencePropertiesType"); - case SOAP_TYPE_wsa__EndpointReferenceType: - return soap_in_wsa__EndpointReferenceType(soap, tag, NULL, "wsa:EndpointReferenceType"); - case SOAP_TYPE_PointerTo_tse__GetMetadataSearchResults: - return soap_in_PointerTo_tse__GetMetadataSearchResults(soap, tag, NULL, "tse:GetMetadataSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindMetadata: - return soap_in_PointerTo_tse__FindMetadata(soap, tag, NULL, "tse:FindMetadata"); - case SOAP_TYPE_PointerTo_tse__EndSearch: - return soap_in_PointerTo_tse__EndSearch(soap, tag, NULL, "tse:EndSearch"); - case SOAP_TYPE_PointerTo_tse__GetSearchState: - return soap_in_PointerTo_tse__GetSearchState(soap, tag, NULL, "tse:GetSearchState"); - case SOAP_TYPE_PointerTo_tse__GetPTZPositionSearchResults: - return soap_in_PointerTo_tse__GetPTZPositionSearchResults(soap, tag, NULL, "tse:GetPTZPositionSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindPTZPosition: - return soap_in_PointerTo_tse__FindPTZPosition(soap, tag, NULL, "tse:FindPTZPosition"); - case SOAP_TYPE_PointerTo_tse__GetEventSearchResults: - return soap_in_PointerTo_tse__GetEventSearchResults(soap, tag, NULL, "tse:GetEventSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindEvents: - return soap_in_PointerTo_tse__FindEvents(soap, tag, NULL, "tse:FindEvents"); - case SOAP_TYPE_PointerTo_tse__GetRecordingSearchResults: - return soap_in_PointerTo_tse__GetRecordingSearchResults(soap, tag, NULL, "tse:GetRecordingSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindRecordings: - return soap_in_PointerTo_tse__FindRecordings(soap, tag, NULL, "tse:FindRecordings"); - case SOAP_TYPE_PointerTo_tse__GetMediaAttributes: - return soap_in_PointerTo_tse__GetMediaAttributes(soap, tag, NULL, "tse:GetMediaAttributes"); - case SOAP_TYPE_PointerTo_tse__GetRecordingInformation: - return soap_in_PointerTo_tse__GetRecordingInformation(soap, tag, NULL, "tse:GetRecordingInformation"); - case SOAP_TYPE_PointerTo_tse__GetRecordingSummary: - return soap_in_PointerTo_tse__GetRecordingSummary(soap, tag, NULL, "tse:GetRecordingSummary"); - case SOAP_TYPE_PointerTo_tse__GetServiceCapabilities: - return soap_in_PointerTo_tse__GetServiceCapabilities(soap, tag, NULL, "tse:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trv__GetReceiverState: - return soap_in_PointerTo_trv__GetReceiverState(soap, tag, NULL, "trv:GetReceiverState"); - case SOAP_TYPE_PointerTo_trv__SetReceiverMode: - return soap_in_PointerTo_trv__SetReceiverMode(soap, tag, NULL, "trv:SetReceiverMode"); - case SOAP_TYPE_PointerTo_trv__ConfigureReceiver: - return soap_in_PointerTo_trv__ConfigureReceiver(soap, tag, NULL, "trv:ConfigureReceiver"); - case SOAP_TYPE_PointerTo_trv__DeleteReceiver: - return soap_in_PointerTo_trv__DeleteReceiver(soap, tag, NULL, "trv:DeleteReceiver"); - case SOAP_TYPE_PointerTo_trv__CreateReceiver: - return soap_in_PointerTo_trv__CreateReceiver(soap, tag, NULL, "trv:CreateReceiver"); - case SOAP_TYPE_PointerTo_trv__GetReceiver: - return soap_in_PointerTo_trv__GetReceiver(soap, tag, NULL, "trv:GetReceiver"); - case SOAP_TYPE_PointerTo_trv__GetReceivers: - return soap_in_PointerTo_trv__GetReceivers(soap, tag, NULL, "trv:GetReceivers"); - case SOAP_TYPE_PointerTo_trv__GetServiceCapabilities: - return soap_in_PointerTo_trv__GetServiceCapabilities(soap, tag, NULL, "trv:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trt__DeleteOSD: - return soap_in_PointerTo_trt__DeleteOSD(soap, tag, NULL, "trt:DeleteOSD"); - case SOAP_TYPE_PointerTo_trt__CreateOSD: - return soap_in_PointerTo_trt__CreateOSD(soap, tag, NULL, "trt:CreateOSD"); - case SOAP_TYPE_PointerTo_trt__SetOSD: - return soap_in_PointerTo_trt__SetOSD(soap, tag, NULL, "trt:SetOSD"); - case SOAP_TYPE_PointerTo_trt__GetOSDOptions: - return soap_in_PointerTo_trt__GetOSDOptions(soap, tag, NULL, "trt:GetOSDOptions"); - case SOAP_TYPE_PointerTo_trt__GetOSD: - return soap_in_PointerTo_trt__GetOSD(soap, tag, NULL, "trt:GetOSD"); - case SOAP_TYPE_PointerTo_trt__GetOSDs: - return soap_in_PointerTo_trt__GetOSDs(soap, tag, NULL, "trt:GetOSDs"); - case SOAP_TYPE_PointerTo_trt__SetVideoSourceMode: - return soap_in_PointerTo_trt__SetVideoSourceMode(soap, tag, NULL, "trt:SetVideoSourceMode"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceModes: - return soap_in_PointerTo_trt__GetVideoSourceModes(soap, tag, NULL, "trt:GetVideoSourceModes"); - case SOAP_TYPE_PointerTo_trt__GetSnapshotUri: - return soap_in_PointerTo_trt__GetSnapshotUri(soap, tag, NULL, "trt:GetSnapshotUri"); - case SOAP_TYPE_PointerTo_trt__SetSynchronizationPoint: - return soap_in_PointerTo_trt__SetSynchronizationPoint(soap, tag, NULL, "trt:SetSynchronizationPoint"); - case SOAP_TYPE_PointerTo_trt__StopMulticastStreaming: - return soap_in_PointerTo_trt__StopMulticastStreaming(soap, tag, NULL, "trt:StopMulticastStreaming"); - case SOAP_TYPE_PointerTo_trt__StartMulticastStreaming: - return soap_in_PointerTo_trt__StartMulticastStreaming(soap, tag, NULL, "trt:StartMulticastStreaming"); - case SOAP_TYPE_PointerTo_trt__GetStreamUri: - return soap_in_PointerTo_trt__GetStreamUri(soap, tag, NULL, "trt:GetStreamUri"); - case SOAP_TYPE_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances: - return soap_in_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag, NULL, "trt:GetGuaranteedNumberOfVideoEncoderInstances"); - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurationOptions: - return soap_in_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, tag, NULL, "trt:GetAudioDecoderConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurationOptions: - return soap_in_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, tag, NULL, "trt:GetAudioOutputConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetMetadataConfigurationOptions: - return soap_in_PointerTo_trt__GetMetadataConfigurationOptions(soap, tag, NULL, "trt:GetMetadataConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurationOptions: - return soap_in_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, tag, NULL, "trt:GetAudioEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurationOptions: - return soap_in_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, tag, NULL, "trt:GetAudioSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurationOptions: - return soap_in_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, tag, NULL, "trt:GetVideoEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurationOptions: - return soap_in_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, tag, NULL, "trt:GetVideoSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__SetAudioDecoderConfiguration: - return soap_in_PointerTo_trt__SetAudioDecoderConfiguration(soap, tag, NULL, "trt:SetAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetAudioOutputConfiguration: - return soap_in_PointerTo_trt__SetAudioOutputConfiguration(soap, tag, NULL, "trt:SetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetMetadataConfiguration: - return soap_in_PointerTo_trt__SetMetadataConfiguration(soap, tag, NULL, "trt:SetMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetVideoAnalyticsConfiguration: - return soap_in_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, tag, NULL, "trt:SetVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetAudioEncoderConfiguration: - return soap_in_PointerTo_trt__SetAudioEncoderConfiguration(soap, tag, NULL, "trt:SetAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetAudioSourceConfiguration: - return soap_in_PointerTo_trt__SetAudioSourceConfiguration(soap, tag, NULL, "trt:SetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetVideoEncoderConfiguration: - return soap_in_PointerTo_trt__SetVideoEncoderConfiguration(soap, tag, NULL, "trt:SetVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetVideoSourceConfiguration: - return soap_in_PointerTo_trt__SetVideoSourceConfiguration(soap, tag, NULL, "trt:SetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioDecoderConfigurations: - return soap_in_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(soap, tag, NULL, "trt:GetCompatibleAudioDecoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioOutputConfigurations: - return soap_in_PointerTo_trt__GetCompatibleAudioOutputConfigurations(soap, tag, NULL, "trt:GetCompatibleAudioOutputConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleMetadataConfigurations: - return soap_in_PointerTo_trt__GetCompatibleMetadataConfigurations(soap, tag, NULL, "trt:GetCompatibleMetadataConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations: - return soap_in_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag, NULL, "trt:GetCompatibleVideoAnalyticsConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioSourceConfigurations: - return soap_in_PointerTo_trt__GetCompatibleAudioSourceConfigurations(soap, tag, NULL, "trt:GetCompatibleAudioSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioEncoderConfigurations: - return soap_in_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(soap, tag, NULL, "trt:GetCompatibleAudioEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoSourceConfigurations: - return soap_in_PointerTo_trt__GetCompatibleVideoSourceConfigurations(soap, tag, NULL, "trt:GetCompatibleVideoSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoEncoderConfigurations: - return soap_in_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(soap, tag, NULL, "trt:GetCompatibleVideoEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfiguration: - return soap_in_PointerTo_trt__GetAudioDecoderConfiguration(soap, tag, NULL, "trt:GetAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfiguration: - return soap_in_PointerTo_trt__GetAudioOutputConfiguration(soap, tag, NULL, "trt:GetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetMetadataConfiguration: - return soap_in_PointerTo_trt__GetMetadataConfiguration(soap, tag, NULL, "trt:GetMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfiguration: - return soap_in_PointerTo_trt__GetVideoAnalyticsConfiguration(soap, tag, NULL, "trt:GetVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfiguration: - return soap_in_PointerTo_trt__GetAudioEncoderConfiguration(soap, tag, NULL, "trt:GetAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfiguration: - return soap_in_PointerTo_trt__GetAudioSourceConfiguration(soap, tag, NULL, "trt:GetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfiguration: - return soap_in_PointerTo_trt__GetVideoEncoderConfiguration(soap, tag, NULL, "trt:GetVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfiguration: - return soap_in_PointerTo_trt__GetVideoSourceConfiguration(soap, tag, NULL, "trt:GetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurations: - return soap_in_PointerTo_trt__GetAudioDecoderConfigurations(soap, tag, NULL, "trt:GetAudioDecoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurations: - return soap_in_PointerTo_trt__GetAudioOutputConfigurations(soap, tag, NULL, "trt:GetAudioOutputConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetMetadataConfigurations: - return soap_in_PointerTo_trt__GetMetadataConfigurations(soap, tag, NULL, "trt:GetMetadataConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfigurations: - return soap_in_PointerTo_trt__GetVideoAnalyticsConfigurations(soap, tag, NULL, "trt:GetVideoAnalyticsConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurations: - return soap_in_PointerTo_trt__GetAudioEncoderConfigurations(soap, tag, NULL, "trt:GetAudioEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurations: - return soap_in_PointerTo_trt__GetAudioSourceConfigurations(soap, tag, NULL, "trt:GetAudioSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurations: - return soap_in_PointerTo_trt__GetVideoEncoderConfigurations(soap, tag, NULL, "trt:GetVideoEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurations: - return soap_in_PointerTo_trt__GetVideoSourceConfigurations(soap, tag, NULL, "trt:GetVideoSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__DeleteProfile: - return soap_in_PointerTo_trt__DeleteProfile(soap, tag, NULL, "trt:DeleteProfile"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioDecoderConfiguration: - return soap_in_PointerTo_trt__RemoveAudioDecoderConfiguration(soap, tag, NULL, "trt:RemoveAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioOutputConfiguration: - return soap_in_PointerTo_trt__RemoveAudioOutputConfiguration(soap, tag, NULL, "trt:RemoveAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveMetadataConfiguration: - return soap_in_PointerTo_trt__RemoveMetadataConfiguration(soap, tag, NULL, "trt:RemoveMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveVideoAnalyticsConfiguration: - return soap_in_PointerTo_trt__RemoveVideoAnalyticsConfiguration(soap, tag, NULL, "trt:RemoveVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemovePTZConfiguration: - return soap_in_PointerTo_trt__RemovePTZConfiguration(soap, tag, NULL, "trt:RemovePTZConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioSourceConfiguration: - return soap_in_PointerTo_trt__RemoveAudioSourceConfiguration(soap, tag, NULL, "trt:RemoveAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioEncoderConfiguration: - return soap_in_PointerTo_trt__RemoveAudioEncoderConfiguration(soap, tag, NULL, "trt:RemoveAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveVideoSourceConfiguration: - return soap_in_PointerTo_trt__RemoveVideoSourceConfiguration(soap, tag, NULL, "trt:RemoveVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveVideoEncoderConfiguration: - return soap_in_PointerTo_trt__RemoveVideoEncoderConfiguration(soap, tag, NULL, "trt:RemoveVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioDecoderConfiguration: - return soap_in_PointerTo_trt__AddAudioDecoderConfiguration(soap, tag, NULL, "trt:AddAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioOutputConfiguration: - return soap_in_PointerTo_trt__AddAudioOutputConfiguration(soap, tag, NULL, "trt:AddAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddMetadataConfiguration: - return soap_in_PointerTo_trt__AddMetadataConfiguration(soap, tag, NULL, "trt:AddMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddVideoAnalyticsConfiguration: - return soap_in_PointerTo_trt__AddVideoAnalyticsConfiguration(soap, tag, NULL, "trt:AddVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddPTZConfiguration: - return soap_in_PointerTo_trt__AddPTZConfiguration(soap, tag, NULL, "trt:AddPTZConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioSourceConfiguration: - return soap_in_PointerTo_trt__AddAudioSourceConfiguration(soap, tag, NULL, "trt:AddAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioEncoderConfiguration: - return soap_in_PointerTo_trt__AddAudioEncoderConfiguration(soap, tag, NULL, "trt:AddAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddVideoSourceConfiguration: - return soap_in_PointerTo_trt__AddVideoSourceConfiguration(soap, tag, NULL, "trt:AddVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddVideoEncoderConfiguration: - return soap_in_PointerTo_trt__AddVideoEncoderConfiguration(soap, tag, NULL, "trt:AddVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetProfiles: - return soap_in_PointerTo_trt__GetProfiles(soap, tag, NULL, "trt:GetProfiles"); - case SOAP_TYPE_PointerTo_trt__GetProfile: - return soap_in_PointerTo_trt__GetProfile(soap, tag, NULL, "trt:GetProfile"); - case SOAP_TYPE_PointerTo_trt__CreateProfile: - return soap_in_PointerTo_trt__CreateProfile(soap, tag, NULL, "trt:CreateProfile"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputs: - return soap_in_PointerTo_trt__GetAudioOutputs(soap, tag, NULL, "trt:GetAudioOutputs"); - case SOAP_TYPE_PointerTo_trt__GetAudioSources: - return soap_in_PointerTo_trt__GetAudioSources(soap, tag, NULL, "trt:GetAudioSources"); - case SOAP_TYPE_PointerTo_trt__GetVideoSources: - return soap_in_PointerTo_trt__GetVideoSources(soap, tag, NULL, "trt:GetVideoSources"); - case SOAP_TYPE_PointerTo_trt__GetServiceCapabilities: - return soap_in_PointerTo_trt__GetServiceCapabilities(soap, tag, NULL, "trt:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trp__SetReplayConfiguration: - return soap_in_PointerTo_trp__SetReplayConfiguration(soap, tag, NULL, "trp:SetReplayConfiguration"); - case SOAP_TYPE_PointerTo_trp__GetReplayConfiguration: - return soap_in_PointerTo_trp__GetReplayConfiguration(soap, tag, NULL, "trp:GetReplayConfiguration"); - case SOAP_TYPE_PointerTo_trp__GetReplayUri: - return soap_in_PointerTo_trp__GetReplayUri(soap, tag, NULL, "trp:GetReplayUri"); - case SOAP_TYPE_PointerTo_trp__GetServiceCapabilities: - return soap_in_PointerTo_trp__GetServiceCapabilities(soap, tag, NULL, "trp:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trc__GetExportRecordedDataState: - return soap_in_PointerTo_trc__GetExportRecordedDataState(soap, tag, NULL, "trc:GetExportRecordedDataState"); - case SOAP_TYPE_PointerTo_trc__StopExportRecordedData: - return soap_in_PointerTo_trc__StopExportRecordedData(soap, tag, NULL, "trc:StopExportRecordedData"); - case SOAP_TYPE_PointerTo_trc__ExportRecordedData: - return soap_in_PointerTo_trc__ExportRecordedData(soap, tag, NULL, "trc:ExportRecordedData"); - case SOAP_TYPE_PointerTo_trc__GetRecordingJobState: - return soap_in_PointerTo_trc__GetRecordingJobState(soap, tag, NULL, "trc:GetRecordingJobState"); - case SOAP_TYPE_PointerTo_trc__SetRecordingJobMode: - return soap_in_PointerTo_trc__SetRecordingJobMode(soap, tag, NULL, "trc:SetRecordingJobMode"); - case SOAP_TYPE_PointerTo_trc__GetRecordingJobConfiguration: - return soap_in_PointerTo_trc__GetRecordingJobConfiguration(soap, tag, NULL, "trc:GetRecordingJobConfiguration"); - case SOAP_TYPE_PointerTo_trc__SetRecordingJobConfiguration: - return soap_in_PointerTo_trc__SetRecordingJobConfiguration(soap, tag, NULL, "trc:SetRecordingJobConfiguration"); - case SOAP_TYPE_PointerTo_trc__GetRecordingJobs: - return soap_in_PointerTo_trc__GetRecordingJobs(soap, tag, NULL, "trc:GetRecordingJobs"); - case SOAP_TYPE_PointerTo_trc__DeleteRecordingJob: - return soap_in_PointerTo_trc__DeleteRecordingJob(soap, tag, NULL, "trc:DeleteRecordingJob"); - case SOAP_TYPE_PointerTo_trc__CreateRecordingJob: - return soap_in_PointerTo_trc__CreateRecordingJob(soap, tag, NULL, "trc:CreateRecordingJob"); - case SOAP_TYPE_PointerTo_trc__SetTrackConfiguration: - return soap_in_PointerTo_trc__SetTrackConfiguration(soap, tag, NULL, "trc:SetTrackConfiguration"); - case SOAP_TYPE_PointerTo_trc__GetTrackConfiguration: - return soap_in_PointerTo_trc__GetTrackConfiguration(soap, tag, NULL, "trc:GetTrackConfiguration"); - case SOAP_TYPE_PointerTo_trc__DeleteTrack: - return soap_in_PointerTo_trc__DeleteTrack(soap, tag, NULL, "trc:DeleteTrack"); - case SOAP_TYPE_PointerTo_trc__CreateTrack: - return soap_in_PointerTo_trc__CreateTrack(soap, tag, NULL, "trc:CreateTrack"); - case SOAP_TYPE_PointerTo_trc__GetRecordingOptions: - return soap_in_PointerTo_trc__GetRecordingOptions(soap, tag, NULL, "trc:GetRecordingOptions"); - case SOAP_TYPE_PointerTo_trc__GetRecordingConfiguration: - return soap_in_PointerTo_trc__GetRecordingConfiguration(soap, tag, NULL, "trc:GetRecordingConfiguration"); - case SOAP_TYPE_PointerTo_trc__SetRecordingConfiguration: - return soap_in_PointerTo_trc__SetRecordingConfiguration(soap, tag, NULL, "trc:SetRecordingConfiguration"); - case SOAP_TYPE_PointerTo_trc__GetRecordings: - return soap_in_PointerTo_trc__GetRecordings(soap, tag, NULL, "trc:GetRecordings"); - case SOAP_TYPE_PointerTo_trc__DeleteRecording: - return soap_in_PointerTo_trc__DeleteRecording(soap, tag, NULL, "trc:DeleteRecording"); - case SOAP_TYPE_PointerTo_trc__CreateRecording: - return soap_in_PointerTo_trc__CreateRecording(soap, tag, NULL, "trc:CreateRecording"); - case SOAP_TYPE_PointerTo_trc__GetServiceCapabilities: - return soap_in_PointerTo_trc__GetServiceCapabilities(soap, tag, NULL, "trc:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tptz__GetCompatibleConfigurations: - return soap_in_PointerTo_tptz__GetCompatibleConfigurations(soap, tag, NULL, "tptz:GetCompatibleConfigurations"); - case SOAP_TYPE_PointerTo_tptz__RemovePresetTour: - return soap_in_PointerTo_tptz__RemovePresetTour(soap, tag, NULL, "tptz:RemovePresetTour"); - case SOAP_TYPE_PointerTo_tptz__OperatePresetTour: - return soap_in_PointerTo_tptz__OperatePresetTour(soap, tag, NULL, "tptz:OperatePresetTour"); - case SOAP_TYPE_PointerTo_tptz__ModifyPresetTour: - return soap_in_PointerTo_tptz__ModifyPresetTour(soap, tag, NULL, "tptz:ModifyPresetTour"); - case SOAP_TYPE_PointerTo_tptz__CreatePresetTour: - return soap_in_PointerTo_tptz__CreatePresetTour(soap, tag, NULL, "tptz:CreatePresetTour"); - case SOAP_TYPE_PointerTo_tptz__GetPresetTourOptions: - return soap_in_PointerTo_tptz__GetPresetTourOptions(soap, tag, NULL, "tptz:GetPresetTourOptions"); - case SOAP_TYPE_PointerTo_tptz__GetPresetTour: - return soap_in_PointerTo_tptz__GetPresetTour(soap, tag, NULL, "tptz:GetPresetTour"); - case SOAP_TYPE_PointerTo_tptz__GetPresetTours: - return soap_in_PointerTo_tptz__GetPresetTours(soap, tag, NULL, "tptz:GetPresetTours"); - case SOAP_TYPE_PointerTo_tptz__Stop: - return soap_in_PointerTo_tptz__Stop(soap, tag, NULL, "tptz:Stop"); - case SOAP_TYPE_PointerTo_tptz__AbsoluteMove: - return soap_in_PointerTo_tptz__AbsoluteMove(soap, tag, NULL, "tptz:AbsoluteMove"); - case SOAP_TYPE_PointerTo_tptz__SendAuxiliaryCommand: - return soap_in_PointerTo_tptz__SendAuxiliaryCommand(soap, tag, NULL, "tptz:SendAuxiliaryCommand"); - case SOAP_TYPE_PointerTo_tptz__RelativeMove: - return soap_in_PointerTo_tptz__RelativeMove(soap, tag, NULL, "tptz:RelativeMove"); - case SOAP_TYPE_PointerTo_tptz__ContinuousMove: - return soap_in_PointerTo_tptz__ContinuousMove(soap, tag, NULL, "tptz:ContinuousMove"); - case SOAP_TYPE_PointerTo_tptz__SetHomePosition: - return soap_in_PointerTo_tptz__SetHomePosition(soap, tag, NULL, "tptz:SetHomePosition"); - case SOAP_TYPE_PointerTo_tptz__GotoHomePosition: - return soap_in_PointerTo_tptz__GotoHomePosition(soap, tag, NULL, "tptz:GotoHomePosition"); - case SOAP_TYPE_PointerTo_tptz__GetConfigurationOptions: - return soap_in_PointerTo_tptz__GetConfigurationOptions(soap, tag, NULL, "tptz:GetConfigurationOptions"); - case SOAP_TYPE_PointerTo_tptz__SetConfiguration: - return soap_in_PointerTo_tptz__SetConfiguration(soap, tag, NULL, "tptz:SetConfiguration"); - case SOAP_TYPE_PointerTo_tptz__GetNode: - return soap_in_PointerTo_tptz__GetNode(soap, tag, NULL, "tptz:GetNode"); - case SOAP_TYPE_PointerTo_tptz__GetNodes: - return soap_in_PointerTo_tptz__GetNodes(soap, tag, NULL, "tptz:GetNodes"); - case SOAP_TYPE_PointerTo_tptz__GetConfiguration: - return soap_in_PointerTo_tptz__GetConfiguration(soap, tag, NULL, "tptz:GetConfiguration"); - case SOAP_TYPE_PointerTo_tptz__GetStatus: - return soap_in_PointerTo_tptz__GetStatus(soap, tag, NULL, "tptz:GetStatus"); - case SOAP_TYPE_PointerTo_tptz__GotoPreset: - return soap_in_PointerTo_tptz__GotoPreset(soap, tag, NULL, "tptz:GotoPreset"); - case SOAP_TYPE_PointerTo_tptz__RemovePreset: - return soap_in_PointerTo_tptz__RemovePreset(soap, tag, NULL, "tptz:RemovePreset"); - case SOAP_TYPE_PointerTo_tptz__SetPreset: - return soap_in_PointerTo_tptz__SetPreset(soap, tag, NULL, "tptz:SetPreset"); - case SOAP_TYPE_PointerTo_tptz__GetPresets: - return soap_in_PointerTo_tptz__GetPresets(soap, tag, NULL, "tptz:GetPresets"); - case SOAP_TYPE_PointerTo_tptz__GetConfigurations: - return soap_in_PointerTo_tptz__GetConfigurations(soap, tag, NULL, "tptz:GetConfigurations"); - case SOAP_TYPE_PointerTo_tptz__GetServiceCapabilities: - return soap_in_PointerTo_tptz__GetServiceCapabilities(soap, tag, NULL, "tptz:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tmd__SendReceiveSerialCommand: - return soap_in_PointerTo_tmd__SendReceiveSerialCommand(soap, tag, NULL, "tmd:SendReceiveSerialCommand"); - case SOAP_TYPE_PointerTo_tmd__GetSerialPortConfigurationOptions: - return soap_in_PointerTo_tmd__GetSerialPortConfigurationOptions(soap, tag, NULL, "tmd:GetSerialPortConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__SetSerialPortConfiguration: - return soap_in_PointerTo_tmd__SetSerialPortConfiguration(soap, tag, NULL, "tmd:SetSerialPortConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetSerialPortConfiguration: - return soap_in_PointerTo_tmd__GetSerialPortConfiguration(soap, tag, NULL, "tmd:GetSerialPortConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetSerialPorts: - return soap_in_PointerTo_tmd__GetSerialPorts(soap, tag, NULL, "tmd:GetSerialPorts"); - case SOAP_TYPE_PointerTo_tmd__SetDigitalInputConfigurations: - return soap_in_PointerTo_tmd__SetDigitalInputConfigurations(soap, tag, NULL, "tmd:SetDigitalInputConfigurations"); - case SOAP_TYPE_PointerTo_tmd__GetDigitalInputConfigurationOptions: - return soap_in_PointerTo_tmd__GetDigitalInputConfigurationOptions(soap, tag, NULL, "tmd:GetDigitalInputConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetDigitalInputs: - return soap_in_PointerTo_tmd__GetDigitalInputs(soap, tag, NULL, "tmd:GetDigitalInputs"); - case SOAP_TYPE_PointerTo_tmd__SetRelayOutputSettings: - return soap_in_PointerTo_tmd__SetRelayOutputSettings(soap, tag, NULL, "tmd:SetRelayOutputSettings"); - case SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfigurationOptions: - return soap_in_PointerTo_tmd__GetAudioOutputConfigurationOptions(soap, tag, NULL, "tmd:GetAudioOutputConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfigurationOptions: - return soap_in_PointerTo_tmd__GetAudioSourceConfigurationOptions(soap, tag, NULL, "tmd:GetAudioSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfigurationOptions: - return soap_in_PointerTo_tmd__GetVideoOutputConfigurationOptions(soap, tag, NULL, "tmd:GetVideoOutputConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfigurationOptions: - return soap_in_PointerTo_tmd__GetVideoSourceConfigurationOptions(soap, tag, NULL, "tmd:GetVideoSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__SetAudioOutputConfiguration: - return soap_in_PointerTo_tmd__SetAudioOutputConfiguration(soap, tag, NULL, "tmd:SetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__SetAudioSourceConfiguration: - return soap_in_PointerTo_tmd__SetAudioSourceConfiguration(soap, tag, NULL, "tmd:SetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__SetVideoOutputConfiguration: - return soap_in_PointerTo_tmd__SetVideoOutputConfiguration(soap, tag, NULL, "tmd:SetVideoOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__SetVideoSourceConfiguration: - return soap_in_PointerTo_tmd__SetVideoSourceConfiguration(soap, tag, NULL, "tmd:SetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfiguration: - return soap_in_PointerTo_tmd__GetAudioOutputConfiguration(soap, tag, NULL, "tmd:GetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfiguration: - return soap_in_PointerTo_tmd__GetAudioSourceConfiguration(soap, tag, NULL, "tmd:GetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfiguration: - return soap_in_PointerTo_tmd__GetVideoOutputConfiguration(soap, tag, NULL, "tmd:GetVideoOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfiguration: - return soap_in_PointerTo_tmd__GetVideoSourceConfiguration(soap, tag, NULL, "tmd:GetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputs: - return soap_in_PointerTo_tmd__GetVideoOutputs(soap, tag, NULL, "tmd:GetVideoOutputs"); - case SOAP_TYPE_PointerTotmd__Get: - return soap_in_PointerTotmd__Get(soap, tag, NULL, "tmd:Get"); - case SOAP_TYPE_PointerTo_tmd__GetRelayOutputOptions: - return soap_in_PointerTo_tmd__GetRelayOutputOptions(soap, tag, NULL, "tmd:GetRelayOutputOptions"); - case SOAP_TYPE_PointerTo_tmd__GetServiceCapabilities: - return soap_in_PointerTo_tmd__GetServiceCapabilities(soap, tag, NULL, "tmd:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tls__DeletePaneConfiguration: - return soap_in_PointerTo_tls__DeletePaneConfiguration(soap, tag, NULL, "tls:DeletePaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__CreatePaneConfiguration: - return soap_in_PointerTo_tls__CreatePaneConfiguration(soap, tag, NULL, "tls:CreatePaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__SetPaneConfiguration: - return soap_in_PointerTo_tls__SetPaneConfiguration(soap, tag, NULL, "tls:SetPaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__SetPaneConfigurations: - return soap_in_PointerTo_tls__SetPaneConfigurations(soap, tag, NULL, "tls:SetPaneConfigurations"); - case SOAP_TYPE_PointerTo_tls__GetPaneConfiguration: - return soap_in_PointerTo_tls__GetPaneConfiguration(soap, tag, NULL, "tls:GetPaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__GetPaneConfigurations: - return soap_in_PointerTo_tls__GetPaneConfigurations(soap, tag, NULL, "tls:GetPaneConfigurations"); - case SOAP_TYPE_PointerTo_tls__GetDisplayOptions: - return soap_in_PointerTo_tls__GetDisplayOptions(soap, tag, NULL, "tls:GetDisplayOptions"); - case SOAP_TYPE_PointerTo_tls__SetLayout: - return soap_in_PointerTo_tls__SetLayout(soap, tag, NULL, "tls:SetLayout"); - case SOAP_TYPE_PointerTo_tls__GetLayout: - return soap_in_PointerTo_tls__GetLayout(soap, tag, NULL, "tls:GetLayout"); - case SOAP_TYPE_PointerTo_tls__GetServiceCapabilities: - return soap_in_PointerTo_tls__GetServiceCapabilities(soap, tag, NULL, "tls:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_timg__SetCurrentPreset: - return soap_in_PointerTo_timg__SetCurrentPreset(soap, tag, NULL, "timg:SetCurrentPreset"); - case SOAP_TYPE_PointerTo_timg__GetCurrentPreset: - return soap_in_PointerTo_timg__GetCurrentPreset(soap, tag, NULL, "timg:GetCurrentPreset"); - case SOAP_TYPE_PointerTo_timg__GetPresets: - return soap_in_PointerTo_timg__GetPresets(soap, tag, NULL, "timg:GetPresets"); - case SOAP_TYPE_PointerTo_timg__GetMoveOptions: - return soap_in_PointerTo_timg__GetMoveOptions(soap, tag, NULL, "timg:GetMoveOptions"); - case SOAP_TYPE_PointerTo_timg__GetStatus: - return soap_in_PointerTo_timg__GetStatus(soap, tag, NULL, "timg:GetStatus"); - case SOAP_TYPE_PointerTo_timg__Stop: - return soap_in_PointerTo_timg__Stop(soap, tag, NULL, "timg:Stop"); - case SOAP_TYPE_PointerTo_timg__Move: - return soap_in_PointerTo_timg__Move(soap, tag, NULL, "timg:Move"); - case SOAP_TYPE_PointerTo_timg__GetOptions: - return soap_in_PointerTo_timg__GetOptions(soap, tag, NULL, "timg:GetOptions"); - case SOAP_TYPE_PointerTo_timg__SetImagingSettings: - return soap_in_PointerTo_timg__SetImagingSettings(soap, tag, NULL, "timg:SetImagingSettings"); - case SOAP_TYPE_PointerTo_timg__GetImagingSettings: - return soap_in_PointerTo_timg__GetImagingSettings(soap, tag, NULL, "timg:GetImagingSettings"); - case SOAP_TYPE_PointerTo_timg__GetServiceCapabilities: - return soap_in_PointerTo_timg__GetServiceCapabilities(soap, tag, NULL, "timg:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_wsnt__ResumeSubscription: - return soap_in_PointerTo_wsnt__ResumeSubscription(soap, tag, NULL, "wsnt:ResumeSubscription"); - case SOAP_TYPE_PointerTo_wsnt__PauseSubscription: - return soap_in_PointerTo_wsnt__PauseSubscription(soap, tag, NULL, "wsnt:PauseSubscription"); - case SOAP_TYPE_PointerTo_wsnt__Unsubscribe: - return soap_in_PointerTo_wsnt__Unsubscribe(soap, tag, NULL, "wsnt:Unsubscribe"); - case SOAP_TYPE_PointerTo_wsnt__Renew: - return soap_in_PointerTo_wsnt__Renew(soap, tag, NULL, "wsnt:Renew"); - case SOAP_TYPE_PointerTo_tev__SetSynchronizationPoint: - return soap_in_PointerTo_tev__SetSynchronizationPoint(soap, tag, NULL, "tev:SetSynchronizationPoint"); - case SOAP_TYPE_PointerTo_tev__Seek: - return soap_in_PointerTo_tev__Seek(soap, tag, NULL, "tev:Seek"); - case SOAP_TYPE_PointerTo_tev__PullMessages: - return soap_in_PointerTo_tev__PullMessages(soap, tag, NULL, "tev:PullMessages"); - case SOAP_TYPE_PointerTo_wsnt__DestroyPullPoint: - return soap_in_PointerTo_wsnt__DestroyPullPoint(soap, tag, NULL, "wsnt:DestroyPullPoint"); - case SOAP_TYPE_PointerTo_wsnt__GetMessages: - return soap_in_PointerTo_wsnt__GetMessages(soap, tag, NULL, "wsnt:GetMessages"); - case SOAP_TYPE_PointerTo_wsnt__GetCurrentMessage: - return soap_in_PointerTo_wsnt__GetCurrentMessage(soap, tag, NULL, "wsnt:GetCurrentMessage"); - case SOAP_TYPE_PointerTo_wsnt__Subscribe: - return soap_in_PointerTo_wsnt__Subscribe(soap, tag, NULL, "wsnt:Subscribe"); - case SOAP_TYPE_PointerTo_wsnt__Notify: - return soap_in_PointerTo_wsnt__Notify(soap, tag, NULL, "wsnt:Notify"); - case SOAP_TYPE_PointerTo_tev__GetEventProperties: - return soap_in_PointerTo_tev__GetEventProperties(soap, tag, NULL, "tev:GetEventProperties"); - case SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription: - return soap_in_PointerTo_tev__CreatePullPointSubscription(soap, tag, NULL, "tev:CreatePullPointSubscription"); - case SOAP_TYPE_PointerTo_tev__GetServiceCapabilities: - return soap_in_PointerTo_tev__GetServiceCapabilities(soap, tag, NULL, "tev:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_wsnt__CreatePullPoint: - return soap_in_PointerTo_wsnt__CreatePullPoint(soap, tag, NULL, "wsnt:CreatePullPoint"); - case SOAP_TYPE_PointerTo_tds__DeleteGeoLocation: - return soap_in_PointerTo_tds__DeleteGeoLocation(soap, tag, NULL, "tds:DeleteGeoLocation"); - case SOAP_TYPE_PointerTo_tds__SetGeoLocation: - return soap_in_PointerTo_tds__SetGeoLocation(soap, tag, NULL, "tds:SetGeoLocation"); - case SOAP_TYPE_PointerTo_tds__GetGeoLocation: - return soap_in_PointerTo_tds__GetGeoLocation(soap, tag, NULL, "tds:GetGeoLocation"); - case SOAP_TYPE_PointerTo_tds__DeleteStorageConfiguration: - return soap_in_PointerTo_tds__DeleteStorageConfiguration(soap, tag, NULL, "tds:DeleteStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__SetStorageConfiguration: - return soap_in_PointerTo_tds__SetStorageConfiguration(soap, tag, NULL, "tds:SetStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetStorageConfiguration: - return soap_in_PointerTo_tds__GetStorageConfiguration(soap, tag, NULL, "tds:GetStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__CreateStorageConfiguration: - return soap_in_PointerTo_tds__CreateStorageConfiguration(soap, tag, NULL, "tds:CreateStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetStorageConfigurations: - return soap_in_PointerTo_tds__GetStorageConfigurations(soap, tag, NULL, "tds:GetStorageConfigurations"); - case SOAP_TYPE_PointerTo_tds__StartSystemRestore: - return soap_in_PointerTo_tds__StartSystemRestore(soap, tag, NULL, "tds:StartSystemRestore"); - case SOAP_TYPE_PointerTo_tds__StartFirmwareUpgrade: - return soap_in_PointerTo_tds__StartFirmwareUpgrade(soap, tag, NULL, "tds:StartFirmwareUpgrade"); - case SOAP_TYPE_PointerTo_tds__GetSystemUris: - return soap_in_PointerTo_tds__GetSystemUris(soap, tag, NULL, "tds:GetSystemUris"); - case SOAP_TYPE_PointerTo_tds__ScanAvailableDot11Networks: - return soap_in_PointerTo_tds__ScanAvailableDot11Networks(soap, tag, NULL, "tds:ScanAvailableDot11Networks"); - case SOAP_TYPE_PointerTo_tds__GetDot11Status: - return soap_in_PointerTo_tds__GetDot11Status(soap, tag, NULL, "tds:GetDot11Status"); - case SOAP_TYPE_PointerTo_tds__GetDot11Capabilities: - return soap_in_PointerTo_tds__GetDot11Capabilities(soap, tag, NULL, "tds:GetDot11Capabilities"); - case SOAP_TYPE_PointerTo_tds__DeleteDot1XConfiguration: - return soap_in_PointerTo_tds__DeleteDot1XConfiguration(soap, tag, NULL, "tds:DeleteDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetDot1XConfigurations: - return soap_in_PointerTo_tds__GetDot1XConfigurations(soap, tag, NULL, "tds:GetDot1XConfigurations"); - case SOAP_TYPE_PointerTo_tds__GetDot1XConfiguration: - return soap_in_PointerTo_tds__GetDot1XConfiguration(soap, tag, NULL, "tds:GetDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__SetDot1XConfiguration: - return soap_in_PointerTo_tds__SetDot1XConfiguration(soap, tag, NULL, "tds:SetDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__CreateDot1XConfiguration: - return soap_in_PointerTo_tds__CreateDot1XConfiguration(soap, tag, NULL, "tds:CreateDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__LoadCACertificates: - return soap_in_PointerTo_tds__LoadCACertificates(soap, tag, NULL, "tds:LoadCACertificates"); - case SOAP_TYPE_PointerTo_tds__GetCertificateInformation: - return soap_in_PointerTo_tds__GetCertificateInformation(soap, tag, NULL, "tds:GetCertificateInformation"); - case SOAP_TYPE_PointerTo_tds__LoadCertificateWithPrivateKey: - return soap_in_PointerTo_tds__LoadCertificateWithPrivateKey(soap, tag, NULL, "tds:LoadCertificateWithPrivateKey"); - case SOAP_TYPE_PointerTo_tds__GetCACertificates: - return soap_in_PointerTo_tds__GetCACertificates(soap, tag, NULL, "tds:GetCACertificates"); - case SOAP_TYPE_PointerTo_tds__SendAuxiliaryCommand: - return soap_in_PointerTo_tds__SendAuxiliaryCommand(soap, tag, NULL, "tds:SendAuxiliaryCommand"); - case SOAP_TYPE_PointerTo_tds__SetRelayOutputState: - return soap_in_PointerTo_tds__SetRelayOutputState(soap, tag, NULL, "tds:SetRelayOutputState"); - case SOAP_TYPE_PointerTo_tds__SetRelayOutputSettings: - return soap_in_PointerTo_tds__SetRelayOutputSettings(soap, tag, NULL, "tds:SetRelayOutputSettings"); - case SOAP_TYPE_PointerTo_tds__GetRelayOutputs: - return soap_in_PointerTo_tds__GetRelayOutputs(soap, tag, NULL, "tds:GetRelayOutputs"); - case SOAP_TYPE_PointerTo_tds__SetClientCertificateMode: - return soap_in_PointerTo_tds__SetClientCertificateMode(soap, tag, NULL, "tds:SetClientCertificateMode"); - case SOAP_TYPE_PointerTo_tds__GetClientCertificateMode: - return soap_in_PointerTo_tds__GetClientCertificateMode(soap, tag, NULL, "tds:GetClientCertificateMode"); - case SOAP_TYPE_PointerTo_tds__LoadCertificates: - return soap_in_PointerTo_tds__LoadCertificates(soap, tag, NULL, "tds:LoadCertificates"); - case SOAP_TYPE_PointerTo_tds__GetPkcs10Request: - return soap_in_PointerTo_tds__GetPkcs10Request(soap, tag, NULL, "tds:GetPkcs10Request"); - case SOAP_TYPE_PointerTo_tds__DeleteCertificates: - return soap_in_PointerTo_tds__DeleteCertificates(soap, tag, NULL, "tds:DeleteCertificates"); - case SOAP_TYPE_PointerTo_tds__SetCertificatesStatus: - return soap_in_PointerTo_tds__SetCertificatesStatus(soap, tag, NULL, "tds:SetCertificatesStatus"); - case SOAP_TYPE_PointerTo_tds__GetCertificatesStatus: - return soap_in_PointerTo_tds__GetCertificatesStatus(soap, tag, NULL, "tds:GetCertificatesStatus"); - case SOAP_TYPE_PointerTo_tds__GetCertificates: - return soap_in_PointerTo_tds__GetCertificates(soap, tag, NULL, "tds:GetCertificates"); - case SOAP_TYPE_PointerTo_tds__CreateCertificate: - return soap_in_PointerTo_tds__CreateCertificate(soap, tag, NULL, "tds:CreateCertificate"); - case SOAP_TYPE_PointerTo_tds__SetAccessPolicy: - return soap_in_PointerTo_tds__SetAccessPolicy(soap, tag, NULL, "tds:SetAccessPolicy"); - case SOAP_TYPE_PointerTo_tds__GetAccessPolicy: - return soap_in_PointerTo_tds__GetAccessPolicy(soap, tag, NULL, "tds:GetAccessPolicy"); - case SOAP_TYPE_PointerTo_tds__RemoveIPAddressFilter: - return soap_in_PointerTo_tds__RemoveIPAddressFilter(soap, tag, NULL, "tds:RemoveIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__AddIPAddressFilter: - return soap_in_PointerTo_tds__AddIPAddressFilter(soap, tag, NULL, "tds:AddIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__SetIPAddressFilter: - return soap_in_PointerTo_tds__SetIPAddressFilter(soap, tag, NULL, "tds:SetIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__GetIPAddressFilter: - return soap_in_PointerTo_tds__GetIPAddressFilter(soap, tag, NULL, "tds:GetIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__SetZeroConfiguration: - return soap_in_PointerTo_tds__SetZeroConfiguration(soap, tag, NULL, "tds:SetZeroConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetZeroConfiguration: - return soap_in_PointerTo_tds__GetZeroConfiguration(soap, tag, NULL, "tds:GetZeroConfiguration"); - case SOAP_TYPE_PointerTo_tds__SetNetworkDefaultGateway: - return soap_in_PointerTo_tds__SetNetworkDefaultGateway(soap, tag, NULL, "tds:SetNetworkDefaultGateway"); - case SOAP_TYPE_PointerTo_tds__GetNetworkDefaultGateway: - return soap_in_PointerTo_tds__GetNetworkDefaultGateway(soap, tag, NULL, "tds:GetNetworkDefaultGateway"); - case SOAP_TYPE_PointerTo_tds__SetNetworkProtocols: - return soap_in_PointerTo_tds__SetNetworkProtocols(soap, tag, NULL, "tds:SetNetworkProtocols"); - case SOAP_TYPE_PointerTo_tds__GetNetworkProtocols: - return soap_in_PointerTo_tds__GetNetworkProtocols(soap, tag, NULL, "tds:GetNetworkProtocols"); - case SOAP_TYPE_PointerTo_tds__SetNetworkInterfaces: - return soap_in_PointerTo_tds__SetNetworkInterfaces(soap, tag, NULL, "tds:SetNetworkInterfaces"); - case SOAP_TYPE_PointerTo_tds__GetNetworkInterfaces: - return soap_in_PointerTo_tds__GetNetworkInterfaces(soap, tag, NULL, "tds:GetNetworkInterfaces"); - case SOAP_TYPE_PointerTo_tds__SetDynamicDNS: - return soap_in_PointerTo_tds__SetDynamicDNS(soap, tag, NULL, "tds:SetDynamicDNS"); - case SOAP_TYPE_PointerTo_tds__GetDynamicDNS: - return soap_in_PointerTo_tds__GetDynamicDNS(soap, tag, NULL, "tds:GetDynamicDNS"); - case SOAP_TYPE_PointerTo_tds__SetNTP: - return soap_in_PointerTo_tds__SetNTP(soap, tag, NULL, "tds:SetNTP"); - case SOAP_TYPE_PointerTo_tds__GetNTP: - return soap_in_PointerTo_tds__GetNTP(soap, tag, NULL, "tds:GetNTP"); - case SOAP_TYPE_PointerTo_tds__SetDNS: - return soap_in_PointerTo_tds__SetDNS(soap, tag, NULL, "tds:SetDNS"); - case SOAP_TYPE_PointerTo_tds__GetDNS: - return soap_in_PointerTo_tds__GetDNS(soap, tag, NULL, "tds:GetDNS"); - case SOAP_TYPE_PointerTo_tds__SetHostnameFromDHCP: - return soap_in_PointerTo_tds__SetHostnameFromDHCP(soap, tag, NULL, "tds:SetHostnameFromDHCP"); - case SOAP_TYPE_PointerTo_tds__SetHostname: - return soap_in_PointerTo_tds__SetHostname(soap, tag, NULL, "tds:SetHostname"); - case SOAP_TYPE_PointerTo_tds__GetHostname: - return soap_in_PointerTo_tds__GetHostname(soap, tag, NULL, "tds:GetHostname"); - case SOAP_TYPE_PointerTo_tds__SetDPAddresses: - return soap_in_PointerTo_tds__SetDPAddresses(soap, tag, NULL, "tds:SetDPAddresses"); - case SOAP_TYPE_PointerTo_tds__GetCapabilities: - return soap_in_PointerTo_tds__GetCapabilities(soap, tag, NULL, "tds:GetCapabilities"); - case SOAP_TYPE_PointerTo_tds__GetWsdlUrl: - return soap_in_PointerTo_tds__GetWsdlUrl(soap, tag, NULL, "tds:GetWsdlUrl"); - case SOAP_TYPE_PointerTo_tds__SetUser: - return soap_in_PointerTo_tds__SetUser(soap, tag, NULL, "tds:SetUser"); - case SOAP_TYPE_PointerTo_tds__DeleteUsers: - return soap_in_PointerTo_tds__DeleteUsers(soap, tag, NULL, "tds:DeleteUsers"); - case SOAP_TYPE_PointerTo_tds__CreateUsers: - return soap_in_PointerTo_tds__CreateUsers(soap, tag, NULL, "tds:CreateUsers"); - case SOAP_TYPE_PointerTo_tds__GetUsers: - return soap_in_PointerTo_tds__GetUsers(soap, tag, NULL, "tds:GetUsers"); - case SOAP_TYPE_PointerTo_tds__SetRemoteUser: - return soap_in_PointerTo_tds__SetRemoteUser(soap, tag, NULL, "tds:SetRemoteUser"); - case SOAP_TYPE_PointerTo_tds__GetRemoteUser: - return soap_in_PointerTo_tds__GetRemoteUser(soap, tag, NULL, "tds:GetRemoteUser"); - case SOAP_TYPE_PointerTo_tds__GetEndpointReference: - return soap_in_PointerTo_tds__GetEndpointReference(soap, tag, NULL, "tds:GetEndpointReference"); - case SOAP_TYPE_PointerTo_tds__GetDPAddresses: - return soap_in_PointerTo_tds__GetDPAddresses(soap, tag, NULL, "tds:GetDPAddresses"); - case SOAP_TYPE_PointerTo_tds__SetRemoteDiscoveryMode: - return soap_in_PointerTo_tds__SetRemoteDiscoveryMode(soap, tag, NULL, "tds:SetRemoteDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__GetRemoteDiscoveryMode: - return soap_in_PointerTo_tds__GetRemoteDiscoveryMode(soap, tag, NULL, "tds:GetRemoteDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__SetDiscoveryMode: - return soap_in_PointerTo_tds__SetDiscoveryMode(soap, tag, NULL, "tds:SetDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__GetDiscoveryMode: - return soap_in_PointerTo_tds__GetDiscoveryMode(soap, tag, NULL, "tds:GetDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__RemoveScopes: - return soap_in_PointerTo_tds__RemoveScopes(soap, tag, NULL, "tds:RemoveScopes"); - case SOAP_TYPE_PointerTo_tds__AddScopes: - return soap_in_PointerTo_tds__AddScopes(soap, tag, NULL, "tds:AddScopes"); - case SOAP_TYPE_PointerTo_tds__SetScopes: - return soap_in_PointerTo_tds__SetScopes(soap, tag, NULL, "tds:SetScopes"); - case SOAP_TYPE_PointerTo_tds__GetScopes: - return soap_in_PointerTo_tds__GetScopes(soap, tag, NULL, "tds:GetScopes"); - case SOAP_TYPE_PointerTo_tds__GetSystemSupportInformation: - return soap_in_PointerTo_tds__GetSystemSupportInformation(soap, tag, NULL, "tds:GetSystemSupportInformation"); - case SOAP_TYPE_PointerTo_tds__GetSystemLog: - return soap_in_PointerTo_tds__GetSystemLog(soap, tag, NULL, "tds:GetSystemLog"); - case SOAP_TYPE_PointerTo_tds__GetSystemBackup: - return soap_in_PointerTo_tds__GetSystemBackup(soap, tag, NULL, "tds:GetSystemBackup"); - case SOAP_TYPE_PointerTo_tds__RestoreSystem: - return soap_in_PointerTo_tds__RestoreSystem(soap, tag, NULL, "tds:RestoreSystem"); - case SOAP_TYPE_PointerTo_tds__SystemReboot: - return soap_in_PointerTo_tds__SystemReboot(soap, tag, NULL, "tds:SystemReboot"); - case SOAP_TYPE_PointerTo_tds__UpgradeSystemFirmware: - return soap_in_PointerTo_tds__UpgradeSystemFirmware(soap, tag, NULL, "tds:UpgradeSystemFirmware"); - case SOAP_TYPE_PointerTo_tds__SetSystemFactoryDefault: - return soap_in_PointerTo_tds__SetSystemFactoryDefault(soap, tag, NULL, "tds:SetSystemFactoryDefault"); - case SOAP_TYPE_PointerTo_tds__GetSystemDateAndTime: - return soap_in_PointerTo_tds__GetSystemDateAndTime(soap, tag, NULL, "tds:GetSystemDateAndTime"); - case SOAP_TYPE_PointerTo_tds__SetSystemDateAndTime: - return soap_in_PointerTo_tds__SetSystemDateAndTime(soap, tag, NULL, "tds:SetSystemDateAndTime"); - case SOAP_TYPE_PointerTo_tds__GetDeviceInformation: - return soap_in_PointerTo_tds__GetDeviceInformation(soap, tag, NULL, "tds:GetDeviceInformation"); - case SOAP_TYPE_PointerTo_tds__GetServiceCapabilities: - return soap_in_PointerTo_tds__GetServiceCapabilities(soap, tag, NULL, "tds:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tds__GetServices: - return soap_in_PointerTo_tds__GetServices(soap, tag, NULL, "tds:GetServices"); - case SOAP_TYPE_PointerTowsnt__UnacceptableTerminationTimeFaultType: - return soap_in_PointerTowsnt__UnacceptableTerminationTimeFaultType(soap, tag, NULL, "wsnt:UnacceptableTerminationTimeFaultType"); - case SOAP_TYPE_PointerTowsnt__UnableToDestroySubscriptionFaultType: - return soap_in_PointerTowsnt__UnableToDestroySubscriptionFaultType(soap, tag, NULL, "wsnt:UnableToDestroySubscriptionFaultType"); - case SOAP_TYPE_PointerTowsnt__ResumeFailedFaultType: - return soap_in_PointerTowsnt__ResumeFailedFaultType(soap, tag, NULL, "wsnt:ResumeFailedFaultType"); - case SOAP_TYPE_PointerTowsnt__PauseFailedFaultType: - return soap_in_PointerTowsnt__PauseFailedFaultType(soap, tag, NULL, "wsnt:PauseFailedFaultType"); - case SOAP_TYPE_PointerTo_tev__PullMessagesFaultResponse: - return soap_in_PointerTo_tev__PullMessagesFaultResponse(soap, tag, NULL, "tev:PullMessagesFaultResponse"); - case SOAP_TYPE_PointerTowsnt__UnableToGetMessagesFaultType: - return soap_in_PointerTowsnt__UnableToGetMessagesFaultType(soap, tag, NULL, "wsnt:UnableToGetMessagesFaultType"); - case SOAP_TYPE_PointerTowsnt__UnableToDestroyPullPointFaultType: - return soap_in_PointerTowsnt__UnableToDestroyPullPointFaultType(soap, tag, NULL, "wsnt:UnableToDestroyPullPointFaultType"); - case SOAP_TYPE_PointerTowsnt__NoCurrentMessageOnTopicFaultType: - return soap_in_PointerTowsnt__NoCurrentMessageOnTopicFaultType(soap, tag, NULL, "wsnt:NoCurrentMessageOnTopicFaultType"); - case SOAP_TYPE_PointerTowsnt__MultipleTopicsSpecifiedFaultType: - return soap_in_PointerTowsnt__MultipleTopicsSpecifiedFaultType(soap, tag, NULL, "wsnt:MultipleTopicsSpecifiedFaultType"); - case SOAP_TYPE_PointerTowsnt__UnsupportedPolicyRequestFaultType: - return soap_in_PointerTowsnt__UnsupportedPolicyRequestFaultType(soap, tag, NULL, "wsnt:UnsupportedPolicyRequestFaultType"); - case SOAP_TYPE_PointerTowsnt__UnrecognizedPolicyRequestFaultType: - return soap_in_PointerTowsnt__UnrecognizedPolicyRequestFaultType(soap, tag, NULL, "wsnt:UnrecognizedPolicyRequestFaultType"); - case SOAP_TYPE_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType: - return soap_in_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag, NULL, "wsnt:UnacceptableInitialTerminationTimeFaultType"); - case SOAP_TYPE_PointerTowsnt__TopicNotSupportedFaultType: - return soap_in_PointerTowsnt__TopicNotSupportedFaultType(soap, tag, NULL, "wsnt:TopicNotSupportedFaultType"); - case SOAP_TYPE_PointerTowsnt__TopicExpressionDialectUnknownFaultType: - return soap_in_PointerTowsnt__TopicExpressionDialectUnknownFaultType(soap, tag, NULL, "wsnt:TopicExpressionDialectUnknownFaultType"); - case SOAP_TYPE_PointerTowsnt__SubscribeCreationFailedFaultType: - return soap_in_PointerTowsnt__SubscribeCreationFailedFaultType(soap, tag, NULL, "wsnt:SubscribeCreationFailedFaultType"); - case SOAP_TYPE_PointerTowsrfr__ResourceUnknownFaultType: - return soap_in_PointerTowsrfr__ResourceUnknownFaultType(soap, tag, NULL, "wsrfr:ResourceUnknownFaultType"); - case SOAP_TYPE_PointerTowsnt__NotifyMessageNotSupportedFaultType: - return soap_in_PointerTowsnt__NotifyMessageNotSupportedFaultType(soap, tag, NULL, "wsnt:NotifyMessageNotSupportedFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidTopicExpressionFaultType: - return soap_in_PointerTowsnt__InvalidTopicExpressionFaultType(soap, tag, NULL, "wsnt:InvalidTopicExpressionFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType: - return soap_in_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag, NULL, "wsnt:InvalidProducerPropertiesExpressionFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidMessageContentExpressionFaultType: - return soap_in_PointerTowsnt__InvalidMessageContentExpressionFaultType(soap, tag, NULL, "wsnt:InvalidMessageContentExpressionFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidFilterFaultType: - return soap_in_PointerTowsnt__InvalidFilterFaultType(soap, tag, NULL, "wsnt:InvalidFilterFaultType"); - case SOAP_TYPE_PointerTowsnt__UnableToCreatePullPointFaultType: - return soap_in_PointerTowsnt__UnableToCreatePullPointFaultType(soap, tag, NULL, "wsnt:UnableToCreatePullPointFaultType"); - case SOAP_TYPE_PointerToxsd__NCName: - return soap_in_PointerToxsd__NCName(soap, tag, NULL, "xsd:NCName"); - case SOAP_TYPE_PointerTowstop__ConcreteTopicExpression: - return soap_in_PointerTowstop__ConcreteTopicExpression(soap, tag, NULL, "wstop:ConcreteTopicExpression"); - case SOAP_TYPE_PointerToxsd__QName: - return soap_in_PointerToxsd__QName(soap, tag, NULL, "xsd:QName"); - case SOAP_TYPE_PointerTowstop__TopicType: - return soap_in_PointerTowstop__TopicType(soap, tag, NULL, "wstop:TopicType"); - case SOAP_TYPE_PointerTowstop__QueryExpressionType: - return soap_in_PointerTowstop__QueryExpressionType(soap, tag, NULL, "wstop:QueryExpressionType"); - case SOAP_TYPE_PointerTott__OSDConfigurationExtension: - return soap_in_PointerTott__OSDConfigurationExtension(soap, tag, NULL, "tt:OSDConfigurationExtension"); - case SOAP_TYPE_PointerTott__OSDImgConfiguration: - return soap_in_PointerTott__OSDImgConfiguration(soap, tag, NULL, "tt:OSDImgConfiguration"); - case SOAP_TYPE_PointerTott__OSDTextConfiguration: - return soap_in_PointerTott__OSDTextConfiguration(soap, tag, NULL, "tt:OSDTextConfiguration"); - case SOAP_TYPE_PointerTott__OSDPosConfiguration: - return soap_in_PointerTott__OSDPosConfiguration(soap, tag, NULL, "tt:OSDPosConfiguration"); - case SOAP_TYPE_PointerTott__OSDReference: - return soap_in_PointerTott__OSDReference(soap, tag, NULL, "tt:OSDReference"); - case SOAP_TYPE_PointerTott__MetadataInput: - return soap_in_PointerTott__MetadataInput(soap, tag, NULL, "tt:MetadataInput"); - case SOAP_TYPE_PointerTott__SourceIdentification: - return soap_in_PointerTott__SourceIdentification(soap, tag, NULL, "tt:SourceIdentification"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfiguration: - return soap_in_PointerTott__AnalyticsDeviceEngineConfiguration(soap, tag, NULL, "tt:AnalyticsDeviceEngineConfiguration"); - case SOAP_TYPE_PointerTott__PTZConfigurationExtension: - return soap_in_PointerTott__PTZConfigurationExtension(soap, tag, NULL, "tt:PTZConfigurationExtension"); - case SOAP_TYPE_PointerTott__ZoomLimits: - return soap_in_PointerTott__ZoomLimits(soap, tag, NULL, "tt:ZoomLimits"); - case SOAP_TYPE_PointerTott__PanTiltLimits: - return soap_in_PointerTott__PanTiltLimits(soap, tag, NULL, "tt:PanTiltLimits"); - case SOAP_TYPE_PointerTott__PTZNodeExtension: - return soap_in_PointerTott__PTZNodeExtension(soap, tag, NULL, "tt:PTZNodeExtension"); - case SOAP_TYPE_PointerTott__DigitalIdleState: - return soap_in_PointerTott__DigitalIdleState(soap, tag, NULL, "tt:DigitalIdleState"); - case SOAP_TYPE_PointerTott__NetworkInterfaceExtension: - return soap_in_PointerTott__NetworkInterfaceExtension(soap, tag, NULL, "tt:NetworkInterfaceExtension"); - case SOAP_TYPE_PointerTott__IPv6NetworkInterface: - return soap_in_PointerTott__IPv6NetworkInterface(soap, tag, NULL, "tt:IPv6NetworkInterface"); - case SOAP_TYPE_PointerTott__IPv4NetworkInterface: - return soap_in_PointerTott__IPv4NetworkInterface(soap, tag, NULL, "tt:IPv4NetworkInterface"); - case SOAP_TYPE_PointerTott__NetworkInterfaceLink: - return soap_in_PointerTott__NetworkInterfaceLink(soap, tag, NULL, "tt:NetworkInterfaceLink"); - case SOAP_TYPE_PointerTott__NetworkInterfaceInfo: - return soap_in_PointerTott__NetworkInterfaceInfo(soap, tag, NULL, "tt:NetworkInterfaceInfo"); - case SOAP_TYPE_PointerTott__VideoOutputExtension: - return soap_in_PointerTott__VideoOutputExtension(soap, tag, NULL, "tt:VideoOutputExtension"); - case SOAP_TYPE_PointerTott__MetadataConfigurationExtension: - return soap_in_PointerTott__MetadataConfigurationExtension(soap, tag, NULL, "tt:MetadataConfigurationExtension"); - case SOAP_TYPE_PointerTott__EventSubscription: - return soap_in_PointerTott__EventSubscription(soap, tag, NULL, "tt:EventSubscription"); - case SOAP_TYPE_PointerTott__PTZFilter: - return soap_in_PointerTott__PTZFilter(soap, tag, NULL, "tt:PTZFilter"); - case SOAP_TYPE_PointerTott__RuleEngineConfiguration: - return soap_in_PointerTott__RuleEngineConfiguration(soap, tag, NULL, "tt:RuleEngineConfiguration"); - case SOAP_TYPE_PointerTott__AnalyticsEngineConfiguration: - return soap_in_PointerTott__AnalyticsEngineConfiguration(soap, tag, NULL, "tt:AnalyticsEngineConfiguration"); - case SOAP_TYPE_PointerTott__VideoRateControl2: - return soap_in_PointerTott__VideoRateControl2(soap, tag, NULL, "tt:VideoRateControl2"); - case SOAP_TYPE_PointerTott__MulticastConfiguration: - return soap_in_PointerTott__MulticastConfiguration(soap, tag, NULL, "tt:MulticastConfiguration"); - case SOAP_TYPE_PointerTott__H264Configuration: - return soap_in_PointerTott__H264Configuration(soap, tag, NULL, "tt:H264Configuration"); - case SOAP_TYPE_PointerTott__Mpeg4Configuration: - return soap_in_PointerTott__Mpeg4Configuration(soap, tag, NULL, "tt:Mpeg4Configuration"); - case SOAP_TYPE_PointerTott__VideoRateControl: - return soap_in_PointerTott__VideoRateControl(soap, tag, NULL, "tt:VideoRateControl"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension: - return soap_in_PointerTott__VideoSourceConfigurationExtension(soap, tag, NULL, "tt:VideoSourceConfigurationExtension"); - case SOAP_TYPE_PointerTott__IntRectangle: - return soap_in_PointerTott__IntRectangle(soap, tag, NULL, "tt:IntRectangle"); - case SOAP_TYPE_PointerTott__VideoSourceExtension: - return soap_in_PointerTott__VideoSourceExtension(soap, tag, NULL, "tt:VideoSourceExtension"); - case SOAP_TYPE_PointerTott__ImagingSettings: - return soap_in_PointerTott__ImagingSettings(soap, tag, NULL, "tt:ImagingSettings"); - case SOAP_TYPE_PointerTowstop__Documentation: - return soap_in_PointerTowstop__Documentation(soap, tag, NULL, "wstop:Documentation"); - case SOAP_TYPE_PointerTott__FindMetadataResultList: - return soap_in_PointerTott__FindMetadataResultList(soap, tag, NULL, "tt:FindMetadataResultList"); - case SOAP_TYPE_PointerTott__MetadataFilter: - return soap_in_PointerTott__MetadataFilter(soap, tag, NULL, "tt:MetadataFilter"); - case SOAP_TYPE_PointerTott__FindPTZPositionResultList: - return soap_in_PointerTott__FindPTZPositionResultList(soap, tag, NULL, "tt:FindPTZPositionResultList"); - case SOAP_TYPE_PointerTott__PTZPositionFilter: - return soap_in_PointerTott__PTZPositionFilter(soap, tag, NULL, "tt:PTZPositionFilter"); - case SOAP_TYPE_PointerTott__FindEventResultList: - return soap_in_PointerTott__FindEventResultList(soap, tag, NULL, "tt:FindEventResultList"); - case SOAP_TYPE_PointerTott__EventFilter: - return soap_in_PointerTott__EventFilter(soap, tag, NULL, "tt:EventFilter"); - case SOAP_TYPE_PointerTott__FindRecordingResultList: - return soap_in_PointerTott__FindRecordingResultList(soap, tag, NULL, "tt:FindRecordingResultList"); - case SOAP_TYPE_PointerTott__MediaAttributes: - return soap_in_PointerTott__MediaAttributes(soap, tag, NULL, "tt:MediaAttributes"); - case SOAP_TYPE_PointerTott__RecordingSummary: - return soap_in_PointerTott__RecordingSummary(soap, tag, NULL, "tt:RecordingSummary"); - case SOAP_TYPE_PointerTotse__Capabilities: - return soap_in_PointerTotse__Capabilities(soap, tag, NULL, "tse:Capabilities"); - case SOAP_TYPE_PointerTott__ReplayConfiguration: - return soap_in_PointerTott__ReplayConfiguration(soap, tag, NULL, "tt:ReplayConfiguration"); - case SOAP_TYPE_PointerTotrp__Capabilities: - return soap_in_PointerTotrp__Capabilities(soap, tag, NULL, "trp:Capabilities"); - case SOAP_TYPE_PointerTott__ArrayOfFileProgress: - return soap_in_PointerTott__ArrayOfFileProgress(soap, tag, NULL, "tt:ArrayOfFileProgress"); - case SOAP_TYPE_PointerTo_trc__ExportRecordedDataResponse_Extension: - return soap_in_PointerTo_trc__ExportRecordedDataResponse_Extension(soap, tag, NULL, "trc:ExportRecordedDataResponse-Extension"); - case SOAP_TYPE_PointerTott__StorageReferencePath: - return soap_in_PointerTott__StorageReferencePath(soap, tag, NULL, "tt:StorageReferencePath"); - case SOAP_TYPE_PointerTott__SearchScope: - return soap_in_PointerTott__SearchScope(soap, tag, NULL, "tt:SearchScope"); - case SOAP_TYPE_PointerTotrc__RecordingOptions: - return soap_in_PointerTotrc__RecordingOptions(soap, tag, NULL, "trc:RecordingOptions"); - case SOAP_TYPE_PointerTott__RecordingJobStateInformation: - return soap_in_PointerTott__RecordingJobStateInformation(soap, tag, NULL, "tt:RecordingJobStateInformation"); - case SOAP_TYPE_PointerTott__GetRecordingJobsResponseItem: - return soap_in_PointerTott__GetRecordingJobsResponseItem(soap, tag, NULL, "tt:GetRecordingJobsResponseItem"); - case SOAP_TYPE_PointerTott__GetRecordingsResponseItem: - return soap_in_PointerTott__GetRecordingsResponseItem(soap, tag, NULL, "tt:GetRecordingsResponseItem"); - case SOAP_TYPE_PointerTotrc__Capabilities: - return soap_in_PointerTotrc__Capabilities(soap, tag, NULL, "trc:Capabilities"); - case SOAP_TYPE_PointerTotrc__TrackOptions: - return soap_in_PointerTotrc__TrackOptions(soap, tag, NULL, "trc:TrackOptions"); - case SOAP_TYPE_PointerTotrc__JobOptions: - return soap_in_PointerTotrc__JobOptions(soap, tag, NULL, "trc:JobOptions"); - case SOAP_TYPE_PointerTotrc__EncodingTypes: - return soap_in_PointerTotrc__EncodingTypes(soap, tag, NULL, "trc:EncodingTypes"); - case SOAP_TYPE_PointerTott__ReceiverStateInformation: - return soap_in_PointerTott__ReceiverStateInformation(soap, tag, NULL, "tt:ReceiverStateInformation"); - case SOAP_TYPE_PointerTott__Receiver: - return soap_in_PointerTott__Receiver(soap, tag, NULL, "tt:Receiver"); - case SOAP_TYPE_PointerTotrv__Capabilities: - return soap_in_PointerTotrv__Capabilities(soap, tag, NULL, "trv:Capabilities"); - case SOAP_TYPE_PointerTott__PTZPresetTourOptions: - return soap_in_PointerTott__PTZPresetTourOptions(soap, tag, NULL, "tt:PTZPresetTourOptions"); - case SOAP_TYPE_PointerTott__PresetTour: - return soap_in_PointerTott__PresetTour(soap, tag, NULL, "tt:PresetTour"); - case SOAP_TYPE_PointerTott__PTZStatus: - return soap_in_PointerTott__PTZStatus(soap, tag, NULL, "tt:PTZStatus"); - case SOAP_TYPE_PointerTott__PTZPreset: - return soap_in_PointerTott__PTZPreset(soap, tag, NULL, "tt:PTZPreset"); - case SOAP_TYPE_PointerTott__PTZConfigurationOptions: - return soap_in_PointerTott__PTZConfigurationOptions(soap, tag, NULL, "tt:PTZConfigurationOptions"); - case SOAP_TYPE_PointerTott__PTZNode: - return soap_in_PointerTott__PTZNode(soap, tag, NULL, "tt:PTZNode"); - case SOAP_TYPE_PointerTotptz__Capabilities: - return soap_in_PointerTotptz__Capabilities(soap, tag, NULL, "tptz:Capabilities"); - case SOAP_TYPE_PointerTott__OSDConfigurationOptions: - return soap_in_PointerTott__OSDConfigurationOptions(soap, tag, NULL, "tt:OSDConfigurationOptions"); - case SOAP_TYPE_PointerTott__OSDConfiguration: - return soap_in_PointerTott__OSDConfiguration(soap, tag, NULL, "tt:OSDConfiguration"); - case SOAP_TYPE_PointerTotrt__VideoSourceMode: - return soap_in_PointerTotrt__VideoSourceMode(soap, tag, NULL, "trt:VideoSourceMode"); - case SOAP_TYPE_PointerTott__MediaUri: - return soap_in_PointerTott__MediaUri(soap, tag, NULL, "tt:MediaUri"); - case SOAP_TYPE_PointerTott__MetadataConfigurationOptions: - return soap_in_PointerTott__MetadataConfigurationOptions(soap, tag, NULL, "tt:MetadataConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoEncoderConfigurationOptions: - return soap_in_PointerTott__VideoEncoderConfigurationOptions(soap, tag, NULL, "tt:VideoEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__Profile: - return soap_in_PointerTott__Profile(soap, tag, NULL, "tt:Profile"); - case SOAP_TYPE_PointerTott__AudioOutput: - return soap_in_PointerTott__AudioOutput(soap, tag, NULL, "tt:AudioOutput"); - case SOAP_TYPE_PointerTott__AudioSource: - return soap_in_PointerTott__AudioSource(soap, tag, NULL, "tt:AudioSource"); - case SOAP_TYPE_PointerTott__VideoSource: - return soap_in_PointerTott__VideoSource(soap, tag, NULL, "tt:VideoSource"); - case SOAP_TYPE_PointerTotrt__Capabilities: - return soap_in_PointerTotrt__Capabilities(soap, tag, NULL, "trt:Capabilities"); - case SOAP_TYPE_PointerTotrt__VideoSourceModeExtension: - return soap_in_PointerTotrt__VideoSourceModeExtension(soap, tag, NULL, "trt:VideoSourceModeExtension"); - case SOAP_TYPE_PointerTott__Description: - return soap_in_PointerTott__Description(soap, tag, NULL, "tt:Description"); - case SOAP_TYPE_PointerTotrt__StreamingCapabilities: - return soap_in_PointerTotrt__StreamingCapabilities(soap, tag, NULL, "trt:StreamingCapabilities"); - case SOAP_TYPE_PointerTotrt__ProfileCapabilities: - return soap_in_PointerTotrt__ProfileCapabilities(soap, tag, NULL, "trt:ProfileCapabilities"); - case SOAP_TYPE_PointerTotimg__ImagingPreset: - return soap_in_PointerTotimg__ImagingPreset(soap, tag, NULL, "timg:ImagingPreset"); - case SOAP_TYPE_PointerTott__ImagingStatus20: - return soap_in_PointerTott__ImagingStatus20(soap, tag, NULL, "tt:ImagingStatus20"); - case SOAP_TYPE_PointerTott__MoveOptions20: - return soap_in_PointerTott__MoveOptions20(soap, tag, NULL, "tt:MoveOptions20"); - case SOAP_TYPE_PointerTott__FocusMove: - return soap_in_PointerTott__FocusMove(soap, tag, NULL, "tt:FocusMove"); - case SOAP_TYPE_PointerTott__ImagingOptions20: - return soap_in_PointerTott__ImagingOptions20(soap, tag, NULL, "tt:ImagingOptions20"); - case SOAP_TYPE_PointerTotimg__Capabilities: - return soap_in_PointerTotimg__Capabilities(soap, tag, NULL, "timg:Capabilities"); - case SOAP_TYPE_PointerTott__PaneConfiguration: - return soap_in_PointerTott__PaneConfiguration(soap, tag, NULL, "tt:PaneConfiguration"); - case SOAP_TYPE_PointerTott__CodingCapabilities: - return soap_in_PointerTott__CodingCapabilities(soap, tag, NULL, "tt:CodingCapabilities"); - case SOAP_TYPE_PointerTott__LayoutOptions: - return soap_in_PointerTott__LayoutOptions(soap, tag, NULL, "tt:LayoutOptions"); - case SOAP_TYPE_PointerTott__Layout: - return soap_in_PointerTott__Layout(soap, tag, NULL, "tt:Layout"); - case SOAP_TYPE_PointerTotls__Capabilities: - return soap_in_PointerTotls__Capabilities(soap, tag, NULL, "tls:Capabilities"); - case SOAP_TYPE_PointerTott__LocationEntity: - return soap_in_PointerTott__LocationEntity(soap, tag, NULL, "tt:LocationEntity"); - case SOAP_TYPE_PointerTotds__StorageConfigurationData: - return soap_in_PointerTotds__StorageConfigurationData(soap, tag, NULL, "tds:StorageConfigurationData"); - case SOAP_TYPE_PointerTotds__StorageConfiguration: - return soap_in_PointerTotds__StorageConfiguration(soap, tag, NULL, "tds:StorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetSystemUrisResponse_Extension: - return soap_in_PointerTo_tds__GetSystemUrisResponse_Extension(soap, tag, NULL, "tds:GetSystemUrisResponse-Extension"); - case SOAP_TYPE_PointerTott__SystemLogUriList: - return soap_in_PointerTott__SystemLogUriList(soap, tag, NULL, "tt:SystemLogUriList"); - case SOAP_TYPE_PointerTott__Dot11AvailableNetworks: - return soap_in_PointerTott__Dot11AvailableNetworks(soap, tag, NULL, "tt:Dot11AvailableNetworks"); - case SOAP_TYPE_PointerTott__Dot11Status: - return soap_in_PointerTott__Dot11Status(soap, tag, NULL, "tt:Dot11Status"); - case SOAP_TYPE_PointerTott__Dot11Capabilities: - return soap_in_PointerTott__Dot11Capabilities(soap, tag, NULL, "tt:Dot11Capabilities"); - case SOAP_TYPE_PointerTott__AuxiliaryData: - return soap_in_PointerTott__AuxiliaryData(soap, tag, NULL, "tt:AuxiliaryData"); - case SOAP_TYPE_PointerTott__RelayOutputSettings: - return soap_in_PointerTott__RelayOutputSettings(soap, tag, NULL, "tt:RelayOutputSettings"); - case SOAP_TYPE_PointerTott__Dot1XConfiguration: - return soap_in_PointerTott__Dot1XConfiguration(soap, tag, NULL, "tt:Dot1XConfiguration"); - case SOAP_TYPE_PointerTott__CertificateInformation: - return soap_in_PointerTott__CertificateInformation(soap, tag, NULL, "tt:CertificateInformation"); - case SOAP_TYPE_PointerTott__CertificateWithPrivateKey: - return soap_in_PointerTott__CertificateWithPrivateKey(soap, tag, NULL, "tt:CertificateWithPrivateKey"); - case SOAP_TYPE_PointerTott__CertificateStatus: - return soap_in_PointerTott__CertificateStatus(soap, tag, NULL, "tt:CertificateStatus"); - case SOAP_TYPE_PointerTott__Certificate: - return soap_in_PointerTott__Certificate(soap, tag, NULL, "tt:Certificate"); - case SOAP_TYPE_PointerTott__IPAddressFilter: - return soap_in_PointerTott__IPAddressFilter(soap, tag, NULL, "tt:IPAddressFilter"); - case SOAP_TYPE_PointerTott__NetworkGateway: - return soap_in_PointerTott__NetworkGateway(soap, tag, NULL, "tt:NetworkGateway"); - case SOAP_TYPE_PointerTott__NetworkProtocol: - return soap_in_PointerTott__NetworkProtocol(soap, tag, NULL, "tt:NetworkProtocol"); - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfiguration: - return soap_in_PointerTott__NetworkInterfaceSetConfiguration(soap, tag, NULL, "tt:NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_PointerTott__NetworkInterface: - return soap_in_PointerTott__NetworkInterface(soap, tag, NULL, "tt:NetworkInterface"); - case SOAP_TYPE_PointerTott__DynamicDNSInformation: - return soap_in_PointerTott__DynamicDNSInformation(soap, tag, NULL, "tt:DynamicDNSInformation"); - case SOAP_TYPE_PointerTott__NTPInformation: - return soap_in_PointerTott__NTPInformation(soap, tag, NULL, "tt:NTPInformation"); - case SOAP_TYPE_PointerTott__DNSInformation: - return soap_in_PointerTott__DNSInformation(soap, tag, NULL, "tt:DNSInformation"); - case SOAP_TYPE_PointerTott__HostnameInformation: - return soap_in_PointerTott__HostnameInformation(soap, tag, NULL, "tt:HostnameInformation"); - case SOAP_TYPE_PointerTott__Capabilities: - return soap_in_PointerTott__Capabilities(soap, tag, NULL, "tt:Capabilities"); - case SOAP_TYPE_PointerTott__User: - return soap_in_PointerTott__User(soap, tag, NULL, "tt:User"); - case SOAP_TYPE_PointerTott__RemoteUser: - return soap_in_PointerTott__RemoteUser(soap, tag, NULL, "tt:RemoteUser"); - case SOAP_TYPE_PointerTott__Scope: - return soap_in_PointerTott__Scope(soap, tag, NULL, "tt:Scope"); - case SOAP_TYPE_PointerTott__SystemLog: - return soap_in_PointerTott__SystemLog(soap, tag, NULL, "tt:SystemLog"); - case SOAP_TYPE_PointerTott__SupportInformation: - return soap_in_PointerTott__SupportInformation(soap, tag, NULL, "tt:SupportInformation"); - case SOAP_TYPE_PointerTott__BackupFile: - return soap_in_PointerTott__BackupFile(soap, tag, NULL, "tt:BackupFile"); - case SOAP_TYPE_PointerTott__SystemDateTime: - return soap_in_PointerTott__SystemDateTime(soap, tag, NULL, "tt:SystemDateTime"); - case SOAP_TYPE_PointerTotds__DeviceServiceCapabilities: - return soap_in_PointerTotds__DeviceServiceCapabilities(soap, tag, NULL, "tds:DeviceServiceCapabilities"); - case SOAP_TYPE_PointerTotds__Service: - return soap_in_PointerTotds__Service(soap, tag, NULL, "tds:Service"); - case SOAP_TYPE_PointerTo_tds__StorageConfigurationData_Extension: - return soap_in_PointerTo_tds__StorageConfigurationData_Extension(soap, tag, NULL, "tds:StorageConfigurationData-Extension"); - case SOAP_TYPE_PointerTotds__UserCredential: - return soap_in_PointerTotds__UserCredential(soap, tag, NULL, "tds:UserCredential"); - case SOAP_TYPE_PointerTo_tds__UserCredential_Extension: - return soap_in_PointerTo_tds__UserCredential_Extension(soap, tag, NULL, "tds:UserCredential-Extension"); - case SOAP_TYPE_PointerTotds__EAPMethodTypes: - return soap_in_PointerTotds__EAPMethodTypes(soap, tag, NULL, "tds:EAPMethodTypes"); - case SOAP_TYPE_PointerTotds__MiscCapabilities: - return soap_in_PointerTotds__MiscCapabilities(soap, tag, NULL, "tds:MiscCapabilities"); - case SOAP_TYPE_PointerTotds__SystemCapabilities: - return soap_in_PointerTotds__SystemCapabilities(soap, tag, NULL, "tds:SystemCapabilities"); - case SOAP_TYPE_PointerTotds__SecurityCapabilities: - return soap_in_PointerTotds__SecurityCapabilities(soap, tag, NULL, "tds:SecurityCapabilities"); - case SOAP_TYPE_PointerTotds__NetworkCapabilities: - return soap_in_PointerTotds__NetworkCapabilities(soap, tag, NULL, "tds:NetworkCapabilities"); - case SOAP_TYPE_PointerTo_tds__Service_Capabilities: - return soap_in_PointerTo_tds__Service_Capabilities(soap, tag, NULL, "tds:Service-Capabilities"); - case SOAP_TYPE_PointerTotmd__SerialData: - return soap_in_PointerTotmd__SerialData(soap, tag, NULL, "tmd:SerialData"); - case SOAP_TYPE_PointerTotmd__SerialPortConfigurationOptions: - return soap_in_PointerTotmd__SerialPortConfigurationOptions(soap, tag, NULL, "tmd:SerialPortConfigurationOptions"); - case SOAP_TYPE_PointerTotmd__SerialPortConfiguration: - return soap_in_PointerTotmd__SerialPortConfiguration(soap, tag, NULL, "tmd:SerialPortConfiguration"); - case SOAP_TYPE_PointerTotmd__SerialPort: - return soap_in_PointerTotmd__SerialPort(soap, tag, NULL, "tmd:SerialPort"); - case SOAP_TYPE_PointerTotmd__DigitalInputConfigurationInputOptions: - return soap_in_PointerTotmd__DigitalInputConfigurationInputOptions(soap, tag, NULL, "tmd:DigitalInputConfigurationInputOptions"); - case SOAP_TYPE_PointerTott__DigitalInput: - return soap_in_PointerTott__DigitalInput(soap, tag, NULL, "tt:DigitalInput"); - case SOAP_TYPE_PointerTott__RelayOutput: - return soap_in_PointerTott__RelayOutput(soap, tag, NULL, "tt:RelayOutput"); - case SOAP_TYPE_PointerTott__AudioOutputConfigurationOptions: - return soap_in_PointerTott__AudioOutputConfigurationOptions(soap, tag, NULL, "tt:AudioOutputConfigurationOptions"); - case SOAP_TYPE_PointerTott__AudioSourceConfigurationOptions: - return soap_in_PointerTott__AudioSourceConfigurationOptions(soap, tag, NULL, "tt:AudioSourceConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoOutputConfigurationOptions: - return soap_in_PointerTott__VideoOutputConfigurationOptions(soap, tag, NULL, "tt:VideoOutputConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptions: - return soap_in_PointerTott__VideoSourceConfigurationOptions(soap, tag, NULL, "tt:VideoSourceConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoOutputConfiguration: - return soap_in_PointerTott__VideoOutputConfiguration(soap, tag, NULL, "tt:VideoOutputConfiguration"); - case SOAP_TYPE_PointerTott__VideoOutput: - return soap_in_PointerTott__VideoOutput(soap, tag, NULL, "tt:VideoOutput"); - case SOAP_TYPE_PointerTotmd__RelayOutputOptions: - return soap_in_PointerTotmd__RelayOutputOptions(soap, tag, NULL, "tmd:RelayOutputOptions"); - case SOAP_TYPE_PointerTotmd__Capabilities: - return soap_in_PointerTotmd__Capabilities(soap, tag, NULL, "tmd:Capabilities"); - case SOAP_TYPE_PointerToxsd__base64Binary: - return soap_in_PointerToxsd__base64Binary(soap, tag, NULL, "xsd:base64Binary"); - case SOAP_TYPE_PointerTotmd__RelayOutputOptionsExtension: - return soap_in_PointerTotmd__RelayOutputOptionsExtension(soap, tag, NULL, "tmd:RelayOutputOptionsExtension"); - case SOAP_TYPE_PointerTotmd__DelayTimes: - return soap_in_PointerTotmd__DelayTimes(soap, tag, NULL, "tmd:DelayTimes"); - case SOAP_TYPE_PointerTott__PropertyOperation: - return soap_in_PointerTott__PropertyOperation(soap, tag, NULL, "tt:PropertyOperation"); - case SOAP_TYPE_PointerTott__MessageExtension: - return soap_in_PointerTott__MessageExtension(soap, tag, NULL, "tt:MessageExtension"); - case SOAP_TYPE_PointerTott__StorageReferencePathExtension: - return soap_in_PointerTott__StorageReferencePathExtension(soap, tag, NULL, "tt:StorageReferencePathExtension"); - case SOAP_TYPE_PointerTott__ArrayOfFileProgressExtension: - return soap_in_PointerTott__ArrayOfFileProgressExtension(soap, tag, NULL, "tt:ArrayOfFileProgressExtension"); - case SOAP_TYPE_PointerTott__FileProgress: - return soap_in_PointerTott__FileProgress(soap, tag, NULL, "tt:FileProgress"); - case SOAP_TYPE_PointerTott__OSDConfigurationOptionsExtension: - return soap_in_PointerTott__OSDConfigurationOptionsExtension(soap, tag, NULL, "tt:OSDConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__OSDImgOptions: - return soap_in_PointerTott__OSDImgOptions(soap, tag, NULL, "tt:OSDImgOptions"); - case SOAP_TYPE_PointerTott__OSDTextOptions: - return soap_in_PointerTott__OSDTextOptions(soap, tag, NULL, "tt:OSDTextOptions"); - case SOAP_TYPE_PointerTott__MaximumNumberOfOSDs: - return soap_in_PointerTott__MaximumNumberOfOSDs(soap, tag, NULL, "tt:MaximumNumberOfOSDs"); - case SOAP_TYPE_PointerTott__OSDImgOptionsExtension: - return soap_in_PointerTott__OSDImgOptionsExtension(soap, tag, NULL, "tt:OSDImgOptionsExtension"); - case SOAP_TYPE_PointerTott__OSDTextOptionsExtension: - return soap_in_PointerTott__OSDTextOptionsExtension(soap, tag, NULL, "tt:OSDTextOptionsExtension"); - case SOAP_TYPE_PointerTott__OSDColorOptions: - return soap_in_PointerTott__OSDColorOptions(soap, tag, NULL, "tt:OSDColorOptions"); - case SOAP_TYPE_PointerTott__OSDColorOptionsExtension: - return soap_in_PointerTott__OSDColorOptionsExtension(soap, tag, NULL, "tt:OSDColorOptionsExtension"); - case SOAP_TYPE_PointerTott__ColorOptions: - return soap_in_PointerTott__ColorOptions(soap, tag, NULL, "tt:ColorOptions"); - case SOAP_TYPE_PointerTott__ColorspaceRange: - return soap_in_PointerTott__ColorspaceRange(soap, tag, NULL, "tt:ColorspaceRange"); - case SOAP_TYPE_PointerTott__OSDImgConfigurationExtension: - return soap_in_PointerTott__OSDImgConfigurationExtension(soap, tag, NULL, "tt:OSDImgConfigurationExtension"); - case SOAP_TYPE_PointerTott__OSDTextConfigurationExtension: - return soap_in_PointerTott__OSDTextConfigurationExtension(soap, tag, NULL, "tt:OSDTextConfigurationExtension"); - case SOAP_TYPE_PointerTott__OSDColor: - return soap_in_PointerTott__OSDColor(soap, tag, NULL, "tt:OSDColor"); - case SOAP_TYPE_PointerTott__OSDPosConfigurationExtension: - return soap_in_PointerTott__OSDPosConfigurationExtension(soap, tag, NULL, "tt:OSDPosConfigurationExtension"); - case SOAP_TYPE_PointerTott__ProfileStatusExtension: - return soap_in_PointerTott__ProfileStatusExtension(soap, tag, NULL, "tt:ProfileStatusExtension"); - case SOAP_TYPE_PointerTott__ActiveConnection: - return soap_in_PointerTott__ActiveConnection(soap, tag, NULL, "tt:ActiveConnection"); - case SOAP_TYPE_PointerTott__AudioClassDescriptorExtension: - return soap_in_PointerTott__AudioClassDescriptorExtension(soap, tag, NULL, "tt:AudioClassDescriptorExtension"); - case SOAP_TYPE_PointerTott__AudioClassCandidate: - return soap_in_PointerTott__AudioClassCandidate(soap, tag, NULL, "tt:AudioClassCandidate"); - case SOAP_TYPE_PointerTott__ActionEngineEventPayloadExtension: - return soap_in_PointerTott__ActionEngineEventPayloadExtension(soap, tag, NULL, "tt:ActionEngineEventPayloadExtension"); - case SOAP_TYPE_PointerToSOAP_ENV__Envelope: - return soap_in_PointerToSOAP_ENV__Envelope(soap, tag, NULL, "SOAP-ENV:Envelope"); - case SOAP_TYPE_PointerTott__AnalyticsState: - return soap_in_PointerTott__AnalyticsState(soap, tag, NULL, "tt:AnalyticsState"); - case SOAP_TYPE_PointerTott__MetadataInputExtension: - return soap_in_PointerTott__MetadataInputExtension(soap, tag, NULL, "tt:MetadataInputExtension"); - case SOAP_TYPE_PointerTott__SourceIdentificationExtension: - return soap_in_PointerTott__SourceIdentificationExtension(soap, tag, NULL, "tt:SourceIdentificationExtension"); - case SOAP_TYPE_PointerTott__AnalyticsEngineInputInfoExtension: - return soap_in_PointerTott__AnalyticsEngineInputInfoExtension(soap, tag, NULL, "tt:AnalyticsEngineInputInfoExtension"); - case SOAP_TYPE_PointerTott__AnalyticsEngineInputInfo: - return soap_in_PointerTott__AnalyticsEngineInputInfo(soap, tag, NULL, "tt:AnalyticsEngineInputInfo"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfigurationExtension: - return soap_in_PointerTott__AnalyticsDeviceEngineConfigurationExtension(soap, tag, NULL, "tt:AnalyticsDeviceEngineConfigurationExtension"); - case SOAP_TYPE_PointerTott__EngineConfiguration: - return soap_in_PointerTott__EngineConfiguration(soap, tag, NULL, "tt:EngineConfiguration"); - case SOAP_TYPE_PointerTott__RecordingJobConfiguration: - return soap_in_PointerTott__RecordingJobConfiguration(soap, tag, NULL, "tt:RecordingJobConfiguration"); - case SOAP_TYPE_PointerTott__RecordingJobStateTrack: - return soap_in_PointerTott__RecordingJobStateTrack(soap, tag, NULL, "tt:RecordingJobStateTrack"); - case SOAP_TYPE_PointerTott__RecordingJobStateTracks: - return soap_in_PointerTott__RecordingJobStateTracks(soap, tag, NULL, "tt:RecordingJobStateTracks"); - case SOAP_TYPE_PointerTott__RecordingJobStateInformationExtension: - return soap_in_PointerTott__RecordingJobStateInformationExtension(soap, tag, NULL, "tt:RecordingJobStateInformationExtension"); - case SOAP_TYPE_PointerTott__RecordingJobStateSource: - return soap_in_PointerTott__RecordingJobStateSource(soap, tag, NULL, "tt:RecordingJobStateSource"); - case SOAP_TYPE_PointerTott__RecordingJobSourceExtension: - return soap_in_PointerTott__RecordingJobSourceExtension(soap, tag, NULL, "tt:RecordingJobSourceExtension"); - case SOAP_TYPE_PointerTott__RecordingJobTrack: - return soap_in_PointerTott__RecordingJobTrack(soap, tag, NULL, "tt:RecordingJobTrack"); - case SOAP_TYPE_PointerTott__RecordingJobConfigurationExtension: - return soap_in_PointerTott__RecordingJobConfigurationExtension(soap, tag, NULL, "tt:RecordingJobConfigurationExtension"); - case SOAP_TYPE_PointerTott__RecordingJobSource: - return soap_in_PointerTott__RecordingJobSource(soap, tag, NULL, "tt:RecordingJobSource"); - case SOAP_TYPE_PointerTott__TrackConfiguration: - return soap_in_PointerTott__TrackConfiguration(soap, tag, NULL, "tt:TrackConfiguration"); - case SOAP_TYPE_PointerTott__GetTracksResponseItem: - return soap_in_PointerTott__GetTracksResponseItem(soap, tag, NULL, "tt:GetTracksResponseItem"); - case SOAP_TYPE_PointerTott__GetTracksResponseList: - return soap_in_PointerTott__GetTracksResponseList(soap, tag, NULL, "tt:GetTracksResponseList"); - case SOAP_TYPE_PointerTott__RecordingConfiguration: - return soap_in_PointerTott__RecordingConfiguration(soap, tag, NULL, "tt:RecordingConfiguration"); - case SOAP_TYPE_PointerTott__TrackAttributesExtension: - return soap_in_PointerTott__TrackAttributesExtension(soap, tag, NULL, "tt:TrackAttributesExtension"); - case SOAP_TYPE_PointerTott__MetadataAttributes: - return soap_in_PointerTott__MetadataAttributes(soap, tag, NULL, "tt:MetadataAttributes"); - case SOAP_TYPE_PointerTott__AudioAttributes: - return soap_in_PointerTott__AudioAttributes(soap, tag, NULL, "tt:AudioAttributes"); - case SOAP_TYPE_PointerTott__VideoAttributes: - return soap_in_PointerTott__VideoAttributes(soap, tag, NULL, "tt:VideoAttributes"); - case SOAP_TYPE_PointerTott__TrackAttributes: - return soap_in_PointerTott__TrackAttributes(soap, tag, NULL, "tt:TrackAttributes"); - case SOAP_TYPE_PointerTott__TrackInformation: - return soap_in_PointerTott__TrackInformation(soap, tag, NULL, "tt:TrackInformation"); - case SOAP_TYPE_PointerTott__RecordingSourceInformation: - return soap_in_PointerTott__RecordingSourceInformation(soap, tag, NULL, "tt:RecordingSourceInformation"); - case SOAP_TYPE_PointerTott__FindMetadataResult: - return soap_in_PointerTott__FindMetadataResult(soap, tag, NULL, "tt:FindMetadataResult"); - case SOAP_TYPE_PointerTott__FindPTZPositionResult: - return soap_in_PointerTott__FindPTZPositionResult(soap, tag, NULL, "tt:FindPTZPositionResult"); - case SOAP_TYPE_PointerTott__FindEventResult: - return soap_in_PointerTott__FindEventResult(soap, tag, NULL, "tt:FindEventResult"); - case SOAP_TYPE_PointerTott__RecordingInformation: - return soap_in_PointerTott__RecordingInformation(soap, tag, NULL, "tt:RecordingInformation"); - case SOAP_TYPE_PointerTott__SearchScopeExtension: - return soap_in_PointerTott__SearchScopeExtension(soap, tag, NULL, "tt:SearchScopeExtension"); - case SOAP_TYPE_PointerTott__XPathExpression: - return soap_in_PointerTott__XPathExpression(soap, tag, NULL, "tt:XPathExpression"); - case SOAP_TYPE_PointerTott__SourceReference: - return soap_in_PointerTott__SourceReference(soap, tag, NULL, "tt:SourceReference"); - case SOAP_TYPE_PointerTott__StreamSetup: - return soap_in_PointerTott__StreamSetup(soap, tag, NULL, "tt:StreamSetup"); - case SOAP_TYPE_PointerTott__ReceiverConfiguration: - return soap_in_PointerTott__ReceiverConfiguration(soap, tag, NULL, "tt:ReceiverConfiguration"); - case SOAP_TYPE_PointerTott__PaneOptionExtension: - return soap_in_PointerTott__PaneOptionExtension(soap, tag, NULL, "tt:PaneOptionExtension"); - case SOAP_TYPE_PointerTott__LayoutOptionsExtension: - return soap_in_PointerTott__LayoutOptionsExtension(soap, tag, NULL, "tt:LayoutOptionsExtension"); - case SOAP_TYPE_PointerTott__PaneLayoutOptions: - return soap_in_PointerTott__PaneLayoutOptions(soap, tag, NULL, "tt:PaneLayoutOptions"); - case SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptions: - return soap_in_PointerTott__VideoDecoderConfigurationOptions(soap, tag, NULL, "tt:VideoDecoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptions: - return soap_in_PointerTott__AudioDecoderConfigurationOptions(soap, tag, NULL, "tt:AudioDecoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__AudioEncoderConfigurationOptions: - return soap_in_PointerTott__AudioEncoderConfigurationOptions(soap, tag, NULL, "tt:AudioEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__LayoutExtension: - return soap_in_PointerTott__LayoutExtension(soap, tag, NULL, "tt:LayoutExtension"); - case SOAP_TYPE_PointerTott__PaneLayout: - return soap_in_PointerTott__PaneLayout(soap, tag, NULL, "tt:PaneLayout"); - case SOAP_TYPE_PointerTott__Transformation: - return soap_in_PointerTott__Transformation(soap, tag, NULL, "tt:Transformation"); - case SOAP_TYPE_PointerTott__MotionExpression: - return soap_in_PointerTott__MotionExpression(soap, tag, NULL, "tt:MotionExpression"); - case SOAP_TYPE_PointerTott__PolylineArray: - return soap_in_PointerTott__PolylineArray(soap, tag, NULL, "tt:PolylineArray"); - case SOAP_TYPE_PointerTott__PolylineArrayExtension: - return soap_in_PointerTott__PolylineArrayExtension(soap, tag, NULL, "tt:PolylineArrayExtension"); - case SOAP_TYPE_PointerTott__Polyline: - return soap_in_PointerTott__Polyline(soap, tag, NULL, "tt:Polyline"); - case SOAP_TYPE_PointerTott__SupportedAnalyticsModulesExtension: - return soap_in_PointerTott__SupportedAnalyticsModulesExtension(soap, tag, NULL, "tt:SupportedAnalyticsModulesExtension"); - case SOAP_TYPE_PointerTott__SupportedRulesExtension: - return soap_in_PointerTott__SupportedRulesExtension(soap, tag, NULL, "tt:SupportedRulesExtension"); - case SOAP_TYPE_PointerTott__ConfigDescription: - return soap_in_PointerTott__ConfigDescription(soap, tag, NULL, "tt:ConfigDescription"); - case SOAP_TYPE_PointerToxsd__integer: - return soap_in_PointerToxsd__integer(soap, tag, NULL, "xsd:integer"); - case SOAP_TYPE_PointerTott__ConfigDescriptionExtension: - return soap_in_PointerTott__ConfigDescriptionExtension(soap, tag, NULL, "tt:ConfigDescriptionExtension"); - case SOAP_TYPE_PointerTott__ItemList: - return soap_in_PointerTott__ItemList(soap, tag, NULL, "tt:ItemList"); - case SOAP_TYPE_PointerTott__RuleEngineConfigurationExtension: - return soap_in_PointerTott__RuleEngineConfigurationExtension(soap, tag, NULL, "tt:RuleEngineConfigurationExtension"); - case SOAP_TYPE_PointerTott__AnalyticsEngineConfigurationExtension: - return soap_in_PointerTott__AnalyticsEngineConfigurationExtension(soap, tag, NULL, "tt:AnalyticsEngineConfigurationExtension"); - case SOAP_TYPE_PointerTott__Config: - return soap_in_PointerTott__Config(soap, tag, NULL, "tt:Config"); - case SOAP_TYPE_PointerTott__ItemListDescriptionExtension: - return soap_in_PointerTott__ItemListDescriptionExtension(soap, tag, NULL, "tt:ItemListDescriptionExtension"); - case SOAP_TYPE_PointerTott__MessageDescriptionExtension: - return soap_in_PointerTott__MessageDescriptionExtension(soap, tag, NULL, "tt:MessageDescriptionExtension"); - case SOAP_TYPE_PointerTott__ItemListDescription: - return soap_in_PointerTott__ItemListDescription(soap, tag, NULL, "tt:ItemListDescription"); - case SOAP_TYPE_PointerTott__ItemListExtension: - return soap_in_PointerTott__ItemListExtension(soap, tag, NULL, "tt:ItemListExtension"); - case SOAP_TYPE_PointerTott__FocusOptions20Extension: - return soap_in_PointerTott__FocusOptions20Extension(soap, tag, NULL, "tt:FocusOptions20Extension"); - case SOAP_TYPE_PointerTott__WhiteBalanceOptions20Extension: - return soap_in_PointerTott__WhiteBalanceOptions20Extension(soap, tag, NULL, "tt:WhiteBalanceOptions20Extension"); - case SOAP_TYPE_PointerTott__FocusConfiguration20Extension: - return soap_in_PointerTott__FocusConfiguration20Extension(soap, tag, NULL, "tt:FocusConfiguration20Extension"); - case SOAP_TYPE_PointerTott__WhiteBalance20Extension: - return soap_in_PointerTott__WhiteBalance20Extension(soap, tag, NULL, "tt:WhiteBalance20Extension"); - case SOAP_TYPE_PointerTott__RelativeFocusOptions20: - return soap_in_PointerTott__RelativeFocusOptions20(soap, tag, NULL, "tt:RelativeFocusOptions20"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension: - return soap_in_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag, NULL, "tt:IrCutFilterAutoAdjustmentOptionsExtension"); - case SOAP_TYPE_PointerTott__ImageStabilizationOptionsExtension: - return soap_in_PointerTott__ImageStabilizationOptionsExtension(soap, tag, NULL, "tt:ImageStabilizationOptionsExtension"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension4: - return soap_in_PointerTott__ImagingOptions20Extension4(soap, tag, NULL, "tt:ImagingOptions20Extension4"); - case SOAP_TYPE_PointerTott__NoiseReductionOptions: - return soap_in_PointerTott__NoiseReductionOptions(soap, tag, NULL, "tt:NoiseReductionOptions"); - case SOAP_TYPE_PointerTott__DefoggingOptions: - return soap_in_PointerTott__DefoggingOptions(soap, tag, NULL, "tt:DefoggingOptions"); - case SOAP_TYPE_PointerTott__ToneCompensationOptions: - return soap_in_PointerTott__ToneCompensationOptions(soap, tag, NULL, "tt:ToneCompensationOptions"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension3: - return soap_in_PointerTott__ImagingOptions20Extension3(soap, tag, NULL, "tt:ImagingOptions20Extension3"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptions: - return soap_in_PointerTott__IrCutFilterAutoAdjustmentOptions(soap, tag, NULL, "tt:IrCutFilterAutoAdjustmentOptions"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension2: - return soap_in_PointerTott__ImagingOptions20Extension2(soap, tag, NULL, "tt:ImagingOptions20Extension2"); - case SOAP_TYPE_PointerTott__ImageStabilizationOptions: - return soap_in_PointerTott__ImageStabilizationOptions(soap, tag, NULL, "tt:ImageStabilizationOptions"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension: - return soap_in_PointerTott__ImagingOptions20Extension(soap, tag, NULL, "tt:ImagingOptions20Extension"); - case SOAP_TYPE_PointerTott__WhiteBalanceOptions20: - return soap_in_PointerTott__WhiteBalanceOptions20(soap, tag, NULL, "tt:WhiteBalanceOptions20"); - case SOAP_TYPE_PointerTott__WideDynamicRangeOptions20: - return soap_in_PointerTott__WideDynamicRangeOptions20(soap, tag, NULL, "tt:WideDynamicRangeOptions20"); - case SOAP_TYPE_PointerTott__FocusOptions20: - return soap_in_PointerTott__FocusOptions20(soap, tag, NULL, "tt:FocusOptions20"); - case SOAP_TYPE_PointerTott__ExposureOptions20: - return soap_in_PointerTott__ExposureOptions20(soap, tag, NULL, "tt:ExposureOptions20"); - case SOAP_TYPE_PointerTott__BacklightCompensationOptions20: - return soap_in_PointerTott__BacklightCompensationOptions20(soap, tag, NULL, "tt:BacklightCompensationOptions20"); - case SOAP_TYPE_PointerTott__DefoggingExtension: - return soap_in_PointerTott__DefoggingExtension(soap, tag, NULL, "tt:DefoggingExtension"); - case SOAP_TYPE_PointerTott__ToneCompensationExtension: - return soap_in_PointerTott__ToneCompensationExtension(soap, tag, NULL, "tt:ToneCompensationExtension"); - case SOAP_TYPE_PointerTott__ExposurePriority: - return soap_in_PointerTott__ExposurePriority(soap, tag, NULL, "tt:ExposurePriority"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentExtension: - return soap_in_PointerTott__IrCutFilterAutoAdjustmentExtension(soap, tag, NULL, "tt:IrCutFilterAutoAdjustmentExtension"); - case SOAP_TYPE_PointerTott__ImageStabilizationExtension: - return soap_in_PointerTott__ImageStabilizationExtension(soap, tag, NULL, "tt:ImageStabilizationExtension"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension204: - return soap_in_PointerTott__ImagingSettingsExtension204(soap, tag, NULL, "tt:ImagingSettingsExtension204"); - case SOAP_TYPE_PointerTott__NoiseReduction: - return soap_in_PointerTott__NoiseReduction(soap, tag, NULL, "tt:NoiseReduction"); - case SOAP_TYPE_PointerTott__Defogging: - return soap_in_PointerTott__Defogging(soap, tag, NULL, "tt:Defogging"); - case SOAP_TYPE_PointerTott__ToneCompensation: - return soap_in_PointerTott__ToneCompensation(soap, tag, NULL, "tt:ToneCompensation"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension203: - return soap_in_PointerTott__ImagingSettingsExtension203(soap, tag, NULL, "tt:ImagingSettingsExtension203"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustment: - return soap_in_PointerTott__IrCutFilterAutoAdjustment(soap, tag, NULL, "tt:IrCutFilterAutoAdjustment"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension202: - return soap_in_PointerTott__ImagingSettingsExtension202(soap, tag, NULL, "tt:ImagingSettingsExtension202"); - case SOAP_TYPE_PointerTott__ImageStabilization: - return soap_in_PointerTott__ImageStabilization(soap, tag, NULL, "tt:ImageStabilization"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension20: - return soap_in_PointerTott__ImagingSettingsExtension20(soap, tag, NULL, "tt:ImagingSettingsExtension20"); - case SOAP_TYPE_PointerTott__WhiteBalance20: - return soap_in_PointerTott__WhiteBalance20(soap, tag, NULL, "tt:WhiteBalance20"); - case SOAP_TYPE_PointerTott__WideDynamicRange20: - return soap_in_PointerTott__WideDynamicRange20(soap, tag, NULL, "tt:WideDynamicRange20"); - case SOAP_TYPE_PointerTott__FocusConfiguration20: - return soap_in_PointerTott__FocusConfiguration20(soap, tag, NULL, "tt:FocusConfiguration20"); - case SOAP_TYPE_PointerTott__Exposure20: - return soap_in_PointerTott__Exposure20(soap, tag, NULL, "tt:Exposure20"); - case SOAP_TYPE_PointerTott__BacklightCompensation20: - return soap_in_PointerTott__BacklightCompensation20(soap, tag, NULL, "tt:BacklightCompensation20"); - case SOAP_TYPE_PointerTott__FocusStatus20Extension: - return soap_in_PointerTott__FocusStatus20Extension(soap, tag, NULL, "tt:FocusStatus20Extension"); - case SOAP_TYPE_PointerTott__ImagingStatus20Extension: - return soap_in_PointerTott__ImagingStatus20Extension(soap, tag, NULL, "tt:ImagingStatus20Extension"); - case SOAP_TYPE_PointerTott__FocusStatus20: - return soap_in_PointerTott__FocusStatus20(soap, tag, NULL, "tt:FocusStatus20"); - case SOAP_TYPE_PointerTott__ContinuousFocusOptions: - return soap_in_PointerTott__ContinuousFocusOptions(soap, tag, NULL, "tt:ContinuousFocusOptions"); - case SOAP_TYPE_PointerTott__RelativeFocusOptions: - return soap_in_PointerTott__RelativeFocusOptions(soap, tag, NULL, "tt:RelativeFocusOptions"); - case SOAP_TYPE_PointerTott__AbsoluteFocusOptions: - return soap_in_PointerTott__AbsoluteFocusOptions(soap, tag, NULL, "tt:AbsoluteFocusOptions"); - case SOAP_TYPE_PointerTott__ContinuousFocus: - return soap_in_PointerTott__ContinuousFocus(soap, tag, NULL, "tt:ContinuousFocus"); - case SOAP_TYPE_PointerTott__RelativeFocus: - return soap_in_PointerTott__RelativeFocus(soap, tag, NULL, "tt:RelativeFocus"); - case SOAP_TYPE_PointerTott__AbsoluteFocus: - return soap_in_PointerTott__AbsoluteFocus(soap, tag, NULL, "tt:AbsoluteFocus"); - case SOAP_TYPE_PointerTott__WhiteBalanceOptions: - return soap_in_PointerTott__WhiteBalanceOptions(soap, tag, NULL, "tt:WhiteBalanceOptions"); - case SOAP_TYPE_PointerTott__WideDynamicRangeOptions: - return soap_in_PointerTott__WideDynamicRangeOptions(soap, tag, NULL, "tt:WideDynamicRangeOptions"); - case SOAP_TYPE_PointerTott__FocusOptions: - return soap_in_PointerTott__FocusOptions(soap, tag, NULL, "tt:FocusOptions"); - case SOAP_TYPE_PointerTott__ExposureOptions: - return soap_in_PointerTott__ExposureOptions(soap, tag, NULL, "tt:ExposureOptions"); - case SOAP_TYPE_PointerTott__BacklightCompensationOptions: - return soap_in_PointerTott__BacklightCompensationOptions(soap, tag, NULL, "tt:BacklightCompensationOptions"); - case SOAP_TYPE_PointerTott__Rectangle: - return soap_in_PointerTott__Rectangle(soap, tag, NULL, "tt:Rectangle"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension: - return soap_in_PointerTott__ImagingSettingsExtension(soap, tag, NULL, "tt:ImagingSettingsExtension"); - case SOAP_TYPE_PointerTott__WhiteBalance: - return soap_in_PointerTott__WhiteBalance(soap, tag, NULL, "tt:WhiteBalance"); - case SOAP_TYPE_PointerTott__WideDynamicRange: - return soap_in_PointerTott__WideDynamicRange(soap, tag, NULL, "tt:WideDynamicRange"); - case SOAP_TYPE_PointerTott__IrCutFilterMode: - return soap_in_PointerTott__IrCutFilterMode(soap, tag, NULL, "tt:IrCutFilterMode"); - case SOAP_TYPE_PointerTott__FocusConfiguration: - return soap_in_PointerTott__FocusConfiguration(soap, tag, NULL, "tt:FocusConfiguration"); - case SOAP_TYPE_PointerTott__Exposure: - return soap_in_PointerTott__Exposure(soap, tag, NULL, "tt:Exposure"); - case SOAP_TYPE_PointerTott__BacklightCompensation: - return soap_in_PointerTott__BacklightCompensation(soap, tag, NULL, "tt:BacklightCompensation"); - case SOAP_TYPE_PointerTott__FocusStatus: - return soap_in_PointerTott__FocusStatus(soap, tag, NULL, "tt:FocusStatus"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptionsExtension: - return soap_in_PointerTott__PTZPresetTourStartingConditionOptionsExtension(soap, tag, NULL, "tt:PTZPresetTourStartingConditionOptionsExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptionsExtension: - return soap_in_PointerTott__PTZPresetTourPresetDetailOptionsExtension(soap, tag, NULL, "tt:PTZPresetTourPresetDetailOptionsExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptions: - return soap_in_PointerTott__PTZPresetTourPresetDetailOptions(soap, tag, NULL, "tt:PTZPresetTourPresetDetailOptions"); - case SOAP_TYPE_PointerTott__PTZPresetTourSpotOptions: - return soap_in_PointerTott__PTZPresetTourSpotOptions(soap, tag, NULL, "tt:PTZPresetTourSpotOptions"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptions: - return soap_in_PointerTott__PTZPresetTourStartingConditionOptions(soap, tag, NULL, "tt:PTZPresetTourStartingConditionOptions"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionExtension: - return soap_in_PointerTott__PTZPresetTourStartingConditionExtension(soap, tag, NULL, "tt:PTZPresetTourStartingConditionExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourDirection: - return soap_in_PointerTott__PTZPresetTourDirection(soap, tag, NULL, "tt:PTZPresetTourDirection"); - case SOAP_TYPE_PointerTott__PTZPresetTourStatusExtension: - return soap_in_PointerTott__PTZPresetTourStatusExtension(soap, tag, NULL, "tt:PTZPresetTourStatusExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourTypeExtension: - return soap_in_PointerTott__PTZPresetTourTypeExtension(soap, tag, NULL, "tt:PTZPresetTourTypeExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourSpotExtension: - return soap_in_PointerTott__PTZPresetTourSpotExtension(soap, tag, NULL, "tt:PTZPresetTourSpotExtension"); - case SOAP_TYPE_PointerTott__PTZSpeed: - return soap_in_PointerTott__PTZSpeed(soap, tag, NULL, "tt:PTZSpeed"); - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetail: - return soap_in_PointerTott__PTZPresetTourPresetDetail(soap, tag, NULL, "tt:PTZPresetTourPresetDetail"); - case SOAP_TYPE_PointerTott__PTZPresetTourExtension: - return soap_in_PointerTott__PTZPresetTourExtension(soap, tag, NULL, "tt:PTZPresetTourExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourSpot: - return soap_in_PointerTott__PTZPresetTourSpot(soap, tag, NULL, "tt:PTZPresetTourSpot"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingCondition: - return soap_in_PointerTott__PTZPresetTourStartingCondition(soap, tag, NULL, "tt:PTZPresetTourStartingCondition"); - case SOAP_TYPE_PointerTott__PTZPresetTourStatus: - return soap_in_PointerTott__PTZPresetTourStatus(soap, tag, NULL, "tt:PTZPresetTourStatus"); - case SOAP_TYPE_PointerTott__Name: - return soap_in_PointerTott__Name(soap, tag, NULL, "tt:Name"); - case SOAP_TYPE_PointerTott__PTZSpacesExtension: - return soap_in_PointerTott__PTZSpacesExtension(soap, tag, NULL, "tt:PTZSpacesExtension"); - case SOAP_TYPE_PointerTott__Space1DDescription: - return soap_in_PointerTott__Space1DDescription(soap, tag, NULL, "tt:Space1DDescription"); - case SOAP_TYPE_PointerTott__Space2DDescription: - return soap_in_PointerTott__Space2DDescription(soap, tag, NULL, "tt:Space2DDescription"); - case SOAP_TYPE_PointerTott__ReverseOptionsExtension: - return soap_in_PointerTott__ReverseOptionsExtension(soap, tag, NULL, "tt:ReverseOptionsExtension"); - case SOAP_TYPE_PointerTott__EFlipOptionsExtension: - return soap_in_PointerTott__EFlipOptionsExtension(soap, tag, NULL, "tt:EFlipOptionsExtension"); - case SOAP_TYPE_PointerTott__PTControlDirectionOptionsExtension: - return soap_in_PointerTott__PTControlDirectionOptionsExtension(soap, tag, NULL, "tt:PTControlDirectionOptionsExtension"); - case SOAP_TYPE_PointerTott__ReverseOptions: - return soap_in_PointerTott__ReverseOptions(soap, tag, NULL, "tt:ReverseOptions"); - case SOAP_TYPE_PointerTott__EFlipOptions: - return soap_in_PointerTott__EFlipOptions(soap, tag, NULL, "tt:EFlipOptions"); - case SOAP_TYPE_PointerTott__PTZConfigurationOptions2: - return soap_in_PointerTott__PTZConfigurationOptions2(soap, tag, NULL, "tt:PTZConfigurationOptions2"); - case SOAP_TYPE_PointerTott__PTControlDirectionOptions: - return soap_in_PointerTott__PTControlDirectionOptions(soap, tag, NULL, "tt:PTControlDirectionOptions"); - case SOAP_TYPE_PointerTott__DurationRange: - return soap_in_PointerTott__DurationRange(soap, tag, NULL, "tt:DurationRange"); - case SOAP_TYPE_PointerTott__PTZSpaces: - return soap_in_PointerTott__PTZSpaces(soap, tag, NULL, "tt:PTZSpaces"); - case SOAP_TYPE_PointerTott__PTControlDirectionExtension: - return soap_in_PointerTott__PTControlDirectionExtension(soap, tag, NULL, "tt:PTControlDirectionExtension"); - case SOAP_TYPE_PointerTott__Reverse: - return soap_in_PointerTott__Reverse(soap, tag, NULL, "tt:Reverse"); - case SOAP_TYPE_PointerTott__EFlip: - return soap_in_PointerTott__EFlip(soap, tag, NULL, "tt:EFlip"); - case SOAP_TYPE_PointerTott__PTZConfigurationExtension2: - return soap_in_PointerTott__PTZConfigurationExtension2(soap, tag, NULL, "tt:PTZConfigurationExtension2"); - case SOAP_TYPE_PointerTott__PTControlDirection: - return soap_in_PointerTott__PTControlDirection(soap, tag, NULL, "tt:PTControlDirection"); - case SOAP_TYPE_PointerTott__PTZPresetTourSupportedExtension: - return soap_in_PointerTott__PTZPresetTourSupportedExtension(soap, tag, NULL, "tt:PTZPresetTourSupportedExtension"); - case SOAP_TYPE_PointerTott__PTZNodeExtension2: - return soap_in_PointerTott__PTZNodeExtension2(soap, tag, NULL, "tt:PTZNodeExtension2"); - case SOAP_TYPE_PointerTott__PTZPresetTourSupported: - return soap_in_PointerTott__PTZPresetTourSupported(soap, tag, NULL, "tt:PTZPresetTourSupported"); - case SOAP_TYPE_PointerTott__EapMethodExtension: - return soap_in_PointerTott__EapMethodExtension(soap, tag, NULL, "tt:EapMethodExtension"); - case SOAP_TYPE_PointerTott__TLSConfiguration: - return soap_in_PointerTott__TLSConfiguration(soap, tag, NULL, "tt:TLSConfiguration"); - case SOAP_TYPE_PointerTott__Dot1XConfigurationExtension: - return soap_in_PointerTott__Dot1XConfigurationExtension(soap, tag, NULL, "tt:Dot1XConfigurationExtension"); - case SOAP_TYPE_PointerTott__EAPMethodConfiguration: - return soap_in_PointerTott__EAPMethodConfiguration(soap, tag, NULL, "tt:EAPMethodConfiguration"); - case SOAP_TYPE_PointerTott__CertificateInformationExtension: - return soap_in_PointerTott__CertificateInformationExtension(soap, tag, NULL, "tt:CertificateInformationExtension"); - case SOAP_TYPE_PointerTott__DateTimeRange: - return soap_in_PointerTott__DateTimeRange(soap, tag, NULL, "tt:DateTimeRange"); - case SOAP_TYPE_PointerTott__CertificateUsage: - return soap_in_PointerTott__CertificateUsage(soap, tag, NULL, "tt:CertificateUsage"); - case SOAP_TYPE_PointerTott__BinaryData: - return soap_in_PointerTott__BinaryData(soap, tag, NULL, "tt:BinaryData"); - case SOAP_TYPE_PointerTott__CertificateGenerationParametersExtension: - return soap_in_PointerTott__CertificateGenerationParametersExtension(soap, tag, NULL, "tt:CertificateGenerationParametersExtension"); - case SOAP_TYPE_PointerTott__UserExtension: - return soap_in_PointerTott__UserExtension(soap, tag, NULL, "tt:UserExtension"); - case SOAP_TYPE_PointerTott__Date: - return soap_in_PointerTott__Date(soap, tag, NULL, "tt:Date"); - case SOAP_TYPE_PointerTott__Time: - return soap_in_PointerTott__Time(soap, tag, NULL, "tt:Time"); - case SOAP_TYPE_PointerTott__SystemDateTimeExtension: - return soap_in_PointerTott__SystemDateTimeExtension(soap, tag, NULL, "tt:SystemDateTimeExtension"); - case SOAP_TYPE_PointerTott__DateTime: - return soap_in_PointerTott__DateTime(soap, tag, NULL, "tt:DateTime"); - case SOAP_TYPE_PointerTott__TimeZone: - return soap_in_PointerTott__TimeZone(soap, tag, NULL, "tt:TimeZone"); - case SOAP_TYPE_PointerTott__SystemLogUri: - return soap_in_PointerTott__SystemLogUri(soap, tag, NULL, "tt:SystemLogUri"); - case SOAP_TYPE_PointerToxop__Include: - return soap_in_PointerToxop__Include(soap, tag, NULL, "xop:Include"); - case SOAP_TYPE_PointerTo_xmime__contentType: - return soap_in_PointerTo_xmime__contentType(soap, tag, NULL, "xmime:contentType"); - case SOAP_TYPE_PointerTott__AttachmentData: - return soap_in_PointerTott__AttachmentData(soap, tag, NULL, "tt:AttachmentData"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceExtension: - return soap_in_PointerTott__AnalyticsDeviceExtension(soap, tag, NULL, "tt:AnalyticsDeviceExtension"); - case SOAP_TYPE_PointerTott__SystemCapabilitiesExtension2: - return soap_in_PointerTott__SystemCapabilitiesExtension2(soap, tag, NULL, "tt:SystemCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__SystemCapabilitiesExtension: - return soap_in_PointerTott__SystemCapabilitiesExtension(soap, tag, NULL, "tt:SystemCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__OnvifVersion: - return soap_in_PointerTott__OnvifVersion(soap, tag, NULL, "tt:OnvifVersion"); - case SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension2: - return soap_in_PointerTott__SecurityCapabilitiesExtension2(soap, tag, NULL, "tt:SecurityCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension: - return soap_in_PointerTott__SecurityCapabilitiesExtension(soap, tag, NULL, "tt:SecurityCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension2: - return soap_in_PointerTott__NetworkCapabilitiesExtension2(soap, tag, NULL, "tt:NetworkCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension: - return soap_in_PointerTott__NetworkCapabilitiesExtension(soap, tag, NULL, "tt:NetworkCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__RealTimeStreamingCapabilitiesExtension: - return soap_in_PointerTott__RealTimeStreamingCapabilitiesExtension(soap, tag, NULL, "tt:RealTimeStreamingCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__ProfileCapabilities: - return soap_in_PointerTott__ProfileCapabilities(soap, tag, NULL, "tt:ProfileCapabilities"); - case SOAP_TYPE_PointerTott__MediaCapabilitiesExtension: - return soap_in_PointerTott__MediaCapabilitiesExtension(soap, tag, NULL, "tt:MediaCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__RealTimeStreamingCapabilities: - return soap_in_PointerTott__RealTimeStreamingCapabilities(soap, tag, NULL, "tt:RealTimeStreamingCapabilities"); - case SOAP_TYPE_PointerTott__IOCapabilitiesExtension2: - return soap_in_PointerTott__IOCapabilitiesExtension2(soap, tag, NULL, "tt:IOCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__IOCapabilitiesExtension: - return soap_in_PointerTott__IOCapabilitiesExtension(soap, tag, NULL, "tt:IOCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__DeviceCapabilitiesExtension: - return soap_in_PointerTott__DeviceCapabilitiesExtension(soap, tag, NULL, "tt:DeviceCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__SecurityCapabilities: - return soap_in_PointerTott__SecurityCapabilities(soap, tag, NULL, "tt:SecurityCapabilities"); - case SOAP_TYPE_PointerTott__IOCapabilities: - return soap_in_PointerTott__IOCapabilities(soap, tag, NULL, "tt:IOCapabilities"); - case SOAP_TYPE_PointerTott__SystemCapabilities: - return soap_in_PointerTott__SystemCapabilities(soap, tag, NULL, "tt:SystemCapabilities"); - case SOAP_TYPE_PointerTott__NetworkCapabilities: - return soap_in_PointerTott__NetworkCapabilities(soap, tag, NULL, "tt:NetworkCapabilities"); - case SOAP_TYPE_PointerTott__CapabilitiesExtension2: - return soap_in_PointerTott__CapabilitiesExtension2(soap, tag, NULL, "tt:CapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceCapabilities: - return soap_in_PointerTott__AnalyticsDeviceCapabilities(soap, tag, NULL, "tt:AnalyticsDeviceCapabilities"); - case SOAP_TYPE_PointerTott__ReceiverCapabilities: - return soap_in_PointerTott__ReceiverCapabilities(soap, tag, NULL, "tt:ReceiverCapabilities"); - case SOAP_TYPE_PointerTott__ReplayCapabilities: - return soap_in_PointerTott__ReplayCapabilities(soap, tag, NULL, "tt:ReplayCapabilities"); - case SOAP_TYPE_PointerTott__SearchCapabilities: - return soap_in_PointerTott__SearchCapabilities(soap, tag, NULL, "tt:SearchCapabilities"); - case SOAP_TYPE_PointerTott__RecordingCapabilities: - return soap_in_PointerTott__RecordingCapabilities(soap, tag, NULL, "tt:RecordingCapabilities"); - case SOAP_TYPE_PointerTott__DisplayCapabilities: - return soap_in_PointerTott__DisplayCapabilities(soap, tag, NULL, "tt:DisplayCapabilities"); - case SOAP_TYPE_PointerTott__DeviceIOCapabilities: - return soap_in_PointerTott__DeviceIOCapabilities(soap, tag, NULL, "tt:DeviceIOCapabilities"); - case SOAP_TYPE_PointerTott__CapabilitiesExtension: - return soap_in_PointerTott__CapabilitiesExtension(soap, tag, NULL, "tt:CapabilitiesExtension"); - case SOAP_TYPE_PointerTott__PTZCapabilities: - return soap_in_PointerTott__PTZCapabilities(soap, tag, NULL, "tt:PTZCapabilities"); - case SOAP_TYPE_PointerTott__MediaCapabilities: - return soap_in_PointerTott__MediaCapabilities(soap, tag, NULL, "tt:MediaCapabilities"); - case SOAP_TYPE_PointerTott__ImagingCapabilities: - return soap_in_PointerTott__ImagingCapabilities(soap, tag, NULL, "tt:ImagingCapabilities"); - case SOAP_TYPE_PointerTott__EventCapabilities: - return soap_in_PointerTott__EventCapabilities(soap, tag, NULL, "tt:EventCapabilities"); - case SOAP_TYPE_PointerTott__DeviceCapabilities: - return soap_in_PointerTott__DeviceCapabilities(soap, tag, NULL, "tt:DeviceCapabilities"); - case SOAP_TYPE_PointerTott__AnalyticsCapabilities: - return soap_in_PointerTott__AnalyticsCapabilities(soap, tag, NULL, "tt:AnalyticsCapabilities"); - case SOAP_TYPE_PointerTott__Dot11AvailableNetworksExtension: - return soap_in_PointerTott__Dot11AvailableNetworksExtension(soap, tag, NULL, "tt:Dot11AvailableNetworksExtension"); - case SOAP_TYPE_PointerTott__Dot11SignalStrength: - return soap_in_PointerTott__Dot11SignalStrength(soap, tag, NULL, "tt:Dot11SignalStrength"); - case SOAP_TYPE_PointerTott__Dot11PSKSetExtension: - return soap_in_PointerTott__Dot11PSKSetExtension(soap, tag, NULL, "tt:Dot11PSKSetExtension"); - case SOAP_TYPE_PointerTott__Dot11PSKPassphrase: - return soap_in_PointerTott__Dot11PSKPassphrase(soap, tag, NULL, "tt:Dot11PSKPassphrase"); - case SOAP_TYPE_PointerTott__Dot11PSK: - return soap_in_PointerTott__Dot11PSK(soap, tag, NULL, "tt:Dot11PSK"); - case SOAP_TYPE_PointerTott__Dot11SecurityConfigurationExtension: - return soap_in_PointerTott__Dot11SecurityConfigurationExtension(soap, tag, NULL, "tt:Dot11SecurityConfigurationExtension"); - case SOAP_TYPE_PointerTott__Dot11PSKSet: - return soap_in_PointerTott__Dot11PSKSet(soap, tag, NULL, "tt:Dot11PSKSet"); - case SOAP_TYPE_PointerTott__Dot11Cipher: - return soap_in_PointerTott__Dot11Cipher(soap, tag, NULL, "tt:Dot11Cipher"); - case SOAP_TYPE_PointerTott__Dot11SecurityConfiguration: - return soap_in_PointerTott__Dot11SecurityConfiguration(soap, tag, NULL, "tt:Dot11SecurityConfiguration"); - case SOAP_TYPE_PointerTott__IPAddressFilterExtension: - return soap_in_PointerTott__IPAddressFilterExtension(soap, tag, NULL, "tt:IPAddressFilterExtension"); - case SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension2: - return soap_in_PointerTott__NetworkZeroConfigurationExtension2(soap, tag, NULL, "tt:NetworkZeroConfigurationExtension2"); - case SOAP_TYPE_PointerTott__NetworkZeroConfiguration: - return soap_in_PointerTott__NetworkZeroConfiguration(soap, tag, NULL, "tt:NetworkZeroConfiguration"); - case SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension: - return soap_in_PointerTott__NetworkZeroConfigurationExtension(soap, tag, NULL, "tt:NetworkZeroConfigurationExtension"); - case SOAP_TYPE_PointerTott__IPv6DHCPConfiguration: - return soap_in_PointerTott__IPv6DHCPConfiguration(soap, tag, NULL, "tt:IPv6DHCPConfiguration"); - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension2: - return soap_in_PointerTott__NetworkInterfaceSetConfigurationExtension2(soap, tag, NULL, "tt:NetworkInterfaceSetConfigurationExtension2"); - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension: - return soap_in_PointerTott__NetworkInterfaceSetConfigurationExtension(soap, tag, NULL, "tt:NetworkInterfaceSetConfigurationExtension"); - case SOAP_TYPE_PointerTott__IPv6NetworkInterfaceSetConfiguration: - return soap_in_PointerTott__IPv6NetworkInterfaceSetConfiguration(soap, tag, NULL, "tt:IPv6NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_PointerTott__IPv4NetworkInterfaceSetConfiguration: - return soap_in_PointerTott__IPv4NetworkInterfaceSetConfiguration(soap, tag, NULL, "tt:IPv4NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_PointerTott__DynamicDNSInformationExtension: - return soap_in_PointerTott__DynamicDNSInformationExtension(soap, tag, NULL, "tt:DynamicDNSInformationExtension"); - case SOAP_TYPE_PointerToxsd__duration: - return soap_in_PointerToxsd__duration(soap, tag, NULL, "xsd:duration"); - case SOAP_TYPE_PointerTott__NTPInformationExtension: - return soap_in_PointerTott__NTPInformationExtension(soap, tag, NULL, "tt:NTPInformationExtension"); - case SOAP_TYPE_PointerTott__NetworkHost: - return soap_in_PointerTott__NetworkHost(soap, tag, NULL, "tt:NetworkHost"); - case SOAP_TYPE_PointerTott__DNSInformationExtension: - return soap_in_PointerTott__DNSInformationExtension(soap, tag, NULL, "tt:DNSInformationExtension"); - case SOAP_TYPE_PointerTott__HostnameInformationExtension: - return soap_in_PointerTott__HostnameInformationExtension(soap, tag, NULL, "tt:HostnameInformationExtension"); - case SOAP_TYPE_PointerToxsd__token: - return soap_in_PointerToxsd__token(soap, tag, NULL, "xsd:token"); - case SOAP_TYPE_PointerTott__NetworkHostExtension: - return soap_in_PointerTott__NetworkHostExtension(soap, tag, NULL, "tt:NetworkHostExtension"); - case SOAP_TYPE_PointerTott__DNSName: - return soap_in_PointerTott__DNSName(soap, tag, NULL, "tt:DNSName"); - case SOAP_TYPE_PointerTott__IPv6Address: - return soap_in_PointerTott__IPv6Address(soap, tag, NULL, "tt:IPv6Address"); - case SOAP_TYPE_PointerTott__IPv4Address: - return soap_in_PointerTott__IPv4Address(soap, tag, NULL, "tt:IPv4Address"); - case SOAP_TYPE_PointerTott__NetworkProtocolExtension: - return soap_in_PointerTott__NetworkProtocolExtension(soap, tag, NULL, "tt:NetworkProtocolExtension"); - case SOAP_TYPE_PointerTott__IPv6ConfigurationExtension: - return soap_in_PointerTott__IPv6ConfigurationExtension(soap, tag, NULL, "tt:IPv6ConfigurationExtension"); - case SOAP_TYPE_PointerTott__PrefixedIPv6Address: - return soap_in_PointerTott__PrefixedIPv6Address(soap, tag, NULL, "tt:PrefixedIPv6Address"); - case SOAP_TYPE_PointerTott__PrefixedIPv4Address: - return soap_in_PointerTott__PrefixedIPv4Address(soap, tag, NULL, "tt:PrefixedIPv4Address"); - case SOAP_TYPE_PointerTott__IPv4Configuration: - return soap_in_PointerTott__IPv4Configuration(soap, tag, NULL, "tt:IPv4Configuration"); - case SOAP_TYPE_PointerTott__IPv6Configuration: - return soap_in_PointerTott__IPv6Configuration(soap, tag, NULL, "tt:IPv6Configuration"); - case SOAP_TYPE_PointerTott__NetworkInterfaceConnectionSetting: - return soap_in_PointerTott__NetworkInterfaceConnectionSetting(soap, tag, NULL, "tt:NetworkInterfaceConnectionSetting"); - case SOAP_TYPE_PointerTott__NetworkInterfaceExtension2: - return soap_in_PointerTott__NetworkInterfaceExtension2(soap, tag, NULL, "tt:NetworkInterfaceExtension2"); - case SOAP_TYPE_PointerTott__Dot11Configuration: - return soap_in_PointerTott__Dot11Configuration(soap, tag, NULL, "tt:Dot11Configuration"); - case SOAP_TYPE_PointerTott__Dot3Configuration: - return soap_in_PointerTott__Dot3Configuration(soap, tag, NULL, "tt:Dot3Configuration"); - case SOAP_TYPE_PointerTott__Transport: - return soap_in_PointerTott__Transport(soap, tag, NULL, "tt:Transport"); - case SOAP_TYPE_PointerTott__IPAddress: - return soap_in_PointerTott__IPAddress(soap, tag, NULL, "tt:IPAddress"); - case SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptionsExtension: - return soap_in_PointerTott__AudioDecoderConfigurationOptionsExtension(soap, tag, NULL, "tt:AudioDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__G726DecOptions: - return soap_in_PointerTott__G726DecOptions(soap, tag, NULL, "tt:G726DecOptions"); - case SOAP_TYPE_PointerTott__G711DecOptions: - return soap_in_PointerTott__G711DecOptions(soap, tag, NULL, "tt:G711DecOptions"); - case SOAP_TYPE_PointerTott__AACDecOptions: - return soap_in_PointerTott__AACDecOptions(soap, tag, NULL, "tt:AACDecOptions"); - case SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptionsExtension: - return soap_in_PointerTott__VideoDecoderConfigurationOptionsExtension(soap, tag, NULL, "tt:VideoDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__Mpeg4DecOptions: - return soap_in_PointerTott__Mpeg4DecOptions(soap, tag, NULL, "tt:Mpeg4DecOptions"); - case SOAP_TYPE_PointerTott__H264DecOptions: - return soap_in_PointerTott__H264DecOptions(soap, tag, NULL, "tt:H264DecOptions"); - case SOAP_TYPE_PointerTott__JpegDecOptions: - return soap_in_PointerTott__JpegDecOptions(soap, tag, NULL, "tt:JpegDecOptions"); - case SOAP_TYPE_PointerTott__PTZStatusFilterOptionsExtension: - return soap_in_PointerTott__PTZStatusFilterOptionsExtension(soap, tag, NULL, "tt:PTZStatusFilterOptionsExtension"); - case SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension2: - return soap_in_PointerTott__MetadataConfigurationOptionsExtension2(soap, tag, NULL, "tt:MetadataConfigurationOptionsExtension2"); - case SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension: - return soap_in_PointerTott__MetadataConfigurationOptionsExtension(soap, tag, NULL, "tt:MetadataConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__PTZStatusFilterOptions: - return soap_in_PointerTott__PTZStatusFilterOptions(soap, tag, NULL, "tt:PTZStatusFilterOptions"); - case SOAP_TYPE_PointerTo_tt__EventSubscription_SubscriptionPolicy: - return soap_in_PointerTo_tt__EventSubscription_SubscriptionPolicy(soap, tag, NULL, "tt:EventSubscription-SubscriptionPolicy"); - case SOAP_TYPE_PointerTott__AudioEncoderConfigurationOption: - return soap_in_PointerTott__AudioEncoderConfigurationOption(soap, tag, NULL, "tt:AudioEncoderConfigurationOption"); - case SOAP_TYPE_PointerTott__AudioSourceOptionsExtension: - return soap_in_PointerTott__AudioSourceOptionsExtension(soap, tag, NULL, "tt:AudioSourceOptionsExtension"); - case SOAP_TYPE_PointerTott__StringAttrList: - return soap_in_PointerTott__StringAttrList(soap, tag, NULL, "tt:StringAttrList"); - case SOAP_TYPE_PointerTott__FloatAttrList: - return soap_in_PointerTott__FloatAttrList(soap, tag, NULL, "tt:FloatAttrList"); - case SOAP_TYPE_PointerTott__IntAttrList: - return soap_in_PointerTott__IntAttrList(soap, tag, NULL, "tt:IntAttrList"); - case SOAP_TYPE_PointerTott__VideoResolution2: - return soap_in_PointerTott__VideoResolution2(soap, tag, NULL, "tt:VideoResolution2"); - case SOAP_TYPE_PointerTott__FloatRange: - return soap_in_PointerTott__FloatRange(soap, tag, NULL, "tt:FloatRange"); - case SOAP_TYPE_PointerTott__VideoResolution: - return soap_in_PointerTott__VideoResolution(soap, tag, NULL, "tt:VideoResolution"); - case SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension2: - return soap_in_PointerTott__VideoEncoderOptionsExtension2(soap, tag, NULL, "tt:VideoEncoderOptionsExtension2"); - case SOAP_TYPE_PointerTott__H264Options2: - return soap_in_PointerTott__H264Options2(soap, tag, NULL, "tt:H264Options2"); - case SOAP_TYPE_PointerTott__Mpeg4Options2: - return soap_in_PointerTott__Mpeg4Options2(soap, tag, NULL, "tt:Mpeg4Options2"); - case SOAP_TYPE_PointerTott__JpegOptions2: - return soap_in_PointerTott__JpegOptions2(soap, tag, NULL, "tt:JpegOptions2"); - case SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension: - return soap_in_PointerTott__VideoEncoderOptionsExtension(soap, tag, NULL, "tt:VideoEncoderOptionsExtension"); - case SOAP_TYPE_PointerTott__H264Options: - return soap_in_PointerTott__H264Options(soap, tag, NULL, "tt:H264Options"); - case SOAP_TYPE_PointerTott__Mpeg4Options: - return soap_in_PointerTott__Mpeg4Options(soap, tag, NULL, "tt:Mpeg4Options"); - case SOAP_TYPE_PointerTott__JpegOptions: - return soap_in_PointerTott__JpegOptions(soap, tag, NULL, "tt:JpegOptions"); - case SOAP_TYPE_PointerTott__RotateOptionsExtension: - return soap_in_PointerTott__RotateOptionsExtension(soap, tag, NULL, "tt:RotateOptionsExtension"); - case SOAP_TYPE_PointerTott__IntItems: - return soap_in_PointerTott__IntItems(soap, tag, NULL, "tt:IntItems"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension2: - return soap_in_PointerTott__VideoSourceConfigurationOptionsExtension2(soap, tag, NULL, "tt:VideoSourceConfigurationOptionsExtension2"); - case SOAP_TYPE_PointerTott__RotateOptions: - return soap_in_PointerTott__RotateOptions(soap, tag, NULL, "tt:RotateOptions"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension: - return soap_in_PointerTott__VideoSourceConfigurationOptionsExtension(soap, tag, NULL, "tt:VideoSourceConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__IntRectangleRange: - return soap_in_PointerTott__IntRectangleRange(soap, tag, NULL, "tt:IntRectangleRange"); - case SOAP_TYPE_PointerTott__LensProjection: - return soap_in_PointerTott__LensProjection(soap, tag, NULL, "tt:LensProjection"); - case SOAP_TYPE_PointerTott__LensOffset: - return soap_in_PointerTott__LensOffset(soap, tag, NULL, "tt:LensOffset"); - case SOAP_TYPE_PointerTott__RotateExtension: - return soap_in_PointerTott__RotateExtension(soap, tag, NULL, "tt:RotateExtension"); - case SOAP_TYPE_PointerTott__SceneOrientation: - return soap_in_PointerTott__SceneOrientation(soap, tag, NULL, "tt:SceneOrientation"); - case SOAP_TYPE_PointerTott__LensDescription: - return soap_in_PointerTott__LensDescription(soap, tag, NULL, "tt:LensDescription"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension2: - return soap_in_PointerTott__VideoSourceConfigurationExtension2(soap, tag, NULL, "tt:VideoSourceConfigurationExtension2"); - case SOAP_TYPE_PointerTott__Rotate: - return soap_in_PointerTott__Rotate(soap, tag, NULL, "tt:Rotate"); - case SOAP_TYPE_PointerTott__ProfileExtension2: - return soap_in_PointerTott__ProfileExtension2(soap, tag, NULL, "tt:ProfileExtension2"); - case SOAP_TYPE_PointerTott__AudioDecoderConfiguration: - return soap_in_PointerTott__AudioDecoderConfiguration(soap, tag, NULL, "tt:AudioDecoderConfiguration"); - case SOAP_TYPE_PointerTott__AudioOutputConfiguration: - return soap_in_PointerTott__AudioOutputConfiguration(soap, tag, NULL, "tt:AudioOutputConfiguration"); - case SOAP_TYPE_PointerTott__ProfileExtension: - return soap_in_PointerTott__ProfileExtension(soap, tag, NULL, "tt:ProfileExtension"); - case SOAP_TYPE_PointerTott__MetadataConfiguration: - return soap_in_PointerTott__MetadataConfiguration(soap, tag, NULL, "tt:MetadataConfiguration"); - case SOAP_TYPE_PointerTott__PTZConfiguration: - return soap_in_PointerTott__PTZConfiguration(soap, tag, NULL, "tt:PTZConfiguration"); - case SOAP_TYPE_PointerTott__VideoAnalyticsConfiguration: - return soap_in_PointerTott__VideoAnalyticsConfiguration(soap, tag, NULL, "tt:VideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTott__AudioEncoderConfiguration: - return soap_in_PointerTott__AudioEncoderConfiguration(soap, tag, NULL, "tt:AudioEncoderConfiguration"); - case SOAP_TYPE_PointerTott__VideoEncoderConfiguration: - return soap_in_PointerTott__VideoEncoderConfiguration(soap, tag, NULL, "tt:VideoEncoderConfiguration"); - case SOAP_TYPE_PointerTott__AudioSourceConfiguration: - return soap_in_PointerTott__AudioSourceConfiguration(soap, tag, NULL, "tt:AudioSourceConfiguration"); - case SOAP_TYPE_PointerTott__VideoSourceConfiguration: - return soap_in_PointerTott__VideoSourceConfiguration(soap, tag, NULL, "tt:VideoSourceConfiguration"); - case SOAP_TYPE_PointerTott__VideoSourceExtension2: - return soap_in_PointerTott__VideoSourceExtension2(soap, tag, NULL, "tt:VideoSourceExtension2"); - case SOAP_TYPE_PointerTott__ImagingSettings20: - return soap_in_PointerTott__ImagingSettings20(soap, tag, NULL, "tt:ImagingSettings20"); - case SOAP_TYPE_PointerTott__IntRange: - return soap_in_PointerTott__IntRange(soap, tag, NULL, "tt:IntRange"); - case SOAP_TYPE_PointerTott__ReferenceToken: - return soap_in_PointerTott__ReferenceToken(soap, tag, NULL, "tt:ReferenceToken"); - case SOAP_TYPE_PointerTott__LocalOrientation: - return soap_in_PointerTott__LocalOrientation(soap, tag, NULL, "tt:LocalOrientation"); - case SOAP_TYPE_PointerTott__LocalLocation: - return soap_in_PointerTott__LocalLocation(soap, tag, NULL, "tt:LocalLocation"); - case SOAP_TYPE_PointerTott__GeoOrientation: - return soap_in_PointerTott__GeoOrientation(soap, tag, NULL, "tt:GeoOrientation"); - case SOAP_TYPE_PointerTott__GeoLocation: - return soap_in_PointerTott__GeoLocation(soap, tag, NULL, "tt:GeoLocation"); - case SOAP_TYPE_PointerTodouble: - return soap_in_PointerTodouble(soap, tag, NULL, "xsd:double"); - case SOAP_TYPE_PointerTott__TransformationExtension: - return soap_in_PointerTott__TransformationExtension(soap, tag, NULL, "tt:TransformationExtension"); - case SOAP_TYPE_PointerToxsd__anyType: - return soap_in_PointerToxsd__anyType(soap, tag, NULL, "xsd:anyType"); - case SOAP_TYPE_PointerTott__ColorCovariance: - return soap_in_PointerTott__ColorCovariance(soap, tag, NULL, "tt:ColorCovariance"); - case SOAP_TYPE_PointerTott__Color: - return soap_in_PointerTott__Color(soap, tag, NULL, "tt:Color"); - case SOAP_TYPE_PointerTott__Vector: - return soap_in_PointerTott__Vector(soap, tag, NULL, "tt:Vector"); - case SOAP_TYPE_PointerTofloat: - return soap_in_PointerTofloat(soap, tag, NULL, "xsd:float"); - case SOAP_TYPE_PointerTott__MoveStatus: - return soap_in_PointerTott__MoveStatus(soap, tag, NULL, "tt:MoveStatus"); - case SOAP_TYPE_PointerTostd__string: - return soap_in_PointerTostd__string(soap, tag, NULL, "xsd:string"); - case SOAP_TYPE_PointerTott__PTZMoveStatus: - return soap_in_PointerTott__PTZMoveStatus(soap, tag, NULL, "tt:PTZMoveStatus"); - case SOAP_TYPE_PointerTott__PTZVector: - return soap_in_PointerTott__PTZVector(soap, tag, NULL, "tt:PTZVector"); - case SOAP_TYPE_PointerTott__Vector1D: - return soap_in_PointerTott__Vector1D(soap, tag, NULL, "tt:Vector1D"); - case SOAP_TYPE_PointerTott__Vector2D: - return soap_in_PointerTott__Vector2D(soap, tag, NULL, "tt:Vector2D"); - case SOAP_TYPE_PointerToxsd__anyURI: - return soap_in_PointerToxsd__anyURI(soap, tag, NULL, "xsd:anyURI"); - case SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy: - return soap_in_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(soap, tag, NULL, "tev:CreatePullPointSubscription-SubscriptionPolicy"); - case SOAP_TYPE_PointerTotev__Capabilities: - return soap_in_PointerTotev__Capabilities(soap, tag, NULL, "tev:Capabilities"); - case SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_FaultCause: - return soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, tag, NULL, "wsrfbf:BaseFaultType-FaultCause"); - case SOAP_TYPE_PointerTo_xml__lang: - return soap_in_PointerTo_xml__lang(soap, tag, NULL, "xml:lang"); - case SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_ErrorCode: - return soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, tag, NULL, "wsrfbf:BaseFaultType-ErrorCode"); - case SOAP_TYPE_PointerToxsd__nonNegativeInteger: - return soap_in_PointerToxsd__nonNegativeInteger(soap, tag, NULL, "xsd:nonNegativeInteger"); - case SOAP_TYPE_PointerTo_wsnt__Subscribe_SubscriptionPolicy: - return soap_in_PointerTo_wsnt__Subscribe_SubscriptionPolicy(soap, tag, NULL, "wsnt:Subscribe-SubscriptionPolicy"); - case SOAP_TYPE_PointerTowsnt__AbsoluteOrRelativeTimeType: - return soap_in_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, tag, NULL, "wsnt:AbsoluteOrRelativeTimeType"); - case SOAP_TYPE_PointerTowsnt__NotificationMessageHolderType: - return soap_in_PointerTowsnt__NotificationMessageHolderType(soap, tag, NULL, "wsnt:NotificationMessageHolderType"); - case SOAP_TYPE_PointerTowsnt__SubscriptionPolicyType: - return soap_in_PointerTowsnt__SubscriptionPolicyType(soap, tag, NULL, "wsnt:SubscriptionPolicyType"); - case SOAP_TYPE_PointerTowsnt__FilterType: - return soap_in_PointerTowsnt__FilterType(soap, tag, NULL, "wsnt:FilterType"); - case SOAP_TYPE_PointerTowstop__TopicSetType: - return soap_in_PointerTowstop__TopicSetType(soap, tag, NULL, "wstop:TopicSetType"); - case SOAP_TYPE_PointerTobool: - return soap_in_PointerTobool(soap, tag, NULL, "xsd:boolean"); - case SOAP_TYPE_PointerTowsnt__TopicExpressionType: - return soap_in_PointerTowsnt__TopicExpressionType(soap, tag, NULL, "wsnt:TopicExpressionType"); - case SOAP_TYPE_PointerTowsa5__EndpointReferenceType: - return soap_in_PointerTowsa5__EndpointReferenceType(soap, tag, NULL, "wsa5:EndpointReferenceType"); - case SOAP_TYPE_PointerTounsignedByte: - return soap_in_PointerTounsignedByte(soap, tag, NULL, "xsd:unsignedByte"); - case SOAP_TYPE_PointerTochan__ChannelInstanceType: - return soap_in_PointerTochan__ChannelInstanceType(soap, tag, NULL, "chan:ChannelInstanceType"); - case SOAP_TYPE_PointerTo_wsa5__FaultTo: - return soap_in_PointerTo_wsa5__FaultTo(soap, tag, NULL, "wsa5:FaultTo"); - case SOAP_TYPE_PointerTo_wsa5__ReplyTo: - return soap_in_PointerTo_wsa5__ReplyTo(soap, tag, NULL, "wsa5:ReplyTo"); - case SOAP_TYPE_PointerTo_wsa5__From: - return soap_in_PointerTo_wsa5__From(soap, tag, NULL, "wsa5:From"); - case SOAP_TYPE_PointerTo_wsa5__RelatesTo: - return soap_in_PointerTo_wsa5__RelatesTo(soap, tag, NULL, "wsa5:RelatesTo"); - case SOAP_TYPE__wsa5__ProblemHeaderQName: - { char **s; - s = soap_in__wsa5__ProblemHeaderQName(soap, tag, NULL, "xsd:QName"); - return s ? *s : NULL; - } - case SOAP_TYPE_PointerTowsa5__MetadataType: - return soap_in_PointerTowsa5__MetadataType(soap, tag, NULL, "wsa5:MetadataType"); - case SOAP_TYPE_PointerTowsa5__ReferenceParametersType: - return soap_in_PointerTowsa5__ReferenceParametersType(soap, tag, NULL, "wsa5:ReferenceParametersType"); - case SOAP_TYPE_wsa5__FaultCodesOpenEnumType: - { char **s; - s = soap_in_wsa5__FaultCodesOpenEnumType(soap, tag, NULL, "wsa5:FaultCodesOpenEnumType"); - return s ? *s : NULL; - } - case SOAP_TYPE_wsa5__RelationshipTypeOpenEnum: - { char **s; - s = soap_in_wsa5__RelationshipTypeOpenEnum(soap, tag, NULL, "wsa5:RelationshipTypeOpenEnum"); - return s ? *s : NULL; - } - case SOAP_TYPE_PointerTo_wsse__Security: - return soap_in_PointerTo_wsse__Security(soap, tag, NULL, "wsse:Security"); - case SOAP_TYPE_PointerTods__SignatureType: - return soap_in_PointerTods__SignatureType(soap, tag, NULL, "ds:SignatureType"); - case SOAP_TYPE_PointerTowsc__SecurityContextTokenType: - return soap_in_PointerTowsc__SecurityContextTokenType(soap, tag, NULL, "wsc:SecurityContextTokenType"); - case SOAP_TYPE_PointerTo_wsse__BinarySecurityToken: - return soap_in_PointerTo_wsse__BinarySecurityToken(soap, tag, NULL, "wsse:BinarySecurityToken"); - case SOAP_TYPE_PointerTo_wsse__UsernameToken: - return soap_in_PointerTo_wsse__UsernameToken(soap, tag, NULL, "wsse:UsernameToken"); - case SOAP_TYPE_PointerTo_wsu__Timestamp: - return soap_in_PointerTo_wsu__Timestamp(soap, tag, NULL, "wsu:Timestamp"); - case SOAP_TYPE_PointerToPointerTo_ds__KeyInfo: - return soap_in_PointerToPointerTo_ds__KeyInfo(soap, tag, NULL, "ds:KeyInfo"); - case SOAP_TYPE_PointerTosaml2__AttributeType: - return soap_in_PointerTosaml2__AttributeType(soap, tag, NULL, "saml2:AttributeType"); - case SOAP_TYPE_PointerTosaml2__EvidenceType: - return soap_in_PointerTosaml2__EvidenceType(soap, tag, NULL, "saml2:EvidenceType"); - case SOAP_TYPE_PointerTosaml2__ActionType: - return soap_in_PointerTosaml2__ActionType(soap, tag, NULL, "saml2:ActionType"); - case SOAP_TYPE_PointerTosaml2__AuthnContextType: - return soap_in_PointerTosaml2__AuthnContextType(soap, tag, NULL, "saml2:AuthnContextType"); - case SOAP_TYPE_PointerTosaml2__SubjectLocalityType: - return soap_in_PointerTosaml2__SubjectLocalityType(soap, tag, NULL, "saml2:SubjectLocalityType"); - case SOAP_TYPE_PointerTosaml2__AssertionType: - return soap_in_PointerTosaml2__AssertionType(soap, tag, NULL, "saml2:AssertionType"); - case SOAP_TYPE_PointerTosaml2__ProxyRestrictionType: - return soap_in_PointerTosaml2__ProxyRestrictionType(soap, tag, NULL, "saml2:ProxyRestrictionType"); - case SOAP_TYPE_PointerTosaml2__OneTimeUseType: - return soap_in_PointerTosaml2__OneTimeUseType(soap, tag, NULL, "saml2:OneTimeUseType"); - case SOAP_TYPE_PointerTosaml2__AudienceRestrictionType: - return soap_in_PointerTosaml2__AudienceRestrictionType(soap, tag, NULL, "saml2:AudienceRestrictionType"); - case SOAP_TYPE_PointerTosaml2__ConditionAbstractType: - return soap_in_PointerTosaml2__ConditionAbstractType(soap, tag, NULL, "saml2:ConditionAbstractType"); - case SOAP_TYPE_PointerTosaml2__SubjectConfirmationDataType: - return soap_in_PointerTosaml2__SubjectConfirmationDataType(soap, tag, NULL, "saml2:SubjectConfirmationDataType"); - case SOAP_TYPE_PointerTosaml2__SubjectConfirmationType: - return soap_in_PointerTosaml2__SubjectConfirmationType(soap, tag, NULL, "saml2:SubjectConfirmationType"); - case SOAP_TYPE_PointerTosaml2__EncryptedElementType: - return soap_in_PointerTosaml2__EncryptedElementType(soap, tag, NULL, "saml2:EncryptedElementType"); - case SOAP_TYPE_PointerTosaml2__BaseIDAbstractType: - return soap_in_PointerTosaml2__BaseIDAbstractType(soap, tag, NULL, "saml2:BaseIDAbstractType"); - case SOAP_TYPE_PointerTosaml2__AttributeStatementType: - return soap_in_PointerTosaml2__AttributeStatementType(soap, tag, NULL, "saml2:AttributeStatementType"); - case SOAP_TYPE_PointerTosaml2__AuthzDecisionStatementType: - return soap_in_PointerTosaml2__AuthzDecisionStatementType(soap, tag, NULL, "saml2:AuthzDecisionStatementType"); - case SOAP_TYPE_PointerTosaml2__AuthnStatementType: - return soap_in_PointerTosaml2__AuthnStatementType(soap, tag, NULL, "saml2:AuthnStatementType"); - case SOAP_TYPE_PointerTosaml2__StatementAbstractType: - return soap_in_PointerTosaml2__StatementAbstractType(soap, tag, NULL, "saml2:StatementAbstractType"); - case SOAP_TYPE_PointerTosaml2__AdviceType: - return soap_in_PointerTosaml2__AdviceType(soap, tag, NULL, "saml2:AdviceType"); - case SOAP_TYPE_PointerTosaml2__ConditionsType: - return soap_in_PointerTosaml2__ConditionsType(soap, tag, NULL, "saml2:ConditionsType"); - case SOAP_TYPE_PointerTosaml2__SubjectType: - return soap_in_PointerTosaml2__SubjectType(soap, tag, NULL, "saml2:SubjectType"); - case SOAP_TYPE_PointerTosaml2__NameIDType: - return soap_in_PointerTosaml2__NameIDType(soap, tag, NULL, "saml2:NameIDType"); - case SOAP_TYPE_PointerToPointerToxenc__EncryptedKeyType: - return soap_in_PointerToPointerToxenc__EncryptedKeyType(soap, tag, NULL, "xenc:EncryptedKeyType"); - case SOAP_TYPE_PointerTosaml1__AttributeType: - return soap_in_PointerTosaml1__AttributeType(soap, tag, NULL, "saml1:AttributeType"); - case SOAP_TYPE_PointerTosaml1__EvidenceType: - return soap_in_PointerTosaml1__EvidenceType(soap, tag, NULL, "saml1:EvidenceType"); - case SOAP_TYPE_PointerTosaml1__ActionType: - return soap_in_PointerTosaml1__ActionType(soap, tag, NULL, "saml1:ActionType"); - case SOAP_TYPE_PointerTosaml1__AuthorityBindingType: - return soap_in_PointerTosaml1__AuthorityBindingType(soap, tag, NULL, "saml1:AuthorityBindingType"); - case SOAP_TYPE_PointerTosaml1__SubjectLocalityType: - return soap_in_PointerTosaml1__SubjectLocalityType(soap, tag, NULL, "saml1:SubjectLocalityType"); - case SOAP_TYPE_PointerTosaml1__SubjectType: - return soap_in_PointerTosaml1__SubjectType(soap, tag, NULL, "saml1:SubjectType"); - case SOAP_TYPE_PointerTostring: - return soap_in_PointerTostring(soap, tag, NULL, "xsd:string"); - case SOAP_TYPE_PointerTosaml1__SubjectConfirmationType: - return soap_in_PointerTosaml1__SubjectConfirmationType(soap, tag, NULL, "saml1:SubjectConfirmationType"); - case SOAP_TYPE_PointerTosaml1__NameIdentifierType: - return soap_in_PointerTosaml1__NameIdentifierType(soap, tag, NULL, "saml1:NameIdentifierType"); - case SOAP_TYPE_PointerTosaml1__AssertionType: - return soap_in_PointerTosaml1__AssertionType(soap, tag, NULL, "saml1:AssertionType"); - case SOAP_TYPE_PointerToxsd__dateTime: - return soap_in_PointerToxsd__dateTime(soap, tag, NULL, "xsd:dateTime"); - case SOAP_TYPE_PointerTosaml1__ConditionAbstractType: - return soap_in_PointerTosaml1__ConditionAbstractType(soap, tag, NULL, "saml1:ConditionAbstractType"); - case SOAP_TYPE_PointerTosaml1__DoNotCacheConditionType: - return soap_in_PointerTosaml1__DoNotCacheConditionType(soap, tag, NULL, "saml1:DoNotCacheConditionType"); - case SOAP_TYPE_PointerTosaml1__AudienceRestrictionConditionType: - return soap_in_PointerTosaml1__AudienceRestrictionConditionType(soap, tag, NULL, "saml1:AudienceRestrictionConditionType"); - case SOAP_TYPE_PointerTo_ds__Signature: - return soap_in_PointerTo_ds__Signature(soap, tag, NULL, "ds:Signature"); - case SOAP_TYPE_PointerTosaml1__AttributeStatementType: - return soap_in_PointerTosaml1__AttributeStatementType(soap, tag, NULL, "saml1:AttributeStatementType"); - case SOAP_TYPE_PointerTosaml1__AuthorizationDecisionStatementType: - return soap_in_PointerTosaml1__AuthorizationDecisionStatementType(soap, tag, NULL, "saml1:AuthorizationDecisionStatementType"); - case SOAP_TYPE_PointerTosaml1__AuthenticationStatementType: - return soap_in_PointerTosaml1__AuthenticationStatementType(soap, tag, NULL, "saml1:AuthenticationStatementType"); - case SOAP_TYPE_PointerTosaml1__SubjectStatementAbstractType: - return soap_in_PointerTosaml1__SubjectStatementAbstractType(soap, tag, NULL, "saml1:SubjectStatementAbstractType"); - case SOAP_TYPE_PointerTosaml1__StatementAbstractType: - return soap_in_PointerTosaml1__StatementAbstractType(soap, tag, NULL, "saml1:StatementAbstractType"); - case SOAP_TYPE_PointerTosaml1__AdviceType: - return soap_in_PointerTosaml1__AdviceType(soap, tag, NULL, "saml1:AdviceType"); - case SOAP_TYPE_PointerTosaml1__ConditionsType: - return soap_in_PointerTosaml1__ConditionsType(soap, tag, NULL, "saml1:ConditionsType"); - case SOAP_TYPE_PointerToULONG64: - return soap_in_PointerToULONG64(soap, tag, NULL, "xsd:unsignedLong"); - case SOAP_TYPE_PointerTowsc__PropertiesType: - return soap_in_PointerTowsc__PropertiesType(soap, tag, NULL, "wsc:PropertiesType"); - case SOAP_TYPE_wsc__FaultCodeOpenEnumType: - { char **s; - s = soap_in_wsc__FaultCodeOpenEnumType(soap, tag, NULL, "wsc:FaultCodeOpenEnumType"); - return s ? *s : NULL; - } - case SOAP_TYPE_PointerTo_xenc__ReferenceList: - return soap_in_PointerTo_xenc__ReferenceList(soap, tag, NULL, "xenc:ReferenceList"); - case SOAP_TYPE_PointerToxenc__ReferenceType: - return soap_in_PointerToxenc__ReferenceType(soap, tag, NULL, "xenc:ReferenceType"); - case SOAP_TYPE_PointerToxenc__EncryptionPropertyType: - return soap_in_PointerToxenc__EncryptionPropertyType(soap, tag, NULL, "xenc:EncryptionPropertyType"); - case SOAP_TYPE_PointerToxenc__TransformsType: - return soap_in_PointerToxenc__TransformsType(soap, tag, NULL, "xenc:TransformsType"); - case SOAP_TYPE_PointerToxenc__CipherReferenceType: - return soap_in_PointerToxenc__CipherReferenceType(soap, tag, NULL, "xenc:CipherReferenceType"); - case SOAP_TYPE_PointerToxenc__EncryptionPropertiesType: - return soap_in_PointerToxenc__EncryptionPropertiesType(soap, tag, NULL, "xenc:EncryptionPropertiesType"); - case SOAP_TYPE_PointerToxenc__CipherDataType: - return soap_in_PointerToxenc__CipherDataType(soap, tag, NULL, "xenc:CipherDataType"); - case SOAP_TYPE_PointerTo_ds__KeyInfo: - return soap_in_PointerTo_ds__KeyInfo(soap, tag, NULL, "ds:KeyInfo"); - case SOAP_TYPE_PointerToxenc__EncryptionMethodType: - return soap_in_PointerToxenc__EncryptionMethodType(soap, tag, NULL, "xenc:EncryptionMethodType"); - case SOAP_TYPE_PointerTods__X509IssuerSerialType: - return soap_in_PointerTods__X509IssuerSerialType(soap, tag, NULL, "ds:X509IssuerSerialType"); - case SOAP_TYPE_PointerTods__RSAKeyValueType: - return soap_in_PointerTods__RSAKeyValueType(soap, tag, NULL, "ds:RSAKeyValueType"); - case SOAP_TYPE_PointerTods__DSAKeyValueType: - return soap_in_PointerTods__DSAKeyValueType(soap, tag, NULL, "ds:DSAKeyValueType"); - case SOAP_TYPE_PointerTods__TransformType: - return soap_in_PointerTods__TransformType(soap, tag, NULL, "ds:TransformType"); - case SOAP_TYPE_PointerTods__DigestMethodType: - return soap_in_PointerTods__DigestMethodType(soap, tag, NULL, "ds:DigestMethodType"); - case SOAP_TYPE_PointerTods__TransformsType: - return soap_in_PointerTods__TransformsType(soap, tag, NULL, "ds:TransformsType"); - case SOAP_TYPE_PointerToint: - return soap_in_PointerToint(soap, tag, NULL, "xsd:int"); - case SOAP_TYPE_PointerToPointerTods__ReferenceType: - return soap_in_PointerToPointerTods__ReferenceType(soap, tag, NULL, "ds:ReferenceType"); - case SOAP_TYPE_PointerTods__ReferenceType: - return soap_in_PointerTods__ReferenceType(soap, tag, NULL, "ds:ReferenceType"); - case SOAP_TYPE_PointerTods__SignatureMethodType: - return soap_in_PointerTods__SignatureMethodType(soap, tag, NULL, "ds:SignatureMethodType"); - case SOAP_TYPE_PointerTods__CanonicalizationMethodType: - return soap_in_PointerTods__CanonicalizationMethodType(soap, tag, NULL, "ds:CanonicalizationMethodType"); - case SOAP_TYPE_PointerTo_wsse__SecurityTokenReference: - return soap_in_PointerTo_wsse__SecurityTokenReference(soap, tag, NULL, "wsse:SecurityTokenReference"); - case SOAP_TYPE_PointerTods__RetrievalMethodType: - return soap_in_PointerTods__RetrievalMethodType(soap, tag, NULL, "ds:RetrievalMethodType"); - case SOAP_TYPE_PointerTods__KeyValueType: - return soap_in_PointerTods__KeyValueType(soap, tag, NULL, "ds:KeyValueType"); - case SOAP_TYPE_PointerTo_c14n__InclusiveNamespaces: - return soap_in_PointerTo_c14n__InclusiveNamespaces(soap, tag, NULL, "c14n:InclusiveNamespaces"); - case SOAP_TYPE_PointerTods__KeyInfoType: - return soap_in_PointerTods__KeyInfoType(soap, tag, NULL, "ds:KeyInfoType"); - case SOAP_TYPE_PointerTods__SignedInfoType: - return soap_in_PointerTods__SignedInfoType(soap, tag, NULL, "ds:SignedInfoType"); - case SOAP_TYPE_PointerToxenc__EncryptedKeyType: - return soap_in_PointerToxenc__EncryptedKeyType(soap, tag, NULL, "xenc:EncryptedKeyType"); - case SOAP_TYPE_PointerTods__X509DataType: - return soap_in_PointerTods__X509DataType(soap, tag, NULL, "ds:X509DataType"); - case SOAP_TYPE_PointerTo_wsse__Embedded: - return soap_in_PointerTo_wsse__Embedded(soap, tag, NULL, "wsse:Embedded"); - case SOAP_TYPE_PointerTo_wsse__KeyIdentifier: - return soap_in_PointerTo_wsse__KeyIdentifier(soap, tag, NULL, "wsse:KeyIdentifier"); - case SOAP_TYPE_PointerTo_wsse__Reference: - return soap_in_PointerTo_wsse__Reference(soap, tag, NULL, "wsse:Reference"); - case SOAP_TYPE_PointerTowsse__EncodedString: - return soap_in_PointerTowsse__EncodedString(soap, tag, NULL, "wsse:EncodedString"); - case SOAP_TYPE_PointerTo_wsse__Password: - return soap_in_PointerTo_wsse__Password(soap, tag, NULL, "wsse:Password"); - case SOAP_TYPE_PointerTowsdd__ResolveMatchesType: - return soap_in_PointerTowsdd__ResolveMatchesType(soap, tag, NULL, "wsdd:ResolveMatchesType"); - case SOAP_TYPE_PointerTowsdd__ResolveType: - return soap_in_PointerTowsdd__ResolveType(soap, tag, NULL, "wsdd:ResolveType"); - case SOAP_TYPE_PointerTowsdd__ProbeMatchesType: - return soap_in_PointerTowsdd__ProbeMatchesType(soap, tag, NULL, "wsdd:ProbeMatchesType"); - case SOAP_TYPE_PointerTowsdd__ProbeType: - return soap_in_PointerTowsdd__ProbeType(soap, tag, NULL, "wsdd:ProbeType"); - case SOAP_TYPE_PointerTowsdd__ByeType: - return soap_in_PointerTowsdd__ByeType(soap, tag, NULL, "wsdd:ByeType"); - case SOAP_TYPE_PointerTowsdd__HelloType: - return soap_in_PointerTowsdd__HelloType(soap, tag, NULL, "wsdd:HelloType"); - case SOAP_TYPE_PointerTowsdd__AppSequenceType: - return soap_in_PointerTowsdd__AppSequenceType(soap, tag, NULL, "wsdd:AppSequenceType"); - case SOAP_TYPE__wsdd__Types: - { char **s; - s = soap_in__wsdd__Types(soap, tag, NULL, "xsd:QName"); - return s ? *s : NULL; - } - case SOAP_TYPE_PointerTowsdd__SigType: - return soap_in_PointerTowsdd__SigType(soap, tag, NULL, "wsdd:SigType"); - case SOAP_TYPE_PointerTowsdd__ResolveMatchType: - return soap_in_PointerTowsdd__ResolveMatchType(soap, tag, NULL, "wsdd:ResolveMatchType"); - case SOAP_TYPE_PointerTowsdd__ProbeMatchType: - return soap_in_PointerTowsdd__ProbeMatchType(soap, tag, NULL, "wsdd:ProbeMatchType"); - case SOAP_TYPE_PointerTounsignedInt: - return soap_in_PointerTounsignedInt(soap, tag, NULL, "xsd:unsignedInt"); - case SOAP_TYPE_PointerTowsdd__ScopesType: - return soap_in_PointerTowsdd__ScopesType(soap, tag, NULL, "wsdd:ScopesType"); - case SOAP_TYPE_wsdd__FaultCodeOpenType: - { char **s; - s = soap_in_wsdd__FaultCodeOpenType(soap, tag, NULL, "wsdd:FaultCodeOpenType"); - return s ? *s : NULL; - } - case SOAP_TYPE_wsdd__UriListType: - { char **s; - s = soap_in_wsdd__UriListType(soap, tag, NULL, "wsdd:UriListType"); - return s ? *s : NULL; - } - case SOAP_TYPE_wsdd__QNameListType: - { char **s; - s = soap_in_wsdd__QNameListType(soap, tag, NULL, "xsd:QName"); - return s ? *s : NULL; - } - case SOAP_TYPE_PointerTo_wsa__FaultTo: - return soap_in_PointerTo_wsa__FaultTo(soap, tag, NULL, "wsa:FaultTo"); - case SOAP_TYPE_PointerTo_wsa__ReplyTo: - return soap_in_PointerTo_wsa__ReplyTo(soap, tag, NULL, "wsa:ReplyTo"); - case SOAP_TYPE_PointerTo_wsa__From: - return soap_in_PointerTo_wsa__From(soap, tag, NULL, "wsa:From"); - case SOAP_TYPE_PointerTo_wsa__RelatesTo: - return soap_in_PointerTo_wsa__RelatesTo(soap, tag, NULL, "wsa:RelatesTo"); - case SOAP_TYPE_PointerTowsa__ServiceNameType: - return soap_in_PointerTowsa__ServiceNameType(soap, tag, NULL, "wsa:ServiceNameType"); - case SOAP_TYPE_PointerTo_QName: - return soap_in_PointerTo_QName(soap, tag, NULL, "xsd:QName"); - case SOAP_TYPE_PointerTowsa__ReferenceParametersType: - return soap_in_PointerTowsa__ReferenceParametersType(soap, tag, NULL, "wsa:ReferenceParametersType"); - case SOAP_TYPE_PointerTowsa__ReferencePropertiesType: - return soap_in_PointerTowsa__ReferencePropertiesType(soap, tag, NULL, "wsa:ReferencePropertiesType"); - case SOAP_TYPE__QName: - { char **s; - s = soap_in__QName(soap, tag, NULL, "xsd:QName"); - return s ? *s : NULL; - } - case SOAP_TYPE_string: - { char **s; - s = soap_in_string(soap, tag, NULL, "xsd:string"); - return s ? *s : NULL; - } - default: -#else - *type = 0; -#endif - { const char *t = soap->type; - if (!*t) - t = soap->tag; - if (!soap_match_tag(soap, t, "tt:RecordingJobReference")) - { *type = SOAP_TYPE_tt__RecordingJobReference__; - return soap_in_tt__RecordingJobReference__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobReference")) - { *type = SOAP_TYPE_tt__RecordingJobReference; - return soap_in_tt__RecordingJobReference(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:JobToken")) - { *type = SOAP_TYPE_tt__JobToken__; - return soap_in_tt__JobToken__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:JobToken")) - { *type = SOAP_TYPE_tt__JobToken; - return soap_in_tt__JobToken(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackReference")) - { *type = SOAP_TYPE_tt__TrackReference__; - return soap_in_tt__TrackReference__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackReference")) - { *type = SOAP_TYPE_tt__TrackReference; - return soap_in_tt__TrackReference(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingReference")) - { *type = SOAP_TYPE_tt__RecordingReference__; - return soap_in_tt__RecordingReference__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingReference")) - { *type = SOAP_TYPE_tt__RecordingReference; - return soap_in_tt__RecordingReference(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverReference")) - { *type = SOAP_TYPE_tt__ReceiverReference__; - return soap_in_tt__ReceiverReference__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverReference")) - { *type = SOAP_TYPE_tt__ReceiverReference; - return soap_in_tt__ReceiverReference(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:SimpleTopicExpression")) - { *type = SOAP_TYPE_wstop__SimpleTopicExpression__; - return soap_in_wstop__SimpleTopicExpression__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:QName")) - { *type = SOAP_TYPE_wstop__SimpleTopicExpression; - return soap_in_wstop__SimpleTopicExpression(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:ConcreteTopicExpression")) - { *type = SOAP_TYPE_wstop__ConcreteTopicExpression__; - return soap_in_wstop__ConcreteTopicExpression__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:ConcreteTopicExpression")) - { *type = SOAP_TYPE_wstop__ConcreteTopicExpression; - return soap_in_wstop__ConcreteTopicExpression(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:FullTopicExpression")) - { *type = SOAP_TYPE_wstop__FullTopicExpression__; - return soap_in_wstop__FullTopicExpression__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:FullTopicExpression")) - { *type = SOAP_TYPE_wstop__FullTopicExpression; - return soap_in_wstop__FullTopicExpression(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:ImagingPresetType")) - { *type = SOAP_TYPE_timg__ImagingPresetType_; - return soap_in_timg__ImagingPresetType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StorageType")) - { *type = SOAP_TYPE_tds__StorageType_; - return soap_in_tds__StorageType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:AutoGeoModes")) - { *type = SOAP_TYPE_tds__AutoGeoModes_; - return soap_in_tds__AutoGeoModes_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:ParityBit")) - { *type = SOAP_TYPE_tmd__ParityBit_; - return soap_in_tmd__ParityBit_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SerialPortType")) - { *type = SOAP_TYPE_tmd__SerialPortType_; - return soap_in_tmd__SerialPortType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDType")) - { *type = SOAP_TYPE_tt__OSDType_; - return soap_in_tt__OSDType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioClassType")) - { *type = SOAP_TYPE_tt__AudioClassType__; - return soap_in_tt__AudioClassType__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioClassType")) - { *type = SOAP_TYPE_tt__AudioClassType; - return soap_in_tt__AudioClassType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ModeOfOperation")) - { *type = SOAP_TYPE_tt__ModeOfOperation_; - return soap_in_tt__ModeOfOperation_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobState")) - { *type = SOAP_TYPE_tt__RecordingJobState__; - return soap_in_tt__RecordingJobState__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobState")) - { *type = SOAP_TYPE_tt__RecordingJobState; - return soap_in_tt__RecordingJobState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobMode")) - { *type = SOAP_TYPE_tt__RecordingJobMode__; - return soap_in_tt__RecordingJobMode__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobMode")) - { *type = SOAP_TYPE_tt__RecordingJobMode; - return soap_in_tt__RecordingJobMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackType")) - { *type = SOAP_TYPE_tt__TrackType_; - return soap_in_tt__TrackType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingStatus")) - { *type = SOAP_TYPE_tt__RecordingStatus_; - return soap_in_tt__RecordingStatus_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SearchState")) - { *type = SOAP_TYPE_tt__SearchState_; - return soap_in_tt__SearchState_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:XPathExpression")) - { *type = SOAP_TYPE_tt__XPathExpression__; - return soap_in_tt__XPathExpression__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:XPathExpression")) - { *type = SOAP_TYPE_tt__XPathExpression; - return soap_in_tt__XPathExpression(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Description")) - { *type = SOAP_TYPE_tt__Description__; - return soap_in_tt__Description__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Description")) - { *type = SOAP_TYPE_tt__Description; - return soap_in_tt__Description(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverState")) - { *type = SOAP_TYPE_tt__ReceiverState_; - return soap_in_tt__ReceiverState_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverMode")) - { *type = SOAP_TYPE_tt__ReceiverMode_; - return soap_in_tt__ReceiverMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Direction")) - { *type = SOAP_TYPE_tt__Direction_; - return soap_in_tt__Direction_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PropertyOperation")) - { *type = SOAP_TYPE_tt__PropertyOperation_; - return soap_in_tt__PropertyOperation_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageSendingType")) - { *type = SOAP_TYPE_tt__ImageSendingType_; - return soap_in_tt__ImageSendingType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DefoggingMode")) - { *type = SOAP_TYPE_tt__DefoggingMode_; - return soap_in_tt__DefoggingMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ToneCompensationMode")) - { *type = SOAP_TYPE_tt__ToneCompensationMode_; - return soap_in_tt__ToneCompensationMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterAutoBoundaryType")) - { *type = SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_; - return soap_in_tt__IrCutFilterAutoBoundaryType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageStabilizationMode")) - { *type = SOAP_TYPE_tt__ImageStabilizationMode_; - return soap_in_tt__ImageStabilizationMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterMode")) - { *type = SOAP_TYPE_tt__IrCutFilterMode_; - return soap_in_tt__IrCutFilterMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalanceMode")) - { *type = SOAP_TYPE_tt__WhiteBalanceMode_; - return soap_in_tt__WhiteBalanceMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Enabled")) - { *type = SOAP_TYPE_tt__Enabled_; - return soap_in_tt__Enabled_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ExposureMode")) - { *type = SOAP_TYPE_tt__ExposureMode_; - return soap_in_tt__ExposureMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ExposurePriority")) - { *type = SOAP_TYPE_tt__ExposurePriority_; - return soap_in_tt__ExposurePriority_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BacklightCompensationMode")) - { *type = SOAP_TYPE_tt__BacklightCompensationMode_; - return soap_in_tt__BacklightCompensationMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WideDynamicMode")) - { *type = SOAP_TYPE_tt__WideDynamicMode_; - return soap_in_tt__WideDynamicMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AFModes")) - { *type = SOAP_TYPE_tt__AFModes_; - return soap_in_tt__AFModes_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AutoFocusMode")) - { *type = SOAP_TYPE_tt__AutoFocusMode_; - return soap_in_tt__AutoFocusMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MoveAndTrackMethod")) - { *type = SOAP_TYPE_tt__MoveAndTrackMethod_; - return soap_in_tt__MoveAndTrackMethod_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourOperation")) - { *type = SOAP_TYPE_tt__PTZPresetTourOperation_; - return soap_in_tt__PTZPresetTourOperation_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourDirection")) - { *type = SOAP_TYPE_tt__PTZPresetTourDirection_; - return soap_in_tt__PTZPresetTourDirection_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourState")) - { *type = SOAP_TYPE_tt__PTZPresetTourState_; - return soap_in_tt__PTZPresetTourState_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AuxiliaryData")) - { *type = SOAP_TYPE_tt__AuxiliaryData__; - return soap_in_tt__AuxiliaryData__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AuxiliaryData")) - { *type = SOAP_TYPE_tt__AuxiliaryData; - return soap_in_tt__AuxiliaryData(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReverseMode")) - { *type = SOAP_TYPE_tt__ReverseMode_; - return soap_in_tt__ReverseMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EFlipMode")) - { *type = SOAP_TYPE_tt__EFlipMode_; - return soap_in_tt__EFlipMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DigitalIdleState")) - { *type = SOAP_TYPE_tt__DigitalIdleState_; - return soap_in_tt__DigitalIdleState_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayMode")) - { *type = SOAP_TYPE_tt__RelayMode_; - return soap_in_tt__RelayMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayIdleState")) - { *type = SOAP_TYPE_tt__RelayIdleState_; - return soap_in_tt__RelayIdleState_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayLogicalState")) - { *type = SOAP_TYPE_tt__RelayLogicalState_; - return soap_in_tt__RelayLogicalState_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:UserLevel")) - { *type = SOAP_TYPE_tt__UserLevel_; - return soap_in_tt__UserLevel_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SetDateTimeType")) - { *type = SOAP_TYPE_tt__SetDateTimeType_; - return soap_in_tt__SetDateTimeType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FactoryDefaultType")) - { *type = SOAP_TYPE_tt__FactoryDefaultType_; - return soap_in_tt__FactoryDefaultType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemLogType")) - { *type = SOAP_TYPE_tt__SystemLogType_; - return soap_in_tt__SystemLogType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CapabilityCategory")) - { *type = SOAP_TYPE_tt__CapabilityCategory_; - return soap_in_tt__CapabilityCategory_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11AuthAndMangementSuite")) - { *type = SOAP_TYPE_tt__Dot11AuthAndMangementSuite_; - return soap_in_tt__Dot11AuthAndMangementSuite_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SignalStrength")) - { *type = SOAP_TYPE_tt__Dot11SignalStrength_; - return soap_in_tt__Dot11SignalStrength_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11PSKPassphrase")) - { *type = SOAP_TYPE_tt__Dot11PSKPassphrase__; - return soap_in_tt__Dot11PSKPassphrase__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11PSKPassphrase")) - { *type = SOAP_TYPE_tt__Dot11PSKPassphrase; - return soap_in_tt__Dot11PSKPassphrase(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11PSK")) - { *type = SOAP_TYPE_tt__Dot11PSK__; - return soap_in_tt__Dot11PSK__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11PSK")) - { *type = SOAP_TYPE_tt__Dot11PSK; - return soap_in_tt__Dot11PSK(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11Cipher")) - { *type = SOAP_TYPE_tt__Dot11Cipher_; - return soap_in_tt__Dot11Cipher_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SecurityMode")) - { *type = SOAP_TYPE_tt__Dot11SecurityMode_; - return soap_in_tt__Dot11SecurityMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11StationMode")) - { *type = SOAP_TYPE_tt__Dot11StationMode_; - return soap_in_tt__Dot11StationMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SSIDType")) - { *type = SOAP_TYPE_tt__Dot11SSIDType__; - return soap_in_tt__Dot11SSIDType__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SSIDType")) - { *type = SOAP_TYPE_tt__Dot11SSIDType; - return soap_in_tt__Dot11SSIDType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DynamicDNSType")) - { *type = SOAP_TYPE_tt__DynamicDNSType_; - return soap_in_tt__DynamicDNSType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPAddressFilterType")) - { *type = SOAP_TYPE_tt__IPAddressFilterType_; - return soap_in_tt__IPAddressFilterType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Domain")) - { *type = SOAP_TYPE_tt__Domain__; - return soap_in_tt__Domain__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Domain")) - { *type = SOAP_TYPE_tt__Domain; - return soap_in_tt__Domain(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DNSName")) - { *type = SOAP_TYPE_tt__DNSName__; - return soap_in_tt__DNSName__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DNSName")) - { *type = SOAP_TYPE_tt__DNSName; - return soap_in_tt__DNSName(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPType")) - { *type = SOAP_TYPE_tt__IPType_; - return soap_in_tt__IPType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:HwAddress")) - { *type = SOAP_TYPE_tt__HwAddress__; - return soap_in_tt__HwAddress__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:HwAddress")) - { *type = SOAP_TYPE_tt__HwAddress; - return soap_in_tt__HwAddress(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6Address")) - { *type = SOAP_TYPE_tt__IPv6Address__; - return soap_in_tt__IPv6Address__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6Address")) - { *type = SOAP_TYPE_tt__IPv6Address; - return soap_in_tt__IPv6Address(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv4Address")) - { *type = SOAP_TYPE_tt__IPv4Address__; - return soap_in_tt__IPv4Address__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv4Address")) - { *type = SOAP_TYPE_tt__IPv4Address; - return soap_in_tt__IPv4Address(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkHostType")) - { *type = SOAP_TYPE_tt__NetworkHostType_; - return soap_in_tt__NetworkHostType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkProtocolType")) - { *type = SOAP_TYPE_tt__NetworkProtocolType_; - return soap_in_tt__NetworkProtocolType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6DHCPConfiguration")) - { *type = SOAP_TYPE_tt__IPv6DHCPConfiguration_; - return soap_in_tt__IPv6DHCPConfiguration_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IANA-IfTypes")) - { *type = SOAP_TYPE_tt__IANA_IfTypes__; - return soap_in_tt__IANA_IfTypes__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Duplex")) - { *type = SOAP_TYPE_tt__Duplex_; - return soap_in_tt__Duplex_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceConfigPriority")) - { *type = SOAP_TYPE_tt__NetworkInterfaceConfigPriority__; - return soap_in_tt__NetworkInterfaceConfigPriority__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceConfigPriority")) - { *type = SOAP_TYPE_tt__NetworkInterfaceConfigPriority; - return soap_in_tt__NetworkInterfaceConfigPriority(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DiscoveryMode")) - { *type = SOAP_TYPE_tt__DiscoveryMode_; - return soap_in_tt__DiscoveryMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ScopeDefinition")) - { *type = SOAP_TYPE_tt__ScopeDefinition_; - return soap_in_tt__ScopeDefinition_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TransportProtocol")) - { *type = SOAP_TYPE_tt__TransportProtocol_; - return soap_in_tt__TransportProtocol_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StreamType")) - { *type = SOAP_TYPE_tt__StreamType_; - return soap_in_tt__StreamType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataCompressionType")) - { *type = SOAP_TYPE_tt__MetadataCompressionType_; - return soap_in_tt__MetadataCompressionType_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncodingMimeNames")) - { *type = SOAP_TYPE_tt__AudioEncodingMimeNames_; - return soap_in_tt__AudioEncodingMimeNames_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncoding")) - { *type = SOAP_TYPE_tt__AudioEncoding_; - return soap_in_tt__AudioEncoding_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncodingProfiles")) - { *type = SOAP_TYPE_tt__VideoEncodingProfiles_; - return soap_in_tt__VideoEncodingProfiles_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncodingMimeNames")) - { *type = SOAP_TYPE_tt__VideoEncodingMimeNames_; - return soap_in_tt__VideoEncodingMimeNames_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:H264Profile")) - { *type = SOAP_TYPE_tt__H264Profile_; - return soap_in_tt__H264Profile_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Mpeg4Profile")) - { *type = SOAP_TYPE_tt__Mpeg4Profile_; - return soap_in_tt__Mpeg4Profile_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoding")) - { *type = SOAP_TYPE_tt__VideoEncoding_; - return soap_in_tt__VideoEncoding_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ViewModes")) - { *type = SOAP_TYPE_tt__ViewModes_; - return soap_in_tt__ViewModes_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SceneOrientationOption")) - { *type = SOAP_TYPE_tt__SceneOrientationOption_; - return soap_in_tt__SceneOrientationOption_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SceneOrientationMode")) - { *type = SOAP_TYPE_tt__SceneOrientationMode_; - return soap_in_tt__SceneOrientationMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RotateMode")) - { *type = SOAP_TYPE_tt__RotateMode_; - return soap_in_tt__RotateMode_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Name")) - { *type = SOAP_TYPE_tt__Name__; - return soap_in_tt__Name__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Name")) - { *type = SOAP_TYPE_tt__Name; - return soap_in_tt__Name(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Entity")) - { *type = SOAP_TYPE_tt__Entity_; - return soap_in_tt__Entity_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MoveStatus")) - { *type = SOAP_TYPE_tt__MoveStatus_; - return soap_in_tt__MoveStatus_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReferenceToken")) - { *type = SOAP_TYPE_tt__ReferenceToken__; - return soap_in_tt__ReferenceToken__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReferenceToken")) - { *type = SOAP_TYPE_tt__ReferenceToken; - return soap_in_tt__ReferenceToken(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:EncodingTypes")) - { *type = SOAP_TYPE_trc__EncodingTypes; - return soap_in_trc__EncodingTypes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:EncodingTypes")) - { *type = SOAP_TYPE_trt__EncodingTypes; - return soap_in_trt__EncodingTypes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:EAPMethodTypes")) - { *type = SOAP_TYPE_tds__EAPMethodTypes; - return soap_in_tds__EAPMethodTypes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:DelayTimes")) - { *type = SOAP_TYPE_tmd__DelayTimes; - return soap_in_tmd__DelayTimes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReferenceTokenList")) - { *type = SOAP_TYPE_tt__ReferenceTokenList; - return soap_in_tt__ReferenceTokenList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StringList")) - { *type = SOAP_TYPE_tt__StringList; - return soap_in_tt__StringList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StringAttrList")) - { *type = SOAP_TYPE_tt__StringAttrList; - return soap_in_tt__StringAttrList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FloatAttrList")) - { *type = SOAP_TYPE_tt__FloatAttrList; - return soap_in_tt__FloatAttrList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IntAttrList")) - { *type = SOAP_TYPE_tt__IntAttrList; - return soap_in_tt__IntAttrList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:AbsoluteOrRelativeTimeType")) - { *type = SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType; - return soap_in_wsnt__AbsoluteOrRelativeTimeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:TopicSetType")) - { *type = SOAP_TYPE_wstop__TopicSetType; - return soap_in_wstop__TopicSetType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:TopicType")) - { *type = SOAP_TYPE_wstop__TopicType; - return soap_in_wstop__TopicType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:TopicNamespaceType")) - { *type = SOAP_TYPE_wstop__TopicNamespaceType; - return soap_in_wstop__TopicNamespaceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:QueryExpressionType")) - { *type = SOAP_TYPE_wstop__QueryExpressionType; - return soap_in_wstop__QueryExpressionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:ExtensibleDocumented")) - { *type = SOAP_TYPE_wstop__ExtensibleDocumented; - return soap_in_wstop__ExtensibleDocumented(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:Documentation")) - { *type = SOAP_TYPE_wstop__Documentation; - return soap_in_wstop__Documentation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:Capabilities")) - { *type = SOAP_TYPE_tse__Capabilities; - return soap_in_tse__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:Capabilities")) - { *type = SOAP_TYPE_trp__Capabilities; - return soap_in_trp__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:TrackOptions")) - { *type = SOAP_TYPE_trc__TrackOptions; - return soap_in_trc__TrackOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:JobOptions")) - { *type = SOAP_TYPE_trc__JobOptions; - return soap_in_trc__JobOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:RecordingOptions")) - { *type = SOAP_TYPE_trc__RecordingOptions; - return soap_in_trc__RecordingOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:Capabilities")) - { *type = SOAP_TYPE_trc__Capabilities; - return soap_in_trc__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:Capabilities")) - { *type = SOAP_TYPE_trv__Capabilities; - return soap_in_trv__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsrfr:ResourceUnavailableFaultType")) - { *type = SOAP_TYPE_wsrfr__ResourceUnavailableFaultType; - return soap_in_wsrfr__ResourceUnavailableFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsrfr:ResourceUnknownFaultType")) - { *type = SOAP_TYPE_wsrfr__ResourceUnknownFaultType; - return soap_in_wsrfr__ResourceUnknownFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:Capabilities")) - { *type = SOAP_TYPE_tptz__Capabilities; - return soap_in_tptz__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:VideoSourceModeExtension")) - { *type = SOAP_TYPE_trt__VideoSourceModeExtension; - return soap_in_trt__VideoSourceModeExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:VideoSourceMode")) - { *type = SOAP_TYPE_trt__VideoSourceMode; - return soap_in_trt__VideoSourceMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:StreamingCapabilities")) - { *type = SOAP_TYPE_trt__StreamingCapabilities; - return soap_in_trt__StreamingCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:ProfileCapabilities")) - { *type = SOAP_TYPE_trt__ProfileCapabilities; - return soap_in_trt__ProfileCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:Capabilities")) - { *type = SOAP_TYPE_trt__Capabilities; - return soap_in_trt__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xop:Include")) - { *type = SOAP_TYPE_xop__Include; - return soap_in_xop__Include(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:ImagingPreset")) - { *type = SOAP_TYPE_timg__ImagingPreset; - return soap_in_timg__ImagingPreset(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:Capabilities")) - { *type = SOAP_TYPE_timg__Capabilities; - return soap_in_timg__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:Capabilities")) - { *type = SOAP_TYPE_tls__Capabilities; - return soap_in_tls__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StorageConfiguration")) - { *type = SOAP_TYPE_tds__StorageConfiguration; - return soap_in_tds__StorageConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StorageConfigurationData")) - { *type = SOAP_TYPE_tds__StorageConfigurationData; - return soap_in_tds__StorageConfigurationData(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:UserCredential")) - { *type = SOAP_TYPE_tds__UserCredential; - return soap_in_tds__UserCredential(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:MiscCapabilities")) - { *type = SOAP_TYPE_tds__MiscCapabilities; - return soap_in_tds__MiscCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SystemCapabilities")) - { *type = SOAP_TYPE_tds__SystemCapabilities; - return soap_in_tds__SystemCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SecurityCapabilities")) - { *type = SOAP_TYPE_tds__SecurityCapabilities; - return soap_in_tds__SecurityCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:NetworkCapabilities")) - { *type = SOAP_TYPE_tds__NetworkCapabilities; - return soap_in_tds__NetworkCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeviceServiceCapabilities")) - { *type = SOAP_TYPE_tds__DeviceServiceCapabilities; - return soap_in_tds__DeviceServiceCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:Service")) - { *type = SOAP_TYPE_tds__Service; - return soap_in_tds__Service(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:ParityBitList")) - { *type = SOAP_TYPE_tmd__ParityBitList; - return soap_in_tmd__ParityBitList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SerialPortConfigurationOptions")) - { *type = SOAP_TYPE_tmd__SerialPortConfigurationOptions; - return soap_in_tmd__SerialPortConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SerialPortConfiguration")) - { *type = SOAP_TYPE_tmd__SerialPortConfiguration; - return soap_in_tmd__SerialPortConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SerialPort")) - { *type = SOAP_TYPE_tmd__SerialPort; - return soap_in_tmd__SerialPort(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SerialData")) - { *type = SOAP_TYPE_tmd__SerialData; - return soap_in_tmd__SerialData(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:DigitalInputConfigurationInputOptions")) - { *type = SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions; - return soap_in_tmd__DigitalInputConfigurationInputOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetResponse")) - { *type = SOAP_TYPE_tmd__GetResponse; - return soap_in_tmd__GetResponse(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:Get")) - { *type = SOAP_TYPE_tmd__Get; - return soap_in_tmd__Get(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:RelayOutputOptionsExtension")) - { *type = SOAP_TYPE_tmd__RelayOutputOptionsExtension; - return soap_in_tmd__RelayOutputOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:RelayOutputOptions")) - { *type = SOAP_TYPE_tmd__RelayOutputOptions; - return soap_in_tmd__RelayOutputOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:Capabilities")) - { *type = SOAP_TYPE_tmd__Capabilities; - return soap_in_tmd__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PolygonOptions")) - { *type = SOAP_TYPE_tt__PolygonOptions; - return soap_in_tt__PolygonOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StorageReferencePathExtension")) - { *type = SOAP_TYPE_tt__StorageReferencePathExtension; - return soap_in_tt__StorageReferencePathExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StorageReferencePath")) - { *type = SOAP_TYPE_tt__StorageReferencePath; - return soap_in_tt__StorageReferencePath(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ArrayOfFileProgressExtension")) - { *type = SOAP_TYPE_tt__ArrayOfFileProgressExtension; - return soap_in_tt__ArrayOfFileProgressExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ArrayOfFileProgress")) - { *type = SOAP_TYPE_tt__ArrayOfFileProgress; - return soap_in_tt__ArrayOfFileProgress(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FileProgress")) - { *type = SOAP_TYPE_tt__FileProgress; - return soap_in_tt__FileProgress(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDConfigurationOptionsExtension")) - { *type = SOAP_TYPE_tt__OSDConfigurationOptionsExtension; - return soap_in_tt__OSDConfigurationOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDConfigurationOptions")) - { *type = SOAP_TYPE_tt__OSDConfigurationOptions; - return soap_in_tt__OSDConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MaximumNumberOfOSDs")) - { *type = SOAP_TYPE_tt__MaximumNumberOfOSDs; - return soap_in_tt__MaximumNumberOfOSDs(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDConfigurationExtension")) - { *type = SOAP_TYPE_tt__OSDConfigurationExtension; - return soap_in_tt__OSDConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDConfiguration")) - { *type = SOAP_TYPE_tt__OSDConfiguration; - return soap_in_tt__OSDConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDImgOptionsExtension")) - { *type = SOAP_TYPE_tt__OSDImgOptionsExtension; - return soap_in_tt__OSDImgOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDImgOptions")) - { *type = SOAP_TYPE_tt__OSDImgOptions; - return soap_in_tt__OSDImgOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDTextOptionsExtension")) - { *type = SOAP_TYPE_tt__OSDTextOptionsExtension; - return soap_in_tt__OSDTextOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDTextOptions")) - { *type = SOAP_TYPE_tt__OSDTextOptions; - return soap_in_tt__OSDTextOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDColorOptionsExtension")) - { *type = SOAP_TYPE_tt__OSDColorOptionsExtension; - return soap_in_tt__OSDColorOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDColorOptions")) - { *type = SOAP_TYPE_tt__OSDColorOptions; - return soap_in_tt__OSDColorOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ColorOptions")) - { *type = SOAP_TYPE_tt__ColorOptions; - return soap_in_tt__ColorOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ColorspaceRange")) - { *type = SOAP_TYPE_tt__ColorspaceRange; - return soap_in_tt__ColorspaceRange(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDImgConfigurationExtension")) - { *type = SOAP_TYPE_tt__OSDImgConfigurationExtension; - return soap_in_tt__OSDImgConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDImgConfiguration")) - { *type = SOAP_TYPE_tt__OSDImgConfiguration; - return soap_in_tt__OSDImgConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDTextConfigurationExtension")) - { *type = SOAP_TYPE_tt__OSDTextConfigurationExtension; - return soap_in_tt__OSDTextConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDTextConfiguration")) - { *type = SOAP_TYPE_tt__OSDTextConfiguration; - return soap_in_tt__OSDTextConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDColor")) - { *type = SOAP_TYPE_tt__OSDColor; - return soap_in_tt__OSDColor(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDPosConfigurationExtension")) - { *type = SOAP_TYPE_tt__OSDPosConfigurationExtension; - return soap_in_tt__OSDPosConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDPosConfiguration")) - { *type = SOAP_TYPE_tt__OSDPosConfiguration; - return soap_in_tt__OSDPosConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDReference")) - { *type = SOAP_TYPE_tt__OSDReference; - return soap_in_tt__OSDReference(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ProfileStatusExtension")) - { *type = SOAP_TYPE_tt__ProfileStatusExtension; - return soap_in_tt__ProfileStatusExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ProfileStatus")) - { *type = SOAP_TYPE_tt__ProfileStatus; - return soap_in_tt__ProfileStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ActiveConnection")) - { *type = SOAP_TYPE_tt__ActiveConnection; - return soap_in_tt__ActiveConnection(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioClassDescriptorExtension")) - { *type = SOAP_TYPE_tt__AudioClassDescriptorExtension; - return soap_in_tt__AudioClassDescriptorExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioClassDescriptor")) - { *type = SOAP_TYPE_tt__AudioClassDescriptor; - return soap_in_tt__AudioClassDescriptor(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioClassCandidate")) - { *type = SOAP_TYPE_tt__AudioClassCandidate; - return soap_in_tt__AudioClassCandidate(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ActionEngineEventPayloadExtension")) - { *type = SOAP_TYPE_tt__ActionEngineEventPayloadExtension; - return soap_in_tt__ActionEngineEventPayloadExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ActionEngineEventPayload")) - { *type = SOAP_TYPE_tt__ActionEngineEventPayload; - return soap_in_tt__ActionEngineEventPayload(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsState")) - { *type = SOAP_TYPE_tt__AnalyticsState; - return soap_in_tt__AnalyticsState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsStateInformation")) - { *type = SOAP_TYPE_tt__AnalyticsStateInformation; - return soap_in_tt__AnalyticsStateInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsEngineControl")) - { *type = SOAP_TYPE_tt__AnalyticsEngineControl; - return soap_in_tt__AnalyticsEngineControl(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataInputExtension")) - { *type = SOAP_TYPE_tt__MetadataInputExtension; - return soap_in_tt__MetadataInputExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataInput")) - { *type = SOAP_TYPE_tt__MetadataInput; - return soap_in_tt__MetadataInput(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SourceIdentificationExtension")) - { *type = SOAP_TYPE_tt__SourceIdentificationExtension; - return soap_in_tt__SourceIdentificationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SourceIdentification")) - { *type = SOAP_TYPE_tt__SourceIdentification; - return soap_in_tt__SourceIdentification(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsEngineInput")) - { *type = SOAP_TYPE_tt__AnalyticsEngineInput; - return soap_in_tt__AnalyticsEngineInput(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsEngineInputInfoExtension")) - { *type = SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension; - return soap_in_tt__AnalyticsEngineInputInfoExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsEngineInputInfo")) - { *type = SOAP_TYPE_tt__AnalyticsEngineInputInfo; - return soap_in_tt__AnalyticsEngineInputInfo(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EngineConfiguration")) - { *type = SOAP_TYPE_tt__EngineConfiguration; - return soap_in_tt__EngineConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsDeviceEngineConfigurationExtension")) - { *type = SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension; - return soap_in_tt__AnalyticsDeviceEngineConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsDeviceEngineConfiguration")) - { *type = SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration; - return soap_in_tt__AnalyticsDeviceEngineConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsEngine")) - { *type = SOAP_TYPE_tt__AnalyticsEngine; - return soap_in_tt__AnalyticsEngine(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReplayConfiguration")) - { *type = SOAP_TYPE_tt__ReplayConfiguration; - return soap_in_tt__ReplayConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:GetRecordingJobsResponseItem")) - { *type = SOAP_TYPE_tt__GetRecordingJobsResponseItem; - return soap_in_tt__GetRecordingJobsResponseItem(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobStateTrack")) - { *type = SOAP_TYPE_tt__RecordingJobStateTrack; - return soap_in_tt__RecordingJobStateTrack(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobStateTracks")) - { *type = SOAP_TYPE_tt__RecordingJobStateTracks; - return soap_in_tt__RecordingJobStateTracks(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobStateSource")) - { *type = SOAP_TYPE_tt__RecordingJobStateSource; - return soap_in_tt__RecordingJobStateSource(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobStateInformationExtension")) - { *type = SOAP_TYPE_tt__RecordingJobStateInformationExtension; - return soap_in_tt__RecordingJobStateInformationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobStateInformation")) - { *type = SOAP_TYPE_tt__RecordingJobStateInformation; - return soap_in_tt__RecordingJobStateInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobTrack")) - { *type = SOAP_TYPE_tt__RecordingJobTrack; - return soap_in_tt__RecordingJobTrack(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobSourceExtension")) - { *type = SOAP_TYPE_tt__RecordingJobSourceExtension; - return soap_in_tt__RecordingJobSourceExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobSource")) - { *type = SOAP_TYPE_tt__RecordingJobSource; - return soap_in_tt__RecordingJobSource(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobConfigurationExtension")) - { *type = SOAP_TYPE_tt__RecordingJobConfigurationExtension; - return soap_in_tt__RecordingJobConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingJobConfiguration")) - { *type = SOAP_TYPE_tt__RecordingJobConfiguration; - return soap_in_tt__RecordingJobConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:GetTracksResponseItem")) - { *type = SOAP_TYPE_tt__GetTracksResponseItem; - return soap_in_tt__GetTracksResponseItem(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:GetTracksResponseList")) - { *type = SOAP_TYPE_tt__GetTracksResponseList; - return soap_in_tt__GetTracksResponseList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:GetRecordingsResponseItem")) - { *type = SOAP_TYPE_tt__GetRecordingsResponseItem; - return soap_in_tt__GetRecordingsResponseItem(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackConfiguration")) - { *type = SOAP_TYPE_tt__TrackConfiguration; - return soap_in_tt__TrackConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingConfiguration")) - { *type = SOAP_TYPE_tt__RecordingConfiguration; - return soap_in_tt__RecordingConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataAttributes")) - { *type = SOAP_TYPE_tt__MetadataAttributes; - return soap_in_tt__MetadataAttributes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioAttributes")) - { *type = SOAP_TYPE_tt__AudioAttributes; - return soap_in_tt__AudioAttributes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoAttributes")) - { *type = SOAP_TYPE_tt__VideoAttributes; - return soap_in_tt__VideoAttributes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackAttributesExtension")) - { *type = SOAP_TYPE_tt__TrackAttributesExtension; - return soap_in_tt__TrackAttributesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackAttributes")) - { *type = SOAP_TYPE_tt__TrackAttributes; - return soap_in_tt__TrackAttributes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MediaAttributes")) - { *type = SOAP_TYPE_tt__MediaAttributes; - return soap_in_tt__MediaAttributes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackInformation")) - { *type = SOAP_TYPE_tt__TrackInformation; - return soap_in_tt__TrackInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingSourceInformation")) - { *type = SOAP_TYPE_tt__RecordingSourceInformation; - return soap_in_tt__RecordingSourceInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingInformation")) - { *type = SOAP_TYPE_tt__RecordingInformation; - return soap_in_tt__RecordingInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FindMetadataResult")) - { *type = SOAP_TYPE_tt__FindMetadataResult; - return soap_in_tt__FindMetadataResult(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FindMetadataResultList")) - { *type = SOAP_TYPE_tt__FindMetadataResultList; - return soap_in_tt__FindMetadataResultList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FindPTZPositionResult")) - { *type = SOAP_TYPE_tt__FindPTZPositionResult; - return soap_in_tt__FindPTZPositionResult(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FindPTZPositionResultList")) - { *type = SOAP_TYPE_tt__FindPTZPositionResultList; - return soap_in_tt__FindPTZPositionResultList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FindEventResult")) - { *type = SOAP_TYPE_tt__FindEventResult; - return soap_in_tt__FindEventResult(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FindEventResultList")) - { *type = SOAP_TYPE_tt__FindEventResultList; - return soap_in_tt__FindEventResultList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FindRecordingResultList")) - { *type = SOAP_TYPE_tt__FindRecordingResultList; - return soap_in_tt__FindRecordingResultList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataFilter")) - { *type = SOAP_TYPE_tt__MetadataFilter; - return soap_in_tt__MetadataFilter(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPositionFilter")) - { *type = SOAP_TYPE_tt__PTZPositionFilter; - return soap_in_tt__PTZPositionFilter(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EventFilter")) - { *type = SOAP_TYPE_tt__EventFilter; - return soap_in_tt__EventFilter(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SearchScopeExtension")) - { *type = SOAP_TYPE_tt__SearchScopeExtension; - return soap_in_tt__SearchScopeExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SearchScope")) - { *type = SOAP_TYPE_tt__SearchScope; - return soap_in_tt__SearchScope(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingSummary")) - { *type = SOAP_TYPE_tt__RecordingSummary; - return soap_in_tt__RecordingSummary(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DateTimeRange")) - { *type = SOAP_TYPE_tt__DateTimeRange; - return soap_in_tt__DateTimeRange(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SourceReference")) - { *type = SOAP_TYPE_tt__SourceReference; - return soap_in_tt__SourceReference(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverStateInformation")) - { *type = SOAP_TYPE_tt__ReceiverStateInformation; - return soap_in_tt__ReceiverStateInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverConfiguration")) - { *type = SOAP_TYPE_tt__ReceiverConfiguration; - return soap_in_tt__ReceiverConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Receiver")) - { *type = SOAP_TYPE_tt__Receiver; - return soap_in_tt__Receiver(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PaneOptionExtension")) - { *type = SOAP_TYPE_tt__PaneOptionExtension; - return soap_in_tt__PaneOptionExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PaneLayoutOptions")) - { *type = SOAP_TYPE_tt__PaneLayoutOptions; - return soap_in_tt__PaneLayoutOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LayoutOptionsExtension")) - { *type = SOAP_TYPE_tt__LayoutOptionsExtension; - return soap_in_tt__LayoutOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LayoutOptions")) - { *type = SOAP_TYPE_tt__LayoutOptions; - return soap_in_tt__LayoutOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CodingCapabilities")) - { *type = SOAP_TYPE_tt__CodingCapabilities; - return soap_in_tt__CodingCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LayoutExtension")) - { *type = SOAP_TYPE_tt__LayoutExtension; - return soap_in_tt__LayoutExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Layout")) - { *type = SOAP_TYPE_tt__Layout; - return soap_in_tt__Layout(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PaneLayout")) - { *type = SOAP_TYPE_tt__PaneLayout; - return soap_in_tt__PaneLayout(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PaneConfiguration")) - { *type = SOAP_TYPE_tt__PaneConfiguration; - return soap_in_tt__PaneConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CellLayout")) - { *type = SOAP_TYPE_tt__CellLayout; - return soap_in_tt__CellLayout(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MotionExpressionConfiguration")) - { *type = SOAP_TYPE_tt__MotionExpressionConfiguration; - return soap_in_tt__MotionExpressionConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MotionExpression")) - { *type = SOAP_TYPE_tt__MotionExpression; - return soap_in_tt__MotionExpression(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PolylineArrayConfiguration")) - { *type = SOAP_TYPE_tt__PolylineArrayConfiguration; - return soap_in_tt__PolylineArrayConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PolylineArrayExtension")) - { *type = SOAP_TYPE_tt__PolylineArrayExtension; - return soap_in_tt__PolylineArrayExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PolylineArray")) - { *type = SOAP_TYPE_tt__PolylineArray; - return soap_in_tt__PolylineArray(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SupportedAnalyticsModulesExtension")) - { *type = SOAP_TYPE_tt__SupportedAnalyticsModulesExtension; - return soap_in_tt__SupportedAnalyticsModulesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SupportedAnalyticsModules")) - { *type = SOAP_TYPE_tt__SupportedAnalyticsModules; - return soap_in_tt__SupportedAnalyticsModules(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SupportedRulesExtension")) - { *type = SOAP_TYPE_tt__SupportedRulesExtension; - return soap_in_tt__SupportedRulesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SupportedRules")) - { *type = SOAP_TYPE_tt__SupportedRules; - return soap_in_tt__SupportedRules(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ConfigDescriptionExtension")) - { *type = SOAP_TYPE_tt__ConfigDescriptionExtension; - return soap_in_tt__ConfigDescriptionExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ConfigDescription")) - { *type = SOAP_TYPE_tt__ConfigDescription; - return soap_in_tt__ConfigDescription(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Config")) - { *type = SOAP_TYPE_tt__Config; - return soap_in_tt__Config(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RuleEngineConfigurationExtension")) - { *type = SOAP_TYPE_tt__RuleEngineConfigurationExtension; - return soap_in_tt__RuleEngineConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RuleEngineConfiguration")) - { *type = SOAP_TYPE_tt__RuleEngineConfiguration; - return soap_in_tt__RuleEngineConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsEngineConfigurationExtension")) - { *type = SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension; - return soap_in_tt__AnalyticsEngineConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsEngineConfiguration")) - { *type = SOAP_TYPE_tt__AnalyticsEngineConfiguration; - return soap_in_tt__AnalyticsEngineConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Polyline")) - { *type = SOAP_TYPE_tt__Polyline; - return soap_in_tt__Polyline(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemListDescriptionExtension")) - { *type = SOAP_TYPE_tt__ItemListDescriptionExtension; - return soap_in_tt__ItemListDescriptionExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemListDescription")) - { *type = SOAP_TYPE_tt__ItemListDescription; - return soap_in_tt__ItemListDescription(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MessageDescriptionExtension")) - { *type = SOAP_TYPE_tt__MessageDescriptionExtension; - return soap_in_tt__MessageDescriptionExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MessageDescription")) - { *type = SOAP_TYPE_tt__MessageDescription; - return soap_in_tt__MessageDescription(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemListExtension")) - { *type = SOAP_TYPE_tt__ItemListExtension; - return soap_in_tt__ItemListExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemList")) - { *type = SOAP_TYPE_tt__ItemList; - return soap_in_tt__ItemList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MessageExtension")) - { *type = SOAP_TYPE_tt__MessageExtension; - return soap_in_tt__MessageExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NoiseReductionOptions")) - { *type = SOAP_TYPE_tt__NoiseReductionOptions; - return soap_in_tt__NoiseReductionOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DefoggingOptions")) - { *type = SOAP_TYPE_tt__DefoggingOptions; - return soap_in_tt__DefoggingOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ToneCompensationOptions")) - { *type = SOAP_TYPE_tt__ToneCompensationOptions; - return soap_in_tt__ToneCompensationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusOptions20Extension")) - { *type = SOAP_TYPE_tt__FocusOptions20Extension; - return soap_in_tt__FocusOptions20Extension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusOptions20")) - { *type = SOAP_TYPE_tt__FocusOptions20; - return soap_in_tt__FocusOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalanceOptions20Extension")) - { *type = SOAP_TYPE_tt__WhiteBalanceOptions20Extension; - return soap_in_tt__WhiteBalanceOptions20Extension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalanceOptions20")) - { *type = SOAP_TYPE_tt__WhiteBalanceOptions20; - return soap_in_tt__WhiteBalanceOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusConfiguration20Extension")) - { *type = SOAP_TYPE_tt__FocusConfiguration20Extension; - return soap_in_tt__FocusConfiguration20Extension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusConfiguration20")) - { *type = SOAP_TYPE_tt__FocusConfiguration20; - return soap_in_tt__FocusConfiguration20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalance20Extension")) - { *type = SOAP_TYPE_tt__WhiteBalance20Extension; - return soap_in_tt__WhiteBalance20Extension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalance20")) - { *type = SOAP_TYPE_tt__WhiteBalance20; - return soap_in_tt__WhiteBalance20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelativeFocusOptions20")) - { *type = SOAP_TYPE_tt__RelativeFocusOptions20; - return soap_in_tt__RelativeFocusOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MoveOptions20")) - { *type = SOAP_TYPE_tt__MoveOptions20; - return soap_in_tt__MoveOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ExposureOptions20")) - { *type = SOAP_TYPE_tt__ExposureOptions20; - return soap_in_tt__ExposureOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BacklightCompensationOptions20")) - { *type = SOAP_TYPE_tt__BacklightCompensationOptions20; - return soap_in_tt__BacklightCompensationOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WideDynamicRangeOptions20")) - { *type = SOAP_TYPE_tt__WideDynamicRangeOptions20; - return soap_in_tt__WideDynamicRangeOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterAutoAdjustmentOptionsExtension")) - { *type = SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension; - return soap_in_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterAutoAdjustmentOptions")) - { *type = SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions; - return soap_in_tt__IrCutFilterAutoAdjustmentOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageStabilizationOptionsExtension")) - { *type = SOAP_TYPE_tt__ImageStabilizationOptionsExtension; - return soap_in_tt__ImageStabilizationOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageStabilizationOptions")) - { *type = SOAP_TYPE_tt__ImageStabilizationOptions; - return soap_in_tt__ImageStabilizationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingOptions20Extension4")) - { *type = SOAP_TYPE_tt__ImagingOptions20Extension4; - return soap_in_tt__ImagingOptions20Extension4(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingOptions20Extension3")) - { *type = SOAP_TYPE_tt__ImagingOptions20Extension3; - return soap_in_tt__ImagingOptions20Extension3(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingOptions20Extension2")) - { *type = SOAP_TYPE_tt__ImagingOptions20Extension2; - return soap_in_tt__ImagingOptions20Extension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingOptions20Extension")) - { *type = SOAP_TYPE_tt__ImagingOptions20Extension; - return soap_in_tt__ImagingOptions20Extension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingOptions20")) - { *type = SOAP_TYPE_tt__ImagingOptions20; - return soap_in_tt__ImagingOptions20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NoiseReduction")) - { *type = SOAP_TYPE_tt__NoiseReduction; - return soap_in_tt__NoiseReduction(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DefoggingExtension")) - { *type = SOAP_TYPE_tt__DefoggingExtension; - return soap_in_tt__DefoggingExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Defogging")) - { *type = SOAP_TYPE_tt__Defogging; - return soap_in_tt__Defogging(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ToneCompensationExtension")) - { *type = SOAP_TYPE_tt__ToneCompensationExtension; - return soap_in_tt__ToneCompensationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ToneCompensation")) - { *type = SOAP_TYPE_tt__ToneCompensation; - return soap_in_tt__ToneCompensation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Exposure20")) - { *type = SOAP_TYPE_tt__Exposure20; - return soap_in_tt__Exposure20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BacklightCompensation20")) - { *type = SOAP_TYPE_tt__BacklightCompensation20; - return soap_in_tt__BacklightCompensation20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WideDynamicRange20")) - { *type = SOAP_TYPE_tt__WideDynamicRange20; - return soap_in_tt__WideDynamicRange20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterAutoAdjustmentExtension")) - { *type = SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension; - return soap_in_tt__IrCutFilterAutoAdjustmentExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterAutoAdjustment")) - { *type = SOAP_TYPE_tt__IrCutFilterAutoAdjustment; - return soap_in_tt__IrCutFilterAutoAdjustment(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageStabilizationExtension")) - { *type = SOAP_TYPE_tt__ImageStabilizationExtension; - return soap_in_tt__ImageStabilizationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageStabilization")) - { *type = SOAP_TYPE_tt__ImageStabilization; - return soap_in_tt__ImageStabilization(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingSettingsExtension204")) - { *type = SOAP_TYPE_tt__ImagingSettingsExtension204; - return soap_in_tt__ImagingSettingsExtension204(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingSettingsExtension203")) - { *type = SOAP_TYPE_tt__ImagingSettingsExtension203; - return soap_in_tt__ImagingSettingsExtension203(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingSettingsExtension202")) - { *type = SOAP_TYPE_tt__ImagingSettingsExtension202; - return soap_in_tt__ImagingSettingsExtension202(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingSettingsExtension20")) - { *type = SOAP_TYPE_tt__ImagingSettingsExtension20; - return soap_in_tt__ImagingSettingsExtension20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingSettings20")) - { *type = SOAP_TYPE_tt__ImagingSettings20; - return soap_in_tt__ImagingSettings20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusStatus20Extension")) - { *type = SOAP_TYPE_tt__FocusStatus20Extension; - return soap_in_tt__FocusStatus20Extension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusStatus20")) - { *type = SOAP_TYPE_tt__FocusStatus20; - return soap_in_tt__FocusStatus20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingStatus20Extension")) - { *type = SOAP_TYPE_tt__ImagingStatus20Extension; - return soap_in_tt__ImagingStatus20Extension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingStatus20")) - { *type = SOAP_TYPE_tt__ImagingStatus20; - return soap_in_tt__ImagingStatus20(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalance")) - { *type = SOAP_TYPE_tt__WhiteBalance; - return soap_in_tt__WhiteBalance(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ContinuousFocusOptions")) - { *type = SOAP_TYPE_tt__ContinuousFocusOptions; - return soap_in_tt__ContinuousFocusOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelativeFocusOptions")) - { *type = SOAP_TYPE_tt__RelativeFocusOptions; - return soap_in_tt__RelativeFocusOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AbsoluteFocusOptions")) - { *type = SOAP_TYPE_tt__AbsoluteFocusOptions; - return soap_in_tt__AbsoluteFocusOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MoveOptions")) - { *type = SOAP_TYPE_tt__MoveOptions; - return soap_in_tt__MoveOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ContinuousFocus")) - { *type = SOAP_TYPE_tt__ContinuousFocus; - return soap_in_tt__ContinuousFocus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelativeFocus")) - { *type = SOAP_TYPE_tt__RelativeFocus; - return soap_in_tt__RelativeFocus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AbsoluteFocus")) - { *type = SOAP_TYPE_tt__AbsoluteFocus; - return soap_in_tt__AbsoluteFocus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusMove")) - { *type = SOAP_TYPE_tt__FocusMove; - return soap_in_tt__FocusMove(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalanceOptions")) - { *type = SOAP_TYPE_tt__WhiteBalanceOptions; - return soap_in_tt__WhiteBalanceOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ExposureOptions")) - { *type = SOAP_TYPE_tt__ExposureOptions; - return soap_in_tt__ExposureOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusOptions")) - { *type = SOAP_TYPE_tt__FocusOptions; - return soap_in_tt__FocusOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BacklightCompensationOptions")) - { *type = SOAP_TYPE_tt__BacklightCompensationOptions; - return soap_in_tt__BacklightCompensationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WideDynamicRangeOptions")) - { *type = SOAP_TYPE_tt__WideDynamicRangeOptions; - return soap_in_tt__WideDynamicRangeOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingOptions")) - { *type = SOAP_TYPE_tt__ImagingOptions; - return soap_in_tt__ImagingOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BacklightCompensation")) - { *type = SOAP_TYPE_tt__BacklightCompensation; - return soap_in_tt__BacklightCompensation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WideDynamicRange")) - { *type = SOAP_TYPE_tt__WideDynamicRange; - return soap_in_tt__WideDynamicRange(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Exposure")) - { *type = SOAP_TYPE_tt__Exposure; - return soap_in_tt__Exposure(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingSettingsExtension")) - { *type = SOAP_TYPE_tt__ImagingSettingsExtension; - return soap_in_tt__ImagingSettingsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingSettings")) - { *type = SOAP_TYPE_tt__ImagingSettings; - return soap_in_tt__ImagingSettings(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusConfiguration")) - { *type = SOAP_TYPE_tt__FocusConfiguration; - return soap_in_tt__FocusConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FocusStatus")) - { *type = SOAP_TYPE_tt__FocusStatus; - return soap_in_tt__FocusStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingStatus")) - { *type = SOAP_TYPE_tt__ImagingStatus; - return soap_in_tt__ImagingStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourStartingConditionOptionsExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension; - return soap_in_tt__PTZPresetTourStartingConditionOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourStartingConditionOptions")) - { *type = SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions; - return soap_in_tt__PTZPresetTourStartingConditionOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourPresetDetailOptionsExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension; - return soap_in_tt__PTZPresetTourPresetDetailOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourPresetDetailOptions")) - { *type = SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions; - return soap_in_tt__PTZPresetTourPresetDetailOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourSpotOptions")) - { *type = SOAP_TYPE_tt__PTZPresetTourSpotOptions; - return soap_in_tt__PTZPresetTourSpotOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourOptions")) - { *type = SOAP_TYPE_tt__PTZPresetTourOptions; - return soap_in_tt__PTZPresetTourOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourStartingConditionExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension; - return soap_in_tt__PTZPresetTourStartingConditionExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourStartingCondition")) - { *type = SOAP_TYPE_tt__PTZPresetTourStartingCondition; - return soap_in_tt__PTZPresetTourStartingCondition(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourStatusExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourStatusExtension; - return soap_in_tt__PTZPresetTourStatusExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourStatus")) - { *type = SOAP_TYPE_tt__PTZPresetTourStatus; - return soap_in_tt__PTZPresetTourStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourTypeExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourTypeExtension; - return soap_in_tt__PTZPresetTourTypeExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourPresetDetail")) - { *type = SOAP_TYPE_tt__PTZPresetTourPresetDetail; - return soap_in_tt__PTZPresetTourPresetDetail(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourSpotExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourSpotExtension; - return soap_in_tt__PTZPresetTourSpotExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourSpot")) - { *type = SOAP_TYPE_tt__PTZPresetTourSpot; - return soap_in_tt__PTZPresetTourSpot(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourExtension; - return soap_in_tt__PTZPresetTourExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PresetTour")) - { *type = SOAP_TYPE_tt__PresetTour; - return soap_in_tt__PresetTour(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPreset")) - { *type = SOAP_TYPE_tt__PTZPreset; - return soap_in_tt__PTZPreset(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZSpeed")) - { *type = SOAP_TYPE_tt__PTZSpeed; - return soap_in_tt__PTZSpeed(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Space1DDescription")) - { *type = SOAP_TYPE_tt__Space1DDescription; - return soap_in_tt__Space1DDescription(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Space2DDescription")) - { *type = SOAP_TYPE_tt__Space2DDescription; - return soap_in_tt__Space2DDescription(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZSpacesExtension")) - { *type = SOAP_TYPE_tt__PTZSpacesExtension; - return soap_in_tt__PTZSpacesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZSpaces")) - { *type = SOAP_TYPE_tt__PTZSpaces; - return soap_in_tt__PTZSpaces(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ZoomLimits")) - { *type = SOAP_TYPE_tt__ZoomLimits; - return soap_in_tt__ZoomLimits(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PanTiltLimits")) - { *type = SOAP_TYPE_tt__PanTiltLimits; - return soap_in_tt__PanTiltLimits(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReverseOptionsExtension")) - { *type = SOAP_TYPE_tt__ReverseOptionsExtension; - return soap_in_tt__ReverseOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReverseOptions")) - { *type = SOAP_TYPE_tt__ReverseOptions; - return soap_in_tt__ReverseOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EFlipOptionsExtension")) - { *type = SOAP_TYPE_tt__EFlipOptionsExtension; - return soap_in_tt__EFlipOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EFlipOptions")) - { *type = SOAP_TYPE_tt__EFlipOptions; - return soap_in_tt__EFlipOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTControlDirectionOptionsExtension")) - { *type = SOAP_TYPE_tt__PTControlDirectionOptionsExtension; - return soap_in_tt__PTControlDirectionOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTControlDirectionOptions")) - { *type = SOAP_TYPE_tt__PTControlDirectionOptions; - return soap_in_tt__PTControlDirectionOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZConfigurationOptions2")) - { *type = SOAP_TYPE_tt__PTZConfigurationOptions2; - return soap_in_tt__PTZConfigurationOptions2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZConfigurationOptions")) - { *type = SOAP_TYPE_tt__PTZConfigurationOptions; - return soap_in_tt__PTZConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Reverse")) - { *type = SOAP_TYPE_tt__Reverse; - return soap_in_tt__Reverse(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EFlip")) - { *type = SOAP_TYPE_tt__EFlip; - return soap_in_tt__EFlip(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTControlDirectionExtension")) - { *type = SOAP_TYPE_tt__PTControlDirectionExtension; - return soap_in_tt__PTControlDirectionExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTControlDirection")) - { *type = SOAP_TYPE_tt__PTControlDirection; - return soap_in_tt__PTControlDirection(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZConfigurationExtension2")) - { *type = SOAP_TYPE_tt__PTZConfigurationExtension2; - return soap_in_tt__PTZConfigurationExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZConfigurationExtension")) - { *type = SOAP_TYPE_tt__PTZConfigurationExtension; - return soap_in_tt__PTZConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZConfiguration")) - { *type = SOAP_TYPE_tt__PTZConfiguration; - return soap_in_tt__PTZConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourSupportedExtension")) - { *type = SOAP_TYPE_tt__PTZPresetTourSupportedExtension; - return soap_in_tt__PTZPresetTourSupportedExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourSupported")) - { *type = SOAP_TYPE_tt__PTZPresetTourSupported; - return soap_in_tt__PTZPresetTourSupported(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZNodeExtension2")) - { *type = SOAP_TYPE_tt__PTZNodeExtension2; - return soap_in_tt__PTZNodeExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZNodeExtension")) - { *type = SOAP_TYPE_tt__PTZNodeExtension; - return soap_in_tt__PTZNodeExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZNode")) - { *type = SOAP_TYPE_tt__PTZNode; - return soap_in_tt__PTZNode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DigitalInput")) - { *type = SOAP_TYPE_tt__DigitalInput; - return soap_in_tt__DigitalInput(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayOutput")) - { *type = SOAP_TYPE_tt__RelayOutput; - return soap_in_tt__RelayOutput(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayOutputSettings")) - { *type = SOAP_TYPE_tt__RelayOutputSettings; - return soap_in_tt__RelayOutputSettings(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:GenericEapPwdConfigurationExtension")) - { *type = SOAP_TYPE_tt__GenericEapPwdConfigurationExtension; - return soap_in_tt__GenericEapPwdConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TLSConfiguration")) - { *type = SOAP_TYPE_tt__TLSConfiguration; - return soap_in_tt__TLSConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EapMethodExtension")) - { *type = SOAP_TYPE_tt__EapMethodExtension; - return soap_in_tt__EapMethodExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EAPMethodConfiguration")) - { *type = SOAP_TYPE_tt__EAPMethodConfiguration; - return soap_in_tt__EAPMethodConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot1XConfigurationExtension")) - { *type = SOAP_TYPE_tt__Dot1XConfigurationExtension; - return soap_in_tt__Dot1XConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot1XConfiguration")) - { *type = SOAP_TYPE_tt__Dot1XConfiguration; - return soap_in_tt__Dot1XConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CertificateInformationExtension")) - { *type = SOAP_TYPE_tt__CertificateInformationExtension; - return soap_in_tt__CertificateInformationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CertificateUsage")) - { *type = SOAP_TYPE_tt__CertificateUsage; - return soap_in_tt__CertificateUsage(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CertificateInformation")) - { *type = SOAP_TYPE_tt__CertificateInformation; - return soap_in_tt__CertificateInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CertificateWithPrivateKey")) - { *type = SOAP_TYPE_tt__CertificateWithPrivateKey; - return soap_in_tt__CertificateWithPrivateKey(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CertificateStatus")) - { *type = SOAP_TYPE_tt__CertificateStatus; - return soap_in_tt__CertificateStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Certificate")) - { *type = SOAP_TYPE_tt__Certificate; - return soap_in_tt__Certificate(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CertificateGenerationParametersExtension")) - { *type = SOAP_TYPE_tt__CertificateGenerationParametersExtension; - return soap_in_tt__CertificateGenerationParametersExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CertificateGenerationParameters")) - { *type = SOAP_TYPE_tt__CertificateGenerationParameters; - return soap_in_tt__CertificateGenerationParameters(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:UserExtension")) - { *type = SOAP_TYPE_tt__UserExtension; - return soap_in_tt__UserExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:User")) - { *type = SOAP_TYPE_tt__User; - return soap_in_tt__User(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RemoteUser")) - { *type = SOAP_TYPE_tt__RemoteUser; - return soap_in_tt__RemoteUser(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TimeZone")) - { *type = SOAP_TYPE_tt__TimeZone; - return soap_in_tt__TimeZone(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Time")) - { *type = SOAP_TYPE_tt__Time; - return soap_in_tt__Time(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Date")) - { *type = SOAP_TYPE_tt__Date; - return soap_in_tt__Date(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DateTime")) - { *type = SOAP_TYPE_tt__DateTime; - return soap_in_tt__DateTime(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemDateTimeExtension")) - { *type = SOAP_TYPE_tt__SystemDateTimeExtension; - return soap_in_tt__SystemDateTimeExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemDateTime")) - { *type = SOAP_TYPE_tt__SystemDateTime; - return soap_in_tt__SystemDateTime(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemLogUri")) - { *type = SOAP_TYPE_tt__SystemLogUri; - return soap_in_tt__SystemLogUri(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemLogUriList")) - { *type = SOAP_TYPE_tt__SystemLogUriList; - return soap_in_tt__SystemLogUriList(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BackupFile")) - { *type = SOAP_TYPE_tt__BackupFile; - return soap_in_tt__BackupFile(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AttachmentData")) - { *type = SOAP_TYPE_tt__AttachmentData; - return soap_in_tt__AttachmentData(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BinaryData")) - { *type = SOAP_TYPE_tt__BinaryData; - return soap_in_tt__BinaryData(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SupportInformation")) - { *type = SOAP_TYPE_tt__SupportInformation; - return soap_in_tt__SupportInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemLog")) - { *type = SOAP_TYPE_tt__SystemLog; - return soap_in_tt__SystemLog(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsDeviceExtension")) - { *type = SOAP_TYPE_tt__AnalyticsDeviceExtension; - return soap_in_tt__AnalyticsDeviceExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsDeviceCapabilities")) - { *type = SOAP_TYPE_tt__AnalyticsDeviceCapabilities; - return soap_in_tt__AnalyticsDeviceCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverCapabilities")) - { *type = SOAP_TYPE_tt__ReceiverCapabilities; - return soap_in_tt__ReceiverCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReplayCapabilities")) - { *type = SOAP_TYPE_tt__ReplayCapabilities; - return soap_in_tt__ReplayCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SearchCapabilities")) - { *type = SOAP_TYPE_tt__SearchCapabilities; - return soap_in_tt__SearchCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingCapabilities")) - { *type = SOAP_TYPE_tt__RecordingCapabilities; - return soap_in_tt__RecordingCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DisplayCapabilities")) - { *type = SOAP_TYPE_tt__DisplayCapabilities; - return soap_in_tt__DisplayCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DeviceIOCapabilities")) - { *type = SOAP_TYPE_tt__DeviceIOCapabilities; - return soap_in_tt__DeviceIOCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZCapabilities")) - { *type = SOAP_TYPE_tt__PTZCapabilities; - return soap_in_tt__PTZCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImagingCapabilities")) - { *type = SOAP_TYPE_tt__ImagingCapabilities; - return soap_in_tt__ImagingCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OnvifVersion")) - { *type = SOAP_TYPE_tt__OnvifVersion; - return soap_in_tt__OnvifVersion(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemCapabilitiesExtension2")) - { *type = SOAP_TYPE_tt__SystemCapabilitiesExtension2; - return soap_in_tt__SystemCapabilitiesExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemCapabilitiesExtension")) - { *type = SOAP_TYPE_tt__SystemCapabilitiesExtension; - return soap_in_tt__SystemCapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemCapabilities")) - { *type = SOAP_TYPE_tt__SystemCapabilities; - return soap_in_tt__SystemCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SecurityCapabilitiesExtension2")) - { *type = SOAP_TYPE_tt__SecurityCapabilitiesExtension2; - return soap_in_tt__SecurityCapabilitiesExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SecurityCapabilitiesExtension")) - { *type = SOAP_TYPE_tt__SecurityCapabilitiesExtension; - return soap_in_tt__SecurityCapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SecurityCapabilities")) - { *type = SOAP_TYPE_tt__SecurityCapabilities; - return soap_in_tt__SecurityCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkCapabilitiesExtension2")) - { *type = SOAP_TYPE_tt__NetworkCapabilitiesExtension2; - return soap_in_tt__NetworkCapabilitiesExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkCapabilitiesExtension")) - { *type = SOAP_TYPE_tt__NetworkCapabilitiesExtension; - return soap_in_tt__NetworkCapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkCapabilities")) - { *type = SOAP_TYPE_tt__NetworkCapabilities; - return soap_in_tt__NetworkCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ProfileCapabilities")) - { *type = SOAP_TYPE_tt__ProfileCapabilities; - return soap_in_tt__ProfileCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RealTimeStreamingCapabilitiesExtension")) - { *type = SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension; - return soap_in_tt__RealTimeStreamingCapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RealTimeStreamingCapabilities")) - { *type = SOAP_TYPE_tt__RealTimeStreamingCapabilities; - return soap_in_tt__RealTimeStreamingCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MediaCapabilitiesExtension")) - { *type = SOAP_TYPE_tt__MediaCapabilitiesExtension; - return soap_in_tt__MediaCapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MediaCapabilities")) - { *type = SOAP_TYPE_tt__MediaCapabilities; - return soap_in_tt__MediaCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IOCapabilitiesExtension2")) - { *type = SOAP_TYPE_tt__IOCapabilitiesExtension2; - return soap_in_tt__IOCapabilitiesExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IOCapabilitiesExtension")) - { *type = SOAP_TYPE_tt__IOCapabilitiesExtension; - return soap_in_tt__IOCapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IOCapabilities")) - { *type = SOAP_TYPE_tt__IOCapabilities; - return soap_in_tt__IOCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EventCapabilities")) - { *type = SOAP_TYPE_tt__EventCapabilities; - return soap_in_tt__EventCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DeviceCapabilitiesExtension")) - { *type = SOAP_TYPE_tt__DeviceCapabilitiesExtension; - return soap_in_tt__DeviceCapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DeviceCapabilities")) - { *type = SOAP_TYPE_tt__DeviceCapabilities; - return soap_in_tt__DeviceCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnalyticsCapabilities")) - { *type = SOAP_TYPE_tt__AnalyticsCapabilities; - return soap_in_tt__AnalyticsCapabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CapabilitiesExtension2")) - { *type = SOAP_TYPE_tt__CapabilitiesExtension2; - return soap_in_tt__CapabilitiesExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CapabilitiesExtension")) - { *type = SOAP_TYPE_tt__CapabilitiesExtension; - return soap_in_tt__CapabilitiesExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Capabilities")) - { *type = SOAP_TYPE_tt__Capabilities; - return soap_in_tt__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11AvailableNetworksExtension")) - { *type = SOAP_TYPE_tt__Dot11AvailableNetworksExtension; - return soap_in_tt__Dot11AvailableNetworksExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11AvailableNetworks")) - { *type = SOAP_TYPE_tt__Dot11AvailableNetworks; - return soap_in_tt__Dot11AvailableNetworks(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11Status")) - { *type = SOAP_TYPE_tt__Dot11Status; - return soap_in_tt__Dot11Status(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11Capabilities")) - { *type = SOAP_TYPE_tt__Dot11Capabilities; - return soap_in_tt__Dot11Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceSetConfigurationExtension2")) - { *type = SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2; - return soap_in_tt__NetworkInterfaceSetConfigurationExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11PSKSetExtension")) - { *type = SOAP_TYPE_tt__Dot11PSKSetExtension; - return soap_in_tt__Dot11PSKSetExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11PSKSet")) - { *type = SOAP_TYPE_tt__Dot11PSKSet; - return soap_in_tt__Dot11PSKSet(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SecurityConfigurationExtension")) - { *type = SOAP_TYPE_tt__Dot11SecurityConfigurationExtension; - return soap_in_tt__Dot11SecurityConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SecurityConfiguration")) - { *type = SOAP_TYPE_tt__Dot11SecurityConfiguration; - return soap_in_tt__Dot11SecurityConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11Configuration")) - { *type = SOAP_TYPE_tt__Dot11Configuration; - return soap_in_tt__Dot11Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPAddressFilterExtension")) - { *type = SOAP_TYPE_tt__IPAddressFilterExtension; - return soap_in_tt__IPAddressFilterExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPAddressFilter")) - { *type = SOAP_TYPE_tt__IPAddressFilter; - return soap_in_tt__IPAddressFilter(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkZeroConfigurationExtension2")) - { *type = SOAP_TYPE_tt__NetworkZeroConfigurationExtension2; - return soap_in_tt__NetworkZeroConfigurationExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkZeroConfigurationExtension")) - { *type = SOAP_TYPE_tt__NetworkZeroConfigurationExtension; - return soap_in_tt__NetworkZeroConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkZeroConfiguration")) - { *type = SOAP_TYPE_tt__NetworkZeroConfiguration; - return soap_in_tt__NetworkZeroConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkGateway")) - { *type = SOAP_TYPE_tt__NetworkGateway; - return soap_in_tt__NetworkGateway(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv4NetworkInterfaceSetConfiguration")) - { *type = SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration; - return soap_in_tt__IPv4NetworkInterfaceSetConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6NetworkInterfaceSetConfiguration")) - { *type = SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration; - return soap_in_tt__IPv6NetworkInterfaceSetConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceSetConfigurationExtension")) - { *type = SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension; - return soap_in_tt__NetworkInterfaceSetConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceSetConfiguration")) - { *type = SOAP_TYPE_tt__NetworkInterfaceSetConfiguration; - return soap_in_tt__NetworkInterfaceSetConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DynamicDNSInformationExtension")) - { *type = SOAP_TYPE_tt__DynamicDNSInformationExtension; - return soap_in_tt__DynamicDNSInformationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DynamicDNSInformation")) - { *type = SOAP_TYPE_tt__DynamicDNSInformation; - return soap_in_tt__DynamicDNSInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NTPInformationExtension")) - { *type = SOAP_TYPE_tt__NTPInformationExtension; - return soap_in_tt__NTPInformationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NTPInformation")) - { *type = SOAP_TYPE_tt__NTPInformation; - return soap_in_tt__NTPInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DNSInformationExtension")) - { *type = SOAP_TYPE_tt__DNSInformationExtension; - return soap_in_tt__DNSInformationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DNSInformation")) - { *type = SOAP_TYPE_tt__DNSInformation; - return soap_in_tt__DNSInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:HostnameInformationExtension")) - { *type = SOAP_TYPE_tt__HostnameInformationExtension; - return soap_in_tt__HostnameInformationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:HostnameInformation")) - { *type = SOAP_TYPE_tt__HostnameInformation; - return soap_in_tt__HostnameInformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PrefixedIPv6Address")) - { *type = SOAP_TYPE_tt__PrefixedIPv6Address; - return soap_in_tt__PrefixedIPv6Address(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PrefixedIPv4Address")) - { *type = SOAP_TYPE_tt__PrefixedIPv4Address; - return soap_in_tt__PrefixedIPv4Address(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPAddress")) - { *type = SOAP_TYPE_tt__IPAddress; - return soap_in_tt__IPAddress(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkHostExtension")) - { *type = SOAP_TYPE_tt__NetworkHostExtension; - return soap_in_tt__NetworkHostExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkHost")) - { *type = SOAP_TYPE_tt__NetworkHost; - return soap_in_tt__NetworkHost(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkProtocolExtension")) - { *type = SOAP_TYPE_tt__NetworkProtocolExtension; - return soap_in_tt__NetworkProtocolExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkProtocol")) - { *type = SOAP_TYPE_tt__NetworkProtocol; - return soap_in_tt__NetworkProtocol(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6ConfigurationExtension")) - { *type = SOAP_TYPE_tt__IPv6ConfigurationExtension; - return soap_in_tt__IPv6ConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6Configuration")) - { *type = SOAP_TYPE_tt__IPv6Configuration; - return soap_in_tt__IPv6Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv4Configuration")) - { *type = SOAP_TYPE_tt__IPv4Configuration; - return soap_in_tt__IPv4Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv4NetworkInterface")) - { *type = SOAP_TYPE_tt__IPv4NetworkInterface; - return soap_in_tt__IPv4NetworkInterface(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6NetworkInterface")) - { *type = SOAP_TYPE_tt__IPv6NetworkInterface; - return soap_in_tt__IPv6NetworkInterface(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceInfo")) - { *type = SOAP_TYPE_tt__NetworkInterfaceInfo; - return soap_in_tt__NetworkInterfaceInfo(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceConnectionSetting")) - { *type = SOAP_TYPE_tt__NetworkInterfaceConnectionSetting; - return soap_in_tt__NetworkInterfaceConnectionSetting(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceLink")) - { *type = SOAP_TYPE_tt__NetworkInterfaceLink; - return soap_in_tt__NetworkInterfaceLink(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceExtension2")) - { *type = SOAP_TYPE_tt__NetworkInterfaceExtension2; - return soap_in_tt__NetworkInterfaceExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot3Configuration")) - { *type = SOAP_TYPE_tt__Dot3Configuration; - return soap_in_tt__Dot3Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterfaceExtension")) - { *type = SOAP_TYPE_tt__NetworkInterfaceExtension; - return soap_in_tt__NetworkInterfaceExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkInterface")) - { *type = SOAP_TYPE_tt__NetworkInterface; - return soap_in_tt__NetworkInterface(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Scope")) - { *type = SOAP_TYPE_tt__Scope; - return soap_in_tt__Scope(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MediaUri")) - { *type = SOAP_TYPE_tt__MediaUri; - return soap_in_tt__MediaUri(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Transport")) - { *type = SOAP_TYPE_tt__Transport; - return soap_in_tt__Transport(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StreamSetup")) - { *type = SOAP_TYPE_tt__StreamSetup; - return soap_in_tt__StreamSetup(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MulticastConfiguration")) - { *type = SOAP_TYPE_tt__MulticastConfiguration; - return soap_in_tt__MulticastConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioDecoderConfigurationOptionsExtension")) - { *type = SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension; - return soap_in_tt__AudioDecoderConfigurationOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:G726DecOptions")) - { *type = SOAP_TYPE_tt__G726DecOptions; - return soap_in_tt__G726DecOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AACDecOptions")) - { *type = SOAP_TYPE_tt__AACDecOptions; - return soap_in_tt__AACDecOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:G711DecOptions")) - { *type = SOAP_TYPE_tt__G711DecOptions; - return soap_in_tt__G711DecOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioDecoderConfigurationOptions")) - { *type = SOAP_TYPE_tt__AudioDecoderConfigurationOptions; - return soap_in_tt__AudioDecoderConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioDecoderConfiguration")) - { *type = SOAP_TYPE_tt__AudioDecoderConfiguration; - return soap_in_tt__AudioDecoderConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioOutputConfigurationOptions")) - { *type = SOAP_TYPE_tt__AudioOutputConfigurationOptions; - return soap_in_tt__AudioOutputConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioOutputConfiguration")) - { *type = SOAP_TYPE_tt__AudioOutputConfiguration; - return soap_in_tt__AudioOutputConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioOutput")) - { *type = SOAP_TYPE_tt__AudioOutput; - return soap_in_tt__AudioOutput(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoDecoderConfigurationOptionsExtension")) - { *type = SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension; - return soap_in_tt__VideoDecoderConfigurationOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Mpeg4DecOptions")) - { *type = SOAP_TYPE_tt__Mpeg4DecOptions; - return soap_in_tt__Mpeg4DecOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:JpegDecOptions")) - { *type = SOAP_TYPE_tt__JpegDecOptions; - return soap_in_tt__JpegDecOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:H264DecOptions")) - { *type = SOAP_TYPE_tt__H264DecOptions; - return soap_in_tt__H264DecOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoDecoderConfigurationOptions")) - { *type = SOAP_TYPE_tt__VideoDecoderConfigurationOptions; - return soap_in_tt__VideoDecoderConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoOutputConfigurationOptions")) - { *type = SOAP_TYPE_tt__VideoOutputConfigurationOptions; - return soap_in_tt__VideoOutputConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoOutputConfiguration")) - { *type = SOAP_TYPE_tt__VideoOutputConfiguration; - return soap_in_tt__VideoOutputConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoOutputExtension")) - { *type = SOAP_TYPE_tt__VideoOutputExtension; - return soap_in_tt__VideoOutputExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoOutput")) - { *type = SOAP_TYPE_tt__VideoOutput; - return soap_in_tt__VideoOutput(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZStatusFilterOptionsExtension")) - { *type = SOAP_TYPE_tt__PTZStatusFilterOptionsExtension; - return soap_in_tt__PTZStatusFilterOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZStatusFilterOptions")) - { *type = SOAP_TYPE_tt__PTZStatusFilterOptions; - return soap_in_tt__PTZStatusFilterOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataConfigurationOptionsExtension2")) - { *type = SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2; - return soap_in_tt__MetadataConfigurationOptionsExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataConfigurationOptionsExtension")) - { *type = SOAP_TYPE_tt__MetadataConfigurationOptionsExtension; - return soap_in_tt__MetadataConfigurationOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataConfigurationOptions")) - { *type = SOAP_TYPE_tt__MetadataConfigurationOptions; - return soap_in_tt__MetadataConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EventSubscription")) - { *type = SOAP_TYPE_tt__EventSubscription; - return soap_in_tt__EventSubscription(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZFilter")) - { *type = SOAP_TYPE_tt__PTZFilter; - return soap_in_tt__PTZFilter(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataConfigurationExtension")) - { *type = SOAP_TYPE_tt__MetadataConfigurationExtension; - return soap_in_tt__MetadataConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataConfiguration")) - { *type = SOAP_TYPE_tt__MetadataConfiguration; - return soap_in_tt__MetadataConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoAnalyticsConfiguration")) - { *type = SOAP_TYPE_tt__VideoAnalyticsConfiguration; - return soap_in_tt__VideoAnalyticsConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncoder2ConfigurationOptions")) - { *type = SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions; - return soap_in_tt__AudioEncoder2ConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncoder2Configuration")) - { *type = SOAP_TYPE_tt__AudioEncoder2Configuration; - return soap_in_tt__AudioEncoder2Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncoderConfigurationOption")) - { *type = SOAP_TYPE_tt__AudioEncoderConfigurationOption; - return soap_in_tt__AudioEncoderConfigurationOption(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncoderConfigurationOptions")) - { *type = SOAP_TYPE_tt__AudioEncoderConfigurationOptions; - return soap_in_tt__AudioEncoderConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncoderConfiguration")) - { *type = SOAP_TYPE_tt__AudioEncoderConfiguration; - return soap_in_tt__AudioEncoderConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioSourceOptionsExtension")) - { *type = SOAP_TYPE_tt__AudioSourceOptionsExtension; - return soap_in_tt__AudioSourceOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioSourceConfigurationOptions")) - { *type = SOAP_TYPE_tt__AudioSourceConfigurationOptions; - return soap_in_tt__AudioSourceConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioSourceConfiguration")) - { *type = SOAP_TYPE_tt__AudioSourceConfiguration; - return soap_in_tt__AudioSourceConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoder2ConfigurationOptions")) - { *type = SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions; - return soap_in_tt__VideoEncoder2ConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoRateControl2")) - { *type = SOAP_TYPE_tt__VideoRateControl2; - return soap_in_tt__VideoRateControl2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoResolution2")) - { *type = SOAP_TYPE_tt__VideoResolution2; - return soap_in_tt__VideoResolution2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoder2Configuration")) - { *type = SOAP_TYPE_tt__VideoEncoder2Configuration; - return soap_in_tt__VideoEncoder2Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:H264Options2")) - { *type = SOAP_TYPE_tt__H264Options2; - return soap_in_tt__H264Options2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:H264Options")) - { *type = SOAP_TYPE_tt__H264Options; - return soap_in_tt__H264Options(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Mpeg4Options2")) - { *type = SOAP_TYPE_tt__Mpeg4Options2; - return soap_in_tt__Mpeg4Options2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Mpeg4Options")) - { *type = SOAP_TYPE_tt__Mpeg4Options; - return soap_in_tt__Mpeg4Options(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:JpegOptions2")) - { *type = SOAP_TYPE_tt__JpegOptions2; - return soap_in_tt__JpegOptions2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:JpegOptions")) - { *type = SOAP_TYPE_tt__JpegOptions; - return soap_in_tt__JpegOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoderOptionsExtension2")) - { *type = SOAP_TYPE_tt__VideoEncoderOptionsExtension2; - return soap_in_tt__VideoEncoderOptionsExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoderOptionsExtension")) - { *type = SOAP_TYPE_tt__VideoEncoderOptionsExtension; - return soap_in_tt__VideoEncoderOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoderConfigurationOptions")) - { *type = SOAP_TYPE_tt__VideoEncoderConfigurationOptions; - return soap_in_tt__VideoEncoderConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:H264Configuration")) - { *type = SOAP_TYPE_tt__H264Configuration; - return soap_in_tt__H264Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Mpeg4Configuration")) - { *type = SOAP_TYPE_tt__Mpeg4Configuration; - return soap_in_tt__Mpeg4Configuration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoRateControl")) - { *type = SOAP_TYPE_tt__VideoRateControl; - return soap_in_tt__VideoRateControl(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoResolution")) - { *type = SOAP_TYPE_tt__VideoResolution; - return soap_in_tt__VideoResolution(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoderConfiguration")) - { *type = SOAP_TYPE_tt__VideoEncoderConfiguration; - return soap_in_tt__VideoEncoderConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SceneOrientation")) - { *type = SOAP_TYPE_tt__SceneOrientation; - return soap_in_tt__SceneOrientation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RotateOptionsExtension")) - { *type = SOAP_TYPE_tt__RotateOptionsExtension; - return soap_in_tt__RotateOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RotateOptions")) - { *type = SOAP_TYPE_tt__RotateOptions; - return soap_in_tt__RotateOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceConfigurationOptionsExtension2")) - { *type = SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2; - return soap_in_tt__VideoSourceConfigurationOptionsExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceConfigurationOptionsExtension")) - { *type = SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension; - return soap_in_tt__VideoSourceConfigurationOptionsExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceConfigurationOptions")) - { *type = SOAP_TYPE_tt__VideoSourceConfigurationOptions; - return soap_in_tt__VideoSourceConfigurationOptions(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LensDescription")) - { *type = SOAP_TYPE_tt__LensDescription; - return soap_in_tt__LensDescription(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LensOffset")) - { *type = SOAP_TYPE_tt__LensOffset; - return soap_in_tt__LensOffset(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LensProjection")) - { *type = SOAP_TYPE_tt__LensProjection; - return soap_in_tt__LensProjection(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RotateExtension")) - { *type = SOAP_TYPE_tt__RotateExtension; - return soap_in_tt__RotateExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Rotate")) - { *type = SOAP_TYPE_tt__Rotate; - return soap_in_tt__Rotate(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceConfigurationExtension2")) - { *type = SOAP_TYPE_tt__VideoSourceConfigurationExtension2; - return soap_in_tt__VideoSourceConfigurationExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceConfigurationExtension")) - { *type = SOAP_TYPE_tt__VideoSourceConfigurationExtension; - return soap_in_tt__VideoSourceConfigurationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceConfiguration")) - { *type = SOAP_TYPE_tt__VideoSourceConfiguration; - return soap_in_tt__VideoSourceConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ConfigurationEntity")) - { *type = SOAP_TYPE_tt__ConfigurationEntity; - return soap_in_tt__ConfigurationEntity(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ProfileExtension2")) - { *type = SOAP_TYPE_tt__ProfileExtension2; - return soap_in_tt__ProfileExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ProfileExtension")) - { *type = SOAP_TYPE_tt__ProfileExtension; - return soap_in_tt__ProfileExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Profile")) - { *type = SOAP_TYPE_tt__Profile; - return soap_in_tt__Profile(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioSource")) - { *type = SOAP_TYPE_tt__AudioSource; - return soap_in_tt__AudioSource(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceExtension2")) - { *type = SOAP_TYPE_tt__VideoSourceExtension2; - return soap_in_tt__VideoSourceExtension2(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSourceExtension")) - { *type = SOAP_TYPE_tt__VideoSourceExtension; - return soap_in_tt__VideoSourceExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoSource")) - { *type = SOAP_TYPE_tt__VideoSource; - return soap_in_tt__VideoSource(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AnyHolder")) - { *type = SOAP_TYPE_tt__AnyHolder; - return soap_in_tt__AnyHolder(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FloatItems")) - { *type = SOAP_TYPE_tt__FloatItems; - return soap_in_tt__FloatItems(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IntItems")) - { *type = SOAP_TYPE_tt__IntItems; - return soap_in_tt__IntItems(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DurationRange")) - { *type = SOAP_TYPE_tt__DurationRange; - return soap_in_tt__DurationRange(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FloatRange")) - { *type = SOAP_TYPE_tt__FloatRange; - return soap_in_tt__FloatRange(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IntRectangleRange")) - { *type = SOAP_TYPE_tt__IntRectangleRange; - return soap_in_tt__IntRectangleRange(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IntRectangle")) - { *type = SOAP_TYPE_tt__IntRectangle; - return soap_in_tt__IntRectangle(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DeviceEntity")) - { *type = SOAP_TYPE_tt__DeviceEntity; - return soap_in_tt__DeviceEntity(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LocationEntity")) - { *type = SOAP_TYPE_tt__LocationEntity; - return soap_in_tt__LocationEntity(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LocalOrientation")) - { *type = SOAP_TYPE_tt__LocalOrientation; - return soap_in_tt__LocalOrientation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:LocalLocation")) - { *type = SOAP_TYPE_tt__LocalLocation; - return soap_in_tt__LocalLocation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:GeoOrientation")) - { *type = SOAP_TYPE_tt__GeoOrientation; - return soap_in_tt__GeoOrientation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:GeoLocation")) - { *type = SOAP_TYPE_tt__GeoLocation; - return soap_in_tt__GeoLocation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TransformationExtension")) - { *type = SOAP_TYPE_tt__TransformationExtension; - return soap_in_tt__TransformationExtension(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Transformation")) - { *type = SOAP_TYPE_tt__Transformation; - return soap_in_tt__Transformation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ColorDescriptor")) - { *type = SOAP_TYPE_tt__ColorDescriptor; - return soap_in_tt__ColorDescriptor(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ColorCovariance")) - { *type = SOAP_TYPE_tt__ColorCovariance; - return soap_in_tt__ColorCovariance(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Color")) - { *type = SOAP_TYPE_tt__Color; - return soap_in_tt__Color(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Polygon")) - { *type = SOAP_TYPE_tt__Polygon; - return soap_in_tt__Polygon(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Rectangle")) - { *type = SOAP_TYPE_tt__Rectangle; - return soap_in_tt__Rectangle(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Vector")) - { *type = SOAP_TYPE_tt__Vector; - return soap_in_tt__Vector(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZMoveStatus")) - { *type = SOAP_TYPE_tt__PTZMoveStatus; - return soap_in_tt__PTZMoveStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZStatus")) - { *type = SOAP_TYPE_tt__PTZStatus; - return soap_in_tt__PTZStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZVector")) - { *type = SOAP_TYPE_tt__PTZVector; - return soap_in_tt__PTZVector(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Vector1D")) - { *type = SOAP_TYPE_tt__Vector1D; - return soap_in_tt__Vector1D(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Vector2D")) - { *type = SOAP_TYPE_tt__Vector2D; - return soap_in_tt__Vector2D(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IntRange")) - { *type = SOAP_TYPE_tt__IntRange; - return soap_in_tt__IntRange(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:SubscriptionPolicy")) - { *type = SOAP_TYPE_tev__SubscriptionPolicy; - return soap_in_tev__SubscriptionPolicy(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:Capabilities")) - { *type = SOAP_TYPE_tev__Capabilities; - return soap_in_tev__Capabilities(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsrfbf:BaseFaultType")) - { *type = SOAP_TYPE_wsrfbf__BaseFaultType; - return soap_in_wsrfbf__BaseFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:ResumeFailedFaultType")) - { *type = SOAP_TYPE_wsnt__ResumeFailedFaultType; - return soap_in_wsnt__ResumeFailedFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:PauseFailedFaultType")) - { *type = SOAP_TYPE_wsnt__PauseFailedFaultType; - return soap_in_wsnt__PauseFailedFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnableToDestroySubscriptionFaultType")) - { *type = SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType; - return soap_in_wsnt__UnableToDestroySubscriptionFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnacceptableTerminationTimeFaultType")) - { *type = SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType; - return soap_in_wsnt__UnacceptableTerminationTimeFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnableToCreatePullPointFaultType")) - { *type = SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType; - return soap_in_wsnt__UnableToCreatePullPointFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnableToDestroyPullPointFaultType")) - { *type = SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType; - return soap_in_wsnt__UnableToDestroyPullPointFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnableToGetMessagesFaultType")) - { *type = SOAP_TYPE_wsnt__UnableToGetMessagesFaultType; - return soap_in_wsnt__UnableToGetMessagesFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:NoCurrentMessageOnTopicFaultType")) - { *type = SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType; - return soap_in_wsnt__NoCurrentMessageOnTopicFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnacceptableInitialTerminationTimeFaultType")) - { *type = SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType; - return soap_in_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:NotifyMessageNotSupportedFaultType")) - { *type = SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType; - return soap_in_wsnt__NotifyMessageNotSupportedFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnsupportedPolicyRequestFaultType")) - { *type = SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType; - return soap_in_wsnt__UnsupportedPolicyRequestFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnrecognizedPolicyRequestFaultType")) - { *type = SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType; - return soap_in_wsnt__UnrecognizedPolicyRequestFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:InvalidMessageContentExpressionFaultType")) - { *type = SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType; - return soap_in_wsnt__InvalidMessageContentExpressionFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:InvalidProducerPropertiesExpressionFaultType")) - { *type = SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType; - return soap_in_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:MultipleTopicsSpecifiedFaultType")) - { *type = SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType; - return soap_in_wsnt__MultipleTopicsSpecifiedFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:TopicNotSupportedFaultType")) - { *type = SOAP_TYPE_wsnt__TopicNotSupportedFaultType; - return soap_in_wsnt__TopicNotSupportedFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:InvalidTopicExpressionFaultType")) - { *type = SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType; - return soap_in_wsnt__InvalidTopicExpressionFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:TopicExpressionDialectUnknownFaultType")) - { *type = SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType; - return soap_in_wsnt__TopicExpressionDialectUnknownFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:InvalidFilterFaultType")) - { *type = SOAP_TYPE_wsnt__InvalidFilterFaultType; - return soap_in_wsnt__InvalidFilterFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:SubscribeCreationFailedFaultType")) - { *type = SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType; - return soap_in_wsnt__SubscribeCreationFailedFaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:NotificationMessageHolderType")) - { *type = SOAP_TYPE_wsnt__NotificationMessageHolderType; - return soap_in_wsnt__NotificationMessageHolderType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:SubscriptionPolicyType")) - { *type = SOAP_TYPE_wsnt__SubscriptionPolicyType; - return soap_in_wsnt__SubscriptionPolicyType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:FilterType")) - { *type = SOAP_TYPE_wsnt__FilterType; - return soap_in_wsnt__FilterType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:TopicExpressionType")) - { *type = SOAP_TYPE_wsnt__TopicExpressionType; - return soap_in_wsnt__TopicExpressionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:QueryExpressionType")) - { *type = SOAP_TYPE_wsnt__QueryExpressionType; - return soap_in_wsnt__QueryExpressionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:token")) - { *type = SOAP_TYPE_xsd__token__; - return soap_in_xsd__token__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:token")) - { *type = SOAP_TYPE_xsd__token; - return soap_in_xsd__token(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:string")) - { *type = SOAP_TYPE_xsd__string_; - return soap_in_xsd__string_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:nonNegativeInteger")) - { *type = SOAP_TYPE_xsd__nonNegativeInteger__; - return soap_in_xsd__nonNegativeInteger__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:nonNegativeInteger")) - { *type = SOAP_TYPE_xsd__nonNegativeInteger; - return soap_in_xsd__nonNegativeInteger(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:integer")) - { *type = SOAP_TYPE_xsd__integer__; - return soap_in_xsd__integer__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:integer")) - { *type = SOAP_TYPE_xsd__integer; - return soap_in_xsd__integer(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:int")) - { *type = SOAP_TYPE_xsd__int_; - return soap_in_xsd__int_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:hexBinary")) - { *type = SOAP_TYPE_xsd__hexBinary__; - return soap_in_xsd__hexBinary__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:float")) - { *type = SOAP_TYPE_xsd__float_; - return soap_in_xsd__float_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:duration")) - { *type = SOAP_TYPE_xsd__duration__; - return soap_in_xsd__duration__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:duration")) - { *type = SOAP_TYPE_xsd__duration; - return soap_in_xsd__duration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:double")) - { *type = SOAP_TYPE_xsd__double_; - return soap_in_xsd__double_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:dateTime")) - { *type = SOAP_TYPE_xsd__dateTime__; - return soap_in_xsd__dateTime__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:boolean")) - { *type = SOAP_TYPE_xsd__boolean_; - return soap_in_xsd__boolean_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:base64Binary")) - { *type = SOAP_TYPE_xsd__base64Binary__; - return soap_in_xsd__base64Binary__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:anyURI")) - { *type = SOAP_TYPE_xsd__anyURI__; - return soap_in_xsd__anyURI__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:anyURI")) - { *type = SOAP_TYPE_xsd__anyURI; - return soap_in_xsd__anyURI(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:anySimpleType")) - { *type = SOAP_TYPE_xsd__anySimpleType__; - return soap_in_xsd__anySimpleType__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:anySimpleType")) - { *type = SOAP_TYPE_xsd__anySimpleType; - return soap_in_xsd__anySimpleType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:QName")) - { *type = SOAP_TYPE_xsd__QName__; - return soap_in_xsd__QName__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:NCName")) - { *type = SOAP_TYPE_xsd__NCName__; - return soap_in_xsd__NCName__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:NCName")) - { *type = SOAP_TYPE_xsd__NCName; - return soap_in_xsd__NCName(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "SOAP-ENV:Fault")) - { *type = SOAP_TYPE_SOAP_ENV__Fault_; - return soap_in_SOAP_ENV__Fault_(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "SOAP-ENV:Envelope")) - { *type = SOAP_TYPE_SOAP_ENV__Envelope__; - return soap_in_SOAP_ENV__Envelope__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "SOAP-ENV:Envelope")) - { *type = SOAP_TYPE_SOAP_ENV__Envelope; - return soap_in_SOAP_ENV__Envelope(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:EndpointReferenceType")) - { *type = SOAP_TYPE_wsa5__EndpointReferenceType__; - return soap_in_wsa5__EndpointReferenceType__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IntList")) - { *type = SOAP_TYPE_tt__IntList__; - return soap_in_tt__IntList__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FloatList")) - { *type = SOAP_TYPE_tt__FloatList__; - return soap_in_tt__FloatList__(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:hexBinary")) - { *type = SOAP_TYPE_xsd__hexBinary; - return soap_in_xsd__hexBinary(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:base64Binary")) - { *type = SOAP_TYPE_xsd__base64Binary; - return soap_in_xsd__base64Binary(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:QName")) - { *type = SOAP_TYPE_xsd__QName; - return soap_in_xsd__QName(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:string")) - { *type = SOAP_TYPE_std__string; - return soap_in_std__string(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:byte")) - { *type = SOAP_TYPE_byte; - return soap_in_byte(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IANA-IfTypes")) - { *type = SOAP_TYPE_tt__IANA_IfTypes; - return soap_in_tt__IANA_IfTypes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:int")) - { *type = SOAP_TYPE_int; - return soap_in_int(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:float")) - { *type = SOAP_TYPE_float; - return soap_in_float(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:double")) - { *type = SOAP_TYPE_double; - return soap_in_double(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:unsignedByte")) - { *type = SOAP_TYPE_unsignedByte; - return soap_in_unsignedByte(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:unsignedInt")) - { *type = SOAP_TYPE_unsignedInt; - return soap_in_unsignedInt(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:unsignedLong")) - { *type = SOAP_TYPE_ULONG64; - return soap_in_ULONG64(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:ImagingPresetType")) - { *type = SOAP_TYPE_timg__ImagingPresetType; - return soap_in_timg__ImagingPresetType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StorageType")) - { *type = SOAP_TYPE_tds__StorageType; - return soap_in_tds__StorageType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:AutoGeoModes")) - { *type = SOAP_TYPE_tds__AutoGeoModes; - return soap_in_tds__AutoGeoModes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:ParityBit")) - { *type = SOAP_TYPE_tmd__ParityBit; - return soap_in_tmd__ParityBit(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SerialPortType")) - { *type = SOAP_TYPE_tmd__SerialPortType; - return soap_in_tmd__SerialPortType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:OSDType")) - { *type = SOAP_TYPE_tt__OSDType; - return soap_in_tt__OSDType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ModeOfOperation")) - { *type = SOAP_TYPE_tt__ModeOfOperation; - return soap_in_tt__ModeOfOperation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TrackType")) - { *type = SOAP_TYPE_tt__TrackType; - return soap_in_tt__TrackType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RecordingStatus")) - { *type = SOAP_TYPE_tt__RecordingStatus; - return soap_in_tt__RecordingStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SearchState")) - { *type = SOAP_TYPE_tt__SearchState; - return soap_in_tt__SearchState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverState")) - { *type = SOAP_TYPE_tt__ReceiverState; - return soap_in_tt__ReceiverState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReceiverMode")) - { *type = SOAP_TYPE_tt__ReceiverMode; - return soap_in_tt__ReceiverMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Direction")) - { *type = SOAP_TYPE_tt__Direction; - return soap_in_tt__Direction(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PropertyOperation")) - { *type = SOAP_TYPE_tt__PropertyOperation; - return soap_in_tt__PropertyOperation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageSendingType")) - { *type = SOAP_TYPE_tt__ImageSendingType; - return soap_in_tt__ImageSendingType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DefoggingMode")) - { *type = SOAP_TYPE_tt__DefoggingMode; - return soap_in_tt__DefoggingMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ToneCompensationMode")) - { *type = SOAP_TYPE_tt__ToneCompensationMode; - return soap_in_tt__ToneCompensationMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterAutoBoundaryType")) - { *type = SOAP_TYPE_tt__IrCutFilterAutoBoundaryType; - return soap_in_tt__IrCutFilterAutoBoundaryType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ImageStabilizationMode")) - { *type = SOAP_TYPE_tt__ImageStabilizationMode; - return soap_in_tt__ImageStabilizationMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IrCutFilterMode")) - { *type = SOAP_TYPE_tt__IrCutFilterMode; - return soap_in_tt__IrCutFilterMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WhiteBalanceMode")) - { *type = SOAP_TYPE_tt__WhiteBalanceMode; - return soap_in_tt__WhiteBalanceMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Enabled")) - { *type = SOAP_TYPE_tt__Enabled; - return soap_in_tt__Enabled(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ExposureMode")) - { *type = SOAP_TYPE_tt__ExposureMode; - return soap_in_tt__ExposureMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ExposurePriority")) - { *type = SOAP_TYPE_tt__ExposurePriority; - return soap_in_tt__ExposurePriority(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:BacklightCompensationMode")) - { *type = SOAP_TYPE_tt__BacklightCompensationMode; - return soap_in_tt__BacklightCompensationMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:WideDynamicMode")) - { *type = SOAP_TYPE_tt__WideDynamicMode; - return soap_in_tt__WideDynamicMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AFModes")) - { *type = SOAP_TYPE_tt__AFModes; - return soap_in_tt__AFModes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AutoFocusMode")) - { *type = SOAP_TYPE_tt__AutoFocusMode; - return soap_in_tt__AutoFocusMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MoveAndTrackMethod")) - { *type = SOAP_TYPE_tt__MoveAndTrackMethod; - return soap_in_tt__MoveAndTrackMethod(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourOperation")) - { *type = SOAP_TYPE_tt__PTZPresetTourOperation; - return soap_in_tt__PTZPresetTourOperation(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourDirection")) - { *type = SOAP_TYPE_tt__PTZPresetTourDirection; - return soap_in_tt__PTZPresetTourDirection(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:PTZPresetTourState")) - { *type = SOAP_TYPE_tt__PTZPresetTourState; - return soap_in_tt__PTZPresetTourState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ReverseMode")) - { *type = SOAP_TYPE_tt__ReverseMode; - return soap_in_tt__ReverseMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EFlipMode")) - { *type = SOAP_TYPE_tt__EFlipMode; - return soap_in_tt__EFlipMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DigitalIdleState")) - { *type = SOAP_TYPE_tt__DigitalIdleState; - return soap_in_tt__DigitalIdleState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayMode")) - { *type = SOAP_TYPE_tt__RelayMode; - return soap_in_tt__RelayMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayIdleState")) - { *type = SOAP_TYPE_tt__RelayIdleState; - return soap_in_tt__RelayIdleState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RelayLogicalState")) - { *type = SOAP_TYPE_tt__RelayLogicalState; - return soap_in_tt__RelayLogicalState(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:UserLevel")) - { *type = SOAP_TYPE_tt__UserLevel; - return soap_in_tt__UserLevel(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SetDateTimeType")) - { *type = SOAP_TYPE_tt__SetDateTimeType; - return soap_in_tt__SetDateTimeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:FactoryDefaultType")) - { *type = SOAP_TYPE_tt__FactoryDefaultType; - return soap_in_tt__FactoryDefaultType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SystemLogType")) - { *type = SOAP_TYPE_tt__SystemLogType; - return soap_in_tt__SystemLogType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:CapabilityCategory")) - { *type = SOAP_TYPE_tt__CapabilityCategory; - return soap_in_tt__CapabilityCategory(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11AuthAndMangementSuite")) - { *type = SOAP_TYPE_tt__Dot11AuthAndMangementSuite; - return soap_in_tt__Dot11AuthAndMangementSuite(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SignalStrength")) - { *type = SOAP_TYPE_tt__Dot11SignalStrength; - return soap_in_tt__Dot11SignalStrength(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11Cipher")) - { *type = SOAP_TYPE_tt__Dot11Cipher; - return soap_in_tt__Dot11Cipher(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11SecurityMode")) - { *type = SOAP_TYPE_tt__Dot11SecurityMode; - return soap_in_tt__Dot11SecurityMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Dot11StationMode")) - { *type = SOAP_TYPE_tt__Dot11StationMode; - return soap_in_tt__Dot11StationMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DynamicDNSType")) - { *type = SOAP_TYPE_tt__DynamicDNSType; - return soap_in_tt__DynamicDNSType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPAddressFilterType")) - { *type = SOAP_TYPE_tt__IPAddressFilterType; - return soap_in_tt__IPAddressFilterType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPType")) - { *type = SOAP_TYPE_tt__IPType; - return soap_in_tt__IPType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkHostType")) - { *type = SOAP_TYPE_tt__NetworkHostType; - return soap_in_tt__NetworkHostType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:NetworkProtocolType")) - { *type = SOAP_TYPE_tt__NetworkProtocolType; - return soap_in_tt__NetworkProtocolType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:IPv6DHCPConfiguration")) - { *type = SOAP_TYPE_tt__IPv6DHCPConfiguration; - return soap_in_tt__IPv6DHCPConfiguration(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Duplex")) - { *type = SOAP_TYPE_tt__Duplex; - return soap_in_tt__Duplex(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:DiscoveryMode")) - { *type = SOAP_TYPE_tt__DiscoveryMode; - return soap_in_tt__DiscoveryMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ScopeDefinition")) - { *type = SOAP_TYPE_tt__ScopeDefinition; - return soap_in_tt__ScopeDefinition(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:TransportProtocol")) - { *type = SOAP_TYPE_tt__TransportProtocol; - return soap_in_tt__TransportProtocol(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StreamType")) - { *type = SOAP_TYPE_tt__StreamType; - return soap_in_tt__StreamType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MetadataCompressionType")) - { *type = SOAP_TYPE_tt__MetadataCompressionType; - return soap_in_tt__MetadataCompressionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncodingMimeNames")) - { *type = SOAP_TYPE_tt__AudioEncodingMimeNames; - return soap_in_tt__AudioEncodingMimeNames(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:AudioEncoding")) - { *type = SOAP_TYPE_tt__AudioEncoding; - return soap_in_tt__AudioEncoding(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncodingProfiles")) - { *type = SOAP_TYPE_tt__VideoEncodingProfiles; - return soap_in_tt__VideoEncodingProfiles(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncodingMimeNames")) - { *type = SOAP_TYPE_tt__VideoEncodingMimeNames; - return soap_in_tt__VideoEncodingMimeNames(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:H264Profile")) - { *type = SOAP_TYPE_tt__H264Profile; - return soap_in_tt__H264Profile(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Mpeg4Profile")) - { *type = SOAP_TYPE_tt__Mpeg4Profile; - return soap_in_tt__Mpeg4Profile(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:VideoEncoding")) - { *type = SOAP_TYPE_tt__VideoEncoding; - return soap_in_tt__VideoEncoding(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ViewModes")) - { *type = SOAP_TYPE_tt__ViewModes; - return soap_in_tt__ViewModes(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SceneOrientationOption")) - { *type = SOAP_TYPE_tt__SceneOrientationOption; - return soap_in_tt__SceneOrientationOption(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:SceneOrientationMode")) - { *type = SOAP_TYPE_tt__SceneOrientationMode; - return soap_in_tt__SceneOrientationMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:RotateMode")) - { *type = SOAP_TYPE_tt__RotateMode; - return soap_in_tt__RotateMode(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Entity")) - { *type = SOAP_TYPE_tt__Entity; - return soap_in_tt__Entity(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:MoveStatus")) - { *type = SOAP_TYPE_tt__MoveStatus; - return soap_in_tt__MoveStatus(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:boolean")) - { *type = SOAP_TYPE_bool; - return soap_in_bool(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:IsReferenceParameter")) - { *type = SOAP_TYPE__wsa5__IsReferenceParameter; - return soap_in__wsa5__IsReferenceParameter(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:FaultCodesType")) - { *type = SOAP_TYPE_wsa5__FaultCodesType; - return soap_in_wsa5__FaultCodesType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:RelationshipType")) - { *type = SOAP_TYPE_wsa5__RelationshipType; - return soap_in_wsa5__RelationshipType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:DecisionType")) - { *type = SOAP_TYPE_saml2__DecisionType; - return soap_in_saml2__DecisionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:DecisionType")) - { *type = SOAP_TYPE_saml1__DecisionType; - return soap_in_saml1__DecisionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsc:FaultCodeType")) - { *type = SOAP_TYPE_wsc__FaultCodeType; - return soap_in_wsc__FaultCodeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:FaultcodeEnum")) - { *type = SOAP_TYPE_wsse__FaultcodeEnum; - return soap_in_wsse__FaultcodeEnum(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsu:tTimestampFault")) - { *type = SOAP_TYPE_wsu__tTimestampFault; - return soap_in_wsu__tTimestampFault(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:FaultCodeType")) - { *type = SOAP_TYPE_wsdd__FaultCodeType; - return soap_in_wsdd__FaultCodeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:FaultSubcodeValues")) - { *type = SOAP_TYPE_wsa__FaultSubcodeValues; - return soap_in_wsa__FaultSubcodeValues(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:RelationshipTypeValues")) - { *type = SOAP_TYPE_wsa__RelationshipTypeValues; - return soap_in_wsa__RelationshipTypeValues(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "chan:ChannelInstanceType")) - { *type = SOAP_TYPE_chan__ChannelInstanceType; - return soap_in_chan__ChannelInstanceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:ProblemActionType")) - { *type = SOAP_TYPE_wsa5__ProblemActionType; - return soap_in_wsa5__ProblemActionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:RelatesToType")) - { *type = SOAP_TYPE_wsa5__RelatesToType; - return soap_in_wsa5__RelatesToType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:MetadataType")) - { *type = SOAP_TYPE_wsa5__MetadataType; - return soap_in_wsa5__MetadataType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:ReferenceParametersType")) - { *type = SOAP_TYPE_wsa5__ReferenceParametersType; - return soap_in_wsa5__ReferenceParametersType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:EndpointReferenceType")) - { *type = SOAP_TYPE_wsa5__EndpointReferenceType; - return soap_in_wsa5__EndpointReferenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:anyAttribute")) - { *type = SOAP_TYPE_xsd__anyAttribute; - return soap_in_xsd__anyAttribute(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:anyType")) - { *type = SOAP_TYPE_xsd__anyType; - return soap_in_xsd__anyType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AttributeType")) - { *type = SOAP_TYPE_saml2__AttributeType; - return soap_in_saml2__AttributeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AttributeStatementType")) - { *type = SOAP_TYPE_saml2__AttributeStatementType; - return soap_in_saml2__AttributeStatementType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:EvidenceType")) - { *type = SOAP_TYPE_saml2__EvidenceType; - return soap_in_saml2__EvidenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:ActionType")) - { *type = SOAP_TYPE_saml2__ActionType; - return soap_in_saml2__ActionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AuthzDecisionStatementType")) - { *type = SOAP_TYPE_saml2__AuthzDecisionStatementType; - return soap_in_saml2__AuthzDecisionStatementType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AuthnContextType")) - { *type = SOAP_TYPE_saml2__AuthnContextType; - return soap_in_saml2__AuthnContextType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:SubjectLocalityType")) - { *type = SOAP_TYPE_saml2__SubjectLocalityType; - return soap_in_saml2__SubjectLocalityType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AuthnStatementType")) - { *type = SOAP_TYPE_saml2__AuthnStatementType; - return soap_in_saml2__AuthnStatementType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:StatementAbstractType")) - { *type = SOAP_TYPE_saml2__StatementAbstractType; - return soap_in_saml2__StatementAbstractType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AdviceType")) - { *type = SOAP_TYPE_saml2__AdviceType; - return soap_in_saml2__AdviceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:ProxyRestrictionType")) - { *type = SOAP_TYPE_saml2__ProxyRestrictionType; - return soap_in_saml2__ProxyRestrictionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:OneTimeUseType")) - { *type = SOAP_TYPE_saml2__OneTimeUseType; - return soap_in_saml2__OneTimeUseType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AudienceRestrictionType")) - { *type = SOAP_TYPE_saml2__AudienceRestrictionType; - return soap_in_saml2__AudienceRestrictionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:ConditionAbstractType")) - { *type = SOAP_TYPE_saml2__ConditionAbstractType; - return soap_in_saml2__ConditionAbstractType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:ConditionsType")) - { *type = SOAP_TYPE_saml2__ConditionsType; - return soap_in_saml2__ConditionsType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:KeyInfoConfirmationDataType")) - { *type = SOAP_TYPE_saml2__KeyInfoConfirmationDataType; - return soap_in_saml2__KeyInfoConfirmationDataType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:SubjectConfirmationDataType")) - { *type = SOAP_TYPE_saml2__SubjectConfirmationDataType; - return soap_in_saml2__SubjectConfirmationDataType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:SubjectConfirmationType")) - { *type = SOAP_TYPE_saml2__SubjectConfirmationType; - return soap_in_saml2__SubjectConfirmationType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:SubjectType")) - { *type = SOAP_TYPE_saml2__SubjectType; - return soap_in_saml2__SubjectType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AssertionType")) - { *type = SOAP_TYPE_saml2__AssertionType; - return soap_in_saml2__AssertionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:EncryptedElementType")) - { *type = SOAP_TYPE_saml2__EncryptedElementType; - return soap_in_saml2__EncryptedElementType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:NameIDType")) - { *type = SOAP_TYPE_saml2__NameIDType; - return soap_in_saml2__NameIDType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:BaseIDAbstractType")) - { *type = SOAP_TYPE_saml2__BaseIDAbstractType; - return soap_in_saml2__BaseIDAbstractType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AttributeType")) - { *type = SOAP_TYPE_saml1__AttributeType; - return soap_in_saml1__AttributeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AttributeDesignatorType")) - { *type = SOAP_TYPE_saml1__AttributeDesignatorType; - return soap_in_saml1__AttributeDesignatorType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AttributeStatementType")) - { *type = SOAP_TYPE_saml1__AttributeStatementType; - return soap_in_saml1__AttributeStatementType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:EvidenceType")) - { *type = SOAP_TYPE_saml1__EvidenceType; - return soap_in_saml1__EvidenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:ActionType")) - { *type = SOAP_TYPE_saml1__ActionType; - return soap_in_saml1__ActionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AuthorizationDecisionStatementType")) - { *type = SOAP_TYPE_saml1__AuthorizationDecisionStatementType; - return soap_in_saml1__AuthorizationDecisionStatementType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AuthorityBindingType")) - { *type = SOAP_TYPE_saml1__AuthorityBindingType; - return soap_in_saml1__AuthorityBindingType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:SubjectLocalityType")) - { *type = SOAP_TYPE_saml1__SubjectLocalityType; - return soap_in_saml1__SubjectLocalityType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AuthenticationStatementType")) - { *type = SOAP_TYPE_saml1__AuthenticationStatementType; - return soap_in_saml1__AuthenticationStatementType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:SubjectConfirmationType")) - { *type = SOAP_TYPE_saml1__SubjectConfirmationType; - return soap_in_saml1__SubjectConfirmationType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:NameIdentifierType")) - { *type = SOAP_TYPE_saml1__NameIdentifierType; - return soap_in_saml1__NameIdentifierType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:SubjectType")) - { *type = SOAP_TYPE_saml1__SubjectType; - return soap_in_saml1__SubjectType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:SubjectStatementAbstractType")) - { *type = SOAP_TYPE_saml1__SubjectStatementAbstractType; - return soap_in_saml1__SubjectStatementAbstractType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:StatementAbstractType")) - { *type = SOAP_TYPE_saml1__StatementAbstractType; - return soap_in_saml1__StatementAbstractType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AdviceType")) - { *type = SOAP_TYPE_saml1__AdviceType; - return soap_in_saml1__AdviceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:DoNotCacheConditionType")) - { *type = SOAP_TYPE_saml1__DoNotCacheConditionType; - return soap_in_saml1__DoNotCacheConditionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AudienceRestrictionConditionType")) - { *type = SOAP_TYPE_saml1__AudienceRestrictionConditionType; - return soap_in_saml1__AudienceRestrictionConditionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:ConditionAbstractType")) - { *type = SOAP_TYPE_saml1__ConditionAbstractType; - return soap_in_saml1__ConditionAbstractType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:ConditionsType")) - { *type = SOAP_TYPE_saml1__ConditionsType; - return soap_in_saml1__ConditionsType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AssertionType")) - { *type = SOAP_TYPE_saml1__AssertionType; - return soap_in_saml1__AssertionType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:dateTime")) - { *type = SOAP_TYPE_xsd__dateTime; - return soap_in_xsd__dateTime(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsc:PropertiesType")) - { *type = SOAP_TYPE_wsc__PropertiesType; - return soap_in_wsc__PropertiesType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsc:DerivedKeyTokenType")) - { *type = SOAP_TYPE_wsc__DerivedKeyTokenType; - return soap_in_wsc__DerivedKeyTokenType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsc:SecurityContextTokenType")) - { *type = SOAP_TYPE_wsc__SecurityContextTokenType; - return soap_in_wsc__SecurityContextTokenType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:EncryptionPropertyType")) - { *type = SOAP_TYPE_xenc__EncryptionPropertyType; - return soap_in_xenc__EncryptionPropertyType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:EncryptionPropertiesType")) - { *type = SOAP_TYPE_xenc__EncryptionPropertiesType; - return soap_in_xenc__EncryptionPropertiesType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:ReferenceType")) - { *type = SOAP_TYPE_xenc__ReferenceType; - return soap_in_xenc__ReferenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:AgreementMethodType")) - { *type = SOAP_TYPE_xenc__AgreementMethodType; - return soap_in_xenc__AgreementMethodType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:EncryptedDataType")) - { *type = SOAP_TYPE_xenc__EncryptedDataType; - return soap_in_xenc__EncryptedDataType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:TransformsType")) - { *type = SOAP_TYPE_xenc__TransformsType; - return soap_in_xenc__TransformsType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:CipherReferenceType")) - { *type = SOAP_TYPE_xenc__CipherReferenceType; - return soap_in_xenc__CipherReferenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:CipherDataType")) - { *type = SOAP_TYPE_xenc__CipherDataType; - return soap_in_xenc__CipherDataType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:EncryptionMethodType")) - { *type = SOAP_TYPE_xenc__EncryptionMethodType; - return soap_in_xenc__EncryptionMethodType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:EncryptedType")) - { *type = SOAP_TYPE_xenc__EncryptedType; - return soap_in_xenc__EncryptedType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:RSAKeyValueType")) - { *type = SOAP_TYPE_ds__RSAKeyValueType; - return soap_in_ds__RSAKeyValueType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:DSAKeyValueType")) - { *type = SOAP_TYPE_ds__DSAKeyValueType; - return soap_in_ds__DSAKeyValueType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:X509IssuerSerialType")) - { *type = SOAP_TYPE_ds__X509IssuerSerialType; - return soap_in_ds__X509IssuerSerialType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:RetrievalMethodType")) - { *type = SOAP_TYPE_ds__RetrievalMethodType; - return soap_in_ds__RetrievalMethodType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:KeyValueType")) - { *type = SOAP_TYPE_ds__KeyValueType; - return soap_in_ds__KeyValueType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:DigestMethodType")) - { *type = SOAP_TYPE_ds__DigestMethodType; - return soap_in_ds__DigestMethodType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:TransformType")) - { *type = SOAP_TYPE_ds__TransformType; - return soap_in_ds__TransformType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:TransformsType")) - { *type = SOAP_TYPE_ds__TransformsType; - return soap_in_ds__TransformsType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:ReferenceType")) - { *type = SOAP_TYPE_ds__ReferenceType; - return soap_in_ds__ReferenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:SignatureMethodType")) - { *type = SOAP_TYPE_ds__SignatureMethodType; - return soap_in_ds__SignatureMethodType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:CanonicalizationMethodType")) - { *type = SOAP_TYPE_ds__CanonicalizationMethodType; - return soap_in_ds__CanonicalizationMethodType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:SignedInfoType")) - { *type = SOAP_TYPE_ds__SignedInfoType; - return soap_in_ds__SignedInfoType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:SignatureType")) - { *type = SOAP_TYPE_ds__SignatureType; - return soap_in_ds__SignatureType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:EncryptedKeyType")) - { *type = SOAP_TYPE_xenc__EncryptedKeyType; - return soap_in_xenc__EncryptedKeyType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:KeyInfoType")) - { *type = SOAP_TYPE_ds__KeyInfoType; - return soap_in_ds__KeyInfoType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:X509DataType")) - { *type = SOAP_TYPE_ds__X509DataType; - return soap_in_ds__X509DataType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:EncodedString")) - { *type = SOAP_TYPE_wsse__EncodedString; - return soap_in_wsse__EncodedString(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:AppSequenceType")) - { *type = SOAP_TYPE_wsdd__AppSequenceType; - return soap_in_wsdd__AppSequenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:SigType")) - { *type = SOAP_TYPE_wsdd__SigType; - return soap_in_wsdd__SigType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:SecurityType")) - { *type = SOAP_TYPE_wsdd__SecurityType; - return soap_in_wsdd__SecurityType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ScopesType")) - { *type = SOAP_TYPE_wsdd__ScopesType; - return soap_in_wsdd__ScopesType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ResolveMatchType")) - { *type = SOAP_TYPE_wsdd__ResolveMatchType; - return soap_in_wsdd__ResolveMatchType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ResolveMatchesType")) - { *type = SOAP_TYPE_wsdd__ResolveMatchesType; - return soap_in_wsdd__ResolveMatchesType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ResolveType")) - { *type = SOAP_TYPE_wsdd__ResolveType; - return soap_in_wsdd__ResolveType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ProbeMatchType")) - { *type = SOAP_TYPE_wsdd__ProbeMatchType; - return soap_in_wsdd__ProbeMatchType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ProbeMatchesType")) - { *type = SOAP_TYPE_wsdd__ProbeMatchesType; - return soap_in_wsdd__ProbeMatchesType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ProbeType")) - { *type = SOAP_TYPE_wsdd__ProbeType; - return soap_in_wsdd__ProbeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ByeType")) - { *type = SOAP_TYPE_wsdd__ByeType; - return soap_in_wsdd__ByeType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:HelloType")) - { *type = SOAP_TYPE_wsdd__HelloType; - return soap_in_wsdd__HelloType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:Relationship")) - { *type = SOAP_TYPE_wsa__Relationship; - return soap_in_wsa__Relationship(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:ServiceNameType")) - { *type = SOAP_TYPE_wsa__ServiceNameType; - return soap_in_wsa__ServiceNameType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:ReferenceParametersType")) - { *type = SOAP_TYPE_wsa__ReferenceParametersType; - return soap_in_wsa__ReferenceParametersType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:ReferencePropertiesType")) - { *type = SOAP_TYPE_wsa__ReferencePropertiesType; - return soap_in_wsa__ReferencePropertiesType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:EndpointReferenceType")) - { *type = SOAP_TYPE_wsa__EndpointReferenceType; - return soap_in_wsa__EndpointReferenceType(soap, tag, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xsd:QName")) - { char **s; - *type = SOAP_TYPE__wsa5__ProblemHeaderQName; - s = soap_in__wsa5__ProblemHeaderQName(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa5:FaultCodesOpenEnumType")) - { char **s; - *type = SOAP_TYPE_wsa5__FaultCodesOpenEnumType; - s = soap_in_wsa5__FaultCodesOpenEnumType(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa5:RelationshipTypeOpenEnum")) - { char **s; - *type = SOAP_TYPE_wsa5__RelationshipTypeOpenEnum; - s = soap_in_wsa5__RelationshipTypeOpenEnum(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsc:FaultCodeOpenEnumType")) - { char **s; - *type = SOAP_TYPE_wsc__FaultCodeOpenEnumType; - s = soap_in_wsc__FaultCodeOpenEnumType(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "xsd:QName")) - { char **s; - *type = SOAP_TYPE__wsdd__Types; - s = soap_in__wsdd__Types(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsdd:FaultCodeOpenType")) - { char **s; - *type = SOAP_TYPE_wsdd__FaultCodeOpenType; - s = soap_in_wsdd__FaultCodeOpenType(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsdd:UriListType")) - { char **s; - *type = SOAP_TYPE_wsdd__UriListType; - s = soap_in_wsdd__UriListType(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "xsd:QName")) - { char **s; - *type = SOAP_TYPE_wsdd__QNameListType; - s = soap_in_wsdd__QNameListType(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "xsd:QName")) - { char **s; - *type = SOAP_TYPE__QName; - s = soap_in__QName(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "xsd:string")) - { char **s; - *type = SOAP_TYPE_string; - s = soap_in_string(soap, tag, NULL, NULL); - return s ? *s : NULL; - } - t = soap->tag; - if (!soap_match_tag(soap, t, "wsdd:MetadataVersion")) - { *type = SOAP_TYPE__wsdd__MetadataVersion; - return soap_in__wsdd__MetadataVersion(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:ReplyAfter")) - { *type = SOAP_TYPE__wsa__ReplyAfter; - return soap_in__wsa__ReplyAfter(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:RetryAfter")) - { *type = SOAP_TYPE__wsa5__RetryAfter; - return soap_in__wsa5__RetryAfter(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wstop:TopicNamespaceType-Topic")) - { *type = SOAP_TYPE__wstop__TopicNamespaceType_Topic; - return soap_in__wstop__TopicNamespaceType_Topic(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:ExportRecordedDataResponse-Extension")) - { *type = SOAP_TYPE__trc__ExportRecordedDataResponse_Extension; - return soap_in__trc__ExportRecordedDataResponse_Extension(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemUrisResponse-Extension")) - { *type = SOAP_TYPE__tds__GetSystemUrisResponse_Extension; - return soap_in__tds__GetSystemUrisResponse_Extension(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StorageConfigurationData-Extension")) - { *type = SOAP_TYPE__tds__StorageConfigurationData_Extension; - return soap_in__tds__StorageConfigurationData_Extension(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:UserCredential-Extension")) - { *type = SOAP_TYPE__tds__UserCredential_Extension; - return soap_in__tds__UserCredential_Extension(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:Service-Capabilities")) - { *type = SOAP_TYPE__tds__Service_Capabilities; - return soap_in__tds__Service_Capabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ConfigDescription-Messages")) - { *type = SOAP_TYPE__tt__ConfigDescription_Messages; - return soap_in__tt__ConfigDescription_Messages(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemListDescription-ElementItemDescription")) - { *type = SOAP_TYPE__tt__ItemListDescription_ElementItemDescription; - return soap_in__tt__ItemListDescription_ElementItemDescription(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemListDescription-SimpleItemDescription")) - { *type = SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription; - return soap_in__tt__ItemListDescription_SimpleItemDescription(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemList-ElementItem")) - { *type = SOAP_TYPE__tt__ItemList_ElementItem; - return soap_in__tt__ItemList_ElementItem(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ItemList-SimpleItem")) - { *type = SOAP_TYPE__tt__ItemList_SimpleItem; - return soap_in__tt__ItemList_SimpleItem(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:EventSubscription-SubscriptionPolicy")) - { *type = SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy; - return soap_in__tt__EventSubscription_SubscriptionPolicy(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:ColorDescriptor-ColorCluster")) - { *type = SOAP_TYPE__tt__ColorDescriptor_ColorCluster; - return soap_in__tt__ColorDescriptor_ColorCluster(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:CreatePullPointSubscription-SubscriptionPolicy")) - { *type = SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy; - return soap_in__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsrfbf:BaseFaultType-FaultCause")) - { *type = SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause; - return soap_in__wsrfbf__BaseFaultType_FaultCause(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsrfbf:BaseFaultType-Description")) - { *type = SOAP_TYPE__wsrfbf__BaseFaultType_Description; - return soap_in__wsrfbf__BaseFaultType_Description(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsrfbf:BaseFaultType-ErrorCode")) - { *type = SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode; - return soap_in__wsrfbf__BaseFaultType_ErrorCode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:Subscribe-SubscriptionPolicy")) - { *type = SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy; - return soap_in__wsnt__Subscribe_SubscriptionPolicy(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:NotificationMessageHolderType-Message")) - { *type = SOAP_TYPE__wsnt__NotificationMessageHolderType_Message; - return soap_in__wsnt__NotificationMessageHolderType_Message(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:EndSearchResponse")) - { *type = SOAP_TYPE__tse__EndSearchResponse; - return soap_in__tse__EndSearchResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:EndSearch")) - { *type = SOAP_TYPE__tse__EndSearch; - return soap_in__tse__EndSearch(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetSearchStateResponse")) - { *type = SOAP_TYPE__tse__GetSearchStateResponse; - return soap_in__tse__GetSearchStateResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetSearchState")) - { *type = SOAP_TYPE__tse__GetSearchState; - return soap_in__tse__GetSearchState(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetMetadataSearchResultsResponse")) - { *type = SOAP_TYPE__tse__GetMetadataSearchResultsResponse; - return soap_in__tse__GetMetadataSearchResultsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetMetadataSearchResults")) - { *type = SOAP_TYPE__tse__GetMetadataSearchResults; - return soap_in__tse__GetMetadataSearchResults(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindMetadataResponse")) - { *type = SOAP_TYPE__tse__FindMetadataResponse; - return soap_in__tse__FindMetadataResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindMetadata")) - { *type = SOAP_TYPE__tse__FindMetadata; - return soap_in__tse__FindMetadata(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetPTZPositionSearchResultsResponse")) - { *type = SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse; - return soap_in__tse__GetPTZPositionSearchResultsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetPTZPositionSearchResults")) - { *type = SOAP_TYPE__tse__GetPTZPositionSearchResults; - return soap_in__tse__GetPTZPositionSearchResults(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindPTZPositionResponse")) - { *type = SOAP_TYPE__tse__FindPTZPositionResponse; - return soap_in__tse__FindPTZPositionResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindPTZPosition")) - { *type = SOAP_TYPE__tse__FindPTZPosition; - return soap_in__tse__FindPTZPosition(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetEventSearchResultsResponse")) - { *type = SOAP_TYPE__tse__GetEventSearchResultsResponse; - return soap_in__tse__GetEventSearchResultsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetEventSearchResults")) - { *type = SOAP_TYPE__tse__GetEventSearchResults; - return soap_in__tse__GetEventSearchResults(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindEventsResponse")) - { *type = SOAP_TYPE__tse__FindEventsResponse; - return soap_in__tse__FindEventsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindEvents")) - { *type = SOAP_TYPE__tse__FindEvents; - return soap_in__tse__FindEvents(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetRecordingSearchResultsResponse")) - { *type = SOAP_TYPE__tse__GetRecordingSearchResultsResponse; - return soap_in__tse__GetRecordingSearchResultsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetRecordingSearchResults")) - { *type = SOAP_TYPE__tse__GetRecordingSearchResults; - return soap_in__tse__GetRecordingSearchResults(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindRecordingsResponse")) - { *type = SOAP_TYPE__tse__FindRecordingsResponse; - return soap_in__tse__FindRecordingsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:FindRecordings")) - { *type = SOAP_TYPE__tse__FindRecordings; - return soap_in__tse__FindRecordings(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetMediaAttributesResponse")) - { *type = SOAP_TYPE__tse__GetMediaAttributesResponse; - return soap_in__tse__GetMediaAttributesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetMediaAttributes")) - { *type = SOAP_TYPE__tse__GetMediaAttributes; - return soap_in__tse__GetMediaAttributes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetRecordingInformationResponse")) - { *type = SOAP_TYPE__tse__GetRecordingInformationResponse; - return soap_in__tse__GetRecordingInformationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetRecordingInformation")) - { *type = SOAP_TYPE__tse__GetRecordingInformation; - return soap_in__tse__GetRecordingInformation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetRecordingSummaryResponse")) - { *type = SOAP_TYPE__tse__GetRecordingSummaryResponse; - return soap_in__tse__GetRecordingSummaryResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetRecordingSummary")) - { *type = SOAP_TYPE__tse__GetRecordingSummary; - return soap_in__tse__GetRecordingSummary(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__tse__GetServiceCapabilitiesResponse; - return soap_in__tse__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tse:GetServiceCapabilities")) - { *type = SOAP_TYPE__tse__GetServiceCapabilities; - return soap_in__tse__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:GetReplayConfigurationResponse")) - { *type = SOAP_TYPE__trp__GetReplayConfigurationResponse; - return soap_in__trp__GetReplayConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:GetReplayConfiguration")) - { *type = SOAP_TYPE__trp__GetReplayConfiguration; - return soap_in__trp__GetReplayConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:SetReplayConfigurationResponse")) - { *type = SOAP_TYPE__trp__SetReplayConfigurationResponse; - return soap_in__trp__SetReplayConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:SetReplayConfiguration")) - { *type = SOAP_TYPE__trp__SetReplayConfiguration; - return soap_in__trp__SetReplayConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:GetReplayUriResponse")) - { *type = SOAP_TYPE__trp__GetReplayUriResponse; - return soap_in__trp__GetReplayUriResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:GetReplayUri")) - { *type = SOAP_TYPE__trp__GetReplayUri; - return soap_in__trp__GetReplayUri(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__trp__GetServiceCapabilitiesResponse; - return soap_in__trp__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trp:GetServiceCapabilities")) - { *type = SOAP_TYPE__trp__GetServiceCapabilities; - return soap_in__trp__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetExportRecordedDataStateResponse")) - { *type = SOAP_TYPE__trc__GetExportRecordedDataStateResponse; - return soap_in__trc__GetExportRecordedDataStateResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetExportRecordedDataState")) - { *type = SOAP_TYPE__trc__GetExportRecordedDataState; - return soap_in__trc__GetExportRecordedDataState(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:StopExportRecordedDataResponse")) - { *type = SOAP_TYPE__trc__StopExportRecordedDataResponse; - return soap_in__trc__StopExportRecordedDataResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:StopExportRecordedData")) - { *type = SOAP_TYPE__trc__StopExportRecordedData; - return soap_in__trc__StopExportRecordedData(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:ExportRecordedDataResponse")) - { *type = SOAP_TYPE__trc__ExportRecordedDataResponse; - return soap_in__trc__ExportRecordedDataResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:ExportRecordedData")) - { *type = SOAP_TYPE__trc__ExportRecordedData; - return soap_in__trc__ExportRecordedData(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingOptionsResponse")) - { *type = SOAP_TYPE__trc__GetRecordingOptionsResponse; - return soap_in__trc__GetRecordingOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingOptions")) - { *type = SOAP_TYPE__trc__GetRecordingOptions; - return soap_in__trc__GetRecordingOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingJobStateResponse")) - { *type = SOAP_TYPE__trc__GetRecordingJobStateResponse; - return soap_in__trc__GetRecordingJobStateResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingJobState")) - { *type = SOAP_TYPE__trc__GetRecordingJobState; - return soap_in__trc__GetRecordingJobState(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetRecordingJobModeResponse")) - { *type = SOAP_TYPE__trc__SetRecordingJobModeResponse; - return soap_in__trc__SetRecordingJobModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetRecordingJobMode")) - { *type = SOAP_TYPE__trc__SetRecordingJobMode; - return soap_in__trc__SetRecordingJobMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingJobConfigurationResponse")) - { *type = SOAP_TYPE__trc__GetRecordingJobConfigurationResponse; - return soap_in__trc__GetRecordingJobConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingJobConfiguration")) - { *type = SOAP_TYPE__trc__GetRecordingJobConfiguration; - return soap_in__trc__GetRecordingJobConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetRecordingJobConfigurationResponse")) - { *type = SOAP_TYPE__trc__SetRecordingJobConfigurationResponse; - return soap_in__trc__SetRecordingJobConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetRecordingJobConfiguration")) - { *type = SOAP_TYPE__trc__SetRecordingJobConfiguration; - return soap_in__trc__SetRecordingJobConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingJobsResponse")) - { *type = SOAP_TYPE__trc__GetRecordingJobsResponse; - return soap_in__trc__GetRecordingJobsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingJobs")) - { *type = SOAP_TYPE__trc__GetRecordingJobs; - return soap_in__trc__GetRecordingJobs(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:DeleteRecordingJobResponse")) - { *type = SOAP_TYPE__trc__DeleteRecordingJobResponse; - return soap_in__trc__DeleteRecordingJobResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:DeleteRecordingJob")) - { *type = SOAP_TYPE__trc__DeleteRecordingJob; - return soap_in__trc__DeleteRecordingJob(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:CreateRecordingJobResponse")) - { *type = SOAP_TYPE__trc__CreateRecordingJobResponse; - return soap_in__trc__CreateRecordingJobResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:CreateRecordingJob")) - { *type = SOAP_TYPE__trc__CreateRecordingJob; - return soap_in__trc__CreateRecordingJob(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetTrackConfigurationResponse")) - { *type = SOAP_TYPE__trc__SetTrackConfigurationResponse; - return soap_in__trc__SetTrackConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetTrackConfiguration")) - { *type = SOAP_TYPE__trc__SetTrackConfiguration; - return soap_in__trc__SetTrackConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetTrackConfigurationResponse")) - { *type = SOAP_TYPE__trc__GetTrackConfigurationResponse; - return soap_in__trc__GetTrackConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetTrackConfiguration")) - { *type = SOAP_TYPE__trc__GetTrackConfiguration; - return soap_in__trc__GetTrackConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:DeleteTrackResponse")) - { *type = SOAP_TYPE__trc__DeleteTrackResponse; - return soap_in__trc__DeleteTrackResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:DeleteTrack")) - { *type = SOAP_TYPE__trc__DeleteTrack; - return soap_in__trc__DeleteTrack(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:CreateTrackResponse")) - { *type = SOAP_TYPE__trc__CreateTrackResponse; - return soap_in__trc__CreateTrackResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:CreateTrack")) - { *type = SOAP_TYPE__trc__CreateTrack; - return soap_in__trc__CreateTrack(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingConfigurationResponse")) - { *type = SOAP_TYPE__trc__GetRecordingConfigurationResponse; - return soap_in__trc__GetRecordingConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingConfiguration")) - { *type = SOAP_TYPE__trc__GetRecordingConfiguration; - return soap_in__trc__GetRecordingConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetRecordingConfigurationResponse")) - { *type = SOAP_TYPE__trc__SetRecordingConfigurationResponse; - return soap_in__trc__SetRecordingConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:SetRecordingConfiguration")) - { *type = SOAP_TYPE__trc__SetRecordingConfiguration; - return soap_in__trc__SetRecordingConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordingsResponse")) - { *type = SOAP_TYPE__trc__GetRecordingsResponse; - return soap_in__trc__GetRecordingsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetRecordings")) - { *type = SOAP_TYPE__trc__GetRecordings; - return soap_in__trc__GetRecordings(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:DeleteRecordingResponse")) - { *type = SOAP_TYPE__trc__DeleteRecordingResponse; - return soap_in__trc__DeleteRecordingResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:DeleteRecording")) - { *type = SOAP_TYPE__trc__DeleteRecording; - return soap_in__trc__DeleteRecording(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:CreateRecordingResponse")) - { *type = SOAP_TYPE__trc__CreateRecordingResponse; - return soap_in__trc__CreateRecordingResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:CreateRecording")) - { *type = SOAP_TYPE__trc__CreateRecording; - return soap_in__trc__CreateRecording(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__trc__GetServiceCapabilitiesResponse; - return soap_in__trc__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trc:GetServiceCapabilities")) - { *type = SOAP_TYPE__trc__GetServiceCapabilities; - return soap_in__trc__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetReceiverStateResponse")) - { *type = SOAP_TYPE__trv__GetReceiverStateResponse; - return soap_in__trv__GetReceiverStateResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetReceiverState")) - { *type = SOAP_TYPE__trv__GetReceiverState; - return soap_in__trv__GetReceiverState(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:SetReceiverModeResponse")) - { *type = SOAP_TYPE__trv__SetReceiverModeResponse; - return soap_in__trv__SetReceiverModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:SetReceiverMode")) - { *type = SOAP_TYPE__trv__SetReceiverMode; - return soap_in__trv__SetReceiverMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:ConfigureReceiverResponse")) - { *type = SOAP_TYPE__trv__ConfigureReceiverResponse; - return soap_in__trv__ConfigureReceiverResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:ConfigureReceiver")) - { *type = SOAP_TYPE__trv__ConfigureReceiver; - return soap_in__trv__ConfigureReceiver(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:DeleteReceiverResponse")) - { *type = SOAP_TYPE__trv__DeleteReceiverResponse; - return soap_in__trv__DeleteReceiverResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:DeleteReceiver")) - { *type = SOAP_TYPE__trv__DeleteReceiver; - return soap_in__trv__DeleteReceiver(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:CreateReceiverResponse")) - { *type = SOAP_TYPE__trv__CreateReceiverResponse; - return soap_in__trv__CreateReceiverResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:CreateReceiver")) - { *type = SOAP_TYPE__trv__CreateReceiver; - return soap_in__trv__CreateReceiver(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetReceiverResponse")) - { *type = SOAP_TYPE__trv__GetReceiverResponse; - return soap_in__trv__GetReceiverResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetReceiver")) - { *type = SOAP_TYPE__trv__GetReceiver; - return soap_in__trv__GetReceiver(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetReceiversResponse")) - { *type = SOAP_TYPE__trv__GetReceiversResponse; - return soap_in__trv__GetReceiversResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetReceivers")) - { *type = SOAP_TYPE__trv__GetReceivers; - return soap_in__trv__GetReceivers(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__trv__GetServiceCapabilitiesResponse; - return soap_in__trv__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trv:GetServiceCapabilities")) - { *type = SOAP_TYPE__trv__GetServiceCapabilities; - return soap_in__trv__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetCompatibleConfigurationsResponse")) - { *type = SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse; - return soap_in__tptz__GetCompatibleConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetCompatibleConfigurations")) - { *type = SOAP_TYPE__tptz__GetCompatibleConfigurations; - return soap_in__tptz__GetCompatibleConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:RemovePresetTourResponse")) - { *type = SOAP_TYPE__tptz__RemovePresetTourResponse; - return soap_in__tptz__RemovePresetTourResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:RemovePresetTour")) - { *type = SOAP_TYPE__tptz__RemovePresetTour; - return soap_in__tptz__RemovePresetTour(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:OperatePresetTourResponse")) - { *type = SOAP_TYPE__tptz__OperatePresetTourResponse; - return soap_in__tptz__OperatePresetTourResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:OperatePresetTour")) - { *type = SOAP_TYPE__tptz__OperatePresetTour; - return soap_in__tptz__OperatePresetTour(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:ModifyPresetTourResponse")) - { *type = SOAP_TYPE__tptz__ModifyPresetTourResponse; - return soap_in__tptz__ModifyPresetTourResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:ModifyPresetTour")) - { *type = SOAP_TYPE__tptz__ModifyPresetTour; - return soap_in__tptz__ModifyPresetTour(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:CreatePresetTourResponse")) - { *type = SOAP_TYPE__tptz__CreatePresetTourResponse; - return soap_in__tptz__CreatePresetTourResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:CreatePresetTour")) - { *type = SOAP_TYPE__tptz__CreatePresetTour; - return soap_in__tptz__CreatePresetTour(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresetTourOptionsResponse")) - { *type = SOAP_TYPE__tptz__GetPresetTourOptionsResponse; - return soap_in__tptz__GetPresetTourOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresetTourOptions")) - { *type = SOAP_TYPE__tptz__GetPresetTourOptions; - return soap_in__tptz__GetPresetTourOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresetTourResponse")) - { *type = SOAP_TYPE__tptz__GetPresetTourResponse; - return soap_in__tptz__GetPresetTourResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresetTour")) - { *type = SOAP_TYPE__tptz__GetPresetTour; - return soap_in__tptz__GetPresetTour(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresetToursResponse")) - { *type = SOAP_TYPE__tptz__GetPresetToursResponse; - return soap_in__tptz__GetPresetToursResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresetTours")) - { *type = SOAP_TYPE__tptz__GetPresetTours; - return soap_in__tptz__GetPresetTours(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:StopResponse")) - { *type = SOAP_TYPE__tptz__StopResponse; - return soap_in__tptz__StopResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:Stop")) - { *type = SOAP_TYPE__tptz__Stop; - return soap_in__tptz__Stop(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:AbsoluteMoveResponse")) - { *type = SOAP_TYPE__tptz__AbsoluteMoveResponse; - return soap_in__tptz__AbsoluteMoveResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:AbsoluteMove")) - { *type = SOAP_TYPE__tptz__AbsoluteMove; - return soap_in__tptz__AbsoluteMove(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:RelativeMoveResponse")) - { *type = SOAP_TYPE__tptz__RelativeMoveResponse; - return soap_in__tptz__RelativeMoveResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:RelativeMove")) - { *type = SOAP_TYPE__tptz__RelativeMove; - return soap_in__tptz__RelativeMove(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:ContinuousMoveResponse")) - { *type = SOAP_TYPE__tptz__ContinuousMoveResponse; - return soap_in__tptz__ContinuousMoveResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:ContinuousMove")) - { *type = SOAP_TYPE__tptz__ContinuousMove; - return soap_in__tptz__ContinuousMove(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SetHomePositionResponse")) - { *type = SOAP_TYPE__tptz__SetHomePositionResponse; - return soap_in__tptz__SetHomePositionResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SetHomePosition")) - { *type = SOAP_TYPE__tptz__SetHomePosition; - return soap_in__tptz__SetHomePosition(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GotoHomePositionResponse")) - { *type = SOAP_TYPE__tptz__GotoHomePositionResponse; - return soap_in__tptz__GotoHomePositionResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GotoHomePosition")) - { *type = SOAP_TYPE__tptz__GotoHomePosition; - return soap_in__tptz__GotoHomePosition(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetStatusResponse")) - { *type = SOAP_TYPE__tptz__GetStatusResponse; - return soap_in__tptz__GetStatusResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetStatus")) - { *type = SOAP_TYPE__tptz__GetStatus; - return soap_in__tptz__GetStatus(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GotoPresetResponse")) - { *type = SOAP_TYPE__tptz__GotoPresetResponse; - return soap_in__tptz__GotoPresetResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GotoPreset")) - { *type = SOAP_TYPE__tptz__GotoPreset; - return soap_in__tptz__GotoPreset(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:RemovePresetResponse")) - { *type = SOAP_TYPE__tptz__RemovePresetResponse; - return soap_in__tptz__RemovePresetResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:RemovePreset")) - { *type = SOAP_TYPE__tptz__RemovePreset; - return soap_in__tptz__RemovePreset(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SetPresetResponse")) - { *type = SOAP_TYPE__tptz__SetPresetResponse; - return soap_in__tptz__SetPresetResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SetPreset")) - { *type = SOAP_TYPE__tptz__SetPreset; - return soap_in__tptz__SetPreset(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresetsResponse")) - { *type = SOAP_TYPE__tptz__GetPresetsResponse; - return soap_in__tptz__GetPresetsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetPresets")) - { *type = SOAP_TYPE__tptz__GetPresets; - return soap_in__tptz__GetPresets(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SendAuxiliaryCommandResponse")) - { *type = SOAP_TYPE__tptz__SendAuxiliaryCommandResponse; - return soap_in__tptz__SendAuxiliaryCommandResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SendAuxiliaryCommand")) - { *type = SOAP_TYPE__tptz__SendAuxiliaryCommand; - return soap_in__tptz__SendAuxiliaryCommand(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetConfigurationOptionsResponse")) - { *type = SOAP_TYPE__tptz__GetConfigurationOptionsResponse; - return soap_in__tptz__GetConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetConfigurationOptions")) - { *type = SOAP_TYPE__tptz__GetConfigurationOptions; - return soap_in__tptz__GetConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SetConfigurationResponse")) - { *type = SOAP_TYPE__tptz__SetConfigurationResponse; - return soap_in__tptz__SetConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:SetConfiguration")) - { *type = SOAP_TYPE__tptz__SetConfiguration; - return soap_in__tptz__SetConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetConfigurationResponse")) - { *type = SOAP_TYPE__tptz__GetConfigurationResponse; - return soap_in__tptz__GetConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetConfiguration")) - { *type = SOAP_TYPE__tptz__GetConfiguration; - return soap_in__tptz__GetConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetConfigurationsResponse")) - { *type = SOAP_TYPE__tptz__GetConfigurationsResponse; - return soap_in__tptz__GetConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetConfigurations")) - { *type = SOAP_TYPE__tptz__GetConfigurations; - return soap_in__tptz__GetConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetNodeResponse")) - { *type = SOAP_TYPE__tptz__GetNodeResponse; - return soap_in__tptz__GetNodeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetNode")) - { *type = SOAP_TYPE__tptz__GetNode; - return soap_in__tptz__GetNode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetNodesResponse")) - { *type = SOAP_TYPE__tptz__GetNodesResponse; - return soap_in__tptz__GetNodesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetNodes")) - { *type = SOAP_TYPE__tptz__GetNodes; - return soap_in__tptz__GetNodes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__tptz__GetServiceCapabilitiesResponse; - return soap_in__tptz__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tptz:GetServiceCapabilities")) - { *type = SOAP_TYPE__tptz__GetServiceCapabilities; - return soap_in__tptz__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:DeleteOSDResponse")) - { *type = SOAP_TYPE__trt__DeleteOSDResponse; - return soap_in__trt__DeleteOSDResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:DeleteOSD")) - { *type = SOAP_TYPE__trt__DeleteOSD; - return soap_in__trt__DeleteOSD(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:CreateOSDResponse")) - { *type = SOAP_TYPE__trt__CreateOSDResponse; - return soap_in__trt__CreateOSDResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:CreateOSD")) - { *type = SOAP_TYPE__trt__CreateOSD; - return soap_in__trt__CreateOSD(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetOSDOptionsResponse")) - { *type = SOAP_TYPE__trt__GetOSDOptionsResponse; - return soap_in__trt__GetOSDOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetOSDOptions")) - { *type = SOAP_TYPE__trt__GetOSDOptions; - return soap_in__trt__GetOSDOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetOSDResponse")) - { *type = SOAP_TYPE__trt__SetOSDResponse; - return soap_in__trt__SetOSDResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetOSD")) - { *type = SOAP_TYPE__trt__SetOSD; - return soap_in__trt__SetOSD(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetOSDResponse")) - { *type = SOAP_TYPE__trt__GetOSDResponse; - return soap_in__trt__GetOSDResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetOSD")) - { *type = SOAP_TYPE__trt__GetOSD; - return soap_in__trt__GetOSD(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetOSDsResponse")) - { *type = SOAP_TYPE__trt__GetOSDsResponse; - return soap_in__trt__GetOSDsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetOSDs")) - { *type = SOAP_TYPE__trt__GetOSDs; - return soap_in__trt__GetOSDs(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoSourceModeResponse")) - { *type = SOAP_TYPE__trt__SetVideoSourceModeResponse; - return soap_in__trt__SetVideoSourceModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoSourceMode")) - { *type = SOAP_TYPE__trt__SetVideoSourceMode; - return soap_in__trt__SetVideoSourceMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceModesResponse")) - { *type = SOAP_TYPE__trt__GetVideoSourceModesResponse; - return soap_in__trt__GetVideoSourceModesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceModes")) - { *type = SOAP_TYPE__trt__GetVideoSourceModes; - return soap_in__trt__GetVideoSourceModes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetSnapshotUriResponse")) - { *type = SOAP_TYPE__trt__GetSnapshotUriResponse; - return soap_in__trt__GetSnapshotUriResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetSnapshotUri")) - { *type = SOAP_TYPE__trt__GetSnapshotUri; - return soap_in__trt__GetSnapshotUri(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetSynchronizationPointResponse")) - { *type = SOAP_TYPE__trt__SetSynchronizationPointResponse; - return soap_in__trt__SetSynchronizationPointResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetSynchronizationPoint")) - { *type = SOAP_TYPE__trt__SetSynchronizationPoint; - return soap_in__trt__SetSynchronizationPoint(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:StopMulticastStreamingResponse")) - { *type = SOAP_TYPE__trt__StopMulticastStreamingResponse; - return soap_in__trt__StopMulticastStreamingResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:StopMulticastStreaming")) - { *type = SOAP_TYPE__trt__StopMulticastStreaming; - return soap_in__trt__StopMulticastStreaming(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:StartMulticastStreamingResponse")) - { *type = SOAP_TYPE__trt__StartMulticastStreamingResponse; - return soap_in__trt__StartMulticastStreamingResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:StartMulticastStreaming")) - { *type = SOAP_TYPE__trt__StartMulticastStreaming; - return soap_in__trt__StartMulticastStreaming(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetStreamUriResponse")) - { *type = SOAP_TYPE__trt__GetStreamUriResponse; - return soap_in__trt__GetStreamUriResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetStreamUri")) - { *type = SOAP_TYPE__trt__GetStreamUri; - return soap_in__trt__GetStreamUri(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse")) - { *type = SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse; - return soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetGuaranteedNumberOfVideoEncoderInstances")) - { *type = SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances; - return soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioDecoderConfigurationOptionsResponse")) - { *type = SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse; - return soap_in__trt__GetAudioDecoderConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioDecoderConfigurationOptions")) - { *type = SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions; - return soap_in__trt__GetAudioDecoderConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputConfigurationOptionsResponse")) - { *type = SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse; - return soap_in__trt__GetAudioOutputConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputConfigurationOptions")) - { *type = SOAP_TYPE__trt__GetAudioOutputConfigurationOptions; - return soap_in__trt__GetAudioOutputConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetMetadataConfigurationOptionsResponse")) - { *type = SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse; - return soap_in__trt__GetMetadataConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetMetadataConfigurationOptions")) - { *type = SOAP_TYPE__trt__GetMetadataConfigurationOptions; - return soap_in__trt__GetMetadataConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioEncoderConfigurationOptionsResponse")) - { *type = SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse; - return soap_in__trt__GetAudioEncoderConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioEncoderConfigurationOptions")) - { *type = SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions; - return soap_in__trt__GetAudioEncoderConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSourceConfigurationOptionsResponse")) - { *type = SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse; - return soap_in__trt__GetAudioSourceConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSourceConfigurationOptions")) - { *type = SOAP_TYPE__trt__GetAudioSourceConfigurationOptions; - return soap_in__trt__GetAudioSourceConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoEncoderConfigurationOptionsResponse")) - { *type = SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse; - return soap_in__trt__GetVideoEncoderConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoEncoderConfigurationOptions")) - { *type = SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions; - return soap_in__trt__GetVideoEncoderConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceConfigurationOptionsResponse")) - { *type = SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse; - return soap_in__trt__GetVideoSourceConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceConfigurationOptions")) - { *type = SOAP_TYPE__trt__GetVideoSourceConfigurationOptions; - return soap_in__trt__GetVideoSourceConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioDecoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse; - return soap_in__trt__SetAudioDecoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioDecoderConfiguration")) - { *type = SOAP_TYPE__trt__SetAudioDecoderConfiguration; - return soap_in__trt__SetAudioDecoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioOutputConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetAudioOutputConfigurationResponse; - return soap_in__trt__SetAudioOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioOutputConfiguration")) - { *type = SOAP_TYPE__trt__SetAudioOutputConfiguration; - return soap_in__trt__SetAudioOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetMetadataConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetMetadataConfigurationResponse; - return soap_in__trt__SetMetadataConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetMetadataConfiguration")) - { *type = SOAP_TYPE__trt__SetMetadataConfiguration; - return soap_in__trt__SetMetadataConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoAnalyticsConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse; - return soap_in__trt__SetVideoAnalyticsConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoAnalyticsConfiguration")) - { *type = SOAP_TYPE__trt__SetVideoAnalyticsConfiguration; - return soap_in__trt__SetVideoAnalyticsConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetAudioSourceConfigurationResponse; - return soap_in__trt__SetAudioSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioSourceConfiguration")) - { *type = SOAP_TYPE__trt__SetAudioSourceConfiguration; - return soap_in__trt__SetAudioSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse; - return soap_in__trt__SetAudioEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetAudioEncoderConfiguration")) - { *type = SOAP_TYPE__trt__SetAudioEncoderConfiguration; - return soap_in__trt__SetAudioEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetVideoSourceConfigurationResponse; - return soap_in__trt__SetVideoSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoSourceConfiguration")) - { *type = SOAP_TYPE__trt__SetVideoSourceConfiguration; - return soap_in__trt__SetVideoSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse; - return soap_in__trt__SetVideoEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:SetVideoEncoderConfiguration")) - { *type = SOAP_TYPE__trt__SetVideoEncoderConfiguration; - return soap_in__trt__SetVideoEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioDecoderConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse; - return soap_in__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioDecoderConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations; - return soap_in__trt__GetCompatibleAudioDecoderConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioOutputConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse; - return soap_in__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioOutputConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations; - return soap_in__trt__GetCompatibleAudioOutputConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleMetadataConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse; - return soap_in__trt__GetCompatibleMetadataConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleMetadataConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleMetadataConfigurations; - return soap_in__trt__GetCompatibleMetadataConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleVideoAnalyticsConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse; - return soap_in__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleVideoAnalyticsConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations; - return soap_in__trt__GetCompatibleVideoAnalyticsConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioSourceConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse; - return soap_in__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioSourceConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations; - return soap_in__trt__GetCompatibleAudioSourceConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioEncoderConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse; - return soap_in__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleAudioEncoderConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations; - return soap_in__trt__GetCompatibleAudioEncoderConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleVideoSourceConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse; - return soap_in__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleVideoSourceConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations; - return soap_in__trt__GetCompatibleVideoSourceConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleVideoEncoderConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse; - return soap_in__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetCompatibleVideoEncoderConfigurations")) - { *type = SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations; - return soap_in__trt__GetCompatibleVideoEncoderConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioDecoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse; - return soap_in__trt__GetAudioDecoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioDecoderConfiguration")) - { *type = SOAP_TYPE__trt__GetAudioDecoderConfiguration; - return soap_in__trt__GetAudioDecoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetAudioOutputConfigurationResponse; - return soap_in__trt__GetAudioOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputConfiguration")) - { *type = SOAP_TYPE__trt__GetAudioOutputConfiguration; - return soap_in__trt__GetAudioOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetMetadataConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetMetadataConfigurationResponse; - return soap_in__trt__GetMetadataConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetMetadataConfiguration")) - { *type = SOAP_TYPE__trt__GetMetadataConfiguration; - return soap_in__trt__GetMetadataConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoAnalyticsConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse; - return soap_in__trt__GetVideoAnalyticsConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoAnalyticsConfiguration")) - { *type = SOAP_TYPE__trt__GetVideoAnalyticsConfiguration; - return soap_in__trt__GetVideoAnalyticsConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse; - return soap_in__trt__GetAudioEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioEncoderConfiguration")) - { *type = SOAP_TYPE__trt__GetAudioEncoderConfiguration; - return soap_in__trt__GetAudioEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetAudioSourceConfigurationResponse; - return soap_in__trt__GetAudioSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSourceConfiguration")) - { *type = SOAP_TYPE__trt__GetAudioSourceConfiguration; - return soap_in__trt__GetAudioSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse; - return soap_in__trt__GetVideoEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoEncoderConfiguration")) - { *type = SOAP_TYPE__trt__GetVideoEncoderConfiguration; - return soap_in__trt__GetVideoEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__GetVideoSourceConfigurationResponse; - return soap_in__trt__GetVideoSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceConfiguration")) - { *type = SOAP_TYPE__trt__GetVideoSourceConfiguration; - return soap_in__trt__GetVideoSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioDecoderConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse; - return soap_in__trt__GetAudioDecoderConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioDecoderConfigurations")) - { *type = SOAP_TYPE__trt__GetAudioDecoderConfigurations; - return soap_in__trt__GetAudioDecoderConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse; - return soap_in__trt__GetAudioOutputConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputConfigurations")) - { *type = SOAP_TYPE__trt__GetAudioOutputConfigurations; - return soap_in__trt__GetAudioOutputConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetMetadataConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetMetadataConfigurationsResponse; - return soap_in__trt__GetMetadataConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetMetadataConfigurations")) - { *type = SOAP_TYPE__trt__GetMetadataConfigurations; - return soap_in__trt__GetMetadataConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoAnalyticsConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse; - return soap_in__trt__GetVideoAnalyticsConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoAnalyticsConfigurations")) - { *type = SOAP_TYPE__trt__GetVideoAnalyticsConfigurations; - return soap_in__trt__GetVideoAnalyticsConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSourceConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse; - return soap_in__trt__GetAudioSourceConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSourceConfigurations")) - { *type = SOAP_TYPE__trt__GetAudioSourceConfigurations; - return soap_in__trt__GetAudioSourceConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioEncoderConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse; - return soap_in__trt__GetAudioEncoderConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioEncoderConfigurations")) - { *type = SOAP_TYPE__trt__GetAudioEncoderConfigurations; - return soap_in__trt__GetAudioEncoderConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse; - return soap_in__trt__GetVideoSourceConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourceConfigurations")) - { *type = SOAP_TYPE__trt__GetVideoSourceConfigurations; - return soap_in__trt__GetVideoSourceConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoEncoderConfigurationsResponse")) - { *type = SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse; - return soap_in__trt__GetVideoEncoderConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoEncoderConfigurations")) - { *type = SOAP_TYPE__trt__GetVideoEncoderConfigurations; - return soap_in__trt__GetVideoEncoderConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:DeleteProfileResponse")) - { *type = SOAP_TYPE__trt__DeleteProfileResponse; - return soap_in__trt__DeleteProfileResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:DeleteProfile")) - { *type = SOAP_TYPE__trt__DeleteProfile; - return soap_in__trt__DeleteProfile(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioDecoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse; - return soap_in__trt__RemoveAudioDecoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioDecoderConfiguration")) - { *type = SOAP_TYPE__trt__RemoveAudioDecoderConfiguration; - return soap_in__trt__RemoveAudioDecoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioDecoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse; - return soap_in__trt__AddAudioDecoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioDecoderConfiguration")) - { *type = SOAP_TYPE__trt__AddAudioDecoderConfiguration; - return soap_in__trt__AddAudioDecoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioOutputConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse; - return soap_in__trt__RemoveAudioOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioOutputConfiguration")) - { *type = SOAP_TYPE__trt__RemoveAudioOutputConfiguration; - return soap_in__trt__RemoveAudioOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioOutputConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddAudioOutputConfigurationResponse; - return soap_in__trt__AddAudioOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioOutputConfiguration")) - { *type = SOAP_TYPE__trt__AddAudioOutputConfiguration; - return soap_in__trt__AddAudioOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveMetadataConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveMetadataConfigurationResponse; - return soap_in__trt__RemoveMetadataConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveMetadataConfiguration")) - { *type = SOAP_TYPE__trt__RemoveMetadataConfiguration; - return soap_in__trt__RemoveMetadataConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddMetadataConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddMetadataConfigurationResponse; - return soap_in__trt__AddMetadataConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddMetadataConfiguration")) - { *type = SOAP_TYPE__trt__AddMetadataConfiguration; - return soap_in__trt__AddMetadataConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveVideoAnalyticsConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse; - return soap_in__trt__RemoveVideoAnalyticsConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveVideoAnalyticsConfiguration")) - { *type = SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration; - return soap_in__trt__RemoveVideoAnalyticsConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddVideoAnalyticsConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse; - return soap_in__trt__AddVideoAnalyticsConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddVideoAnalyticsConfiguration")) - { *type = SOAP_TYPE__trt__AddVideoAnalyticsConfiguration; - return soap_in__trt__AddVideoAnalyticsConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemovePTZConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemovePTZConfigurationResponse; - return soap_in__trt__RemovePTZConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemovePTZConfiguration")) - { *type = SOAP_TYPE__trt__RemovePTZConfiguration; - return soap_in__trt__RemovePTZConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddPTZConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddPTZConfigurationResponse; - return soap_in__trt__AddPTZConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddPTZConfiguration")) - { *type = SOAP_TYPE__trt__AddPTZConfiguration; - return soap_in__trt__AddPTZConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse; - return soap_in__trt__RemoveAudioSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioSourceConfiguration")) - { *type = SOAP_TYPE__trt__RemoveAudioSourceConfiguration; - return soap_in__trt__RemoveAudioSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddAudioSourceConfigurationResponse; - return soap_in__trt__AddAudioSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioSourceConfiguration")) - { *type = SOAP_TYPE__trt__AddAudioSourceConfiguration; - return soap_in__trt__AddAudioSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse; - return soap_in__trt__RemoveAudioEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveAudioEncoderConfiguration")) - { *type = SOAP_TYPE__trt__RemoveAudioEncoderConfiguration; - return soap_in__trt__RemoveAudioEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse; - return soap_in__trt__AddAudioEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddAudioEncoderConfiguration")) - { *type = SOAP_TYPE__trt__AddAudioEncoderConfiguration; - return soap_in__trt__AddAudioEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveVideoSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse; - return soap_in__trt__RemoveVideoSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveVideoSourceConfiguration")) - { *type = SOAP_TYPE__trt__RemoveVideoSourceConfiguration; - return soap_in__trt__RemoveVideoSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddVideoSourceConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddVideoSourceConfigurationResponse; - return soap_in__trt__AddVideoSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddVideoSourceConfiguration")) - { *type = SOAP_TYPE__trt__AddVideoSourceConfiguration; - return soap_in__trt__AddVideoSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveVideoEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse; - return soap_in__trt__RemoveVideoEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:RemoveVideoEncoderConfiguration")) - { *type = SOAP_TYPE__trt__RemoveVideoEncoderConfiguration; - return soap_in__trt__RemoveVideoEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddVideoEncoderConfigurationResponse")) - { *type = SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse; - return soap_in__trt__AddVideoEncoderConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:AddVideoEncoderConfiguration")) - { *type = SOAP_TYPE__trt__AddVideoEncoderConfiguration; - return soap_in__trt__AddVideoEncoderConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetProfilesResponse")) - { *type = SOAP_TYPE__trt__GetProfilesResponse; - return soap_in__trt__GetProfilesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetProfiles")) - { *type = SOAP_TYPE__trt__GetProfiles; - return soap_in__trt__GetProfiles(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetProfileResponse")) - { *type = SOAP_TYPE__trt__GetProfileResponse; - return soap_in__trt__GetProfileResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetProfile")) - { *type = SOAP_TYPE__trt__GetProfile; - return soap_in__trt__GetProfile(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:CreateProfileResponse")) - { *type = SOAP_TYPE__trt__CreateProfileResponse; - return soap_in__trt__CreateProfileResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:CreateProfile")) - { *type = SOAP_TYPE__trt__CreateProfile; - return soap_in__trt__CreateProfile(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputsResponse")) - { *type = SOAP_TYPE__trt__GetAudioOutputsResponse; - return soap_in__trt__GetAudioOutputsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioOutputs")) - { *type = SOAP_TYPE__trt__GetAudioOutputs; - return soap_in__trt__GetAudioOutputs(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSourcesResponse")) - { *type = SOAP_TYPE__trt__GetAudioSourcesResponse; - return soap_in__trt__GetAudioSourcesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetAudioSources")) - { *type = SOAP_TYPE__trt__GetAudioSources; - return soap_in__trt__GetAudioSources(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSourcesResponse")) - { *type = SOAP_TYPE__trt__GetVideoSourcesResponse; - return soap_in__trt__GetVideoSourcesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetVideoSources")) - { *type = SOAP_TYPE__trt__GetVideoSources; - return soap_in__trt__GetVideoSources(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__trt__GetServiceCapabilitiesResponse; - return soap_in__trt__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "trt:GetServiceCapabilities")) - { *type = SOAP_TYPE__trt__GetServiceCapabilities; - return soap_in__trt__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:SetCurrentPresetResponse")) - { *type = SOAP_TYPE__timg__SetCurrentPresetResponse; - return soap_in__timg__SetCurrentPresetResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:SetCurrentPreset")) - { *type = SOAP_TYPE__timg__SetCurrentPreset; - return soap_in__timg__SetCurrentPreset(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetCurrentPresetResponse")) - { *type = SOAP_TYPE__timg__GetCurrentPresetResponse; - return soap_in__timg__GetCurrentPresetResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetCurrentPreset")) - { *type = SOAP_TYPE__timg__GetCurrentPreset; - return soap_in__timg__GetCurrentPreset(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetPresetsResponse")) - { *type = SOAP_TYPE__timg__GetPresetsResponse; - return soap_in__timg__GetPresetsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetPresets")) - { *type = SOAP_TYPE__timg__GetPresets; - return soap_in__timg__GetPresets(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetStatusResponse")) - { *type = SOAP_TYPE__timg__GetStatusResponse; - return soap_in__timg__GetStatusResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetStatus")) - { *type = SOAP_TYPE__timg__GetStatus; - return soap_in__timg__GetStatus(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:StopResponse")) - { *type = SOAP_TYPE__timg__StopResponse; - return soap_in__timg__StopResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:Stop")) - { *type = SOAP_TYPE__timg__Stop; - return soap_in__timg__Stop(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetMoveOptionsResponse")) - { *type = SOAP_TYPE__timg__GetMoveOptionsResponse; - return soap_in__timg__GetMoveOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetMoveOptions")) - { *type = SOAP_TYPE__timg__GetMoveOptions; - return soap_in__timg__GetMoveOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:MoveResponse")) - { *type = SOAP_TYPE__timg__MoveResponse; - return soap_in__timg__MoveResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:Move")) - { *type = SOAP_TYPE__timg__Move; - return soap_in__timg__Move(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetOptionsResponse")) - { *type = SOAP_TYPE__timg__GetOptionsResponse; - return soap_in__timg__GetOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetOptions")) - { *type = SOAP_TYPE__timg__GetOptions; - return soap_in__timg__GetOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:SetImagingSettingsResponse")) - { *type = SOAP_TYPE__timg__SetImagingSettingsResponse; - return soap_in__timg__SetImagingSettingsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:SetImagingSettings")) - { *type = SOAP_TYPE__timg__SetImagingSettings; - return soap_in__timg__SetImagingSettings(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetImagingSettingsResponse")) - { *type = SOAP_TYPE__timg__GetImagingSettingsResponse; - return soap_in__timg__GetImagingSettingsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetImagingSettings")) - { *type = SOAP_TYPE__timg__GetImagingSettings; - return soap_in__timg__GetImagingSettings(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__timg__GetServiceCapabilitiesResponse; - return soap_in__timg__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "timg:GetServiceCapabilities")) - { *type = SOAP_TYPE__timg__GetServiceCapabilities; - return soap_in__timg__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:DeletePaneConfigurationResponse")) - { *type = SOAP_TYPE__tls__DeletePaneConfigurationResponse; - return soap_in__tls__DeletePaneConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:DeletePaneConfiguration")) - { *type = SOAP_TYPE__tls__DeletePaneConfiguration; - return soap_in__tls__DeletePaneConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:CreatePaneConfigurationResponse")) - { *type = SOAP_TYPE__tls__CreatePaneConfigurationResponse; - return soap_in__tls__CreatePaneConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:CreatePaneConfiguration")) - { *type = SOAP_TYPE__tls__CreatePaneConfiguration; - return soap_in__tls__CreatePaneConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:SetPaneConfigurationResponse")) - { *type = SOAP_TYPE__tls__SetPaneConfigurationResponse; - return soap_in__tls__SetPaneConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:SetPaneConfiguration")) - { *type = SOAP_TYPE__tls__SetPaneConfiguration; - return soap_in__tls__SetPaneConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:SetPaneConfigurationsResponse")) - { *type = SOAP_TYPE__tls__SetPaneConfigurationsResponse; - return soap_in__tls__SetPaneConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:SetPaneConfigurations")) - { *type = SOAP_TYPE__tls__SetPaneConfigurations; - return soap_in__tls__SetPaneConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetPaneConfigurationResponse")) - { *type = SOAP_TYPE__tls__GetPaneConfigurationResponse; - return soap_in__tls__GetPaneConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetPaneConfiguration")) - { *type = SOAP_TYPE__tls__GetPaneConfiguration; - return soap_in__tls__GetPaneConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetPaneConfigurationsResponse")) - { *type = SOAP_TYPE__tls__GetPaneConfigurationsResponse; - return soap_in__tls__GetPaneConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetPaneConfigurations")) - { *type = SOAP_TYPE__tls__GetPaneConfigurations; - return soap_in__tls__GetPaneConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetDisplayOptionsResponse")) - { *type = SOAP_TYPE__tls__GetDisplayOptionsResponse; - return soap_in__tls__GetDisplayOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetDisplayOptions")) - { *type = SOAP_TYPE__tls__GetDisplayOptions; - return soap_in__tls__GetDisplayOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:SetLayoutResponse")) - { *type = SOAP_TYPE__tls__SetLayoutResponse; - return soap_in__tls__SetLayoutResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:SetLayout")) - { *type = SOAP_TYPE__tls__SetLayout; - return soap_in__tls__SetLayout(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetLayoutResponse")) - { *type = SOAP_TYPE__tls__GetLayoutResponse; - return soap_in__tls__GetLayoutResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetLayout")) - { *type = SOAP_TYPE__tls__GetLayout; - return soap_in__tls__GetLayout(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__tls__GetServiceCapabilitiesResponse; - return soap_in__tls__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tls:GetServiceCapabilities")) - { *type = SOAP_TYPE__tls__GetServiceCapabilities; - return soap_in__tls__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteGeoLocationResponse")) - { *type = SOAP_TYPE__tds__DeleteGeoLocationResponse; - return soap_in__tds__DeleteGeoLocationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteGeoLocation")) - { *type = SOAP_TYPE__tds__DeleteGeoLocation; - return soap_in__tds__DeleteGeoLocation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetGeoLocationResponse")) - { *type = SOAP_TYPE__tds__SetGeoLocationResponse; - return soap_in__tds__SetGeoLocationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetGeoLocation")) - { *type = SOAP_TYPE__tds__SetGeoLocation; - return soap_in__tds__SetGeoLocation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetGeoLocationResponse")) - { *type = SOAP_TYPE__tds__GetGeoLocationResponse; - return soap_in__tds__GetGeoLocationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetGeoLocation")) - { *type = SOAP_TYPE__tds__GetGeoLocation; - return soap_in__tds__GetGeoLocation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteStorageConfigurationResponse")) - { *type = SOAP_TYPE__tds__DeleteStorageConfigurationResponse; - return soap_in__tds__DeleteStorageConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteStorageConfiguration")) - { *type = SOAP_TYPE__tds__DeleteStorageConfiguration; - return soap_in__tds__DeleteStorageConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetStorageConfigurationResponse")) - { *type = SOAP_TYPE__tds__SetStorageConfigurationResponse; - return soap_in__tds__SetStorageConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetStorageConfiguration")) - { *type = SOAP_TYPE__tds__SetStorageConfiguration; - return soap_in__tds__SetStorageConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetStorageConfigurationResponse")) - { *type = SOAP_TYPE__tds__GetStorageConfigurationResponse; - return soap_in__tds__GetStorageConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetStorageConfiguration")) - { *type = SOAP_TYPE__tds__GetStorageConfiguration; - return soap_in__tds__GetStorageConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateStorageConfigurationResponse")) - { *type = SOAP_TYPE__tds__CreateStorageConfigurationResponse; - return soap_in__tds__CreateStorageConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateStorageConfiguration")) - { *type = SOAP_TYPE__tds__CreateStorageConfiguration; - return soap_in__tds__CreateStorageConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetStorageConfigurationsResponse")) - { *type = SOAP_TYPE__tds__GetStorageConfigurationsResponse; - return soap_in__tds__GetStorageConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetStorageConfigurations")) - { *type = SOAP_TYPE__tds__GetStorageConfigurations; - return soap_in__tds__GetStorageConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StartSystemRestoreResponse")) - { *type = SOAP_TYPE__tds__StartSystemRestoreResponse; - return soap_in__tds__StartSystemRestoreResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StartSystemRestore")) - { *type = SOAP_TYPE__tds__StartSystemRestore; - return soap_in__tds__StartSystemRestore(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StartFirmwareUpgradeResponse")) - { *type = SOAP_TYPE__tds__StartFirmwareUpgradeResponse; - return soap_in__tds__StartFirmwareUpgradeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:StartFirmwareUpgrade")) - { *type = SOAP_TYPE__tds__StartFirmwareUpgrade; - return soap_in__tds__StartFirmwareUpgrade(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemUrisResponse")) - { *type = SOAP_TYPE__tds__GetSystemUrisResponse; - return soap_in__tds__GetSystemUrisResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemUris")) - { *type = SOAP_TYPE__tds__GetSystemUris; - return soap_in__tds__GetSystemUris(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:ScanAvailableDot11NetworksResponse")) - { *type = SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse; - return soap_in__tds__ScanAvailableDot11NetworksResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:ScanAvailableDot11Networks")) - { *type = SOAP_TYPE__tds__ScanAvailableDot11Networks; - return soap_in__tds__ScanAvailableDot11Networks(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot11StatusResponse")) - { *type = SOAP_TYPE__tds__GetDot11StatusResponse; - return soap_in__tds__GetDot11StatusResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot11Status")) - { *type = SOAP_TYPE__tds__GetDot11Status; - return soap_in__tds__GetDot11Status(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot11CapabilitiesResponse")) - { *type = SOAP_TYPE__tds__GetDot11CapabilitiesResponse; - return soap_in__tds__GetDot11CapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot11Capabilities")) - { *type = SOAP_TYPE__tds__GetDot11Capabilities; - return soap_in__tds__GetDot11Capabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SendAuxiliaryCommandResponse")) - { *type = SOAP_TYPE__tds__SendAuxiliaryCommandResponse; - return soap_in__tds__SendAuxiliaryCommandResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SendAuxiliaryCommand")) - { *type = SOAP_TYPE__tds__SendAuxiliaryCommand; - return soap_in__tds__SendAuxiliaryCommand(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRelayOutputStateResponse")) - { *type = SOAP_TYPE__tds__SetRelayOutputStateResponse; - return soap_in__tds__SetRelayOutputStateResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRelayOutputState")) - { *type = SOAP_TYPE__tds__SetRelayOutputState; - return soap_in__tds__SetRelayOutputState(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRelayOutputSettingsResponse")) - { *type = SOAP_TYPE__tds__SetRelayOutputSettingsResponse; - return soap_in__tds__SetRelayOutputSettingsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRelayOutputSettings")) - { *type = SOAP_TYPE__tds__SetRelayOutputSettings; - return soap_in__tds__SetRelayOutputSettings(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetRelayOutputsResponse")) - { *type = SOAP_TYPE__tds__GetRelayOutputsResponse; - return soap_in__tds__GetRelayOutputsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetRelayOutputs")) - { *type = SOAP_TYPE__tds__GetRelayOutputs; - return soap_in__tds__GetRelayOutputs(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteDot1XConfigurationResponse")) - { *type = SOAP_TYPE__tds__DeleteDot1XConfigurationResponse; - return soap_in__tds__DeleteDot1XConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteDot1XConfiguration")) - { *type = SOAP_TYPE__tds__DeleteDot1XConfiguration; - return soap_in__tds__DeleteDot1XConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot1XConfigurationsResponse")) - { *type = SOAP_TYPE__tds__GetDot1XConfigurationsResponse; - return soap_in__tds__GetDot1XConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot1XConfigurations")) - { *type = SOAP_TYPE__tds__GetDot1XConfigurations; - return soap_in__tds__GetDot1XConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot1XConfigurationResponse")) - { *type = SOAP_TYPE__tds__GetDot1XConfigurationResponse; - return soap_in__tds__GetDot1XConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDot1XConfiguration")) - { *type = SOAP_TYPE__tds__GetDot1XConfiguration; - return soap_in__tds__GetDot1XConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDot1XConfigurationResponse")) - { *type = SOAP_TYPE__tds__SetDot1XConfigurationResponse; - return soap_in__tds__SetDot1XConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDot1XConfiguration")) - { *type = SOAP_TYPE__tds__SetDot1XConfiguration; - return soap_in__tds__SetDot1XConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateDot1XConfigurationResponse")) - { *type = SOAP_TYPE__tds__CreateDot1XConfigurationResponse; - return soap_in__tds__CreateDot1XConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateDot1XConfiguration")) - { *type = SOAP_TYPE__tds__CreateDot1XConfiguration; - return soap_in__tds__CreateDot1XConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:LoadCACertificatesResponse")) - { *type = SOAP_TYPE__tds__LoadCACertificatesResponse; - return soap_in__tds__LoadCACertificatesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:LoadCACertificates")) - { *type = SOAP_TYPE__tds__LoadCACertificates; - return soap_in__tds__LoadCACertificates(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCertificateInformationResponse")) - { *type = SOAP_TYPE__tds__GetCertificateInformationResponse; - return soap_in__tds__GetCertificateInformationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCertificateInformation")) - { *type = SOAP_TYPE__tds__GetCertificateInformation; - return soap_in__tds__GetCertificateInformation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:LoadCertificateWithPrivateKeyResponse")) - { *type = SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse; - return soap_in__tds__LoadCertificateWithPrivateKeyResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:LoadCertificateWithPrivateKey")) - { *type = SOAP_TYPE__tds__LoadCertificateWithPrivateKey; - return soap_in__tds__LoadCertificateWithPrivateKey(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCACertificatesResponse")) - { *type = SOAP_TYPE__tds__GetCACertificatesResponse; - return soap_in__tds__GetCACertificatesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCACertificates")) - { *type = SOAP_TYPE__tds__GetCACertificates; - return soap_in__tds__GetCACertificates(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetClientCertificateModeResponse")) - { *type = SOAP_TYPE__tds__SetClientCertificateModeResponse; - return soap_in__tds__SetClientCertificateModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetClientCertificateMode")) - { *type = SOAP_TYPE__tds__SetClientCertificateMode; - return soap_in__tds__SetClientCertificateMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetClientCertificateModeResponse")) - { *type = SOAP_TYPE__tds__GetClientCertificateModeResponse; - return soap_in__tds__GetClientCertificateModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetClientCertificateMode")) - { *type = SOAP_TYPE__tds__GetClientCertificateMode; - return soap_in__tds__GetClientCertificateMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:LoadCertificatesResponse")) - { *type = SOAP_TYPE__tds__LoadCertificatesResponse; - return soap_in__tds__LoadCertificatesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:LoadCertificates")) - { *type = SOAP_TYPE__tds__LoadCertificates; - return soap_in__tds__LoadCertificates(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetPkcs10RequestResponse")) - { *type = SOAP_TYPE__tds__GetPkcs10RequestResponse; - return soap_in__tds__GetPkcs10RequestResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetPkcs10Request")) - { *type = SOAP_TYPE__tds__GetPkcs10Request; - return soap_in__tds__GetPkcs10Request(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteCertificatesResponse")) - { *type = SOAP_TYPE__tds__DeleteCertificatesResponse; - return soap_in__tds__DeleteCertificatesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteCertificates")) - { *type = SOAP_TYPE__tds__DeleteCertificates; - return soap_in__tds__DeleteCertificates(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetCertificatesStatusResponse")) - { *type = SOAP_TYPE__tds__SetCertificatesStatusResponse; - return soap_in__tds__SetCertificatesStatusResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetCertificatesStatus")) - { *type = SOAP_TYPE__tds__SetCertificatesStatus; - return soap_in__tds__SetCertificatesStatus(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCertificatesStatusResponse")) - { *type = SOAP_TYPE__tds__GetCertificatesStatusResponse; - return soap_in__tds__GetCertificatesStatusResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCertificatesStatus")) - { *type = SOAP_TYPE__tds__GetCertificatesStatus; - return soap_in__tds__GetCertificatesStatus(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCertificatesResponse")) - { *type = SOAP_TYPE__tds__GetCertificatesResponse; - return soap_in__tds__GetCertificatesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCertificates")) - { *type = SOAP_TYPE__tds__GetCertificates; - return soap_in__tds__GetCertificates(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateCertificateResponse")) - { *type = SOAP_TYPE__tds__CreateCertificateResponse; - return soap_in__tds__CreateCertificateResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateCertificate")) - { *type = SOAP_TYPE__tds__CreateCertificate; - return soap_in__tds__CreateCertificate(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetAccessPolicyResponse")) - { *type = SOAP_TYPE__tds__SetAccessPolicyResponse; - return soap_in__tds__SetAccessPolicyResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetAccessPolicy")) - { *type = SOAP_TYPE__tds__SetAccessPolicy; - return soap_in__tds__SetAccessPolicy(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetAccessPolicyResponse")) - { *type = SOAP_TYPE__tds__GetAccessPolicyResponse; - return soap_in__tds__GetAccessPolicyResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetAccessPolicy")) - { *type = SOAP_TYPE__tds__GetAccessPolicy; - return soap_in__tds__GetAccessPolicy(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:RemoveIPAddressFilterResponse")) - { *type = SOAP_TYPE__tds__RemoveIPAddressFilterResponse; - return soap_in__tds__RemoveIPAddressFilterResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:RemoveIPAddressFilter")) - { *type = SOAP_TYPE__tds__RemoveIPAddressFilter; - return soap_in__tds__RemoveIPAddressFilter(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:AddIPAddressFilterResponse")) - { *type = SOAP_TYPE__tds__AddIPAddressFilterResponse; - return soap_in__tds__AddIPAddressFilterResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:AddIPAddressFilter")) - { *type = SOAP_TYPE__tds__AddIPAddressFilter; - return soap_in__tds__AddIPAddressFilter(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetIPAddressFilterResponse")) - { *type = SOAP_TYPE__tds__SetIPAddressFilterResponse; - return soap_in__tds__SetIPAddressFilterResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetIPAddressFilter")) - { *type = SOAP_TYPE__tds__SetIPAddressFilter; - return soap_in__tds__SetIPAddressFilter(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetIPAddressFilterResponse")) - { *type = SOAP_TYPE__tds__GetIPAddressFilterResponse; - return soap_in__tds__GetIPAddressFilterResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetIPAddressFilter")) - { *type = SOAP_TYPE__tds__GetIPAddressFilter; - return soap_in__tds__GetIPAddressFilter(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetZeroConfigurationResponse")) - { *type = SOAP_TYPE__tds__SetZeroConfigurationResponse; - return soap_in__tds__SetZeroConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetZeroConfiguration")) - { *type = SOAP_TYPE__tds__SetZeroConfiguration; - return soap_in__tds__SetZeroConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetZeroConfigurationResponse")) - { *type = SOAP_TYPE__tds__GetZeroConfigurationResponse; - return soap_in__tds__GetZeroConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetZeroConfiguration")) - { *type = SOAP_TYPE__tds__GetZeroConfiguration; - return soap_in__tds__GetZeroConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNetworkDefaultGatewayResponse")) - { *type = SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse; - return soap_in__tds__SetNetworkDefaultGatewayResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNetworkDefaultGateway")) - { *type = SOAP_TYPE__tds__SetNetworkDefaultGateway; - return soap_in__tds__SetNetworkDefaultGateway(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNetworkDefaultGatewayResponse")) - { *type = SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse; - return soap_in__tds__GetNetworkDefaultGatewayResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNetworkDefaultGateway")) - { *type = SOAP_TYPE__tds__GetNetworkDefaultGateway; - return soap_in__tds__GetNetworkDefaultGateway(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNetworkProtocolsResponse")) - { *type = SOAP_TYPE__tds__SetNetworkProtocolsResponse; - return soap_in__tds__SetNetworkProtocolsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNetworkProtocols")) - { *type = SOAP_TYPE__tds__SetNetworkProtocols; - return soap_in__tds__SetNetworkProtocols(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNetworkProtocolsResponse")) - { *type = SOAP_TYPE__tds__GetNetworkProtocolsResponse; - return soap_in__tds__GetNetworkProtocolsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNetworkProtocols")) - { *type = SOAP_TYPE__tds__GetNetworkProtocols; - return soap_in__tds__GetNetworkProtocols(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNetworkInterfacesResponse")) - { *type = SOAP_TYPE__tds__SetNetworkInterfacesResponse; - return soap_in__tds__SetNetworkInterfacesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNetworkInterfaces")) - { *type = SOAP_TYPE__tds__SetNetworkInterfaces; - return soap_in__tds__SetNetworkInterfaces(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNetworkInterfacesResponse")) - { *type = SOAP_TYPE__tds__GetNetworkInterfacesResponse; - return soap_in__tds__GetNetworkInterfacesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNetworkInterfaces")) - { *type = SOAP_TYPE__tds__GetNetworkInterfaces; - return soap_in__tds__GetNetworkInterfaces(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDynamicDNSResponse")) - { *type = SOAP_TYPE__tds__SetDynamicDNSResponse; - return soap_in__tds__SetDynamicDNSResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDynamicDNS")) - { *type = SOAP_TYPE__tds__SetDynamicDNS; - return soap_in__tds__SetDynamicDNS(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDynamicDNSResponse")) - { *type = SOAP_TYPE__tds__GetDynamicDNSResponse; - return soap_in__tds__GetDynamicDNSResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDynamicDNS")) - { *type = SOAP_TYPE__tds__GetDynamicDNS; - return soap_in__tds__GetDynamicDNS(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNTPResponse")) - { *type = SOAP_TYPE__tds__SetNTPResponse; - return soap_in__tds__SetNTPResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetNTP")) - { *type = SOAP_TYPE__tds__SetNTP; - return soap_in__tds__SetNTP(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNTPResponse")) - { *type = SOAP_TYPE__tds__GetNTPResponse; - return soap_in__tds__GetNTPResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetNTP")) - { *type = SOAP_TYPE__tds__GetNTP; - return soap_in__tds__GetNTP(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDNSResponse")) - { *type = SOAP_TYPE__tds__SetDNSResponse; - return soap_in__tds__SetDNSResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDNS")) - { *type = SOAP_TYPE__tds__SetDNS; - return soap_in__tds__SetDNS(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDNSResponse")) - { *type = SOAP_TYPE__tds__GetDNSResponse; - return soap_in__tds__GetDNSResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDNS")) - { *type = SOAP_TYPE__tds__GetDNS; - return soap_in__tds__GetDNS(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetHostnameFromDHCPResponse")) - { *type = SOAP_TYPE__tds__SetHostnameFromDHCPResponse; - return soap_in__tds__SetHostnameFromDHCPResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetHostnameFromDHCP")) - { *type = SOAP_TYPE__tds__SetHostnameFromDHCP; - return soap_in__tds__SetHostnameFromDHCP(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetHostnameResponse")) - { *type = SOAP_TYPE__tds__SetHostnameResponse; - return soap_in__tds__SetHostnameResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetHostname")) - { *type = SOAP_TYPE__tds__SetHostname; - return soap_in__tds__SetHostname(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetHostnameResponse")) - { *type = SOAP_TYPE__tds__GetHostnameResponse; - return soap_in__tds__GetHostnameResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetHostname")) - { *type = SOAP_TYPE__tds__GetHostname; - return soap_in__tds__GetHostname(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCapabilitiesResponse")) - { *type = SOAP_TYPE__tds__GetCapabilitiesResponse; - return soap_in__tds__GetCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetCapabilities")) - { *type = SOAP_TYPE__tds__GetCapabilities; - return soap_in__tds__GetCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetWsdlUrlResponse")) - { *type = SOAP_TYPE__tds__GetWsdlUrlResponse; - return soap_in__tds__GetWsdlUrlResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetWsdlUrl")) - { *type = SOAP_TYPE__tds__GetWsdlUrl; - return soap_in__tds__GetWsdlUrl(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetUserResponse")) - { *type = SOAP_TYPE__tds__SetUserResponse; - return soap_in__tds__SetUserResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetUser")) - { *type = SOAP_TYPE__tds__SetUser; - return soap_in__tds__SetUser(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteUsersResponse")) - { *type = SOAP_TYPE__tds__DeleteUsersResponse; - return soap_in__tds__DeleteUsersResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:DeleteUsers")) - { *type = SOAP_TYPE__tds__DeleteUsers; - return soap_in__tds__DeleteUsers(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateUsersResponse")) - { *type = SOAP_TYPE__tds__CreateUsersResponse; - return soap_in__tds__CreateUsersResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:CreateUsers")) - { *type = SOAP_TYPE__tds__CreateUsers; - return soap_in__tds__CreateUsers(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetUsersResponse")) - { *type = SOAP_TYPE__tds__GetUsersResponse; - return soap_in__tds__GetUsersResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetUsers")) - { *type = SOAP_TYPE__tds__GetUsers; - return soap_in__tds__GetUsers(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRemoteUserResponse")) - { *type = SOAP_TYPE__tds__SetRemoteUserResponse; - return soap_in__tds__SetRemoteUserResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRemoteUser")) - { *type = SOAP_TYPE__tds__SetRemoteUser; - return soap_in__tds__SetRemoteUser(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetRemoteUserResponse")) - { *type = SOAP_TYPE__tds__GetRemoteUserResponse; - return soap_in__tds__GetRemoteUserResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetRemoteUser")) - { *type = SOAP_TYPE__tds__GetRemoteUser; - return soap_in__tds__GetRemoteUser(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetEndpointReferenceResponse")) - { *type = SOAP_TYPE__tds__GetEndpointReferenceResponse; - return soap_in__tds__GetEndpointReferenceResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetEndpointReference")) - { *type = SOAP_TYPE__tds__GetEndpointReference; - return soap_in__tds__GetEndpointReference(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDPAddressesResponse")) - { *type = SOAP_TYPE__tds__SetDPAddressesResponse; - return soap_in__tds__SetDPAddressesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDPAddresses")) - { *type = SOAP_TYPE__tds__SetDPAddresses; - return soap_in__tds__SetDPAddresses(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDPAddressesResponse")) - { *type = SOAP_TYPE__tds__GetDPAddressesResponse; - return soap_in__tds__GetDPAddressesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDPAddresses")) - { *type = SOAP_TYPE__tds__GetDPAddresses; - return soap_in__tds__GetDPAddresses(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRemoteDiscoveryModeResponse")) - { *type = SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse; - return soap_in__tds__SetRemoteDiscoveryModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetRemoteDiscoveryMode")) - { *type = SOAP_TYPE__tds__SetRemoteDiscoveryMode; - return soap_in__tds__SetRemoteDiscoveryMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetRemoteDiscoveryModeResponse")) - { *type = SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse; - return soap_in__tds__GetRemoteDiscoveryModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetRemoteDiscoveryMode")) - { *type = SOAP_TYPE__tds__GetRemoteDiscoveryMode; - return soap_in__tds__GetRemoteDiscoveryMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDiscoveryModeResponse")) - { *type = SOAP_TYPE__tds__SetDiscoveryModeResponse; - return soap_in__tds__SetDiscoveryModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetDiscoveryMode")) - { *type = SOAP_TYPE__tds__SetDiscoveryMode; - return soap_in__tds__SetDiscoveryMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDiscoveryModeResponse")) - { *type = SOAP_TYPE__tds__GetDiscoveryModeResponse; - return soap_in__tds__GetDiscoveryModeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDiscoveryMode")) - { *type = SOAP_TYPE__tds__GetDiscoveryMode; - return soap_in__tds__GetDiscoveryMode(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:RemoveScopesResponse")) - { *type = SOAP_TYPE__tds__RemoveScopesResponse; - return soap_in__tds__RemoveScopesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:RemoveScopes")) - { *type = SOAP_TYPE__tds__RemoveScopes; - return soap_in__tds__RemoveScopes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:AddScopesResponse")) - { *type = SOAP_TYPE__tds__AddScopesResponse; - return soap_in__tds__AddScopesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:AddScopes")) - { *type = SOAP_TYPE__tds__AddScopes; - return soap_in__tds__AddScopes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetScopesResponse")) - { *type = SOAP_TYPE__tds__SetScopesResponse; - return soap_in__tds__SetScopesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetScopes")) - { *type = SOAP_TYPE__tds__SetScopes; - return soap_in__tds__SetScopes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetScopesResponse")) - { *type = SOAP_TYPE__tds__GetScopesResponse; - return soap_in__tds__GetScopesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetScopes")) - { *type = SOAP_TYPE__tds__GetScopes; - return soap_in__tds__GetScopes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemLogResponse")) - { *type = SOAP_TYPE__tds__GetSystemLogResponse; - return soap_in__tds__GetSystemLogResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemLog")) - { *type = SOAP_TYPE__tds__GetSystemLog; - return soap_in__tds__GetSystemLog(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemSupportInformationResponse")) - { *type = SOAP_TYPE__tds__GetSystemSupportInformationResponse; - return soap_in__tds__GetSystemSupportInformationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemSupportInformation")) - { *type = SOAP_TYPE__tds__GetSystemSupportInformation; - return soap_in__tds__GetSystemSupportInformation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemBackupResponse")) - { *type = SOAP_TYPE__tds__GetSystemBackupResponse; - return soap_in__tds__GetSystemBackupResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemBackup")) - { *type = SOAP_TYPE__tds__GetSystemBackup; - return soap_in__tds__GetSystemBackup(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:RestoreSystemResponse")) - { *type = SOAP_TYPE__tds__RestoreSystemResponse; - return soap_in__tds__RestoreSystemResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:RestoreSystem")) - { *type = SOAP_TYPE__tds__RestoreSystem; - return soap_in__tds__RestoreSystem(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SystemRebootResponse")) - { *type = SOAP_TYPE__tds__SystemRebootResponse; - return soap_in__tds__SystemRebootResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SystemReboot")) - { *type = SOAP_TYPE__tds__SystemReboot; - return soap_in__tds__SystemReboot(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:UpgradeSystemFirmwareResponse")) - { *type = SOAP_TYPE__tds__UpgradeSystemFirmwareResponse; - return soap_in__tds__UpgradeSystemFirmwareResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:UpgradeSystemFirmware")) - { *type = SOAP_TYPE__tds__UpgradeSystemFirmware; - return soap_in__tds__UpgradeSystemFirmware(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetSystemFactoryDefaultResponse")) - { *type = SOAP_TYPE__tds__SetSystemFactoryDefaultResponse; - return soap_in__tds__SetSystemFactoryDefaultResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetSystemFactoryDefault")) - { *type = SOAP_TYPE__tds__SetSystemFactoryDefault; - return soap_in__tds__SetSystemFactoryDefault(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemDateAndTimeResponse")) - { *type = SOAP_TYPE__tds__GetSystemDateAndTimeResponse; - return soap_in__tds__GetSystemDateAndTimeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetSystemDateAndTime")) - { *type = SOAP_TYPE__tds__GetSystemDateAndTime; - return soap_in__tds__GetSystemDateAndTime(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetSystemDateAndTimeResponse")) - { *type = SOAP_TYPE__tds__SetSystemDateAndTimeResponse; - return soap_in__tds__SetSystemDateAndTimeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:SetSystemDateAndTime")) - { *type = SOAP_TYPE__tds__SetSystemDateAndTime; - return soap_in__tds__SetSystemDateAndTime(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDeviceInformationResponse")) - { *type = SOAP_TYPE__tds__GetDeviceInformationResponse; - return soap_in__tds__GetDeviceInformationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetDeviceInformation")) - { *type = SOAP_TYPE__tds__GetDeviceInformation; - return soap_in__tds__GetDeviceInformation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__tds__GetServiceCapabilitiesResponse; - return soap_in__tds__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetServiceCapabilities")) - { *type = SOAP_TYPE__tds__GetServiceCapabilities; - return soap_in__tds__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetServicesResponse")) - { *type = SOAP_TYPE__tds__GetServicesResponse; - return soap_in__tds__GetServicesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tds:GetServices")) - { *type = SOAP_TYPE__tds__GetServices; - return soap_in__tds__GetServices(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SendReceiveSerialCommandResponse")) - { *type = SOAP_TYPE__tmd__SendReceiveSerialCommandResponse; - return soap_in__tmd__SendReceiveSerialCommandResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SendReceiveSerialCommand")) - { *type = SOAP_TYPE__tmd__SendReceiveSerialCommand; - return soap_in__tmd__SendReceiveSerialCommand(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetSerialPortConfigurationOptionsResponse")) - { *type = SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse; - return soap_in__tmd__GetSerialPortConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetSerialPortConfigurationOptions")) - { *type = SOAP_TYPE__tmd__GetSerialPortConfigurationOptions; - return soap_in__tmd__GetSerialPortConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetSerialPortConfigurationResponse")) - { *type = SOAP_TYPE__tmd__SetSerialPortConfigurationResponse; - return soap_in__tmd__SetSerialPortConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetSerialPortConfiguration")) - { *type = SOAP_TYPE__tmd__SetSerialPortConfiguration; - return soap_in__tmd__SetSerialPortConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetSerialPortConfigurationResponse")) - { *type = SOAP_TYPE__tmd__GetSerialPortConfigurationResponse; - return soap_in__tmd__GetSerialPortConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetSerialPortConfiguration")) - { *type = SOAP_TYPE__tmd__GetSerialPortConfiguration; - return soap_in__tmd__GetSerialPortConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetSerialPortsResponse")) - { *type = SOAP_TYPE__tmd__GetSerialPortsResponse; - return soap_in__tmd__GetSerialPortsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetSerialPorts")) - { *type = SOAP_TYPE__tmd__GetSerialPorts; - return soap_in__tmd__GetSerialPorts(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetDigitalInputConfigurationsResponse")) - { *type = SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse; - return soap_in__tmd__SetDigitalInputConfigurationsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetDigitalInputConfigurations")) - { *type = SOAP_TYPE__tmd__SetDigitalInputConfigurations; - return soap_in__tmd__SetDigitalInputConfigurations(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetDigitalInputConfigurationOptionsResponse")) - { *type = SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse; - return soap_in__tmd__GetDigitalInputConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetDigitalInputConfigurationOptions")) - { *type = SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions; - return soap_in__tmd__GetDigitalInputConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetDigitalInputsResponse")) - { *type = SOAP_TYPE__tmd__GetDigitalInputsResponse; - return soap_in__tmd__GetDigitalInputsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetDigitalInputs")) - { *type = SOAP_TYPE__tmd__GetDigitalInputs; - return soap_in__tmd__GetDigitalInputs(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetRelayOutputSettingsResponse")) - { *type = SOAP_TYPE__tmd__SetRelayOutputSettingsResponse; - return soap_in__tmd__SetRelayOutputSettingsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetRelayOutputSettings")) - { *type = SOAP_TYPE__tmd__SetRelayOutputSettings; - return soap_in__tmd__SetRelayOutputSettings(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioOutputConfigurationOptionsResponse")) - { *type = SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse; - return soap_in__tmd__GetAudioOutputConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioOutputConfigurationOptions")) - { *type = SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions; - return soap_in__tmd__GetAudioOutputConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioSourceConfigurationOptionsResponse")) - { *type = SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse; - return soap_in__tmd__GetAudioSourceConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioSourceConfigurationOptions")) - { *type = SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions; - return soap_in__tmd__GetAudioSourceConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoOutputConfigurationOptionsResponse")) - { *type = SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse; - return soap_in__tmd__GetVideoOutputConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoOutputConfigurationOptions")) - { *type = SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions; - return soap_in__tmd__GetVideoOutputConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoSourceConfigurationOptionsResponse")) - { *type = SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse; - return soap_in__tmd__GetVideoSourceConfigurationOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoSourceConfigurationOptions")) - { *type = SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions; - return soap_in__tmd__GetVideoSourceConfigurationOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetVideoOutputConfigurationResponse")) - { *type = SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse; - return soap_in__tmd__SetVideoOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetVideoOutputConfiguration")) - { *type = SOAP_TYPE__tmd__SetVideoOutputConfiguration; - return soap_in__tmd__SetVideoOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetVideoSourceConfigurationResponse")) - { *type = SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse; - return soap_in__tmd__SetVideoSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetVideoSourceConfiguration")) - { *type = SOAP_TYPE__tmd__SetVideoSourceConfiguration; - return soap_in__tmd__SetVideoSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetAudioOutputConfigurationResponse")) - { *type = SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse; - return soap_in__tmd__SetAudioOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetAudioOutputConfiguration")) - { *type = SOAP_TYPE__tmd__SetAudioOutputConfiguration; - return soap_in__tmd__SetAudioOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetAudioSourceConfigurationResponse")) - { *type = SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse; - return soap_in__tmd__SetAudioSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:SetAudioSourceConfiguration")) - { *type = SOAP_TYPE__tmd__SetAudioSourceConfiguration; - return soap_in__tmd__SetAudioSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoOutputConfigurationResponse")) - { *type = SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse; - return soap_in__tmd__GetVideoOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoOutputConfiguration")) - { *type = SOAP_TYPE__tmd__GetVideoOutputConfiguration; - return soap_in__tmd__GetVideoOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoSourceConfigurationResponse")) - { *type = SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse; - return soap_in__tmd__GetVideoSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoSourceConfiguration")) - { *type = SOAP_TYPE__tmd__GetVideoSourceConfiguration; - return soap_in__tmd__GetVideoSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioOutputConfigurationResponse")) - { *type = SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse; - return soap_in__tmd__GetAudioOutputConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioOutputConfiguration")) - { *type = SOAP_TYPE__tmd__GetAudioOutputConfiguration; - return soap_in__tmd__GetAudioOutputConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioSourceConfigurationResponse")) - { *type = SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse; - return soap_in__tmd__GetAudioSourceConfigurationResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetAudioSourceConfiguration")) - { *type = SOAP_TYPE__tmd__GetAudioSourceConfiguration; - return soap_in__tmd__GetAudioSourceConfiguration(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoOutputsResponse")) - { *type = SOAP_TYPE__tmd__GetVideoOutputsResponse; - return soap_in__tmd__GetVideoOutputsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetVideoOutputs")) - { *type = SOAP_TYPE__tmd__GetVideoOutputs; - return soap_in__tmd__GetVideoOutputs(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetRelayOutputOptionsResponse")) - { *type = SOAP_TYPE__tmd__GetRelayOutputOptionsResponse; - return soap_in__tmd__GetRelayOutputOptionsResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetRelayOutputOptions")) - { *type = SOAP_TYPE__tmd__GetRelayOutputOptions; - return soap_in__tmd__GetRelayOutputOptions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__tmd__GetServiceCapabilitiesResponse; - return soap_in__tmd__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tmd:GetServiceCapabilities")) - { *type = SOAP_TYPE__tmd__GetServiceCapabilities; - return soap_in__tmd__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:Message")) - { *type = SOAP_TYPE__tt__Message; - return soap_in__tt__Message(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tt:StringItems")) - { *type = SOAP_TYPE__tt__StringItems; - return soap_in__tt__StringItems(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:GetEventPropertiesResponse")) - { *type = SOAP_TYPE__tev__GetEventPropertiesResponse; - return soap_in__tev__GetEventPropertiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:GetEventProperties")) - { *type = SOAP_TYPE__tev__GetEventProperties; - return soap_in__tev__GetEventProperties(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:SetSynchronizationPointResponse")) - { *type = SOAP_TYPE__tev__SetSynchronizationPointResponse; - return soap_in__tev__SetSynchronizationPointResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:SetSynchronizationPoint")) - { *type = SOAP_TYPE__tev__SetSynchronizationPoint; - return soap_in__tev__SetSynchronizationPoint(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:SeekResponse")) - { *type = SOAP_TYPE__tev__SeekResponse; - return soap_in__tev__SeekResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:Seek")) - { *type = SOAP_TYPE__tev__Seek; - return soap_in__tev__Seek(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:PullMessagesFaultResponse")) - { *type = SOAP_TYPE__tev__PullMessagesFaultResponse; - return soap_in__tev__PullMessagesFaultResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:PullMessagesResponse")) - { *type = SOAP_TYPE__tev__PullMessagesResponse; - return soap_in__tev__PullMessagesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:PullMessages")) - { *type = SOAP_TYPE__tev__PullMessages; - return soap_in__tev__PullMessages(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:CreatePullPointSubscriptionResponse")) - { *type = SOAP_TYPE__tev__CreatePullPointSubscriptionResponse; - return soap_in__tev__CreatePullPointSubscriptionResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:CreatePullPointSubscription")) - { *type = SOAP_TYPE__tev__CreatePullPointSubscription; - return soap_in__tev__CreatePullPointSubscription(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:GetServiceCapabilitiesResponse")) - { *type = SOAP_TYPE__tev__GetServiceCapabilitiesResponse; - return soap_in__tev__GetServiceCapabilitiesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "tev:GetServiceCapabilities")) - { *type = SOAP_TYPE__tev__GetServiceCapabilities; - return soap_in__tev__GetServiceCapabilities(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:ResumeSubscriptionResponse")) - { *type = SOAP_TYPE__wsnt__ResumeSubscriptionResponse; - return soap_in__wsnt__ResumeSubscriptionResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:ResumeSubscription")) - { *type = SOAP_TYPE__wsnt__ResumeSubscription; - return soap_in__wsnt__ResumeSubscription(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:PauseSubscriptionResponse")) - { *type = SOAP_TYPE__wsnt__PauseSubscriptionResponse; - return soap_in__wsnt__PauseSubscriptionResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:PauseSubscription")) - { *type = SOAP_TYPE__wsnt__PauseSubscription; - return soap_in__wsnt__PauseSubscription(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UnsubscribeResponse")) - { *type = SOAP_TYPE__wsnt__UnsubscribeResponse; - return soap_in__wsnt__UnsubscribeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:Unsubscribe")) - { *type = SOAP_TYPE__wsnt__Unsubscribe; - return soap_in__wsnt__Unsubscribe(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:RenewResponse")) - { *type = SOAP_TYPE__wsnt__RenewResponse; - return soap_in__wsnt__RenewResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:Renew")) - { *type = SOAP_TYPE__wsnt__Renew; - return soap_in__wsnt__Renew(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:CreatePullPointResponse")) - { *type = SOAP_TYPE__wsnt__CreatePullPointResponse; - return soap_in__wsnt__CreatePullPointResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:CreatePullPoint")) - { *type = SOAP_TYPE__wsnt__CreatePullPoint; - return soap_in__wsnt__CreatePullPoint(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:DestroyPullPointResponse")) - { *type = SOAP_TYPE__wsnt__DestroyPullPointResponse; - return soap_in__wsnt__DestroyPullPointResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:DestroyPullPoint")) - { *type = SOAP_TYPE__wsnt__DestroyPullPoint; - return soap_in__wsnt__DestroyPullPoint(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:GetMessagesResponse")) - { *type = SOAP_TYPE__wsnt__GetMessagesResponse; - return soap_in__wsnt__GetMessagesResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:GetMessages")) - { *type = SOAP_TYPE__wsnt__GetMessages; - return soap_in__wsnt__GetMessages(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:GetCurrentMessageResponse")) - { *type = SOAP_TYPE__wsnt__GetCurrentMessageResponse; - return soap_in__wsnt__GetCurrentMessageResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:GetCurrentMessage")) - { *type = SOAP_TYPE__wsnt__GetCurrentMessage; - return soap_in__wsnt__GetCurrentMessage(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:SubscribeResponse")) - { *type = SOAP_TYPE__wsnt__SubscribeResponse; - return soap_in__wsnt__SubscribeResponse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:Subscribe")) - { *type = SOAP_TYPE__wsnt__Subscribe; - return soap_in__wsnt__Subscribe(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:UseRaw")) - { *type = SOAP_TYPE__wsnt__UseRaw; - return soap_in__wsnt__UseRaw(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:Notify")) - { *type = SOAP_TYPE__wsnt__Notify; - return soap_in__wsnt__Notify(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:SubscriptionManagerRP")) - { *type = SOAP_TYPE__wsnt__SubscriptionManagerRP; - return soap_in__wsnt__SubscriptionManagerRP(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsnt:NotificationProducerRP")) - { *type = SOAP_TYPE__wsnt__NotificationProducerRP; - return soap_in__wsnt__NotificationProducerRP(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xml:lang")) - { *type = SOAP_TYPE__xml__lang; - return soap_in__xml__lang(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xmime:contentType")) - { *type = SOAP_TYPE__xmime__contentType; - return soap_in__xmime__contentType(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:ProblemAction")) - { *type = SOAP_TYPE__wsa5__ProblemAction; - return soap_in__wsa5__ProblemAction(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:FaultTo")) - { *type = SOAP_TYPE__wsa5__FaultTo; - return soap_in__wsa5__FaultTo(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:From")) - { *type = SOAP_TYPE__wsa5__From; - return soap_in__wsa5__From(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:ReplyTo")) - { *type = SOAP_TYPE__wsa5__ReplyTo; - return soap_in__wsa5__ReplyTo(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:RelatesTo")) - { *type = SOAP_TYPE__wsa5__RelatesTo; - return soap_in__wsa5__RelatesTo(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:Metadata")) - { *type = SOAP_TYPE__wsa5__Metadata; - return soap_in__wsa5__Metadata(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:ReferenceParameters")) - { *type = SOAP_TYPE__wsa5__ReferenceParameters; - return soap_in__wsa5__ReferenceParameters(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:EndpointReference")) - { *type = SOAP_TYPE__wsa5__EndpointReference; - return soap_in__wsa5__EndpointReference(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:Security")) - { *type = SOAP_TYPE__wsse__Security; - return soap_in__wsse__Security(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:EncryptedAttribute")) - { *type = SOAP_TYPE__saml2__EncryptedAttribute; - return soap_in__saml2__EncryptedAttribute(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Attribute")) - { *type = SOAP_TYPE__saml2__Attribute; - return soap_in__saml2__Attribute(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AttributeStatement")) - { *type = SOAP_TYPE__saml2__AttributeStatement; - return soap_in__saml2__AttributeStatement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Evidence")) - { *type = SOAP_TYPE__saml2__Evidence; - return soap_in__saml2__Evidence(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Action")) - { *type = SOAP_TYPE__saml2__Action; - return soap_in__saml2__Action(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AuthzDecisionStatement")) - { *type = SOAP_TYPE__saml2__AuthzDecisionStatement; - return soap_in__saml2__AuthzDecisionStatement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AuthnContext")) - { *type = SOAP_TYPE__saml2__AuthnContext; - return soap_in__saml2__AuthnContext(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:SubjectLocality")) - { *type = SOAP_TYPE__saml2__SubjectLocality; - return soap_in__saml2__SubjectLocality(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AuthnStatement")) - { *type = SOAP_TYPE__saml2__AuthnStatement; - return soap_in__saml2__AuthnStatement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Statement")) - { *type = SOAP_TYPE__saml2__Statement; - return soap_in__saml2__Statement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:EncryptedAssertion")) - { *type = SOAP_TYPE__saml2__EncryptedAssertion; - return soap_in__saml2__EncryptedAssertion(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Advice")) - { *type = SOAP_TYPE__saml2__Advice; - return soap_in__saml2__Advice(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:ProxyRestriction")) - { *type = SOAP_TYPE__saml2__ProxyRestriction; - return soap_in__saml2__ProxyRestriction(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:OneTimeUse")) - { *type = SOAP_TYPE__saml2__OneTimeUse; - return soap_in__saml2__OneTimeUse(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:AudienceRestriction")) - { *type = SOAP_TYPE__saml2__AudienceRestriction; - return soap_in__saml2__AudienceRestriction(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Condition")) - { *type = SOAP_TYPE__saml2__Condition; - return soap_in__saml2__Condition(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Conditions")) - { *type = SOAP_TYPE__saml2__Conditions; - return soap_in__saml2__Conditions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:SubjectConfirmationData")) - { *type = SOAP_TYPE__saml2__SubjectConfirmationData; - return soap_in__saml2__SubjectConfirmationData(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:SubjectConfirmation")) - { *type = SOAP_TYPE__saml2__SubjectConfirmation; - return soap_in__saml2__SubjectConfirmation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Subject")) - { *type = SOAP_TYPE__saml2__Subject; - return soap_in__saml2__Subject(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Assertion")) - { *type = SOAP_TYPE__saml2__Assertion; - return soap_in__saml2__Assertion(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:Issuer")) - { *type = SOAP_TYPE__saml2__Issuer; - return soap_in__saml2__Issuer(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:EncryptedID")) - { *type = SOAP_TYPE__saml2__EncryptedID; - return soap_in__saml2__EncryptedID(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:NameID")) - { *type = SOAP_TYPE__saml2__NameID; - return soap_in__saml2__NameID(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml2:BaseID")) - { *type = SOAP_TYPE__saml2__BaseID; - return soap_in__saml2__BaseID(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Attribute")) - { *type = SOAP_TYPE__saml1__Attribute; - return soap_in__saml1__Attribute(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AttributeDesignator")) - { *type = SOAP_TYPE__saml1__AttributeDesignator; - return soap_in__saml1__AttributeDesignator(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AttributeStatement")) - { *type = SOAP_TYPE__saml1__AttributeStatement; - return soap_in__saml1__AttributeStatement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Evidence")) - { *type = SOAP_TYPE__saml1__Evidence; - return soap_in__saml1__Evidence(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Action")) - { *type = SOAP_TYPE__saml1__Action; - return soap_in__saml1__Action(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AuthorizationDecisionStatement")) - { *type = SOAP_TYPE__saml1__AuthorizationDecisionStatement; - return soap_in__saml1__AuthorizationDecisionStatement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AuthorityBinding")) - { *type = SOAP_TYPE__saml1__AuthorityBinding; - return soap_in__saml1__AuthorityBinding(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:SubjectLocality")) - { *type = SOAP_TYPE__saml1__SubjectLocality; - return soap_in__saml1__SubjectLocality(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AuthenticationStatement")) - { *type = SOAP_TYPE__saml1__AuthenticationStatement; - return soap_in__saml1__AuthenticationStatement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:SubjectConfirmation")) - { *type = SOAP_TYPE__saml1__SubjectConfirmation; - return soap_in__saml1__SubjectConfirmation(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:NameIdentifier")) - { *type = SOAP_TYPE__saml1__NameIdentifier; - return soap_in__saml1__NameIdentifier(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Subject")) - { *type = SOAP_TYPE__saml1__Subject; - return soap_in__saml1__Subject(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:SubjectStatement")) - { *type = SOAP_TYPE__saml1__SubjectStatement; - return soap_in__saml1__SubjectStatement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Statement")) - { *type = SOAP_TYPE__saml1__Statement; - return soap_in__saml1__Statement(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Advice")) - { *type = SOAP_TYPE__saml1__Advice; - return soap_in__saml1__Advice(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:DoNotCacheCondition")) - { *type = SOAP_TYPE__saml1__DoNotCacheCondition; - return soap_in__saml1__DoNotCacheCondition(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:AudienceRestrictionCondition")) - { *type = SOAP_TYPE__saml1__AudienceRestrictionCondition; - return soap_in__saml1__AudienceRestrictionCondition(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Condition")) - { *type = SOAP_TYPE__saml1__Condition; - return soap_in__saml1__Condition(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Conditions")) - { *type = SOAP_TYPE__saml1__Conditions; - return soap_in__saml1__Conditions(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "saml1:Assertion")) - { *type = SOAP_TYPE__saml1__Assertion; - return soap_in__saml1__Assertion(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "xenc:ReferenceList")) - { *type = SOAP_TYPE__xenc__ReferenceList; - return soap_in__xenc__ReferenceList(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:KeyInfo")) - { *type = SOAP_TYPE__ds__KeyInfo; - return soap_in__ds__KeyInfo(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:Transform")) - { *type = SOAP_TYPE__ds__Transform; - return soap_in__ds__Transform(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "c14n:InclusiveNamespaces")) - { *type = SOAP_TYPE__c14n__InclusiveNamespaces; - return soap_in__c14n__InclusiveNamespaces(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "ds:Signature")) - { *type = SOAP_TYPE__ds__Signature; - return soap_in__ds__Signature(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:SecurityTokenReference")) - { *type = SOAP_TYPE__wsse__SecurityTokenReference; - return soap_in__wsse__SecurityTokenReference(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:KeyIdentifier")) - { *type = SOAP_TYPE__wsse__KeyIdentifier; - return soap_in__wsse__KeyIdentifier(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:Embedded")) - { *type = SOAP_TYPE__wsse__Embedded; - return soap_in__wsse__Embedded(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:Reference")) - { *type = SOAP_TYPE__wsse__Reference; - return soap_in__wsse__Reference(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:BinarySecurityToken")) - { *type = SOAP_TYPE__wsse__BinarySecurityToken; - return soap_in__wsse__BinarySecurityToken(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:Password")) - { *type = SOAP_TYPE__wsse__Password; - return soap_in__wsse__Password(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsse:UsernameToken")) - { *type = SOAP_TYPE__wsse__UsernameToken; - return soap_in__wsse__UsernameToken(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsu:Timestamp")) - { *type = SOAP_TYPE__wsu__Timestamp; - return soap_in__wsu__Timestamp(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:AppSequence")) - { *type = SOAP_TYPE__wsdd__AppSequence; - return soap_in__wsdd__AppSequence(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:Sig")) - { *type = SOAP_TYPE__wsdd__Sig; - return soap_in__wsdd__Sig(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:Security")) - { *type = SOAP_TYPE__wsdd__Security; - return soap_in__wsdd__Security(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:Scopes")) - { *type = SOAP_TYPE__wsdd__Scopes; - return soap_in__wsdd__Scopes(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ResolveMatches")) - { *type = SOAP_TYPE__wsdd__ResolveMatches; - return soap_in__wsdd__ResolveMatches(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:Resolve")) - { *type = SOAP_TYPE__wsdd__Resolve; - return soap_in__wsdd__Resolve(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:ProbeMatches")) - { *type = SOAP_TYPE__wsdd__ProbeMatches; - return soap_in__wsdd__ProbeMatches(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:Probe")) - { *type = SOAP_TYPE__wsdd__Probe; - return soap_in__wsdd__Probe(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:Bye")) - { *type = SOAP_TYPE__wsdd__Bye; - return soap_in__wsdd__Bye(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsdd:Hello")) - { *type = SOAP_TYPE__wsdd__Hello; - return soap_in__wsdd__Hello(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:FaultTo")) - { *type = SOAP_TYPE__wsa__FaultTo; - return soap_in__wsa__FaultTo(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:ReplyTo")) - { *type = SOAP_TYPE__wsa__ReplyTo; - return soap_in__wsa__ReplyTo(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:From")) - { *type = SOAP_TYPE__wsa__From; - return soap_in__wsa__From(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:RelatesTo")) - { *type = SOAP_TYPE__wsa__RelatesTo; - return soap_in__wsa__RelatesTo(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa:EndpointReference")) - { *type = SOAP_TYPE__wsa__EndpointReference; - return soap_in__wsa__EndpointReference(soap, NULL, NULL, NULL); - } - if (!soap_match_tag(soap, t, "wsa5:ProblemIRI")) - { char **s; - *type = SOAP_TYPE__wsa5__ProblemIRI; - s = soap_in__wsa5__ProblemIRI(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa5:Action")) - { char **s; - *type = SOAP_TYPE__wsa5__Action; - s = soap_in__wsa5__Action(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa5:To")) - { char **s; - *type = SOAP_TYPE__wsa5__To; - s = soap_in__wsa5__To(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa5:MessageID")) - { char **s; - *type = SOAP_TYPE__wsa5__MessageID; - s = soap_in__wsa5__MessageID(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml2:AuthenticatingAuthority")) - { char **s; - *type = SOAP_TYPE__saml2__AuthenticatingAuthority; - s = soap_in__saml2__AuthenticatingAuthority(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml2:AuthnContextDeclRef")) - { char **s; - *type = SOAP_TYPE__saml2__AuthnContextDeclRef; - s = soap_in__saml2__AuthnContextDeclRef(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml2:AuthnContextClassRef")) - { char **s; - *type = SOAP_TYPE__saml2__AuthnContextClassRef; - s = soap_in__saml2__AuthnContextClassRef(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml2:Audience")) - { char **s; - *type = SOAP_TYPE__saml2__Audience; - s = soap_in__saml2__Audience(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml2:AssertionURIRef")) - { char **s; - *type = SOAP_TYPE__saml2__AssertionURIRef; - s = soap_in__saml2__AssertionURIRef(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml2:AssertionIDRef")) - { char **s; - *type = SOAP_TYPE__saml2__AssertionIDRef; - s = soap_in__saml2__AssertionIDRef(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml1:ConfirmationMethod")) - { char **s; - *type = SOAP_TYPE__saml1__ConfirmationMethod; - s = soap_in__saml1__ConfirmationMethod(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml1:Audience")) - { char **s; - *type = SOAP_TYPE__saml1__Audience; - s = soap_in__saml1__Audience(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "saml1:AssertionIDReference")) - { char **s; - *type = SOAP_TYPE__saml1__AssertionIDReference; - s = soap_in__saml1__AssertionIDReference(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "ds:SignatureValue")) - { char **s; - *type = SOAP_TYPE__ds__SignatureValue; - s = soap_in__ds__SignatureValue(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsdd:Id")) - { char **s; - *type = SOAP_TYPE__wsdd__Id; - s = soap_in__wsdd__Id(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsdd:SupportedMatchingRules")) - { char **s; - *type = SOAP_TYPE__wsdd__SupportedMatchingRules; - s = soap_in__wsdd__SupportedMatchingRules(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsdd:XAddrs")) - { char **s; - *type = SOAP_TYPE__wsdd__XAddrs; - s = soap_in__wsdd__XAddrs(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa:Action")) - { char **s; - *type = SOAP_TYPE__wsa__Action; - s = soap_in__wsa__Action(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa:To")) - { char **s; - *type = SOAP_TYPE__wsa__To; - s = soap_in__wsa__To(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } - if (!soap_match_tag(soap, t, "wsa:MessageID")) - { char **s; - *type = SOAP_TYPE__wsa__MessageID; - s = soap_in__wsa__MessageID(soap, NULL, NULL, NULL); - return s ? *s : NULL; - } -#ifndef WITH_NOIDREF - } -#endif - } - soap->error = SOAP_TAG_MISMATCH; - return NULL; -} - -#ifdef __cplusplus -} -#endif - -SOAP_FMAC3 int SOAP_FMAC4 soap_ignore_element(struct soap *soap) -{ - if (!soap_peek_element(soap)) - { int t; - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Unexpected element '%s' in input at level = %u body = %d)\n", soap->tag, soap->level, soap->body)); - if (soap->mustUnderstand && !soap->other && !soap->fignore) - return soap->error = SOAP_MUSTUNDERSTAND; - if (((soap->mode & SOAP_XML_STRICT) && !soap->fignore && soap->part != SOAP_IN_HEADER) || !soap_match_tag(soap, soap->tag, "SOAP-ENV:")) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "REJECTING element '%s'\n", soap->tag)); - return soap->error = SOAP_TAG_MISMATCH; - } - if (!*soap->id || !soap_getelement(soap, NULL, &t)) - { soap->peeked = 0; - if (soap->fignore) - soap->error = soap->fignore(soap, soap->tag); - else - soap->error = SOAP_OK; - DBGLOG(TEST, if (!soap->error) SOAP_MESSAGE(fdebug, "IGNORING element '%s'\n", soap->tag)); - if (!soap->error && soap->body && soap_ignore(soap)) - return soap->error; - } - } - return soap->error; -} - -#ifndef WITH_NOIDREF -SOAP_FMAC3 int SOAP_FMAC4 soap_putindependent(struct soap *soap) -{ - int i; - struct soap_plist *pp; - if (soap->version == 1 && soap->encodingStyle && !(soap->mode & (SOAP_XML_TREE | SOAP_XML_GRAPH))) - for (i = 0; i < SOAP_PTRHASH; i++) - for (pp = soap->pht[i]; pp; pp = pp->next) - if (pp->mark1 == 2 || pp->mark2 == 2) - if (soap_putelement(soap, pp->ptr, SOAP_MULTIREFTAG, pp->id, pp->type)) - return soap->error; - return SOAP_OK; -} -#endif - -#ifdef __cplusplus -extern "C" { -#endif -SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, const char *tag, int id, int type) -{ (void)tag; - switch (type) - { - case SOAP_TYPE_byte: - return soap_out_byte(soap, tag, id, (const char *)ptr, "xsd:byte"); - case SOAP_TYPE_tt__IANA_IfTypes: - return soap_out_tt__IANA_IfTypes(soap, tag, id, (const int *)ptr, "tt:IANA-IfTypes"); - case SOAP_TYPE_int: - return soap_out_int(soap, tag, id, (const int *)ptr, "xsd:int"); - case SOAP_TYPE_float: - return soap_out_float(soap, tag, id, (const float *)ptr, "xsd:float"); - case SOAP_TYPE_double: - return soap_out_double(soap, tag, id, (const double *)ptr, "xsd:double"); - case SOAP_TYPE_unsignedByte: - return soap_out_unsignedByte(soap, tag, id, (const unsigned char *)ptr, "xsd:unsignedByte"); - case SOAP_TYPE__wsdd__MetadataVersion: - return soap_out__wsdd__MetadataVersion(soap, "wsdd:MetadataVersion", id, (const unsigned int *)ptr, ""); - case SOAP_TYPE__wsa__ReplyAfter: - return soap_out__wsa__ReplyAfter(soap, "wsa:ReplyAfter", id, (const unsigned int *)ptr, ""); - case SOAP_TYPE_unsignedInt: - return soap_out_unsignedInt(soap, tag, id, (const unsigned int *)ptr, "xsd:unsignedInt"); - case SOAP_TYPE__wsa5__RetryAfter: - return soap_out__wsa5__RetryAfter(soap, "wsa5:RetryAfter", id, (const ULONG64 *)ptr, ""); - case SOAP_TYPE_ULONG64: - return soap_out_ULONG64(soap, tag, id, (const ULONG64 *)ptr, "xsd:unsignedLong"); - case SOAP_TYPE_timg__ImagingPresetType: - return soap_out_timg__ImagingPresetType(soap, tag, id, (const enum timg__ImagingPresetType *)ptr, "timg:ImagingPresetType"); - case SOAP_TYPE_tds__StorageType: - return soap_out_tds__StorageType(soap, tag, id, (const enum tds__StorageType *)ptr, "tds:StorageType"); - case SOAP_TYPE_tds__AutoGeoModes: - return soap_out_tds__AutoGeoModes(soap, tag, id, (const enum tds__AutoGeoModes *)ptr, "tds:AutoGeoModes"); - case SOAP_TYPE_tmd__ParityBit: - return soap_out_tmd__ParityBit(soap, tag, id, (const enum tmd__ParityBit *)ptr, "tmd:ParityBit"); - case SOAP_TYPE_tmd__SerialPortType: - return soap_out_tmd__SerialPortType(soap, tag, id, (const enum tmd__SerialPortType *)ptr, "tmd:SerialPortType"); - case SOAP_TYPE_tt__OSDType: - return soap_out_tt__OSDType(soap, tag, id, (const enum tt__OSDType *)ptr, "tt:OSDType"); - case SOAP_TYPE_tt__ModeOfOperation: - return soap_out_tt__ModeOfOperation(soap, tag, id, (const enum tt__ModeOfOperation *)ptr, "tt:ModeOfOperation"); - case SOAP_TYPE_tt__TrackType: - return soap_out_tt__TrackType(soap, tag, id, (const enum tt__TrackType *)ptr, "tt:TrackType"); - case SOAP_TYPE_tt__RecordingStatus: - return soap_out_tt__RecordingStatus(soap, tag, id, (const enum tt__RecordingStatus *)ptr, "tt:RecordingStatus"); - case SOAP_TYPE_tt__SearchState: - return soap_out_tt__SearchState(soap, tag, id, (const enum tt__SearchState *)ptr, "tt:SearchState"); - case SOAP_TYPE_tt__ReceiverState: - return soap_out_tt__ReceiverState(soap, tag, id, (const enum tt__ReceiverState *)ptr, "tt:ReceiverState"); - case SOAP_TYPE_tt__ReceiverMode: - return soap_out_tt__ReceiverMode(soap, tag, id, (const enum tt__ReceiverMode *)ptr, "tt:ReceiverMode"); - case SOAP_TYPE_tt__Direction: - return soap_out_tt__Direction(soap, tag, id, (const enum tt__Direction *)ptr, "tt:Direction"); - case SOAP_TYPE_tt__PropertyOperation: - return soap_out_tt__PropertyOperation(soap, tag, id, (const enum tt__PropertyOperation *)ptr, "tt:PropertyOperation"); - case SOAP_TYPE_tt__ImageSendingType: - return soap_out_tt__ImageSendingType(soap, tag, id, (const enum tt__ImageSendingType *)ptr, "tt:ImageSendingType"); - case SOAP_TYPE_tt__DefoggingMode: - return soap_out_tt__DefoggingMode(soap, tag, id, (const enum tt__DefoggingMode *)ptr, "tt:DefoggingMode"); - case SOAP_TYPE_tt__ToneCompensationMode: - return soap_out_tt__ToneCompensationMode(soap, tag, id, (const enum tt__ToneCompensationMode *)ptr, "tt:ToneCompensationMode"); - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType: - return soap_out_tt__IrCutFilterAutoBoundaryType(soap, tag, id, (const enum tt__IrCutFilterAutoBoundaryType *)ptr, "tt:IrCutFilterAutoBoundaryType"); - case SOAP_TYPE_tt__ImageStabilizationMode: - return soap_out_tt__ImageStabilizationMode(soap, tag, id, (const enum tt__ImageStabilizationMode *)ptr, "tt:ImageStabilizationMode"); - case SOAP_TYPE_tt__IrCutFilterMode: - return soap_out_tt__IrCutFilterMode(soap, tag, id, (const enum tt__IrCutFilterMode *)ptr, "tt:IrCutFilterMode"); - case SOAP_TYPE_tt__WhiteBalanceMode: - return soap_out_tt__WhiteBalanceMode(soap, tag, id, (const enum tt__WhiteBalanceMode *)ptr, "tt:WhiteBalanceMode"); - case SOAP_TYPE_tt__Enabled: - return soap_out_tt__Enabled(soap, tag, id, (const enum tt__Enabled *)ptr, "tt:Enabled"); - case SOAP_TYPE_tt__ExposureMode: - return soap_out_tt__ExposureMode(soap, tag, id, (const enum tt__ExposureMode *)ptr, "tt:ExposureMode"); - case SOAP_TYPE_tt__ExposurePriority: - return soap_out_tt__ExposurePriority(soap, tag, id, (const enum tt__ExposurePriority *)ptr, "tt:ExposurePriority"); - case SOAP_TYPE_tt__BacklightCompensationMode: - return soap_out_tt__BacklightCompensationMode(soap, tag, id, (const enum tt__BacklightCompensationMode *)ptr, "tt:BacklightCompensationMode"); - case SOAP_TYPE_tt__WideDynamicMode: - return soap_out_tt__WideDynamicMode(soap, tag, id, (const enum tt__WideDynamicMode *)ptr, "tt:WideDynamicMode"); - case SOAP_TYPE_tt__AFModes: - return soap_out_tt__AFModes(soap, tag, id, (const enum tt__AFModes *)ptr, "tt:AFModes"); - case SOAP_TYPE_tt__AutoFocusMode: - return soap_out_tt__AutoFocusMode(soap, tag, id, (const enum tt__AutoFocusMode *)ptr, "tt:AutoFocusMode"); - case SOAP_TYPE_tt__MoveAndTrackMethod: - return soap_out_tt__MoveAndTrackMethod(soap, tag, id, (const enum tt__MoveAndTrackMethod *)ptr, "tt:MoveAndTrackMethod"); - case SOAP_TYPE_tt__PTZPresetTourOperation: - return soap_out_tt__PTZPresetTourOperation(soap, tag, id, (const enum tt__PTZPresetTourOperation *)ptr, "tt:PTZPresetTourOperation"); - case SOAP_TYPE_tt__PTZPresetTourDirection: - return soap_out_tt__PTZPresetTourDirection(soap, tag, id, (const enum tt__PTZPresetTourDirection *)ptr, "tt:PTZPresetTourDirection"); - case SOAP_TYPE_tt__PTZPresetTourState: - return soap_out_tt__PTZPresetTourState(soap, tag, id, (const enum tt__PTZPresetTourState *)ptr, "tt:PTZPresetTourState"); - case SOAP_TYPE_tt__ReverseMode: - return soap_out_tt__ReverseMode(soap, tag, id, (const enum tt__ReverseMode *)ptr, "tt:ReverseMode"); - case SOAP_TYPE_tt__EFlipMode: - return soap_out_tt__EFlipMode(soap, tag, id, (const enum tt__EFlipMode *)ptr, "tt:EFlipMode"); - case SOAP_TYPE_tt__DigitalIdleState: - return soap_out_tt__DigitalIdleState(soap, tag, id, (const enum tt__DigitalIdleState *)ptr, "tt:DigitalIdleState"); - case SOAP_TYPE_tt__RelayMode: - return soap_out_tt__RelayMode(soap, tag, id, (const enum tt__RelayMode *)ptr, "tt:RelayMode"); - case SOAP_TYPE_tt__RelayIdleState: - return soap_out_tt__RelayIdleState(soap, tag, id, (const enum tt__RelayIdleState *)ptr, "tt:RelayIdleState"); - case SOAP_TYPE_tt__RelayLogicalState: - return soap_out_tt__RelayLogicalState(soap, tag, id, (const enum tt__RelayLogicalState *)ptr, "tt:RelayLogicalState"); - case SOAP_TYPE_tt__UserLevel: - return soap_out_tt__UserLevel(soap, tag, id, (const enum tt__UserLevel *)ptr, "tt:UserLevel"); - case SOAP_TYPE_tt__SetDateTimeType: - return soap_out_tt__SetDateTimeType(soap, tag, id, (const enum tt__SetDateTimeType *)ptr, "tt:SetDateTimeType"); - case SOAP_TYPE_tt__FactoryDefaultType: - return soap_out_tt__FactoryDefaultType(soap, tag, id, (const enum tt__FactoryDefaultType *)ptr, "tt:FactoryDefaultType"); - case SOAP_TYPE_tt__SystemLogType: - return soap_out_tt__SystemLogType(soap, tag, id, (const enum tt__SystemLogType *)ptr, "tt:SystemLogType"); - case SOAP_TYPE_tt__CapabilityCategory: - return soap_out_tt__CapabilityCategory(soap, tag, id, (const enum tt__CapabilityCategory *)ptr, "tt:CapabilityCategory"); - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite: - return soap_out_tt__Dot11AuthAndMangementSuite(soap, tag, id, (const enum tt__Dot11AuthAndMangementSuite *)ptr, "tt:Dot11AuthAndMangementSuite"); - case SOAP_TYPE_tt__Dot11SignalStrength: - return soap_out_tt__Dot11SignalStrength(soap, tag, id, (const enum tt__Dot11SignalStrength *)ptr, "tt:Dot11SignalStrength"); - case SOAP_TYPE_tt__Dot11Cipher: - return soap_out_tt__Dot11Cipher(soap, tag, id, (const enum tt__Dot11Cipher *)ptr, "tt:Dot11Cipher"); - case SOAP_TYPE_tt__Dot11SecurityMode: - return soap_out_tt__Dot11SecurityMode(soap, tag, id, (const enum tt__Dot11SecurityMode *)ptr, "tt:Dot11SecurityMode"); - case SOAP_TYPE_tt__Dot11StationMode: - return soap_out_tt__Dot11StationMode(soap, tag, id, (const enum tt__Dot11StationMode *)ptr, "tt:Dot11StationMode"); - case SOAP_TYPE_tt__DynamicDNSType: - return soap_out_tt__DynamicDNSType(soap, tag, id, (const enum tt__DynamicDNSType *)ptr, "tt:DynamicDNSType"); - case SOAP_TYPE_tt__IPAddressFilterType: - return soap_out_tt__IPAddressFilterType(soap, tag, id, (const enum tt__IPAddressFilterType *)ptr, "tt:IPAddressFilterType"); - case SOAP_TYPE_tt__IPType: - return soap_out_tt__IPType(soap, tag, id, (const enum tt__IPType *)ptr, "tt:IPType"); - case SOAP_TYPE_tt__NetworkHostType: - return soap_out_tt__NetworkHostType(soap, tag, id, (const enum tt__NetworkHostType *)ptr, "tt:NetworkHostType"); - case SOAP_TYPE_tt__NetworkProtocolType: - return soap_out_tt__NetworkProtocolType(soap, tag, id, (const enum tt__NetworkProtocolType *)ptr, "tt:NetworkProtocolType"); - case SOAP_TYPE_tt__IPv6DHCPConfiguration: - return soap_out_tt__IPv6DHCPConfiguration(soap, tag, id, (const enum tt__IPv6DHCPConfiguration *)ptr, "tt:IPv6DHCPConfiguration"); - case SOAP_TYPE_tt__Duplex: - return soap_out_tt__Duplex(soap, tag, id, (const enum tt__Duplex *)ptr, "tt:Duplex"); - case SOAP_TYPE_tt__DiscoveryMode: - return soap_out_tt__DiscoveryMode(soap, tag, id, (const enum tt__DiscoveryMode *)ptr, "tt:DiscoveryMode"); - case SOAP_TYPE_tt__ScopeDefinition: - return soap_out_tt__ScopeDefinition(soap, tag, id, (const enum tt__ScopeDefinition *)ptr, "tt:ScopeDefinition"); - case SOAP_TYPE_tt__TransportProtocol: - return soap_out_tt__TransportProtocol(soap, tag, id, (const enum tt__TransportProtocol *)ptr, "tt:TransportProtocol"); - case SOAP_TYPE_tt__StreamType: - return soap_out_tt__StreamType(soap, tag, id, (const enum tt__StreamType *)ptr, "tt:StreamType"); - case SOAP_TYPE_tt__MetadataCompressionType: - return soap_out_tt__MetadataCompressionType(soap, tag, id, (const enum tt__MetadataCompressionType *)ptr, "tt:MetadataCompressionType"); - case SOAP_TYPE_tt__AudioEncodingMimeNames: - return soap_out_tt__AudioEncodingMimeNames(soap, tag, id, (const enum tt__AudioEncodingMimeNames *)ptr, "tt:AudioEncodingMimeNames"); - case SOAP_TYPE_tt__AudioEncoding: - return soap_out_tt__AudioEncoding(soap, tag, id, (const enum tt__AudioEncoding *)ptr, "tt:AudioEncoding"); - case SOAP_TYPE_tt__VideoEncodingProfiles: - return soap_out_tt__VideoEncodingProfiles(soap, tag, id, (const enum tt__VideoEncodingProfiles *)ptr, "tt:VideoEncodingProfiles"); - case SOAP_TYPE_tt__VideoEncodingMimeNames: - return soap_out_tt__VideoEncodingMimeNames(soap, tag, id, (const enum tt__VideoEncodingMimeNames *)ptr, "tt:VideoEncodingMimeNames"); - case SOAP_TYPE_tt__H264Profile: - return soap_out_tt__H264Profile(soap, tag, id, (const enum tt__H264Profile *)ptr, "tt:H264Profile"); - case SOAP_TYPE_tt__Mpeg4Profile: - return soap_out_tt__Mpeg4Profile(soap, tag, id, (const enum tt__Mpeg4Profile *)ptr, "tt:Mpeg4Profile"); - case SOAP_TYPE_tt__VideoEncoding: - return soap_out_tt__VideoEncoding(soap, tag, id, (const enum tt__VideoEncoding *)ptr, "tt:VideoEncoding"); - case SOAP_TYPE_tt__ViewModes: - return soap_out_tt__ViewModes(soap, tag, id, (const enum tt__ViewModes *)ptr, "tt:ViewModes"); - case SOAP_TYPE_tt__SceneOrientationOption: - return soap_out_tt__SceneOrientationOption(soap, tag, id, (const enum tt__SceneOrientationOption *)ptr, "tt:SceneOrientationOption"); - case SOAP_TYPE_tt__SceneOrientationMode: - return soap_out_tt__SceneOrientationMode(soap, tag, id, (const enum tt__SceneOrientationMode *)ptr, "tt:SceneOrientationMode"); - case SOAP_TYPE_tt__RotateMode: - return soap_out_tt__RotateMode(soap, tag, id, (const enum tt__RotateMode *)ptr, "tt:RotateMode"); - case SOAP_TYPE_tt__Entity: - return soap_out_tt__Entity(soap, tag, id, (const enum tt__Entity *)ptr, "tt:Entity"); - case SOAP_TYPE_tt__MoveStatus: - return soap_out_tt__MoveStatus(soap, tag, id, (const enum tt__MoveStatus *)ptr, "tt:MoveStatus"); - case SOAP_TYPE_bool: - return soap_out_bool(soap, tag, id, (const bool *)ptr, "xsd:boolean"); - case SOAP_TYPE__wsa5__IsReferenceParameter: - return soap_out__wsa5__IsReferenceParameter(soap, tag, id, (const enum _wsa5__IsReferenceParameter *)ptr, "wsa5:IsReferenceParameter"); - case SOAP_TYPE_wsa5__FaultCodesType: - return soap_out_wsa5__FaultCodesType(soap, tag, id, (const enum wsa5__FaultCodesType *)ptr, "wsa5:FaultCodesType"); - case SOAP_TYPE_wsa5__RelationshipType: - return soap_out_wsa5__RelationshipType(soap, tag, id, (const enum wsa5__RelationshipType *)ptr, "wsa5:RelationshipType"); - case SOAP_TYPE_saml2__DecisionType: - return soap_out_saml2__DecisionType(soap, tag, id, (const enum saml2__DecisionType *)ptr, "saml2:DecisionType"); - case SOAP_TYPE_saml1__DecisionType: - return soap_out_saml1__DecisionType(soap, tag, id, (const enum saml1__DecisionType *)ptr, "saml1:DecisionType"); - case SOAP_TYPE_wsc__FaultCodeType: - return soap_out_wsc__FaultCodeType(soap, tag, id, (const enum wsc__FaultCodeType *)ptr, "wsc:FaultCodeType"); - case SOAP_TYPE_wsse__FaultcodeEnum: - return soap_out_wsse__FaultcodeEnum(soap, tag, id, (const enum wsse__FaultcodeEnum *)ptr, "wsse:FaultcodeEnum"); - case SOAP_TYPE_wsu__tTimestampFault: - return soap_out_wsu__tTimestampFault(soap, tag, id, (const enum wsu__tTimestampFault *)ptr, "wsu:tTimestampFault"); - case SOAP_TYPE_wsdd__FaultCodeType: - return soap_out_wsdd__FaultCodeType(soap, tag, id, (const enum wsdd__FaultCodeType *)ptr, "wsdd:FaultCodeType"); - case SOAP_TYPE_wsa__FaultSubcodeValues: - return soap_out_wsa__FaultSubcodeValues(soap, tag, id, (const enum wsa__FaultSubcodeValues *)ptr, "wsa:FaultSubcodeValues"); - case SOAP_TYPE_wsa__RelationshipTypeValues: - return soap_out_wsa__RelationshipTypeValues(soap, tag, id, (const enum wsa__RelationshipTypeValues *)ptr, "wsa:RelationshipTypeValues"); - case SOAP_TYPE__wstop__TopicNamespaceType_Topic: - return ((_wstop__TopicNamespaceType_Topic *)ptr)->soap_out(soap, "wstop:TopicNamespaceType-Topic", id, ""); - case SOAP_TYPE__trc__ExportRecordedDataResponse_Extension: - return ((_trc__ExportRecordedDataResponse_Extension *)ptr)->soap_out(soap, "trc:ExportRecordedDataResponse-Extension", id, ""); - case SOAP_TYPE__tds__GetSystemUrisResponse_Extension: - return ((_tds__GetSystemUrisResponse_Extension *)ptr)->soap_out(soap, "tds:GetSystemUrisResponse-Extension", id, ""); - case SOAP_TYPE__tds__StorageConfigurationData_Extension: - return ((_tds__StorageConfigurationData_Extension *)ptr)->soap_out(soap, "tds:StorageConfigurationData-Extension", id, ""); - case SOAP_TYPE__tds__UserCredential_Extension: - return ((_tds__UserCredential_Extension *)ptr)->soap_out(soap, "tds:UserCredential-Extension", id, ""); - case SOAP_TYPE__tds__Service_Capabilities: - return ((_tds__Service_Capabilities *)ptr)->soap_out(soap, "tds:Service-Capabilities", id, ""); - case SOAP_TYPE__tt__ConfigDescription_Messages: - return ((_tt__ConfigDescription_Messages *)ptr)->soap_out(soap, "tt:ConfigDescription-Messages", id, ""); - case SOAP_TYPE__tt__ItemListDescription_ElementItemDescription: - return ((_tt__ItemListDescription_ElementItemDescription *)ptr)->soap_out(soap, "tt:ItemListDescription-ElementItemDescription", id, ""); - case SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription: - return ((_tt__ItemListDescription_SimpleItemDescription *)ptr)->soap_out(soap, "tt:ItemListDescription-SimpleItemDescription", id, ""); - case SOAP_TYPE__tt__ItemList_ElementItem: - return ((_tt__ItemList_ElementItem *)ptr)->soap_out(soap, "tt:ItemList-ElementItem", id, ""); - case SOAP_TYPE__tt__ItemList_SimpleItem: - return ((_tt__ItemList_SimpleItem *)ptr)->soap_out(soap, "tt:ItemList-SimpleItem", id, ""); - case SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy: - return ((_tt__EventSubscription_SubscriptionPolicy *)ptr)->soap_out(soap, "tt:EventSubscription-SubscriptionPolicy", id, ""); - case SOAP_TYPE__tt__ColorDescriptor_ColorCluster: - return ((_tt__ColorDescriptor_ColorCluster *)ptr)->soap_out(soap, "tt:ColorDescriptor-ColorCluster", id, ""); - case SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy: - return ((_tev__CreatePullPointSubscription_SubscriptionPolicy *)ptr)->soap_out(soap, "tev:CreatePullPointSubscription-SubscriptionPolicy", id, ""); - case SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause: - return ((_wsrfbf__BaseFaultType_FaultCause *)ptr)->soap_out(soap, "wsrfbf:BaseFaultType-FaultCause", id, ""); - case SOAP_TYPE__wsrfbf__BaseFaultType_Description: - return ((_wsrfbf__BaseFaultType_Description *)ptr)->soap_out(soap, "wsrfbf:BaseFaultType-Description", id, ""); - case SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode: - return ((_wsrfbf__BaseFaultType_ErrorCode *)ptr)->soap_out(soap, "wsrfbf:BaseFaultType-ErrorCode", id, ""); - case SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy: - return ((_wsnt__Subscribe_SubscriptionPolicy *)ptr)->soap_out(soap, "wsnt:Subscribe-SubscriptionPolicy", id, ""); - case SOAP_TYPE__wsnt__NotificationMessageHolderType_Message: - return ((_wsnt__NotificationMessageHolderType_Message *)ptr)->soap_out(soap, "wsnt:NotificationMessageHolderType-Message", id, ""); - case SOAP_TYPE_tt__RecordingJobReference__: - return ((tt__RecordingJobReference__ *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobReference"); - case SOAP_TYPE_tt__RecordingJobReference: - return soap_out_tt__RecordingJobReference(soap, tag, id, (const std::string *)ptr, "tt:RecordingJobReference"); - case SOAP_TYPE_tt__JobToken__: - return ((tt__JobToken__ *)ptr)->soap_out(soap, tag, id, "tt:JobToken"); - case SOAP_TYPE_tt__JobToken: - return soap_out_tt__JobToken(soap, tag, id, (const std::string *)ptr, "tt:JobToken"); - case SOAP_TYPE_tt__TrackReference__: - return ((tt__TrackReference__ *)ptr)->soap_out(soap, tag, id, "tt:TrackReference"); - case SOAP_TYPE_tt__TrackReference: - return soap_out_tt__TrackReference(soap, tag, id, (const std::string *)ptr, "tt:TrackReference"); - case SOAP_TYPE_tt__RecordingReference__: - return ((tt__RecordingReference__ *)ptr)->soap_out(soap, tag, id, "tt:RecordingReference"); - case SOAP_TYPE_tt__RecordingReference: - return soap_out_tt__RecordingReference(soap, tag, id, (const std::string *)ptr, "tt:RecordingReference"); - case SOAP_TYPE_tt__ReceiverReference__: - return ((tt__ReceiverReference__ *)ptr)->soap_out(soap, tag, id, "tt:ReceiverReference"); - case SOAP_TYPE_tt__ReceiverReference: - return soap_out_tt__ReceiverReference(soap, tag, id, (const std::string *)ptr, "tt:ReceiverReference"); - case SOAP_TYPE_wstop__SimpleTopicExpression__: - return ((wstop__SimpleTopicExpression__ *)ptr)->soap_out(soap, tag, id, "wstop:SimpleTopicExpression"); - case SOAP_TYPE_wstop__SimpleTopicExpression: - return soap_out_wstop__SimpleTopicExpression(soap, tag, id, (const std::string *)ptr, "xsd:QName"); - case SOAP_TYPE_wstop__ConcreteTopicExpression__: - return ((wstop__ConcreteTopicExpression__ *)ptr)->soap_out(soap, tag, id, "wstop:ConcreteTopicExpression"); - case SOAP_TYPE_wstop__ConcreteTopicExpression: - return soap_out_wstop__ConcreteTopicExpression(soap, tag, id, (const std::string *)ptr, "wstop:ConcreteTopicExpression"); - case SOAP_TYPE_wstop__FullTopicExpression__: - return ((wstop__FullTopicExpression__ *)ptr)->soap_out(soap, tag, id, "wstop:FullTopicExpression"); - case SOAP_TYPE_wstop__FullTopicExpression: - return soap_out_wstop__FullTopicExpression(soap, tag, id, (const std::string *)ptr, "wstop:FullTopicExpression"); - case SOAP_TYPE_timg__ImagingPresetType_: - return ((timg__ImagingPresetType_ *)ptr)->soap_out(soap, tag, id, "timg:ImagingPresetType"); - case SOAP_TYPE_tds__StorageType_: - return ((tds__StorageType_ *)ptr)->soap_out(soap, tag, id, "tds:StorageType"); - case SOAP_TYPE_tds__AutoGeoModes_: - return ((tds__AutoGeoModes_ *)ptr)->soap_out(soap, tag, id, "tds:AutoGeoModes"); - case SOAP_TYPE_tmd__ParityBit_: - return ((tmd__ParityBit_ *)ptr)->soap_out(soap, tag, id, "tmd:ParityBit"); - case SOAP_TYPE_tmd__SerialPortType_: - return ((tmd__SerialPortType_ *)ptr)->soap_out(soap, tag, id, "tmd:SerialPortType"); - case SOAP_TYPE_tt__OSDType_: - return ((tt__OSDType_ *)ptr)->soap_out(soap, tag, id, "tt:OSDType"); - case SOAP_TYPE_tt__AudioClassType__: - return ((tt__AudioClassType__ *)ptr)->soap_out(soap, tag, id, "tt:AudioClassType"); - case SOAP_TYPE_tt__AudioClassType: - return soap_out_tt__AudioClassType(soap, tag, id, (const std::string *)ptr, "tt:AudioClassType"); - case SOAP_TYPE_tt__ModeOfOperation_: - return ((tt__ModeOfOperation_ *)ptr)->soap_out(soap, tag, id, "tt:ModeOfOperation"); - case SOAP_TYPE_tt__RecordingJobState__: - return ((tt__RecordingJobState__ *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobState"); - case SOAP_TYPE_tt__RecordingJobState: - return soap_out_tt__RecordingJobState(soap, tag, id, (const std::string *)ptr, "tt:RecordingJobState"); - case SOAP_TYPE_tt__RecordingJobMode__: - return ((tt__RecordingJobMode__ *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobMode"); - case SOAP_TYPE_tt__RecordingJobMode: - return soap_out_tt__RecordingJobMode(soap, tag, id, (const std::string *)ptr, "tt:RecordingJobMode"); - case SOAP_TYPE_tt__TrackType_: - return ((tt__TrackType_ *)ptr)->soap_out(soap, tag, id, "tt:TrackType"); - case SOAP_TYPE_tt__RecordingStatus_: - return ((tt__RecordingStatus_ *)ptr)->soap_out(soap, tag, id, "tt:RecordingStatus"); - case SOAP_TYPE_tt__SearchState_: - return ((tt__SearchState_ *)ptr)->soap_out(soap, tag, id, "tt:SearchState"); - case SOAP_TYPE_tt__XPathExpression__: - return ((tt__XPathExpression__ *)ptr)->soap_out(soap, tag, id, "tt:XPathExpression"); - case SOAP_TYPE_tt__XPathExpression: - return soap_out_tt__XPathExpression(soap, tag, id, (const std::string *)ptr, "tt:XPathExpression"); - case SOAP_TYPE_tt__Description__: - return ((tt__Description__ *)ptr)->soap_out(soap, tag, id, "tt:Description"); - case SOAP_TYPE_tt__Description: - return soap_out_tt__Description(soap, tag, id, (const std::string *)ptr, "tt:Description"); - case SOAP_TYPE_tt__ReceiverState_: - return ((tt__ReceiverState_ *)ptr)->soap_out(soap, tag, id, "tt:ReceiverState"); - case SOAP_TYPE_tt__ReceiverMode_: - return ((tt__ReceiverMode_ *)ptr)->soap_out(soap, tag, id, "tt:ReceiverMode"); - case SOAP_TYPE_tt__Direction_: - return ((tt__Direction_ *)ptr)->soap_out(soap, tag, id, "tt:Direction"); - case SOAP_TYPE_tt__PropertyOperation_: - return ((tt__PropertyOperation_ *)ptr)->soap_out(soap, tag, id, "tt:PropertyOperation"); - case SOAP_TYPE_tt__ImageSendingType_: - return ((tt__ImageSendingType_ *)ptr)->soap_out(soap, tag, id, "tt:ImageSendingType"); - case SOAP_TYPE_tt__DefoggingMode_: - return ((tt__DefoggingMode_ *)ptr)->soap_out(soap, tag, id, "tt:DefoggingMode"); - case SOAP_TYPE_tt__ToneCompensationMode_: - return ((tt__ToneCompensationMode_ *)ptr)->soap_out(soap, tag, id, "tt:ToneCompensationMode"); - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_: - return ((tt__IrCutFilterAutoBoundaryType_ *)ptr)->soap_out(soap, tag, id, "tt:IrCutFilterAutoBoundaryType"); - case SOAP_TYPE_tt__ImageStabilizationMode_: - return ((tt__ImageStabilizationMode_ *)ptr)->soap_out(soap, tag, id, "tt:ImageStabilizationMode"); - case SOAP_TYPE_tt__IrCutFilterMode_: - return ((tt__IrCutFilterMode_ *)ptr)->soap_out(soap, tag, id, "tt:IrCutFilterMode"); - case SOAP_TYPE_tt__WhiteBalanceMode_: - return ((tt__WhiteBalanceMode_ *)ptr)->soap_out(soap, tag, id, "tt:WhiteBalanceMode"); - case SOAP_TYPE_tt__Enabled_: - return ((tt__Enabled_ *)ptr)->soap_out(soap, tag, id, "tt:Enabled"); - case SOAP_TYPE_tt__ExposureMode_: - return ((tt__ExposureMode_ *)ptr)->soap_out(soap, tag, id, "tt:ExposureMode"); - case SOAP_TYPE_tt__ExposurePriority_: - return ((tt__ExposurePriority_ *)ptr)->soap_out(soap, tag, id, "tt:ExposurePriority"); - case SOAP_TYPE_tt__BacklightCompensationMode_: - return ((tt__BacklightCompensationMode_ *)ptr)->soap_out(soap, tag, id, "tt:BacklightCompensationMode"); - case SOAP_TYPE_tt__WideDynamicMode_: - return ((tt__WideDynamicMode_ *)ptr)->soap_out(soap, tag, id, "tt:WideDynamicMode"); - case SOAP_TYPE_tt__AFModes_: - return ((tt__AFModes_ *)ptr)->soap_out(soap, tag, id, "tt:AFModes"); - case SOAP_TYPE_tt__AutoFocusMode_: - return ((tt__AutoFocusMode_ *)ptr)->soap_out(soap, tag, id, "tt:AutoFocusMode"); - case SOAP_TYPE_tt__MoveAndTrackMethod_: - return ((tt__MoveAndTrackMethod_ *)ptr)->soap_out(soap, tag, id, "tt:MoveAndTrackMethod"); - case SOAP_TYPE_tt__PTZPresetTourOperation_: - return ((tt__PTZPresetTourOperation_ *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourOperation"); - case SOAP_TYPE_tt__PTZPresetTourDirection_: - return ((tt__PTZPresetTourDirection_ *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourDirection"); - case SOAP_TYPE_tt__PTZPresetTourState_: - return ((tt__PTZPresetTourState_ *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourState"); - case SOAP_TYPE_tt__AuxiliaryData__: - return ((tt__AuxiliaryData__ *)ptr)->soap_out(soap, tag, id, "tt:AuxiliaryData"); - case SOAP_TYPE_tt__AuxiliaryData: - return soap_out_tt__AuxiliaryData(soap, tag, id, (const std::string *)ptr, "tt:AuxiliaryData"); - case SOAP_TYPE_tt__ReverseMode_: - return ((tt__ReverseMode_ *)ptr)->soap_out(soap, tag, id, "tt:ReverseMode"); - case SOAP_TYPE_tt__EFlipMode_: - return ((tt__EFlipMode_ *)ptr)->soap_out(soap, tag, id, "tt:EFlipMode"); - case SOAP_TYPE_tt__DigitalIdleState_: - return ((tt__DigitalIdleState_ *)ptr)->soap_out(soap, tag, id, "tt:DigitalIdleState"); - case SOAP_TYPE_tt__RelayMode_: - return ((tt__RelayMode_ *)ptr)->soap_out(soap, tag, id, "tt:RelayMode"); - case SOAP_TYPE_tt__RelayIdleState_: - return ((tt__RelayIdleState_ *)ptr)->soap_out(soap, tag, id, "tt:RelayIdleState"); - case SOAP_TYPE_tt__RelayLogicalState_: - return ((tt__RelayLogicalState_ *)ptr)->soap_out(soap, tag, id, "tt:RelayLogicalState"); - case SOAP_TYPE_tt__UserLevel_: - return ((tt__UserLevel_ *)ptr)->soap_out(soap, tag, id, "tt:UserLevel"); - case SOAP_TYPE_tt__SetDateTimeType_: - return ((tt__SetDateTimeType_ *)ptr)->soap_out(soap, tag, id, "tt:SetDateTimeType"); - case SOAP_TYPE_tt__FactoryDefaultType_: - return ((tt__FactoryDefaultType_ *)ptr)->soap_out(soap, tag, id, "tt:FactoryDefaultType"); - case SOAP_TYPE_tt__SystemLogType_: - return ((tt__SystemLogType_ *)ptr)->soap_out(soap, tag, id, "tt:SystemLogType"); - case SOAP_TYPE_tt__CapabilityCategory_: - return ((tt__CapabilityCategory_ *)ptr)->soap_out(soap, tag, id, "tt:CapabilityCategory"); - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite_: - return ((tt__Dot11AuthAndMangementSuite_ *)ptr)->soap_out(soap, tag, id, "tt:Dot11AuthAndMangementSuite"); - case SOAP_TYPE_tt__Dot11SignalStrength_: - return ((tt__Dot11SignalStrength_ *)ptr)->soap_out(soap, tag, id, "tt:Dot11SignalStrength"); - case SOAP_TYPE_tt__Dot11PSKPassphrase__: - return ((tt__Dot11PSKPassphrase__ *)ptr)->soap_out(soap, tag, id, "tt:Dot11PSKPassphrase"); - case SOAP_TYPE_tt__Dot11PSKPassphrase: - return soap_out_tt__Dot11PSKPassphrase(soap, tag, id, (const std::string *)ptr, "tt:Dot11PSKPassphrase"); - case SOAP_TYPE_tt__Dot11PSK__: - return ((tt__Dot11PSK__ *)ptr)->soap_out(soap, tag, id, "tt:Dot11PSK"); - case SOAP_TYPE_tt__Dot11PSK: - return soap_out_tt__Dot11PSK(soap, tag, id, (const xsd__hexBinary *)ptr, "tt:Dot11PSK"); - case SOAP_TYPE_tt__Dot11Cipher_: - return ((tt__Dot11Cipher_ *)ptr)->soap_out(soap, tag, id, "tt:Dot11Cipher"); - case SOAP_TYPE_tt__Dot11SecurityMode_: - return ((tt__Dot11SecurityMode_ *)ptr)->soap_out(soap, tag, id, "tt:Dot11SecurityMode"); - case SOAP_TYPE_tt__Dot11StationMode_: - return ((tt__Dot11StationMode_ *)ptr)->soap_out(soap, tag, id, "tt:Dot11StationMode"); - case SOAP_TYPE_tt__Dot11SSIDType__: - return ((tt__Dot11SSIDType__ *)ptr)->soap_out(soap, tag, id, "tt:Dot11SSIDType"); - case SOAP_TYPE_tt__Dot11SSIDType: - return soap_out_tt__Dot11SSIDType(soap, tag, id, (const xsd__hexBinary *)ptr, "tt:Dot11SSIDType"); - case SOAP_TYPE_tt__DynamicDNSType_: - return ((tt__DynamicDNSType_ *)ptr)->soap_out(soap, tag, id, "tt:DynamicDNSType"); - case SOAP_TYPE_tt__IPAddressFilterType_: - return ((tt__IPAddressFilterType_ *)ptr)->soap_out(soap, tag, id, "tt:IPAddressFilterType"); - case SOAP_TYPE_tt__Domain__: - return ((tt__Domain__ *)ptr)->soap_out(soap, tag, id, "tt:Domain"); - case SOAP_TYPE_tt__Domain: - return soap_out_tt__Domain(soap, tag, id, (const std::string *)ptr, "tt:Domain"); - case SOAP_TYPE_tt__DNSName__: - return ((tt__DNSName__ *)ptr)->soap_out(soap, tag, id, "tt:DNSName"); - case SOAP_TYPE_tt__DNSName: - return soap_out_tt__DNSName(soap, tag, id, (const std::string *)ptr, "tt:DNSName"); - case SOAP_TYPE_tt__IPType_: - return ((tt__IPType_ *)ptr)->soap_out(soap, tag, id, "tt:IPType"); - case SOAP_TYPE_tt__HwAddress__: - return ((tt__HwAddress__ *)ptr)->soap_out(soap, tag, id, "tt:HwAddress"); - case SOAP_TYPE_tt__HwAddress: - return soap_out_tt__HwAddress(soap, tag, id, (const std::string *)ptr, "tt:HwAddress"); - case SOAP_TYPE_tt__IPv6Address__: - return ((tt__IPv6Address__ *)ptr)->soap_out(soap, tag, id, "tt:IPv6Address"); - case SOAP_TYPE_tt__IPv6Address: - return soap_out_tt__IPv6Address(soap, tag, id, (const std::string *)ptr, "tt:IPv6Address"); - case SOAP_TYPE_tt__IPv4Address__: - return ((tt__IPv4Address__ *)ptr)->soap_out(soap, tag, id, "tt:IPv4Address"); - case SOAP_TYPE_tt__IPv4Address: - return soap_out_tt__IPv4Address(soap, tag, id, (const std::string *)ptr, "tt:IPv4Address"); - case SOAP_TYPE_tt__NetworkHostType_: - return ((tt__NetworkHostType_ *)ptr)->soap_out(soap, tag, id, "tt:NetworkHostType"); - case SOAP_TYPE_tt__NetworkProtocolType_: - return ((tt__NetworkProtocolType_ *)ptr)->soap_out(soap, tag, id, "tt:NetworkProtocolType"); - case SOAP_TYPE_tt__IPv6DHCPConfiguration_: - return ((tt__IPv6DHCPConfiguration_ *)ptr)->soap_out(soap, tag, id, "tt:IPv6DHCPConfiguration"); - case SOAP_TYPE_tt__IANA_IfTypes__: - return ((tt__IANA_IfTypes__ *)ptr)->soap_out(soap, tag, id, "tt:IANA-IfTypes"); - case SOAP_TYPE_tt__Duplex_: - return ((tt__Duplex_ *)ptr)->soap_out(soap, tag, id, "tt:Duplex"); - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority__: - return ((tt__NetworkInterfaceConfigPriority__ *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceConfigPriority"); - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority: - return soap_out_tt__NetworkInterfaceConfigPriority(soap, tag, id, (const std::string *)ptr, "tt:NetworkInterfaceConfigPriority"); - case SOAP_TYPE_tt__DiscoveryMode_: - return ((tt__DiscoveryMode_ *)ptr)->soap_out(soap, tag, id, "tt:DiscoveryMode"); - case SOAP_TYPE_tt__ScopeDefinition_: - return ((tt__ScopeDefinition_ *)ptr)->soap_out(soap, tag, id, "tt:ScopeDefinition"); - case SOAP_TYPE_tt__TransportProtocol_: - return ((tt__TransportProtocol_ *)ptr)->soap_out(soap, tag, id, "tt:TransportProtocol"); - case SOAP_TYPE_tt__StreamType_: - return ((tt__StreamType_ *)ptr)->soap_out(soap, tag, id, "tt:StreamType"); - case SOAP_TYPE_tt__MetadataCompressionType_: - return ((tt__MetadataCompressionType_ *)ptr)->soap_out(soap, tag, id, "tt:MetadataCompressionType"); - case SOAP_TYPE_tt__AudioEncodingMimeNames_: - return ((tt__AudioEncodingMimeNames_ *)ptr)->soap_out(soap, tag, id, "tt:AudioEncodingMimeNames"); - case SOAP_TYPE_tt__AudioEncoding_: - return ((tt__AudioEncoding_ *)ptr)->soap_out(soap, tag, id, "tt:AudioEncoding"); - case SOAP_TYPE_tt__VideoEncodingProfiles_: - return ((tt__VideoEncodingProfiles_ *)ptr)->soap_out(soap, tag, id, "tt:VideoEncodingProfiles"); - case SOAP_TYPE_tt__VideoEncodingMimeNames_: - return ((tt__VideoEncodingMimeNames_ *)ptr)->soap_out(soap, tag, id, "tt:VideoEncodingMimeNames"); - case SOAP_TYPE_tt__H264Profile_: - return ((tt__H264Profile_ *)ptr)->soap_out(soap, tag, id, "tt:H264Profile"); - case SOAP_TYPE_tt__Mpeg4Profile_: - return ((tt__Mpeg4Profile_ *)ptr)->soap_out(soap, tag, id, "tt:Mpeg4Profile"); - case SOAP_TYPE_tt__VideoEncoding_: - return ((tt__VideoEncoding_ *)ptr)->soap_out(soap, tag, id, "tt:VideoEncoding"); - case SOAP_TYPE_tt__ViewModes_: - return ((tt__ViewModes_ *)ptr)->soap_out(soap, tag, id, "tt:ViewModes"); - case SOAP_TYPE_tt__SceneOrientationOption_: - return ((tt__SceneOrientationOption_ *)ptr)->soap_out(soap, tag, id, "tt:SceneOrientationOption"); - case SOAP_TYPE_tt__SceneOrientationMode_: - return ((tt__SceneOrientationMode_ *)ptr)->soap_out(soap, tag, id, "tt:SceneOrientationMode"); - case SOAP_TYPE_tt__RotateMode_: - return ((tt__RotateMode_ *)ptr)->soap_out(soap, tag, id, "tt:RotateMode"); - case SOAP_TYPE_tt__Name__: - return ((tt__Name__ *)ptr)->soap_out(soap, tag, id, "tt:Name"); - case SOAP_TYPE_tt__Name: - return soap_out_tt__Name(soap, tag, id, (const std::string *)ptr, "tt:Name"); - case SOAP_TYPE_tt__Entity_: - return ((tt__Entity_ *)ptr)->soap_out(soap, tag, id, "tt:Entity"); - case SOAP_TYPE_tt__MoveStatus_: - return ((tt__MoveStatus_ *)ptr)->soap_out(soap, tag, id, "tt:MoveStatus"); - case SOAP_TYPE_tt__ReferenceToken__: - return ((tt__ReferenceToken__ *)ptr)->soap_out(soap, tag, id, "tt:ReferenceToken"); - case SOAP_TYPE_tt__ReferenceToken: - return soap_out_tt__ReferenceToken(soap, tag, id, (const std::string *)ptr, "tt:ReferenceToken"); - case SOAP_TYPE_trc__EncodingTypes: - return soap_out_trc__EncodingTypes(soap, tag, id, (const std::string *)ptr, "trc:EncodingTypes"); - case SOAP_TYPE_trt__EncodingTypes: - return soap_out_trt__EncodingTypes(soap, tag, id, (const std::string *)ptr, "trt:EncodingTypes"); - case SOAP_TYPE_tds__EAPMethodTypes: - return soap_out_tds__EAPMethodTypes(soap, tag, id, (const std::string *)ptr, "tds:EAPMethodTypes"); - case SOAP_TYPE_tmd__DelayTimes: - return soap_out_tmd__DelayTimes(soap, tag, id, (const std::string *)ptr, "tmd:DelayTimes"); - case SOAP_TYPE_tt__ReferenceTokenList: - return soap_out_tt__ReferenceTokenList(soap, tag, id, (const std::string *)ptr, "tt:ReferenceTokenList"); - case SOAP_TYPE_tt__StringList: - return soap_out_tt__StringList(soap, tag, id, (const std::string *)ptr, "tt:StringList"); - case SOAP_TYPE_tt__StringAttrList: - return soap_out_tt__StringAttrList(soap, tag, id, (const std::string *)ptr, "tt:StringAttrList"); - case SOAP_TYPE_tt__FloatAttrList: - return soap_out_tt__FloatAttrList(soap, tag, id, (const std::string *)ptr, "tt:FloatAttrList"); - case SOAP_TYPE_tt__IntAttrList: - return soap_out_tt__IntAttrList(soap, tag, id, (const std::string *)ptr, "tt:IntAttrList"); - case SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType: - return soap_out_wsnt__AbsoluteOrRelativeTimeType(soap, tag, id, (const std::string *)ptr, "wsnt:AbsoluteOrRelativeTimeType"); - case SOAP_TYPE_wstop__TopicSetType: - return ((wstop__TopicSetType *)ptr)->soap_out(soap, tag, id, "wstop:TopicSetType"); - case SOAP_TYPE_wstop__TopicType: - return ((wstop__TopicType *)ptr)->soap_out(soap, tag, id, "wstop:TopicType"); - case SOAP_TYPE_wstop__TopicNamespaceType: - return ((wstop__TopicNamespaceType *)ptr)->soap_out(soap, tag, id, "wstop:TopicNamespaceType"); - case SOAP_TYPE_wstop__QueryExpressionType: - return ((wstop__QueryExpressionType *)ptr)->soap_out(soap, tag, id, "wstop:QueryExpressionType"); - case SOAP_TYPE_wstop__ExtensibleDocumented: - return ((wstop__ExtensibleDocumented *)ptr)->soap_out(soap, tag, id, "wstop:ExtensibleDocumented"); - case SOAP_TYPE_wstop__Documentation: - return ((wstop__Documentation *)ptr)->soap_out(soap, tag, id, "wstop:Documentation"); - case SOAP_TYPE__tse__EndSearchResponse: - return ((_tse__EndSearchResponse *)ptr)->soap_out(soap, "tse:EndSearchResponse", id, ""); - case SOAP_TYPE__tse__EndSearch: - return ((_tse__EndSearch *)ptr)->soap_out(soap, "tse:EndSearch", id, ""); - case SOAP_TYPE__tse__GetSearchStateResponse: - return ((_tse__GetSearchStateResponse *)ptr)->soap_out(soap, "tse:GetSearchStateResponse", id, ""); - case SOAP_TYPE__tse__GetSearchState: - return ((_tse__GetSearchState *)ptr)->soap_out(soap, "tse:GetSearchState", id, ""); - case SOAP_TYPE__tse__GetMetadataSearchResultsResponse: - return ((_tse__GetMetadataSearchResultsResponse *)ptr)->soap_out(soap, "tse:GetMetadataSearchResultsResponse", id, ""); - case SOAP_TYPE__tse__GetMetadataSearchResults: - return ((_tse__GetMetadataSearchResults *)ptr)->soap_out(soap, "tse:GetMetadataSearchResults", id, ""); - case SOAP_TYPE__tse__FindMetadataResponse: - return ((_tse__FindMetadataResponse *)ptr)->soap_out(soap, "tse:FindMetadataResponse", id, ""); - case SOAP_TYPE__tse__FindMetadata: - return ((_tse__FindMetadata *)ptr)->soap_out(soap, "tse:FindMetadata", id, ""); - case SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse: - return ((_tse__GetPTZPositionSearchResultsResponse *)ptr)->soap_out(soap, "tse:GetPTZPositionSearchResultsResponse", id, ""); - case SOAP_TYPE__tse__GetPTZPositionSearchResults: - return ((_tse__GetPTZPositionSearchResults *)ptr)->soap_out(soap, "tse:GetPTZPositionSearchResults", id, ""); - case SOAP_TYPE__tse__FindPTZPositionResponse: - return ((_tse__FindPTZPositionResponse *)ptr)->soap_out(soap, "tse:FindPTZPositionResponse", id, ""); - case SOAP_TYPE__tse__FindPTZPosition: - return ((_tse__FindPTZPosition *)ptr)->soap_out(soap, "tse:FindPTZPosition", id, ""); - case SOAP_TYPE__tse__GetEventSearchResultsResponse: - return ((_tse__GetEventSearchResultsResponse *)ptr)->soap_out(soap, "tse:GetEventSearchResultsResponse", id, ""); - case SOAP_TYPE__tse__GetEventSearchResults: - return ((_tse__GetEventSearchResults *)ptr)->soap_out(soap, "tse:GetEventSearchResults", id, ""); - case SOAP_TYPE__tse__FindEventsResponse: - return ((_tse__FindEventsResponse *)ptr)->soap_out(soap, "tse:FindEventsResponse", id, ""); - case SOAP_TYPE__tse__FindEvents: - return ((_tse__FindEvents *)ptr)->soap_out(soap, "tse:FindEvents", id, ""); - case SOAP_TYPE__tse__GetRecordingSearchResultsResponse: - return ((_tse__GetRecordingSearchResultsResponse *)ptr)->soap_out(soap, "tse:GetRecordingSearchResultsResponse", id, ""); - case SOAP_TYPE__tse__GetRecordingSearchResults: - return ((_tse__GetRecordingSearchResults *)ptr)->soap_out(soap, "tse:GetRecordingSearchResults", id, ""); - case SOAP_TYPE__tse__FindRecordingsResponse: - return ((_tse__FindRecordingsResponse *)ptr)->soap_out(soap, "tse:FindRecordingsResponse", id, ""); - case SOAP_TYPE__tse__FindRecordings: - return ((_tse__FindRecordings *)ptr)->soap_out(soap, "tse:FindRecordings", id, ""); - case SOAP_TYPE__tse__GetMediaAttributesResponse: - return ((_tse__GetMediaAttributesResponse *)ptr)->soap_out(soap, "tse:GetMediaAttributesResponse", id, ""); - case SOAP_TYPE__tse__GetMediaAttributes: - return ((_tse__GetMediaAttributes *)ptr)->soap_out(soap, "tse:GetMediaAttributes", id, ""); - case SOAP_TYPE__tse__GetRecordingInformationResponse: - return ((_tse__GetRecordingInformationResponse *)ptr)->soap_out(soap, "tse:GetRecordingInformationResponse", id, ""); - case SOAP_TYPE__tse__GetRecordingInformation: - return ((_tse__GetRecordingInformation *)ptr)->soap_out(soap, "tse:GetRecordingInformation", id, ""); - case SOAP_TYPE__tse__GetRecordingSummaryResponse: - return ((_tse__GetRecordingSummaryResponse *)ptr)->soap_out(soap, "tse:GetRecordingSummaryResponse", id, ""); - case SOAP_TYPE__tse__GetRecordingSummary: - return ((_tse__GetRecordingSummary *)ptr)->soap_out(soap, "tse:GetRecordingSummary", id, ""); - case SOAP_TYPE__tse__GetServiceCapabilitiesResponse: - return ((_tse__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "tse:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__tse__GetServiceCapabilities: - return ((_tse__GetServiceCapabilities *)ptr)->soap_out(soap, "tse:GetServiceCapabilities", id, ""); - case SOAP_TYPE_tse__Capabilities: - return ((tse__Capabilities *)ptr)->soap_out(soap, tag, id, "tse:Capabilities"); - case SOAP_TYPE__trp__GetReplayConfigurationResponse: - return ((_trp__GetReplayConfigurationResponse *)ptr)->soap_out(soap, "trp:GetReplayConfigurationResponse", id, ""); - case SOAP_TYPE__trp__GetReplayConfiguration: - return ((_trp__GetReplayConfiguration *)ptr)->soap_out(soap, "trp:GetReplayConfiguration", id, ""); - case SOAP_TYPE__trp__SetReplayConfigurationResponse: - return ((_trp__SetReplayConfigurationResponse *)ptr)->soap_out(soap, "trp:SetReplayConfigurationResponse", id, ""); - case SOAP_TYPE__trp__SetReplayConfiguration: - return ((_trp__SetReplayConfiguration *)ptr)->soap_out(soap, "trp:SetReplayConfiguration", id, ""); - case SOAP_TYPE__trp__GetReplayUriResponse: - return ((_trp__GetReplayUriResponse *)ptr)->soap_out(soap, "trp:GetReplayUriResponse", id, ""); - case SOAP_TYPE__trp__GetReplayUri: - return ((_trp__GetReplayUri *)ptr)->soap_out(soap, "trp:GetReplayUri", id, ""); - case SOAP_TYPE__trp__GetServiceCapabilitiesResponse: - return ((_trp__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "trp:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__trp__GetServiceCapabilities: - return ((_trp__GetServiceCapabilities *)ptr)->soap_out(soap, "trp:GetServiceCapabilities", id, ""); - case SOAP_TYPE_trp__Capabilities: - return ((trp__Capabilities *)ptr)->soap_out(soap, tag, id, "trp:Capabilities"); - case SOAP_TYPE__trc__GetExportRecordedDataStateResponse: - return ((_trc__GetExportRecordedDataStateResponse *)ptr)->soap_out(soap, "trc:GetExportRecordedDataStateResponse", id, ""); - case SOAP_TYPE__trc__GetExportRecordedDataState: - return ((_trc__GetExportRecordedDataState *)ptr)->soap_out(soap, "trc:GetExportRecordedDataState", id, ""); - case SOAP_TYPE__trc__StopExportRecordedDataResponse: - return ((_trc__StopExportRecordedDataResponse *)ptr)->soap_out(soap, "trc:StopExportRecordedDataResponse", id, ""); - case SOAP_TYPE__trc__StopExportRecordedData: - return ((_trc__StopExportRecordedData *)ptr)->soap_out(soap, "trc:StopExportRecordedData", id, ""); - case SOAP_TYPE__trc__ExportRecordedDataResponse: - return ((_trc__ExportRecordedDataResponse *)ptr)->soap_out(soap, "trc:ExportRecordedDataResponse", id, ""); - case SOAP_TYPE__trc__ExportRecordedData: - return ((_trc__ExportRecordedData *)ptr)->soap_out(soap, "trc:ExportRecordedData", id, ""); - case SOAP_TYPE__trc__GetRecordingOptionsResponse: - return ((_trc__GetRecordingOptionsResponse *)ptr)->soap_out(soap, "trc:GetRecordingOptionsResponse", id, ""); - case SOAP_TYPE__trc__GetRecordingOptions: - return ((_trc__GetRecordingOptions *)ptr)->soap_out(soap, "trc:GetRecordingOptions", id, ""); - case SOAP_TYPE__trc__GetRecordingJobStateResponse: - return ((_trc__GetRecordingJobStateResponse *)ptr)->soap_out(soap, "trc:GetRecordingJobStateResponse", id, ""); - case SOAP_TYPE__trc__GetRecordingJobState: - return ((_trc__GetRecordingJobState *)ptr)->soap_out(soap, "trc:GetRecordingJobState", id, ""); - case SOAP_TYPE__trc__SetRecordingJobModeResponse: - return ((_trc__SetRecordingJobModeResponse *)ptr)->soap_out(soap, "trc:SetRecordingJobModeResponse", id, ""); - case SOAP_TYPE__trc__SetRecordingJobMode: - return ((_trc__SetRecordingJobMode *)ptr)->soap_out(soap, "trc:SetRecordingJobMode", id, ""); - case SOAP_TYPE__trc__GetRecordingJobConfigurationResponse: - return ((_trc__GetRecordingJobConfigurationResponse *)ptr)->soap_out(soap, "trc:GetRecordingJobConfigurationResponse", id, ""); - case SOAP_TYPE__trc__GetRecordingJobConfiguration: - return ((_trc__GetRecordingJobConfiguration *)ptr)->soap_out(soap, "trc:GetRecordingJobConfiguration", id, ""); - case SOAP_TYPE__trc__SetRecordingJobConfigurationResponse: - return ((_trc__SetRecordingJobConfigurationResponse *)ptr)->soap_out(soap, "trc:SetRecordingJobConfigurationResponse", id, ""); - case SOAP_TYPE__trc__SetRecordingJobConfiguration: - return ((_trc__SetRecordingJobConfiguration *)ptr)->soap_out(soap, "trc:SetRecordingJobConfiguration", id, ""); - case SOAP_TYPE__trc__GetRecordingJobsResponse: - return ((_trc__GetRecordingJobsResponse *)ptr)->soap_out(soap, "trc:GetRecordingJobsResponse", id, ""); - case SOAP_TYPE__trc__GetRecordingJobs: - return ((_trc__GetRecordingJobs *)ptr)->soap_out(soap, "trc:GetRecordingJobs", id, ""); - case SOAP_TYPE__trc__DeleteRecordingJobResponse: - return ((_trc__DeleteRecordingJobResponse *)ptr)->soap_out(soap, "trc:DeleteRecordingJobResponse", id, ""); - case SOAP_TYPE__trc__DeleteRecordingJob: - return ((_trc__DeleteRecordingJob *)ptr)->soap_out(soap, "trc:DeleteRecordingJob", id, ""); - case SOAP_TYPE__trc__CreateRecordingJobResponse: - return ((_trc__CreateRecordingJobResponse *)ptr)->soap_out(soap, "trc:CreateRecordingJobResponse", id, ""); - case SOAP_TYPE__trc__CreateRecordingJob: - return ((_trc__CreateRecordingJob *)ptr)->soap_out(soap, "trc:CreateRecordingJob", id, ""); - case SOAP_TYPE__trc__SetTrackConfigurationResponse: - return ((_trc__SetTrackConfigurationResponse *)ptr)->soap_out(soap, "trc:SetTrackConfigurationResponse", id, ""); - case SOAP_TYPE__trc__SetTrackConfiguration: - return ((_trc__SetTrackConfiguration *)ptr)->soap_out(soap, "trc:SetTrackConfiguration", id, ""); - case SOAP_TYPE__trc__GetTrackConfigurationResponse: - return ((_trc__GetTrackConfigurationResponse *)ptr)->soap_out(soap, "trc:GetTrackConfigurationResponse", id, ""); - case SOAP_TYPE__trc__GetTrackConfiguration: - return ((_trc__GetTrackConfiguration *)ptr)->soap_out(soap, "trc:GetTrackConfiguration", id, ""); - case SOAP_TYPE__trc__DeleteTrackResponse: - return ((_trc__DeleteTrackResponse *)ptr)->soap_out(soap, "trc:DeleteTrackResponse", id, ""); - case SOAP_TYPE__trc__DeleteTrack: - return ((_trc__DeleteTrack *)ptr)->soap_out(soap, "trc:DeleteTrack", id, ""); - case SOAP_TYPE__trc__CreateTrackResponse: - return ((_trc__CreateTrackResponse *)ptr)->soap_out(soap, "trc:CreateTrackResponse", id, ""); - case SOAP_TYPE__trc__CreateTrack: - return ((_trc__CreateTrack *)ptr)->soap_out(soap, "trc:CreateTrack", id, ""); - case SOAP_TYPE__trc__GetRecordingConfigurationResponse: - return ((_trc__GetRecordingConfigurationResponse *)ptr)->soap_out(soap, "trc:GetRecordingConfigurationResponse", id, ""); - case SOAP_TYPE__trc__GetRecordingConfiguration: - return ((_trc__GetRecordingConfiguration *)ptr)->soap_out(soap, "trc:GetRecordingConfiguration", id, ""); - case SOAP_TYPE__trc__SetRecordingConfigurationResponse: - return ((_trc__SetRecordingConfigurationResponse *)ptr)->soap_out(soap, "trc:SetRecordingConfigurationResponse", id, ""); - case SOAP_TYPE__trc__SetRecordingConfiguration: - return ((_trc__SetRecordingConfiguration *)ptr)->soap_out(soap, "trc:SetRecordingConfiguration", id, ""); - case SOAP_TYPE__trc__GetRecordingsResponse: - return ((_trc__GetRecordingsResponse *)ptr)->soap_out(soap, "trc:GetRecordingsResponse", id, ""); - case SOAP_TYPE__trc__GetRecordings: - return ((_trc__GetRecordings *)ptr)->soap_out(soap, "trc:GetRecordings", id, ""); - case SOAP_TYPE__trc__DeleteRecordingResponse: - return ((_trc__DeleteRecordingResponse *)ptr)->soap_out(soap, "trc:DeleteRecordingResponse", id, ""); - case SOAP_TYPE__trc__DeleteRecording: - return ((_trc__DeleteRecording *)ptr)->soap_out(soap, "trc:DeleteRecording", id, ""); - case SOAP_TYPE__trc__CreateRecordingResponse: - return ((_trc__CreateRecordingResponse *)ptr)->soap_out(soap, "trc:CreateRecordingResponse", id, ""); - case SOAP_TYPE__trc__CreateRecording: - return ((_trc__CreateRecording *)ptr)->soap_out(soap, "trc:CreateRecording", id, ""); - case SOAP_TYPE__trc__GetServiceCapabilitiesResponse: - return ((_trc__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "trc:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__trc__GetServiceCapabilities: - return ((_trc__GetServiceCapabilities *)ptr)->soap_out(soap, "trc:GetServiceCapabilities", id, ""); - case SOAP_TYPE_trc__TrackOptions: - return ((trc__TrackOptions *)ptr)->soap_out(soap, tag, id, "trc:TrackOptions"); - case SOAP_TYPE_trc__JobOptions: - return ((trc__JobOptions *)ptr)->soap_out(soap, tag, id, "trc:JobOptions"); - case SOAP_TYPE_trc__RecordingOptions: - return ((trc__RecordingOptions *)ptr)->soap_out(soap, tag, id, "trc:RecordingOptions"); - case SOAP_TYPE_trc__Capabilities: - return ((trc__Capabilities *)ptr)->soap_out(soap, tag, id, "trc:Capabilities"); - case SOAP_TYPE__trv__GetReceiverStateResponse: - return ((_trv__GetReceiverStateResponse *)ptr)->soap_out(soap, "trv:GetReceiverStateResponse", id, ""); - case SOAP_TYPE__trv__GetReceiverState: - return ((_trv__GetReceiverState *)ptr)->soap_out(soap, "trv:GetReceiverState", id, ""); - case SOAP_TYPE__trv__SetReceiverModeResponse: - return ((_trv__SetReceiverModeResponse *)ptr)->soap_out(soap, "trv:SetReceiverModeResponse", id, ""); - case SOAP_TYPE__trv__SetReceiverMode: - return ((_trv__SetReceiverMode *)ptr)->soap_out(soap, "trv:SetReceiverMode", id, ""); - case SOAP_TYPE__trv__ConfigureReceiverResponse: - return ((_trv__ConfigureReceiverResponse *)ptr)->soap_out(soap, "trv:ConfigureReceiverResponse", id, ""); - case SOAP_TYPE__trv__ConfigureReceiver: - return ((_trv__ConfigureReceiver *)ptr)->soap_out(soap, "trv:ConfigureReceiver", id, ""); - case SOAP_TYPE__trv__DeleteReceiverResponse: - return ((_trv__DeleteReceiverResponse *)ptr)->soap_out(soap, "trv:DeleteReceiverResponse", id, ""); - case SOAP_TYPE__trv__DeleteReceiver: - return ((_trv__DeleteReceiver *)ptr)->soap_out(soap, "trv:DeleteReceiver", id, ""); - case SOAP_TYPE__trv__CreateReceiverResponse: - return ((_trv__CreateReceiverResponse *)ptr)->soap_out(soap, "trv:CreateReceiverResponse", id, ""); - case SOAP_TYPE__trv__CreateReceiver: - return ((_trv__CreateReceiver *)ptr)->soap_out(soap, "trv:CreateReceiver", id, ""); - case SOAP_TYPE__trv__GetReceiverResponse: - return ((_trv__GetReceiverResponse *)ptr)->soap_out(soap, "trv:GetReceiverResponse", id, ""); - case SOAP_TYPE__trv__GetReceiver: - return ((_trv__GetReceiver *)ptr)->soap_out(soap, "trv:GetReceiver", id, ""); - case SOAP_TYPE__trv__GetReceiversResponse: - return ((_trv__GetReceiversResponse *)ptr)->soap_out(soap, "trv:GetReceiversResponse", id, ""); - case SOAP_TYPE__trv__GetReceivers: - return ((_trv__GetReceivers *)ptr)->soap_out(soap, "trv:GetReceivers", id, ""); - case SOAP_TYPE__trv__GetServiceCapabilitiesResponse: - return ((_trv__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "trv:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__trv__GetServiceCapabilities: - return ((_trv__GetServiceCapabilities *)ptr)->soap_out(soap, "trv:GetServiceCapabilities", id, ""); - case SOAP_TYPE_trv__Capabilities: - return ((trv__Capabilities *)ptr)->soap_out(soap, tag, id, "trv:Capabilities"); - case SOAP_TYPE_wsrfr__ResourceUnavailableFaultType: - return ((wsrfr__ResourceUnavailableFaultType *)ptr)->soap_out(soap, tag, id, "wsrfr:ResourceUnavailableFaultType"); - case SOAP_TYPE_wsrfr__ResourceUnknownFaultType: - return ((wsrfr__ResourceUnknownFaultType *)ptr)->soap_out(soap, tag, id, "wsrfr:ResourceUnknownFaultType"); - case SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse: - return ((_tptz__GetCompatibleConfigurationsResponse *)ptr)->soap_out(soap, "tptz:GetCompatibleConfigurationsResponse", id, ""); - case SOAP_TYPE__tptz__GetCompatibleConfigurations: - return ((_tptz__GetCompatibleConfigurations *)ptr)->soap_out(soap, "tptz:GetCompatibleConfigurations", id, ""); - case SOAP_TYPE__tptz__RemovePresetTourResponse: - return ((_tptz__RemovePresetTourResponse *)ptr)->soap_out(soap, "tptz:RemovePresetTourResponse", id, ""); - case SOAP_TYPE__tptz__RemovePresetTour: - return ((_tptz__RemovePresetTour *)ptr)->soap_out(soap, "tptz:RemovePresetTour", id, ""); - case SOAP_TYPE__tptz__OperatePresetTourResponse: - return ((_tptz__OperatePresetTourResponse *)ptr)->soap_out(soap, "tptz:OperatePresetTourResponse", id, ""); - case SOAP_TYPE__tptz__OperatePresetTour: - return ((_tptz__OperatePresetTour *)ptr)->soap_out(soap, "tptz:OperatePresetTour", id, ""); - case SOAP_TYPE__tptz__ModifyPresetTourResponse: - return ((_tptz__ModifyPresetTourResponse *)ptr)->soap_out(soap, "tptz:ModifyPresetTourResponse", id, ""); - case SOAP_TYPE__tptz__ModifyPresetTour: - return ((_tptz__ModifyPresetTour *)ptr)->soap_out(soap, "tptz:ModifyPresetTour", id, ""); - case SOAP_TYPE__tptz__CreatePresetTourResponse: - return ((_tptz__CreatePresetTourResponse *)ptr)->soap_out(soap, "tptz:CreatePresetTourResponse", id, ""); - case SOAP_TYPE__tptz__CreatePresetTour: - return ((_tptz__CreatePresetTour *)ptr)->soap_out(soap, "tptz:CreatePresetTour", id, ""); - case SOAP_TYPE__tptz__GetPresetTourOptionsResponse: - return ((_tptz__GetPresetTourOptionsResponse *)ptr)->soap_out(soap, "tptz:GetPresetTourOptionsResponse", id, ""); - case SOAP_TYPE__tptz__GetPresetTourOptions: - return ((_tptz__GetPresetTourOptions *)ptr)->soap_out(soap, "tptz:GetPresetTourOptions", id, ""); - case SOAP_TYPE__tptz__GetPresetTourResponse: - return ((_tptz__GetPresetTourResponse *)ptr)->soap_out(soap, "tptz:GetPresetTourResponse", id, ""); - case SOAP_TYPE__tptz__GetPresetTour: - return ((_tptz__GetPresetTour *)ptr)->soap_out(soap, "tptz:GetPresetTour", id, ""); - case SOAP_TYPE__tptz__GetPresetToursResponse: - return ((_tptz__GetPresetToursResponse *)ptr)->soap_out(soap, "tptz:GetPresetToursResponse", id, ""); - case SOAP_TYPE__tptz__GetPresetTours: - return ((_tptz__GetPresetTours *)ptr)->soap_out(soap, "tptz:GetPresetTours", id, ""); - case SOAP_TYPE__tptz__StopResponse: - return ((_tptz__StopResponse *)ptr)->soap_out(soap, "tptz:StopResponse", id, ""); - case SOAP_TYPE__tptz__Stop: - return ((_tptz__Stop *)ptr)->soap_out(soap, "tptz:Stop", id, ""); - case SOAP_TYPE__tptz__AbsoluteMoveResponse: - return ((_tptz__AbsoluteMoveResponse *)ptr)->soap_out(soap, "tptz:AbsoluteMoveResponse", id, ""); - case SOAP_TYPE__tptz__AbsoluteMove: - return ((_tptz__AbsoluteMove *)ptr)->soap_out(soap, "tptz:AbsoluteMove", id, ""); - case SOAP_TYPE__tptz__RelativeMoveResponse: - return ((_tptz__RelativeMoveResponse *)ptr)->soap_out(soap, "tptz:RelativeMoveResponse", id, ""); - case SOAP_TYPE__tptz__RelativeMove: - return ((_tptz__RelativeMove *)ptr)->soap_out(soap, "tptz:RelativeMove", id, ""); - case SOAP_TYPE__tptz__ContinuousMoveResponse: - return ((_tptz__ContinuousMoveResponse *)ptr)->soap_out(soap, "tptz:ContinuousMoveResponse", id, ""); - case SOAP_TYPE__tptz__ContinuousMove: - return ((_tptz__ContinuousMove *)ptr)->soap_out(soap, "tptz:ContinuousMove", id, ""); - case SOAP_TYPE__tptz__SetHomePositionResponse: - return ((_tptz__SetHomePositionResponse *)ptr)->soap_out(soap, "tptz:SetHomePositionResponse", id, ""); - case SOAP_TYPE__tptz__SetHomePosition: - return ((_tptz__SetHomePosition *)ptr)->soap_out(soap, "tptz:SetHomePosition", id, ""); - case SOAP_TYPE__tptz__GotoHomePositionResponse: - return ((_tptz__GotoHomePositionResponse *)ptr)->soap_out(soap, "tptz:GotoHomePositionResponse", id, ""); - case SOAP_TYPE__tptz__GotoHomePosition: - return ((_tptz__GotoHomePosition *)ptr)->soap_out(soap, "tptz:GotoHomePosition", id, ""); - case SOAP_TYPE__tptz__GetStatusResponse: - return ((_tptz__GetStatusResponse *)ptr)->soap_out(soap, "tptz:GetStatusResponse", id, ""); - case SOAP_TYPE__tptz__GetStatus: - return ((_tptz__GetStatus *)ptr)->soap_out(soap, "tptz:GetStatus", id, ""); - case SOAP_TYPE__tptz__GotoPresetResponse: - return ((_tptz__GotoPresetResponse *)ptr)->soap_out(soap, "tptz:GotoPresetResponse", id, ""); - case SOAP_TYPE__tptz__GotoPreset: - return ((_tptz__GotoPreset *)ptr)->soap_out(soap, "tptz:GotoPreset", id, ""); - case SOAP_TYPE__tptz__RemovePresetResponse: - return ((_tptz__RemovePresetResponse *)ptr)->soap_out(soap, "tptz:RemovePresetResponse", id, ""); - case SOAP_TYPE__tptz__RemovePreset: - return ((_tptz__RemovePreset *)ptr)->soap_out(soap, "tptz:RemovePreset", id, ""); - case SOAP_TYPE__tptz__SetPresetResponse: - return ((_tptz__SetPresetResponse *)ptr)->soap_out(soap, "tptz:SetPresetResponse", id, ""); - case SOAP_TYPE__tptz__SetPreset: - return ((_tptz__SetPreset *)ptr)->soap_out(soap, "tptz:SetPreset", id, ""); - case SOAP_TYPE__tptz__GetPresetsResponse: - return ((_tptz__GetPresetsResponse *)ptr)->soap_out(soap, "tptz:GetPresetsResponse", id, ""); - case SOAP_TYPE__tptz__GetPresets: - return ((_tptz__GetPresets *)ptr)->soap_out(soap, "tptz:GetPresets", id, ""); - case SOAP_TYPE__tptz__SendAuxiliaryCommandResponse: - return ((_tptz__SendAuxiliaryCommandResponse *)ptr)->soap_out(soap, "tptz:SendAuxiliaryCommandResponse", id, ""); - case SOAP_TYPE__tptz__SendAuxiliaryCommand: - return ((_tptz__SendAuxiliaryCommand *)ptr)->soap_out(soap, "tptz:SendAuxiliaryCommand", id, ""); - case SOAP_TYPE__tptz__GetConfigurationOptionsResponse: - return ((_tptz__GetConfigurationOptionsResponse *)ptr)->soap_out(soap, "tptz:GetConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__tptz__GetConfigurationOptions: - return ((_tptz__GetConfigurationOptions *)ptr)->soap_out(soap, "tptz:GetConfigurationOptions", id, ""); - case SOAP_TYPE__tptz__SetConfigurationResponse: - return ((_tptz__SetConfigurationResponse *)ptr)->soap_out(soap, "tptz:SetConfigurationResponse", id, ""); - case SOAP_TYPE__tptz__SetConfiguration: - return ((_tptz__SetConfiguration *)ptr)->soap_out(soap, "tptz:SetConfiguration", id, ""); - case SOAP_TYPE__tptz__GetConfigurationResponse: - return ((_tptz__GetConfigurationResponse *)ptr)->soap_out(soap, "tptz:GetConfigurationResponse", id, ""); - case SOAP_TYPE__tptz__GetConfiguration: - return ((_tptz__GetConfiguration *)ptr)->soap_out(soap, "tptz:GetConfiguration", id, ""); - case SOAP_TYPE__tptz__GetConfigurationsResponse: - return ((_tptz__GetConfigurationsResponse *)ptr)->soap_out(soap, "tptz:GetConfigurationsResponse", id, ""); - case SOAP_TYPE__tptz__GetConfigurations: - return ((_tptz__GetConfigurations *)ptr)->soap_out(soap, "tptz:GetConfigurations", id, ""); - case SOAP_TYPE__tptz__GetNodeResponse: - return ((_tptz__GetNodeResponse *)ptr)->soap_out(soap, "tptz:GetNodeResponse", id, ""); - case SOAP_TYPE__tptz__GetNode: - return ((_tptz__GetNode *)ptr)->soap_out(soap, "tptz:GetNode", id, ""); - case SOAP_TYPE__tptz__GetNodesResponse: - return ((_tptz__GetNodesResponse *)ptr)->soap_out(soap, "tptz:GetNodesResponse", id, ""); - case SOAP_TYPE__tptz__GetNodes: - return ((_tptz__GetNodes *)ptr)->soap_out(soap, "tptz:GetNodes", id, ""); - case SOAP_TYPE__tptz__GetServiceCapabilitiesResponse: - return ((_tptz__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "tptz:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__tptz__GetServiceCapabilities: - return ((_tptz__GetServiceCapabilities *)ptr)->soap_out(soap, "tptz:GetServiceCapabilities", id, ""); - case SOAP_TYPE_tptz__Capabilities: - return ((tptz__Capabilities *)ptr)->soap_out(soap, tag, id, "tptz:Capabilities"); - case SOAP_TYPE__trt__DeleteOSDResponse: - return ((_trt__DeleteOSDResponse *)ptr)->soap_out(soap, "trt:DeleteOSDResponse", id, ""); - case SOAP_TYPE__trt__DeleteOSD: - return ((_trt__DeleteOSD *)ptr)->soap_out(soap, "trt:DeleteOSD", id, ""); - case SOAP_TYPE__trt__CreateOSDResponse: - return ((_trt__CreateOSDResponse *)ptr)->soap_out(soap, "trt:CreateOSDResponse", id, ""); - case SOAP_TYPE__trt__CreateOSD: - return ((_trt__CreateOSD *)ptr)->soap_out(soap, "trt:CreateOSD", id, ""); - case SOAP_TYPE__trt__GetOSDOptionsResponse: - return ((_trt__GetOSDOptionsResponse *)ptr)->soap_out(soap, "trt:GetOSDOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetOSDOptions: - return ((_trt__GetOSDOptions *)ptr)->soap_out(soap, "trt:GetOSDOptions", id, ""); - case SOAP_TYPE__trt__SetOSDResponse: - return ((_trt__SetOSDResponse *)ptr)->soap_out(soap, "trt:SetOSDResponse", id, ""); - case SOAP_TYPE__trt__SetOSD: - return ((_trt__SetOSD *)ptr)->soap_out(soap, "trt:SetOSD", id, ""); - case SOAP_TYPE__trt__GetOSDResponse: - return ((_trt__GetOSDResponse *)ptr)->soap_out(soap, "trt:GetOSDResponse", id, ""); - case SOAP_TYPE__trt__GetOSD: - return ((_trt__GetOSD *)ptr)->soap_out(soap, "trt:GetOSD", id, ""); - case SOAP_TYPE__trt__GetOSDsResponse: - return ((_trt__GetOSDsResponse *)ptr)->soap_out(soap, "trt:GetOSDsResponse", id, ""); - case SOAP_TYPE__trt__GetOSDs: - return ((_trt__GetOSDs *)ptr)->soap_out(soap, "trt:GetOSDs", id, ""); - case SOAP_TYPE__trt__SetVideoSourceModeResponse: - return ((_trt__SetVideoSourceModeResponse *)ptr)->soap_out(soap, "trt:SetVideoSourceModeResponse", id, ""); - case SOAP_TYPE__trt__SetVideoSourceMode: - return ((_trt__SetVideoSourceMode *)ptr)->soap_out(soap, "trt:SetVideoSourceMode", id, ""); - case SOAP_TYPE__trt__GetVideoSourceModesResponse: - return ((_trt__GetVideoSourceModesResponse *)ptr)->soap_out(soap, "trt:GetVideoSourceModesResponse", id, ""); - case SOAP_TYPE__trt__GetVideoSourceModes: - return ((_trt__GetVideoSourceModes *)ptr)->soap_out(soap, "trt:GetVideoSourceModes", id, ""); - case SOAP_TYPE__trt__GetSnapshotUriResponse: - return ((_trt__GetSnapshotUriResponse *)ptr)->soap_out(soap, "trt:GetSnapshotUriResponse", id, ""); - case SOAP_TYPE__trt__GetSnapshotUri: - return ((_trt__GetSnapshotUri *)ptr)->soap_out(soap, "trt:GetSnapshotUri", id, ""); - case SOAP_TYPE__trt__SetSynchronizationPointResponse: - return ((_trt__SetSynchronizationPointResponse *)ptr)->soap_out(soap, "trt:SetSynchronizationPointResponse", id, ""); - case SOAP_TYPE__trt__SetSynchronizationPoint: - return ((_trt__SetSynchronizationPoint *)ptr)->soap_out(soap, "trt:SetSynchronizationPoint", id, ""); - case SOAP_TYPE__trt__StopMulticastStreamingResponse: - return ((_trt__StopMulticastStreamingResponse *)ptr)->soap_out(soap, "trt:StopMulticastStreamingResponse", id, ""); - case SOAP_TYPE__trt__StopMulticastStreaming: - return ((_trt__StopMulticastStreaming *)ptr)->soap_out(soap, "trt:StopMulticastStreaming", id, ""); - case SOAP_TYPE__trt__StartMulticastStreamingResponse: - return ((_trt__StartMulticastStreamingResponse *)ptr)->soap_out(soap, "trt:StartMulticastStreamingResponse", id, ""); - case SOAP_TYPE__trt__StartMulticastStreaming: - return ((_trt__StartMulticastStreaming *)ptr)->soap_out(soap, "trt:StartMulticastStreaming", id, ""); - case SOAP_TYPE__trt__GetStreamUriResponse: - return ((_trt__GetStreamUriResponse *)ptr)->soap_out(soap, "trt:GetStreamUriResponse", id, ""); - case SOAP_TYPE__trt__GetStreamUri: - return ((_trt__GetStreamUri *)ptr)->soap_out(soap, "trt:GetStreamUri", id, ""); - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse: - return ((_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *)ptr)->soap_out(soap, "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse", id, ""); - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances: - return ((_trt__GetGuaranteedNumberOfVideoEncoderInstances *)ptr)->soap_out(soap, "trt:GetGuaranteedNumberOfVideoEncoderInstances", id, ""); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse: - return ((_trt__GetAudioDecoderConfigurationOptionsResponse *)ptr)->soap_out(soap, "trt:GetAudioDecoderConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions: - return ((_trt__GetAudioDecoderConfigurationOptions *)ptr)->soap_out(soap, "trt:GetAudioDecoderConfigurationOptions", id, ""); - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse: - return ((_trt__GetAudioOutputConfigurationOptionsResponse *)ptr)->soap_out(soap, "trt:GetAudioOutputConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptions: - return ((_trt__GetAudioOutputConfigurationOptions *)ptr)->soap_out(soap, "trt:GetAudioOutputConfigurationOptions", id, ""); - case SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse: - return ((_trt__GetMetadataConfigurationOptionsResponse *)ptr)->soap_out(soap, "trt:GetMetadataConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetMetadataConfigurationOptions: - return ((_trt__GetMetadataConfigurationOptions *)ptr)->soap_out(soap, "trt:GetMetadataConfigurationOptions", id, ""); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse: - return ((_trt__GetAudioEncoderConfigurationOptionsResponse *)ptr)->soap_out(soap, "trt:GetAudioEncoderConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions: - return ((_trt__GetAudioEncoderConfigurationOptions *)ptr)->soap_out(soap, "trt:GetAudioEncoderConfigurationOptions", id, ""); - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse: - return ((_trt__GetAudioSourceConfigurationOptionsResponse *)ptr)->soap_out(soap, "trt:GetAudioSourceConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptions: - return ((_trt__GetAudioSourceConfigurationOptions *)ptr)->soap_out(soap, "trt:GetAudioSourceConfigurationOptions", id, ""); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse: - return ((_trt__GetVideoEncoderConfigurationOptionsResponse *)ptr)->soap_out(soap, "trt:GetVideoEncoderConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions: - return ((_trt__GetVideoEncoderConfigurationOptions *)ptr)->soap_out(soap, "trt:GetVideoEncoderConfigurationOptions", id, ""); - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse: - return ((_trt__GetVideoSourceConfigurationOptionsResponse *)ptr)->soap_out(soap, "trt:GetVideoSourceConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptions: - return ((_trt__GetVideoSourceConfigurationOptions *)ptr)->soap_out(soap, "trt:GetVideoSourceConfigurationOptions", id, ""); - case SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse: - return ((_trt__SetAudioDecoderConfigurationResponse *)ptr)->soap_out(soap, "trt:SetAudioDecoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetAudioDecoderConfiguration: - return ((_trt__SetAudioDecoderConfiguration *)ptr)->soap_out(soap, "trt:SetAudioDecoderConfiguration", id, ""); - case SOAP_TYPE__trt__SetAudioOutputConfigurationResponse: - return ((_trt__SetAudioOutputConfigurationResponse *)ptr)->soap_out(soap, "trt:SetAudioOutputConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetAudioOutputConfiguration: - return ((_trt__SetAudioOutputConfiguration *)ptr)->soap_out(soap, "trt:SetAudioOutputConfiguration", id, ""); - case SOAP_TYPE__trt__SetMetadataConfigurationResponse: - return ((_trt__SetMetadataConfigurationResponse *)ptr)->soap_out(soap, "trt:SetMetadataConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetMetadataConfiguration: - return ((_trt__SetMetadataConfiguration *)ptr)->soap_out(soap, "trt:SetMetadataConfiguration", id, ""); - case SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse: - return ((_trt__SetVideoAnalyticsConfigurationResponse *)ptr)->soap_out(soap, "trt:SetVideoAnalyticsConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetVideoAnalyticsConfiguration: - return ((_trt__SetVideoAnalyticsConfiguration *)ptr)->soap_out(soap, "trt:SetVideoAnalyticsConfiguration", id, ""); - case SOAP_TYPE__trt__SetAudioSourceConfigurationResponse: - return ((_trt__SetAudioSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:SetAudioSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetAudioSourceConfiguration: - return ((_trt__SetAudioSourceConfiguration *)ptr)->soap_out(soap, "trt:SetAudioSourceConfiguration", id, ""); - case SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse: - return ((_trt__SetAudioEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:SetAudioEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetAudioEncoderConfiguration: - return ((_trt__SetAudioEncoderConfiguration *)ptr)->soap_out(soap, "trt:SetAudioEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__SetVideoSourceConfigurationResponse: - return ((_trt__SetVideoSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:SetVideoSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetVideoSourceConfiguration: - return ((_trt__SetVideoSourceConfiguration *)ptr)->soap_out(soap, "trt:SetVideoSourceConfiguration", id, ""); - case SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse: - return ((_trt__SetVideoEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:SetVideoEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__SetVideoEncoderConfiguration: - return ((_trt__SetVideoEncoderConfiguration *)ptr)->soap_out(soap, "trt:SetVideoEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse: - return ((_trt__GetCompatibleAudioDecoderConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleAudioDecoderConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations: - return ((_trt__GetCompatibleAudioDecoderConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleAudioDecoderConfigurations", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse: - return ((_trt__GetCompatibleAudioOutputConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleAudioOutputConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations: - return ((_trt__GetCompatibleAudioOutputConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleAudioOutputConfigurations", id, ""); - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse: - return ((_trt__GetCompatibleMetadataConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleMetadataConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurations: - return ((_trt__GetCompatibleMetadataConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleMetadataConfigurations", id, ""); - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse: - return ((_trt__GetCompatibleVideoAnalyticsConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleVideoAnalyticsConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations: - return ((_trt__GetCompatibleVideoAnalyticsConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleVideoAnalyticsConfigurations", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse: - return ((_trt__GetCompatibleAudioSourceConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleAudioSourceConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations: - return ((_trt__GetCompatibleAudioSourceConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleAudioSourceConfigurations", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse: - return ((_trt__GetCompatibleAudioEncoderConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleAudioEncoderConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations: - return ((_trt__GetCompatibleAudioEncoderConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleAudioEncoderConfigurations", id, ""); - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse: - return ((_trt__GetCompatibleVideoSourceConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleVideoSourceConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations: - return ((_trt__GetCompatibleVideoSourceConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleVideoSourceConfigurations", id, ""); - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse: - return ((_trt__GetCompatibleVideoEncoderConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetCompatibleVideoEncoderConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations: - return ((_trt__GetCompatibleVideoEncoderConfigurations *)ptr)->soap_out(soap, "trt:GetCompatibleVideoEncoderConfigurations", id, ""); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse: - return ((_trt__GetAudioDecoderConfigurationResponse *)ptr)->soap_out(soap, "trt:GetAudioDecoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetAudioDecoderConfiguration: - return ((_trt__GetAudioDecoderConfiguration *)ptr)->soap_out(soap, "trt:GetAudioDecoderConfiguration", id, ""); - case SOAP_TYPE__trt__GetAudioOutputConfigurationResponse: - return ((_trt__GetAudioOutputConfigurationResponse *)ptr)->soap_out(soap, "trt:GetAudioOutputConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetAudioOutputConfiguration: - return ((_trt__GetAudioOutputConfiguration *)ptr)->soap_out(soap, "trt:GetAudioOutputConfiguration", id, ""); - case SOAP_TYPE__trt__GetMetadataConfigurationResponse: - return ((_trt__GetMetadataConfigurationResponse *)ptr)->soap_out(soap, "trt:GetMetadataConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetMetadataConfiguration: - return ((_trt__GetMetadataConfiguration *)ptr)->soap_out(soap, "trt:GetMetadataConfiguration", id, ""); - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse: - return ((_trt__GetVideoAnalyticsConfigurationResponse *)ptr)->soap_out(soap, "trt:GetVideoAnalyticsConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetVideoAnalyticsConfiguration: - return ((_trt__GetVideoAnalyticsConfiguration *)ptr)->soap_out(soap, "trt:GetVideoAnalyticsConfiguration", id, ""); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse: - return ((_trt__GetAudioEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:GetAudioEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetAudioEncoderConfiguration: - return ((_trt__GetAudioEncoderConfiguration *)ptr)->soap_out(soap, "trt:GetAudioEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__GetAudioSourceConfigurationResponse: - return ((_trt__GetAudioSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:GetAudioSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetAudioSourceConfiguration: - return ((_trt__GetAudioSourceConfiguration *)ptr)->soap_out(soap, "trt:GetAudioSourceConfiguration", id, ""); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse: - return ((_trt__GetVideoEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:GetVideoEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetVideoEncoderConfiguration: - return ((_trt__GetVideoEncoderConfiguration *)ptr)->soap_out(soap, "trt:GetVideoEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__GetVideoSourceConfigurationResponse: - return ((_trt__GetVideoSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:GetVideoSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__GetVideoSourceConfiguration: - return ((_trt__GetVideoSourceConfiguration *)ptr)->soap_out(soap, "trt:GetVideoSourceConfiguration", id, ""); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse: - return ((_trt__GetAudioDecoderConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetAudioDecoderConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioDecoderConfigurations: - return ((_trt__GetAudioDecoderConfigurations *)ptr)->soap_out(soap, "trt:GetAudioDecoderConfigurations", id, ""); - case SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse: - return ((_trt__GetAudioOutputConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetAudioOutputConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioOutputConfigurations: - return ((_trt__GetAudioOutputConfigurations *)ptr)->soap_out(soap, "trt:GetAudioOutputConfigurations", id, ""); - case SOAP_TYPE__trt__GetMetadataConfigurationsResponse: - return ((_trt__GetMetadataConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetMetadataConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetMetadataConfigurations: - return ((_trt__GetMetadataConfigurations *)ptr)->soap_out(soap, "trt:GetMetadataConfigurations", id, ""); - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse: - return ((_trt__GetVideoAnalyticsConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetVideoAnalyticsConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurations: - return ((_trt__GetVideoAnalyticsConfigurations *)ptr)->soap_out(soap, "trt:GetVideoAnalyticsConfigurations", id, ""); - case SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse: - return ((_trt__GetAudioSourceConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetAudioSourceConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioSourceConfigurations: - return ((_trt__GetAudioSourceConfigurations *)ptr)->soap_out(soap, "trt:GetAudioSourceConfigurations", id, ""); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse: - return ((_trt__GetAudioEncoderConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetAudioEncoderConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioEncoderConfigurations: - return ((_trt__GetAudioEncoderConfigurations *)ptr)->soap_out(soap, "trt:GetAudioEncoderConfigurations", id, ""); - case SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse: - return ((_trt__GetVideoSourceConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetVideoSourceConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetVideoSourceConfigurations: - return ((_trt__GetVideoSourceConfigurations *)ptr)->soap_out(soap, "trt:GetVideoSourceConfigurations", id, ""); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse: - return ((_trt__GetVideoEncoderConfigurationsResponse *)ptr)->soap_out(soap, "trt:GetVideoEncoderConfigurationsResponse", id, ""); - case SOAP_TYPE__trt__GetVideoEncoderConfigurations: - return ((_trt__GetVideoEncoderConfigurations *)ptr)->soap_out(soap, "trt:GetVideoEncoderConfigurations", id, ""); - case SOAP_TYPE__trt__DeleteProfileResponse: - return ((_trt__DeleteProfileResponse *)ptr)->soap_out(soap, "trt:DeleteProfileResponse", id, ""); - case SOAP_TYPE__trt__DeleteProfile: - return ((_trt__DeleteProfile *)ptr)->soap_out(soap, "trt:DeleteProfile", id, ""); - case SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse: - return ((_trt__RemoveAudioDecoderConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveAudioDecoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveAudioDecoderConfiguration: - return ((_trt__RemoveAudioDecoderConfiguration *)ptr)->soap_out(soap, "trt:RemoveAudioDecoderConfiguration", id, ""); - case SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse: - return ((_trt__AddAudioDecoderConfigurationResponse *)ptr)->soap_out(soap, "trt:AddAudioDecoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddAudioDecoderConfiguration: - return ((_trt__AddAudioDecoderConfiguration *)ptr)->soap_out(soap, "trt:AddAudioDecoderConfiguration", id, ""); - case SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse: - return ((_trt__RemoveAudioOutputConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveAudioOutputConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveAudioOutputConfiguration: - return ((_trt__RemoveAudioOutputConfiguration *)ptr)->soap_out(soap, "trt:RemoveAudioOutputConfiguration", id, ""); - case SOAP_TYPE__trt__AddAudioOutputConfigurationResponse: - return ((_trt__AddAudioOutputConfigurationResponse *)ptr)->soap_out(soap, "trt:AddAudioOutputConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddAudioOutputConfiguration: - return ((_trt__AddAudioOutputConfiguration *)ptr)->soap_out(soap, "trt:AddAudioOutputConfiguration", id, ""); - case SOAP_TYPE__trt__RemoveMetadataConfigurationResponse: - return ((_trt__RemoveMetadataConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveMetadataConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveMetadataConfiguration: - return ((_trt__RemoveMetadataConfiguration *)ptr)->soap_out(soap, "trt:RemoveMetadataConfiguration", id, ""); - case SOAP_TYPE__trt__AddMetadataConfigurationResponse: - return ((_trt__AddMetadataConfigurationResponse *)ptr)->soap_out(soap, "trt:AddMetadataConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddMetadataConfiguration: - return ((_trt__AddMetadataConfiguration *)ptr)->soap_out(soap, "trt:AddMetadataConfiguration", id, ""); - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse: - return ((_trt__RemoveVideoAnalyticsConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveVideoAnalyticsConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration: - return ((_trt__RemoveVideoAnalyticsConfiguration *)ptr)->soap_out(soap, "trt:RemoveVideoAnalyticsConfiguration", id, ""); - case SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse: - return ((_trt__AddVideoAnalyticsConfigurationResponse *)ptr)->soap_out(soap, "trt:AddVideoAnalyticsConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddVideoAnalyticsConfiguration: - return ((_trt__AddVideoAnalyticsConfiguration *)ptr)->soap_out(soap, "trt:AddVideoAnalyticsConfiguration", id, ""); - case SOAP_TYPE__trt__RemovePTZConfigurationResponse: - return ((_trt__RemovePTZConfigurationResponse *)ptr)->soap_out(soap, "trt:RemovePTZConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemovePTZConfiguration: - return ((_trt__RemovePTZConfiguration *)ptr)->soap_out(soap, "trt:RemovePTZConfiguration", id, ""); - case SOAP_TYPE__trt__AddPTZConfigurationResponse: - return ((_trt__AddPTZConfigurationResponse *)ptr)->soap_out(soap, "trt:AddPTZConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddPTZConfiguration: - return ((_trt__AddPTZConfiguration *)ptr)->soap_out(soap, "trt:AddPTZConfiguration", id, ""); - case SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse: - return ((_trt__RemoveAudioSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveAudioSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveAudioSourceConfiguration: - return ((_trt__RemoveAudioSourceConfiguration *)ptr)->soap_out(soap, "trt:RemoveAudioSourceConfiguration", id, ""); - case SOAP_TYPE__trt__AddAudioSourceConfigurationResponse: - return ((_trt__AddAudioSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:AddAudioSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddAudioSourceConfiguration: - return ((_trt__AddAudioSourceConfiguration *)ptr)->soap_out(soap, "trt:AddAudioSourceConfiguration", id, ""); - case SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse: - return ((_trt__RemoveAudioEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveAudioEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveAudioEncoderConfiguration: - return ((_trt__RemoveAudioEncoderConfiguration *)ptr)->soap_out(soap, "trt:RemoveAudioEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse: - return ((_trt__AddAudioEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:AddAudioEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddAudioEncoderConfiguration: - return ((_trt__AddAudioEncoderConfiguration *)ptr)->soap_out(soap, "trt:AddAudioEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse: - return ((_trt__RemoveVideoSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveVideoSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveVideoSourceConfiguration: - return ((_trt__RemoveVideoSourceConfiguration *)ptr)->soap_out(soap, "trt:RemoveVideoSourceConfiguration", id, ""); - case SOAP_TYPE__trt__AddVideoSourceConfigurationResponse: - return ((_trt__AddVideoSourceConfigurationResponse *)ptr)->soap_out(soap, "trt:AddVideoSourceConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddVideoSourceConfiguration: - return ((_trt__AddVideoSourceConfiguration *)ptr)->soap_out(soap, "trt:AddVideoSourceConfiguration", id, ""); - case SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse: - return ((_trt__RemoveVideoEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:RemoveVideoEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__RemoveVideoEncoderConfiguration: - return ((_trt__RemoveVideoEncoderConfiguration *)ptr)->soap_out(soap, "trt:RemoveVideoEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse: - return ((_trt__AddVideoEncoderConfigurationResponse *)ptr)->soap_out(soap, "trt:AddVideoEncoderConfigurationResponse", id, ""); - case SOAP_TYPE__trt__AddVideoEncoderConfiguration: - return ((_trt__AddVideoEncoderConfiguration *)ptr)->soap_out(soap, "trt:AddVideoEncoderConfiguration", id, ""); - case SOAP_TYPE__trt__GetProfilesResponse: - return ((_trt__GetProfilesResponse *)ptr)->soap_out(soap, "trt:GetProfilesResponse", id, ""); - case SOAP_TYPE__trt__GetProfiles: - return ((_trt__GetProfiles *)ptr)->soap_out(soap, "trt:GetProfiles", id, ""); - case SOAP_TYPE__trt__GetProfileResponse: - return ((_trt__GetProfileResponse *)ptr)->soap_out(soap, "trt:GetProfileResponse", id, ""); - case SOAP_TYPE__trt__GetProfile: - return ((_trt__GetProfile *)ptr)->soap_out(soap, "trt:GetProfile", id, ""); - case SOAP_TYPE__trt__CreateProfileResponse: - return ((_trt__CreateProfileResponse *)ptr)->soap_out(soap, "trt:CreateProfileResponse", id, ""); - case SOAP_TYPE__trt__CreateProfile: - return ((_trt__CreateProfile *)ptr)->soap_out(soap, "trt:CreateProfile", id, ""); - case SOAP_TYPE__trt__GetAudioOutputsResponse: - return ((_trt__GetAudioOutputsResponse *)ptr)->soap_out(soap, "trt:GetAudioOutputsResponse", id, ""); - case SOAP_TYPE__trt__GetAudioOutputs: - return ((_trt__GetAudioOutputs *)ptr)->soap_out(soap, "trt:GetAudioOutputs", id, ""); - case SOAP_TYPE__trt__GetAudioSourcesResponse: - return ((_trt__GetAudioSourcesResponse *)ptr)->soap_out(soap, "trt:GetAudioSourcesResponse", id, ""); - case SOAP_TYPE__trt__GetAudioSources: - return ((_trt__GetAudioSources *)ptr)->soap_out(soap, "trt:GetAudioSources", id, ""); - case SOAP_TYPE__trt__GetVideoSourcesResponse: - return ((_trt__GetVideoSourcesResponse *)ptr)->soap_out(soap, "trt:GetVideoSourcesResponse", id, ""); - case SOAP_TYPE__trt__GetVideoSources: - return ((_trt__GetVideoSources *)ptr)->soap_out(soap, "trt:GetVideoSources", id, ""); - case SOAP_TYPE__trt__GetServiceCapabilitiesResponse: - return ((_trt__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "trt:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__trt__GetServiceCapabilities: - return ((_trt__GetServiceCapabilities *)ptr)->soap_out(soap, "trt:GetServiceCapabilities", id, ""); - case SOAP_TYPE_trt__VideoSourceModeExtension: - return ((trt__VideoSourceModeExtension *)ptr)->soap_out(soap, tag, id, "trt:VideoSourceModeExtension"); - case SOAP_TYPE_trt__VideoSourceMode: - return ((trt__VideoSourceMode *)ptr)->soap_out(soap, tag, id, "trt:VideoSourceMode"); - case SOAP_TYPE_trt__StreamingCapabilities: - return ((trt__StreamingCapabilities *)ptr)->soap_out(soap, tag, id, "trt:StreamingCapabilities"); - case SOAP_TYPE_trt__ProfileCapabilities: - return ((trt__ProfileCapabilities *)ptr)->soap_out(soap, tag, id, "trt:ProfileCapabilities"); - case SOAP_TYPE_trt__Capabilities: - return ((trt__Capabilities *)ptr)->soap_out(soap, tag, id, "trt:Capabilities"); - case SOAP_TYPE_xop__Include: - return ((xop__Include *)ptr)->soap_out(soap, tag, id, "xop:Include"); - case SOAP_TYPE__timg__SetCurrentPresetResponse: - return ((_timg__SetCurrentPresetResponse *)ptr)->soap_out(soap, "timg:SetCurrentPresetResponse", id, ""); - case SOAP_TYPE__timg__SetCurrentPreset: - return ((_timg__SetCurrentPreset *)ptr)->soap_out(soap, "timg:SetCurrentPreset", id, ""); - case SOAP_TYPE__timg__GetCurrentPresetResponse: - return ((_timg__GetCurrentPresetResponse *)ptr)->soap_out(soap, "timg:GetCurrentPresetResponse", id, ""); - case SOAP_TYPE__timg__GetCurrentPreset: - return ((_timg__GetCurrentPreset *)ptr)->soap_out(soap, "timg:GetCurrentPreset", id, ""); - case SOAP_TYPE__timg__GetPresetsResponse: - return ((_timg__GetPresetsResponse *)ptr)->soap_out(soap, "timg:GetPresetsResponse", id, ""); - case SOAP_TYPE__timg__GetPresets: - return ((_timg__GetPresets *)ptr)->soap_out(soap, "timg:GetPresets", id, ""); - case SOAP_TYPE__timg__GetStatusResponse: - return ((_timg__GetStatusResponse *)ptr)->soap_out(soap, "timg:GetStatusResponse", id, ""); - case SOAP_TYPE__timg__GetStatus: - return ((_timg__GetStatus *)ptr)->soap_out(soap, "timg:GetStatus", id, ""); - case SOAP_TYPE__timg__StopResponse: - return ((_timg__StopResponse *)ptr)->soap_out(soap, "timg:StopResponse", id, ""); - case SOAP_TYPE__timg__Stop: - return ((_timg__Stop *)ptr)->soap_out(soap, "timg:Stop", id, ""); - case SOAP_TYPE__timg__GetMoveOptionsResponse: - return ((_timg__GetMoveOptionsResponse *)ptr)->soap_out(soap, "timg:GetMoveOptionsResponse", id, ""); - case SOAP_TYPE__timg__GetMoveOptions: - return ((_timg__GetMoveOptions *)ptr)->soap_out(soap, "timg:GetMoveOptions", id, ""); - case SOAP_TYPE__timg__MoveResponse: - return ((_timg__MoveResponse *)ptr)->soap_out(soap, "timg:MoveResponse", id, ""); - case SOAP_TYPE__timg__Move: - return ((_timg__Move *)ptr)->soap_out(soap, "timg:Move", id, ""); - case SOAP_TYPE__timg__GetOptionsResponse: - return ((_timg__GetOptionsResponse *)ptr)->soap_out(soap, "timg:GetOptionsResponse", id, ""); - case SOAP_TYPE__timg__GetOptions: - return ((_timg__GetOptions *)ptr)->soap_out(soap, "timg:GetOptions", id, ""); - case SOAP_TYPE__timg__SetImagingSettingsResponse: - return ((_timg__SetImagingSettingsResponse *)ptr)->soap_out(soap, "timg:SetImagingSettingsResponse", id, ""); - case SOAP_TYPE__timg__SetImagingSettings: - return ((_timg__SetImagingSettings *)ptr)->soap_out(soap, "timg:SetImagingSettings", id, ""); - case SOAP_TYPE__timg__GetImagingSettingsResponse: - return ((_timg__GetImagingSettingsResponse *)ptr)->soap_out(soap, "timg:GetImagingSettingsResponse", id, ""); - case SOAP_TYPE__timg__GetImagingSettings: - return ((_timg__GetImagingSettings *)ptr)->soap_out(soap, "timg:GetImagingSettings", id, ""); - case SOAP_TYPE__timg__GetServiceCapabilitiesResponse: - return ((_timg__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "timg:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__timg__GetServiceCapabilities: - return ((_timg__GetServiceCapabilities *)ptr)->soap_out(soap, "timg:GetServiceCapabilities", id, ""); - case SOAP_TYPE_timg__ImagingPreset: - return ((timg__ImagingPreset *)ptr)->soap_out(soap, tag, id, "timg:ImagingPreset"); - case SOAP_TYPE_timg__Capabilities: - return ((timg__Capabilities *)ptr)->soap_out(soap, tag, id, "timg:Capabilities"); - case SOAP_TYPE__tls__DeletePaneConfigurationResponse: - return ((_tls__DeletePaneConfigurationResponse *)ptr)->soap_out(soap, "tls:DeletePaneConfigurationResponse", id, ""); - case SOAP_TYPE__tls__DeletePaneConfiguration: - return ((_tls__DeletePaneConfiguration *)ptr)->soap_out(soap, "tls:DeletePaneConfiguration", id, ""); - case SOAP_TYPE__tls__CreatePaneConfigurationResponse: - return ((_tls__CreatePaneConfigurationResponse *)ptr)->soap_out(soap, "tls:CreatePaneConfigurationResponse", id, ""); - case SOAP_TYPE__tls__CreatePaneConfiguration: - return ((_tls__CreatePaneConfiguration *)ptr)->soap_out(soap, "tls:CreatePaneConfiguration", id, ""); - case SOAP_TYPE__tls__SetPaneConfigurationResponse: - return ((_tls__SetPaneConfigurationResponse *)ptr)->soap_out(soap, "tls:SetPaneConfigurationResponse", id, ""); - case SOAP_TYPE__tls__SetPaneConfiguration: - return ((_tls__SetPaneConfiguration *)ptr)->soap_out(soap, "tls:SetPaneConfiguration", id, ""); - case SOAP_TYPE__tls__SetPaneConfigurationsResponse: - return ((_tls__SetPaneConfigurationsResponse *)ptr)->soap_out(soap, "tls:SetPaneConfigurationsResponse", id, ""); - case SOAP_TYPE__tls__SetPaneConfigurations: - return ((_tls__SetPaneConfigurations *)ptr)->soap_out(soap, "tls:SetPaneConfigurations", id, ""); - case SOAP_TYPE__tls__GetPaneConfigurationResponse: - return ((_tls__GetPaneConfigurationResponse *)ptr)->soap_out(soap, "tls:GetPaneConfigurationResponse", id, ""); - case SOAP_TYPE__tls__GetPaneConfiguration: - return ((_tls__GetPaneConfiguration *)ptr)->soap_out(soap, "tls:GetPaneConfiguration", id, ""); - case SOAP_TYPE__tls__GetPaneConfigurationsResponse: - return ((_tls__GetPaneConfigurationsResponse *)ptr)->soap_out(soap, "tls:GetPaneConfigurationsResponse", id, ""); - case SOAP_TYPE__tls__GetPaneConfigurations: - return ((_tls__GetPaneConfigurations *)ptr)->soap_out(soap, "tls:GetPaneConfigurations", id, ""); - case SOAP_TYPE__tls__GetDisplayOptionsResponse: - return ((_tls__GetDisplayOptionsResponse *)ptr)->soap_out(soap, "tls:GetDisplayOptionsResponse", id, ""); - case SOAP_TYPE__tls__GetDisplayOptions: - return ((_tls__GetDisplayOptions *)ptr)->soap_out(soap, "tls:GetDisplayOptions", id, ""); - case SOAP_TYPE__tls__SetLayoutResponse: - return ((_tls__SetLayoutResponse *)ptr)->soap_out(soap, "tls:SetLayoutResponse", id, ""); - case SOAP_TYPE__tls__SetLayout: - return ((_tls__SetLayout *)ptr)->soap_out(soap, "tls:SetLayout", id, ""); - case SOAP_TYPE__tls__GetLayoutResponse: - return ((_tls__GetLayoutResponse *)ptr)->soap_out(soap, "tls:GetLayoutResponse", id, ""); - case SOAP_TYPE__tls__GetLayout: - return ((_tls__GetLayout *)ptr)->soap_out(soap, "tls:GetLayout", id, ""); - case SOAP_TYPE__tls__GetServiceCapabilitiesResponse: - return ((_tls__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "tls:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__tls__GetServiceCapabilities: - return ((_tls__GetServiceCapabilities *)ptr)->soap_out(soap, "tls:GetServiceCapabilities", id, ""); - case SOAP_TYPE_tls__Capabilities: - return ((tls__Capabilities *)ptr)->soap_out(soap, tag, id, "tls:Capabilities"); - case SOAP_TYPE__tds__DeleteGeoLocationResponse: - return ((_tds__DeleteGeoLocationResponse *)ptr)->soap_out(soap, "tds:DeleteGeoLocationResponse", id, ""); - case SOAP_TYPE__tds__DeleteGeoLocation: - return ((_tds__DeleteGeoLocation *)ptr)->soap_out(soap, "tds:DeleteGeoLocation", id, ""); - case SOAP_TYPE__tds__SetGeoLocationResponse: - return ((_tds__SetGeoLocationResponse *)ptr)->soap_out(soap, "tds:SetGeoLocationResponse", id, ""); - case SOAP_TYPE__tds__SetGeoLocation: - return ((_tds__SetGeoLocation *)ptr)->soap_out(soap, "tds:SetGeoLocation", id, ""); - case SOAP_TYPE__tds__GetGeoLocationResponse: - return ((_tds__GetGeoLocationResponse *)ptr)->soap_out(soap, "tds:GetGeoLocationResponse", id, ""); - case SOAP_TYPE__tds__GetGeoLocation: - return ((_tds__GetGeoLocation *)ptr)->soap_out(soap, "tds:GetGeoLocation", id, ""); - case SOAP_TYPE__tds__DeleteStorageConfigurationResponse: - return ((_tds__DeleteStorageConfigurationResponse *)ptr)->soap_out(soap, "tds:DeleteStorageConfigurationResponse", id, ""); - case SOAP_TYPE__tds__DeleteStorageConfiguration: - return ((_tds__DeleteStorageConfiguration *)ptr)->soap_out(soap, "tds:DeleteStorageConfiguration", id, ""); - case SOAP_TYPE__tds__SetStorageConfigurationResponse: - return ((_tds__SetStorageConfigurationResponse *)ptr)->soap_out(soap, "tds:SetStorageConfigurationResponse", id, ""); - case SOAP_TYPE__tds__SetStorageConfiguration: - return ((_tds__SetStorageConfiguration *)ptr)->soap_out(soap, "tds:SetStorageConfiguration", id, ""); - case SOAP_TYPE__tds__GetStorageConfigurationResponse: - return ((_tds__GetStorageConfigurationResponse *)ptr)->soap_out(soap, "tds:GetStorageConfigurationResponse", id, ""); - case SOAP_TYPE__tds__GetStorageConfiguration: - return ((_tds__GetStorageConfiguration *)ptr)->soap_out(soap, "tds:GetStorageConfiguration", id, ""); - case SOAP_TYPE__tds__CreateStorageConfigurationResponse: - return ((_tds__CreateStorageConfigurationResponse *)ptr)->soap_out(soap, "tds:CreateStorageConfigurationResponse", id, ""); - case SOAP_TYPE__tds__CreateStorageConfiguration: - return ((_tds__CreateStorageConfiguration *)ptr)->soap_out(soap, "tds:CreateStorageConfiguration", id, ""); - case SOAP_TYPE__tds__GetStorageConfigurationsResponse: - return ((_tds__GetStorageConfigurationsResponse *)ptr)->soap_out(soap, "tds:GetStorageConfigurationsResponse", id, ""); - case SOAP_TYPE__tds__GetStorageConfigurations: - return ((_tds__GetStorageConfigurations *)ptr)->soap_out(soap, "tds:GetStorageConfigurations", id, ""); - case SOAP_TYPE__tds__StartSystemRestoreResponse: - return ((_tds__StartSystemRestoreResponse *)ptr)->soap_out(soap, "tds:StartSystemRestoreResponse", id, ""); - case SOAP_TYPE__tds__StartSystemRestore: - return ((_tds__StartSystemRestore *)ptr)->soap_out(soap, "tds:StartSystemRestore", id, ""); - case SOAP_TYPE__tds__StartFirmwareUpgradeResponse: - return ((_tds__StartFirmwareUpgradeResponse *)ptr)->soap_out(soap, "tds:StartFirmwareUpgradeResponse", id, ""); - case SOAP_TYPE__tds__StartFirmwareUpgrade: - return ((_tds__StartFirmwareUpgrade *)ptr)->soap_out(soap, "tds:StartFirmwareUpgrade", id, ""); - case SOAP_TYPE__tds__GetSystemUrisResponse: - return ((_tds__GetSystemUrisResponse *)ptr)->soap_out(soap, "tds:GetSystemUrisResponse", id, ""); - case SOAP_TYPE__tds__GetSystemUris: - return ((_tds__GetSystemUris *)ptr)->soap_out(soap, "tds:GetSystemUris", id, ""); - case SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse: - return ((_tds__ScanAvailableDot11NetworksResponse *)ptr)->soap_out(soap, "tds:ScanAvailableDot11NetworksResponse", id, ""); - case SOAP_TYPE__tds__ScanAvailableDot11Networks: - return ((_tds__ScanAvailableDot11Networks *)ptr)->soap_out(soap, "tds:ScanAvailableDot11Networks", id, ""); - case SOAP_TYPE__tds__GetDot11StatusResponse: - return ((_tds__GetDot11StatusResponse *)ptr)->soap_out(soap, "tds:GetDot11StatusResponse", id, ""); - case SOAP_TYPE__tds__GetDot11Status: - return ((_tds__GetDot11Status *)ptr)->soap_out(soap, "tds:GetDot11Status", id, ""); - case SOAP_TYPE__tds__GetDot11CapabilitiesResponse: - return ((_tds__GetDot11CapabilitiesResponse *)ptr)->soap_out(soap, "tds:GetDot11CapabilitiesResponse", id, ""); - case SOAP_TYPE__tds__GetDot11Capabilities: - return ((_tds__GetDot11Capabilities *)ptr)->soap_out(soap, "tds:GetDot11Capabilities", id, ""); - case SOAP_TYPE__tds__SendAuxiliaryCommandResponse: - return ((_tds__SendAuxiliaryCommandResponse *)ptr)->soap_out(soap, "tds:SendAuxiliaryCommandResponse", id, ""); - case SOAP_TYPE__tds__SendAuxiliaryCommand: - return ((_tds__SendAuxiliaryCommand *)ptr)->soap_out(soap, "tds:SendAuxiliaryCommand", id, ""); - case SOAP_TYPE__tds__SetRelayOutputStateResponse: - return ((_tds__SetRelayOutputStateResponse *)ptr)->soap_out(soap, "tds:SetRelayOutputStateResponse", id, ""); - case SOAP_TYPE__tds__SetRelayOutputState: - return ((_tds__SetRelayOutputState *)ptr)->soap_out(soap, "tds:SetRelayOutputState", id, ""); - case SOAP_TYPE__tds__SetRelayOutputSettingsResponse: - return ((_tds__SetRelayOutputSettingsResponse *)ptr)->soap_out(soap, "tds:SetRelayOutputSettingsResponse", id, ""); - case SOAP_TYPE__tds__SetRelayOutputSettings: - return ((_tds__SetRelayOutputSettings *)ptr)->soap_out(soap, "tds:SetRelayOutputSettings", id, ""); - case SOAP_TYPE__tds__GetRelayOutputsResponse: - return ((_tds__GetRelayOutputsResponse *)ptr)->soap_out(soap, "tds:GetRelayOutputsResponse", id, ""); - case SOAP_TYPE__tds__GetRelayOutputs: - return ((_tds__GetRelayOutputs *)ptr)->soap_out(soap, "tds:GetRelayOutputs", id, ""); - case SOAP_TYPE__tds__DeleteDot1XConfigurationResponse: - return ((_tds__DeleteDot1XConfigurationResponse *)ptr)->soap_out(soap, "tds:DeleteDot1XConfigurationResponse", id, ""); - case SOAP_TYPE__tds__DeleteDot1XConfiguration: - return ((_tds__DeleteDot1XConfiguration *)ptr)->soap_out(soap, "tds:DeleteDot1XConfiguration", id, ""); - case SOAP_TYPE__tds__GetDot1XConfigurationsResponse: - return ((_tds__GetDot1XConfigurationsResponse *)ptr)->soap_out(soap, "tds:GetDot1XConfigurationsResponse", id, ""); - case SOAP_TYPE__tds__GetDot1XConfigurations: - return ((_tds__GetDot1XConfigurations *)ptr)->soap_out(soap, "tds:GetDot1XConfigurations", id, ""); - case SOAP_TYPE__tds__GetDot1XConfigurationResponse: - return ((_tds__GetDot1XConfigurationResponse *)ptr)->soap_out(soap, "tds:GetDot1XConfigurationResponse", id, ""); - case SOAP_TYPE__tds__GetDot1XConfiguration: - return ((_tds__GetDot1XConfiguration *)ptr)->soap_out(soap, "tds:GetDot1XConfiguration", id, ""); - case SOAP_TYPE__tds__SetDot1XConfigurationResponse: - return ((_tds__SetDot1XConfigurationResponse *)ptr)->soap_out(soap, "tds:SetDot1XConfigurationResponse", id, ""); - case SOAP_TYPE__tds__SetDot1XConfiguration: - return ((_tds__SetDot1XConfiguration *)ptr)->soap_out(soap, "tds:SetDot1XConfiguration", id, ""); - case SOAP_TYPE__tds__CreateDot1XConfigurationResponse: - return ((_tds__CreateDot1XConfigurationResponse *)ptr)->soap_out(soap, "tds:CreateDot1XConfigurationResponse", id, ""); - case SOAP_TYPE__tds__CreateDot1XConfiguration: - return ((_tds__CreateDot1XConfiguration *)ptr)->soap_out(soap, "tds:CreateDot1XConfiguration", id, ""); - case SOAP_TYPE__tds__LoadCACertificatesResponse: - return ((_tds__LoadCACertificatesResponse *)ptr)->soap_out(soap, "tds:LoadCACertificatesResponse", id, ""); - case SOAP_TYPE__tds__LoadCACertificates: - return ((_tds__LoadCACertificates *)ptr)->soap_out(soap, "tds:LoadCACertificates", id, ""); - case SOAP_TYPE__tds__GetCertificateInformationResponse: - return ((_tds__GetCertificateInformationResponse *)ptr)->soap_out(soap, "tds:GetCertificateInformationResponse", id, ""); - case SOAP_TYPE__tds__GetCertificateInformation: - return ((_tds__GetCertificateInformation *)ptr)->soap_out(soap, "tds:GetCertificateInformation", id, ""); - case SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse: - return ((_tds__LoadCertificateWithPrivateKeyResponse *)ptr)->soap_out(soap, "tds:LoadCertificateWithPrivateKeyResponse", id, ""); - case SOAP_TYPE__tds__LoadCertificateWithPrivateKey: - return ((_tds__LoadCertificateWithPrivateKey *)ptr)->soap_out(soap, "tds:LoadCertificateWithPrivateKey", id, ""); - case SOAP_TYPE__tds__GetCACertificatesResponse: - return ((_tds__GetCACertificatesResponse *)ptr)->soap_out(soap, "tds:GetCACertificatesResponse", id, ""); - case SOAP_TYPE__tds__GetCACertificates: - return ((_tds__GetCACertificates *)ptr)->soap_out(soap, "tds:GetCACertificates", id, ""); - case SOAP_TYPE__tds__SetClientCertificateModeResponse: - return ((_tds__SetClientCertificateModeResponse *)ptr)->soap_out(soap, "tds:SetClientCertificateModeResponse", id, ""); - case SOAP_TYPE__tds__SetClientCertificateMode: - return ((_tds__SetClientCertificateMode *)ptr)->soap_out(soap, "tds:SetClientCertificateMode", id, ""); - case SOAP_TYPE__tds__GetClientCertificateModeResponse: - return ((_tds__GetClientCertificateModeResponse *)ptr)->soap_out(soap, "tds:GetClientCertificateModeResponse", id, ""); - case SOAP_TYPE__tds__GetClientCertificateMode: - return ((_tds__GetClientCertificateMode *)ptr)->soap_out(soap, "tds:GetClientCertificateMode", id, ""); - case SOAP_TYPE__tds__LoadCertificatesResponse: - return ((_tds__LoadCertificatesResponse *)ptr)->soap_out(soap, "tds:LoadCertificatesResponse", id, ""); - case SOAP_TYPE__tds__LoadCertificates: - return ((_tds__LoadCertificates *)ptr)->soap_out(soap, "tds:LoadCertificates", id, ""); - case SOAP_TYPE__tds__GetPkcs10RequestResponse: - return ((_tds__GetPkcs10RequestResponse *)ptr)->soap_out(soap, "tds:GetPkcs10RequestResponse", id, ""); - case SOAP_TYPE__tds__GetPkcs10Request: - return ((_tds__GetPkcs10Request *)ptr)->soap_out(soap, "tds:GetPkcs10Request", id, ""); - case SOAP_TYPE__tds__DeleteCertificatesResponse: - return ((_tds__DeleteCertificatesResponse *)ptr)->soap_out(soap, "tds:DeleteCertificatesResponse", id, ""); - case SOAP_TYPE__tds__DeleteCertificates: - return ((_tds__DeleteCertificates *)ptr)->soap_out(soap, "tds:DeleteCertificates", id, ""); - case SOAP_TYPE__tds__SetCertificatesStatusResponse: - return ((_tds__SetCertificatesStatusResponse *)ptr)->soap_out(soap, "tds:SetCertificatesStatusResponse", id, ""); - case SOAP_TYPE__tds__SetCertificatesStatus: - return ((_tds__SetCertificatesStatus *)ptr)->soap_out(soap, "tds:SetCertificatesStatus", id, ""); - case SOAP_TYPE__tds__GetCertificatesStatusResponse: - return ((_tds__GetCertificatesStatusResponse *)ptr)->soap_out(soap, "tds:GetCertificatesStatusResponse", id, ""); - case SOAP_TYPE__tds__GetCertificatesStatus: - return ((_tds__GetCertificatesStatus *)ptr)->soap_out(soap, "tds:GetCertificatesStatus", id, ""); - case SOAP_TYPE__tds__GetCertificatesResponse: - return ((_tds__GetCertificatesResponse *)ptr)->soap_out(soap, "tds:GetCertificatesResponse", id, ""); - case SOAP_TYPE__tds__GetCertificates: - return ((_tds__GetCertificates *)ptr)->soap_out(soap, "tds:GetCertificates", id, ""); - case SOAP_TYPE__tds__CreateCertificateResponse: - return ((_tds__CreateCertificateResponse *)ptr)->soap_out(soap, "tds:CreateCertificateResponse", id, ""); - case SOAP_TYPE__tds__CreateCertificate: - return ((_tds__CreateCertificate *)ptr)->soap_out(soap, "tds:CreateCertificate", id, ""); - case SOAP_TYPE__tds__SetAccessPolicyResponse: - return ((_tds__SetAccessPolicyResponse *)ptr)->soap_out(soap, "tds:SetAccessPolicyResponse", id, ""); - case SOAP_TYPE__tds__SetAccessPolicy: - return ((_tds__SetAccessPolicy *)ptr)->soap_out(soap, "tds:SetAccessPolicy", id, ""); - case SOAP_TYPE__tds__GetAccessPolicyResponse: - return ((_tds__GetAccessPolicyResponse *)ptr)->soap_out(soap, "tds:GetAccessPolicyResponse", id, ""); - case SOAP_TYPE__tds__GetAccessPolicy: - return ((_tds__GetAccessPolicy *)ptr)->soap_out(soap, "tds:GetAccessPolicy", id, ""); - case SOAP_TYPE__tds__RemoveIPAddressFilterResponse: - return ((_tds__RemoveIPAddressFilterResponse *)ptr)->soap_out(soap, "tds:RemoveIPAddressFilterResponse", id, ""); - case SOAP_TYPE__tds__RemoveIPAddressFilter: - return ((_tds__RemoveIPAddressFilter *)ptr)->soap_out(soap, "tds:RemoveIPAddressFilter", id, ""); - case SOAP_TYPE__tds__AddIPAddressFilterResponse: - return ((_tds__AddIPAddressFilterResponse *)ptr)->soap_out(soap, "tds:AddIPAddressFilterResponse", id, ""); - case SOAP_TYPE__tds__AddIPAddressFilter: - return ((_tds__AddIPAddressFilter *)ptr)->soap_out(soap, "tds:AddIPAddressFilter", id, ""); - case SOAP_TYPE__tds__SetIPAddressFilterResponse: - return ((_tds__SetIPAddressFilterResponse *)ptr)->soap_out(soap, "tds:SetIPAddressFilterResponse", id, ""); - case SOAP_TYPE__tds__SetIPAddressFilter: - return ((_tds__SetIPAddressFilter *)ptr)->soap_out(soap, "tds:SetIPAddressFilter", id, ""); - case SOAP_TYPE__tds__GetIPAddressFilterResponse: - return ((_tds__GetIPAddressFilterResponse *)ptr)->soap_out(soap, "tds:GetIPAddressFilterResponse", id, ""); - case SOAP_TYPE__tds__GetIPAddressFilter: - return ((_tds__GetIPAddressFilter *)ptr)->soap_out(soap, "tds:GetIPAddressFilter", id, ""); - case SOAP_TYPE__tds__SetZeroConfigurationResponse: - return ((_tds__SetZeroConfigurationResponse *)ptr)->soap_out(soap, "tds:SetZeroConfigurationResponse", id, ""); - case SOAP_TYPE__tds__SetZeroConfiguration: - return ((_tds__SetZeroConfiguration *)ptr)->soap_out(soap, "tds:SetZeroConfiguration", id, ""); - case SOAP_TYPE__tds__GetZeroConfigurationResponse: - return ((_tds__GetZeroConfigurationResponse *)ptr)->soap_out(soap, "tds:GetZeroConfigurationResponse", id, ""); - case SOAP_TYPE__tds__GetZeroConfiguration: - return ((_tds__GetZeroConfiguration *)ptr)->soap_out(soap, "tds:GetZeroConfiguration", id, ""); - case SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse: - return ((_tds__SetNetworkDefaultGatewayResponse *)ptr)->soap_out(soap, "tds:SetNetworkDefaultGatewayResponse", id, ""); - case SOAP_TYPE__tds__SetNetworkDefaultGateway: - return ((_tds__SetNetworkDefaultGateway *)ptr)->soap_out(soap, "tds:SetNetworkDefaultGateway", id, ""); - case SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse: - return ((_tds__GetNetworkDefaultGatewayResponse *)ptr)->soap_out(soap, "tds:GetNetworkDefaultGatewayResponse", id, ""); - case SOAP_TYPE__tds__GetNetworkDefaultGateway: - return ((_tds__GetNetworkDefaultGateway *)ptr)->soap_out(soap, "tds:GetNetworkDefaultGateway", id, ""); - case SOAP_TYPE__tds__SetNetworkProtocolsResponse: - return ((_tds__SetNetworkProtocolsResponse *)ptr)->soap_out(soap, "tds:SetNetworkProtocolsResponse", id, ""); - case SOAP_TYPE__tds__SetNetworkProtocols: - return ((_tds__SetNetworkProtocols *)ptr)->soap_out(soap, "tds:SetNetworkProtocols", id, ""); - case SOAP_TYPE__tds__GetNetworkProtocolsResponse: - return ((_tds__GetNetworkProtocolsResponse *)ptr)->soap_out(soap, "tds:GetNetworkProtocolsResponse", id, ""); - case SOAP_TYPE__tds__GetNetworkProtocols: - return ((_tds__GetNetworkProtocols *)ptr)->soap_out(soap, "tds:GetNetworkProtocols", id, ""); - case SOAP_TYPE__tds__SetNetworkInterfacesResponse: - return ((_tds__SetNetworkInterfacesResponse *)ptr)->soap_out(soap, "tds:SetNetworkInterfacesResponse", id, ""); - case SOAP_TYPE__tds__SetNetworkInterfaces: - return ((_tds__SetNetworkInterfaces *)ptr)->soap_out(soap, "tds:SetNetworkInterfaces", id, ""); - case SOAP_TYPE__tds__GetNetworkInterfacesResponse: - return ((_tds__GetNetworkInterfacesResponse *)ptr)->soap_out(soap, "tds:GetNetworkInterfacesResponse", id, ""); - case SOAP_TYPE__tds__GetNetworkInterfaces: - return ((_tds__GetNetworkInterfaces *)ptr)->soap_out(soap, "tds:GetNetworkInterfaces", id, ""); - case SOAP_TYPE__tds__SetDynamicDNSResponse: - return ((_tds__SetDynamicDNSResponse *)ptr)->soap_out(soap, "tds:SetDynamicDNSResponse", id, ""); - case SOAP_TYPE__tds__SetDynamicDNS: - return ((_tds__SetDynamicDNS *)ptr)->soap_out(soap, "tds:SetDynamicDNS", id, ""); - case SOAP_TYPE__tds__GetDynamicDNSResponse: - return ((_tds__GetDynamicDNSResponse *)ptr)->soap_out(soap, "tds:GetDynamicDNSResponse", id, ""); - case SOAP_TYPE__tds__GetDynamicDNS: - return ((_tds__GetDynamicDNS *)ptr)->soap_out(soap, "tds:GetDynamicDNS", id, ""); - case SOAP_TYPE__tds__SetNTPResponse: - return ((_tds__SetNTPResponse *)ptr)->soap_out(soap, "tds:SetNTPResponse", id, ""); - case SOAP_TYPE__tds__SetNTP: - return ((_tds__SetNTP *)ptr)->soap_out(soap, "tds:SetNTP", id, ""); - case SOAP_TYPE__tds__GetNTPResponse: - return ((_tds__GetNTPResponse *)ptr)->soap_out(soap, "tds:GetNTPResponse", id, ""); - case SOAP_TYPE__tds__GetNTP: - return ((_tds__GetNTP *)ptr)->soap_out(soap, "tds:GetNTP", id, ""); - case SOAP_TYPE__tds__SetDNSResponse: - return ((_tds__SetDNSResponse *)ptr)->soap_out(soap, "tds:SetDNSResponse", id, ""); - case SOAP_TYPE__tds__SetDNS: - return ((_tds__SetDNS *)ptr)->soap_out(soap, "tds:SetDNS", id, ""); - case SOAP_TYPE__tds__GetDNSResponse: - return ((_tds__GetDNSResponse *)ptr)->soap_out(soap, "tds:GetDNSResponse", id, ""); - case SOAP_TYPE__tds__GetDNS: - return ((_tds__GetDNS *)ptr)->soap_out(soap, "tds:GetDNS", id, ""); - case SOAP_TYPE__tds__SetHostnameFromDHCPResponse: - return ((_tds__SetHostnameFromDHCPResponse *)ptr)->soap_out(soap, "tds:SetHostnameFromDHCPResponse", id, ""); - case SOAP_TYPE__tds__SetHostnameFromDHCP: - return ((_tds__SetHostnameFromDHCP *)ptr)->soap_out(soap, "tds:SetHostnameFromDHCP", id, ""); - case SOAP_TYPE__tds__SetHostnameResponse: - return ((_tds__SetHostnameResponse *)ptr)->soap_out(soap, "tds:SetHostnameResponse", id, ""); - case SOAP_TYPE__tds__SetHostname: - return ((_tds__SetHostname *)ptr)->soap_out(soap, "tds:SetHostname", id, ""); - case SOAP_TYPE__tds__GetHostnameResponse: - return ((_tds__GetHostnameResponse *)ptr)->soap_out(soap, "tds:GetHostnameResponse", id, ""); - case SOAP_TYPE__tds__GetHostname: - return ((_tds__GetHostname *)ptr)->soap_out(soap, "tds:GetHostname", id, ""); - case SOAP_TYPE__tds__GetCapabilitiesResponse: - return ((_tds__GetCapabilitiesResponse *)ptr)->soap_out(soap, "tds:GetCapabilitiesResponse", id, ""); - case SOAP_TYPE__tds__GetCapabilities: - return ((_tds__GetCapabilities *)ptr)->soap_out(soap, "tds:GetCapabilities", id, ""); - case SOAP_TYPE__tds__GetWsdlUrlResponse: - return ((_tds__GetWsdlUrlResponse *)ptr)->soap_out(soap, "tds:GetWsdlUrlResponse", id, ""); - case SOAP_TYPE__tds__GetWsdlUrl: - return ((_tds__GetWsdlUrl *)ptr)->soap_out(soap, "tds:GetWsdlUrl", id, ""); - case SOAP_TYPE__tds__SetUserResponse: - return ((_tds__SetUserResponse *)ptr)->soap_out(soap, "tds:SetUserResponse", id, ""); - case SOAP_TYPE__tds__SetUser: - return ((_tds__SetUser *)ptr)->soap_out(soap, "tds:SetUser", id, ""); - case SOAP_TYPE__tds__DeleteUsersResponse: - return ((_tds__DeleteUsersResponse *)ptr)->soap_out(soap, "tds:DeleteUsersResponse", id, ""); - case SOAP_TYPE__tds__DeleteUsers: - return ((_tds__DeleteUsers *)ptr)->soap_out(soap, "tds:DeleteUsers", id, ""); - case SOAP_TYPE__tds__CreateUsersResponse: - return ((_tds__CreateUsersResponse *)ptr)->soap_out(soap, "tds:CreateUsersResponse", id, ""); - case SOAP_TYPE__tds__CreateUsers: - return ((_tds__CreateUsers *)ptr)->soap_out(soap, "tds:CreateUsers", id, ""); - case SOAP_TYPE__tds__GetUsersResponse: - return ((_tds__GetUsersResponse *)ptr)->soap_out(soap, "tds:GetUsersResponse", id, ""); - case SOAP_TYPE__tds__GetUsers: - return ((_tds__GetUsers *)ptr)->soap_out(soap, "tds:GetUsers", id, ""); - case SOAP_TYPE__tds__SetRemoteUserResponse: - return ((_tds__SetRemoteUserResponse *)ptr)->soap_out(soap, "tds:SetRemoteUserResponse", id, ""); - case SOAP_TYPE__tds__SetRemoteUser: - return ((_tds__SetRemoteUser *)ptr)->soap_out(soap, "tds:SetRemoteUser", id, ""); - case SOAP_TYPE__tds__GetRemoteUserResponse: - return ((_tds__GetRemoteUserResponse *)ptr)->soap_out(soap, "tds:GetRemoteUserResponse", id, ""); - case SOAP_TYPE__tds__GetRemoteUser: - return ((_tds__GetRemoteUser *)ptr)->soap_out(soap, "tds:GetRemoteUser", id, ""); - case SOAP_TYPE__tds__GetEndpointReferenceResponse: - return ((_tds__GetEndpointReferenceResponse *)ptr)->soap_out(soap, "tds:GetEndpointReferenceResponse", id, ""); - case SOAP_TYPE__tds__GetEndpointReference: - return ((_tds__GetEndpointReference *)ptr)->soap_out(soap, "tds:GetEndpointReference", id, ""); - case SOAP_TYPE__tds__SetDPAddressesResponse: - return ((_tds__SetDPAddressesResponse *)ptr)->soap_out(soap, "tds:SetDPAddressesResponse", id, ""); - case SOAP_TYPE__tds__SetDPAddresses: - return ((_tds__SetDPAddresses *)ptr)->soap_out(soap, "tds:SetDPAddresses", id, ""); - case SOAP_TYPE__tds__GetDPAddressesResponse: - return ((_tds__GetDPAddressesResponse *)ptr)->soap_out(soap, "tds:GetDPAddressesResponse", id, ""); - case SOAP_TYPE__tds__GetDPAddresses: - return ((_tds__GetDPAddresses *)ptr)->soap_out(soap, "tds:GetDPAddresses", id, ""); - case SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse: - return ((_tds__SetRemoteDiscoveryModeResponse *)ptr)->soap_out(soap, "tds:SetRemoteDiscoveryModeResponse", id, ""); - case SOAP_TYPE__tds__SetRemoteDiscoveryMode: - return ((_tds__SetRemoteDiscoveryMode *)ptr)->soap_out(soap, "tds:SetRemoteDiscoveryMode", id, ""); - case SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse: - return ((_tds__GetRemoteDiscoveryModeResponse *)ptr)->soap_out(soap, "tds:GetRemoteDiscoveryModeResponse", id, ""); - case SOAP_TYPE__tds__GetRemoteDiscoveryMode: - return ((_tds__GetRemoteDiscoveryMode *)ptr)->soap_out(soap, "tds:GetRemoteDiscoveryMode", id, ""); - case SOAP_TYPE__tds__SetDiscoveryModeResponse: - return ((_tds__SetDiscoveryModeResponse *)ptr)->soap_out(soap, "tds:SetDiscoveryModeResponse", id, ""); - case SOAP_TYPE__tds__SetDiscoveryMode: - return ((_tds__SetDiscoveryMode *)ptr)->soap_out(soap, "tds:SetDiscoveryMode", id, ""); - case SOAP_TYPE__tds__GetDiscoveryModeResponse: - return ((_tds__GetDiscoveryModeResponse *)ptr)->soap_out(soap, "tds:GetDiscoveryModeResponse", id, ""); - case SOAP_TYPE__tds__GetDiscoveryMode: - return ((_tds__GetDiscoveryMode *)ptr)->soap_out(soap, "tds:GetDiscoveryMode", id, ""); - case SOAP_TYPE__tds__RemoveScopesResponse: - return ((_tds__RemoveScopesResponse *)ptr)->soap_out(soap, "tds:RemoveScopesResponse", id, ""); - case SOAP_TYPE__tds__RemoveScopes: - return ((_tds__RemoveScopes *)ptr)->soap_out(soap, "tds:RemoveScopes", id, ""); - case SOAP_TYPE__tds__AddScopesResponse: - return ((_tds__AddScopesResponse *)ptr)->soap_out(soap, "tds:AddScopesResponse", id, ""); - case SOAP_TYPE__tds__AddScopes: - return ((_tds__AddScopes *)ptr)->soap_out(soap, "tds:AddScopes", id, ""); - case SOAP_TYPE__tds__SetScopesResponse: - return ((_tds__SetScopesResponse *)ptr)->soap_out(soap, "tds:SetScopesResponse", id, ""); - case SOAP_TYPE__tds__SetScopes: - return ((_tds__SetScopes *)ptr)->soap_out(soap, "tds:SetScopes", id, ""); - case SOAP_TYPE__tds__GetScopesResponse: - return ((_tds__GetScopesResponse *)ptr)->soap_out(soap, "tds:GetScopesResponse", id, ""); - case SOAP_TYPE__tds__GetScopes: - return ((_tds__GetScopes *)ptr)->soap_out(soap, "tds:GetScopes", id, ""); - case SOAP_TYPE__tds__GetSystemLogResponse: - return ((_tds__GetSystemLogResponse *)ptr)->soap_out(soap, "tds:GetSystemLogResponse", id, ""); - case SOAP_TYPE__tds__GetSystemLog: - return ((_tds__GetSystemLog *)ptr)->soap_out(soap, "tds:GetSystemLog", id, ""); - case SOAP_TYPE__tds__GetSystemSupportInformationResponse: - return ((_tds__GetSystemSupportInformationResponse *)ptr)->soap_out(soap, "tds:GetSystemSupportInformationResponse", id, ""); - case SOAP_TYPE__tds__GetSystemSupportInformation: - return ((_tds__GetSystemSupportInformation *)ptr)->soap_out(soap, "tds:GetSystemSupportInformation", id, ""); - case SOAP_TYPE__tds__GetSystemBackupResponse: - return ((_tds__GetSystemBackupResponse *)ptr)->soap_out(soap, "tds:GetSystemBackupResponse", id, ""); - case SOAP_TYPE__tds__GetSystemBackup: - return ((_tds__GetSystemBackup *)ptr)->soap_out(soap, "tds:GetSystemBackup", id, ""); - case SOAP_TYPE__tds__RestoreSystemResponse: - return ((_tds__RestoreSystemResponse *)ptr)->soap_out(soap, "tds:RestoreSystemResponse", id, ""); - case SOAP_TYPE__tds__RestoreSystem: - return ((_tds__RestoreSystem *)ptr)->soap_out(soap, "tds:RestoreSystem", id, ""); - case SOAP_TYPE__tds__SystemRebootResponse: - return ((_tds__SystemRebootResponse *)ptr)->soap_out(soap, "tds:SystemRebootResponse", id, ""); - case SOAP_TYPE__tds__SystemReboot: - return ((_tds__SystemReboot *)ptr)->soap_out(soap, "tds:SystemReboot", id, ""); - case SOAP_TYPE__tds__UpgradeSystemFirmwareResponse: - return ((_tds__UpgradeSystemFirmwareResponse *)ptr)->soap_out(soap, "tds:UpgradeSystemFirmwareResponse", id, ""); - case SOAP_TYPE__tds__UpgradeSystemFirmware: - return ((_tds__UpgradeSystemFirmware *)ptr)->soap_out(soap, "tds:UpgradeSystemFirmware", id, ""); - case SOAP_TYPE__tds__SetSystemFactoryDefaultResponse: - return ((_tds__SetSystemFactoryDefaultResponse *)ptr)->soap_out(soap, "tds:SetSystemFactoryDefaultResponse", id, ""); - case SOAP_TYPE__tds__SetSystemFactoryDefault: - return ((_tds__SetSystemFactoryDefault *)ptr)->soap_out(soap, "tds:SetSystemFactoryDefault", id, ""); - case SOAP_TYPE__tds__GetSystemDateAndTimeResponse: - return ((_tds__GetSystemDateAndTimeResponse *)ptr)->soap_out(soap, "tds:GetSystemDateAndTimeResponse", id, ""); - case SOAP_TYPE__tds__GetSystemDateAndTime: - return ((_tds__GetSystemDateAndTime *)ptr)->soap_out(soap, "tds:GetSystemDateAndTime", id, ""); - case SOAP_TYPE__tds__SetSystemDateAndTimeResponse: - return ((_tds__SetSystemDateAndTimeResponse *)ptr)->soap_out(soap, "tds:SetSystemDateAndTimeResponse", id, ""); - case SOAP_TYPE__tds__SetSystemDateAndTime: - return ((_tds__SetSystemDateAndTime *)ptr)->soap_out(soap, "tds:SetSystemDateAndTime", id, ""); - case SOAP_TYPE__tds__GetDeviceInformationResponse: - return ((_tds__GetDeviceInformationResponse *)ptr)->soap_out(soap, "tds:GetDeviceInformationResponse", id, ""); - case SOAP_TYPE__tds__GetDeviceInformation: - return ((_tds__GetDeviceInformation *)ptr)->soap_out(soap, "tds:GetDeviceInformation", id, ""); - case SOAP_TYPE__tds__GetServiceCapabilitiesResponse: - return ((_tds__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "tds:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__tds__GetServiceCapabilities: - return ((_tds__GetServiceCapabilities *)ptr)->soap_out(soap, "tds:GetServiceCapabilities", id, ""); - case SOAP_TYPE__tds__GetServicesResponse: - return ((_tds__GetServicesResponse *)ptr)->soap_out(soap, "tds:GetServicesResponse", id, ""); - case SOAP_TYPE__tds__GetServices: - return ((_tds__GetServices *)ptr)->soap_out(soap, "tds:GetServices", id, ""); - case SOAP_TYPE_tds__StorageConfiguration: - return ((tds__StorageConfiguration *)ptr)->soap_out(soap, tag, id, "tds:StorageConfiguration"); - case SOAP_TYPE_tds__StorageConfigurationData: - return ((tds__StorageConfigurationData *)ptr)->soap_out(soap, tag, id, "tds:StorageConfigurationData"); - case SOAP_TYPE_tds__UserCredential: - return ((tds__UserCredential *)ptr)->soap_out(soap, tag, id, "tds:UserCredential"); - case SOAP_TYPE_tds__MiscCapabilities: - return ((tds__MiscCapabilities *)ptr)->soap_out(soap, tag, id, "tds:MiscCapabilities"); - case SOAP_TYPE_tds__SystemCapabilities: - return ((tds__SystemCapabilities *)ptr)->soap_out(soap, tag, id, "tds:SystemCapabilities"); - case SOAP_TYPE_tds__SecurityCapabilities: - return ((tds__SecurityCapabilities *)ptr)->soap_out(soap, tag, id, "tds:SecurityCapabilities"); - case SOAP_TYPE_tds__NetworkCapabilities: - return ((tds__NetworkCapabilities *)ptr)->soap_out(soap, tag, id, "tds:NetworkCapabilities"); - case SOAP_TYPE_tds__DeviceServiceCapabilities: - return ((tds__DeviceServiceCapabilities *)ptr)->soap_out(soap, tag, id, "tds:DeviceServiceCapabilities"); - case SOAP_TYPE_tds__Service: - return ((tds__Service *)ptr)->soap_out(soap, tag, id, "tds:Service"); - case SOAP_TYPE__tmd__SendReceiveSerialCommandResponse: - return ((_tmd__SendReceiveSerialCommandResponse *)ptr)->soap_out(soap, "tmd:SendReceiveSerialCommandResponse", id, ""); - case SOAP_TYPE__tmd__SendReceiveSerialCommand: - return ((_tmd__SendReceiveSerialCommand *)ptr)->soap_out(soap, "tmd:SendReceiveSerialCommand", id, ""); - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse: - return ((_tmd__GetSerialPortConfigurationOptionsResponse *)ptr)->soap_out(soap, "tmd:GetSerialPortConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptions: - return ((_tmd__GetSerialPortConfigurationOptions *)ptr)->soap_out(soap, "tmd:GetSerialPortConfigurationOptions", id, ""); - case SOAP_TYPE__tmd__SetSerialPortConfigurationResponse: - return ((_tmd__SetSerialPortConfigurationResponse *)ptr)->soap_out(soap, "tmd:SetSerialPortConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__SetSerialPortConfiguration: - return ((_tmd__SetSerialPortConfiguration *)ptr)->soap_out(soap, "tmd:SetSerialPortConfiguration", id, ""); - case SOAP_TYPE__tmd__GetSerialPortConfigurationResponse: - return ((_tmd__GetSerialPortConfigurationResponse *)ptr)->soap_out(soap, "tmd:GetSerialPortConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__GetSerialPortConfiguration: - return ((_tmd__GetSerialPortConfiguration *)ptr)->soap_out(soap, "tmd:GetSerialPortConfiguration", id, ""); - case SOAP_TYPE__tmd__GetSerialPortsResponse: - return ((_tmd__GetSerialPortsResponse *)ptr)->soap_out(soap, "tmd:GetSerialPortsResponse", id, ""); - case SOAP_TYPE__tmd__GetSerialPorts: - return ((_tmd__GetSerialPorts *)ptr)->soap_out(soap, "tmd:GetSerialPorts", id, ""); - case SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse: - return ((_tmd__SetDigitalInputConfigurationsResponse *)ptr)->soap_out(soap, "tmd:SetDigitalInputConfigurationsResponse", id, ""); - case SOAP_TYPE__tmd__SetDigitalInputConfigurations: - return ((_tmd__SetDigitalInputConfigurations *)ptr)->soap_out(soap, "tmd:SetDigitalInputConfigurations", id, ""); - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse: - return ((_tmd__GetDigitalInputConfigurationOptionsResponse *)ptr)->soap_out(soap, "tmd:GetDigitalInputConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions: - return ((_tmd__GetDigitalInputConfigurationOptions *)ptr)->soap_out(soap, "tmd:GetDigitalInputConfigurationOptions", id, ""); - case SOAP_TYPE__tmd__GetDigitalInputsResponse: - return ((_tmd__GetDigitalInputsResponse *)ptr)->soap_out(soap, "tmd:GetDigitalInputsResponse", id, ""); - case SOAP_TYPE__tmd__GetDigitalInputs: - return ((_tmd__GetDigitalInputs *)ptr)->soap_out(soap, "tmd:GetDigitalInputs", id, ""); - case SOAP_TYPE__tmd__SetRelayOutputSettingsResponse: - return ((_tmd__SetRelayOutputSettingsResponse *)ptr)->soap_out(soap, "tmd:SetRelayOutputSettingsResponse", id, ""); - case SOAP_TYPE__tmd__SetRelayOutputSettings: - return ((_tmd__SetRelayOutputSettings *)ptr)->soap_out(soap, "tmd:SetRelayOutputSettings", id, ""); - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse: - return ((_tmd__GetAudioOutputConfigurationOptionsResponse *)ptr)->soap_out(soap, "tmd:GetAudioOutputConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions: - return ((_tmd__GetAudioOutputConfigurationOptions *)ptr)->soap_out(soap, "tmd:GetAudioOutputConfigurationOptions", id, ""); - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse: - return ((_tmd__GetAudioSourceConfigurationOptionsResponse *)ptr)->soap_out(soap, "tmd:GetAudioSourceConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions: - return ((_tmd__GetAudioSourceConfigurationOptions *)ptr)->soap_out(soap, "tmd:GetAudioSourceConfigurationOptions", id, ""); - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse: - return ((_tmd__GetVideoOutputConfigurationOptionsResponse *)ptr)->soap_out(soap, "tmd:GetVideoOutputConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions: - return ((_tmd__GetVideoOutputConfigurationOptions *)ptr)->soap_out(soap, "tmd:GetVideoOutputConfigurationOptions", id, ""); - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse: - return ((_tmd__GetVideoSourceConfigurationOptionsResponse *)ptr)->soap_out(soap, "tmd:GetVideoSourceConfigurationOptionsResponse", id, ""); - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions: - return ((_tmd__GetVideoSourceConfigurationOptions *)ptr)->soap_out(soap, "tmd:GetVideoSourceConfigurationOptions", id, ""); - case SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse: - return ((_tmd__SetVideoOutputConfigurationResponse *)ptr)->soap_out(soap, "tmd:SetVideoOutputConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__SetVideoOutputConfiguration: - return ((_tmd__SetVideoOutputConfiguration *)ptr)->soap_out(soap, "tmd:SetVideoOutputConfiguration", id, ""); - case SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse: - return ((_tmd__SetVideoSourceConfigurationResponse *)ptr)->soap_out(soap, "tmd:SetVideoSourceConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__SetVideoSourceConfiguration: - return ((_tmd__SetVideoSourceConfiguration *)ptr)->soap_out(soap, "tmd:SetVideoSourceConfiguration", id, ""); - case SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse: - return ((_tmd__SetAudioOutputConfigurationResponse *)ptr)->soap_out(soap, "tmd:SetAudioOutputConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__SetAudioOutputConfiguration: - return ((_tmd__SetAudioOutputConfiguration *)ptr)->soap_out(soap, "tmd:SetAudioOutputConfiguration", id, ""); - case SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse: - return ((_tmd__SetAudioSourceConfigurationResponse *)ptr)->soap_out(soap, "tmd:SetAudioSourceConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__SetAudioSourceConfiguration: - return ((_tmd__SetAudioSourceConfiguration *)ptr)->soap_out(soap, "tmd:SetAudioSourceConfiguration", id, ""); - case SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse: - return ((_tmd__GetVideoOutputConfigurationResponse *)ptr)->soap_out(soap, "tmd:GetVideoOutputConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__GetVideoOutputConfiguration: - return ((_tmd__GetVideoOutputConfiguration *)ptr)->soap_out(soap, "tmd:GetVideoOutputConfiguration", id, ""); - case SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse: - return ((_tmd__GetVideoSourceConfigurationResponse *)ptr)->soap_out(soap, "tmd:GetVideoSourceConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__GetVideoSourceConfiguration: - return ((_tmd__GetVideoSourceConfiguration *)ptr)->soap_out(soap, "tmd:GetVideoSourceConfiguration", id, ""); - case SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse: - return ((_tmd__GetAudioOutputConfigurationResponse *)ptr)->soap_out(soap, "tmd:GetAudioOutputConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__GetAudioOutputConfiguration: - return ((_tmd__GetAudioOutputConfiguration *)ptr)->soap_out(soap, "tmd:GetAudioOutputConfiguration", id, ""); - case SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse: - return ((_tmd__GetAudioSourceConfigurationResponse *)ptr)->soap_out(soap, "tmd:GetAudioSourceConfigurationResponse", id, ""); - case SOAP_TYPE__tmd__GetAudioSourceConfiguration: - return ((_tmd__GetAudioSourceConfiguration *)ptr)->soap_out(soap, "tmd:GetAudioSourceConfiguration", id, ""); - case SOAP_TYPE__tmd__GetVideoOutputsResponse: - return ((_tmd__GetVideoOutputsResponse *)ptr)->soap_out(soap, "tmd:GetVideoOutputsResponse", id, ""); - case SOAP_TYPE__tmd__GetVideoOutputs: - return ((_tmd__GetVideoOutputs *)ptr)->soap_out(soap, "tmd:GetVideoOutputs", id, ""); - case SOAP_TYPE__tmd__GetRelayOutputOptionsResponse: - return ((_tmd__GetRelayOutputOptionsResponse *)ptr)->soap_out(soap, "tmd:GetRelayOutputOptionsResponse", id, ""); - case SOAP_TYPE__tmd__GetRelayOutputOptions: - return ((_tmd__GetRelayOutputOptions *)ptr)->soap_out(soap, "tmd:GetRelayOutputOptions", id, ""); - case SOAP_TYPE__tmd__GetServiceCapabilitiesResponse: - return ((_tmd__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "tmd:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__tmd__GetServiceCapabilities: - return ((_tmd__GetServiceCapabilities *)ptr)->soap_out(soap, "tmd:GetServiceCapabilities", id, ""); - case SOAP_TYPE_tmd__ParityBitList: - return ((tmd__ParityBitList *)ptr)->soap_out(soap, tag, id, "tmd:ParityBitList"); - case SOAP_TYPE_tmd__SerialPortConfigurationOptions: - return ((tmd__SerialPortConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tmd:SerialPortConfigurationOptions"); - case SOAP_TYPE_tmd__SerialPortConfiguration: - return ((tmd__SerialPortConfiguration *)ptr)->soap_out(soap, tag, id, "tmd:SerialPortConfiguration"); - case SOAP_TYPE_tmd__SerialPort: - return ((tmd__SerialPort *)ptr)->soap_out(soap, tag, id, "tmd:SerialPort"); - case SOAP_TYPE_tmd__SerialData: - return ((tmd__SerialData *)ptr)->soap_out(soap, tag, id, "tmd:SerialData"); - case SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions: - return ((tmd__DigitalInputConfigurationInputOptions *)ptr)->soap_out(soap, tag, id, "tmd:DigitalInputConfigurationInputOptions"); - case SOAP_TYPE_tmd__GetResponse: - return ((tmd__GetResponse *)ptr)->soap_out(soap, tag, id, "tmd:GetResponse"); - case SOAP_TYPE_tmd__Get: - return ((tmd__Get *)ptr)->soap_out(soap, tag, id, "tmd:Get"); - case SOAP_TYPE_tmd__RelayOutputOptionsExtension: - return ((tmd__RelayOutputOptionsExtension *)ptr)->soap_out(soap, tag, id, "tmd:RelayOutputOptionsExtension"); - case SOAP_TYPE_tmd__RelayOutputOptions: - return ((tmd__RelayOutputOptions *)ptr)->soap_out(soap, tag, id, "tmd:RelayOutputOptions"); - case SOAP_TYPE_tmd__Capabilities: - return ((tmd__Capabilities *)ptr)->soap_out(soap, tag, id, "tmd:Capabilities"); - case SOAP_TYPE__tt__Message: - return ((_tt__Message *)ptr)->soap_out(soap, "tt:Message", id, ""); - case SOAP_TYPE__tt__StringItems: - return ((_tt__StringItems *)ptr)->soap_out(soap, "tt:StringItems", id, ""); - case SOAP_TYPE_tt__PolygonOptions: - return ((tt__PolygonOptions *)ptr)->soap_out(soap, tag, id, "tt:PolygonOptions"); - case SOAP_TYPE_tt__StorageReferencePathExtension: - return ((tt__StorageReferencePathExtension *)ptr)->soap_out(soap, tag, id, "tt:StorageReferencePathExtension"); - case SOAP_TYPE_tt__StorageReferencePath: - return ((tt__StorageReferencePath *)ptr)->soap_out(soap, tag, id, "tt:StorageReferencePath"); - case SOAP_TYPE_tt__ArrayOfFileProgressExtension: - return ((tt__ArrayOfFileProgressExtension *)ptr)->soap_out(soap, tag, id, "tt:ArrayOfFileProgressExtension"); - case SOAP_TYPE_tt__ArrayOfFileProgress: - return ((tt__ArrayOfFileProgress *)ptr)->soap_out(soap, tag, id, "tt:ArrayOfFileProgress"); - case SOAP_TYPE_tt__FileProgress: - return ((tt__FileProgress *)ptr)->soap_out(soap, tag, id, "tt:FileProgress"); - case SOAP_TYPE_tt__OSDConfigurationOptionsExtension: - return ((tt__OSDConfigurationOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDConfigurationOptionsExtension"); - case SOAP_TYPE_tt__OSDConfigurationOptions: - return ((tt__OSDConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:OSDConfigurationOptions"); - case SOAP_TYPE_tt__MaximumNumberOfOSDs: - return ((tt__MaximumNumberOfOSDs *)ptr)->soap_out(soap, tag, id, "tt:MaximumNumberOfOSDs"); - case SOAP_TYPE_tt__OSDConfigurationExtension: - return ((tt__OSDConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDConfigurationExtension"); - case SOAP_TYPE_tt__OSDConfiguration: - return ((tt__OSDConfiguration *)ptr)->soap_out(soap, tag, id, "tt:OSDConfiguration"); - case SOAP_TYPE_tt__OSDImgOptionsExtension: - return ((tt__OSDImgOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDImgOptionsExtension"); - case SOAP_TYPE_tt__OSDImgOptions: - return ((tt__OSDImgOptions *)ptr)->soap_out(soap, tag, id, "tt:OSDImgOptions"); - case SOAP_TYPE_tt__OSDTextOptionsExtension: - return ((tt__OSDTextOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDTextOptionsExtension"); - case SOAP_TYPE_tt__OSDTextOptions: - return ((tt__OSDTextOptions *)ptr)->soap_out(soap, tag, id, "tt:OSDTextOptions"); - case SOAP_TYPE_tt__OSDColorOptionsExtension: - return ((tt__OSDColorOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDColorOptionsExtension"); - case SOAP_TYPE_tt__OSDColorOptions: - return ((tt__OSDColorOptions *)ptr)->soap_out(soap, tag, id, "tt:OSDColorOptions"); - case SOAP_TYPE_tt__ColorOptions: - return ((tt__ColorOptions *)ptr)->soap_out(soap, tag, id, "tt:ColorOptions"); - case SOAP_TYPE_tt__ColorspaceRange: - return ((tt__ColorspaceRange *)ptr)->soap_out(soap, tag, id, "tt:ColorspaceRange"); - case SOAP_TYPE_tt__OSDImgConfigurationExtension: - return ((tt__OSDImgConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDImgConfigurationExtension"); - case SOAP_TYPE_tt__OSDImgConfiguration: - return ((tt__OSDImgConfiguration *)ptr)->soap_out(soap, tag, id, "tt:OSDImgConfiguration"); - case SOAP_TYPE_tt__OSDTextConfigurationExtension: - return ((tt__OSDTextConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDTextConfigurationExtension"); - case SOAP_TYPE_tt__OSDTextConfiguration: - return ((tt__OSDTextConfiguration *)ptr)->soap_out(soap, tag, id, "tt:OSDTextConfiguration"); - case SOAP_TYPE_tt__OSDColor: - return ((tt__OSDColor *)ptr)->soap_out(soap, tag, id, "tt:OSDColor"); - case SOAP_TYPE_tt__OSDPosConfigurationExtension: - return ((tt__OSDPosConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:OSDPosConfigurationExtension"); - case SOAP_TYPE_tt__OSDPosConfiguration: - return ((tt__OSDPosConfiguration *)ptr)->soap_out(soap, tag, id, "tt:OSDPosConfiguration"); - case SOAP_TYPE_tt__OSDReference: - return ((tt__OSDReference *)ptr)->soap_out(soap, tag, id, "tt:OSDReference"); - case SOAP_TYPE_tt__ProfileStatusExtension: - return ((tt__ProfileStatusExtension *)ptr)->soap_out(soap, tag, id, "tt:ProfileStatusExtension"); - case SOAP_TYPE_tt__ProfileStatus: - return ((tt__ProfileStatus *)ptr)->soap_out(soap, tag, id, "tt:ProfileStatus"); - case SOAP_TYPE_tt__ActiveConnection: - return ((tt__ActiveConnection *)ptr)->soap_out(soap, tag, id, "tt:ActiveConnection"); - case SOAP_TYPE_tt__AudioClassDescriptorExtension: - return ((tt__AudioClassDescriptorExtension *)ptr)->soap_out(soap, tag, id, "tt:AudioClassDescriptorExtension"); - case SOAP_TYPE_tt__AudioClassDescriptor: - return ((tt__AudioClassDescriptor *)ptr)->soap_out(soap, tag, id, "tt:AudioClassDescriptor"); - case SOAP_TYPE_tt__AudioClassCandidate: - return ((tt__AudioClassCandidate *)ptr)->soap_out(soap, tag, id, "tt:AudioClassCandidate"); - case SOAP_TYPE_tt__ActionEngineEventPayloadExtension: - return ((tt__ActionEngineEventPayloadExtension *)ptr)->soap_out(soap, tag, id, "tt:ActionEngineEventPayloadExtension"); - case SOAP_TYPE_tt__ActionEngineEventPayload: - return ((tt__ActionEngineEventPayload *)ptr)->soap_out(soap, tag, id, "tt:ActionEngineEventPayload"); - case SOAP_TYPE_tt__AnalyticsState: - return ((tt__AnalyticsState *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsState"); - case SOAP_TYPE_tt__AnalyticsStateInformation: - return ((tt__AnalyticsStateInformation *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsStateInformation"); - case SOAP_TYPE_tt__AnalyticsEngineControl: - return ((tt__AnalyticsEngineControl *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsEngineControl"); - case SOAP_TYPE_tt__MetadataInputExtension: - return ((tt__MetadataInputExtension *)ptr)->soap_out(soap, tag, id, "tt:MetadataInputExtension"); - case SOAP_TYPE_tt__MetadataInput: - return ((tt__MetadataInput *)ptr)->soap_out(soap, tag, id, "tt:MetadataInput"); - case SOAP_TYPE_tt__SourceIdentificationExtension: - return ((tt__SourceIdentificationExtension *)ptr)->soap_out(soap, tag, id, "tt:SourceIdentificationExtension"); - case SOAP_TYPE_tt__SourceIdentification: - return ((tt__SourceIdentification *)ptr)->soap_out(soap, tag, id, "tt:SourceIdentification"); - case SOAP_TYPE_tt__AnalyticsEngineInput: - return ((tt__AnalyticsEngineInput *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsEngineInput"); - case SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension: - return ((tt__AnalyticsEngineInputInfoExtension *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsEngineInputInfoExtension"); - case SOAP_TYPE_tt__AnalyticsEngineInputInfo: - return ((tt__AnalyticsEngineInputInfo *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsEngineInputInfo"); - case SOAP_TYPE_tt__EngineConfiguration: - return ((tt__EngineConfiguration *)ptr)->soap_out(soap, tag, id, "tt:EngineConfiguration"); - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension: - return ((tt__AnalyticsDeviceEngineConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsDeviceEngineConfigurationExtension"); - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration: - return ((tt__AnalyticsDeviceEngineConfiguration *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsDeviceEngineConfiguration"); - case SOAP_TYPE_tt__AnalyticsEngine: - return ((tt__AnalyticsEngine *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsEngine"); - case SOAP_TYPE_tt__ReplayConfiguration: - return ((tt__ReplayConfiguration *)ptr)->soap_out(soap, tag, id, "tt:ReplayConfiguration"); - case SOAP_TYPE_tt__GetRecordingJobsResponseItem: - return ((tt__GetRecordingJobsResponseItem *)ptr)->soap_out(soap, tag, id, "tt:GetRecordingJobsResponseItem"); - case SOAP_TYPE_tt__RecordingJobStateTrack: - return ((tt__RecordingJobStateTrack *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobStateTrack"); - case SOAP_TYPE_tt__RecordingJobStateTracks: - return ((tt__RecordingJobStateTracks *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobStateTracks"); - case SOAP_TYPE_tt__RecordingJobStateSource: - return ((tt__RecordingJobStateSource *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobStateSource"); - case SOAP_TYPE_tt__RecordingJobStateInformationExtension: - return ((tt__RecordingJobStateInformationExtension *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobStateInformationExtension"); - case SOAP_TYPE_tt__RecordingJobStateInformation: - return ((tt__RecordingJobStateInformation *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobStateInformation"); - case SOAP_TYPE_tt__RecordingJobTrack: - return ((tt__RecordingJobTrack *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobTrack"); - case SOAP_TYPE_tt__RecordingJobSourceExtension: - return ((tt__RecordingJobSourceExtension *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobSourceExtension"); - case SOAP_TYPE_tt__RecordingJobSource: - return ((tt__RecordingJobSource *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobSource"); - case SOAP_TYPE_tt__RecordingJobConfigurationExtension: - return ((tt__RecordingJobConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobConfigurationExtension"); - case SOAP_TYPE_tt__RecordingJobConfiguration: - return ((tt__RecordingJobConfiguration *)ptr)->soap_out(soap, tag, id, "tt:RecordingJobConfiguration"); - case SOAP_TYPE_tt__GetTracksResponseItem: - return ((tt__GetTracksResponseItem *)ptr)->soap_out(soap, tag, id, "tt:GetTracksResponseItem"); - case SOAP_TYPE_tt__GetTracksResponseList: - return ((tt__GetTracksResponseList *)ptr)->soap_out(soap, tag, id, "tt:GetTracksResponseList"); - case SOAP_TYPE_tt__GetRecordingsResponseItem: - return ((tt__GetRecordingsResponseItem *)ptr)->soap_out(soap, tag, id, "tt:GetRecordingsResponseItem"); - case SOAP_TYPE_tt__TrackConfiguration: - return ((tt__TrackConfiguration *)ptr)->soap_out(soap, tag, id, "tt:TrackConfiguration"); - case SOAP_TYPE_tt__RecordingConfiguration: - return ((tt__RecordingConfiguration *)ptr)->soap_out(soap, tag, id, "tt:RecordingConfiguration"); - case SOAP_TYPE_tt__MetadataAttributes: - return ((tt__MetadataAttributes *)ptr)->soap_out(soap, tag, id, "tt:MetadataAttributes"); - case SOAP_TYPE_tt__AudioAttributes: - return ((tt__AudioAttributes *)ptr)->soap_out(soap, tag, id, "tt:AudioAttributes"); - case SOAP_TYPE_tt__VideoAttributes: - return ((tt__VideoAttributes *)ptr)->soap_out(soap, tag, id, "tt:VideoAttributes"); - case SOAP_TYPE_tt__TrackAttributesExtension: - return ((tt__TrackAttributesExtension *)ptr)->soap_out(soap, tag, id, "tt:TrackAttributesExtension"); - case SOAP_TYPE_tt__TrackAttributes: - return ((tt__TrackAttributes *)ptr)->soap_out(soap, tag, id, "tt:TrackAttributes"); - case SOAP_TYPE_tt__MediaAttributes: - return ((tt__MediaAttributes *)ptr)->soap_out(soap, tag, id, "tt:MediaAttributes"); - case SOAP_TYPE_tt__TrackInformation: - return ((tt__TrackInformation *)ptr)->soap_out(soap, tag, id, "tt:TrackInformation"); - case SOAP_TYPE_tt__RecordingSourceInformation: - return ((tt__RecordingSourceInformation *)ptr)->soap_out(soap, tag, id, "tt:RecordingSourceInformation"); - case SOAP_TYPE_tt__RecordingInformation: - return ((tt__RecordingInformation *)ptr)->soap_out(soap, tag, id, "tt:RecordingInformation"); - case SOAP_TYPE_tt__FindMetadataResult: - return ((tt__FindMetadataResult *)ptr)->soap_out(soap, tag, id, "tt:FindMetadataResult"); - case SOAP_TYPE_tt__FindMetadataResultList: - return ((tt__FindMetadataResultList *)ptr)->soap_out(soap, tag, id, "tt:FindMetadataResultList"); - case SOAP_TYPE_tt__FindPTZPositionResult: - return ((tt__FindPTZPositionResult *)ptr)->soap_out(soap, tag, id, "tt:FindPTZPositionResult"); - case SOAP_TYPE_tt__FindPTZPositionResultList: - return ((tt__FindPTZPositionResultList *)ptr)->soap_out(soap, tag, id, "tt:FindPTZPositionResultList"); - case SOAP_TYPE_tt__FindEventResult: - return ((tt__FindEventResult *)ptr)->soap_out(soap, tag, id, "tt:FindEventResult"); - case SOAP_TYPE_tt__FindEventResultList: - return ((tt__FindEventResultList *)ptr)->soap_out(soap, tag, id, "tt:FindEventResultList"); - case SOAP_TYPE_tt__FindRecordingResultList: - return ((tt__FindRecordingResultList *)ptr)->soap_out(soap, tag, id, "tt:FindRecordingResultList"); - case SOAP_TYPE_tt__MetadataFilter: - return ((tt__MetadataFilter *)ptr)->soap_out(soap, tag, id, "tt:MetadataFilter"); - case SOAP_TYPE_tt__PTZPositionFilter: - return ((tt__PTZPositionFilter *)ptr)->soap_out(soap, tag, id, "tt:PTZPositionFilter"); - case SOAP_TYPE_tt__EventFilter: - return ((tt__EventFilter *)ptr)->soap_out(soap, tag, id, "tt:EventFilter"); - case SOAP_TYPE_tt__SearchScopeExtension: - return ((tt__SearchScopeExtension *)ptr)->soap_out(soap, tag, id, "tt:SearchScopeExtension"); - case SOAP_TYPE_tt__SearchScope: - return ((tt__SearchScope *)ptr)->soap_out(soap, tag, id, "tt:SearchScope"); - case SOAP_TYPE_tt__RecordingSummary: - return ((tt__RecordingSummary *)ptr)->soap_out(soap, tag, id, "tt:RecordingSummary"); - case SOAP_TYPE_tt__DateTimeRange: - return ((tt__DateTimeRange *)ptr)->soap_out(soap, tag, id, "tt:DateTimeRange"); - case SOAP_TYPE_tt__SourceReference: - return ((tt__SourceReference *)ptr)->soap_out(soap, tag, id, "tt:SourceReference"); - case SOAP_TYPE_tt__ReceiverStateInformation: - return ((tt__ReceiverStateInformation *)ptr)->soap_out(soap, tag, id, "tt:ReceiverStateInformation"); - case SOAP_TYPE_tt__ReceiverConfiguration: - return ((tt__ReceiverConfiguration *)ptr)->soap_out(soap, tag, id, "tt:ReceiverConfiguration"); - case SOAP_TYPE_tt__Receiver: - return ((tt__Receiver *)ptr)->soap_out(soap, tag, id, "tt:Receiver"); - case SOAP_TYPE_tt__PaneOptionExtension: - return ((tt__PaneOptionExtension *)ptr)->soap_out(soap, tag, id, "tt:PaneOptionExtension"); - case SOAP_TYPE_tt__PaneLayoutOptions: - return ((tt__PaneLayoutOptions *)ptr)->soap_out(soap, tag, id, "tt:PaneLayoutOptions"); - case SOAP_TYPE_tt__LayoutOptionsExtension: - return ((tt__LayoutOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:LayoutOptionsExtension"); - case SOAP_TYPE_tt__LayoutOptions: - return ((tt__LayoutOptions *)ptr)->soap_out(soap, tag, id, "tt:LayoutOptions"); - case SOAP_TYPE_tt__CodingCapabilities: - return ((tt__CodingCapabilities *)ptr)->soap_out(soap, tag, id, "tt:CodingCapabilities"); - case SOAP_TYPE_tt__LayoutExtension: - return ((tt__LayoutExtension *)ptr)->soap_out(soap, tag, id, "tt:LayoutExtension"); - case SOAP_TYPE_tt__Layout: - return ((tt__Layout *)ptr)->soap_out(soap, tag, id, "tt:Layout"); - case SOAP_TYPE_tt__PaneLayout: - return ((tt__PaneLayout *)ptr)->soap_out(soap, tag, id, "tt:PaneLayout"); - case SOAP_TYPE_tt__PaneConfiguration: - return ((tt__PaneConfiguration *)ptr)->soap_out(soap, tag, id, "tt:PaneConfiguration"); - case SOAP_TYPE_tt__CellLayout: - return ((tt__CellLayout *)ptr)->soap_out(soap, tag, id, "tt:CellLayout"); - case SOAP_TYPE_tt__MotionExpressionConfiguration: - return ((tt__MotionExpressionConfiguration *)ptr)->soap_out(soap, tag, id, "tt:MotionExpressionConfiguration"); - case SOAP_TYPE_tt__MotionExpression: - return ((tt__MotionExpression *)ptr)->soap_out(soap, tag, id, "tt:MotionExpression"); - case SOAP_TYPE_tt__PolylineArrayConfiguration: - return ((tt__PolylineArrayConfiguration *)ptr)->soap_out(soap, tag, id, "tt:PolylineArrayConfiguration"); - case SOAP_TYPE_tt__PolylineArrayExtension: - return ((tt__PolylineArrayExtension *)ptr)->soap_out(soap, tag, id, "tt:PolylineArrayExtension"); - case SOAP_TYPE_tt__PolylineArray: - return ((tt__PolylineArray *)ptr)->soap_out(soap, tag, id, "tt:PolylineArray"); - case SOAP_TYPE_tt__SupportedAnalyticsModulesExtension: - return ((tt__SupportedAnalyticsModulesExtension *)ptr)->soap_out(soap, tag, id, "tt:SupportedAnalyticsModulesExtension"); - case SOAP_TYPE_tt__SupportedAnalyticsModules: - return ((tt__SupportedAnalyticsModules *)ptr)->soap_out(soap, tag, id, "tt:SupportedAnalyticsModules"); - case SOAP_TYPE_tt__SupportedRulesExtension: - return ((tt__SupportedRulesExtension *)ptr)->soap_out(soap, tag, id, "tt:SupportedRulesExtension"); - case SOAP_TYPE_tt__SupportedRules: - return ((tt__SupportedRules *)ptr)->soap_out(soap, tag, id, "tt:SupportedRules"); - case SOAP_TYPE_tt__ConfigDescriptionExtension: - return ((tt__ConfigDescriptionExtension *)ptr)->soap_out(soap, tag, id, "tt:ConfigDescriptionExtension"); - case SOAP_TYPE_tt__ConfigDescription: - return ((tt__ConfigDescription *)ptr)->soap_out(soap, tag, id, "tt:ConfigDescription"); - case SOAP_TYPE_tt__Config: - return ((tt__Config *)ptr)->soap_out(soap, tag, id, "tt:Config"); - case SOAP_TYPE_tt__RuleEngineConfigurationExtension: - return ((tt__RuleEngineConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:RuleEngineConfigurationExtension"); - case SOAP_TYPE_tt__RuleEngineConfiguration: - return ((tt__RuleEngineConfiguration *)ptr)->soap_out(soap, tag, id, "tt:RuleEngineConfiguration"); - case SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension: - return ((tt__AnalyticsEngineConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsEngineConfigurationExtension"); - case SOAP_TYPE_tt__AnalyticsEngineConfiguration: - return ((tt__AnalyticsEngineConfiguration *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsEngineConfiguration"); - case SOAP_TYPE_tt__Polyline: - return ((tt__Polyline *)ptr)->soap_out(soap, tag, id, "tt:Polyline"); - case SOAP_TYPE_tt__ItemListDescriptionExtension: - return ((tt__ItemListDescriptionExtension *)ptr)->soap_out(soap, tag, id, "tt:ItemListDescriptionExtension"); - case SOAP_TYPE_tt__ItemListDescription: - return ((tt__ItemListDescription *)ptr)->soap_out(soap, tag, id, "tt:ItemListDescription"); - case SOAP_TYPE_tt__MessageDescriptionExtension: - return ((tt__MessageDescriptionExtension *)ptr)->soap_out(soap, tag, id, "tt:MessageDescriptionExtension"); - case SOAP_TYPE_tt__MessageDescription: - return ((tt__MessageDescription *)ptr)->soap_out(soap, tag, id, "tt:MessageDescription"); - case SOAP_TYPE_tt__ItemListExtension: - return ((tt__ItemListExtension *)ptr)->soap_out(soap, tag, id, "tt:ItemListExtension"); - case SOAP_TYPE_tt__ItemList: - return ((tt__ItemList *)ptr)->soap_out(soap, tag, id, "tt:ItemList"); - case SOAP_TYPE_tt__MessageExtension: - return ((tt__MessageExtension *)ptr)->soap_out(soap, tag, id, "tt:MessageExtension"); - case SOAP_TYPE_tt__NoiseReductionOptions: - return ((tt__NoiseReductionOptions *)ptr)->soap_out(soap, tag, id, "tt:NoiseReductionOptions"); - case SOAP_TYPE_tt__DefoggingOptions: - return ((tt__DefoggingOptions *)ptr)->soap_out(soap, tag, id, "tt:DefoggingOptions"); - case SOAP_TYPE_tt__ToneCompensationOptions: - return ((tt__ToneCompensationOptions *)ptr)->soap_out(soap, tag, id, "tt:ToneCompensationOptions"); - case SOAP_TYPE_tt__FocusOptions20Extension: - return ((tt__FocusOptions20Extension *)ptr)->soap_out(soap, tag, id, "tt:FocusOptions20Extension"); - case SOAP_TYPE_tt__FocusOptions20: - return ((tt__FocusOptions20 *)ptr)->soap_out(soap, tag, id, "tt:FocusOptions20"); - case SOAP_TYPE_tt__WhiteBalanceOptions20Extension: - return ((tt__WhiteBalanceOptions20Extension *)ptr)->soap_out(soap, tag, id, "tt:WhiteBalanceOptions20Extension"); - case SOAP_TYPE_tt__WhiteBalanceOptions20: - return ((tt__WhiteBalanceOptions20 *)ptr)->soap_out(soap, tag, id, "tt:WhiteBalanceOptions20"); - case SOAP_TYPE_tt__FocusConfiguration20Extension: - return ((tt__FocusConfiguration20Extension *)ptr)->soap_out(soap, tag, id, "tt:FocusConfiguration20Extension"); - case SOAP_TYPE_tt__FocusConfiguration20: - return ((tt__FocusConfiguration20 *)ptr)->soap_out(soap, tag, id, "tt:FocusConfiguration20"); - case SOAP_TYPE_tt__WhiteBalance20Extension: - return ((tt__WhiteBalance20Extension *)ptr)->soap_out(soap, tag, id, "tt:WhiteBalance20Extension"); - case SOAP_TYPE_tt__WhiteBalance20: - return ((tt__WhiteBalance20 *)ptr)->soap_out(soap, tag, id, "tt:WhiteBalance20"); - case SOAP_TYPE_tt__RelativeFocusOptions20: - return ((tt__RelativeFocusOptions20 *)ptr)->soap_out(soap, tag, id, "tt:RelativeFocusOptions20"); - case SOAP_TYPE_tt__MoveOptions20: - return ((tt__MoveOptions20 *)ptr)->soap_out(soap, tag, id, "tt:MoveOptions20"); - case SOAP_TYPE_tt__ExposureOptions20: - return ((tt__ExposureOptions20 *)ptr)->soap_out(soap, tag, id, "tt:ExposureOptions20"); - case SOAP_TYPE_tt__BacklightCompensationOptions20: - return ((tt__BacklightCompensationOptions20 *)ptr)->soap_out(soap, tag, id, "tt:BacklightCompensationOptions20"); - case SOAP_TYPE_tt__WideDynamicRangeOptions20: - return ((tt__WideDynamicRangeOptions20 *)ptr)->soap_out(soap, tag, id, "tt:WideDynamicRangeOptions20"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension: - return ((tt__IrCutFilterAutoAdjustmentOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:IrCutFilterAutoAdjustmentOptionsExtension"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions: - return ((tt__IrCutFilterAutoAdjustmentOptions *)ptr)->soap_out(soap, tag, id, "tt:IrCutFilterAutoAdjustmentOptions"); - case SOAP_TYPE_tt__ImageStabilizationOptionsExtension: - return ((tt__ImageStabilizationOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:ImageStabilizationOptionsExtension"); - case SOAP_TYPE_tt__ImageStabilizationOptions: - return ((tt__ImageStabilizationOptions *)ptr)->soap_out(soap, tag, id, "tt:ImageStabilizationOptions"); - case SOAP_TYPE_tt__ImagingOptions20Extension4: - return ((tt__ImagingOptions20Extension4 *)ptr)->soap_out(soap, tag, id, "tt:ImagingOptions20Extension4"); - case SOAP_TYPE_tt__ImagingOptions20Extension3: - return ((tt__ImagingOptions20Extension3 *)ptr)->soap_out(soap, tag, id, "tt:ImagingOptions20Extension3"); - case SOAP_TYPE_tt__ImagingOptions20Extension2: - return ((tt__ImagingOptions20Extension2 *)ptr)->soap_out(soap, tag, id, "tt:ImagingOptions20Extension2"); - case SOAP_TYPE_tt__ImagingOptions20Extension: - return ((tt__ImagingOptions20Extension *)ptr)->soap_out(soap, tag, id, "tt:ImagingOptions20Extension"); - case SOAP_TYPE_tt__ImagingOptions20: - return ((tt__ImagingOptions20 *)ptr)->soap_out(soap, tag, id, "tt:ImagingOptions20"); - case SOAP_TYPE_tt__NoiseReduction: - return ((tt__NoiseReduction *)ptr)->soap_out(soap, tag, id, "tt:NoiseReduction"); - case SOAP_TYPE_tt__DefoggingExtension: - return ((tt__DefoggingExtension *)ptr)->soap_out(soap, tag, id, "tt:DefoggingExtension"); - case SOAP_TYPE_tt__Defogging: - return ((tt__Defogging *)ptr)->soap_out(soap, tag, id, "tt:Defogging"); - case SOAP_TYPE_tt__ToneCompensationExtension: - return ((tt__ToneCompensationExtension *)ptr)->soap_out(soap, tag, id, "tt:ToneCompensationExtension"); - case SOAP_TYPE_tt__ToneCompensation: - return ((tt__ToneCompensation *)ptr)->soap_out(soap, tag, id, "tt:ToneCompensation"); - case SOAP_TYPE_tt__Exposure20: - return ((tt__Exposure20 *)ptr)->soap_out(soap, tag, id, "tt:Exposure20"); - case SOAP_TYPE_tt__BacklightCompensation20: - return ((tt__BacklightCompensation20 *)ptr)->soap_out(soap, tag, id, "tt:BacklightCompensation20"); - case SOAP_TYPE_tt__WideDynamicRange20: - return ((tt__WideDynamicRange20 *)ptr)->soap_out(soap, tag, id, "tt:WideDynamicRange20"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension: - return ((tt__IrCutFilterAutoAdjustmentExtension *)ptr)->soap_out(soap, tag, id, "tt:IrCutFilterAutoAdjustmentExtension"); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustment: - return ((tt__IrCutFilterAutoAdjustment *)ptr)->soap_out(soap, tag, id, "tt:IrCutFilterAutoAdjustment"); - case SOAP_TYPE_tt__ImageStabilizationExtension: - return ((tt__ImageStabilizationExtension *)ptr)->soap_out(soap, tag, id, "tt:ImageStabilizationExtension"); - case SOAP_TYPE_tt__ImageStabilization: - return ((tt__ImageStabilization *)ptr)->soap_out(soap, tag, id, "tt:ImageStabilization"); - case SOAP_TYPE_tt__ImagingSettingsExtension204: - return ((tt__ImagingSettingsExtension204 *)ptr)->soap_out(soap, tag, id, "tt:ImagingSettingsExtension204"); - case SOAP_TYPE_tt__ImagingSettingsExtension203: - return ((tt__ImagingSettingsExtension203 *)ptr)->soap_out(soap, tag, id, "tt:ImagingSettingsExtension203"); - case SOAP_TYPE_tt__ImagingSettingsExtension202: - return ((tt__ImagingSettingsExtension202 *)ptr)->soap_out(soap, tag, id, "tt:ImagingSettingsExtension202"); - case SOAP_TYPE_tt__ImagingSettingsExtension20: - return ((tt__ImagingSettingsExtension20 *)ptr)->soap_out(soap, tag, id, "tt:ImagingSettingsExtension20"); - case SOAP_TYPE_tt__ImagingSettings20: - return ((tt__ImagingSettings20 *)ptr)->soap_out(soap, tag, id, "tt:ImagingSettings20"); - case SOAP_TYPE_tt__FocusStatus20Extension: - return ((tt__FocusStatus20Extension *)ptr)->soap_out(soap, tag, id, "tt:FocusStatus20Extension"); - case SOAP_TYPE_tt__FocusStatus20: - return ((tt__FocusStatus20 *)ptr)->soap_out(soap, tag, id, "tt:FocusStatus20"); - case SOAP_TYPE_tt__ImagingStatus20Extension: - return ((tt__ImagingStatus20Extension *)ptr)->soap_out(soap, tag, id, "tt:ImagingStatus20Extension"); - case SOAP_TYPE_tt__ImagingStatus20: - return ((tt__ImagingStatus20 *)ptr)->soap_out(soap, tag, id, "tt:ImagingStatus20"); - case SOAP_TYPE_tt__WhiteBalance: - return ((tt__WhiteBalance *)ptr)->soap_out(soap, tag, id, "tt:WhiteBalance"); - case SOAP_TYPE_tt__ContinuousFocusOptions: - return ((tt__ContinuousFocusOptions *)ptr)->soap_out(soap, tag, id, "tt:ContinuousFocusOptions"); - case SOAP_TYPE_tt__RelativeFocusOptions: - return ((tt__RelativeFocusOptions *)ptr)->soap_out(soap, tag, id, "tt:RelativeFocusOptions"); - case SOAP_TYPE_tt__AbsoluteFocusOptions: - return ((tt__AbsoluteFocusOptions *)ptr)->soap_out(soap, tag, id, "tt:AbsoluteFocusOptions"); - case SOAP_TYPE_tt__MoveOptions: - return ((tt__MoveOptions *)ptr)->soap_out(soap, tag, id, "tt:MoveOptions"); - case SOAP_TYPE_tt__ContinuousFocus: - return ((tt__ContinuousFocus *)ptr)->soap_out(soap, tag, id, "tt:ContinuousFocus"); - case SOAP_TYPE_tt__RelativeFocus: - return ((tt__RelativeFocus *)ptr)->soap_out(soap, tag, id, "tt:RelativeFocus"); - case SOAP_TYPE_tt__AbsoluteFocus: - return ((tt__AbsoluteFocus *)ptr)->soap_out(soap, tag, id, "tt:AbsoluteFocus"); - case SOAP_TYPE_tt__FocusMove: - return ((tt__FocusMove *)ptr)->soap_out(soap, tag, id, "tt:FocusMove"); - case SOAP_TYPE_tt__WhiteBalanceOptions: - return ((tt__WhiteBalanceOptions *)ptr)->soap_out(soap, tag, id, "tt:WhiteBalanceOptions"); - case SOAP_TYPE_tt__ExposureOptions: - return ((tt__ExposureOptions *)ptr)->soap_out(soap, tag, id, "tt:ExposureOptions"); - case SOAP_TYPE_tt__FocusOptions: - return ((tt__FocusOptions *)ptr)->soap_out(soap, tag, id, "tt:FocusOptions"); - case SOAP_TYPE_tt__BacklightCompensationOptions: - return ((tt__BacklightCompensationOptions *)ptr)->soap_out(soap, tag, id, "tt:BacklightCompensationOptions"); - case SOAP_TYPE_tt__WideDynamicRangeOptions: - return ((tt__WideDynamicRangeOptions *)ptr)->soap_out(soap, tag, id, "tt:WideDynamicRangeOptions"); - case SOAP_TYPE_tt__ImagingOptions: - return ((tt__ImagingOptions *)ptr)->soap_out(soap, tag, id, "tt:ImagingOptions"); - case SOAP_TYPE_tt__BacklightCompensation: - return ((tt__BacklightCompensation *)ptr)->soap_out(soap, tag, id, "tt:BacklightCompensation"); - case SOAP_TYPE_tt__WideDynamicRange: - return ((tt__WideDynamicRange *)ptr)->soap_out(soap, tag, id, "tt:WideDynamicRange"); - case SOAP_TYPE_tt__Exposure: - return ((tt__Exposure *)ptr)->soap_out(soap, tag, id, "tt:Exposure"); - case SOAP_TYPE_tt__ImagingSettingsExtension: - return ((tt__ImagingSettingsExtension *)ptr)->soap_out(soap, tag, id, "tt:ImagingSettingsExtension"); - case SOAP_TYPE_tt__ImagingSettings: - return ((tt__ImagingSettings *)ptr)->soap_out(soap, tag, id, "tt:ImagingSettings"); - case SOAP_TYPE_tt__FocusConfiguration: - return ((tt__FocusConfiguration *)ptr)->soap_out(soap, tag, id, "tt:FocusConfiguration"); - case SOAP_TYPE_tt__FocusStatus: - return ((tt__FocusStatus *)ptr)->soap_out(soap, tag, id, "tt:FocusStatus"); - case SOAP_TYPE_tt__ImagingStatus: - return ((tt__ImagingStatus *)ptr)->soap_out(soap, tag, id, "tt:ImagingStatus"); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension: - return ((tt__PTZPresetTourStartingConditionOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourStartingConditionOptionsExtension"); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions: - return ((tt__PTZPresetTourStartingConditionOptions *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourStartingConditionOptions"); - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension: - return ((tt__PTZPresetTourPresetDetailOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourPresetDetailOptionsExtension"); - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions: - return ((tt__PTZPresetTourPresetDetailOptions *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourPresetDetailOptions"); - case SOAP_TYPE_tt__PTZPresetTourSpotOptions: - return ((tt__PTZPresetTourSpotOptions *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourSpotOptions"); - case SOAP_TYPE_tt__PTZPresetTourOptions: - return ((tt__PTZPresetTourOptions *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourOptions"); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension: - return ((tt__PTZPresetTourStartingConditionExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourStartingConditionExtension"); - case SOAP_TYPE_tt__PTZPresetTourStartingCondition: - return ((tt__PTZPresetTourStartingCondition *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourStartingCondition"); - case SOAP_TYPE_tt__PTZPresetTourStatusExtension: - return ((tt__PTZPresetTourStatusExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourStatusExtension"); - case SOAP_TYPE_tt__PTZPresetTourStatus: - return ((tt__PTZPresetTourStatus *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourStatus"); - case SOAP_TYPE_tt__PTZPresetTourTypeExtension: - return ((tt__PTZPresetTourTypeExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourTypeExtension"); - case SOAP_TYPE_tt__PTZPresetTourPresetDetail: - return ((tt__PTZPresetTourPresetDetail *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourPresetDetail"); - case SOAP_TYPE_tt__PTZPresetTourSpotExtension: - return ((tt__PTZPresetTourSpotExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourSpotExtension"); - case SOAP_TYPE_tt__PTZPresetTourSpot: - return ((tt__PTZPresetTourSpot *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourSpot"); - case SOAP_TYPE_tt__PTZPresetTourExtension: - return ((tt__PTZPresetTourExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourExtension"); - case SOAP_TYPE_tt__PresetTour: - return ((tt__PresetTour *)ptr)->soap_out(soap, tag, id, "tt:PresetTour"); - case SOAP_TYPE_tt__PTZPreset: - return ((tt__PTZPreset *)ptr)->soap_out(soap, tag, id, "tt:PTZPreset"); - case SOAP_TYPE_tt__PTZSpeed: - return ((tt__PTZSpeed *)ptr)->soap_out(soap, tag, id, "tt:PTZSpeed"); - case SOAP_TYPE_tt__Space1DDescription: - return ((tt__Space1DDescription *)ptr)->soap_out(soap, tag, id, "tt:Space1DDescription"); - case SOAP_TYPE_tt__Space2DDescription: - return ((tt__Space2DDescription *)ptr)->soap_out(soap, tag, id, "tt:Space2DDescription"); - case SOAP_TYPE_tt__PTZSpacesExtension: - return ((tt__PTZSpacesExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZSpacesExtension"); - case SOAP_TYPE_tt__PTZSpaces: - return ((tt__PTZSpaces *)ptr)->soap_out(soap, tag, id, "tt:PTZSpaces"); - case SOAP_TYPE_tt__ZoomLimits: - return ((tt__ZoomLimits *)ptr)->soap_out(soap, tag, id, "tt:ZoomLimits"); - case SOAP_TYPE_tt__PanTiltLimits: - return ((tt__PanTiltLimits *)ptr)->soap_out(soap, tag, id, "tt:PanTiltLimits"); - case SOAP_TYPE_tt__ReverseOptionsExtension: - return ((tt__ReverseOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:ReverseOptionsExtension"); - case SOAP_TYPE_tt__ReverseOptions: - return ((tt__ReverseOptions *)ptr)->soap_out(soap, tag, id, "tt:ReverseOptions"); - case SOAP_TYPE_tt__EFlipOptionsExtension: - return ((tt__EFlipOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:EFlipOptionsExtension"); - case SOAP_TYPE_tt__EFlipOptions: - return ((tt__EFlipOptions *)ptr)->soap_out(soap, tag, id, "tt:EFlipOptions"); - case SOAP_TYPE_tt__PTControlDirectionOptionsExtension: - return ((tt__PTControlDirectionOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:PTControlDirectionOptionsExtension"); - case SOAP_TYPE_tt__PTControlDirectionOptions: - return ((tt__PTControlDirectionOptions *)ptr)->soap_out(soap, tag, id, "tt:PTControlDirectionOptions"); - case SOAP_TYPE_tt__PTZConfigurationOptions2: - return ((tt__PTZConfigurationOptions2 *)ptr)->soap_out(soap, tag, id, "tt:PTZConfigurationOptions2"); - case SOAP_TYPE_tt__PTZConfigurationOptions: - return ((tt__PTZConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:PTZConfigurationOptions"); - case SOAP_TYPE_tt__Reverse: - return ((tt__Reverse *)ptr)->soap_out(soap, tag, id, "tt:Reverse"); - case SOAP_TYPE_tt__EFlip: - return ((tt__EFlip *)ptr)->soap_out(soap, tag, id, "tt:EFlip"); - case SOAP_TYPE_tt__PTControlDirectionExtension: - return ((tt__PTControlDirectionExtension *)ptr)->soap_out(soap, tag, id, "tt:PTControlDirectionExtension"); - case SOAP_TYPE_tt__PTControlDirection: - return ((tt__PTControlDirection *)ptr)->soap_out(soap, tag, id, "tt:PTControlDirection"); - case SOAP_TYPE_tt__PTZConfigurationExtension2: - return ((tt__PTZConfigurationExtension2 *)ptr)->soap_out(soap, tag, id, "tt:PTZConfigurationExtension2"); - case SOAP_TYPE_tt__PTZConfigurationExtension: - return ((tt__PTZConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZConfigurationExtension"); - case SOAP_TYPE_tt__PTZConfiguration: - return ((tt__PTZConfiguration *)ptr)->soap_out(soap, tag, id, "tt:PTZConfiguration"); - case SOAP_TYPE_tt__PTZPresetTourSupportedExtension: - return ((tt__PTZPresetTourSupportedExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourSupportedExtension"); - case SOAP_TYPE_tt__PTZPresetTourSupported: - return ((tt__PTZPresetTourSupported *)ptr)->soap_out(soap, tag, id, "tt:PTZPresetTourSupported"); - case SOAP_TYPE_tt__PTZNodeExtension2: - return ((tt__PTZNodeExtension2 *)ptr)->soap_out(soap, tag, id, "tt:PTZNodeExtension2"); - case SOAP_TYPE_tt__PTZNodeExtension: - return ((tt__PTZNodeExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZNodeExtension"); - case SOAP_TYPE_tt__PTZNode: - return ((tt__PTZNode *)ptr)->soap_out(soap, tag, id, "tt:PTZNode"); - case SOAP_TYPE_tt__DigitalInput: - return ((tt__DigitalInput *)ptr)->soap_out(soap, tag, id, "tt:DigitalInput"); - case SOAP_TYPE_tt__RelayOutput: - return ((tt__RelayOutput *)ptr)->soap_out(soap, tag, id, "tt:RelayOutput"); - case SOAP_TYPE_tt__RelayOutputSettings: - return ((tt__RelayOutputSettings *)ptr)->soap_out(soap, tag, id, "tt:RelayOutputSettings"); - case SOAP_TYPE_tt__GenericEapPwdConfigurationExtension: - return ((tt__GenericEapPwdConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:GenericEapPwdConfigurationExtension"); - case SOAP_TYPE_tt__TLSConfiguration: - return ((tt__TLSConfiguration *)ptr)->soap_out(soap, tag, id, "tt:TLSConfiguration"); - case SOAP_TYPE_tt__EapMethodExtension: - return ((tt__EapMethodExtension *)ptr)->soap_out(soap, tag, id, "tt:EapMethodExtension"); - case SOAP_TYPE_tt__EAPMethodConfiguration: - return ((tt__EAPMethodConfiguration *)ptr)->soap_out(soap, tag, id, "tt:EAPMethodConfiguration"); - case SOAP_TYPE_tt__Dot1XConfigurationExtension: - return ((tt__Dot1XConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:Dot1XConfigurationExtension"); - case SOAP_TYPE_tt__Dot1XConfiguration: - return ((tt__Dot1XConfiguration *)ptr)->soap_out(soap, tag, id, "tt:Dot1XConfiguration"); - case SOAP_TYPE_tt__CertificateInformationExtension: - return ((tt__CertificateInformationExtension *)ptr)->soap_out(soap, tag, id, "tt:CertificateInformationExtension"); - case SOAP_TYPE_tt__CertificateUsage: - return ((tt__CertificateUsage *)ptr)->soap_out(soap, tag, id, "tt:CertificateUsage"); - case SOAP_TYPE_tt__CertificateInformation: - return ((tt__CertificateInformation *)ptr)->soap_out(soap, tag, id, "tt:CertificateInformation"); - case SOAP_TYPE_tt__CertificateWithPrivateKey: - return ((tt__CertificateWithPrivateKey *)ptr)->soap_out(soap, tag, id, "tt:CertificateWithPrivateKey"); - case SOAP_TYPE_tt__CertificateStatus: - return ((tt__CertificateStatus *)ptr)->soap_out(soap, tag, id, "tt:CertificateStatus"); - case SOAP_TYPE_tt__Certificate: - return ((tt__Certificate *)ptr)->soap_out(soap, tag, id, "tt:Certificate"); - case SOAP_TYPE_tt__CertificateGenerationParametersExtension: - return ((tt__CertificateGenerationParametersExtension *)ptr)->soap_out(soap, tag, id, "tt:CertificateGenerationParametersExtension"); - case SOAP_TYPE_tt__CertificateGenerationParameters: - return ((tt__CertificateGenerationParameters *)ptr)->soap_out(soap, tag, id, "tt:CertificateGenerationParameters"); - case SOAP_TYPE_tt__UserExtension: - return ((tt__UserExtension *)ptr)->soap_out(soap, tag, id, "tt:UserExtension"); - case SOAP_TYPE_tt__User: - return ((tt__User *)ptr)->soap_out(soap, tag, id, "tt:User"); - case SOAP_TYPE_tt__RemoteUser: - return ((tt__RemoteUser *)ptr)->soap_out(soap, tag, id, "tt:RemoteUser"); - case SOAP_TYPE_tt__TimeZone: - return ((tt__TimeZone *)ptr)->soap_out(soap, tag, id, "tt:TimeZone"); - case SOAP_TYPE_tt__Time: - return ((tt__Time *)ptr)->soap_out(soap, tag, id, "tt:Time"); - case SOAP_TYPE_tt__Date: - return ((tt__Date *)ptr)->soap_out(soap, tag, id, "tt:Date"); - case SOAP_TYPE_tt__DateTime: - return ((tt__DateTime *)ptr)->soap_out(soap, tag, id, "tt:DateTime"); - case SOAP_TYPE_tt__SystemDateTimeExtension: - return ((tt__SystemDateTimeExtension *)ptr)->soap_out(soap, tag, id, "tt:SystemDateTimeExtension"); - case SOAP_TYPE_tt__SystemDateTime: - return ((tt__SystemDateTime *)ptr)->soap_out(soap, tag, id, "tt:SystemDateTime"); - case SOAP_TYPE_tt__SystemLogUri: - return ((tt__SystemLogUri *)ptr)->soap_out(soap, tag, id, "tt:SystemLogUri"); - case SOAP_TYPE_tt__SystemLogUriList: - return ((tt__SystemLogUriList *)ptr)->soap_out(soap, tag, id, "tt:SystemLogUriList"); - case SOAP_TYPE_tt__BackupFile: - return ((tt__BackupFile *)ptr)->soap_out(soap, tag, id, "tt:BackupFile"); - case SOAP_TYPE_tt__AttachmentData: - return ((tt__AttachmentData *)ptr)->soap_out(soap, tag, id, "tt:AttachmentData"); - case SOAP_TYPE_tt__BinaryData: - return ((tt__BinaryData *)ptr)->soap_out(soap, tag, id, "tt:BinaryData"); - case SOAP_TYPE_tt__SupportInformation: - return ((tt__SupportInformation *)ptr)->soap_out(soap, tag, id, "tt:SupportInformation"); - case SOAP_TYPE_tt__SystemLog: - return ((tt__SystemLog *)ptr)->soap_out(soap, tag, id, "tt:SystemLog"); - case SOAP_TYPE_tt__AnalyticsDeviceExtension: - return ((tt__AnalyticsDeviceExtension *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsDeviceExtension"); - case SOAP_TYPE_tt__AnalyticsDeviceCapabilities: - return ((tt__AnalyticsDeviceCapabilities *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsDeviceCapabilities"); - case SOAP_TYPE_tt__ReceiverCapabilities: - return ((tt__ReceiverCapabilities *)ptr)->soap_out(soap, tag, id, "tt:ReceiverCapabilities"); - case SOAP_TYPE_tt__ReplayCapabilities: - return ((tt__ReplayCapabilities *)ptr)->soap_out(soap, tag, id, "tt:ReplayCapabilities"); - case SOAP_TYPE_tt__SearchCapabilities: - return ((tt__SearchCapabilities *)ptr)->soap_out(soap, tag, id, "tt:SearchCapabilities"); - case SOAP_TYPE_tt__RecordingCapabilities: - return ((tt__RecordingCapabilities *)ptr)->soap_out(soap, tag, id, "tt:RecordingCapabilities"); - case SOAP_TYPE_tt__DisplayCapabilities: - return ((tt__DisplayCapabilities *)ptr)->soap_out(soap, tag, id, "tt:DisplayCapabilities"); - case SOAP_TYPE_tt__DeviceIOCapabilities: - return ((tt__DeviceIOCapabilities *)ptr)->soap_out(soap, tag, id, "tt:DeviceIOCapabilities"); - case SOAP_TYPE_tt__PTZCapabilities: - return ((tt__PTZCapabilities *)ptr)->soap_out(soap, tag, id, "tt:PTZCapabilities"); - case SOAP_TYPE_tt__ImagingCapabilities: - return ((tt__ImagingCapabilities *)ptr)->soap_out(soap, tag, id, "tt:ImagingCapabilities"); - case SOAP_TYPE_tt__OnvifVersion: - return ((tt__OnvifVersion *)ptr)->soap_out(soap, tag, id, "tt:OnvifVersion"); - case SOAP_TYPE_tt__SystemCapabilitiesExtension2: - return ((tt__SystemCapabilitiesExtension2 *)ptr)->soap_out(soap, tag, id, "tt:SystemCapabilitiesExtension2"); - case SOAP_TYPE_tt__SystemCapabilitiesExtension: - return ((tt__SystemCapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:SystemCapabilitiesExtension"); - case SOAP_TYPE_tt__SystemCapabilities: - return ((tt__SystemCapabilities *)ptr)->soap_out(soap, tag, id, "tt:SystemCapabilities"); - case SOAP_TYPE_tt__SecurityCapabilitiesExtension2: - return ((tt__SecurityCapabilitiesExtension2 *)ptr)->soap_out(soap, tag, id, "tt:SecurityCapabilitiesExtension2"); - case SOAP_TYPE_tt__SecurityCapabilitiesExtension: - return ((tt__SecurityCapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:SecurityCapabilitiesExtension"); - case SOAP_TYPE_tt__SecurityCapabilities: - return ((tt__SecurityCapabilities *)ptr)->soap_out(soap, tag, id, "tt:SecurityCapabilities"); - case SOAP_TYPE_tt__NetworkCapabilitiesExtension2: - return ((tt__NetworkCapabilitiesExtension2 *)ptr)->soap_out(soap, tag, id, "tt:NetworkCapabilitiesExtension2"); - case SOAP_TYPE_tt__NetworkCapabilitiesExtension: - return ((tt__NetworkCapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:NetworkCapabilitiesExtension"); - case SOAP_TYPE_tt__NetworkCapabilities: - return ((tt__NetworkCapabilities *)ptr)->soap_out(soap, tag, id, "tt:NetworkCapabilities"); - case SOAP_TYPE_tt__ProfileCapabilities: - return ((tt__ProfileCapabilities *)ptr)->soap_out(soap, tag, id, "tt:ProfileCapabilities"); - case SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension: - return ((tt__RealTimeStreamingCapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:RealTimeStreamingCapabilitiesExtension"); - case SOAP_TYPE_tt__RealTimeStreamingCapabilities: - return ((tt__RealTimeStreamingCapabilities *)ptr)->soap_out(soap, tag, id, "tt:RealTimeStreamingCapabilities"); - case SOAP_TYPE_tt__MediaCapabilitiesExtension: - return ((tt__MediaCapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:MediaCapabilitiesExtension"); - case SOAP_TYPE_tt__MediaCapabilities: - return ((tt__MediaCapabilities *)ptr)->soap_out(soap, tag, id, "tt:MediaCapabilities"); - case SOAP_TYPE_tt__IOCapabilitiesExtension2: - return ((tt__IOCapabilitiesExtension2 *)ptr)->soap_out(soap, tag, id, "tt:IOCapabilitiesExtension2"); - case SOAP_TYPE_tt__IOCapabilitiesExtension: - return ((tt__IOCapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:IOCapabilitiesExtension"); - case SOAP_TYPE_tt__IOCapabilities: - return ((tt__IOCapabilities *)ptr)->soap_out(soap, tag, id, "tt:IOCapabilities"); - case SOAP_TYPE_tt__EventCapabilities: - return ((tt__EventCapabilities *)ptr)->soap_out(soap, tag, id, "tt:EventCapabilities"); - case SOAP_TYPE_tt__DeviceCapabilitiesExtension: - return ((tt__DeviceCapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:DeviceCapabilitiesExtension"); - case SOAP_TYPE_tt__DeviceCapabilities: - return ((tt__DeviceCapabilities *)ptr)->soap_out(soap, tag, id, "tt:DeviceCapabilities"); - case SOAP_TYPE_tt__AnalyticsCapabilities: - return ((tt__AnalyticsCapabilities *)ptr)->soap_out(soap, tag, id, "tt:AnalyticsCapabilities"); - case SOAP_TYPE_tt__CapabilitiesExtension2: - return ((tt__CapabilitiesExtension2 *)ptr)->soap_out(soap, tag, id, "tt:CapabilitiesExtension2"); - case SOAP_TYPE_tt__CapabilitiesExtension: - return ((tt__CapabilitiesExtension *)ptr)->soap_out(soap, tag, id, "tt:CapabilitiesExtension"); - case SOAP_TYPE_tt__Capabilities: - return ((tt__Capabilities *)ptr)->soap_out(soap, tag, id, "tt:Capabilities"); - case SOAP_TYPE_tt__Dot11AvailableNetworksExtension: - return ((tt__Dot11AvailableNetworksExtension *)ptr)->soap_out(soap, tag, id, "tt:Dot11AvailableNetworksExtension"); - case SOAP_TYPE_tt__Dot11AvailableNetworks: - return ((tt__Dot11AvailableNetworks *)ptr)->soap_out(soap, tag, id, "tt:Dot11AvailableNetworks"); - case SOAP_TYPE_tt__Dot11Status: - return ((tt__Dot11Status *)ptr)->soap_out(soap, tag, id, "tt:Dot11Status"); - case SOAP_TYPE_tt__Dot11Capabilities: - return ((tt__Dot11Capabilities *)ptr)->soap_out(soap, tag, id, "tt:Dot11Capabilities"); - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2: - return ((tt__NetworkInterfaceSetConfigurationExtension2 *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceSetConfigurationExtension2"); - case SOAP_TYPE_tt__Dot11PSKSetExtension: - return ((tt__Dot11PSKSetExtension *)ptr)->soap_out(soap, tag, id, "tt:Dot11PSKSetExtension"); - case SOAP_TYPE_tt__Dot11PSKSet: - return ((tt__Dot11PSKSet *)ptr)->soap_out(soap, tag, id, "tt:Dot11PSKSet"); - case SOAP_TYPE_tt__Dot11SecurityConfigurationExtension: - return ((tt__Dot11SecurityConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:Dot11SecurityConfigurationExtension"); - case SOAP_TYPE_tt__Dot11SecurityConfiguration: - return ((tt__Dot11SecurityConfiguration *)ptr)->soap_out(soap, tag, id, "tt:Dot11SecurityConfiguration"); - case SOAP_TYPE_tt__Dot11Configuration: - return ((tt__Dot11Configuration *)ptr)->soap_out(soap, tag, id, "tt:Dot11Configuration"); - case SOAP_TYPE_tt__IPAddressFilterExtension: - return ((tt__IPAddressFilterExtension *)ptr)->soap_out(soap, tag, id, "tt:IPAddressFilterExtension"); - case SOAP_TYPE_tt__IPAddressFilter: - return ((tt__IPAddressFilter *)ptr)->soap_out(soap, tag, id, "tt:IPAddressFilter"); - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension2: - return ((tt__NetworkZeroConfigurationExtension2 *)ptr)->soap_out(soap, tag, id, "tt:NetworkZeroConfigurationExtension2"); - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension: - return ((tt__NetworkZeroConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:NetworkZeroConfigurationExtension"); - case SOAP_TYPE_tt__NetworkZeroConfiguration: - return ((tt__NetworkZeroConfiguration *)ptr)->soap_out(soap, tag, id, "tt:NetworkZeroConfiguration"); - case SOAP_TYPE_tt__NetworkGateway: - return ((tt__NetworkGateway *)ptr)->soap_out(soap, tag, id, "tt:NetworkGateway"); - case SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration: - return ((tt__IPv4NetworkInterfaceSetConfiguration *)ptr)->soap_out(soap, tag, id, "tt:IPv4NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration: - return ((tt__IPv6NetworkInterfaceSetConfiguration *)ptr)->soap_out(soap, tag, id, "tt:IPv6NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension: - return ((tt__NetworkInterfaceSetConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceSetConfigurationExtension"); - case SOAP_TYPE_tt__NetworkInterfaceSetConfiguration: - return ((tt__NetworkInterfaceSetConfiguration *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_tt__DynamicDNSInformationExtension: - return ((tt__DynamicDNSInformationExtension *)ptr)->soap_out(soap, tag, id, "tt:DynamicDNSInformationExtension"); - case SOAP_TYPE_tt__DynamicDNSInformation: - return ((tt__DynamicDNSInformation *)ptr)->soap_out(soap, tag, id, "tt:DynamicDNSInformation"); - case SOAP_TYPE_tt__NTPInformationExtension: - return ((tt__NTPInformationExtension *)ptr)->soap_out(soap, tag, id, "tt:NTPInformationExtension"); - case SOAP_TYPE_tt__NTPInformation: - return ((tt__NTPInformation *)ptr)->soap_out(soap, tag, id, "tt:NTPInformation"); - case SOAP_TYPE_tt__DNSInformationExtension: - return ((tt__DNSInformationExtension *)ptr)->soap_out(soap, tag, id, "tt:DNSInformationExtension"); - case SOAP_TYPE_tt__DNSInformation: - return ((tt__DNSInformation *)ptr)->soap_out(soap, tag, id, "tt:DNSInformation"); - case SOAP_TYPE_tt__HostnameInformationExtension: - return ((tt__HostnameInformationExtension *)ptr)->soap_out(soap, tag, id, "tt:HostnameInformationExtension"); - case SOAP_TYPE_tt__HostnameInformation: - return ((tt__HostnameInformation *)ptr)->soap_out(soap, tag, id, "tt:HostnameInformation"); - case SOAP_TYPE_tt__PrefixedIPv6Address: - return ((tt__PrefixedIPv6Address *)ptr)->soap_out(soap, tag, id, "tt:PrefixedIPv6Address"); - case SOAP_TYPE_tt__PrefixedIPv4Address: - return ((tt__PrefixedIPv4Address *)ptr)->soap_out(soap, tag, id, "tt:PrefixedIPv4Address"); - case SOAP_TYPE_tt__IPAddress: - return ((tt__IPAddress *)ptr)->soap_out(soap, tag, id, "tt:IPAddress"); - case SOAP_TYPE_tt__NetworkHostExtension: - return ((tt__NetworkHostExtension *)ptr)->soap_out(soap, tag, id, "tt:NetworkHostExtension"); - case SOAP_TYPE_tt__NetworkHost: - return ((tt__NetworkHost *)ptr)->soap_out(soap, tag, id, "tt:NetworkHost"); - case SOAP_TYPE_tt__NetworkProtocolExtension: - return ((tt__NetworkProtocolExtension *)ptr)->soap_out(soap, tag, id, "tt:NetworkProtocolExtension"); - case SOAP_TYPE_tt__NetworkProtocol: - return ((tt__NetworkProtocol *)ptr)->soap_out(soap, tag, id, "tt:NetworkProtocol"); - case SOAP_TYPE_tt__IPv6ConfigurationExtension: - return ((tt__IPv6ConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:IPv6ConfigurationExtension"); - case SOAP_TYPE_tt__IPv6Configuration: - return ((tt__IPv6Configuration *)ptr)->soap_out(soap, tag, id, "tt:IPv6Configuration"); - case SOAP_TYPE_tt__IPv4Configuration: - return ((tt__IPv4Configuration *)ptr)->soap_out(soap, tag, id, "tt:IPv4Configuration"); - case SOAP_TYPE_tt__IPv4NetworkInterface: - return ((tt__IPv4NetworkInterface *)ptr)->soap_out(soap, tag, id, "tt:IPv4NetworkInterface"); - case SOAP_TYPE_tt__IPv6NetworkInterface: - return ((tt__IPv6NetworkInterface *)ptr)->soap_out(soap, tag, id, "tt:IPv6NetworkInterface"); - case SOAP_TYPE_tt__NetworkInterfaceInfo: - return ((tt__NetworkInterfaceInfo *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceInfo"); - case SOAP_TYPE_tt__NetworkInterfaceConnectionSetting: - return ((tt__NetworkInterfaceConnectionSetting *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceConnectionSetting"); - case SOAP_TYPE_tt__NetworkInterfaceLink: - return ((tt__NetworkInterfaceLink *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceLink"); - case SOAP_TYPE_tt__NetworkInterfaceExtension2: - return ((tt__NetworkInterfaceExtension2 *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceExtension2"); - case SOAP_TYPE_tt__Dot3Configuration: - return ((tt__Dot3Configuration *)ptr)->soap_out(soap, tag, id, "tt:Dot3Configuration"); - case SOAP_TYPE_tt__NetworkInterfaceExtension: - return ((tt__NetworkInterfaceExtension *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterfaceExtension"); - case SOAP_TYPE_tt__NetworkInterface: - return ((tt__NetworkInterface *)ptr)->soap_out(soap, tag, id, "tt:NetworkInterface"); - case SOAP_TYPE_tt__Scope: - return ((tt__Scope *)ptr)->soap_out(soap, tag, id, "tt:Scope"); - case SOAP_TYPE_tt__MediaUri: - return ((tt__MediaUri *)ptr)->soap_out(soap, tag, id, "tt:MediaUri"); - case SOAP_TYPE_tt__Transport: - return ((tt__Transport *)ptr)->soap_out(soap, tag, id, "tt:Transport"); - case SOAP_TYPE_tt__StreamSetup: - return ((tt__StreamSetup *)ptr)->soap_out(soap, tag, id, "tt:StreamSetup"); - case SOAP_TYPE_tt__MulticastConfiguration: - return ((tt__MulticastConfiguration *)ptr)->soap_out(soap, tag, id, "tt:MulticastConfiguration"); - case SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension: - return ((tt__AudioDecoderConfigurationOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:AudioDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_tt__G726DecOptions: - return ((tt__G726DecOptions *)ptr)->soap_out(soap, tag, id, "tt:G726DecOptions"); - case SOAP_TYPE_tt__AACDecOptions: - return ((tt__AACDecOptions *)ptr)->soap_out(soap, tag, id, "tt:AACDecOptions"); - case SOAP_TYPE_tt__G711DecOptions: - return ((tt__G711DecOptions *)ptr)->soap_out(soap, tag, id, "tt:G711DecOptions"); - case SOAP_TYPE_tt__AudioDecoderConfigurationOptions: - return ((tt__AudioDecoderConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:AudioDecoderConfigurationOptions"); - case SOAP_TYPE_tt__AudioDecoderConfiguration: - return ((tt__AudioDecoderConfiguration *)ptr)->soap_out(soap, tag, id, "tt:AudioDecoderConfiguration"); - case SOAP_TYPE_tt__AudioOutputConfigurationOptions: - return ((tt__AudioOutputConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:AudioOutputConfigurationOptions"); - case SOAP_TYPE_tt__AudioOutputConfiguration: - return ((tt__AudioOutputConfiguration *)ptr)->soap_out(soap, tag, id, "tt:AudioOutputConfiguration"); - case SOAP_TYPE_tt__AudioOutput: - return ((tt__AudioOutput *)ptr)->soap_out(soap, tag, id, "tt:AudioOutput"); - case SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension: - return ((tt__VideoDecoderConfigurationOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:VideoDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_tt__Mpeg4DecOptions: - return ((tt__Mpeg4DecOptions *)ptr)->soap_out(soap, tag, id, "tt:Mpeg4DecOptions"); - case SOAP_TYPE_tt__JpegDecOptions: - return ((tt__JpegDecOptions *)ptr)->soap_out(soap, tag, id, "tt:JpegDecOptions"); - case SOAP_TYPE_tt__H264DecOptions: - return ((tt__H264DecOptions *)ptr)->soap_out(soap, tag, id, "tt:H264DecOptions"); - case SOAP_TYPE_tt__VideoDecoderConfigurationOptions: - return ((tt__VideoDecoderConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:VideoDecoderConfigurationOptions"); - case SOAP_TYPE_tt__VideoOutputConfigurationOptions: - return ((tt__VideoOutputConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:VideoOutputConfigurationOptions"); - case SOAP_TYPE_tt__VideoOutputConfiguration: - return ((tt__VideoOutputConfiguration *)ptr)->soap_out(soap, tag, id, "tt:VideoOutputConfiguration"); - case SOAP_TYPE_tt__VideoOutputExtension: - return ((tt__VideoOutputExtension *)ptr)->soap_out(soap, tag, id, "tt:VideoOutputExtension"); - case SOAP_TYPE_tt__VideoOutput: - return ((tt__VideoOutput *)ptr)->soap_out(soap, tag, id, "tt:VideoOutput"); - case SOAP_TYPE_tt__PTZStatusFilterOptionsExtension: - return ((tt__PTZStatusFilterOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:PTZStatusFilterOptionsExtension"); - case SOAP_TYPE_tt__PTZStatusFilterOptions: - return ((tt__PTZStatusFilterOptions *)ptr)->soap_out(soap, tag, id, "tt:PTZStatusFilterOptions"); - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2: - return ((tt__MetadataConfigurationOptionsExtension2 *)ptr)->soap_out(soap, tag, id, "tt:MetadataConfigurationOptionsExtension2"); - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension: - return ((tt__MetadataConfigurationOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:MetadataConfigurationOptionsExtension"); - case SOAP_TYPE_tt__MetadataConfigurationOptions: - return ((tt__MetadataConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:MetadataConfigurationOptions"); - case SOAP_TYPE_tt__EventSubscription: - return ((tt__EventSubscription *)ptr)->soap_out(soap, tag, id, "tt:EventSubscription"); - case SOAP_TYPE_tt__PTZFilter: - return ((tt__PTZFilter *)ptr)->soap_out(soap, tag, id, "tt:PTZFilter"); - case SOAP_TYPE_tt__MetadataConfigurationExtension: - return ((tt__MetadataConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:MetadataConfigurationExtension"); - case SOAP_TYPE_tt__MetadataConfiguration: - return ((tt__MetadataConfiguration *)ptr)->soap_out(soap, tag, id, "tt:MetadataConfiguration"); - case SOAP_TYPE_tt__VideoAnalyticsConfiguration: - return ((tt__VideoAnalyticsConfiguration *)ptr)->soap_out(soap, tag, id, "tt:VideoAnalyticsConfiguration"); - case SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions: - return ((tt__AudioEncoder2ConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:AudioEncoder2ConfigurationOptions"); - case SOAP_TYPE_tt__AudioEncoder2Configuration: - return ((tt__AudioEncoder2Configuration *)ptr)->soap_out(soap, tag, id, "tt:AudioEncoder2Configuration"); - case SOAP_TYPE_tt__AudioEncoderConfigurationOption: - return ((tt__AudioEncoderConfigurationOption *)ptr)->soap_out(soap, tag, id, "tt:AudioEncoderConfigurationOption"); - case SOAP_TYPE_tt__AudioEncoderConfigurationOptions: - return ((tt__AudioEncoderConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:AudioEncoderConfigurationOptions"); - case SOAP_TYPE_tt__AudioEncoderConfiguration: - return ((tt__AudioEncoderConfiguration *)ptr)->soap_out(soap, tag, id, "tt:AudioEncoderConfiguration"); - case SOAP_TYPE_tt__AudioSourceOptionsExtension: - return ((tt__AudioSourceOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:AudioSourceOptionsExtension"); - case SOAP_TYPE_tt__AudioSourceConfigurationOptions: - return ((tt__AudioSourceConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:AudioSourceConfigurationOptions"); - case SOAP_TYPE_tt__AudioSourceConfiguration: - return ((tt__AudioSourceConfiguration *)ptr)->soap_out(soap, tag, id, "tt:AudioSourceConfiguration"); - case SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions: - return ((tt__VideoEncoder2ConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:VideoEncoder2ConfigurationOptions"); - case SOAP_TYPE_tt__VideoRateControl2: - return ((tt__VideoRateControl2 *)ptr)->soap_out(soap, tag, id, "tt:VideoRateControl2"); - case SOAP_TYPE_tt__VideoResolution2: - return ((tt__VideoResolution2 *)ptr)->soap_out(soap, tag, id, "tt:VideoResolution2"); - case SOAP_TYPE_tt__VideoEncoder2Configuration: - return ((tt__VideoEncoder2Configuration *)ptr)->soap_out(soap, tag, id, "tt:VideoEncoder2Configuration"); - case SOAP_TYPE_tt__H264Options2: - return ((tt__H264Options2 *)ptr)->soap_out(soap, tag, id, "tt:H264Options2"); - case SOAP_TYPE_tt__H264Options: - return ((tt__H264Options *)ptr)->soap_out(soap, tag, id, "tt:H264Options"); - case SOAP_TYPE_tt__Mpeg4Options2: - return ((tt__Mpeg4Options2 *)ptr)->soap_out(soap, tag, id, "tt:Mpeg4Options2"); - case SOAP_TYPE_tt__Mpeg4Options: - return ((tt__Mpeg4Options *)ptr)->soap_out(soap, tag, id, "tt:Mpeg4Options"); - case SOAP_TYPE_tt__JpegOptions2: - return ((tt__JpegOptions2 *)ptr)->soap_out(soap, tag, id, "tt:JpegOptions2"); - case SOAP_TYPE_tt__JpegOptions: - return ((tt__JpegOptions *)ptr)->soap_out(soap, tag, id, "tt:JpegOptions"); - case SOAP_TYPE_tt__VideoEncoderOptionsExtension2: - return ((tt__VideoEncoderOptionsExtension2 *)ptr)->soap_out(soap, tag, id, "tt:VideoEncoderOptionsExtension2"); - case SOAP_TYPE_tt__VideoEncoderOptionsExtension: - return ((tt__VideoEncoderOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:VideoEncoderOptionsExtension"); - case SOAP_TYPE_tt__VideoEncoderConfigurationOptions: - return ((tt__VideoEncoderConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:VideoEncoderConfigurationOptions"); - case SOAP_TYPE_tt__H264Configuration: - return ((tt__H264Configuration *)ptr)->soap_out(soap, tag, id, "tt:H264Configuration"); - case SOAP_TYPE_tt__Mpeg4Configuration: - return ((tt__Mpeg4Configuration *)ptr)->soap_out(soap, tag, id, "tt:Mpeg4Configuration"); - case SOAP_TYPE_tt__VideoRateControl: - return ((tt__VideoRateControl *)ptr)->soap_out(soap, tag, id, "tt:VideoRateControl"); - case SOAP_TYPE_tt__VideoResolution: - return ((tt__VideoResolution *)ptr)->soap_out(soap, tag, id, "tt:VideoResolution"); - case SOAP_TYPE_tt__VideoEncoderConfiguration: - return ((tt__VideoEncoderConfiguration *)ptr)->soap_out(soap, tag, id, "tt:VideoEncoderConfiguration"); - case SOAP_TYPE_tt__SceneOrientation: - return ((tt__SceneOrientation *)ptr)->soap_out(soap, tag, id, "tt:SceneOrientation"); - case SOAP_TYPE_tt__RotateOptionsExtension: - return ((tt__RotateOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:RotateOptionsExtension"); - case SOAP_TYPE_tt__RotateOptions: - return ((tt__RotateOptions *)ptr)->soap_out(soap, tag, id, "tt:RotateOptions"); - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2: - return ((tt__VideoSourceConfigurationOptionsExtension2 *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceConfigurationOptionsExtension2"); - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension: - return ((tt__VideoSourceConfigurationOptionsExtension *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceConfigurationOptionsExtension"); - case SOAP_TYPE_tt__VideoSourceConfigurationOptions: - return ((tt__VideoSourceConfigurationOptions *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceConfigurationOptions"); - case SOAP_TYPE_tt__LensDescription: - return ((tt__LensDescription *)ptr)->soap_out(soap, tag, id, "tt:LensDescription"); - case SOAP_TYPE_tt__LensOffset: - return ((tt__LensOffset *)ptr)->soap_out(soap, tag, id, "tt:LensOffset"); - case SOAP_TYPE_tt__LensProjection: - return ((tt__LensProjection *)ptr)->soap_out(soap, tag, id, "tt:LensProjection"); - case SOAP_TYPE_tt__RotateExtension: - return ((tt__RotateExtension *)ptr)->soap_out(soap, tag, id, "tt:RotateExtension"); - case SOAP_TYPE_tt__Rotate: - return ((tt__Rotate *)ptr)->soap_out(soap, tag, id, "tt:Rotate"); - case SOAP_TYPE_tt__VideoSourceConfigurationExtension2: - return ((tt__VideoSourceConfigurationExtension2 *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceConfigurationExtension2"); - case SOAP_TYPE_tt__VideoSourceConfigurationExtension: - return ((tt__VideoSourceConfigurationExtension *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceConfigurationExtension"); - case SOAP_TYPE_tt__VideoSourceConfiguration: - return ((tt__VideoSourceConfiguration *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceConfiguration"); - case SOAP_TYPE_tt__ConfigurationEntity: - return ((tt__ConfigurationEntity *)ptr)->soap_out(soap, tag, id, "tt:ConfigurationEntity"); - case SOAP_TYPE_tt__ProfileExtension2: - return ((tt__ProfileExtension2 *)ptr)->soap_out(soap, tag, id, "tt:ProfileExtension2"); - case SOAP_TYPE_tt__ProfileExtension: - return ((tt__ProfileExtension *)ptr)->soap_out(soap, tag, id, "tt:ProfileExtension"); - case SOAP_TYPE_tt__Profile: - return ((tt__Profile *)ptr)->soap_out(soap, tag, id, "tt:Profile"); - case SOAP_TYPE_tt__AudioSource: - return ((tt__AudioSource *)ptr)->soap_out(soap, tag, id, "tt:AudioSource"); - case SOAP_TYPE_tt__VideoSourceExtension2: - return ((tt__VideoSourceExtension2 *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceExtension2"); - case SOAP_TYPE_tt__VideoSourceExtension: - return ((tt__VideoSourceExtension *)ptr)->soap_out(soap, tag, id, "tt:VideoSourceExtension"); - case SOAP_TYPE_tt__VideoSource: - return ((tt__VideoSource *)ptr)->soap_out(soap, tag, id, "tt:VideoSource"); - case SOAP_TYPE_tt__AnyHolder: - return ((tt__AnyHolder *)ptr)->soap_out(soap, tag, id, "tt:AnyHolder"); - case SOAP_TYPE_tt__FloatItems: - return ((tt__FloatItems *)ptr)->soap_out(soap, tag, id, "tt:FloatItems"); - case SOAP_TYPE_tt__IntItems: - return ((tt__IntItems *)ptr)->soap_out(soap, tag, id, "tt:IntItems"); - case SOAP_TYPE_tt__DurationRange: - return ((tt__DurationRange *)ptr)->soap_out(soap, tag, id, "tt:DurationRange"); - case SOAP_TYPE_tt__FloatRange: - return ((tt__FloatRange *)ptr)->soap_out(soap, tag, id, "tt:FloatRange"); - case SOAP_TYPE_tt__IntRectangleRange: - return ((tt__IntRectangleRange *)ptr)->soap_out(soap, tag, id, "tt:IntRectangleRange"); - case SOAP_TYPE_tt__IntRectangle: - return ((tt__IntRectangle *)ptr)->soap_out(soap, tag, id, "tt:IntRectangle"); - case SOAP_TYPE_tt__DeviceEntity: - return ((tt__DeviceEntity *)ptr)->soap_out(soap, tag, id, "tt:DeviceEntity"); - case SOAP_TYPE_tt__LocationEntity: - return ((tt__LocationEntity *)ptr)->soap_out(soap, tag, id, "tt:LocationEntity"); - case SOAP_TYPE_tt__LocalOrientation: - return ((tt__LocalOrientation *)ptr)->soap_out(soap, tag, id, "tt:LocalOrientation"); - case SOAP_TYPE_tt__LocalLocation: - return ((tt__LocalLocation *)ptr)->soap_out(soap, tag, id, "tt:LocalLocation"); - case SOAP_TYPE_tt__GeoOrientation: - return ((tt__GeoOrientation *)ptr)->soap_out(soap, tag, id, "tt:GeoOrientation"); - case SOAP_TYPE_tt__GeoLocation: - return ((tt__GeoLocation *)ptr)->soap_out(soap, tag, id, "tt:GeoLocation"); - case SOAP_TYPE_tt__TransformationExtension: - return ((tt__TransformationExtension *)ptr)->soap_out(soap, tag, id, "tt:TransformationExtension"); - case SOAP_TYPE_tt__Transformation: - return ((tt__Transformation *)ptr)->soap_out(soap, tag, id, "tt:Transformation"); - case SOAP_TYPE_tt__ColorDescriptor: - return ((tt__ColorDescriptor *)ptr)->soap_out(soap, tag, id, "tt:ColorDescriptor"); - case SOAP_TYPE_tt__ColorCovariance: - return ((tt__ColorCovariance *)ptr)->soap_out(soap, tag, id, "tt:ColorCovariance"); - case SOAP_TYPE_tt__Color: - return ((tt__Color *)ptr)->soap_out(soap, tag, id, "tt:Color"); - case SOAP_TYPE_tt__Polygon: - return ((tt__Polygon *)ptr)->soap_out(soap, tag, id, "tt:Polygon"); - case SOAP_TYPE_tt__Rectangle: - return ((tt__Rectangle *)ptr)->soap_out(soap, tag, id, "tt:Rectangle"); - case SOAP_TYPE_tt__Vector: - return ((tt__Vector *)ptr)->soap_out(soap, tag, id, "tt:Vector"); - case SOAP_TYPE_tt__PTZMoveStatus: - return ((tt__PTZMoveStatus *)ptr)->soap_out(soap, tag, id, "tt:PTZMoveStatus"); - case SOAP_TYPE_tt__PTZStatus: - return ((tt__PTZStatus *)ptr)->soap_out(soap, tag, id, "tt:PTZStatus"); - case SOAP_TYPE_tt__PTZVector: - return ((tt__PTZVector *)ptr)->soap_out(soap, tag, id, "tt:PTZVector"); - case SOAP_TYPE_tt__Vector1D: - return ((tt__Vector1D *)ptr)->soap_out(soap, tag, id, "tt:Vector1D"); - case SOAP_TYPE_tt__Vector2D: - return ((tt__Vector2D *)ptr)->soap_out(soap, tag, id, "tt:Vector2D"); - case SOAP_TYPE_tt__IntRange: - return ((tt__IntRange *)ptr)->soap_out(soap, tag, id, "tt:IntRange"); - case SOAP_TYPE__tev__GetEventPropertiesResponse: - return ((_tev__GetEventPropertiesResponse *)ptr)->soap_out(soap, "tev:GetEventPropertiesResponse", id, ""); - case SOAP_TYPE__tev__GetEventProperties: - return ((_tev__GetEventProperties *)ptr)->soap_out(soap, "tev:GetEventProperties", id, ""); - case SOAP_TYPE__tev__SetSynchronizationPointResponse: - return ((_tev__SetSynchronizationPointResponse *)ptr)->soap_out(soap, "tev:SetSynchronizationPointResponse", id, ""); - case SOAP_TYPE__tev__SetSynchronizationPoint: - return ((_tev__SetSynchronizationPoint *)ptr)->soap_out(soap, "tev:SetSynchronizationPoint", id, ""); - case SOAP_TYPE__tev__SeekResponse: - return ((_tev__SeekResponse *)ptr)->soap_out(soap, "tev:SeekResponse", id, ""); - case SOAP_TYPE__tev__Seek: - return ((_tev__Seek *)ptr)->soap_out(soap, "tev:Seek", id, ""); - case SOAP_TYPE__tev__PullMessagesFaultResponse: - return ((_tev__PullMessagesFaultResponse *)ptr)->soap_out(soap, "tev:PullMessagesFaultResponse", id, ""); - case SOAP_TYPE__tev__PullMessagesResponse: - return ((_tev__PullMessagesResponse *)ptr)->soap_out(soap, "tev:PullMessagesResponse", id, ""); - case SOAP_TYPE__tev__PullMessages: - return ((_tev__PullMessages *)ptr)->soap_out(soap, "tev:PullMessages", id, ""); - case SOAP_TYPE__tev__CreatePullPointSubscriptionResponse: - return ((_tev__CreatePullPointSubscriptionResponse *)ptr)->soap_out(soap, "tev:CreatePullPointSubscriptionResponse", id, ""); - case SOAP_TYPE__tev__CreatePullPointSubscription: - return ((_tev__CreatePullPointSubscription *)ptr)->soap_out(soap, "tev:CreatePullPointSubscription", id, ""); - case SOAP_TYPE__tev__GetServiceCapabilitiesResponse: - return ((_tev__GetServiceCapabilitiesResponse *)ptr)->soap_out(soap, "tev:GetServiceCapabilitiesResponse", id, ""); - case SOAP_TYPE__tev__GetServiceCapabilities: - return ((_tev__GetServiceCapabilities *)ptr)->soap_out(soap, "tev:GetServiceCapabilities", id, ""); - case SOAP_TYPE_tev__SubscriptionPolicy: - return ((tev__SubscriptionPolicy *)ptr)->soap_out(soap, tag, id, "tev:SubscriptionPolicy"); - case SOAP_TYPE_tev__Capabilities: - return ((tev__Capabilities *)ptr)->soap_out(soap, tag, id, "tev:Capabilities"); - case SOAP_TYPE_wsrfbf__BaseFaultType: - return ((wsrfbf__BaseFaultType *)ptr)->soap_out(soap, tag, id, "wsrfbf:BaseFaultType"); - case SOAP_TYPE__wsnt__ResumeSubscriptionResponse: - return ((_wsnt__ResumeSubscriptionResponse *)ptr)->soap_out(soap, "wsnt:ResumeSubscriptionResponse", id, ""); - case SOAP_TYPE__wsnt__ResumeSubscription: - return ((_wsnt__ResumeSubscription *)ptr)->soap_out(soap, "wsnt:ResumeSubscription", id, ""); - case SOAP_TYPE__wsnt__PauseSubscriptionResponse: - return ((_wsnt__PauseSubscriptionResponse *)ptr)->soap_out(soap, "wsnt:PauseSubscriptionResponse", id, ""); - case SOAP_TYPE__wsnt__PauseSubscription: - return ((_wsnt__PauseSubscription *)ptr)->soap_out(soap, "wsnt:PauseSubscription", id, ""); - case SOAP_TYPE__wsnt__UnsubscribeResponse: - return ((_wsnt__UnsubscribeResponse *)ptr)->soap_out(soap, "wsnt:UnsubscribeResponse", id, ""); - case SOAP_TYPE__wsnt__Unsubscribe: - return ((_wsnt__Unsubscribe *)ptr)->soap_out(soap, "wsnt:Unsubscribe", id, ""); - case SOAP_TYPE__wsnt__RenewResponse: - return ((_wsnt__RenewResponse *)ptr)->soap_out(soap, "wsnt:RenewResponse", id, ""); - case SOAP_TYPE__wsnt__Renew: - return ((_wsnt__Renew *)ptr)->soap_out(soap, "wsnt:Renew", id, ""); - case SOAP_TYPE__wsnt__CreatePullPointResponse: - return ((_wsnt__CreatePullPointResponse *)ptr)->soap_out(soap, "wsnt:CreatePullPointResponse", id, ""); - case SOAP_TYPE__wsnt__CreatePullPoint: - return ((_wsnt__CreatePullPoint *)ptr)->soap_out(soap, "wsnt:CreatePullPoint", id, ""); - case SOAP_TYPE__wsnt__DestroyPullPointResponse: - return ((_wsnt__DestroyPullPointResponse *)ptr)->soap_out(soap, "wsnt:DestroyPullPointResponse", id, ""); - case SOAP_TYPE__wsnt__DestroyPullPoint: - return ((_wsnt__DestroyPullPoint *)ptr)->soap_out(soap, "wsnt:DestroyPullPoint", id, ""); - case SOAP_TYPE__wsnt__GetMessagesResponse: - return ((_wsnt__GetMessagesResponse *)ptr)->soap_out(soap, "wsnt:GetMessagesResponse", id, ""); - case SOAP_TYPE__wsnt__GetMessages: - return ((_wsnt__GetMessages *)ptr)->soap_out(soap, "wsnt:GetMessages", id, ""); - case SOAP_TYPE__wsnt__GetCurrentMessageResponse: - return ((_wsnt__GetCurrentMessageResponse *)ptr)->soap_out(soap, "wsnt:GetCurrentMessageResponse", id, ""); - case SOAP_TYPE__wsnt__GetCurrentMessage: - return ((_wsnt__GetCurrentMessage *)ptr)->soap_out(soap, "wsnt:GetCurrentMessage", id, ""); - case SOAP_TYPE__wsnt__SubscribeResponse: - return ((_wsnt__SubscribeResponse *)ptr)->soap_out(soap, "wsnt:SubscribeResponse", id, ""); - case SOAP_TYPE__wsnt__Subscribe: - return ((_wsnt__Subscribe *)ptr)->soap_out(soap, "wsnt:Subscribe", id, ""); - case SOAP_TYPE__wsnt__UseRaw: - return ((_wsnt__UseRaw *)ptr)->soap_out(soap, "wsnt:UseRaw", id, ""); - case SOAP_TYPE__wsnt__Notify: - return ((_wsnt__Notify *)ptr)->soap_out(soap, "wsnt:Notify", id, ""); - case SOAP_TYPE__wsnt__SubscriptionManagerRP: - return ((_wsnt__SubscriptionManagerRP *)ptr)->soap_out(soap, "wsnt:SubscriptionManagerRP", id, ""); - case SOAP_TYPE__wsnt__NotificationProducerRP: - return ((_wsnt__NotificationProducerRP *)ptr)->soap_out(soap, "wsnt:NotificationProducerRP", id, ""); - case SOAP_TYPE_wsnt__ResumeFailedFaultType: - return ((wsnt__ResumeFailedFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:ResumeFailedFaultType"); - case SOAP_TYPE_wsnt__PauseFailedFaultType: - return ((wsnt__PauseFailedFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:PauseFailedFaultType"); - case SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType: - return ((wsnt__UnableToDestroySubscriptionFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnableToDestroySubscriptionFaultType"); - case SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType: - return ((wsnt__UnacceptableTerminationTimeFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnacceptableTerminationTimeFaultType"); - case SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType: - return ((wsnt__UnableToCreatePullPointFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnableToCreatePullPointFaultType"); - case SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType: - return ((wsnt__UnableToDestroyPullPointFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnableToDestroyPullPointFaultType"); - case SOAP_TYPE_wsnt__UnableToGetMessagesFaultType: - return ((wsnt__UnableToGetMessagesFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnableToGetMessagesFaultType"); - case SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType: - return ((wsnt__NoCurrentMessageOnTopicFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:NoCurrentMessageOnTopicFaultType"); - case SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType: - return ((wsnt__UnacceptableInitialTerminationTimeFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnacceptableInitialTerminationTimeFaultType"); - case SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType: - return ((wsnt__NotifyMessageNotSupportedFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:NotifyMessageNotSupportedFaultType"); - case SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType: - return ((wsnt__UnsupportedPolicyRequestFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnsupportedPolicyRequestFaultType"); - case SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType: - return ((wsnt__UnrecognizedPolicyRequestFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:UnrecognizedPolicyRequestFaultType"); - case SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType: - return ((wsnt__InvalidMessageContentExpressionFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:InvalidMessageContentExpressionFaultType"); - case SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType: - return ((wsnt__InvalidProducerPropertiesExpressionFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:InvalidProducerPropertiesExpressionFaultType"); - case SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType: - return ((wsnt__MultipleTopicsSpecifiedFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:MultipleTopicsSpecifiedFaultType"); - case SOAP_TYPE_wsnt__TopicNotSupportedFaultType: - return ((wsnt__TopicNotSupportedFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:TopicNotSupportedFaultType"); - case SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType: - return ((wsnt__InvalidTopicExpressionFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:InvalidTopicExpressionFaultType"); - case SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType: - return ((wsnt__TopicExpressionDialectUnknownFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:TopicExpressionDialectUnknownFaultType"); - case SOAP_TYPE_wsnt__InvalidFilterFaultType: - return ((wsnt__InvalidFilterFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:InvalidFilterFaultType"); - case SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType: - return ((wsnt__SubscribeCreationFailedFaultType *)ptr)->soap_out(soap, tag, id, "wsnt:SubscribeCreationFailedFaultType"); - case SOAP_TYPE_wsnt__NotificationMessageHolderType: - return ((wsnt__NotificationMessageHolderType *)ptr)->soap_out(soap, tag, id, "wsnt:NotificationMessageHolderType"); - case SOAP_TYPE_wsnt__SubscriptionPolicyType: - return ((wsnt__SubscriptionPolicyType *)ptr)->soap_out(soap, tag, id, "wsnt:SubscriptionPolicyType"); - case SOAP_TYPE_wsnt__FilterType: - return ((wsnt__FilterType *)ptr)->soap_out(soap, tag, id, "wsnt:FilterType"); - case SOAP_TYPE_wsnt__TopicExpressionType: - return ((wsnt__TopicExpressionType *)ptr)->soap_out(soap, tag, id, "wsnt:TopicExpressionType"); - case SOAP_TYPE_wsnt__QueryExpressionType: - return ((wsnt__QueryExpressionType *)ptr)->soap_out(soap, tag, id, "wsnt:QueryExpressionType"); - case SOAP_TYPE__xml__lang: - return soap_out__xml__lang(soap, "xml:lang", id, (const std::string *)ptr, ""); - case SOAP_TYPE__xmime__contentType: - return soap_out__xmime__contentType(soap, "xmime:contentType", id, (const std::string *)ptr, ""); - case SOAP_TYPE_xsd__token__: - return ((xsd__token__ *)ptr)->soap_out(soap, tag, id, "xsd:token"); - case SOAP_TYPE_xsd__token: - return soap_out_xsd__token(soap, tag, id, (const std::string *)ptr, "xsd:token"); - case SOAP_TYPE_xsd__string_: - return ((xsd__string_ *)ptr)->soap_out(soap, tag, id, "xsd:string"); - case SOAP_TYPE_xsd__nonNegativeInteger__: - return ((xsd__nonNegativeInteger__ *)ptr)->soap_out(soap, tag, id, "xsd:nonNegativeInteger"); - case SOAP_TYPE_xsd__nonNegativeInteger: - return soap_out_xsd__nonNegativeInteger(soap, tag, id, (const std::string *)ptr, "xsd:nonNegativeInteger"); - case SOAP_TYPE_xsd__integer__: - return ((xsd__integer__ *)ptr)->soap_out(soap, tag, id, "xsd:integer"); - case SOAP_TYPE_xsd__integer: - return soap_out_xsd__integer(soap, tag, id, (const std::string *)ptr, "xsd:integer"); - case SOAP_TYPE_xsd__int_: - return ((xsd__int_ *)ptr)->soap_out(soap, tag, id, "xsd:int"); - case SOAP_TYPE_xsd__hexBinary__: - return ((xsd__hexBinary__ *)ptr)->soap_out(soap, tag, id, "xsd:hexBinary"); - case SOAP_TYPE_xsd__float_: - return ((xsd__float_ *)ptr)->soap_out(soap, tag, id, "xsd:float"); - case SOAP_TYPE_xsd__duration__: - return ((xsd__duration__ *)ptr)->soap_out(soap, tag, id, "xsd:duration"); - case SOAP_TYPE_xsd__duration: - return soap_out_xsd__duration(soap, tag, id, (const std::string *)ptr, "xsd:duration"); - case SOAP_TYPE_xsd__double_: - return ((xsd__double_ *)ptr)->soap_out(soap, tag, id, "xsd:double"); - case SOAP_TYPE_xsd__dateTime__: - return ((xsd__dateTime__ *)ptr)->soap_out(soap, tag, id, "xsd:dateTime"); - case SOAP_TYPE_xsd__boolean_: - return ((xsd__boolean_ *)ptr)->soap_out(soap, tag, id, "xsd:boolean"); - case SOAP_TYPE_xsd__base64Binary__: - return ((xsd__base64Binary__ *)ptr)->soap_out(soap, tag, id, "xsd:base64Binary"); - case SOAP_TYPE_xsd__anyURI__: - return ((xsd__anyURI__ *)ptr)->soap_out(soap, tag, id, "xsd:anyURI"); - case SOAP_TYPE_xsd__anyURI: - return soap_out_xsd__anyURI(soap, tag, id, (const std::string *)ptr, "xsd:anyURI"); - case SOAP_TYPE_xsd__anySimpleType__: - return ((xsd__anySimpleType__ *)ptr)->soap_out(soap, tag, id, "xsd:anySimpleType"); - case SOAP_TYPE_xsd__anySimpleType: - return soap_out_xsd__anySimpleType(soap, tag, id, (const std::string *)ptr, "xsd:anySimpleType"); - case SOAP_TYPE_xsd__QName__: - return ((xsd__QName__ *)ptr)->soap_out(soap, tag, id, "xsd:QName"); - case SOAP_TYPE_xsd__NCName__: - return ((xsd__NCName__ *)ptr)->soap_out(soap, tag, id, "xsd:NCName"); - case SOAP_TYPE_xsd__NCName: - return soap_out_xsd__NCName(soap, tag, id, (const std::string *)ptr, "xsd:NCName"); - case SOAP_TYPE_SOAP_ENV__Fault_: - return ((SOAP_ENV__Fault_ *)ptr)->soap_out(soap, tag, id, "SOAP-ENV:Fault"); - case SOAP_TYPE_SOAP_ENV__Envelope__: - return ((SOAP_ENV__Envelope__ *)ptr)->soap_out(soap, tag, id, "SOAP-ENV:Envelope"); - case SOAP_TYPE_SOAP_ENV__Envelope: - return soap_out_SOAP_ENV__Envelope(soap, tag, id, (const std::string *)ptr, "SOAP-ENV:Envelope"); - case SOAP_TYPE_wsa5__EndpointReferenceType__: - return ((wsa5__EndpointReferenceType__ *)ptr)->soap_out(soap, tag, id, "wsa5:EndpointReferenceType"); - case SOAP_TYPE_tt__IntList__: - return ((tt__IntList__ *)ptr)->soap_out(soap, tag, id, "tt:IntList"); - case SOAP_TYPE_tt__FloatList__: - return ((tt__FloatList__ *)ptr)->soap_out(soap, tag, id, "tt:FloatList"); - case SOAP_TYPE_xsd__hexBinary: - return ((xsd__hexBinary *)ptr)->soap_out(soap, tag, id, "xsd:hexBinary"); - case SOAP_TYPE_xsd__base64Binary: - return ((xsd__base64Binary *)ptr)->soap_out(soap, tag, id, "xsd:base64Binary"); - case SOAP_TYPE_xsd__QName: - return soap_out_xsd__QName(soap, tag, id, (const std::string *)ptr, "xsd:QName"); - case SOAP_TYPE_std__string: - return soap_out_std__string(soap, tag, id, (const std::string *)ptr, "xsd:string"); - case SOAP_TYPE_chan__ChannelInstanceType: - return soap_out_chan__ChannelInstanceType(soap, tag, id, (const struct chan__ChannelInstanceType *)ptr, "chan:ChannelInstanceType"); - case SOAP_TYPE__wsa5__ProblemAction: - return soap_out__wsa5__ProblemAction(soap, "wsa5:ProblemAction", id, (const struct wsa5__ProblemActionType *)ptr, ""); - case SOAP_TYPE__wsa5__FaultTo: - return soap_out__wsa5__FaultTo(soap, "wsa5:FaultTo", id, (const struct wsa5__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE__wsa5__From: - return soap_out__wsa5__From(soap, "wsa5:From", id, (const struct wsa5__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE__wsa5__ReplyTo: - return soap_out__wsa5__ReplyTo(soap, "wsa5:ReplyTo", id, (const struct wsa5__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE__wsa5__RelatesTo: - return soap_out__wsa5__RelatesTo(soap, "wsa5:RelatesTo", id, (const struct wsa5__RelatesToType *)ptr, ""); - case SOAP_TYPE__wsa5__Metadata: - return soap_out__wsa5__Metadata(soap, "wsa5:Metadata", id, (const struct wsa5__MetadataType *)ptr, ""); - case SOAP_TYPE__wsa5__ReferenceParameters: - return soap_out__wsa5__ReferenceParameters(soap, "wsa5:ReferenceParameters", id, (const struct wsa5__ReferenceParametersType *)ptr, ""); - case SOAP_TYPE__wsa5__EndpointReference: - return soap_out__wsa5__EndpointReference(soap, "wsa5:EndpointReference", id, (const struct wsa5__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE_wsa5__ProblemActionType: - return soap_out_wsa5__ProblemActionType(soap, tag, id, (const struct wsa5__ProblemActionType *)ptr, "wsa5:ProblemActionType"); - case SOAP_TYPE_wsa5__RelatesToType: - return soap_out_wsa5__RelatesToType(soap, tag, id, (const struct wsa5__RelatesToType *)ptr, "wsa5:RelatesToType"); - case SOAP_TYPE_wsa5__MetadataType: - return soap_out_wsa5__MetadataType(soap, tag, id, (const struct wsa5__MetadataType *)ptr, "wsa5:MetadataType"); - case SOAP_TYPE_wsa5__ReferenceParametersType: - return soap_out_wsa5__ReferenceParametersType(soap, tag, id, (const struct wsa5__ReferenceParametersType *)ptr, "wsa5:ReferenceParametersType"); - case SOAP_TYPE_wsa5__EndpointReferenceType: - return soap_out_wsa5__EndpointReferenceType(soap, tag, id, (const struct wsa5__EndpointReferenceType *)ptr, "wsa5:EndpointReferenceType"); - case SOAP_TYPE_xsd__anyAttribute: - return soap_out_xsd__anyAttribute(soap, tag, id, (const struct soap_dom_attribute *)ptr, "xsd:anyAttribute"); - case SOAP_TYPE_xsd__anyType: - return soap_out_xsd__anyType(soap, tag, id, (const struct soap_dom_element *)ptr, "xsd:anyType"); - case SOAP_TYPE__wsse__Security: - return soap_out__wsse__Security(soap, "wsse:Security", id, (const struct _wsse__Security *)ptr, ""); - case SOAP_TYPE__saml2__EncryptedAttribute: - return soap_out__saml2__EncryptedAttribute(soap, "saml2:EncryptedAttribute", id, (const struct saml2__EncryptedElementType *)ptr, ""); - case SOAP_TYPE__saml2__Attribute: - return soap_out__saml2__Attribute(soap, "saml2:Attribute", id, (const struct saml2__AttributeType *)ptr, ""); - case SOAP_TYPE__saml2__AttributeStatement: - return soap_out__saml2__AttributeStatement(soap, "saml2:AttributeStatement", id, (const struct saml2__AttributeStatementType *)ptr, ""); - case SOAP_TYPE__saml2__Evidence: - return soap_out__saml2__Evidence(soap, "saml2:Evidence", id, (const struct saml2__EvidenceType *)ptr, ""); - case SOAP_TYPE__saml2__Action: - return soap_out__saml2__Action(soap, "saml2:Action", id, (const struct saml2__ActionType *)ptr, ""); - case SOAP_TYPE__saml2__AuthzDecisionStatement: - return soap_out__saml2__AuthzDecisionStatement(soap, "saml2:AuthzDecisionStatement", id, (const struct saml2__AuthzDecisionStatementType *)ptr, ""); - case SOAP_TYPE__saml2__AuthnContext: - return soap_out__saml2__AuthnContext(soap, "saml2:AuthnContext", id, (const struct saml2__AuthnContextType *)ptr, ""); - case SOAP_TYPE__saml2__SubjectLocality: - return soap_out__saml2__SubjectLocality(soap, "saml2:SubjectLocality", id, (const struct saml2__SubjectLocalityType *)ptr, ""); - case SOAP_TYPE__saml2__AuthnStatement: - return soap_out__saml2__AuthnStatement(soap, "saml2:AuthnStatement", id, (const struct saml2__AuthnStatementType *)ptr, ""); - case SOAP_TYPE__saml2__Statement: - return soap_out__saml2__Statement(soap, "saml2:Statement", id, (const struct saml2__StatementAbstractType *)ptr, ""); - case SOAP_TYPE__saml2__EncryptedAssertion: - return soap_out__saml2__EncryptedAssertion(soap, "saml2:EncryptedAssertion", id, (const struct saml2__EncryptedElementType *)ptr, ""); - case SOAP_TYPE__saml2__Advice: - return soap_out__saml2__Advice(soap, "saml2:Advice", id, (const struct saml2__AdviceType *)ptr, ""); - case SOAP_TYPE__saml2__ProxyRestriction: - return soap_out__saml2__ProxyRestriction(soap, "saml2:ProxyRestriction", id, (const struct saml2__ProxyRestrictionType *)ptr, ""); - case SOAP_TYPE__saml2__OneTimeUse: - return soap_out__saml2__OneTimeUse(soap, "saml2:OneTimeUse", id, (const struct saml2__OneTimeUseType *)ptr, ""); - case SOAP_TYPE__saml2__AudienceRestriction: - return soap_out__saml2__AudienceRestriction(soap, "saml2:AudienceRestriction", id, (const struct saml2__AudienceRestrictionType *)ptr, ""); - case SOAP_TYPE__saml2__Condition: - return soap_out__saml2__Condition(soap, "saml2:Condition", id, (const struct saml2__ConditionAbstractType *)ptr, ""); - case SOAP_TYPE__saml2__Conditions: - return soap_out__saml2__Conditions(soap, "saml2:Conditions", id, (const struct saml2__ConditionsType *)ptr, ""); - case SOAP_TYPE__saml2__SubjectConfirmationData: - return soap_out__saml2__SubjectConfirmationData(soap, "saml2:SubjectConfirmationData", id, (const struct saml2__SubjectConfirmationDataType *)ptr, ""); - case SOAP_TYPE__saml2__SubjectConfirmation: - return soap_out__saml2__SubjectConfirmation(soap, "saml2:SubjectConfirmation", id, (const struct saml2__SubjectConfirmationType *)ptr, ""); - case SOAP_TYPE__saml2__Subject: - return soap_out__saml2__Subject(soap, "saml2:Subject", id, (const struct saml2__SubjectType *)ptr, ""); - case SOAP_TYPE__saml2__Assertion: - return soap_out__saml2__Assertion(soap, "saml2:Assertion", id, (const struct saml2__AssertionType *)ptr, ""); - case SOAP_TYPE__saml2__Issuer: - return soap_out__saml2__Issuer(soap, "saml2:Issuer", id, (const struct saml2__NameIDType *)ptr, ""); - case SOAP_TYPE__saml2__EncryptedID: - return soap_out__saml2__EncryptedID(soap, "saml2:EncryptedID", id, (const struct saml2__EncryptedElementType *)ptr, ""); - case SOAP_TYPE__saml2__NameID: - return soap_out__saml2__NameID(soap, "saml2:NameID", id, (const struct saml2__NameIDType *)ptr, ""); - case SOAP_TYPE__saml2__BaseID: - return soap_out__saml2__BaseID(soap, "saml2:BaseID", id, (const struct saml2__BaseIDAbstractType *)ptr, ""); - case SOAP_TYPE_saml2__AttributeType: - return soap_out_saml2__AttributeType(soap, tag, id, (const struct saml2__AttributeType *)ptr, "saml2:AttributeType"); - case SOAP_TYPE_saml2__AttributeStatementType: - return soap_out_saml2__AttributeStatementType(soap, tag, id, (const struct saml2__AttributeStatementType *)ptr, "saml2:AttributeStatementType"); - case SOAP_TYPE_saml2__EvidenceType: - return soap_out_saml2__EvidenceType(soap, tag, id, (const struct saml2__EvidenceType *)ptr, "saml2:EvidenceType"); - case SOAP_TYPE_saml2__ActionType: - return soap_out_saml2__ActionType(soap, tag, id, (const struct saml2__ActionType *)ptr, "saml2:ActionType"); - case SOAP_TYPE_saml2__AuthzDecisionStatementType: - return soap_out_saml2__AuthzDecisionStatementType(soap, tag, id, (const struct saml2__AuthzDecisionStatementType *)ptr, "saml2:AuthzDecisionStatementType"); - case SOAP_TYPE_saml2__AuthnContextType: - return soap_out_saml2__AuthnContextType(soap, tag, id, (const struct saml2__AuthnContextType *)ptr, "saml2:AuthnContextType"); - case SOAP_TYPE_saml2__SubjectLocalityType: - return soap_out_saml2__SubjectLocalityType(soap, tag, id, (const struct saml2__SubjectLocalityType *)ptr, "saml2:SubjectLocalityType"); - case SOAP_TYPE_saml2__AuthnStatementType: - return soap_out_saml2__AuthnStatementType(soap, tag, id, (const struct saml2__AuthnStatementType *)ptr, "saml2:AuthnStatementType"); - case SOAP_TYPE_saml2__StatementAbstractType: - return soap_out_saml2__StatementAbstractType(soap, tag, id, (const struct saml2__StatementAbstractType *)ptr, "saml2:StatementAbstractType"); - case SOAP_TYPE_saml2__AdviceType: - return soap_out_saml2__AdviceType(soap, tag, id, (const struct saml2__AdviceType *)ptr, "saml2:AdviceType"); - case SOAP_TYPE_saml2__ProxyRestrictionType: - return soap_out_saml2__ProxyRestrictionType(soap, tag, id, (const struct saml2__ProxyRestrictionType *)ptr, "saml2:ProxyRestrictionType"); - case SOAP_TYPE_saml2__OneTimeUseType: - return soap_out_saml2__OneTimeUseType(soap, tag, id, (const struct saml2__OneTimeUseType *)ptr, "saml2:OneTimeUseType"); - case SOAP_TYPE_saml2__AudienceRestrictionType: - return soap_out_saml2__AudienceRestrictionType(soap, tag, id, (const struct saml2__AudienceRestrictionType *)ptr, "saml2:AudienceRestrictionType"); - case SOAP_TYPE_saml2__ConditionAbstractType: - return soap_out_saml2__ConditionAbstractType(soap, tag, id, (const struct saml2__ConditionAbstractType *)ptr, "saml2:ConditionAbstractType"); - case SOAP_TYPE_saml2__ConditionsType: - return soap_out_saml2__ConditionsType(soap, tag, id, (const struct saml2__ConditionsType *)ptr, "saml2:ConditionsType"); - case SOAP_TYPE_saml2__KeyInfoConfirmationDataType: - return soap_out_saml2__KeyInfoConfirmationDataType(soap, tag, id, (const struct saml2__KeyInfoConfirmationDataType *)ptr, "saml2:KeyInfoConfirmationDataType"); - case SOAP_TYPE_saml2__SubjectConfirmationDataType: - return soap_out_saml2__SubjectConfirmationDataType(soap, tag, id, (const struct saml2__SubjectConfirmationDataType *)ptr, "saml2:SubjectConfirmationDataType"); - case SOAP_TYPE_saml2__SubjectConfirmationType: - return soap_out_saml2__SubjectConfirmationType(soap, tag, id, (const struct saml2__SubjectConfirmationType *)ptr, "saml2:SubjectConfirmationType"); - case SOAP_TYPE_saml2__SubjectType: - return soap_out_saml2__SubjectType(soap, tag, id, (const struct saml2__SubjectType *)ptr, "saml2:SubjectType"); - case SOAP_TYPE_saml2__AssertionType: - return soap_out_saml2__AssertionType(soap, tag, id, (const struct saml2__AssertionType *)ptr, "saml2:AssertionType"); - case SOAP_TYPE_saml2__EncryptedElementType: - return soap_out_saml2__EncryptedElementType(soap, tag, id, (const struct saml2__EncryptedElementType *)ptr, "saml2:EncryptedElementType"); - case SOAP_TYPE_saml2__NameIDType: - return soap_out_saml2__NameIDType(soap, tag, id, (const struct saml2__NameIDType *)ptr, "saml2:NameIDType"); - case SOAP_TYPE_saml2__BaseIDAbstractType: - return soap_out_saml2__BaseIDAbstractType(soap, tag, id, (const struct saml2__BaseIDAbstractType *)ptr, "saml2:BaseIDAbstractType"); - case SOAP_TYPE__saml1__Attribute: - return soap_out__saml1__Attribute(soap, "saml1:Attribute", id, (const struct saml1__AttributeType *)ptr, ""); - case SOAP_TYPE__saml1__AttributeDesignator: - return soap_out__saml1__AttributeDesignator(soap, "saml1:AttributeDesignator", id, (const struct saml1__AttributeDesignatorType *)ptr, ""); - case SOAP_TYPE__saml1__AttributeStatement: - return soap_out__saml1__AttributeStatement(soap, "saml1:AttributeStatement", id, (const struct saml1__AttributeStatementType *)ptr, ""); - case SOAP_TYPE__saml1__Evidence: - return soap_out__saml1__Evidence(soap, "saml1:Evidence", id, (const struct saml1__EvidenceType *)ptr, ""); - case SOAP_TYPE__saml1__Action: - return soap_out__saml1__Action(soap, "saml1:Action", id, (const struct saml1__ActionType *)ptr, ""); - case SOAP_TYPE__saml1__AuthorizationDecisionStatement: - return soap_out__saml1__AuthorizationDecisionStatement(soap, "saml1:AuthorizationDecisionStatement", id, (const struct saml1__AuthorizationDecisionStatementType *)ptr, ""); - case SOAP_TYPE__saml1__AuthorityBinding: - return soap_out__saml1__AuthorityBinding(soap, "saml1:AuthorityBinding", id, (const struct saml1__AuthorityBindingType *)ptr, ""); - case SOAP_TYPE__saml1__SubjectLocality: - return soap_out__saml1__SubjectLocality(soap, "saml1:SubjectLocality", id, (const struct saml1__SubjectLocalityType *)ptr, ""); - case SOAP_TYPE__saml1__AuthenticationStatement: - return soap_out__saml1__AuthenticationStatement(soap, "saml1:AuthenticationStatement", id, (const struct saml1__AuthenticationStatementType *)ptr, ""); - case SOAP_TYPE__saml1__SubjectConfirmation: - return soap_out__saml1__SubjectConfirmation(soap, "saml1:SubjectConfirmation", id, (const struct saml1__SubjectConfirmationType *)ptr, ""); - case SOAP_TYPE__saml1__NameIdentifier: - return soap_out__saml1__NameIdentifier(soap, "saml1:NameIdentifier", id, (const struct saml1__NameIdentifierType *)ptr, ""); - case SOAP_TYPE__saml1__Subject: - return soap_out__saml1__Subject(soap, "saml1:Subject", id, (const struct saml1__SubjectType *)ptr, ""); - case SOAP_TYPE__saml1__SubjectStatement: - return soap_out__saml1__SubjectStatement(soap, "saml1:SubjectStatement", id, (const struct saml1__SubjectStatementAbstractType *)ptr, ""); - case SOAP_TYPE__saml1__Statement: - return soap_out__saml1__Statement(soap, "saml1:Statement", id, (const struct saml1__StatementAbstractType *)ptr, ""); - case SOAP_TYPE__saml1__Advice: - return soap_out__saml1__Advice(soap, "saml1:Advice", id, (const struct saml1__AdviceType *)ptr, ""); - case SOAP_TYPE__saml1__DoNotCacheCondition: - return soap_out__saml1__DoNotCacheCondition(soap, "saml1:DoNotCacheCondition", id, (const struct saml1__DoNotCacheConditionType *)ptr, ""); - case SOAP_TYPE__saml1__AudienceRestrictionCondition: - return soap_out__saml1__AudienceRestrictionCondition(soap, "saml1:AudienceRestrictionCondition", id, (const struct saml1__AudienceRestrictionConditionType *)ptr, ""); - case SOAP_TYPE__saml1__Condition: - return soap_out__saml1__Condition(soap, "saml1:Condition", id, (const struct saml1__ConditionAbstractType *)ptr, ""); - case SOAP_TYPE__saml1__Conditions: - return soap_out__saml1__Conditions(soap, "saml1:Conditions", id, (const struct saml1__ConditionsType *)ptr, ""); - case SOAP_TYPE__saml1__Assertion: - return soap_out__saml1__Assertion(soap, "saml1:Assertion", id, (const struct saml1__AssertionType *)ptr, ""); - case SOAP_TYPE_saml1__AttributeType: - return soap_out_saml1__AttributeType(soap, tag, id, (const struct saml1__AttributeType *)ptr, "saml1:AttributeType"); - case SOAP_TYPE_saml1__AttributeDesignatorType: - return soap_out_saml1__AttributeDesignatorType(soap, tag, id, (const struct saml1__AttributeDesignatorType *)ptr, "saml1:AttributeDesignatorType"); - case SOAP_TYPE_saml1__AttributeStatementType: - return soap_out_saml1__AttributeStatementType(soap, tag, id, (const struct saml1__AttributeStatementType *)ptr, "saml1:AttributeStatementType"); - case SOAP_TYPE_saml1__EvidenceType: - return soap_out_saml1__EvidenceType(soap, tag, id, (const struct saml1__EvidenceType *)ptr, "saml1:EvidenceType"); - case SOAP_TYPE_saml1__ActionType: - return soap_out_saml1__ActionType(soap, tag, id, (const struct saml1__ActionType *)ptr, "saml1:ActionType"); - case SOAP_TYPE_saml1__AuthorizationDecisionStatementType: - return soap_out_saml1__AuthorizationDecisionStatementType(soap, tag, id, (const struct saml1__AuthorizationDecisionStatementType *)ptr, "saml1:AuthorizationDecisionStatementType"); - case SOAP_TYPE_saml1__AuthorityBindingType: - return soap_out_saml1__AuthorityBindingType(soap, tag, id, (const struct saml1__AuthorityBindingType *)ptr, "saml1:AuthorityBindingType"); - case SOAP_TYPE_saml1__SubjectLocalityType: - return soap_out_saml1__SubjectLocalityType(soap, tag, id, (const struct saml1__SubjectLocalityType *)ptr, "saml1:SubjectLocalityType"); - case SOAP_TYPE_saml1__AuthenticationStatementType: - return soap_out_saml1__AuthenticationStatementType(soap, tag, id, (const struct saml1__AuthenticationStatementType *)ptr, "saml1:AuthenticationStatementType"); - case SOAP_TYPE_saml1__SubjectConfirmationType: - return soap_out_saml1__SubjectConfirmationType(soap, tag, id, (const struct saml1__SubjectConfirmationType *)ptr, "saml1:SubjectConfirmationType"); - case SOAP_TYPE_saml1__NameIdentifierType: - return soap_out_saml1__NameIdentifierType(soap, tag, id, (const struct saml1__NameIdentifierType *)ptr, "saml1:NameIdentifierType"); - case SOAP_TYPE_saml1__SubjectType: - return soap_out_saml1__SubjectType(soap, tag, id, (const struct saml1__SubjectType *)ptr, "saml1:SubjectType"); - case SOAP_TYPE_saml1__SubjectStatementAbstractType: - return soap_out_saml1__SubjectStatementAbstractType(soap, tag, id, (const struct saml1__SubjectStatementAbstractType *)ptr, "saml1:SubjectStatementAbstractType"); - case SOAP_TYPE_saml1__StatementAbstractType: - return soap_out_saml1__StatementAbstractType(soap, tag, id, (const struct saml1__StatementAbstractType *)ptr, "saml1:StatementAbstractType"); - case SOAP_TYPE_saml1__AdviceType: - return soap_out_saml1__AdviceType(soap, tag, id, (const struct saml1__AdviceType *)ptr, "saml1:AdviceType"); - case SOAP_TYPE_saml1__DoNotCacheConditionType: - return soap_out_saml1__DoNotCacheConditionType(soap, tag, id, (const struct saml1__DoNotCacheConditionType *)ptr, "saml1:DoNotCacheConditionType"); - case SOAP_TYPE_saml1__AudienceRestrictionConditionType: - return soap_out_saml1__AudienceRestrictionConditionType(soap, tag, id, (const struct saml1__AudienceRestrictionConditionType *)ptr, "saml1:AudienceRestrictionConditionType"); - case SOAP_TYPE_saml1__ConditionAbstractType: - return soap_out_saml1__ConditionAbstractType(soap, tag, id, (const struct saml1__ConditionAbstractType *)ptr, "saml1:ConditionAbstractType"); - case SOAP_TYPE_saml1__ConditionsType: - return soap_out_saml1__ConditionsType(soap, tag, id, (const struct saml1__ConditionsType *)ptr, "saml1:ConditionsType"); - case SOAP_TYPE_saml1__AssertionType: - return soap_out_saml1__AssertionType(soap, tag, id, (const struct saml1__AssertionType *)ptr, "saml1:AssertionType"); - case SOAP_TYPE_xsd__dateTime: - return soap_out_xsd__dateTime(soap, tag, id, (const struct timeval *)ptr, "xsd:dateTime"); - case SOAP_TYPE_wsc__PropertiesType: - return soap_out_wsc__PropertiesType(soap, tag, id, (const struct wsc__PropertiesType *)ptr, "wsc:PropertiesType"); - case SOAP_TYPE_wsc__DerivedKeyTokenType: - return soap_out_wsc__DerivedKeyTokenType(soap, tag, id, (const struct wsc__DerivedKeyTokenType *)ptr, "wsc:DerivedKeyTokenType"); - case SOAP_TYPE_wsc__SecurityContextTokenType: - return soap_out_wsc__SecurityContextTokenType(soap, tag, id, (const struct wsc__SecurityContextTokenType *)ptr, "wsc:SecurityContextTokenType"); - case SOAP_TYPE__xenc__ReferenceList: - return soap_out__xenc__ReferenceList(soap, "xenc:ReferenceList", id, (const struct _xenc__ReferenceList *)ptr, ""); - case SOAP_TYPE_xenc__EncryptionPropertyType: - return soap_out_xenc__EncryptionPropertyType(soap, tag, id, (const struct xenc__EncryptionPropertyType *)ptr, "xenc:EncryptionPropertyType"); - case SOAP_TYPE_xenc__EncryptionPropertiesType: - return soap_out_xenc__EncryptionPropertiesType(soap, tag, id, (const struct xenc__EncryptionPropertiesType *)ptr, "xenc:EncryptionPropertiesType"); - case SOAP_TYPE_xenc__ReferenceType: - return soap_out_xenc__ReferenceType(soap, tag, id, (const struct xenc__ReferenceType *)ptr, "xenc:ReferenceType"); - case SOAP_TYPE_xenc__AgreementMethodType: - return soap_out_xenc__AgreementMethodType(soap, tag, id, (const struct xenc__AgreementMethodType *)ptr, "xenc:AgreementMethodType"); - case SOAP_TYPE_xenc__EncryptedDataType: - return soap_out_xenc__EncryptedDataType(soap, tag, id, (const struct xenc__EncryptedDataType *)ptr, "xenc:EncryptedDataType"); - case SOAP_TYPE_xenc__TransformsType: - return soap_out_xenc__TransformsType(soap, tag, id, (const struct xenc__TransformsType *)ptr, "xenc:TransformsType"); - case SOAP_TYPE_xenc__CipherReferenceType: - return soap_out_xenc__CipherReferenceType(soap, tag, id, (const struct xenc__CipherReferenceType *)ptr, "xenc:CipherReferenceType"); - case SOAP_TYPE_xenc__CipherDataType: - return soap_out_xenc__CipherDataType(soap, tag, id, (const struct xenc__CipherDataType *)ptr, "xenc:CipherDataType"); - case SOAP_TYPE_xenc__EncryptionMethodType: - return soap_out_xenc__EncryptionMethodType(soap, tag, id, (const struct xenc__EncryptionMethodType *)ptr, "xenc:EncryptionMethodType"); - case SOAP_TYPE_xenc__EncryptedType: - return soap_out_xenc__EncryptedType(soap, tag, id, (const struct xenc__EncryptedType *)ptr, "xenc:EncryptedType"); - case SOAP_TYPE_ds__RSAKeyValueType: - return soap_out_ds__RSAKeyValueType(soap, tag, id, (const struct ds__RSAKeyValueType *)ptr, "ds:RSAKeyValueType"); - case SOAP_TYPE_ds__DSAKeyValueType: - return soap_out_ds__DSAKeyValueType(soap, tag, id, (const struct ds__DSAKeyValueType *)ptr, "ds:DSAKeyValueType"); - case SOAP_TYPE_ds__X509IssuerSerialType: - return soap_out_ds__X509IssuerSerialType(soap, tag, id, (const struct ds__X509IssuerSerialType *)ptr, "ds:X509IssuerSerialType"); - case SOAP_TYPE__ds__KeyInfo: - return soap_out__ds__KeyInfo(soap, "ds:KeyInfo", id, (const struct ds__KeyInfoType *)ptr, ""); - case SOAP_TYPE_ds__RetrievalMethodType: - return soap_out_ds__RetrievalMethodType(soap, tag, id, (const struct ds__RetrievalMethodType *)ptr, "ds:RetrievalMethodType"); - case SOAP_TYPE_ds__KeyValueType: - return soap_out_ds__KeyValueType(soap, tag, id, (const struct ds__KeyValueType *)ptr, "ds:KeyValueType"); - case SOAP_TYPE_ds__DigestMethodType: - return soap_out_ds__DigestMethodType(soap, tag, id, (const struct ds__DigestMethodType *)ptr, "ds:DigestMethodType"); - case SOAP_TYPE__ds__Transform: - return soap_out__ds__Transform(soap, "ds:Transform", id, (const struct ds__TransformType *)ptr, ""); - case SOAP_TYPE_ds__TransformType: - return soap_out_ds__TransformType(soap, tag, id, (const struct ds__TransformType *)ptr, "ds:TransformType"); - case SOAP_TYPE__c14n__InclusiveNamespaces: - return soap_out__c14n__InclusiveNamespaces(soap, "c14n:InclusiveNamespaces", id, (const struct _c14n__InclusiveNamespaces *)ptr, ""); - case SOAP_TYPE_ds__TransformsType: - return soap_out_ds__TransformsType(soap, tag, id, (const struct ds__TransformsType *)ptr, "ds:TransformsType"); - case SOAP_TYPE_ds__ReferenceType: - return soap_out_ds__ReferenceType(soap, tag, id, (const struct ds__ReferenceType *)ptr, "ds:ReferenceType"); - case SOAP_TYPE_ds__SignatureMethodType: - return soap_out_ds__SignatureMethodType(soap, tag, id, (const struct ds__SignatureMethodType *)ptr, "ds:SignatureMethodType"); - case SOAP_TYPE_ds__CanonicalizationMethodType: - return soap_out_ds__CanonicalizationMethodType(soap, tag, id, (const struct ds__CanonicalizationMethodType *)ptr, "ds:CanonicalizationMethodType"); - case SOAP_TYPE__ds__Signature: - return soap_out__ds__Signature(soap, "ds:Signature", id, (const struct ds__SignatureType *)ptr, ""); - case SOAP_TYPE_ds__SignedInfoType: - return soap_out_ds__SignedInfoType(soap, tag, id, (const struct ds__SignedInfoType *)ptr, "ds:SignedInfoType"); - case SOAP_TYPE_ds__SignatureType: - return soap_out_ds__SignatureType(soap, tag, id, (const struct ds__SignatureType *)ptr, "ds:SignatureType"); - case SOAP_TYPE_xenc__EncryptedKeyType: - return soap_out_xenc__EncryptedKeyType(soap, tag, id, (const struct xenc__EncryptedKeyType *)ptr, "xenc:EncryptedKeyType"); - case SOAP_TYPE_ds__KeyInfoType: - return soap_out_ds__KeyInfoType(soap, tag, id, (const struct ds__KeyInfoType *)ptr, "ds:KeyInfoType"); - case SOAP_TYPE_ds__X509DataType: - return soap_out_ds__X509DataType(soap, tag, id, (const struct ds__X509DataType *)ptr, "ds:X509DataType"); - case SOAP_TYPE__wsse__SecurityTokenReference: - return soap_out__wsse__SecurityTokenReference(soap, "wsse:SecurityTokenReference", id, (const struct _wsse__SecurityTokenReference *)ptr, ""); - case SOAP_TYPE__wsse__KeyIdentifier: - return soap_out__wsse__KeyIdentifier(soap, "wsse:KeyIdentifier", id, (const struct _wsse__KeyIdentifier *)ptr, ""); - case SOAP_TYPE__wsse__Embedded: - return soap_out__wsse__Embedded(soap, "wsse:Embedded", id, (const struct _wsse__Embedded *)ptr, ""); - case SOAP_TYPE__wsse__Reference: - return soap_out__wsse__Reference(soap, "wsse:Reference", id, (const struct _wsse__Reference *)ptr, ""); - case SOAP_TYPE__wsse__BinarySecurityToken: - return soap_out__wsse__BinarySecurityToken(soap, "wsse:BinarySecurityToken", id, (const struct _wsse__BinarySecurityToken *)ptr, ""); - case SOAP_TYPE__wsse__Password: - return soap_out__wsse__Password(soap, "wsse:Password", id, (const struct _wsse__Password *)ptr, ""); - case SOAP_TYPE__wsse__UsernameToken: - return soap_out__wsse__UsernameToken(soap, "wsse:UsernameToken", id, (const struct _wsse__UsernameToken *)ptr, ""); - case SOAP_TYPE_wsse__EncodedString: - return soap_out_wsse__EncodedString(soap, tag, id, (const struct wsse__EncodedString *)ptr, "wsse:EncodedString"); - case SOAP_TYPE__wsu__Timestamp: - return soap_out__wsu__Timestamp(soap, "wsu:Timestamp", id, (const struct _wsu__Timestamp *)ptr, ""); - case SOAP_TYPE__wsdd__AppSequence: - return soap_out__wsdd__AppSequence(soap, "wsdd:AppSequence", id, (const struct wsdd__AppSequenceType *)ptr, ""); - case SOAP_TYPE__wsdd__Sig: - return soap_out__wsdd__Sig(soap, "wsdd:Sig", id, (const struct wsdd__SigType *)ptr, ""); - case SOAP_TYPE__wsdd__Security: - return soap_out__wsdd__Security(soap, "wsdd:Security", id, (const struct wsdd__SecurityType *)ptr, ""); - case SOAP_TYPE__wsdd__Scopes: - return soap_out__wsdd__Scopes(soap, "wsdd:Scopes", id, (const struct wsdd__ScopesType *)ptr, ""); - case SOAP_TYPE__wsdd__ResolveMatches: - return soap_out__wsdd__ResolveMatches(soap, "wsdd:ResolveMatches", id, (const struct wsdd__ResolveMatchesType *)ptr, ""); - case SOAP_TYPE__wsdd__Resolve: - return soap_out__wsdd__Resolve(soap, "wsdd:Resolve", id, (const struct wsdd__ResolveType *)ptr, ""); - case SOAP_TYPE__wsdd__ProbeMatches: - return soap_out__wsdd__ProbeMatches(soap, "wsdd:ProbeMatches", id, (const struct wsdd__ProbeMatchesType *)ptr, ""); - case SOAP_TYPE__wsdd__Probe: - return soap_out__wsdd__Probe(soap, "wsdd:Probe", id, (const struct wsdd__ProbeType *)ptr, ""); - case SOAP_TYPE__wsdd__Bye: - return soap_out__wsdd__Bye(soap, "wsdd:Bye", id, (const struct wsdd__ByeType *)ptr, ""); - case SOAP_TYPE__wsdd__Hello: - return soap_out__wsdd__Hello(soap, "wsdd:Hello", id, (const struct wsdd__HelloType *)ptr, ""); - case SOAP_TYPE_wsdd__AppSequenceType: - return soap_out_wsdd__AppSequenceType(soap, tag, id, (const struct wsdd__AppSequenceType *)ptr, "wsdd:AppSequenceType"); - case SOAP_TYPE_wsdd__SigType: - return soap_out_wsdd__SigType(soap, tag, id, (const struct wsdd__SigType *)ptr, "wsdd:SigType"); - case SOAP_TYPE_wsdd__SecurityType: - return soap_out_wsdd__SecurityType(soap, tag, id, (const struct wsdd__SecurityType *)ptr, "wsdd:SecurityType"); - case SOAP_TYPE_wsdd__ScopesType: - return soap_out_wsdd__ScopesType(soap, tag, id, (const struct wsdd__ScopesType *)ptr, "wsdd:ScopesType"); - case SOAP_TYPE_wsdd__ResolveMatchType: - return soap_out_wsdd__ResolveMatchType(soap, tag, id, (const struct wsdd__ResolveMatchType *)ptr, "wsdd:ResolveMatchType"); - case SOAP_TYPE_wsdd__ResolveMatchesType: - return soap_out_wsdd__ResolveMatchesType(soap, tag, id, (const struct wsdd__ResolveMatchesType *)ptr, "wsdd:ResolveMatchesType"); - case SOAP_TYPE_wsdd__ResolveType: - return soap_out_wsdd__ResolveType(soap, tag, id, (const struct wsdd__ResolveType *)ptr, "wsdd:ResolveType"); - case SOAP_TYPE_wsdd__ProbeMatchType: - return soap_out_wsdd__ProbeMatchType(soap, tag, id, (const struct wsdd__ProbeMatchType *)ptr, "wsdd:ProbeMatchType"); - case SOAP_TYPE_wsdd__ProbeMatchesType: - return soap_out_wsdd__ProbeMatchesType(soap, tag, id, (const struct wsdd__ProbeMatchesType *)ptr, "wsdd:ProbeMatchesType"); - case SOAP_TYPE_wsdd__ProbeType: - return soap_out_wsdd__ProbeType(soap, tag, id, (const struct wsdd__ProbeType *)ptr, "wsdd:ProbeType"); - case SOAP_TYPE_wsdd__ByeType: - return soap_out_wsdd__ByeType(soap, tag, id, (const struct wsdd__ByeType *)ptr, "wsdd:ByeType"); - case SOAP_TYPE_wsdd__HelloType: - return soap_out_wsdd__HelloType(soap, tag, id, (const struct wsdd__HelloType *)ptr, "wsdd:HelloType"); - case SOAP_TYPE__wsa__FaultTo: - return soap_out__wsa__FaultTo(soap, "wsa:FaultTo", id, (const struct wsa__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE__wsa__ReplyTo: - return soap_out__wsa__ReplyTo(soap, "wsa:ReplyTo", id, (const struct wsa__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE__wsa__From: - return soap_out__wsa__From(soap, "wsa:From", id, (const struct wsa__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE__wsa__RelatesTo: - return soap_out__wsa__RelatesTo(soap, "wsa:RelatesTo", id, (const struct wsa__Relationship *)ptr, ""); - case SOAP_TYPE__wsa__EndpointReference: - return soap_out__wsa__EndpointReference(soap, "wsa:EndpointReference", id, (const struct wsa__EndpointReferenceType *)ptr, ""); - case SOAP_TYPE_wsa__Relationship: - return soap_out_wsa__Relationship(soap, tag, id, (const struct wsa__Relationship *)ptr, "wsa:Relationship"); - case SOAP_TYPE_wsa__ServiceNameType: - return soap_out_wsa__ServiceNameType(soap, tag, id, (const struct wsa__ServiceNameType *)ptr, "wsa:ServiceNameType"); - case SOAP_TYPE_wsa__ReferenceParametersType: - return soap_out_wsa__ReferenceParametersType(soap, tag, id, (const struct wsa__ReferenceParametersType *)ptr, "wsa:ReferenceParametersType"); - case SOAP_TYPE_wsa__ReferencePropertiesType: - return soap_out_wsa__ReferencePropertiesType(soap, tag, id, (const struct wsa__ReferencePropertiesType *)ptr, "wsa:ReferencePropertiesType"); - case SOAP_TYPE_wsa__EndpointReferenceType: - return soap_out_wsa__EndpointReferenceType(soap, tag, id, (const struct wsa__EndpointReferenceType *)ptr, "wsa:EndpointReferenceType"); - case SOAP_TYPE_PointerTo_tse__GetMetadataSearchResults: - return soap_out_PointerTo_tse__GetMetadataSearchResults(soap, tag, id, (_tse__GetMetadataSearchResults *const*)ptr, "tse:GetMetadataSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindMetadata: - return soap_out_PointerTo_tse__FindMetadata(soap, tag, id, (_tse__FindMetadata *const*)ptr, "tse:FindMetadata"); - case SOAP_TYPE_PointerTo_tse__EndSearch: - return soap_out_PointerTo_tse__EndSearch(soap, tag, id, (_tse__EndSearch *const*)ptr, "tse:EndSearch"); - case SOAP_TYPE_PointerTo_tse__GetSearchState: - return soap_out_PointerTo_tse__GetSearchState(soap, tag, id, (_tse__GetSearchState *const*)ptr, "tse:GetSearchState"); - case SOAP_TYPE_PointerTo_tse__GetPTZPositionSearchResults: - return soap_out_PointerTo_tse__GetPTZPositionSearchResults(soap, tag, id, (_tse__GetPTZPositionSearchResults *const*)ptr, "tse:GetPTZPositionSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindPTZPosition: - return soap_out_PointerTo_tse__FindPTZPosition(soap, tag, id, (_tse__FindPTZPosition *const*)ptr, "tse:FindPTZPosition"); - case SOAP_TYPE_PointerTo_tse__GetEventSearchResults: - return soap_out_PointerTo_tse__GetEventSearchResults(soap, tag, id, (_tse__GetEventSearchResults *const*)ptr, "tse:GetEventSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindEvents: - return soap_out_PointerTo_tse__FindEvents(soap, tag, id, (_tse__FindEvents *const*)ptr, "tse:FindEvents"); - case SOAP_TYPE_PointerTo_tse__GetRecordingSearchResults: - return soap_out_PointerTo_tse__GetRecordingSearchResults(soap, tag, id, (_tse__GetRecordingSearchResults *const*)ptr, "tse:GetRecordingSearchResults"); - case SOAP_TYPE_PointerTo_tse__FindRecordings: - return soap_out_PointerTo_tse__FindRecordings(soap, tag, id, (_tse__FindRecordings *const*)ptr, "tse:FindRecordings"); - case SOAP_TYPE_PointerTo_tse__GetMediaAttributes: - return soap_out_PointerTo_tse__GetMediaAttributes(soap, tag, id, (_tse__GetMediaAttributes *const*)ptr, "tse:GetMediaAttributes"); - case SOAP_TYPE_PointerTo_tse__GetRecordingInformation: - return soap_out_PointerTo_tse__GetRecordingInformation(soap, tag, id, (_tse__GetRecordingInformation *const*)ptr, "tse:GetRecordingInformation"); - case SOAP_TYPE_PointerTo_tse__GetRecordingSummary: - return soap_out_PointerTo_tse__GetRecordingSummary(soap, tag, id, (_tse__GetRecordingSummary *const*)ptr, "tse:GetRecordingSummary"); - case SOAP_TYPE_PointerTo_tse__GetServiceCapabilities: - return soap_out_PointerTo_tse__GetServiceCapabilities(soap, tag, id, (_tse__GetServiceCapabilities *const*)ptr, "tse:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trv__GetReceiverState: - return soap_out_PointerTo_trv__GetReceiverState(soap, tag, id, (_trv__GetReceiverState *const*)ptr, "trv:GetReceiverState"); - case SOAP_TYPE_PointerTo_trv__SetReceiverMode: - return soap_out_PointerTo_trv__SetReceiverMode(soap, tag, id, (_trv__SetReceiverMode *const*)ptr, "trv:SetReceiverMode"); - case SOAP_TYPE_PointerTo_trv__ConfigureReceiver: - return soap_out_PointerTo_trv__ConfigureReceiver(soap, tag, id, (_trv__ConfigureReceiver *const*)ptr, "trv:ConfigureReceiver"); - case SOAP_TYPE_PointerTo_trv__DeleteReceiver: - return soap_out_PointerTo_trv__DeleteReceiver(soap, tag, id, (_trv__DeleteReceiver *const*)ptr, "trv:DeleteReceiver"); - case SOAP_TYPE_PointerTo_trv__CreateReceiver: - return soap_out_PointerTo_trv__CreateReceiver(soap, tag, id, (_trv__CreateReceiver *const*)ptr, "trv:CreateReceiver"); - case SOAP_TYPE_PointerTo_trv__GetReceiver: - return soap_out_PointerTo_trv__GetReceiver(soap, tag, id, (_trv__GetReceiver *const*)ptr, "trv:GetReceiver"); - case SOAP_TYPE_PointerTo_trv__GetReceivers: - return soap_out_PointerTo_trv__GetReceivers(soap, tag, id, (_trv__GetReceivers *const*)ptr, "trv:GetReceivers"); - case SOAP_TYPE_PointerTo_trv__GetServiceCapabilities: - return soap_out_PointerTo_trv__GetServiceCapabilities(soap, tag, id, (_trv__GetServiceCapabilities *const*)ptr, "trv:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trt__DeleteOSD: - return soap_out_PointerTo_trt__DeleteOSD(soap, tag, id, (_trt__DeleteOSD *const*)ptr, "trt:DeleteOSD"); - case SOAP_TYPE_PointerTo_trt__CreateOSD: - return soap_out_PointerTo_trt__CreateOSD(soap, tag, id, (_trt__CreateOSD *const*)ptr, "trt:CreateOSD"); - case SOAP_TYPE_PointerTo_trt__SetOSD: - return soap_out_PointerTo_trt__SetOSD(soap, tag, id, (_trt__SetOSD *const*)ptr, "trt:SetOSD"); - case SOAP_TYPE_PointerTo_trt__GetOSDOptions: - return soap_out_PointerTo_trt__GetOSDOptions(soap, tag, id, (_trt__GetOSDOptions *const*)ptr, "trt:GetOSDOptions"); - case SOAP_TYPE_PointerTo_trt__GetOSD: - return soap_out_PointerTo_trt__GetOSD(soap, tag, id, (_trt__GetOSD *const*)ptr, "trt:GetOSD"); - case SOAP_TYPE_PointerTo_trt__GetOSDs: - return soap_out_PointerTo_trt__GetOSDs(soap, tag, id, (_trt__GetOSDs *const*)ptr, "trt:GetOSDs"); - case SOAP_TYPE_PointerTo_trt__SetVideoSourceMode: - return soap_out_PointerTo_trt__SetVideoSourceMode(soap, tag, id, (_trt__SetVideoSourceMode *const*)ptr, "trt:SetVideoSourceMode"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceModes: - return soap_out_PointerTo_trt__GetVideoSourceModes(soap, tag, id, (_trt__GetVideoSourceModes *const*)ptr, "trt:GetVideoSourceModes"); - case SOAP_TYPE_PointerTo_trt__GetSnapshotUri: - return soap_out_PointerTo_trt__GetSnapshotUri(soap, tag, id, (_trt__GetSnapshotUri *const*)ptr, "trt:GetSnapshotUri"); - case SOAP_TYPE_PointerTo_trt__SetSynchronizationPoint: - return soap_out_PointerTo_trt__SetSynchronizationPoint(soap, tag, id, (_trt__SetSynchronizationPoint *const*)ptr, "trt:SetSynchronizationPoint"); - case SOAP_TYPE_PointerTo_trt__StopMulticastStreaming: - return soap_out_PointerTo_trt__StopMulticastStreaming(soap, tag, id, (_trt__StopMulticastStreaming *const*)ptr, "trt:StopMulticastStreaming"); - case SOAP_TYPE_PointerTo_trt__StartMulticastStreaming: - return soap_out_PointerTo_trt__StartMulticastStreaming(soap, tag, id, (_trt__StartMulticastStreaming *const*)ptr, "trt:StartMulticastStreaming"); - case SOAP_TYPE_PointerTo_trt__GetStreamUri: - return soap_out_PointerTo_trt__GetStreamUri(soap, tag, id, (_trt__GetStreamUri *const*)ptr, "trt:GetStreamUri"); - case SOAP_TYPE_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances: - return soap_out_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag, id, (_trt__GetGuaranteedNumberOfVideoEncoderInstances *const*)ptr, "trt:GetGuaranteedNumberOfVideoEncoderInstances"); - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurationOptions: - return soap_out_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, tag, id, (_trt__GetAudioDecoderConfigurationOptions *const*)ptr, "trt:GetAudioDecoderConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurationOptions: - return soap_out_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, tag, id, (_trt__GetAudioOutputConfigurationOptions *const*)ptr, "trt:GetAudioOutputConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetMetadataConfigurationOptions: - return soap_out_PointerTo_trt__GetMetadataConfigurationOptions(soap, tag, id, (_trt__GetMetadataConfigurationOptions *const*)ptr, "trt:GetMetadataConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurationOptions: - return soap_out_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, tag, id, (_trt__GetAudioEncoderConfigurationOptions *const*)ptr, "trt:GetAudioEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurationOptions: - return soap_out_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, tag, id, (_trt__GetAudioSourceConfigurationOptions *const*)ptr, "trt:GetAudioSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurationOptions: - return soap_out_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, tag, id, (_trt__GetVideoEncoderConfigurationOptions *const*)ptr, "trt:GetVideoEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurationOptions: - return soap_out_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, tag, id, (_trt__GetVideoSourceConfigurationOptions *const*)ptr, "trt:GetVideoSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_trt__SetAudioDecoderConfiguration: - return soap_out_PointerTo_trt__SetAudioDecoderConfiguration(soap, tag, id, (_trt__SetAudioDecoderConfiguration *const*)ptr, "trt:SetAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetAudioOutputConfiguration: - return soap_out_PointerTo_trt__SetAudioOutputConfiguration(soap, tag, id, (_trt__SetAudioOutputConfiguration *const*)ptr, "trt:SetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetMetadataConfiguration: - return soap_out_PointerTo_trt__SetMetadataConfiguration(soap, tag, id, (_trt__SetMetadataConfiguration *const*)ptr, "trt:SetMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetVideoAnalyticsConfiguration: - return soap_out_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, tag, id, (_trt__SetVideoAnalyticsConfiguration *const*)ptr, "trt:SetVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetAudioEncoderConfiguration: - return soap_out_PointerTo_trt__SetAudioEncoderConfiguration(soap, tag, id, (_trt__SetAudioEncoderConfiguration *const*)ptr, "trt:SetAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetAudioSourceConfiguration: - return soap_out_PointerTo_trt__SetAudioSourceConfiguration(soap, tag, id, (_trt__SetAudioSourceConfiguration *const*)ptr, "trt:SetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetVideoEncoderConfiguration: - return soap_out_PointerTo_trt__SetVideoEncoderConfiguration(soap, tag, id, (_trt__SetVideoEncoderConfiguration *const*)ptr, "trt:SetVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__SetVideoSourceConfiguration: - return soap_out_PointerTo_trt__SetVideoSourceConfiguration(soap, tag, id, (_trt__SetVideoSourceConfiguration *const*)ptr, "trt:SetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioDecoderConfigurations: - return soap_out_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(soap, tag, id, (_trt__GetCompatibleAudioDecoderConfigurations *const*)ptr, "trt:GetCompatibleAudioDecoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioOutputConfigurations: - return soap_out_PointerTo_trt__GetCompatibleAudioOutputConfigurations(soap, tag, id, (_trt__GetCompatibleAudioOutputConfigurations *const*)ptr, "trt:GetCompatibleAudioOutputConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleMetadataConfigurations: - return soap_out_PointerTo_trt__GetCompatibleMetadataConfigurations(soap, tag, id, (_trt__GetCompatibleMetadataConfigurations *const*)ptr, "trt:GetCompatibleMetadataConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations: - return soap_out_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag, id, (_trt__GetCompatibleVideoAnalyticsConfigurations *const*)ptr, "trt:GetCompatibleVideoAnalyticsConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioSourceConfigurations: - return soap_out_PointerTo_trt__GetCompatibleAudioSourceConfigurations(soap, tag, id, (_trt__GetCompatibleAudioSourceConfigurations *const*)ptr, "trt:GetCompatibleAudioSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioEncoderConfigurations: - return soap_out_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(soap, tag, id, (_trt__GetCompatibleAudioEncoderConfigurations *const*)ptr, "trt:GetCompatibleAudioEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoSourceConfigurations: - return soap_out_PointerTo_trt__GetCompatibleVideoSourceConfigurations(soap, tag, id, (_trt__GetCompatibleVideoSourceConfigurations *const*)ptr, "trt:GetCompatibleVideoSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoEncoderConfigurations: - return soap_out_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(soap, tag, id, (_trt__GetCompatibleVideoEncoderConfigurations *const*)ptr, "trt:GetCompatibleVideoEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfiguration: - return soap_out_PointerTo_trt__GetAudioDecoderConfiguration(soap, tag, id, (_trt__GetAudioDecoderConfiguration *const*)ptr, "trt:GetAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfiguration: - return soap_out_PointerTo_trt__GetAudioOutputConfiguration(soap, tag, id, (_trt__GetAudioOutputConfiguration *const*)ptr, "trt:GetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetMetadataConfiguration: - return soap_out_PointerTo_trt__GetMetadataConfiguration(soap, tag, id, (_trt__GetMetadataConfiguration *const*)ptr, "trt:GetMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfiguration: - return soap_out_PointerTo_trt__GetVideoAnalyticsConfiguration(soap, tag, id, (_trt__GetVideoAnalyticsConfiguration *const*)ptr, "trt:GetVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfiguration: - return soap_out_PointerTo_trt__GetAudioEncoderConfiguration(soap, tag, id, (_trt__GetAudioEncoderConfiguration *const*)ptr, "trt:GetAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfiguration: - return soap_out_PointerTo_trt__GetAudioSourceConfiguration(soap, tag, id, (_trt__GetAudioSourceConfiguration *const*)ptr, "trt:GetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfiguration: - return soap_out_PointerTo_trt__GetVideoEncoderConfiguration(soap, tag, id, (_trt__GetVideoEncoderConfiguration *const*)ptr, "trt:GetVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfiguration: - return soap_out_PointerTo_trt__GetVideoSourceConfiguration(soap, tag, id, (_trt__GetVideoSourceConfiguration *const*)ptr, "trt:GetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurations: - return soap_out_PointerTo_trt__GetAudioDecoderConfigurations(soap, tag, id, (_trt__GetAudioDecoderConfigurations *const*)ptr, "trt:GetAudioDecoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurations: - return soap_out_PointerTo_trt__GetAudioOutputConfigurations(soap, tag, id, (_trt__GetAudioOutputConfigurations *const*)ptr, "trt:GetAudioOutputConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetMetadataConfigurations: - return soap_out_PointerTo_trt__GetMetadataConfigurations(soap, tag, id, (_trt__GetMetadataConfigurations *const*)ptr, "trt:GetMetadataConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfigurations: - return soap_out_PointerTo_trt__GetVideoAnalyticsConfigurations(soap, tag, id, (_trt__GetVideoAnalyticsConfigurations *const*)ptr, "trt:GetVideoAnalyticsConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurations: - return soap_out_PointerTo_trt__GetAudioEncoderConfigurations(soap, tag, id, (_trt__GetAudioEncoderConfigurations *const*)ptr, "trt:GetAudioEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurations: - return soap_out_PointerTo_trt__GetAudioSourceConfigurations(soap, tag, id, (_trt__GetAudioSourceConfigurations *const*)ptr, "trt:GetAudioSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurations: - return soap_out_PointerTo_trt__GetVideoEncoderConfigurations(soap, tag, id, (_trt__GetVideoEncoderConfigurations *const*)ptr, "trt:GetVideoEncoderConfigurations"); - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurations: - return soap_out_PointerTo_trt__GetVideoSourceConfigurations(soap, tag, id, (_trt__GetVideoSourceConfigurations *const*)ptr, "trt:GetVideoSourceConfigurations"); - case SOAP_TYPE_PointerTo_trt__DeleteProfile: - return soap_out_PointerTo_trt__DeleteProfile(soap, tag, id, (_trt__DeleteProfile *const*)ptr, "trt:DeleteProfile"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioDecoderConfiguration: - return soap_out_PointerTo_trt__RemoveAudioDecoderConfiguration(soap, tag, id, (_trt__RemoveAudioDecoderConfiguration *const*)ptr, "trt:RemoveAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioOutputConfiguration: - return soap_out_PointerTo_trt__RemoveAudioOutputConfiguration(soap, tag, id, (_trt__RemoveAudioOutputConfiguration *const*)ptr, "trt:RemoveAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveMetadataConfiguration: - return soap_out_PointerTo_trt__RemoveMetadataConfiguration(soap, tag, id, (_trt__RemoveMetadataConfiguration *const*)ptr, "trt:RemoveMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveVideoAnalyticsConfiguration: - return soap_out_PointerTo_trt__RemoveVideoAnalyticsConfiguration(soap, tag, id, (_trt__RemoveVideoAnalyticsConfiguration *const*)ptr, "trt:RemoveVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemovePTZConfiguration: - return soap_out_PointerTo_trt__RemovePTZConfiguration(soap, tag, id, (_trt__RemovePTZConfiguration *const*)ptr, "trt:RemovePTZConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioSourceConfiguration: - return soap_out_PointerTo_trt__RemoveAudioSourceConfiguration(soap, tag, id, (_trt__RemoveAudioSourceConfiguration *const*)ptr, "trt:RemoveAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveAudioEncoderConfiguration: - return soap_out_PointerTo_trt__RemoveAudioEncoderConfiguration(soap, tag, id, (_trt__RemoveAudioEncoderConfiguration *const*)ptr, "trt:RemoveAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveVideoSourceConfiguration: - return soap_out_PointerTo_trt__RemoveVideoSourceConfiguration(soap, tag, id, (_trt__RemoveVideoSourceConfiguration *const*)ptr, "trt:RemoveVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__RemoveVideoEncoderConfiguration: - return soap_out_PointerTo_trt__RemoveVideoEncoderConfiguration(soap, tag, id, (_trt__RemoveVideoEncoderConfiguration *const*)ptr, "trt:RemoveVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioDecoderConfiguration: - return soap_out_PointerTo_trt__AddAudioDecoderConfiguration(soap, tag, id, (_trt__AddAudioDecoderConfiguration *const*)ptr, "trt:AddAudioDecoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioOutputConfiguration: - return soap_out_PointerTo_trt__AddAudioOutputConfiguration(soap, tag, id, (_trt__AddAudioOutputConfiguration *const*)ptr, "trt:AddAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddMetadataConfiguration: - return soap_out_PointerTo_trt__AddMetadataConfiguration(soap, tag, id, (_trt__AddMetadataConfiguration *const*)ptr, "trt:AddMetadataConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddVideoAnalyticsConfiguration: - return soap_out_PointerTo_trt__AddVideoAnalyticsConfiguration(soap, tag, id, (_trt__AddVideoAnalyticsConfiguration *const*)ptr, "trt:AddVideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddPTZConfiguration: - return soap_out_PointerTo_trt__AddPTZConfiguration(soap, tag, id, (_trt__AddPTZConfiguration *const*)ptr, "trt:AddPTZConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioSourceConfiguration: - return soap_out_PointerTo_trt__AddAudioSourceConfiguration(soap, tag, id, (_trt__AddAudioSourceConfiguration *const*)ptr, "trt:AddAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddAudioEncoderConfiguration: - return soap_out_PointerTo_trt__AddAudioEncoderConfiguration(soap, tag, id, (_trt__AddAudioEncoderConfiguration *const*)ptr, "trt:AddAudioEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddVideoSourceConfiguration: - return soap_out_PointerTo_trt__AddVideoSourceConfiguration(soap, tag, id, (_trt__AddVideoSourceConfiguration *const*)ptr, "trt:AddVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_trt__AddVideoEncoderConfiguration: - return soap_out_PointerTo_trt__AddVideoEncoderConfiguration(soap, tag, id, (_trt__AddVideoEncoderConfiguration *const*)ptr, "trt:AddVideoEncoderConfiguration"); - case SOAP_TYPE_PointerTo_trt__GetProfiles: - return soap_out_PointerTo_trt__GetProfiles(soap, tag, id, (_trt__GetProfiles *const*)ptr, "trt:GetProfiles"); - case SOAP_TYPE_PointerTo_trt__GetProfile: - return soap_out_PointerTo_trt__GetProfile(soap, tag, id, (_trt__GetProfile *const*)ptr, "trt:GetProfile"); - case SOAP_TYPE_PointerTo_trt__CreateProfile: - return soap_out_PointerTo_trt__CreateProfile(soap, tag, id, (_trt__CreateProfile *const*)ptr, "trt:CreateProfile"); - case SOAP_TYPE_PointerTo_trt__GetAudioOutputs: - return soap_out_PointerTo_trt__GetAudioOutputs(soap, tag, id, (_trt__GetAudioOutputs *const*)ptr, "trt:GetAudioOutputs"); - case SOAP_TYPE_PointerTo_trt__GetAudioSources: - return soap_out_PointerTo_trt__GetAudioSources(soap, tag, id, (_trt__GetAudioSources *const*)ptr, "trt:GetAudioSources"); - case SOAP_TYPE_PointerTo_trt__GetVideoSources: - return soap_out_PointerTo_trt__GetVideoSources(soap, tag, id, (_trt__GetVideoSources *const*)ptr, "trt:GetVideoSources"); - case SOAP_TYPE_PointerTo_trt__GetServiceCapabilities: - return soap_out_PointerTo_trt__GetServiceCapabilities(soap, tag, id, (_trt__GetServiceCapabilities *const*)ptr, "trt:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trp__SetReplayConfiguration: - return soap_out_PointerTo_trp__SetReplayConfiguration(soap, tag, id, (_trp__SetReplayConfiguration *const*)ptr, "trp:SetReplayConfiguration"); - case SOAP_TYPE_PointerTo_trp__GetReplayConfiguration: - return soap_out_PointerTo_trp__GetReplayConfiguration(soap, tag, id, (_trp__GetReplayConfiguration *const*)ptr, "trp:GetReplayConfiguration"); - case SOAP_TYPE_PointerTo_trp__GetReplayUri: - return soap_out_PointerTo_trp__GetReplayUri(soap, tag, id, (_trp__GetReplayUri *const*)ptr, "trp:GetReplayUri"); - case SOAP_TYPE_PointerTo_trp__GetServiceCapabilities: - return soap_out_PointerTo_trp__GetServiceCapabilities(soap, tag, id, (_trp__GetServiceCapabilities *const*)ptr, "trp:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_trc__GetExportRecordedDataState: - return soap_out_PointerTo_trc__GetExportRecordedDataState(soap, tag, id, (_trc__GetExportRecordedDataState *const*)ptr, "trc:GetExportRecordedDataState"); - case SOAP_TYPE_PointerTo_trc__StopExportRecordedData: - return soap_out_PointerTo_trc__StopExportRecordedData(soap, tag, id, (_trc__StopExportRecordedData *const*)ptr, "trc:StopExportRecordedData"); - case SOAP_TYPE_PointerTo_trc__ExportRecordedData: - return soap_out_PointerTo_trc__ExportRecordedData(soap, tag, id, (_trc__ExportRecordedData *const*)ptr, "trc:ExportRecordedData"); - case SOAP_TYPE_PointerTo_trc__GetRecordingJobState: - return soap_out_PointerTo_trc__GetRecordingJobState(soap, tag, id, (_trc__GetRecordingJobState *const*)ptr, "trc:GetRecordingJobState"); - case SOAP_TYPE_PointerTo_trc__SetRecordingJobMode: - return soap_out_PointerTo_trc__SetRecordingJobMode(soap, tag, id, (_trc__SetRecordingJobMode *const*)ptr, "trc:SetRecordingJobMode"); - case SOAP_TYPE_PointerTo_trc__GetRecordingJobConfiguration: - return soap_out_PointerTo_trc__GetRecordingJobConfiguration(soap, tag, id, (_trc__GetRecordingJobConfiguration *const*)ptr, "trc:GetRecordingJobConfiguration"); - case SOAP_TYPE_PointerTo_trc__SetRecordingJobConfiguration: - return soap_out_PointerTo_trc__SetRecordingJobConfiguration(soap, tag, id, (_trc__SetRecordingJobConfiguration *const*)ptr, "trc:SetRecordingJobConfiguration"); - case SOAP_TYPE_PointerTo_trc__GetRecordingJobs: - return soap_out_PointerTo_trc__GetRecordingJobs(soap, tag, id, (_trc__GetRecordingJobs *const*)ptr, "trc:GetRecordingJobs"); - case SOAP_TYPE_PointerTo_trc__DeleteRecordingJob: - return soap_out_PointerTo_trc__DeleteRecordingJob(soap, tag, id, (_trc__DeleteRecordingJob *const*)ptr, "trc:DeleteRecordingJob"); - case SOAP_TYPE_PointerTo_trc__CreateRecordingJob: - return soap_out_PointerTo_trc__CreateRecordingJob(soap, tag, id, (_trc__CreateRecordingJob *const*)ptr, "trc:CreateRecordingJob"); - case SOAP_TYPE_PointerTo_trc__SetTrackConfiguration: - return soap_out_PointerTo_trc__SetTrackConfiguration(soap, tag, id, (_trc__SetTrackConfiguration *const*)ptr, "trc:SetTrackConfiguration"); - case SOAP_TYPE_PointerTo_trc__GetTrackConfiguration: - return soap_out_PointerTo_trc__GetTrackConfiguration(soap, tag, id, (_trc__GetTrackConfiguration *const*)ptr, "trc:GetTrackConfiguration"); - case SOAP_TYPE_PointerTo_trc__DeleteTrack: - return soap_out_PointerTo_trc__DeleteTrack(soap, tag, id, (_trc__DeleteTrack *const*)ptr, "trc:DeleteTrack"); - case SOAP_TYPE_PointerTo_trc__CreateTrack: - return soap_out_PointerTo_trc__CreateTrack(soap, tag, id, (_trc__CreateTrack *const*)ptr, "trc:CreateTrack"); - case SOAP_TYPE_PointerTo_trc__GetRecordingOptions: - return soap_out_PointerTo_trc__GetRecordingOptions(soap, tag, id, (_trc__GetRecordingOptions *const*)ptr, "trc:GetRecordingOptions"); - case SOAP_TYPE_PointerTo_trc__GetRecordingConfiguration: - return soap_out_PointerTo_trc__GetRecordingConfiguration(soap, tag, id, (_trc__GetRecordingConfiguration *const*)ptr, "trc:GetRecordingConfiguration"); - case SOAP_TYPE_PointerTo_trc__SetRecordingConfiguration: - return soap_out_PointerTo_trc__SetRecordingConfiguration(soap, tag, id, (_trc__SetRecordingConfiguration *const*)ptr, "trc:SetRecordingConfiguration"); - case SOAP_TYPE_PointerTo_trc__GetRecordings: - return soap_out_PointerTo_trc__GetRecordings(soap, tag, id, (_trc__GetRecordings *const*)ptr, "trc:GetRecordings"); - case SOAP_TYPE_PointerTo_trc__DeleteRecording: - return soap_out_PointerTo_trc__DeleteRecording(soap, tag, id, (_trc__DeleteRecording *const*)ptr, "trc:DeleteRecording"); - case SOAP_TYPE_PointerTo_trc__CreateRecording: - return soap_out_PointerTo_trc__CreateRecording(soap, tag, id, (_trc__CreateRecording *const*)ptr, "trc:CreateRecording"); - case SOAP_TYPE_PointerTo_trc__GetServiceCapabilities: - return soap_out_PointerTo_trc__GetServiceCapabilities(soap, tag, id, (_trc__GetServiceCapabilities *const*)ptr, "trc:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tptz__GetCompatibleConfigurations: - return soap_out_PointerTo_tptz__GetCompatibleConfigurations(soap, tag, id, (_tptz__GetCompatibleConfigurations *const*)ptr, "tptz:GetCompatibleConfigurations"); - case SOAP_TYPE_PointerTo_tptz__RemovePresetTour: - return soap_out_PointerTo_tptz__RemovePresetTour(soap, tag, id, (_tptz__RemovePresetTour *const*)ptr, "tptz:RemovePresetTour"); - case SOAP_TYPE_PointerTo_tptz__OperatePresetTour: - return soap_out_PointerTo_tptz__OperatePresetTour(soap, tag, id, (_tptz__OperatePresetTour *const*)ptr, "tptz:OperatePresetTour"); - case SOAP_TYPE_PointerTo_tptz__ModifyPresetTour: - return soap_out_PointerTo_tptz__ModifyPresetTour(soap, tag, id, (_tptz__ModifyPresetTour *const*)ptr, "tptz:ModifyPresetTour"); - case SOAP_TYPE_PointerTo_tptz__CreatePresetTour: - return soap_out_PointerTo_tptz__CreatePresetTour(soap, tag, id, (_tptz__CreatePresetTour *const*)ptr, "tptz:CreatePresetTour"); - case SOAP_TYPE_PointerTo_tptz__GetPresetTourOptions: - return soap_out_PointerTo_tptz__GetPresetTourOptions(soap, tag, id, (_tptz__GetPresetTourOptions *const*)ptr, "tptz:GetPresetTourOptions"); - case SOAP_TYPE_PointerTo_tptz__GetPresetTour: - return soap_out_PointerTo_tptz__GetPresetTour(soap, tag, id, (_tptz__GetPresetTour *const*)ptr, "tptz:GetPresetTour"); - case SOAP_TYPE_PointerTo_tptz__GetPresetTours: - return soap_out_PointerTo_tptz__GetPresetTours(soap, tag, id, (_tptz__GetPresetTours *const*)ptr, "tptz:GetPresetTours"); - case SOAP_TYPE_PointerTo_tptz__Stop: - return soap_out_PointerTo_tptz__Stop(soap, tag, id, (_tptz__Stop *const*)ptr, "tptz:Stop"); - case SOAP_TYPE_PointerTo_tptz__AbsoluteMove: - return soap_out_PointerTo_tptz__AbsoluteMove(soap, tag, id, (_tptz__AbsoluteMove *const*)ptr, "tptz:AbsoluteMove"); - case SOAP_TYPE_PointerTo_tptz__SendAuxiliaryCommand: - return soap_out_PointerTo_tptz__SendAuxiliaryCommand(soap, tag, id, (_tptz__SendAuxiliaryCommand *const*)ptr, "tptz:SendAuxiliaryCommand"); - case SOAP_TYPE_PointerTo_tptz__RelativeMove: - return soap_out_PointerTo_tptz__RelativeMove(soap, tag, id, (_tptz__RelativeMove *const*)ptr, "tptz:RelativeMove"); - case SOAP_TYPE_PointerTo_tptz__ContinuousMove: - return soap_out_PointerTo_tptz__ContinuousMove(soap, tag, id, (_tptz__ContinuousMove *const*)ptr, "tptz:ContinuousMove"); - case SOAP_TYPE_PointerTo_tptz__SetHomePosition: - return soap_out_PointerTo_tptz__SetHomePosition(soap, tag, id, (_tptz__SetHomePosition *const*)ptr, "tptz:SetHomePosition"); - case SOAP_TYPE_PointerTo_tptz__GotoHomePosition: - return soap_out_PointerTo_tptz__GotoHomePosition(soap, tag, id, (_tptz__GotoHomePosition *const*)ptr, "tptz:GotoHomePosition"); - case SOAP_TYPE_PointerTo_tptz__GetConfigurationOptions: - return soap_out_PointerTo_tptz__GetConfigurationOptions(soap, tag, id, (_tptz__GetConfigurationOptions *const*)ptr, "tptz:GetConfigurationOptions"); - case SOAP_TYPE_PointerTo_tptz__SetConfiguration: - return soap_out_PointerTo_tptz__SetConfiguration(soap, tag, id, (_tptz__SetConfiguration *const*)ptr, "tptz:SetConfiguration"); - case SOAP_TYPE_PointerTo_tptz__GetNode: - return soap_out_PointerTo_tptz__GetNode(soap, tag, id, (_tptz__GetNode *const*)ptr, "tptz:GetNode"); - case SOAP_TYPE_PointerTo_tptz__GetNodes: - return soap_out_PointerTo_tptz__GetNodes(soap, tag, id, (_tptz__GetNodes *const*)ptr, "tptz:GetNodes"); - case SOAP_TYPE_PointerTo_tptz__GetConfiguration: - return soap_out_PointerTo_tptz__GetConfiguration(soap, tag, id, (_tptz__GetConfiguration *const*)ptr, "tptz:GetConfiguration"); - case SOAP_TYPE_PointerTo_tptz__GetStatus: - return soap_out_PointerTo_tptz__GetStatus(soap, tag, id, (_tptz__GetStatus *const*)ptr, "tptz:GetStatus"); - case SOAP_TYPE_PointerTo_tptz__GotoPreset: - return soap_out_PointerTo_tptz__GotoPreset(soap, tag, id, (_tptz__GotoPreset *const*)ptr, "tptz:GotoPreset"); - case SOAP_TYPE_PointerTo_tptz__RemovePreset: - return soap_out_PointerTo_tptz__RemovePreset(soap, tag, id, (_tptz__RemovePreset *const*)ptr, "tptz:RemovePreset"); - case SOAP_TYPE_PointerTo_tptz__SetPreset: - return soap_out_PointerTo_tptz__SetPreset(soap, tag, id, (_tptz__SetPreset *const*)ptr, "tptz:SetPreset"); - case SOAP_TYPE_PointerTo_tptz__GetPresets: - return soap_out_PointerTo_tptz__GetPresets(soap, tag, id, (_tptz__GetPresets *const*)ptr, "tptz:GetPresets"); - case SOAP_TYPE_PointerTo_tptz__GetConfigurations: - return soap_out_PointerTo_tptz__GetConfigurations(soap, tag, id, (_tptz__GetConfigurations *const*)ptr, "tptz:GetConfigurations"); - case SOAP_TYPE_PointerTo_tptz__GetServiceCapabilities: - return soap_out_PointerTo_tptz__GetServiceCapabilities(soap, tag, id, (_tptz__GetServiceCapabilities *const*)ptr, "tptz:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tmd__SendReceiveSerialCommand: - return soap_out_PointerTo_tmd__SendReceiveSerialCommand(soap, tag, id, (_tmd__SendReceiveSerialCommand *const*)ptr, "tmd:SendReceiveSerialCommand"); - case SOAP_TYPE_PointerTo_tmd__GetSerialPortConfigurationOptions: - return soap_out_PointerTo_tmd__GetSerialPortConfigurationOptions(soap, tag, id, (_tmd__GetSerialPortConfigurationOptions *const*)ptr, "tmd:GetSerialPortConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__SetSerialPortConfiguration: - return soap_out_PointerTo_tmd__SetSerialPortConfiguration(soap, tag, id, (_tmd__SetSerialPortConfiguration *const*)ptr, "tmd:SetSerialPortConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetSerialPortConfiguration: - return soap_out_PointerTo_tmd__GetSerialPortConfiguration(soap, tag, id, (_tmd__GetSerialPortConfiguration *const*)ptr, "tmd:GetSerialPortConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetSerialPorts: - return soap_out_PointerTo_tmd__GetSerialPorts(soap, tag, id, (_tmd__GetSerialPorts *const*)ptr, "tmd:GetSerialPorts"); - case SOAP_TYPE_PointerTo_tmd__SetDigitalInputConfigurations: - return soap_out_PointerTo_tmd__SetDigitalInputConfigurations(soap, tag, id, (_tmd__SetDigitalInputConfigurations *const*)ptr, "tmd:SetDigitalInputConfigurations"); - case SOAP_TYPE_PointerTo_tmd__GetDigitalInputConfigurationOptions: - return soap_out_PointerTo_tmd__GetDigitalInputConfigurationOptions(soap, tag, id, (_tmd__GetDigitalInputConfigurationOptions *const*)ptr, "tmd:GetDigitalInputConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetDigitalInputs: - return soap_out_PointerTo_tmd__GetDigitalInputs(soap, tag, id, (_tmd__GetDigitalInputs *const*)ptr, "tmd:GetDigitalInputs"); - case SOAP_TYPE_PointerTo_tmd__SetRelayOutputSettings: - return soap_out_PointerTo_tmd__SetRelayOutputSettings(soap, tag, id, (_tmd__SetRelayOutputSettings *const*)ptr, "tmd:SetRelayOutputSettings"); - case SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfigurationOptions: - return soap_out_PointerTo_tmd__GetAudioOutputConfigurationOptions(soap, tag, id, (_tmd__GetAudioOutputConfigurationOptions *const*)ptr, "tmd:GetAudioOutputConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfigurationOptions: - return soap_out_PointerTo_tmd__GetAudioSourceConfigurationOptions(soap, tag, id, (_tmd__GetAudioSourceConfigurationOptions *const*)ptr, "tmd:GetAudioSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfigurationOptions: - return soap_out_PointerTo_tmd__GetVideoOutputConfigurationOptions(soap, tag, id, (_tmd__GetVideoOutputConfigurationOptions *const*)ptr, "tmd:GetVideoOutputConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfigurationOptions: - return soap_out_PointerTo_tmd__GetVideoSourceConfigurationOptions(soap, tag, id, (_tmd__GetVideoSourceConfigurationOptions *const*)ptr, "tmd:GetVideoSourceConfigurationOptions"); - case SOAP_TYPE_PointerTo_tmd__SetAudioOutputConfiguration: - return soap_out_PointerTo_tmd__SetAudioOutputConfiguration(soap, tag, id, (_tmd__SetAudioOutputConfiguration *const*)ptr, "tmd:SetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__SetAudioSourceConfiguration: - return soap_out_PointerTo_tmd__SetAudioSourceConfiguration(soap, tag, id, (_tmd__SetAudioSourceConfiguration *const*)ptr, "tmd:SetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__SetVideoOutputConfiguration: - return soap_out_PointerTo_tmd__SetVideoOutputConfiguration(soap, tag, id, (_tmd__SetVideoOutputConfiguration *const*)ptr, "tmd:SetVideoOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__SetVideoSourceConfiguration: - return soap_out_PointerTo_tmd__SetVideoSourceConfiguration(soap, tag, id, (_tmd__SetVideoSourceConfiguration *const*)ptr, "tmd:SetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfiguration: - return soap_out_PointerTo_tmd__GetAudioOutputConfiguration(soap, tag, id, (_tmd__GetAudioOutputConfiguration *const*)ptr, "tmd:GetAudioOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfiguration: - return soap_out_PointerTo_tmd__GetAudioSourceConfiguration(soap, tag, id, (_tmd__GetAudioSourceConfiguration *const*)ptr, "tmd:GetAudioSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfiguration: - return soap_out_PointerTo_tmd__GetVideoOutputConfiguration(soap, tag, id, (_tmd__GetVideoOutputConfiguration *const*)ptr, "tmd:GetVideoOutputConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfiguration: - return soap_out_PointerTo_tmd__GetVideoSourceConfiguration(soap, tag, id, (_tmd__GetVideoSourceConfiguration *const*)ptr, "tmd:GetVideoSourceConfiguration"); - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputs: - return soap_out_PointerTo_tmd__GetVideoOutputs(soap, tag, id, (_tmd__GetVideoOutputs *const*)ptr, "tmd:GetVideoOutputs"); - case SOAP_TYPE_PointerTotmd__Get: - return soap_out_PointerTotmd__Get(soap, tag, id, (tmd__Get *const*)ptr, "tmd:Get"); - case SOAP_TYPE_PointerTo_tmd__GetRelayOutputOptions: - return soap_out_PointerTo_tmd__GetRelayOutputOptions(soap, tag, id, (_tmd__GetRelayOutputOptions *const*)ptr, "tmd:GetRelayOutputOptions"); - case SOAP_TYPE_PointerTo_tmd__GetServiceCapabilities: - return soap_out_PointerTo_tmd__GetServiceCapabilities(soap, tag, id, (_tmd__GetServiceCapabilities *const*)ptr, "tmd:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tls__DeletePaneConfiguration: - return soap_out_PointerTo_tls__DeletePaneConfiguration(soap, tag, id, (_tls__DeletePaneConfiguration *const*)ptr, "tls:DeletePaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__CreatePaneConfiguration: - return soap_out_PointerTo_tls__CreatePaneConfiguration(soap, tag, id, (_tls__CreatePaneConfiguration *const*)ptr, "tls:CreatePaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__SetPaneConfiguration: - return soap_out_PointerTo_tls__SetPaneConfiguration(soap, tag, id, (_tls__SetPaneConfiguration *const*)ptr, "tls:SetPaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__SetPaneConfigurations: - return soap_out_PointerTo_tls__SetPaneConfigurations(soap, tag, id, (_tls__SetPaneConfigurations *const*)ptr, "tls:SetPaneConfigurations"); - case SOAP_TYPE_PointerTo_tls__GetPaneConfiguration: - return soap_out_PointerTo_tls__GetPaneConfiguration(soap, tag, id, (_tls__GetPaneConfiguration *const*)ptr, "tls:GetPaneConfiguration"); - case SOAP_TYPE_PointerTo_tls__GetPaneConfigurations: - return soap_out_PointerTo_tls__GetPaneConfigurations(soap, tag, id, (_tls__GetPaneConfigurations *const*)ptr, "tls:GetPaneConfigurations"); - case SOAP_TYPE_PointerTo_tls__GetDisplayOptions: - return soap_out_PointerTo_tls__GetDisplayOptions(soap, tag, id, (_tls__GetDisplayOptions *const*)ptr, "tls:GetDisplayOptions"); - case SOAP_TYPE_PointerTo_tls__SetLayout: - return soap_out_PointerTo_tls__SetLayout(soap, tag, id, (_tls__SetLayout *const*)ptr, "tls:SetLayout"); - case SOAP_TYPE_PointerTo_tls__GetLayout: - return soap_out_PointerTo_tls__GetLayout(soap, tag, id, (_tls__GetLayout *const*)ptr, "tls:GetLayout"); - case SOAP_TYPE_PointerTo_tls__GetServiceCapabilities: - return soap_out_PointerTo_tls__GetServiceCapabilities(soap, tag, id, (_tls__GetServiceCapabilities *const*)ptr, "tls:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_timg__SetCurrentPreset: - return soap_out_PointerTo_timg__SetCurrentPreset(soap, tag, id, (_timg__SetCurrentPreset *const*)ptr, "timg:SetCurrentPreset"); - case SOAP_TYPE_PointerTo_timg__GetCurrentPreset: - return soap_out_PointerTo_timg__GetCurrentPreset(soap, tag, id, (_timg__GetCurrentPreset *const*)ptr, "timg:GetCurrentPreset"); - case SOAP_TYPE_PointerTo_timg__GetPresets: - return soap_out_PointerTo_timg__GetPresets(soap, tag, id, (_timg__GetPresets *const*)ptr, "timg:GetPresets"); - case SOAP_TYPE_PointerTo_timg__GetMoveOptions: - return soap_out_PointerTo_timg__GetMoveOptions(soap, tag, id, (_timg__GetMoveOptions *const*)ptr, "timg:GetMoveOptions"); - case SOAP_TYPE_PointerTo_timg__GetStatus: - return soap_out_PointerTo_timg__GetStatus(soap, tag, id, (_timg__GetStatus *const*)ptr, "timg:GetStatus"); - case SOAP_TYPE_PointerTo_timg__Stop: - return soap_out_PointerTo_timg__Stop(soap, tag, id, (_timg__Stop *const*)ptr, "timg:Stop"); - case SOAP_TYPE_PointerTo_timg__Move: - return soap_out_PointerTo_timg__Move(soap, tag, id, (_timg__Move *const*)ptr, "timg:Move"); - case SOAP_TYPE_PointerTo_timg__GetOptions: - return soap_out_PointerTo_timg__GetOptions(soap, tag, id, (_timg__GetOptions *const*)ptr, "timg:GetOptions"); - case SOAP_TYPE_PointerTo_timg__SetImagingSettings: - return soap_out_PointerTo_timg__SetImagingSettings(soap, tag, id, (_timg__SetImagingSettings *const*)ptr, "timg:SetImagingSettings"); - case SOAP_TYPE_PointerTo_timg__GetImagingSettings: - return soap_out_PointerTo_timg__GetImagingSettings(soap, tag, id, (_timg__GetImagingSettings *const*)ptr, "timg:GetImagingSettings"); - case SOAP_TYPE_PointerTo_timg__GetServiceCapabilities: - return soap_out_PointerTo_timg__GetServiceCapabilities(soap, tag, id, (_timg__GetServiceCapabilities *const*)ptr, "timg:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_wsnt__ResumeSubscription: - return soap_out_PointerTo_wsnt__ResumeSubscription(soap, tag, id, (_wsnt__ResumeSubscription *const*)ptr, "wsnt:ResumeSubscription"); - case SOAP_TYPE_PointerTo_wsnt__PauseSubscription: - return soap_out_PointerTo_wsnt__PauseSubscription(soap, tag, id, (_wsnt__PauseSubscription *const*)ptr, "wsnt:PauseSubscription"); - case SOAP_TYPE_PointerTo_wsnt__Unsubscribe: - return soap_out_PointerTo_wsnt__Unsubscribe(soap, tag, id, (_wsnt__Unsubscribe *const*)ptr, "wsnt:Unsubscribe"); - case SOAP_TYPE_PointerTo_wsnt__Renew: - return soap_out_PointerTo_wsnt__Renew(soap, tag, id, (_wsnt__Renew *const*)ptr, "wsnt:Renew"); - case SOAP_TYPE_PointerTo_tev__SetSynchronizationPoint: - return soap_out_PointerTo_tev__SetSynchronizationPoint(soap, tag, id, (_tev__SetSynchronizationPoint *const*)ptr, "tev:SetSynchronizationPoint"); - case SOAP_TYPE_PointerTo_tev__Seek: - return soap_out_PointerTo_tev__Seek(soap, tag, id, (_tev__Seek *const*)ptr, "tev:Seek"); - case SOAP_TYPE_PointerTo_tev__PullMessages: - return soap_out_PointerTo_tev__PullMessages(soap, tag, id, (_tev__PullMessages *const*)ptr, "tev:PullMessages"); - case SOAP_TYPE_PointerTo_wsnt__DestroyPullPoint: - return soap_out_PointerTo_wsnt__DestroyPullPoint(soap, tag, id, (_wsnt__DestroyPullPoint *const*)ptr, "wsnt:DestroyPullPoint"); - case SOAP_TYPE_PointerTo_wsnt__GetMessages: - return soap_out_PointerTo_wsnt__GetMessages(soap, tag, id, (_wsnt__GetMessages *const*)ptr, "wsnt:GetMessages"); - case SOAP_TYPE_PointerTo_wsnt__GetCurrentMessage: - return soap_out_PointerTo_wsnt__GetCurrentMessage(soap, tag, id, (_wsnt__GetCurrentMessage *const*)ptr, "wsnt:GetCurrentMessage"); - case SOAP_TYPE_PointerTo_wsnt__Subscribe: - return soap_out_PointerTo_wsnt__Subscribe(soap, tag, id, (_wsnt__Subscribe *const*)ptr, "wsnt:Subscribe"); - case SOAP_TYPE_PointerTo_wsnt__Notify: - return soap_out_PointerTo_wsnt__Notify(soap, tag, id, (_wsnt__Notify *const*)ptr, "wsnt:Notify"); - case SOAP_TYPE_PointerTo_tev__GetEventProperties: - return soap_out_PointerTo_tev__GetEventProperties(soap, tag, id, (_tev__GetEventProperties *const*)ptr, "tev:GetEventProperties"); - case SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription: - return soap_out_PointerTo_tev__CreatePullPointSubscription(soap, tag, id, (_tev__CreatePullPointSubscription *const*)ptr, "tev:CreatePullPointSubscription"); - case SOAP_TYPE_PointerTo_tev__GetServiceCapabilities: - return soap_out_PointerTo_tev__GetServiceCapabilities(soap, tag, id, (_tev__GetServiceCapabilities *const*)ptr, "tev:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_wsnt__CreatePullPoint: - return soap_out_PointerTo_wsnt__CreatePullPoint(soap, tag, id, (_wsnt__CreatePullPoint *const*)ptr, "wsnt:CreatePullPoint"); - case SOAP_TYPE_PointerTo_tds__DeleteGeoLocation: - return soap_out_PointerTo_tds__DeleteGeoLocation(soap, tag, id, (_tds__DeleteGeoLocation *const*)ptr, "tds:DeleteGeoLocation"); - case SOAP_TYPE_PointerTo_tds__SetGeoLocation: - return soap_out_PointerTo_tds__SetGeoLocation(soap, tag, id, (_tds__SetGeoLocation *const*)ptr, "tds:SetGeoLocation"); - case SOAP_TYPE_PointerTo_tds__GetGeoLocation: - return soap_out_PointerTo_tds__GetGeoLocation(soap, tag, id, (_tds__GetGeoLocation *const*)ptr, "tds:GetGeoLocation"); - case SOAP_TYPE_PointerTo_tds__DeleteStorageConfiguration: - return soap_out_PointerTo_tds__DeleteStorageConfiguration(soap, tag, id, (_tds__DeleteStorageConfiguration *const*)ptr, "tds:DeleteStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__SetStorageConfiguration: - return soap_out_PointerTo_tds__SetStorageConfiguration(soap, tag, id, (_tds__SetStorageConfiguration *const*)ptr, "tds:SetStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetStorageConfiguration: - return soap_out_PointerTo_tds__GetStorageConfiguration(soap, tag, id, (_tds__GetStorageConfiguration *const*)ptr, "tds:GetStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__CreateStorageConfiguration: - return soap_out_PointerTo_tds__CreateStorageConfiguration(soap, tag, id, (_tds__CreateStorageConfiguration *const*)ptr, "tds:CreateStorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetStorageConfigurations: - return soap_out_PointerTo_tds__GetStorageConfigurations(soap, tag, id, (_tds__GetStorageConfigurations *const*)ptr, "tds:GetStorageConfigurations"); - case SOAP_TYPE_PointerTo_tds__StartSystemRestore: - return soap_out_PointerTo_tds__StartSystemRestore(soap, tag, id, (_tds__StartSystemRestore *const*)ptr, "tds:StartSystemRestore"); - case SOAP_TYPE_PointerTo_tds__StartFirmwareUpgrade: - return soap_out_PointerTo_tds__StartFirmwareUpgrade(soap, tag, id, (_tds__StartFirmwareUpgrade *const*)ptr, "tds:StartFirmwareUpgrade"); - case SOAP_TYPE_PointerTo_tds__GetSystemUris: - return soap_out_PointerTo_tds__GetSystemUris(soap, tag, id, (_tds__GetSystemUris *const*)ptr, "tds:GetSystemUris"); - case SOAP_TYPE_PointerTo_tds__ScanAvailableDot11Networks: - return soap_out_PointerTo_tds__ScanAvailableDot11Networks(soap, tag, id, (_tds__ScanAvailableDot11Networks *const*)ptr, "tds:ScanAvailableDot11Networks"); - case SOAP_TYPE_PointerTo_tds__GetDot11Status: - return soap_out_PointerTo_tds__GetDot11Status(soap, tag, id, (_tds__GetDot11Status *const*)ptr, "tds:GetDot11Status"); - case SOAP_TYPE_PointerTo_tds__GetDot11Capabilities: - return soap_out_PointerTo_tds__GetDot11Capabilities(soap, tag, id, (_tds__GetDot11Capabilities *const*)ptr, "tds:GetDot11Capabilities"); - case SOAP_TYPE_PointerTo_tds__DeleteDot1XConfiguration: - return soap_out_PointerTo_tds__DeleteDot1XConfiguration(soap, tag, id, (_tds__DeleteDot1XConfiguration *const*)ptr, "tds:DeleteDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetDot1XConfigurations: - return soap_out_PointerTo_tds__GetDot1XConfigurations(soap, tag, id, (_tds__GetDot1XConfigurations *const*)ptr, "tds:GetDot1XConfigurations"); - case SOAP_TYPE_PointerTo_tds__GetDot1XConfiguration: - return soap_out_PointerTo_tds__GetDot1XConfiguration(soap, tag, id, (_tds__GetDot1XConfiguration *const*)ptr, "tds:GetDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__SetDot1XConfiguration: - return soap_out_PointerTo_tds__SetDot1XConfiguration(soap, tag, id, (_tds__SetDot1XConfiguration *const*)ptr, "tds:SetDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__CreateDot1XConfiguration: - return soap_out_PointerTo_tds__CreateDot1XConfiguration(soap, tag, id, (_tds__CreateDot1XConfiguration *const*)ptr, "tds:CreateDot1XConfiguration"); - case SOAP_TYPE_PointerTo_tds__LoadCACertificates: - return soap_out_PointerTo_tds__LoadCACertificates(soap, tag, id, (_tds__LoadCACertificates *const*)ptr, "tds:LoadCACertificates"); - case SOAP_TYPE_PointerTo_tds__GetCertificateInformation: - return soap_out_PointerTo_tds__GetCertificateInformation(soap, tag, id, (_tds__GetCertificateInformation *const*)ptr, "tds:GetCertificateInformation"); - case SOAP_TYPE_PointerTo_tds__LoadCertificateWithPrivateKey: - return soap_out_PointerTo_tds__LoadCertificateWithPrivateKey(soap, tag, id, (_tds__LoadCertificateWithPrivateKey *const*)ptr, "tds:LoadCertificateWithPrivateKey"); - case SOAP_TYPE_PointerTo_tds__GetCACertificates: - return soap_out_PointerTo_tds__GetCACertificates(soap, tag, id, (_tds__GetCACertificates *const*)ptr, "tds:GetCACertificates"); - case SOAP_TYPE_PointerTo_tds__SendAuxiliaryCommand: - return soap_out_PointerTo_tds__SendAuxiliaryCommand(soap, tag, id, (_tds__SendAuxiliaryCommand *const*)ptr, "tds:SendAuxiliaryCommand"); - case SOAP_TYPE_PointerTo_tds__SetRelayOutputState: - return soap_out_PointerTo_tds__SetRelayOutputState(soap, tag, id, (_tds__SetRelayOutputState *const*)ptr, "tds:SetRelayOutputState"); - case SOAP_TYPE_PointerTo_tds__SetRelayOutputSettings: - return soap_out_PointerTo_tds__SetRelayOutputSettings(soap, tag, id, (_tds__SetRelayOutputSettings *const*)ptr, "tds:SetRelayOutputSettings"); - case SOAP_TYPE_PointerTo_tds__GetRelayOutputs: - return soap_out_PointerTo_tds__GetRelayOutputs(soap, tag, id, (_tds__GetRelayOutputs *const*)ptr, "tds:GetRelayOutputs"); - case SOAP_TYPE_PointerTo_tds__SetClientCertificateMode: - return soap_out_PointerTo_tds__SetClientCertificateMode(soap, tag, id, (_tds__SetClientCertificateMode *const*)ptr, "tds:SetClientCertificateMode"); - case SOAP_TYPE_PointerTo_tds__GetClientCertificateMode: - return soap_out_PointerTo_tds__GetClientCertificateMode(soap, tag, id, (_tds__GetClientCertificateMode *const*)ptr, "tds:GetClientCertificateMode"); - case SOAP_TYPE_PointerTo_tds__LoadCertificates: - return soap_out_PointerTo_tds__LoadCertificates(soap, tag, id, (_tds__LoadCertificates *const*)ptr, "tds:LoadCertificates"); - case SOAP_TYPE_PointerTo_tds__GetPkcs10Request: - return soap_out_PointerTo_tds__GetPkcs10Request(soap, tag, id, (_tds__GetPkcs10Request *const*)ptr, "tds:GetPkcs10Request"); - case SOAP_TYPE_PointerTo_tds__DeleteCertificates: - return soap_out_PointerTo_tds__DeleteCertificates(soap, tag, id, (_tds__DeleteCertificates *const*)ptr, "tds:DeleteCertificates"); - case SOAP_TYPE_PointerTo_tds__SetCertificatesStatus: - return soap_out_PointerTo_tds__SetCertificatesStatus(soap, tag, id, (_tds__SetCertificatesStatus *const*)ptr, "tds:SetCertificatesStatus"); - case SOAP_TYPE_PointerTo_tds__GetCertificatesStatus: - return soap_out_PointerTo_tds__GetCertificatesStatus(soap, tag, id, (_tds__GetCertificatesStatus *const*)ptr, "tds:GetCertificatesStatus"); - case SOAP_TYPE_PointerTo_tds__GetCertificates: - return soap_out_PointerTo_tds__GetCertificates(soap, tag, id, (_tds__GetCertificates *const*)ptr, "tds:GetCertificates"); - case SOAP_TYPE_PointerTo_tds__CreateCertificate: - return soap_out_PointerTo_tds__CreateCertificate(soap, tag, id, (_tds__CreateCertificate *const*)ptr, "tds:CreateCertificate"); - case SOAP_TYPE_PointerTo_tds__SetAccessPolicy: - return soap_out_PointerTo_tds__SetAccessPolicy(soap, tag, id, (_tds__SetAccessPolicy *const*)ptr, "tds:SetAccessPolicy"); - case SOAP_TYPE_PointerTo_tds__GetAccessPolicy: - return soap_out_PointerTo_tds__GetAccessPolicy(soap, tag, id, (_tds__GetAccessPolicy *const*)ptr, "tds:GetAccessPolicy"); - case SOAP_TYPE_PointerTo_tds__RemoveIPAddressFilter: - return soap_out_PointerTo_tds__RemoveIPAddressFilter(soap, tag, id, (_tds__RemoveIPAddressFilter *const*)ptr, "tds:RemoveIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__AddIPAddressFilter: - return soap_out_PointerTo_tds__AddIPAddressFilter(soap, tag, id, (_tds__AddIPAddressFilter *const*)ptr, "tds:AddIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__SetIPAddressFilter: - return soap_out_PointerTo_tds__SetIPAddressFilter(soap, tag, id, (_tds__SetIPAddressFilter *const*)ptr, "tds:SetIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__GetIPAddressFilter: - return soap_out_PointerTo_tds__GetIPAddressFilter(soap, tag, id, (_tds__GetIPAddressFilter *const*)ptr, "tds:GetIPAddressFilter"); - case SOAP_TYPE_PointerTo_tds__SetZeroConfiguration: - return soap_out_PointerTo_tds__SetZeroConfiguration(soap, tag, id, (_tds__SetZeroConfiguration *const*)ptr, "tds:SetZeroConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetZeroConfiguration: - return soap_out_PointerTo_tds__GetZeroConfiguration(soap, tag, id, (_tds__GetZeroConfiguration *const*)ptr, "tds:GetZeroConfiguration"); - case SOAP_TYPE_PointerTo_tds__SetNetworkDefaultGateway: - return soap_out_PointerTo_tds__SetNetworkDefaultGateway(soap, tag, id, (_tds__SetNetworkDefaultGateway *const*)ptr, "tds:SetNetworkDefaultGateway"); - case SOAP_TYPE_PointerTo_tds__GetNetworkDefaultGateway: - return soap_out_PointerTo_tds__GetNetworkDefaultGateway(soap, tag, id, (_tds__GetNetworkDefaultGateway *const*)ptr, "tds:GetNetworkDefaultGateway"); - case SOAP_TYPE_PointerTo_tds__SetNetworkProtocols: - return soap_out_PointerTo_tds__SetNetworkProtocols(soap, tag, id, (_tds__SetNetworkProtocols *const*)ptr, "tds:SetNetworkProtocols"); - case SOAP_TYPE_PointerTo_tds__GetNetworkProtocols: - return soap_out_PointerTo_tds__GetNetworkProtocols(soap, tag, id, (_tds__GetNetworkProtocols *const*)ptr, "tds:GetNetworkProtocols"); - case SOAP_TYPE_PointerTo_tds__SetNetworkInterfaces: - return soap_out_PointerTo_tds__SetNetworkInterfaces(soap, tag, id, (_tds__SetNetworkInterfaces *const*)ptr, "tds:SetNetworkInterfaces"); - case SOAP_TYPE_PointerTo_tds__GetNetworkInterfaces: - return soap_out_PointerTo_tds__GetNetworkInterfaces(soap, tag, id, (_tds__GetNetworkInterfaces *const*)ptr, "tds:GetNetworkInterfaces"); - case SOAP_TYPE_PointerTo_tds__SetDynamicDNS: - return soap_out_PointerTo_tds__SetDynamicDNS(soap, tag, id, (_tds__SetDynamicDNS *const*)ptr, "tds:SetDynamicDNS"); - case SOAP_TYPE_PointerTo_tds__GetDynamicDNS: - return soap_out_PointerTo_tds__GetDynamicDNS(soap, tag, id, (_tds__GetDynamicDNS *const*)ptr, "tds:GetDynamicDNS"); - case SOAP_TYPE_PointerTo_tds__SetNTP: - return soap_out_PointerTo_tds__SetNTP(soap, tag, id, (_tds__SetNTP *const*)ptr, "tds:SetNTP"); - case SOAP_TYPE_PointerTo_tds__GetNTP: - return soap_out_PointerTo_tds__GetNTP(soap, tag, id, (_tds__GetNTP *const*)ptr, "tds:GetNTP"); - case SOAP_TYPE_PointerTo_tds__SetDNS: - return soap_out_PointerTo_tds__SetDNS(soap, tag, id, (_tds__SetDNS *const*)ptr, "tds:SetDNS"); - case SOAP_TYPE_PointerTo_tds__GetDNS: - return soap_out_PointerTo_tds__GetDNS(soap, tag, id, (_tds__GetDNS *const*)ptr, "tds:GetDNS"); - case SOAP_TYPE_PointerTo_tds__SetHostnameFromDHCP: - return soap_out_PointerTo_tds__SetHostnameFromDHCP(soap, tag, id, (_tds__SetHostnameFromDHCP *const*)ptr, "tds:SetHostnameFromDHCP"); - case SOAP_TYPE_PointerTo_tds__SetHostname: - return soap_out_PointerTo_tds__SetHostname(soap, tag, id, (_tds__SetHostname *const*)ptr, "tds:SetHostname"); - case SOAP_TYPE_PointerTo_tds__GetHostname: - return soap_out_PointerTo_tds__GetHostname(soap, tag, id, (_tds__GetHostname *const*)ptr, "tds:GetHostname"); - case SOAP_TYPE_PointerTo_tds__SetDPAddresses: - return soap_out_PointerTo_tds__SetDPAddresses(soap, tag, id, (_tds__SetDPAddresses *const*)ptr, "tds:SetDPAddresses"); - case SOAP_TYPE_PointerTo_tds__GetCapabilities: - return soap_out_PointerTo_tds__GetCapabilities(soap, tag, id, (_tds__GetCapabilities *const*)ptr, "tds:GetCapabilities"); - case SOAP_TYPE_PointerTo_tds__GetWsdlUrl: - return soap_out_PointerTo_tds__GetWsdlUrl(soap, tag, id, (_tds__GetWsdlUrl *const*)ptr, "tds:GetWsdlUrl"); - case SOAP_TYPE_PointerTo_tds__SetUser: - return soap_out_PointerTo_tds__SetUser(soap, tag, id, (_tds__SetUser *const*)ptr, "tds:SetUser"); - case SOAP_TYPE_PointerTo_tds__DeleteUsers: - return soap_out_PointerTo_tds__DeleteUsers(soap, tag, id, (_tds__DeleteUsers *const*)ptr, "tds:DeleteUsers"); - case SOAP_TYPE_PointerTo_tds__CreateUsers: - return soap_out_PointerTo_tds__CreateUsers(soap, tag, id, (_tds__CreateUsers *const*)ptr, "tds:CreateUsers"); - case SOAP_TYPE_PointerTo_tds__GetUsers: - return soap_out_PointerTo_tds__GetUsers(soap, tag, id, (_tds__GetUsers *const*)ptr, "tds:GetUsers"); - case SOAP_TYPE_PointerTo_tds__SetRemoteUser: - return soap_out_PointerTo_tds__SetRemoteUser(soap, tag, id, (_tds__SetRemoteUser *const*)ptr, "tds:SetRemoteUser"); - case SOAP_TYPE_PointerTo_tds__GetRemoteUser: - return soap_out_PointerTo_tds__GetRemoteUser(soap, tag, id, (_tds__GetRemoteUser *const*)ptr, "tds:GetRemoteUser"); - case SOAP_TYPE_PointerTo_tds__GetEndpointReference: - return soap_out_PointerTo_tds__GetEndpointReference(soap, tag, id, (_tds__GetEndpointReference *const*)ptr, "tds:GetEndpointReference"); - case SOAP_TYPE_PointerTo_tds__GetDPAddresses: - return soap_out_PointerTo_tds__GetDPAddresses(soap, tag, id, (_tds__GetDPAddresses *const*)ptr, "tds:GetDPAddresses"); - case SOAP_TYPE_PointerTo_tds__SetRemoteDiscoveryMode: - return soap_out_PointerTo_tds__SetRemoteDiscoveryMode(soap, tag, id, (_tds__SetRemoteDiscoveryMode *const*)ptr, "tds:SetRemoteDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__GetRemoteDiscoveryMode: - return soap_out_PointerTo_tds__GetRemoteDiscoveryMode(soap, tag, id, (_tds__GetRemoteDiscoveryMode *const*)ptr, "tds:GetRemoteDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__SetDiscoveryMode: - return soap_out_PointerTo_tds__SetDiscoveryMode(soap, tag, id, (_tds__SetDiscoveryMode *const*)ptr, "tds:SetDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__GetDiscoveryMode: - return soap_out_PointerTo_tds__GetDiscoveryMode(soap, tag, id, (_tds__GetDiscoveryMode *const*)ptr, "tds:GetDiscoveryMode"); - case SOAP_TYPE_PointerTo_tds__RemoveScopes: - return soap_out_PointerTo_tds__RemoveScopes(soap, tag, id, (_tds__RemoveScopes *const*)ptr, "tds:RemoveScopes"); - case SOAP_TYPE_PointerTo_tds__AddScopes: - return soap_out_PointerTo_tds__AddScopes(soap, tag, id, (_tds__AddScopes *const*)ptr, "tds:AddScopes"); - case SOAP_TYPE_PointerTo_tds__SetScopes: - return soap_out_PointerTo_tds__SetScopes(soap, tag, id, (_tds__SetScopes *const*)ptr, "tds:SetScopes"); - case SOAP_TYPE_PointerTo_tds__GetScopes: - return soap_out_PointerTo_tds__GetScopes(soap, tag, id, (_tds__GetScopes *const*)ptr, "tds:GetScopes"); - case SOAP_TYPE_PointerTo_tds__GetSystemSupportInformation: - return soap_out_PointerTo_tds__GetSystemSupportInformation(soap, tag, id, (_tds__GetSystemSupportInformation *const*)ptr, "tds:GetSystemSupportInformation"); - case SOAP_TYPE_PointerTo_tds__GetSystemLog: - return soap_out_PointerTo_tds__GetSystemLog(soap, tag, id, (_tds__GetSystemLog *const*)ptr, "tds:GetSystemLog"); - case SOAP_TYPE_PointerTo_tds__GetSystemBackup: - return soap_out_PointerTo_tds__GetSystemBackup(soap, tag, id, (_tds__GetSystemBackup *const*)ptr, "tds:GetSystemBackup"); - case SOAP_TYPE_PointerTo_tds__RestoreSystem: - return soap_out_PointerTo_tds__RestoreSystem(soap, tag, id, (_tds__RestoreSystem *const*)ptr, "tds:RestoreSystem"); - case SOAP_TYPE_PointerTo_tds__SystemReboot: - return soap_out_PointerTo_tds__SystemReboot(soap, tag, id, (_tds__SystemReboot *const*)ptr, "tds:SystemReboot"); - case SOAP_TYPE_PointerTo_tds__UpgradeSystemFirmware: - return soap_out_PointerTo_tds__UpgradeSystemFirmware(soap, tag, id, (_tds__UpgradeSystemFirmware *const*)ptr, "tds:UpgradeSystemFirmware"); - case SOAP_TYPE_PointerTo_tds__SetSystemFactoryDefault: - return soap_out_PointerTo_tds__SetSystemFactoryDefault(soap, tag, id, (_tds__SetSystemFactoryDefault *const*)ptr, "tds:SetSystemFactoryDefault"); - case SOAP_TYPE_PointerTo_tds__GetSystemDateAndTime: - return soap_out_PointerTo_tds__GetSystemDateAndTime(soap, tag, id, (_tds__GetSystemDateAndTime *const*)ptr, "tds:GetSystemDateAndTime"); - case SOAP_TYPE_PointerTo_tds__SetSystemDateAndTime: - return soap_out_PointerTo_tds__SetSystemDateAndTime(soap, tag, id, (_tds__SetSystemDateAndTime *const*)ptr, "tds:SetSystemDateAndTime"); - case SOAP_TYPE_PointerTo_tds__GetDeviceInformation: - return soap_out_PointerTo_tds__GetDeviceInformation(soap, tag, id, (_tds__GetDeviceInformation *const*)ptr, "tds:GetDeviceInformation"); - case SOAP_TYPE_PointerTo_tds__GetServiceCapabilities: - return soap_out_PointerTo_tds__GetServiceCapabilities(soap, tag, id, (_tds__GetServiceCapabilities *const*)ptr, "tds:GetServiceCapabilities"); - case SOAP_TYPE_PointerTo_tds__GetServices: - return soap_out_PointerTo_tds__GetServices(soap, tag, id, (_tds__GetServices *const*)ptr, "tds:GetServices"); - case SOAP_TYPE_PointerTowsnt__UnacceptableTerminationTimeFaultType: - return soap_out_PointerTowsnt__UnacceptableTerminationTimeFaultType(soap, tag, id, (wsnt__UnacceptableTerminationTimeFaultType *const*)ptr, "wsnt:UnacceptableTerminationTimeFaultType"); - case SOAP_TYPE_PointerTowsnt__UnableToDestroySubscriptionFaultType: - return soap_out_PointerTowsnt__UnableToDestroySubscriptionFaultType(soap, tag, id, (wsnt__UnableToDestroySubscriptionFaultType *const*)ptr, "wsnt:UnableToDestroySubscriptionFaultType"); - case SOAP_TYPE_PointerTowsnt__ResumeFailedFaultType: - return soap_out_PointerTowsnt__ResumeFailedFaultType(soap, tag, id, (wsnt__ResumeFailedFaultType *const*)ptr, "wsnt:ResumeFailedFaultType"); - case SOAP_TYPE_PointerTowsnt__PauseFailedFaultType: - return soap_out_PointerTowsnt__PauseFailedFaultType(soap, tag, id, (wsnt__PauseFailedFaultType *const*)ptr, "wsnt:PauseFailedFaultType"); - case SOAP_TYPE_PointerTo_tev__PullMessagesFaultResponse: - return soap_out_PointerTo_tev__PullMessagesFaultResponse(soap, tag, id, (_tev__PullMessagesFaultResponse *const*)ptr, "tev:PullMessagesFaultResponse"); - case SOAP_TYPE_PointerTowsnt__UnableToGetMessagesFaultType: - return soap_out_PointerTowsnt__UnableToGetMessagesFaultType(soap, tag, id, (wsnt__UnableToGetMessagesFaultType *const*)ptr, "wsnt:UnableToGetMessagesFaultType"); - case SOAP_TYPE_PointerTowsnt__UnableToDestroyPullPointFaultType: - return soap_out_PointerTowsnt__UnableToDestroyPullPointFaultType(soap, tag, id, (wsnt__UnableToDestroyPullPointFaultType *const*)ptr, "wsnt:UnableToDestroyPullPointFaultType"); - case SOAP_TYPE_PointerTowsnt__NoCurrentMessageOnTopicFaultType: - return soap_out_PointerTowsnt__NoCurrentMessageOnTopicFaultType(soap, tag, id, (wsnt__NoCurrentMessageOnTopicFaultType *const*)ptr, "wsnt:NoCurrentMessageOnTopicFaultType"); - case SOAP_TYPE_PointerTowsnt__MultipleTopicsSpecifiedFaultType: - return soap_out_PointerTowsnt__MultipleTopicsSpecifiedFaultType(soap, tag, id, (wsnt__MultipleTopicsSpecifiedFaultType *const*)ptr, "wsnt:MultipleTopicsSpecifiedFaultType"); - case SOAP_TYPE_PointerTowsnt__UnsupportedPolicyRequestFaultType: - return soap_out_PointerTowsnt__UnsupportedPolicyRequestFaultType(soap, tag, id, (wsnt__UnsupportedPolicyRequestFaultType *const*)ptr, "wsnt:UnsupportedPolicyRequestFaultType"); - case SOAP_TYPE_PointerTowsnt__UnrecognizedPolicyRequestFaultType: - return soap_out_PointerTowsnt__UnrecognizedPolicyRequestFaultType(soap, tag, id, (wsnt__UnrecognizedPolicyRequestFaultType *const*)ptr, "wsnt:UnrecognizedPolicyRequestFaultType"); - case SOAP_TYPE_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType: - return soap_out_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag, id, (wsnt__UnacceptableInitialTerminationTimeFaultType *const*)ptr, "wsnt:UnacceptableInitialTerminationTimeFaultType"); - case SOAP_TYPE_PointerTowsnt__TopicNotSupportedFaultType: - return soap_out_PointerTowsnt__TopicNotSupportedFaultType(soap, tag, id, (wsnt__TopicNotSupportedFaultType *const*)ptr, "wsnt:TopicNotSupportedFaultType"); - case SOAP_TYPE_PointerTowsnt__TopicExpressionDialectUnknownFaultType: - return soap_out_PointerTowsnt__TopicExpressionDialectUnknownFaultType(soap, tag, id, (wsnt__TopicExpressionDialectUnknownFaultType *const*)ptr, "wsnt:TopicExpressionDialectUnknownFaultType"); - case SOAP_TYPE_PointerTowsnt__SubscribeCreationFailedFaultType: - return soap_out_PointerTowsnt__SubscribeCreationFailedFaultType(soap, tag, id, (wsnt__SubscribeCreationFailedFaultType *const*)ptr, "wsnt:SubscribeCreationFailedFaultType"); - case SOAP_TYPE_PointerTowsrfr__ResourceUnknownFaultType: - return soap_out_PointerTowsrfr__ResourceUnknownFaultType(soap, tag, id, (wsrfr__ResourceUnknownFaultType *const*)ptr, "wsrfr:ResourceUnknownFaultType"); - case SOAP_TYPE_PointerTowsnt__NotifyMessageNotSupportedFaultType: - return soap_out_PointerTowsnt__NotifyMessageNotSupportedFaultType(soap, tag, id, (wsnt__NotifyMessageNotSupportedFaultType *const*)ptr, "wsnt:NotifyMessageNotSupportedFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidTopicExpressionFaultType: - return soap_out_PointerTowsnt__InvalidTopicExpressionFaultType(soap, tag, id, (wsnt__InvalidTopicExpressionFaultType *const*)ptr, "wsnt:InvalidTopicExpressionFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType: - return soap_out_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag, id, (wsnt__InvalidProducerPropertiesExpressionFaultType *const*)ptr, "wsnt:InvalidProducerPropertiesExpressionFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidMessageContentExpressionFaultType: - return soap_out_PointerTowsnt__InvalidMessageContentExpressionFaultType(soap, tag, id, (wsnt__InvalidMessageContentExpressionFaultType *const*)ptr, "wsnt:InvalidMessageContentExpressionFaultType"); - case SOAP_TYPE_PointerTowsnt__InvalidFilterFaultType: - return soap_out_PointerTowsnt__InvalidFilterFaultType(soap, tag, id, (wsnt__InvalidFilterFaultType *const*)ptr, "wsnt:InvalidFilterFaultType"); - case SOAP_TYPE_PointerTowsnt__UnableToCreatePullPointFaultType: - return soap_out_PointerTowsnt__UnableToCreatePullPointFaultType(soap, tag, id, (wsnt__UnableToCreatePullPointFaultType *const*)ptr, "wsnt:UnableToCreatePullPointFaultType"); - case SOAP_TYPE_PointerToxsd__NCName: - return soap_out_PointerToxsd__NCName(soap, tag, id, (std::string *const*)ptr, "xsd:NCName"); - case SOAP_TYPE_PointerTowstop__ConcreteTopicExpression: - return soap_out_PointerTowstop__ConcreteTopicExpression(soap, tag, id, (std::string *const*)ptr, "wstop:ConcreteTopicExpression"); - case SOAP_TYPE_PointerToxsd__QName: - return soap_out_PointerToxsd__QName(soap, tag, id, (std::string *const*)ptr, "xsd:QName"); - case SOAP_TYPE_PointerTowstop__TopicType: - return soap_out_PointerTowstop__TopicType(soap, tag, id, (wstop__TopicType *const*)ptr, "wstop:TopicType"); - case SOAP_TYPE_PointerTowstop__QueryExpressionType: - return soap_out_PointerTowstop__QueryExpressionType(soap, tag, id, (wstop__QueryExpressionType *const*)ptr, "wstop:QueryExpressionType"); - case SOAP_TYPE_PointerTott__OSDConfigurationExtension: - return soap_out_PointerTott__OSDConfigurationExtension(soap, tag, id, (tt__OSDConfigurationExtension *const*)ptr, "tt:OSDConfigurationExtension"); - case SOAP_TYPE_PointerTott__OSDImgConfiguration: - return soap_out_PointerTott__OSDImgConfiguration(soap, tag, id, (tt__OSDImgConfiguration *const*)ptr, "tt:OSDImgConfiguration"); - case SOAP_TYPE_PointerTott__OSDTextConfiguration: - return soap_out_PointerTott__OSDTextConfiguration(soap, tag, id, (tt__OSDTextConfiguration *const*)ptr, "tt:OSDTextConfiguration"); - case SOAP_TYPE_PointerTott__OSDPosConfiguration: - return soap_out_PointerTott__OSDPosConfiguration(soap, tag, id, (tt__OSDPosConfiguration *const*)ptr, "tt:OSDPosConfiguration"); - case SOAP_TYPE_PointerTott__OSDReference: - return soap_out_PointerTott__OSDReference(soap, tag, id, (tt__OSDReference *const*)ptr, "tt:OSDReference"); - case SOAP_TYPE_PointerTott__MetadataInput: - return soap_out_PointerTott__MetadataInput(soap, tag, id, (tt__MetadataInput *const*)ptr, "tt:MetadataInput"); - case SOAP_TYPE_PointerTott__SourceIdentification: - return soap_out_PointerTott__SourceIdentification(soap, tag, id, (tt__SourceIdentification *const*)ptr, "tt:SourceIdentification"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfiguration: - return soap_out_PointerTott__AnalyticsDeviceEngineConfiguration(soap, tag, id, (tt__AnalyticsDeviceEngineConfiguration *const*)ptr, "tt:AnalyticsDeviceEngineConfiguration"); - case SOAP_TYPE_PointerTott__PTZConfigurationExtension: - return soap_out_PointerTott__PTZConfigurationExtension(soap, tag, id, (tt__PTZConfigurationExtension *const*)ptr, "tt:PTZConfigurationExtension"); - case SOAP_TYPE_PointerTott__ZoomLimits: - return soap_out_PointerTott__ZoomLimits(soap, tag, id, (tt__ZoomLimits *const*)ptr, "tt:ZoomLimits"); - case SOAP_TYPE_PointerTott__PanTiltLimits: - return soap_out_PointerTott__PanTiltLimits(soap, tag, id, (tt__PanTiltLimits *const*)ptr, "tt:PanTiltLimits"); - case SOAP_TYPE_PointerTott__PTZNodeExtension: - return soap_out_PointerTott__PTZNodeExtension(soap, tag, id, (tt__PTZNodeExtension *const*)ptr, "tt:PTZNodeExtension"); - case SOAP_TYPE_PointerTott__DigitalIdleState: - return soap_out_PointerTott__DigitalIdleState(soap, tag, id, (enum tt__DigitalIdleState *const*)ptr, "tt:DigitalIdleState"); - case SOAP_TYPE_PointerTott__NetworkInterfaceExtension: - return soap_out_PointerTott__NetworkInterfaceExtension(soap, tag, id, (tt__NetworkInterfaceExtension *const*)ptr, "tt:NetworkInterfaceExtension"); - case SOAP_TYPE_PointerTott__IPv6NetworkInterface: - return soap_out_PointerTott__IPv6NetworkInterface(soap, tag, id, (tt__IPv6NetworkInterface *const*)ptr, "tt:IPv6NetworkInterface"); - case SOAP_TYPE_PointerTott__IPv4NetworkInterface: - return soap_out_PointerTott__IPv4NetworkInterface(soap, tag, id, (tt__IPv4NetworkInterface *const*)ptr, "tt:IPv4NetworkInterface"); - case SOAP_TYPE_PointerTott__NetworkInterfaceLink: - return soap_out_PointerTott__NetworkInterfaceLink(soap, tag, id, (tt__NetworkInterfaceLink *const*)ptr, "tt:NetworkInterfaceLink"); - case SOAP_TYPE_PointerTott__NetworkInterfaceInfo: - return soap_out_PointerTott__NetworkInterfaceInfo(soap, tag, id, (tt__NetworkInterfaceInfo *const*)ptr, "tt:NetworkInterfaceInfo"); - case SOAP_TYPE_PointerTott__VideoOutputExtension: - return soap_out_PointerTott__VideoOutputExtension(soap, tag, id, (tt__VideoOutputExtension *const*)ptr, "tt:VideoOutputExtension"); - case SOAP_TYPE_PointerTott__MetadataConfigurationExtension: - return soap_out_PointerTott__MetadataConfigurationExtension(soap, tag, id, (tt__MetadataConfigurationExtension *const*)ptr, "tt:MetadataConfigurationExtension"); - case SOAP_TYPE_PointerTott__EventSubscription: - return soap_out_PointerTott__EventSubscription(soap, tag, id, (tt__EventSubscription *const*)ptr, "tt:EventSubscription"); - case SOAP_TYPE_PointerTott__PTZFilter: - return soap_out_PointerTott__PTZFilter(soap, tag, id, (tt__PTZFilter *const*)ptr, "tt:PTZFilter"); - case SOAP_TYPE_PointerTott__RuleEngineConfiguration: - return soap_out_PointerTott__RuleEngineConfiguration(soap, tag, id, (tt__RuleEngineConfiguration *const*)ptr, "tt:RuleEngineConfiguration"); - case SOAP_TYPE_PointerTott__AnalyticsEngineConfiguration: - return soap_out_PointerTott__AnalyticsEngineConfiguration(soap, tag, id, (tt__AnalyticsEngineConfiguration *const*)ptr, "tt:AnalyticsEngineConfiguration"); - case SOAP_TYPE_PointerTott__VideoRateControl2: - return soap_out_PointerTott__VideoRateControl2(soap, tag, id, (tt__VideoRateControl2 *const*)ptr, "tt:VideoRateControl2"); - case SOAP_TYPE_PointerTott__MulticastConfiguration: - return soap_out_PointerTott__MulticastConfiguration(soap, tag, id, (tt__MulticastConfiguration *const*)ptr, "tt:MulticastConfiguration"); - case SOAP_TYPE_PointerTott__H264Configuration: - return soap_out_PointerTott__H264Configuration(soap, tag, id, (tt__H264Configuration *const*)ptr, "tt:H264Configuration"); - case SOAP_TYPE_PointerTott__Mpeg4Configuration: - return soap_out_PointerTott__Mpeg4Configuration(soap, tag, id, (tt__Mpeg4Configuration *const*)ptr, "tt:Mpeg4Configuration"); - case SOAP_TYPE_PointerTott__VideoRateControl: - return soap_out_PointerTott__VideoRateControl(soap, tag, id, (tt__VideoRateControl *const*)ptr, "tt:VideoRateControl"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension: - return soap_out_PointerTott__VideoSourceConfigurationExtension(soap, tag, id, (tt__VideoSourceConfigurationExtension *const*)ptr, "tt:VideoSourceConfigurationExtension"); - case SOAP_TYPE_PointerTott__IntRectangle: - return soap_out_PointerTott__IntRectangle(soap, tag, id, (tt__IntRectangle *const*)ptr, "tt:IntRectangle"); - case SOAP_TYPE_PointerTott__VideoSourceExtension: - return soap_out_PointerTott__VideoSourceExtension(soap, tag, id, (tt__VideoSourceExtension *const*)ptr, "tt:VideoSourceExtension"); - case SOAP_TYPE_PointerTott__ImagingSettings: - return soap_out_PointerTott__ImagingSettings(soap, tag, id, (tt__ImagingSettings *const*)ptr, "tt:ImagingSettings"); - case SOAP_TYPE_PointerTowstop__Documentation: - return soap_out_PointerTowstop__Documentation(soap, tag, id, (wstop__Documentation *const*)ptr, "wstop:Documentation"); - case SOAP_TYPE_PointerTott__FindMetadataResultList: - return soap_out_PointerTott__FindMetadataResultList(soap, tag, id, (tt__FindMetadataResultList *const*)ptr, "tt:FindMetadataResultList"); - case SOAP_TYPE_PointerTott__MetadataFilter: - return soap_out_PointerTott__MetadataFilter(soap, tag, id, (tt__MetadataFilter *const*)ptr, "tt:MetadataFilter"); - case SOAP_TYPE_PointerTott__FindPTZPositionResultList: - return soap_out_PointerTott__FindPTZPositionResultList(soap, tag, id, (tt__FindPTZPositionResultList *const*)ptr, "tt:FindPTZPositionResultList"); - case SOAP_TYPE_PointerTott__PTZPositionFilter: - return soap_out_PointerTott__PTZPositionFilter(soap, tag, id, (tt__PTZPositionFilter *const*)ptr, "tt:PTZPositionFilter"); - case SOAP_TYPE_PointerTott__FindEventResultList: - return soap_out_PointerTott__FindEventResultList(soap, tag, id, (tt__FindEventResultList *const*)ptr, "tt:FindEventResultList"); - case SOAP_TYPE_PointerTott__EventFilter: - return soap_out_PointerTott__EventFilter(soap, tag, id, (tt__EventFilter *const*)ptr, "tt:EventFilter"); - case SOAP_TYPE_PointerTott__FindRecordingResultList: - return soap_out_PointerTott__FindRecordingResultList(soap, tag, id, (tt__FindRecordingResultList *const*)ptr, "tt:FindRecordingResultList"); - case SOAP_TYPE_PointerTott__MediaAttributes: - return soap_out_PointerTott__MediaAttributes(soap, tag, id, (tt__MediaAttributes *const*)ptr, "tt:MediaAttributes"); - case SOAP_TYPE_PointerTott__RecordingSummary: - return soap_out_PointerTott__RecordingSummary(soap, tag, id, (tt__RecordingSummary *const*)ptr, "tt:RecordingSummary"); - case SOAP_TYPE_PointerTotse__Capabilities: - return soap_out_PointerTotse__Capabilities(soap, tag, id, (tse__Capabilities *const*)ptr, "tse:Capabilities"); - case SOAP_TYPE_PointerTott__ReplayConfiguration: - return soap_out_PointerTott__ReplayConfiguration(soap, tag, id, (tt__ReplayConfiguration *const*)ptr, "tt:ReplayConfiguration"); - case SOAP_TYPE_PointerTotrp__Capabilities: - return soap_out_PointerTotrp__Capabilities(soap, tag, id, (trp__Capabilities *const*)ptr, "trp:Capabilities"); - case SOAP_TYPE_PointerTott__ArrayOfFileProgress: - return soap_out_PointerTott__ArrayOfFileProgress(soap, tag, id, (tt__ArrayOfFileProgress *const*)ptr, "tt:ArrayOfFileProgress"); - case SOAP_TYPE_PointerTo_trc__ExportRecordedDataResponse_Extension: - return soap_out_PointerTo_trc__ExportRecordedDataResponse_Extension(soap, tag, id, (_trc__ExportRecordedDataResponse_Extension *const*)ptr, "trc:ExportRecordedDataResponse-Extension"); - case SOAP_TYPE_PointerTott__StorageReferencePath: - return soap_out_PointerTott__StorageReferencePath(soap, tag, id, (tt__StorageReferencePath *const*)ptr, "tt:StorageReferencePath"); - case SOAP_TYPE_PointerTott__SearchScope: - return soap_out_PointerTott__SearchScope(soap, tag, id, (tt__SearchScope *const*)ptr, "tt:SearchScope"); - case SOAP_TYPE_PointerTotrc__RecordingOptions: - return soap_out_PointerTotrc__RecordingOptions(soap, tag, id, (trc__RecordingOptions *const*)ptr, "trc:RecordingOptions"); - case SOAP_TYPE_PointerTott__RecordingJobStateInformation: - return soap_out_PointerTott__RecordingJobStateInformation(soap, tag, id, (tt__RecordingJobStateInformation *const*)ptr, "tt:RecordingJobStateInformation"); - case SOAP_TYPE_PointerTott__GetRecordingJobsResponseItem: - return soap_out_PointerTott__GetRecordingJobsResponseItem(soap, tag, id, (tt__GetRecordingJobsResponseItem *const*)ptr, "tt:GetRecordingJobsResponseItem"); - case SOAP_TYPE_PointerTott__GetRecordingsResponseItem: - return soap_out_PointerTott__GetRecordingsResponseItem(soap, tag, id, (tt__GetRecordingsResponseItem *const*)ptr, "tt:GetRecordingsResponseItem"); - case SOAP_TYPE_PointerTotrc__Capabilities: - return soap_out_PointerTotrc__Capabilities(soap, tag, id, (trc__Capabilities *const*)ptr, "trc:Capabilities"); - case SOAP_TYPE_PointerTotrc__TrackOptions: - return soap_out_PointerTotrc__TrackOptions(soap, tag, id, (trc__TrackOptions *const*)ptr, "trc:TrackOptions"); - case SOAP_TYPE_PointerTotrc__JobOptions: - return soap_out_PointerTotrc__JobOptions(soap, tag, id, (trc__JobOptions *const*)ptr, "trc:JobOptions"); - case SOAP_TYPE_PointerTotrc__EncodingTypes: - return soap_out_PointerTotrc__EncodingTypes(soap, tag, id, (std::string *const*)ptr, "trc:EncodingTypes"); - case SOAP_TYPE_PointerTott__ReceiverStateInformation: - return soap_out_PointerTott__ReceiverStateInformation(soap, tag, id, (tt__ReceiverStateInformation *const*)ptr, "tt:ReceiverStateInformation"); - case SOAP_TYPE_PointerTott__Receiver: - return soap_out_PointerTott__Receiver(soap, tag, id, (tt__Receiver *const*)ptr, "tt:Receiver"); - case SOAP_TYPE_PointerTotrv__Capabilities: - return soap_out_PointerTotrv__Capabilities(soap, tag, id, (trv__Capabilities *const*)ptr, "trv:Capabilities"); - case SOAP_TYPE_PointerTott__PTZPresetTourOptions: - return soap_out_PointerTott__PTZPresetTourOptions(soap, tag, id, (tt__PTZPresetTourOptions *const*)ptr, "tt:PTZPresetTourOptions"); - case SOAP_TYPE_PointerTott__PresetTour: - return soap_out_PointerTott__PresetTour(soap, tag, id, (tt__PresetTour *const*)ptr, "tt:PresetTour"); - case SOAP_TYPE_PointerTott__PTZStatus: - return soap_out_PointerTott__PTZStatus(soap, tag, id, (tt__PTZStatus *const*)ptr, "tt:PTZStatus"); - case SOAP_TYPE_PointerTott__PTZPreset: - return soap_out_PointerTott__PTZPreset(soap, tag, id, (tt__PTZPreset *const*)ptr, "tt:PTZPreset"); - case SOAP_TYPE_PointerTott__PTZConfigurationOptions: - return soap_out_PointerTott__PTZConfigurationOptions(soap, tag, id, (tt__PTZConfigurationOptions *const*)ptr, "tt:PTZConfigurationOptions"); - case SOAP_TYPE_PointerTott__PTZNode: - return soap_out_PointerTott__PTZNode(soap, tag, id, (tt__PTZNode *const*)ptr, "tt:PTZNode"); - case SOAP_TYPE_PointerTotptz__Capabilities: - return soap_out_PointerTotptz__Capabilities(soap, tag, id, (tptz__Capabilities *const*)ptr, "tptz:Capabilities"); - case SOAP_TYPE_PointerTott__OSDConfigurationOptions: - return soap_out_PointerTott__OSDConfigurationOptions(soap, tag, id, (tt__OSDConfigurationOptions *const*)ptr, "tt:OSDConfigurationOptions"); - case SOAP_TYPE_PointerTott__OSDConfiguration: - return soap_out_PointerTott__OSDConfiguration(soap, tag, id, (tt__OSDConfiguration *const*)ptr, "tt:OSDConfiguration"); - case SOAP_TYPE_PointerTotrt__VideoSourceMode: - return soap_out_PointerTotrt__VideoSourceMode(soap, tag, id, (trt__VideoSourceMode *const*)ptr, "trt:VideoSourceMode"); - case SOAP_TYPE_PointerTott__MediaUri: - return soap_out_PointerTott__MediaUri(soap, tag, id, (tt__MediaUri *const*)ptr, "tt:MediaUri"); - case SOAP_TYPE_PointerTott__MetadataConfigurationOptions: - return soap_out_PointerTott__MetadataConfigurationOptions(soap, tag, id, (tt__MetadataConfigurationOptions *const*)ptr, "tt:MetadataConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoEncoderConfigurationOptions: - return soap_out_PointerTott__VideoEncoderConfigurationOptions(soap, tag, id, (tt__VideoEncoderConfigurationOptions *const*)ptr, "tt:VideoEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__Profile: - return soap_out_PointerTott__Profile(soap, tag, id, (tt__Profile *const*)ptr, "tt:Profile"); - case SOAP_TYPE_PointerTott__AudioOutput: - return soap_out_PointerTott__AudioOutput(soap, tag, id, (tt__AudioOutput *const*)ptr, "tt:AudioOutput"); - case SOAP_TYPE_PointerTott__AudioSource: - return soap_out_PointerTott__AudioSource(soap, tag, id, (tt__AudioSource *const*)ptr, "tt:AudioSource"); - case SOAP_TYPE_PointerTott__VideoSource: - return soap_out_PointerTott__VideoSource(soap, tag, id, (tt__VideoSource *const*)ptr, "tt:VideoSource"); - case SOAP_TYPE_PointerTotrt__Capabilities: - return soap_out_PointerTotrt__Capabilities(soap, tag, id, (trt__Capabilities *const*)ptr, "trt:Capabilities"); - case SOAP_TYPE_PointerTotrt__VideoSourceModeExtension: - return soap_out_PointerTotrt__VideoSourceModeExtension(soap, tag, id, (trt__VideoSourceModeExtension *const*)ptr, "trt:VideoSourceModeExtension"); - case SOAP_TYPE_PointerTott__Description: - return soap_out_PointerTott__Description(soap, tag, id, (std::string *const*)ptr, "tt:Description"); - case SOAP_TYPE_PointerTotrt__StreamingCapabilities: - return soap_out_PointerTotrt__StreamingCapabilities(soap, tag, id, (trt__StreamingCapabilities *const*)ptr, "trt:StreamingCapabilities"); - case SOAP_TYPE_PointerTotrt__ProfileCapabilities: - return soap_out_PointerTotrt__ProfileCapabilities(soap, tag, id, (trt__ProfileCapabilities *const*)ptr, "trt:ProfileCapabilities"); - case SOAP_TYPE_PointerTotimg__ImagingPreset: - return soap_out_PointerTotimg__ImagingPreset(soap, tag, id, (timg__ImagingPreset *const*)ptr, "timg:ImagingPreset"); - case SOAP_TYPE_PointerTott__ImagingStatus20: - return soap_out_PointerTott__ImagingStatus20(soap, tag, id, (tt__ImagingStatus20 *const*)ptr, "tt:ImagingStatus20"); - case SOAP_TYPE_PointerTott__MoveOptions20: - return soap_out_PointerTott__MoveOptions20(soap, tag, id, (tt__MoveOptions20 *const*)ptr, "tt:MoveOptions20"); - case SOAP_TYPE_PointerTott__FocusMove: - return soap_out_PointerTott__FocusMove(soap, tag, id, (tt__FocusMove *const*)ptr, "tt:FocusMove"); - case SOAP_TYPE_PointerTott__ImagingOptions20: - return soap_out_PointerTott__ImagingOptions20(soap, tag, id, (tt__ImagingOptions20 *const*)ptr, "tt:ImagingOptions20"); - case SOAP_TYPE_PointerTotimg__Capabilities: - return soap_out_PointerTotimg__Capabilities(soap, tag, id, (timg__Capabilities *const*)ptr, "timg:Capabilities"); - case SOAP_TYPE_PointerTott__PaneConfiguration: - return soap_out_PointerTott__PaneConfiguration(soap, tag, id, (tt__PaneConfiguration *const*)ptr, "tt:PaneConfiguration"); - case SOAP_TYPE_PointerTott__CodingCapabilities: - return soap_out_PointerTott__CodingCapabilities(soap, tag, id, (tt__CodingCapabilities *const*)ptr, "tt:CodingCapabilities"); - case SOAP_TYPE_PointerTott__LayoutOptions: - return soap_out_PointerTott__LayoutOptions(soap, tag, id, (tt__LayoutOptions *const*)ptr, "tt:LayoutOptions"); - case SOAP_TYPE_PointerTott__Layout: - return soap_out_PointerTott__Layout(soap, tag, id, (tt__Layout *const*)ptr, "tt:Layout"); - case SOAP_TYPE_PointerTotls__Capabilities: - return soap_out_PointerTotls__Capabilities(soap, tag, id, (tls__Capabilities *const*)ptr, "tls:Capabilities"); - case SOAP_TYPE_PointerTott__LocationEntity: - return soap_out_PointerTott__LocationEntity(soap, tag, id, (tt__LocationEntity *const*)ptr, "tt:LocationEntity"); - case SOAP_TYPE_PointerTotds__StorageConfigurationData: - return soap_out_PointerTotds__StorageConfigurationData(soap, tag, id, (tds__StorageConfigurationData *const*)ptr, "tds:StorageConfigurationData"); - case SOAP_TYPE_PointerTotds__StorageConfiguration: - return soap_out_PointerTotds__StorageConfiguration(soap, tag, id, (tds__StorageConfiguration *const*)ptr, "tds:StorageConfiguration"); - case SOAP_TYPE_PointerTo_tds__GetSystemUrisResponse_Extension: - return soap_out_PointerTo_tds__GetSystemUrisResponse_Extension(soap, tag, id, (_tds__GetSystemUrisResponse_Extension *const*)ptr, "tds:GetSystemUrisResponse-Extension"); - case SOAP_TYPE_PointerTott__SystemLogUriList: - return soap_out_PointerTott__SystemLogUriList(soap, tag, id, (tt__SystemLogUriList *const*)ptr, "tt:SystemLogUriList"); - case SOAP_TYPE_PointerTott__Dot11AvailableNetworks: - return soap_out_PointerTott__Dot11AvailableNetworks(soap, tag, id, (tt__Dot11AvailableNetworks *const*)ptr, "tt:Dot11AvailableNetworks"); - case SOAP_TYPE_PointerTott__Dot11Status: - return soap_out_PointerTott__Dot11Status(soap, tag, id, (tt__Dot11Status *const*)ptr, "tt:Dot11Status"); - case SOAP_TYPE_PointerTott__Dot11Capabilities: - return soap_out_PointerTott__Dot11Capabilities(soap, tag, id, (tt__Dot11Capabilities *const*)ptr, "tt:Dot11Capabilities"); - case SOAP_TYPE_PointerTott__AuxiliaryData: - return soap_out_PointerTott__AuxiliaryData(soap, tag, id, (std::string *const*)ptr, "tt:AuxiliaryData"); - case SOAP_TYPE_PointerTott__RelayOutputSettings: - return soap_out_PointerTott__RelayOutputSettings(soap, tag, id, (tt__RelayOutputSettings *const*)ptr, "tt:RelayOutputSettings"); - case SOAP_TYPE_PointerTott__Dot1XConfiguration: - return soap_out_PointerTott__Dot1XConfiguration(soap, tag, id, (tt__Dot1XConfiguration *const*)ptr, "tt:Dot1XConfiguration"); - case SOAP_TYPE_PointerTott__CertificateInformation: - return soap_out_PointerTott__CertificateInformation(soap, tag, id, (tt__CertificateInformation *const*)ptr, "tt:CertificateInformation"); - case SOAP_TYPE_PointerTott__CertificateWithPrivateKey: - return soap_out_PointerTott__CertificateWithPrivateKey(soap, tag, id, (tt__CertificateWithPrivateKey *const*)ptr, "tt:CertificateWithPrivateKey"); - case SOAP_TYPE_PointerTott__CertificateStatus: - return soap_out_PointerTott__CertificateStatus(soap, tag, id, (tt__CertificateStatus *const*)ptr, "tt:CertificateStatus"); - case SOAP_TYPE_PointerTott__Certificate: - return soap_out_PointerTott__Certificate(soap, tag, id, (tt__Certificate *const*)ptr, "tt:Certificate"); - case SOAP_TYPE_PointerTott__IPAddressFilter: - return soap_out_PointerTott__IPAddressFilter(soap, tag, id, (tt__IPAddressFilter *const*)ptr, "tt:IPAddressFilter"); - case SOAP_TYPE_PointerTott__NetworkGateway: - return soap_out_PointerTott__NetworkGateway(soap, tag, id, (tt__NetworkGateway *const*)ptr, "tt:NetworkGateway"); - case SOAP_TYPE_PointerTott__NetworkProtocol: - return soap_out_PointerTott__NetworkProtocol(soap, tag, id, (tt__NetworkProtocol *const*)ptr, "tt:NetworkProtocol"); - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfiguration: - return soap_out_PointerTott__NetworkInterfaceSetConfiguration(soap, tag, id, (tt__NetworkInterfaceSetConfiguration *const*)ptr, "tt:NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_PointerTott__NetworkInterface: - return soap_out_PointerTott__NetworkInterface(soap, tag, id, (tt__NetworkInterface *const*)ptr, "tt:NetworkInterface"); - case SOAP_TYPE_PointerTott__DynamicDNSInformation: - return soap_out_PointerTott__DynamicDNSInformation(soap, tag, id, (tt__DynamicDNSInformation *const*)ptr, "tt:DynamicDNSInformation"); - case SOAP_TYPE_PointerTott__NTPInformation: - return soap_out_PointerTott__NTPInformation(soap, tag, id, (tt__NTPInformation *const*)ptr, "tt:NTPInformation"); - case SOAP_TYPE_PointerTott__DNSInformation: - return soap_out_PointerTott__DNSInformation(soap, tag, id, (tt__DNSInformation *const*)ptr, "tt:DNSInformation"); - case SOAP_TYPE_PointerTott__HostnameInformation: - return soap_out_PointerTott__HostnameInformation(soap, tag, id, (tt__HostnameInformation *const*)ptr, "tt:HostnameInformation"); - case SOAP_TYPE_PointerTott__Capabilities: - return soap_out_PointerTott__Capabilities(soap, tag, id, (tt__Capabilities *const*)ptr, "tt:Capabilities"); - case SOAP_TYPE_PointerTott__User: - return soap_out_PointerTott__User(soap, tag, id, (tt__User *const*)ptr, "tt:User"); - case SOAP_TYPE_PointerTott__RemoteUser: - return soap_out_PointerTott__RemoteUser(soap, tag, id, (tt__RemoteUser *const*)ptr, "tt:RemoteUser"); - case SOAP_TYPE_PointerTott__Scope: - return soap_out_PointerTott__Scope(soap, tag, id, (tt__Scope *const*)ptr, "tt:Scope"); - case SOAP_TYPE_PointerTott__SystemLog: - return soap_out_PointerTott__SystemLog(soap, tag, id, (tt__SystemLog *const*)ptr, "tt:SystemLog"); - case SOAP_TYPE_PointerTott__SupportInformation: - return soap_out_PointerTott__SupportInformation(soap, tag, id, (tt__SupportInformation *const*)ptr, "tt:SupportInformation"); - case SOAP_TYPE_PointerTott__BackupFile: - return soap_out_PointerTott__BackupFile(soap, tag, id, (tt__BackupFile *const*)ptr, "tt:BackupFile"); - case SOAP_TYPE_PointerTott__SystemDateTime: - return soap_out_PointerTott__SystemDateTime(soap, tag, id, (tt__SystemDateTime *const*)ptr, "tt:SystemDateTime"); - case SOAP_TYPE_PointerTotds__DeviceServiceCapabilities: - return soap_out_PointerTotds__DeviceServiceCapabilities(soap, tag, id, (tds__DeviceServiceCapabilities *const*)ptr, "tds:DeviceServiceCapabilities"); - case SOAP_TYPE_PointerTotds__Service: - return soap_out_PointerTotds__Service(soap, tag, id, (tds__Service *const*)ptr, "tds:Service"); - case SOAP_TYPE_PointerTo_tds__StorageConfigurationData_Extension: - return soap_out_PointerTo_tds__StorageConfigurationData_Extension(soap, tag, id, (_tds__StorageConfigurationData_Extension *const*)ptr, "tds:StorageConfigurationData-Extension"); - case SOAP_TYPE_PointerTotds__UserCredential: - return soap_out_PointerTotds__UserCredential(soap, tag, id, (tds__UserCredential *const*)ptr, "tds:UserCredential"); - case SOAP_TYPE_PointerTo_tds__UserCredential_Extension: - return soap_out_PointerTo_tds__UserCredential_Extension(soap, tag, id, (_tds__UserCredential_Extension *const*)ptr, "tds:UserCredential-Extension"); - case SOAP_TYPE_PointerTotds__EAPMethodTypes: - return soap_out_PointerTotds__EAPMethodTypes(soap, tag, id, (std::string *const*)ptr, "tds:EAPMethodTypes"); - case SOAP_TYPE_PointerTotds__MiscCapabilities: - return soap_out_PointerTotds__MiscCapabilities(soap, tag, id, (tds__MiscCapabilities *const*)ptr, "tds:MiscCapabilities"); - case SOAP_TYPE_PointerTotds__SystemCapabilities: - return soap_out_PointerTotds__SystemCapabilities(soap, tag, id, (tds__SystemCapabilities *const*)ptr, "tds:SystemCapabilities"); - case SOAP_TYPE_PointerTotds__SecurityCapabilities: - return soap_out_PointerTotds__SecurityCapabilities(soap, tag, id, (tds__SecurityCapabilities *const*)ptr, "tds:SecurityCapabilities"); - case SOAP_TYPE_PointerTotds__NetworkCapabilities: - return soap_out_PointerTotds__NetworkCapabilities(soap, tag, id, (tds__NetworkCapabilities *const*)ptr, "tds:NetworkCapabilities"); - case SOAP_TYPE_PointerTo_tds__Service_Capabilities: - return soap_out_PointerTo_tds__Service_Capabilities(soap, tag, id, (_tds__Service_Capabilities *const*)ptr, "tds:Service-Capabilities"); - case SOAP_TYPE_PointerTotmd__SerialData: - return soap_out_PointerTotmd__SerialData(soap, tag, id, (tmd__SerialData *const*)ptr, "tmd:SerialData"); - case SOAP_TYPE_PointerTotmd__SerialPortConfigurationOptions: - return soap_out_PointerTotmd__SerialPortConfigurationOptions(soap, tag, id, (tmd__SerialPortConfigurationOptions *const*)ptr, "tmd:SerialPortConfigurationOptions"); - case SOAP_TYPE_PointerTotmd__SerialPortConfiguration: - return soap_out_PointerTotmd__SerialPortConfiguration(soap, tag, id, (tmd__SerialPortConfiguration *const*)ptr, "tmd:SerialPortConfiguration"); - case SOAP_TYPE_PointerTotmd__SerialPort: - return soap_out_PointerTotmd__SerialPort(soap, tag, id, (tmd__SerialPort *const*)ptr, "tmd:SerialPort"); - case SOAP_TYPE_PointerTotmd__DigitalInputConfigurationInputOptions: - return soap_out_PointerTotmd__DigitalInputConfigurationInputOptions(soap, tag, id, (tmd__DigitalInputConfigurationInputOptions *const*)ptr, "tmd:DigitalInputConfigurationInputOptions"); - case SOAP_TYPE_PointerTott__DigitalInput: - return soap_out_PointerTott__DigitalInput(soap, tag, id, (tt__DigitalInput *const*)ptr, "tt:DigitalInput"); - case SOAP_TYPE_PointerTott__RelayOutput: - return soap_out_PointerTott__RelayOutput(soap, tag, id, (tt__RelayOutput *const*)ptr, "tt:RelayOutput"); - case SOAP_TYPE_PointerTott__AudioOutputConfigurationOptions: - return soap_out_PointerTott__AudioOutputConfigurationOptions(soap, tag, id, (tt__AudioOutputConfigurationOptions *const*)ptr, "tt:AudioOutputConfigurationOptions"); - case SOAP_TYPE_PointerTott__AudioSourceConfigurationOptions: - return soap_out_PointerTott__AudioSourceConfigurationOptions(soap, tag, id, (tt__AudioSourceConfigurationOptions *const*)ptr, "tt:AudioSourceConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoOutputConfigurationOptions: - return soap_out_PointerTott__VideoOutputConfigurationOptions(soap, tag, id, (tt__VideoOutputConfigurationOptions *const*)ptr, "tt:VideoOutputConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptions: - return soap_out_PointerTott__VideoSourceConfigurationOptions(soap, tag, id, (tt__VideoSourceConfigurationOptions *const*)ptr, "tt:VideoSourceConfigurationOptions"); - case SOAP_TYPE_PointerTott__VideoOutputConfiguration: - return soap_out_PointerTott__VideoOutputConfiguration(soap, tag, id, (tt__VideoOutputConfiguration *const*)ptr, "tt:VideoOutputConfiguration"); - case SOAP_TYPE_PointerTott__VideoOutput: - return soap_out_PointerTott__VideoOutput(soap, tag, id, (tt__VideoOutput *const*)ptr, "tt:VideoOutput"); - case SOAP_TYPE_PointerTotmd__RelayOutputOptions: - return soap_out_PointerTotmd__RelayOutputOptions(soap, tag, id, (tmd__RelayOutputOptions *const*)ptr, "tmd:RelayOutputOptions"); - case SOAP_TYPE_PointerTotmd__Capabilities: - return soap_out_PointerTotmd__Capabilities(soap, tag, id, (tmd__Capabilities *const*)ptr, "tmd:Capabilities"); - case SOAP_TYPE_PointerToxsd__base64Binary: - return soap_out_PointerToxsd__base64Binary(soap, tag, id, (xsd__base64Binary *const*)ptr, "xsd:base64Binary"); - case SOAP_TYPE_PointerTotmd__RelayOutputOptionsExtension: - return soap_out_PointerTotmd__RelayOutputOptionsExtension(soap, tag, id, (tmd__RelayOutputOptionsExtension *const*)ptr, "tmd:RelayOutputOptionsExtension"); - case SOAP_TYPE_PointerTotmd__DelayTimes: - return soap_out_PointerTotmd__DelayTimes(soap, tag, id, (std::string *const*)ptr, "tmd:DelayTimes"); - case SOAP_TYPE_PointerTott__PropertyOperation: - return soap_out_PointerTott__PropertyOperation(soap, tag, id, (enum tt__PropertyOperation *const*)ptr, "tt:PropertyOperation"); - case SOAP_TYPE_PointerTott__MessageExtension: - return soap_out_PointerTott__MessageExtension(soap, tag, id, (tt__MessageExtension *const*)ptr, "tt:MessageExtension"); - case SOAP_TYPE_PointerTott__StorageReferencePathExtension: - return soap_out_PointerTott__StorageReferencePathExtension(soap, tag, id, (tt__StorageReferencePathExtension *const*)ptr, "tt:StorageReferencePathExtension"); - case SOAP_TYPE_PointerTott__ArrayOfFileProgressExtension: - return soap_out_PointerTott__ArrayOfFileProgressExtension(soap, tag, id, (tt__ArrayOfFileProgressExtension *const*)ptr, "tt:ArrayOfFileProgressExtension"); - case SOAP_TYPE_PointerTott__FileProgress: - return soap_out_PointerTott__FileProgress(soap, tag, id, (tt__FileProgress *const*)ptr, "tt:FileProgress"); - case SOAP_TYPE_PointerTott__OSDConfigurationOptionsExtension: - return soap_out_PointerTott__OSDConfigurationOptionsExtension(soap, tag, id, (tt__OSDConfigurationOptionsExtension *const*)ptr, "tt:OSDConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__OSDImgOptions: - return soap_out_PointerTott__OSDImgOptions(soap, tag, id, (tt__OSDImgOptions *const*)ptr, "tt:OSDImgOptions"); - case SOAP_TYPE_PointerTott__OSDTextOptions: - return soap_out_PointerTott__OSDTextOptions(soap, tag, id, (tt__OSDTextOptions *const*)ptr, "tt:OSDTextOptions"); - case SOAP_TYPE_PointerTott__MaximumNumberOfOSDs: - return soap_out_PointerTott__MaximumNumberOfOSDs(soap, tag, id, (tt__MaximumNumberOfOSDs *const*)ptr, "tt:MaximumNumberOfOSDs"); - case SOAP_TYPE_PointerTott__OSDImgOptionsExtension: - return soap_out_PointerTott__OSDImgOptionsExtension(soap, tag, id, (tt__OSDImgOptionsExtension *const*)ptr, "tt:OSDImgOptionsExtension"); - case SOAP_TYPE_PointerTott__OSDTextOptionsExtension: - return soap_out_PointerTott__OSDTextOptionsExtension(soap, tag, id, (tt__OSDTextOptionsExtension *const*)ptr, "tt:OSDTextOptionsExtension"); - case SOAP_TYPE_PointerTott__OSDColorOptions: - return soap_out_PointerTott__OSDColorOptions(soap, tag, id, (tt__OSDColorOptions *const*)ptr, "tt:OSDColorOptions"); - case SOAP_TYPE_PointerTott__OSDColorOptionsExtension: - return soap_out_PointerTott__OSDColorOptionsExtension(soap, tag, id, (tt__OSDColorOptionsExtension *const*)ptr, "tt:OSDColorOptionsExtension"); - case SOAP_TYPE_PointerTott__ColorOptions: - return soap_out_PointerTott__ColorOptions(soap, tag, id, (tt__ColorOptions *const*)ptr, "tt:ColorOptions"); - case SOAP_TYPE_PointerTott__ColorspaceRange: - return soap_out_PointerTott__ColorspaceRange(soap, tag, id, (tt__ColorspaceRange *const*)ptr, "tt:ColorspaceRange"); - case SOAP_TYPE_PointerTott__OSDImgConfigurationExtension: - return soap_out_PointerTott__OSDImgConfigurationExtension(soap, tag, id, (tt__OSDImgConfigurationExtension *const*)ptr, "tt:OSDImgConfigurationExtension"); - case SOAP_TYPE_PointerTott__OSDTextConfigurationExtension: - return soap_out_PointerTott__OSDTextConfigurationExtension(soap, tag, id, (tt__OSDTextConfigurationExtension *const*)ptr, "tt:OSDTextConfigurationExtension"); - case SOAP_TYPE_PointerTott__OSDColor: - return soap_out_PointerTott__OSDColor(soap, tag, id, (tt__OSDColor *const*)ptr, "tt:OSDColor"); - case SOAP_TYPE_PointerTott__OSDPosConfigurationExtension: - return soap_out_PointerTott__OSDPosConfigurationExtension(soap, tag, id, (tt__OSDPosConfigurationExtension *const*)ptr, "tt:OSDPosConfigurationExtension"); - case SOAP_TYPE_PointerTott__ProfileStatusExtension: - return soap_out_PointerTott__ProfileStatusExtension(soap, tag, id, (tt__ProfileStatusExtension *const*)ptr, "tt:ProfileStatusExtension"); - case SOAP_TYPE_PointerTott__ActiveConnection: - return soap_out_PointerTott__ActiveConnection(soap, tag, id, (tt__ActiveConnection *const*)ptr, "tt:ActiveConnection"); - case SOAP_TYPE_PointerTott__AudioClassDescriptorExtension: - return soap_out_PointerTott__AudioClassDescriptorExtension(soap, tag, id, (tt__AudioClassDescriptorExtension *const*)ptr, "tt:AudioClassDescriptorExtension"); - case SOAP_TYPE_PointerTott__AudioClassCandidate: - return soap_out_PointerTott__AudioClassCandidate(soap, tag, id, (tt__AudioClassCandidate *const*)ptr, "tt:AudioClassCandidate"); - case SOAP_TYPE_PointerTott__ActionEngineEventPayloadExtension: - return soap_out_PointerTott__ActionEngineEventPayloadExtension(soap, tag, id, (tt__ActionEngineEventPayloadExtension *const*)ptr, "tt:ActionEngineEventPayloadExtension"); - case SOAP_TYPE_PointerToSOAP_ENV__Envelope: - return soap_out_PointerToSOAP_ENV__Envelope(soap, tag, id, (std::string *const*)ptr, "SOAP-ENV:Envelope"); - case SOAP_TYPE_PointerTott__AnalyticsState: - return soap_out_PointerTott__AnalyticsState(soap, tag, id, (tt__AnalyticsState *const*)ptr, "tt:AnalyticsState"); - case SOAP_TYPE_PointerTott__MetadataInputExtension: - return soap_out_PointerTott__MetadataInputExtension(soap, tag, id, (tt__MetadataInputExtension *const*)ptr, "tt:MetadataInputExtension"); - case SOAP_TYPE_PointerTott__SourceIdentificationExtension: - return soap_out_PointerTott__SourceIdentificationExtension(soap, tag, id, (tt__SourceIdentificationExtension *const*)ptr, "tt:SourceIdentificationExtension"); - case SOAP_TYPE_PointerTott__AnalyticsEngineInputInfoExtension: - return soap_out_PointerTott__AnalyticsEngineInputInfoExtension(soap, tag, id, (tt__AnalyticsEngineInputInfoExtension *const*)ptr, "tt:AnalyticsEngineInputInfoExtension"); - case SOAP_TYPE_PointerTott__AnalyticsEngineInputInfo: - return soap_out_PointerTott__AnalyticsEngineInputInfo(soap, tag, id, (tt__AnalyticsEngineInputInfo *const*)ptr, "tt:AnalyticsEngineInputInfo"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfigurationExtension: - return soap_out_PointerTott__AnalyticsDeviceEngineConfigurationExtension(soap, tag, id, (tt__AnalyticsDeviceEngineConfigurationExtension *const*)ptr, "tt:AnalyticsDeviceEngineConfigurationExtension"); - case SOAP_TYPE_PointerTott__EngineConfiguration: - return soap_out_PointerTott__EngineConfiguration(soap, tag, id, (tt__EngineConfiguration *const*)ptr, "tt:EngineConfiguration"); - case SOAP_TYPE_PointerTott__RecordingJobConfiguration: - return soap_out_PointerTott__RecordingJobConfiguration(soap, tag, id, (tt__RecordingJobConfiguration *const*)ptr, "tt:RecordingJobConfiguration"); - case SOAP_TYPE_PointerTott__RecordingJobStateTrack: - return soap_out_PointerTott__RecordingJobStateTrack(soap, tag, id, (tt__RecordingJobStateTrack *const*)ptr, "tt:RecordingJobStateTrack"); - case SOAP_TYPE_PointerTott__RecordingJobStateTracks: - return soap_out_PointerTott__RecordingJobStateTracks(soap, tag, id, (tt__RecordingJobStateTracks *const*)ptr, "tt:RecordingJobStateTracks"); - case SOAP_TYPE_PointerTott__RecordingJobStateInformationExtension: - return soap_out_PointerTott__RecordingJobStateInformationExtension(soap, tag, id, (tt__RecordingJobStateInformationExtension *const*)ptr, "tt:RecordingJobStateInformationExtension"); - case SOAP_TYPE_PointerTott__RecordingJobStateSource: - return soap_out_PointerTott__RecordingJobStateSource(soap, tag, id, (tt__RecordingJobStateSource *const*)ptr, "tt:RecordingJobStateSource"); - case SOAP_TYPE_PointerTott__RecordingJobSourceExtension: - return soap_out_PointerTott__RecordingJobSourceExtension(soap, tag, id, (tt__RecordingJobSourceExtension *const*)ptr, "tt:RecordingJobSourceExtension"); - case SOAP_TYPE_PointerTott__RecordingJobTrack: - return soap_out_PointerTott__RecordingJobTrack(soap, tag, id, (tt__RecordingJobTrack *const*)ptr, "tt:RecordingJobTrack"); - case SOAP_TYPE_PointerTott__RecordingJobConfigurationExtension: - return soap_out_PointerTott__RecordingJobConfigurationExtension(soap, tag, id, (tt__RecordingJobConfigurationExtension *const*)ptr, "tt:RecordingJobConfigurationExtension"); - case SOAP_TYPE_PointerTott__RecordingJobSource: - return soap_out_PointerTott__RecordingJobSource(soap, tag, id, (tt__RecordingJobSource *const*)ptr, "tt:RecordingJobSource"); - case SOAP_TYPE_PointerTott__TrackConfiguration: - return soap_out_PointerTott__TrackConfiguration(soap, tag, id, (tt__TrackConfiguration *const*)ptr, "tt:TrackConfiguration"); - case SOAP_TYPE_PointerTott__GetTracksResponseItem: - return soap_out_PointerTott__GetTracksResponseItem(soap, tag, id, (tt__GetTracksResponseItem *const*)ptr, "tt:GetTracksResponseItem"); - case SOAP_TYPE_PointerTott__GetTracksResponseList: - return soap_out_PointerTott__GetTracksResponseList(soap, tag, id, (tt__GetTracksResponseList *const*)ptr, "tt:GetTracksResponseList"); - case SOAP_TYPE_PointerTott__RecordingConfiguration: - return soap_out_PointerTott__RecordingConfiguration(soap, tag, id, (tt__RecordingConfiguration *const*)ptr, "tt:RecordingConfiguration"); - case SOAP_TYPE_PointerTott__TrackAttributesExtension: - return soap_out_PointerTott__TrackAttributesExtension(soap, tag, id, (tt__TrackAttributesExtension *const*)ptr, "tt:TrackAttributesExtension"); - case SOAP_TYPE_PointerTott__MetadataAttributes: - return soap_out_PointerTott__MetadataAttributes(soap, tag, id, (tt__MetadataAttributes *const*)ptr, "tt:MetadataAttributes"); - case SOAP_TYPE_PointerTott__AudioAttributes: - return soap_out_PointerTott__AudioAttributes(soap, tag, id, (tt__AudioAttributes *const*)ptr, "tt:AudioAttributes"); - case SOAP_TYPE_PointerTott__VideoAttributes: - return soap_out_PointerTott__VideoAttributes(soap, tag, id, (tt__VideoAttributes *const*)ptr, "tt:VideoAttributes"); - case SOAP_TYPE_PointerTott__TrackAttributes: - return soap_out_PointerTott__TrackAttributes(soap, tag, id, (tt__TrackAttributes *const*)ptr, "tt:TrackAttributes"); - case SOAP_TYPE_PointerTott__TrackInformation: - return soap_out_PointerTott__TrackInformation(soap, tag, id, (tt__TrackInformation *const*)ptr, "tt:TrackInformation"); - case SOAP_TYPE_PointerTott__RecordingSourceInformation: - return soap_out_PointerTott__RecordingSourceInformation(soap, tag, id, (tt__RecordingSourceInformation *const*)ptr, "tt:RecordingSourceInformation"); - case SOAP_TYPE_PointerTott__FindMetadataResult: - return soap_out_PointerTott__FindMetadataResult(soap, tag, id, (tt__FindMetadataResult *const*)ptr, "tt:FindMetadataResult"); - case SOAP_TYPE_PointerTott__FindPTZPositionResult: - return soap_out_PointerTott__FindPTZPositionResult(soap, tag, id, (tt__FindPTZPositionResult *const*)ptr, "tt:FindPTZPositionResult"); - case SOAP_TYPE_PointerTott__FindEventResult: - return soap_out_PointerTott__FindEventResult(soap, tag, id, (tt__FindEventResult *const*)ptr, "tt:FindEventResult"); - case SOAP_TYPE_PointerTott__RecordingInformation: - return soap_out_PointerTott__RecordingInformation(soap, tag, id, (tt__RecordingInformation *const*)ptr, "tt:RecordingInformation"); - case SOAP_TYPE_PointerTott__SearchScopeExtension: - return soap_out_PointerTott__SearchScopeExtension(soap, tag, id, (tt__SearchScopeExtension *const*)ptr, "tt:SearchScopeExtension"); - case SOAP_TYPE_PointerTott__XPathExpression: - return soap_out_PointerTott__XPathExpression(soap, tag, id, (std::string *const*)ptr, "tt:XPathExpression"); - case SOAP_TYPE_PointerTott__SourceReference: - return soap_out_PointerTott__SourceReference(soap, tag, id, (tt__SourceReference *const*)ptr, "tt:SourceReference"); - case SOAP_TYPE_PointerTott__StreamSetup: - return soap_out_PointerTott__StreamSetup(soap, tag, id, (tt__StreamSetup *const*)ptr, "tt:StreamSetup"); - case SOAP_TYPE_PointerTott__ReceiverConfiguration: - return soap_out_PointerTott__ReceiverConfiguration(soap, tag, id, (tt__ReceiverConfiguration *const*)ptr, "tt:ReceiverConfiguration"); - case SOAP_TYPE_PointerTott__PaneOptionExtension: - return soap_out_PointerTott__PaneOptionExtension(soap, tag, id, (tt__PaneOptionExtension *const*)ptr, "tt:PaneOptionExtension"); - case SOAP_TYPE_PointerTott__LayoutOptionsExtension: - return soap_out_PointerTott__LayoutOptionsExtension(soap, tag, id, (tt__LayoutOptionsExtension *const*)ptr, "tt:LayoutOptionsExtension"); - case SOAP_TYPE_PointerTott__PaneLayoutOptions: - return soap_out_PointerTott__PaneLayoutOptions(soap, tag, id, (tt__PaneLayoutOptions *const*)ptr, "tt:PaneLayoutOptions"); - case SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptions: - return soap_out_PointerTott__VideoDecoderConfigurationOptions(soap, tag, id, (tt__VideoDecoderConfigurationOptions *const*)ptr, "tt:VideoDecoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptions: - return soap_out_PointerTott__AudioDecoderConfigurationOptions(soap, tag, id, (tt__AudioDecoderConfigurationOptions *const*)ptr, "tt:AudioDecoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__AudioEncoderConfigurationOptions: - return soap_out_PointerTott__AudioEncoderConfigurationOptions(soap, tag, id, (tt__AudioEncoderConfigurationOptions *const*)ptr, "tt:AudioEncoderConfigurationOptions"); - case SOAP_TYPE_PointerTott__LayoutExtension: - return soap_out_PointerTott__LayoutExtension(soap, tag, id, (tt__LayoutExtension *const*)ptr, "tt:LayoutExtension"); - case SOAP_TYPE_PointerTott__PaneLayout: - return soap_out_PointerTott__PaneLayout(soap, tag, id, (tt__PaneLayout *const*)ptr, "tt:PaneLayout"); - case SOAP_TYPE_PointerTott__Transformation: - return soap_out_PointerTott__Transformation(soap, tag, id, (tt__Transformation *const*)ptr, "tt:Transformation"); - case SOAP_TYPE_PointerTott__MotionExpression: - return soap_out_PointerTott__MotionExpression(soap, tag, id, (tt__MotionExpression *const*)ptr, "tt:MotionExpression"); - case SOAP_TYPE_PointerTott__PolylineArray: - return soap_out_PointerTott__PolylineArray(soap, tag, id, (tt__PolylineArray *const*)ptr, "tt:PolylineArray"); - case SOAP_TYPE_PointerTott__PolylineArrayExtension: - return soap_out_PointerTott__PolylineArrayExtension(soap, tag, id, (tt__PolylineArrayExtension *const*)ptr, "tt:PolylineArrayExtension"); - case SOAP_TYPE_PointerTott__Polyline: - return soap_out_PointerTott__Polyline(soap, tag, id, (tt__Polyline *const*)ptr, "tt:Polyline"); - case SOAP_TYPE_PointerTott__SupportedAnalyticsModulesExtension: - return soap_out_PointerTott__SupportedAnalyticsModulesExtension(soap, tag, id, (tt__SupportedAnalyticsModulesExtension *const*)ptr, "tt:SupportedAnalyticsModulesExtension"); - case SOAP_TYPE_PointerTott__SupportedRulesExtension: - return soap_out_PointerTott__SupportedRulesExtension(soap, tag, id, (tt__SupportedRulesExtension *const*)ptr, "tt:SupportedRulesExtension"); - case SOAP_TYPE_PointerTott__ConfigDescription: - return soap_out_PointerTott__ConfigDescription(soap, tag, id, (tt__ConfigDescription *const*)ptr, "tt:ConfigDescription"); - case SOAP_TYPE_PointerToxsd__integer: - return soap_out_PointerToxsd__integer(soap, tag, id, (std::string *const*)ptr, "xsd:integer"); - case SOAP_TYPE_PointerTott__ConfigDescriptionExtension: - return soap_out_PointerTott__ConfigDescriptionExtension(soap, tag, id, (tt__ConfigDescriptionExtension *const*)ptr, "tt:ConfigDescriptionExtension"); - case SOAP_TYPE_PointerTott__ItemList: - return soap_out_PointerTott__ItemList(soap, tag, id, (tt__ItemList *const*)ptr, "tt:ItemList"); - case SOAP_TYPE_PointerTott__RuleEngineConfigurationExtension: - return soap_out_PointerTott__RuleEngineConfigurationExtension(soap, tag, id, (tt__RuleEngineConfigurationExtension *const*)ptr, "tt:RuleEngineConfigurationExtension"); - case SOAP_TYPE_PointerTott__AnalyticsEngineConfigurationExtension: - return soap_out_PointerTott__AnalyticsEngineConfigurationExtension(soap, tag, id, (tt__AnalyticsEngineConfigurationExtension *const*)ptr, "tt:AnalyticsEngineConfigurationExtension"); - case SOAP_TYPE_PointerTott__Config: - return soap_out_PointerTott__Config(soap, tag, id, (tt__Config *const*)ptr, "tt:Config"); - case SOAP_TYPE_PointerTott__ItemListDescriptionExtension: - return soap_out_PointerTott__ItemListDescriptionExtension(soap, tag, id, (tt__ItemListDescriptionExtension *const*)ptr, "tt:ItemListDescriptionExtension"); - case SOAP_TYPE_PointerTott__MessageDescriptionExtension: - return soap_out_PointerTott__MessageDescriptionExtension(soap, tag, id, (tt__MessageDescriptionExtension *const*)ptr, "tt:MessageDescriptionExtension"); - case SOAP_TYPE_PointerTott__ItemListDescription: - return soap_out_PointerTott__ItemListDescription(soap, tag, id, (tt__ItemListDescription *const*)ptr, "tt:ItemListDescription"); - case SOAP_TYPE_PointerTott__ItemListExtension: - return soap_out_PointerTott__ItemListExtension(soap, tag, id, (tt__ItemListExtension *const*)ptr, "tt:ItemListExtension"); - case SOAP_TYPE_PointerTott__FocusOptions20Extension: - return soap_out_PointerTott__FocusOptions20Extension(soap, tag, id, (tt__FocusOptions20Extension *const*)ptr, "tt:FocusOptions20Extension"); - case SOAP_TYPE_PointerTott__WhiteBalanceOptions20Extension: - return soap_out_PointerTott__WhiteBalanceOptions20Extension(soap, tag, id, (tt__WhiteBalanceOptions20Extension *const*)ptr, "tt:WhiteBalanceOptions20Extension"); - case SOAP_TYPE_PointerTott__FocusConfiguration20Extension: - return soap_out_PointerTott__FocusConfiguration20Extension(soap, tag, id, (tt__FocusConfiguration20Extension *const*)ptr, "tt:FocusConfiguration20Extension"); - case SOAP_TYPE_PointerTott__WhiteBalance20Extension: - return soap_out_PointerTott__WhiteBalance20Extension(soap, tag, id, (tt__WhiteBalance20Extension *const*)ptr, "tt:WhiteBalance20Extension"); - case SOAP_TYPE_PointerTott__RelativeFocusOptions20: - return soap_out_PointerTott__RelativeFocusOptions20(soap, tag, id, (tt__RelativeFocusOptions20 *const*)ptr, "tt:RelativeFocusOptions20"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension: - return soap_out_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag, id, (tt__IrCutFilterAutoAdjustmentOptionsExtension *const*)ptr, "tt:IrCutFilterAutoAdjustmentOptionsExtension"); - case SOAP_TYPE_PointerTott__ImageStabilizationOptionsExtension: - return soap_out_PointerTott__ImageStabilizationOptionsExtension(soap, tag, id, (tt__ImageStabilizationOptionsExtension *const*)ptr, "tt:ImageStabilizationOptionsExtension"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension4: - return soap_out_PointerTott__ImagingOptions20Extension4(soap, tag, id, (tt__ImagingOptions20Extension4 *const*)ptr, "tt:ImagingOptions20Extension4"); - case SOAP_TYPE_PointerTott__NoiseReductionOptions: - return soap_out_PointerTott__NoiseReductionOptions(soap, tag, id, (tt__NoiseReductionOptions *const*)ptr, "tt:NoiseReductionOptions"); - case SOAP_TYPE_PointerTott__DefoggingOptions: - return soap_out_PointerTott__DefoggingOptions(soap, tag, id, (tt__DefoggingOptions *const*)ptr, "tt:DefoggingOptions"); - case SOAP_TYPE_PointerTott__ToneCompensationOptions: - return soap_out_PointerTott__ToneCompensationOptions(soap, tag, id, (tt__ToneCompensationOptions *const*)ptr, "tt:ToneCompensationOptions"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension3: - return soap_out_PointerTott__ImagingOptions20Extension3(soap, tag, id, (tt__ImagingOptions20Extension3 *const*)ptr, "tt:ImagingOptions20Extension3"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptions: - return soap_out_PointerTott__IrCutFilterAutoAdjustmentOptions(soap, tag, id, (tt__IrCutFilterAutoAdjustmentOptions *const*)ptr, "tt:IrCutFilterAutoAdjustmentOptions"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension2: - return soap_out_PointerTott__ImagingOptions20Extension2(soap, tag, id, (tt__ImagingOptions20Extension2 *const*)ptr, "tt:ImagingOptions20Extension2"); - case SOAP_TYPE_PointerTott__ImageStabilizationOptions: - return soap_out_PointerTott__ImageStabilizationOptions(soap, tag, id, (tt__ImageStabilizationOptions *const*)ptr, "tt:ImageStabilizationOptions"); - case SOAP_TYPE_PointerTott__ImagingOptions20Extension: - return soap_out_PointerTott__ImagingOptions20Extension(soap, tag, id, (tt__ImagingOptions20Extension *const*)ptr, "tt:ImagingOptions20Extension"); - case SOAP_TYPE_PointerTott__WhiteBalanceOptions20: - return soap_out_PointerTott__WhiteBalanceOptions20(soap, tag, id, (tt__WhiteBalanceOptions20 *const*)ptr, "tt:WhiteBalanceOptions20"); - case SOAP_TYPE_PointerTott__WideDynamicRangeOptions20: - return soap_out_PointerTott__WideDynamicRangeOptions20(soap, tag, id, (tt__WideDynamicRangeOptions20 *const*)ptr, "tt:WideDynamicRangeOptions20"); - case SOAP_TYPE_PointerTott__FocusOptions20: - return soap_out_PointerTott__FocusOptions20(soap, tag, id, (tt__FocusOptions20 *const*)ptr, "tt:FocusOptions20"); - case SOAP_TYPE_PointerTott__ExposureOptions20: - return soap_out_PointerTott__ExposureOptions20(soap, tag, id, (tt__ExposureOptions20 *const*)ptr, "tt:ExposureOptions20"); - case SOAP_TYPE_PointerTott__BacklightCompensationOptions20: - return soap_out_PointerTott__BacklightCompensationOptions20(soap, tag, id, (tt__BacklightCompensationOptions20 *const*)ptr, "tt:BacklightCompensationOptions20"); - case SOAP_TYPE_PointerTott__DefoggingExtension: - return soap_out_PointerTott__DefoggingExtension(soap, tag, id, (tt__DefoggingExtension *const*)ptr, "tt:DefoggingExtension"); - case SOAP_TYPE_PointerTott__ToneCompensationExtension: - return soap_out_PointerTott__ToneCompensationExtension(soap, tag, id, (tt__ToneCompensationExtension *const*)ptr, "tt:ToneCompensationExtension"); - case SOAP_TYPE_PointerTott__ExposurePriority: - return soap_out_PointerTott__ExposurePriority(soap, tag, id, (enum tt__ExposurePriority *const*)ptr, "tt:ExposurePriority"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentExtension: - return soap_out_PointerTott__IrCutFilterAutoAdjustmentExtension(soap, tag, id, (tt__IrCutFilterAutoAdjustmentExtension *const*)ptr, "tt:IrCutFilterAutoAdjustmentExtension"); - case SOAP_TYPE_PointerTott__ImageStabilizationExtension: - return soap_out_PointerTott__ImageStabilizationExtension(soap, tag, id, (tt__ImageStabilizationExtension *const*)ptr, "tt:ImageStabilizationExtension"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension204: - return soap_out_PointerTott__ImagingSettingsExtension204(soap, tag, id, (tt__ImagingSettingsExtension204 *const*)ptr, "tt:ImagingSettingsExtension204"); - case SOAP_TYPE_PointerTott__NoiseReduction: - return soap_out_PointerTott__NoiseReduction(soap, tag, id, (tt__NoiseReduction *const*)ptr, "tt:NoiseReduction"); - case SOAP_TYPE_PointerTott__Defogging: - return soap_out_PointerTott__Defogging(soap, tag, id, (tt__Defogging *const*)ptr, "tt:Defogging"); - case SOAP_TYPE_PointerTott__ToneCompensation: - return soap_out_PointerTott__ToneCompensation(soap, tag, id, (tt__ToneCompensation *const*)ptr, "tt:ToneCompensation"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension203: - return soap_out_PointerTott__ImagingSettingsExtension203(soap, tag, id, (tt__ImagingSettingsExtension203 *const*)ptr, "tt:ImagingSettingsExtension203"); - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustment: - return soap_out_PointerTott__IrCutFilterAutoAdjustment(soap, tag, id, (tt__IrCutFilterAutoAdjustment *const*)ptr, "tt:IrCutFilterAutoAdjustment"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension202: - return soap_out_PointerTott__ImagingSettingsExtension202(soap, tag, id, (tt__ImagingSettingsExtension202 *const*)ptr, "tt:ImagingSettingsExtension202"); - case SOAP_TYPE_PointerTott__ImageStabilization: - return soap_out_PointerTott__ImageStabilization(soap, tag, id, (tt__ImageStabilization *const*)ptr, "tt:ImageStabilization"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension20: - return soap_out_PointerTott__ImagingSettingsExtension20(soap, tag, id, (tt__ImagingSettingsExtension20 *const*)ptr, "tt:ImagingSettingsExtension20"); - case SOAP_TYPE_PointerTott__WhiteBalance20: - return soap_out_PointerTott__WhiteBalance20(soap, tag, id, (tt__WhiteBalance20 *const*)ptr, "tt:WhiteBalance20"); - case SOAP_TYPE_PointerTott__WideDynamicRange20: - return soap_out_PointerTott__WideDynamicRange20(soap, tag, id, (tt__WideDynamicRange20 *const*)ptr, "tt:WideDynamicRange20"); - case SOAP_TYPE_PointerTott__FocusConfiguration20: - return soap_out_PointerTott__FocusConfiguration20(soap, tag, id, (tt__FocusConfiguration20 *const*)ptr, "tt:FocusConfiguration20"); - case SOAP_TYPE_PointerTott__Exposure20: - return soap_out_PointerTott__Exposure20(soap, tag, id, (tt__Exposure20 *const*)ptr, "tt:Exposure20"); - case SOAP_TYPE_PointerTott__BacklightCompensation20: - return soap_out_PointerTott__BacklightCompensation20(soap, tag, id, (tt__BacklightCompensation20 *const*)ptr, "tt:BacklightCompensation20"); - case SOAP_TYPE_PointerTott__FocusStatus20Extension: - return soap_out_PointerTott__FocusStatus20Extension(soap, tag, id, (tt__FocusStatus20Extension *const*)ptr, "tt:FocusStatus20Extension"); - case SOAP_TYPE_PointerTott__ImagingStatus20Extension: - return soap_out_PointerTott__ImagingStatus20Extension(soap, tag, id, (tt__ImagingStatus20Extension *const*)ptr, "tt:ImagingStatus20Extension"); - case SOAP_TYPE_PointerTott__FocusStatus20: - return soap_out_PointerTott__FocusStatus20(soap, tag, id, (tt__FocusStatus20 *const*)ptr, "tt:FocusStatus20"); - case SOAP_TYPE_PointerTott__ContinuousFocusOptions: - return soap_out_PointerTott__ContinuousFocusOptions(soap, tag, id, (tt__ContinuousFocusOptions *const*)ptr, "tt:ContinuousFocusOptions"); - case SOAP_TYPE_PointerTott__RelativeFocusOptions: - return soap_out_PointerTott__RelativeFocusOptions(soap, tag, id, (tt__RelativeFocusOptions *const*)ptr, "tt:RelativeFocusOptions"); - case SOAP_TYPE_PointerTott__AbsoluteFocusOptions: - return soap_out_PointerTott__AbsoluteFocusOptions(soap, tag, id, (tt__AbsoluteFocusOptions *const*)ptr, "tt:AbsoluteFocusOptions"); - case SOAP_TYPE_PointerTott__ContinuousFocus: - return soap_out_PointerTott__ContinuousFocus(soap, tag, id, (tt__ContinuousFocus *const*)ptr, "tt:ContinuousFocus"); - case SOAP_TYPE_PointerTott__RelativeFocus: - return soap_out_PointerTott__RelativeFocus(soap, tag, id, (tt__RelativeFocus *const*)ptr, "tt:RelativeFocus"); - case SOAP_TYPE_PointerTott__AbsoluteFocus: - return soap_out_PointerTott__AbsoluteFocus(soap, tag, id, (tt__AbsoluteFocus *const*)ptr, "tt:AbsoluteFocus"); - case SOAP_TYPE_PointerTott__WhiteBalanceOptions: - return soap_out_PointerTott__WhiteBalanceOptions(soap, tag, id, (tt__WhiteBalanceOptions *const*)ptr, "tt:WhiteBalanceOptions"); - case SOAP_TYPE_PointerTott__WideDynamicRangeOptions: - return soap_out_PointerTott__WideDynamicRangeOptions(soap, tag, id, (tt__WideDynamicRangeOptions *const*)ptr, "tt:WideDynamicRangeOptions"); - case SOAP_TYPE_PointerTott__FocusOptions: - return soap_out_PointerTott__FocusOptions(soap, tag, id, (tt__FocusOptions *const*)ptr, "tt:FocusOptions"); - case SOAP_TYPE_PointerTott__ExposureOptions: - return soap_out_PointerTott__ExposureOptions(soap, tag, id, (tt__ExposureOptions *const*)ptr, "tt:ExposureOptions"); - case SOAP_TYPE_PointerTott__BacklightCompensationOptions: - return soap_out_PointerTott__BacklightCompensationOptions(soap, tag, id, (tt__BacklightCompensationOptions *const*)ptr, "tt:BacklightCompensationOptions"); - case SOAP_TYPE_PointerTott__Rectangle: - return soap_out_PointerTott__Rectangle(soap, tag, id, (tt__Rectangle *const*)ptr, "tt:Rectangle"); - case SOAP_TYPE_PointerTott__ImagingSettingsExtension: - return soap_out_PointerTott__ImagingSettingsExtension(soap, tag, id, (tt__ImagingSettingsExtension *const*)ptr, "tt:ImagingSettingsExtension"); - case SOAP_TYPE_PointerTott__WhiteBalance: - return soap_out_PointerTott__WhiteBalance(soap, tag, id, (tt__WhiteBalance *const*)ptr, "tt:WhiteBalance"); - case SOAP_TYPE_PointerTott__WideDynamicRange: - return soap_out_PointerTott__WideDynamicRange(soap, tag, id, (tt__WideDynamicRange *const*)ptr, "tt:WideDynamicRange"); - case SOAP_TYPE_PointerTott__IrCutFilterMode: - return soap_out_PointerTott__IrCutFilterMode(soap, tag, id, (enum tt__IrCutFilterMode *const*)ptr, "tt:IrCutFilterMode"); - case SOAP_TYPE_PointerTott__FocusConfiguration: - return soap_out_PointerTott__FocusConfiguration(soap, tag, id, (tt__FocusConfiguration *const*)ptr, "tt:FocusConfiguration"); - case SOAP_TYPE_PointerTott__Exposure: - return soap_out_PointerTott__Exposure(soap, tag, id, (tt__Exposure *const*)ptr, "tt:Exposure"); - case SOAP_TYPE_PointerTott__BacklightCompensation: - return soap_out_PointerTott__BacklightCompensation(soap, tag, id, (tt__BacklightCompensation *const*)ptr, "tt:BacklightCompensation"); - case SOAP_TYPE_PointerTott__FocusStatus: - return soap_out_PointerTott__FocusStatus(soap, tag, id, (tt__FocusStatus *const*)ptr, "tt:FocusStatus"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptionsExtension: - return soap_out_PointerTott__PTZPresetTourStartingConditionOptionsExtension(soap, tag, id, (tt__PTZPresetTourStartingConditionOptionsExtension *const*)ptr, "tt:PTZPresetTourStartingConditionOptionsExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptionsExtension: - return soap_out_PointerTott__PTZPresetTourPresetDetailOptionsExtension(soap, tag, id, (tt__PTZPresetTourPresetDetailOptionsExtension *const*)ptr, "tt:PTZPresetTourPresetDetailOptionsExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptions: - return soap_out_PointerTott__PTZPresetTourPresetDetailOptions(soap, tag, id, (tt__PTZPresetTourPresetDetailOptions *const*)ptr, "tt:PTZPresetTourPresetDetailOptions"); - case SOAP_TYPE_PointerTott__PTZPresetTourSpotOptions: - return soap_out_PointerTott__PTZPresetTourSpotOptions(soap, tag, id, (tt__PTZPresetTourSpotOptions *const*)ptr, "tt:PTZPresetTourSpotOptions"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptions: - return soap_out_PointerTott__PTZPresetTourStartingConditionOptions(soap, tag, id, (tt__PTZPresetTourStartingConditionOptions *const*)ptr, "tt:PTZPresetTourStartingConditionOptions"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionExtension: - return soap_out_PointerTott__PTZPresetTourStartingConditionExtension(soap, tag, id, (tt__PTZPresetTourStartingConditionExtension *const*)ptr, "tt:PTZPresetTourStartingConditionExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourDirection: - return soap_out_PointerTott__PTZPresetTourDirection(soap, tag, id, (enum tt__PTZPresetTourDirection *const*)ptr, "tt:PTZPresetTourDirection"); - case SOAP_TYPE_PointerTott__PTZPresetTourStatusExtension: - return soap_out_PointerTott__PTZPresetTourStatusExtension(soap, tag, id, (tt__PTZPresetTourStatusExtension *const*)ptr, "tt:PTZPresetTourStatusExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourTypeExtension: - return soap_out_PointerTott__PTZPresetTourTypeExtension(soap, tag, id, (tt__PTZPresetTourTypeExtension *const*)ptr, "tt:PTZPresetTourTypeExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourSpotExtension: - return soap_out_PointerTott__PTZPresetTourSpotExtension(soap, tag, id, (tt__PTZPresetTourSpotExtension *const*)ptr, "tt:PTZPresetTourSpotExtension"); - case SOAP_TYPE_PointerTott__PTZSpeed: - return soap_out_PointerTott__PTZSpeed(soap, tag, id, (tt__PTZSpeed *const*)ptr, "tt:PTZSpeed"); - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetail: - return soap_out_PointerTott__PTZPresetTourPresetDetail(soap, tag, id, (tt__PTZPresetTourPresetDetail *const*)ptr, "tt:PTZPresetTourPresetDetail"); - case SOAP_TYPE_PointerTott__PTZPresetTourExtension: - return soap_out_PointerTott__PTZPresetTourExtension(soap, tag, id, (tt__PTZPresetTourExtension *const*)ptr, "tt:PTZPresetTourExtension"); - case SOAP_TYPE_PointerTott__PTZPresetTourSpot: - return soap_out_PointerTott__PTZPresetTourSpot(soap, tag, id, (tt__PTZPresetTourSpot *const*)ptr, "tt:PTZPresetTourSpot"); - case SOAP_TYPE_PointerTott__PTZPresetTourStartingCondition: - return soap_out_PointerTott__PTZPresetTourStartingCondition(soap, tag, id, (tt__PTZPresetTourStartingCondition *const*)ptr, "tt:PTZPresetTourStartingCondition"); - case SOAP_TYPE_PointerTott__PTZPresetTourStatus: - return soap_out_PointerTott__PTZPresetTourStatus(soap, tag, id, (tt__PTZPresetTourStatus *const*)ptr, "tt:PTZPresetTourStatus"); - case SOAP_TYPE_PointerTott__Name: - return soap_out_PointerTott__Name(soap, tag, id, (std::string *const*)ptr, "tt:Name"); - case SOAP_TYPE_PointerTott__PTZSpacesExtension: - return soap_out_PointerTott__PTZSpacesExtension(soap, tag, id, (tt__PTZSpacesExtension *const*)ptr, "tt:PTZSpacesExtension"); - case SOAP_TYPE_PointerTott__Space1DDescription: - return soap_out_PointerTott__Space1DDescription(soap, tag, id, (tt__Space1DDescription *const*)ptr, "tt:Space1DDescription"); - case SOAP_TYPE_PointerTott__Space2DDescription: - return soap_out_PointerTott__Space2DDescription(soap, tag, id, (tt__Space2DDescription *const*)ptr, "tt:Space2DDescription"); - case SOAP_TYPE_PointerTott__ReverseOptionsExtension: - return soap_out_PointerTott__ReverseOptionsExtension(soap, tag, id, (tt__ReverseOptionsExtension *const*)ptr, "tt:ReverseOptionsExtension"); - case SOAP_TYPE_PointerTott__EFlipOptionsExtension: - return soap_out_PointerTott__EFlipOptionsExtension(soap, tag, id, (tt__EFlipOptionsExtension *const*)ptr, "tt:EFlipOptionsExtension"); - case SOAP_TYPE_PointerTott__PTControlDirectionOptionsExtension: - return soap_out_PointerTott__PTControlDirectionOptionsExtension(soap, tag, id, (tt__PTControlDirectionOptionsExtension *const*)ptr, "tt:PTControlDirectionOptionsExtension"); - case SOAP_TYPE_PointerTott__ReverseOptions: - return soap_out_PointerTott__ReverseOptions(soap, tag, id, (tt__ReverseOptions *const*)ptr, "tt:ReverseOptions"); - case SOAP_TYPE_PointerTott__EFlipOptions: - return soap_out_PointerTott__EFlipOptions(soap, tag, id, (tt__EFlipOptions *const*)ptr, "tt:EFlipOptions"); - case SOAP_TYPE_PointerTott__PTZConfigurationOptions2: - return soap_out_PointerTott__PTZConfigurationOptions2(soap, tag, id, (tt__PTZConfigurationOptions2 *const*)ptr, "tt:PTZConfigurationOptions2"); - case SOAP_TYPE_PointerTott__PTControlDirectionOptions: - return soap_out_PointerTott__PTControlDirectionOptions(soap, tag, id, (tt__PTControlDirectionOptions *const*)ptr, "tt:PTControlDirectionOptions"); - case SOAP_TYPE_PointerTott__DurationRange: - return soap_out_PointerTott__DurationRange(soap, tag, id, (tt__DurationRange *const*)ptr, "tt:DurationRange"); - case SOAP_TYPE_PointerTott__PTZSpaces: - return soap_out_PointerTott__PTZSpaces(soap, tag, id, (tt__PTZSpaces *const*)ptr, "tt:PTZSpaces"); - case SOAP_TYPE_PointerTott__PTControlDirectionExtension: - return soap_out_PointerTott__PTControlDirectionExtension(soap, tag, id, (tt__PTControlDirectionExtension *const*)ptr, "tt:PTControlDirectionExtension"); - case SOAP_TYPE_PointerTott__Reverse: - return soap_out_PointerTott__Reverse(soap, tag, id, (tt__Reverse *const*)ptr, "tt:Reverse"); - case SOAP_TYPE_PointerTott__EFlip: - return soap_out_PointerTott__EFlip(soap, tag, id, (tt__EFlip *const*)ptr, "tt:EFlip"); - case SOAP_TYPE_PointerTott__PTZConfigurationExtension2: - return soap_out_PointerTott__PTZConfigurationExtension2(soap, tag, id, (tt__PTZConfigurationExtension2 *const*)ptr, "tt:PTZConfigurationExtension2"); - case SOAP_TYPE_PointerTott__PTControlDirection: - return soap_out_PointerTott__PTControlDirection(soap, tag, id, (tt__PTControlDirection *const*)ptr, "tt:PTControlDirection"); - case SOAP_TYPE_PointerTott__PTZPresetTourSupportedExtension: - return soap_out_PointerTott__PTZPresetTourSupportedExtension(soap, tag, id, (tt__PTZPresetTourSupportedExtension *const*)ptr, "tt:PTZPresetTourSupportedExtension"); - case SOAP_TYPE_PointerTott__PTZNodeExtension2: - return soap_out_PointerTott__PTZNodeExtension2(soap, tag, id, (tt__PTZNodeExtension2 *const*)ptr, "tt:PTZNodeExtension2"); - case SOAP_TYPE_PointerTott__PTZPresetTourSupported: - return soap_out_PointerTott__PTZPresetTourSupported(soap, tag, id, (tt__PTZPresetTourSupported *const*)ptr, "tt:PTZPresetTourSupported"); - case SOAP_TYPE_PointerTott__EapMethodExtension: - return soap_out_PointerTott__EapMethodExtension(soap, tag, id, (tt__EapMethodExtension *const*)ptr, "tt:EapMethodExtension"); - case SOAP_TYPE_PointerTott__TLSConfiguration: - return soap_out_PointerTott__TLSConfiguration(soap, tag, id, (tt__TLSConfiguration *const*)ptr, "tt:TLSConfiguration"); - case SOAP_TYPE_PointerTott__Dot1XConfigurationExtension: - return soap_out_PointerTott__Dot1XConfigurationExtension(soap, tag, id, (tt__Dot1XConfigurationExtension *const*)ptr, "tt:Dot1XConfigurationExtension"); - case SOAP_TYPE_PointerTott__EAPMethodConfiguration: - return soap_out_PointerTott__EAPMethodConfiguration(soap, tag, id, (tt__EAPMethodConfiguration *const*)ptr, "tt:EAPMethodConfiguration"); - case SOAP_TYPE_PointerTott__CertificateInformationExtension: - return soap_out_PointerTott__CertificateInformationExtension(soap, tag, id, (tt__CertificateInformationExtension *const*)ptr, "tt:CertificateInformationExtension"); - case SOAP_TYPE_PointerTott__DateTimeRange: - return soap_out_PointerTott__DateTimeRange(soap, tag, id, (tt__DateTimeRange *const*)ptr, "tt:DateTimeRange"); - case SOAP_TYPE_PointerTott__CertificateUsage: - return soap_out_PointerTott__CertificateUsage(soap, tag, id, (tt__CertificateUsage *const*)ptr, "tt:CertificateUsage"); - case SOAP_TYPE_PointerTott__BinaryData: - return soap_out_PointerTott__BinaryData(soap, tag, id, (tt__BinaryData *const*)ptr, "tt:BinaryData"); - case SOAP_TYPE_PointerTott__CertificateGenerationParametersExtension: - return soap_out_PointerTott__CertificateGenerationParametersExtension(soap, tag, id, (tt__CertificateGenerationParametersExtension *const*)ptr, "tt:CertificateGenerationParametersExtension"); - case SOAP_TYPE_PointerTott__UserExtension: - return soap_out_PointerTott__UserExtension(soap, tag, id, (tt__UserExtension *const*)ptr, "tt:UserExtension"); - case SOAP_TYPE_PointerTott__Date: - return soap_out_PointerTott__Date(soap, tag, id, (tt__Date *const*)ptr, "tt:Date"); - case SOAP_TYPE_PointerTott__Time: - return soap_out_PointerTott__Time(soap, tag, id, (tt__Time *const*)ptr, "tt:Time"); - case SOAP_TYPE_PointerTott__SystemDateTimeExtension: - return soap_out_PointerTott__SystemDateTimeExtension(soap, tag, id, (tt__SystemDateTimeExtension *const*)ptr, "tt:SystemDateTimeExtension"); - case SOAP_TYPE_PointerTott__DateTime: - return soap_out_PointerTott__DateTime(soap, tag, id, (tt__DateTime *const*)ptr, "tt:DateTime"); - case SOAP_TYPE_PointerTott__TimeZone: - return soap_out_PointerTott__TimeZone(soap, tag, id, (tt__TimeZone *const*)ptr, "tt:TimeZone"); - case SOAP_TYPE_PointerTott__SystemLogUri: - return soap_out_PointerTott__SystemLogUri(soap, tag, id, (tt__SystemLogUri *const*)ptr, "tt:SystemLogUri"); - case SOAP_TYPE_PointerToxop__Include: - return soap_out_PointerToxop__Include(soap, tag, id, (xop__Include *const*)ptr, "xop:Include"); - case SOAP_TYPE_PointerTo_xmime__contentType: - return soap_out_PointerTo_xmime__contentType(soap, tag, id, (std::string *const*)ptr, "xmime:contentType"); - case SOAP_TYPE_PointerTott__AttachmentData: - return soap_out_PointerTott__AttachmentData(soap, tag, id, (tt__AttachmentData *const*)ptr, "tt:AttachmentData"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceExtension: - return soap_out_PointerTott__AnalyticsDeviceExtension(soap, tag, id, (tt__AnalyticsDeviceExtension *const*)ptr, "tt:AnalyticsDeviceExtension"); - case SOAP_TYPE_PointerTott__SystemCapabilitiesExtension2: - return soap_out_PointerTott__SystemCapabilitiesExtension2(soap, tag, id, (tt__SystemCapabilitiesExtension2 *const*)ptr, "tt:SystemCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__SystemCapabilitiesExtension: - return soap_out_PointerTott__SystemCapabilitiesExtension(soap, tag, id, (tt__SystemCapabilitiesExtension *const*)ptr, "tt:SystemCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__OnvifVersion: - return soap_out_PointerTott__OnvifVersion(soap, tag, id, (tt__OnvifVersion *const*)ptr, "tt:OnvifVersion"); - case SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension2: - return soap_out_PointerTott__SecurityCapabilitiesExtension2(soap, tag, id, (tt__SecurityCapabilitiesExtension2 *const*)ptr, "tt:SecurityCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension: - return soap_out_PointerTott__SecurityCapabilitiesExtension(soap, tag, id, (tt__SecurityCapabilitiesExtension *const*)ptr, "tt:SecurityCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension2: - return soap_out_PointerTott__NetworkCapabilitiesExtension2(soap, tag, id, (tt__NetworkCapabilitiesExtension2 *const*)ptr, "tt:NetworkCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension: - return soap_out_PointerTott__NetworkCapabilitiesExtension(soap, tag, id, (tt__NetworkCapabilitiesExtension *const*)ptr, "tt:NetworkCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__RealTimeStreamingCapabilitiesExtension: - return soap_out_PointerTott__RealTimeStreamingCapabilitiesExtension(soap, tag, id, (tt__RealTimeStreamingCapabilitiesExtension *const*)ptr, "tt:RealTimeStreamingCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__ProfileCapabilities: - return soap_out_PointerTott__ProfileCapabilities(soap, tag, id, (tt__ProfileCapabilities *const*)ptr, "tt:ProfileCapabilities"); - case SOAP_TYPE_PointerTott__MediaCapabilitiesExtension: - return soap_out_PointerTott__MediaCapabilitiesExtension(soap, tag, id, (tt__MediaCapabilitiesExtension *const*)ptr, "tt:MediaCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__RealTimeStreamingCapabilities: - return soap_out_PointerTott__RealTimeStreamingCapabilities(soap, tag, id, (tt__RealTimeStreamingCapabilities *const*)ptr, "tt:RealTimeStreamingCapabilities"); - case SOAP_TYPE_PointerTott__IOCapabilitiesExtension2: - return soap_out_PointerTott__IOCapabilitiesExtension2(soap, tag, id, (tt__IOCapabilitiesExtension2 *const*)ptr, "tt:IOCapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__IOCapabilitiesExtension: - return soap_out_PointerTott__IOCapabilitiesExtension(soap, tag, id, (tt__IOCapabilitiesExtension *const*)ptr, "tt:IOCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__DeviceCapabilitiesExtension: - return soap_out_PointerTott__DeviceCapabilitiesExtension(soap, tag, id, (tt__DeviceCapabilitiesExtension *const*)ptr, "tt:DeviceCapabilitiesExtension"); - case SOAP_TYPE_PointerTott__SecurityCapabilities: - return soap_out_PointerTott__SecurityCapabilities(soap, tag, id, (tt__SecurityCapabilities *const*)ptr, "tt:SecurityCapabilities"); - case SOAP_TYPE_PointerTott__IOCapabilities: - return soap_out_PointerTott__IOCapabilities(soap, tag, id, (tt__IOCapabilities *const*)ptr, "tt:IOCapabilities"); - case SOAP_TYPE_PointerTott__SystemCapabilities: - return soap_out_PointerTott__SystemCapabilities(soap, tag, id, (tt__SystemCapabilities *const*)ptr, "tt:SystemCapabilities"); - case SOAP_TYPE_PointerTott__NetworkCapabilities: - return soap_out_PointerTott__NetworkCapabilities(soap, tag, id, (tt__NetworkCapabilities *const*)ptr, "tt:NetworkCapabilities"); - case SOAP_TYPE_PointerTott__CapabilitiesExtension2: - return soap_out_PointerTott__CapabilitiesExtension2(soap, tag, id, (tt__CapabilitiesExtension2 *const*)ptr, "tt:CapabilitiesExtension2"); - case SOAP_TYPE_PointerTott__AnalyticsDeviceCapabilities: - return soap_out_PointerTott__AnalyticsDeviceCapabilities(soap, tag, id, (tt__AnalyticsDeviceCapabilities *const*)ptr, "tt:AnalyticsDeviceCapabilities"); - case SOAP_TYPE_PointerTott__ReceiverCapabilities: - return soap_out_PointerTott__ReceiverCapabilities(soap, tag, id, (tt__ReceiverCapabilities *const*)ptr, "tt:ReceiverCapabilities"); - case SOAP_TYPE_PointerTott__ReplayCapabilities: - return soap_out_PointerTott__ReplayCapabilities(soap, tag, id, (tt__ReplayCapabilities *const*)ptr, "tt:ReplayCapabilities"); - case SOAP_TYPE_PointerTott__SearchCapabilities: - return soap_out_PointerTott__SearchCapabilities(soap, tag, id, (tt__SearchCapabilities *const*)ptr, "tt:SearchCapabilities"); - case SOAP_TYPE_PointerTott__RecordingCapabilities: - return soap_out_PointerTott__RecordingCapabilities(soap, tag, id, (tt__RecordingCapabilities *const*)ptr, "tt:RecordingCapabilities"); - case SOAP_TYPE_PointerTott__DisplayCapabilities: - return soap_out_PointerTott__DisplayCapabilities(soap, tag, id, (tt__DisplayCapabilities *const*)ptr, "tt:DisplayCapabilities"); - case SOAP_TYPE_PointerTott__DeviceIOCapabilities: - return soap_out_PointerTott__DeviceIOCapabilities(soap, tag, id, (tt__DeviceIOCapabilities *const*)ptr, "tt:DeviceIOCapabilities"); - case SOAP_TYPE_PointerTott__CapabilitiesExtension: - return soap_out_PointerTott__CapabilitiesExtension(soap, tag, id, (tt__CapabilitiesExtension *const*)ptr, "tt:CapabilitiesExtension"); - case SOAP_TYPE_PointerTott__PTZCapabilities: - return soap_out_PointerTott__PTZCapabilities(soap, tag, id, (tt__PTZCapabilities *const*)ptr, "tt:PTZCapabilities"); - case SOAP_TYPE_PointerTott__MediaCapabilities: - return soap_out_PointerTott__MediaCapabilities(soap, tag, id, (tt__MediaCapabilities *const*)ptr, "tt:MediaCapabilities"); - case SOAP_TYPE_PointerTott__ImagingCapabilities: - return soap_out_PointerTott__ImagingCapabilities(soap, tag, id, (tt__ImagingCapabilities *const*)ptr, "tt:ImagingCapabilities"); - case SOAP_TYPE_PointerTott__EventCapabilities: - return soap_out_PointerTott__EventCapabilities(soap, tag, id, (tt__EventCapabilities *const*)ptr, "tt:EventCapabilities"); - case SOAP_TYPE_PointerTott__DeviceCapabilities: - return soap_out_PointerTott__DeviceCapabilities(soap, tag, id, (tt__DeviceCapabilities *const*)ptr, "tt:DeviceCapabilities"); - case SOAP_TYPE_PointerTott__AnalyticsCapabilities: - return soap_out_PointerTott__AnalyticsCapabilities(soap, tag, id, (tt__AnalyticsCapabilities *const*)ptr, "tt:AnalyticsCapabilities"); - case SOAP_TYPE_PointerTott__Dot11AvailableNetworksExtension: - return soap_out_PointerTott__Dot11AvailableNetworksExtension(soap, tag, id, (tt__Dot11AvailableNetworksExtension *const*)ptr, "tt:Dot11AvailableNetworksExtension"); - case SOAP_TYPE_PointerTott__Dot11SignalStrength: - return soap_out_PointerTott__Dot11SignalStrength(soap, tag, id, (enum tt__Dot11SignalStrength *const*)ptr, "tt:Dot11SignalStrength"); - case SOAP_TYPE_PointerTott__Dot11PSKSetExtension: - return soap_out_PointerTott__Dot11PSKSetExtension(soap, tag, id, (tt__Dot11PSKSetExtension *const*)ptr, "tt:Dot11PSKSetExtension"); - case SOAP_TYPE_PointerTott__Dot11PSKPassphrase: - return soap_out_PointerTott__Dot11PSKPassphrase(soap, tag, id, (std::string *const*)ptr, "tt:Dot11PSKPassphrase"); - case SOAP_TYPE_PointerTott__Dot11PSK: - return soap_out_PointerTott__Dot11PSK(soap, tag, id, (xsd__hexBinary *const*)ptr, "tt:Dot11PSK"); - case SOAP_TYPE_PointerTott__Dot11SecurityConfigurationExtension: - return soap_out_PointerTott__Dot11SecurityConfigurationExtension(soap, tag, id, (tt__Dot11SecurityConfigurationExtension *const*)ptr, "tt:Dot11SecurityConfigurationExtension"); - case SOAP_TYPE_PointerTott__Dot11PSKSet: - return soap_out_PointerTott__Dot11PSKSet(soap, tag, id, (tt__Dot11PSKSet *const*)ptr, "tt:Dot11PSKSet"); - case SOAP_TYPE_PointerTott__Dot11Cipher: - return soap_out_PointerTott__Dot11Cipher(soap, tag, id, (enum tt__Dot11Cipher *const*)ptr, "tt:Dot11Cipher"); - case SOAP_TYPE_PointerTott__Dot11SecurityConfiguration: - return soap_out_PointerTott__Dot11SecurityConfiguration(soap, tag, id, (tt__Dot11SecurityConfiguration *const*)ptr, "tt:Dot11SecurityConfiguration"); - case SOAP_TYPE_PointerTott__IPAddressFilterExtension: - return soap_out_PointerTott__IPAddressFilterExtension(soap, tag, id, (tt__IPAddressFilterExtension *const*)ptr, "tt:IPAddressFilterExtension"); - case SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension2: - return soap_out_PointerTott__NetworkZeroConfigurationExtension2(soap, tag, id, (tt__NetworkZeroConfigurationExtension2 *const*)ptr, "tt:NetworkZeroConfigurationExtension2"); - case SOAP_TYPE_PointerTott__NetworkZeroConfiguration: - return soap_out_PointerTott__NetworkZeroConfiguration(soap, tag, id, (tt__NetworkZeroConfiguration *const*)ptr, "tt:NetworkZeroConfiguration"); - case SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension: - return soap_out_PointerTott__NetworkZeroConfigurationExtension(soap, tag, id, (tt__NetworkZeroConfigurationExtension *const*)ptr, "tt:NetworkZeroConfigurationExtension"); - case SOAP_TYPE_PointerTott__IPv6DHCPConfiguration: - return soap_out_PointerTott__IPv6DHCPConfiguration(soap, tag, id, (enum tt__IPv6DHCPConfiguration *const*)ptr, "tt:IPv6DHCPConfiguration"); - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension2: - return soap_out_PointerTott__NetworkInterfaceSetConfigurationExtension2(soap, tag, id, (tt__NetworkInterfaceSetConfigurationExtension2 *const*)ptr, "tt:NetworkInterfaceSetConfigurationExtension2"); - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension: - return soap_out_PointerTott__NetworkInterfaceSetConfigurationExtension(soap, tag, id, (tt__NetworkInterfaceSetConfigurationExtension *const*)ptr, "tt:NetworkInterfaceSetConfigurationExtension"); - case SOAP_TYPE_PointerTott__IPv6NetworkInterfaceSetConfiguration: - return soap_out_PointerTott__IPv6NetworkInterfaceSetConfiguration(soap, tag, id, (tt__IPv6NetworkInterfaceSetConfiguration *const*)ptr, "tt:IPv6NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_PointerTott__IPv4NetworkInterfaceSetConfiguration: - return soap_out_PointerTott__IPv4NetworkInterfaceSetConfiguration(soap, tag, id, (tt__IPv4NetworkInterfaceSetConfiguration *const*)ptr, "tt:IPv4NetworkInterfaceSetConfiguration"); - case SOAP_TYPE_PointerTott__DynamicDNSInformationExtension: - return soap_out_PointerTott__DynamicDNSInformationExtension(soap, tag, id, (tt__DynamicDNSInformationExtension *const*)ptr, "tt:DynamicDNSInformationExtension"); - case SOAP_TYPE_PointerToxsd__duration: - return soap_out_PointerToxsd__duration(soap, tag, id, (std::string *const*)ptr, "xsd:duration"); - case SOAP_TYPE_PointerTott__NTPInformationExtension: - return soap_out_PointerTott__NTPInformationExtension(soap, tag, id, (tt__NTPInformationExtension *const*)ptr, "tt:NTPInformationExtension"); - case SOAP_TYPE_PointerTott__NetworkHost: - return soap_out_PointerTott__NetworkHost(soap, tag, id, (tt__NetworkHost *const*)ptr, "tt:NetworkHost"); - case SOAP_TYPE_PointerTott__DNSInformationExtension: - return soap_out_PointerTott__DNSInformationExtension(soap, tag, id, (tt__DNSInformationExtension *const*)ptr, "tt:DNSInformationExtension"); - case SOAP_TYPE_PointerTott__HostnameInformationExtension: - return soap_out_PointerTott__HostnameInformationExtension(soap, tag, id, (tt__HostnameInformationExtension *const*)ptr, "tt:HostnameInformationExtension"); - case SOAP_TYPE_PointerToxsd__token: - return soap_out_PointerToxsd__token(soap, tag, id, (std::string *const*)ptr, "xsd:token"); - case SOAP_TYPE_PointerTott__NetworkHostExtension: - return soap_out_PointerTott__NetworkHostExtension(soap, tag, id, (tt__NetworkHostExtension *const*)ptr, "tt:NetworkHostExtension"); - case SOAP_TYPE_PointerTott__DNSName: - return soap_out_PointerTott__DNSName(soap, tag, id, (std::string *const*)ptr, "tt:DNSName"); - case SOAP_TYPE_PointerTott__IPv6Address: - return soap_out_PointerTott__IPv6Address(soap, tag, id, (std::string *const*)ptr, "tt:IPv6Address"); - case SOAP_TYPE_PointerTott__IPv4Address: - return soap_out_PointerTott__IPv4Address(soap, tag, id, (std::string *const*)ptr, "tt:IPv4Address"); - case SOAP_TYPE_PointerTott__NetworkProtocolExtension: - return soap_out_PointerTott__NetworkProtocolExtension(soap, tag, id, (tt__NetworkProtocolExtension *const*)ptr, "tt:NetworkProtocolExtension"); - case SOAP_TYPE_PointerTott__IPv6ConfigurationExtension: - return soap_out_PointerTott__IPv6ConfigurationExtension(soap, tag, id, (tt__IPv6ConfigurationExtension *const*)ptr, "tt:IPv6ConfigurationExtension"); - case SOAP_TYPE_PointerTott__PrefixedIPv6Address: - return soap_out_PointerTott__PrefixedIPv6Address(soap, tag, id, (tt__PrefixedIPv6Address *const*)ptr, "tt:PrefixedIPv6Address"); - case SOAP_TYPE_PointerTott__PrefixedIPv4Address: - return soap_out_PointerTott__PrefixedIPv4Address(soap, tag, id, (tt__PrefixedIPv4Address *const*)ptr, "tt:PrefixedIPv4Address"); - case SOAP_TYPE_PointerTott__IPv4Configuration: - return soap_out_PointerTott__IPv4Configuration(soap, tag, id, (tt__IPv4Configuration *const*)ptr, "tt:IPv4Configuration"); - case SOAP_TYPE_PointerTott__IPv6Configuration: - return soap_out_PointerTott__IPv6Configuration(soap, tag, id, (tt__IPv6Configuration *const*)ptr, "tt:IPv6Configuration"); - case SOAP_TYPE_PointerTott__NetworkInterfaceConnectionSetting: - return soap_out_PointerTott__NetworkInterfaceConnectionSetting(soap, tag, id, (tt__NetworkInterfaceConnectionSetting *const*)ptr, "tt:NetworkInterfaceConnectionSetting"); - case SOAP_TYPE_PointerTott__NetworkInterfaceExtension2: - return soap_out_PointerTott__NetworkInterfaceExtension2(soap, tag, id, (tt__NetworkInterfaceExtension2 *const*)ptr, "tt:NetworkInterfaceExtension2"); - case SOAP_TYPE_PointerTott__Dot11Configuration: - return soap_out_PointerTott__Dot11Configuration(soap, tag, id, (tt__Dot11Configuration *const*)ptr, "tt:Dot11Configuration"); - case SOAP_TYPE_PointerTott__Dot3Configuration: - return soap_out_PointerTott__Dot3Configuration(soap, tag, id, (tt__Dot3Configuration *const*)ptr, "tt:Dot3Configuration"); - case SOAP_TYPE_PointerTott__Transport: - return soap_out_PointerTott__Transport(soap, tag, id, (tt__Transport *const*)ptr, "tt:Transport"); - case SOAP_TYPE_PointerTott__IPAddress: - return soap_out_PointerTott__IPAddress(soap, tag, id, (tt__IPAddress *const*)ptr, "tt:IPAddress"); - case SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptionsExtension: - return soap_out_PointerTott__AudioDecoderConfigurationOptionsExtension(soap, tag, id, (tt__AudioDecoderConfigurationOptionsExtension *const*)ptr, "tt:AudioDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__G726DecOptions: - return soap_out_PointerTott__G726DecOptions(soap, tag, id, (tt__G726DecOptions *const*)ptr, "tt:G726DecOptions"); - case SOAP_TYPE_PointerTott__G711DecOptions: - return soap_out_PointerTott__G711DecOptions(soap, tag, id, (tt__G711DecOptions *const*)ptr, "tt:G711DecOptions"); - case SOAP_TYPE_PointerTott__AACDecOptions: - return soap_out_PointerTott__AACDecOptions(soap, tag, id, (tt__AACDecOptions *const*)ptr, "tt:AACDecOptions"); - case SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptionsExtension: - return soap_out_PointerTott__VideoDecoderConfigurationOptionsExtension(soap, tag, id, (tt__VideoDecoderConfigurationOptionsExtension *const*)ptr, "tt:VideoDecoderConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__Mpeg4DecOptions: - return soap_out_PointerTott__Mpeg4DecOptions(soap, tag, id, (tt__Mpeg4DecOptions *const*)ptr, "tt:Mpeg4DecOptions"); - case SOAP_TYPE_PointerTott__H264DecOptions: - return soap_out_PointerTott__H264DecOptions(soap, tag, id, (tt__H264DecOptions *const*)ptr, "tt:H264DecOptions"); - case SOAP_TYPE_PointerTott__JpegDecOptions: - return soap_out_PointerTott__JpegDecOptions(soap, tag, id, (tt__JpegDecOptions *const*)ptr, "tt:JpegDecOptions"); - case SOAP_TYPE_PointerTott__PTZStatusFilterOptionsExtension: - return soap_out_PointerTott__PTZStatusFilterOptionsExtension(soap, tag, id, (tt__PTZStatusFilterOptionsExtension *const*)ptr, "tt:PTZStatusFilterOptionsExtension"); - case SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension2: - return soap_out_PointerTott__MetadataConfigurationOptionsExtension2(soap, tag, id, (tt__MetadataConfigurationOptionsExtension2 *const*)ptr, "tt:MetadataConfigurationOptionsExtension2"); - case SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension: - return soap_out_PointerTott__MetadataConfigurationOptionsExtension(soap, tag, id, (tt__MetadataConfigurationOptionsExtension *const*)ptr, "tt:MetadataConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__PTZStatusFilterOptions: - return soap_out_PointerTott__PTZStatusFilterOptions(soap, tag, id, (tt__PTZStatusFilterOptions *const*)ptr, "tt:PTZStatusFilterOptions"); - case SOAP_TYPE_PointerTo_tt__EventSubscription_SubscriptionPolicy: - return soap_out_PointerTo_tt__EventSubscription_SubscriptionPolicy(soap, tag, id, (_tt__EventSubscription_SubscriptionPolicy *const*)ptr, "tt:EventSubscription-SubscriptionPolicy"); - case SOAP_TYPE_PointerTott__AudioEncoderConfigurationOption: - return soap_out_PointerTott__AudioEncoderConfigurationOption(soap, tag, id, (tt__AudioEncoderConfigurationOption *const*)ptr, "tt:AudioEncoderConfigurationOption"); - case SOAP_TYPE_PointerTott__AudioSourceOptionsExtension: - return soap_out_PointerTott__AudioSourceOptionsExtension(soap, tag, id, (tt__AudioSourceOptionsExtension *const*)ptr, "tt:AudioSourceOptionsExtension"); - case SOAP_TYPE_PointerTott__StringAttrList: - return soap_out_PointerTott__StringAttrList(soap, tag, id, (std::string *const*)ptr, "tt:StringAttrList"); - case SOAP_TYPE_PointerTott__FloatAttrList: - return soap_out_PointerTott__FloatAttrList(soap, tag, id, (std::string *const*)ptr, "tt:FloatAttrList"); - case SOAP_TYPE_PointerTott__IntAttrList: - return soap_out_PointerTott__IntAttrList(soap, tag, id, (std::string *const*)ptr, "tt:IntAttrList"); - case SOAP_TYPE_PointerTott__VideoResolution2: - return soap_out_PointerTott__VideoResolution2(soap, tag, id, (tt__VideoResolution2 *const*)ptr, "tt:VideoResolution2"); - case SOAP_TYPE_PointerTott__FloatRange: - return soap_out_PointerTott__FloatRange(soap, tag, id, (tt__FloatRange *const*)ptr, "tt:FloatRange"); - case SOAP_TYPE_PointerTott__VideoResolution: - return soap_out_PointerTott__VideoResolution(soap, tag, id, (tt__VideoResolution *const*)ptr, "tt:VideoResolution"); - case SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension2: - return soap_out_PointerTott__VideoEncoderOptionsExtension2(soap, tag, id, (tt__VideoEncoderOptionsExtension2 *const*)ptr, "tt:VideoEncoderOptionsExtension2"); - case SOAP_TYPE_PointerTott__H264Options2: - return soap_out_PointerTott__H264Options2(soap, tag, id, (tt__H264Options2 *const*)ptr, "tt:H264Options2"); - case SOAP_TYPE_PointerTott__Mpeg4Options2: - return soap_out_PointerTott__Mpeg4Options2(soap, tag, id, (tt__Mpeg4Options2 *const*)ptr, "tt:Mpeg4Options2"); - case SOAP_TYPE_PointerTott__JpegOptions2: - return soap_out_PointerTott__JpegOptions2(soap, tag, id, (tt__JpegOptions2 *const*)ptr, "tt:JpegOptions2"); - case SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension: - return soap_out_PointerTott__VideoEncoderOptionsExtension(soap, tag, id, (tt__VideoEncoderOptionsExtension *const*)ptr, "tt:VideoEncoderOptionsExtension"); - case SOAP_TYPE_PointerTott__H264Options: - return soap_out_PointerTott__H264Options(soap, tag, id, (tt__H264Options *const*)ptr, "tt:H264Options"); - case SOAP_TYPE_PointerTott__Mpeg4Options: - return soap_out_PointerTott__Mpeg4Options(soap, tag, id, (tt__Mpeg4Options *const*)ptr, "tt:Mpeg4Options"); - case SOAP_TYPE_PointerTott__JpegOptions: - return soap_out_PointerTott__JpegOptions(soap, tag, id, (tt__JpegOptions *const*)ptr, "tt:JpegOptions"); - case SOAP_TYPE_PointerTott__RotateOptionsExtension: - return soap_out_PointerTott__RotateOptionsExtension(soap, tag, id, (tt__RotateOptionsExtension *const*)ptr, "tt:RotateOptionsExtension"); - case SOAP_TYPE_PointerTott__IntItems: - return soap_out_PointerTott__IntItems(soap, tag, id, (tt__IntItems *const*)ptr, "tt:IntItems"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension2: - return soap_out_PointerTott__VideoSourceConfigurationOptionsExtension2(soap, tag, id, (tt__VideoSourceConfigurationOptionsExtension2 *const*)ptr, "tt:VideoSourceConfigurationOptionsExtension2"); - case SOAP_TYPE_PointerTott__RotateOptions: - return soap_out_PointerTott__RotateOptions(soap, tag, id, (tt__RotateOptions *const*)ptr, "tt:RotateOptions"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension: - return soap_out_PointerTott__VideoSourceConfigurationOptionsExtension(soap, tag, id, (tt__VideoSourceConfigurationOptionsExtension *const*)ptr, "tt:VideoSourceConfigurationOptionsExtension"); - case SOAP_TYPE_PointerTott__IntRectangleRange: - return soap_out_PointerTott__IntRectangleRange(soap, tag, id, (tt__IntRectangleRange *const*)ptr, "tt:IntRectangleRange"); - case SOAP_TYPE_PointerTott__LensProjection: - return soap_out_PointerTott__LensProjection(soap, tag, id, (tt__LensProjection *const*)ptr, "tt:LensProjection"); - case SOAP_TYPE_PointerTott__LensOffset: - return soap_out_PointerTott__LensOffset(soap, tag, id, (tt__LensOffset *const*)ptr, "tt:LensOffset"); - case SOAP_TYPE_PointerTott__RotateExtension: - return soap_out_PointerTott__RotateExtension(soap, tag, id, (tt__RotateExtension *const*)ptr, "tt:RotateExtension"); - case SOAP_TYPE_PointerTott__SceneOrientation: - return soap_out_PointerTott__SceneOrientation(soap, tag, id, (tt__SceneOrientation *const*)ptr, "tt:SceneOrientation"); - case SOAP_TYPE_PointerTott__LensDescription: - return soap_out_PointerTott__LensDescription(soap, tag, id, (tt__LensDescription *const*)ptr, "tt:LensDescription"); - case SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension2: - return soap_out_PointerTott__VideoSourceConfigurationExtension2(soap, tag, id, (tt__VideoSourceConfigurationExtension2 *const*)ptr, "tt:VideoSourceConfigurationExtension2"); - case SOAP_TYPE_PointerTott__Rotate: - return soap_out_PointerTott__Rotate(soap, tag, id, (tt__Rotate *const*)ptr, "tt:Rotate"); - case SOAP_TYPE_PointerTott__ProfileExtension2: - return soap_out_PointerTott__ProfileExtension2(soap, tag, id, (tt__ProfileExtension2 *const*)ptr, "tt:ProfileExtension2"); - case SOAP_TYPE_PointerTott__AudioDecoderConfiguration: - return soap_out_PointerTott__AudioDecoderConfiguration(soap, tag, id, (tt__AudioDecoderConfiguration *const*)ptr, "tt:AudioDecoderConfiguration"); - case SOAP_TYPE_PointerTott__AudioOutputConfiguration: - return soap_out_PointerTott__AudioOutputConfiguration(soap, tag, id, (tt__AudioOutputConfiguration *const*)ptr, "tt:AudioOutputConfiguration"); - case SOAP_TYPE_PointerTott__ProfileExtension: - return soap_out_PointerTott__ProfileExtension(soap, tag, id, (tt__ProfileExtension *const*)ptr, "tt:ProfileExtension"); - case SOAP_TYPE_PointerTott__MetadataConfiguration: - return soap_out_PointerTott__MetadataConfiguration(soap, tag, id, (tt__MetadataConfiguration *const*)ptr, "tt:MetadataConfiguration"); - case SOAP_TYPE_PointerTott__PTZConfiguration: - return soap_out_PointerTott__PTZConfiguration(soap, tag, id, (tt__PTZConfiguration *const*)ptr, "tt:PTZConfiguration"); - case SOAP_TYPE_PointerTott__VideoAnalyticsConfiguration: - return soap_out_PointerTott__VideoAnalyticsConfiguration(soap, tag, id, (tt__VideoAnalyticsConfiguration *const*)ptr, "tt:VideoAnalyticsConfiguration"); - case SOAP_TYPE_PointerTott__AudioEncoderConfiguration: - return soap_out_PointerTott__AudioEncoderConfiguration(soap, tag, id, (tt__AudioEncoderConfiguration *const*)ptr, "tt:AudioEncoderConfiguration"); - case SOAP_TYPE_PointerTott__VideoEncoderConfiguration: - return soap_out_PointerTott__VideoEncoderConfiguration(soap, tag, id, (tt__VideoEncoderConfiguration *const*)ptr, "tt:VideoEncoderConfiguration"); - case SOAP_TYPE_PointerTott__AudioSourceConfiguration: - return soap_out_PointerTott__AudioSourceConfiguration(soap, tag, id, (tt__AudioSourceConfiguration *const*)ptr, "tt:AudioSourceConfiguration"); - case SOAP_TYPE_PointerTott__VideoSourceConfiguration: - return soap_out_PointerTott__VideoSourceConfiguration(soap, tag, id, (tt__VideoSourceConfiguration *const*)ptr, "tt:VideoSourceConfiguration"); - case SOAP_TYPE_PointerTott__VideoSourceExtension2: - return soap_out_PointerTott__VideoSourceExtension2(soap, tag, id, (tt__VideoSourceExtension2 *const*)ptr, "tt:VideoSourceExtension2"); - case SOAP_TYPE_PointerTott__ImagingSettings20: - return soap_out_PointerTott__ImagingSettings20(soap, tag, id, (tt__ImagingSettings20 *const*)ptr, "tt:ImagingSettings20"); - case SOAP_TYPE_PointerTott__IntRange: - return soap_out_PointerTott__IntRange(soap, tag, id, (tt__IntRange *const*)ptr, "tt:IntRange"); - case SOAP_TYPE_PointerTott__ReferenceToken: - return soap_out_PointerTott__ReferenceToken(soap, tag, id, (std::string *const*)ptr, "tt:ReferenceToken"); - case SOAP_TYPE_PointerTott__LocalOrientation: - return soap_out_PointerTott__LocalOrientation(soap, tag, id, (tt__LocalOrientation *const*)ptr, "tt:LocalOrientation"); - case SOAP_TYPE_PointerTott__LocalLocation: - return soap_out_PointerTott__LocalLocation(soap, tag, id, (tt__LocalLocation *const*)ptr, "tt:LocalLocation"); - case SOAP_TYPE_PointerTott__GeoOrientation: - return soap_out_PointerTott__GeoOrientation(soap, tag, id, (tt__GeoOrientation *const*)ptr, "tt:GeoOrientation"); - case SOAP_TYPE_PointerTott__GeoLocation: - return soap_out_PointerTott__GeoLocation(soap, tag, id, (tt__GeoLocation *const*)ptr, "tt:GeoLocation"); - case SOAP_TYPE_PointerTodouble: - return soap_out_PointerTodouble(soap, tag, id, (double *const*)ptr, "xsd:double"); - case SOAP_TYPE_PointerTott__TransformationExtension: - return soap_out_PointerTott__TransformationExtension(soap, tag, id, (tt__TransformationExtension *const*)ptr, "tt:TransformationExtension"); - case SOAP_TYPE_PointerToxsd__anyType: - return soap_out_PointerToxsd__anyType(soap, tag, id, (struct soap_dom_element *const*)ptr, "xsd:anyType"); - case SOAP_TYPE_PointerTott__ColorCovariance: - return soap_out_PointerTott__ColorCovariance(soap, tag, id, (tt__ColorCovariance *const*)ptr, "tt:ColorCovariance"); - case SOAP_TYPE_PointerTott__Color: - return soap_out_PointerTott__Color(soap, tag, id, (tt__Color *const*)ptr, "tt:Color"); - case SOAP_TYPE_PointerTott__Vector: - return soap_out_PointerTott__Vector(soap, tag, id, (tt__Vector *const*)ptr, "tt:Vector"); - case SOAP_TYPE_PointerTofloat: - return soap_out_PointerTofloat(soap, tag, id, (float *const*)ptr, "xsd:float"); - case SOAP_TYPE_PointerTott__MoveStatus: - return soap_out_PointerTott__MoveStatus(soap, tag, id, (enum tt__MoveStatus *const*)ptr, "tt:MoveStatus"); - case SOAP_TYPE_PointerTostd__string: - return soap_out_PointerTostd__string(soap, tag, id, (std::string *const*)ptr, "xsd:string"); - case SOAP_TYPE_PointerTott__PTZMoveStatus: - return soap_out_PointerTott__PTZMoveStatus(soap, tag, id, (tt__PTZMoveStatus *const*)ptr, "tt:PTZMoveStatus"); - case SOAP_TYPE_PointerTott__PTZVector: - return soap_out_PointerTott__PTZVector(soap, tag, id, (tt__PTZVector *const*)ptr, "tt:PTZVector"); - case SOAP_TYPE_PointerTott__Vector1D: - return soap_out_PointerTott__Vector1D(soap, tag, id, (tt__Vector1D *const*)ptr, "tt:Vector1D"); - case SOAP_TYPE_PointerTott__Vector2D: - return soap_out_PointerTott__Vector2D(soap, tag, id, (tt__Vector2D *const*)ptr, "tt:Vector2D"); - case SOAP_TYPE_PointerToxsd__anyURI: - return soap_out_PointerToxsd__anyURI(soap, tag, id, (std::string *const*)ptr, "xsd:anyURI"); - case SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy: - return soap_out_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(soap, tag, id, (_tev__CreatePullPointSubscription_SubscriptionPolicy *const*)ptr, "tev:CreatePullPointSubscription-SubscriptionPolicy"); - case SOAP_TYPE_PointerTotev__Capabilities: - return soap_out_PointerTotev__Capabilities(soap, tag, id, (tev__Capabilities *const*)ptr, "tev:Capabilities"); - case SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_FaultCause: - return soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, tag, id, (_wsrfbf__BaseFaultType_FaultCause *const*)ptr, "wsrfbf:BaseFaultType-FaultCause"); - case SOAP_TYPE_PointerTo_xml__lang: - return soap_out_PointerTo_xml__lang(soap, tag, id, (std::string *const*)ptr, "xml:lang"); - case SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_ErrorCode: - return soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, tag, id, (_wsrfbf__BaseFaultType_ErrorCode *const*)ptr, "wsrfbf:BaseFaultType-ErrorCode"); - case SOAP_TYPE_PointerToxsd__nonNegativeInteger: - return soap_out_PointerToxsd__nonNegativeInteger(soap, tag, id, (std::string *const*)ptr, "xsd:nonNegativeInteger"); - case SOAP_TYPE_PointerTo_wsnt__Subscribe_SubscriptionPolicy: - return soap_out_PointerTo_wsnt__Subscribe_SubscriptionPolicy(soap, tag, id, (_wsnt__Subscribe_SubscriptionPolicy *const*)ptr, "wsnt:Subscribe-SubscriptionPolicy"); - case SOAP_TYPE_PointerTowsnt__AbsoluteOrRelativeTimeType: - return soap_out_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, tag, id, (std::string *const*)ptr, "wsnt:AbsoluteOrRelativeTimeType"); - case SOAP_TYPE_PointerTowsnt__NotificationMessageHolderType: - return soap_out_PointerTowsnt__NotificationMessageHolderType(soap, tag, id, (wsnt__NotificationMessageHolderType *const*)ptr, "wsnt:NotificationMessageHolderType"); - case SOAP_TYPE_PointerTowsnt__SubscriptionPolicyType: - return soap_out_PointerTowsnt__SubscriptionPolicyType(soap, tag, id, (wsnt__SubscriptionPolicyType *const*)ptr, "wsnt:SubscriptionPolicyType"); - case SOAP_TYPE_PointerTowsnt__FilterType: - return soap_out_PointerTowsnt__FilterType(soap, tag, id, (wsnt__FilterType *const*)ptr, "wsnt:FilterType"); - case SOAP_TYPE_PointerTowstop__TopicSetType: - return soap_out_PointerTowstop__TopicSetType(soap, tag, id, (wstop__TopicSetType *const*)ptr, "wstop:TopicSetType"); - case SOAP_TYPE_PointerTobool: - return soap_out_PointerTobool(soap, tag, id, (bool *const*)ptr, "xsd:boolean"); - case SOAP_TYPE_PointerTowsnt__TopicExpressionType: - return soap_out_PointerTowsnt__TopicExpressionType(soap, tag, id, (wsnt__TopicExpressionType *const*)ptr, "wsnt:TopicExpressionType"); - case SOAP_TYPE_PointerTowsa5__EndpointReferenceType: - return soap_out_PointerTowsa5__EndpointReferenceType(soap, tag, id, (struct wsa5__EndpointReferenceType *const*)ptr, "wsa5:EndpointReferenceType"); - case SOAP_TYPE_PointerTounsignedByte: - return soap_out_PointerTounsignedByte(soap, tag, id, (unsigned char *const*)ptr, "xsd:unsignedByte"); - case SOAP_TYPE_PointerTochan__ChannelInstanceType: - return soap_out_PointerTochan__ChannelInstanceType(soap, tag, id, (struct chan__ChannelInstanceType *const*)ptr, "chan:ChannelInstanceType"); - case SOAP_TYPE_PointerTo_wsa5__FaultTo: - return soap_out_PointerTo_wsa5__FaultTo(soap, tag, id, (struct wsa5__EndpointReferenceType *const*)ptr, "wsa5:FaultTo"); - case SOAP_TYPE_PointerTo_wsa5__ReplyTo: - return soap_out_PointerTo_wsa5__ReplyTo(soap, tag, id, (struct wsa5__EndpointReferenceType *const*)ptr, "wsa5:ReplyTo"); - case SOAP_TYPE_PointerTo_wsa5__From: - return soap_out_PointerTo_wsa5__From(soap, tag, id, (struct wsa5__EndpointReferenceType *const*)ptr, "wsa5:From"); - case SOAP_TYPE_PointerTo_wsa5__RelatesTo: - return soap_out_PointerTo_wsa5__RelatesTo(soap, tag, id, (struct wsa5__RelatesToType *const*)ptr, "wsa5:RelatesTo"); - case SOAP_TYPE__wsa5__ProblemIRI: - return soap_out_string(soap, "wsa5:ProblemIRI", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsa5__ProblemHeaderQName: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "xsd:QName"); - case SOAP_TYPE__wsa5__Action: - return soap_out_string(soap, "wsa5:Action", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsa5__To: - return soap_out_string(soap, "wsa5:To", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsa5__MessageID: - return soap_out_string(soap, "wsa5:MessageID", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE_PointerTowsa5__MetadataType: - return soap_out_PointerTowsa5__MetadataType(soap, tag, id, (struct wsa5__MetadataType *const*)ptr, "wsa5:MetadataType"); - case SOAP_TYPE_PointerTowsa5__ReferenceParametersType: - return soap_out_PointerTowsa5__ReferenceParametersType(soap, tag, id, (struct wsa5__ReferenceParametersType *const*)ptr, "wsa5:ReferenceParametersType"); - case SOAP_TYPE_wsa5__FaultCodesOpenEnumType: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "wsa5:FaultCodesOpenEnumType"); - case SOAP_TYPE_wsa5__RelationshipTypeOpenEnum: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "wsa5:RelationshipTypeOpenEnum"); - case SOAP_TYPE_PointerTo_wsse__Security: - return soap_out_PointerTo_wsse__Security(soap, tag, id, (struct _wsse__Security *const*)ptr, "wsse:Security"); - case SOAP_TYPE_PointerTods__SignatureType: - return soap_out_PointerTods__SignatureType(soap, tag, id, (struct ds__SignatureType *const*)ptr, "ds:SignatureType"); - case SOAP_TYPE_PointerTowsc__SecurityContextTokenType: - return soap_out_PointerTowsc__SecurityContextTokenType(soap, tag, id, (struct wsc__SecurityContextTokenType *const*)ptr, "wsc:SecurityContextTokenType"); - case SOAP_TYPE_PointerTo_wsse__BinarySecurityToken: - return soap_out_PointerTo_wsse__BinarySecurityToken(soap, tag, id, (struct _wsse__BinarySecurityToken *const*)ptr, "wsse:BinarySecurityToken"); - case SOAP_TYPE_PointerTo_wsse__UsernameToken: - return soap_out_PointerTo_wsse__UsernameToken(soap, tag, id, (struct _wsse__UsernameToken *const*)ptr, "wsse:UsernameToken"); - case SOAP_TYPE_PointerTo_wsu__Timestamp: - return soap_out_PointerTo_wsu__Timestamp(soap, tag, id, (struct _wsu__Timestamp *const*)ptr, "wsu:Timestamp"); - case SOAP_TYPE__saml2__AuthenticatingAuthority: - return soap_out_string(soap, "saml2:AuthenticatingAuthority", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__saml2__AuthnContextDeclRef: - return soap_out_string(soap, "saml2:AuthnContextDeclRef", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__saml2__AuthnContextClassRef: - return soap_out_string(soap, "saml2:AuthnContextClassRef", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__saml2__Audience: - return soap_out_string(soap, "saml2:Audience", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__saml2__AssertionURIRef: - return soap_out_string(soap, "saml2:AssertionURIRef", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__saml2__AssertionIDRef: - return soap_out_string(soap, "saml2:AssertionIDRef", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE_PointerToPointerTo_ds__KeyInfo: - return soap_out_PointerToPointerTo_ds__KeyInfo(soap, tag, id, (struct ds__KeyInfoType **const*)ptr, "ds:KeyInfo"); - case SOAP_TYPE_PointerTosaml2__AttributeType: - return soap_out_PointerTosaml2__AttributeType(soap, tag, id, (struct saml2__AttributeType *const*)ptr, "saml2:AttributeType"); - case SOAP_TYPE_PointerTosaml2__EvidenceType: - return soap_out_PointerTosaml2__EvidenceType(soap, tag, id, (struct saml2__EvidenceType *const*)ptr, "saml2:EvidenceType"); - case SOAP_TYPE_PointerTosaml2__ActionType: - return soap_out_PointerTosaml2__ActionType(soap, tag, id, (struct saml2__ActionType *const*)ptr, "saml2:ActionType"); - case SOAP_TYPE_PointerTosaml2__AuthnContextType: - return soap_out_PointerTosaml2__AuthnContextType(soap, tag, id, (struct saml2__AuthnContextType *const*)ptr, "saml2:AuthnContextType"); - case SOAP_TYPE_PointerTosaml2__SubjectLocalityType: - return soap_out_PointerTosaml2__SubjectLocalityType(soap, tag, id, (struct saml2__SubjectLocalityType *const*)ptr, "saml2:SubjectLocalityType"); - case SOAP_TYPE_PointerTosaml2__AssertionType: - return soap_out_PointerTosaml2__AssertionType(soap, tag, id, (struct saml2__AssertionType *const*)ptr, "saml2:AssertionType"); - case SOAP_TYPE_PointerTosaml2__ProxyRestrictionType: - return soap_out_PointerTosaml2__ProxyRestrictionType(soap, tag, id, (struct saml2__ProxyRestrictionType *const*)ptr, "saml2:ProxyRestrictionType"); - case SOAP_TYPE_PointerTosaml2__OneTimeUseType: - return soap_out_PointerTosaml2__OneTimeUseType(soap, tag, id, (struct saml2__OneTimeUseType *const*)ptr, "saml2:OneTimeUseType"); - case SOAP_TYPE_PointerTosaml2__AudienceRestrictionType: - return soap_out_PointerTosaml2__AudienceRestrictionType(soap, tag, id, (struct saml2__AudienceRestrictionType *const*)ptr, "saml2:AudienceRestrictionType"); - case SOAP_TYPE_PointerTosaml2__ConditionAbstractType: - return soap_out_PointerTosaml2__ConditionAbstractType(soap, tag, id, (struct saml2__ConditionAbstractType *const*)ptr, "saml2:ConditionAbstractType"); - case SOAP_TYPE_PointerTosaml2__SubjectConfirmationDataType: - return soap_out_PointerTosaml2__SubjectConfirmationDataType(soap, tag, id, (struct saml2__SubjectConfirmationDataType *const*)ptr, "saml2:SubjectConfirmationDataType"); - case SOAP_TYPE_PointerTosaml2__SubjectConfirmationType: - return soap_out_PointerTosaml2__SubjectConfirmationType(soap, tag, id, (struct saml2__SubjectConfirmationType *const*)ptr, "saml2:SubjectConfirmationType"); - case SOAP_TYPE_PointerTosaml2__EncryptedElementType: - return soap_out_PointerTosaml2__EncryptedElementType(soap, tag, id, (struct saml2__EncryptedElementType *const*)ptr, "saml2:EncryptedElementType"); - case SOAP_TYPE_PointerTosaml2__BaseIDAbstractType: - return soap_out_PointerTosaml2__BaseIDAbstractType(soap, tag, id, (struct saml2__BaseIDAbstractType *const*)ptr, "saml2:BaseIDAbstractType"); - case SOAP_TYPE_PointerTosaml2__AttributeStatementType: - return soap_out_PointerTosaml2__AttributeStatementType(soap, tag, id, (struct saml2__AttributeStatementType *const*)ptr, "saml2:AttributeStatementType"); - case SOAP_TYPE_PointerTosaml2__AuthzDecisionStatementType: - return soap_out_PointerTosaml2__AuthzDecisionStatementType(soap, tag, id, (struct saml2__AuthzDecisionStatementType *const*)ptr, "saml2:AuthzDecisionStatementType"); - case SOAP_TYPE_PointerTosaml2__AuthnStatementType: - return soap_out_PointerTosaml2__AuthnStatementType(soap, tag, id, (struct saml2__AuthnStatementType *const*)ptr, "saml2:AuthnStatementType"); - case SOAP_TYPE_PointerTosaml2__StatementAbstractType: - return soap_out_PointerTosaml2__StatementAbstractType(soap, tag, id, (struct saml2__StatementAbstractType *const*)ptr, "saml2:StatementAbstractType"); - case SOAP_TYPE_PointerTosaml2__AdviceType: - return soap_out_PointerTosaml2__AdviceType(soap, tag, id, (struct saml2__AdviceType *const*)ptr, "saml2:AdviceType"); - case SOAP_TYPE_PointerTosaml2__ConditionsType: - return soap_out_PointerTosaml2__ConditionsType(soap, tag, id, (struct saml2__ConditionsType *const*)ptr, "saml2:ConditionsType"); - case SOAP_TYPE_PointerTosaml2__SubjectType: - return soap_out_PointerTosaml2__SubjectType(soap, tag, id, (struct saml2__SubjectType *const*)ptr, "saml2:SubjectType"); - case SOAP_TYPE_PointerTosaml2__NameIDType: - return soap_out_PointerTosaml2__NameIDType(soap, tag, id, (struct saml2__NameIDType *const*)ptr, "saml2:NameIDType"); - case SOAP_TYPE_PointerToPointerToxenc__EncryptedKeyType: - return soap_out_PointerToPointerToxenc__EncryptedKeyType(soap, tag, id, (struct xenc__EncryptedKeyType **const*)ptr, "xenc:EncryptedKeyType"); - case SOAP_TYPE__saml1__ConfirmationMethod: - return soap_out_string(soap, "saml1:ConfirmationMethod", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__saml1__Audience: - return soap_out_string(soap, "saml1:Audience", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__saml1__AssertionIDReference: - return soap_out_string(soap, "saml1:AssertionIDReference", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE_PointerTosaml1__AttributeType: - return soap_out_PointerTosaml1__AttributeType(soap, tag, id, (struct saml1__AttributeType *const*)ptr, "saml1:AttributeType"); - case SOAP_TYPE_PointerTosaml1__EvidenceType: - return soap_out_PointerTosaml1__EvidenceType(soap, tag, id, (struct saml1__EvidenceType *const*)ptr, "saml1:EvidenceType"); - case SOAP_TYPE_PointerTosaml1__ActionType: - return soap_out_PointerTosaml1__ActionType(soap, tag, id, (struct saml1__ActionType *const*)ptr, "saml1:ActionType"); - case SOAP_TYPE_PointerTosaml1__AuthorityBindingType: - return soap_out_PointerTosaml1__AuthorityBindingType(soap, tag, id, (struct saml1__AuthorityBindingType *const*)ptr, "saml1:AuthorityBindingType"); - case SOAP_TYPE_PointerTosaml1__SubjectLocalityType: - return soap_out_PointerTosaml1__SubjectLocalityType(soap, tag, id, (struct saml1__SubjectLocalityType *const*)ptr, "saml1:SubjectLocalityType"); - case SOAP_TYPE_PointerTosaml1__SubjectType: - return soap_out_PointerTosaml1__SubjectType(soap, tag, id, (struct saml1__SubjectType *const*)ptr, "saml1:SubjectType"); - case SOAP_TYPE_PointerTostring: - return soap_out_PointerTostring(soap, tag, id, (char **const*)ptr, "xsd:string"); - case SOAP_TYPE_PointerTosaml1__SubjectConfirmationType: - return soap_out_PointerTosaml1__SubjectConfirmationType(soap, tag, id, (struct saml1__SubjectConfirmationType *const*)ptr, "saml1:SubjectConfirmationType"); - case SOAP_TYPE_PointerTosaml1__NameIdentifierType: - return soap_out_PointerTosaml1__NameIdentifierType(soap, tag, id, (struct saml1__NameIdentifierType *const*)ptr, "saml1:NameIdentifierType"); - case SOAP_TYPE_PointerTosaml1__AssertionType: - return soap_out_PointerTosaml1__AssertionType(soap, tag, id, (struct saml1__AssertionType *const*)ptr, "saml1:AssertionType"); - case SOAP_TYPE_PointerToxsd__dateTime: - return soap_out_PointerToxsd__dateTime(soap, tag, id, (struct timeval *const*)ptr, "xsd:dateTime"); - case SOAP_TYPE_PointerTosaml1__ConditionAbstractType: - return soap_out_PointerTosaml1__ConditionAbstractType(soap, tag, id, (struct saml1__ConditionAbstractType *const*)ptr, "saml1:ConditionAbstractType"); - case SOAP_TYPE_PointerTosaml1__DoNotCacheConditionType: - return soap_out_PointerTosaml1__DoNotCacheConditionType(soap, tag, id, (struct saml1__DoNotCacheConditionType *const*)ptr, "saml1:DoNotCacheConditionType"); - case SOAP_TYPE_PointerTosaml1__AudienceRestrictionConditionType: - return soap_out_PointerTosaml1__AudienceRestrictionConditionType(soap, tag, id, (struct saml1__AudienceRestrictionConditionType *const*)ptr, "saml1:AudienceRestrictionConditionType"); - case SOAP_TYPE_PointerTo_ds__Signature: - return soap_out_PointerTo_ds__Signature(soap, tag, id, (struct ds__SignatureType *const*)ptr, "ds:Signature"); - case SOAP_TYPE_PointerTosaml1__AttributeStatementType: - return soap_out_PointerTosaml1__AttributeStatementType(soap, tag, id, (struct saml1__AttributeStatementType *const*)ptr, "saml1:AttributeStatementType"); - case SOAP_TYPE_PointerTosaml1__AuthorizationDecisionStatementType: - return soap_out_PointerTosaml1__AuthorizationDecisionStatementType(soap, tag, id, (struct saml1__AuthorizationDecisionStatementType *const*)ptr, "saml1:AuthorizationDecisionStatementType"); - case SOAP_TYPE_PointerTosaml1__AuthenticationStatementType: - return soap_out_PointerTosaml1__AuthenticationStatementType(soap, tag, id, (struct saml1__AuthenticationStatementType *const*)ptr, "saml1:AuthenticationStatementType"); - case SOAP_TYPE_PointerTosaml1__SubjectStatementAbstractType: - return soap_out_PointerTosaml1__SubjectStatementAbstractType(soap, tag, id, (struct saml1__SubjectStatementAbstractType *const*)ptr, "saml1:SubjectStatementAbstractType"); - case SOAP_TYPE_PointerTosaml1__StatementAbstractType: - return soap_out_PointerTosaml1__StatementAbstractType(soap, tag, id, (struct saml1__StatementAbstractType *const*)ptr, "saml1:StatementAbstractType"); - case SOAP_TYPE_PointerTosaml1__AdviceType: - return soap_out_PointerTosaml1__AdviceType(soap, tag, id, (struct saml1__AdviceType *const*)ptr, "saml1:AdviceType"); - case SOAP_TYPE_PointerTosaml1__ConditionsType: - return soap_out_PointerTosaml1__ConditionsType(soap, tag, id, (struct saml1__ConditionsType *const*)ptr, "saml1:ConditionsType"); - case SOAP_TYPE_PointerToULONG64: - return soap_out_PointerToULONG64(soap, tag, id, (ULONG64 *const*)ptr, "xsd:unsignedLong"); - case SOAP_TYPE_PointerTowsc__PropertiesType: - return soap_out_PointerTowsc__PropertiesType(soap, tag, id, (struct wsc__PropertiesType *const*)ptr, "wsc:PropertiesType"); - case SOAP_TYPE_wsc__FaultCodeOpenEnumType: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "wsc:FaultCodeOpenEnumType"); - case SOAP_TYPE_PointerTo_xenc__ReferenceList: - return soap_out_PointerTo_xenc__ReferenceList(soap, tag, id, (struct _xenc__ReferenceList *const*)ptr, "xenc:ReferenceList"); - case SOAP_TYPE_PointerToxenc__ReferenceType: - return soap_out_PointerToxenc__ReferenceType(soap, tag, id, (struct xenc__ReferenceType *const*)ptr, "xenc:ReferenceType"); - case SOAP_TYPE_PointerToxenc__EncryptionPropertyType: - return soap_out_PointerToxenc__EncryptionPropertyType(soap, tag, id, (struct xenc__EncryptionPropertyType *const*)ptr, "xenc:EncryptionPropertyType"); - case SOAP_TYPE_PointerToxenc__TransformsType: - return soap_out_PointerToxenc__TransformsType(soap, tag, id, (struct xenc__TransformsType *const*)ptr, "xenc:TransformsType"); - case SOAP_TYPE_PointerToxenc__CipherReferenceType: - return soap_out_PointerToxenc__CipherReferenceType(soap, tag, id, (struct xenc__CipherReferenceType *const*)ptr, "xenc:CipherReferenceType"); - case SOAP_TYPE_PointerToxenc__EncryptionPropertiesType: - return soap_out_PointerToxenc__EncryptionPropertiesType(soap, tag, id, (struct xenc__EncryptionPropertiesType *const*)ptr, "xenc:EncryptionPropertiesType"); - case SOAP_TYPE_PointerToxenc__CipherDataType: - return soap_out_PointerToxenc__CipherDataType(soap, tag, id, (struct xenc__CipherDataType *const*)ptr, "xenc:CipherDataType"); - case SOAP_TYPE_PointerTo_ds__KeyInfo: - return soap_out_PointerTo_ds__KeyInfo(soap, tag, id, (struct ds__KeyInfoType *const*)ptr, "ds:KeyInfo"); - case SOAP_TYPE_PointerToxenc__EncryptionMethodType: - return soap_out_PointerToxenc__EncryptionMethodType(soap, tag, id, (struct xenc__EncryptionMethodType *const*)ptr, "xenc:EncryptionMethodType"); - case SOAP_TYPE_PointerTods__X509IssuerSerialType: - return soap_out_PointerTods__X509IssuerSerialType(soap, tag, id, (struct ds__X509IssuerSerialType *const*)ptr, "ds:X509IssuerSerialType"); - case SOAP_TYPE_PointerTods__RSAKeyValueType: - return soap_out_PointerTods__RSAKeyValueType(soap, tag, id, (struct ds__RSAKeyValueType *const*)ptr, "ds:RSAKeyValueType"); - case SOAP_TYPE_PointerTods__DSAKeyValueType: - return soap_out_PointerTods__DSAKeyValueType(soap, tag, id, (struct ds__DSAKeyValueType *const*)ptr, "ds:DSAKeyValueType"); - case SOAP_TYPE_PointerTods__TransformType: - return soap_out_PointerTods__TransformType(soap, tag, id, (struct ds__TransformType *const*)ptr, "ds:TransformType"); - case SOAP_TYPE_PointerTods__DigestMethodType: - return soap_out_PointerTods__DigestMethodType(soap, tag, id, (struct ds__DigestMethodType *const*)ptr, "ds:DigestMethodType"); - case SOAP_TYPE_PointerTods__TransformsType: - return soap_out_PointerTods__TransformsType(soap, tag, id, (struct ds__TransformsType *const*)ptr, "ds:TransformsType"); - case SOAP_TYPE_PointerToint: - return soap_out_PointerToint(soap, tag, id, (int *const*)ptr, "xsd:int"); - case SOAP_TYPE_PointerToPointerTods__ReferenceType: - return soap_out_PointerToPointerTods__ReferenceType(soap, tag, id, (struct ds__ReferenceType **const*)ptr, "ds:ReferenceType"); - case SOAP_TYPE_PointerTods__ReferenceType: - return soap_out_PointerTods__ReferenceType(soap, tag, id, (struct ds__ReferenceType *const*)ptr, "ds:ReferenceType"); - case SOAP_TYPE_PointerTods__SignatureMethodType: - return soap_out_PointerTods__SignatureMethodType(soap, tag, id, (struct ds__SignatureMethodType *const*)ptr, "ds:SignatureMethodType"); - case SOAP_TYPE_PointerTods__CanonicalizationMethodType: - return soap_out_PointerTods__CanonicalizationMethodType(soap, tag, id, (struct ds__CanonicalizationMethodType *const*)ptr, "ds:CanonicalizationMethodType"); - case SOAP_TYPE_PointerTo_wsse__SecurityTokenReference: - return soap_out_PointerTo_wsse__SecurityTokenReference(soap, tag, id, (struct _wsse__SecurityTokenReference *const*)ptr, "wsse:SecurityTokenReference"); - case SOAP_TYPE_PointerTods__RetrievalMethodType: - return soap_out_PointerTods__RetrievalMethodType(soap, tag, id, (struct ds__RetrievalMethodType *const*)ptr, "ds:RetrievalMethodType"); - case SOAP_TYPE_PointerTods__KeyValueType: - return soap_out_PointerTods__KeyValueType(soap, tag, id, (struct ds__KeyValueType *const*)ptr, "ds:KeyValueType"); - case SOAP_TYPE_PointerTo_c14n__InclusiveNamespaces: - return soap_out_PointerTo_c14n__InclusiveNamespaces(soap, tag, id, (struct _c14n__InclusiveNamespaces *const*)ptr, "c14n:InclusiveNamespaces"); - case SOAP_TYPE_PointerTods__KeyInfoType: - return soap_out_PointerTods__KeyInfoType(soap, tag, id, (struct ds__KeyInfoType *const*)ptr, "ds:KeyInfoType"); - case SOAP_TYPE_PointerTods__SignedInfoType: - return soap_out_PointerTods__SignedInfoType(soap, tag, id, (struct ds__SignedInfoType *const*)ptr, "ds:SignedInfoType"); - case SOAP_TYPE__ds__SignatureValue: - return soap_out_string(soap, "ds:SignatureValue", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE_PointerToxenc__EncryptedKeyType: - return soap_out_PointerToxenc__EncryptedKeyType(soap, tag, id, (struct xenc__EncryptedKeyType *const*)ptr, "xenc:EncryptedKeyType"); - case SOAP_TYPE_PointerTods__X509DataType: - return soap_out_PointerTods__X509DataType(soap, tag, id, (struct ds__X509DataType *const*)ptr, "ds:X509DataType"); - case SOAP_TYPE_PointerTo_wsse__Embedded: - return soap_out_PointerTo_wsse__Embedded(soap, tag, id, (struct _wsse__Embedded *const*)ptr, "wsse:Embedded"); - case SOAP_TYPE_PointerTo_wsse__KeyIdentifier: - return soap_out_PointerTo_wsse__KeyIdentifier(soap, tag, id, (struct _wsse__KeyIdentifier *const*)ptr, "wsse:KeyIdentifier"); - case SOAP_TYPE_PointerTo_wsse__Reference: - return soap_out_PointerTo_wsse__Reference(soap, tag, id, (struct _wsse__Reference *const*)ptr, "wsse:Reference"); - case SOAP_TYPE_PointerTowsse__EncodedString: - return soap_out_PointerTowsse__EncodedString(soap, tag, id, (struct wsse__EncodedString *const*)ptr, "wsse:EncodedString"); - case SOAP_TYPE_PointerTo_wsse__Password: - return soap_out_PointerTo_wsse__Password(soap, tag, id, (struct _wsse__Password *const*)ptr, "wsse:Password"); - case SOAP_TYPE_PointerTowsdd__ResolveMatchesType: - return soap_out_PointerTowsdd__ResolveMatchesType(soap, tag, id, (struct wsdd__ResolveMatchesType *const*)ptr, "wsdd:ResolveMatchesType"); - case SOAP_TYPE_PointerTowsdd__ResolveType: - return soap_out_PointerTowsdd__ResolveType(soap, tag, id, (struct wsdd__ResolveType *const*)ptr, "wsdd:ResolveType"); - case SOAP_TYPE_PointerTowsdd__ProbeMatchesType: - return soap_out_PointerTowsdd__ProbeMatchesType(soap, tag, id, (struct wsdd__ProbeMatchesType *const*)ptr, "wsdd:ProbeMatchesType"); - case SOAP_TYPE_PointerTowsdd__ProbeType: - return soap_out_PointerTowsdd__ProbeType(soap, tag, id, (struct wsdd__ProbeType *const*)ptr, "wsdd:ProbeType"); - case SOAP_TYPE_PointerTowsdd__ByeType: - return soap_out_PointerTowsdd__ByeType(soap, tag, id, (struct wsdd__ByeType *const*)ptr, "wsdd:ByeType"); - case SOAP_TYPE_PointerTowsdd__HelloType: - return soap_out_PointerTowsdd__HelloType(soap, tag, id, (struct wsdd__HelloType *const*)ptr, "wsdd:HelloType"); - case SOAP_TYPE_PointerTowsdd__AppSequenceType: - return soap_out_PointerTowsdd__AppSequenceType(soap, tag, id, (struct wsdd__AppSequenceType *const*)ptr, "wsdd:AppSequenceType"); - case SOAP_TYPE__wsdd__Id: - return soap_out_string(soap, "wsdd:Id", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsdd__SupportedMatchingRules: - return soap_out_string(soap, "wsdd:SupportedMatchingRules", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsdd__XAddrs: - return soap_out_string(soap, "wsdd:XAddrs", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsdd__Types: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "xsd:QName"); - case SOAP_TYPE_PointerTowsdd__SigType: - return soap_out_PointerTowsdd__SigType(soap, tag, id, (struct wsdd__SigType *const*)ptr, "wsdd:SigType"); - case SOAP_TYPE_PointerTowsdd__ResolveMatchType: - return soap_out_PointerTowsdd__ResolveMatchType(soap, tag, id, (struct wsdd__ResolveMatchType *const*)ptr, "wsdd:ResolveMatchType"); - case SOAP_TYPE_PointerTowsdd__ProbeMatchType: - return soap_out_PointerTowsdd__ProbeMatchType(soap, tag, id, (struct wsdd__ProbeMatchType *const*)ptr, "wsdd:ProbeMatchType"); - case SOAP_TYPE_PointerTounsignedInt: - return soap_out_PointerTounsignedInt(soap, tag, id, (unsigned int *const*)ptr, "xsd:unsignedInt"); - case SOAP_TYPE_PointerTowsdd__ScopesType: - return soap_out_PointerTowsdd__ScopesType(soap, tag, id, (struct wsdd__ScopesType *const*)ptr, "wsdd:ScopesType"); - case SOAP_TYPE_wsdd__FaultCodeOpenType: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "wsdd:FaultCodeOpenType"); - case SOAP_TYPE_wsdd__UriListType: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "wsdd:UriListType"); - case SOAP_TYPE_wsdd__QNameListType: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "xsd:QName"); - case SOAP_TYPE_PointerTo_wsa__FaultTo: - return soap_out_PointerTo_wsa__FaultTo(soap, tag, id, (struct wsa__EndpointReferenceType *const*)ptr, "wsa:FaultTo"); - case SOAP_TYPE_PointerTo_wsa__ReplyTo: - return soap_out_PointerTo_wsa__ReplyTo(soap, tag, id, (struct wsa__EndpointReferenceType *const*)ptr, "wsa:ReplyTo"); - case SOAP_TYPE_PointerTo_wsa__From: - return soap_out_PointerTo_wsa__From(soap, tag, id, (struct wsa__EndpointReferenceType *const*)ptr, "wsa:From"); - case SOAP_TYPE_PointerTo_wsa__RelatesTo: - return soap_out_PointerTo_wsa__RelatesTo(soap, tag, id, (struct wsa__Relationship *const*)ptr, "wsa:RelatesTo"); - case SOAP_TYPE__wsa__Action: - return soap_out_string(soap, "wsa:Action", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsa__To: - return soap_out_string(soap, "wsa:To", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE__wsa__MessageID: - return soap_out_string(soap, "wsa:MessageID", id, (char*const*)(void*)&ptr, ""); - case SOAP_TYPE_PointerTowsa__ServiceNameType: - return soap_out_PointerTowsa__ServiceNameType(soap, tag, id, (struct wsa__ServiceNameType *const*)ptr, "wsa:ServiceNameType"); - case SOAP_TYPE_PointerTo_QName: - return soap_out_PointerTo_QName(soap, tag, id, (char **const*)ptr, "xsd:QName"); - case SOAP_TYPE_PointerTowsa__ReferenceParametersType: - return soap_out_PointerTowsa__ReferenceParametersType(soap, tag, id, (struct wsa__ReferenceParametersType *const*)ptr, "wsa:ReferenceParametersType"); - case SOAP_TYPE_PointerTowsa__ReferencePropertiesType: - return soap_out_PointerTowsa__ReferencePropertiesType(soap, tag, id, (struct wsa__ReferencePropertiesType *const*)ptr, "wsa:ReferencePropertiesType"); - case SOAP_TYPE__QName: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "xsd:QName"); - case SOAP_TYPE_string: - return soap_out_string(soap, tag, id, (char*const*)(void*)&ptr, "xsd:string"); - case 0: - return SOAP_OK; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_putelement '%s' failed for type %d in gen/soapC_001.cpp\n", tag ? tag : "", type)); - return soap_element_empty(soap, tag, 0, NULL); /* unknown type to serialize */ -} -#ifdef __cplusplus -} -#endif - -#ifndef WITH_NOIDREF - -#ifdef __cplusplus -extern "C" { -#endif -SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, int type) -{ - (void)soap; (void)ptr; (void)type; /* appease -Wall -Werror */ - switch (type) - { - case SOAP_TYPE__wstop__TopicNamespaceType_Topic: - ((_wstop__TopicNamespaceType_Topic *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__ExportRecordedDataResponse_Extension: - ((_trc__ExportRecordedDataResponse_Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemUrisResponse_Extension: - ((_tds__GetSystemUrisResponse_Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__StorageConfigurationData_Extension: - ((_tds__StorageConfigurationData_Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__UserCredential_Extension: - ((_tds__UserCredential_Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__Service_Capabilities: - ((_tds__Service_Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__ConfigDescription_Messages: - ((_tt__ConfigDescription_Messages *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__ItemListDescription_ElementItemDescription: - ((_tt__ItemListDescription_ElementItemDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription: - ((_tt__ItemListDescription_SimpleItemDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__ItemList_ElementItem: - ((_tt__ItemList_ElementItem *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__ItemList_SimpleItem: - ((_tt__ItemList_SimpleItem *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy: - ((_tt__EventSubscription_SubscriptionPolicy *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__ColorDescriptor_ColorCluster: - ((_tt__ColorDescriptor_ColorCluster *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy: - ((_tev__CreatePullPointSubscription_SubscriptionPolicy *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause: - ((_wsrfbf__BaseFaultType_FaultCause *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_Description: - ((_wsrfbf__BaseFaultType_Description *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode: - ((_wsrfbf__BaseFaultType_ErrorCode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy: - ((_wsnt__Subscribe_SubscriptionPolicy *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__NotificationMessageHolderType_Message: - ((_wsnt__NotificationMessageHolderType_Message *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobReference__: - ((tt__RecordingJobReference__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobReference: - soap_serialize_tt__RecordingJobReference(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__JobToken__: - ((tt__JobToken__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__JobToken: - soap_serialize_tt__JobToken(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__TrackReference__: - ((tt__TrackReference__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TrackReference: - soap_serialize_tt__TrackReference(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__RecordingReference__: - ((tt__RecordingReference__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingReference: - soap_serialize_tt__RecordingReference(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__ReceiverReference__: - ((tt__ReceiverReference__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReceiverReference: - soap_serialize_tt__ReceiverReference(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_wstop__SimpleTopicExpression__: - ((wstop__SimpleTopicExpression__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__SimpleTopicExpression: - soap_serialize_wstop__SimpleTopicExpression(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_wstop__ConcreteTopicExpression__: - ((wstop__ConcreteTopicExpression__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__ConcreteTopicExpression: - soap_serialize_wstop__ConcreteTopicExpression(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_wstop__FullTopicExpression__: - ((wstop__FullTopicExpression__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__FullTopicExpression: - soap_serialize_wstop__FullTopicExpression(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_timg__ImagingPresetType_: - ((timg__ImagingPresetType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__StorageType_: - ((tds__StorageType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__AutoGeoModes_: - ((tds__AutoGeoModes_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__ParityBit_: - ((tmd__ParityBit_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__SerialPortType_: - ((tmd__SerialPortType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDType_: - ((tt__OSDType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioClassType__: - ((tt__AudioClassType__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioClassType: - soap_serialize_tt__AudioClassType(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__ModeOfOperation_: - ((tt__ModeOfOperation_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobState__: - ((tt__RecordingJobState__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobState: - soap_serialize_tt__RecordingJobState(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__RecordingJobMode__: - ((tt__RecordingJobMode__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobMode: - soap_serialize_tt__RecordingJobMode(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__TrackType_: - ((tt__TrackType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingStatus_: - ((tt__RecordingStatus_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SearchState_: - ((tt__SearchState_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__XPathExpression__: - ((tt__XPathExpression__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__XPathExpression: - soap_serialize_tt__XPathExpression(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__Description__: - ((tt__Description__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Description: - soap_serialize_tt__Description(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__ReceiverState_: - ((tt__ReceiverState_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReceiverMode_: - ((tt__ReceiverMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Direction_: - ((tt__Direction_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PropertyOperation_: - ((tt__PropertyOperation_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImageSendingType_: - ((tt__ImageSendingType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DefoggingMode_: - ((tt__DefoggingMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ToneCompensationMode_: - ((tt__ToneCompensationMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_: - ((tt__IrCutFilterAutoBoundaryType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImageStabilizationMode_: - ((tt__ImageStabilizationMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IrCutFilterMode_: - ((tt__IrCutFilterMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WhiteBalanceMode_: - ((tt__WhiteBalanceMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Enabled_: - ((tt__Enabled_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ExposureMode_: - ((tt__ExposureMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ExposurePriority_: - ((tt__ExposurePriority_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__BacklightCompensationMode_: - ((tt__BacklightCompensationMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WideDynamicMode_: - ((tt__WideDynamicMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AFModes_: - ((tt__AFModes_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AutoFocusMode_: - ((tt__AutoFocusMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MoveAndTrackMethod_: - ((tt__MoveAndTrackMethod_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourOperation_: - ((tt__PTZPresetTourOperation_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourDirection_: - ((tt__PTZPresetTourDirection_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourState_: - ((tt__PTZPresetTourState_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AuxiliaryData__: - ((tt__AuxiliaryData__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AuxiliaryData: - soap_serialize_tt__AuxiliaryData(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__ReverseMode_: - ((tt__ReverseMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EFlipMode_: - ((tt__EFlipMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DigitalIdleState_: - ((tt__DigitalIdleState_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelayMode_: - ((tt__RelayMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelayIdleState_: - ((tt__RelayIdleState_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelayLogicalState_: - ((tt__RelayLogicalState_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__UserLevel_: - ((tt__UserLevel_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SetDateTimeType_: - ((tt__SetDateTimeType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FactoryDefaultType_: - ((tt__FactoryDefaultType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemLogType_: - ((tt__SystemLogType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CapabilityCategory_: - ((tt__CapabilityCategory_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite_: - ((tt__Dot11AuthAndMangementSuite_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11SignalStrength_: - ((tt__Dot11SignalStrength_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11PSKPassphrase__: - ((tt__Dot11PSKPassphrase__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11PSKPassphrase: - soap_serialize_tt__Dot11PSKPassphrase(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__Dot11PSK__: - ((tt__Dot11PSK__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11PSK: - soap_serialize_tt__Dot11PSK(soap, (const xsd__hexBinary *)ptr); - break; - case SOAP_TYPE_tt__Dot11Cipher_: - ((tt__Dot11Cipher_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11SecurityMode_: - ((tt__Dot11SecurityMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11StationMode_: - ((tt__Dot11StationMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11SSIDType__: - ((tt__Dot11SSIDType__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11SSIDType: - soap_serialize_tt__Dot11SSIDType(soap, (const xsd__hexBinary *)ptr); - break; - case SOAP_TYPE_tt__DynamicDNSType_: - ((tt__DynamicDNSType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPAddressFilterType_: - ((tt__IPAddressFilterType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Domain__: - ((tt__Domain__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Domain: - soap_serialize_tt__Domain(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__DNSName__: - ((tt__DNSName__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DNSName: - soap_serialize_tt__DNSName(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__IPType_: - ((tt__IPType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__HwAddress__: - ((tt__HwAddress__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__HwAddress: - soap_serialize_tt__HwAddress(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__IPv6Address__: - ((tt__IPv6Address__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv6Address: - soap_serialize_tt__IPv6Address(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__IPv4Address__: - ((tt__IPv4Address__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv4Address: - soap_serialize_tt__IPv4Address(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__NetworkHostType_: - ((tt__NetworkHostType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkProtocolType_: - ((tt__NetworkProtocolType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv6DHCPConfiguration_: - ((tt__IPv6DHCPConfiguration_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IANA_IfTypes__: - ((tt__IANA_IfTypes__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Duplex_: - ((tt__Duplex_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority__: - ((tt__NetworkInterfaceConfigPriority__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority: - soap_serialize_tt__NetworkInterfaceConfigPriority(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__DiscoveryMode_: - ((tt__DiscoveryMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ScopeDefinition_: - ((tt__ScopeDefinition_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TransportProtocol_: - ((tt__TransportProtocol_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__StreamType_: - ((tt__StreamType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataCompressionType_: - ((tt__MetadataCompressionType_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioEncodingMimeNames_: - ((tt__AudioEncodingMimeNames_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioEncoding_: - ((tt__AudioEncoding_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncodingProfiles_: - ((tt__VideoEncodingProfiles_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncodingMimeNames_: - ((tt__VideoEncodingMimeNames_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__H264Profile_: - ((tt__H264Profile_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Mpeg4Profile_: - ((tt__Mpeg4Profile_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncoding_: - ((tt__VideoEncoding_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ViewModes_: - ((tt__ViewModes_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SceneOrientationOption_: - ((tt__SceneOrientationOption_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SceneOrientationMode_: - ((tt__SceneOrientationMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RotateMode_: - ((tt__RotateMode_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Name__: - ((tt__Name__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Name: - soap_serialize_tt__Name(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__Entity_: - ((tt__Entity_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MoveStatus_: - ((tt__MoveStatus_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReferenceToken__: - ((tt__ReferenceToken__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReferenceToken: - soap_serialize_tt__ReferenceToken(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_trc__EncodingTypes: - soap_serialize_trc__EncodingTypes(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_trt__EncodingTypes: - soap_serialize_trt__EncodingTypes(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tds__EAPMethodTypes: - soap_serialize_tds__EAPMethodTypes(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tmd__DelayTimes: - soap_serialize_tmd__DelayTimes(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__ReferenceTokenList: - soap_serialize_tt__ReferenceTokenList(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__StringList: - soap_serialize_tt__StringList(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__StringAttrList: - soap_serialize_tt__StringAttrList(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__FloatAttrList: - soap_serialize_tt__FloatAttrList(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_tt__IntAttrList: - soap_serialize_tt__IntAttrList(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType: - soap_serialize_wsnt__AbsoluteOrRelativeTimeType(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_wstop__TopicSetType: - ((wstop__TopicSetType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__TopicType: - ((wstop__TopicType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__TopicNamespaceType: - ((wstop__TopicNamespaceType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__QueryExpressionType: - ((wstop__QueryExpressionType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__ExtensibleDocumented: - ((wstop__ExtensibleDocumented *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wstop__Documentation: - ((wstop__Documentation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__EndSearchResponse: - ((_tse__EndSearchResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__EndSearch: - ((_tse__EndSearch *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetSearchStateResponse: - ((_tse__GetSearchStateResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetSearchState: - ((_tse__GetSearchState *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetMetadataSearchResultsResponse: - ((_tse__GetMetadataSearchResultsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetMetadataSearchResults: - ((_tse__GetMetadataSearchResults *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindMetadataResponse: - ((_tse__FindMetadataResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindMetadata: - ((_tse__FindMetadata *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse: - ((_tse__GetPTZPositionSearchResultsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetPTZPositionSearchResults: - ((_tse__GetPTZPositionSearchResults *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindPTZPositionResponse: - ((_tse__FindPTZPositionResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindPTZPosition: - ((_tse__FindPTZPosition *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetEventSearchResultsResponse: - ((_tse__GetEventSearchResultsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetEventSearchResults: - ((_tse__GetEventSearchResults *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindEventsResponse: - ((_tse__FindEventsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindEvents: - ((_tse__FindEvents *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetRecordingSearchResultsResponse: - ((_tse__GetRecordingSearchResultsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetRecordingSearchResults: - ((_tse__GetRecordingSearchResults *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindRecordingsResponse: - ((_tse__FindRecordingsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__FindRecordings: - ((_tse__FindRecordings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetMediaAttributesResponse: - ((_tse__GetMediaAttributesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetMediaAttributes: - ((_tse__GetMediaAttributes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetRecordingInformationResponse: - ((_tse__GetRecordingInformationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetRecordingInformation: - ((_tse__GetRecordingInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetRecordingSummaryResponse: - ((_tse__GetRecordingSummaryResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetRecordingSummary: - ((_tse__GetRecordingSummary *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetServiceCapabilitiesResponse: - ((_tse__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tse__GetServiceCapabilities: - ((_tse__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tse__Capabilities: - ((tse__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__GetReplayConfigurationResponse: - ((_trp__GetReplayConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__GetReplayConfiguration: - ((_trp__GetReplayConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__SetReplayConfigurationResponse: - ((_trp__SetReplayConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__SetReplayConfiguration: - ((_trp__SetReplayConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__GetReplayUriResponse: - ((_trp__GetReplayUriResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__GetReplayUri: - ((_trp__GetReplayUri *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__GetServiceCapabilitiesResponse: - ((_trp__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trp__GetServiceCapabilities: - ((_trp__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trp__Capabilities: - ((trp__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetExportRecordedDataStateResponse: - ((_trc__GetExportRecordedDataStateResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetExportRecordedDataState: - ((_trc__GetExportRecordedDataState *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__StopExportRecordedDataResponse: - ((_trc__StopExportRecordedDataResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__StopExportRecordedData: - ((_trc__StopExportRecordedData *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__ExportRecordedDataResponse: - ((_trc__ExportRecordedDataResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__ExportRecordedData: - ((_trc__ExportRecordedData *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingOptionsResponse: - ((_trc__GetRecordingOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingOptions: - ((_trc__GetRecordingOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingJobStateResponse: - ((_trc__GetRecordingJobStateResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingJobState: - ((_trc__GetRecordingJobState *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetRecordingJobModeResponse: - ((_trc__SetRecordingJobModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetRecordingJobMode: - ((_trc__SetRecordingJobMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingJobConfigurationResponse: - ((_trc__GetRecordingJobConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingJobConfiguration: - ((_trc__GetRecordingJobConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetRecordingJobConfigurationResponse: - ((_trc__SetRecordingJobConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetRecordingJobConfiguration: - ((_trc__SetRecordingJobConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingJobsResponse: - ((_trc__GetRecordingJobsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingJobs: - ((_trc__GetRecordingJobs *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__DeleteRecordingJobResponse: - ((_trc__DeleteRecordingJobResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__DeleteRecordingJob: - ((_trc__DeleteRecordingJob *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__CreateRecordingJobResponse: - ((_trc__CreateRecordingJobResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__CreateRecordingJob: - ((_trc__CreateRecordingJob *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetTrackConfigurationResponse: - ((_trc__SetTrackConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetTrackConfiguration: - ((_trc__SetTrackConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetTrackConfigurationResponse: - ((_trc__GetTrackConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetTrackConfiguration: - ((_trc__GetTrackConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__DeleteTrackResponse: - ((_trc__DeleteTrackResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__DeleteTrack: - ((_trc__DeleteTrack *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__CreateTrackResponse: - ((_trc__CreateTrackResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__CreateTrack: - ((_trc__CreateTrack *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingConfigurationResponse: - ((_trc__GetRecordingConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingConfiguration: - ((_trc__GetRecordingConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetRecordingConfigurationResponse: - ((_trc__SetRecordingConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__SetRecordingConfiguration: - ((_trc__SetRecordingConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordingsResponse: - ((_trc__GetRecordingsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetRecordings: - ((_trc__GetRecordings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__DeleteRecordingResponse: - ((_trc__DeleteRecordingResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__DeleteRecording: - ((_trc__DeleteRecording *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__CreateRecordingResponse: - ((_trc__CreateRecordingResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__CreateRecording: - ((_trc__CreateRecording *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetServiceCapabilitiesResponse: - ((_trc__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trc__GetServiceCapabilities: - ((_trc__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trc__TrackOptions: - ((trc__TrackOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trc__JobOptions: - ((trc__JobOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trc__RecordingOptions: - ((trc__RecordingOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trc__Capabilities: - ((trc__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetReceiverStateResponse: - ((_trv__GetReceiverStateResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetReceiverState: - ((_trv__GetReceiverState *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__SetReceiverModeResponse: - ((_trv__SetReceiverModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__SetReceiverMode: - ((_trv__SetReceiverMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__ConfigureReceiverResponse: - ((_trv__ConfigureReceiverResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__ConfigureReceiver: - ((_trv__ConfigureReceiver *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__DeleteReceiverResponse: - ((_trv__DeleteReceiverResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__DeleteReceiver: - ((_trv__DeleteReceiver *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__CreateReceiverResponse: - ((_trv__CreateReceiverResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__CreateReceiver: - ((_trv__CreateReceiver *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetReceiverResponse: - ((_trv__GetReceiverResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetReceiver: - ((_trv__GetReceiver *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetReceiversResponse: - ((_trv__GetReceiversResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetReceivers: - ((_trv__GetReceivers *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetServiceCapabilitiesResponse: - ((_trv__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trv__GetServiceCapabilities: - ((_trv__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trv__Capabilities: - ((trv__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsrfr__ResourceUnavailableFaultType: - ((wsrfr__ResourceUnavailableFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsrfr__ResourceUnknownFaultType: - ((wsrfr__ResourceUnknownFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse: - ((_tptz__GetCompatibleConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetCompatibleConfigurations: - ((_tptz__GetCompatibleConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__RemovePresetTourResponse: - ((_tptz__RemovePresetTourResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__RemovePresetTour: - ((_tptz__RemovePresetTour *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__OperatePresetTourResponse: - ((_tptz__OperatePresetTourResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__OperatePresetTour: - ((_tptz__OperatePresetTour *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__ModifyPresetTourResponse: - ((_tptz__ModifyPresetTourResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__ModifyPresetTour: - ((_tptz__ModifyPresetTour *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__CreatePresetTourResponse: - ((_tptz__CreatePresetTourResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__CreatePresetTour: - ((_tptz__CreatePresetTour *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresetTourOptionsResponse: - ((_tptz__GetPresetTourOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresetTourOptions: - ((_tptz__GetPresetTourOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresetTourResponse: - ((_tptz__GetPresetTourResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresetTour: - ((_tptz__GetPresetTour *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresetToursResponse: - ((_tptz__GetPresetToursResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresetTours: - ((_tptz__GetPresetTours *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__StopResponse: - ((_tptz__StopResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__Stop: - ((_tptz__Stop *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__AbsoluteMoveResponse: - ((_tptz__AbsoluteMoveResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__AbsoluteMove: - ((_tptz__AbsoluteMove *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__RelativeMoveResponse: - ((_tptz__RelativeMoveResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__RelativeMove: - ((_tptz__RelativeMove *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__ContinuousMoveResponse: - ((_tptz__ContinuousMoveResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__ContinuousMove: - ((_tptz__ContinuousMove *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SetHomePositionResponse: - ((_tptz__SetHomePositionResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SetHomePosition: - ((_tptz__SetHomePosition *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GotoHomePositionResponse: - ((_tptz__GotoHomePositionResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GotoHomePosition: - ((_tptz__GotoHomePosition *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetStatusResponse: - ((_tptz__GetStatusResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetStatus: - ((_tptz__GetStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GotoPresetResponse: - ((_tptz__GotoPresetResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GotoPreset: - ((_tptz__GotoPreset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__RemovePresetResponse: - ((_tptz__RemovePresetResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__RemovePreset: - ((_tptz__RemovePreset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SetPresetResponse: - ((_tptz__SetPresetResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SetPreset: - ((_tptz__SetPreset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresetsResponse: - ((_tptz__GetPresetsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetPresets: - ((_tptz__GetPresets *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SendAuxiliaryCommandResponse: - ((_tptz__SendAuxiliaryCommandResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SendAuxiliaryCommand: - ((_tptz__SendAuxiliaryCommand *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetConfigurationOptionsResponse: - ((_tptz__GetConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetConfigurationOptions: - ((_tptz__GetConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SetConfigurationResponse: - ((_tptz__SetConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__SetConfiguration: - ((_tptz__SetConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetConfigurationResponse: - ((_tptz__GetConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetConfiguration: - ((_tptz__GetConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetConfigurationsResponse: - ((_tptz__GetConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetConfigurations: - ((_tptz__GetConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetNodeResponse: - ((_tptz__GetNodeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetNode: - ((_tptz__GetNode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetNodesResponse: - ((_tptz__GetNodesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetNodes: - ((_tptz__GetNodes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetServiceCapabilitiesResponse: - ((_tptz__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tptz__GetServiceCapabilities: - ((_tptz__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tptz__Capabilities: - ((tptz__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__DeleteOSDResponse: - ((_trt__DeleteOSDResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__DeleteOSD: - ((_trt__DeleteOSD *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__CreateOSDResponse: - ((_trt__CreateOSDResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__CreateOSD: - ((_trt__CreateOSD *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetOSDOptionsResponse: - ((_trt__GetOSDOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetOSDOptions: - ((_trt__GetOSDOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetOSDResponse: - ((_trt__SetOSDResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetOSD: - ((_trt__SetOSD *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetOSDResponse: - ((_trt__GetOSDResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetOSD: - ((_trt__GetOSD *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetOSDsResponse: - ((_trt__GetOSDsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetOSDs: - ((_trt__GetOSDs *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoSourceModeResponse: - ((_trt__SetVideoSourceModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoSourceMode: - ((_trt__SetVideoSourceMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceModesResponse: - ((_trt__GetVideoSourceModesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceModes: - ((_trt__GetVideoSourceModes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetSnapshotUriResponse: - ((_trt__GetSnapshotUriResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetSnapshotUri: - ((_trt__GetSnapshotUri *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetSynchronizationPointResponse: - ((_trt__SetSynchronizationPointResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetSynchronizationPoint: - ((_trt__SetSynchronizationPoint *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__StopMulticastStreamingResponse: - ((_trt__StopMulticastStreamingResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__StopMulticastStreaming: - ((_trt__StopMulticastStreaming *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__StartMulticastStreamingResponse: - ((_trt__StartMulticastStreamingResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__StartMulticastStreaming: - ((_trt__StartMulticastStreaming *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetStreamUriResponse: - ((_trt__GetStreamUriResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetStreamUri: - ((_trt__GetStreamUri *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse: - ((_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances: - ((_trt__GetGuaranteedNumberOfVideoEncoderInstances *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse: - ((_trt__GetAudioDecoderConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions: - ((_trt__GetAudioDecoderConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse: - ((_trt__GetAudioOutputConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptions: - ((_trt__GetAudioOutputConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse: - ((_trt__GetMetadataConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationOptions: - ((_trt__GetMetadataConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse: - ((_trt__GetAudioEncoderConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions: - ((_trt__GetAudioEncoderConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse: - ((_trt__GetAudioSourceConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptions: - ((_trt__GetAudioSourceConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse: - ((_trt__GetVideoEncoderConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions: - ((_trt__GetVideoEncoderConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse: - ((_trt__GetVideoSourceConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptions: - ((_trt__GetVideoSourceConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse: - ((_trt__SetAudioDecoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioDecoderConfiguration: - ((_trt__SetAudioDecoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioOutputConfigurationResponse: - ((_trt__SetAudioOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioOutputConfiguration: - ((_trt__SetAudioOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetMetadataConfigurationResponse: - ((_trt__SetMetadataConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetMetadataConfiguration: - ((_trt__SetMetadataConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse: - ((_trt__SetVideoAnalyticsConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoAnalyticsConfiguration: - ((_trt__SetVideoAnalyticsConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioSourceConfigurationResponse: - ((_trt__SetAudioSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioSourceConfiguration: - ((_trt__SetAudioSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse: - ((_trt__SetAudioEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetAudioEncoderConfiguration: - ((_trt__SetAudioEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoSourceConfigurationResponse: - ((_trt__SetVideoSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoSourceConfiguration: - ((_trt__SetVideoSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse: - ((_trt__SetVideoEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__SetVideoEncoderConfiguration: - ((_trt__SetVideoEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse: - ((_trt__GetCompatibleAudioDecoderConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations: - ((_trt__GetCompatibleAudioDecoderConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse: - ((_trt__GetCompatibleAudioOutputConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations: - ((_trt__GetCompatibleAudioOutputConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse: - ((_trt__GetCompatibleMetadataConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurations: - ((_trt__GetCompatibleMetadataConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse: - ((_trt__GetCompatibleVideoAnalyticsConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations: - ((_trt__GetCompatibleVideoAnalyticsConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse: - ((_trt__GetCompatibleAudioSourceConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations: - ((_trt__GetCompatibleAudioSourceConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse: - ((_trt__GetCompatibleAudioEncoderConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations: - ((_trt__GetCompatibleAudioEncoderConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse: - ((_trt__GetCompatibleVideoSourceConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations: - ((_trt__GetCompatibleVideoSourceConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse: - ((_trt__GetCompatibleVideoEncoderConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations: - ((_trt__GetCompatibleVideoEncoderConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse: - ((_trt__GetAudioDecoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfiguration: - ((_trt__GetAudioDecoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationResponse: - ((_trt__GetAudioOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputConfiguration: - ((_trt__GetAudioOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationResponse: - ((_trt__GetMetadataConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetMetadataConfiguration: - ((_trt__GetMetadataConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse: - ((_trt__GetVideoAnalyticsConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfiguration: - ((_trt__GetVideoAnalyticsConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse: - ((_trt__GetAudioEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfiguration: - ((_trt__GetAudioEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationResponse: - ((_trt__GetAudioSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSourceConfiguration: - ((_trt__GetAudioSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse: - ((_trt__GetVideoEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfiguration: - ((_trt__GetVideoEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationResponse: - ((_trt__GetVideoSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceConfiguration: - ((_trt__GetVideoSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse: - ((_trt__GetAudioDecoderConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurations: - ((_trt__GetAudioDecoderConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse: - ((_trt__GetAudioOutputConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurations: - ((_trt__GetAudioOutputConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationsResponse: - ((_trt__GetMetadataConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetMetadataConfigurations: - ((_trt__GetMetadataConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse: - ((_trt__GetVideoAnalyticsConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurations: - ((_trt__GetVideoAnalyticsConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse: - ((_trt__GetAudioSourceConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurations: - ((_trt__GetAudioSourceConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse: - ((_trt__GetAudioEncoderConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurations: - ((_trt__GetAudioEncoderConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse: - ((_trt__GetVideoSourceConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurations: - ((_trt__GetVideoSourceConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse: - ((_trt__GetVideoEncoderConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurations: - ((_trt__GetVideoEncoderConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__DeleteProfileResponse: - ((_trt__DeleteProfileResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__DeleteProfile: - ((_trt__DeleteProfile *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse: - ((_trt__RemoveAudioDecoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioDecoderConfiguration: - ((_trt__RemoveAudioDecoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse: - ((_trt__AddAudioDecoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioDecoderConfiguration: - ((_trt__AddAudioDecoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse: - ((_trt__RemoveAudioOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioOutputConfiguration: - ((_trt__RemoveAudioOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioOutputConfigurationResponse: - ((_trt__AddAudioOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioOutputConfiguration: - ((_trt__AddAudioOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveMetadataConfigurationResponse: - ((_trt__RemoveMetadataConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveMetadataConfiguration: - ((_trt__RemoveMetadataConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddMetadataConfigurationResponse: - ((_trt__AddMetadataConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddMetadataConfiguration: - ((_trt__AddMetadataConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse: - ((_trt__RemoveVideoAnalyticsConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration: - ((_trt__RemoveVideoAnalyticsConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse: - ((_trt__AddVideoAnalyticsConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddVideoAnalyticsConfiguration: - ((_trt__AddVideoAnalyticsConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemovePTZConfigurationResponse: - ((_trt__RemovePTZConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemovePTZConfiguration: - ((_trt__RemovePTZConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddPTZConfigurationResponse: - ((_trt__AddPTZConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddPTZConfiguration: - ((_trt__AddPTZConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse: - ((_trt__RemoveAudioSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioSourceConfiguration: - ((_trt__RemoveAudioSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioSourceConfigurationResponse: - ((_trt__AddAudioSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioSourceConfiguration: - ((_trt__AddAudioSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse: - ((_trt__RemoveAudioEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveAudioEncoderConfiguration: - ((_trt__RemoveAudioEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse: - ((_trt__AddAudioEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddAudioEncoderConfiguration: - ((_trt__AddAudioEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse: - ((_trt__RemoveVideoSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveVideoSourceConfiguration: - ((_trt__RemoveVideoSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddVideoSourceConfigurationResponse: - ((_trt__AddVideoSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddVideoSourceConfiguration: - ((_trt__AddVideoSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse: - ((_trt__RemoveVideoEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__RemoveVideoEncoderConfiguration: - ((_trt__RemoveVideoEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse: - ((_trt__AddVideoEncoderConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__AddVideoEncoderConfiguration: - ((_trt__AddVideoEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetProfilesResponse: - ((_trt__GetProfilesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetProfiles: - ((_trt__GetProfiles *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetProfileResponse: - ((_trt__GetProfileResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetProfile: - ((_trt__GetProfile *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__CreateProfileResponse: - ((_trt__CreateProfileResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__CreateProfile: - ((_trt__CreateProfile *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputsResponse: - ((_trt__GetAudioOutputsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioOutputs: - ((_trt__GetAudioOutputs *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSourcesResponse: - ((_trt__GetAudioSourcesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetAudioSources: - ((_trt__GetAudioSources *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSourcesResponse: - ((_trt__GetVideoSourcesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetVideoSources: - ((_trt__GetVideoSources *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetServiceCapabilitiesResponse: - ((_trt__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__trt__GetServiceCapabilities: - ((_trt__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trt__VideoSourceModeExtension: - ((trt__VideoSourceModeExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trt__VideoSourceMode: - ((trt__VideoSourceMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trt__StreamingCapabilities: - ((trt__StreamingCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trt__ProfileCapabilities: - ((trt__ProfileCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_trt__Capabilities: - ((trt__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xop__Include: - ((xop__Include *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__SetCurrentPresetResponse: - ((_timg__SetCurrentPresetResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__SetCurrentPreset: - ((_timg__SetCurrentPreset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetCurrentPresetResponse: - ((_timg__GetCurrentPresetResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetCurrentPreset: - ((_timg__GetCurrentPreset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetPresetsResponse: - ((_timg__GetPresetsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetPresets: - ((_timg__GetPresets *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetStatusResponse: - ((_timg__GetStatusResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetStatus: - ((_timg__GetStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__StopResponse: - ((_timg__StopResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__Stop: - ((_timg__Stop *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetMoveOptionsResponse: - ((_timg__GetMoveOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetMoveOptions: - ((_timg__GetMoveOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__MoveResponse: - ((_timg__MoveResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__Move: - ((_timg__Move *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetOptionsResponse: - ((_timg__GetOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetOptions: - ((_timg__GetOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__SetImagingSettingsResponse: - ((_timg__SetImagingSettingsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__SetImagingSettings: - ((_timg__SetImagingSettings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetImagingSettingsResponse: - ((_timg__GetImagingSettingsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetImagingSettings: - ((_timg__GetImagingSettings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetServiceCapabilitiesResponse: - ((_timg__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__timg__GetServiceCapabilities: - ((_timg__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_timg__ImagingPreset: - ((timg__ImagingPreset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_timg__Capabilities: - ((timg__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__DeletePaneConfigurationResponse: - ((_tls__DeletePaneConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__DeletePaneConfiguration: - ((_tls__DeletePaneConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__CreatePaneConfigurationResponse: - ((_tls__CreatePaneConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__CreatePaneConfiguration: - ((_tls__CreatePaneConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__SetPaneConfigurationResponse: - ((_tls__SetPaneConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__SetPaneConfiguration: - ((_tls__SetPaneConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__SetPaneConfigurationsResponse: - ((_tls__SetPaneConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__SetPaneConfigurations: - ((_tls__SetPaneConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetPaneConfigurationResponse: - ((_tls__GetPaneConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetPaneConfiguration: - ((_tls__GetPaneConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetPaneConfigurationsResponse: - ((_tls__GetPaneConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetPaneConfigurations: - ((_tls__GetPaneConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetDisplayOptionsResponse: - ((_tls__GetDisplayOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetDisplayOptions: - ((_tls__GetDisplayOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__SetLayoutResponse: - ((_tls__SetLayoutResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__SetLayout: - ((_tls__SetLayout *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetLayoutResponse: - ((_tls__GetLayoutResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetLayout: - ((_tls__GetLayout *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetServiceCapabilitiesResponse: - ((_tls__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tls__GetServiceCapabilities: - ((_tls__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tls__Capabilities: - ((tls__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteGeoLocationResponse: - ((_tds__DeleteGeoLocationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteGeoLocation: - ((_tds__DeleteGeoLocation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetGeoLocationResponse: - ((_tds__SetGeoLocationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetGeoLocation: - ((_tds__SetGeoLocation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetGeoLocationResponse: - ((_tds__GetGeoLocationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetGeoLocation: - ((_tds__GetGeoLocation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteStorageConfigurationResponse: - ((_tds__DeleteStorageConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteStorageConfiguration: - ((_tds__DeleteStorageConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetStorageConfigurationResponse: - ((_tds__SetStorageConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetStorageConfiguration: - ((_tds__SetStorageConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetStorageConfigurationResponse: - ((_tds__GetStorageConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetStorageConfiguration: - ((_tds__GetStorageConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateStorageConfigurationResponse: - ((_tds__CreateStorageConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateStorageConfiguration: - ((_tds__CreateStorageConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetStorageConfigurationsResponse: - ((_tds__GetStorageConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetStorageConfigurations: - ((_tds__GetStorageConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__StartSystemRestoreResponse: - ((_tds__StartSystemRestoreResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__StartSystemRestore: - ((_tds__StartSystemRestore *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__StartFirmwareUpgradeResponse: - ((_tds__StartFirmwareUpgradeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__StartFirmwareUpgrade: - ((_tds__StartFirmwareUpgrade *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemUrisResponse: - ((_tds__GetSystemUrisResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemUris: - ((_tds__GetSystemUris *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse: - ((_tds__ScanAvailableDot11NetworksResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__ScanAvailableDot11Networks: - ((_tds__ScanAvailableDot11Networks *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot11StatusResponse: - ((_tds__GetDot11StatusResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot11Status: - ((_tds__GetDot11Status *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot11CapabilitiesResponse: - ((_tds__GetDot11CapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot11Capabilities: - ((_tds__GetDot11Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SendAuxiliaryCommandResponse: - ((_tds__SendAuxiliaryCommandResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SendAuxiliaryCommand: - ((_tds__SendAuxiliaryCommand *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRelayOutputStateResponse: - ((_tds__SetRelayOutputStateResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRelayOutputState: - ((_tds__SetRelayOutputState *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRelayOutputSettingsResponse: - ((_tds__SetRelayOutputSettingsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRelayOutputSettings: - ((_tds__SetRelayOutputSettings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetRelayOutputsResponse: - ((_tds__GetRelayOutputsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetRelayOutputs: - ((_tds__GetRelayOutputs *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteDot1XConfigurationResponse: - ((_tds__DeleteDot1XConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteDot1XConfiguration: - ((_tds__DeleteDot1XConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot1XConfigurationsResponse: - ((_tds__GetDot1XConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot1XConfigurations: - ((_tds__GetDot1XConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot1XConfigurationResponse: - ((_tds__GetDot1XConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDot1XConfiguration: - ((_tds__GetDot1XConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDot1XConfigurationResponse: - ((_tds__SetDot1XConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDot1XConfiguration: - ((_tds__SetDot1XConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateDot1XConfigurationResponse: - ((_tds__CreateDot1XConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateDot1XConfiguration: - ((_tds__CreateDot1XConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__LoadCACertificatesResponse: - ((_tds__LoadCACertificatesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__LoadCACertificates: - ((_tds__LoadCACertificates *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCertificateInformationResponse: - ((_tds__GetCertificateInformationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCertificateInformation: - ((_tds__GetCertificateInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse: - ((_tds__LoadCertificateWithPrivateKeyResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__LoadCertificateWithPrivateKey: - ((_tds__LoadCertificateWithPrivateKey *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCACertificatesResponse: - ((_tds__GetCACertificatesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCACertificates: - ((_tds__GetCACertificates *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetClientCertificateModeResponse: - ((_tds__SetClientCertificateModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetClientCertificateMode: - ((_tds__SetClientCertificateMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetClientCertificateModeResponse: - ((_tds__GetClientCertificateModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetClientCertificateMode: - ((_tds__GetClientCertificateMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__LoadCertificatesResponse: - ((_tds__LoadCertificatesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__LoadCertificates: - ((_tds__LoadCertificates *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetPkcs10RequestResponse: - ((_tds__GetPkcs10RequestResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetPkcs10Request: - ((_tds__GetPkcs10Request *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteCertificatesResponse: - ((_tds__DeleteCertificatesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteCertificates: - ((_tds__DeleteCertificates *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetCertificatesStatusResponse: - ((_tds__SetCertificatesStatusResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetCertificatesStatus: - ((_tds__SetCertificatesStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCertificatesStatusResponse: - ((_tds__GetCertificatesStatusResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCertificatesStatus: - ((_tds__GetCertificatesStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCertificatesResponse: - ((_tds__GetCertificatesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCertificates: - ((_tds__GetCertificates *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateCertificateResponse: - ((_tds__CreateCertificateResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateCertificate: - ((_tds__CreateCertificate *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetAccessPolicyResponse: - ((_tds__SetAccessPolicyResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetAccessPolicy: - ((_tds__SetAccessPolicy *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetAccessPolicyResponse: - ((_tds__GetAccessPolicyResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetAccessPolicy: - ((_tds__GetAccessPolicy *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__RemoveIPAddressFilterResponse: - ((_tds__RemoveIPAddressFilterResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__RemoveIPAddressFilter: - ((_tds__RemoveIPAddressFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__AddIPAddressFilterResponse: - ((_tds__AddIPAddressFilterResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__AddIPAddressFilter: - ((_tds__AddIPAddressFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetIPAddressFilterResponse: - ((_tds__SetIPAddressFilterResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetIPAddressFilter: - ((_tds__SetIPAddressFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetIPAddressFilterResponse: - ((_tds__GetIPAddressFilterResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetIPAddressFilter: - ((_tds__GetIPAddressFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetZeroConfigurationResponse: - ((_tds__SetZeroConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetZeroConfiguration: - ((_tds__SetZeroConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetZeroConfigurationResponse: - ((_tds__GetZeroConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetZeroConfiguration: - ((_tds__GetZeroConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse: - ((_tds__SetNetworkDefaultGatewayResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNetworkDefaultGateway: - ((_tds__SetNetworkDefaultGateway *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse: - ((_tds__GetNetworkDefaultGatewayResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNetworkDefaultGateway: - ((_tds__GetNetworkDefaultGateway *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNetworkProtocolsResponse: - ((_tds__SetNetworkProtocolsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNetworkProtocols: - ((_tds__SetNetworkProtocols *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNetworkProtocolsResponse: - ((_tds__GetNetworkProtocolsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNetworkProtocols: - ((_tds__GetNetworkProtocols *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNetworkInterfacesResponse: - ((_tds__SetNetworkInterfacesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNetworkInterfaces: - ((_tds__SetNetworkInterfaces *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNetworkInterfacesResponse: - ((_tds__GetNetworkInterfacesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNetworkInterfaces: - ((_tds__GetNetworkInterfaces *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDynamicDNSResponse: - ((_tds__SetDynamicDNSResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDynamicDNS: - ((_tds__SetDynamicDNS *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDynamicDNSResponse: - ((_tds__GetDynamicDNSResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDynamicDNS: - ((_tds__GetDynamicDNS *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNTPResponse: - ((_tds__SetNTPResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetNTP: - ((_tds__SetNTP *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNTPResponse: - ((_tds__GetNTPResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetNTP: - ((_tds__GetNTP *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDNSResponse: - ((_tds__SetDNSResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDNS: - ((_tds__SetDNS *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDNSResponse: - ((_tds__GetDNSResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDNS: - ((_tds__GetDNS *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetHostnameFromDHCPResponse: - ((_tds__SetHostnameFromDHCPResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetHostnameFromDHCP: - ((_tds__SetHostnameFromDHCP *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetHostnameResponse: - ((_tds__SetHostnameResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetHostname: - ((_tds__SetHostname *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetHostnameResponse: - ((_tds__GetHostnameResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetHostname: - ((_tds__GetHostname *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCapabilitiesResponse: - ((_tds__GetCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetCapabilities: - ((_tds__GetCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetWsdlUrlResponse: - ((_tds__GetWsdlUrlResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetWsdlUrl: - ((_tds__GetWsdlUrl *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetUserResponse: - ((_tds__SetUserResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetUser: - ((_tds__SetUser *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteUsersResponse: - ((_tds__DeleteUsersResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__DeleteUsers: - ((_tds__DeleteUsers *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateUsersResponse: - ((_tds__CreateUsersResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__CreateUsers: - ((_tds__CreateUsers *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetUsersResponse: - ((_tds__GetUsersResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetUsers: - ((_tds__GetUsers *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRemoteUserResponse: - ((_tds__SetRemoteUserResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRemoteUser: - ((_tds__SetRemoteUser *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetRemoteUserResponse: - ((_tds__GetRemoteUserResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetRemoteUser: - ((_tds__GetRemoteUser *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetEndpointReferenceResponse: - ((_tds__GetEndpointReferenceResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetEndpointReference: - ((_tds__GetEndpointReference *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDPAddressesResponse: - ((_tds__SetDPAddressesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDPAddresses: - ((_tds__SetDPAddresses *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDPAddressesResponse: - ((_tds__GetDPAddressesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDPAddresses: - ((_tds__GetDPAddresses *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse: - ((_tds__SetRemoteDiscoveryModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetRemoteDiscoveryMode: - ((_tds__SetRemoteDiscoveryMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse: - ((_tds__GetRemoteDiscoveryModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetRemoteDiscoveryMode: - ((_tds__GetRemoteDiscoveryMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDiscoveryModeResponse: - ((_tds__SetDiscoveryModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetDiscoveryMode: - ((_tds__SetDiscoveryMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDiscoveryModeResponse: - ((_tds__GetDiscoveryModeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDiscoveryMode: - ((_tds__GetDiscoveryMode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__RemoveScopesResponse: - ((_tds__RemoveScopesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__RemoveScopes: - ((_tds__RemoveScopes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__AddScopesResponse: - ((_tds__AddScopesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__AddScopes: - ((_tds__AddScopes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetScopesResponse: - ((_tds__SetScopesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetScopes: - ((_tds__SetScopes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetScopesResponse: - ((_tds__GetScopesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetScopes: - ((_tds__GetScopes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemLogResponse: - ((_tds__GetSystemLogResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemLog: - ((_tds__GetSystemLog *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemSupportInformationResponse: - ((_tds__GetSystemSupportInformationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemSupportInformation: - ((_tds__GetSystemSupportInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemBackupResponse: - ((_tds__GetSystemBackupResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemBackup: - ((_tds__GetSystemBackup *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__RestoreSystemResponse: - ((_tds__RestoreSystemResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__RestoreSystem: - ((_tds__RestoreSystem *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SystemRebootResponse: - ((_tds__SystemRebootResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SystemReboot: - ((_tds__SystemReboot *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__UpgradeSystemFirmwareResponse: - ((_tds__UpgradeSystemFirmwareResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__UpgradeSystemFirmware: - ((_tds__UpgradeSystemFirmware *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetSystemFactoryDefaultResponse: - ((_tds__SetSystemFactoryDefaultResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetSystemFactoryDefault: - ((_tds__SetSystemFactoryDefault *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemDateAndTimeResponse: - ((_tds__GetSystemDateAndTimeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetSystemDateAndTime: - ((_tds__GetSystemDateAndTime *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetSystemDateAndTimeResponse: - ((_tds__SetSystemDateAndTimeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__SetSystemDateAndTime: - ((_tds__SetSystemDateAndTime *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDeviceInformationResponse: - ((_tds__GetDeviceInformationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetDeviceInformation: - ((_tds__GetDeviceInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetServiceCapabilitiesResponse: - ((_tds__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetServiceCapabilities: - ((_tds__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetServicesResponse: - ((_tds__GetServicesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tds__GetServices: - ((_tds__GetServices *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__StorageConfiguration: - ((tds__StorageConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__StorageConfigurationData: - ((tds__StorageConfigurationData *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__UserCredential: - ((tds__UserCredential *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__MiscCapabilities: - ((tds__MiscCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__SystemCapabilities: - ((tds__SystemCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__SecurityCapabilities: - ((tds__SecurityCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__NetworkCapabilities: - ((tds__NetworkCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__DeviceServiceCapabilities: - ((tds__DeviceServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tds__Service: - ((tds__Service *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SendReceiveSerialCommandResponse: - ((_tmd__SendReceiveSerialCommandResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SendReceiveSerialCommand: - ((_tmd__SendReceiveSerialCommand *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse: - ((_tmd__GetSerialPortConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptions: - ((_tmd__GetSerialPortConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetSerialPortConfigurationResponse: - ((_tmd__SetSerialPortConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetSerialPortConfiguration: - ((_tmd__SetSerialPortConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationResponse: - ((_tmd__GetSerialPortConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetSerialPortConfiguration: - ((_tmd__GetSerialPortConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetSerialPortsResponse: - ((_tmd__GetSerialPortsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetSerialPorts: - ((_tmd__GetSerialPorts *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse: - ((_tmd__SetDigitalInputConfigurationsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetDigitalInputConfigurations: - ((_tmd__SetDigitalInputConfigurations *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse: - ((_tmd__GetDigitalInputConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions: - ((_tmd__GetDigitalInputConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetDigitalInputsResponse: - ((_tmd__GetDigitalInputsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetDigitalInputs: - ((_tmd__GetDigitalInputs *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetRelayOutputSettingsResponse: - ((_tmd__SetRelayOutputSettingsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetRelayOutputSettings: - ((_tmd__SetRelayOutputSettings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse: - ((_tmd__GetAudioOutputConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions: - ((_tmd__GetAudioOutputConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse: - ((_tmd__GetAudioSourceConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions: - ((_tmd__GetAudioSourceConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse: - ((_tmd__GetVideoOutputConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions: - ((_tmd__GetVideoOutputConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse: - ((_tmd__GetVideoSourceConfigurationOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions: - ((_tmd__GetVideoSourceConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse: - ((_tmd__SetVideoOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetVideoOutputConfiguration: - ((_tmd__SetVideoOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse: - ((_tmd__SetVideoSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetVideoSourceConfiguration: - ((_tmd__SetVideoSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse: - ((_tmd__SetAudioOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetAudioOutputConfiguration: - ((_tmd__SetAudioOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse: - ((_tmd__SetAudioSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__SetAudioSourceConfiguration: - ((_tmd__SetAudioSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse: - ((_tmd__GetVideoOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfiguration: - ((_tmd__GetVideoOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse: - ((_tmd__GetVideoSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfiguration: - ((_tmd__GetVideoSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse: - ((_tmd__GetAudioOutputConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfiguration: - ((_tmd__GetAudioOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse: - ((_tmd__GetAudioSourceConfigurationResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfiguration: - ((_tmd__GetAudioSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoOutputsResponse: - ((_tmd__GetVideoOutputsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetVideoOutputs: - ((_tmd__GetVideoOutputs *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetRelayOutputOptionsResponse: - ((_tmd__GetRelayOutputOptionsResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetRelayOutputOptions: - ((_tmd__GetRelayOutputOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetServiceCapabilitiesResponse: - ((_tmd__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tmd__GetServiceCapabilities: - ((_tmd__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__ParityBitList: - ((tmd__ParityBitList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__SerialPortConfigurationOptions: - ((tmd__SerialPortConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__SerialPortConfiguration: - ((tmd__SerialPortConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__SerialPort: - ((tmd__SerialPort *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__SerialData: - ((tmd__SerialData *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions: - ((tmd__DigitalInputConfigurationInputOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__GetResponse: - ((tmd__GetResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__Get: - ((tmd__Get *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__RelayOutputOptionsExtension: - ((tmd__RelayOutputOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__RelayOutputOptions: - ((tmd__RelayOutputOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tmd__Capabilities: - ((tmd__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__Message: - ((_tt__Message *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tt__StringItems: - ((_tt__StringItems *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PolygonOptions: - ((tt__PolygonOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__StorageReferencePathExtension: - ((tt__StorageReferencePathExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__StorageReferencePath: - ((tt__StorageReferencePath *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ArrayOfFileProgressExtension: - ((tt__ArrayOfFileProgressExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ArrayOfFileProgress: - ((tt__ArrayOfFileProgress *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FileProgress: - ((tt__FileProgress *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDConfigurationOptionsExtension: - ((tt__OSDConfigurationOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDConfigurationOptions: - ((tt__OSDConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MaximumNumberOfOSDs: - ((tt__MaximumNumberOfOSDs *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDConfigurationExtension: - ((tt__OSDConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDConfiguration: - ((tt__OSDConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDImgOptionsExtension: - ((tt__OSDImgOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDImgOptions: - ((tt__OSDImgOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDTextOptionsExtension: - ((tt__OSDTextOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDTextOptions: - ((tt__OSDTextOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDColorOptionsExtension: - ((tt__OSDColorOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDColorOptions: - ((tt__OSDColorOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ColorOptions: - ((tt__ColorOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ColorspaceRange: - ((tt__ColorspaceRange *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDImgConfigurationExtension: - ((tt__OSDImgConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDImgConfiguration: - ((tt__OSDImgConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDTextConfigurationExtension: - ((tt__OSDTextConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDTextConfiguration: - ((tt__OSDTextConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDColor: - ((tt__OSDColor *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDPosConfigurationExtension: - ((tt__OSDPosConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDPosConfiguration: - ((tt__OSDPosConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OSDReference: - ((tt__OSDReference *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ProfileStatusExtension: - ((tt__ProfileStatusExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ProfileStatus: - ((tt__ProfileStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ActiveConnection: - ((tt__ActiveConnection *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioClassDescriptorExtension: - ((tt__AudioClassDescriptorExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioClassDescriptor: - ((tt__AudioClassDescriptor *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioClassCandidate: - ((tt__AudioClassCandidate *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ActionEngineEventPayloadExtension: - ((tt__ActionEngineEventPayloadExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ActionEngineEventPayload: - ((tt__ActionEngineEventPayload *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsState: - ((tt__AnalyticsState *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsStateInformation: - ((tt__AnalyticsStateInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsEngineControl: - ((tt__AnalyticsEngineControl *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataInputExtension: - ((tt__MetadataInputExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataInput: - ((tt__MetadataInput *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SourceIdentificationExtension: - ((tt__SourceIdentificationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SourceIdentification: - ((tt__SourceIdentification *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsEngineInput: - ((tt__AnalyticsEngineInput *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension: - ((tt__AnalyticsEngineInputInfoExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsEngineInputInfo: - ((tt__AnalyticsEngineInputInfo *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EngineConfiguration: - ((tt__EngineConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension: - ((tt__AnalyticsDeviceEngineConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration: - ((tt__AnalyticsDeviceEngineConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsEngine: - ((tt__AnalyticsEngine *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReplayConfiguration: - ((tt__ReplayConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__GetRecordingJobsResponseItem: - ((tt__GetRecordingJobsResponseItem *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobStateTrack: - ((tt__RecordingJobStateTrack *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobStateTracks: - ((tt__RecordingJobStateTracks *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobStateSource: - ((tt__RecordingJobStateSource *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobStateInformationExtension: - ((tt__RecordingJobStateInformationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobStateInformation: - ((tt__RecordingJobStateInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobTrack: - ((tt__RecordingJobTrack *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobSourceExtension: - ((tt__RecordingJobSourceExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobSource: - ((tt__RecordingJobSource *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobConfigurationExtension: - ((tt__RecordingJobConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingJobConfiguration: - ((tt__RecordingJobConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__GetTracksResponseItem: - ((tt__GetTracksResponseItem *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__GetTracksResponseList: - ((tt__GetTracksResponseList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__GetRecordingsResponseItem: - ((tt__GetRecordingsResponseItem *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TrackConfiguration: - ((tt__TrackConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingConfiguration: - ((tt__RecordingConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataAttributes: - ((tt__MetadataAttributes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioAttributes: - ((tt__AudioAttributes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoAttributes: - ((tt__VideoAttributes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TrackAttributesExtension: - ((tt__TrackAttributesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TrackAttributes: - ((tt__TrackAttributes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MediaAttributes: - ((tt__MediaAttributes *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TrackInformation: - ((tt__TrackInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingSourceInformation: - ((tt__RecordingSourceInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingInformation: - ((tt__RecordingInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FindMetadataResult: - ((tt__FindMetadataResult *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FindMetadataResultList: - ((tt__FindMetadataResultList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FindPTZPositionResult: - ((tt__FindPTZPositionResult *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FindPTZPositionResultList: - ((tt__FindPTZPositionResultList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FindEventResult: - ((tt__FindEventResult *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FindEventResultList: - ((tt__FindEventResultList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FindRecordingResultList: - ((tt__FindRecordingResultList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataFilter: - ((tt__MetadataFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPositionFilter: - ((tt__PTZPositionFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EventFilter: - ((tt__EventFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SearchScopeExtension: - ((tt__SearchScopeExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SearchScope: - ((tt__SearchScope *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingSummary: - ((tt__RecordingSummary *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DateTimeRange: - ((tt__DateTimeRange *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SourceReference: - ((tt__SourceReference *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReceiverStateInformation: - ((tt__ReceiverStateInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReceiverConfiguration: - ((tt__ReceiverConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Receiver: - ((tt__Receiver *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PaneOptionExtension: - ((tt__PaneOptionExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PaneLayoutOptions: - ((tt__PaneLayoutOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LayoutOptionsExtension: - ((tt__LayoutOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LayoutOptions: - ((tt__LayoutOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CodingCapabilities: - ((tt__CodingCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LayoutExtension: - ((tt__LayoutExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Layout: - ((tt__Layout *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PaneLayout: - ((tt__PaneLayout *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PaneConfiguration: - ((tt__PaneConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CellLayout: - ((tt__CellLayout *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MotionExpressionConfiguration: - ((tt__MotionExpressionConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MotionExpression: - ((tt__MotionExpression *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PolylineArrayConfiguration: - ((tt__PolylineArrayConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PolylineArrayExtension: - ((tt__PolylineArrayExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PolylineArray: - ((tt__PolylineArray *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SupportedAnalyticsModulesExtension: - ((tt__SupportedAnalyticsModulesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SupportedAnalyticsModules: - ((tt__SupportedAnalyticsModules *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SupportedRulesExtension: - ((tt__SupportedRulesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SupportedRules: - ((tt__SupportedRules *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ConfigDescriptionExtension: - ((tt__ConfigDescriptionExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ConfigDescription: - ((tt__ConfigDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Config: - ((tt__Config *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RuleEngineConfigurationExtension: - ((tt__RuleEngineConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RuleEngineConfiguration: - ((tt__RuleEngineConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension: - ((tt__AnalyticsEngineConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsEngineConfiguration: - ((tt__AnalyticsEngineConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Polyline: - ((tt__Polyline *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ItemListDescriptionExtension: - ((tt__ItemListDescriptionExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ItemListDescription: - ((tt__ItemListDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MessageDescriptionExtension: - ((tt__MessageDescriptionExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MessageDescription: - ((tt__MessageDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ItemListExtension: - ((tt__ItemListExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ItemList: - ((tt__ItemList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MessageExtension: - ((tt__MessageExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NoiseReductionOptions: - ((tt__NoiseReductionOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DefoggingOptions: - ((tt__DefoggingOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ToneCompensationOptions: - ((tt__ToneCompensationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusOptions20Extension: - ((tt__FocusOptions20Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusOptions20: - ((tt__FocusOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WhiteBalanceOptions20Extension: - ((tt__WhiteBalanceOptions20Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WhiteBalanceOptions20: - ((tt__WhiteBalanceOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusConfiguration20Extension: - ((tt__FocusConfiguration20Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusConfiguration20: - ((tt__FocusConfiguration20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WhiteBalance20Extension: - ((tt__WhiteBalance20Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WhiteBalance20: - ((tt__WhiteBalance20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelativeFocusOptions20: - ((tt__RelativeFocusOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MoveOptions20: - ((tt__MoveOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ExposureOptions20: - ((tt__ExposureOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__BacklightCompensationOptions20: - ((tt__BacklightCompensationOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WideDynamicRangeOptions20: - ((tt__WideDynamicRangeOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension: - ((tt__IrCutFilterAutoAdjustmentOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions: - ((tt__IrCutFilterAutoAdjustmentOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImageStabilizationOptionsExtension: - ((tt__ImageStabilizationOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImageStabilizationOptions: - ((tt__ImageStabilizationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension4: - ((tt__ImagingOptions20Extension4 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension3: - ((tt__ImagingOptions20Extension3 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension2: - ((tt__ImagingOptions20Extension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension: - ((tt__ImagingOptions20Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingOptions20: - ((tt__ImagingOptions20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NoiseReduction: - ((tt__NoiseReduction *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DefoggingExtension: - ((tt__DefoggingExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Defogging: - ((tt__Defogging *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ToneCompensationExtension: - ((tt__ToneCompensationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ToneCompensation: - ((tt__ToneCompensation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Exposure20: - ((tt__Exposure20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__BacklightCompensation20: - ((tt__BacklightCompensation20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WideDynamicRange20: - ((tt__WideDynamicRange20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension: - ((tt__IrCutFilterAutoAdjustmentExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustment: - ((tt__IrCutFilterAutoAdjustment *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImageStabilizationExtension: - ((tt__ImageStabilizationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImageStabilization: - ((tt__ImageStabilization *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension204: - ((tt__ImagingSettingsExtension204 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension203: - ((tt__ImagingSettingsExtension203 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension202: - ((tt__ImagingSettingsExtension202 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension20: - ((tt__ImagingSettingsExtension20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingSettings20: - ((tt__ImagingSettings20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusStatus20Extension: - ((tt__FocusStatus20Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusStatus20: - ((tt__FocusStatus20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingStatus20Extension: - ((tt__ImagingStatus20Extension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingStatus20: - ((tt__ImagingStatus20 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WhiteBalance: - ((tt__WhiteBalance *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ContinuousFocusOptions: - ((tt__ContinuousFocusOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelativeFocusOptions: - ((tt__RelativeFocusOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AbsoluteFocusOptions: - ((tt__AbsoluteFocusOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MoveOptions: - ((tt__MoveOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ContinuousFocus: - ((tt__ContinuousFocus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelativeFocus: - ((tt__RelativeFocus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AbsoluteFocus: - ((tt__AbsoluteFocus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusMove: - ((tt__FocusMove *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WhiteBalanceOptions: - ((tt__WhiteBalanceOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ExposureOptions: - ((tt__ExposureOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusOptions: - ((tt__FocusOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__BacklightCompensationOptions: - ((tt__BacklightCompensationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WideDynamicRangeOptions: - ((tt__WideDynamicRangeOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingOptions: - ((tt__ImagingOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__BacklightCompensation: - ((tt__BacklightCompensation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__WideDynamicRange: - ((tt__WideDynamicRange *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Exposure: - ((tt__Exposure *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension: - ((tt__ImagingSettingsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingSettings: - ((tt__ImagingSettings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusConfiguration: - ((tt__FocusConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FocusStatus: - ((tt__FocusStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingStatus: - ((tt__ImagingStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension: - ((tt__PTZPresetTourStartingConditionOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions: - ((tt__PTZPresetTourStartingConditionOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension: - ((tt__PTZPresetTourPresetDetailOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions: - ((tt__PTZPresetTourPresetDetailOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourSpotOptions: - ((tt__PTZPresetTourSpotOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourOptions: - ((tt__PTZPresetTourOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension: - ((tt__PTZPresetTourStartingConditionExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingCondition: - ((tt__PTZPresetTourStartingCondition *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourStatusExtension: - ((tt__PTZPresetTourStatusExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourStatus: - ((tt__PTZPresetTourStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourTypeExtension: - ((tt__PTZPresetTourTypeExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetail: - ((tt__PTZPresetTourPresetDetail *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourSpotExtension: - ((tt__PTZPresetTourSpotExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourSpot: - ((tt__PTZPresetTourSpot *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourExtension: - ((tt__PTZPresetTourExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PresetTour: - ((tt__PresetTour *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPreset: - ((tt__PTZPreset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZSpeed: - ((tt__PTZSpeed *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Space1DDescription: - ((tt__Space1DDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Space2DDescription: - ((tt__Space2DDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZSpacesExtension: - ((tt__PTZSpacesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZSpaces: - ((tt__PTZSpaces *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ZoomLimits: - ((tt__ZoomLimits *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PanTiltLimits: - ((tt__PanTiltLimits *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReverseOptionsExtension: - ((tt__ReverseOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReverseOptions: - ((tt__ReverseOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EFlipOptionsExtension: - ((tt__EFlipOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EFlipOptions: - ((tt__EFlipOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTControlDirectionOptionsExtension: - ((tt__PTControlDirectionOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTControlDirectionOptions: - ((tt__PTControlDirectionOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZConfigurationOptions2: - ((tt__PTZConfigurationOptions2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZConfigurationOptions: - ((tt__PTZConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Reverse: - ((tt__Reverse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EFlip: - ((tt__EFlip *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTControlDirectionExtension: - ((tt__PTControlDirectionExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTControlDirection: - ((tt__PTControlDirection *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZConfigurationExtension2: - ((tt__PTZConfigurationExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZConfigurationExtension: - ((tt__PTZConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZConfiguration: - ((tt__PTZConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourSupportedExtension: - ((tt__PTZPresetTourSupportedExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZPresetTourSupported: - ((tt__PTZPresetTourSupported *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZNodeExtension2: - ((tt__PTZNodeExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZNodeExtension: - ((tt__PTZNodeExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZNode: - ((tt__PTZNode *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DigitalInput: - ((tt__DigitalInput *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelayOutput: - ((tt__RelayOutput *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RelayOutputSettings: - ((tt__RelayOutputSettings *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__GenericEapPwdConfigurationExtension: - ((tt__GenericEapPwdConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TLSConfiguration: - ((tt__TLSConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EapMethodExtension: - ((tt__EapMethodExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EAPMethodConfiguration: - ((tt__EAPMethodConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot1XConfigurationExtension: - ((tt__Dot1XConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot1XConfiguration: - ((tt__Dot1XConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CertificateInformationExtension: - ((tt__CertificateInformationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CertificateUsage: - ((tt__CertificateUsage *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CertificateInformation: - ((tt__CertificateInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CertificateWithPrivateKey: - ((tt__CertificateWithPrivateKey *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CertificateStatus: - ((tt__CertificateStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Certificate: - ((tt__Certificate *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CertificateGenerationParametersExtension: - ((tt__CertificateGenerationParametersExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CertificateGenerationParameters: - ((tt__CertificateGenerationParameters *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__UserExtension: - ((tt__UserExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__User: - ((tt__User *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RemoteUser: - ((tt__RemoteUser *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TimeZone: - ((tt__TimeZone *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Time: - ((tt__Time *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Date: - ((tt__Date *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DateTime: - ((tt__DateTime *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemDateTimeExtension: - ((tt__SystemDateTimeExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemDateTime: - ((tt__SystemDateTime *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemLogUri: - ((tt__SystemLogUri *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemLogUriList: - ((tt__SystemLogUriList *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__BackupFile: - ((tt__BackupFile *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AttachmentData: - ((tt__AttachmentData *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__BinaryData: - ((tt__BinaryData *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SupportInformation: - ((tt__SupportInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemLog: - ((tt__SystemLog *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsDeviceExtension: - ((tt__AnalyticsDeviceExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsDeviceCapabilities: - ((tt__AnalyticsDeviceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReceiverCapabilities: - ((tt__ReceiverCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ReplayCapabilities: - ((tt__ReplayCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SearchCapabilities: - ((tt__SearchCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RecordingCapabilities: - ((tt__RecordingCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DisplayCapabilities: - ((tt__DisplayCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DeviceIOCapabilities: - ((tt__DeviceIOCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZCapabilities: - ((tt__PTZCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ImagingCapabilities: - ((tt__ImagingCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__OnvifVersion: - ((tt__OnvifVersion *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemCapabilitiesExtension2: - ((tt__SystemCapabilitiesExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemCapabilitiesExtension: - ((tt__SystemCapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SystemCapabilities: - ((tt__SystemCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SecurityCapabilitiesExtension2: - ((tt__SecurityCapabilitiesExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SecurityCapabilitiesExtension: - ((tt__SecurityCapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SecurityCapabilities: - ((tt__SecurityCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkCapabilitiesExtension2: - ((tt__NetworkCapabilitiesExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkCapabilitiesExtension: - ((tt__NetworkCapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkCapabilities: - ((tt__NetworkCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ProfileCapabilities: - ((tt__ProfileCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension: - ((tt__RealTimeStreamingCapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RealTimeStreamingCapabilities: - ((tt__RealTimeStreamingCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MediaCapabilitiesExtension: - ((tt__MediaCapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MediaCapabilities: - ((tt__MediaCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IOCapabilitiesExtension2: - ((tt__IOCapabilitiesExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IOCapabilitiesExtension: - ((tt__IOCapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IOCapabilities: - ((tt__IOCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EventCapabilities: - ((tt__EventCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DeviceCapabilitiesExtension: - ((tt__DeviceCapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DeviceCapabilities: - ((tt__DeviceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnalyticsCapabilities: - ((tt__AnalyticsCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CapabilitiesExtension2: - ((tt__CapabilitiesExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__CapabilitiesExtension: - ((tt__CapabilitiesExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Capabilities: - ((tt__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11AvailableNetworksExtension: - ((tt__Dot11AvailableNetworksExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11AvailableNetworks: - ((tt__Dot11AvailableNetworks *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11Status: - ((tt__Dot11Status *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11Capabilities: - ((tt__Dot11Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2: - ((tt__NetworkInterfaceSetConfigurationExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11PSKSetExtension: - ((tt__Dot11PSKSetExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11PSKSet: - ((tt__Dot11PSKSet *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11SecurityConfigurationExtension: - ((tt__Dot11SecurityConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11SecurityConfiguration: - ((tt__Dot11SecurityConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot11Configuration: - ((tt__Dot11Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPAddressFilterExtension: - ((tt__IPAddressFilterExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPAddressFilter: - ((tt__IPAddressFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension2: - ((tt__NetworkZeroConfigurationExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension: - ((tt__NetworkZeroConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkZeroConfiguration: - ((tt__NetworkZeroConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkGateway: - ((tt__NetworkGateway *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration: - ((tt__IPv4NetworkInterfaceSetConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration: - ((tt__IPv6NetworkInterfaceSetConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension: - ((tt__NetworkInterfaceSetConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfiguration: - ((tt__NetworkInterfaceSetConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DynamicDNSInformationExtension: - ((tt__DynamicDNSInformationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DynamicDNSInformation: - ((tt__DynamicDNSInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NTPInformationExtension: - ((tt__NTPInformationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NTPInformation: - ((tt__NTPInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DNSInformationExtension: - ((tt__DNSInformationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DNSInformation: - ((tt__DNSInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__HostnameInformationExtension: - ((tt__HostnameInformationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__HostnameInformation: - ((tt__HostnameInformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PrefixedIPv6Address: - ((tt__PrefixedIPv6Address *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PrefixedIPv4Address: - ((tt__PrefixedIPv4Address *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPAddress: - ((tt__IPAddress *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkHostExtension: - ((tt__NetworkHostExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkHost: - ((tt__NetworkHost *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkProtocolExtension: - ((tt__NetworkProtocolExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkProtocol: - ((tt__NetworkProtocol *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv6ConfigurationExtension: - ((tt__IPv6ConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv6Configuration: - ((tt__IPv6Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv4Configuration: - ((tt__IPv4Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv4NetworkInterface: - ((tt__IPv4NetworkInterface *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IPv6NetworkInterface: - ((tt__IPv6NetworkInterface *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceInfo: - ((tt__NetworkInterfaceInfo *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceConnectionSetting: - ((tt__NetworkInterfaceConnectionSetting *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceLink: - ((tt__NetworkInterfaceLink *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceExtension2: - ((tt__NetworkInterfaceExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Dot3Configuration: - ((tt__Dot3Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterfaceExtension: - ((tt__NetworkInterfaceExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__NetworkInterface: - ((tt__NetworkInterface *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Scope: - ((tt__Scope *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MediaUri: - ((tt__MediaUri *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Transport: - ((tt__Transport *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__StreamSetup: - ((tt__StreamSetup *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MulticastConfiguration: - ((tt__MulticastConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension: - ((tt__AudioDecoderConfigurationOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__G726DecOptions: - ((tt__G726DecOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AACDecOptions: - ((tt__AACDecOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__G711DecOptions: - ((tt__G711DecOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioDecoderConfigurationOptions: - ((tt__AudioDecoderConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioDecoderConfiguration: - ((tt__AudioDecoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioOutputConfigurationOptions: - ((tt__AudioOutputConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioOutputConfiguration: - ((tt__AudioOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioOutput: - ((tt__AudioOutput *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension: - ((tt__VideoDecoderConfigurationOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Mpeg4DecOptions: - ((tt__Mpeg4DecOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__JpegDecOptions: - ((tt__JpegDecOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__H264DecOptions: - ((tt__H264DecOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoDecoderConfigurationOptions: - ((tt__VideoDecoderConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoOutputConfigurationOptions: - ((tt__VideoOutputConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoOutputConfiguration: - ((tt__VideoOutputConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoOutputExtension: - ((tt__VideoOutputExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoOutput: - ((tt__VideoOutput *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZStatusFilterOptionsExtension: - ((tt__PTZStatusFilterOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZStatusFilterOptions: - ((tt__PTZStatusFilterOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2: - ((tt__MetadataConfigurationOptionsExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension: - ((tt__MetadataConfigurationOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataConfigurationOptions: - ((tt__MetadataConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__EventSubscription: - ((tt__EventSubscription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZFilter: - ((tt__PTZFilter *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataConfigurationExtension: - ((tt__MetadataConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__MetadataConfiguration: - ((tt__MetadataConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoAnalyticsConfiguration: - ((tt__VideoAnalyticsConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions: - ((tt__AudioEncoder2ConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioEncoder2Configuration: - ((tt__AudioEncoder2Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioEncoderConfigurationOption: - ((tt__AudioEncoderConfigurationOption *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioEncoderConfigurationOptions: - ((tt__AudioEncoderConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioEncoderConfiguration: - ((tt__AudioEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioSourceOptionsExtension: - ((tt__AudioSourceOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioSourceConfigurationOptions: - ((tt__AudioSourceConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioSourceConfiguration: - ((tt__AudioSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions: - ((tt__VideoEncoder2ConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoRateControl2: - ((tt__VideoRateControl2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoResolution2: - ((tt__VideoResolution2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncoder2Configuration: - ((tt__VideoEncoder2Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__H264Options2: - ((tt__H264Options2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__H264Options: - ((tt__H264Options *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Mpeg4Options2: - ((tt__Mpeg4Options2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Mpeg4Options: - ((tt__Mpeg4Options *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__JpegOptions2: - ((tt__JpegOptions2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__JpegOptions: - ((tt__JpegOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncoderOptionsExtension2: - ((tt__VideoEncoderOptionsExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncoderOptionsExtension: - ((tt__VideoEncoderOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncoderConfigurationOptions: - ((tt__VideoEncoderConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__H264Configuration: - ((tt__H264Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Mpeg4Configuration: - ((tt__Mpeg4Configuration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoRateControl: - ((tt__VideoRateControl *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoResolution: - ((tt__VideoResolution *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoEncoderConfiguration: - ((tt__VideoEncoderConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__SceneOrientation: - ((tt__SceneOrientation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RotateOptionsExtension: - ((tt__RotateOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RotateOptions: - ((tt__RotateOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2: - ((tt__VideoSourceConfigurationOptionsExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension: - ((tt__VideoSourceConfigurationOptionsExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptions: - ((tt__VideoSourceConfigurationOptions *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LensDescription: - ((tt__LensDescription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LensOffset: - ((tt__LensOffset *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LensProjection: - ((tt__LensProjection *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__RotateExtension: - ((tt__RotateExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Rotate: - ((tt__Rotate *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationExtension2: - ((tt__VideoSourceConfigurationExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationExtension: - ((tt__VideoSourceConfigurationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceConfiguration: - ((tt__VideoSourceConfiguration *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ConfigurationEntity: - ((tt__ConfigurationEntity *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ProfileExtension2: - ((tt__ProfileExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ProfileExtension: - ((tt__ProfileExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Profile: - ((tt__Profile *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AudioSource: - ((tt__AudioSource *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceExtension2: - ((tt__VideoSourceExtension2 *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSourceExtension: - ((tt__VideoSourceExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__VideoSource: - ((tt__VideoSource *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__AnyHolder: - ((tt__AnyHolder *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FloatItems: - ((tt__FloatItems *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IntItems: - ((tt__IntItems *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DurationRange: - ((tt__DurationRange *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FloatRange: - ((tt__FloatRange *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IntRectangleRange: - ((tt__IntRectangleRange *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IntRectangle: - ((tt__IntRectangle *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__DeviceEntity: - ((tt__DeviceEntity *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LocationEntity: - ((tt__LocationEntity *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LocalOrientation: - ((tt__LocalOrientation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__LocalLocation: - ((tt__LocalLocation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__GeoOrientation: - ((tt__GeoOrientation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__GeoLocation: - ((tt__GeoLocation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__TransformationExtension: - ((tt__TransformationExtension *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Transformation: - ((tt__Transformation *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ColorDescriptor: - ((tt__ColorDescriptor *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__ColorCovariance: - ((tt__ColorCovariance *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Color: - ((tt__Color *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Polygon: - ((tt__Polygon *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Rectangle: - ((tt__Rectangle *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Vector: - ((tt__Vector *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZMoveStatus: - ((tt__PTZMoveStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZStatus: - ((tt__PTZStatus *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__PTZVector: - ((tt__PTZVector *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Vector1D: - ((tt__Vector1D *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__Vector2D: - ((tt__Vector2D *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IntRange: - ((tt__IntRange *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__GetEventPropertiesResponse: - ((_tev__GetEventPropertiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__GetEventProperties: - ((_tev__GetEventProperties *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__SetSynchronizationPointResponse: - ((_tev__SetSynchronizationPointResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__SetSynchronizationPoint: - ((_tev__SetSynchronizationPoint *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__SeekResponse: - ((_tev__SeekResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__Seek: - ((_tev__Seek *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__PullMessagesFaultResponse: - ((_tev__PullMessagesFaultResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__PullMessagesResponse: - ((_tev__PullMessagesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__PullMessages: - ((_tev__PullMessages *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__CreatePullPointSubscriptionResponse: - ((_tev__CreatePullPointSubscriptionResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__CreatePullPointSubscription: - ((_tev__CreatePullPointSubscription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__GetServiceCapabilitiesResponse: - ((_tev__GetServiceCapabilitiesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__tev__GetServiceCapabilities: - ((_tev__GetServiceCapabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tev__SubscriptionPolicy: - ((tev__SubscriptionPolicy *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tev__Capabilities: - ((tev__Capabilities *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsrfbf__BaseFaultType: - ((wsrfbf__BaseFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__ResumeSubscriptionResponse: - ((_wsnt__ResumeSubscriptionResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__ResumeSubscription: - ((_wsnt__ResumeSubscription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__PauseSubscriptionResponse: - ((_wsnt__PauseSubscriptionResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__PauseSubscription: - ((_wsnt__PauseSubscription *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__UnsubscribeResponse: - ((_wsnt__UnsubscribeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__Unsubscribe: - ((_wsnt__Unsubscribe *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__RenewResponse: - ((_wsnt__RenewResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__Renew: - ((_wsnt__Renew *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__CreatePullPointResponse: - ((_wsnt__CreatePullPointResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__CreatePullPoint: - ((_wsnt__CreatePullPoint *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__DestroyPullPointResponse: - ((_wsnt__DestroyPullPointResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__DestroyPullPoint: - ((_wsnt__DestroyPullPoint *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__GetMessagesResponse: - ((_wsnt__GetMessagesResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__GetMessages: - ((_wsnt__GetMessages *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__GetCurrentMessageResponse: - ((_wsnt__GetCurrentMessageResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__GetCurrentMessage: - ((_wsnt__GetCurrentMessage *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__SubscribeResponse: - ((_wsnt__SubscribeResponse *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__Subscribe: - ((_wsnt__Subscribe *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__UseRaw: - ((_wsnt__UseRaw *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__Notify: - ((_wsnt__Notify *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__SubscriptionManagerRP: - ((_wsnt__SubscriptionManagerRP *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__wsnt__NotificationProducerRP: - ((_wsnt__NotificationProducerRP *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__ResumeFailedFaultType: - ((wsnt__ResumeFailedFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__PauseFailedFaultType: - ((wsnt__PauseFailedFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType: - ((wsnt__UnableToDestroySubscriptionFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType: - ((wsnt__UnacceptableTerminationTimeFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType: - ((wsnt__UnableToCreatePullPointFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType: - ((wsnt__UnableToDestroyPullPointFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnableToGetMessagesFaultType: - ((wsnt__UnableToGetMessagesFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType: - ((wsnt__NoCurrentMessageOnTopicFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType: - ((wsnt__UnacceptableInitialTerminationTimeFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType: - ((wsnt__NotifyMessageNotSupportedFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType: - ((wsnt__UnsupportedPolicyRequestFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType: - ((wsnt__UnrecognizedPolicyRequestFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType: - ((wsnt__InvalidMessageContentExpressionFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType: - ((wsnt__InvalidProducerPropertiesExpressionFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType: - ((wsnt__MultipleTopicsSpecifiedFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__TopicNotSupportedFaultType: - ((wsnt__TopicNotSupportedFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType: - ((wsnt__InvalidTopicExpressionFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType: - ((wsnt__TopicExpressionDialectUnknownFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__InvalidFilterFaultType: - ((wsnt__InvalidFilterFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType: - ((wsnt__SubscribeCreationFailedFaultType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__NotificationMessageHolderType: - ((wsnt__NotificationMessageHolderType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__SubscriptionPolicyType: - ((wsnt__SubscriptionPolicyType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__FilterType: - ((wsnt__FilterType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__TopicExpressionType: - ((wsnt__TopicExpressionType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_wsnt__QueryExpressionType: - ((wsnt__QueryExpressionType *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE__xml__lang: - soap_serialize__xml__lang(soap, (const std::string *)ptr); - break; - case SOAP_TYPE__xmime__contentType: - soap_serialize__xmime__contentType(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_xsd__token__: - ((xsd__token__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__token: - soap_serialize_xsd__token(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_xsd__string_: - ((xsd__string_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__nonNegativeInteger__: - ((xsd__nonNegativeInteger__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__nonNegativeInteger: - soap_serialize_xsd__nonNegativeInteger(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_xsd__integer__: - ((xsd__integer__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__integer: - soap_serialize_xsd__integer(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_xsd__int_: - ((xsd__int_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__hexBinary__: - ((xsd__hexBinary__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__float_: - ((xsd__float_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__duration__: - ((xsd__duration__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__duration: - soap_serialize_xsd__duration(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_xsd__double_: - ((xsd__double_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__dateTime__: - ((xsd__dateTime__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__boolean_: - ((xsd__boolean_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__base64Binary__: - ((xsd__base64Binary__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__anyURI__: - ((xsd__anyURI__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__anyURI: - soap_serialize_xsd__anyURI(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_xsd__anySimpleType__: - ((xsd__anySimpleType__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__anySimpleType: - soap_serialize_xsd__anySimpleType(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_xsd__QName__: - ((xsd__QName__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__NCName__: - ((xsd__NCName__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__NCName: - soap_serialize_xsd__NCName(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_SOAP_ENV__Fault_: - ((SOAP_ENV__Fault_ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_SOAP_ENV__Envelope__: - ((SOAP_ENV__Envelope__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_SOAP_ENV__Envelope: - soap_serialize_SOAP_ENV__Envelope(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_wsa5__EndpointReferenceType__: - ((wsa5__EndpointReferenceType__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__IntList__: - ((tt__IntList__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_tt__FloatList__: - ((tt__FloatList__ *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__hexBinary: - ((xsd__hexBinary *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__base64Binary: - ((xsd__base64Binary *)ptr)->soap_serialize(soap); - break; - case SOAP_TYPE_xsd__QName: - soap_serialize_xsd__QName(soap, (const std::string *)ptr); - break; - case SOAP_TYPE_std__string: - soap_serialize_std__string(soap, (const std::string *)ptr); - break; - case SOAP_TYPE___tse__GetMetadataSearchResults: - soap_serialize___tse__GetMetadataSearchResults(soap, (const struct __tse__GetMetadataSearchResults *)ptr); - break; - case SOAP_TYPE___tse__FindMetadata: - soap_serialize___tse__FindMetadata(soap, (const struct __tse__FindMetadata *)ptr); - break; - case SOAP_TYPE___tse__EndSearch: - soap_serialize___tse__EndSearch(soap, (const struct __tse__EndSearch *)ptr); - break; - case SOAP_TYPE___tse__GetSearchState: - soap_serialize___tse__GetSearchState(soap, (const struct __tse__GetSearchState *)ptr); - break; - case SOAP_TYPE___tse__GetPTZPositionSearchResults: - soap_serialize___tse__GetPTZPositionSearchResults(soap, (const struct __tse__GetPTZPositionSearchResults *)ptr); - break; - case SOAP_TYPE___tse__FindPTZPosition: - soap_serialize___tse__FindPTZPosition(soap, (const struct __tse__FindPTZPosition *)ptr); - break; - case SOAP_TYPE___tse__GetEventSearchResults: - soap_serialize___tse__GetEventSearchResults(soap, (const struct __tse__GetEventSearchResults *)ptr); - break; - case SOAP_TYPE___tse__FindEvents: - soap_serialize___tse__FindEvents(soap, (const struct __tse__FindEvents *)ptr); - break; - case SOAP_TYPE___tse__GetRecordingSearchResults: - soap_serialize___tse__GetRecordingSearchResults(soap, (const struct __tse__GetRecordingSearchResults *)ptr); - break; - case SOAP_TYPE___tse__FindRecordings: - soap_serialize___tse__FindRecordings(soap, (const struct __tse__FindRecordings *)ptr); - break; - case SOAP_TYPE___tse__GetMediaAttributes: - soap_serialize___tse__GetMediaAttributes(soap, (const struct __tse__GetMediaAttributes *)ptr); - break; - case SOAP_TYPE___tse__GetRecordingInformation: - soap_serialize___tse__GetRecordingInformation(soap, (const struct __tse__GetRecordingInformation *)ptr); - break; - case SOAP_TYPE___tse__GetRecordingSummary: - soap_serialize___tse__GetRecordingSummary(soap, (const struct __tse__GetRecordingSummary *)ptr); - break; - case SOAP_TYPE___tse__GetServiceCapabilities: - soap_serialize___tse__GetServiceCapabilities(soap, (const struct __tse__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___trv__GetReceiverState: - soap_serialize___trv__GetReceiverState(soap, (const struct __trv__GetReceiverState *)ptr); - break; - case SOAP_TYPE___trv__SetReceiverMode: - soap_serialize___trv__SetReceiverMode(soap, (const struct __trv__SetReceiverMode *)ptr); - break; - case SOAP_TYPE___trv__ConfigureReceiver: - soap_serialize___trv__ConfigureReceiver(soap, (const struct __trv__ConfigureReceiver *)ptr); - break; - case SOAP_TYPE___trv__DeleteReceiver: - soap_serialize___trv__DeleteReceiver(soap, (const struct __trv__DeleteReceiver *)ptr); - break; - case SOAP_TYPE___trv__CreateReceiver: - soap_serialize___trv__CreateReceiver(soap, (const struct __trv__CreateReceiver *)ptr); - break; - case SOAP_TYPE___trv__GetReceiver: - soap_serialize___trv__GetReceiver(soap, (const struct __trv__GetReceiver *)ptr); - break; - case SOAP_TYPE___trv__GetReceivers: - soap_serialize___trv__GetReceivers(soap, (const struct __trv__GetReceivers *)ptr); - break; - case SOAP_TYPE___trv__GetServiceCapabilities: - soap_serialize___trv__GetServiceCapabilities(soap, (const struct __trv__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___trt__DeleteOSD: - soap_serialize___trt__DeleteOSD(soap, (const struct __trt__DeleteOSD *)ptr); - break; - case SOAP_TYPE___trt__CreateOSD: - soap_serialize___trt__CreateOSD(soap, (const struct __trt__CreateOSD *)ptr); - break; - case SOAP_TYPE___trt__SetOSD: - soap_serialize___trt__SetOSD(soap, (const struct __trt__SetOSD *)ptr); - break; - case SOAP_TYPE___trt__GetOSDOptions: - soap_serialize___trt__GetOSDOptions(soap, (const struct __trt__GetOSDOptions *)ptr); - break; - case SOAP_TYPE___trt__GetOSD: - soap_serialize___trt__GetOSD(soap, (const struct __trt__GetOSD *)ptr); - break; - case SOAP_TYPE___trt__GetOSDs: - soap_serialize___trt__GetOSDs(soap, (const struct __trt__GetOSDs *)ptr); - break; - case SOAP_TYPE___trt__SetVideoSourceMode: - soap_serialize___trt__SetVideoSourceMode(soap, (const struct __trt__SetVideoSourceMode *)ptr); - break; - case SOAP_TYPE___trt__GetVideoSourceModes: - soap_serialize___trt__GetVideoSourceModes(soap, (const struct __trt__GetVideoSourceModes *)ptr); - break; - case SOAP_TYPE___trt__GetSnapshotUri: - soap_serialize___trt__GetSnapshotUri(soap, (const struct __trt__GetSnapshotUri *)ptr); - break; - case SOAP_TYPE___trt__SetSynchronizationPoint: - soap_serialize___trt__SetSynchronizationPoint(soap, (const struct __trt__SetSynchronizationPoint *)ptr); - break; - case SOAP_TYPE___trt__StopMulticastStreaming: - soap_serialize___trt__StopMulticastStreaming(soap, (const struct __trt__StopMulticastStreaming *)ptr); - break; - case SOAP_TYPE___trt__StartMulticastStreaming: - soap_serialize___trt__StartMulticastStreaming(soap, (const struct __trt__StartMulticastStreaming *)ptr); - break; - case SOAP_TYPE___trt__GetStreamUri: - soap_serialize___trt__GetStreamUri(soap, (const struct __trt__GetStreamUri *)ptr); - break; - case SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances: - soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, (const struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *)ptr); - break; - case SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions: - soap_serialize___trt__GetAudioDecoderConfigurationOptions(soap, (const struct __trt__GetAudioDecoderConfigurationOptions *)ptr); - break; - case SOAP_TYPE___trt__GetAudioOutputConfigurationOptions: - soap_serialize___trt__GetAudioOutputConfigurationOptions(soap, (const struct __trt__GetAudioOutputConfigurationOptions *)ptr); - break; - case SOAP_TYPE___trt__GetMetadataConfigurationOptions: - soap_serialize___trt__GetMetadataConfigurationOptions(soap, (const struct __trt__GetMetadataConfigurationOptions *)ptr); - break; - case SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions: - soap_serialize___trt__GetAudioEncoderConfigurationOptions(soap, (const struct __trt__GetAudioEncoderConfigurationOptions *)ptr); - break; - case SOAP_TYPE___trt__GetAudioSourceConfigurationOptions: - soap_serialize___trt__GetAudioSourceConfigurationOptions(soap, (const struct __trt__GetAudioSourceConfigurationOptions *)ptr); - break; - case SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions: - soap_serialize___trt__GetVideoEncoderConfigurationOptions(soap, (const struct __trt__GetVideoEncoderConfigurationOptions *)ptr); - break; - case SOAP_TYPE___trt__GetVideoSourceConfigurationOptions: - soap_serialize___trt__GetVideoSourceConfigurationOptions(soap, (const struct __trt__GetVideoSourceConfigurationOptions *)ptr); - break; - case SOAP_TYPE___trt__SetAudioDecoderConfiguration: - soap_serialize___trt__SetAudioDecoderConfiguration(soap, (const struct __trt__SetAudioDecoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__SetAudioOutputConfiguration: - soap_serialize___trt__SetAudioOutputConfiguration(soap, (const struct __trt__SetAudioOutputConfiguration *)ptr); - break; - case SOAP_TYPE___trt__SetMetadataConfiguration: - soap_serialize___trt__SetMetadataConfiguration(soap, (const struct __trt__SetMetadataConfiguration *)ptr); - break; - case SOAP_TYPE___trt__SetVideoAnalyticsConfiguration: - soap_serialize___trt__SetVideoAnalyticsConfiguration(soap, (const struct __trt__SetVideoAnalyticsConfiguration *)ptr); - break; - case SOAP_TYPE___trt__SetAudioEncoderConfiguration: - soap_serialize___trt__SetAudioEncoderConfiguration(soap, (const struct __trt__SetAudioEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__SetAudioSourceConfiguration: - soap_serialize___trt__SetAudioSourceConfiguration(soap, (const struct __trt__SetAudioSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__SetVideoEncoderConfiguration: - soap_serialize___trt__SetVideoEncoderConfiguration(soap, (const struct __trt__SetVideoEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__SetVideoSourceConfiguration: - soap_serialize___trt__SetVideoSourceConfiguration(soap, (const struct __trt__SetVideoSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations: - soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(soap, (const struct __trt__GetCompatibleAudioDecoderConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations: - soap_serialize___trt__GetCompatibleAudioOutputConfigurations(soap, (const struct __trt__GetCompatibleAudioOutputConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleMetadataConfigurations: - soap_serialize___trt__GetCompatibleMetadataConfigurations(soap, (const struct __trt__GetCompatibleMetadataConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations: - soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(soap, (const struct __trt__GetCompatibleVideoAnalyticsConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations: - soap_serialize___trt__GetCompatibleAudioSourceConfigurations(soap, (const struct __trt__GetCompatibleAudioSourceConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations: - soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(soap, (const struct __trt__GetCompatibleAudioEncoderConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations: - soap_serialize___trt__GetCompatibleVideoSourceConfigurations(soap, (const struct __trt__GetCompatibleVideoSourceConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations: - soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(soap, (const struct __trt__GetCompatibleVideoEncoderConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetAudioDecoderConfiguration: - soap_serialize___trt__GetAudioDecoderConfiguration(soap, (const struct __trt__GetAudioDecoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetAudioOutputConfiguration: - soap_serialize___trt__GetAudioOutputConfiguration(soap, (const struct __trt__GetAudioOutputConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetMetadataConfiguration: - soap_serialize___trt__GetMetadataConfiguration(soap, (const struct __trt__GetMetadataConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetVideoAnalyticsConfiguration: - soap_serialize___trt__GetVideoAnalyticsConfiguration(soap, (const struct __trt__GetVideoAnalyticsConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetAudioEncoderConfiguration: - soap_serialize___trt__GetAudioEncoderConfiguration(soap, (const struct __trt__GetAudioEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetAudioSourceConfiguration: - soap_serialize___trt__GetAudioSourceConfiguration(soap, (const struct __trt__GetAudioSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetVideoEncoderConfiguration: - soap_serialize___trt__GetVideoEncoderConfiguration(soap, (const struct __trt__GetVideoEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetVideoSourceConfiguration: - soap_serialize___trt__GetVideoSourceConfiguration(soap, (const struct __trt__GetVideoSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetAudioDecoderConfigurations: - soap_serialize___trt__GetAudioDecoderConfigurations(soap, (const struct __trt__GetAudioDecoderConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetAudioOutputConfigurations: - soap_serialize___trt__GetAudioOutputConfigurations(soap, (const struct __trt__GetAudioOutputConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetMetadataConfigurations: - soap_serialize___trt__GetMetadataConfigurations(soap, (const struct __trt__GetMetadataConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetVideoAnalyticsConfigurations: - soap_serialize___trt__GetVideoAnalyticsConfigurations(soap, (const struct __trt__GetVideoAnalyticsConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetAudioEncoderConfigurations: - soap_serialize___trt__GetAudioEncoderConfigurations(soap, (const struct __trt__GetAudioEncoderConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetAudioSourceConfigurations: - soap_serialize___trt__GetAudioSourceConfigurations(soap, (const struct __trt__GetAudioSourceConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetVideoEncoderConfigurations: - soap_serialize___trt__GetVideoEncoderConfigurations(soap, (const struct __trt__GetVideoEncoderConfigurations *)ptr); - break; - case SOAP_TYPE___trt__GetVideoSourceConfigurations: - soap_serialize___trt__GetVideoSourceConfigurations(soap, (const struct __trt__GetVideoSourceConfigurations *)ptr); - break; - case SOAP_TYPE___trt__DeleteProfile: - soap_serialize___trt__DeleteProfile(soap, (const struct __trt__DeleteProfile *)ptr); - break; - case SOAP_TYPE___trt__RemoveAudioDecoderConfiguration: - soap_serialize___trt__RemoveAudioDecoderConfiguration(soap, (const struct __trt__RemoveAudioDecoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemoveAudioOutputConfiguration: - soap_serialize___trt__RemoveAudioOutputConfiguration(soap, (const struct __trt__RemoveAudioOutputConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemoveMetadataConfiguration: - soap_serialize___trt__RemoveMetadataConfiguration(soap, (const struct __trt__RemoveMetadataConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration: - soap_serialize___trt__RemoveVideoAnalyticsConfiguration(soap, (const struct __trt__RemoveVideoAnalyticsConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemovePTZConfiguration: - soap_serialize___trt__RemovePTZConfiguration(soap, (const struct __trt__RemovePTZConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemoveAudioSourceConfiguration: - soap_serialize___trt__RemoveAudioSourceConfiguration(soap, (const struct __trt__RemoveAudioSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemoveAudioEncoderConfiguration: - soap_serialize___trt__RemoveAudioEncoderConfiguration(soap, (const struct __trt__RemoveAudioEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemoveVideoSourceConfiguration: - soap_serialize___trt__RemoveVideoSourceConfiguration(soap, (const struct __trt__RemoveVideoSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__RemoveVideoEncoderConfiguration: - soap_serialize___trt__RemoveVideoEncoderConfiguration(soap, (const struct __trt__RemoveVideoEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddAudioDecoderConfiguration: - soap_serialize___trt__AddAudioDecoderConfiguration(soap, (const struct __trt__AddAudioDecoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddAudioOutputConfiguration: - soap_serialize___trt__AddAudioOutputConfiguration(soap, (const struct __trt__AddAudioOutputConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddMetadataConfiguration: - soap_serialize___trt__AddMetadataConfiguration(soap, (const struct __trt__AddMetadataConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddVideoAnalyticsConfiguration: - soap_serialize___trt__AddVideoAnalyticsConfiguration(soap, (const struct __trt__AddVideoAnalyticsConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddPTZConfiguration: - soap_serialize___trt__AddPTZConfiguration(soap, (const struct __trt__AddPTZConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddAudioSourceConfiguration: - soap_serialize___trt__AddAudioSourceConfiguration(soap, (const struct __trt__AddAudioSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddAudioEncoderConfiguration: - soap_serialize___trt__AddAudioEncoderConfiguration(soap, (const struct __trt__AddAudioEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddVideoSourceConfiguration: - soap_serialize___trt__AddVideoSourceConfiguration(soap, (const struct __trt__AddVideoSourceConfiguration *)ptr); - break; - case SOAP_TYPE___trt__AddVideoEncoderConfiguration: - soap_serialize___trt__AddVideoEncoderConfiguration(soap, (const struct __trt__AddVideoEncoderConfiguration *)ptr); - break; - case SOAP_TYPE___trt__GetProfiles: - soap_serialize___trt__GetProfiles(soap, (const struct __trt__GetProfiles *)ptr); - break; - case SOAP_TYPE___trt__GetProfile: - soap_serialize___trt__GetProfile(soap, (const struct __trt__GetProfile *)ptr); - break; - case SOAP_TYPE___trt__CreateProfile: - soap_serialize___trt__CreateProfile(soap, (const struct __trt__CreateProfile *)ptr); - break; - case SOAP_TYPE___trt__GetAudioOutputs: - soap_serialize___trt__GetAudioOutputs(soap, (const struct __trt__GetAudioOutputs *)ptr); - break; - case SOAP_TYPE___trt__GetAudioSources: - soap_serialize___trt__GetAudioSources(soap, (const struct __trt__GetAudioSources *)ptr); - break; - case SOAP_TYPE___trt__GetVideoSources: - soap_serialize___trt__GetVideoSources(soap, (const struct __trt__GetVideoSources *)ptr); - break; - case SOAP_TYPE___trt__GetServiceCapabilities: - soap_serialize___trt__GetServiceCapabilities(soap, (const struct __trt__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___trp__SetReplayConfiguration: - soap_serialize___trp__SetReplayConfiguration(soap, (const struct __trp__SetReplayConfiguration *)ptr); - break; - case SOAP_TYPE___trp__GetReplayConfiguration: - soap_serialize___trp__GetReplayConfiguration(soap, (const struct __trp__GetReplayConfiguration *)ptr); - break; - case SOAP_TYPE___trp__GetReplayUri: - soap_serialize___trp__GetReplayUri(soap, (const struct __trp__GetReplayUri *)ptr); - break; - case SOAP_TYPE___trp__GetServiceCapabilities: - soap_serialize___trp__GetServiceCapabilities(soap, (const struct __trp__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___trc__GetExportRecordedDataState: - soap_serialize___trc__GetExportRecordedDataState(soap, (const struct __trc__GetExportRecordedDataState *)ptr); - break; - case SOAP_TYPE___trc__StopExportRecordedData: - soap_serialize___trc__StopExportRecordedData(soap, (const struct __trc__StopExportRecordedData *)ptr); - break; - case SOAP_TYPE___trc__ExportRecordedData: - soap_serialize___trc__ExportRecordedData(soap, (const struct __trc__ExportRecordedData *)ptr); - break; - case SOAP_TYPE___trc__GetRecordingJobState: - soap_serialize___trc__GetRecordingJobState(soap, (const struct __trc__GetRecordingJobState *)ptr); - break; - case SOAP_TYPE___trc__SetRecordingJobMode: - soap_serialize___trc__SetRecordingJobMode(soap, (const struct __trc__SetRecordingJobMode *)ptr); - break; - case SOAP_TYPE___trc__GetRecordingJobConfiguration: - soap_serialize___trc__GetRecordingJobConfiguration(soap, (const struct __trc__GetRecordingJobConfiguration *)ptr); - break; - case SOAP_TYPE___trc__SetRecordingJobConfiguration: - soap_serialize___trc__SetRecordingJobConfiguration(soap, (const struct __trc__SetRecordingJobConfiguration *)ptr); - break; - case SOAP_TYPE___trc__GetRecordingJobs: - soap_serialize___trc__GetRecordingJobs(soap, (const struct __trc__GetRecordingJobs *)ptr); - break; - case SOAP_TYPE___trc__DeleteRecordingJob: - soap_serialize___trc__DeleteRecordingJob(soap, (const struct __trc__DeleteRecordingJob *)ptr); - break; - case SOAP_TYPE___trc__CreateRecordingJob: - soap_serialize___trc__CreateRecordingJob(soap, (const struct __trc__CreateRecordingJob *)ptr); - break; - case SOAP_TYPE___trc__SetTrackConfiguration: - soap_serialize___trc__SetTrackConfiguration(soap, (const struct __trc__SetTrackConfiguration *)ptr); - break; - case SOAP_TYPE___trc__GetTrackConfiguration: - soap_serialize___trc__GetTrackConfiguration(soap, (const struct __trc__GetTrackConfiguration *)ptr); - break; - case SOAP_TYPE___trc__DeleteTrack: - soap_serialize___trc__DeleteTrack(soap, (const struct __trc__DeleteTrack *)ptr); - break; - case SOAP_TYPE___trc__CreateTrack: - soap_serialize___trc__CreateTrack(soap, (const struct __trc__CreateTrack *)ptr); - break; - case SOAP_TYPE___trc__GetRecordingOptions: - soap_serialize___trc__GetRecordingOptions(soap, (const struct __trc__GetRecordingOptions *)ptr); - break; - case SOAP_TYPE___trc__GetRecordingConfiguration: - soap_serialize___trc__GetRecordingConfiguration(soap, (const struct __trc__GetRecordingConfiguration *)ptr); - break; - case SOAP_TYPE___trc__SetRecordingConfiguration: - soap_serialize___trc__SetRecordingConfiguration(soap, (const struct __trc__SetRecordingConfiguration *)ptr); - break; - case SOAP_TYPE___trc__GetRecordings: - soap_serialize___trc__GetRecordings(soap, (const struct __trc__GetRecordings *)ptr); - break; - case SOAP_TYPE___trc__DeleteRecording: - soap_serialize___trc__DeleteRecording(soap, (const struct __trc__DeleteRecording *)ptr); - break; - case SOAP_TYPE___trc__CreateRecording: - soap_serialize___trc__CreateRecording(soap, (const struct __trc__CreateRecording *)ptr); - break; - case SOAP_TYPE___trc__GetServiceCapabilities: - soap_serialize___trc__GetServiceCapabilities(soap, (const struct __trc__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___tptz__GetCompatibleConfigurations: - soap_serialize___tptz__GetCompatibleConfigurations(soap, (const struct __tptz__GetCompatibleConfigurations *)ptr); - break; - case SOAP_TYPE___tptz__RemovePresetTour: - soap_serialize___tptz__RemovePresetTour(soap, (const struct __tptz__RemovePresetTour *)ptr); - break; - case SOAP_TYPE___tptz__OperatePresetTour: - soap_serialize___tptz__OperatePresetTour(soap, (const struct __tptz__OperatePresetTour *)ptr); - break; - case SOAP_TYPE___tptz__ModifyPresetTour: - soap_serialize___tptz__ModifyPresetTour(soap, (const struct __tptz__ModifyPresetTour *)ptr); - break; - case SOAP_TYPE___tptz__CreatePresetTour: - soap_serialize___tptz__CreatePresetTour(soap, (const struct __tptz__CreatePresetTour *)ptr); - break; - case SOAP_TYPE___tptz__GetPresetTourOptions: - soap_serialize___tptz__GetPresetTourOptions(soap, (const struct __tptz__GetPresetTourOptions *)ptr); - break; - case SOAP_TYPE___tptz__GetPresetTour: - soap_serialize___tptz__GetPresetTour(soap, (const struct __tptz__GetPresetTour *)ptr); - break; - case SOAP_TYPE___tptz__GetPresetTours: - soap_serialize___tptz__GetPresetTours(soap, (const struct __tptz__GetPresetTours *)ptr); - break; - case SOAP_TYPE___tptz__Stop: - soap_serialize___tptz__Stop(soap, (const struct __tptz__Stop *)ptr); - break; - case SOAP_TYPE___tptz__AbsoluteMove: - soap_serialize___tptz__AbsoluteMove(soap, (const struct __tptz__AbsoluteMove *)ptr); - break; - case SOAP_TYPE___tptz__SendAuxiliaryCommand: - soap_serialize___tptz__SendAuxiliaryCommand(soap, (const struct __tptz__SendAuxiliaryCommand *)ptr); - break; - case SOAP_TYPE___tptz__RelativeMove: - soap_serialize___tptz__RelativeMove(soap, (const struct __tptz__RelativeMove *)ptr); - break; - case SOAP_TYPE___tptz__ContinuousMove: - soap_serialize___tptz__ContinuousMove(soap, (const struct __tptz__ContinuousMove *)ptr); - break; - case SOAP_TYPE___tptz__SetHomePosition: - soap_serialize___tptz__SetHomePosition(soap, (const struct __tptz__SetHomePosition *)ptr); - break; - case SOAP_TYPE___tptz__GotoHomePosition: - soap_serialize___tptz__GotoHomePosition(soap, (const struct __tptz__GotoHomePosition *)ptr); - break; - case SOAP_TYPE___tptz__GetConfigurationOptions: - soap_serialize___tptz__GetConfigurationOptions(soap, (const struct __tptz__GetConfigurationOptions *)ptr); - break; - case SOAP_TYPE___tptz__SetConfiguration: - soap_serialize___tptz__SetConfiguration(soap, (const struct __tptz__SetConfiguration *)ptr); - break; - case SOAP_TYPE___tptz__GetNode: - soap_serialize___tptz__GetNode(soap, (const struct __tptz__GetNode *)ptr); - break; - case SOAP_TYPE___tptz__GetNodes: - soap_serialize___tptz__GetNodes(soap, (const struct __tptz__GetNodes *)ptr); - break; - case SOAP_TYPE___tptz__GetConfiguration: - soap_serialize___tptz__GetConfiguration(soap, (const struct __tptz__GetConfiguration *)ptr); - break; - case SOAP_TYPE___tptz__GetStatus: - soap_serialize___tptz__GetStatus(soap, (const struct __tptz__GetStatus *)ptr); - break; - case SOAP_TYPE___tptz__GotoPreset: - soap_serialize___tptz__GotoPreset(soap, (const struct __tptz__GotoPreset *)ptr); - break; - case SOAP_TYPE___tptz__RemovePreset: - soap_serialize___tptz__RemovePreset(soap, (const struct __tptz__RemovePreset *)ptr); - break; - case SOAP_TYPE___tptz__SetPreset: - soap_serialize___tptz__SetPreset(soap, (const struct __tptz__SetPreset *)ptr); - break; - case SOAP_TYPE___tptz__GetPresets: - soap_serialize___tptz__GetPresets(soap, (const struct __tptz__GetPresets *)ptr); - break; - case SOAP_TYPE___tptz__GetConfigurations: - soap_serialize___tptz__GetConfigurations(soap, (const struct __tptz__GetConfigurations *)ptr); - break; - case SOAP_TYPE___tptz__GetServiceCapabilities: - soap_serialize___tptz__GetServiceCapabilities(soap, (const struct __tptz__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___tmd__SendReceiveSerialCommand: - soap_serialize___tmd__SendReceiveSerialCommand(soap, (const struct __tmd__SendReceiveSerialCommand *)ptr); - break; - case SOAP_TYPE___tmd__GetSerialPortConfigurationOptions: - soap_serialize___tmd__GetSerialPortConfigurationOptions(soap, (const struct __tmd__GetSerialPortConfigurationOptions *)ptr); - break; - case SOAP_TYPE___tmd__SetSerialPortConfiguration: - soap_serialize___tmd__SetSerialPortConfiguration(soap, (const struct __tmd__SetSerialPortConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__GetSerialPortConfiguration: - soap_serialize___tmd__GetSerialPortConfiguration(soap, (const struct __tmd__GetSerialPortConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__GetSerialPorts: - soap_serialize___tmd__GetSerialPorts(soap, (const struct __tmd__GetSerialPorts *)ptr); - break; - case SOAP_TYPE___tmd__SetDigitalInputConfigurations: - soap_serialize___tmd__SetDigitalInputConfigurations(soap, (const struct __tmd__SetDigitalInputConfigurations *)ptr); - break; - case SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions: - soap_serialize___tmd__GetDigitalInputConfigurationOptions(soap, (const struct __tmd__GetDigitalInputConfigurationOptions *)ptr); - break; - case SOAP_TYPE___tmd__GetDigitalInputs: - soap_serialize___tmd__GetDigitalInputs(soap, (const struct __tmd__GetDigitalInputs *)ptr); - break; - case SOAP_TYPE___tmd__SetRelayOutputState: - soap_serialize___tmd__SetRelayOutputState(soap, (const struct __tmd__SetRelayOutputState *)ptr); - break; - case SOAP_TYPE___tmd__SetRelayOutputSettings: - soap_serialize___tmd__SetRelayOutputSettings(soap, (const struct __tmd__SetRelayOutputSettings *)ptr); - break; - case SOAP_TYPE___tmd__GetRelayOutputs: - soap_serialize___tmd__GetRelayOutputs(soap, (const struct __tmd__GetRelayOutputs *)ptr); - break; - case SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions: - soap_serialize___tmd__GetAudioOutputConfigurationOptions(soap, (const struct __tmd__GetAudioOutputConfigurationOptions *)ptr); - break; - case SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions: - soap_serialize___tmd__GetAudioSourceConfigurationOptions(soap, (const struct __tmd__GetAudioSourceConfigurationOptions *)ptr); - break; - case SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions: - soap_serialize___tmd__GetVideoOutputConfigurationOptions(soap, (const struct __tmd__GetVideoOutputConfigurationOptions *)ptr); - break; - case SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions: - soap_serialize___tmd__GetVideoSourceConfigurationOptions(soap, (const struct __tmd__GetVideoSourceConfigurationOptions *)ptr); - break; - case SOAP_TYPE___tmd__SetAudioOutputConfiguration: - soap_serialize___tmd__SetAudioOutputConfiguration(soap, (const struct __tmd__SetAudioOutputConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__SetAudioSourceConfiguration: - soap_serialize___tmd__SetAudioSourceConfiguration(soap, (const struct __tmd__SetAudioSourceConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__SetVideoOutputConfiguration: - soap_serialize___tmd__SetVideoOutputConfiguration(soap, (const struct __tmd__SetVideoOutputConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__SetVideoSourceConfiguration: - soap_serialize___tmd__SetVideoSourceConfiguration(soap, (const struct __tmd__SetVideoSourceConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__GetAudioOutputConfiguration: - soap_serialize___tmd__GetAudioOutputConfiguration(soap, (const struct __tmd__GetAudioOutputConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__GetAudioSourceConfiguration: - soap_serialize___tmd__GetAudioSourceConfiguration(soap, (const struct __tmd__GetAudioSourceConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__GetVideoOutputConfiguration: - soap_serialize___tmd__GetVideoOutputConfiguration(soap, (const struct __tmd__GetVideoOutputConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__GetVideoSourceConfiguration: - soap_serialize___tmd__GetVideoSourceConfiguration(soap, (const struct __tmd__GetVideoSourceConfiguration *)ptr); - break; - case SOAP_TYPE___tmd__GetVideoOutputs: - soap_serialize___tmd__GetVideoOutputs(soap, (const struct __tmd__GetVideoOutputs *)ptr); - break; - case SOAP_TYPE___tmd__GetVideoSources: - soap_serialize___tmd__GetVideoSources(soap, (const struct __tmd__GetVideoSources *)ptr); - break; - case SOAP_TYPE___tmd__GetAudioOutputs: - soap_serialize___tmd__GetAudioOutputs(soap, (const struct __tmd__GetAudioOutputs *)ptr); - break; - case SOAP_TYPE___tmd__GetAudioSources: - soap_serialize___tmd__GetAudioSources(soap, (const struct __tmd__GetAudioSources *)ptr); - break; - case SOAP_TYPE___tmd__GetRelayOutputOptions: - soap_serialize___tmd__GetRelayOutputOptions(soap, (const struct __tmd__GetRelayOutputOptions *)ptr); - break; - case SOAP_TYPE___tmd__GetServiceCapabilities: - soap_serialize___tmd__GetServiceCapabilities(soap, (const struct __tmd__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___tls__DeletePaneConfiguration: - soap_serialize___tls__DeletePaneConfiguration(soap, (const struct __tls__DeletePaneConfiguration *)ptr); - break; - case SOAP_TYPE___tls__CreatePaneConfiguration: - soap_serialize___tls__CreatePaneConfiguration(soap, (const struct __tls__CreatePaneConfiguration *)ptr); - break; - case SOAP_TYPE___tls__SetPaneConfiguration: - soap_serialize___tls__SetPaneConfiguration(soap, (const struct __tls__SetPaneConfiguration *)ptr); - break; - case SOAP_TYPE___tls__SetPaneConfigurations: - soap_serialize___tls__SetPaneConfigurations(soap, (const struct __tls__SetPaneConfigurations *)ptr); - break; - case SOAP_TYPE___tls__GetPaneConfiguration: - soap_serialize___tls__GetPaneConfiguration(soap, (const struct __tls__GetPaneConfiguration *)ptr); - break; - case SOAP_TYPE___tls__GetPaneConfigurations: - soap_serialize___tls__GetPaneConfigurations(soap, (const struct __tls__GetPaneConfigurations *)ptr); - break; - case SOAP_TYPE___tls__GetDisplayOptions: - soap_serialize___tls__GetDisplayOptions(soap, (const struct __tls__GetDisplayOptions *)ptr); - break; - case SOAP_TYPE___tls__SetLayout: - soap_serialize___tls__SetLayout(soap, (const struct __tls__SetLayout *)ptr); - break; - case SOAP_TYPE___tls__GetLayout: - soap_serialize___tls__GetLayout(soap, (const struct __tls__GetLayout *)ptr); - break; - case SOAP_TYPE___tls__GetServiceCapabilities: - soap_serialize___tls__GetServiceCapabilities(soap, (const struct __tls__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___timg__SetCurrentPreset: - soap_serialize___timg__SetCurrentPreset(soap, (const struct __timg__SetCurrentPreset *)ptr); - break; - case SOAP_TYPE___timg__GetCurrentPreset: - soap_serialize___timg__GetCurrentPreset(soap, (const struct __timg__GetCurrentPreset *)ptr); - break; - case SOAP_TYPE___timg__GetPresets: - soap_serialize___timg__GetPresets(soap, (const struct __timg__GetPresets *)ptr); - break; - case SOAP_TYPE___timg__GetMoveOptions: - soap_serialize___timg__GetMoveOptions(soap, (const struct __timg__GetMoveOptions *)ptr); - break; - case SOAP_TYPE___timg__GetStatus: - soap_serialize___timg__GetStatus(soap, (const struct __timg__GetStatus *)ptr); - break; - case SOAP_TYPE___timg__Stop: - soap_serialize___timg__Stop(soap, (const struct __timg__Stop *)ptr); - break; - case SOAP_TYPE___timg__Move: - soap_serialize___timg__Move(soap, (const struct __timg__Move *)ptr); - break; - case SOAP_TYPE___timg__GetOptions: - soap_serialize___timg__GetOptions(soap, (const struct __timg__GetOptions *)ptr); - break; - case SOAP_TYPE___timg__SetImagingSettings: - soap_serialize___timg__SetImagingSettings(soap, (const struct __timg__SetImagingSettings *)ptr); - break; - case SOAP_TYPE___timg__GetImagingSettings: - soap_serialize___timg__GetImagingSettings(soap, (const struct __timg__GetImagingSettings *)ptr); - break; - case SOAP_TYPE___timg__GetServiceCapabilities: - soap_serialize___timg__GetServiceCapabilities(soap, (const struct __timg__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___tevs__Unsubscribe: - soap_serialize___tevs__Unsubscribe(soap, (const struct __tevs__Unsubscribe *)ptr); - break; - case SOAP_TYPE___tevs__Renew: - soap_serialize___tevs__Renew(soap, (const struct __tevs__Renew *)ptr); - break; - case SOAP_TYPE___tevps__ResumeSubscription: - soap_serialize___tevps__ResumeSubscription(soap, (const struct __tevps__ResumeSubscription *)ptr); - break; - case SOAP_TYPE___tevps__PauseSubscription: - soap_serialize___tevps__PauseSubscription(soap, (const struct __tevps__PauseSubscription *)ptr); - break; - case SOAP_TYPE___tevps__Unsubscribe: - soap_serialize___tevps__Unsubscribe(soap, (const struct __tevps__Unsubscribe *)ptr); - break; - case SOAP_TYPE___tevps__Renew: - soap_serialize___tevps__Renew(soap, (const struct __tevps__Renew *)ptr); - break; - case SOAP_TYPE___tevpps__SetSynchronizationPoint: - soap_serialize___tevpps__SetSynchronizationPoint(soap, (const struct __tevpps__SetSynchronizationPoint *)ptr); - break; - case SOAP_TYPE___tevpps__Seek: - soap_serialize___tevpps__Seek(soap, (const struct __tevpps__Seek *)ptr); - break; - case SOAP_TYPE___tevpps__PullMessages: - soap_serialize___tevpps__PullMessages(soap, (const struct __tevpps__PullMessages *)ptr); - break; - case SOAP_TYPE___tevpp__Notify: - soap_serialize___tevpp__Notify(soap, (const struct __tevpp__Notify *)ptr); - break; - case SOAP_TYPE___tevpp__DestroyPullPoint: - soap_serialize___tevpp__DestroyPullPoint(soap, (const struct __tevpp__DestroyPullPoint *)ptr); - break; - case SOAP_TYPE___tevpp__GetMessages: - soap_serialize___tevpp__GetMessages(soap, (const struct __tevpp__GetMessages *)ptr); - break; - case SOAP_TYPE___tevnp__GetCurrentMessage: - soap_serialize___tevnp__GetCurrentMessage(soap, (const struct __tevnp__GetCurrentMessage *)ptr); - break; - case SOAP_TYPE___tevnp__Subscribe: - soap_serialize___tevnp__Subscribe(soap, (const struct __tevnp__Subscribe *)ptr); - break; - case SOAP_TYPE___tevnc__Notify: - soap_serialize___tevnc__Notify(soap, (const struct __tevnc__Notify *)ptr); - break; - case SOAP_TYPE___teve__GetEventProperties: - soap_serialize___teve__GetEventProperties(soap, (const struct __teve__GetEventProperties *)ptr); - break; - case SOAP_TYPE___teve__CreatePullPointSubscription: - soap_serialize___teve__CreatePullPointSubscription(soap, (const struct __teve__CreatePullPointSubscription *)ptr); - break; - case SOAP_TYPE___teve__GetServiceCapabilities: - soap_serialize___teve__GetServiceCapabilities(soap, (const struct __teve__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___tevcpp__CreatePullPoint: - soap_serialize___tevcpp__CreatePullPoint(soap, (const struct __tevcpp__CreatePullPoint *)ptr); - break; - case SOAP_TYPE___tds__DeleteGeoLocation: - soap_serialize___tds__DeleteGeoLocation(soap, (const struct __tds__DeleteGeoLocation *)ptr); - break; - case SOAP_TYPE___tds__SetGeoLocation: - soap_serialize___tds__SetGeoLocation(soap, (const struct __tds__SetGeoLocation *)ptr); - break; - case SOAP_TYPE___tds__GetGeoLocation: - soap_serialize___tds__GetGeoLocation(soap, (const struct __tds__GetGeoLocation *)ptr); - break; - case SOAP_TYPE___tds__DeleteStorageConfiguration: - soap_serialize___tds__DeleteStorageConfiguration(soap, (const struct __tds__DeleteStorageConfiguration *)ptr); - break; - case SOAP_TYPE___tds__SetStorageConfiguration: - soap_serialize___tds__SetStorageConfiguration(soap, (const struct __tds__SetStorageConfiguration *)ptr); - break; - case SOAP_TYPE___tds__GetStorageConfiguration: - soap_serialize___tds__GetStorageConfiguration(soap, (const struct __tds__GetStorageConfiguration *)ptr); - break; - case SOAP_TYPE___tds__CreateStorageConfiguration: - soap_serialize___tds__CreateStorageConfiguration(soap, (const struct __tds__CreateStorageConfiguration *)ptr); - break; - case SOAP_TYPE___tds__GetStorageConfigurations: - soap_serialize___tds__GetStorageConfigurations(soap, (const struct __tds__GetStorageConfigurations *)ptr); - break; - case SOAP_TYPE___tds__StartSystemRestore: - soap_serialize___tds__StartSystemRestore(soap, (const struct __tds__StartSystemRestore *)ptr); - break; - case SOAP_TYPE___tds__StartFirmwareUpgrade: - soap_serialize___tds__StartFirmwareUpgrade(soap, (const struct __tds__StartFirmwareUpgrade *)ptr); - break; - case SOAP_TYPE___tds__GetSystemUris: - soap_serialize___tds__GetSystemUris(soap, (const struct __tds__GetSystemUris *)ptr); - break; - case SOAP_TYPE___tds__ScanAvailableDot11Networks: - soap_serialize___tds__ScanAvailableDot11Networks(soap, (const struct __tds__ScanAvailableDot11Networks *)ptr); - break; - case SOAP_TYPE___tds__GetDot11Status: - soap_serialize___tds__GetDot11Status(soap, (const struct __tds__GetDot11Status *)ptr); - break; - case SOAP_TYPE___tds__GetDot11Capabilities: - soap_serialize___tds__GetDot11Capabilities(soap, (const struct __tds__GetDot11Capabilities *)ptr); - break; - case SOAP_TYPE___tds__DeleteDot1XConfiguration: - soap_serialize___tds__DeleteDot1XConfiguration(soap, (const struct __tds__DeleteDot1XConfiguration *)ptr); - break; - case SOAP_TYPE___tds__GetDot1XConfigurations: - soap_serialize___tds__GetDot1XConfigurations(soap, (const struct __tds__GetDot1XConfigurations *)ptr); - break; - case SOAP_TYPE___tds__GetDot1XConfiguration: - soap_serialize___tds__GetDot1XConfiguration(soap, (const struct __tds__GetDot1XConfiguration *)ptr); - break; - case SOAP_TYPE___tds__SetDot1XConfiguration: - soap_serialize___tds__SetDot1XConfiguration(soap, (const struct __tds__SetDot1XConfiguration *)ptr); - break; - case SOAP_TYPE___tds__CreateDot1XConfiguration: - soap_serialize___tds__CreateDot1XConfiguration(soap, (const struct __tds__CreateDot1XConfiguration *)ptr); - break; - case SOAP_TYPE___tds__LoadCACertificates: - soap_serialize___tds__LoadCACertificates(soap, (const struct __tds__LoadCACertificates *)ptr); - break; - case SOAP_TYPE___tds__GetCertificateInformation: - soap_serialize___tds__GetCertificateInformation(soap, (const struct __tds__GetCertificateInformation *)ptr); - break; - case SOAP_TYPE___tds__LoadCertificateWithPrivateKey: - soap_serialize___tds__LoadCertificateWithPrivateKey(soap, (const struct __tds__LoadCertificateWithPrivateKey *)ptr); - break; - case SOAP_TYPE___tds__GetCACertificates: - soap_serialize___tds__GetCACertificates(soap, (const struct __tds__GetCACertificates *)ptr); - break; - case SOAP_TYPE___tds__SendAuxiliaryCommand: - soap_serialize___tds__SendAuxiliaryCommand(soap, (const struct __tds__SendAuxiliaryCommand *)ptr); - break; - case SOAP_TYPE___tds__SetRelayOutputState: - soap_serialize___tds__SetRelayOutputState(soap, (const struct __tds__SetRelayOutputState *)ptr); - break; - case SOAP_TYPE___tds__SetRelayOutputSettings: - soap_serialize___tds__SetRelayOutputSettings(soap, (const struct __tds__SetRelayOutputSettings *)ptr); - break; - case SOAP_TYPE___tds__GetRelayOutputs: - soap_serialize___tds__GetRelayOutputs(soap, (const struct __tds__GetRelayOutputs *)ptr); - break; - case SOAP_TYPE___tds__SetClientCertificateMode: - soap_serialize___tds__SetClientCertificateMode(soap, (const struct __tds__SetClientCertificateMode *)ptr); - break; - case SOAP_TYPE___tds__GetClientCertificateMode: - soap_serialize___tds__GetClientCertificateMode(soap, (const struct __tds__GetClientCertificateMode *)ptr); - break; - case SOAP_TYPE___tds__LoadCertificates: - soap_serialize___tds__LoadCertificates(soap, (const struct __tds__LoadCertificates *)ptr); - break; - case SOAP_TYPE___tds__GetPkcs10Request: - soap_serialize___tds__GetPkcs10Request(soap, (const struct __tds__GetPkcs10Request *)ptr); - break; - case SOAP_TYPE___tds__DeleteCertificates: - soap_serialize___tds__DeleteCertificates(soap, (const struct __tds__DeleteCertificates *)ptr); - break; - case SOAP_TYPE___tds__SetCertificatesStatus: - soap_serialize___tds__SetCertificatesStatus(soap, (const struct __tds__SetCertificatesStatus *)ptr); - break; - case SOAP_TYPE___tds__GetCertificatesStatus: - soap_serialize___tds__GetCertificatesStatus(soap, (const struct __tds__GetCertificatesStatus *)ptr); - break; - case SOAP_TYPE___tds__GetCertificates: - soap_serialize___tds__GetCertificates(soap, (const struct __tds__GetCertificates *)ptr); - break; - case SOAP_TYPE___tds__CreateCertificate: - soap_serialize___tds__CreateCertificate(soap, (const struct __tds__CreateCertificate *)ptr); - break; - case SOAP_TYPE___tds__SetAccessPolicy: - soap_serialize___tds__SetAccessPolicy(soap, (const struct __tds__SetAccessPolicy *)ptr); - break; - case SOAP_TYPE___tds__GetAccessPolicy: - soap_serialize___tds__GetAccessPolicy(soap, (const struct __tds__GetAccessPolicy *)ptr); - break; - case SOAP_TYPE___tds__RemoveIPAddressFilter: - soap_serialize___tds__RemoveIPAddressFilter(soap, (const struct __tds__RemoveIPAddressFilter *)ptr); - break; - case SOAP_TYPE___tds__AddIPAddressFilter: - soap_serialize___tds__AddIPAddressFilter(soap, (const struct __tds__AddIPAddressFilter *)ptr); - break; - case SOAP_TYPE___tds__SetIPAddressFilter: - soap_serialize___tds__SetIPAddressFilter(soap, (const struct __tds__SetIPAddressFilter *)ptr); - break; - case SOAP_TYPE___tds__GetIPAddressFilter: - soap_serialize___tds__GetIPAddressFilter(soap, (const struct __tds__GetIPAddressFilter *)ptr); - break; - case SOAP_TYPE___tds__SetZeroConfiguration: - soap_serialize___tds__SetZeroConfiguration(soap, (const struct __tds__SetZeroConfiguration *)ptr); - break; - case SOAP_TYPE___tds__GetZeroConfiguration: - soap_serialize___tds__GetZeroConfiguration(soap, (const struct __tds__GetZeroConfiguration *)ptr); - break; - case SOAP_TYPE___tds__SetNetworkDefaultGateway: - soap_serialize___tds__SetNetworkDefaultGateway(soap, (const struct __tds__SetNetworkDefaultGateway *)ptr); - break; - case SOAP_TYPE___tds__GetNetworkDefaultGateway: - soap_serialize___tds__GetNetworkDefaultGateway(soap, (const struct __tds__GetNetworkDefaultGateway *)ptr); - break; - case SOAP_TYPE___tds__SetNetworkProtocols: - soap_serialize___tds__SetNetworkProtocols(soap, (const struct __tds__SetNetworkProtocols *)ptr); - break; - case SOAP_TYPE___tds__GetNetworkProtocols: - soap_serialize___tds__GetNetworkProtocols(soap, (const struct __tds__GetNetworkProtocols *)ptr); - break; - case SOAP_TYPE___tds__SetNetworkInterfaces: - soap_serialize___tds__SetNetworkInterfaces(soap, (const struct __tds__SetNetworkInterfaces *)ptr); - break; - case SOAP_TYPE___tds__GetNetworkInterfaces: - soap_serialize___tds__GetNetworkInterfaces(soap, (const struct __tds__GetNetworkInterfaces *)ptr); - break; - case SOAP_TYPE___tds__SetDynamicDNS: - soap_serialize___tds__SetDynamicDNS(soap, (const struct __tds__SetDynamicDNS *)ptr); - break; - case SOAP_TYPE___tds__GetDynamicDNS: - soap_serialize___tds__GetDynamicDNS(soap, (const struct __tds__GetDynamicDNS *)ptr); - break; - case SOAP_TYPE___tds__SetNTP: - soap_serialize___tds__SetNTP(soap, (const struct __tds__SetNTP *)ptr); - break; - case SOAP_TYPE___tds__GetNTP: - soap_serialize___tds__GetNTP(soap, (const struct __tds__GetNTP *)ptr); - break; - case SOAP_TYPE___tds__SetDNS: - soap_serialize___tds__SetDNS(soap, (const struct __tds__SetDNS *)ptr); - break; - case SOAP_TYPE___tds__GetDNS: - soap_serialize___tds__GetDNS(soap, (const struct __tds__GetDNS *)ptr); - break; - case SOAP_TYPE___tds__SetHostnameFromDHCP: - soap_serialize___tds__SetHostnameFromDHCP(soap, (const struct __tds__SetHostnameFromDHCP *)ptr); - break; - case SOAP_TYPE___tds__SetHostname: - soap_serialize___tds__SetHostname(soap, (const struct __tds__SetHostname *)ptr); - break; - case SOAP_TYPE___tds__GetHostname: - soap_serialize___tds__GetHostname(soap, (const struct __tds__GetHostname *)ptr); - break; - case SOAP_TYPE___tds__SetDPAddresses: - soap_serialize___tds__SetDPAddresses(soap, (const struct __tds__SetDPAddresses *)ptr); - break; - case SOAP_TYPE___tds__GetCapabilities: - soap_serialize___tds__GetCapabilities(soap, (const struct __tds__GetCapabilities *)ptr); - break; - case SOAP_TYPE___tds__GetWsdlUrl: - soap_serialize___tds__GetWsdlUrl(soap, (const struct __tds__GetWsdlUrl *)ptr); - break; - case SOAP_TYPE___tds__SetUser: - soap_serialize___tds__SetUser(soap, (const struct __tds__SetUser *)ptr); - break; - case SOAP_TYPE___tds__DeleteUsers: - soap_serialize___tds__DeleteUsers(soap, (const struct __tds__DeleteUsers *)ptr); - break; - case SOAP_TYPE___tds__CreateUsers: - soap_serialize___tds__CreateUsers(soap, (const struct __tds__CreateUsers *)ptr); - break; - case SOAP_TYPE___tds__GetUsers: - soap_serialize___tds__GetUsers(soap, (const struct __tds__GetUsers *)ptr); - break; - case SOAP_TYPE___tds__SetRemoteUser: - soap_serialize___tds__SetRemoteUser(soap, (const struct __tds__SetRemoteUser *)ptr); - break; - case SOAP_TYPE___tds__GetRemoteUser: - soap_serialize___tds__GetRemoteUser(soap, (const struct __tds__GetRemoteUser *)ptr); - break; - case SOAP_TYPE___tds__GetEndpointReference: - soap_serialize___tds__GetEndpointReference(soap, (const struct __tds__GetEndpointReference *)ptr); - break; - case SOAP_TYPE___tds__GetDPAddresses: - soap_serialize___tds__GetDPAddresses(soap, (const struct __tds__GetDPAddresses *)ptr); - break; - case SOAP_TYPE___tds__SetRemoteDiscoveryMode: - soap_serialize___tds__SetRemoteDiscoveryMode(soap, (const struct __tds__SetRemoteDiscoveryMode *)ptr); - break; - case SOAP_TYPE___tds__GetRemoteDiscoveryMode: - soap_serialize___tds__GetRemoteDiscoveryMode(soap, (const struct __tds__GetRemoteDiscoveryMode *)ptr); - break; - case SOAP_TYPE___tds__SetDiscoveryMode: - soap_serialize___tds__SetDiscoveryMode(soap, (const struct __tds__SetDiscoveryMode *)ptr); - break; - case SOAP_TYPE___tds__GetDiscoveryMode: - soap_serialize___tds__GetDiscoveryMode(soap, (const struct __tds__GetDiscoveryMode *)ptr); - break; - case SOAP_TYPE___tds__RemoveScopes: - soap_serialize___tds__RemoveScopes(soap, (const struct __tds__RemoveScopes *)ptr); - break; - case SOAP_TYPE___tds__AddScopes: - soap_serialize___tds__AddScopes(soap, (const struct __tds__AddScopes *)ptr); - break; - case SOAP_TYPE___tds__SetScopes: - soap_serialize___tds__SetScopes(soap, (const struct __tds__SetScopes *)ptr); - break; - case SOAP_TYPE___tds__GetScopes: - soap_serialize___tds__GetScopes(soap, (const struct __tds__GetScopes *)ptr); - break; - case SOAP_TYPE___tds__GetSystemSupportInformation: - soap_serialize___tds__GetSystemSupportInformation(soap, (const struct __tds__GetSystemSupportInformation *)ptr); - break; - case SOAP_TYPE___tds__GetSystemLog: - soap_serialize___tds__GetSystemLog(soap, (const struct __tds__GetSystemLog *)ptr); - break; - case SOAP_TYPE___tds__GetSystemBackup: - soap_serialize___tds__GetSystemBackup(soap, (const struct __tds__GetSystemBackup *)ptr); - break; - case SOAP_TYPE___tds__RestoreSystem: - soap_serialize___tds__RestoreSystem(soap, (const struct __tds__RestoreSystem *)ptr); - break; - case SOAP_TYPE___tds__SystemReboot: - soap_serialize___tds__SystemReboot(soap, (const struct __tds__SystemReboot *)ptr); - break; - case SOAP_TYPE___tds__UpgradeSystemFirmware: - soap_serialize___tds__UpgradeSystemFirmware(soap, (const struct __tds__UpgradeSystemFirmware *)ptr); - break; - case SOAP_TYPE___tds__SetSystemFactoryDefault: - soap_serialize___tds__SetSystemFactoryDefault(soap, (const struct __tds__SetSystemFactoryDefault *)ptr); - break; - case SOAP_TYPE___tds__GetSystemDateAndTime: - soap_serialize___tds__GetSystemDateAndTime(soap, (const struct __tds__GetSystemDateAndTime *)ptr); - break; - case SOAP_TYPE___tds__SetSystemDateAndTime: - soap_serialize___tds__SetSystemDateAndTime(soap, (const struct __tds__SetSystemDateAndTime *)ptr); - break; - case SOAP_TYPE___tds__GetDeviceInformation: - soap_serialize___tds__GetDeviceInformation(soap, (const struct __tds__GetDeviceInformation *)ptr); - break; - case SOAP_TYPE___tds__GetServiceCapabilities: - soap_serialize___tds__GetServiceCapabilities(soap, (const struct __tds__GetServiceCapabilities *)ptr); - break; - case SOAP_TYPE___tds__GetServices: - soap_serialize___tds__GetServices(soap, (const struct __tds__GetServices *)ptr); - break; - case SOAP_TYPE___tptz__SetConfigurationResponse_sequence: - soap_serialize___tptz__SetConfigurationResponse_sequence(soap, (const struct __tptz__SetConfigurationResponse_sequence *)ptr); - break; - case SOAP_TYPE_chan__ChannelInstanceType: - soap_serialize_chan__ChannelInstanceType(soap, (const struct chan__ChannelInstanceType *)ptr); - break; - case SOAP_TYPE__wsa5__ProblemAction: - soap_serialize__wsa5__ProblemAction(soap, (const struct wsa5__ProblemActionType *)ptr); - break; - case SOAP_TYPE__wsa5__FaultTo: - soap_serialize__wsa5__FaultTo(soap, (const struct wsa5__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE__wsa5__From: - soap_serialize__wsa5__From(soap, (const struct wsa5__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE__wsa5__ReplyTo: - soap_serialize__wsa5__ReplyTo(soap, (const struct wsa5__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE__wsa5__RelatesTo: - soap_serialize__wsa5__RelatesTo(soap, (const struct wsa5__RelatesToType *)ptr); - break; - case SOAP_TYPE__wsa5__Metadata: - soap_serialize__wsa5__Metadata(soap, (const struct wsa5__MetadataType *)ptr); - break; - case SOAP_TYPE__wsa5__ReferenceParameters: - soap_serialize__wsa5__ReferenceParameters(soap, (const struct wsa5__ReferenceParametersType *)ptr); - break; - case SOAP_TYPE__wsa5__EndpointReference: - soap_serialize__wsa5__EndpointReference(soap, (const struct wsa5__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE_wsa5__ProblemActionType: - soap_serialize_wsa5__ProblemActionType(soap, (const struct wsa5__ProblemActionType *)ptr); - break; - case SOAP_TYPE_wsa5__RelatesToType: - soap_serialize_wsa5__RelatesToType(soap, (const struct wsa5__RelatesToType *)ptr); - break; - case SOAP_TYPE_wsa5__MetadataType: - soap_serialize_wsa5__MetadataType(soap, (const struct wsa5__MetadataType *)ptr); - break; - case SOAP_TYPE_wsa5__ReferenceParametersType: - soap_serialize_wsa5__ReferenceParametersType(soap, (const struct wsa5__ReferenceParametersType *)ptr); - break; - case SOAP_TYPE_wsa5__EndpointReferenceType: - soap_serialize_wsa5__EndpointReferenceType(soap, (const struct wsa5__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE_xsd__anyAttribute: - soap_serialize_xsd__anyAttribute(soap, (const struct soap_dom_attribute *)ptr); - break; - case SOAP_TYPE_xsd__anyType: - soap_serialize_xsd__anyType(soap, (const struct soap_dom_element *)ptr); - break; - case SOAP_TYPE__wsse__Security: - soap_serialize__wsse__Security(soap, (const struct _wsse__Security *)ptr); - break; - case SOAP_TYPE__saml2__EncryptedAttribute: - soap_serialize__saml2__EncryptedAttribute(soap, (const struct saml2__EncryptedElementType *)ptr); - break; - case SOAP_TYPE__saml2__Attribute: - soap_serialize__saml2__Attribute(soap, (const struct saml2__AttributeType *)ptr); - break; - case SOAP_TYPE__saml2__AttributeStatement: - soap_serialize__saml2__AttributeStatement(soap, (const struct saml2__AttributeStatementType *)ptr); - break; - case SOAP_TYPE__saml2__Evidence: - soap_serialize__saml2__Evidence(soap, (const struct saml2__EvidenceType *)ptr); - break; - case SOAP_TYPE__saml2__Action: - soap_serialize__saml2__Action(soap, (const struct saml2__ActionType *)ptr); - break; - case SOAP_TYPE__saml2__AuthzDecisionStatement: - soap_serialize__saml2__AuthzDecisionStatement(soap, (const struct saml2__AuthzDecisionStatementType *)ptr); - break; - case SOAP_TYPE__saml2__AuthnContext: - soap_serialize__saml2__AuthnContext(soap, (const struct saml2__AuthnContextType *)ptr); - break; - case SOAP_TYPE__saml2__SubjectLocality: - soap_serialize__saml2__SubjectLocality(soap, (const struct saml2__SubjectLocalityType *)ptr); - break; - case SOAP_TYPE__saml2__AuthnStatement: - soap_serialize__saml2__AuthnStatement(soap, (const struct saml2__AuthnStatementType *)ptr); - break; - case SOAP_TYPE__saml2__Statement: - soap_serialize__saml2__Statement(soap, (const struct saml2__StatementAbstractType *)ptr); - break; - case SOAP_TYPE__saml2__EncryptedAssertion: - soap_serialize__saml2__EncryptedAssertion(soap, (const struct saml2__EncryptedElementType *)ptr); - break; - case SOAP_TYPE__saml2__Advice: - soap_serialize__saml2__Advice(soap, (const struct saml2__AdviceType *)ptr); - break; - case SOAP_TYPE__saml2__ProxyRestriction: - soap_serialize__saml2__ProxyRestriction(soap, (const struct saml2__ProxyRestrictionType *)ptr); - break; - case SOAP_TYPE__saml2__OneTimeUse: - soap_serialize__saml2__OneTimeUse(soap, (const struct saml2__OneTimeUseType *)ptr); - break; - case SOAP_TYPE__saml2__AudienceRestriction: - soap_serialize__saml2__AudienceRestriction(soap, (const struct saml2__AudienceRestrictionType *)ptr); - break; - case SOAP_TYPE__saml2__Condition: - soap_serialize__saml2__Condition(soap, (const struct saml2__ConditionAbstractType *)ptr); - break; - case SOAP_TYPE__saml2__Conditions: - soap_serialize__saml2__Conditions(soap, (const struct saml2__ConditionsType *)ptr); - break; - case SOAP_TYPE__saml2__SubjectConfirmationData: - soap_serialize__saml2__SubjectConfirmationData(soap, (const struct saml2__SubjectConfirmationDataType *)ptr); - break; - case SOAP_TYPE__saml2__SubjectConfirmation: - soap_serialize__saml2__SubjectConfirmation(soap, (const struct saml2__SubjectConfirmationType *)ptr); - break; - case SOAP_TYPE__saml2__Subject: - soap_serialize__saml2__Subject(soap, (const struct saml2__SubjectType *)ptr); - break; - case SOAP_TYPE__saml2__Assertion: - soap_serialize__saml2__Assertion(soap, (const struct saml2__AssertionType *)ptr); - break; - case SOAP_TYPE__saml2__Issuer: - soap_serialize__saml2__Issuer(soap, (const struct saml2__NameIDType *)ptr); - break; - case SOAP_TYPE__saml2__EncryptedID: - soap_serialize__saml2__EncryptedID(soap, (const struct saml2__EncryptedElementType *)ptr); - break; - case SOAP_TYPE__saml2__NameID: - soap_serialize__saml2__NameID(soap, (const struct saml2__NameIDType *)ptr); - break; - case SOAP_TYPE__saml2__BaseID: - soap_serialize__saml2__BaseID(soap, (const struct saml2__BaseIDAbstractType *)ptr); - break; - case SOAP_TYPE___saml2__union_AttributeStatementType: - soap_serialize___saml2__union_AttributeStatementType(soap, (const struct __saml2__union_AttributeStatementType *)ptr); - break; - case SOAP_TYPE___saml2__union_EvidenceType: - soap_serialize___saml2__union_EvidenceType(soap, (const struct __saml2__union_EvidenceType *)ptr); - break; - case SOAP_TYPE___saml2__union_AdviceType: - soap_serialize___saml2__union_AdviceType(soap, (const struct __saml2__union_AdviceType *)ptr); - break; - case SOAP_TYPE___saml2__union_ConditionsType: - soap_serialize___saml2__union_ConditionsType(soap, (const struct __saml2__union_ConditionsType *)ptr); - break; - case SOAP_TYPE___saml2__union_AssertionType: - soap_serialize___saml2__union_AssertionType(soap, (const struct __saml2__union_AssertionType *)ptr); - break; - case SOAP_TYPE_saml2__AttributeType: - soap_serialize_saml2__AttributeType(soap, (const struct saml2__AttributeType *)ptr); - break; - case SOAP_TYPE_saml2__AttributeStatementType: - soap_serialize_saml2__AttributeStatementType(soap, (const struct saml2__AttributeStatementType *)ptr); - break; - case SOAP_TYPE_saml2__EvidenceType: - soap_serialize_saml2__EvidenceType(soap, (const struct saml2__EvidenceType *)ptr); - break; - case SOAP_TYPE_saml2__ActionType: - soap_serialize_saml2__ActionType(soap, (const struct saml2__ActionType *)ptr); - break; - case SOAP_TYPE_saml2__AuthzDecisionStatementType: - soap_serialize_saml2__AuthzDecisionStatementType(soap, (const struct saml2__AuthzDecisionStatementType *)ptr); - break; - case SOAP_TYPE_saml2__AuthnContextType: - soap_serialize_saml2__AuthnContextType(soap, (const struct saml2__AuthnContextType *)ptr); - break; - case SOAP_TYPE_saml2__SubjectLocalityType: - soap_serialize_saml2__SubjectLocalityType(soap, (const struct saml2__SubjectLocalityType *)ptr); - break; - case SOAP_TYPE_saml2__AuthnStatementType: - soap_serialize_saml2__AuthnStatementType(soap, (const struct saml2__AuthnStatementType *)ptr); - break; - case SOAP_TYPE_saml2__StatementAbstractType: - soap_serialize_saml2__StatementAbstractType(soap, (const struct saml2__StatementAbstractType *)ptr); - break; - case SOAP_TYPE_saml2__AdviceType: - soap_serialize_saml2__AdviceType(soap, (const struct saml2__AdviceType *)ptr); - break; - case SOAP_TYPE_saml2__ProxyRestrictionType: - soap_serialize_saml2__ProxyRestrictionType(soap, (const struct saml2__ProxyRestrictionType *)ptr); - break; - case SOAP_TYPE_saml2__OneTimeUseType: - soap_serialize_saml2__OneTimeUseType(soap, (const struct saml2__OneTimeUseType *)ptr); - break; - case SOAP_TYPE_saml2__AudienceRestrictionType: - soap_serialize_saml2__AudienceRestrictionType(soap, (const struct saml2__AudienceRestrictionType *)ptr); - break; - case SOAP_TYPE_saml2__ConditionAbstractType: - soap_serialize_saml2__ConditionAbstractType(soap, (const struct saml2__ConditionAbstractType *)ptr); - break; - case SOAP_TYPE_saml2__ConditionsType: - soap_serialize_saml2__ConditionsType(soap, (const struct saml2__ConditionsType *)ptr); - break; - case SOAP_TYPE_saml2__KeyInfoConfirmationDataType: - soap_serialize_saml2__KeyInfoConfirmationDataType(soap, (const struct saml2__KeyInfoConfirmationDataType *)ptr); - break; - case SOAP_TYPE_saml2__SubjectConfirmationDataType: - soap_serialize_saml2__SubjectConfirmationDataType(soap, (const struct saml2__SubjectConfirmationDataType *)ptr); - break; - case SOAP_TYPE_saml2__SubjectConfirmationType: - soap_serialize_saml2__SubjectConfirmationType(soap, (const struct saml2__SubjectConfirmationType *)ptr); - break; - case SOAP_TYPE_saml2__SubjectType: - soap_serialize_saml2__SubjectType(soap, (const struct saml2__SubjectType *)ptr); - break; - case SOAP_TYPE_saml2__AssertionType: - soap_serialize_saml2__AssertionType(soap, (const struct saml2__AssertionType *)ptr); - break; - case SOAP_TYPE_saml2__EncryptedElementType: - soap_serialize_saml2__EncryptedElementType(soap, (const struct saml2__EncryptedElementType *)ptr); - break; - case SOAP_TYPE_saml2__NameIDType: - soap_serialize_saml2__NameIDType(soap, (const struct saml2__NameIDType *)ptr); - break; - case SOAP_TYPE_saml2__BaseIDAbstractType: - soap_serialize_saml2__BaseIDAbstractType(soap, (const struct saml2__BaseIDAbstractType *)ptr); - break; - case SOAP_TYPE__saml1__Attribute: - soap_serialize__saml1__Attribute(soap, (const struct saml1__AttributeType *)ptr); - break; - case SOAP_TYPE__saml1__AttributeDesignator: - soap_serialize__saml1__AttributeDesignator(soap, (const struct saml1__AttributeDesignatorType *)ptr); - break; - case SOAP_TYPE__saml1__AttributeStatement: - soap_serialize__saml1__AttributeStatement(soap, (const struct saml1__AttributeStatementType *)ptr); - break; - case SOAP_TYPE__saml1__Evidence: - soap_serialize__saml1__Evidence(soap, (const struct saml1__EvidenceType *)ptr); - break; - case SOAP_TYPE__saml1__Action: - soap_serialize__saml1__Action(soap, (const struct saml1__ActionType *)ptr); - break; - case SOAP_TYPE__saml1__AuthorizationDecisionStatement: - soap_serialize__saml1__AuthorizationDecisionStatement(soap, (const struct saml1__AuthorizationDecisionStatementType *)ptr); - break; - case SOAP_TYPE__saml1__AuthorityBinding: - soap_serialize__saml1__AuthorityBinding(soap, (const struct saml1__AuthorityBindingType *)ptr); - break; - case SOAP_TYPE__saml1__SubjectLocality: - soap_serialize__saml1__SubjectLocality(soap, (const struct saml1__SubjectLocalityType *)ptr); - break; - case SOAP_TYPE__saml1__AuthenticationStatement: - soap_serialize__saml1__AuthenticationStatement(soap, (const struct saml1__AuthenticationStatementType *)ptr); - break; - case SOAP_TYPE__saml1__SubjectConfirmation: - soap_serialize__saml1__SubjectConfirmation(soap, (const struct saml1__SubjectConfirmationType *)ptr); - break; - case SOAP_TYPE__saml1__NameIdentifier: - soap_serialize__saml1__NameIdentifier(soap, (const struct saml1__NameIdentifierType *)ptr); - break; - case SOAP_TYPE__saml1__Subject: - soap_serialize__saml1__Subject(soap, (const struct saml1__SubjectType *)ptr); - break; - case SOAP_TYPE__saml1__SubjectStatement: - soap_serialize__saml1__SubjectStatement(soap, (const struct saml1__SubjectStatementAbstractType *)ptr); - break; - case SOAP_TYPE__saml1__Statement: - soap_serialize__saml1__Statement(soap, (const struct saml1__StatementAbstractType *)ptr); - break; - case SOAP_TYPE__saml1__Advice: - soap_serialize__saml1__Advice(soap, (const struct saml1__AdviceType *)ptr); - break; - case SOAP_TYPE__saml1__DoNotCacheCondition: - soap_serialize__saml1__DoNotCacheCondition(soap, (const struct saml1__DoNotCacheConditionType *)ptr); - break; - case SOAP_TYPE__saml1__AudienceRestrictionCondition: - soap_serialize__saml1__AudienceRestrictionCondition(soap, (const struct saml1__AudienceRestrictionConditionType *)ptr); - break; - case SOAP_TYPE__saml1__Condition: - soap_serialize__saml1__Condition(soap, (const struct saml1__ConditionAbstractType *)ptr); - break; - case SOAP_TYPE__saml1__Conditions: - soap_serialize__saml1__Conditions(soap, (const struct saml1__ConditionsType *)ptr); - break; - case SOAP_TYPE__saml1__Assertion: - soap_serialize__saml1__Assertion(soap, (const struct saml1__AssertionType *)ptr); - break; - case SOAP_TYPE___saml1__union_EvidenceType: - soap_serialize___saml1__union_EvidenceType(soap, (const struct __saml1__union_EvidenceType *)ptr); - break; - case SOAP_TYPE___saml1__union_AdviceType: - soap_serialize___saml1__union_AdviceType(soap, (const struct __saml1__union_AdviceType *)ptr); - break; - case SOAP_TYPE___saml1__union_ConditionsType: - soap_serialize___saml1__union_ConditionsType(soap, (const struct __saml1__union_ConditionsType *)ptr); - break; - case SOAP_TYPE___saml1__union_AssertionType: - soap_serialize___saml1__union_AssertionType(soap, (const struct __saml1__union_AssertionType *)ptr); - break; - case SOAP_TYPE_saml1__AttributeType: - soap_serialize_saml1__AttributeType(soap, (const struct saml1__AttributeType *)ptr); - break; - case SOAP_TYPE_saml1__AttributeDesignatorType: - soap_serialize_saml1__AttributeDesignatorType(soap, (const struct saml1__AttributeDesignatorType *)ptr); - break; - case SOAP_TYPE_saml1__AttributeStatementType: - soap_serialize_saml1__AttributeStatementType(soap, (const struct saml1__AttributeStatementType *)ptr); - break; - case SOAP_TYPE_saml1__EvidenceType: - soap_serialize_saml1__EvidenceType(soap, (const struct saml1__EvidenceType *)ptr); - break; - case SOAP_TYPE_saml1__ActionType: - soap_serialize_saml1__ActionType(soap, (const struct saml1__ActionType *)ptr); - break; - case SOAP_TYPE_saml1__AuthorizationDecisionStatementType: - soap_serialize_saml1__AuthorizationDecisionStatementType(soap, (const struct saml1__AuthorizationDecisionStatementType *)ptr); - break; - case SOAP_TYPE_saml1__AuthorityBindingType: - soap_serialize_saml1__AuthorityBindingType(soap, (const struct saml1__AuthorityBindingType *)ptr); - break; - case SOAP_TYPE_saml1__SubjectLocalityType: - soap_serialize_saml1__SubjectLocalityType(soap, (const struct saml1__SubjectLocalityType *)ptr); - break; - case SOAP_TYPE_saml1__AuthenticationStatementType: - soap_serialize_saml1__AuthenticationStatementType(soap, (const struct saml1__AuthenticationStatementType *)ptr); - break; - case SOAP_TYPE_saml1__SubjectConfirmationType: - soap_serialize_saml1__SubjectConfirmationType(soap, (const struct saml1__SubjectConfirmationType *)ptr); - break; - case SOAP_TYPE_saml1__NameIdentifierType: - soap_serialize_saml1__NameIdentifierType(soap, (const struct saml1__NameIdentifierType *)ptr); - break; - case SOAP_TYPE_saml1__SubjectType: - soap_serialize_saml1__SubjectType(soap, (const struct saml1__SubjectType *)ptr); - break; - case SOAP_TYPE_saml1__SubjectStatementAbstractType: - soap_serialize_saml1__SubjectStatementAbstractType(soap, (const struct saml1__SubjectStatementAbstractType *)ptr); - break; - case SOAP_TYPE_saml1__StatementAbstractType: - soap_serialize_saml1__StatementAbstractType(soap, (const struct saml1__StatementAbstractType *)ptr); - break; - case SOAP_TYPE_saml1__AdviceType: - soap_serialize_saml1__AdviceType(soap, (const struct saml1__AdviceType *)ptr); - break; - case SOAP_TYPE_saml1__DoNotCacheConditionType: - soap_serialize_saml1__DoNotCacheConditionType(soap, (const struct saml1__DoNotCacheConditionType *)ptr); - break; - case SOAP_TYPE_saml1__AudienceRestrictionConditionType: - soap_serialize_saml1__AudienceRestrictionConditionType(soap, (const struct saml1__AudienceRestrictionConditionType *)ptr); - break; - case SOAP_TYPE_saml1__ConditionAbstractType: - soap_serialize_saml1__ConditionAbstractType(soap, (const struct saml1__ConditionAbstractType *)ptr); - break; - case SOAP_TYPE_saml1__ConditionsType: - soap_serialize_saml1__ConditionsType(soap, (const struct saml1__ConditionsType *)ptr); - break; - case SOAP_TYPE_saml1__AssertionType: - soap_serialize_saml1__AssertionType(soap, (const struct saml1__AssertionType *)ptr); - break; - case SOAP_TYPE_xsd__dateTime: - soap_serialize_xsd__dateTime(soap, (const struct timeval *)ptr); - break; - case SOAP_TYPE___wsc__DerivedKeyTokenType_sequence: - soap_serialize___wsc__DerivedKeyTokenType_sequence(soap, (const struct __wsc__DerivedKeyTokenType_sequence *)ptr); - break; - case SOAP_TYPE_wsc__PropertiesType: - soap_serialize_wsc__PropertiesType(soap, (const struct wsc__PropertiesType *)ptr); - break; - case SOAP_TYPE_wsc__DerivedKeyTokenType: - soap_serialize_wsc__DerivedKeyTokenType(soap, (const struct wsc__DerivedKeyTokenType *)ptr); - break; - case SOAP_TYPE_wsc__SecurityContextTokenType: - soap_serialize_wsc__SecurityContextTokenType(soap, (const struct wsc__SecurityContextTokenType *)ptr); - break; - case SOAP_TYPE___xenc__union_ReferenceList: - soap_serialize___xenc__union_ReferenceList(soap, (const struct __xenc__union_ReferenceList *)ptr); - break; - case SOAP_TYPE__xenc__ReferenceList: - soap_serialize__xenc__ReferenceList(soap, (const struct _xenc__ReferenceList *)ptr); - break; - case SOAP_TYPE_xenc__EncryptionPropertyType: - soap_serialize_xenc__EncryptionPropertyType(soap, (const struct xenc__EncryptionPropertyType *)ptr); - break; - case SOAP_TYPE_xenc__EncryptionPropertiesType: - soap_serialize_xenc__EncryptionPropertiesType(soap, (const struct xenc__EncryptionPropertiesType *)ptr); - break; - case SOAP_TYPE_xenc__ReferenceType: - soap_serialize_xenc__ReferenceType(soap, (const struct xenc__ReferenceType *)ptr); - break; - case SOAP_TYPE_xenc__AgreementMethodType: - soap_serialize_xenc__AgreementMethodType(soap, (const struct xenc__AgreementMethodType *)ptr); - break; - case SOAP_TYPE_xenc__EncryptedDataType: - soap_serialize_xenc__EncryptedDataType(soap, (const struct xenc__EncryptedDataType *)ptr); - break; - case SOAP_TYPE_xenc__TransformsType: - soap_serialize_xenc__TransformsType(soap, (const struct xenc__TransformsType *)ptr); - break; - case SOAP_TYPE_xenc__CipherReferenceType: - soap_serialize_xenc__CipherReferenceType(soap, (const struct xenc__CipherReferenceType *)ptr); - break; - case SOAP_TYPE_xenc__CipherDataType: - soap_serialize_xenc__CipherDataType(soap, (const struct xenc__CipherDataType *)ptr); - break; - case SOAP_TYPE_xenc__EncryptionMethodType: - soap_serialize_xenc__EncryptionMethodType(soap, (const struct xenc__EncryptionMethodType *)ptr); - break; - case SOAP_TYPE_xenc__EncryptedType: - soap_serialize_xenc__EncryptedType(soap, (const struct xenc__EncryptedType *)ptr); - break; - case SOAP_TYPE_ds__RSAKeyValueType: - soap_serialize_ds__RSAKeyValueType(soap, (const struct ds__RSAKeyValueType *)ptr); - break; - case SOAP_TYPE_ds__DSAKeyValueType: - soap_serialize_ds__DSAKeyValueType(soap, (const struct ds__DSAKeyValueType *)ptr); - break; - case SOAP_TYPE_ds__X509IssuerSerialType: - soap_serialize_ds__X509IssuerSerialType(soap, (const struct ds__X509IssuerSerialType *)ptr); - break; - case SOAP_TYPE__ds__KeyInfo: - soap_serialize__ds__KeyInfo(soap, (const struct ds__KeyInfoType *)ptr); - break; - case SOAP_TYPE_ds__RetrievalMethodType: - soap_serialize_ds__RetrievalMethodType(soap, (const struct ds__RetrievalMethodType *)ptr); - break; - case SOAP_TYPE_ds__KeyValueType: - soap_serialize_ds__KeyValueType(soap, (const struct ds__KeyValueType *)ptr); - break; - case SOAP_TYPE_ds__DigestMethodType: - soap_serialize_ds__DigestMethodType(soap, (const struct ds__DigestMethodType *)ptr); - break; - case SOAP_TYPE__ds__Transform: - soap_serialize__ds__Transform(soap, (const struct ds__TransformType *)ptr); - break; - case SOAP_TYPE_ds__TransformType: - soap_serialize_ds__TransformType(soap, (const struct ds__TransformType *)ptr); - break; - case SOAP_TYPE__c14n__InclusiveNamespaces: - soap_serialize__c14n__InclusiveNamespaces(soap, (const struct _c14n__InclusiveNamespaces *)ptr); - break; - case SOAP_TYPE_ds__TransformsType: - soap_serialize_ds__TransformsType(soap, (const struct ds__TransformsType *)ptr); - break; - case SOAP_TYPE_ds__ReferenceType: - soap_serialize_ds__ReferenceType(soap, (const struct ds__ReferenceType *)ptr); - break; - case SOAP_TYPE_ds__SignatureMethodType: - soap_serialize_ds__SignatureMethodType(soap, (const struct ds__SignatureMethodType *)ptr); - break; - case SOAP_TYPE_ds__CanonicalizationMethodType: - soap_serialize_ds__CanonicalizationMethodType(soap, (const struct ds__CanonicalizationMethodType *)ptr); - break; - case SOAP_TYPE__ds__Signature: - soap_serialize__ds__Signature(soap, (const struct ds__SignatureType *)ptr); - break; - case SOAP_TYPE_ds__SignedInfoType: - soap_serialize_ds__SignedInfoType(soap, (const struct ds__SignedInfoType *)ptr); - break; - case SOAP_TYPE_ds__SignatureType: - soap_serialize_ds__SignatureType(soap, (const struct ds__SignatureType *)ptr); - break; - case SOAP_TYPE_xenc__EncryptedKeyType: - soap_serialize_xenc__EncryptedKeyType(soap, (const struct xenc__EncryptedKeyType *)ptr); - break; - case SOAP_TYPE_ds__KeyInfoType: - soap_serialize_ds__KeyInfoType(soap, (const struct ds__KeyInfoType *)ptr); - break; - case SOAP_TYPE_ds__X509DataType: - soap_serialize_ds__X509DataType(soap, (const struct ds__X509DataType *)ptr); - break; - case SOAP_TYPE__wsse__SecurityTokenReference: - soap_serialize__wsse__SecurityTokenReference(soap, (const struct _wsse__SecurityTokenReference *)ptr); - break; - case SOAP_TYPE__wsse__KeyIdentifier: - soap_serialize__wsse__KeyIdentifier(soap, (const struct _wsse__KeyIdentifier *)ptr); - break; - case SOAP_TYPE__wsse__Embedded: - soap_serialize__wsse__Embedded(soap, (const struct _wsse__Embedded *)ptr); - break; - case SOAP_TYPE__wsse__Reference: - soap_serialize__wsse__Reference(soap, (const struct _wsse__Reference *)ptr); - break; - case SOAP_TYPE__wsse__BinarySecurityToken: - soap_serialize__wsse__BinarySecurityToken(soap, (const struct _wsse__BinarySecurityToken *)ptr); - break; - case SOAP_TYPE__wsse__Password: - soap_serialize__wsse__Password(soap, (const struct _wsse__Password *)ptr); - break; - case SOAP_TYPE__wsse__UsernameToken: - soap_serialize__wsse__UsernameToken(soap, (const struct _wsse__UsernameToken *)ptr); - break; - case SOAP_TYPE_wsse__EncodedString: - soap_serialize_wsse__EncodedString(soap, (const struct wsse__EncodedString *)ptr); - break; - case SOAP_TYPE__wsu__Timestamp: - soap_serialize__wsu__Timestamp(soap, (const struct _wsu__Timestamp *)ptr); - break; - case SOAP_TYPE___wsdd__ResolveMatches: - soap_serialize___wsdd__ResolveMatches(soap, (const struct __wsdd__ResolveMatches *)ptr); - break; - case SOAP_TYPE___wsdd__Resolve: - soap_serialize___wsdd__Resolve(soap, (const struct __wsdd__Resolve *)ptr); - break; - case SOAP_TYPE___wsdd__ProbeMatches: - soap_serialize___wsdd__ProbeMatches(soap, (const struct __wsdd__ProbeMatches *)ptr); - break; - case SOAP_TYPE___wsdd__Probe: - soap_serialize___wsdd__Probe(soap, (const struct __wsdd__Probe *)ptr); - break; - case SOAP_TYPE___wsdd__Bye: - soap_serialize___wsdd__Bye(soap, (const struct __wsdd__Bye *)ptr); - break; - case SOAP_TYPE___wsdd__Hello: - soap_serialize___wsdd__Hello(soap, (const struct __wsdd__Hello *)ptr); - break; - case SOAP_TYPE__wsdd__AppSequence: - soap_serialize__wsdd__AppSequence(soap, (const struct wsdd__AppSequenceType *)ptr); - break; - case SOAP_TYPE__wsdd__Sig: - soap_serialize__wsdd__Sig(soap, (const struct wsdd__SigType *)ptr); - break; - case SOAP_TYPE__wsdd__Security: - soap_serialize__wsdd__Security(soap, (const struct wsdd__SecurityType *)ptr); - break; - case SOAP_TYPE__wsdd__Scopes: - soap_serialize__wsdd__Scopes(soap, (const struct wsdd__ScopesType *)ptr); - break; - case SOAP_TYPE__wsdd__ResolveMatches: - soap_serialize__wsdd__ResolveMatches(soap, (const struct wsdd__ResolveMatchesType *)ptr); - break; - case SOAP_TYPE__wsdd__Resolve: - soap_serialize__wsdd__Resolve(soap, (const struct wsdd__ResolveType *)ptr); - break; - case SOAP_TYPE__wsdd__ProbeMatches: - soap_serialize__wsdd__ProbeMatches(soap, (const struct wsdd__ProbeMatchesType *)ptr); - break; - case SOAP_TYPE__wsdd__Probe: - soap_serialize__wsdd__Probe(soap, (const struct wsdd__ProbeType *)ptr); - break; - case SOAP_TYPE__wsdd__Bye: - soap_serialize__wsdd__Bye(soap, (const struct wsdd__ByeType *)ptr); - break; - case SOAP_TYPE__wsdd__Hello: - soap_serialize__wsdd__Hello(soap, (const struct wsdd__HelloType *)ptr); - break; - case SOAP_TYPE_wsdd__AppSequenceType: - soap_serialize_wsdd__AppSequenceType(soap, (const struct wsdd__AppSequenceType *)ptr); - break; - case SOAP_TYPE_wsdd__SigType: - soap_serialize_wsdd__SigType(soap, (const struct wsdd__SigType *)ptr); - break; - case SOAP_TYPE_wsdd__SecurityType: - soap_serialize_wsdd__SecurityType(soap, (const struct wsdd__SecurityType *)ptr); - break; - case SOAP_TYPE_wsdd__ScopesType: - soap_serialize_wsdd__ScopesType(soap, (const struct wsdd__ScopesType *)ptr); - break; - case SOAP_TYPE_wsdd__ResolveMatchType: - soap_serialize_wsdd__ResolveMatchType(soap, (const struct wsdd__ResolveMatchType *)ptr); - break; - case SOAP_TYPE_wsdd__ResolveMatchesType: - soap_serialize_wsdd__ResolveMatchesType(soap, (const struct wsdd__ResolveMatchesType *)ptr); - break; - case SOAP_TYPE_wsdd__ResolveType: - soap_serialize_wsdd__ResolveType(soap, (const struct wsdd__ResolveType *)ptr); - break; - case SOAP_TYPE_wsdd__ProbeMatchType: - soap_serialize_wsdd__ProbeMatchType(soap, (const struct wsdd__ProbeMatchType *)ptr); - break; - case SOAP_TYPE_wsdd__ProbeMatchesType: - soap_serialize_wsdd__ProbeMatchesType(soap, (const struct wsdd__ProbeMatchesType *)ptr); - break; - case SOAP_TYPE_wsdd__ProbeType: - soap_serialize_wsdd__ProbeType(soap, (const struct wsdd__ProbeType *)ptr); - break; - case SOAP_TYPE_wsdd__ByeType: - soap_serialize_wsdd__ByeType(soap, (const struct wsdd__ByeType *)ptr); - break; - case SOAP_TYPE_wsdd__HelloType: - soap_serialize_wsdd__HelloType(soap, (const struct wsdd__HelloType *)ptr); - break; - case SOAP_TYPE__wsa__FaultTo: - soap_serialize__wsa__FaultTo(soap, (const struct wsa__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE__wsa__ReplyTo: - soap_serialize__wsa__ReplyTo(soap, (const struct wsa__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE__wsa__From: - soap_serialize__wsa__From(soap, (const struct wsa__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE__wsa__RelatesTo: - soap_serialize__wsa__RelatesTo(soap, (const struct wsa__Relationship *)ptr); - break; - case SOAP_TYPE__wsa__EndpointReference: - soap_serialize__wsa__EndpointReference(soap, (const struct wsa__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE_wsa__Relationship: - soap_serialize_wsa__Relationship(soap, (const struct wsa__Relationship *)ptr); - break; - case SOAP_TYPE_wsa__ServiceNameType: - soap_serialize_wsa__ServiceNameType(soap, (const struct wsa__ServiceNameType *)ptr); - break; - case SOAP_TYPE_wsa__ReferenceParametersType: - soap_serialize_wsa__ReferenceParametersType(soap, (const struct wsa__ReferenceParametersType *)ptr); - break; - case SOAP_TYPE_wsa__ReferencePropertiesType: - soap_serialize_wsa__ReferencePropertiesType(soap, (const struct wsa__ReferencePropertiesType *)ptr); - break; - case SOAP_TYPE_wsa__EndpointReferenceType: - soap_serialize_wsa__EndpointReferenceType(soap, (const struct wsa__EndpointReferenceType *)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetMetadataSearchResults: - soap_serialize_PointerTo_tse__GetMetadataSearchResults(soap, (_tse__GetMetadataSearchResults *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__FindMetadata: - soap_serialize_PointerTo_tse__FindMetadata(soap, (_tse__FindMetadata *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__EndSearch: - soap_serialize_PointerTo_tse__EndSearch(soap, (_tse__EndSearch *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetSearchState: - soap_serialize_PointerTo_tse__GetSearchState(soap, (_tse__GetSearchState *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetPTZPositionSearchResults: - soap_serialize_PointerTo_tse__GetPTZPositionSearchResults(soap, (_tse__GetPTZPositionSearchResults *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__FindPTZPosition: - soap_serialize_PointerTo_tse__FindPTZPosition(soap, (_tse__FindPTZPosition *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetEventSearchResults: - soap_serialize_PointerTo_tse__GetEventSearchResults(soap, (_tse__GetEventSearchResults *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__FindEvents: - soap_serialize_PointerTo_tse__FindEvents(soap, (_tse__FindEvents *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetRecordingSearchResults: - soap_serialize_PointerTo_tse__GetRecordingSearchResults(soap, (_tse__GetRecordingSearchResults *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__FindRecordings: - soap_serialize_PointerTo_tse__FindRecordings(soap, (_tse__FindRecordings *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetMediaAttributes: - soap_serialize_PointerTo_tse__GetMediaAttributes(soap, (_tse__GetMediaAttributes *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetRecordingInformation: - soap_serialize_PointerTo_tse__GetRecordingInformation(soap, (_tse__GetRecordingInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetRecordingSummary: - soap_serialize_PointerTo_tse__GetRecordingSummary(soap, (_tse__GetRecordingSummary *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tse__GetServiceCapabilities: - soap_serialize_PointerTo_tse__GetServiceCapabilities(soap, (_tse__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__GetReceiverState: - soap_serialize_PointerTo_trv__GetReceiverState(soap, (_trv__GetReceiverState *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__SetReceiverMode: - soap_serialize_PointerTo_trv__SetReceiverMode(soap, (_trv__SetReceiverMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__ConfigureReceiver: - soap_serialize_PointerTo_trv__ConfigureReceiver(soap, (_trv__ConfigureReceiver *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__DeleteReceiver: - soap_serialize_PointerTo_trv__DeleteReceiver(soap, (_trv__DeleteReceiver *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__CreateReceiver: - soap_serialize_PointerTo_trv__CreateReceiver(soap, (_trv__CreateReceiver *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__GetReceiver: - soap_serialize_PointerTo_trv__GetReceiver(soap, (_trv__GetReceiver *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__GetReceivers: - soap_serialize_PointerTo_trv__GetReceivers(soap, (_trv__GetReceivers *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trv__GetServiceCapabilities: - soap_serialize_PointerTo_trv__GetServiceCapabilities(soap, (_trv__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__DeleteOSD: - soap_serialize_PointerTo_trt__DeleteOSD(soap, (_trt__DeleteOSD *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__CreateOSD: - soap_serialize_PointerTo_trt__CreateOSD(soap, (_trt__CreateOSD *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetOSD: - soap_serialize_PointerTo_trt__SetOSD(soap, (_trt__SetOSD *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetOSDOptions: - soap_serialize_PointerTo_trt__GetOSDOptions(soap, (_trt__GetOSDOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetOSD: - soap_serialize_PointerTo_trt__GetOSD(soap, (_trt__GetOSD *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetOSDs: - soap_serialize_PointerTo_trt__GetOSDs(soap, (_trt__GetOSDs *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetVideoSourceMode: - soap_serialize_PointerTo_trt__SetVideoSourceMode(soap, (_trt__SetVideoSourceMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoSourceModes: - soap_serialize_PointerTo_trt__GetVideoSourceModes(soap, (_trt__GetVideoSourceModes *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetSnapshotUri: - soap_serialize_PointerTo_trt__GetSnapshotUri(soap, (_trt__GetSnapshotUri *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetSynchronizationPoint: - soap_serialize_PointerTo_trt__SetSynchronizationPoint(soap, (_trt__SetSynchronizationPoint *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__StopMulticastStreaming: - soap_serialize_PointerTo_trt__StopMulticastStreaming(soap, (_trt__StopMulticastStreaming *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__StartMulticastStreaming: - soap_serialize_PointerTo_trt__StartMulticastStreaming(soap, (_trt__StartMulticastStreaming *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetStreamUri: - soap_serialize_PointerTo_trt__GetStreamUri(soap, (_trt__GetStreamUri *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances: - soap_serialize_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, (_trt__GetGuaranteedNumberOfVideoEncoderInstances *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurationOptions: - soap_serialize_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, (_trt__GetAudioDecoderConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurationOptions: - soap_serialize_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, (_trt__GetAudioOutputConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetMetadataConfigurationOptions: - soap_serialize_PointerTo_trt__GetMetadataConfigurationOptions(soap, (_trt__GetMetadataConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurationOptions: - soap_serialize_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, (_trt__GetAudioEncoderConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurationOptions: - soap_serialize_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, (_trt__GetAudioSourceConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurationOptions: - soap_serialize_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, (_trt__GetVideoEncoderConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurationOptions: - soap_serialize_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, (_trt__GetVideoSourceConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetAudioDecoderConfiguration: - soap_serialize_PointerTo_trt__SetAudioDecoderConfiguration(soap, (_trt__SetAudioDecoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetAudioOutputConfiguration: - soap_serialize_PointerTo_trt__SetAudioOutputConfiguration(soap, (_trt__SetAudioOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetMetadataConfiguration: - soap_serialize_PointerTo_trt__SetMetadataConfiguration(soap, (_trt__SetMetadataConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetVideoAnalyticsConfiguration: - soap_serialize_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, (_trt__SetVideoAnalyticsConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetAudioEncoderConfiguration: - soap_serialize_PointerTo_trt__SetAudioEncoderConfiguration(soap, (_trt__SetAudioEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetAudioSourceConfiguration: - soap_serialize_PointerTo_trt__SetAudioSourceConfiguration(soap, (_trt__SetAudioSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetVideoEncoderConfiguration: - soap_serialize_PointerTo_trt__SetVideoEncoderConfiguration(soap, (_trt__SetVideoEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__SetVideoSourceConfiguration: - soap_serialize_PointerTo_trt__SetVideoSourceConfiguration(soap, (_trt__SetVideoSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioDecoderConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(soap, (_trt__GetCompatibleAudioDecoderConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioOutputConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleAudioOutputConfigurations(soap, (_trt__GetCompatibleAudioOutputConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleMetadataConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleMetadataConfigurations(soap, (_trt__GetCompatibleMetadataConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(soap, (_trt__GetCompatibleVideoAnalyticsConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioSourceConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleAudioSourceConfigurations(soap, (_trt__GetCompatibleAudioSourceConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleAudioEncoderConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(soap, (_trt__GetCompatibleAudioEncoderConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoSourceConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleVideoSourceConfigurations(soap, (_trt__GetCompatibleVideoSourceConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetCompatibleVideoEncoderConfigurations: - soap_serialize_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(soap, (_trt__GetCompatibleVideoEncoderConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfiguration: - soap_serialize_PointerTo_trt__GetAudioDecoderConfiguration(soap, (_trt__GetAudioDecoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfiguration: - soap_serialize_PointerTo_trt__GetAudioOutputConfiguration(soap, (_trt__GetAudioOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetMetadataConfiguration: - soap_serialize_PointerTo_trt__GetMetadataConfiguration(soap, (_trt__GetMetadataConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfiguration: - soap_serialize_PointerTo_trt__GetVideoAnalyticsConfiguration(soap, (_trt__GetVideoAnalyticsConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfiguration: - soap_serialize_PointerTo_trt__GetAudioEncoderConfiguration(soap, (_trt__GetAudioEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfiguration: - soap_serialize_PointerTo_trt__GetAudioSourceConfiguration(soap, (_trt__GetAudioSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfiguration: - soap_serialize_PointerTo_trt__GetVideoEncoderConfiguration(soap, (_trt__GetVideoEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfiguration: - soap_serialize_PointerTo_trt__GetVideoSourceConfiguration(soap, (_trt__GetVideoSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurations: - soap_serialize_PointerTo_trt__GetAudioDecoderConfigurations(soap, (_trt__GetAudioDecoderConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurations: - soap_serialize_PointerTo_trt__GetAudioOutputConfigurations(soap, (_trt__GetAudioOutputConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetMetadataConfigurations: - soap_serialize_PointerTo_trt__GetMetadataConfigurations(soap, (_trt__GetMetadataConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfigurations: - soap_serialize_PointerTo_trt__GetVideoAnalyticsConfigurations(soap, (_trt__GetVideoAnalyticsConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurations: - soap_serialize_PointerTo_trt__GetAudioEncoderConfigurations(soap, (_trt__GetAudioEncoderConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurations: - soap_serialize_PointerTo_trt__GetAudioSourceConfigurations(soap, (_trt__GetAudioSourceConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurations: - soap_serialize_PointerTo_trt__GetVideoEncoderConfigurations(soap, (_trt__GetVideoEncoderConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurations: - soap_serialize_PointerTo_trt__GetVideoSourceConfigurations(soap, (_trt__GetVideoSourceConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__DeleteProfile: - soap_serialize_PointerTo_trt__DeleteProfile(soap, (_trt__DeleteProfile *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveAudioDecoderConfiguration: - soap_serialize_PointerTo_trt__RemoveAudioDecoderConfiguration(soap, (_trt__RemoveAudioDecoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveAudioOutputConfiguration: - soap_serialize_PointerTo_trt__RemoveAudioOutputConfiguration(soap, (_trt__RemoveAudioOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveMetadataConfiguration: - soap_serialize_PointerTo_trt__RemoveMetadataConfiguration(soap, (_trt__RemoveMetadataConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveVideoAnalyticsConfiguration: - soap_serialize_PointerTo_trt__RemoveVideoAnalyticsConfiguration(soap, (_trt__RemoveVideoAnalyticsConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemovePTZConfiguration: - soap_serialize_PointerTo_trt__RemovePTZConfiguration(soap, (_trt__RemovePTZConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveAudioSourceConfiguration: - soap_serialize_PointerTo_trt__RemoveAudioSourceConfiguration(soap, (_trt__RemoveAudioSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveAudioEncoderConfiguration: - soap_serialize_PointerTo_trt__RemoveAudioEncoderConfiguration(soap, (_trt__RemoveAudioEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveVideoSourceConfiguration: - soap_serialize_PointerTo_trt__RemoveVideoSourceConfiguration(soap, (_trt__RemoveVideoSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__RemoveVideoEncoderConfiguration: - soap_serialize_PointerTo_trt__RemoveVideoEncoderConfiguration(soap, (_trt__RemoveVideoEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddAudioDecoderConfiguration: - soap_serialize_PointerTo_trt__AddAudioDecoderConfiguration(soap, (_trt__AddAudioDecoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddAudioOutputConfiguration: - soap_serialize_PointerTo_trt__AddAudioOutputConfiguration(soap, (_trt__AddAudioOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddMetadataConfiguration: - soap_serialize_PointerTo_trt__AddMetadataConfiguration(soap, (_trt__AddMetadataConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddVideoAnalyticsConfiguration: - soap_serialize_PointerTo_trt__AddVideoAnalyticsConfiguration(soap, (_trt__AddVideoAnalyticsConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddPTZConfiguration: - soap_serialize_PointerTo_trt__AddPTZConfiguration(soap, (_trt__AddPTZConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddAudioSourceConfiguration: - soap_serialize_PointerTo_trt__AddAudioSourceConfiguration(soap, (_trt__AddAudioSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddAudioEncoderConfiguration: - soap_serialize_PointerTo_trt__AddAudioEncoderConfiguration(soap, (_trt__AddAudioEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddVideoSourceConfiguration: - soap_serialize_PointerTo_trt__AddVideoSourceConfiguration(soap, (_trt__AddVideoSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__AddVideoEncoderConfiguration: - soap_serialize_PointerTo_trt__AddVideoEncoderConfiguration(soap, (_trt__AddVideoEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetProfiles: - soap_serialize_PointerTo_trt__GetProfiles(soap, (_trt__GetProfiles *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetProfile: - soap_serialize_PointerTo_trt__GetProfile(soap, (_trt__GetProfile *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__CreateProfile: - soap_serialize_PointerTo_trt__CreateProfile(soap, (_trt__CreateProfile *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioOutputs: - soap_serialize_PointerTo_trt__GetAudioOutputs(soap, (_trt__GetAudioOutputs *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetAudioSources: - soap_serialize_PointerTo_trt__GetAudioSources(soap, (_trt__GetAudioSources *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetVideoSources: - soap_serialize_PointerTo_trt__GetVideoSources(soap, (_trt__GetVideoSources *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trt__GetServiceCapabilities: - soap_serialize_PointerTo_trt__GetServiceCapabilities(soap, (_trt__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trp__SetReplayConfiguration: - soap_serialize_PointerTo_trp__SetReplayConfiguration(soap, (_trp__SetReplayConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trp__GetReplayConfiguration: - soap_serialize_PointerTo_trp__GetReplayConfiguration(soap, (_trp__GetReplayConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trp__GetReplayUri: - soap_serialize_PointerTo_trp__GetReplayUri(soap, (_trp__GetReplayUri *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trp__GetServiceCapabilities: - soap_serialize_PointerTo_trp__GetServiceCapabilities(soap, (_trp__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetExportRecordedDataState: - soap_serialize_PointerTo_trc__GetExportRecordedDataState(soap, (_trc__GetExportRecordedDataState *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__StopExportRecordedData: - soap_serialize_PointerTo_trc__StopExportRecordedData(soap, (_trc__StopExportRecordedData *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__ExportRecordedData: - soap_serialize_PointerTo_trc__ExportRecordedData(soap, (_trc__ExportRecordedData *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetRecordingJobState: - soap_serialize_PointerTo_trc__GetRecordingJobState(soap, (_trc__GetRecordingJobState *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__SetRecordingJobMode: - soap_serialize_PointerTo_trc__SetRecordingJobMode(soap, (_trc__SetRecordingJobMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetRecordingJobConfiguration: - soap_serialize_PointerTo_trc__GetRecordingJobConfiguration(soap, (_trc__GetRecordingJobConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__SetRecordingJobConfiguration: - soap_serialize_PointerTo_trc__SetRecordingJobConfiguration(soap, (_trc__SetRecordingJobConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetRecordingJobs: - soap_serialize_PointerTo_trc__GetRecordingJobs(soap, (_trc__GetRecordingJobs *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__DeleteRecordingJob: - soap_serialize_PointerTo_trc__DeleteRecordingJob(soap, (_trc__DeleteRecordingJob *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__CreateRecordingJob: - soap_serialize_PointerTo_trc__CreateRecordingJob(soap, (_trc__CreateRecordingJob *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__SetTrackConfiguration: - soap_serialize_PointerTo_trc__SetTrackConfiguration(soap, (_trc__SetTrackConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetTrackConfiguration: - soap_serialize_PointerTo_trc__GetTrackConfiguration(soap, (_trc__GetTrackConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__DeleteTrack: - soap_serialize_PointerTo_trc__DeleteTrack(soap, (_trc__DeleteTrack *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__CreateTrack: - soap_serialize_PointerTo_trc__CreateTrack(soap, (_trc__CreateTrack *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetRecordingOptions: - soap_serialize_PointerTo_trc__GetRecordingOptions(soap, (_trc__GetRecordingOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetRecordingConfiguration: - soap_serialize_PointerTo_trc__GetRecordingConfiguration(soap, (_trc__GetRecordingConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__SetRecordingConfiguration: - soap_serialize_PointerTo_trc__SetRecordingConfiguration(soap, (_trc__SetRecordingConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetRecordings: - soap_serialize_PointerTo_trc__GetRecordings(soap, (_trc__GetRecordings *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__DeleteRecording: - soap_serialize_PointerTo_trc__DeleteRecording(soap, (_trc__DeleteRecording *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__CreateRecording: - soap_serialize_PointerTo_trc__CreateRecording(soap, (_trc__CreateRecording *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__GetServiceCapabilities: - soap_serialize_PointerTo_trc__GetServiceCapabilities(soap, (_trc__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetCompatibleConfigurations: - soap_serialize_PointerTo_tptz__GetCompatibleConfigurations(soap, (_tptz__GetCompatibleConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__RemovePresetTour: - soap_serialize_PointerTo_tptz__RemovePresetTour(soap, (_tptz__RemovePresetTour *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__OperatePresetTour: - soap_serialize_PointerTo_tptz__OperatePresetTour(soap, (_tptz__OperatePresetTour *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__ModifyPresetTour: - soap_serialize_PointerTo_tptz__ModifyPresetTour(soap, (_tptz__ModifyPresetTour *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__CreatePresetTour: - soap_serialize_PointerTo_tptz__CreatePresetTour(soap, (_tptz__CreatePresetTour *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetPresetTourOptions: - soap_serialize_PointerTo_tptz__GetPresetTourOptions(soap, (_tptz__GetPresetTourOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetPresetTour: - soap_serialize_PointerTo_tptz__GetPresetTour(soap, (_tptz__GetPresetTour *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetPresetTours: - soap_serialize_PointerTo_tptz__GetPresetTours(soap, (_tptz__GetPresetTours *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__Stop: - soap_serialize_PointerTo_tptz__Stop(soap, (_tptz__Stop *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__AbsoluteMove: - soap_serialize_PointerTo_tptz__AbsoluteMove(soap, (_tptz__AbsoluteMove *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__SendAuxiliaryCommand: - soap_serialize_PointerTo_tptz__SendAuxiliaryCommand(soap, (_tptz__SendAuxiliaryCommand *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__RelativeMove: - soap_serialize_PointerTo_tptz__RelativeMove(soap, (_tptz__RelativeMove *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__ContinuousMove: - soap_serialize_PointerTo_tptz__ContinuousMove(soap, (_tptz__ContinuousMove *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__SetHomePosition: - soap_serialize_PointerTo_tptz__SetHomePosition(soap, (_tptz__SetHomePosition *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GotoHomePosition: - soap_serialize_PointerTo_tptz__GotoHomePosition(soap, (_tptz__GotoHomePosition *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetConfigurationOptions: - soap_serialize_PointerTo_tptz__GetConfigurationOptions(soap, (_tptz__GetConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__SetConfiguration: - soap_serialize_PointerTo_tptz__SetConfiguration(soap, (_tptz__SetConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetNode: - soap_serialize_PointerTo_tptz__GetNode(soap, (_tptz__GetNode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetNodes: - soap_serialize_PointerTo_tptz__GetNodes(soap, (_tptz__GetNodes *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetConfiguration: - soap_serialize_PointerTo_tptz__GetConfiguration(soap, (_tptz__GetConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetStatus: - soap_serialize_PointerTo_tptz__GetStatus(soap, (_tptz__GetStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GotoPreset: - soap_serialize_PointerTo_tptz__GotoPreset(soap, (_tptz__GotoPreset *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__RemovePreset: - soap_serialize_PointerTo_tptz__RemovePreset(soap, (_tptz__RemovePreset *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__SetPreset: - soap_serialize_PointerTo_tptz__SetPreset(soap, (_tptz__SetPreset *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetPresets: - soap_serialize_PointerTo_tptz__GetPresets(soap, (_tptz__GetPresets *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetConfigurations: - soap_serialize_PointerTo_tptz__GetConfigurations(soap, (_tptz__GetConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tptz__GetServiceCapabilities: - soap_serialize_PointerTo_tptz__GetServiceCapabilities(soap, (_tptz__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SendReceiveSerialCommand: - soap_serialize_PointerTo_tmd__SendReceiveSerialCommand(soap, (_tmd__SendReceiveSerialCommand *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetSerialPortConfigurationOptions: - soap_serialize_PointerTo_tmd__GetSerialPortConfigurationOptions(soap, (_tmd__GetSerialPortConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SetSerialPortConfiguration: - soap_serialize_PointerTo_tmd__SetSerialPortConfiguration(soap, (_tmd__SetSerialPortConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetSerialPortConfiguration: - soap_serialize_PointerTo_tmd__GetSerialPortConfiguration(soap, (_tmd__GetSerialPortConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetSerialPorts: - soap_serialize_PointerTo_tmd__GetSerialPorts(soap, (_tmd__GetSerialPorts *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SetDigitalInputConfigurations: - soap_serialize_PointerTo_tmd__SetDigitalInputConfigurations(soap, (_tmd__SetDigitalInputConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetDigitalInputConfigurationOptions: - soap_serialize_PointerTo_tmd__GetDigitalInputConfigurationOptions(soap, (_tmd__GetDigitalInputConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetDigitalInputs: - soap_serialize_PointerTo_tmd__GetDigitalInputs(soap, (_tmd__GetDigitalInputs *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SetRelayOutputSettings: - soap_serialize_PointerTo_tmd__SetRelayOutputSettings(soap, (_tmd__SetRelayOutputSettings *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfigurationOptions: - soap_serialize_PointerTo_tmd__GetAudioOutputConfigurationOptions(soap, (_tmd__GetAudioOutputConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfigurationOptions: - soap_serialize_PointerTo_tmd__GetAudioSourceConfigurationOptions(soap, (_tmd__GetAudioSourceConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfigurationOptions: - soap_serialize_PointerTo_tmd__GetVideoOutputConfigurationOptions(soap, (_tmd__GetVideoOutputConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfigurationOptions: - soap_serialize_PointerTo_tmd__GetVideoSourceConfigurationOptions(soap, (_tmd__GetVideoSourceConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SetAudioOutputConfiguration: - soap_serialize_PointerTo_tmd__SetAudioOutputConfiguration(soap, (_tmd__SetAudioOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SetAudioSourceConfiguration: - soap_serialize_PointerTo_tmd__SetAudioSourceConfiguration(soap, (_tmd__SetAudioSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SetVideoOutputConfiguration: - soap_serialize_PointerTo_tmd__SetVideoOutputConfiguration(soap, (_tmd__SetVideoOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__SetVideoSourceConfiguration: - soap_serialize_PointerTo_tmd__SetVideoSourceConfiguration(soap, (_tmd__SetVideoSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfiguration: - soap_serialize_PointerTo_tmd__GetAudioOutputConfiguration(soap, (_tmd__GetAudioOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfiguration: - soap_serialize_PointerTo_tmd__GetAudioSourceConfiguration(soap, (_tmd__GetAudioSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfiguration: - soap_serialize_PointerTo_tmd__GetVideoOutputConfiguration(soap, (_tmd__GetVideoOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfiguration: - soap_serialize_PointerTo_tmd__GetVideoSourceConfiguration(soap, (_tmd__GetVideoSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetVideoOutputs: - soap_serialize_PointerTo_tmd__GetVideoOutputs(soap, (_tmd__GetVideoOutputs *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__Get: - soap_serialize_PointerTotmd__Get(soap, (tmd__Get *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetRelayOutputOptions: - soap_serialize_PointerTo_tmd__GetRelayOutputOptions(soap, (_tmd__GetRelayOutputOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tmd__GetServiceCapabilities: - soap_serialize_PointerTo_tmd__GetServiceCapabilities(soap, (_tmd__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__DeletePaneConfiguration: - soap_serialize_PointerTo_tls__DeletePaneConfiguration(soap, (_tls__DeletePaneConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__CreatePaneConfiguration: - soap_serialize_PointerTo_tls__CreatePaneConfiguration(soap, (_tls__CreatePaneConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__SetPaneConfiguration: - soap_serialize_PointerTo_tls__SetPaneConfiguration(soap, (_tls__SetPaneConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__SetPaneConfigurations: - soap_serialize_PointerTo_tls__SetPaneConfigurations(soap, (_tls__SetPaneConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__GetPaneConfiguration: - soap_serialize_PointerTo_tls__GetPaneConfiguration(soap, (_tls__GetPaneConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__GetPaneConfigurations: - soap_serialize_PointerTo_tls__GetPaneConfigurations(soap, (_tls__GetPaneConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__GetDisplayOptions: - soap_serialize_PointerTo_tls__GetDisplayOptions(soap, (_tls__GetDisplayOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__SetLayout: - soap_serialize_PointerTo_tls__SetLayout(soap, (_tls__SetLayout *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__GetLayout: - soap_serialize_PointerTo_tls__GetLayout(soap, (_tls__GetLayout *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tls__GetServiceCapabilities: - soap_serialize_PointerTo_tls__GetServiceCapabilities(soap, (_tls__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__SetCurrentPreset: - soap_serialize_PointerTo_timg__SetCurrentPreset(soap, (_timg__SetCurrentPreset *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__GetCurrentPreset: - soap_serialize_PointerTo_timg__GetCurrentPreset(soap, (_timg__GetCurrentPreset *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__GetPresets: - soap_serialize_PointerTo_timg__GetPresets(soap, (_timg__GetPresets *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__GetMoveOptions: - soap_serialize_PointerTo_timg__GetMoveOptions(soap, (_timg__GetMoveOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__GetStatus: - soap_serialize_PointerTo_timg__GetStatus(soap, (_timg__GetStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__Stop: - soap_serialize_PointerTo_timg__Stop(soap, (_timg__Stop *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__Move: - soap_serialize_PointerTo_timg__Move(soap, (_timg__Move *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__GetOptions: - soap_serialize_PointerTo_timg__GetOptions(soap, (_timg__GetOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__SetImagingSettings: - soap_serialize_PointerTo_timg__SetImagingSettings(soap, (_timg__SetImagingSettings *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__GetImagingSettings: - soap_serialize_PointerTo_timg__GetImagingSettings(soap, (_timg__GetImagingSettings *const*)ptr); - break; - case SOAP_TYPE_PointerTo_timg__GetServiceCapabilities: - soap_serialize_PointerTo_timg__GetServiceCapabilities(soap, (_timg__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__ResumeSubscription: - soap_serialize_PointerTo_wsnt__ResumeSubscription(soap, (_wsnt__ResumeSubscription *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__PauseSubscription: - soap_serialize_PointerTo_wsnt__PauseSubscription(soap, (_wsnt__PauseSubscription *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__Unsubscribe: - soap_serialize_PointerTo_wsnt__Unsubscribe(soap, (_wsnt__Unsubscribe *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__Renew: - soap_serialize_PointerTo_wsnt__Renew(soap, (_wsnt__Renew *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__SetSynchronizationPoint: - soap_serialize_PointerTo_tev__SetSynchronizationPoint(soap, (_tev__SetSynchronizationPoint *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__Seek: - soap_serialize_PointerTo_tev__Seek(soap, (_tev__Seek *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__PullMessages: - soap_serialize_PointerTo_tev__PullMessages(soap, (_tev__PullMessages *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__DestroyPullPoint: - soap_serialize_PointerTo_wsnt__DestroyPullPoint(soap, (_wsnt__DestroyPullPoint *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__GetMessages: - soap_serialize_PointerTo_wsnt__GetMessages(soap, (_wsnt__GetMessages *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__GetCurrentMessage: - soap_serialize_PointerTo_wsnt__GetCurrentMessage(soap, (_wsnt__GetCurrentMessage *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__Subscribe: - soap_serialize_PointerTo_wsnt__Subscribe(soap, (_wsnt__Subscribe *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__Notify: - soap_serialize_PointerTo_wsnt__Notify(soap, (_wsnt__Notify *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__GetEventProperties: - soap_serialize_PointerTo_tev__GetEventProperties(soap, (_tev__GetEventProperties *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription: - soap_serialize_PointerTo_tev__CreatePullPointSubscription(soap, (_tev__CreatePullPointSubscription *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__GetServiceCapabilities: - soap_serialize_PointerTo_tev__GetServiceCapabilities(soap, (_tev__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__CreatePullPoint: - soap_serialize_PointerTo_wsnt__CreatePullPoint(soap, (_wsnt__CreatePullPoint *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__DeleteGeoLocation: - soap_serialize_PointerTo_tds__DeleteGeoLocation(soap, (_tds__DeleteGeoLocation *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetGeoLocation: - soap_serialize_PointerTo_tds__SetGeoLocation(soap, (_tds__SetGeoLocation *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetGeoLocation: - soap_serialize_PointerTo_tds__GetGeoLocation(soap, (_tds__GetGeoLocation *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__DeleteStorageConfiguration: - soap_serialize_PointerTo_tds__DeleteStorageConfiguration(soap, (_tds__DeleteStorageConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetStorageConfiguration: - soap_serialize_PointerTo_tds__SetStorageConfiguration(soap, (_tds__SetStorageConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetStorageConfiguration: - soap_serialize_PointerTo_tds__GetStorageConfiguration(soap, (_tds__GetStorageConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__CreateStorageConfiguration: - soap_serialize_PointerTo_tds__CreateStorageConfiguration(soap, (_tds__CreateStorageConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetStorageConfigurations: - soap_serialize_PointerTo_tds__GetStorageConfigurations(soap, (_tds__GetStorageConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__StartSystemRestore: - soap_serialize_PointerTo_tds__StartSystemRestore(soap, (_tds__StartSystemRestore *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__StartFirmwareUpgrade: - soap_serialize_PointerTo_tds__StartFirmwareUpgrade(soap, (_tds__StartFirmwareUpgrade *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetSystemUris: - soap_serialize_PointerTo_tds__GetSystemUris(soap, (_tds__GetSystemUris *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__ScanAvailableDot11Networks: - soap_serialize_PointerTo_tds__ScanAvailableDot11Networks(soap, (_tds__ScanAvailableDot11Networks *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDot11Status: - soap_serialize_PointerTo_tds__GetDot11Status(soap, (_tds__GetDot11Status *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDot11Capabilities: - soap_serialize_PointerTo_tds__GetDot11Capabilities(soap, (_tds__GetDot11Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__DeleteDot1XConfiguration: - soap_serialize_PointerTo_tds__DeleteDot1XConfiguration(soap, (_tds__DeleteDot1XConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDot1XConfigurations: - soap_serialize_PointerTo_tds__GetDot1XConfigurations(soap, (_tds__GetDot1XConfigurations *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDot1XConfiguration: - soap_serialize_PointerTo_tds__GetDot1XConfiguration(soap, (_tds__GetDot1XConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetDot1XConfiguration: - soap_serialize_PointerTo_tds__SetDot1XConfiguration(soap, (_tds__SetDot1XConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__CreateDot1XConfiguration: - soap_serialize_PointerTo_tds__CreateDot1XConfiguration(soap, (_tds__CreateDot1XConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__LoadCACertificates: - soap_serialize_PointerTo_tds__LoadCACertificates(soap, (_tds__LoadCACertificates *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetCertificateInformation: - soap_serialize_PointerTo_tds__GetCertificateInformation(soap, (_tds__GetCertificateInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__LoadCertificateWithPrivateKey: - soap_serialize_PointerTo_tds__LoadCertificateWithPrivateKey(soap, (_tds__LoadCertificateWithPrivateKey *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetCACertificates: - soap_serialize_PointerTo_tds__GetCACertificates(soap, (_tds__GetCACertificates *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SendAuxiliaryCommand: - soap_serialize_PointerTo_tds__SendAuxiliaryCommand(soap, (_tds__SendAuxiliaryCommand *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetRelayOutputState: - soap_serialize_PointerTo_tds__SetRelayOutputState(soap, (_tds__SetRelayOutputState *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetRelayOutputSettings: - soap_serialize_PointerTo_tds__SetRelayOutputSettings(soap, (_tds__SetRelayOutputSettings *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetRelayOutputs: - soap_serialize_PointerTo_tds__GetRelayOutputs(soap, (_tds__GetRelayOutputs *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetClientCertificateMode: - soap_serialize_PointerTo_tds__SetClientCertificateMode(soap, (_tds__SetClientCertificateMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetClientCertificateMode: - soap_serialize_PointerTo_tds__GetClientCertificateMode(soap, (_tds__GetClientCertificateMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__LoadCertificates: - soap_serialize_PointerTo_tds__LoadCertificates(soap, (_tds__LoadCertificates *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetPkcs10Request: - soap_serialize_PointerTo_tds__GetPkcs10Request(soap, (_tds__GetPkcs10Request *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__DeleteCertificates: - soap_serialize_PointerTo_tds__DeleteCertificates(soap, (_tds__DeleteCertificates *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetCertificatesStatus: - soap_serialize_PointerTo_tds__SetCertificatesStatus(soap, (_tds__SetCertificatesStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetCertificatesStatus: - soap_serialize_PointerTo_tds__GetCertificatesStatus(soap, (_tds__GetCertificatesStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetCertificates: - soap_serialize_PointerTo_tds__GetCertificates(soap, (_tds__GetCertificates *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__CreateCertificate: - soap_serialize_PointerTo_tds__CreateCertificate(soap, (_tds__CreateCertificate *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetAccessPolicy: - soap_serialize_PointerTo_tds__SetAccessPolicy(soap, (_tds__SetAccessPolicy *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetAccessPolicy: - soap_serialize_PointerTo_tds__GetAccessPolicy(soap, (_tds__GetAccessPolicy *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__RemoveIPAddressFilter: - soap_serialize_PointerTo_tds__RemoveIPAddressFilter(soap, (_tds__RemoveIPAddressFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__AddIPAddressFilter: - soap_serialize_PointerTo_tds__AddIPAddressFilter(soap, (_tds__AddIPAddressFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetIPAddressFilter: - soap_serialize_PointerTo_tds__SetIPAddressFilter(soap, (_tds__SetIPAddressFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetIPAddressFilter: - soap_serialize_PointerTo_tds__GetIPAddressFilter(soap, (_tds__GetIPAddressFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetZeroConfiguration: - soap_serialize_PointerTo_tds__SetZeroConfiguration(soap, (_tds__SetZeroConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetZeroConfiguration: - soap_serialize_PointerTo_tds__GetZeroConfiguration(soap, (_tds__GetZeroConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetNetworkDefaultGateway: - soap_serialize_PointerTo_tds__SetNetworkDefaultGateway(soap, (_tds__SetNetworkDefaultGateway *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetNetworkDefaultGateway: - soap_serialize_PointerTo_tds__GetNetworkDefaultGateway(soap, (_tds__GetNetworkDefaultGateway *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetNetworkProtocols: - soap_serialize_PointerTo_tds__SetNetworkProtocols(soap, (_tds__SetNetworkProtocols *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetNetworkProtocols: - soap_serialize_PointerTo_tds__GetNetworkProtocols(soap, (_tds__GetNetworkProtocols *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetNetworkInterfaces: - soap_serialize_PointerTo_tds__SetNetworkInterfaces(soap, (_tds__SetNetworkInterfaces *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetNetworkInterfaces: - soap_serialize_PointerTo_tds__GetNetworkInterfaces(soap, (_tds__GetNetworkInterfaces *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetDynamicDNS: - soap_serialize_PointerTo_tds__SetDynamicDNS(soap, (_tds__SetDynamicDNS *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDynamicDNS: - soap_serialize_PointerTo_tds__GetDynamicDNS(soap, (_tds__GetDynamicDNS *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetNTP: - soap_serialize_PointerTo_tds__SetNTP(soap, (_tds__SetNTP *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetNTP: - soap_serialize_PointerTo_tds__GetNTP(soap, (_tds__GetNTP *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetDNS: - soap_serialize_PointerTo_tds__SetDNS(soap, (_tds__SetDNS *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDNS: - soap_serialize_PointerTo_tds__GetDNS(soap, (_tds__GetDNS *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetHostnameFromDHCP: - soap_serialize_PointerTo_tds__SetHostnameFromDHCP(soap, (_tds__SetHostnameFromDHCP *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetHostname: - soap_serialize_PointerTo_tds__SetHostname(soap, (_tds__SetHostname *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetHostname: - soap_serialize_PointerTo_tds__GetHostname(soap, (_tds__GetHostname *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetDPAddresses: - soap_serialize_PointerTo_tds__SetDPAddresses(soap, (_tds__SetDPAddresses *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetCapabilities: - soap_serialize_PointerTo_tds__GetCapabilities(soap, (_tds__GetCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetWsdlUrl: - soap_serialize_PointerTo_tds__GetWsdlUrl(soap, (_tds__GetWsdlUrl *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetUser: - soap_serialize_PointerTo_tds__SetUser(soap, (_tds__SetUser *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__DeleteUsers: - soap_serialize_PointerTo_tds__DeleteUsers(soap, (_tds__DeleteUsers *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__CreateUsers: - soap_serialize_PointerTo_tds__CreateUsers(soap, (_tds__CreateUsers *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetUsers: - soap_serialize_PointerTo_tds__GetUsers(soap, (_tds__GetUsers *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetRemoteUser: - soap_serialize_PointerTo_tds__SetRemoteUser(soap, (_tds__SetRemoteUser *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetRemoteUser: - soap_serialize_PointerTo_tds__GetRemoteUser(soap, (_tds__GetRemoteUser *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetEndpointReference: - soap_serialize_PointerTo_tds__GetEndpointReference(soap, (_tds__GetEndpointReference *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDPAddresses: - soap_serialize_PointerTo_tds__GetDPAddresses(soap, (_tds__GetDPAddresses *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetRemoteDiscoveryMode: - soap_serialize_PointerTo_tds__SetRemoteDiscoveryMode(soap, (_tds__SetRemoteDiscoveryMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetRemoteDiscoveryMode: - soap_serialize_PointerTo_tds__GetRemoteDiscoveryMode(soap, (_tds__GetRemoteDiscoveryMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetDiscoveryMode: - soap_serialize_PointerTo_tds__SetDiscoveryMode(soap, (_tds__SetDiscoveryMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDiscoveryMode: - soap_serialize_PointerTo_tds__GetDiscoveryMode(soap, (_tds__GetDiscoveryMode *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__RemoveScopes: - soap_serialize_PointerTo_tds__RemoveScopes(soap, (_tds__RemoveScopes *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__AddScopes: - soap_serialize_PointerTo_tds__AddScopes(soap, (_tds__AddScopes *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetScopes: - soap_serialize_PointerTo_tds__SetScopes(soap, (_tds__SetScopes *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetScopes: - soap_serialize_PointerTo_tds__GetScopes(soap, (_tds__GetScopes *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetSystemSupportInformation: - soap_serialize_PointerTo_tds__GetSystemSupportInformation(soap, (_tds__GetSystemSupportInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetSystemLog: - soap_serialize_PointerTo_tds__GetSystemLog(soap, (_tds__GetSystemLog *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetSystemBackup: - soap_serialize_PointerTo_tds__GetSystemBackup(soap, (_tds__GetSystemBackup *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__RestoreSystem: - soap_serialize_PointerTo_tds__RestoreSystem(soap, (_tds__RestoreSystem *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SystemReboot: - soap_serialize_PointerTo_tds__SystemReboot(soap, (_tds__SystemReboot *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__UpgradeSystemFirmware: - soap_serialize_PointerTo_tds__UpgradeSystemFirmware(soap, (_tds__UpgradeSystemFirmware *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetSystemFactoryDefault: - soap_serialize_PointerTo_tds__SetSystemFactoryDefault(soap, (_tds__SetSystemFactoryDefault *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetSystemDateAndTime: - soap_serialize_PointerTo_tds__GetSystemDateAndTime(soap, (_tds__GetSystemDateAndTime *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__SetSystemDateAndTime: - soap_serialize_PointerTo_tds__SetSystemDateAndTime(soap, (_tds__SetSystemDateAndTime *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetDeviceInformation: - soap_serialize_PointerTo_tds__GetDeviceInformation(soap, (_tds__GetDeviceInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetServiceCapabilities: - soap_serialize_PointerTo_tds__GetServiceCapabilities(soap, (_tds__GetServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetServices: - soap_serialize_PointerTo_tds__GetServices(soap, (_tds__GetServices *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnacceptableTerminationTimeFaultType: - soap_serialize_PointerTowsnt__UnacceptableTerminationTimeFaultType(soap, (wsnt__UnacceptableTerminationTimeFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnableToDestroySubscriptionFaultType: - soap_serialize_PointerTowsnt__UnableToDestroySubscriptionFaultType(soap, (wsnt__UnableToDestroySubscriptionFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__ResumeFailedFaultType: - soap_serialize_PointerTowsnt__ResumeFailedFaultType(soap, (wsnt__ResumeFailedFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__PauseFailedFaultType: - soap_serialize_PointerTowsnt__PauseFailedFaultType(soap, (wsnt__PauseFailedFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__PullMessagesFaultResponse: - soap_serialize_PointerTo_tev__PullMessagesFaultResponse(soap, (_tev__PullMessagesFaultResponse *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnableToGetMessagesFaultType: - soap_serialize_PointerTowsnt__UnableToGetMessagesFaultType(soap, (wsnt__UnableToGetMessagesFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnableToDestroyPullPointFaultType: - soap_serialize_PointerTowsnt__UnableToDestroyPullPointFaultType(soap, (wsnt__UnableToDestroyPullPointFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__NoCurrentMessageOnTopicFaultType: - soap_serialize_PointerTowsnt__NoCurrentMessageOnTopicFaultType(soap, (wsnt__NoCurrentMessageOnTopicFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__MultipleTopicsSpecifiedFaultType: - soap_serialize_PointerTowsnt__MultipleTopicsSpecifiedFaultType(soap, (wsnt__MultipleTopicsSpecifiedFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnsupportedPolicyRequestFaultType: - soap_serialize_PointerTowsnt__UnsupportedPolicyRequestFaultType(soap, (wsnt__UnsupportedPolicyRequestFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnrecognizedPolicyRequestFaultType: - soap_serialize_PointerTowsnt__UnrecognizedPolicyRequestFaultType(soap, (wsnt__UnrecognizedPolicyRequestFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType: - soap_serialize_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(soap, (wsnt__UnacceptableInitialTerminationTimeFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__TopicNotSupportedFaultType: - soap_serialize_PointerTowsnt__TopicNotSupportedFaultType(soap, (wsnt__TopicNotSupportedFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__TopicExpressionDialectUnknownFaultType: - soap_serialize_PointerTowsnt__TopicExpressionDialectUnknownFaultType(soap, (wsnt__TopicExpressionDialectUnknownFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__SubscribeCreationFailedFaultType: - soap_serialize_PointerTowsnt__SubscribeCreationFailedFaultType(soap, (wsnt__SubscribeCreationFailedFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsrfr__ResourceUnknownFaultType: - soap_serialize_PointerTowsrfr__ResourceUnknownFaultType(soap, (wsrfr__ResourceUnknownFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__NotifyMessageNotSupportedFaultType: - soap_serialize_PointerTowsnt__NotifyMessageNotSupportedFaultType(soap, (wsnt__NotifyMessageNotSupportedFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__InvalidTopicExpressionFaultType: - soap_serialize_PointerTowsnt__InvalidTopicExpressionFaultType(soap, (wsnt__InvalidTopicExpressionFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType: - soap_serialize_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(soap, (wsnt__InvalidProducerPropertiesExpressionFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__InvalidMessageContentExpressionFaultType: - soap_serialize_PointerTowsnt__InvalidMessageContentExpressionFaultType(soap, (wsnt__InvalidMessageContentExpressionFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__InvalidFilterFaultType: - soap_serialize_PointerTowsnt__InvalidFilterFaultType(soap, (wsnt__InvalidFilterFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__UnableToCreatePullPointFaultType: - soap_serialize_PointerTowsnt__UnableToCreatePullPointFaultType(soap, (wsnt__UnableToCreatePullPointFaultType *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__NCName: - soap_serialize_PointerToxsd__NCName(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTowstop__ConcreteTopicExpression: - soap_serialize_PointerTowstop__ConcreteTopicExpression(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__QName: - soap_serialize_PointerToxsd__QName(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTowstop__TopicType: - soap_serialize_PointerTowstop__TopicType(soap, (wstop__TopicType *const*)ptr); - break; - case SOAP_TYPE_PointerTowstop__QueryExpressionType: - soap_serialize_PointerTowstop__QueryExpressionType(soap, (wstop__QueryExpressionType *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDConfigurationExtension: - soap_serialize_PointerTott__OSDConfigurationExtension(soap, (tt__OSDConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDImgConfiguration: - soap_serialize_PointerTott__OSDImgConfiguration(soap, (tt__OSDImgConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDTextConfiguration: - soap_serialize_PointerTott__OSDTextConfiguration(soap, (tt__OSDTextConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDPosConfiguration: - soap_serialize_PointerTott__OSDPosConfiguration(soap, (tt__OSDPosConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDReference: - soap_serialize_PointerTott__OSDReference(soap, (tt__OSDReference *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataInput: - soap_serialize_PointerTott__MetadataInput(soap, (tt__MetadataInput *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SourceIdentification: - soap_serialize_PointerTott__SourceIdentification(soap, (tt__SourceIdentification *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfiguration: - soap_serialize_PointerTott__AnalyticsDeviceEngineConfiguration(soap, (tt__AnalyticsDeviceEngineConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZConfigurationExtension: - soap_serialize_PointerTott__PTZConfigurationExtension(soap, (tt__PTZConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ZoomLimits: - soap_serialize_PointerTott__ZoomLimits(soap, (tt__ZoomLimits *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PanTiltLimits: - soap_serialize_PointerTott__PanTiltLimits(soap, (tt__PanTiltLimits *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZNodeExtension: - soap_serialize_PointerTott__PTZNodeExtension(soap, (tt__PTZNodeExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DigitalIdleState: - soap_serialize_PointerTott__DigitalIdleState(soap, (enum tt__DigitalIdleState *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceExtension: - soap_serialize_PointerTott__NetworkInterfaceExtension(soap, (tt__NetworkInterfaceExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv6NetworkInterface: - soap_serialize_PointerTott__IPv6NetworkInterface(soap, (tt__IPv6NetworkInterface *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv4NetworkInterface: - soap_serialize_PointerTott__IPv4NetworkInterface(soap, (tt__IPv4NetworkInterface *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceLink: - soap_serialize_PointerTott__NetworkInterfaceLink(soap, (tt__NetworkInterfaceLink *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceInfo: - soap_serialize_PointerTott__NetworkInterfaceInfo(soap, (tt__NetworkInterfaceInfo *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoOutputExtension: - soap_serialize_PointerTott__VideoOutputExtension(soap, (tt__VideoOutputExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataConfigurationExtension: - soap_serialize_PointerTott__MetadataConfigurationExtension(soap, (tt__MetadataConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EventSubscription: - soap_serialize_PointerTott__EventSubscription(soap, (tt__EventSubscription *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZFilter: - soap_serialize_PointerTott__PTZFilter(soap, (tt__PTZFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RuleEngineConfiguration: - soap_serialize_PointerTott__RuleEngineConfiguration(soap, (tt__RuleEngineConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsEngineConfiguration: - soap_serialize_PointerTott__AnalyticsEngineConfiguration(soap, (tt__AnalyticsEngineConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoRateControl2: - soap_serialize_PointerTott__VideoRateControl2(soap, (tt__VideoRateControl2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MulticastConfiguration: - soap_serialize_PointerTott__MulticastConfiguration(soap, (tt__MulticastConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__H264Configuration: - soap_serialize_PointerTott__H264Configuration(soap, (tt__H264Configuration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Mpeg4Configuration: - soap_serialize_PointerTott__Mpeg4Configuration(soap, (tt__Mpeg4Configuration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoRateControl: - soap_serialize_PointerTott__VideoRateControl(soap, (tt__VideoRateControl *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension: - soap_serialize_PointerTott__VideoSourceConfigurationExtension(soap, (tt__VideoSourceConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IntRectangle: - soap_serialize_PointerTott__IntRectangle(soap, (tt__IntRectangle *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceExtension: - soap_serialize_PointerTott__VideoSourceExtension(soap, (tt__VideoSourceExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingSettings: - soap_serialize_PointerTott__ImagingSettings(soap, (tt__ImagingSettings *const*)ptr); - break; - case SOAP_TYPE_PointerTowstop__Documentation: - soap_serialize_PointerTowstop__Documentation(soap, (wstop__Documentation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FindMetadataResultList: - soap_serialize_PointerTott__FindMetadataResultList(soap, (tt__FindMetadataResultList *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataFilter: - soap_serialize_PointerTott__MetadataFilter(soap, (tt__MetadataFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FindPTZPositionResultList: - soap_serialize_PointerTott__FindPTZPositionResultList(soap, (tt__FindPTZPositionResultList *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPositionFilter: - soap_serialize_PointerTott__PTZPositionFilter(soap, (tt__PTZPositionFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FindEventResultList: - soap_serialize_PointerTott__FindEventResultList(soap, (tt__FindEventResultList *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EventFilter: - soap_serialize_PointerTott__EventFilter(soap, (tt__EventFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FindRecordingResultList: - soap_serialize_PointerTott__FindRecordingResultList(soap, (tt__FindRecordingResultList *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MediaAttributes: - soap_serialize_PointerTott__MediaAttributes(soap, (tt__MediaAttributes *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingSummary: - soap_serialize_PointerTott__RecordingSummary(soap, (tt__RecordingSummary *const*)ptr); - break; - case SOAP_TYPE_PointerTotse__Capabilities: - soap_serialize_PointerTotse__Capabilities(soap, (tse__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReplayConfiguration: - soap_serialize_PointerTott__ReplayConfiguration(soap, (tt__ReplayConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTotrp__Capabilities: - soap_serialize_PointerTotrp__Capabilities(soap, (trp__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ArrayOfFileProgress: - soap_serialize_PointerTott__ArrayOfFileProgress(soap, (tt__ArrayOfFileProgress *const*)ptr); - break; - case SOAP_TYPE_PointerTo_trc__ExportRecordedDataResponse_Extension: - soap_serialize_PointerTo_trc__ExportRecordedDataResponse_Extension(soap, (_trc__ExportRecordedDataResponse_Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__StorageReferencePath: - soap_serialize_PointerTott__StorageReferencePath(soap, (tt__StorageReferencePath *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SearchScope: - soap_serialize_PointerTott__SearchScope(soap, (tt__SearchScope *const*)ptr); - break; - case SOAP_TYPE_PointerTotrc__RecordingOptions: - soap_serialize_PointerTotrc__RecordingOptions(soap, (trc__RecordingOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobStateInformation: - soap_serialize_PointerTott__RecordingJobStateInformation(soap, (tt__RecordingJobStateInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__GetRecordingJobsResponseItem: - soap_serialize_PointerTott__GetRecordingJobsResponseItem(soap, (tt__GetRecordingJobsResponseItem *const*)ptr); - break; - case SOAP_TYPE_PointerTott__GetRecordingsResponseItem: - soap_serialize_PointerTott__GetRecordingsResponseItem(soap, (tt__GetRecordingsResponseItem *const*)ptr); - break; - case SOAP_TYPE_PointerTotrc__Capabilities: - soap_serialize_PointerTotrc__Capabilities(soap, (trc__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotrc__TrackOptions: - soap_serialize_PointerTotrc__TrackOptions(soap, (trc__TrackOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTotrc__JobOptions: - soap_serialize_PointerTotrc__JobOptions(soap, (trc__JobOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTotrc__EncodingTypes: - soap_serialize_PointerTotrc__EncodingTypes(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReceiverStateInformation: - soap_serialize_PointerTott__ReceiverStateInformation(soap, (tt__ReceiverStateInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Receiver: - soap_serialize_PointerTott__Receiver(soap, (tt__Receiver *const*)ptr); - break; - case SOAP_TYPE_PointerTotrv__Capabilities: - soap_serialize_PointerTotrv__Capabilities(soap, (trv__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourOptions: - soap_serialize_PointerTott__PTZPresetTourOptions(soap, (tt__PTZPresetTourOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PresetTour: - soap_serialize_PointerTott__PresetTour(soap, (tt__PresetTour *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZStatus: - soap_serialize_PointerTott__PTZStatus(soap, (tt__PTZStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPreset: - soap_serialize_PointerTott__PTZPreset(soap, (tt__PTZPreset *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZConfigurationOptions: - soap_serialize_PointerTott__PTZConfigurationOptions(soap, (tt__PTZConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo__tptz__SetConfigurationResponse_sequence: - soap_serialize_PointerTo__tptz__SetConfigurationResponse_sequence(soap, (struct __tptz__SetConfigurationResponse_sequence *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZNode: - soap_serialize_PointerTott__PTZNode(soap, (tt__PTZNode *const*)ptr); - break; - case SOAP_TYPE_PointerTotptz__Capabilities: - soap_serialize_PointerTotptz__Capabilities(soap, (tptz__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDConfigurationOptions: - soap_serialize_PointerTott__OSDConfigurationOptions(soap, (tt__OSDConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDConfiguration: - soap_serialize_PointerTott__OSDConfiguration(soap, (tt__OSDConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTotrt__VideoSourceMode: - soap_serialize_PointerTotrt__VideoSourceMode(soap, (trt__VideoSourceMode *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MediaUri: - soap_serialize_PointerTott__MediaUri(soap, (tt__MediaUri *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataConfigurationOptions: - soap_serialize_PointerTott__MetadataConfigurationOptions(soap, (tt__MetadataConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoEncoderConfigurationOptions: - soap_serialize_PointerTott__VideoEncoderConfigurationOptions(soap, (tt__VideoEncoderConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Profile: - soap_serialize_PointerTott__Profile(soap, (tt__Profile *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioOutput: - soap_serialize_PointerTott__AudioOutput(soap, (tt__AudioOutput *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioSource: - soap_serialize_PointerTott__AudioSource(soap, (tt__AudioSource *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSource: - soap_serialize_PointerTott__VideoSource(soap, (tt__VideoSource *const*)ptr); - break; - case SOAP_TYPE_PointerTotrt__Capabilities: - soap_serialize_PointerTotrt__Capabilities(soap, (trt__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotrt__VideoSourceModeExtension: - soap_serialize_PointerTotrt__VideoSourceModeExtension(soap, (trt__VideoSourceModeExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Description: - soap_serialize_PointerTott__Description(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTotrt__StreamingCapabilities: - soap_serialize_PointerTotrt__StreamingCapabilities(soap, (trt__StreamingCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotrt__ProfileCapabilities: - soap_serialize_PointerTotrt__ProfileCapabilities(soap, (trt__ProfileCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotimg__ImagingPreset: - soap_serialize_PointerTotimg__ImagingPreset(soap, (timg__ImagingPreset *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingStatus20: - soap_serialize_PointerTott__ImagingStatus20(soap, (tt__ImagingStatus20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MoveOptions20: - soap_serialize_PointerTott__MoveOptions20(soap, (tt__MoveOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusMove: - soap_serialize_PointerTott__FocusMove(soap, (tt__FocusMove *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingOptions20: - soap_serialize_PointerTott__ImagingOptions20(soap, (tt__ImagingOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTotimg__Capabilities: - soap_serialize_PointerTotimg__Capabilities(soap, (timg__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PaneConfiguration: - soap_serialize_PointerTott__PaneConfiguration(soap, (tt__PaneConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CodingCapabilities: - soap_serialize_PointerTott__CodingCapabilities(soap, (tt__CodingCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LayoutOptions: - soap_serialize_PointerTott__LayoutOptions(soap, (tt__LayoutOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Layout: - soap_serialize_PointerTott__Layout(soap, (tt__Layout *const*)ptr); - break; - case SOAP_TYPE_PointerTotls__Capabilities: - soap_serialize_PointerTotls__Capabilities(soap, (tls__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LocationEntity: - soap_serialize_PointerTott__LocationEntity(soap, (tt__LocationEntity *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__StorageConfigurationData: - soap_serialize_PointerTotds__StorageConfigurationData(soap, (tds__StorageConfigurationData *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__StorageConfiguration: - soap_serialize_PointerTotds__StorageConfiguration(soap, (tds__StorageConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__GetSystemUrisResponse_Extension: - soap_serialize_PointerTo_tds__GetSystemUrisResponse_Extension(soap, (_tds__GetSystemUrisResponse_Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemLogUriList: - soap_serialize_PointerTott__SystemLogUriList(soap, (tt__SystemLogUriList *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11AvailableNetworks: - soap_serialize_PointerTott__Dot11AvailableNetworks(soap, (tt__Dot11AvailableNetworks *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11Status: - soap_serialize_PointerTott__Dot11Status(soap, (tt__Dot11Status *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11Capabilities: - soap_serialize_PointerTott__Dot11Capabilities(soap, (tt__Dot11Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AuxiliaryData: - soap_serialize_PointerTott__AuxiliaryData(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RelayOutputSettings: - soap_serialize_PointerTott__RelayOutputSettings(soap, (tt__RelayOutputSettings *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot1XConfiguration: - soap_serialize_PointerTott__Dot1XConfiguration(soap, (tt__Dot1XConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CertificateInformation: - soap_serialize_PointerTott__CertificateInformation(soap, (tt__CertificateInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CertificateWithPrivateKey: - soap_serialize_PointerTott__CertificateWithPrivateKey(soap, (tt__CertificateWithPrivateKey *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CertificateStatus: - soap_serialize_PointerTott__CertificateStatus(soap, (tt__CertificateStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Certificate: - soap_serialize_PointerTott__Certificate(soap, (tt__Certificate *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPAddressFilter: - soap_serialize_PointerTott__IPAddressFilter(soap, (tt__IPAddressFilter *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkGateway: - soap_serialize_PointerTott__NetworkGateway(soap, (tt__NetworkGateway *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkProtocol: - soap_serialize_PointerTott__NetworkProtocol(soap, (tt__NetworkProtocol *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfiguration: - soap_serialize_PointerTott__NetworkInterfaceSetConfiguration(soap, (tt__NetworkInterfaceSetConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterface: - soap_serialize_PointerTott__NetworkInterface(soap, (tt__NetworkInterface *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DynamicDNSInformation: - soap_serialize_PointerTott__DynamicDNSInformation(soap, (tt__DynamicDNSInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NTPInformation: - soap_serialize_PointerTott__NTPInformation(soap, (tt__NTPInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DNSInformation: - soap_serialize_PointerTott__DNSInformation(soap, (tt__DNSInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__HostnameInformation: - soap_serialize_PointerTott__HostnameInformation(soap, (tt__HostnameInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Capabilities: - soap_serialize_PointerTott__Capabilities(soap, (tt__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__User: - soap_serialize_PointerTott__User(soap, (tt__User *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RemoteUser: - soap_serialize_PointerTott__RemoteUser(soap, (tt__RemoteUser *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Scope: - soap_serialize_PointerTott__Scope(soap, (tt__Scope *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemLog: - soap_serialize_PointerTott__SystemLog(soap, (tt__SystemLog *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SupportInformation: - soap_serialize_PointerTott__SupportInformation(soap, (tt__SupportInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__BackupFile: - soap_serialize_PointerTott__BackupFile(soap, (tt__BackupFile *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemDateTime: - soap_serialize_PointerTott__SystemDateTime(soap, (tt__SystemDateTime *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__DeviceServiceCapabilities: - soap_serialize_PointerTotds__DeviceServiceCapabilities(soap, (tds__DeviceServiceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__Service: - soap_serialize_PointerTotds__Service(soap, (tds__Service *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__StorageConfigurationData_Extension: - soap_serialize_PointerTo_tds__StorageConfigurationData_Extension(soap, (_tds__StorageConfigurationData_Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__UserCredential: - soap_serialize_PointerTotds__UserCredential(soap, (tds__UserCredential *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__UserCredential_Extension: - soap_serialize_PointerTo_tds__UserCredential_Extension(soap, (_tds__UserCredential_Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__EAPMethodTypes: - soap_serialize_PointerTotds__EAPMethodTypes(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__MiscCapabilities: - soap_serialize_PointerTotds__MiscCapabilities(soap, (tds__MiscCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__SystemCapabilities: - soap_serialize_PointerTotds__SystemCapabilities(soap, (tds__SystemCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__SecurityCapabilities: - soap_serialize_PointerTotds__SecurityCapabilities(soap, (tds__SecurityCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotds__NetworkCapabilities: - soap_serialize_PointerTotds__NetworkCapabilities(soap, (tds__NetworkCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tds__Service_Capabilities: - soap_serialize_PointerTo_tds__Service_Capabilities(soap, (_tds__Service_Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__SerialData: - soap_serialize_PointerTotmd__SerialData(soap, (tmd__SerialData *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__SerialPortConfigurationOptions: - soap_serialize_PointerTotmd__SerialPortConfigurationOptions(soap, (tmd__SerialPortConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__SerialPortConfiguration: - soap_serialize_PointerTotmd__SerialPortConfiguration(soap, (tmd__SerialPortConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__SerialPort: - soap_serialize_PointerTotmd__SerialPort(soap, (tmd__SerialPort *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__DigitalInputConfigurationInputOptions: - soap_serialize_PointerTotmd__DigitalInputConfigurationInputOptions(soap, (tmd__DigitalInputConfigurationInputOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DigitalInput: - soap_serialize_PointerTott__DigitalInput(soap, (tt__DigitalInput *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RelayOutput: - soap_serialize_PointerTott__RelayOutput(soap, (tt__RelayOutput *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioOutputConfigurationOptions: - soap_serialize_PointerTott__AudioOutputConfigurationOptions(soap, (tt__AudioOutputConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioSourceConfigurationOptions: - soap_serialize_PointerTott__AudioSourceConfigurationOptions(soap, (tt__AudioSourceConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoOutputConfigurationOptions: - soap_serialize_PointerTott__VideoOutputConfigurationOptions(soap, (tt__VideoOutputConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptions: - soap_serialize_PointerTott__VideoSourceConfigurationOptions(soap, (tt__VideoSourceConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoOutputConfiguration: - soap_serialize_PointerTott__VideoOutputConfiguration(soap, (tt__VideoOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoOutput: - soap_serialize_PointerTott__VideoOutput(soap, (tt__VideoOutput *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__RelayOutputOptions: - soap_serialize_PointerTotmd__RelayOutputOptions(soap, (tmd__RelayOutputOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__Capabilities: - soap_serialize_PointerTotmd__Capabilities(soap, (tmd__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__base64Binary: - soap_serialize_PointerToxsd__base64Binary(soap, (xsd__base64Binary *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__RelayOutputOptionsExtension: - soap_serialize_PointerTotmd__RelayOutputOptionsExtension(soap, (tmd__RelayOutputOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTotmd__DelayTimes: - soap_serialize_PointerTotmd__DelayTimes(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PropertyOperation: - soap_serialize_PointerTott__PropertyOperation(soap, (enum tt__PropertyOperation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MessageExtension: - soap_serialize_PointerTott__MessageExtension(soap, (tt__MessageExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__StorageReferencePathExtension: - soap_serialize_PointerTott__StorageReferencePathExtension(soap, (tt__StorageReferencePathExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ArrayOfFileProgressExtension: - soap_serialize_PointerTott__ArrayOfFileProgressExtension(soap, (tt__ArrayOfFileProgressExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FileProgress: - soap_serialize_PointerTott__FileProgress(soap, (tt__FileProgress *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDConfigurationOptionsExtension: - soap_serialize_PointerTott__OSDConfigurationOptionsExtension(soap, (tt__OSDConfigurationOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDImgOptions: - soap_serialize_PointerTott__OSDImgOptions(soap, (tt__OSDImgOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDTextOptions: - soap_serialize_PointerTott__OSDTextOptions(soap, (tt__OSDTextOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MaximumNumberOfOSDs: - soap_serialize_PointerTott__MaximumNumberOfOSDs(soap, (tt__MaximumNumberOfOSDs *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDImgOptionsExtension: - soap_serialize_PointerTott__OSDImgOptionsExtension(soap, (tt__OSDImgOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDTextOptionsExtension: - soap_serialize_PointerTott__OSDTextOptionsExtension(soap, (tt__OSDTextOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDColorOptions: - soap_serialize_PointerTott__OSDColorOptions(soap, (tt__OSDColorOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDColorOptionsExtension: - soap_serialize_PointerTott__OSDColorOptionsExtension(soap, (tt__OSDColorOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ColorOptions: - soap_serialize_PointerTott__ColorOptions(soap, (tt__ColorOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ColorspaceRange: - soap_serialize_PointerTott__ColorspaceRange(soap, (tt__ColorspaceRange *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDImgConfigurationExtension: - soap_serialize_PointerTott__OSDImgConfigurationExtension(soap, (tt__OSDImgConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDTextConfigurationExtension: - soap_serialize_PointerTott__OSDTextConfigurationExtension(soap, (tt__OSDTextConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDColor: - soap_serialize_PointerTott__OSDColor(soap, (tt__OSDColor *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OSDPosConfigurationExtension: - soap_serialize_PointerTott__OSDPosConfigurationExtension(soap, (tt__OSDPosConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ProfileStatusExtension: - soap_serialize_PointerTott__ProfileStatusExtension(soap, (tt__ProfileStatusExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ActiveConnection: - soap_serialize_PointerTott__ActiveConnection(soap, (tt__ActiveConnection *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioClassDescriptorExtension: - soap_serialize_PointerTott__AudioClassDescriptorExtension(soap, (tt__AudioClassDescriptorExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioClassCandidate: - soap_serialize_PointerTott__AudioClassCandidate(soap, (tt__AudioClassCandidate *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ActionEngineEventPayloadExtension: - soap_serialize_PointerTott__ActionEngineEventPayloadExtension(soap, (tt__ActionEngineEventPayloadExtension *const*)ptr); - break; - case SOAP_TYPE_PointerToSOAP_ENV__Envelope: - soap_serialize_PointerToSOAP_ENV__Envelope(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsState: - soap_serialize_PointerTott__AnalyticsState(soap, (tt__AnalyticsState *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataInputExtension: - soap_serialize_PointerTott__MetadataInputExtension(soap, (tt__MetadataInputExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SourceIdentificationExtension: - soap_serialize_PointerTott__SourceIdentificationExtension(soap, (tt__SourceIdentificationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsEngineInputInfoExtension: - soap_serialize_PointerTott__AnalyticsEngineInputInfoExtension(soap, (tt__AnalyticsEngineInputInfoExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsEngineInputInfo: - soap_serialize_PointerTott__AnalyticsEngineInputInfo(soap, (tt__AnalyticsEngineInputInfo *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfigurationExtension: - soap_serialize_PointerTott__AnalyticsDeviceEngineConfigurationExtension(soap, (tt__AnalyticsDeviceEngineConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EngineConfiguration: - soap_serialize_PointerTott__EngineConfiguration(soap, (tt__EngineConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobConfiguration: - soap_serialize_PointerTott__RecordingJobConfiguration(soap, (tt__RecordingJobConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobStateTrack: - soap_serialize_PointerTott__RecordingJobStateTrack(soap, (tt__RecordingJobStateTrack *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobStateTracks: - soap_serialize_PointerTott__RecordingJobStateTracks(soap, (tt__RecordingJobStateTracks *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobStateInformationExtension: - soap_serialize_PointerTott__RecordingJobStateInformationExtension(soap, (tt__RecordingJobStateInformationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobStateSource: - soap_serialize_PointerTott__RecordingJobStateSource(soap, (tt__RecordingJobStateSource *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobSourceExtension: - soap_serialize_PointerTott__RecordingJobSourceExtension(soap, (tt__RecordingJobSourceExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobTrack: - soap_serialize_PointerTott__RecordingJobTrack(soap, (tt__RecordingJobTrack *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobConfigurationExtension: - soap_serialize_PointerTott__RecordingJobConfigurationExtension(soap, (tt__RecordingJobConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingJobSource: - soap_serialize_PointerTott__RecordingJobSource(soap, (tt__RecordingJobSource *const*)ptr); - break; - case SOAP_TYPE_PointerTott__TrackConfiguration: - soap_serialize_PointerTott__TrackConfiguration(soap, (tt__TrackConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__GetTracksResponseItem: - soap_serialize_PointerTott__GetTracksResponseItem(soap, (tt__GetTracksResponseItem *const*)ptr); - break; - case SOAP_TYPE_PointerTott__GetTracksResponseList: - soap_serialize_PointerTott__GetTracksResponseList(soap, (tt__GetTracksResponseList *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingConfiguration: - soap_serialize_PointerTott__RecordingConfiguration(soap, (tt__RecordingConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__TrackAttributesExtension: - soap_serialize_PointerTott__TrackAttributesExtension(soap, (tt__TrackAttributesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataAttributes: - soap_serialize_PointerTott__MetadataAttributes(soap, (tt__MetadataAttributes *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioAttributes: - soap_serialize_PointerTott__AudioAttributes(soap, (tt__AudioAttributes *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoAttributes: - soap_serialize_PointerTott__VideoAttributes(soap, (tt__VideoAttributes *const*)ptr); - break; - case SOAP_TYPE_PointerTott__TrackAttributes: - soap_serialize_PointerTott__TrackAttributes(soap, (tt__TrackAttributes *const*)ptr); - break; - case SOAP_TYPE_PointerTott__TrackInformation: - soap_serialize_PointerTott__TrackInformation(soap, (tt__TrackInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingSourceInformation: - soap_serialize_PointerTott__RecordingSourceInformation(soap, (tt__RecordingSourceInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FindMetadataResult: - soap_serialize_PointerTott__FindMetadataResult(soap, (tt__FindMetadataResult *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FindPTZPositionResult: - soap_serialize_PointerTott__FindPTZPositionResult(soap, (tt__FindPTZPositionResult *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FindEventResult: - soap_serialize_PointerTott__FindEventResult(soap, (tt__FindEventResult *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingInformation: - soap_serialize_PointerTott__RecordingInformation(soap, (tt__RecordingInformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SearchScopeExtension: - soap_serialize_PointerTott__SearchScopeExtension(soap, (tt__SearchScopeExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__XPathExpression: - soap_serialize_PointerTott__XPathExpression(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SourceReference: - soap_serialize_PointerTott__SourceReference(soap, (tt__SourceReference *const*)ptr); - break; - case SOAP_TYPE_PointerTott__StreamSetup: - soap_serialize_PointerTott__StreamSetup(soap, (tt__StreamSetup *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReceiverConfiguration: - soap_serialize_PointerTott__ReceiverConfiguration(soap, (tt__ReceiverConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PaneOptionExtension: - soap_serialize_PointerTott__PaneOptionExtension(soap, (tt__PaneOptionExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LayoutOptionsExtension: - soap_serialize_PointerTott__LayoutOptionsExtension(soap, (tt__LayoutOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PaneLayoutOptions: - soap_serialize_PointerTott__PaneLayoutOptions(soap, (tt__PaneLayoutOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptions: - soap_serialize_PointerTott__VideoDecoderConfigurationOptions(soap, (tt__VideoDecoderConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptions: - soap_serialize_PointerTott__AudioDecoderConfigurationOptions(soap, (tt__AudioDecoderConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioEncoderConfigurationOptions: - soap_serialize_PointerTott__AudioEncoderConfigurationOptions(soap, (tt__AudioEncoderConfigurationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LayoutExtension: - soap_serialize_PointerTott__LayoutExtension(soap, (tt__LayoutExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PaneLayout: - soap_serialize_PointerTott__PaneLayout(soap, (tt__PaneLayout *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Transformation: - soap_serialize_PointerTott__Transformation(soap, (tt__Transformation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MotionExpression: - soap_serialize_PointerTott__MotionExpression(soap, (tt__MotionExpression *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PolylineArray: - soap_serialize_PointerTott__PolylineArray(soap, (tt__PolylineArray *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PolylineArrayExtension: - soap_serialize_PointerTott__PolylineArrayExtension(soap, (tt__PolylineArrayExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Polyline: - soap_serialize_PointerTott__Polyline(soap, (tt__Polyline *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SupportedAnalyticsModulesExtension: - soap_serialize_PointerTott__SupportedAnalyticsModulesExtension(soap, (tt__SupportedAnalyticsModulesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SupportedRulesExtension: - soap_serialize_PointerTott__SupportedRulesExtension(soap, (tt__SupportedRulesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ConfigDescription: - soap_serialize_PointerTott__ConfigDescription(soap, (tt__ConfigDescription *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__integer: - soap_serialize_PointerToxsd__integer(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ConfigDescriptionExtension: - soap_serialize_PointerTott__ConfigDescriptionExtension(soap, (tt__ConfigDescriptionExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ItemList: - soap_serialize_PointerTott__ItemList(soap, (tt__ItemList *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RuleEngineConfigurationExtension: - soap_serialize_PointerTott__RuleEngineConfigurationExtension(soap, (tt__RuleEngineConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsEngineConfigurationExtension: - soap_serialize_PointerTott__AnalyticsEngineConfigurationExtension(soap, (tt__AnalyticsEngineConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Config: - soap_serialize_PointerTott__Config(soap, (tt__Config *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ItemListDescriptionExtension: - soap_serialize_PointerTott__ItemListDescriptionExtension(soap, (tt__ItemListDescriptionExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MessageDescriptionExtension: - soap_serialize_PointerTott__MessageDescriptionExtension(soap, (tt__MessageDescriptionExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ItemListDescription: - soap_serialize_PointerTott__ItemListDescription(soap, (tt__ItemListDescription *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ItemListExtension: - soap_serialize_PointerTott__ItemListExtension(soap, (tt__ItemListExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusOptions20Extension: - soap_serialize_PointerTott__FocusOptions20Extension(soap, (tt__FocusOptions20Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WhiteBalanceOptions20Extension: - soap_serialize_PointerTott__WhiteBalanceOptions20Extension(soap, (tt__WhiteBalanceOptions20Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusConfiguration20Extension: - soap_serialize_PointerTott__FocusConfiguration20Extension(soap, (tt__FocusConfiguration20Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WhiteBalance20Extension: - soap_serialize_PointerTott__WhiteBalance20Extension(soap, (tt__WhiteBalance20Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RelativeFocusOptions20: - soap_serialize_PointerTott__RelativeFocusOptions20(soap, (tt__RelativeFocusOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension: - soap_serialize_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(soap, (tt__IrCutFilterAutoAdjustmentOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImageStabilizationOptionsExtension: - soap_serialize_PointerTott__ImageStabilizationOptionsExtension(soap, (tt__ImageStabilizationOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingOptions20Extension4: - soap_serialize_PointerTott__ImagingOptions20Extension4(soap, (tt__ImagingOptions20Extension4 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NoiseReductionOptions: - soap_serialize_PointerTott__NoiseReductionOptions(soap, (tt__NoiseReductionOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DefoggingOptions: - soap_serialize_PointerTott__DefoggingOptions(soap, (tt__DefoggingOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ToneCompensationOptions: - soap_serialize_PointerTott__ToneCompensationOptions(soap, (tt__ToneCompensationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingOptions20Extension3: - soap_serialize_PointerTott__ImagingOptions20Extension3(soap, (tt__ImagingOptions20Extension3 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptions: - soap_serialize_PointerTott__IrCutFilterAutoAdjustmentOptions(soap, (tt__IrCutFilterAutoAdjustmentOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingOptions20Extension2: - soap_serialize_PointerTott__ImagingOptions20Extension2(soap, (tt__ImagingOptions20Extension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImageStabilizationOptions: - soap_serialize_PointerTott__ImageStabilizationOptions(soap, (tt__ImageStabilizationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingOptions20Extension: - soap_serialize_PointerTott__ImagingOptions20Extension(soap, (tt__ImagingOptions20Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WhiteBalanceOptions20: - soap_serialize_PointerTott__WhiteBalanceOptions20(soap, (tt__WhiteBalanceOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WideDynamicRangeOptions20: - soap_serialize_PointerTott__WideDynamicRangeOptions20(soap, (tt__WideDynamicRangeOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusOptions20: - soap_serialize_PointerTott__FocusOptions20(soap, (tt__FocusOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ExposureOptions20: - soap_serialize_PointerTott__ExposureOptions20(soap, (tt__ExposureOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__BacklightCompensationOptions20: - soap_serialize_PointerTott__BacklightCompensationOptions20(soap, (tt__BacklightCompensationOptions20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DefoggingExtension: - soap_serialize_PointerTott__DefoggingExtension(soap, (tt__DefoggingExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ToneCompensationExtension: - soap_serialize_PointerTott__ToneCompensationExtension(soap, (tt__ToneCompensationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ExposurePriority: - soap_serialize_PointerTott__ExposurePriority(soap, (enum tt__ExposurePriority *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentExtension: - soap_serialize_PointerTott__IrCutFilterAutoAdjustmentExtension(soap, (tt__IrCutFilterAutoAdjustmentExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImageStabilizationExtension: - soap_serialize_PointerTott__ImageStabilizationExtension(soap, (tt__ImageStabilizationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingSettingsExtension204: - soap_serialize_PointerTott__ImagingSettingsExtension204(soap, (tt__ImagingSettingsExtension204 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NoiseReduction: - soap_serialize_PointerTott__NoiseReduction(soap, (tt__NoiseReduction *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Defogging: - soap_serialize_PointerTott__Defogging(soap, (tt__Defogging *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ToneCompensation: - soap_serialize_PointerTott__ToneCompensation(soap, (tt__ToneCompensation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingSettingsExtension203: - soap_serialize_PointerTott__ImagingSettingsExtension203(soap, (tt__ImagingSettingsExtension203 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustment: - soap_serialize_PointerTott__IrCutFilterAutoAdjustment(soap, (tt__IrCutFilterAutoAdjustment *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingSettingsExtension202: - soap_serialize_PointerTott__ImagingSettingsExtension202(soap, (tt__ImagingSettingsExtension202 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImageStabilization: - soap_serialize_PointerTott__ImageStabilization(soap, (tt__ImageStabilization *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingSettingsExtension20: - soap_serialize_PointerTott__ImagingSettingsExtension20(soap, (tt__ImagingSettingsExtension20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WhiteBalance20: - soap_serialize_PointerTott__WhiteBalance20(soap, (tt__WhiteBalance20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WideDynamicRange20: - soap_serialize_PointerTott__WideDynamicRange20(soap, (tt__WideDynamicRange20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusConfiguration20: - soap_serialize_PointerTott__FocusConfiguration20(soap, (tt__FocusConfiguration20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Exposure20: - soap_serialize_PointerTott__Exposure20(soap, (tt__Exposure20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__BacklightCompensation20: - soap_serialize_PointerTott__BacklightCompensation20(soap, (tt__BacklightCompensation20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusStatus20Extension: - soap_serialize_PointerTott__FocusStatus20Extension(soap, (tt__FocusStatus20Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingStatus20Extension: - soap_serialize_PointerTott__ImagingStatus20Extension(soap, (tt__ImagingStatus20Extension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusStatus20: - soap_serialize_PointerTott__FocusStatus20(soap, (tt__FocusStatus20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ContinuousFocusOptions: - soap_serialize_PointerTott__ContinuousFocusOptions(soap, (tt__ContinuousFocusOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RelativeFocusOptions: - soap_serialize_PointerTott__RelativeFocusOptions(soap, (tt__RelativeFocusOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AbsoluteFocusOptions: - soap_serialize_PointerTott__AbsoluteFocusOptions(soap, (tt__AbsoluteFocusOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ContinuousFocus: - soap_serialize_PointerTott__ContinuousFocus(soap, (tt__ContinuousFocus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RelativeFocus: - soap_serialize_PointerTott__RelativeFocus(soap, (tt__RelativeFocus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AbsoluteFocus: - soap_serialize_PointerTott__AbsoluteFocus(soap, (tt__AbsoluteFocus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WhiteBalanceOptions: - soap_serialize_PointerTott__WhiteBalanceOptions(soap, (tt__WhiteBalanceOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WideDynamicRangeOptions: - soap_serialize_PointerTott__WideDynamicRangeOptions(soap, (tt__WideDynamicRangeOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusOptions: - soap_serialize_PointerTott__FocusOptions(soap, (tt__FocusOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ExposureOptions: - soap_serialize_PointerTott__ExposureOptions(soap, (tt__ExposureOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__BacklightCompensationOptions: - soap_serialize_PointerTott__BacklightCompensationOptions(soap, (tt__BacklightCompensationOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Rectangle: - soap_serialize_PointerTott__Rectangle(soap, (tt__Rectangle *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingSettingsExtension: - soap_serialize_PointerTott__ImagingSettingsExtension(soap, (tt__ImagingSettingsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WhiteBalance: - soap_serialize_PointerTott__WhiteBalance(soap, (tt__WhiteBalance *const*)ptr); - break; - case SOAP_TYPE_PointerTott__WideDynamicRange: - soap_serialize_PointerTott__WideDynamicRange(soap, (tt__WideDynamicRange *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IrCutFilterMode: - soap_serialize_PointerTott__IrCutFilterMode(soap, (enum tt__IrCutFilterMode *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusConfiguration: - soap_serialize_PointerTott__FocusConfiguration(soap, (tt__FocusConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Exposure: - soap_serialize_PointerTott__Exposure(soap, (tt__Exposure *const*)ptr); - break; - case SOAP_TYPE_PointerTott__BacklightCompensation: - soap_serialize_PointerTott__BacklightCompensation(soap, (tt__BacklightCompensation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FocusStatus: - soap_serialize_PointerTott__FocusStatus(soap, (tt__FocusStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptionsExtension: - soap_serialize_PointerTott__PTZPresetTourStartingConditionOptionsExtension(soap, (tt__PTZPresetTourStartingConditionOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptionsExtension: - soap_serialize_PointerTott__PTZPresetTourPresetDetailOptionsExtension(soap, (tt__PTZPresetTourPresetDetailOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptions: - soap_serialize_PointerTott__PTZPresetTourPresetDetailOptions(soap, (tt__PTZPresetTourPresetDetailOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourSpotOptions: - soap_serialize_PointerTott__PTZPresetTourSpotOptions(soap, (tt__PTZPresetTourSpotOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptions: - soap_serialize_PointerTott__PTZPresetTourStartingConditionOptions(soap, (tt__PTZPresetTourStartingConditionOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionExtension: - soap_serialize_PointerTott__PTZPresetTourStartingConditionExtension(soap, (tt__PTZPresetTourStartingConditionExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourDirection: - soap_serialize_PointerTott__PTZPresetTourDirection(soap, (enum tt__PTZPresetTourDirection *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourStatusExtension: - soap_serialize_PointerTott__PTZPresetTourStatusExtension(soap, (tt__PTZPresetTourStatusExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourTypeExtension: - soap_serialize_PointerTott__PTZPresetTourTypeExtension(soap, (tt__PTZPresetTourTypeExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourSpotExtension: - soap_serialize_PointerTott__PTZPresetTourSpotExtension(soap, (tt__PTZPresetTourSpotExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZSpeed: - soap_serialize_PointerTott__PTZSpeed(soap, (tt__PTZSpeed *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourPresetDetail: - soap_serialize_PointerTott__PTZPresetTourPresetDetail(soap, (tt__PTZPresetTourPresetDetail *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourExtension: - soap_serialize_PointerTott__PTZPresetTourExtension(soap, (tt__PTZPresetTourExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourSpot: - soap_serialize_PointerTott__PTZPresetTourSpot(soap, (tt__PTZPresetTourSpot *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourStartingCondition: - soap_serialize_PointerTott__PTZPresetTourStartingCondition(soap, (tt__PTZPresetTourStartingCondition *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourStatus: - soap_serialize_PointerTott__PTZPresetTourStatus(soap, (tt__PTZPresetTourStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Name: - soap_serialize_PointerTott__Name(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZSpacesExtension: - soap_serialize_PointerTott__PTZSpacesExtension(soap, (tt__PTZSpacesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Space1DDescription: - soap_serialize_PointerTott__Space1DDescription(soap, (tt__Space1DDescription *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Space2DDescription: - soap_serialize_PointerTott__Space2DDescription(soap, (tt__Space2DDescription *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReverseOptionsExtension: - soap_serialize_PointerTott__ReverseOptionsExtension(soap, (tt__ReverseOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EFlipOptionsExtension: - soap_serialize_PointerTott__EFlipOptionsExtension(soap, (tt__EFlipOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTControlDirectionOptionsExtension: - soap_serialize_PointerTott__PTControlDirectionOptionsExtension(soap, (tt__PTControlDirectionOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReverseOptions: - soap_serialize_PointerTott__ReverseOptions(soap, (tt__ReverseOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EFlipOptions: - soap_serialize_PointerTott__EFlipOptions(soap, (tt__EFlipOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZConfigurationOptions2: - soap_serialize_PointerTott__PTZConfigurationOptions2(soap, (tt__PTZConfigurationOptions2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTControlDirectionOptions: - soap_serialize_PointerTott__PTControlDirectionOptions(soap, (tt__PTControlDirectionOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DurationRange: - soap_serialize_PointerTott__DurationRange(soap, (tt__DurationRange *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZSpaces: - soap_serialize_PointerTott__PTZSpaces(soap, (tt__PTZSpaces *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTControlDirectionExtension: - soap_serialize_PointerTott__PTControlDirectionExtension(soap, (tt__PTControlDirectionExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Reverse: - soap_serialize_PointerTott__Reverse(soap, (tt__Reverse *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EFlip: - soap_serialize_PointerTott__EFlip(soap, (tt__EFlip *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZConfigurationExtension2: - soap_serialize_PointerTott__PTZConfigurationExtension2(soap, (tt__PTZConfigurationExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTControlDirection: - soap_serialize_PointerTott__PTControlDirection(soap, (tt__PTControlDirection *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourSupportedExtension: - soap_serialize_PointerTott__PTZPresetTourSupportedExtension(soap, (tt__PTZPresetTourSupportedExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZNodeExtension2: - soap_serialize_PointerTott__PTZNodeExtension2(soap, (tt__PTZNodeExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZPresetTourSupported: - soap_serialize_PointerTott__PTZPresetTourSupported(soap, (tt__PTZPresetTourSupported *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EapMethodExtension: - soap_serialize_PointerTott__EapMethodExtension(soap, (tt__EapMethodExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__TLSConfiguration: - soap_serialize_PointerTott__TLSConfiguration(soap, (tt__TLSConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot1XConfigurationExtension: - soap_serialize_PointerTott__Dot1XConfigurationExtension(soap, (tt__Dot1XConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EAPMethodConfiguration: - soap_serialize_PointerTott__EAPMethodConfiguration(soap, (tt__EAPMethodConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CertificateInformationExtension: - soap_serialize_PointerTott__CertificateInformationExtension(soap, (tt__CertificateInformationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DateTimeRange: - soap_serialize_PointerTott__DateTimeRange(soap, (tt__DateTimeRange *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CertificateUsage: - soap_serialize_PointerTott__CertificateUsage(soap, (tt__CertificateUsage *const*)ptr); - break; - case SOAP_TYPE_PointerTott__BinaryData: - soap_serialize_PointerTott__BinaryData(soap, (tt__BinaryData *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CertificateGenerationParametersExtension: - soap_serialize_PointerTott__CertificateGenerationParametersExtension(soap, (tt__CertificateGenerationParametersExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__UserExtension: - soap_serialize_PointerTott__UserExtension(soap, (tt__UserExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Date: - soap_serialize_PointerTott__Date(soap, (tt__Date *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Time: - soap_serialize_PointerTott__Time(soap, (tt__Time *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemDateTimeExtension: - soap_serialize_PointerTott__SystemDateTimeExtension(soap, (tt__SystemDateTimeExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DateTime: - soap_serialize_PointerTott__DateTime(soap, (tt__DateTime *const*)ptr); - break; - case SOAP_TYPE_PointerTott__TimeZone: - soap_serialize_PointerTott__TimeZone(soap, (tt__TimeZone *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemLogUri: - soap_serialize_PointerTott__SystemLogUri(soap, (tt__SystemLogUri *const*)ptr); - break; - case SOAP_TYPE_PointerToxop__Include: - soap_serialize_PointerToxop__Include(soap, (xop__Include *const*)ptr); - break; - case SOAP_TYPE_PointerTo_xmime__contentType: - soap_serialize_PointerTo_xmime__contentType(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AttachmentData: - soap_serialize_PointerTott__AttachmentData(soap, (tt__AttachmentData *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsDeviceExtension: - soap_serialize_PointerTott__AnalyticsDeviceExtension(soap, (tt__AnalyticsDeviceExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemCapabilitiesExtension2: - soap_serialize_PointerTott__SystemCapabilitiesExtension2(soap, (tt__SystemCapabilitiesExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemCapabilitiesExtension: - soap_serialize_PointerTott__SystemCapabilitiesExtension(soap, (tt__SystemCapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__OnvifVersion: - soap_serialize_PointerTott__OnvifVersion(soap, (tt__OnvifVersion *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension2: - soap_serialize_PointerTott__SecurityCapabilitiesExtension2(soap, (tt__SecurityCapabilitiesExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension: - soap_serialize_PointerTott__SecurityCapabilitiesExtension(soap, (tt__SecurityCapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension2: - soap_serialize_PointerTott__NetworkCapabilitiesExtension2(soap, (tt__NetworkCapabilitiesExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension: - soap_serialize_PointerTott__NetworkCapabilitiesExtension(soap, (tt__NetworkCapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RealTimeStreamingCapabilitiesExtension: - soap_serialize_PointerTott__RealTimeStreamingCapabilitiesExtension(soap, (tt__RealTimeStreamingCapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ProfileCapabilities: - soap_serialize_PointerTott__ProfileCapabilities(soap, (tt__ProfileCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MediaCapabilitiesExtension: - soap_serialize_PointerTott__MediaCapabilitiesExtension(soap, (tt__MediaCapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RealTimeStreamingCapabilities: - soap_serialize_PointerTott__RealTimeStreamingCapabilities(soap, (tt__RealTimeStreamingCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IOCapabilitiesExtension2: - soap_serialize_PointerTott__IOCapabilitiesExtension2(soap, (tt__IOCapabilitiesExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IOCapabilitiesExtension: - soap_serialize_PointerTott__IOCapabilitiesExtension(soap, (tt__IOCapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DeviceCapabilitiesExtension: - soap_serialize_PointerTott__DeviceCapabilitiesExtension(soap, (tt__DeviceCapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SecurityCapabilities: - soap_serialize_PointerTott__SecurityCapabilities(soap, (tt__SecurityCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IOCapabilities: - soap_serialize_PointerTott__IOCapabilities(soap, (tt__IOCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SystemCapabilities: - soap_serialize_PointerTott__SystemCapabilities(soap, (tt__SystemCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkCapabilities: - soap_serialize_PointerTott__NetworkCapabilities(soap, (tt__NetworkCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CapabilitiesExtension2: - soap_serialize_PointerTott__CapabilitiesExtension2(soap, (tt__CapabilitiesExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsDeviceCapabilities: - soap_serialize_PointerTott__AnalyticsDeviceCapabilities(soap, (tt__AnalyticsDeviceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReceiverCapabilities: - soap_serialize_PointerTott__ReceiverCapabilities(soap, (tt__ReceiverCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReplayCapabilities: - soap_serialize_PointerTott__ReplayCapabilities(soap, (tt__ReplayCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SearchCapabilities: - soap_serialize_PointerTott__SearchCapabilities(soap, (tt__SearchCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RecordingCapabilities: - soap_serialize_PointerTott__RecordingCapabilities(soap, (tt__RecordingCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DisplayCapabilities: - soap_serialize_PointerTott__DisplayCapabilities(soap, (tt__DisplayCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DeviceIOCapabilities: - soap_serialize_PointerTott__DeviceIOCapabilities(soap, (tt__DeviceIOCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__CapabilitiesExtension: - soap_serialize_PointerTott__CapabilitiesExtension(soap, (tt__CapabilitiesExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZCapabilities: - soap_serialize_PointerTott__PTZCapabilities(soap, (tt__PTZCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MediaCapabilities: - soap_serialize_PointerTott__MediaCapabilities(soap, (tt__MediaCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingCapabilities: - soap_serialize_PointerTott__ImagingCapabilities(soap, (tt__ImagingCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__EventCapabilities: - soap_serialize_PointerTott__EventCapabilities(soap, (tt__EventCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DeviceCapabilities: - soap_serialize_PointerTott__DeviceCapabilities(soap, (tt__DeviceCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AnalyticsCapabilities: - soap_serialize_PointerTott__AnalyticsCapabilities(soap, (tt__AnalyticsCapabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11AvailableNetworksExtension: - soap_serialize_PointerTott__Dot11AvailableNetworksExtension(soap, (tt__Dot11AvailableNetworksExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11SignalStrength: - soap_serialize_PointerTott__Dot11SignalStrength(soap, (enum tt__Dot11SignalStrength *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11PSKSetExtension: - soap_serialize_PointerTott__Dot11PSKSetExtension(soap, (tt__Dot11PSKSetExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11PSKPassphrase: - soap_serialize_PointerTott__Dot11PSKPassphrase(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11PSK: - soap_serialize_PointerTott__Dot11PSK(soap, (xsd__hexBinary *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11SecurityConfigurationExtension: - soap_serialize_PointerTott__Dot11SecurityConfigurationExtension(soap, (tt__Dot11SecurityConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11PSKSet: - soap_serialize_PointerTott__Dot11PSKSet(soap, (tt__Dot11PSKSet *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11Cipher: - soap_serialize_PointerTott__Dot11Cipher(soap, (enum tt__Dot11Cipher *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11SecurityConfiguration: - soap_serialize_PointerTott__Dot11SecurityConfiguration(soap, (tt__Dot11SecurityConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPAddressFilterExtension: - soap_serialize_PointerTott__IPAddressFilterExtension(soap, (tt__IPAddressFilterExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension2: - soap_serialize_PointerTott__NetworkZeroConfigurationExtension2(soap, (tt__NetworkZeroConfigurationExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkZeroConfiguration: - soap_serialize_PointerTott__NetworkZeroConfiguration(soap, (tt__NetworkZeroConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension: - soap_serialize_PointerTott__NetworkZeroConfigurationExtension(soap, (tt__NetworkZeroConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv6DHCPConfiguration: - soap_serialize_PointerTott__IPv6DHCPConfiguration(soap, (enum tt__IPv6DHCPConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension2: - soap_serialize_PointerTott__NetworkInterfaceSetConfigurationExtension2(soap, (tt__NetworkInterfaceSetConfigurationExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension: - soap_serialize_PointerTott__NetworkInterfaceSetConfigurationExtension(soap, (tt__NetworkInterfaceSetConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv6NetworkInterfaceSetConfiguration: - soap_serialize_PointerTott__IPv6NetworkInterfaceSetConfiguration(soap, (tt__IPv6NetworkInterfaceSetConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv4NetworkInterfaceSetConfiguration: - soap_serialize_PointerTott__IPv4NetworkInterfaceSetConfiguration(soap, (tt__IPv4NetworkInterfaceSetConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DynamicDNSInformationExtension: - soap_serialize_PointerTott__DynamicDNSInformationExtension(soap, (tt__DynamicDNSInformationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__duration: - soap_serialize_PointerToxsd__duration(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NTPInformationExtension: - soap_serialize_PointerTott__NTPInformationExtension(soap, (tt__NTPInformationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkHost: - soap_serialize_PointerTott__NetworkHost(soap, (tt__NetworkHost *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DNSInformationExtension: - soap_serialize_PointerTott__DNSInformationExtension(soap, (tt__DNSInformationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__HostnameInformationExtension: - soap_serialize_PointerTott__HostnameInformationExtension(soap, (tt__HostnameInformationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__token: - soap_serialize_PointerToxsd__token(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkHostExtension: - soap_serialize_PointerTott__NetworkHostExtension(soap, (tt__NetworkHostExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__DNSName: - soap_serialize_PointerTott__DNSName(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv6Address: - soap_serialize_PointerTott__IPv6Address(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv4Address: - soap_serialize_PointerTott__IPv4Address(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkProtocolExtension: - soap_serialize_PointerTott__NetworkProtocolExtension(soap, (tt__NetworkProtocolExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv6ConfigurationExtension: - soap_serialize_PointerTott__IPv6ConfigurationExtension(soap, (tt__IPv6ConfigurationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PrefixedIPv6Address: - soap_serialize_PointerTott__PrefixedIPv6Address(soap, (tt__PrefixedIPv6Address *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PrefixedIPv4Address: - soap_serialize_PointerTott__PrefixedIPv4Address(soap, (tt__PrefixedIPv4Address *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv4Configuration: - soap_serialize_PointerTott__IPv4Configuration(soap, (tt__IPv4Configuration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPv6Configuration: - soap_serialize_PointerTott__IPv6Configuration(soap, (tt__IPv6Configuration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceConnectionSetting: - soap_serialize_PointerTott__NetworkInterfaceConnectionSetting(soap, (tt__NetworkInterfaceConnectionSetting *const*)ptr); - break; - case SOAP_TYPE_PointerTott__NetworkInterfaceExtension2: - soap_serialize_PointerTott__NetworkInterfaceExtension2(soap, (tt__NetworkInterfaceExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot11Configuration: - soap_serialize_PointerTott__Dot11Configuration(soap, (tt__Dot11Configuration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Dot3Configuration: - soap_serialize_PointerTott__Dot3Configuration(soap, (tt__Dot3Configuration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Transport: - soap_serialize_PointerTott__Transport(soap, (tt__Transport *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IPAddress: - soap_serialize_PointerTott__IPAddress(soap, (tt__IPAddress *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptionsExtension: - soap_serialize_PointerTott__AudioDecoderConfigurationOptionsExtension(soap, (tt__AudioDecoderConfigurationOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__G726DecOptions: - soap_serialize_PointerTott__G726DecOptions(soap, (tt__G726DecOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__G711DecOptions: - soap_serialize_PointerTott__G711DecOptions(soap, (tt__G711DecOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AACDecOptions: - soap_serialize_PointerTott__AACDecOptions(soap, (tt__AACDecOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptionsExtension: - soap_serialize_PointerTott__VideoDecoderConfigurationOptionsExtension(soap, (tt__VideoDecoderConfigurationOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Mpeg4DecOptions: - soap_serialize_PointerTott__Mpeg4DecOptions(soap, (tt__Mpeg4DecOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__H264DecOptions: - soap_serialize_PointerTott__H264DecOptions(soap, (tt__H264DecOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__JpegDecOptions: - soap_serialize_PointerTott__JpegDecOptions(soap, (tt__JpegDecOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZStatusFilterOptionsExtension: - soap_serialize_PointerTott__PTZStatusFilterOptionsExtension(soap, (tt__PTZStatusFilterOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension2: - soap_serialize_PointerTott__MetadataConfigurationOptionsExtension2(soap, (tt__MetadataConfigurationOptionsExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension: - soap_serialize_PointerTott__MetadataConfigurationOptionsExtension(soap, (tt__MetadataConfigurationOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZStatusFilterOptions: - soap_serialize_PointerTott__PTZStatusFilterOptions(soap, (tt__PTZStatusFilterOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tt__EventSubscription_SubscriptionPolicy: - soap_serialize_PointerTo_tt__EventSubscription_SubscriptionPolicy(soap, (_tt__EventSubscription_SubscriptionPolicy *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioEncoderConfigurationOption: - soap_serialize_PointerTott__AudioEncoderConfigurationOption(soap, (tt__AudioEncoderConfigurationOption *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioSourceOptionsExtension: - soap_serialize_PointerTott__AudioSourceOptionsExtension(soap, (tt__AudioSourceOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__StringAttrList: - soap_serialize_PointerTott__StringAttrList(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FloatAttrList: - soap_serialize_PointerTott__FloatAttrList(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IntAttrList: - soap_serialize_PointerTott__IntAttrList(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoResolution2: - soap_serialize_PointerTott__VideoResolution2(soap, (tt__VideoResolution2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__FloatRange: - soap_serialize_PointerTott__FloatRange(soap, (tt__FloatRange *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoResolution: - soap_serialize_PointerTott__VideoResolution(soap, (tt__VideoResolution *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension2: - soap_serialize_PointerTott__VideoEncoderOptionsExtension2(soap, (tt__VideoEncoderOptionsExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__H264Options2: - soap_serialize_PointerTott__H264Options2(soap, (tt__H264Options2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Mpeg4Options2: - soap_serialize_PointerTott__Mpeg4Options2(soap, (tt__Mpeg4Options2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__JpegOptions2: - soap_serialize_PointerTott__JpegOptions2(soap, (tt__JpegOptions2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension: - soap_serialize_PointerTott__VideoEncoderOptionsExtension(soap, (tt__VideoEncoderOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__H264Options: - soap_serialize_PointerTott__H264Options(soap, (tt__H264Options *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Mpeg4Options: - soap_serialize_PointerTott__Mpeg4Options(soap, (tt__Mpeg4Options *const*)ptr); - break; - case SOAP_TYPE_PointerTott__JpegOptions: - soap_serialize_PointerTott__JpegOptions(soap, (tt__JpegOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RotateOptionsExtension: - soap_serialize_PointerTott__RotateOptionsExtension(soap, (tt__RotateOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IntItems: - soap_serialize_PointerTott__IntItems(soap, (tt__IntItems *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension2: - soap_serialize_PointerTott__VideoSourceConfigurationOptionsExtension2(soap, (tt__VideoSourceConfigurationOptionsExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RotateOptions: - soap_serialize_PointerTott__RotateOptions(soap, (tt__RotateOptions *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension: - soap_serialize_PointerTott__VideoSourceConfigurationOptionsExtension(soap, (tt__VideoSourceConfigurationOptionsExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IntRectangleRange: - soap_serialize_PointerTott__IntRectangleRange(soap, (tt__IntRectangleRange *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LensProjection: - soap_serialize_PointerTott__LensProjection(soap, (tt__LensProjection *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LensOffset: - soap_serialize_PointerTott__LensOffset(soap, (tt__LensOffset *const*)ptr); - break; - case SOAP_TYPE_PointerTott__RotateExtension: - soap_serialize_PointerTott__RotateExtension(soap, (tt__RotateExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__SceneOrientation: - soap_serialize_PointerTott__SceneOrientation(soap, (tt__SceneOrientation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LensDescription: - soap_serialize_PointerTott__LensDescription(soap, (tt__LensDescription *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension2: - soap_serialize_PointerTott__VideoSourceConfigurationExtension2(soap, (tt__VideoSourceConfigurationExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Rotate: - soap_serialize_PointerTott__Rotate(soap, (tt__Rotate *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ProfileExtension2: - soap_serialize_PointerTott__ProfileExtension2(soap, (tt__ProfileExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioDecoderConfiguration: - soap_serialize_PointerTott__AudioDecoderConfiguration(soap, (tt__AudioDecoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioOutputConfiguration: - soap_serialize_PointerTott__AudioOutputConfiguration(soap, (tt__AudioOutputConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ProfileExtension: - soap_serialize_PointerTott__ProfileExtension(soap, (tt__ProfileExtension *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MetadataConfiguration: - soap_serialize_PointerTott__MetadataConfiguration(soap, (tt__MetadataConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZConfiguration: - soap_serialize_PointerTott__PTZConfiguration(soap, (tt__PTZConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoAnalyticsConfiguration: - soap_serialize_PointerTott__VideoAnalyticsConfiguration(soap, (tt__VideoAnalyticsConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioEncoderConfiguration: - soap_serialize_PointerTott__AudioEncoderConfiguration(soap, (tt__AudioEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoEncoderConfiguration: - soap_serialize_PointerTott__VideoEncoderConfiguration(soap, (tt__VideoEncoderConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__AudioSourceConfiguration: - soap_serialize_PointerTott__AudioSourceConfiguration(soap, (tt__AudioSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceConfiguration: - soap_serialize_PointerTott__VideoSourceConfiguration(soap, (tt__VideoSourceConfiguration *const*)ptr); - break; - case SOAP_TYPE_PointerTott__VideoSourceExtension2: - soap_serialize_PointerTott__VideoSourceExtension2(soap, (tt__VideoSourceExtension2 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ImagingSettings20: - soap_serialize_PointerTott__ImagingSettings20(soap, (tt__ImagingSettings20 *const*)ptr); - break; - case SOAP_TYPE_PointerTott__IntRange: - soap_serialize_PointerTott__IntRange(soap, (tt__IntRange *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ReferenceToken: - soap_serialize_PointerTott__ReferenceToken(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LocalOrientation: - soap_serialize_PointerTott__LocalOrientation(soap, (tt__LocalOrientation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__LocalLocation: - soap_serialize_PointerTott__LocalLocation(soap, (tt__LocalLocation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__GeoOrientation: - soap_serialize_PointerTott__GeoOrientation(soap, (tt__GeoOrientation *const*)ptr); - break; - case SOAP_TYPE_PointerTott__GeoLocation: - soap_serialize_PointerTott__GeoLocation(soap, (tt__GeoLocation *const*)ptr); - break; - case SOAP_TYPE_PointerTodouble: - soap_serialize_PointerTodouble(soap, (double *const*)ptr); - break; - case SOAP_TYPE_PointerTott__TransformationExtension: - soap_serialize_PointerTott__TransformationExtension(soap, (tt__TransformationExtension *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__anyType: - soap_serialize_PointerToxsd__anyType(soap, (struct soap_dom_element *const*)ptr); - break; - case SOAP_TYPE_PointerTott__ColorCovariance: - soap_serialize_PointerTott__ColorCovariance(soap, (tt__ColorCovariance *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Color: - soap_serialize_PointerTott__Color(soap, (tt__Color *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Vector: - soap_serialize_PointerTott__Vector(soap, (tt__Vector *const*)ptr); - break; - case SOAP_TYPE_PointerTofloat: - soap_serialize_PointerTofloat(soap, (float *const*)ptr); - break; - case SOAP_TYPE_PointerTott__MoveStatus: - soap_serialize_PointerTott__MoveStatus(soap, (enum tt__MoveStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTostd__string: - soap_serialize_PointerTostd__string(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZMoveStatus: - soap_serialize_PointerTott__PTZMoveStatus(soap, (tt__PTZMoveStatus *const*)ptr); - break; - case SOAP_TYPE_PointerTott__PTZVector: - soap_serialize_PointerTott__PTZVector(soap, (tt__PTZVector *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Vector1D: - soap_serialize_PointerTott__Vector1D(soap, (tt__Vector1D *const*)ptr); - break; - case SOAP_TYPE_PointerTott__Vector2D: - soap_serialize_PointerTott__Vector2D(soap, (tt__Vector2D *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__anyURI: - soap_serialize_PointerToxsd__anyURI(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy: - soap_serialize_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(soap, (_tev__CreatePullPointSubscription_SubscriptionPolicy *const*)ptr); - break; - case SOAP_TYPE_PointerTotev__Capabilities: - soap_serialize_PointerTotev__Capabilities(soap, (tev__Capabilities *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_FaultCause: - soap_serialize_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, (_wsrfbf__BaseFaultType_FaultCause *const*)ptr); - break; - case SOAP_TYPE_PointerTo_xml__lang: - soap_serialize_PointerTo_xml__lang(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_ErrorCode: - soap_serialize_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, (_wsrfbf__BaseFaultType_ErrorCode *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__nonNegativeInteger: - soap_serialize_PointerToxsd__nonNegativeInteger(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsnt__Subscribe_SubscriptionPolicy: - soap_serialize_PointerTo_wsnt__Subscribe_SubscriptionPolicy(soap, (_wsnt__Subscribe_SubscriptionPolicy *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__AbsoluteOrRelativeTimeType: - soap_serialize_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, (std::string *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__NotificationMessageHolderType: - soap_serialize_PointerTowsnt__NotificationMessageHolderType(soap, (wsnt__NotificationMessageHolderType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__SubscriptionPolicyType: - soap_serialize_PointerTowsnt__SubscriptionPolicyType(soap, (wsnt__SubscriptionPolicyType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__FilterType: - soap_serialize_PointerTowsnt__FilterType(soap, (wsnt__FilterType *const*)ptr); - break; - case SOAP_TYPE_PointerTowstop__TopicSetType: - soap_serialize_PointerTowstop__TopicSetType(soap, (wstop__TopicSetType *const*)ptr); - break; - case SOAP_TYPE_PointerTobool: - soap_serialize_PointerTobool(soap, (bool *const*)ptr); - break; - case SOAP_TYPE_PointerTowsnt__TopicExpressionType: - soap_serialize_PointerTowsnt__TopicExpressionType(soap, (wsnt__TopicExpressionType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsa5__EndpointReferenceType: - soap_serialize_PointerTowsa5__EndpointReferenceType(soap, (struct wsa5__EndpointReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTounsignedByte: - soap_serialize_PointerTounsignedByte(soap, (unsigned char *const*)ptr); - break; - case SOAP_TYPE_PointerTochan__ChannelInstanceType: - soap_serialize_PointerTochan__ChannelInstanceType(soap, (struct chan__ChannelInstanceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsa5__FaultTo: - soap_serialize_PointerTo_wsa5__FaultTo(soap, (struct wsa5__EndpointReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsa5__ReplyTo: - soap_serialize_PointerTo_wsa5__ReplyTo(soap, (struct wsa5__EndpointReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsa5__From: - soap_serialize_PointerTo_wsa5__From(soap, (struct wsa5__EndpointReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsa5__RelatesTo: - soap_serialize_PointerTo_wsa5__RelatesTo(soap, (struct wsa5__RelatesToType *const*)ptr); - break; - case SOAP_TYPE__wsa5__ProblemIRI: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsa5__ProblemHeaderQName: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsa5__Action: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsa5__To: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsa5__MessageID: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerTowsa5__MetadataType: - soap_serialize_PointerTowsa5__MetadataType(soap, (struct wsa5__MetadataType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsa5__ReferenceParametersType: - soap_serialize_PointerTowsa5__ReferenceParametersType(soap, (struct wsa5__ReferenceParametersType *const*)ptr); - break; - case SOAP_TYPE_wsa5__FaultCodesOpenEnumType: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_wsa5__RelationshipTypeOpenEnum: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerTo_wsse__Security: - soap_serialize_PointerTo_wsse__Security(soap, (struct _wsse__Security *const*)ptr); - break; - case SOAP_TYPE_PointerTods__SignatureType: - soap_serialize_PointerTods__SignatureType(soap, (struct ds__SignatureType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsc__SecurityContextTokenType: - soap_serialize_PointerTowsc__SecurityContextTokenType(soap, (struct wsc__SecurityContextTokenType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsse__BinarySecurityToken: - soap_serialize_PointerTo_wsse__BinarySecurityToken(soap, (struct _wsse__BinarySecurityToken *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsse__UsernameToken: - soap_serialize_PointerTo_wsse__UsernameToken(soap, (struct _wsse__UsernameToken *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsu__Timestamp: - soap_serialize_PointerTo_wsu__Timestamp(soap, (struct _wsu__Timestamp *const*)ptr); - break; - case SOAP_TYPE__saml2__AuthenticatingAuthority: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__saml2__AuthnContextDeclRef: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__saml2__AuthnContextClassRef: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__saml2__Audience: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__saml2__AssertionURIRef: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__saml2__AssertionIDRef: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerToPointerTo_ds__KeyInfo: - soap_serialize_PointerToPointerTo_ds__KeyInfo(soap, (struct ds__KeyInfoType **const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml2__union_AttributeStatementType: - soap_serialize_PointerTo__saml2__union_AttributeStatementType(soap, (struct __saml2__union_AttributeStatementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AttributeType: - soap_serialize_PointerTosaml2__AttributeType(soap, (struct saml2__AttributeType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__EvidenceType: - soap_serialize_PointerTosaml2__EvidenceType(soap, (struct saml2__EvidenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__ActionType: - soap_serialize_PointerTosaml2__ActionType(soap, (struct saml2__ActionType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AuthnContextType: - soap_serialize_PointerTosaml2__AuthnContextType(soap, (struct saml2__AuthnContextType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__SubjectLocalityType: - soap_serialize_PointerTosaml2__SubjectLocalityType(soap, (struct saml2__SubjectLocalityType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml2__union_EvidenceType: - soap_serialize_PointerTo__saml2__union_EvidenceType(soap, (struct __saml2__union_EvidenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml2__union_AdviceType: - soap_serialize_PointerTo__saml2__union_AdviceType(soap, (struct __saml2__union_AdviceType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AssertionType: - soap_serialize_PointerTosaml2__AssertionType(soap, (struct saml2__AssertionType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml2__union_ConditionsType: - soap_serialize_PointerTo__saml2__union_ConditionsType(soap, (struct __saml2__union_ConditionsType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__ProxyRestrictionType: - soap_serialize_PointerTosaml2__ProxyRestrictionType(soap, (struct saml2__ProxyRestrictionType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__OneTimeUseType: - soap_serialize_PointerTosaml2__OneTimeUseType(soap, (struct saml2__OneTimeUseType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AudienceRestrictionType: - soap_serialize_PointerTosaml2__AudienceRestrictionType(soap, (struct saml2__AudienceRestrictionType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__ConditionAbstractType: - soap_serialize_PointerTosaml2__ConditionAbstractType(soap, (struct saml2__ConditionAbstractType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__SubjectConfirmationDataType: - soap_serialize_PointerTosaml2__SubjectConfirmationDataType(soap, (struct saml2__SubjectConfirmationDataType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__SubjectConfirmationType: - soap_serialize_PointerTosaml2__SubjectConfirmationType(soap, (struct saml2__SubjectConfirmationType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__EncryptedElementType: - soap_serialize_PointerTosaml2__EncryptedElementType(soap, (struct saml2__EncryptedElementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__BaseIDAbstractType: - soap_serialize_PointerTosaml2__BaseIDAbstractType(soap, (struct saml2__BaseIDAbstractType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml2__union_AssertionType: - soap_serialize_PointerTo__saml2__union_AssertionType(soap, (struct __saml2__union_AssertionType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AttributeStatementType: - soap_serialize_PointerTosaml2__AttributeStatementType(soap, (struct saml2__AttributeStatementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AuthzDecisionStatementType: - soap_serialize_PointerTosaml2__AuthzDecisionStatementType(soap, (struct saml2__AuthzDecisionStatementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AuthnStatementType: - soap_serialize_PointerTosaml2__AuthnStatementType(soap, (struct saml2__AuthnStatementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__StatementAbstractType: - soap_serialize_PointerTosaml2__StatementAbstractType(soap, (struct saml2__StatementAbstractType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__AdviceType: - soap_serialize_PointerTosaml2__AdviceType(soap, (struct saml2__AdviceType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__ConditionsType: - soap_serialize_PointerTosaml2__ConditionsType(soap, (struct saml2__ConditionsType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__SubjectType: - soap_serialize_PointerTosaml2__SubjectType(soap, (struct saml2__SubjectType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml2__NameIDType: - soap_serialize_PointerTosaml2__NameIDType(soap, (struct saml2__NameIDType *const*)ptr); - break; - case SOAP_TYPE_PointerToPointerToxenc__EncryptedKeyType: - soap_serialize_PointerToPointerToxenc__EncryptedKeyType(soap, (struct xenc__EncryptedKeyType **const*)ptr); - break; - case SOAP_TYPE__saml1__ConfirmationMethod: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__saml1__Audience: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__saml1__AssertionIDReference: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerTosaml1__AttributeType: - soap_serialize_PointerTosaml1__AttributeType(soap, (struct saml1__AttributeType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__EvidenceType: - soap_serialize_PointerTosaml1__EvidenceType(soap, (struct saml1__EvidenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__ActionType: - soap_serialize_PointerTosaml1__ActionType(soap, (struct saml1__ActionType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__AuthorityBindingType: - soap_serialize_PointerTosaml1__AuthorityBindingType(soap, (struct saml1__AuthorityBindingType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__SubjectLocalityType: - soap_serialize_PointerTosaml1__SubjectLocalityType(soap, (struct saml1__SubjectLocalityType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__SubjectType: - soap_serialize_PointerTosaml1__SubjectType(soap, (struct saml1__SubjectType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml1__union_EvidenceType: - soap_serialize_PointerTo__saml1__union_EvidenceType(soap, (struct __saml1__union_EvidenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTostring: - soap_serialize_PointerTostring(soap, (char **const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__SubjectConfirmationType: - soap_serialize_PointerTosaml1__SubjectConfirmationType(soap, (struct saml1__SubjectConfirmationType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__NameIdentifierType: - soap_serialize_PointerTosaml1__NameIdentifierType(soap, (struct saml1__NameIdentifierType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml1__union_AdviceType: - soap_serialize_PointerTo__saml1__union_AdviceType(soap, (struct __saml1__union_AdviceType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__AssertionType: - soap_serialize_PointerTosaml1__AssertionType(soap, (struct saml1__AssertionType *const*)ptr); - break; - case SOAP_TYPE_PointerToxsd__dateTime: - soap_serialize_PointerToxsd__dateTime(soap, (struct timeval *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml1__union_ConditionsType: - soap_serialize_PointerTo__saml1__union_ConditionsType(soap, (struct __saml1__union_ConditionsType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__ConditionAbstractType: - soap_serialize_PointerTosaml1__ConditionAbstractType(soap, (struct saml1__ConditionAbstractType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__DoNotCacheConditionType: - soap_serialize_PointerTosaml1__DoNotCacheConditionType(soap, (struct saml1__DoNotCacheConditionType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__AudienceRestrictionConditionType: - soap_serialize_PointerTosaml1__AudienceRestrictionConditionType(soap, (struct saml1__AudienceRestrictionConditionType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_ds__Signature: - soap_serialize_PointerTo_ds__Signature(soap, (struct ds__SignatureType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__saml1__union_AssertionType: - soap_serialize_PointerTo__saml1__union_AssertionType(soap, (struct __saml1__union_AssertionType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__AttributeStatementType: - soap_serialize_PointerTosaml1__AttributeStatementType(soap, (struct saml1__AttributeStatementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__AuthorizationDecisionStatementType: - soap_serialize_PointerTosaml1__AuthorizationDecisionStatementType(soap, (struct saml1__AuthorizationDecisionStatementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__AuthenticationStatementType: - soap_serialize_PointerTosaml1__AuthenticationStatementType(soap, (struct saml1__AuthenticationStatementType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__SubjectStatementAbstractType: - soap_serialize_PointerTosaml1__SubjectStatementAbstractType(soap, (struct saml1__SubjectStatementAbstractType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__StatementAbstractType: - soap_serialize_PointerTosaml1__StatementAbstractType(soap, (struct saml1__StatementAbstractType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__AdviceType: - soap_serialize_PointerTosaml1__AdviceType(soap, (struct saml1__AdviceType *const*)ptr); - break; - case SOAP_TYPE_PointerTosaml1__ConditionsType: - soap_serialize_PointerTosaml1__ConditionsType(soap, (struct saml1__ConditionsType *const*)ptr); - break; - case SOAP_TYPE_PointerTo__wsc__DerivedKeyTokenType_sequence: - soap_serialize_PointerTo__wsc__DerivedKeyTokenType_sequence(soap, (struct __wsc__DerivedKeyTokenType_sequence *const*)ptr); - break; - case SOAP_TYPE_PointerToULONG64: - soap_serialize_PointerToULONG64(soap, (ULONG64 *const*)ptr); - break; - case SOAP_TYPE_PointerTowsc__PropertiesType: - soap_serialize_PointerTowsc__PropertiesType(soap, (struct wsc__PropertiesType *const*)ptr); - break; - case SOAP_TYPE_wsc__FaultCodeOpenEnumType: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerTo_xenc__ReferenceList: - soap_serialize_PointerTo_xenc__ReferenceList(soap, (struct _xenc__ReferenceList *const*)ptr); - break; - case SOAP_TYPE_PointerTo__xenc__union_ReferenceList: - soap_serialize_PointerTo__xenc__union_ReferenceList(soap, (struct __xenc__union_ReferenceList *const*)ptr); - break; - case SOAP_TYPE_PointerToxenc__ReferenceType: - soap_serialize_PointerToxenc__ReferenceType(soap, (struct xenc__ReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerToxenc__EncryptionPropertyType: - soap_serialize_PointerToxenc__EncryptionPropertyType(soap, (struct xenc__EncryptionPropertyType *const*)ptr); - break; - case SOAP_TYPE_PointerToxenc__TransformsType: - soap_serialize_PointerToxenc__TransformsType(soap, (struct xenc__TransformsType *const*)ptr); - break; - case SOAP_TYPE_PointerToxenc__CipherReferenceType: - soap_serialize_PointerToxenc__CipherReferenceType(soap, (struct xenc__CipherReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerToxenc__EncryptionPropertiesType: - soap_serialize_PointerToxenc__EncryptionPropertiesType(soap, (struct xenc__EncryptionPropertiesType *const*)ptr); - break; - case SOAP_TYPE_PointerToxenc__CipherDataType: - soap_serialize_PointerToxenc__CipherDataType(soap, (struct xenc__CipherDataType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_ds__KeyInfo: - soap_serialize_PointerTo_ds__KeyInfo(soap, (struct ds__KeyInfoType *const*)ptr); - break; - case SOAP_TYPE_PointerToxenc__EncryptionMethodType: - soap_serialize_PointerToxenc__EncryptionMethodType(soap, (struct xenc__EncryptionMethodType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__X509IssuerSerialType: - soap_serialize_PointerTods__X509IssuerSerialType(soap, (struct ds__X509IssuerSerialType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__RSAKeyValueType: - soap_serialize_PointerTods__RSAKeyValueType(soap, (struct ds__RSAKeyValueType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__DSAKeyValueType: - soap_serialize_PointerTods__DSAKeyValueType(soap, (struct ds__DSAKeyValueType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__TransformType: - soap_serialize_PointerTods__TransformType(soap, (struct ds__TransformType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__DigestMethodType: - soap_serialize_PointerTods__DigestMethodType(soap, (struct ds__DigestMethodType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__TransformsType: - soap_serialize_PointerTods__TransformsType(soap, (struct ds__TransformsType *const*)ptr); - break; - case SOAP_TYPE_PointerToint: - soap_serialize_PointerToint(soap, (int *const*)ptr); - break; - case SOAP_TYPE_PointerToPointerTods__ReferenceType: - soap_serialize_PointerToPointerTods__ReferenceType(soap, (struct ds__ReferenceType **const*)ptr); - break; - case SOAP_TYPE_PointerTods__ReferenceType: - soap_serialize_PointerTods__ReferenceType(soap, (struct ds__ReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__SignatureMethodType: - soap_serialize_PointerTods__SignatureMethodType(soap, (struct ds__SignatureMethodType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__CanonicalizationMethodType: - soap_serialize_PointerTods__CanonicalizationMethodType(soap, (struct ds__CanonicalizationMethodType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsse__SecurityTokenReference: - soap_serialize_PointerTo_wsse__SecurityTokenReference(soap, (struct _wsse__SecurityTokenReference *const*)ptr); - break; - case SOAP_TYPE_PointerTods__RetrievalMethodType: - soap_serialize_PointerTods__RetrievalMethodType(soap, (struct ds__RetrievalMethodType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__KeyValueType: - soap_serialize_PointerTods__KeyValueType(soap, (struct ds__KeyValueType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_c14n__InclusiveNamespaces: - soap_serialize_PointerTo_c14n__InclusiveNamespaces(soap, (struct _c14n__InclusiveNamespaces *const*)ptr); - break; - case SOAP_TYPE_PointerTods__KeyInfoType: - soap_serialize_PointerTods__KeyInfoType(soap, (struct ds__KeyInfoType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__SignedInfoType: - soap_serialize_PointerTods__SignedInfoType(soap, (struct ds__SignedInfoType *const*)ptr); - break; - case SOAP_TYPE__ds__SignatureValue: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerToxenc__EncryptedKeyType: - soap_serialize_PointerToxenc__EncryptedKeyType(soap, (struct xenc__EncryptedKeyType *const*)ptr); - break; - case SOAP_TYPE_PointerTods__X509DataType: - soap_serialize_PointerTods__X509DataType(soap, (struct ds__X509DataType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsse__Embedded: - soap_serialize_PointerTo_wsse__Embedded(soap, (struct _wsse__Embedded *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsse__KeyIdentifier: - soap_serialize_PointerTo_wsse__KeyIdentifier(soap, (struct _wsse__KeyIdentifier *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsse__Reference: - soap_serialize_PointerTo_wsse__Reference(soap, (struct _wsse__Reference *const*)ptr); - break; - case SOAP_TYPE_PointerTowsse__EncodedString: - soap_serialize_PointerTowsse__EncodedString(soap, (struct wsse__EncodedString *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsse__Password: - soap_serialize_PointerTo_wsse__Password(soap, (struct _wsse__Password *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ResolveMatchesType: - soap_serialize_PointerTowsdd__ResolveMatchesType(soap, (struct wsdd__ResolveMatchesType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ResolveType: - soap_serialize_PointerTowsdd__ResolveType(soap, (struct wsdd__ResolveType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ProbeMatchesType: - soap_serialize_PointerTowsdd__ProbeMatchesType(soap, (struct wsdd__ProbeMatchesType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ProbeType: - soap_serialize_PointerTowsdd__ProbeType(soap, (struct wsdd__ProbeType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ByeType: - soap_serialize_PointerTowsdd__ByeType(soap, (struct wsdd__ByeType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__HelloType: - soap_serialize_PointerTowsdd__HelloType(soap, (struct wsdd__HelloType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__AppSequenceType: - soap_serialize_PointerTowsdd__AppSequenceType(soap, (struct wsdd__AppSequenceType *const*)ptr); - break; - case SOAP_TYPE__wsdd__Id: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsdd__SupportedMatchingRules: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsdd__XAddrs: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsdd__Types: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerTowsdd__SigType: - soap_serialize_PointerTowsdd__SigType(soap, (struct wsdd__SigType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ResolveMatchType: - soap_serialize_PointerTowsdd__ResolveMatchType(soap, (struct wsdd__ResolveMatchType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ProbeMatchType: - soap_serialize_PointerTowsdd__ProbeMatchType(soap, (struct wsdd__ProbeMatchType *const*)ptr); - break; - case SOAP_TYPE_PointerTounsignedInt: - soap_serialize_PointerTounsignedInt(soap, (unsigned int *const*)ptr); - break; - case SOAP_TYPE_PointerTowsdd__ScopesType: - soap_serialize_PointerTowsdd__ScopesType(soap, (struct wsdd__ScopesType *const*)ptr); - break; - case SOAP_TYPE_wsdd__FaultCodeOpenType: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_wsdd__UriListType: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_wsdd__QNameListType: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerTo_wsa__FaultTo: - soap_serialize_PointerTo_wsa__FaultTo(soap, (struct wsa__EndpointReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsa__ReplyTo: - soap_serialize_PointerTo_wsa__ReplyTo(soap, (struct wsa__EndpointReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsa__From: - soap_serialize_PointerTo_wsa__From(soap, (struct wsa__EndpointReferenceType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_wsa__RelatesTo: - soap_serialize_PointerTo_wsa__RelatesTo(soap, (struct wsa__Relationship *const*)ptr); - break; - case SOAP_TYPE__wsa__Action: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsa__To: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE__wsa__MessageID: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_PointerTowsa__ServiceNameType: - soap_serialize_PointerTowsa__ServiceNameType(soap, (struct wsa__ServiceNameType *const*)ptr); - break; - case SOAP_TYPE_PointerTo_QName: - soap_serialize_PointerTo_QName(soap, (char **const*)ptr); - break; - case SOAP_TYPE_PointerTowsa__ReferenceParametersType: - soap_serialize_PointerTowsa__ReferenceParametersType(soap, (struct wsa__ReferenceParametersType *const*)ptr); - break; - case SOAP_TYPE_PointerTowsa__ReferencePropertiesType: - soap_serialize_PointerTowsa__ReferencePropertiesType(soap, (struct wsa__ReferencePropertiesType *const*)ptr); - break; - case SOAP_TYPE__QName: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - case SOAP_TYPE_string: - soap_serialize_string(soap, (char*const*)(void*)&ptr); - break; - } -} -#ifdef __cplusplus -} -#endif -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -SOAP_FMAC3 void * SOAP_FMAC4 soap_dupelement(struct soap *soap, const void *ptr, int type) -{(void)soap; (void)ptr; (void)type; /* appease -Wall -Werror */ - return NULL; -} -#ifdef __cplusplus -} -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -SOAP_FMAC3 void SOAP_FMAC4 soap_delelement(const void *ptr, int type) -{(void)ptr; (void)type; /* appease -Wall -Werror */ -} -#ifdef __cplusplus -} -#endif - -SOAP_FMAC3 void * SOAP_FMAC4 soap_instantiate(struct soap *soap, int t, const char *type, const char *arrayType, size_t *n) -{ (void)type; - switch (t) - { - case SOAP_TYPE_wsa__EndpointReferenceType: - return (void*)soap_instantiate_wsa__EndpointReferenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa__ReferencePropertiesType: - return (void*)soap_instantiate_wsa__ReferencePropertiesType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa__ReferenceParametersType: - return (void*)soap_instantiate_wsa__ReferenceParametersType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa__ServiceNameType: - return (void*)soap_instantiate_wsa__ServiceNameType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa__Relationship: - return (void*)soap_instantiate_wsa__Relationship(soap, -1, type, arrayType, n); -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Header: - return (void*)soap_instantiate_SOAP_ENV__Header(soap, -1, type, arrayType, n); -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Code: - return (void*)soap_instantiate_SOAP_ENV__Code(soap, -1, type, arrayType, n); -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Reason: - return (void*)soap_instantiate_SOAP_ENV__Reason(soap, -1, type, arrayType, n); -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Fault: - return (void*)soap_instantiate_SOAP_ENV__Fault(soap, -1, type, arrayType, n); -#endif - case SOAP_TYPE_wsdd__HelloType: - return (void*)soap_instantiate_wsdd__HelloType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ByeType: - return (void*)soap_instantiate_wsdd__ByeType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ProbeType: - return (void*)soap_instantiate_wsdd__ProbeType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ProbeMatchesType: - return (void*)soap_instantiate_wsdd__ProbeMatchesType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ProbeMatchType: - return (void*)soap_instantiate_wsdd__ProbeMatchType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ResolveType: - return (void*)soap_instantiate_wsdd__ResolveType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ResolveMatchesType: - return (void*)soap_instantiate_wsdd__ResolveMatchesType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ResolveMatchType: - return (void*)soap_instantiate_wsdd__ResolveMatchType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__SecurityType: - return (void*)soap_instantiate_wsdd__SecurityType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__SigType: - return (void*)soap_instantiate_wsdd__SigType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__ScopesType: - return (void*)soap_instantiate_wsdd__ScopesType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsdd__AppSequenceType: - return (void*)soap_instantiate_wsdd__AppSequenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE___wsdd__Hello: - return (void*)soap_instantiate___wsdd__Hello(soap, -1, type, arrayType, n); - case SOAP_TYPE___wsdd__Bye: - return (void*)soap_instantiate___wsdd__Bye(soap, -1, type, arrayType, n); - case SOAP_TYPE___wsdd__Probe: - return (void*)soap_instantiate___wsdd__Probe(soap, -1, type, arrayType, n); - case SOAP_TYPE___wsdd__ProbeMatches: - return (void*)soap_instantiate___wsdd__ProbeMatches(soap, -1, type, arrayType, n); - case SOAP_TYPE___wsdd__Resolve: - return (void*)soap_instantiate___wsdd__Resolve(soap, -1, type, arrayType, n); - case SOAP_TYPE___wsdd__ResolveMatches: - return (void*)soap_instantiate___wsdd__ResolveMatches(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsu__Timestamp: - return (void*)soap_instantiate__wsu__Timestamp(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsse__EncodedString: - return (void*)soap_instantiate_wsse__EncodedString(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__UsernameToken: - return (void*)soap_instantiate__wsse__UsernameToken(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__BinarySecurityToken: - return (void*)soap_instantiate__wsse__BinarySecurityToken(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__Reference: - return (void*)soap_instantiate__wsse__Reference(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__Embedded: - return (void*)soap_instantiate__wsse__Embedded(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__KeyIdentifier: - return (void*)soap_instantiate__wsse__KeyIdentifier(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__SecurityTokenReference: - return (void*)soap_instantiate__wsse__SecurityTokenReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__KeyInfoType: - return (void*)soap_instantiate_ds__KeyInfoType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__SignatureType: - return (void*)soap_instantiate_ds__SignatureType(soap, -1, type, arrayType, n); - case SOAP_TYPE__c14n__InclusiveNamespaces: - return (void*)soap_instantiate__c14n__InclusiveNamespaces(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__TransformType: - return (void*)soap_instantiate_ds__TransformType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__SignedInfoType: - return (void*)soap_instantiate_ds__SignedInfoType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__CanonicalizationMethodType: - return (void*)soap_instantiate_ds__CanonicalizationMethodType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__SignatureMethodType: - return (void*)soap_instantiate_ds__SignatureMethodType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__ReferenceType: - return (void*)soap_instantiate_ds__ReferenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__TransformsType: - return (void*)soap_instantiate_ds__TransformsType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__DigestMethodType: - return (void*)soap_instantiate_ds__DigestMethodType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__KeyValueType: - return (void*)soap_instantiate_ds__KeyValueType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__RetrievalMethodType: - return (void*)soap_instantiate_ds__RetrievalMethodType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__X509DataType: - return (void*)soap_instantiate_ds__X509DataType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__X509IssuerSerialType: - return (void*)soap_instantiate_ds__X509IssuerSerialType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__DSAKeyValueType: - return (void*)soap_instantiate_ds__DSAKeyValueType(soap, -1, type, arrayType, n); - case SOAP_TYPE_ds__RSAKeyValueType: - return (void*)soap_instantiate_ds__RSAKeyValueType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__EncryptionPropertyType: - return (void*)soap_instantiate_xenc__EncryptionPropertyType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__EncryptedType: - return (void*)soap_instantiate_xenc__EncryptedType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__EncryptionMethodType: - return (void*)soap_instantiate_xenc__EncryptionMethodType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__CipherDataType: - return (void*)soap_instantiate_xenc__CipherDataType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__CipherReferenceType: - return (void*)soap_instantiate_xenc__CipherReferenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__TransformsType: - return (void*)soap_instantiate_xenc__TransformsType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__AgreementMethodType: - return (void*)soap_instantiate_xenc__AgreementMethodType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__ReferenceType: - return (void*)soap_instantiate_xenc__ReferenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__EncryptionPropertiesType: - return (void*)soap_instantiate_xenc__EncryptionPropertiesType(soap, -1, type, arrayType, n); - case SOAP_TYPE___xenc__union_ReferenceList: - return (void*)soap_instantiate___xenc__union_ReferenceList(soap, -1, type, arrayType, n); - case SOAP_TYPE__xenc__ReferenceList: - return (void*)soap_instantiate__xenc__ReferenceList(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__EncryptedDataType: - return (void*)soap_instantiate_xenc__EncryptedDataType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xenc__EncryptedKeyType: - return (void*)soap_instantiate_xenc__EncryptedKeyType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsc__SecurityContextTokenType: - return (void*)soap_instantiate_wsc__SecurityContextTokenType(soap, -1, type, arrayType, n); - case SOAP_TYPE___wsc__DerivedKeyTokenType_sequence: - return (void*)soap_instantiate___wsc__DerivedKeyTokenType_sequence(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsc__DerivedKeyTokenType: - return (void*)soap_instantiate_wsc__DerivedKeyTokenType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsc__PropertiesType: - return (void*)soap_instantiate_wsc__PropertiesType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml1__union_AssertionType: - return (void*)soap_instantiate___saml1__union_AssertionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AssertionType: - return (void*)soap_instantiate_saml1__AssertionType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml1__union_ConditionsType: - return (void*)soap_instantiate___saml1__union_ConditionsType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__ConditionsType: - return (void*)soap_instantiate_saml1__ConditionsType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__ConditionAbstractType: - return (void*)soap_instantiate_saml1__ConditionAbstractType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml1__union_AdviceType: - return (void*)soap_instantiate___saml1__union_AdviceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AdviceType: - return (void*)soap_instantiate_saml1__AdviceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__StatementAbstractType: - return (void*)soap_instantiate_saml1__StatementAbstractType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__SubjectType: - return (void*)soap_instantiate_saml1__SubjectType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__SubjectConfirmationType: - return (void*)soap_instantiate_saml1__SubjectConfirmationType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__SubjectLocalityType: - return (void*)soap_instantiate_saml1__SubjectLocalityType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AuthorityBindingType: - return (void*)soap_instantiate_saml1__AuthorityBindingType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml1__union_EvidenceType: - return (void*)soap_instantiate___saml1__union_EvidenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__EvidenceType: - return (void*)soap_instantiate_saml1__EvidenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AttributeDesignatorType: - return (void*)soap_instantiate_saml1__AttributeDesignatorType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AudienceRestrictionConditionType: - return (void*)soap_instantiate_saml1__AudienceRestrictionConditionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__DoNotCacheConditionType: - return (void*)soap_instantiate_saml1__DoNotCacheConditionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__SubjectStatementAbstractType: - return (void*)soap_instantiate_saml1__SubjectStatementAbstractType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__NameIdentifierType: - return (void*)soap_instantiate_saml1__NameIdentifierType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__ActionType: - return (void*)soap_instantiate_saml1__ActionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AttributeType: - return (void*)soap_instantiate_saml1__AttributeType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AuthenticationStatementType: - return (void*)soap_instantiate_saml1__AuthenticationStatementType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AuthorizationDecisionStatementType: - return (void*)soap_instantiate_saml1__AuthorizationDecisionStatementType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml1__AttributeStatementType: - return (void*)soap_instantiate_saml1__AttributeStatementType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__BaseIDAbstractType: - return (void*)soap_instantiate_saml2__BaseIDAbstractType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__EncryptedElementType: - return (void*)soap_instantiate_saml2__EncryptedElementType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml2__union_AssertionType: - return (void*)soap_instantiate___saml2__union_AssertionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AssertionType: - return (void*)soap_instantiate_saml2__AssertionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__SubjectType: - return (void*)soap_instantiate_saml2__SubjectType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__SubjectConfirmationType: - return (void*)soap_instantiate_saml2__SubjectConfirmationType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml2__union_ConditionsType: - return (void*)soap_instantiate___saml2__union_ConditionsType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__ConditionsType: - return (void*)soap_instantiate_saml2__ConditionsType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__ConditionAbstractType: - return (void*)soap_instantiate_saml2__ConditionAbstractType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml2__union_AdviceType: - return (void*)soap_instantiate___saml2__union_AdviceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AdviceType: - return (void*)soap_instantiate_saml2__AdviceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__StatementAbstractType: - return (void*)soap_instantiate_saml2__StatementAbstractType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__SubjectLocalityType: - return (void*)soap_instantiate_saml2__SubjectLocalityType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AuthnContextType: - return (void*)soap_instantiate_saml2__AuthnContextType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml2__union_EvidenceType: - return (void*)soap_instantiate___saml2__union_EvidenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__EvidenceType: - return (void*)soap_instantiate_saml2__EvidenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AttributeType: - return (void*)soap_instantiate_saml2__AttributeType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__NameIDType: - return (void*)soap_instantiate_saml2__NameIDType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__SubjectConfirmationDataType: - return (void*)soap_instantiate_saml2__SubjectConfirmationDataType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AudienceRestrictionType: - return (void*)soap_instantiate_saml2__AudienceRestrictionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__OneTimeUseType: - return (void*)soap_instantiate_saml2__OneTimeUseType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__ProxyRestrictionType: - return (void*)soap_instantiate_saml2__ProxyRestrictionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AuthnStatementType: - return (void*)soap_instantiate_saml2__AuthnStatementType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AuthzDecisionStatementType: - return (void*)soap_instantiate_saml2__AuthzDecisionStatementType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__ActionType: - return (void*)soap_instantiate_saml2__ActionType(soap, -1, type, arrayType, n); - case SOAP_TYPE___saml2__union_AttributeStatementType: - return (void*)soap_instantiate___saml2__union_AttributeStatementType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__AttributeStatementType: - return (void*)soap_instantiate_saml2__AttributeStatementType(soap, -1, type, arrayType, n); - case SOAP_TYPE_saml2__KeyInfoConfirmationDataType: - return (void*)soap_instantiate_saml2__KeyInfoConfirmationDataType(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__Security: - return (void*)soap_instantiate__wsse__Security(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsse__Password: - return (void*)soap_instantiate__wsse__Password(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa5__EndpointReferenceType: - return (void*)soap_instantiate_wsa5__EndpointReferenceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa5__ReferenceParametersType: - return (void*)soap_instantiate_wsa5__ReferenceParametersType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa5__MetadataType: - return (void*)soap_instantiate_wsa5__MetadataType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa5__ProblemActionType: - return (void*)soap_instantiate_wsa5__ProblemActionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa5__RelatesToType: - return (void*)soap_instantiate_wsa5__RelatesToType(soap, -1, type, arrayType, n); - case SOAP_TYPE_chan__ChannelInstanceType: - return (void*)soap_instantiate_chan__ChannelInstanceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__string: - return (void*)soap_instantiate_std__string(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__base64Binary: - return (void*)soap_instantiate_xsd__base64Binary(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__hexBinary: - return (void*)soap_instantiate_xsd__hexBinary(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FloatList__: - return (void*)soap_instantiate_tt__FloatList__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IntList__: - return (void*)soap_instantiate_tt__IntList__(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsa5__EndpointReferenceType__: - return (void*)soap_instantiate_wsa5__EndpointReferenceType__(soap, -1, type, arrayType, n); - case SOAP_TYPE_SOAP_ENV__Envelope__: - return (void*)soap_instantiate_SOAP_ENV__Envelope__(soap, -1, type, arrayType, n); - case SOAP_TYPE_SOAP_ENV__Fault_: - return (void*)soap_instantiate_SOAP_ENV__Fault_(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__NCName__: - return (void*)soap_instantiate_xsd__NCName__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__QName__: - return (void*)soap_instantiate_xsd__QName__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__anySimpleType__: - return (void*)soap_instantiate_xsd__anySimpleType__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__anyURI__: - return (void*)soap_instantiate_xsd__anyURI__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__base64Binary__: - return (void*)soap_instantiate_xsd__base64Binary__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__boolean_: - return (void*)soap_instantiate_xsd__boolean_(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__dateTime__: - return (void*)soap_instantiate_xsd__dateTime__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__double_: - return (void*)soap_instantiate_xsd__double_(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__duration__: - return (void*)soap_instantiate_xsd__duration__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__float_: - return (void*)soap_instantiate_xsd__float_(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__hexBinary__: - return (void*)soap_instantiate_xsd__hexBinary__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__int_: - return (void*)soap_instantiate_xsd__int_(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__integer__: - return (void*)soap_instantiate_xsd__integer__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__nonNegativeInteger__: - return (void*)soap_instantiate_xsd__nonNegativeInteger__(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__string_: - return (void*)soap_instantiate_xsd__string_(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__token__: - return (void*)soap_instantiate_xsd__token__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReferenceToken__: - return (void*)soap_instantiate_tt__ReferenceToken__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MoveStatus_: - return (void*)soap_instantiate_tt__MoveStatus_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Entity_: - return (void*)soap_instantiate_tt__Entity_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Name__: - return (void*)soap_instantiate_tt__Name__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RotateMode_: - return (void*)soap_instantiate_tt__RotateMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SceneOrientationMode_: - return (void*)soap_instantiate_tt__SceneOrientationMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SceneOrientationOption_: - return (void*)soap_instantiate_tt__SceneOrientationOption_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ViewModes_: - return (void*)soap_instantiate_tt__ViewModes_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncoding_: - return (void*)soap_instantiate_tt__VideoEncoding_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Mpeg4Profile_: - return (void*)soap_instantiate_tt__Mpeg4Profile_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__H264Profile_: - return (void*)soap_instantiate_tt__H264Profile_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncodingMimeNames_: - return (void*)soap_instantiate_tt__VideoEncodingMimeNames_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncodingProfiles_: - return (void*)soap_instantiate_tt__VideoEncodingProfiles_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioEncoding_: - return (void*)soap_instantiate_tt__AudioEncoding_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioEncodingMimeNames_: - return (void*)soap_instantiate_tt__AudioEncodingMimeNames_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataCompressionType_: - return (void*)soap_instantiate_tt__MetadataCompressionType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__StreamType_: - return (void*)soap_instantiate_tt__StreamType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TransportProtocol_: - return (void*)soap_instantiate_tt__TransportProtocol_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ScopeDefinition_: - return (void*)soap_instantiate_tt__ScopeDefinition_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DiscoveryMode_: - return (void*)soap_instantiate_tt__DiscoveryMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority__: - return (void*)soap_instantiate_tt__NetworkInterfaceConfigPriority__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Duplex_: - return (void*)soap_instantiate_tt__Duplex_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IANA_IfTypes__: - return (void*)soap_instantiate_tt__IANA_IfTypes__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv6DHCPConfiguration_: - return (void*)soap_instantiate_tt__IPv6DHCPConfiguration_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkProtocolType_: - return (void*)soap_instantiate_tt__NetworkProtocolType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkHostType_: - return (void*)soap_instantiate_tt__NetworkHostType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv4Address__: - return (void*)soap_instantiate_tt__IPv4Address__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv6Address__: - return (void*)soap_instantiate_tt__IPv6Address__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__HwAddress__: - return (void*)soap_instantiate_tt__HwAddress__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPType_: - return (void*)soap_instantiate_tt__IPType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DNSName__: - return (void*)soap_instantiate_tt__DNSName__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Domain__: - return (void*)soap_instantiate_tt__Domain__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPAddressFilterType_: - return (void*)soap_instantiate_tt__IPAddressFilterType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DynamicDNSType_: - return (void*)soap_instantiate_tt__DynamicDNSType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11SSIDType__: - return (void*)soap_instantiate_tt__Dot11SSIDType__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11StationMode_: - return (void*)soap_instantiate_tt__Dot11StationMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11SecurityMode_: - return (void*)soap_instantiate_tt__Dot11SecurityMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11Cipher_: - return (void*)soap_instantiate_tt__Dot11Cipher_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11PSK__: - return (void*)soap_instantiate_tt__Dot11PSK__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11PSKPassphrase__: - return (void*)soap_instantiate_tt__Dot11PSKPassphrase__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11SignalStrength_: - return (void*)soap_instantiate_tt__Dot11SignalStrength_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite_: - return (void*)soap_instantiate_tt__Dot11AuthAndMangementSuite_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CapabilityCategory_: - return (void*)soap_instantiate_tt__CapabilityCategory_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemLogType_: - return (void*)soap_instantiate_tt__SystemLogType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FactoryDefaultType_: - return (void*)soap_instantiate_tt__FactoryDefaultType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SetDateTimeType_: - return (void*)soap_instantiate_tt__SetDateTimeType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__UserLevel_: - return (void*)soap_instantiate_tt__UserLevel_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelayLogicalState_: - return (void*)soap_instantiate_tt__RelayLogicalState_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelayIdleState_: - return (void*)soap_instantiate_tt__RelayIdleState_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelayMode_: - return (void*)soap_instantiate_tt__RelayMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DigitalIdleState_: - return (void*)soap_instantiate_tt__DigitalIdleState_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EFlipMode_: - return (void*)soap_instantiate_tt__EFlipMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReverseMode_: - return (void*)soap_instantiate_tt__ReverseMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AuxiliaryData__: - return (void*)soap_instantiate_tt__AuxiliaryData__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourState_: - return (void*)soap_instantiate_tt__PTZPresetTourState_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourDirection_: - return (void*)soap_instantiate_tt__PTZPresetTourDirection_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourOperation_: - return (void*)soap_instantiate_tt__PTZPresetTourOperation_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MoveAndTrackMethod_: - return (void*)soap_instantiate_tt__MoveAndTrackMethod_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AutoFocusMode_: - return (void*)soap_instantiate_tt__AutoFocusMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AFModes_: - return (void*)soap_instantiate_tt__AFModes_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WideDynamicMode_: - return (void*)soap_instantiate_tt__WideDynamicMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__BacklightCompensationMode_: - return (void*)soap_instantiate_tt__BacklightCompensationMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ExposurePriority_: - return (void*)soap_instantiate_tt__ExposurePriority_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ExposureMode_: - return (void*)soap_instantiate_tt__ExposureMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Enabled_: - return (void*)soap_instantiate_tt__Enabled_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WhiteBalanceMode_: - return (void*)soap_instantiate_tt__WhiteBalanceMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IrCutFilterMode_: - return (void*)soap_instantiate_tt__IrCutFilterMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImageStabilizationMode_: - return (void*)soap_instantiate_tt__ImageStabilizationMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_: - return (void*)soap_instantiate_tt__IrCutFilterAutoBoundaryType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ToneCompensationMode_: - return (void*)soap_instantiate_tt__ToneCompensationMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DefoggingMode_: - return (void*)soap_instantiate_tt__DefoggingMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImageSendingType_: - return (void*)soap_instantiate_tt__ImageSendingType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PropertyOperation_: - return (void*)soap_instantiate_tt__PropertyOperation_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Direction_: - return (void*)soap_instantiate_tt__Direction_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReceiverMode_: - return (void*)soap_instantiate_tt__ReceiverMode_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReceiverState_: - return (void*)soap_instantiate_tt__ReceiverState_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Description__: - return (void*)soap_instantiate_tt__Description__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__XPathExpression__: - return (void*)soap_instantiate_tt__XPathExpression__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SearchState_: - return (void*)soap_instantiate_tt__SearchState_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingStatus_: - return (void*)soap_instantiate_tt__RecordingStatus_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TrackType_: - return (void*)soap_instantiate_tt__TrackType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobMode__: - return (void*)soap_instantiate_tt__RecordingJobMode__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobState__: - return (void*)soap_instantiate_tt__RecordingJobState__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ModeOfOperation_: - return (void*)soap_instantiate_tt__ModeOfOperation_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioClassType__: - return (void*)soap_instantiate_tt__AudioClassType__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDType_: - return (void*)soap_instantiate_tt__OSDType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__SerialPortType_: - return (void*)soap_instantiate_tmd__SerialPortType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__ParityBit_: - return (void*)soap_instantiate_tmd__ParityBit_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__AutoGeoModes_: - return (void*)soap_instantiate_tds__AutoGeoModes_(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__StorageType_: - return (void*)soap_instantiate_tds__StorageType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_timg__ImagingPresetType_: - return (void*)soap_instantiate_timg__ImagingPresetType_(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__FullTopicExpression__: - return (void*)soap_instantiate_wstop__FullTopicExpression__(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__ConcreteTopicExpression__: - return (void*)soap_instantiate_wstop__ConcreteTopicExpression__(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__SimpleTopicExpression__: - return (void*)soap_instantiate_wstop__SimpleTopicExpression__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReceiverReference__: - return (void*)soap_instantiate_tt__ReceiverReference__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingReference__: - return (void*)soap_instantiate_tt__RecordingReference__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TrackReference__: - return (void*)soap_instantiate_tt__TrackReference__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__JobToken__: - return (void*)soap_instantiate_tt__JobToken__(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobReference__: - return (void*)soap_instantiate_tt__RecordingJobReference__(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__QueryExpressionType: - return (void*)soap_instantiate_wsnt__QueryExpressionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__TopicExpressionType: - return (void*)soap_instantiate_wsnt__TopicExpressionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__FilterType: - return (void*)soap_instantiate_wsnt__FilterType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__SubscriptionPolicyType: - return (void*)soap_instantiate_wsnt__SubscriptionPolicyType(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__NotificationMessageHolderType_Message: - return (void*)soap_instantiate__wsnt__NotificationMessageHolderType_Message(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__NotificationMessageHolderType: - return (void*)soap_instantiate_wsnt__NotificationMessageHolderType(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__NotificationProducerRP: - return (void*)soap_instantiate__wsnt__NotificationProducerRP(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__SubscriptionManagerRP: - return (void*)soap_instantiate__wsnt__SubscriptionManagerRP(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__Notify: - return (void*)soap_instantiate__wsnt__Notify(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__UseRaw: - return (void*)soap_instantiate__wsnt__UseRaw(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy: - return (void*)soap_instantiate__wsnt__Subscribe_SubscriptionPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__Subscribe: - return (void*)soap_instantiate__wsnt__Subscribe(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__SubscribeResponse: - return (void*)soap_instantiate__wsnt__SubscribeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__GetCurrentMessage: - return (void*)soap_instantiate__wsnt__GetCurrentMessage(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__GetCurrentMessageResponse: - return (void*)soap_instantiate__wsnt__GetCurrentMessageResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__GetMessages: - return (void*)soap_instantiate__wsnt__GetMessages(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__GetMessagesResponse: - return (void*)soap_instantiate__wsnt__GetMessagesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__DestroyPullPoint: - return (void*)soap_instantiate__wsnt__DestroyPullPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__DestroyPullPointResponse: - return (void*)soap_instantiate__wsnt__DestroyPullPointResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__CreatePullPoint: - return (void*)soap_instantiate__wsnt__CreatePullPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__CreatePullPointResponse: - return (void*)soap_instantiate__wsnt__CreatePullPointResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__Renew: - return (void*)soap_instantiate__wsnt__Renew(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__RenewResponse: - return (void*)soap_instantiate__wsnt__RenewResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__Unsubscribe: - return (void*)soap_instantiate__wsnt__Unsubscribe(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__UnsubscribeResponse: - return (void*)soap_instantiate__wsnt__UnsubscribeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__PauseSubscription: - return (void*)soap_instantiate__wsnt__PauseSubscription(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__PauseSubscriptionResponse: - return (void*)soap_instantiate__wsnt__PauseSubscriptionResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__ResumeSubscription: - return (void*)soap_instantiate__wsnt__ResumeSubscription(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsnt__ResumeSubscriptionResponse: - return (void*)soap_instantiate__wsnt__ResumeSubscriptionResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode: - return (void*)soap_instantiate__wsrfbf__BaseFaultType_ErrorCode(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsrfbf__BaseFaultType_Description: - return (void*)soap_instantiate__wsrfbf__BaseFaultType_Description(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause: - return (void*)soap_instantiate__wsrfbf__BaseFaultType_FaultCause(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsrfbf__BaseFaultType: - return (void*)soap_instantiate_wsrfbf__BaseFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_tev__Capabilities: - return (void*)soap_instantiate_tev__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tev__SubscriptionPolicy: - return (void*)soap_instantiate_tev__SubscriptionPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__GetServiceCapabilities: - return (void*)soap_instantiate__tev__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__tev__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy: - return (void*)soap_instantiate__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__CreatePullPointSubscription: - return (void*)soap_instantiate__tev__CreatePullPointSubscription(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__CreatePullPointSubscriptionResponse: - return (void*)soap_instantiate__tev__CreatePullPointSubscriptionResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__PullMessages: - return (void*)soap_instantiate__tev__PullMessages(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__PullMessagesResponse: - return (void*)soap_instantiate__tev__PullMessagesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__PullMessagesFaultResponse: - return (void*)soap_instantiate__tev__PullMessagesFaultResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__Seek: - return (void*)soap_instantiate__tev__Seek(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__SeekResponse: - return (void*)soap_instantiate__tev__SeekResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__SetSynchronizationPoint: - return (void*)soap_instantiate__tev__SetSynchronizationPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__SetSynchronizationPointResponse: - return (void*)soap_instantiate__tev__SetSynchronizationPointResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__GetEventProperties: - return (void*)soap_instantiate__tev__GetEventProperties(soap, -1, type, arrayType, n); - case SOAP_TYPE__tev__GetEventPropertiesResponse: - return (void*)soap_instantiate__tev__GetEventPropertiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IntRange: - return (void*)soap_instantiate_tt__IntRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Vector2D: - return (void*)soap_instantiate_tt__Vector2D(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Vector1D: - return (void*)soap_instantiate_tt__Vector1D(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZVector: - return (void*)soap_instantiate_tt__PTZVector(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZStatus: - return (void*)soap_instantiate_tt__PTZStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZMoveStatus: - return (void*)soap_instantiate_tt__PTZMoveStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Vector: - return (void*)soap_instantiate_tt__Vector(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Rectangle: - return (void*)soap_instantiate_tt__Rectangle(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Polygon: - return (void*)soap_instantiate_tt__Polygon(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Color: - return (void*)soap_instantiate_tt__Color(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ColorCovariance: - return (void*)soap_instantiate_tt__ColorCovariance(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__ColorDescriptor_ColorCluster: - return (void*)soap_instantiate__tt__ColorDescriptor_ColorCluster(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ColorDescriptor: - return (void*)soap_instantiate_tt__ColorDescriptor(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Transformation: - return (void*)soap_instantiate_tt__Transformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TransformationExtension: - return (void*)soap_instantiate_tt__TransformationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__GeoLocation: - return (void*)soap_instantiate_tt__GeoLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__GeoOrientation: - return (void*)soap_instantiate_tt__GeoOrientation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LocalLocation: - return (void*)soap_instantiate_tt__LocalLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LocalOrientation: - return (void*)soap_instantiate_tt__LocalOrientation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LocationEntity: - return (void*)soap_instantiate_tt__LocationEntity(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DeviceEntity: - return (void*)soap_instantiate_tt__DeviceEntity(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IntRectangle: - return (void*)soap_instantiate_tt__IntRectangle(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IntRectangleRange: - return (void*)soap_instantiate_tt__IntRectangleRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FloatRange: - return (void*)soap_instantiate_tt__FloatRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DurationRange: - return (void*)soap_instantiate_tt__DurationRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IntItems: - return (void*)soap_instantiate_tt__IntItems(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FloatItems: - return (void*)soap_instantiate_tt__FloatItems(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnyHolder: - return (void*)soap_instantiate_tt__AnyHolder(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceExtension: - return (void*)soap_instantiate_tt__VideoSourceExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceExtension2: - return (void*)soap_instantiate_tt__VideoSourceExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Profile: - return (void*)soap_instantiate_tt__Profile(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ProfileExtension: - return (void*)soap_instantiate_tt__ProfileExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ProfileExtension2: - return (void*)soap_instantiate_tt__ProfileExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ConfigurationEntity: - return (void*)soap_instantiate_tt__ConfigurationEntity(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceConfigurationExtension: - return (void*)soap_instantiate_tt__VideoSourceConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceConfigurationExtension2: - return (void*)soap_instantiate_tt__VideoSourceConfigurationExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Rotate: - return (void*)soap_instantiate_tt__Rotate(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RotateExtension: - return (void*)soap_instantiate_tt__RotateExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LensProjection: - return (void*)soap_instantiate_tt__LensProjection(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LensOffset: - return (void*)soap_instantiate_tt__LensOffset(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LensDescription: - return (void*)soap_instantiate_tt__LensDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceConfigurationOptions: - return (void*)soap_instantiate_tt__VideoSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension: - return (void*)soap_instantiate_tt__VideoSourceConfigurationOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2: - return (void*)soap_instantiate_tt__VideoSourceConfigurationOptionsExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RotateOptions: - return (void*)soap_instantiate_tt__RotateOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RotateOptionsExtension: - return (void*)soap_instantiate_tt__RotateOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SceneOrientation: - return (void*)soap_instantiate_tt__SceneOrientation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoResolution: - return (void*)soap_instantiate_tt__VideoResolution(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoRateControl: - return (void*)soap_instantiate_tt__VideoRateControl(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Mpeg4Configuration: - return (void*)soap_instantiate_tt__Mpeg4Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__H264Configuration: - return (void*)soap_instantiate_tt__H264Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncoderConfigurationOptions: - return (void*)soap_instantiate_tt__VideoEncoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncoderOptionsExtension: - return (void*)soap_instantiate_tt__VideoEncoderOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncoderOptionsExtension2: - return (void*)soap_instantiate_tt__VideoEncoderOptionsExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__JpegOptions: - return (void*)soap_instantiate_tt__JpegOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Mpeg4Options: - return (void*)soap_instantiate_tt__Mpeg4Options(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__H264Options: - return (void*)soap_instantiate_tt__H264Options(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoResolution2: - return (void*)soap_instantiate_tt__VideoResolution2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoRateControl2: - return (void*)soap_instantiate_tt__VideoRateControl2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions: - return (void*)soap_instantiate_tt__VideoEncoder2ConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioSourceConfigurationOptions: - return (void*)soap_instantiate_tt__AudioSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioSourceOptionsExtension: - return (void*)soap_instantiate_tt__AudioSourceOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioEncoderConfigurationOptions: - return (void*)soap_instantiate_tt__AudioEncoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioEncoderConfigurationOption: - return (void*)soap_instantiate_tt__AudioEncoderConfigurationOption(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions: - return (void*)soap_instantiate_tt__AudioEncoder2ConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataConfigurationExtension: - return (void*)soap_instantiate_tt__MetadataConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZFilter: - return (void*)soap_instantiate_tt__PTZFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy: - return (void*)soap_instantiate__tt__EventSubscription_SubscriptionPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EventSubscription: - return (void*)soap_instantiate_tt__EventSubscription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataConfigurationOptions: - return (void*)soap_instantiate_tt__MetadataConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension: - return (void*)soap_instantiate_tt__MetadataConfigurationOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2: - return (void*)soap_instantiate_tt__MetadataConfigurationOptionsExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZStatusFilterOptions: - return (void*)soap_instantiate_tt__PTZStatusFilterOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZStatusFilterOptionsExtension: - return (void*)soap_instantiate_tt__PTZStatusFilterOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoOutputExtension: - return (void*)soap_instantiate_tt__VideoOutputExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoOutputConfigurationOptions: - return (void*)soap_instantiate_tt__VideoOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoDecoderConfigurationOptions: - return (void*)soap_instantiate_tt__VideoDecoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__H264DecOptions: - return (void*)soap_instantiate_tt__H264DecOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__JpegDecOptions: - return (void*)soap_instantiate_tt__JpegDecOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Mpeg4DecOptions: - return (void*)soap_instantiate_tt__Mpeg4DecOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension: - return (void*)soap_instantiate_tt__VideoDecoderConfigurationOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioOutputConfigurationOptions: - return (void*)soap_instantiate_tt__AudioOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioDecoderConfigurationOptions: - return (void*)soap_instantiate_tt__AudioDecoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__G711DecOptions: - return (void*)soap_instantiate_tt__G711DecOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AACDecOptions: - return (void*)soap_instantiate_tt__AACDecOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__G726DecOptions: - return (void*)soap_instantiate_tt__G726DecOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension: - return (void*)soap_instantiate_tt__AudioDecoderConfigurationOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MulticastConfiguration: - return (void*)soap_instantiate_tt__MulticastConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__StreamSetup: - return (void*)soap_instantiate_tt__StreamSetup(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Transport: - return (void*)soap_instantiate_tt__Transport(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MediaUri: - return (void*)soap_instantiate_tt__MediaUri(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Scope: - return (void*)soap_instantiate_tt__Scope(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceExtension: - return (void*)soap_instantiate_tt__NetworkInterfaceExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot3Configuration: - return (void*)soap_instantiate_tt__Dot3Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceExtension2: - return (void*)soap_instantiate_tt__NetworkInterfaceExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceLink: - return (void*)soap_instantiate_tt__NetworkInterfaceLink(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceConnectionSetting: - return (void*)soap_instantiate_tt__NetworkInterfaceConnectionSetting(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceInfo: - return (void*)soap_instantiate_tt__NetworkInterfaceInfo(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv6NetworkInterface: - return (void*)soap_instantiate_tt__IPv6NetworkInterface(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv4NetworkInterface: - return (void*)soap_instantiate_tt__IPv4NetworkInterface(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv4Configuration: - return (void*)soap_instantiate_tt__IPv4Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv6Configuration: - return (void*)soap_instantiate_tt__IPv6Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv6ConfigurationExtension: - return (void*)soap_instantiate_tt__IPv6ConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkProtocol: - return (void*)soap_instantiate_tt__NetworkProtocol(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkProtocolExtension: - return (void*)soap_instantiate_tt__NetworkProtocolExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkHost: - return (void*)soap_instantiate_tt__NetworkHost(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkHostExtension: - return (void*)soap_instantiate_tt__NetworkHostExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPAddress: - return (void*)soap_instantiate_tt__IPAddress(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PrefixedIPv4Address: - return (void*)soap_instantiate_tt__PrefixedIPv4Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PrefixedIPv6Address: - return (void*)soap_instantiate_tt__PrefixedIPv6Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__HostnameInformation: - return (void*)soap_instantiate_tt__HostnameInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__HostnameInformationExtension: - return (void*)soap_instantiate_tt__HostnameInformationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DNSInformation: - return (void*)soap_instantiate_tt__DNSInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DNSInformationExtension: - return (void*)soap_instantiate_tt__DNSInformationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NTPInformation: - return (void*)soap_instantiate_tt__NTPInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NTPInformationExtension: - return (void*)soap_instantiate_tt__NTPInformationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DynamicDNSInformation: - return (void*)soap_instantiate_tt__DynamicDNSInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DynamicDNSInformationExtension: - return (void*)soap_instantiate_tt__DynamicDNSInformationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceSetConfiguration: - return (void*)soap_instantiate_tt__NetworkInterfaceSetConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension: - return (void*)soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration: - return (void*)soap_instantiate_tt__IPv6NetworkInterfaceSetConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration: - return (void*)soap_instantiate_tt__IPv4NetworkInterfaceSetConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkGateway: - return (void*)soap_instantiate_tt__NetworkGateway(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkZeroConfiguration: - return (void*)soap_instantiate_tt__NetworkZeroConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension: - return (void*)soap_instantiate_tt__NetworkZeroConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension2: - return (void*)soap_instantiate_tt__NetworkZeroConfigurationExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPAddressFilter: - return (void*)soap_instantiate_tt__IPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPAddressFilterExtension: - return (void*)soap_instantiate_tt__IPAddressFilterExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11Configuration: - return (void*)soap_instantiate_tt__Dot11Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11SecurityConfiguration: - return (void*)soap_instantiate_tt__Dot11SecurityConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11SecurityConfigurationExtension: - return (void*)soap_instantiate_tt__Dot11SecurityConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11PSKSet: - return (void*)soap_instantiate_tt__Dot11PSKSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11PSKSetExtension: - return (void*)soap_instantiate_tt__Dot11PSKSetExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2: - return (void*)soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11Capabilities: - return (void*)soap_instantiate_tt__Dot11Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11Status: - return (void*)soap_instantiate_tt__Dot11Status(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11AvailableNetworks: - return (void*)soap_instantiate_tt__Dot11AvailableNetworks(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11AvailableNetworksExtension: - return (void*)soap_instantiate_tt__Dot11AvailableNetworksExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Capabilities: - return (void*)soap_instantiate_tt__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CapabilitiesExtension: - return (void*)soap_instantiate_tt__CapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CapabilitiesExtension2: - return (void*)soap_instantiate_tt__CapabilitiesExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsCapabilities: - return (void*)soap_instantiate_tt__AnalyticsCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DeviceCapabilities: - return (void*)soap_instantiate_tt__DeviceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DeviceCapabilitiesExtension: - return (void*)soap_instantiate_tt__DeviceCapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EventCapabilities: - return (void*)soap_instantiate_tt__EventCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IOCapabilities: - return (void*)soap_instantiate_tt__IOCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IOCapabilitiesExtension: - return (void*)soap_instantiate_tt__IOCapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IOCapabilitiesExtension2: - return (void*)soap_instantiate_tt__IOCapabilitiesExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MediaCapabilities: - return (void*)soap_instantiate_tt__MediaCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MediaCapabilitiesExtension: - return (void*)soap_instantiate_tt__MediaCapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RealTimeStreamingCapabilities: - return (void*)soap_instantiate_tt__RealTimeStreamingCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension: - return (void*)soap_instantiate_tt__RealTimeStreamingCapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ProfileCapabilities: - return (void*)soap_instantiate_tt__ProfileCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkCapabilities: - return (void*)soap_instantiate_tt__NetworkCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkCapabilitiesExtension: - return (void*)soap_instantiate_tt__NetworkCapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkCapabilitiesExtension2: - return (void*)soap_instantiate_tt__NetworkCapabilitiesExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SecurityCapabilities: - return (void*)soap_instantiate_tt__SecurityCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SecurityCapabilitiesExtension: - return (void*)soap_instantiate_tt__SecurityCapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SecurityCapabilitiesExtension2: - return (void*)soap_instantiate_tt__SecurityCapabilitiesExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemCapabilities: - return (void*)soap_instantiate_tt__SystemCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemCapabilitiesExtension: - return (void*)soap_instantiate_tt__SystemCapabilitiesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemCapabilitiesExtension2: - return (void*)soap_instantiate_tt__SystemCapabilitiesExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OnvifVersion: - return (void*)soap_instantiate_tt__OnvifVersion(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingCapabilities: - return (void*)soap_instantiate_tt__ImagingCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZCapabilities: - return (void*)soap_instantiate_tt__PTZCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DeviceIOCapabilities: - return (void*)soap_instantiate_tt__DeviceIOCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DisplayCapabilities: - return (void*)soap_instantiate_tt__DisplayCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingCapabilities: - return (void*)soap_instantiate_tt__RecordingCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SearchCapabilities: - return (void*)soap_instantiate_tt__SearchCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReplayCapabilities: - return (void*)soap_instantiate_tt__ReplayCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReceiverCapabilities: - return (void*)soap_instantiate_tt__ReceiverCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsDeviceCapabilities: - return (void*)soap_instantiate_tt__AnalyticsDeviceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsDeviceExtension: - return (void*)soap_instantiate_tt__AnalyticsDeviceExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemLog: - return (void*)soap_instantiate_tt__SystemLog(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SupportInformation: - return (void*)soap_instantiate_tt__SupportInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__BinaryData: - return (void*)soap_instantiate_tt__BinaryData(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AttachmentData: - return (void*)soap_instantiate_tt__AttachmentData(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__BackupFile: - return (void*)soap_instantiate_tt__BackupFile(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemLogUriList: - return (void*)soap_instantiate_tt__SystemLogUriList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemLogUri: - return (void*)soap_instantiate_tt__SystemLogUri(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemDateTime: - return (void*)soap_instantiate_tt__SystemDateTime(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SystemDateTimeExtension: - return (void*)soap_instantiate_tt__SystemDateTimeExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DateTime: - return (void*)soap_instantiate_tt__DateTime(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Date: - return (void*)soap_instantiate_tt__Date(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Time: - return (void*)soap_instantiate_tt__Time(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TimeZone: - return (void*)soap_instantiate_tt__TimeZone(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RemoteUser: - return (void*)soap_instantiate_tt__RemoteUser(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__User: - return (void*)soap_instantiate_tt__User(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__UserExtension: - return (void*)soap_instantiate_tt__UserExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CertificateGenerationParameters: - return (void*)soap_instantiate_tt__CertificateGenerationParameters(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CertificateGenerationParametersExtension: - return (void*)soap_instantiate_tt__CertificateGenerationParametersExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Certificate: - return (void*)soap_instantiate_tt__Certificate(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CertificateStatus: - return (void*)soap_instantiate_tt__CertificateStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CertificateWithPrivateKey: - return (void*)soap_instantiate_tt__CertificateWithPrivateKey(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CertificateInformation: - return (void*)soap_instantiate_tt__CertificateInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CertificateInformationExtension: - return (void*)soap_instantiate_tt__CertificateInformationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot1XConfiguration: - return (void*)soap_instantiate_tt__Dot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot1XConfigurationExtension: - return (void*)soap_instantiate_tt__Dot1XConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EAPMethodConfiguration: - return (void*)soap_instantiate_tt__EAPMethodConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EapMethodExtension: - return (void*)soap_instantiate_tt__EapMethodExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TLSConfiguration: - return (void*)soap_instantiate_tt__TLSConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__GenericEapPwdConfigurationExtension: - return (void*)soap_instantiate_tt__GenericEapPwdConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelayOutputSettings: - return (void*)soap_instantiate_tt__RelayOutputSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZNodeExtension: - return (void*)soap_instantiate_tt__PTZNodeExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZNodeExtension2: - return (void*)soap_instantiate_tt__PTZNodeExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourSupported: - return (void*)soap_instantiate_tt__PTZPresetTourSupported(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourSupportedExtension: - return (void*)soap_instantiate_tt__PTZPresetTourSupportedExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZConfigurationExtension: - return (void*)soap_instantiate_tt__PTZConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZConfigurationExtension2: - return (void*)soap_instantiate_tt__PTZConfigurationExtension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTControlDirection: - return (void*)soap_instantiate_tt__PTControlDirection(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTControlDirectionExtension: - return (void*)soap_instantiate_tt__PTControlDirectionExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EFlip: - return (void*)soap_instantiate_tt__EFlip(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Reverse: - return (void*)soap_instantiate_tt__Reverse(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZConfigurationOptions: - return (void*)soap_instantiate_tt__PTZConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZConfigurationOptions2: - return (void*)soap_instantiate_tt__PTZConfigurationOptions2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTControlDirectionOptions: - return (void*)soap_instantiate_tt__PTControlDirectionOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTControlDirectionOptionsExtension: - return (void*)soap_instantiate_tt__PTControlDirectionOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EFlipOptions: - return (void*)soap_instantiate_tt__EFlipOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EFlipOptionsExtension: - return (void*)soap_instantiate_tt__EFlipOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReverseOptions: - return (void*)soap_instantiate_tt__ReverseOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReverseOptionsExtension: - return (void*)soap_instantiate_tt__ReverseOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PanTiltLimits: - return (void*)soap_instantiate_tt__PanTiltLimits(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ZoomLimits: - return (void*)soap_instantiate_tt__ZoomLimits(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZSpaces: - return (void*)soap_instantiate_tt__PTZSpaces(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZSpacesExtension: - return (void*)soap_instantiate_tt__PTZSpacesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Space2DDescription: - return (void*)soap_instantiate_tt__Space2DDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Space1DDescription: - return (void*)soap_instantiate_tt__Space1DDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZSpeed: - return (void*)soap_instantiate_tt__PTZSpeed(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPreset: - return (void*)soap_instantiate_tt__PTZPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PresetTour: - return (void*)soap_instantiate_tt__PresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourExtension: - return (void*)soap_instantiate_tt__PTZPresetTourExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourSpot: - return (void*)soap_instantiate_tt__PTZPresetTourSpot(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourSpotExtension: - return (void*)soap_instantiate_tt__PTZPresetTourSpotExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourPresetDetail: - return (void*)soap_instantiate_tt__PTZPresetTourPresetDetail(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourTypeExtension: - return (void*)soap_instantiate_tt__PTZPresetTourTypeExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourStatus: - return (void*)soap_instantiate_tt__PTZPresetTourStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourStatusExtension: - return (void*)soap_instantiate_tt__PTZPresetTourStatusExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourStartingCondition: - return (void*)soap_instantiate_tt__PTZPresetTourStartingCondition(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension: - return (void*)soap_instantiate_tt__PTZPresetTourStartingConditionExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourOptions: - return (void*)soap_instantiate_tt__PTZPresetTourOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourSpotOptions: - return (void*)soap_instantiate_tt__PTZPresetTourSpotOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions: - return (void*)soap_instantiate_tt__PTZPresetTourPresetDetailOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension: - return (void*)soap_instantiate_tt__PTZPresetTourPresetDetailOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions: - return (void*)soap_instantiate_tt__PTZPresetTourStartingConditionOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension: - return (void*)soap_instantiate_tt__PTZPresetTourStartingConditionOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingStatus: - return (void*)soap_instantiate_tt__ImagingStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusStatus: - return (void*)soap_instantiate_tt__FocusStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusConfiguration: - return (void*)soap_instantiate_tt__FocusConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingSettings: - return (void*)soap_instantiate_tt__ImagingSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingSettingsExtension: - return (void*)soap_instantiate_tt__ImagingSettingsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Exposure: - return (void*)soap_instantiate_tt__Exposure(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WideDynamicRange: - return (void*)soap_instantiate_tt__WideDynamicRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__BacklightCompensation: - return (void*)soap_instantiate_tt__BacklightCompensation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingOptions: - return (void*)soap_instantiate_tt__ImagingOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WideDynamicRangeOptions: - return (void*)soap_instantiate_tt__WideDynamicRangeOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__BacklightCompensationOptions: - return (void*)soap_instantiate_tt__BacklightCompensationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusOptions: - return (void*)soap_instantiate_tt__FocusOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ExposureOptions: - return (void*)soap_instantiate_tt__ExposureOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WhiteBalanceOptions: - return (void*)soap_instantiate_tt__WhiteBalanceOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusMove: - return (void*)soap_instantiate_tt__FocusMove(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AbsoluteFocus: - return (void*)soap_instantiate_tt__AbsoluteFocus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelativeFocus: - return (void*)soap_instantiate_tt__RelativeFocus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ContinuousFocus: - return (void*)soap_instantiate_tt__ContinuousFocus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MoveOptions: - return (void*)soap_instantiate_tt__MoveOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AbsoluteFocusOptions: - return (void*)soap_instantiate_tt__AbsoluteFocusOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelativeFocusOptions: - return (void*)soap_instantiate_tt__RelativeFocusOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ContinuousFocusOptions: - return (void*)soap_instantiate_tt__ContinuousFocusOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WhiteBalance: - return (void*)soap_instantiate_tt__WhiteBalance(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingStatus20: - return (void*)soap_instantiate_tt__ImagingStatus20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingStatus20Extension: - return (void*)soap_instantiate_tt__ImagingStatus20Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusStatus20: - return (void*)soap_instantiate_tt__FocusStatus20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusStatus20Extension: - return (void*)soap_instantiate_tt__FocusStatus20Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingSettings20: - return (void*)soap_instantiate_tt__ImagingSettings20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingSettingsExtension20: - return (void*)soap_instantiate_tt__ImagingSettingsExtension20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingSettingsExtension202: - return (void*)soap_instantiate_tt__ImagingSettingsExtension202(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingSettingsExtension203: - return (void*)soap_instantiate_tt__ImagingSettingsExtension203(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingSettingsExtension204: - return (void*)soap_instantiate_tt__ImagingSettingsExtension204(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImageStabilization: - return (void*)soap_instantiate_tt__ImageStabilization(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImageStabilizationExtension: - return (void*)soap_instantiate_tt__ImageStabilizationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustment: - return (void*)soap_instantiate_tt__IrCutFilterAutoAdjustment(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension: - return (void*)soap_instantiate_tt__IrCutFilterAutoAdjustmentExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WideDynamicRange20: - return (void*)soap_instantiate_tt__WideDynamicRange20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__BacklightCompensation20: - return (void*)soap_instantiate_tt__BacklightCompensation20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Exposure20: - return (void*)soap_instantiate_tt__Exposure20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ToneCompensation: - return (void*)soap_instantiate_tt__ToneCompensation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ToneCompensationExtension: - return (void*)soap_instantiate_tt__ToneCompensationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Defogging: - return (void*)soap_instantiate_tt__Defogging(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DefoggingExtension: - return (void*)soap_instantiate_tt__DefoggingExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NoiseReduction: - return (void*)soap_instantiate_tt__NoiseReduction(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingOptions20: - return (void*)soap_instantiate_tt__ImagingOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingOptions20Extension: - return (void*)soap_instantiate_tt__ImagingOptions20Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingOptions20Extension2: - return (void*)soap_instantiate_tt__ImagingOptions20Extension2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingOptions20Extension3: - return (void*)soap_instantiate_tt__ImagingOptions20Extension3(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImagingOptions20Extension4: - return (void*)soap_instantiate_tt__ImagingOptions20Extension4(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImageStabilizationOptions: - return (void*)soap_instantiate_tt__ImageStabilizationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ImageStabilizationOptionsExtension: - return (void*)soap_instantiate_tt__ImageStabilizationOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions: - return (void*)soap_instantiate_tt__IrCutFilterAutoAdjustmentOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension: - return (void*)soap_instantiate_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WideDynamicRangeOptions20: - return (void*)soap_instantiate_tt__WideDynamicRangeOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__BacklightCompensationOptions20: - return (void*)soap_instantiate_tt__BacklightCompensationOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ExposureOptions20: - return (void*)soap_instantiate_tt__ExposureOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MoveOptions20: - return (void*)soap_instantiate_tt__MoveOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelativeFocusOptions20: - return (void*)soap_instantiate_tt__RelativeFocusOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WhiteBalance20: - return (void*)soap_instantiate_tt__WhiteBalance20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WhiteBalance20Extension: - return (void*)soap_instantiate_tt__WhiteBalance20Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusConfiguration20: - return (void*)soap_instantiate_tt__FocusConfiguration20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusConfiguration20Extension: - return (void*)soap_instantiate_tt__FocusConfiguration20Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WhiteBalanceOptions20: - return (void*)soap_instantiate_tt__WhiteBalanceOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__WhiteBalanceOptions20Extension: - return (void*)soap_instantiate_tt__WhiteBalanceOptions20Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusOptions20: - return (void*)soap_instantiate_tt__FocusOptions20(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FocusOptions20Extension: - return (void*)soap_instantiate_tt__FocusOptions20Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ToneCompensationOptions: - return (void*)soap_instantiate_tt__ToneCompensationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DefoggingOptions: - return (void*)soap_instantiate_tt__DefoggingOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NoiseReductionOptions: - return (void*)soap_instantiate_tt__NoiseReductionOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MessageExtension: - return (void*)soap_instantiate_tt__MessageExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__ItemList_SimpleItem: - return (void*)soap_instantiate__tt__ItemList_SimpleItem(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__ItemList_ElementItem: - return (void*)soap_instantiate__tt__ItemList_ElementItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ItemList: - return (void*)soap_instantiate_tt__ItemList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ItemListExtension: - return (void*)soap_instantiate_tt__ItemListExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MessageDescription: - return (void*)soap_instantiate_tt__MessageDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MessageDescriptionExtension: - return (void*)soap_instantiate_tt__MessageDescriptionExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription: - return (void*)soap_instantiate__tt__ItemListDescription_SimpleItemDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__ItemListDescription_ElementItemDescription: - return (void*)soap_instantiate__tt__ItemListDescription_ElementItemDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ItemListDescription: - return (void*)soap_instantiate_tt__ItemListDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ItemListDescriptionExtension: - return (void*)soap_instantiate_tt__ItemListDescriptionExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Polyline: - return (void*)soap_instantiate_tt__Polyline(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsEngineConfiguration: - return (void*)soap_instantiate_tt__AnalyticsEngineConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension: - return (void*)soap_instantiate_tt__AnalyticsEngineConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RuleEngineConfiguration: - return (void*)soap_instantiate_tt__RuleEngineConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RuleEngineConfigurationExtension: - return (void*)soap_instantiate_tt__RuleEngineConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Config: - return (void*)soap_instantiate_tt__Config(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__ConfigDescription_Messages: - return (void*)soap_instantiate__tt__ConfigDescription_Messages(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ConfigDescription: - return (void*)soap_instantiate_tt__ConfigDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ConfigDescriptionExtension: - return (void*)soap_instantiate_tt__ConfigDescriptionExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SupportedRules: - return (void*)soap_instantiate_tt__SupportedRules(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SupportedRulesExtension: - return (void*)soap_instantiate_tt__SupportedRulesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SupportedAnalyticsModules: - return (void*)soap_instantiate_tt__SupportedAnalyticsModules(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SupportedAnalyticsModulesExtension: - return (void*)soap_instantiate_tt__SupportedAnalyticsModulesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PolylineArray: - return (void*)soap_instantiate_tt__PolylineArray(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PolylineArrayExtension: - return (void*)soap_instantiate_tt__PolylineArrayExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PolylineArrayConfiguration: - return (void*)soap_instantiate_tt__PolylineArrayConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MotionExpression: - return (void*)soap_instantiate_tt__MotionExpression(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MotionExpressionConfiguration: - return (void*)soap_instantiate_tt__MotionExpressionConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CellLayout: - return (void*)soap_instantiate_tt__CellLayout(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PaneConfiguration: - return (void*)soap_instantiate_tt__PaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PaneLayout: - return (void*)soap_instantiate_tt__PaneLayout(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Layout: - return (void*)soap_instantiate_tt__Layout(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LayoutExtension: - return (void*)soap_instantiate_tt__LayoutExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CodingCapabilities: - return (void*)soap_instantiate_tt__CodingCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LayoutOptions: - return (void*)soap_instantiate_tt__LayoutOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__LayoutOptionsExtension: - return (void*)soap_instantiate_tt__LayoutOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PaneLayoutOptions: - return (void*)soap_instantiate_tt__PaneLayoutOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PaneOptionExtension: - return (void*)soap_instantiate_tt__PaneOptionExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Receiver: - return (void*)soap_instantiate_tt__Receiver(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReceiverConfiguration: - return (void*)soap_instantiate_tt__ReceiverConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReceiverStateInformation: - return (void*)soap_instantiate_tt__ReceiverStateInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SourceReference: - return (void*)soap_instantiate_tt__SourceReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DateTimeRange: - return (void*)soap_instantiate_tt__DateTimeRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingSummary: - return (void*)soap_instantiate_tt__RecordingSummary(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SearchScope: - return (void*)soap_instantiate_tt__SearchScope(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SearchScopeExtension: - return (void*)soap_instantiate_tt__SearchScopeExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZPositionFilter: - return (void*)soap_instantiate_tt__PTZPositionFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataFilter: - return (void*)soap_instantiate_tt__MetadataFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FindRecordingResultList: - return (void*)soap_instantiate_tt__FindRecordingResultList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FindEventResultList: - return (void*)soap_instantiate_tt__FindEventResultList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FindEventResult: - return (void*)soap_instantiate_tt__FindEventResult(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FindPTZPositionResultList: - return (void*)soap_instantiate_tt__FindPTZPositionResultList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FindPTZPositionResult: - return (void*)soap_instantiate_tt__FindPTZPositionResult(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FindMetadataResultList: - return (void*)soap_instantiate_tt__FindMetadataResultList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FindMetadataResult: - return (void*)soap_instantiate_tt__FindMetadataResult(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingInformation: - return (void*)soap_instantiate_tt__RecordingInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingSourceInformation: - return (void*)soap_instantiate_tt__RecordingSourceInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TrackInformation: - return (void*)soap_instantiate_tt__TrackInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MediaAttributes: - return (void*)soap_instantiate_tt__MediaAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TrackAttributes: - return (void*)soap_instantiate_tt__TrackAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TrackAttributesExtension: - return (void*)soap_instantiate_tt__TrackAttributesExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoAttributes: - return (void*)soap_instantiate_tt__VideoAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioAttributes: - return (void*)soap_instantiate_tt__AudioAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataAttributes: - return (void*)soap_instantiate_tt__MetadataAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingConfiguration: - return (void*)soap_instantiate_tt__RecordingConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TrackConfiguration: - return (void*)soap_instantiate_tt__TrackConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__GetRecordingsResponseItem: - return (void*)soap_instantiate_tt__GetRecordingsResponseItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__GetTracksResponseList: - return (void*)soap_instantiate_tt__GetTracksResponseList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__GetTracksResponseItem: - return (void*)soap_instantiate_tt__GetTracksResponseItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobConfiguration: - return (void*)soap_instantiate_tt__RecordingJobConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobConfigurationExtension: - return (void*)soap_instantiate_tt__RecordingJobConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobSource: - return (void*)soap_instantiate_tt__RecordingJobSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobSourceExtension: - return (void*)soap_instantiate_tt__RecordingJobSourceExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobTrack: - return (void*)soap_instantiate_tt__RecordingJobTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobStateInformation: - return (void*)soap_instantiate_tt__RecordingJobStateInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobStateInformationExtension: - return (void*)soap_instantiate_tt__RecordingJobStateInformationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobStateSource: - return (void*)soap_instantiate_tt__RecordingJobStateSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobStateTracks: - return (void*)soap_instantiate_tt__RecordingJobStateTracks(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobStateTrack: - return (void*)soap_instantiate_tt__RecordingJobStateTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__GetRecordingJobsResponseItem: - return (void*)soap_instantiate_tt__GetRecordingJobsResponseItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReplayConfiguration: - return (void*)soap_instantiate_tt__ReplayConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration: - return (void*)soap_instantiate_tt__AnalyticsDeviceEngineConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension: - return (void*)soap_instantiate_tt__AnalyticsDeviceEngineConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EngineConfiguration: - return (void*)soap_instantiate_tt__EngineConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsEngineInputInfo: - return (void*)soap_instantiate_tt__AnalyticsEngineInputInfo(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension: - return (void*)soap_instantiate_tt__AnalyticsEngineInputInfoExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SourceIdentification: - return (void*)soap_instantiate_tt__SourceIdentification(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__SourceIdentificationExtension: - return (void*)soap_instantiate_tt__SourceIdentificationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataInput: - return (void*)soap_instantiate_tt__MetadataInput(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataInputExtension: - return (void*)soap_instantiate_tt__MetadataInputExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsStateInformation: - return (void*)soap_instantiate_tt__AnalyticsStateInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsState: - return (void*)soap_instantiate_tt__AnalyticsState(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ActionEngineEventPayload: - return (void*)soap_instantiate_tt__ActionEngineEventPayload(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ActionEngineEventPayloadExtension: - return (void*)soap_instantiate_tt__ActionEngineEventPayloadExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioClassCandidate: - return (void*)soap_instantiate_tt__AudioClassCandidate(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioClassDescriptor: - return (void*)soap_instantiate_tt__AudioClassDescriptor(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioClassDescriptorExtension: - return (void*)soap_instantiate_tt__AudioClassDescriptorExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ActiveConnection: - return (void*)soap_instantiate_tt__ActiveConnection(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ProfileStatus: - return (void*)soap_instantiate_tt__ProfileStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ProfileStatusExtension: - return (void*)soap_instantiate_tt__ProfileStatusExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDPosConfiguration: - return (void*)soap_instantiate_tt__OSDPosConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDPosConfigurationExtension: - return (void*)soap_instantiate_tt__OSDPosConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDColor: - return (void*)soap_instantiate_tt__OSDColor(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDTextConfiguration: - return (void*)soap_instantiate_tt__OSDTextConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDTextConfigurationExtension: - return (void*)soap_instantiate_tt__OSDTextConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDImgConfiguration: - return (void*)soap_instantiate_tt__OSDImgConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDImgConfigurationExtension: - return (void*)soap_instantiate_tt__OSDImgConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ColorspaceRange: - return (void*)soap_instantiate_tt__ColorspaceRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ColorOptions: - return (void*)soap_instantiate_tt__ColorOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDColorOptions: - return (void*)soap_instantiate_tt__OSDColorOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDColorOptionsExtension: - return (void*)soap_instantiate_tt__OSDColorOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDTextOptions: - return (void*)soap_instantiate_tt__OSDTextOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDTextOptionsExtension: - return (void*)soap_instantiate_tt__OSDTextOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDImgOptions: - return (void*)soap_instantiate_tt__OSDImgOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDImgOptionsExtension: - return (void*)soap_instantiate_tt__OSDImgOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDConfigurationExtension: - return (void*)soap_instantiate_tt__OSDConfigurationExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MaximumNumberOfOSDs: - return (void*)soap_instantiate_tt__MaximumNumberOfOSDs(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDConfigurationOptions: - return (void*)soap_instantiate_tt__OSDConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDConfigurationOptionsExtension: - return (void*)soap_instantiate_tt__OSDConfigurationOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FileProgress: - return (void*)soap_instantiate_tt__FileProgress(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ArrayOfFileProgress: - return (void*)soap_instantiate_tt__ArrayOfFileProgress(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ArrayOfFileProgressExtension: - return (void*)soap_instantiate_tt__ArrayOfFileProgressExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__StorageReferencePath: - return (void*)soap_instantiate_tt__StorageReferencePath(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__StorageReferencePathExtension: - return (void*)soap_instantiate_tt__StorageReferencePathExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PolygonOptions: - return (void*)soap_instantiate_tt__PolygonOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__StringItems: - return (void*)soap_instantiate__tt__StringItems(soap, -1, type, arrayType, n); - case SOAP_TYPE__tt__Message: - return (void*)soap_instantiate__tt__Message(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__Capabilities: - return (void*)soap_instantiate_tmd__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__RelayOutputOptions: - return (void*)soap_instantiate_tmd__RelayOutputOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__RelayOutputOptionsExtension: - return (void*)soap_instantiate_tmd__RelayOutputOptionsExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__Get: - return (void*)soap_instantiate_tmd__Get(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__GetResponse: - return (void*)soap_instantiate_tmd__GetResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions: - return (void*)soap_instantiate_tmd__DigitalInputConfigurationInputOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__SerialData: - return (void*)soap_instantiate_tmd__SerialData(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__SerialPortConfiguration: - return (void*)soap_instantiate_tmd__SerialPortConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__SerialPortConfigurationOptions: - return (void*)soap_instantiate_tmd__SerialPortConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__ParityBitList: - return (void*)soap_instantiate_tmd__ParityBitList(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetServiceCapabilities: - return (void*)soap_instantiate__tmd__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__tmd__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetRelayOutputOptions: - return (void*)soap_instantiate__tmd__GetRelayOutputOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetRelayOutputOptionsResponse: - return (void*)soap_instantiate__tmd__GetRelayOutputOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoOutputs: - return (void*)soap_instantiate__tmd__GetVideoOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoOutputsResponse: - return (void*)soap_instantiate__tmd__GetVideoOutputsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioSourceConfiguration: - return (void*)soap_instantiate__tmd__GetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse: - return (void*)soap_instantiate__tmd__GetAudioSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioOutputConfiguration: - return (void*)soap_instantiate__tmd__GetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse: - return (void*)soap_instantiate__tmd__GetAudioOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoSourceConfiguration: - return (void*)soap_instantiate__tmd__GetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse: - return (void*)soap_instantiate__tmd__GetVideoSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoOutputConfiguration: - return (void*)soap_instantiate__tmd__GetVideoOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse: - return (void*)soap_instantiate__tmd__GetVideoOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetAudioSourceConfiguration: - return (void*)soap_instantiate__tmd__SetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse: - return (void*)soap_instantiate__tmd__SetAudioSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetAudioOutputConfiguration: - return (void*)soap_instantiate__tmd__SetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse: - return (void*)soap_instantiate__tmd__SetAudioOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetVideoSourceConfiguration: - return (void*)soap_instantiate__tmd__SetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse: - return (void*)soap_instantiate__tmd__SetVideoSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetVideoOutputConfiguration: - return (void*)soap_instantiate__tmd__SetVideoOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse: - return (void*)soap_instantiate__tmd__SetVideoOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions: - return (void*)soap_instantiate__tmd__GetVideoSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse: - return (void*)soap_instantiate__tmd__GetVideoSourceConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions: - return (void*)soap_instantiate__tmd__GetVideoOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse: - return (void*)soap_instantiate__tmd__GetVideoOutputConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions: - return (void*)soap_instantiate__tmd__GetAudioSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse: - return (void*)soap_instantiate__tmd__GetAudioSourceConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions: - return (void*)soap_instantiate__tmd__GetAudioOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse: - return (void*)soap_instantiate__tmd__GetAudioOutputConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetRelayOutputSettings: - return (void*)soap_instantiate__tmd__SetRelayOutputSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetRelayOutputSettingsResponse: - return (void*)soap_instantiate__tmd__SetRelayOutputSettingsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetDigitalInputs: - return (void*)soap_instantiate__tmd__GetDigitalInputs(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetDigitalInputsResponse: - return (void*)soap_instantiate__tmd__GetDigitalInputsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions: - return (void*)soap_instantiate__tmd__GetDigitalInputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse: - return (void*)soap_instantiate__tmd__GetDigitalInputConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetDigitalInputConfigurations: - return (void*)soap_instantiate__tmd__SetDigitalInputConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse: - return (void*)soap_instantiate__tmd__SetDigitalInputConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetSerialPorts: - return (void*)soap_instantiate__tmd__GetSerialPorts(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetSerialPortsResponse: - return (void*)soap_instantiate__tmd__GetSerialPortsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetSerialPortConfiguration: - return (void*)soap_instantiate__tmd__GetSerialPortConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetSerialPortConfigurationResponse: - return (void*)soap_instantiate__tmd__GetSerialPortConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetSerialPortConfiguration: - return (void*)soap_instantiate__tmd__SetSerialPortConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SetSerialPortConfigurationResponse: - return (void*)soap_instantiate__tmd__SetSerialPortConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptions: - return (void*)soap_instantiate__tmd__GetSerialPortConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse: - return (void*)soap_instantiate__tmd__GetSerialPortConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SendReceiveSerialCommand: - return (void*)soap_instantiate__tmd__SendReceiveSerialCommand(soap, -1, type, arrayType, n); - case SOAP_TYPE__tmd__SendReceiveSerialCommandResponse: - return (void*)soap_instantiate__tmd__SendReceiveSerialCommandResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__Service_Capabilities: - return (void*)soap_instantiate__tds__Service_Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__Service: - return (void*)soap_instantiate_tds__Service(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__DeviceServiceCapabilities: - return (void*)soap_instantiate_tds__DeviceServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__NetworkCapabilities: - return (void*)soap_instantiate_tds__NetworkCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__SecurityCapabilities: - return (void*)soap_instantiate_tds__SecurityCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__SystemCapabilities: - return (void*)soap_instantiate_tds__SystemCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__MiscCapabilities: - return (void*)soap_instantiate_tds__MiscCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__UserCredential_Extension: - return (void*)soap_instantiate__tds__UserCredential_Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__UserCredential: - return (void*)soap_instantiate_tds__UserCredential(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__StorageConfigurationData_Extension: - return (void*)soap_instantiate__tds__StorageConfigurationData_Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__StorageConfigurationData: - return (void*)soap_instantiate_tds__StorageConfigurationData(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetServices: - return (void*)soap_instantiate__tds__GetServices(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetServicesResponse: - return (void*)soap_instantiate__tds__GetServicesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetServiceCapabilities: - return (void*)soap_instantiate__tds__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__tds__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDeviceInformation: - return (void*)soap_instantiate__tds__GetDeviceInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDeviceInformationResponse: - return (void*)soap_instantiate__tds__GetDeviceInformationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetSystemDateAndTime: - return (void*)soap_instantiate__tds__SetSystemDateAndTime(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetSystemDateAndTimeResponse: - return (void*)soap_instantiate__tds__SetSystemDateAndTimeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemDateAndTime: - return (void*)soap_instantiate__tds__GetSystemDateAndTime(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemDateAndTimeResponse: - return (void*)soap_instantiate__tds__GetSystemDateAndTimeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetSystemFactoryDefault: - return (void*)soap_instantiate__tds__SetSystemFactoryDefault(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetSystemFactoryDefaultResponse: - return (void*)soap_instantiate__tds__SetSystemFactoryDefaultResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__UpgradeSystemFirmware: - return (void*)soap_instantiate__tds__UpgradeSystemFirmware(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__UpgradeSystemFirmwareResponse: - return (void*)soap_instantiate__tds__UpgradeSystemFirmwareResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SystemReboot: - return (void*)soap_instantiate__tds__SystemReboot(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SystemRebootResponse: - return (void*)soap_instantiate__tds__SystemRebootResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__RestoreSystem: - return (void*)soap_instantiate__tds__RestoreSystem(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__RestoreSystemResponse: - return (void*)soap_instantiate__tds__RestoreSystemResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemBackup: - return (void*)soap_instantiate__tds__GetSystemBackup(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemBackupResponse: - return (void*)soap_instantiate__tds__GetSystemBackupResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemSupportInformation: - return (void*)soap_instantiate__tds__GetSystemSupportInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemSupportInformationResponse: - return (void*)soap_instantiate__tds__GetSystemSupportInformationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemLog: - return (void*)soap_instantiate__tds__GetSystemLog(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemLogResponse: - return (void*)soap_instantiate__tds__GetSystemLogResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetScopes: - return (void*)soap_instantiate__tds__GetScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetScopesResponse: - return (void*)soap_instantiate__tds__GetScopesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetScopes: - return (void*)soap_instantiate__tds__SetScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetScopesResponse: - return (void*)soap_instantiate__tds__SetScopesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__AddScopes: - return (void*)soap_instantiate__tds__AddScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__AddScopesResponse: - return (void*)soap_instantiate__tds__AddScopesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__RemoveScopes: - return (void*)soap_instantiate__tds__RemoveScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__RemoveScopesResponse: - return (void*)soap_instantiate__tds__RemoveScopesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDiscoveryMode: - return (void*)soap_instantiate__tds__GetDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDiscoveryModeResponse: - return (void*)soap_instantiate__tds__GetDiscoveryModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDiscoveryMode: - return (void*)soap_instantiate__tds__SetDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDiscoveryModeResponse: - return (void*)soap_instantiate__tds__SetDiscoveryModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetRemoteDiscoveryMode: - return (void*)soap_instantiate__tds__GetRemoteDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse: - return (void*)soap_instantiate__tds__GetRemoteDiscoveryModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRemoteDiscoveryMode: - return (void*)soap_instantiate__tds__SetRemoteDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse: - return (void*)soap_instantiate__tds__SetRemoteDiscoveryModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDPAddresses: - return (void*)soap_instantiate__tds__GetDPAddresses(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDPAddressesResponse: - return (void*)soap_instantiate__tds__GetDPAddressesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDPAddresses: - return (void*)soap_instantiate__tds__SetDPAddresses(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDPAddressesResponse: - return (void*)soap_instantiate__tds__SetDPAddressesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetEndpointReference: - return (void*)soap_instantiate__tds__GetEndpointReference(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetEndpointReferenceResponse: - return (void*)soap_instantiate__tds__GetEndpointReferenceResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetRemoteUser: - return (void*)soap_instantiate__tds__GetRemoteUser(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetRemoteUserResponse: - return (void*)soap_instantiate__tds__GetRemoteUserResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRemoteUser: - return (void*)soap_instantiate__tds__SetRemoteUser(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRemoteUserResponse: - return (void*)soap_instantiate__tds__SetRemoteUserResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetUsers: - return (void*)soap_instantiate__tds__GetUsers(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetUsersResponse: - return (void*)soap_instantiate__tds__GetUsersResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateUsers: - return (void*)soap_instantiate__tds__CreateUsers(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateUsersResponse: - return (void*)soap_instantiate__tds__CreateUsersResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteUsers: - return (void*)soap_instantiate__tds__DeleteUsers(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteUsersResponse: - return (void*)soap_instantiate__tds__DeleteUsersResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetUser: - return (void*)soap_instantiate__tds__SetUser(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetUserResponse: - return (void*)soap_instantiate__tds__SetUserResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetWsdlUrl: - return (void*)soap_instantiate__tds__GetWsdlUrl(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetWsdlUrlResponse: - return (void*)soap_instantiate__tds__GetWsdlUrlResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCapabilities: - return (void*)soap_instantiate__tds__GetCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCapabilitiesResponse: - return (void*)soap_instantiate__tds__GetCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetHostname: - return (void*)soap_instantiate__tds__GetHostname(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetHostnameResponse: - return (void*)soap_instantiate__tds__GetHostnameResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetHostname: - return (void*)soap_instantiate__tds__SetHostname(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetHostnameResponse: - return (void*)soap_instantiate__tds__SetHostnameResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetHostnameFromDHCP: - return (void*)soap_instantiate__tds__SetHostnameFromDHCP(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetHostnameFromDHCPResponse: - return (void*)soap_instantiate__tds__SetHostnameFromDHCPResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDNS: - return (void*)soap_instantiate__tds__GetDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDNSResponse: - return (void*)soap_instantiate__tds__GetDNSResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDNS: - return (void*)soap_instantiate__tds__SetDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDNSResponse: - return (void*)soap_instantiate__tds__SetDNSResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNTP: - return (void*)soap_instantiate__tds__GetNTP(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNTPResponse: - return (void*)soap_instantiate__tds__GetNTPResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNTP: - return (void*)soap_instantiate__tds__SetNTP(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNTPResponse: - return (void*)soap_instantiate__tds__SetNTPResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDynamicDNS: - return (void*)soap_instantiate__tds__GetDynamicDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDynamicDNSResponse: - return (void*)soap_instantiate__tds__GetDynamicDNSResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDynamicDNS: - return (void*)soap_instantiate__tds__SetDynamicDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDynamicDNSResponse: - return (void*)soap_instantiate__tds__SetDynamicDNSResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNetworkInterfaces: - return (void*)soap_instantiate__tds__GetNetworkInterfaces(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNetworkInterfacesResponse: - return (void*)soap_instantiate__tds__GetNetworkInterfacesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNetworkInterfaces: - return (void*)soap_instantiate__tds__SetNetworkInterfaces(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNetworkInterfacesResponse: - return (void*)soap_instantiate__tds__SetNetworkInterfacesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNetworkProtocols: - return (void*)soap_instantiate__tds__GetNetworkProtocols(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNetworkProtocolsResponse: - return (void*)soap_instantiate__tds__GetNetworkProtocolsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNetworkProtocols: - return (void*)soap_instantiate__tds__SetNetworkProtocols(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNetworkProtocolsResponse: - return (void*)soap_instantiate__tds__SetNetworkProtocolsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNetworkDefaultGateway: - return (void*)soap_instantiate__tds__GetNetworkDefaultGateway(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse: - return (void*)soap_instantiate__tds__GetNetworkDefaultGatewayResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNetworkDefaultGateway: - return (void*)soap_instantiate__tds__SetNetworkDefaultGateway(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse: - return (void*)soap_instantiate__tds__SetNetworkDefaultGatewayResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetZeroConfiguration: - return (void*)soap_instantiate__tds__GetZeroConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetZeroConfigurationResponse: - return (void*)soap_instantiate__tds__GetZeroConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetZeroConfiguration: - return (void*)soap_instantiate__tds__SetZeroConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetZeroConfigurationResponse: - return (void*)soap_instantiate__tds__SetZeroConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetIPAddressFilter: - return (void*)soap_instantiate__tds__GetIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetIPAddressFilterResponse: - return (void*)soap_instantiate__tds__GetIPAddressFilterResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetIPAddressFilter: - return (void*)soap_instantiate__tds__SetIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetIPAddressFilterResponse: - return (void*)soap_instantiate__tds__SetIPAddressFilterResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__AddIPAddressFilter: - return (void*)soap_instantiate__tds__AddIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__AddIPAddressFilterResponse: - return (void*)soap_instantiate__tds__AddIPAddressFilterResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__RemoveIPAddressFilter: - return (void*)soap_instantiate__tds__RemoveIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__RemoveIPAddressFilterResponse: - return (void*)soap_instantiate__tds__RemoveIPAddressFilterResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetAccessPolicy: - return (void*)soap_instantiate__tds__GetAccessPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetAccessPolicyResponse: - return (void*)soap_instantiate__tds__GetAccessPolicyResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetAccessPolicy: - return (void*)soap_instantiate__tds__SetAccessPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetAccessPolicyResponse: - return (void*)soap_instantiate__tds__SetAccessPolicyResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateCertificate: - return (void*)soap_instantiate__tds__CreateCertificate(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateCertificateResponse: - return (void*)soap_instantiate__tds__CreateCertificateResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCertificates: - return (void*)soap_instantiate__tds__GetCertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCertificatesResponse: - return (void*)soap_instantiate__tds__GetCertificatesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCertificatesStatus: - return (void*)soap_instantiate__tds__GetCertificatesStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCertificatesStatusResponse: - return (void*)soap_instantiate__tds__GetCertificatesStatusResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetCertificatesStatus: - return (void*)soap_instantiate__tds__SetCertificatesStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetCertificatesStatusResponse: - return (void*)soap_instantiate__tds__SetCertificatesStatusResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteCertificates: - return (void*)soap_instantiate__tds__DeleteCertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteCertificatesResponse: - return (void*)soap_instantiate__tds__DeleteCertificatesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetPkcs10Request: - return (void*)soap_instantiate__tds__GetPkcs10Request(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetPkcs10RequestResponse: - return (void*)soap_instantiate__tds__GetPkcs10RequestResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__LoadCertificates: - return (void*)soap_instantiate__tds__LoadCertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__LoadCertificatesResponse: - return (void*)soap_instantiate__tds__LoadCertificatesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetClientCertificateMode: - return (void*)soap_instantiate__tds__GetClientCertificateMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetClientCertificateModeResponse: - return (void*)soap_instantiate__tds__GetClientCertificateModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetClientCertificateMode: - return (void*)soap_instantiate__tds__SetClientCertificateMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetClientCertificateModeResponse: - return (void*)soap_instantiate__tds__SetClientCertificateModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCACertificates: - return (void*)soap_instantiate__tds__GetCACertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCACertificatesResponse: - return (void*)soap_instantiate__tds__GetCACertificatesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__LoadCertificateWithPrivateKey: - return (void*)soap_instantiate__tds__LoadCertificateWithPrivateKey(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse: - return (void*)soap_instantiate__tds__LoadCertificateWithPrivateKeyResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCertificateInformation: - return (void*)soap_instantiate__tds__GetCertificateInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetCertificateInformationResponse: - return (void*)soap_instantiate__tds__GetCertificateInformationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__LoadCACertificates: - return (void*)soap_instantiate__tds__LoadCACertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__LoadCACertificatesResponse: - return (void*)soap_instantiate__tds__LoadCACertificatesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateDot1XConfiguration: - return (void*)soap_instantiate__tds__CreateDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateDot1XConfigurationResponse: - return (void*)soap_instantiate__tds__CreateDot1XConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDot1XConfiguration: - return (void*)soap_instantiate__tds__SetDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetDot1XConfigurationResponse: - return (void*)soap_instantiate__tds__SetDot1XConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot1XConfiguration: - return (void*)soap_instantiate__tds__GetDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot1XConfigurationResponse: - return (void*)soap_instantiate__tds__GetDot1XConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot1XConfigurations: - return (void*)soap_instantiate__tds__GetDot1XConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot1XConfigurationsResponse: - return (void*)soap_instantiate__tds__GetDot1XConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteDot1XConfiguration: - return (void*)soap_instantiate__tds__DeleteDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteDot1XConfigurationResponse: - return (void*)soap_instantiate__tds__DeleteDot1XConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetRelayOutputs: - return (void*)soap_instantiate__tds__GetRelayOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetRelayOutputsResponse: - return (void*)soap_instantiate__tds__GetRelayOutputsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRelayOutputSettings: - return (void*)soap_instantiate__tds__SetRelayOutputSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRelayOutputSettingsResponse: - return (void*)soap_instantiate__tds__SetRelayOutputSettingsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRelayOutputState: - return (void*)soap_instantiate__tds__SetRelayOutputState(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetRelayOutputStateResponse: - return (void*)soap_instantiate__tds__SetRelayOutputStateResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SendAuxiliaryCommand: - return (void*)soap_instantiate__tds__SendAuxiliaryCommand(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SendAuxiliaryCommandResponse: - return (void*)soap_instantiate__tds__SendAuxiliaryCommandResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot11Capabilities: - return (void*)soap_instantiate__tds__GetDot11Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot11CapabilitiesResponse: - return (void*)soap_instantiate__tds__GetDot11CapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot11Status: - return (void*)soap_instantiate__tds__GetDot11Status(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetDot11StatusResponse: - return (void*)soap_instantiate__tds__GetDot11StatusResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__ScanAvailableDot11Networks: - return (void*)soap_instantiate__tds__ScanAvailableDot11Networks(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse: - return (void*)soap_instantiate__tds__ScanAvailableDot11NetworksResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemUris: - return (void*)soap_instantiate__tds__GetSystemUris(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemUrisResponse_Extension: - return (void*)soap_instantiate__tds__GetSystemUrisResponse_Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetSystemUrisResponse: - return (void*)soap_instantiate__tds__GetSystemUrisResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__StartFirmwareUpgrade: - return (void*)soap_instantiate__tds__StartFirmwareUpgrade(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__StartFirmwareUpgradeResponse: - return (void*)soap_instantiate__tds__StartFirmwareUpgradeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__StartSystemRestore: - return (void*)soap_instantiate__tds__StartSystemRestore(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__StartSystemRestoreResponse: - return (void*)soap_instantiate__tds__StartSystemRestoreResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetStorageConfigurations: - return (void*)soap_instantiate__tds__GetStorageConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetStorageConfigurationsResponse: - return (void*)soap_instantiate__tds__GetStorageConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateStorageConfiguration: - return (void*)soap_instantiate__tds__CreateStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__CreateStorageConfigurationResponse: - return (void*)soap_instantiate__tds__CreateStorageConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetStorageConfiguration: - return (void*)soap_instantiate__tds__GetStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetStorageConfigurationResponse: - return (void*)soap_instantiate__tds__GetStorageConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetStorageConfiguration: - return (void*)soap_instantiate__tds__SetStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetStorageConfigurationResponse: - return (void*)soap_instantiate__tds__SetStorageConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteStorageConfiguration: - return (void*)soap_instantiate__tds__DeleteStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteStorageConfigurationResponse: - return (void*)soap_instantiate__tds__DeleteStorageConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetGeoLocation: - return (void*)soap_instantiate__tds__GetGeoLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__GetGeoLocationResponse: - return (void*)soap_instantiate__tds__GetGeoLocationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetGeoLocation: - return (void*)soap_instantiate__tds__SetGeoLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__SetGeoLocationResponse: - return (void*)soap_instantiate__tds__SetGeoLocationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteGeoLocation: - return (void*)soap_instantiate__tds__DeleteGeoLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE__tds__DeleteGeoLocationResponse: - return (void*)soap_instantiate__tds__DeleteGeoLocationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_tls__Capabilities: - return (void*)soap_instantiate_tls__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetServiceCapabilities: - return (void*)soap_instantiate__tls__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__tls__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetLayout: - return (void*)soap_instantiate__tls__GetLayout(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetLayoutResponse: - return (void*)soap_instantiate__tls__GetLayoutResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__SetLayout: - return (void*)soap_instantiate__tls__SetLayout(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__SetLayoutResponse: - return (void*)soap_instantiate__tls__SetLayoutResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetDisplayOptions: - return (void*)soap_instantiate__tls__GetDisplayOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetDisplayOptionsResponse: - return (void*)soap_instantiate__tls__GetDisplayOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetPaneConfigurations: - return (void*)soap_instantiate__tls__GetPaneConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetPaneConfigurationsResponse: - return (void*)soap_instantiate__tls__GetPaneConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetPaneConfiguration: - return (void*)soap_instantiate__tls__GetPaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__GetPaneConfigurationResponse: - return (void*)soap_instantiate__tls__GetPaneConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__SetPaneConfigurations: - return (void*)soap_instantiate__tls__SetPaneConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__SetPaneConfigurationsResponse: - return (void*)soap_instantiate__tls__SetPaneConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__SetPaneConfiguration: - return (void*)soap_instantiate__tls__SetPaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__SetPaneConfigurationResponse: - return (void*)soap_instantiate__tls__SetPaneConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__CreatePaneConfiguration: - return (void*)soap_instantiate__tls__CreatePaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__CreatePaneConfigurationResponse: - return (void*)soap_instantiate__tls__CreatePaneConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__DeletePaneConfiguration: - return (void*)soap_instantiate__tls__DeletePaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tls__DeletePaneConfigurationResponse: - return (void*)soap_instantiate__tls__DeletePaneConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_timg__Capabilities: - return (void*)soap_instantiate_timg__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_timg__ImagingPreset: - return (void*)soap_instantiate_timg__ImagingPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetServiceCapabilities: - return (void*)soap_instantiate__timg__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__timg__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetImagingSettings: - return (void*)soap_instantiate__timg__GetImagingSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetImagingSettingsResponse: - return (void*)soap_instantiate__timg__GetImagingSettingsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__SetImagingSettings: - return (void*)soap_instantiate__timg__SetImagingSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__SetImagingSettingsResponse: - return (void*)soap_instantiate__timg__SetImagingSettingsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetOptions: - return (void*)soap_instantiate__timg__GetOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetOptionsResponse: - return (void*)soap_instantiate__timg__GetOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__Move: - return (void*)soap_instantiate__timg__Move(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__MoveResponse: - return (void*)soap_instantiate__timg__MoveResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetMoveOptions: - return (void*)soap_instantiate__timg__GetMoveOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetMoveOptionsResponse: - return (void*)soap_instantiate__timg__GetMoveOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__Stop: - return (void*)soap_instantiate__timg__Stop(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__StopResponse: - return (void*)soap_instantiate__timg__StopResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetStatus: - return (void*)soap_instantiate__timg__GetStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetStatusResponse: - return (void*)soap_instantiate__timg__GetStatusResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetPresets: - return (void*)soap_instantiate__timg__GetPresets(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetPresetsResponse: - return (void*)soap_instantiate__timg__GetPresetsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetCurrentPreset: - return (void*)soap_instantiate__timg__GetCurrentPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__GetCurrentPresetResponse: - return (void*)soap_instantiate__timg__GetCurrentPresetResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__SetCurrentPreset: - return (void*)soap_instantiate__timg__SetCurrentPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE__timg__SetCurrentPresetResponse: - return (void*)soap_instantiate__timg__SetCurrentPresetResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_xop__Include: - return (void*)soap_instantiate_xop__Include(soap, -1, type, arrayType, n); - case SOAP_TYPE_trt__Capabilities: - return (void*)soap_instantiate_trt__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_trt__ProfileCapabilities: - return (void*)soap_instantiate_trt__ProfileCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_trt__StreamingCapabilities: - return (void*)soap_instantiate_trt__StreamingCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_trt__VideoSourceMode: - return (void*)soap_instantiate_trt__VideoSourceMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_trt__VideoSourceModeExtension: - return (void*)soap_instantiate_trt__VideoSourceModeExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetServiceCapabilities: - return (void*)soap_instantiate__trt__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__trt__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSources: - return (void*)soap_instantiate__trt__GetVideoSources(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourcesResponse: - return (void*)soap_instantiate__trt__GetVideoSourcesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSources: - return (void*)soap_instantiate__trt__GetAudioSources(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSourcesResponse: - return (void*)soap_instantiate__trt__GetAudioSourcesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputs: - return (void*)soap_instantiate__trt__GetAudioOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputsResponse: - return (void*)soap_instantiate__trt__GetAudioOutputsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__CreateProfile: - return (void*)soap_instantiate__trt__CreateProfile(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__CreateProfileResponse: - return (void*)soap_instantiate__trt__CreateProfileResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetProfile: - return (void*)soap_instantiate__trt__GetProfile(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetProfileResponse: - return (void*)soap_instantiate__trt__GetProfileResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetProfiles: - return (void*)soap_instantiate__trt__GetProfiles(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetProfilesResponse: - return (void*)soap_instantiate__trt__GetProfilesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddVideoEncoderConfiguration: - return (void*)soap_instantiate__trt__AddVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__AddVideoEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveVideoEncoderConfiguration: - return (void*)soap_instantiate__trt__RemoveVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveVideoEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddVideoSourceConfiguration: - return (void*)soap_instantiate__trt__AddVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddVideoSourceConfigurationResponse: - return (void*)soap_instantiate__trt__AddVideoSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveVideoSourceConfiguration: - return (void*)soap_instantiate__trt__RemoveVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveVideoSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioEncoderConfiguration: - return (void*)soap_instantiate__trt__AddAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__AddAudioEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioEncoderConfiguration: - return (void*)soap_instantiate__trt__RemoveAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveAudioEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioSourceConfiguration: - return (void*)soap_instantiate__trt__AddAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioSourceConfigurationResponse: - return (void*)soap_instantiate__trt__AddAudioSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioSourceConfiguration: - return (void*)soap_instantiate__trt__RemoveAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveAudioSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddPTZConfiguration: - return (void*)soap_instantiate__trt__AddPTZConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddPTZConfigurationResponse: - return (void*)soap_instantiate__trt__AddPTZConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemovePTZConfiguration: - return (void*)soap_instantiate__trt__RemovePTZConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemovePTZConfigurationResponse: - return (void*)soap_instantiate__trt__RemovePTZConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddVideoAnalyticsConfiguration: - return (void*)soap_instantiate__trt__AddVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse: - return (void*)soap_instantiate__trt__AddVideoAnalyticsConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration: - return (void*)soap_instantiate__trt__RemoveVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveVideoAnalyticsConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddMetadataConfiguration: - return (void*)soap_instantiate__trt__AddMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddMetadataConfigurationResponse: - return (void*)soap_instantiate__trt__AddMetadataConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveMetadataConfiguration: - return (void*)soap_instantiate__trt__RemoveMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveMetadataConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveMetadataConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioOutputConfiguration: - return (void*)soap_instantiate__trt__AddAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioOutputConfigurationResponse: - return (void*)soap_instantiate__trt__AddAudioOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioOutputConfiguration: - return (void*)soap_instantiate__trt__RemoveAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveAudioOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioDecoderConfiguration: - return (void*)soap_instantiate__trt__AddAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse: - return (void*)soap_instantiate__trt__AddAudioDecoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioDecoderConfiguration: - return (void*)soap_instantiate__trt__RemoveAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse: - return (void*)soap_instantiate__trt__RemoveAudioDecoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__DeleteProfile: - return (void*)soap_instantiate__trt__DeleteProfile(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__DeleteProfileResponse: - return (void*)soap_instantiate__trt__DeleteProfileResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoEncoderConfigurations: - return (void*)soap_instantiate__trt__GetVideoEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse: - return (void*)soap_instantiate__trt__GetVideoEncoderConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceConfigurations: - return (void*)soap_instantiate__trt__GetVideoSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse: - return (void*)soap_instantiate__trt__GetVideoSourceConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioEncoderConfigurations: - return (void*)soap_instantiate__trt__GetAudioEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse: - return (void*)soap_instantiate__trt__GetAudioEncoderConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSourceConfigurations: - return (void*)soap_instantiate__trt__GetAudioSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse: - return (void*)soap_instantiate__trt__GetAudioSourceConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurations: - return (void*)soap_instantiate__trt__GetVideoAnalyticsConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse: - return (void*)soap_instantiate__trt__GetVideoAnalyticsConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetMetadataConfigurations: - return (void*)soap_instantiate__trt__GetMetadataConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetMetadataConfigurationsResponse: - return (void*)soap_instantiate__trt__GetMetadataConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputConfigurations: - return (void*)soap_instantiate__trt__GetAudioOutputConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse: - return (void*)soap_instantiate__trt__GetAudioOutputConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioDecoderConfigurations: - return (void*)soap_instantiate__trt__GetAudioDecoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse: - return (void*)soap_instantiate__trt__GetAudioDecoderConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceConfiguration: - return (void*)soap_instantiate__trt__GetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceConfigurationResponse: - return (void*)soap_instantiate__trt__GetVideoSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoEncoderConfiguration: - return (void*)soap_instantiate__trt__GetVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__GetVideoEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSourceConfiguration: - return (void*)soap_instantiate__trt__GetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSourceConfigurationResponse: - return (void*)soap_instantiate__trt__GetAudioSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioEncoderConfiguration: - return (void*)soap_instantiate__trt__GetAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__GetAudioEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoAnalyticsConfiguration: - return (void*)soap_instantiate__trt__GetVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse: - return (void*)soap_instantiate__trt__GetVideoAnalyticsConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetMetadataConfiguration: - return (void*)soap_instantiate__trt__GetMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetMetadataConfigurationResponse: - return (void*)soap_instantiate__trt__GetMetadataConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputConfiguration: - return (void*)soap_instantiate__trt__GetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputConfigurationResponse: - return (void*)soap_instantiate__trt__GetAudioOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioDecoderConfiguration: - return (void*)soap_instantiate__trt__GetAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse: - return (void*)soap_instantiate__trt__GetAudioDecoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleVideoEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleVideoSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleAudioEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleAudioSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleMetadataConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleMetadataConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleAudioOutputConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations: - return (void*)soap_instantiate__trt__GetCompatibleAudioDecoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse: - return (void*)soap_instantiate__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoEncoderConfiguration: - return (void*)soap_instantiate__trt__SetVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__SetVideoEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoSourceConfiguration: - return (void*)soap_instantiate__trt__SetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoSourceConfigurationResponse: - return (void*)soap_instantiate__trt__SetVideoSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioEncoderConfiguration: - return (void*)soap_instantiate__trt__SetAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse: - return (void*)soap_instantiate__trt__SetAudioEncoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioSourceConfiguration: - return (void*)soap_instantiate__trt__SetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioSourceConfigurationResponse: - return (void*)soap_instantiate__trt__SetAudioSourceConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoAnalyticsConfiguration: - return (void*)soap_instantiate__trt__SetVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse: - return (void*)soap_instantiate__trt__SetVideoAnalyticsConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetMetadataConfiguration: - return (void*)soap_instantiate__trt__SetMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetMetadataConfigurationResponse: - return (void*)soap_instantiate__trt__SetMetadataConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioOutputConfiguration: - return (void*)soap_instantiate__trt__SetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioOutputConfigurationResponse: - return (void*)soap_instantiate__trt__SetAudioOutputConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioDecoderConfiguration: - return (void*)soap_instantiate__trt__SetAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse: - return (void*)soap_instantiate__trt__SetAudioDecoderConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptions: - return (void*)soap_instantiate__trt__GetVideoSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse: - return (void*)soap_instantiate__trt__GetVideoSourceConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions: - return (void*)soap_instantiate__trt__GetVideoEncoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse: - return (void*)soap_instantiate__trt__GetVideoEncoderConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptions: - return (void*)soap_instantiate__trt__GetAudioSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse: - return (void*)soap_instantiate__trt__GetAudioSourceConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions: - return (void*)soap_instantiate__trt__GetAudioEncoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse: - return (void*)soap_instantiate__trt__GetAudioEncoderConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetMetadataConfigurationOptions: - return (void*)soap_instantiate__trt__GetMetadataConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse: - return (void*)soap_instantiate__trt__GetMetadataConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptions: - return (void*)soap_instantiate__trt__GetAudioOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse: - return (void*)soap_instantiate__trt__GetAudioOutputConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions: - return (void*)soap_instantiate__trt__GetAudioDecoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse: - return (void*)soap_instantiate__trt__GetAudioDecoderConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances: - return (void*)soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse: - return (void*)soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetStreamUri: - return (void*)soap_instantiate__trt__GetStreamUri(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetStreamUriResponse: - return (void*)soap_instantiate__trt__GetStreamUriResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__StartMulticastStreaming: - return (void*)soap_instantiate__trt__StartMulticastStreaming(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__StartMulticastStreamingResponse: - return (void*)soap_instantiate__trt__StartMulticastStreamingResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__StopMulticastStreaming: - return (void*)soap_instantiate__trt__StopMulticastStreaming(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__StopMulticastStreamingResponse: - return (void*)soap_instantiate__trt__StopMulticastStreamingResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetSynchronizationPoint: - return (void*)soap_instantiate__trt__SetSynchronizationPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetSynchronizationPointResponse: - return (void*)soap_instantiate__trt__SetSynchronizationPointResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetSnapshotUri: - return (void*)soap_instantiate__trt__GetSnapshotUri(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetSnapshotUriResponse: - return (void*)soap_instantiate__trt__GetSnapshotUriResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceModes: - return (void*)soap_instantiate__trt__GetVideoSourceModes(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetVideoSourceModesResponse: - return (void*)soap_instantiate__trt__GetVideoSourceModesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoSourceMode: - return (void*)soap_instantiate__trt__SetVideoSourceMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetVideoSourceModeResponse: - return (void*)soap_instantiate__trt__SetVideoSourceModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetOSDs: - return (void*)soap_instantiate__trt__GetOSDs(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetOSDsResponse: - return (void*)soap_instantiate__trt__GetOSDsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetOSD: - return (void*)soap_instantiate__trt__GetOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetOSDResponse: - return (void*)soap_instantiate__trt__GetOSDResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetOSD: - return (void*)soap_instantiate__trt__SetOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__SetOSDResponse: - return (void*)soap_instantiate__trt__SetOSDResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetOSDOptions: - return (void*)soap_instantiate__trt__GetOSDOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__GetOSDOptionsResponse: - return (void*)soap_instantiate__trt__GetOSDOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__CreateOSD: - return (void*)soap_instantiate__trt__CreateOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__CreateOSDResponse: - return (void*)soap_instantiate__trt__CreateOSDResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__DeleteOSD: - return (void*)soap_instantiate__trt__DeleteOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE__trt__DeleteOSDResponse: - return (void*)soap_instantiate__trt__DeleteOSDResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_tptz__Capabilities: - return (void*)soap_instantiate_tptz__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetServiceCapabilities: - return (void*)soap_instantiate__tptz__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__tptz__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetNodes: - return (void*)soap_instantiate__tptz__GetNodes(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetNodesResponse: - return (void*)soap_instantiate__tptz__GetNodesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetNode: - return (void*)soap_instantiate__tptz__GetNode(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetNodeResponse: - return (void*)soap_instantiate__tptz__GetNodeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetConfigurations: - return (void*)soap_instantiate__tptz__GetConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetConfigurationsResponse: - return (void*)soap_instantiate__tptz__GetConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetConfiguration: - return (void*)soap_instantiate__tptz__GetConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetConfigurationResponse: - return (void*)soap_instantiate__tptz__GetConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SetConfiguration: - return (void*)soap_instantiate__tptz__SetConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__SetConfigurationResponse_sequence: - return (void*)soap_instantiate___tptz__SetConfigurationResponse_sequence(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SetConfigurationResponse: - return (void*)soap_instantiate__tptz__SetConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetConfigurationOptions: - return (void*)soap_instantiate__tptz__GetConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetConfigurationOptionsResponse: - return (void*)soap_instantiate__tptz__GetConfigurationOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SendAuxiliaryCommand: - return (void*)soap_instantiate__tptz__SendAuxiliaryCommand(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SendAuxiliaryCommandResponse: - return (void*)soap_instantiate__tptz__SendAuxiliaryCommandResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresets: - return (void*)soap_instantiate__tptz__GetPresets(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresetsResponse: - return (void*)soap_instantiate__tptz__GetPresetsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SetPreset: - return (void*)soap_instantiate__tptz__SetPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SetPresetResponse: - return (void*)soap_instantiate__tptz__SetPresetResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__RemovePreset: - return (void*)soap_instantiate__tptz__RemovePreset(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__RemovePresetResponse: - return (void*)soap_instantiate__tptz__RemovePresetResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GotoPreset: - return (void*)soap_instantiate__tptz__GotoPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GotoPresetResponse: - return (void*)soap_instantiate__tptz__GotoPresetResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetStatus: - return (void*)soap_instantiate__tptz__GetStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetStatusResponse: - return (void*)soap_instantiate__tptz__GetStatusResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GotoHomePosition: - return (void*)soap_instantiate__tptz__GotoHomePosition(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GotoHomePositionResponse: - return (void*)soap_instantiate__tptz__GotoHomePositionResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SetHomePosition: - return (void*)soap_instantiate__tptz__SetHomePosition(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__SetHomePositionResponse: - return (void*)soap_instantiate__tptz__SetHomePositionResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__ContinuousMove: - return (void*)soap_instantiate__tptz__ContinuousMove(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__ContinuousMoveResponse: - return (void*)soap_instantiate__tptz__ContinuousMoveResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__RelativeMove: - return (void*)soap_instantiate__tptz__RelativeMove(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__RelativeMoveResponse: - return (void*)soap_instantiate__tptz__RelativeMoveResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__AbsoluteMove: - return (void*)soap_instantiate__tptz__AbsoluteMove(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__AbsoluteMoveResponse: - return (void*)soap_instantiate__tptz__AbsoluteMoveResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__Stop: - return (void*)soap_instantiate__tptz__Stop(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__StopResponse: - return (void*)soap_instantiate__tptz__StopResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresetTours: - return (void*)soap_instantiate__tptz__GetPresetTours(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresetToursResponse: - return (void*)soap_instantiate__tptz__GetPresetToursResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresetTour: - return (void*)soap_instantiate__tptz__GetPresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresetTourResponse: - return (void*)soap_instantiate__tptz__GetPresetTourResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresetTourOptions: - return (void*)soap_instantiate__tptz__GetPresetTourOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetPresetTourOptionsResponse: - return (void*)soap_instantiate__tptz__GetPresetTourOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__CreatePresetTour: - return (void*)soap_instantiate__tptz__CreatePresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__CreatePresetTourResponse: - return (void*)soap_instantiate__tptz__CreatePresetTourResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__ModifyPresetTour: - return (void*)soap_instantiate__tptz__ModifyPresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__ModifyPresetTourResponse: - return (void*)soap_instantiate__tptz__ModifyPresetTourResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__OperatePresetTour: - return (void*)soap_instantiate__tptz__OperatePresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__OperatePresetTourResponse: - return (void*)soap_instantiate__tptz__OperatePresetTourResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__RemovePresetTour: - return (void*)soap_instantiate__tptz__RemovePresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__RemovePresetTourResponse: - return (void*)soap_instantiate__tptz__RemovePresetTourResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetCompatibleConfigurations: - return (void*)soap_instantiate__tptz__GetCompatibleConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse: - return (void*)soap_instantiate__tptz__GetCompatibleConfigurationsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_trv__Capabilities: - return (void*)soap_instantiate_trv__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetServiceCapabilities: - return (void*)soap_instantiate__trv__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__trv__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetReceivers: - return (void*)soap_instantiate__trv__GetReceivers(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetReceiversResponse: - return (void*)soap_instantiate__trv__GetReceiversResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetReceiver: - return (void*)soap_instantiate__trv__GetReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetReceiverResponse: - return (void*)soap_instantiate__trv__GetReceiverResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__CreateReceiver: - return (void*)soap_instantiate__trv__CreateReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__CreateReceiverResponse: - return (void*)soap_instantiate__trv__CreateReceiverResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__DeleteReceiver: - return (void*)soap_instantiate__trv__DeleteReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__DeleteReceiverResponse: - return (void*)soap_instantiate__trv__DeleteReceiverResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__ConfigureReceiver: - return (void*)soap_instantiate__trv__ConfigureReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__ConfigureReceiverResponse: - return (void*)soap_instantiate__trv__ConfigureReceiverResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__SetReceiverMode: - return (void*)soap_instantiate__trv__SetReceiverMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__SetReceiverModeResponse: - return (void*)soap_instantiate__trv__SetReceiverModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetReceiverState: - return (void*)soap_instantiate__trv__GetReceiverState(soap, -1, type, arrayType, n); - case SOAP_TYPE__trv__GetReceiverStateResponse: - return (void*)soap_instantiate__trv__GetReceiverStateResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_trc__Capabilities: - return (void*)soap_instantiate_trc__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE_trc__RecordingOptions: - return (void*)soap_instantiate_trc__RecordingOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_trc__JobOptions: - return (void*)soap_instantiate_trc__JobOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_trc__TrackOptions: - return (void*)soap_instantiate_trc__TrackOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetServiceCapabilities: - return (void*)soap_instantiate__trc__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__trc__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__CreateRecording: - return (void*)soap_instantiate__trc__CreateRecording(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__CreateRecordingResponse: - return (void*)soap_instantiate__trc__CreateRecordingResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__DeleteRecording: - return (void*)soap_instantiate__trc__DeleteRecording(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__DeleteRecordingResponse: - return (void*)soap_instantiate__trc__DeleteRecordingResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordings: - return (void*)soap_instantiate__trc__GetRecordings(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingsResponse: - return (void*)soap_instantiate__trc__GetRecordingsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetRecordingConfiguration: - return (void*)soap_instantiate__trc__SetRecordingConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetRecordingConfigurationResponse: - return (void*)soap_instantiate__trc__SetRecordingConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingConfiguration: - return (void*)soap_instantiate__trc__GetRecordingConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingConfigurationResponse: - return (void*)soap_instantiate__trc__GetRecordingConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__CreateTrack: - return (void*)soap_instantiate__trc__CreateTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__CreateTrackResponse: - return (void*)soap_instantiate__trc__CreateTrackResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__DeleteTrack: - return (void*)soap_instantiate__trc__DeleteTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__DeleteTrackResponse: - return (void*)soap_instantiate__trc__DeleteTrackResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetTrackConfiguration: - return (void*)soap_instantiate__trc__GetTrackConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetTrackConfigurationResponse: - return (void*)soap_instantiate__trc__GetTrackConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetTrackConfiguration: - return (void*)soap_instantiate__trc__SetTrackConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetTrackConfigurationResponse: - return (void*)soap_instantiate__trc__SetTrackConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__CreateRecordingJob: - return (void*)soap_instantiate__trc__CreateRecordingJob(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__CreateRecordingJobResponse: - return (void*)soap_instantiate__trc__CreateRecordingJobResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__DeleteRecordingJob: - return (void*)soap_instantiate__trc__DeleteRecordingJob(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__DeleteRecordingJobResponse: - return (void*)soap_instantiate__trc__DeleteRecordingJobResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingJobs: - return (void*)soap_instantiate__trc__GetRecordingJobs(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingJobsResponse: - return (void*)soap_instantiate__trc__GetRecordingJobsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetRecordingJobConfiguration: - return (void*)soap_instantiate__trc__SetRecordingJobConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetRecordingJobConfigurationResponse: - return (void*)soap_instantiate__trc__SetRecordingJobConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingJobConfiguration: - return (void*)soap_instantiate__trc__GetRecordingJobConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingJobConfigurationResponse: - return (void*)soap_instantiate__trc__GetRecordingJobConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetRecordingJobMode: - return (void*)soap_instantiate__trc__SetRecordingJobMode(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__SetRecordingJobModeResponse: - return (void*)soap_instantiate__trc__SetRecordingJobModeResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingJobState: - return (void*)soap_instantiate__trc__GetRecordingJobState(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingJobStateResponse: - return (void*)soap_instantiate__trc__GetRecordingJobStateResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingOptions: - return (void*)soap_instantiate__trc__GetRecordingOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetRecordingOptionsResponse: - return (void*)soap_instantiate__trc__GetRecordingOptionsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__ExportRecordedData: - return (void*)soap_instantiate__trc__ExportRecordedData(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__ExportRecordedDataResponse_Extension: - return (void*)soap_instantiate__trc__ExportRecordedDataResponse_Extension(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__ExportRecordedDataResponse: - return (void*)soap_instantiate__trc__ExportRecordedDataResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__StopExportRecordedData: - return (void*)soap_instantiate__trc__StopExportRecordedData(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__StopExportRecordedDataResponse: - return (void*)soap_instantiate__trc__StopExportRecordedDataResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetExportRecordedDataState: - return (void*)soap_instantiate__trc__GetExportRecordedDataState(soap, -1, type, arrayType, n); - case SOAP_TYPE__trc__GetExportRecordedDataStateResponse: - return (void*)soap_instantiate__trc__GetExportRecordedDataStateResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_trp__Capabilities: - return (void*)soap_instantiate_trp__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__GetServiceCapabilities: - return (void*)soap_instantiate__trp__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__trp__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__GetReplayUri: - return (void*)soap_instantiate__trp__GetReplayUri(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__GetReplayUriResponse: - return (void*)soap_instantiate__trp__GetReplayUriResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__SetReplayConfiguration: - return (void*)soap_instantiate__trp__SetReplayConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__SetReplayConfigurationResponse: - return (void*)soap_instantiate__trp__SetReplayConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__GetReplayConfiguration: - return (void*)soap_instantiate__trp__GetReplayConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE__trp__GetReplayConfigurationResponse: - return (void*)soap_instantiate__trp__GetReplayConfigurationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_tse__Capabilities: - return (void*)soap_instantiate_tse__Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetServiceCapabilities: - return (void*)soap_instantiate__tse__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetServiceCapabilitiesResponse: - return (void*)soap_instantiate__tse__GetServiceCapabilitiesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetRecordingSummary: - return (void*)soap_instantiate__tse__GetRecordingSummary(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetRecordingSummaryResponse: - return (void*)soap_instantiate__tse__GetRecordingSummaryResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetRecordingInformation: - return (void*)soap_instantiate__tse__GetRecordingInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetRecordingInformationResponse: - return (void*)soap_instantiate__tse__GetRecordingInformationResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetMediaAttributes: - return (void*)soap_instantiate__tse__GetMediaAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetMediaAttributesResponse: - return (void*)soap_instantiate__tse__GetMediaAttributesResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindRecordings: - return (void*)soap_instantiate__tse__FindRecordings(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindRecordingsResponse: - return (void*)soap_instantiate__tse__FindRecordingsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetRecordingSearchResults: - return (void*)soap_instantiate__tse__GetRecordingSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetRecordingSearchResultsResponse: - return (void*)soap_instantiate__tse__GetRecordingSearchResultsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindEvents: - return (void*)soap_instantiate__tse__FindEvents(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindEventsResponse: - return (void*)soap_instantiate__tse__FindEventsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetEventSearchResults: - return (void*)soap_instantiate__tse__GetEventSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetEventSearchResultsResponse: - return (void*)soap_instantiate__tse__GetEventSearchResultsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindPTZPosition: - return (void*)soap_instantiate__tse__FindPTZPosition(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindPTZPositionResponse: - return (void*)soap_instantiate__tse__FindPTZPositionResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetPTZPositionSearchResults: - return (void*)soap_instantiate__tse__GetPTZPositionSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse: - return (void*)soap_instantiate__tse__GetPTZPositionSearchResultsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindMetadata: - return (void*)soap_instantiate__tse__FindMetadata(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__FindMetadataResponse: - return (void*)soap_instantiate__tse__FindMetadataResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetMetadataSearchResults: - return (void*)soap_instantiate__tse__GetMetadataSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetMetadataSearchResultsResponse: - return (void*)soap_instantiate__tse__GetMetadataSearchResultsResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetSearchState: - return (void*)soap_instantiate__tse__GetSearchState(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__GetSearchStateResponse: - return (void*)soap_instantiate__tse__GetSearchStateResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__EndSearch: - return (void*)soap_instantiate__tse__EndSearch(soap, -1, type, arrayType, n); - case SOAP_TYPE__tse__EndSearchResponse: - return (void*)soap_instantiate__tse__EndSearchResponse(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__Documentation: - return (void*)soap_instantiate_wstop__Documentation(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__ExtensibleDocumented: - return (void*)soap_instantiate_wstop__ExtensibleDocumented(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__QueryExpressionType: - return (void*)soap_instantiate_wstop__QueryExpressionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType: - return (void*)soap_instantiate_wsnt__SubscribeCreationFailedFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__InvalidFilterFaultType: - return (void*)soap_instantiate_wsnt__InvalidFilterFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType: - return (void*)soap_instantiate_wsnt__TopicExpressionDialectUnknownFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType: - return (void*)soap_instantiate_wsnt__InvalidTopicExpressionFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__TopicNotSupportedFaultType: - return (void*)soap_instantiate_wsnt__TopicNotSupportedFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType: - return (void*)soap_instantiate_wsnt__MultipleTopicsSpecifiedFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType: - return (void*)soap_instantiate_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType: - return (void*)soap_instantiate_wsnt__InvalidMessageContentExpressionFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType: - return (void*)soap_instantiate_wsnt__UnrecognizedPolicyRequestFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType: - return (void*)soap_instantiate_wsnt__UnsupportedPolicyRequestFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType: - return (void*)soap_instantiate_wsnt__NotifyMessageNotSupportedFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType: - return (void*)soap_instantiate_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType: - return (void*)soap_instantiate_wsnt__NoCurrentMessageOnTopicFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnableToGetMessagesFaultType: - return (void*)soap_instantiate_wsnt__UnableToGetMessagesFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType: - return (void*)soap_instantiate_wsnt__UnableToDestroyPullPointFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType: - return (void*)soap_instantiate_wsnt__UnableToCreatePullPointFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType: - return (void*)soap_instantiate_wsnt__UnacceptableTerminationTimeFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType: - return (void*)soap_instantiate_wsnt__UnableToDestroySubscriptionFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__PauseFailedFaultType: - return (void*)soap_instantiate_wsnt__PauseFailedFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__ResumeFailedFaultType: - return (void*)soap_instantiate_wsnt__ResumeFailedFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSource: - return (void*)soap_instantiate_tt__VideoSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioSource: - return (void*)soap_instantiate_tt__AudioSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoSourceConfiguration: - return (void*)soap_instantiate_tt__VideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncoderConfiguration: - return (void*)soap_instantiate_tt__VideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__JpegOptions2: - return (void*)soap_instantiate_tt__JpegOptions2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Mpeg4Options2: - return (void*)soap_instantiate_tt__Mpeg4Options2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__H264Options2: - return (void*)soap_instantiate_tt__H264Options2(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoEncoder2Configuration: - return (void*)soap_instantiate_tt__VideoEncoder2Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioSourceConfiguration: - return (void*)soap_instantiate_tt__AudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioEncoderConfiguration: - return (void*)soap_instantiate_tt__AudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioEncoder2Configuration: - return (void*)soap_instantiate_tt__AudioEncoder2Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoAnalyticsConfiguration: - return (void*)soap_instantiate_tt__VideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__MetadataConfiguration: - return (void*)soap_instantiate_tt__MetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoOutput: - return (void*)soap_instantiate_tt__VideoOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__VideoOutputConfiguration: - return (void*)soap_instantiate_tt__VideoOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioOutput: - return (void*)soap_instantiate_tt__AudioOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioOutputConfiguration: - return (void*)soap_instantiate_tt__AudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioDecoderConfiguration: - return (void*)soap_instantiate_tt__AudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterface: - return (void*)soap_instantiate_tt__NetworkInterface(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__CertificateUsage: - return (void*)soap_instantiate_tt__CertificateUsage(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RelayOutput: - return (void*)soap_instantiate_tt__RelayOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DigitalInput: - return (void*)soap_instantiate_tt__DigitalInput(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZNode: - return (void*)soap_instantiate_tt__PTZNode(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__PTZConfiguration: - return (void*)soap_instantiate_tt__PTZConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__EventFilter: - return (void*)soap_instantiate_tt__EventFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsEngine: - return (void*)soap_instantiate_tt__AnalyticsEngine(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsEngineInput: - return (void*)soap_instantiate_tt__AnalyticsEngineInput(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AnalyticsEngineControl: - return (void*)soap_instantiate_tt__AnalyticsEngineControl(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDConfiguration: - return (void*)soap_instantiate_tt__OSDConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__SerialPort: - return (void*)soap_instantiate_tmd__SerialPort(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__StorageConfiguration: - return (void*)soap_instantiate_tds__StorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsrfr__ResourceUnknownFaultType: - return (void*)soap_instantiate_wsrfr__ResourceUnknownFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsrfr__ResourceUnavailableFaultType: - return (void*)soap_instantiate_wsrfr__ResourceUnavailableFaultType(soap, -1, type, arrayType, n); - case SOAP_TYPE__wstop__TopicNamespaceType_Topic: - return (void*)soap_instantiate__wstop__TopicNamespaceType_Topic(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__TopicNamespaceType: - return (void*)soap_instantiate_wstop__TopicNamespaceType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__TopicType: - return (void*)soap_instantiate_wstop__TopicType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__TopicSetType: - return (void*)soap_instantiate_wstop__TopicSetType(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__OSDReference: - return (void*)soap_instantiate_tt__OSDReference(soap, -1, type, arrayType, n); -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Detail: - return (void*)soap_instantiate_SOAP_ENV__Detail(soap, -1, type, arrayType, n); -#endif - case SOAP_TYPE___tds__GetServices: - return (void*)soap_instantiate___tds__GetServices(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetServiceCapabilities: - return (void*)soap_instantiate___tds__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDeviceInformation: - return (void*)soap_instantiate___tds__GetDeviceInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetSystemDateAndTime: - return (void*)soap_instantiate___tds__SetSystemDateAndTime(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetSystemDateAndTime: - return (void*)soap_instantiate___tds__GetSystemDateAndTime(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetSystemFactoryDefault: - return (void*)soap_instantiate___tds__SetSystemFactoryDefault(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__UpgradeSystemFirmware: - return (void*)soap_instantiate___tds__UpgradeSystemFirmware(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SystemReboot: - return (void*)soap_instantiate___tds__SystemReboot(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__RestoreSystem: - return (void*)soap_instantiate___tds__RestoreSystem(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetSystemBackup: - return (void*)soap_instantiate___tds__GetSystemBackup(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetSystemLog: - return (void*)soap_instantiate___tds__GetSystemLog(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetSystemSupportInformation: - return (void*)soap_instantiate___tds__GetSystemSupportInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetScopes: - return (void*)soap_instantiate___tds__GetScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetScopes: - return (void*)soap_instantiate___tds__SetScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__AddScopes: - return (void*)soap_instantiate___tds__AddScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__RemoveScopes: - return (void*)soap_instantiate___tds__RemoveScopes(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDiscoveryMode: - return (void*)soap_instantiate___tds__GetDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetDiscoveryMode: - return (void*)soap_instantiate___tds__SetDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetRemoteDiscoveryMode: - return (void*)soap_instantiate___tds__GetRemoteDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetRemoteDiscoveryMode: - return (void*)soap_instantiate___tds__SetRemoteDiscoveryMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDPAddresses: - return (void*)soap_instantiate___tds__GetDPAddresses(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetEndpointReference: - return (void*)soap_instantiate___tds__GetEndpointReference(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetRemoteUser: - return (void*)soap_instantiate___tds__GetRemoteUser(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetRemoteUser: - return (void*)soap_instantiate___tds__SetRemoteUser(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetUsers: - return (void*)soap_instantiate___tds__GetUsers(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__CreateUsers: - return (void*)soap_instantiate___tds__CreateUsers(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__DeleteUsers: - return (void*)soap_instantiate___tds__DeleteUsers(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetUser: - return (void*)soap_instantiate___tds__SetUser(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetWsdlUrl: - return (void*)soap_instantiate___tds__GetWsdlUrl(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetCapabilities: - return (void*)soap_instantiate___tds__GetCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetDPAddresses: - return (void*)soap_instantiate___tds__SetDPAddresses(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetHostname: - return (void*)soap_instantiate___tds__GetHostname(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetHostname: - return (void*)soap_instantiate___tds__SetHostname(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetHostnameFromDHCP: - return (void*)soap_instantiate___tds__SetHostnameFromDHCP(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDNS: - return (void*)soap_instantiate___tds__GetDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetDNS: - return (void*)soap_instantiate___tds__SetDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetNTP: - return (void*)soap_instantiate___tds__GetNTP(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetNTP: - return (void*)soap_instantiate___tds__SetNTP(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDynamicDNS: - return (void*)soap_instantiate___tds__GetDynamicDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetDynamicDNS: - return (void*)soap_instantiate___tds__SetDynamicDNS(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetNetworkInterfaces: - return (void*)soap_instantiate___tds__GetNetworkInterfaces(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetNetworkInterfaces: - return (void*)soap_instantiate___tds__SetNetworkInterfaces(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetNetworkProtocols: - return (void*)soap_instantiate___tds__GetNetworkProtocols(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetNetworkProtocols: - return (void*)soap_instantiate___tds__SetNetworkProtocols(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetNetworkDefaultGateway: - return (void*)soap_instantiate___tds__GetNetworkDefaultGateway(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetNetworkDefaultGateway: - return (void*)soap_instantiate___tds__SetNetworkDefaultGateway(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetZeroConfiguration: - return (void*)soap_instantiate___tds__GetZeroConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetZeroConfiguration: - return (void*)soap_instantiate___tds__SetZeroConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetIPAddressFilter: - return (void*)soap_instantiate___tds__GetIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetIPAddressFilter: - return (void*)soap_instantiate___tds__SetIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__AddIPAddressFilter: - return (void*)soap_instantiate___tds__AddIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__RemoveIPAddressFilter: - return (void*)soap_instantiate___tds__RemoveIPAddressFilter(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetAccessPolicy: - return (void*)soap_instantiate___tds__GetAccessPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetAccessPolicy: - return (void*)soap_instantiate___tds__SetAccessPolicy(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__CreateCertificate: - return (void*)soap_instantiate___tds__CreateCertificate(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetCertificates: - return (void*)soap_instantiate___tds__GetCertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetCertificatesStatus: - return (void*)soap_instantiate___tds__GetCertificatesStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetCertificatesStatus: - return (void*)soap_instantiate___tds__SetCertificatesStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__DeleteCertificates: - return (void*)soap_instantiate___tds__DeleteCertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetPkcs10Request: - return (void*)soap_instantiate___tds__GetPkcs10Request(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__LoadCertificates: - return (void*)soap_instantiate___tds__LoadCertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetClientCertificateMode: - return (void*)soap_instantiate___tds__GetClientCertificateMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetClientCertificateMode: - return (void*)soap_instantiate___tds__SetClientCertificateMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetRelayOutputs: - return (void*)soap_instantiate___tds__GetRelayOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetRelayOutputSettings: - return (void*)soap_instantiate___tds__SetRelayOutputSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetRelayOutputState: - return (void*)soap_instantiate___tds__SetRelayOutputState(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SendAuxiliaryCommand: - return (void*)soap_instantiate___tds__SendAuxiliaryCommand(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetCACertificates: - return (void*)soap_instantiate___tds__GetCACertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__LoadCertificateWithPrivateKey: - return (void*)soap_instantiate___tds__LoadCertificateWithPrivateKey(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetCertificateInformation: - return (void*)soap_instantiate___tds__GetCertificateInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__LoadCACertificates: - return (void*)soap_instantiate___tds__LoadCACertificates(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__CreateDot1XConfiguration: - return (void*)soap_instantiate___tds__CreateDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetDot1XConfiguration: - return (void*)soap_instantiate___tds__SetDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDot1XConfiguration: - return (void*)soap_instantiate___tds__GetDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDot1XConfigurations: - return (void*)soap_instantiate___tds__GetDot1XConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__DeleteDot1XConfiguration: - return (void*)soap_instantiate___tds__DeleteDot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDot11Capabilities: - return (void*)soap_instantiate___tds__GetDot11Capabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetDot11Status: - return (void*)soap_instantiate___tds__GetDot11Status(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__ScanAvailableDot11Networks: - return (void*)soap_instantiate___tds__ScanAvailableDot11Networks(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetSystemUris: - return (void*)soap_instantiate___tds__GetSystemUris(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__StartFirmwareUpgrade: - return (void*)soap_instantiate___tds__StartFirmwareUpgrade(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__StartSystemRestore: - return (void*)soap_instantiate___tds__StartSystemRestore(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetStorageConfigurations: - return (void*)soap_instantiate___tds__GetStorageConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__CreateStorageConfiguration: - return (void*)soap_instantiate___tds__CreateStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetStorageConfiguration: - return (void*)soap_instantiate___tds__GetStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetStorageConfiguration: - return (void*)soap_instantiate___tds__SetStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__DeleteStorageConfiguration: - return (void*)soap_instantiate___tds__DeleteStorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__GetGeoLocation: - return (void*)soap_instantiate___tds__GetGeoLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__SetGeoLocation: - return (void*)soap_instantiate___tds__SetGeoLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE___tds__DeleteGeoLocation: - return (void*)soap_instantiate___tds__DeleteGeoLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevcpp__CreatePullPoint: - return (void*)soap_instantiate___tevcpp__CreatePullPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE___teve__GetServiceCapabilities: - return (void*)soap_instantiate___teve__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___teve__CreatePullPointSubscription: - return (void*)soap_instantiate___teve__CreatePullPointSubscription(soap, -1, type, arrayType, n); - case SOAP_TYPE___teve__GetEventProperties: - return (void*)soap_instantiate___teve__GetEventProperties(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevnc__Notify: - return (void*)soap_instantiate___tevnc__Notify(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevnp__Subscribe: - return (void*)soap_instantiate___tevnp__Subscribe(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevnp__GetCurrentMessage: - return (void*)soap_instantiate___tevnp__GetCurrentMessage(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevpp__GetMessages: - return (void*)soap_instantiate___tevpp__GetMessages(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevpp__DestroyPullPoint: - return (void*)soap_instantiate___tevpp__DestroyPullPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevpp__Notify: - return (void*)soap_instantiate___tevpp__Notify(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevpps__PullMessages: - return (void*)soap_instantiate___tevpps__PullMessages(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevpps__Seek: - return (void*)soap_instantiate___tevpps__Seek(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevpps__SetSynchronizationPoint: - return (void*)soap_instantiate___tevpps__SetSynchronizationPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevps__Renew: - return (void*)soap_instantiate___tevps__Renew(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevps__Unsubscribe: - return (void*)soap_instantiate___tevps__Unsubscribe(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevps__PauseSubscription: - return (void*)soap_instantiate___tevps__PauseSubscription(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevps__ResumeSubscription: - return (void*)soap_instantiate___tevps__ResumeSubscription(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevs__Renew: - return (void*)soap_instantiate___tevs__Renew(soap, -1, type, arrayType, n); - case SOAP_TYPE___tevs__Unsubscribe: - return (void*)soap_instantiate___tevs__Unsubscribe(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__GetServiceCapabilities: - return (void*)soap_instantiate___timg__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__GetImagingSettings: - return (void*)soap_instantiate___timg__GetImagingSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__SetImagingSettings: - return (void*)soap_instantiate___timg__SetImagingSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__GetOptions: - return (void*)soap_instantiate___timg__GetOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__Move: - return (void*)soap_instantiate___timg__Move(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__Stop: - return (void*)soap_instantiate___timg__Stop(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__GetStatus: - return (void*)soap_instantiate___timg__GetStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__GetMoveOptions: - return (void*)soap_instantiate___timg__GetMoveOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__GetPresets: - return (void*)soap_instantiate___timg__GetPresets(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__GetCurrentPreset: - return (void*)soap_instantiate___timg__GetCurrentPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE___timg__SetCurrentPreset: - return (void*)soap_instantiate___timg__SetCurrentPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__GetServiceCapabilities: - return (void*)soap_instantiate___tls__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__GetLayout: - return (void*)soap_instantiate___tls__GetLayout(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__SetLayout: - return (void*)soap_instantiate___tls__SetLayout(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__GetDisplayOptions: - return (void*)soap_instantiate___tls__GetDisplayOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__GetPaneConfigurations: - return (void*)soap_instantiate___tls__GetPaneConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__GetPaneConfiguration: - return (void*)soap_instantiate___tls__GetPaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__SetPaneConfigurations: - return (void*)soap_instantiate___tls__SetPaneConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__SetPaneConfiguration: - return (void*)soap_instantiate___tls__SetPaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__CreatePaneConfiguration: - return (void*)soap_instantiate___tls__CreatePaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tls__DeletePaneConfiguration: - return (void*)soap_instantiate___tls__DeletePaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetServiceCapabilities: - return (void*)soap_instantiate___tmd__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetRelayOutputOptions: - return (void*)soap_instantiate___tmd__GetRelayOutputOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetAudioSources: - return (void*)soap_instantiate___tmd__GetAudioSources(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetAudioOutputs: - return (void*)soap_instantiate___tmd__GetAudioOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetVideoSources: - return (void*)soap_instantiate___tmd__GetVideoSources(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetVideoOutputs: - return (void*)soap_instantiate___tmd__GetVideoOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetVideoSourceConfiguration: - return (void*)soap_instantiate___tmd__GetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetVideoOutputConfiguration: - return (void*)soap_instantiate___tmd__GetVideoOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetAudioSourceConfiguration: - return (void*)soap_instantiate___tmd__GetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetAudioOutputConfiguration: - return (void*)soap_instantiate___tmd__GetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetVideoSourceConfiguration: - return (void*)soap_instantiate___tmd__SetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetVideoOutputConfiguration: - return (void*)soap_instantiate___tmd__SetVideoOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetAudioSourceConfiguration: - return (void*)soap_instantiate___tmd__SetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetAudioOutputConfiguration: - return (void*)soap_instantiate___tmd__SetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions: - return (void*)soap_instantiate___tmd__GetVideoSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions: - return (void*)soap_instantiate___tmd__GetVideoOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions: - return (void*)soap_instantiate___tmd__GetAudioSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions: - return (void*)soap_instantiate___tmd__GetAudioOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetRelayOutputs: - return (void*)soap_instantiate___tmd__GetRelayOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetRelayOutputSettings: - return (void*)soap_instantiate___tmd__SetRelayOutputSettings(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetRelayOutputState: - return (void*)soap_instantiate___tmd__SetRelayOutputState(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetDigitalInputs: - return (void*)soap_instantiate___tmd__GetDigitalInputs(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions: - return (void*)soap_instantiate___tmd__GetDigitalInputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetDigitalInputConfigurations: - return (void*)soap_instantiate___tmd__SetDigitalInputConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetSerialPorts: - return (void*)soap_instantiate___tmd__GetSerialPorts(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetSerialPortConfiguration: - return (void*)soap_instantiate___tmd__GetSerialPortConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SetSerialPortConfiguration: - return (void*)soap_instantiate___tmd__SetSerialPortConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__GetSerialPortConfigurationOptions: - return (void*)soap_instantiate___tmd__GetSerialPortConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tmd__SendReceiveSerialCommand: - return (void*)soap_instantiate___tmd__SendReceiveSerialCommand(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetServiceCapabilities: - return (void*)soap_instantiate___tptz__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetConfigurations: - return (void*)soap_instantiate___tptz__GetConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetPresets: - return (void*)soap_instantiate___tptz__GetPresets(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__SetPreset: - return (void*)soap_instantiate___tptz__SetPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__RemovePreset: - return (void*)soap_instantiate___tptz__RemovePreset(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GotoPreset: - return (void*)soap_instantiate___tptz__GotoPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetStatus: - return (void*)soap_instantiate___tptz__GetStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetConfiguration: - return (void*)soap_instantiate___tptz__GetConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetNodes: - return (void*)soap_instantiate___tptz__GetNodes(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetNode: - return (void*)soap_instantiate___tptz__GetNode(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__SetConfiguration: - return (void*)soap_instantiate___tptz__SetConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetConfigurationOptions: - return (void*)soap_instantiate___tptz__GetConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GotoHomePosition: - return (void*)soap_instantiate___tptz__GotoHomePosition(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__SetHomePosition: - return (void*)soap_instantiate___tptz__SetHomePosition(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__ContinuousMove: - return (void*)soap_instantiate___tptz__ContinuousMove(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__RelativeMove: - return (void*)soap_instantiate___tptz__RelativeMove(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__SendAuxiliaryCommand: - return (void*)soap_instantiate___tptz__SendAuxiliaryCommand(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__AbsoluteMove: - return (void*)soap_instantiate___tptz__AbsoluteMove(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__Stop: - return (void*)soap_instantiate___tptz__Stop(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetPresetTours: - return (void*)soap_instantiate___tptz__GetPresetTours(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetPresetTour: - return (void*)soap_instantiate___tptz__GetPresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetPresetTourOptions: - return (void*)soap_instantiate___tptz__GetPresetTourOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__CreatePresetTour: - return (void*)soap_instantiate___tptz__CreatePresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__ModifyPresetTour: - return (void*)soap_instantiate___tptz__ModifyPresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__OperatePresetTour: - return (void*)soap_instantiate___tptz__OperatePresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__RemovePresetTour: - return (void*)soap_instantiate___tptz__RemovePresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE___tptz__GetCompatibleConfigurations: - return (void*)soap_instantiate___tptz__GetCompatibleConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetServiceCapabilities: - return (void*)soap_instantiate___trc__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__CreateRecording: - return (void*)soap_instantiate___trc__CreateRecording(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__DeleteRecording: - return (void*)soap_instantiate___trc__DeleteRecording(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetRecordings: - return (void*)soap_instantiate___trc__GetRecordings(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__SetRecordingConfiguration: - return (void*)soap_instantiate___trc__SetRecordingConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetRecordingConfiguration: - return (void*)soap_instantiate___trc__GetRecordingConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetRecordingOptions: - return (void*)soap_instantiate___trc__GetRecordingOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__CreateTrack: - return (void*)soap_instantiate___trc__CreateTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__DeleteTrack: - return (void*)soap_instantiate___trc__DeleteTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetTrackConfiguration: - return (void*)soap_instantiate___trc__GetTrackConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__SetTrackConfiguration: - return (void*)soap_instantiate___trc__SetTrackConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__CreateRecordingJob: - return (void*)soap_instantiate___trc__CreateRecordingJob(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__DeleteRecordingJob: - return (void*)soap_instantiate___trc__DeleteRecordingJob(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetRecordingJobs: - return (void*)soap_instantiate___trc__GetRecordingJobs(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__SetRecordingJobConfiguration: - return (void*)soap_instantiate___trc__SetRecordingJobConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetRecordingJobConfiguration: - return (void*)soap_instantiate___trc__GetRecordingJobConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__SetRecordingJobMode: - return (void*)soap_instantiate___trc__SetRecordingJobMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetRecordingJobState: - return (void*)soap_instantiate___trc__GetRecordingJobState(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__ExportRecordedData: - return (void*)soap_instantiate___trc__ExportRecordedData(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__StopExportRecordedData: - return (void*)soap_instantiate___trc__StopExportRecordedData(soap, -1, type, arrayType, n); - case SOAP_TYPE___trc__GetExportRecordedDataState: - return (void*)soap_instantiate___trc__GetExportRecordedDataState(soap, -1, type, arrayType, n); - case SOAP_TYPE___trp__GetServiceCapabilities: - return (void*)soap_instantiate___trp__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___trp__GetReplayUri: - return (void*)soap_instantiate___trp__GetReplayUri(soap, -1, type, arrayType, n); - case SOAP_TYPE___trp__GetReplayConfiguration: - return (void*)soap_instantiate___trp__GetReplayConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trp__SetReplayConfiguration: - return (void*)soap_instantiate___trp__SetReplayConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetServiceCapabilities: - return (void*)soap_instantiate___trt__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoSources: - return (void*)soap_instantiate___trt__GetVideoSources(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioSources: - return (void*)soap_instantiate___trt__GetAudioSources(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioOutputs: - return (void*)soap_instantiate___trt__GetAudioOutputs(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__CreateProfile: - return (void*)soap_instantiate___trt__CreateProfile(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetProfile: - return (void*)soap_instantiate___trt__GetProfile(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetProfiles: - return (void*)soap_instantiate___trt__GetProfiles(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddVideoEncoderConfiguration: - return (void*)soap_instantiate___trt__AddVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddVideoSourceConfiguration: - return (void*)soap_instantiate___trt__AddVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddAudioEncoderConfiguration: - return (void*)soap_instantiate___trt__AddAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddAudioSourceConfiguration: - return (void*)soap_instantiate___trt__AddAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddPTZConfiguration: - return (void*)soap_instantiate___trt__AddPTZConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddVideoAnalyticsConfiguration: - return (void*)soap_instantiate___trt__AddVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddMetadataConfiguration: - return (void*)soap_instantiate___trt__AddMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddAudioOutputConfiguration: - return (void*)soap_instantiate___trt__AddAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__AddAudioDecoderConfiguration: - return (void*)soap_instantiate___trt__AddAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveVideoEncoderConfiguration: - return (void*)soap_instantiate___trt__RemoveVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveVideoSourceConfiguration: - return (void*)soap_instantiate___trt__RemoveVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveAudioEncoderConfiguration: - return (void*)soap_instantiate___trt__RemoveAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveAudioSourceConfiguration: - return (void*)soap_instantiate___trt__RemoveAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemovePTZConfiguration: - return (void*)soap_instantiate___trt__RemovePTZConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration: - return (void*)soap_instantiate___trt__RemoveVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveMetadataConfiguration: - return (void*)soap_instantiate___trt__RemoveMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveAudioOutputConfiguration: - return (void*)soap_instantiate___trt__RemoveAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__RemoveAudioDecoderConfiguration: - return (void*)soap_instantiate___trt__RemoveAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__DeleteProfile: - return (void*)soap_instantiate___trt__DeleteProfile(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoSourceConfigurations: - return (void*)soap_instantiate___trt__GetVideoSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoEncoderConfigurations: - return (void*)soap_instantiate___trt__GetVideoEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioSourceConfigurations: - return (void*)soap_instantiate___trt__GetAudioSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioEncoderConfigurations: - return (void*)soap_instantiate___trt__GetAudioEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoAnalyticsConfigurations: - return (void*)soap_instantiate___trt__GetVideoAnalyticsConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetMetadataConfigurations: - return (void*)soap_instantiate___trt__GetMetadataConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioOutputConfigurations: - return (void*)soap_instantiate___trt__GetAudioOutputConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioDecoderConfigurations: - return (void*)soap_instantiate___trt__GetAudioDecoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoSourceConfiguration: - return (void*)soap_instantiate___trt__GetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoEncoderConfiguration: - return (void*)soap_instantiate___trt__GetVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioSourceConfiguration: - return (void*)soap_instantiate___trt__GetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioEncoderConfiguration: - return (void*)soap_instantiate___trt__GetAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoAnalyticsConfiguration: - return (void*)soap_instantiate___trt__GetVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetMetadataConfiguration: - return (void*)soap_instantiate___trt__GetMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioOutputConfiguration: - return (void*)soap_instantiate___trt__GetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioDecoderConfiguration: - return (void*)soap_instantiate___trt__GetAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleVideoEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleVideoSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleAudioEncoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleAudioSourceConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleVideoAnalyticsConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleMetadataConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleMetadataConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleAudioOutputConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations: - return (void*)soap_instantiate___trt__GetCompatibleAudioDecoderConfigurations(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetVideoSourceConfiguration: - return (void*)soap_instantiate___trt__SetVideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetVideoEncoderConfiguration: - return (void*)soap_instantiate___trt__SetVideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetAudioSourceConfiguration: - return (void*)soap_instantiate___trt__SetAudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetAudioEncoderConfiguration: - return (void*)soap_instantiate___trt__SetAudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetVideoAnalyticsConfiguration: - return (void*)soap_instantiate___trt__SetVideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetMetadataConfiguration: - return (void*)soap_instantiate___trt__SetMetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetAudioOutputConfiguration: - return (void*)soap_instantiate___trt__SetAudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetAudioDecoderConfiguration: - return (void*)soap_instantiate___trt__SetAudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoSourceConfigurationOptions: - return (void*)soap_instantiate___trt__GetVideoSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions: - return (void*)soap_instantiate___trt__GetVideoEncoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioSourceConfigurationOptions: - return (void*)soap_instantiate___trt__GetAudioSourceConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions: - return (void*)soap_instantiate___trt__GetAudioEncoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetMetadataConfigurationOptions: - return (void*)soap_instantiate___trt__GetMetadataConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioOutputConfigurationOptions: - return (void*)soap_instantiate___trt__GetAudioOutputConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions: - return (void*)soap_instantiate___trt__GetAudioDecoderConfigurationOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances: - return (void*)soap_instantiate___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetStreamUri: - return (void*)soap_instantiate___trt__GetStreamUri(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__StartMulticastStreaming: - return (void*)soap_instantiate___trt__StartMulticastStreaming(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__StopMulticastStreaming: - return (void*)soap_instantiate___trt__StopMulticastStreaming(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetSynchronizationPoint: - return (void*)soap_instantiate___trt__SetSynchronizationPoint(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetSnapshotUri: - return (void*)soap_instantiate___trt__GetSnapshotUri(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetVideoSourceModes: - return (void*)soap_instantiate___trt__GetVideoSourceModes(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetVideoSourceMode: - return (void*)soap_instantiate___trt__SetVideoSourceMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetOSDs: - return (void*)soap_instantiate___trt__GetOSDs(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetOSD: - return (void*)soap_instantiate___trt__GetOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__GetOSDOptions: - return (void*)soap_instantiate___trt__GetOSDOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__SetOSD: - return (void*)soap_instantiate___trt__SetOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__CreateOSD: - return (void*)soap_instantiate___trt__CreateOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE___trt__DeleteOSD: - return (void*)soap_instantiate___trt__DeleteOSD(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__GetServiceCapabilities: - return (void*)soap_instantiate___trv__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__GetReceivers: - return (void*)soap_instantiate___trv__GetReceivers(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__GetReceiver: - return (void*)soap_instantiate___trv__GetReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__CreateReceiver: - return (void*)soap_instantiate___trv__CreateReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__DeleteReceiver: - return (void*)soap_instantiate___trv__DeleteReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__ConfigureReceiver: - return (void*)soap_instantiate___trv__ConfigureReceiver(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__SetReceiverMode: - return (void*)soap_instantiate___trv__SetReceiverMode(soap, -1, type, arrayType, n); - case SOAP_TYPE___trv__GetReceiverState: - return (void*)soap_instantiate___trv__GetReceiverState(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetServiceCapabilities: - return (void*)soap_instantiate___tse__GetServiceCapabilities(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetRecordingSummary: - return (void*)soap_instantiate___tse__GetRecordingSummary(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetRecordingInformation: - return (void*)soap_instantiate___tse__GetRecordingInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetMediaAttributes: - return (void*)soap_instantiate___tse__GetMediaAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__FindRecordings: - return (void*)soap_instantiate___tse__FindRecordings(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetRecordingSearchResults: - return (void*)soap_instantiate___tse__GetRecordingSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__FindEvents: - return (void*)soap_instantiate___tse__FindEvents(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetEventSearchResults: - return (void*)soap_instantiate___tse__GetEventSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__FindPTZPosition: - return (void*)soap_instantiate___tse__FindPTZPosition(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetPTZPositionSearchResults: - return (void*)soap_instantiate___tse__GetPTZPositionSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetSearchState: - return (void*)soap_instantiate___tse__GetSearchState(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__EndSearch: - return (void*)soap_instantiate___tse__EndSearch(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__FindMetadata: - return (void*)soap_instantiate___tse__FindMetadata(soap, -1, type, arrayType, n); - case SOAP_TYPE___tse__GetMetadataSearchResults: - return (void*)soap_instantiate___tse__GetMetadataSearchResults(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa__EndpointReference: - return (void*)soap_instantiate__wsa__EndpointReference(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa__RelatesTo: - return (void*)soap_instantiate__wsa__RelatesTo(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa__From: - return (void*)soap_instantiate__wsa__From(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa__ReplyTo: - return (void*)soap_instantiate__wsa__ReplyTo(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa__FaultTo: - return (void*)soap_instantiate__wsa__FaultTo(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__Hello: - return (void*)soap_instantiate__wsdd__Hello(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__Bye: - return (void*)soap_instantiate__wsdd__Bye(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__Probe: - return (void*)soap_instantiate__wsdd__Probe(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__ProbeMatches: - return (void*)soap_instantiate__wsdd__ProbeMatches(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__Resolve: - return (void*)soap_instantiate__wsdd__Resolve(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__ResolveMatches: - return (void*)soap_instantiate__wsdd__ResolveMatches(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__Scopes: - return (void*)soap_instantiate__wsdd__Scopes(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__Security: - return (void*)soap_instantiate__wsdd__Security(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__Sig: - return (void*)soap_instantiate__wsdd__Sig(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsdd__AppSequence: - return (void*)soap_instantiate__wsdd__AppSequence(soap, -1, type, arrayType, n); - case SOAP_TYPE__ds__Signature: - return (void*)soap_instantiate__ds__Signature(soap, -1, type, arrayType, n); - case SOAP_TYPE__ds__Transform: - return (void*)soap_instantiate__ds__Transform(soap, -1, type, arrayType, n); - case SOAP_TYPE__ds__KeyInfo: - return (void*)soap_instantiate__ds__KeyInfo(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__dateTime: - return (void*)soap_instantiate_xsd__dateTime(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Assertion: - return (void*)soap_instantiate__saml1__Assertion(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Conditions: - return (void*)soap_instantiate__saml1__Conditions(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Condition: - return (void*)soap_instantiate__saml1__Condition(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__AudienceRestrictionCondition: - return (void*)soap_instantiate__saml1__AudienceRestrictionCondition(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__DoNotCacheCondition: - return (void*)soap_instantiate__saml1__DoNotCacheCondition(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Advice: - return (void*)soap_instantiate__saml1__Advice(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Statement: - return (void*)soap_instantiate__saml1__Statement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__SubjectStatement: - return (void*)soap_instantiate__saml1__SubjectStatement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Subject: - return (void*)soap_instantiate__saml1__Subject(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__NameIdentifier: - return (void*)soap_instantiate__saml1__NameIdentifier(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__SubjectConfirmation: - return (void*)soap_instantiate__saml1__SubjectConfirmation(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__AuthenticationStatement: - return (void*)soap_instantiate__saml1__AuthenticationStatement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__SubjectLocality: - return (void*)soap_instantiate__saml1__SubjectLocality(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__AuthorityBinding: - return (void*)soap_instantiate__saml1__AuthorityBinding(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__AuthorizationDecisionStatement: - return (void*)soap_instantiate__saml1__AuthorizationDecisionStatement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Action: - return (void*)soap_instantiate__saml1__Action(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Evidence: - return (void*)soap_instantiate__saml1__Evidence(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__AttributeStatement: - return (void*)soap_instantiate__saml1__AttributeStatement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__AttributeDesignator: - return (void*)soap_instantiate__saml1__AttributeDesignator(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml1__Attribute: - return (void*)soap_instantiate__saml1__Attribute(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__BaseID: - return (void*)soap_instantiate__saml2__BaseID(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__NameID: - return (void*)soap_instantiate__saml2__NameID(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__EncryptedID: - return (void*)soap_instantiate__saml2__EncryptedID(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Issuer: - return (void*)soap_instantiate__saml2__Issuer(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Assertion: - return (void*)soap_instantiate__saml2__Assertion(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Subject: - return (void*)soap_instantiate__saml2__Subject(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__SubjectConfirmation: - return (void*)soap_instantiate__saml2__SubjectConfirmation(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__SubjectConfirmationData: - return (void*)soap_instantiate__saml2__SubjectConfirmationData(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Conditions: - return (void*)soap_instantiate__saml2__Conditions(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Condition: - return (void*)soap_instantiate__saml2__Condition(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__AudienceRestriction: - return (void*)soap_instantiate__saml2__AudienceRestriction(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__OneTimeUse: - return (void*)soap_instantiate__saml2__OneTimeUse(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__ProxyRestriction: - return (void*)soap_instantiate__saml2__ProxyRestriction(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Advice: - return (void*)soap_instantiate__saml2__Advice(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__EncryptedAssertion: - return (void*)soap_instantiate__saml2__EncryptedAssertion(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Statement: - return (void*)soap_instantiate__saml2__Statement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__AuthnStatement: - return (void*)soap_instantiate__saml2__AuthnStatement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__SubjectLocality: - return (void*)soap_instantiate__saml2__SubjectLocality(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__AuthnContext: - return (void*)soap_instantiate__saml2__AuthnContext(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__AuthzDecisionStatement: - return (void*)soap_instantiate__saml2__AuthzDecisionStatement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Action: - return (void*)soap_instantiate__saml2__Action(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Evidence: - return (void*)soap_instantiate__saml2__Evidence(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__AttributeStatement: - return (void*)soap_instantiate__saml2__AttributeStatement(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__Attribute: - return (void*)soap_instantiate__saml2__Attribute(soap, -1, type, arrayType, n); - case SOAP_TYPE__saml2__EncryptedAttribute: - return (void*)soap_instantiate__saml2__EncryptedAttribute(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__anyType: - return (void*)soap_instantiate_xsd__anyType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__anyAttribute: - return (void*)soap_instantiate_xsd__anyAttribute(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__EndpointReference: - return (void*)soap_instantiate__wsa5__EndpointReference(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__ReferenceParameters: - return (void*)soap_instantiate__wsa5__ReferenceParameters(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__Metadata: - return (void*)soap_instantiate__wsa5__Metadata(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__RelatesTo: - return (void*)soap_instantiate__wsa5__RelatesTo(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__ReplyTo: - return (void*)soap_instantiate__wsa5__ReplyTo(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__From: - return (void*)soap_instantiate__wsa5__From(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__FaultTo: - return (void*)soap_instantiate__wsa5__FaultTo(soap, -1, type, arrayType, n); - case SOAP_TYPE__wsa5__ProblemAction: - return (void*)soap_instantiate__wsa5__ProblemAction(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__QName: - return (void*)soap_instantiate_xsd__QName(soap, -1, type, arrayType, n); - case SOAP_TYPE_SOAP_ENV__Envelope: - return (void*)soap_instantiate_SOAP_ENV__Envelope(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__NCName: - return (void*)soap_instantiate_xsd__NCName(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__anySimpleType: - return (void*)soap_instantiate_xsd__anySimpleType(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__anyURI: - return (void*)soap_instantiate_xsd__anyURI(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__duration: - return (void*)soap_instantiate_xsd__duration(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__integer: - return (void*)soap_instantiate_xsd__integer(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__nonNegativeInteger: - return (void*)soap_instantiate_xsd__nonNegativeInteger(soap, -1, type, arrayType, n); - case SOAP_TYPE_xsd__token: - return (void*)soap_instantiate_xsd__token(soap, -1, type, arrayType, n); - case SOAP_TYPE__xmime__contentType: - return (void*)soap_instantiate__xmime__contentType(soap, -1, type, arrayType, n); - case SOAP_TYPE__xml__lang: - return (void*)soap_instantiate__xml__lang(soap, -1, type, arrayType, n); - case SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType: - return (void*)soap_instantiate_wsnt__AbsoluteOrRelativeTimeType(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IntAttrList: - return (void*)soap_instantiate_tt__IntAttrList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__FloatAttrList: - return (void*)soap_instantiate_tt__FloatAttrList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__StringAttrList: - return (void*)soap_instantiate_tt__StringAttrList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__StringList: - return (void*)soap_instantiate_tt__StringList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReferenceTokenList: - return (void*)soap_instantiate_tt__ReferenceTokenList(soap, -1, type, arrayType, n); - case SOAP_TYPE_tmd__DelayTimes: - return (void*)soap_instantiate_tmd__DelayTimes(soap, -1, type, arrayType, n); - case SOAP_TYPE_tds__EAPMethodTypes: - return (void*)soap_instantiate_tds__EAPMethodTypes(soap, -1, type, arrayType, n); - case SOAP_TYPE_trt__EncodingTypes: - return (void*)soap_instantiate_trt__EncodingTypes(soap, -1, type, arrayType, n); - case SOAP_TYPE_trc__EncodingTypes: - return (void*)soap_instantiate_trc__EncodingTypes(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReferenceToken: - return (void*)soap_instantiate_tt__ReferenceToken(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Name: - return (void*)soap_instantiate_tt__Name(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority: - return (void*)soap_instantiate_tt__NetworkInterfaceConfigPriority(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv4Address: - return (void*)soap_instantiate_tt__IPv4Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__IPv6Address: - return (void*)soap_instantiate_tt__IPv6Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__HwAddress: - return (void*)soap_instantiate_tt__HwAddress(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__DNSName: - return (void*)soap_instantiate_tt__DNSName(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Domain: - return (void*)soap_instantiate_tt__Domain(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11SSIDType: - return (void*)soap_instantiate_tt__Dot11SSIDType(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11PSK: - return (void*)soap_instantiate_tt__Dot11PSK(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Dot11PSKPassphrase: - return (void*)soap_instantiate_tt__Dot11PSKPassphrase(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AuxiliaryData: - return (void*)soap_instantiate_tt__AuxiliaryData(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__Description: - return (void*)soap_instantiate_tt__Description(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__XPathExpression: - return (void*)soap_instantiate_tt__XPathExpression(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobMode: - return (void*)soap_instantiate_tt__RecordingJobMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobState: - return (void*)soap_instantiate_tt__RecordingJobState(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__AudioClassType: - return (void*)soap_instantiate_tt__AudioClassType(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__FullTopicExpression: - return (void*)soap_instantiate_wstop__FullTopicExpression(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__ConcreteTopicExpression: - return (void*)soap_instantiate_wstop__ConcreteTopicExpression(soap, -1, type, arrayType, n); - case SOAP_TYPE_wstop__SimpleTopicExpression: - return (void*)soap_instantiate_wstop__SimpleTopicExpression(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__ReceiverReference: - return (void*)soap_instantiate_tt__ReceiverReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingReference: - return (void*)soap_instantiate_tt__RecordingReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__TrackReference: - return (void*)soap_instantiate_tt__TrackReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__JobToken: - return (void*)soap_instantiate_tt__JobToken(soap, -1, type, arrayType, n); - case SOAP_TYPE_tt__RecordingJobReference: - return (void*)soap_instantiate_tt__RecordingJobReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic: - return (void*)soap_instantiate_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTowstop__TopicType: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTowstop__TopicType(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfxsd__QName: - return (void*)soap_instantiate_std__vectorTemplateOfxsd__QName(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__MediaAttributes: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__MediaAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Receiver: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Receiver(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PresetTour: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PresetTour(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPreset: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PTZPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZNode: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PTZNode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__OSDConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__OSDConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTotrt__VideoSourceMode: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTotrt__VideoSourceMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutputConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__MetadataConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSourceConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSourceConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Profile: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Profile(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutput: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSource: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSource: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__VideoSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTotimg__ImagingPreset: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTotimg__ImagingPreset(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LocationEntity: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__LocationEntity(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTotds__StorageConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTotds__StorageConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RelayOutput: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__RelayOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot1XConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Dot1XConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateStatus: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__CertificateStatus(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Certificate: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Certificate(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkProtocol: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkInterface: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__NetworkInterface(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__CapabilityCategory: - return (void*)soap_instantiate_std__vectorTemplateOftt__CapabilityCategory(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__User: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__User(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Scope: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Scope(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__BackupFile: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__BackupFile(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTotds__Service: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTotds__Service(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTotmd__SerialPort: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTotmd__SerialPort(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__DigitalInput: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__DigitalInput(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoOutput: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__VideoOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTotmd__RelayOutputOptions: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftmd__ParityBit: - return (void*)soap_instantiate_std__vectorTemplateOftmd__ParityBit(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__DigitalIdleState: - return (void*)soap_instantiate_std__vectorTemplateOftt__DigitalIdleState(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__RelayMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__RelayMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FileProgress: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__FileProgress(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__OSDType: - return (void*)soap_instantiate_std__vectorTemplateOftt__OSDType(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ColorspaceRange: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__ColorspaceRange(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Color: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Color(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ActiveConnection: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__ActiveConnection(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioClassCandidate: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioClassCandidate(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__EngineConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__EngineConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateTrack: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateSource: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobStateSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobTrack: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobTrack(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobSource: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetTracksResponseItem: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__GetTracksResponseItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackAttributes: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__TrackAttributes(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackInformation: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__TrackInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindMetadataResult: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__FindMetadataResult(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindPTZPositionResult: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__FindPTZPositionResult(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindEventResult: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__FindEventResult(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingInformation: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__RecordingInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__RecordingReference: - return (void*)soap_instantiate_std__vectorTemplateOftt__RecordingReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__SourceReference: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__SourceReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Rectangle: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Rectangle(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayoutOptions: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PaneLayoutOptions(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayout: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PaneLayout(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Polyline: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Polyline(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ConfigDescription: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__ConfigDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_tt__ConfigDescription_Messages: - return (void*)soap_instantiate_std__vectorTemplateOf_tt__ConfigDescription_Messages(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Config: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Config(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription: - return (void*)soap_instantiate_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription: - return (void*)soap_instantiate_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_ElementItem: - return (void*)soap_instantiate_std__vectorTemplateOf_tt__ItemList_ElementItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_SimpleItem: - return (void*)soap_instantiate_std__vectorTemplateOf_tt__ItemList_SimpleItem(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__BacklightCompensationMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__BacklightCompensationMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__ImageStabilizationMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__ImageStabilizationMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__WhiteBalanceMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__WhiteBalanceMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__ExposurePriority: - return (void*)soap_instantiate_std__vectorTemplateOftt__ExposurePriority(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__ExposureMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__ExposureMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__AutoFocusMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__AutoFocusMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__WideDynamicMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__WideDynamicMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__IrCutFilterMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__IrCutFilterMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourDirection: - return (void*)soap_instantiate_std__vectorTemplateOftt__PTZPresetTourDirection(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPresetTourSpot: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Space1DDescription: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Space1DDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Space2DDescription: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Space2DDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__ReverseMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__ReverseMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__EFlipMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__EFlipMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourOperation: - return (void*)soap_instantiate_std__vectorTemplateOftt__PTZPresetTourOperation(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__SystemLogUri: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__SystemLogUri(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__OnvifVersion: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__OnvifVersion(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__AuxiliaryData: - return (void*)soap_instantiate_std__vectorTemplateOftt__AuxiliaryData(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__Dot11Cipher: - return (void*)soap_instantiate_std__vectorTemplateOftt__Dot11Cipher(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__Dot11AuthAndMangementSuite: - return (void*)soap_instantiate_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__IPv6Address: - return (void*)soap_instantiate_std__vectorTemplateOftt__IPv6Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__IPv4Address: - return (void*)soap_instantiate_std__vectorTemplateOftt__IPv4Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkHost: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__NetworkHost(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__IPAddress: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__IPAddress(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfxsd__token: - return (void*)soap_instantiate_std__vectorTemplateOfxsd__token(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv6Address: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv4Address: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11Configuration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot3Configuration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfstd__string: - return (void*)soap_instantiate_std__vectorTemplateOfstd__string(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution2: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__VideoResolution2(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__H264Profile: - return (void*)soap_instantiate_std__vectorTemplateOftt__H264Profile(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__Mpeg4Profile: - return (void*)soap_instantiate_std__vectorTemplateOftt__Mpeg4Profile(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__VideoResolution(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__RotateMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__RotateMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__SceneOrientationMode: - return (void*)soap_instantiate_std__vectorTemplateOftt__SceneOrientationMode(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOftt__ReferenceToken: - return (void*)soap_instantiate_std__vectorTemplateOftt__ReferenceToken(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LensProjection: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__LensProjection(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LensDescription: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__LensDescription(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOffloat: - return (void*)soap_instantiate_std__vectorTemplateOffloat(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfint: - return (void*)soap_instantiate_std__vectorTemplateOfint(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster: - return (void*)soap_instantiate_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Vector: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTott__Vector(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description: - return (void*)soap_instantiate_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfxsd__anyURI: - return (void*)soap_instantiate_std__vectorTemplateOfxsd__anyURI(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__TopicExpressionType: - return (void*)soap_instantiate_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(soap, -1, type, arrayType, n); - case SOAP_TYPE_std__vectorTemplateOfxsd__anyType: - return (void*)soap_instantiate_std__vectorTemplateOfxsd__anyType(soap, -1, type, arrayType, n); - } - return NULL; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_fdelete(struct soap *soap, struct soap_clist *p) -{ - (void)soap; /* appease -Wall -Werror */ - if (!p->ptr) - return SOAP_OK; - switch (p->type) - { - case SOAP_TYPE_wsa__EndpointReferenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - break; - case SOAP_TYPE_wsa__ReferencePropertiesType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__ReferencePropertiesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__ReferencePropertiesType); - break; - case SOAP_TYPE_wsa__ReferenceParametersType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__ReferenceParametersType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__ReferenceParametersType); - break; - case SOAP_TYPE_wsa__ServiceNameType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__ServiceNameType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__ServiceNameType); - break; - case SOAP_TYPE_wsa__Relationship: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__Relationship); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__Relationship); - break; -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Header: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct SOAP_ENV__Header); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct SOAP_ENV__Header); - break; -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Code: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct SOAP_ENV__Code); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct SOAP_ENV__Code); - break; -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Reason: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct SOAP_ENV__Reason); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct SOAP_ENV__Reason); - break; -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Fault: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct SOAP_ENV__Fault); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct SOAP_ENV__Fault); - break; -#endif - case SOAP_TYPE_wsdd__HelloType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__HelloType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__HelloType); - break; - case SOAP_TYPE_wsdd__ByeType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ByeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ByeType); - break; - case SOAP_TYPE_wsdd__ProbeType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ProbeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ProbeType); - break; - case SOAP_TYPE_wsdd__ProbeMatchesType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ProbeMatchesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ProbeMatchesType); - break; - case SOAP_TYPE_wsdd__ProbeMatchType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ProbeMatchType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ProbeMatchType); - break; - case SOAP_TYPE_wsdd__ResolveType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ResolveType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ResolveType); - break; - case SOAP_TYPE_wsdd__ResolveMatchesType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ResolveMatchesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ResolveMatchesType); - break; - case SOAP_TYPE_wsdd__ResolveMatchType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ResolveMatchType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ResolveMatchType); - break; - case SOAP_TYPE_wsdd__SecurityType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__SecurityType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__SecurityType); - break; - case SOAP_TYPE_wsdd__SigType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__SigType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__SigType); - break; - case SOAP_TYPE_wsdd__ScopesType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ScopesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ScopesType); - break; - case SOAP_TYPE_wsdd__AppSequenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__AppSequenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__AppSequenceType); - break; - case SOAP_TYPE___wsdd__Hello: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __wsdd__Hello); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __wsdd__Hello); - break; - case SOAP_TYPE___wsdd__Bye: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __wsdd__Bye); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __wsdd__Bye); - break; - case SOAP_TYPE___wsdd__Probe: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __wsdd__Probe); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __wsdd__Probe); - break; - case SOAP_TYPE___wsdd__ProbeMatches: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __wsdd__ProbeMatches); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __wsdd__ProbeMatches); - break; - case SOAP_TYPE___wsdd__Resolve: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __wsdd__Resolve); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __wsdd__Resolve); - break; - case SOAP_TYPE___wsdd__ResolveMatches: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __wsdd__ResolveMatches); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __wsdd__ResolveMatches); - break; - case SOAP_TYPE__wsu__Timestamp: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsu__Timestamp); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsu__Timestamp); - break; - case SOAP_TYPE_wsse__EncodedString: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsse__EncodedString); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsse__EncodedString); - break; - case SOAP_TYPE__wsse__UsernameToken: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__UsernameToken); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__UsernameToken); - break; - case SOAP_TYPE__wsse__BinarySecurityToken: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__BinarySecurityToken); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__BinarySecurityToken); - break; - case SOAP_TYPE__wsse__Reference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__Reference); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__Reference); - break; - case SOAP_TYPE__wsse__Embedded: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__Embedded); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__Embedded); - break; - case SOAP_TYPE__wsse__KeyIdentifier: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__KeyIdentifier); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__KeyIdentifier); - break; - case SOAP_TYPE__wsse__SecurityTokenReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__SecurityTokenReference); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__SecurityTokenReference); - break; - case SOAP_TYPE_ds__KeyInfoType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__KeyInfoType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__KeyInfoType); - break; - case SOAP_TYPE_ds__SignatureType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__SignatureType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__SignatureType); - break; - case SOAP_TYPE__c14n__InclusiveNamespaces: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _c14n__InclusiveNamespaces); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _c14n__InclusiveNamespaces); - break; - case SOAP_TYPE_ds__TransformType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__TransformType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__TransformType); - break; - case SOAP_TYPE_ds__SignedInfoType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__SignedInfoType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__SignedInfoType); - break; - case SOAP_TYPE_ds__CanonicalizationMethodType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__CanonicalizationMethodType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__CanonicalizationMethodType); - break; - case SOAP_TYPE_ds__SignatureMethodType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__SignatureMethodType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__SignatureMethodType); - break; - case SOAP_TYPE_ds__ReferenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__ReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__ReferenceType); - break; - case SOAP_TYPE_ds__TransformsType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__TransformsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__TransformsType); - break; - case SOAP_TYPE_ds__DigestMethodType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__DigestMethodType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__DigestMethodType); - break; - case SOAP_TYPE_ds__KeyValueType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__KeyValueType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__KeyValueType); - break; - case SOAP_TYPE_ds__RetrievalMethodType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__RetrievalMethodType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__RetrievalMethodType); - break; - case SOAP_TYPE_ds__X509DataType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__X509DataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__X509DataType); - break; - case SOAP_TYPE_ds__X509IssuerSerialType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__X509IssuerSerialType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__X509IssuerSerialType); - break; - case SOAP_TYPE_ds__DSAKeyValueType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__DSAKeyValueType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__DSAKeyValueType); - break; - case SOAP_TYPE_ds__RSAKeyValueType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__RSAKeyValueType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__RSAKeyValueType); - break; - case SOAP_TYPE_xenc__EncryptionPropertyType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__EncryptionPropertyType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__EncryptionPropertyType); - break; - case SOAP_TYPE_xenc__EncryptedType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__EncryptedType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__EncryptedType); - break; - case SOAP_TYPE_xenc__EncryptionMethodType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__EncryptionMethodType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__EncryptionMethodType); - break; - case SOAP_TYPE_xenc__CipherDataType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__CipherDataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__CipherDataType); - break; - case SOAP_TYPE_xenc__CipherReferenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__CipherReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__CipherReferenceType); - break; - case SOAP_TYPE_xenc__TransformsType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__TransformsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__TransformsType); - break; - case SOAP_TYPE_xenc__AgreementMethodType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__AgreementMethodType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__AgreementMethodType); - break; - case SOAP_TYPE_xenc__ReferenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__ReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__ReferenceType); - break; - case SOAP_TYPE_xenc__EncryptionPropertiesType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__EncryptionPropertiesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__EncryptionPropertiesType); - break; - case SOAP_TYPE___xenc__union_ReferenceList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __xenc__union_ReferenceList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __xenc__union_ReferenceList); - break; - case SOAP_TYPE__xenc__ReferenceList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _xenc__ReferenceList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _xenc__ReferenceList); - break; - case SOAP_TYPE_xenc__EncryptedDataType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__EncryptedDataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__EncryptedDataType); - break; - case SOAP_TYPE_xenc__EncryptedKeyType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct xenc__EncryptedKeyType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct xenc__EncryptedKeyType); - break; - case SOAP_TYPE_wsc__SecurityContextTokenType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsc__SecurityContextTokenType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsc__SecurityContextTokenType); - break; - case SOAP_TYPE___wsc__DerivedKeyTokenType_sequence: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __wsc__DerivedKeyTokenType_sequence); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __wsc__DerivedKeyTokenType_sequence); - break; - case SOAP_TYPE_wsc__DerivedKeyTokenType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsc__DerivedKeyTokenType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsc__DerivedKeyTokenType); - break; - case SOAP_TYPE_wsc__PropertiesType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsc__PropertiesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsc__PropertiesType); - break; - case SOAP_TYPE___saml1__union_AssertionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml1__union_AssertionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml1__union_AssertionType); - break; - case SOAP_TYPE_saml1__AssertionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AssertionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AssertionType); - break; - case SOAP_TYPE___saml1__union_ConditionsType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml1__union_ConditionsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml1__union_ConditionsType); - break; - case SOAP_TYPE_saml1__ConditionsType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__ConditionsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__ConditionsType); - break; - case SOAP_TYPE_saml1__ConditionAbstractType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__ConditionAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__ConditionAbstractType); - break; - case SOAP_TYPE___saml1__union_AdviceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml1__union_AdviceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml1__union_AdviceType); - break; - case SOAP_TYPE_saml1__AdviceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AdviceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AdviceType); - break; - case SOAP_TYPE_saml1__StatementAbstractType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__StatementAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__StatementAbstractType); - break; - case SOAP_TYPE_saml1__SubjectType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectType); - break; - case SOAP_TYPE_saml1__SubjectConfirmationType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectConfirmationType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectConfirmationType); - break; - case SOAP_TYPE_saml1__SubjectLocalityType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectLocalityType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectLocalityType); - break; - case SOAP_TYPE_saml1__AuthorityBindingType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AuthorityBindingType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AuthorityBindingType); - break; - case SOAP_TYPE___saml1__union_EvidenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml1__union_EvidenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml1__union_EvidenceType); - break; - case SOAP_TYPE_saml1__EvidenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__EvidenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__EvidenceType); - break; - case SOAP_TYPE_saml1__AttributeDesignatorType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AttributeDesignatorType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AttributeDesignatorType); - break; - case SOAP_TYPE_saml1__AudienceRestrictionConditionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AudienceRestrictionConditionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AudienceRestrictionConditionType); - break; - case SOAP_TYPE_saml1__DoNotCacheConditionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__DoNotCacheConditionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__DoNotCacheConditionType); - break; - case SOAP_TYPE_saml1__SubjectStatementAbstractType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectStatementAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectStatementAbstractType); - break; - case SOAP_TYPE_saml1__NameIdentifierType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__NameIdentifierType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__NameIdentifierType); - break; - case SOAP_TYPE_saml1__ActionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__ActionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__ActionType); - break; - case SOAP_TYPE_saml1__AttributeType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AttributeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AttributeType); - break; - case SOAP_TYPE_saml1__AuthenticationStatementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AuthenticationStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AuthenticationStatementType); - break; - case SOAP_TYPE_saml1__AuthorizationDecisionStatementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AuthorizationDecisionStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AuthorizationDecisionStatementType); - break; - case SOAP_TYPE_saml1__AttributeStatementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AttributeStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AttributeStatementType); - break; - case SOAP_TYPE_saml2__BaseIDAbstractType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__BaseIDAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__BaseIDAbstractType); - break; - case SOAP_TYPE_saml2__EncryptedElementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - break; - case SOAP_TYPE___saml2__union_AssertionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml2__union_AssertionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml2__union_AssertionType); - break; - case SOAP_TYPE_saml2__AssertionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AssertionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AssertionType); - break; - case SOAP_TYPE_saml2__SubjectType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectType); - break; - case SOAP_TYPE_saml2__SubjectConfirmationType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationType); - break; - case SOAP_TYPE___saml2__union_ConditionsType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml2__union_ConditionsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml2__union_ConditionsType); - break; - case SOAP_TYPE_saml2__ConditionsType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ConditionsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ConditionsType); - break; - case SOAP_TYPE_saml2__ConditionAbstractType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ConditionAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ConditionAbstractType); - break; - case SOAP_TYPE___saml2__union_AdviceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml2__union_AdviceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml2__union_AdviceType); - break; - case SOAP_TYPE_saml2__AdviceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AdviceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AdviceType); - break; - case SOAP_TYPE_saml2__StatementAbstractType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__StatementAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__StatementAbstractType); - break; - case SOAP_TYPE_saml2__SubjectLocalityType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectLocalityType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectLocalityType); - break; - case SOAP_TYPE_saml2__AuthnContextType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AuthnContextType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AuthnContextType); - break; - case SOAP_TYPE___saml2__union_EvidenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml2__union_EvidenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml2__union_EvidenceType); - break; - case SOAP_TYPE_saml2__EvidenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__EvidenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__EvidenceType); - break; - case SOAP_TYPE_saml2__AttributeType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AttributeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AttributeType); - break; - case SOAP_TYPE_saml2__NameIDType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__NameIDType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__NameIDType); - break; - case SOAP_TYPE_saml2__SubjectConfirmationDataType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationDataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationDataType); - break; - case SOAP_TYPE_saml2__AudienceRestrictionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AudienceRestrictionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AudienceRestrictionType); - break; - case SOAP_TYPE_saml2__OneTimeUseType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__OneTimeUseType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__OneTimeUseType); - break; - case SOAP_TYPE_saml2__ProxyRestrictionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ProxyRestrictionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ProxyRestrictionType); - break; - case SOAP_TYPE_saml2__AuthnStatementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AuthnStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AuthnStatementType); - break; - case SOAP_TYPE_saml2__AuthzDecisionStatementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AuthzDecisionStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AuthzDecisionStatementType); - break; - case SOAP_TYPE_saml2__ActionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ActionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ActionType); - break; - case SOAP_TYPE___saml2__union_AttributeStatementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __saml2__union_AttributeStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __saml2__union_AttributeStatementType); - break; - case SOAP_TYPE_saml2__AttributeStatementType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AttributeStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AttributeStatementType); - break; - case SOAP_TYPE_saml2__KeyInfoConfirmationDataType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__KeyInfoConfirmationDataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__KeyInfoConfirmationDataType); - break; - case SOAP_TYPE__wsse__Security: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__Security); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__Security); - break; - case SOAP_TYPE__wsse__Password: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct _wsse__Password); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct _wsse__Password); - break; - case SOAP_TYPE_wsa5__EndpointReferenceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - break; - case SOAP_TYPE_wsa5__ReferenceParametersType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__ReferenceParametersType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__ReferenceParametersType); - break; - case SOAP_TYPE_wsa5__MetadataType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__MetadataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__MetadataType); - break; - case SOAP_TYPE_wsa5__ProblemActionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__ProblemActionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__ProblemActionType); - break; - case SOAP_TYPE_wsa5__RelatesToType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__RelatesToType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__RelatesToType); - break; - case SOAP_TYPE_chan__ChannelInstanceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct chan__ChannelInstanceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct chan__ChannelInstanceType); - break; - case SOAP_TYPE_std__string: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__base64Binary: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__base64Binary); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__base64Binary); - break; - case SOAP_TYPE_xsd__hexBinary: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__hexBinary); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__hexBinary); - break; - case SOAP_TYPE_tt__FloatList__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FloatList__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FloatList__); - break; - case SOAP_TYPE_tt__IntList__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IntList__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IntList__); - break; - case SOAP_TYPE_wsa5__EndpointReferenceType__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsa5__EndpointReferenceType__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsa5__EndpointReferenceType__); - break; - case SOAP_TYPE_SOAP_ENV__Envelope__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), SOAP_ENV__Envelope__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), SOAP_ENV__Envelope__); - break; - case SOAP_TYPE_SOAP_ENV__Fault_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), SOAP_ENV__Fault_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), SOAP_ENV__Fault_); - break; - case SOAP_TYPE_xsd__NCName__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__NCName__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__NCName__); - break; - case SOAP_TYPE_xsd__QName__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__QName__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__QName__); - break; - case SOAP_TYPE_xsd__anySimpleType__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__anySimpleType__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__anySimpleType__); - break; - case SOAP_TYPE_xsd__anyURI__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__anyURI__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__anyURI__); - break; - case SOAP_TYPE_xsd__base64Binary__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__base64Binary__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__base64Binary__); - break; - case SOAP_TYPE_xsd__boolean_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__boolean_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__boolean_); - break; - case SOAP_TYPE_xsd__dateTime__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__dateTime__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__dateTime__); - break; - case SOAP_TYPE_xsd__double_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__double_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__double_); - break; - case SOAP_TYPE_xsd__duration__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__duration__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__duration__); - break; - case SOAP_TYPE_xsd__float_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__float_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__float_); - break; - case SOAP_TYPE_xsd__hexBinary__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__hexBinary__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__hexBinary__); - break; - case SOAP_TYPE_xsd__int_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__int_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__int_); - break; - case SOAP_TYPE_xsd__integer__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__integer__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__integer__); - break; - case SOAP_TYPE_xsd__nonNegativeInteger__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__nonNegativeInteger__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__nonNegativeInteger__); - break; - case SOAP_TYPE_xsd__string_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__string_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__string_); - break; - case SOAP_TYPE_xsd__token__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__token__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__token__); - break; - case SOAP_TYPE_tt__ReferenceToken__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReferenceToken__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReferenceToken__); - break; - case SOAP_TYPE_tt__MoveStatus_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MoveStatus_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MoveStatus_); - break; - case SOAP_TYPE_tt__Entity_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Entity_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Entity_); - break; - case SOAP_TYPE_tt__Name__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Name__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Name__); - break; - case SOAP_TYPE_tt__RotateMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RotateMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RotateMode_); - break; - case SOAP_TYPE_tt__SceneOrientationMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SceneOrientationMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SceneOrientationMode_); - break; - case SOAP_TYPE_tt__SceneOrientationOption_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SceneOrientationOption_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SceneOrientationOption_); - break; - case SOAP_TYPE_tt__ViewModes_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ViewModes_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ViewModes_); - break; - case SOAP_TYPE_tt__VideoEncoding_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncoding_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncoding_); - break; - case SOAP_TYPE_tt__Mpeg4Profile_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Mpeg4Profile_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Mpeg4Profile_); - break; - case SOAP_TYPE_tt__H264Profile_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__H264Profile_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__H264Profile_); - break; - case SOAP_TYPE_tt__VideoEncodingMimeNames_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncodingMimeNames_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncodingMimeNames_); - break; - case SOAP_TYPE_tt__VideoEncodingProfiles_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncodingProfiles_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncodingProfiles_); - break; - case SOAP_TYPE_tt__AudioEncoding_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioEncoding_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioEncoding_); - break; - case SOAP_TYPE_tt__AudioEncodingMimeNames_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioEncodingMimeNames_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioEncodingMimeNames_); - break; - case SOAP_TYPE_tt__MetadataCompressionType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataCompressionType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataCompressionType_); - break; - case SOAP_TYPE_tt__StreamType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__StreamType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__StreamType_); - break; - case SOAP_TYPE_tt__TransportProtocol_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TransportProtocol_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TransportProtocol_); - break; - case SOAP_TYPE_tt__ScopeDefinition_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ScopeDefinition_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ScopeDefinition_); - break; - case SOAP_TYPE_tt__DiscoveryMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DiscoveryMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DiscoveryMode_); - break; - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceConfigPriority__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceConfigPriority__); - break; - case SOAP_TYPE_tt__Duplex_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Duplex_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Duplex_); - break; - case SOAP_TYPE_tt__IANA_IfTypes__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IANA_IfTypes__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IANA_IfTypes__); - break; - case SOAP_TYPE_tt__IPv6DHCPConfiguration_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv6DHCPConfiguration_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv6DHCPConfiguration_); - break; - case SOAP_TYPE_tt__NetworkProtocolType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkProtocolType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkProtocolType_); - break; - case SOAP_TYPE_tt__NetworkHostType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkHostType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkHostType_); - break; - case SOAP_TYPE_tt__IPv4Address__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv4Address__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv4Address__); - break; - case SOAP_TYPE_tt__IPv6Address__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv6Address__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv6Address__); - break; - case SOAP_TYPE_tt__HwAddress__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__HwAddress__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__HwAddress__); - break; - case SOAP_TYPE_tt__IPType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPType_); - break; - case SOAP_TYPE_tt__DNSName__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DNSName__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DNSName__); - break; - case SOAP_TYPE_tt__Domain__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Domain__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Domain__); - break; - case SOAP_TYPE_tt__IPAddressFilterType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPAddressFilterType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPAddressFilterType_); - break; - case SOAP_TYPE_tt__DynamicDNSType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DynamicDNSType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DynamicDNSType_); - break; - case SOAP_TYPE_tt__Dot11SSIDType__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11SSIDType__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11SSIDType__); - break; - case SOAP_TYPE_tt__Dot11StationMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11StationMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11StationMode_); - break; - case SOAP_TYPE_tt__Dot11SecurityMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11SecurityMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11SecurityMode_); - break; - case SOAP_TYPE_tt__Dot11Cipher_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11Cipher_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11Cipher_); - break; - case SOAP_TYPE_tt__Dot11PSK__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11PSK__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11PSK__); - break; - case SOAP_TYPE_tt__Dot11PSKPassphrase__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11PSKPassphrase__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11PSKPassphrase__); - break; - case SOAP_TYPE_tt__Dot11SignalStrength_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11SignalStrength_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11SignalStrength_); - break; - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11AuthAndMangementSuite_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11AuthAndMangementSuite_); - break; - case SOAP_TYPE_tt__CapabilityCategory_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CapabilityCategory_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CapabilityCategory_); - break; - case SOAP_TYPE_tt__SystemLogType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemLogType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemLogType_); - break; - case SOAP_TYPE_tt__FactoryDefaultType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FactoryDefaultType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FactoryDefaultType_); - break; - case SOAP_TYPE_tt__SetDateTimeType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SetDateTimeType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SetDateTimeType_); - break; - case SOAP_TYPE_tt__UserLevel_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__UserLevel_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__UserLevel_); - break; - case SOAP_TYPE_tt__RelayLogicalState_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelayLogicalState_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelayLogicalState_); - break; - case SOAP_TYPE_tt__RelayIdleState_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelayIdleState_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelayIdleState_); - break; - case SOAP_TYPE_tt__RelayMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelayMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelayMode_); - break; - case SOAP_TYPE_tt__DigitalIdleState_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DigitalIdleState_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DigitalIdleState_); - break; - case SOAP_TYPE_tt__EFlipMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EFlipMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EFlipMode_); - break; - case SOAP_TYPE_tt__ReverseMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReverseMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReverseMode_); - break; - case SOAP_TYPE_tt__AuxiliaryData__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AuxiliaryData__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AuxiliaryData__); - break; - case SOAP_TYPE_tt__PTZPresetTourState_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourState_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourState_); - break; - case SOAP_TYPE_tt__PTZPresetTourDirection_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourDirection_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourDirection_); - break; - case SOAP_TYPE_tt__PTZPresetTourOperation_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourOperation_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourOperation_); - break; - case SOAP_TYPE_tt__MoveAndTrackMethod_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MoveAndTrackMethod_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MoveAndTrackMethod_); - break; - case SOAP_TYPE_tt__AutoFocusMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AutoFocusMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AutoFocusMode_); - break; - case SOAP_TYPE_tt__AFModes_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AFModes_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AFModes_); - break; - case SOAP_TYPE_tt__WideDynamicMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WideDynamicMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WideDynamicMode_); - break; - case SOAP_TYPE_tt__BacklightCompensationMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__BacklightCompensationMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__BacklightCompensationMode_); - break; - case SOAP_TYPE_tt__ExposurePriority_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ExposurePriority_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ExposurePriority_); - break; - case SOAP_TYPE_tt__ExposureMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ExposureMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ExposureMode_); - break; - case SOAP_TYPE_tt__Enabled_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Enabled_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Enabled_); - break; - case SOAP_TYPE_tt__WhiteBalanceMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WhiteBalanceMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WhiteBalanceMode_); - break; - case SOAP_TYPE_tt__IrCutFilterMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IrCutFilterMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IrCutFilterMode_); - break; - case SOAP_TYPE_tt__ImageStabilizationMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImageStabilizationMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImageStabilizationMode_); - break; - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IrCutFilterAutoBoundaryType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IrCutFilterAutoBoundaryType_); - break; - case SOAP_TYPE_tt__ToneCompensationMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ToneCompensationMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ToneCompensationMode_); - break; - case SOAP_TYPE_tt__DefoggingMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DefoggingMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DefoggingMode_); - break; - case SOAP_TYPE_tt__ImageSendingType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImageSendingType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImageSendingType_); - break; - case SOAP_TYPE_tt__PropertyOperation_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PropertyOperation_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PropertyOperation_); - break; - case SOAP_TYPE_tt__Direction_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Direction_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Direction_); - break; - case SOAP_TYPE_tt__ReceiverMode_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReceiverMode_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReceiverMode_); - break; - case SOAP_TYPE_tt__ReceiverState_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReceiverState_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReceiverState_); - break; - case SOAP_TYPE_tt__Description__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Description__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Description__); - break; - case SOAP_TYPE_tt__XPathExpression__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__XPathExpression__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__XPathExpression__); - break; - case SOAP_TYPE_tt__SearchState_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SearchState_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SearchState_); - break; - case SOAP_TYPE_tt__RecordingStatus_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingStatus_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingStatus_); - break; - case SOAP_TYPE_tt__TrackType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TrackType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TrackType_); - break; - case SOAP_TYPE_tt__RecordingJobMode__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobMode__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobMode__); - break; - case SOAP_TYPE_tt__RecordingJobState__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobState__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobState__); - break; - case SOAP_TYPE_tt__ModeOfOperation_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ModeOfOperation_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ModeOfOperation_); - break; - case SOAP_TYPE_tt__AudioClassType__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioClassType__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioClassType__); - break; - case SOAP_TYPE_tt__OSDType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDType_); - break; - case SOAP_TYPE_tmd__SerialPortType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__SerialPortType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__SerialPortType_); - break; - case SOAP_TYPE_tmd__ParityBit_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__ParityBit_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__ParityBit_); - break; - case SOAP_TYPE_tds__AutoGeoModes_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__AutoGeoModes_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__AutoGeoModes_); - break; - case SOAP_TYPE_tds__StorageType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__StorageType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__StorageType_); - break; - case SOAP_TYPE_timg__ImagingPresetType_: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), timg__ImagingPresetType_); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), timg__ImagingPresetType_); - break; - case SOAP_TYPE_wstop__FullTopicExpression__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__FullTopicExpression__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__FullTopicExpression__); - break; - case SOAP_TYPE_wstop__ConcreteTopicExpression__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__ConcreteTopicExpression__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__ConcreteTopicExpression__); - break; - case SOAP_TYPE_wstop__SimpleTopicExpression__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__SimpleTopicExpression__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__SimpleTopicExpression__); - break; - case SOAP_TYPE_tt__ReceiverReference__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReceiverReference__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReceiverReference__); - break; - case SOAP_TYPE_tt__RecordingReference__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingReference__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingReference__); - break; - case SOAP_TYPE_tt__TrackReference__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TrackReference__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TrackReference__); - break; - case SOAP_TYPE_tt__JobToken__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__JobToken__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__JobToken__); - break; - case SOAP_TYPE_tt__RecordingJobReference__: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobReference__); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobReference__); - break; - case SOAP_TYPE_wsnt__QueryExpressionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__QueryExpressionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__QueryExpressionType); - break; - case SOAP_TYPE_wsnt__TopicExpressionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__TopicExpressionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__TopicExpressionType); - break; - case SOAP_TYPE_wsnt__FilterType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__FilterType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__FilterType); - break; - case SOAP_TYPE_wsnt__SubscriptionPolicyType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__SubscriptionPolicyType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__SubscriptionPolicyType); - break; - case SOAP_TYPE__wsnt__NotificationMessageHolderType_Message: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__NotificationMessageHolderType_Message*>(p->ptr), _wsnt__NotificationMessageHolderType_Message); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__NotificationMessageHolderType_Message*>(p->ptr), _wsnt__NotificationMessageHolderType_Message); - break; - case SOAP_TYPE_wsnt__NotificationMessageHolderType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__NotificationMessageHolderType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__NotificationMessageHolderType); - break; - case SOAP_TYPE__wsnt__NotificationProducerRP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__NotificationProducerRP*>(p->ptr), _wsnt__NotificationProducerRP); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__NotificationProducerRP*>(p->ptr), _wsnt__NotificationProducerRP); - break; - case SOAP_TYPE__wsnt__SubscriptionManagerRP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__SubscriptionManagerRP*>(p->ptr), _wsnt__SubscriptionManagerRP); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__SubscriptionManagerRP*>(p->ptr), _wsnt__SubscriptionManagerRP); - break; - case SOAP_TYPE__wsnt__Notify: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__Notify*>(p->ptr), _wsnt__Notify); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__Notify*>(p->ptr), _wsnt__Notify); - break; - case SOAP_TYPE__wsnt__UseRaw: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__UseRaw*>(p->ptr), _wsnt__UseRaw); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__UseRaw*>(p->ptr), _wsnt__UseRaw); - break; - case SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__Subscribe_SubscriptionPolicy*>(p->ptr), _wsnt__Subscribe_SubscriptionPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__Subscribe_SubscriptionPolicy*>(p->ptr), _wsnt__Subscribe_SubscriptionPolicy); - break; - case SOAP_TYPE__wsnt__Subscribe: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__Subscribe*>(p->ptr), _wsnt__Subscribe); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__Subscribe*>(p->ptr), _wsnt__Subscribe); - break; - case SOAP_TYPE__wsnt__SubscribeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__SubscribeResponse*>(p->ptr), _wsnt__SubscribeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__SubscribeResponse*>(p->ptr), _wsnt__SubscribeResponse); - break; - case SOAP_TYPE__wsnt__GetCurrentMessage: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__GetCurrentMessage*>(p->ptr), _wsnt__GetCurrentMessage); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__GetCurrentMessage*>(p->ptr), _wsnt__GetCurrentMessage); - break; - case SOAP_TYPE__wsnt__GetCurrentMessageResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__GetCurrentMessageResponse*>(p->ptr), _wsnt__GetCurrentMessageResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__GetCurrentMessageResponse*>(p->ptr), _wsnt__GetCurrentMessageResponse); - break; - case SOAP_TYPE__wsnt__GetMessages: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__GetMessages*>(p->ptr), _wsnt__GetMessages); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__GetMessages*>(p->ptr), _wsnt__GetMessages); - break; - case SOAP_TYPE__wsnt__GetMessagesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__GetMessagesResponse*>(p->ptr), _wsnt__GetMessagesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__GetMessagesResponse*>(p->ptr), _wsnt__GetMessagesResponse); - break; - case SOAP_TYPE__wsnt__DestroyPullPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__DestroyPullPoint*>(p->ptr), _wsnt__DestroyPullPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__DestroyPullPoint*>(p->ptr), _wsnt__DestroyPullPoint); - break; - case SOAP_TYPE__wsnt__DestroyPullPointResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__DestroyPullPointResponse*>(p->ptr), _wsnt__DestroyPullPointResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__DestroyPullPointResponse*>(p->ptr), _wsnt__DestroyPullPointResponse); - break; - case SOAP_TYPE__wsnt__CreatePullPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__CreatePullPoint*>(p->ptr), _wsnt__CreatePullPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__CreatePullPoint*>(p->ptr), _wsnt__CreatePullPoint); - break; - case SOAP_TYPE__wsnt__CreatePullPointResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__CreatePullPointResponse*>(p->ptr), _wsnt__CreatePullPointResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__CreatePullPointResponse*>(p->ptr), _wsnt__CreatePullPointResponse); - break; - case SOAP_TYPE__wsnt__Renew: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__Renew*>(p->ptr), _wsnt__Renew); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__Renew*>(p->ptr), _wsnt__Renew); - break; - case SOAP_TYPE__wsnt__RenewResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__RenewResponse*>(p->ptr), _wsnt__RenewResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__RenewResponse*>(p->ptr), _wsnt__RenewResponse); - break; - case SOAP_TYPE__wsnt__Unsubscribe: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__Unsubscribe*>(p->ptr), _wsnt__Unsubscribe); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__Unsubscribe*>(p->ptr), _wsnt__Unsubscribe); - break; - case SOAP_TYPE__wsnt__UnsubscribeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__UnsubscribeResponse*>(p->ptr), _wsnt__UnsubscribeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__UnsubscribeResponse*>(p->ptr), _wsnt__UnsubscribeResponse); - break; - case SOAP_TYPE__wsnt__PauseSubscription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__PauseSubscription*>(p->ptr), _wsnt__PauseSubscription); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__PauseSubscription*>(p->ptr), _wsnt__PauseSubscription); - break; - case SOAP_TYPE__wsnt__PauseSubscriptionResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__PauseSubscriptionResponse*>(p->ptr), _wsnt__PauseSubscriptionResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__PauseSubscriptionResponse*>(p->ptr), _wsnt__PauseSubscriptionResponse); - break; - case SOAP_TYPE__wsnt__ResumeSubscription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__ResumeSubscription*>(p->ptr), _wsnt__ResumeSubscription); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__ResumeSubscription*>(p->ptr), _wsnt__ResumeSubscription); - break; - case SOAP_TYPE__wsnt__ResumeSubscriptionResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsnt__ResumeSubscriptionResponse*>(p->ptr), _wsnt__ResumeSubscriptionResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsnt__ResumeSubscriptionResponse*>(p->ptr), _wsnt__ResumeSubscriptionResponse); - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsrfbf__BaseFaultType_ErrorCode*>(p->ptr), _wsrfbf__BaseFaultType_ErrorCode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsrfbf__BaseFaultType_ErrorCode*>(p->ptr), _wsrfbf__BaseFaultType_ErrorCode); - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_Description: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsrfbf__BaseFaultType_Description*>(p->ptr), _wsrfbf__BaseFaultType_Description); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsrfbf__BaseFaultType_Description*>(p->ptr), _wsrfbf__BaseFaultType_Description); - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wsrfbf__BaseFaultType_FaultCause*>(p->ptr), _wsrfbf__BaseFaultType_FaultCause); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wsrfbf__BaseFaultType_FaultCause*>(p->ptr), _wsrfbf__BaseFaultType_FaultCause); - break; - case SOAP_TYPE_wsrfbf__BaseFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsrfbf__BaseFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsrfbf__BaseFaultType); - break; - case SOAP_TYPE_tev__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tev__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tev__Capabilities); - break; - case SOAP_TYPE_tev__SubscriptionPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tev__SubscriptionPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tev__SubscriptionPolicy); - break; - case SOAP_TYPE__tev__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__GetServiceCapabilities*>(p->ptr), _tev__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__GetServiceCapabilities*>(p->ptr), _tev__GetServiceCapabilities); - break; - case SOAP_TYPE__tev__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__GetServiceCapabilitiesResponse*>(p->ptr), _tev__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__GetServiceCapabilitiesResponse*>(p->ptr), _tev__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__CreatePullPointSubscription_SubscriptionPolicy*>(p->ptr), _tev__CreatePullPointSubscription_SubscriptionPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__CreatePullPointSubscription_SubscriptionPolicy*>(p->ptr), _tev__CreatePullPointSubscription_SubscriptionPolicy); - break; - case SOAP_TYPE__tev__CreatePullPointSubscription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__CreatePullPointSubscription*>(p->ptr), _tev__CreatePullPointSubscription); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__CreatePullPointSubscription*>(p->ptr), _tev__CreatePullPointSubscription); - break; - case SOAP_TYPE__tev__CreatePullPointSubscriptionResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__CreatePullPointSubscriptionResponse*>(p->ptr), _tev__CreatePullPointSubscriptionResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__CreatePullPointSubscriptionResponse*>(p->ptr), _tev__CreatePullPointSubscriptionResponse); - break; - case SOAP_TYPE__tev__PullMessages: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__PullMessages*>(p->ptr), _tev__PullMessages); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__PullMessages*>(p->ptr), _tev__PullMessages); - break; - case SOAP_TYPE__tev__PullMessagesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__PullMessagesResponse*>(p->ptr), _tev__PullMessagesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__PullMessagesResponse*>(p->ptr), _tev__PullMessagesResponse); - break; - case SOAP_TYPE__tev__PullMessagesFaultResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__PullMessagesFaultResponse*>(p->ptr), _tev__PullMessagesFaultResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__PullMessagesFaultResponse*>(p->ptr), _tev__PullMessagesFaultResponse); - break; - case SOAP_TYPE__tev__Seek: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__Seek*>(p->ptr), _tev__Seek); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__Seek*>(p->ptr), _tev__Seek); - break; - case SOAP_TYPE__tev__SeekResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__SeekResponse*>(p->ptr), _tev__SeekResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__SeekResponse*>(p->ptr), _tev__SeekResponse); - break; - case SOAP_TYPE__tev__SetSynchronizationPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__SetSynchronizationPoint*>(p->ptr), _tev__SetSynchronizationPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__SetSynchronizationPoint*>(p->ptr), _tev__SetSynchronizationPoint); - break; - case SOAP_TYPE__tev__SetSynchronizationPointResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__SetSynchronizationPointResponse*>(p->ptr), _tev__SetSynchronizationPointResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__SetSynchronizationPointResponse*>(p->ptr), _tev__SetSynchronizationPointResponse); - break; - case SOAP_TYPE__tev__GetEventProperties: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__GetEventProperties*>(p->ptr), _tev__GetEventProperties); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__GetEventProperties*>(p->ptr), _tev__GetEventProperties); - break; - case SOAP_TYPE__tev__GetEventPropertiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tev__GetEventPropertiesResponse*>(p->ptr), _tev__GetEventPropertiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tev__GetEventPropertiesResponse*>(p->ptr), _tev__GetEventPropertiesResponse); - break; - case SOAP_TYPE_tt__IntRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IntRange); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IntRange); - break; - case SOAP_TYPE_tt__Vector2D: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Vector2D); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Vector2D); - break; - case SOAP_TYPE_tt__Vector1D: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Vector1D); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Vector1D); - break; - case SOAP_TYPE_tt__PTZVector: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZVector); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZVector); - break; - case SOAP_TYPE_tt__PTZStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZStatus); - break; - case SOAP_TYPE_tt__PTZMoveStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZMoveStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZMoveStatus); - break; - case SOAP_TYPE_tt__Vector: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Vector); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Vector); - break; - case SOAP_TYPE_tt__Rectangle: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Rectangle); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Rectangle); - break; - case SOAP_TYPE_tt__Polygon: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Polygon); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Polygon); - break; - case SOAP_TYPE_tt__Color: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Color); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Color); - break; - case SOAP_TYPE_tt__ColorCovariance: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ColorCovariance); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ColorCovariance); - break; - case SOAP_TYPE__tt__ColorDescriptor_ColorCluster: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__ColorDescriptor_ColorCluster*>(p->ptr), _tt__ColorDescriptor_ColorCluster); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__ColorDescriptor_ColorCluster*>(p->ptr), _tt__ColorDescriptor_ColorCluster); - break; - case SOAP_TYPE_tt__ColorDescriptor: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ColorDescriptor); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ColorDescriptor); - break; - case SOAP_TYPE_tt__Transformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Transformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Transformation); - break; - case SOAP_TYPE_tt__TransformationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TransformationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TransformationExtension); - break; - case SOAP_TYPE_tt__GeoLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__GeoLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__GeoLocation); - break; - case SOAP_TYPE_tt__GeoOrientation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__GeoOrientation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__GeoOrientation); - break; - case SOAP_TYPE_tt__LocalLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LocalLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LocalLocation); - break; - case SOAP_TYPE_tt__LocalOrientation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LocalOrientation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LocalOrientation); - break; - case SOAP_TYPE_tt__LocationEntity: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LocationEntity); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LocationEntity); - break; - case SOAP_TYPE_tt__DeviceEntity: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DeviceEntity); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DeviceEntity); - break; - case SOAP_TYPE_tt__IntRectangle: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IntRectangle); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IntRectangle); - break; - case SOAP_TYPE_tt__IntRectangleRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IntRectangleRange); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IntRectangleRange); - break; - case SOAP_TYPE_tt__FloatRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FloatRange); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FloatRange); - break; - case SOAP_TYPE_tt__DurationRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DurationRange); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DurationRange); - break; - case SOAP_TYPE_tt__IntItems: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IntItems); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IntItems); - break; - case SOAP_TYPE_tt__FloatItems: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FloatItems); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FloatItems); - break; - case SOAP_TYPE_tt__AnyHolder: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnyHolder); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnyHolder); - break; - case SOAP_TYPE_tt__VideoSourceExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceExtension); - break; - case SOAP_TYPE_tt__VideoSourceExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceExtension2); - break; - case SOAP_TYPE_tt__Profile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Profile); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Profile); - break; - case SOAP_TYPE_tt__ProfileExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ProfileExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ProfileExtension); - break; - case SOAP_TYPE_tt__ProfileExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ProfileExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ProfileExtension2); - break; - case SOAP_TYPE_tt__ConfigurationEntity: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ConfigurationEntity); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ConfigurationEntity); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceConfigurationExtension); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceConfigurationExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceConfigurationExtension2); - break; - case SOAP_TYPE_tt__Rotate: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Rotate); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Rotate); - break; - case SOAP_TYPE_tt__RotateExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RotateExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RotateExtension); - break; - case SOAP_TYPE_tt__LensProjection: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LensProjection); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LensProjection); - break; - case SOAP_TYPE_tt__LensOffset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LensOffset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LensOffset); - break; - case SOAP_TYPE_tt__LensDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LensDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LensDescription); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceConfigurationOptions); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceConfigurationOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceConfigurationOptionsExtension); - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceConfigurationOptionsExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceConfigurationOptionsExtension2); - break; - case SOAP_TYPE_tt__RotateOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RotateOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RotateOptions); - break; - case SOAP_TYPE_tt__RotateOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RotateOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RotateOptionsExtension); - break; - case SOAP_TYPE_tt__SceneOrientation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SceneOrientation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SceneOrientation); - break; - case SOAP_TYPE_tt__VideoResolution: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoResolution); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoResolution); - break; - case SOAP_TYPE_tt__VideoRateControl: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoRateControl); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoRateControl); - break; - case SOAP_TYPE_tt__Mpeg4Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Mpeg4Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Mpeg4Configuration); - break; - case SOAP_TYPE_tt__H264Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__H264Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__H264Configuration); - break; - case SOAP_TYPE_tt__VideoEncoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncoderConfigurationOptions); - break; - case SOAP_TYPE_tt__VideoEncoderOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncoderOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncoderOptionsExtension); - break; - case SOAP_TYPE_tt__VideoEncoderOptionsExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncoderOptionsExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncoderOptionsExtension2); - break; - case SOAP_TYPE_tt__JpegOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__JpegOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__JpegOptions); - break; - case SOAP_TYPE_tt__Mpeg4Options: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Mpeg4Options); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Mpeg4Options); - break; - case SOAP_TYPE_tt__H264Options: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__H264Options); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__H264Options); - break; - case SOAP_TYPE_tt__VideoResolution2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoResolution2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoResolution2); - break; - case SOAP_TYPE_tt__VideoRateControl2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoRateControl2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoRateControl2); - break; - case SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncoder2ConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncoder2ConfigurationOptions); - break; - case SOAP_TYPE_tt__AudioSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioSourceConfigurationOptions); - break; - case SOAP_TYPE_tt__AudioSourceOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioSourceOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioSourceOptionsExtension); - break; - case SOAP_TYPE_tt__AudioEncoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioEncoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioEncoderConfigurationOptions); - break; - case SOAP_TYPE_tt__AudioEncoderConfigurationOption: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioEncoderConfigurationOption); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioEncoderConfigurationOption); - break; - case SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioEncoder2ConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioEncoder2ConfigurationOptions); - break; - case SOAP_TYPE_tt__MetadataConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataConfigurationExtension); - break; - case SOAP_TYPE_tt__PTZFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZFilter); - break; - case SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__EventSubscription_SubscriptionPolicy*>(p->ptr), _tt__EventSubscription_SubscriptionPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__EventSubscription_SubscriptionPolicy*>(p->ptr), _tt__EventSubscription_SubscriptionPolicy); - break; - case SOAP_TYPE_tt__EventSubscription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EventSubscription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EventSubscription); - break; - case SOAP_TYPE_tt__MetadataConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataConfigurationOptions); - break; - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataConfigurationOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataConfigurationOptionsExtension); - break; - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataConfigurationOptionsExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataConfigurationOptionsExtension2); - break; - case SOAP_TYPE_tt__PTZStatusFilterOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZStatusFilterOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZStatusFilterOptions); - break; - case SOAP_TYPE_tt__PTZStatusFilterOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZStatusFilterOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZStatusFilterOptionsExtension); - break; - case SOAP_TYPE_tt__VideoOutputExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoOutputExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoOutputExtension); - break; - case SOAP_TYPE_tt__VideoOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoOutputConfigurationOptions); - break; - case SOAP_TYPE_tt__VideoDecoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoDecoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoDecoderConfigurationOptions); - break; - case SOAP_TYPE_tt__H264DecOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__H264DecOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__H264DecOptions); - break; - case SOAP_TYPE_tt__JpegDecOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__JpegDecOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__JpegDecOptions); - break; - case SOAP_TYPE_tt__Mpeg4DecOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Mpeg4DecOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Mpeg4DecOptions); - break; - case SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoDecoderConfigurationOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoDecoderConfigurationOptionsExtension); - break; - case SOAP_TYPE_tt__AudioOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioOutputConfigurationOptions); - break; - case SOAP_TYPE_tt__AudioDecoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioDecoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioDecoderConfigurationOptions); - break; - case SOAP_TYPE_tt__G711DecOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__G711DecOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__G711DecOptions); - break; - case SOAP_TYPE_tt__AACDecOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AACDecOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AACDecOptions); - break; - case SOAP_TYPE_tt__G726DecOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__G726DecOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__G726DecOptions); - break; - case SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioDecoderConfigurationOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioDecoderConfigurationOptionsExtension); - break; - case SOAP_TYPE_tt__MulticastConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MulticastConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MulticastConfiguration); - break; - case SOAP_TYPE_tt__StreamSetup: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__StreamSetup); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__StreamSetup); - break; - case SOAP_TYPE_tt__Transport: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Transport); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Transport); - break; - case SOAP_TYPE_tt__MediaUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MediaUri); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MediaUri); - break; - case SOAP_TYPE_tt__Scope: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Scope); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Scope); - break; - case SOAP_TYPE_tt__NetworkInterfaceExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceExtension); - break; - case SOAP_TYPE_tt__Dot3Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot3Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot3Configuration); - break; - case SOAP_TYPE_tt__NetworkInterfaceExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceExtension2); - break; - case SOAP_TYPE_tt__NetworkInterfaceLink: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceLink); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceLink); - break; - case SOAP_TYPE_tt__NetworkInterfaceConnectionSetting: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceConnectionSetting); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceConnectionSetting); - break; - case SOAP_TYPE_tt__NetworkInterfaceInfo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceInfo); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceInfo); - break; - case SOAP_TYPE_tt__IPv6NetworkInterface: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv6NetworkInterface); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv6NetworkInterface); - break; - case SOAP_TYPE_tt__IPv4NetworkInterface: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv4NetworkInterface); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv4NetworkInterface); - break; - case SOAP_TYPE_tt__IPv4Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv4Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv4Configuration); - break; - case SOAP_TYPE_tt__IPv6Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv6Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv6Configuration); - break; - case SOAP_TYPE_tt__IPv6ConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv6ConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv6ConfigurationExtension); - break; - case SOAP_TYPE_tt__NetworkProtocol: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkProtocol); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkProtocol); - break; - case SOAP_TYPE_tt__NetworkProtocolExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkProtocolExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkProtocolExtension); - break; - case SOAP_TYPE_tt__NetworkHost: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkHost); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkHost); - break; - case SOAP_TYPE_tt__NetworkHostExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkHostExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkHostExtension); - break; - case SOAP_TYPE_tt__IPAddress: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPAddress); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPAddress); - break; - case SOAP_TYPE_tt__PrefixedIPv4Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PrefixedIPv4Address); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PrefixedIPv4Address); - break; - case SOAP_TYPE_tt__PrefixedIPv6Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PrefixedIPv6Address); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PrefixedIPv6Address); - break; - case SOAP_TYPE_tt__HostnameInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__HostnameInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__HostnameInformation); - break; - case SOAP_TYPE_tt__HostnameInformationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__HostnameInformationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__HostnameInformationExtension); - break; - case SOAP_TYPE_tt__DNSInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DNSInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DNSInformation); - break; - case SOAP_TYPE_tt__DNSInformationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DNSInformationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DNSInformationExtension); - break; - case SOAP_TYPE_tt__NTPInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NTPInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NTPInformation); - break; - case SOAP_TYPE_tt__NTPInformationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NTPInformationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NTPInformationExtension); - break; - case SOAP_TYPE_tt__DynamicDNSInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DynamicDNSInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DynamicDNSInformation); - break; - case SOAP_TYPE_tt__DynamicDNSInformationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DynamicDNSInformationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DynamicDNSInformationExtension); - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceSetConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceSetConfiguration); - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceSetConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceSetConfigurationExtension); - break; - case SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv6NetworkInterfaceSetConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv6NetworkInterfaceSetConfiguration); - break; - case SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPv4NetworkInterfaceSetConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPv4NetworkInterfaceSetConfiguration); - break; - case SOAP_TYPE_tt__NetworkGateway: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkGateway); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkGateway); - break; - case SOAP_TYPE_tt__NetworkZeroConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkZeroConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkZeroConfiguration); - break; - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkZeroConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkZeroConfigurationExtension); - break; - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkZeroConfigurationExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkZeroConfigurationExtension2); - break; - case SOAP_TYPE_tt__IPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPAddressFilter); - break; - case SOAP_TYPE_tt__IPAddressFilterExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IPAddressFilterExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IPAddressFilterExtension); - break; - case SOAP_TYPE_tt__Dot11Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11Configuration); - break; - case SOAP_TYPE_tt__Dot11SecurityConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11SecurityConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11SecurityConfiguration); - break; - case SOAP_TYPE_tt__Dot11SecurityConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11SecurityConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11SecurityConfigurationExtension); - break; - case SOAP_TYPE_tt__Dot11PSKSet: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11PSKSet); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11PSKSet); - break; - case SOAP_TYPE_tt__Dot11PSKSetExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11PSKSetExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11PSKSetExtension); - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterfaceSetConfigurationExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterfaceSetConfigurationExtension2); - break; - case SOAP_TYPE_tt__Dot11Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11Capabilities); - break; - case SOAP_TYPE_tt__Dot11Status: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11Status); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11Status); - break; - case SOAP_TYPE_tt__Dot11AvailableNetworks: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11AvailableNetworks); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11AvailableNetworks); - break; - case SOAP_TYPE_tt__Dot11AvailableNetworksExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot11AvailableNetworksExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot11AvailableNetworksExtension); - break; - case SOAP_TYPE_tt__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Capabilities); - break; - case SOAP_TYPE_tt__CapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CapabilitiesExtension); - break; - case SOAP_TYPE_tt__CapabilitiesExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CapabilitiesExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CapabilitiesExtension2); - break; - case SOAP_TYPE_tt__AnalyticsCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsCapabilities); - break; - case SOAP_TYPE_tt__DeviceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DeviceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DeviceCapabilities); - break; - case SOAP_TYPE_tt__DeviceCapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DeviceCapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DeviceCapabilitiesExtension); - break; - case SOAP_TYPE_tt__EventCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EventCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EventCapabilities); - break; - case SOAP_TYPE_tt__IOCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IOCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IOCapabilities); - break; - case SOAP_TYPE_tt__IOCapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IOCapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IOCapabilitiesExtension); - break; - case SOAP_TYPE_tt__IOCapabilitiesExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IOCapabilitiesExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IOCapabilitiesExtension2); - break; - case SOAP_TYPE_tt__MediaCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MediaCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MediaCapabilities); - break; - case SOAP_TYPE_tt__MediaCapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MediaCapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MediaCapabilitiesExtension); - break; - case SOAP_TYPE_tt__RealTimeStreamingCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RealTimeStreamingCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RealTimeStreamingCapabilities); - break; - case SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RealTimeStreamingCapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RealTimeStreamingCapabilitiesExtension); - break; - case SOAP_TYPE_tt__ProfileCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ProfileCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ProfileCapabilities); - break; - case SOAP_TYPE_tt__NetworkCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkCapabilities); - break; - case SOAP_TYPE_tt__NetworkCapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkCapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkCapabilitiesExtension); - break; - case SOAP_TYPE_tt__NetworkCapabilitiesExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkCapabilitiesExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkCapabilitiesExtension2); - break; - case SOAP_TYPE_tt__SecurityCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SecurityCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SecurityCapabilities); - break; - case SOAP_TYPE_tt__SecurityCapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SecurityCapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SecurityCapabilitiesExtension); - break; - case SOAP_TYPE_tt__SecurityCapabilitiesExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SecurityCapabilitiesExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SecurityCapabilitiesExtension2); - break; - case SOAP_TYPE_tt__SystemCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemCapabilities); - break; - case SOAP_TYPE_tt__SystemCapabilitiesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemCapabilitiesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemCapabilitiesExtension); - break; - case SOAP_TYPE_tt__SystemCapabilitiesExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemCapabilitiesExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemCapabilitiesExtension2); - break; - case SOAP_TYPE_tt__OnvifVersion: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OnvifVersion); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OnvifVersion); - break; - case SOAP_TYPE_tt__ImagingCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingCapabilities); - break; - case SOAP_TYPE_tt__PTZCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZCapabilities); - break; - case SOAP_TYPE_tt__DeviceIOCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DeviceIOCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DeviceIOCapabilities); - break; - case SOAP_TYPE_tt__DisplayCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DisplayCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DisplayCapabilities); - break; - case SOAP_TYPE_tt__RecordingCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingCapabilities); - break; - case SOAP_TYPE_tt__SearchCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SearchCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SearchCapabilities); - break; - case SOAP_TYPE_tt__ReplayCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReplayCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReplayCapabilities); - break; - case SOAP_TYPE_tt__ReceiverCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReceiverCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReceiverCapabilities); - break; - case SOAP_TYPE_tt__AnalyticsDeviceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsDeviceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsDeviceCapabilities); - break; - case SOAP_TYPE_tt__AnalyticsDeviceExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsDeviceExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsDeviceExtension); - break; - case SOAP_TYPE_tt__SystemLog: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemLog); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemLog); - break; - case SOAP_TYPE_tt__SupportInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SupportInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SupportInformation); - break; - case SOAP_TYPE_tt__BinaryData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__BinaryData); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__BinaryData); - break; - case SOAP_TYPE_tt__AttachmentData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AttachmentData); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AttachmentData); - break; - case SOAP_TYPE_tt__BackupFile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__BackupFile); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__BackupFile); - break; - case SOAP_TYPE_tt__SystemLogUriList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemLogUriList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemLogUriList); - break; - case SOAP_TYPE_tt__SystemLogUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemLogUri); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemLogUri); - break; - case SOAP_TYPE_tt__SystemDateTime: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemDateTime); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemDateTime); - break; - case SOAP_TYPE_tt__SystemDateTimeExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SystemDateTimeExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SystemDateTimeExtension); - break; - case SOAP_TYPE_tt__DateTime: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DateTime); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DateTime); - break; - case SOAP_TYPE_tt__Date: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Date); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Date); - break; - case SOAP_TYPE_tt__Time: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Time); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Time); - break; - case SOAP_TYPE_tt__TimeZone: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TimeZone); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TimeZone); - break; - case SOAP_TYPE_tt__RemoteUser: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RemoteUser); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RemoteUser); - break; - case SOAP_TYPE_tt__User: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__User); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__User); - break; - case SOAP_TYPE_tt__UserExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__UserExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__UserExtension); - break; - case SOAP_TYPE_tt__CertificateGenerationParameters: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CertificateGenerationParameters); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CertificateGenerationParameters); - break; - case SOAP_TYPE_tt__CertificateGenerationParametersExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CertificateGenerationParametersExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CertificateGenerationParametersExtension); - break; - case SOAP_TYPE_tt__Certificate: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Certificate); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Certificate); - break; - case SOAP_TYPE_tt__CertificateStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CertificateStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CertificateStatus); - break; - case SOAP_TYPE_tt__CertificateWithPrivateKey: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CertificateWithPrivateKey); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CertificateWithPrivateKey); - break; - case SOAP_TYPE_tt__CertificateInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CertificateInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CertificateInformation); - break; - case SOAP_TYPE_tt__CertificateInformationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CertificateInformationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CertificateInformationExtension); - break; - case SOAP_TYPE_tt__Dot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot1XConfiguration); - break; - case SOAP_TYPE_tt__Dot1XConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Dot1XConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Dot1XConfigurationExtension); - break; - case SOAP_TYPE_tt__EAPMethodConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EAPMethodConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EAPMethodConfiguration); - break; - case SOAP_TYPE_tt__EapMethodExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EapMethodExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EapMethodExtension); - break; - case SOAP_TYPE_tt__TLSConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TLSConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TLSConfiguration); - break; - case SOAP_TYPE_tt__GenericEapPwdConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__GenericEapPwdConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__GenericEapPwdConfigurationExtension); - break; - case SOAP_TYPE_tt__RelayOutputSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelayOutputSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelayOutputSettings); - break; - case SOAP_TYPE_tt__PTZNodeExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZNodeExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZNodeExtension); - break; - case SOAP_TYPE_tt__PTZNodeExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZNodeExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZNodeExtension2); - break; - case SOAP_TYPE_tt__PTZPresetTourSupported: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourSupported); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourSupported); - break; - case SOAP_TYPE_tt__PTZPresetTourSupportedExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourSupportedExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourSupportedExtension); - break; - case SOAP_TYPE_tt__PTZConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZConfigurationExtension); - break; - case SOAP_TYPE_tt__PTZConfigurationExtension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZConfigurationExtension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZConfigurationExtension2); - break; - case SOAP_TYPE_tt__PTControlDirection: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTControlDirection); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTControlDirection); - break; - case SOAP_TYPE_tt__PTControlDirectionExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTControlDirectionExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTControlDirectionExtension); - break; - case SOAP_TYPE_tt__EFlip: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EFlip); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EFlip); - break; - case SOAP_TYPE_tt__Reverse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Reverse); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Reverse); - break; - case SOAP_TYPE_tt__PTZConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZConfigurationOptions); - break; - case SOAP_TYPE_tt__PTZConfigurationOptions2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZConfigurationOptions2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZConfigurationOptions2); - break; - case SOAP_TYPE_tt__PTControlDirectionOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTControlDirectionOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTControlDirectionOptions); - break; - case SOAP_TYPE_tt__PTControlDirectionOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTControlDirectionOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTControlDirectionOptionsExtension); - break; - case SOAP_TYPE_tt__EFlipOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EFlipOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EFlipOptions); - break; - case SOAP_TYPE_tt__EFlipOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EFlipOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EFlipOptionsExtension); - break; - case SOAP_TYPE_tt__ReverseOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReverseOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReverseOptions); - break; - case SOAP_TYPE_tt__ReverseOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReverseOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReverseOptionsExtension); - break; - case SOAP_TYPE_tt__PanTiltLimits: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PanTiltLimits); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PanTiltLimits); - break; - case SOAP_TYPE_tt__ZoomLimits: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ZoomLimits); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ZoomLimits); - break; - case SOAP_TYPE_tt__PTZSpaces: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZSpaces); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZSpaces); - break; - case SOAP_TYPE_tt__PTZSpacesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZSpacesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZSpacesExtension); - break; - case SOAP_TYPE_tt__Space2DDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Space2DDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Space2DDescription); - break; - case SOAP_TYPE_tt__Space1DDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Space1DDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Space1DDescription); - break; - case SOAP_TYPE_tt__PTZSpeed: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZSpeed); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZSpeed); - break; - case SOAP_TYPE_tt__PTZPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPreset); - break; - case SOAP_TYPE_tt__PresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PresetTour); - break; - case SOAP_TYPE_tt__PTZPresetTourExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourExtension); - break; - case SOAP_TYPE_tt__PTZPresetTourSpot: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourSpot); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourSpot); - break; - case SOAP_TYPE_tt__PTZPresetTourSpotExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourSpotExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourSpotExtension); - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetail: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourPresetDetail); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourPresetDetail); - break; - case SOAP_TYPE_tt__PTZPresetTourTypeExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourTypeExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourTypeExtension); - break; - case SOAP_TYPE_tt__PTZPresetTourStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourStatus); - break; - case SOAP_TYPE_tt__PTZPresetTourStatusExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourStatusExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourStatusExtension); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingCondition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourStartingCondition); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourStartingCondition); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourStartingConditionExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourStartingConditionExtension); - break; - case SOAP_TYPE_tt__PTZPresetTourOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourOptions); - break; - case SOAP_TYPE_tt__PTZPresetTourSpotOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourSpotOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourSpotOptions); - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourPresetDetailOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourPresetDetailOptions); - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourPresetDetailOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourPresetDetailOptionsExtension); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourStartingConditionOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourStartingConditionOptions); - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPresetTourStartingConditionOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPresetTourStartingConditionOptionsExtension); - break; - case SOAP_TYPE_tt__ImagingStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingStatus); - break; - case SOAP_TYPE_tt__FocusStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusStatus); - break; - case SOAP_TYPE_tt__FocusConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusConfiguration); - break; - case SOAP_TYPE_tt__ImagingSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingSettings); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingSettingsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingSettingsExtension); - break; - case SOAP_TYPE_tt__Exposure: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Exposure); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Exposure); - break; - case SOAP_TYPE_tt__WideDynamicRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WideDynamicRange); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WideDynamicRange); - break; - case SOAP_TYPE_tt__BacklightCompensation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__BacklightCompensation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__BacklightCompensation); - break; - case SOAP_TYPE_tt__ImagingOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingOptions); - break; - case SOAP_TYPE_tt__WideDynamicRangeOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WideDynamicRangeOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WideDynamicRangeOptions); - break; - case SOAP_TYPE_tt__BacklightCompensationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__BacklightCompensationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__BacklightCompensationOptions); - break; - case SOAP_TYPE_tt__FocusOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusOptions); - break; - case SOAP_TYPE_tt__ExposureOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ExposureOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ExposureOptions); - break; - case SOAP_TYPE_tt__WhiteBalanceOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WhiteBalanceOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WhiteBalanceOptions); - break; - case SOAP_TYPE_tt__FocusMove: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusMove); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusMove); - break; - case SOAP_TYPE_tt__AbsoluteFocus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AbsoluteFocus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AbsoluteFocus); - break; - case SOAP_TYPE_tt__RelativeFocus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelativeFocus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelativeFocus); - break; - case SOAP_TYPE_tt__ContinuousFocus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ContinuousFocus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ContinuousFocus); - break; - case SOAP_TYPE_tt__MoveOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MoveOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MoveOptions); - break; - case SOAP_TYPE_tt__AbsoluteFocusOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AbsoluteFocusOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AbsoluteFocusOptions); - break; - case SOAP_TYPE_tt__RelativeFocusOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelativeFocusOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelativeFocusOptions); - break; - case SOAP_TYPE_tt__ContinuousFocusOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ContinuousFocusOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ContinuousFocusOptions); - break; - case SOAP_TYPE_tt__WhiteBalance: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WhiteBalance); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WhiteBalance); - break; - case SOAP_TYPE_tt__ImagingStatus20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingStatus20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingStatus20); - break; - case SOAP_TYPE_tt__ImagingStatus20Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingStatus20Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingStatus20Extension); - break; - case SOAP_TYPE_tt__FocusStatus20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusStatus20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusStatus20); - break; - case SOAP_TYPE_tt__FocusStatus20Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusStatus20Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusStatus20Extension); - break; - case SOAP_TYPE_tt__ImagingSettings20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingSettings20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingSettings20); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingSettingsExtension20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingSettingsExtension20); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension202: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingSettingsExtension202); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingSettingsExtension202); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension203: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingSettingsExtension203); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingSettingsExtension203); - break; - case SOAP_TYPE_tt__ImagingSettingsExtension204: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingSettingsExtension204); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingSettingsExtension204); - break; - case SOAP_TYPE_tt__ImageStabilization: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImageStabilization); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImageStabilization); - break; - case SOAP_TYPE_tt__ImageStabilizationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImageStabilizationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImageStabilizationExtension); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustment: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustment); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustment); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustmentExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustmentExtension); - break; - case SOAP_TYPE_tt__WideDynamicRange20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WideDynamicRange20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WideDynamicRange20); - break; - case SOAP_TYPE_tt__BacklightCompensation20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__BacklightCompensation20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__BacklightCompensation20); - break; - case SOAP_TYPE_tt__Exposure20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Exposure20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Exposure20); - break; - case SOAP_TYPE_tt__ToneCompensation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ToneCompensation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ToneCompensation); - break; - case SOAP_TYPE_tt__ToneCompensationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ToneCompensationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ToneCompensationExtension); - break; - case SOAP_TYPE_tt__Defogging: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Defogging); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Defogging); - break; - case SOAP_TYPE_tt__DefoggingExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DefoggingExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DefoggingExtension); - break; - case SOAP_TYPE_tt__NoiseReduction: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NoiseReduction); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NoiseReduction); - break; - case SOAP_TYPE_tt__ImagingOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingOptions20); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingOptions20Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingOptions20Extension); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingOptions20Extension2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingOptions20Extension2); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension3: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingOptions20Extension3); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingOptions20Extension3); - break; - case SOAP_TYPE_tt__ImagingOptions20Extension4: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImagingOptions20Extension4); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImagingOptions20Extension4); - break; - case SOAP_TYPE_tt__ImageStabilizationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImageStabilizationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImageStabilizationOptions); - break; - case SOAP_TYPE_tt__ImageStabilizationOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ImageStabilizationOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ImageStabilizationOptionsExtension); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustmentOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustmentOptions); - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustmentOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__IrCutFilterAutoAdjustmentOptionsExtension); - break; - case SOAP_TYPE_tt__WideDynamicRangeOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WideDynamicRangeOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WideDynamicRangeOptions20); - break; - case SOAP_TYPE_tt__BacklightCompensationOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__BacklightCompensationOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__BacklightCompensationOptions20); - break; - case SOAP_TYPE_tt__ExposureOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ExposureOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ExposureOptions20); - break; - case SOAP_TYPE_tt__MoveOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MoveOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MoveOptions20); - break; - case SOAP_TYPE_tt__RelativeFocusOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelativeFocusOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelativeFocusOptions20); - break; - case SOAP_TYPE_tt__WhiteBalance20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WhiteBalance20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WhiteBalance20); - break; - case SOAP_TYPE_tt__WhiteBalance20Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WhiteBalance20Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WhiteBalance20Extension); - break; - case SOAP_TYPE_tt__FocusConfiguration20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusConfiguration20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusConfiguration20); - break; - case SOAP_TYPE_tt__FocusConfiguration20Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusConfiguration20Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusConfiguration20Extension); - break; - case SOAP_TYPE_tt__WhiteBalanceOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WhiteBalanceOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WhiteBalanceOptions20); - break; - case SOAP_TYPE_tt__WhiteBalanceOptions20Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__WhiteBalanceOptions20Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__WhiteBalanceOptions20Extension); - break; - case SOAP_TYPE_tt__FocusOptions20: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusOptions20); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusOptions20); - break; - case SOAP_TYPE_tt__FocusOptions20Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FocusOptions20Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FocusOptions20Extension); - break; - case SOAP_TYPE_tt__ToneCompensationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ToneCompensationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ToneCompensationOptions); - break; - case SOAP_TYPE_tt__DefoggingOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DefoggingOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DefoggingOptions); - break; - case SOAP_TYPE_tt__NoiseReductionOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NoiseReductionOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NoiseReductionOptions); - break; - case SOAP_TYPE_tt__MessageExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MessageExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MessageExtension); - break; - case SOAP_TYPE__tt__ItemList_SimpleItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__ItemList_SimpleItem*>(p->ptr), _tt__ItemList_SimpleItem); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__ItemList_SimpleItem*>(p->ptr), _tt__ItemList_SimpleItem); - break; - case SOAP_TYPE__tt__ItemList_ElementItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__ItemList_ElementItem*>(p->ptr), _tt__ItemList_ElementItem); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__ItemList_ElementItem*>(p->ptr), _tt__ItemList_ElementItem); - break; - case SOAP_TYPE_tt__ItemList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ItemList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ItemList); - break; - case SOAP_TYPE_tt__ItemListExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ItemListExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ItemListExtension); - break; - case SOAP_TYPE_tt__MessageDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MessageDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MessageDescription); - break; - case SOAP_TYPE_tt__MessageDescriptionExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MessageDescriptionExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MessageDescriptionExtension); - break; - case SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__ItemListDescription_SimpleItemDescription*>(p->ptr), _tt__ItemListDescription_SimpleItemDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__ItemListDescription_SimpleItemDescription*>(p->ptr), _tt__ItemListDescription_SimpleItemDescription); - break; - case SOAP_TYPE__tt__ItemListDescription_ElementItemDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__ItemListDescription_ElementItemDescription*>(p->ptr), _tt__ItemListDescription_ElementItemDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__ItemListDescription_ElementItemDescription*>(p->ptr), _tt__ItemListDescription_ElementItemDescription); - break; - case SOAP_TYPE_tt__ItemListDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ItemListDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ItemListDescription); - break; - case SOAP_TYPE_tt__ItemListDescriptionExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ItemListDescriptionExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ItemListDescriptionExtension); - break; - case SOAP_TYPE_tt__Polyline: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Polyline); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Polyline); - break; - case SOAP_TYPE_tt__AnalyticsEngineConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsEngineConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsEngineConfiguration); - break; - case SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsEngineConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsEngineConfigurationExtension); - break; - case SOAP_TYPE_tt__RuleEngineConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RuleEngineConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RuleEngineConfiguration); - break; - case SOAP_TYPE_tt__RuleEngineConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RuleEngineConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RuleEngineConfigurationExtension); - break; - case SOAP_TYPE_tt__Config: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Config); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Config); - break; - case SOAP_TYPE__tt__ConfigDescription_Messages: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__ConfigDescription_Messages*>(p->ptr), _tt__ConfigDescription_Messages); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__ConfigDescription_Messages*>(p->ptr), _tt__ConfigDescription_Messages); - break; - case SOAP_TYPE_tt__ConfigDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ConfigDescription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ConfigDescription); - break; - case SOAP_TYPE_tt__ConfigDescriptionExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ConfigDescriptionExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ConfigDescriptionExtension); - break; - case SOAP_TYPE_tt__SupportedRules: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SupportedRules); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SupportedRules); - break; - case SOAP_TYPE_tt__SupportedRulesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SupportedRulesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SupportedRulesExtension); - break; - case SOAP_TYPE_tt__SupportedAnalyticsModules: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SupportedAnalyticsModules); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SupportedAnalyticsModules); - break; - case SOAP_TYPE_tt__SupportedAnalyticsModulesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SupportedAnalyticsModulesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SupportedAnalyticsModulesExtension); - break; - case SOAP_TYPE_tt__PolylineArray: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PolylineArray); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PolylineArray); - break; - case SOAP_TYPE_tt__PolylineArrayExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PolylineArrayExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PolylineArrayExtension); - break; - case SOAP_TYPE_tt__PolylineArrayConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PolylineArrayConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PolylineArrayConfiguration); - break; - case SOAP_TYPE_tt__MotionExpression: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MotionExpression); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MotionExpression); - break; - case SOAP_TYPE_tt__MotionExpressionConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MotionExpressionConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MotionExpressionConfiguration); - break; - case SOAP_TYPE_tt__CellLayout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CellLayout); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CellLayout); - break; - case SOAP_TYPE_tt__PaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PaneConfiguration); - break; - case SOAP_TYPE_tt__PaneLayout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PaneLayout); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PaneLayout); - break; - case SOAP_TYPE_tt__Layout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Layout); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Layout); - break; - case SOAP_TYPE_tt__LayoutExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LayoutExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LayoutExtension); - break; - case SOAP_TYPE_tt__CodingCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CodingCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CodingCapabilities); - break; - case SOAP_TYPE_tt__LayoutOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LayoutOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LayoutOptions); - break; - case SOAP_TYPE_tt__LayoutOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__LayoutOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__LayoutOptionsExtension); - break; - case SOAP_TYPE_tt__PaneLayoutOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PaneLayoutOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PaneLayoutOptions); - break; - case SOAP_TYPE_tt__PaneOptionExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PaneOptionExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PaneOptionExtension); - break; - case SOAP_TYPE_tt__Receiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Receiver); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Receiver); - break; - case SOAP_TYPE_tt__ReceiverConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReceiverConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReceiverConfiguration); - break; - case SOAP_TYPE_tt__ReceiverStateInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReceiverStateInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReceiverStateInformation); - break; - case SOAP_TYPE_tt__SourceReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SourceReference); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SourceReference); - break; - case SOAP_TYPE_tt__DateTimeRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DateTimeRange); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DateTimeRange); - break; - case SOAP_TYPE_tt__RecordingSummary: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingSummary); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingSummary); - break; - case SOAP_TYPE_tt__SearchScope: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SearchScope); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SearchScope); - break; - case SOAP_TYPE_tt__SearchScopeExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SearchScopeExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SearchScopeExtension); - break; - case SOAP_TYPE_tt__PTZPositionFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZPositionFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZPositionFilter); - break; - case SOAP_TYPE_tt__MetadataFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataFilter); - break; - case SOAP_TYPE_tt__FindRecordingResultList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FindRecordingResultList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FindRecordingResultList); - break; - case SOAP_TYPE_tt__FindEventResultList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FindEventResultList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FindEventResultList); - break; - case SOAP_TYPE_tt__FindEventResult: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FindEventResult); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FindEventResult); - break; - case SOAP_TYPE_tt__FindPTZPositionResultList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FindPTZPositionResultList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FindPTZPositionResultList); - break; - case SOAP_TYPE_tt__FindPTZPositionResult: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FindPTZPositionResult); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FindPTZPositionResult); - break; - case SOAP_TYPE_tt__FindMetadataResultList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FindMetadataResultList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FindMetadataResultList); - break; - case SOAP_TYPE_tt__FindMetadataResult: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FindMetadataResult); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FindMetadataResult); - break; - case SOAP_TYPE_tt__RecordingInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingInformation); - break; - case SOAP_TYPE_tt__RecordingSourceInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingSourceInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingSourceInformation); - break; - case SOAP_TYPE_tt__TrackInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TrackInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TrackInformation); - break; - case SOAP_TYPE_tt__MediaAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MediaAttributes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MediaAttributes); - break; - case SOAP_TYPE_tt__TrackAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TrackAttributes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TrackAttributes); - break; - case SOAP_TYPE_tt__TrackAttributesExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TrackAttributesExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TrackAttributesExtension); - break; - case SOAP_TYPE_tt__VideoAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoAttributes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoAttributes); - break; - case SOAP_TYPE_tt__AudioAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioAttributes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioAttributes); - break; - case SOAP_TYPE_tt__MetadataAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataAttributes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataAttributes); - break; - case SOAP_TYPE_tt__RecordingConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingConfiguration); - break; - case SOAP_TYPE_tt__TrackConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__TrackConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__TrackConfiguration); - break; - case SOAP_TYPE_tt__GetRecordingsResponseItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__GetRecordingsResponseItem); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__GetRecordingsResponseItem); - break; - case SOAP_TYPE_tt__GetTracksResponseList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__GetTracksResponseList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__GetTracksResponseList); - break; - case SOAP_TYPE_tt__GetTracksResponseItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__GetTracksResponseItem); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__GetTracksResponseItem); - break; - case SOAP_TYPE_tt__RecordingJobConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobConfiguration); - break; - case SOAP_TYPE_tt__RecordingJobConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobConfigurationExtension); - break; - case SOAP_TYPE_tt__RecordingJobSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobSource); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobSource); - break; - case SOAP_TYPE_tt__RecordingJobSourceExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobSourceExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobSourceExtension); - break; - case SOAP_TYPE_tt__RecordingJobTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobTrack); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobTrack); - break; - case SOAP_TYPE_tt__RecordingJobStateInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobStateInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobStateInformation); - break; - case SOAP_TYPE_tt__RecordingJobStateInformationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobStateInformationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobStateInformationExtension); - break; - case SOAP_TYPE_tt__RecordingJobStateSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobStateSource); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobStateSource); - break; - case SOAP_TYPE_tt__RecordingJobStateTracks: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobStateTracks); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobStateTracks); - break; - case SOAP_TYPE_tt__RecordingJobStateTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RecordingJobStateTrack); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RecordingJobStateTrack); - break; - case SOAP_TYPE_tt__GetRecordingJobsResponseItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__GetRecordingJobsResponseItem); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__GetRecordingJobsResponseItem); - break; - case SOAP_TYPE_tt__ReplayConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ReplayConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ReplayConfiguration); - break; - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsDeviceEngineConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsDeviceEngineConfiguration); - break; - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsDeviceEngineConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsDeviceEngineConfigurationExtension); - break; - case SOAP_TYPE_tt__EngineConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EngineConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EngineConfiguration); - break; - case SOAP_TYPE_tt__AnalyticsEngineInputInfo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsEngineInputInfo); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsEngineInputInfo); - break; - case SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsEngineInputInfoExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsEngineInputInfoExtension); - break; - case SOAP_TYPE_tt__SourceIdentification: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SourceIdentification); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SourceIdentification); - break; - case SOAP_TYPE_tt__SourceIdentificationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__SourceIdentificationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__SourceIdentificationExtension); - break; - case SOAP_TYPE_tt__MetadataInput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataInput); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataInput); - break; - case SOAP_TYPE_tt__MetadataInputExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataInputExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataInputExtension); - break; - case SOAP_TYPE_tt__AnalyticsStateInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsStateInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsStateInformation); - break; - case SOAP_TYPE_tt__AnalyticsState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsState); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsState); - break; - case SOAP_TYPE_tt__ActionEngineEventPayload: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ActionEngineEventPayload); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ActionEngineEventPayload); - break; - case SOAP_TYPE_tt__ActionEngineEventPayloadExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ActionEngineEventPayloadExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ActionEngineEventPayloadExtension); - break; - case SOAP_TYPE_tt__AudioClassCandidate: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioClassCandidate); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioClassCandidate); - break; - case SOAP_TYPE_tt__AudioClassDescriptor: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioClassDescriptor); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioClassDescriptor); - break; - case SOAP_TYPE_tt__AudioClassDescriptorExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioClassDescriptorExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioClassDescriptorExtension); - break; - case SOAP_TYPE_tt__ActiveConnection: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ActiveConnection); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ActiveConnection); - break; - case SOAP_TYPE_tt__ProfileStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ProfileStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ProfileStatus); - break; - case SOAP_TYPE_tt__ProfileStatusExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ProfileStatusExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ProfileStatusExtension); - break; - case SOAP_TYPE_tt__OSDPosConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDPosConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDPosConfiguration); - break; - case SOAP_TYPE_tt__OSDPosConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDPosConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDPosConfigurationExtension); - break; - case SOAP_TYPE_tt__OSDColor: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDColor); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDColor); - break; - case SOAP_TYPE_tt__OSDTextConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDTextConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDTextConfiguration); - break; - case SOAP_TYPE_tt__OSDTextConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDTextConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDTextConfigurationExtension); - break; - case SOAP_TYPE_tt__OSDImgConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDImgConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDImgConfiguration); - break; - case SOAP_TYPE_tt__OSDImgConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDImgConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDImgConfigurationExtension); - break; - case SOAP_TYPE_tt__ColorspaceRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ColorspaceRange); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ColorspaceRange); - break; - case SOAP_TYPE_tt__ColorOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ColorOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ColorOptions); - break; - case SOAP_TYPE_tt__OSDColorOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDColorOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDColorOptions); - break; - case SOAP_TYPE_tt__OSDColorOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDColorOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDColorOptionsExtension); - break; - case SOAP_TYPE_tt__OSDTextOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDTextOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDTextOptions); - break; - case SOAP_TYPE_tt__OSDTextOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDTextOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDTextOptionsExtension); - break; - case SOAP_TYPE_tt__OSDImgOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDImgOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDImgOptions); - break; - case SOAP_TYPE_tt__OSDImgOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDImgOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDImgOptionsExtension); - break; - case SOAP_TYPE_tt__OSDConfigurationExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDConfigurationExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDConfigurationExtension); - break; - case SOAP_TYPE_tt__MaximumNumberOfOSDs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MaximumNumberOfOSDs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MaximumNumberOfOSDs); - break; - case SOAP_TYPE_tt__OSDConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDConfigurationOptions); - break; - case SOAP_TYPE_tt__OSDConfigurationOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDConfigurationOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDConfigurationOptionsExtension); - break; - case SOAP_TYPE_tt__FileProgress: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__FileProgress); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__FileProgress); - break; - case SOAP_TYPE_tt__ArrayOfFileProgress: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ArrayOfFileProgress); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ArrayOfFileProgress); - break; - case SOAP_TYPE_tt__ArrayOfFileProgressExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__ArrayOfFileProgressExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__ArrayOfFileProgressExtension); - break; - case SOAP_TYPE_tt__StorageReferencePath: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__StorageReferencePath); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__StorageReferencePath); - break; - case SOAP_TYPE_tt__StorageReferencePathExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__StorageReferencePathExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__StorageReferencePathExtension); - break; - case SOAP_TYPE_tt__PolygonOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PolygonOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PolygonOptions); - break; - case SOAP_TYPE__tt__StringItems: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__StringItems*>(p->ptr), _tt__StringItems); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__StringItems*>(p->ptr), _tt__StringItems); - break; - case SOAP_TYPE__tt__Message: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tt__Message*>(p->ptr), _tt__Message); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tt__Message*>(p->ptr), _tt__Message); - break; - case SOAP_TYPE_tmd__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__Capabilities); - break; - case SOAP_TYPE_tmd__RelayOutputOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__RelayOutputOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__RelayOutputOptions); - break; - case SOAP_TYPE_tmd__RelayOutputOptionsExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__RelayOutputOptionsExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__RelayOutputOptionsExtension); - break; - case SOAP_TYPE_tmd__Get: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__Get); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__Get); - break; - case SOAP_TYPE_tmd__GetResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__GetResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__GetResponse); - break; - case SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__DigitalInputConfigurationInputOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__DigitalInputConfigurationInputOptions); - break; - case SOAP_TYPE_tmd__SerialData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__SerialData); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__SerialData); - break; - case SOAP_TYPE_tmd__SerialPortConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__SerialPortConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__SerialPortConfiguration); - break; - case SOAP_TYPE_tmd__SerialPortConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__SerialPortConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__SerialPortConfigurationOptions); - break; - case SOAP_TYPE_tmd__ParityBitList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__ParityBitList); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__ParityBitList); - break; - case SOAP_TYPE__tmd__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetServiceCapabilities*>(p->ptr), _tmd__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetServiceCapabilities*>(p->ptr), _tmd__GetServiceCapabilities); - break; - case SOAP_TYPE__tmd__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetServiceCapabilitiesResponse*>(p->ptr), _tmd__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetServiceCapabilitiesResponse*>(p->ptr), _tmd__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__tmd__GetRelayOutputOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetRelayOutputOptions*>(p->ptr), _tmd__GetRelayOutputOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetRelayOutputOptions*>(p->ptr), _tmd__GetRelayOutputOptions); - break; - case SOAP_TYPE__tmd__GetRelayOutputOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetRelayOutputOptionsResponse*>(p->ptr), _tmd__GetRelayOutputOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetRelayOutputOptionsResponse*>(p->ptr), _tmd__GetRelayOutputOptionsResponse); - break; - case SOAP_TYPE__tmd__GetVideoOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoOutputs*>(p->ptr), _tmd__GetVideoOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoOutputs*>(p->ptr), _tmd__GetVideoOutputs); - break; - case SOAP_TYPE__tmd__GetVideoOutputsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoOutputsResponse*>(p->ptr), _tmd__GetVideoOutputsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoOutputsResponse*>(p->ptr), _tmd__GetVideoOutputsResponse); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioSourceConfiguration*>(p->ptr), _tmd__GetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioSourceConfiguration*>(p->ptr), _tmd__GetAudioSourceConfiguration); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioSourceConfigurationResponse*>(p->ptr), _tmd__GetAudioSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioSourceConfigurationResponse*>(p->ptr), _tmd__GetAudioSourceConfigurationResponse); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioOutputConfiguration*>(p->ptr), _tmd__GetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioOutputConfiguration*>(p->ptr), _tmd__GetAudioOutputConfiguration); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioOutputConfigurationResponse*>(p->ptr), _tmd__GetAudioOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioOutputConfigurationResponse*>(p->ptr), _tmd__GetAudioOutputConfigurationResponse); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoSourceConfiguration*>(p->ptr), _tmd__GetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoSourceConfiguration*>(p->ptr), _tmd__GetVideoSourceConfiguration); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoSourceConfigurationResponse*>(p->ptr), _tmd__GetVideoSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoSourceConfigurationResponse*>(p->ptr), _tmd__GetVideoSourceConfigurationResponse); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoOutputConfiguration*>(p->ptr), _tmd__GetVideoOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoOutputConfiguration*>(p->ptr), _tmd__GetVideoOutputConfiguration); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoOutputConfigurationResponse*>(p->ptr), _tmd__GetVideoOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoOutputConfigurationResponse*>(p->ptr), _tmd__GetVideoOutputConfigurationResponse); - break; - case SOAP_TYPE__tmd__SetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetAudioSourceConfiguration*>(p->ptr), _tmd__SetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetAudioSourceConfiguration*>(p->ptr), _tmd__SetAudioSourceConfiguration); - break; - case SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetAudioSourceConfigurationResponse*>(p->ptr), _tmd__SetAudioSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetAudioSourceConfigurationResponse*>(p->ptr), _tmd__SetAudioSourceConfigurationResponse); - break; - case SOAP_TYPE__tmd__SetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetAudioOutputConfiguration*>(p->ptr), _tmd__SetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetAudioOutputConfiguration*>(p->ptr), _tmd__SetAudioOutputConfiguration); - break; - case SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetAudioOutputConfigurationResponse*>(p->ptr), _tmd__SetAudioOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetAudioOutputConfigurationResponse*>(p->ptr), _tmd__SetAudioOutputConfigurationResponse); - break; - case SOAP_TYPE__tmd__SetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetVideoSourceConfiguration*>(p->ptr), _tmd__SetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetVideoSourceConfiguration*>(p->ptr), _tmd__SetVideoSourceConfiguration); - break; - case SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetVideoSourceConfigurationResponse*>(p->ptr), _tmd__SetVideoSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetVideoSourceConfigurationResponse*>(p->ptr), _tmd__SetVideoSourceConfigurationResponse); - break; - case SOAP_TYPE__tmd__SetVideoOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetVideoOutputConfiguration*>(p->ptr), _tmd__SetVideoOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetVideoOutputConfiguration*>(p->ptr), _tmd__SetVideoOutputConfiguration); - break; - case SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetVideoOutputConfigurationResponse*>(p->ptr), _tmd__SetVideoOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetVideoOutputConfigurationResponse*>(p->ptr), _tmd__SetVideoOutputConfigurationResponse); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoSourceConfigurationOptions*>(p->ptr), _tmd__GetVideoSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoSourceConfigurationOptions*>(p->ptr), _tmd__GetVideoSourceConfigurationOptions); - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoSourceConfigurationOptionsResponse*>(p->ptr), _tmd__GetVideoSourceConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoSourceConfigurationOptionsResponse*>(p->ptr), _tmd__GetVideoSourceConfigurationOptionsResponse); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoOutputConfigurationOptions*>(p->ptr), _tmd__GetVideoOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoOutputConfigurationOptions*>(p->ptr), _tmd__GetVideoOutputConfigurationOptions); - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetVideoOutputConfigurationOptionsResponse*>(p->ptr), _tmd__GetVideoOutputConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetVideoOutputConfigurationOptionsResponse*>(p->ptr), _tmd__GetVideoOutputConfigurationOptionsResponse); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioSourceConfigurationOptions*>(p->ptr), _tmd__GetAudioSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioSourceConfigurationOptions*>(p->ptr), _tmd__GetAudioSourceConfigurationOptions); - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioSourceConfigurationOptionsResponse*>(p->ptr), _tmd__GetAudioSourceConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioSourceConfigurationOptionsResponse*>(p->ptr), _tmd__GetAudioSourceConfigurationOptionsResponse); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioOutputConfigurationOptions*>(p->ptr), _tmd__GetAudioOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioOutputConfigurationOptions*>(p->ptr), _tmd__GetAudioOutputConfigurationOptions); - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetAudioOutputConfigurationOptionsResponse*>(p->ptr), _tmd__GetAudioOutputConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetAudioOutputConfigurationOptionsResponse*>(p->ptr), _tmd__GetAudioOutputConfigurationOptionsResponse); - break; - case SOAP_TYPE__tmd__SetRelayOutputSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetRelayOutputSettings*>(p->ptr), _tmd__SetRelayOutputSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetRelayOutputSettings*>(p->ptr), _tmd__SetRelayOutputSettings); - break; - case SOAP_TYPE__tmd__SetRelayOutputSettingsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetRelayOutputSettingsResponse*>(p->ptr), _tmd__SetRelayOutputSettingsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetRelayOutputSettingsResponse*>(p->ptr), _tmd__SetRelayOutputSettingsResponse); - break; - case SOAP_TYPE__tmd__GetDigitalInputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetDigitalInputs*>(p->ptr), _tmd__GetDigitalInputs); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetDigitalInputs*>(p->ptr), _tmd__GetDigitalInputs); - break; - case SOAP_TYPE__tmd__GetDigitalInputsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetDigitalInputsResponse*>(p->ptr), _tmd__GetDigitalInputsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetDigitalInputsResponse*>(p->ptr), _tmd__GetDigitalInputsResponse); - break; - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetDigitalInputConfigurationOptions*>(p->ptr), _tmd__GetDigitalInputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetDigitalInputConfigurationOptions*>(p->ptr), _tmd__GetDigitalInputConfigurationOptions); - break; - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetDigitalInputConfigurationOptionsResponse*>(p->ptr), _tmd__GetDigitalInputConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetDigitalInputConfigurationOptionsResponse*>(p->ptr), _tmd__GetDigitalInputConfigurationOptionsResponse); - break; - case SOAP_TYPE__tmd__SetDigitalInputConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetDigitalInputConfigurations*>(p->ptr), _tmd__SetDigitalInputConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetDigitalInputConfigurations*>(p->ptr), _tmd__SetDigitalInputConfigurations); - break; - case SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetDigitalInputConfigurationsResponse*>(p->ptr), _tmd__SetDigitalInputConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetDigitalInputConfigurationsResponse*>(p->ptr), _tmd__SetDigitalInputConfigurationsResponse); - break; - case SOAP_TYPE__tmd__GetSerialPorts: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetSerialPorts*>(p->ptr), _tmd__GetSerialPorts); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetSerialPorts*>(p->ptr), _tmd__GetSerialPorts); - break; - case SOAP_TYPE__tmd__GetSerialPortsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetSerialPortsResponse*>(p->ptr), _tmd__GetSerialPortsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetSerialPortsResponse*>(p->ptr), _tmd__GetSerialPortsResponse); - break; - case SOAP_TYPE__tmd__GetSerialPortConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetSerialPortConfiguration*>(p->ptr), _tmd__GetSerialPortConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetSerialPortConfiguration*>(p->ptr), _tmd__GetSerialPortConfiguration); - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetSerialPortConfigurationResponse*>(p->ptr), _tmd__GetSerialPortConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetSerialPortConfigurationResponse*>(p->ptr), _tmd__GetSerialPortConfigurationResponse); - break; - case SOAP_TYPE__tmd__SetSerialPortConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetSerialPortConfiguration*>(p->ptr), _tmd__SetSerialPortConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetSerialPortConfiguration*>(p->ptr), _tmd__SetSerialPortConfiguration); - break; - case SOAP_TYPE__tmd__SetSerialPortConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SetSerialPortConfigurationResponse*>(p->ptr), _tmd__SetSerialPortConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SetSerialPortConfigurationResponse*>(p->ptr), _tmd__SetSerialPortConfigurationResponse); - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetSerialPortConfigurationOptions*>(p->ptr), _tmd__GetSerialPortConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetSerialPortConfigurationOptions*>(p->ptr), _tmd__GetSerialPortConfigurationOptions); - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__GetSerialPortConfigurationOptionsResponse*>(p->ptr), _tmd__GetSerialPortConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__GetSerialPortConfigurationOptionsResponse*>(p->ptr), _tmd__GetSerialPortConfigurationOptionsResponse); - break; - case SOAP_TYPE__tmd__SendReceiveSerialCommand: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SendReceiveSerialCommand*>(p->ptr), _tmd__SendReceiveSerialCommand); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SendReceiveSerialCommand*>(p->ptr), _tmd__SendReceiveSerialCommand); - break; - case SOAP_TYPE__tmd__SendReceiveSerialCommandResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tmd__SendReceiveSerialCommandResponse*>(p->ptr), _tmd__SendReceiveSerialCommandResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tmd__SendReceiveSerialCommandResponse*>(p->ptr), _tmd__SendReceiveSerialCommandResponse); - break; - case SOAP_TYPE__tds__Service_Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__Service_Capabilities*>(p->ptr), _tds__Service_Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__Service_Capabilities*>(p->ptr), _tds__Service_Capabilities); - break; - case SOAP_TYPE_tds__Service: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__Service); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__Service); - break; - case SOAP_TYPE_tds__DeviceServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__DeviceServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__DeviceServiceCapabilities); - break; - case SOAP_TYPE_tds__NetworkCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__NetworkCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__NetworkCapabilities); - break; - case SOAP_TYPE_tds__SecurityCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__SecurityCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__SecurityCapabilities); - break; - case SOAP_TYPE_tds__SystemCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__SystemCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__SystemCapabilities); - break; - case SOAP_TYPE_tds__MiscCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__MiscCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__MiscCapabilities); - break; - case SOAP_TYPE__tds__UserCredential_Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__UserCredential_Extension*>(p->ptr), _tds__UserCredential_Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__UserCredential_Extension*>(p->ptr), _tds__UserCredential_Extension); - break; - case SOAP_TYPE_tds__UserCredential: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__UserCredential); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__UserCredential); - break; - case SOAP_TYPE__tds__StorageConfigurationData_Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__StorageConfigurationData_Extension*>(p->ptr), _tds__StorageConfigurationData_Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__StorageConfigurationData_Extension*>(p->ptr), _tds__StorageConfigurationData_Extension); - break; - case SOAP_TYPE_tds__StorageConfigurationData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__StorageConfigurationData); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__StorageConfigurationData); - break; - case SOAP_TYPE__tds__GetServices: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetServices*>(p->ptr), _tds__GetServices); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetServices*>(p->ptr), _tds__GetServices); - break; - case SOAP_TYPE__tds__GetServicesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetServicesResponse*>(p->ptr), _tds__GetServicesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetServicesResponse*>(p->ptr), _tds__GetServicesResponse); - break; - case SOAP_TYPE__tds__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetServiceCapabilities*>(p->ptr), _tds__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetServiceCapabilities*>(p->ptr), _tds__GetServiceCapabilities); - break; - case SOAP_TYPE__tds__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetServiceCapabilitiesResponse*>(p->ptr), _tds__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetServiceCapabilitiesResponse*>(p->ptr), _tds__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__tds__GetDeviceInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDeviceInformation*>(p->ptr), _tds__GetDeviceInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDeviceInformation*>(p->ptr), _tds__GetDeviceInformation); - break; - case SOAP_TYPE__tds__GetDeviceInformationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDeviceInformationResponse*>(p->ptr), _tds__GetDeviceInformationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDeviceInformationResponse*>(p->ptr), _tds__GetDeviceInformationResponse); - break; - case SOAP_TYPE__tds__SetSystemDateAndTime: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetSystemDateAndTime*>(p->ptr), _tds__SetSystemDateAndTime); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetSystemDateAndTime*>(p->ptr), _tds__SetSystemDateAndTime); - break; - case SOAP_TYPE__tds__SetSystemDateAndTimeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetSystemDateAndTimeResponse*>(p->ptr), _tds__SetSystemDateAndTimeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetSystemDateAndTimeResponse*>(p->ptr), _tds__SetSystemDateAndTimeResponse); - break; - case SOAP_TYPE__tds__GetSystemDateAndTime: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemDateAndTime*>(p->ptr), _tds__GetSystemDateAndTime); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemDateAndTime*>(p->ptr), _tds__GetSystemDateAndTime); - break; - case SOAP_TYPE__tds__GetSystemDateAndTimeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemDateAndTimeResponse*>(p->ptr), _tds__GetSystemDateAndTimeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemDateAndTimeResponse*>(p->ptr), _tds__GetSystemDateAndTimeResponse); - break; - case SOAP_TYPE__tds__SetSystemFactoryDefault: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetSystemFactoryDefault*>(p->ptr), _tds__SetSystemFactoryDefault); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetSystemFactoryDefault*>(p->ptr), _tds__SetSystemFactoryDefault); - break; - case SOAP_TYPE__tds__SetSystemFactoryDefaultResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetSystemFactoryDefaultResponse*>(p->ptr), _tds__SetSystemFactoryDefaultResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetSystemFactoryDefaultResponse*>(p->ptr), _tds__SetSystemFactoryDefaultResponse); - break; - case SOAP_TYPE__tds__UpgradeSystemFirmware: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__UpgradeSystemFirmware*>(p->ptr), _tds__UpgradeSystemFirmware); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__UpgradeSystemFirmware*>(p->ptr), _tds__UpgradeSystemFirmware); - break; - case SOAP_TYPE__tds__UpgradeSystemFirmwareResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__UpgradeSystemFirmwareResponse*>(p->ptr), _tds__UpgradeSystemFirmwareResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__UpgradeSystemFirmwareResponse*>(p->ptr), _tds__UpgradeSystemFirmwareResponse); - break; - case SOAP_TYPE__tds__SystemReboot: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SystemReboot*>(p->ptr), _tds__SystemReboot); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SystemReboot*>(p->ptr), _tds__SystemReboot); - break; - case SOAP_TYPE__tds__SystemRebootResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SystemRebootResponse*>(p->ptr), _tds__SystemRebootResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SystemRebootResponse*>(p->ptr), _tds__SystemRebootResponse); - break; - case SOAP_TYPE__tds__RestoreSystem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__RestoreSystem*>(p->ptr), _tds__RestoreSystem); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__RestoreSystem*>(p->ptr), _tds__RestoreSystem); - break; - case SOAP_TYPE__tds__RestoreSystemResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__RestoreSystemResponse*>(p->ptr), _tds__RestoreSystemResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__RestoreSystemResponse*>(p->ptr), _tds__RestoreSystemResponse); - break; - case SOAP_TYPE__tds__GetSystemBackup: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemBackup*>(p->ptr), _tds__GetSystemBackup); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemBackup*>(p->ptr), _tds__GetSystemBackup); - break; - case SOAP_TYPE__tds__GetSystemBackupResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemBackupResponse*>(p->ptr), _tds__GetSystemBackupResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemBackupResponse*>(p->ptr), _tds__GetSystemBackupResponse); - break; - case SOAP_TYPE__tds__GetSystemSupportInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemSupportInformation*>(p->ptr), _tds__GetSystemSupportInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemSupportInformation*>(p->ptr), _tds__GetSystemSupportInformation); - break; - case SOAP_TYPE__tds__GetSystemSupportInformationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemSupportInformationResponse*>(p->ptr), _tds__GetSystemSupportInformationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemSupportInformationResponse*>(p->ptr), _tds__GetSystemSupportInformationResponse); - break; - case SOAP_TYPE__tds__GetSystemLog: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemLog*>(p->ptr), _tds__GetSystemLog); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemLog*>(p->ptr), _tds__GetSystemLog); - break; - case SOAP_TYPE__tds__GetSystemLogResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemLogResponse*>(p->ptr), _tds__GetSystemLogResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemLogResponse*>(p->ptr), _tds__GetSystemLogResponse); - break; - case SOAP_TYPE__tds__GetScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetScopes*>(p->ptr), _tds__GetScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetScopes*>(p->ptr), _tds__GetScopes); - break; - case SOAP_TYPE__tds__GetScopesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetScopesResponse*>(p->ptr), _tds__GetScopesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetScopesResponse*>(p->ptr), _tds__GetScopesResponse); - break; - case SOAP_TYPE__tds__SetScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetScopes*>(p->ptr), _tds__SetScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetScopes*>(p->ptr), _tds__SetScopes); - break; - case SOAP_TYPE__tds__SetScopesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetScopesResponse*>(p->ptr), _tds__SetScopesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetScopesResponse*>(p->ptr), _tds__SetScopesResponse); - break; - case SOAP_TYPE__tds__AddScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__AddScopes*>(p->ptr), _tds__AddScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__AddScopes*>(p->ptr), _tds__AddScopes); - break; - case SOAP_TYPE__tds__AddScopesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__AddScopesResponse*>(p->ptr), _tds__AddScopesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__AddScopesResponse*>(p->ptr), _tds__AddScopesResponse); - break; - case SOAP_TYPE__tds__RemoveScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__RemoveScopes*>(p->ptr), _tds__RemoveScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__RemoveScopes*>(p->ptr), _tds__RemoveScopes); - break; - case SOAP_TYPE__tds__RemoveScopesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__RemoveScopesResponse*>(p->ptr), _tds__RemoveScopesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__RemoveScopesResponse*>(p->ptr), _tds__RemoveScopesResponse); - break; - case SOAP_TYPE__tds__GetDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDiscoveryMode*>(p->ptr), _tds__GetDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDiscoveryMode*>(p->ptr), _tds__GetDiscoveryMode); - break; - case SOAP_TYPE__tds__GetDiscoveryModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDiscoveryModeResponse*>(p->ptr), _tds__GetDiscoveryModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDiscoveryModeResponse*>(p->ptr), _tds__GetDiscoveryModeResponse); - break; - case SOAP_TYPE__tds__SetDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDiscoveryMode*>(p->ptr), _tds__SetDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDiscoveryMode*>(p->ptr), _tds__SetDiscoveryMode); - break; - case SOAP_TYPE__tds__SetDiscoveryModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDiscoveryModeResponse*>(p->ptr), _tds__SetDiscoveryModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDiscoveryModeResponse*>(p->ptr), _tds__SetDiscoveryModeResponse); - break; - case SOAP_TYPE__tds__GetRemoteDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetRemoteDiscoveryMode*>(p->ptr), _tds__GetRemoteDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetRemoteDiscoveryMode*>(p->ptr), _tds__GetRemoteDiscoveryMode); - break; - case SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetRemoteDiscoveryModeResponse*>(p->ptr), _tds__GetRemoteDiscoveryModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetRemoteDiscoveryModeResponse*>(p->ptr), _tds__GetRemoteDiscoveryModeResponse); - break; - case SOAP_TYPE__tds__SetRemoteDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRemoteDiscoveryMode*>(p->ptr), _tds__SetRemoteDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRemoteDiscoveryMode*>(p->ptr), _tds__SetRemoteDiscoveryMode); - break; - case SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRemoteDiscoveryModeResponse*>(p->ptr), _tds__SetRemoteDiscoveryModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRemoteDiscoveryModeResponse*>(p->ptr), _tds__SetRemoteDiscoveryModeResponse); - break; - case SOAP_TYPE__tds__GetDPAddresses: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDPAddresses*>(p->ptr), _tds__GetDPAddresses); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDPAddresses*>(p->ptr), _tds__GetDPAddresses); - break; - case SOAP_TYPE__tds__GetDPAddressesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDPAddressesResponse*>(p->ptr), _tds__GetDPAddressesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDPAddressesResponse*>(p->ptr), _tds__GetDPAddressesResponse); - break; - case SOAP_TYPE__tds__SetDPAddresses: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDPAddresses*>(p->ptr), _tds__SetDPAddresses); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDPAddresses*>(p->ptr), _tds__SetDPAddresses); - break; - case SOAP_TYPE__tds__SetDPAddressesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDPAddressesResponse*>(p->ptr), _tds__SetDPAddressesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDPAddressesResponse*>(p->ptr), _tds__SetDPAddressesResponse); - break; - case SOAP_TYPE__tds__GetEndpointReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetEndpointReference*>(p->ptr), _tds__GetEndpointReference); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetEndpointReference*>(p->ptr), _tds__GetEndpointReference); - break; - case SOAP_TYPE__tds__GetEndpointReferenceResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetEndpointReferenceResponse*>(p->ptr), _tds__GetEndpointReferenceResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetEndpointReferenceResponse*>(p->ptr), _tds__GetEndpointReferenceResponse); - break; - case SOAP_TYPE__tds__GetRemoteUser: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetRemoteUser*>(p->ptr), _tds__GetRemoteUser); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetRemoteUser*>(p->ptr), _tds__GetRemoteUser); - break; - case SOAP_TYPE__tds__GetRemoteUserResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetRemoteUserResponse*>(p->ptr), _tds__GetRemoteUserResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetRemoteUserResponse*>(p->ptr), _tds__GetRemoteUserResponse); - break; - case SOAP_TYPE__tds__SetRemoteUser: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRemoteUser*>(p->ptr), _tds__SetRemoteUser); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRemoteUser*>(p->ptr), _tds__SetRemoteUser); - break; - case SOAP_TYPE__tds__SetRemoteUserResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRemoteUserResponse*>(p->ptr), _tds__SetRemoteUserResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRemoteUserResponse*>(p->ptr), _tds__SetRemoteUserResponse); - break; - case SOAP_TYPE__tds__GetUsers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetUsers*>(p->ptr), _tds__GetUsers); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetUsers*>(p->ptr), _tds__GetUsers); - break; - case SOAP_TYPE__tds__GetUsersResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetUsersResponse*>(p->ptr), _tds__GetUsersResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetUsersResponse*>(p->ptr), _tds__GetUsersResponse); - break; - case SOAP_TYPE__tds__CreateUsers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateUsers*>(p->ptr), _tds__CreateUsers); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateUsers*>(p->ptr), _tds__CreateUsers); - break; - case SOAP_TYPE__tds__CreateUsersResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateUsersResponse*>(p->ptr), _tds__CreateUsersResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateUsersResponse*>(p->ptr), _tds__CreateUsersResponse); - break; - case SOAP_TYPE__tds__DeleteUsers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteUsers*>(p->ptr), _tds__DeleteUsers); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteUsers*>(p->ptr), _tds__DeleteUsers); - break; - case SOAP_TYPE__tds__DeleteUsersResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteUsersResponse*>(p->ptr), _tds__DeleteUsersResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteUsersResponse*>(p->ptr), _tds__DeleteUsersResponse); - break; - case SOAP_TYPE__tds__SetUser: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetUser*>(p->ptr), _tds__SetUser); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetUser*>(p->ptr), _tds__SetUser); - break; - case SOAP_TYPE__tds__SetUserResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetUserResponse*>(p->ptr), _tds__SetUserResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetUserResponse*>(p->ptr), _tds__SetUserResponse); - break; - case SOAP_TYPE__tds__GetWsdlUrl: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetWsdlUrl*>(p->ptr), _tds__GetWsdlUrl); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetWsdlUrl*>(p->ptr), _tds__GetWsdlUrl); - break; - case SOAP_TYPE__tds__GetWsdlUrlResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetWsdlUrlResponse*>(p->ptr), _tds__GetWsdlUrlResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetWsdlUrlResponse*>(p->ptr), _tds__GetWsdlUrlResponse); - break; - case SOAP_TYPE__tds__GetCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCapabilities*>(p->ptr), _tds__GetCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCapabilities*>(p->ptr), _tds__GetCapabilities); - break; - case SOAP_TYPE__tds__GetCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCapabilitiesResponse*>(p->ptr), _tds__GetCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCapabilitiesResponse*>(p->ptr), _tds__GetCapabilitiesResponse); - break; - case SOAP_TYPE__tds__GetHostname: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetHostname*>(p->ptr), _tds__GetHostname); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetHostname*>(p->ptr), _tds__GetHostname); - break; - case SOAP_TYPE__tds__GetHostnameResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetHostnameResponse*>(p->ptr), _tds__GetHostnameResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetHostnameResponse*>(p->ptr), _tds__GetHostnameResponse); - break; - case SOAP_TYPE__tds__SetHostname: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetHostname*>(p->ptr), _tds__SetHostname); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetHostname*>(p->ptr), _tds__SetHostname); - break; - case SOAP_TYPE__tds__SetHostnameResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetHostnameResponse*>(p->ptr), _tds__SetHostnameResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetHostnameResponse*>(p->ptr), _tds__SetHostnameResponse); - break; - case SOAP_TYPE__tds__SetHostnameFromDHCP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetHostnameFromDHCP*>(p->ptr), _tds__SetHostnameFromDHCP); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetHostnameFromDHCP*>(p->ptr), _tds__SetHostnameFromDHCP); - break; - case SOAP_TYPE__tds__SetHostnameFromDHCPResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetHostnameFromDHCPResponse*>(p->ptr), _tds__SetHostnameFromDHCPResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetHostnameFromDHCPResponse*>(p->ptr), _tds__SetHostnameFromDHCPResponse); - break; - case SOAP_TYPE__tds__GetDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDNS*>(p->ptr), _tds__GetDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDNS*>(p->ptr), _tds__GetDNS); - break; - case SOAP_TYPE__tds__GetDNSResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDNSResponse*>(p->ptr), _tds__GetDNSResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDNSResponse*>(p->ptr), _tds__GetDNSResponse); - break; - case SOAP_TYPE__tds__SetDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDNS*>(p->ptr), _tds__SetDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDNS*>(p->ptr), _tds__SetDNS); - break; - case SOAP_TYPE__tds__SetDNSResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDNSResponse*>(p->ptr), _tds__SetDNSResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDNSResponse*>(p->ptr), _tds__SetDNSResponse); - break; - case SOAP_TYPE__tds__GetNTP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNTP*>(p->ptr), _tds__GetNTP); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNTP*>(p->ptr), _tds__GetNTP); - break; - case SOAP_TYPE__tds__GetNTPResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNTPResponse*>(p->ptr), _tds__GetNTPResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNTPResponse*>(p->ptr), _tds__GetNTPResponse); - break; - case SOAP_TYPE__tds__SetNTP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNTP*>(p->ptr), _tds__SetNTP); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNTP*>(p->ptr), _tds__SetNTP); - break; - case SOAP_TYPE__tds__SetNTPResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNTPResponse*>(p->ptr), _tds__SetNTPResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNTPResponse*>(p->ptr), _tds__SetNTPResponse); - break; - case SOAP_TYPE__tds__GetDynamicDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDynamicDNS*>(p->ptr), _tds__GetDynamicDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDynamicDNS*>(p->ptr), _tds__GetDynamicDNS); - break; - case SOAP_TYPE__tds__GetDynamicDNSResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDynamicDNSResponse*>(p->ptr), _tds__GetDynamicDNSResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDynamicDNSResponse*>(p->ptr), _tds__GetDynamicDNSResponse); - break; - case SOAP_TYPE__tds__SetDynamicDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDynamicDNS*>(p->ptr), _tds__SetDynamicDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDynamicDNS*>(p->ptr), _tds__SetDynamicDNS); - break; - case SOAP_TYPE__tds__SetDynamicDNSResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDynamicDNSResponse*>(p->ptr), _tds__SetDynamicDNSResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDynamicDNSResponse*>(p->ptr), _tds__SetDynamicDNSResponse); - break; - case SOAP_TYPE__tds__GetNetworkInterfaces: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNetworkInterfaces*>(p->ptr), _tds__GetNetworkInterfaces); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNetworkInterfaces*>(p->ptr), _tds__GetNetworkInterfaces); - break; - case SOAP_TYPE__tds__GetNetworkInterfacesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNetworkInterfacesResponse*>(p->ptr), _tds__GetNetworkInterfacesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNetworkInterfacesResponse*>(p->ptr), _tds__GetNetworkInterfacesResponse); - break; - case SOAP_TYPE__tds__SetNetworkInterfaces: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNetworkInterfaces*>(p->ptr), _tds__SetNetworkInterfaces); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNetworkInterfaces*>(p->ptr), _tds__SetNetworkInterfaces); - break; - case SOAP_TYPE__tds__SetNetworkInterfacesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNetworkInterfacesResponse*>(p->ptr), _tds__SetNetworkInterfacesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNetworkInterfacesResponse*>(p->ptr), _tds__SetNetworkInterfacesResponse); - break; - case SOAP_TYPE__tds__GetNetworkProtocols: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNetworkProtocols*>(p->ptr), _tds__GetNetworkProtocols); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNetworkProtocols*>(p->ptr), _tds__GetNetworkProtocols); - break; - case SOAP_TYPE__tds__GetNetworkProtocolsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNetworkProtocolsResponse*>(p->ptr), _tds__GetNetworkProtocolsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNetworkProtocolsResponse*>(p->ptr), _tds__GetNetworkProtocolsResponse); - break; - case SOAP_TYPE__tds__SetNetworkProtocols: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNetworkProtocols*>(p->ptr), _tds__SetNetworkProtocols); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNetworkProtocols*>(p->ptr), _tds__SetNetworkProtocols); - break; - case SOAP_TYPE__tds__SetNetworkProtocolsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNetworkProtocolsResponse*>(p->ptr), _tds__SetNetworkProtocolsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNetworkProtocolsResponse*>(p->ptr), _tds__SetNetworkProtocolsResponse); - break; - case SOAP_TYPE__tds__GetNetworkDefaultGateway: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNetworkDefaultGateway*>(p->ptr), _tds__GetNetworkDefaultGateway); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNetworkDefaultGateway*>(p->ptr), _tds__GetNetworkDefaultGateway); - break; - case SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetNetworkDefaultGatewayResponse*>(p->ptr), _tds__GetNetworkDefaultGatewayResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetNetworkDefaultGatewayResponse*>(p->ptr), _tds__GetNetworkDefaultGatewayResponse); - break; - case SOAP_TYPE__tds__SetNetworkDefaultGateway: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNetworkDefaultGateway*>(p->ptr), _tds__SetNetworkDefaultGateway); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNetworkDefaultGateway*>(p->ptr), _tds__SetNetworkDefaultGateway); - break; - case SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetNetworkDefaultGatewayResponse*>(p->ptr), _tds__SetNetworkDefaultGatewayResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetNetworkDefaultGatewayResponse*>(p->ptr), _tds__SetNetworkDefaultGatewayResponse); - break; - case SOAP_TYPE__tds__GetZeroConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetZeroConfiguration*>(p->ptr), _tds__GetZeroConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetZeroConfiguration*>(p->ptr), _tds__GetZeroConfiguration); - break; - case SOAP_TYPE__tds__GetZeroConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetZeroConfigurationResponse*>(p->ptr), _tds__GetZeroConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetZeroConfigurationResponse*>(p->ptr), _tds__GetZeroConfigurationResponse); - break; - case SOAP_TYPE__tds__SetZeroConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetZeroConfiguration*>(p->ptr), _tds__SetZeroConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetZeroConfiguration*>(p->ptr), _tds__SetZeroConfiguration); - break; - case SOAP_TYPE__tds__SetZeroConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetZeroConfigurationResponse*>(p->ptr), _tds__SetZeroConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetZeroConfigurationResponse*>(p->ptr), _tds__SetZeroConfigurationResponse); - break; - case SOAP_TYPE__tds__GetIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetIPAddressFilter*>(p->ptr), _tds__GetIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetIPAddressFilter*>(p->ptr), _tds__GetIPAddressFilter); - break; - case SOAP_TYPE__tds__GetIPAddressFilterResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetIPAddressFilterResponse*>(p->ptr), _tds__GetIPAddressFilterResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetIPAddressFilterResponse*>(p->ptr), _tds__GetIPAddressFilterResponse); - break; - case SOAP_TYPE__tds__SetIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetIPAddressFilter*>(p->ptr), _tds__SetIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetIPAddressFilter*>(p->ptr), _tds__SetIPAddressFilter); - break; - case SOAP_TYPE__tds__SetIPAddressFilterResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetIPAddressFilterResponse*>(p->ptr), _tds__SetIPAddressFilterResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetIPAddressFilterResponse*>(p->ptr), _tds__SetIPAddressFilterResponse); - break; - case SOAP_TYPE__tds__AddIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__AddIPAddressFilter*>(p->ptr), _tds__AddIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__AddIPAddressFilter*>(p->ptr), _tds__AddIPAddressFilter); - break; - case SOAP_TYPE__tds__AddIPAddressFilterResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__AddIPAddressFilterResponse*>(p->ptr), _tds__AddIPAddressFilterResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__AddIPAddressFilterResponse*>(p->ptr), _tds__AddIPAddressFilterResponse); - break; - case SOAP_TYPE__tds__RemoveIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__RemoveIPAddressFilter*>(p->ptr), _tds__RemoveIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__RemoveIPAddressFilter*>(p->ptr), _tds__RemoveIPAddressFilter); - break; - case SOAP_TYPE__tds__RemoveIPAddressFilterResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__RemoveIPAddressFilterResponse*>(p->ptr), _tds__RemoveIPAddressFilterResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__RemoveIPAddressFilterResponse*>(p->ptr), _tds__RemoveIPAddressFilterResponse); - break; - case SOAP_TYPE__tds__GetAccessPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetAccessPolicy*>(p->ptr), _tds__GetAccessPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetAccessPolicy*>(p->ptr), _tds__GetAccessPolicy); - break; - case SOAP_TYPE__tds__GetAccessPolicyResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetAccessPolicyResponse*>(p->ptr), _tds__GetAccessPolicyResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetAccessPolicyResponse*>(p->ptr), _tds__GetAccessPolicyResponse); - break; - case SOAP_TYPE__tds__SetAccessPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetAccessPolicy*>(p->ptr), _tds__SetAccessPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetAccessPolicy*>(p->ptr), _tds__SetAccessPolicy); - break; - case SOAP_TYPE__tds__SetAccessPolicyResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetAccessPolicyResponse*>(p->ptr), _tds__SetAccessPolicyResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetAccessPolicyResponse*>(p->ptr), _tds__SetAccessPolicyResponse); - break; - case SOAP_TYPE__tds__CreateCertificate: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateCertificate*>(p->ptr), _tds__CreateCertificate); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateCertificate*>(p->ptr), _tds__CreateCertificate); - break; - case SOAP_TYPE__tds__CreateCertificateResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateCertificateResponse*>(p->ptr), _tds__CreateCertificateResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateCertificateResponse*>(p->ptr), _tds__CreateCertificateResponse); - break; - case SOAP_TYPE__tds__GetCertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCertificates*>(p->ptr), _tds__GetCertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCertificates*>(p->ptr), _tds__GetCertificates); - break; - case SOAP_TYPE__tds__GetCertificatesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCertificatesResponse*>(p->ptr), _tds__GetCertificatesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCertificatesResponse*>(p->ptr), _tds__GetCertificatesResponse); - break; - case SOAP_TYPE__tds__GetCertificatesStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCertificatesStatus*>(p->ptr), _tds__GetCertificatesStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCertificatesStatus*>(p->ptr), _tds__GetCertificatesStatus); - break; - case SOAP_TYPE__tds__GetCertificatesStatusResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCertificatesStatusResponse*>(p->ptr), _tds__GetCertificatesStatusResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCertificatesStatusResponse*>(p->ptr), _tds__GetCertificatesStatusResponse); - break; - case SOAP_TYPE__tds__SetCertificatesStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetCertificatesStatus*>(p->ptr), _tds__SetCertificatesStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetCertificatesStatus*>(p->ptr), _tds__SetCertificatesStatus); - break; - case SOAP_TYPE__tds__SetCertificatesStatusResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetCertificatesStatusResponse*>(p->ptr), _tds__SetCertificatesStatusResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetCertificatesStatusResponse*>(p->ptr), _tds__SetCertificatesStatusResponse); - break; - case SOAP_TYPE__tds__DeleteCertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteCertificates*>(p->ptr), _tds__DeleteCertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteCertificates*>(p->ptr), _tds__DeleteCertificates); - break; - case SOAP_TYPE__tds__DeleteCertificatesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteCertificatesResponse*>(p->ptr), _tds__DeleteCertificatesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteCertificatesResponse*>(p->ptr), _tds__DeleteCertificatesResponse); - break; - case SOAP_TYPE__tds__GetPkcs10Request: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetPkcs10Request*>(p->ptr), _tds__GetPkcs10Request); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetPkcs10Request*>(p->ptr), _tds__GetPkcs10Request); - break; - case SOAP_TYPE__tds__GetPkcs10RequestResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetPkcs10RequestResponse*>(p->ptr), _tds__GetPkcs10RequestResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetPkcs10RequestResponse*>(p->ptr), _tds__GetPkcs10RequestResponse); - break; - case SOAP_TYPE__tds__LoadCertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__LoadCertificates*>(p->ptr), _tds__LoadCertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__LoadCertificates*>(p->ptr), _tds__LoadCertificates); - break; - case SOAP_TYPE__tds__LoadCertificatesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__LoadCertificatesResponse*>(p->ptr), _tds__LoadCertificatesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__LoadCertificatesResponse*>(p->ptr), _tds__LoadCertificatesResponse); - break; - case SOAP_TYPE__tds__GetClientCertificateMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetClientCertificateMode*>(p->ptr), _tds__GetClientCertificateMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetClientCertificateMode*>(p->ptr), _tds__GetClientCertificateMode); - break; - case SOAP_TYPE__tds__GetClientCertificateModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetClientCertificateModeResponse*>(p->ptr), _tds__GetClientCertificateModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetClientCertificateModeResponse*>(p->ptr), _tds__GetClientCertificateModeResponse); - break; - case SOAP_TYPE__tds__SetClientCertificateMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetClientCertificateMode*>(p->ptr), _tds__SetClientCertificateMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetClientCertificateMode*>(p->ptr), _tds__SetClientCertificateMode); - break; - case SOAP_TYPE__tds__SetClientCertificateModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetClientCertificateModeResponse*>(p->ptr), _tds__SetClientCertificateModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetClientCertificateModeResponse*>(p->ptr), _tds__SetClientCertificateModeResponse); - break; - case SOAP_TYPE__tds__GetCACertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCACertificates*>(p->ptr), _tds__GetCACertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCACertificates*>(p->ptr), _tds__GetCACertificates); - break; - case SOAP_TYPE__tds__GetCACertificatesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCACertificatesResponse*>(p->ptr), _tds__GetCACertificatesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCACertificatesResponse*>(p->ptr), _tds__GetCACertificatesResponse); - break; - case SOAP_TYPE__tds__LoadCertificateWithPrivateKey: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__LoadCertificateWithPrivateKey*>(p->ptr), _tds__LoadCertificateWithPrivateKey); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__LoadCertificateWithPrivateKey*>(p->ptr), _tds__LoadCertificateWithPrivateKey); - break; - case SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__LoadCertificateWithPrivateKeyResponse*>(p->ptr), _tds__LoadCertificateWithPrivateKeyResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__LoadCertificateWithPrivateKeyResponse*>(p->ptr), _tds__LoadCertificateWithPrivateKeyResponse); - break; - case SOAP_TYPE__tds__GetCertificateInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCertificateInformation*>(p->ptr), _tds__GetCertificateInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCertificateInformation*>(p->ptr), _tds__GetCertificateInformation); - break; - case SOAP_TYPE__tds__GetCertificateInformationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetCertificateInformationResponse*>(p->ptr), _tds__GetCertificateInformationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetCertificateInformationResponse*>(p->ptr), _tds__GetCertificateInformationResponse); - break; - case SOAP_TYPE__tds__LoadCACertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__LoadCACertificates*>(p->ptr), _tds__LoadCACertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__LoadCACertificates*>(p->ptr), _tds__LoadCACertificates); - break; - case SOAP_TYPE__tds__LoadCACertificatesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__LoadCACertificatesResponse*>(p->ptr), _tds__LoadCACertificatesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__LoadCACertificatesResponse*>(p->ptr), _tds__LoadCACertificatesResponse); - break; - case SOAP_TYPE__tds__CreateDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateDot1XConfiguration*>(p->ptr), _tds__CreateDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateDot1XConfiguration*>(p->ptr), _tds__CreateDot1XConfiguration); - break; - case SOAP_TYPE__tds__CreateDot1XConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateDot1XConfigurationResponse*>(p->ptr), _tds__CreateDot1XConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateDot1XConfigurationResponse*>(p->ptr), _tds__CreateDot1XConfigurationResponse); - break; - case SOAP_TYPE__tds__SetDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDot1XConfiguration*>(p->ptr), _tds__SetDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDot1XConfiguration*>(p->ptr), _tds__SetDot1XConfiguration); - break; - case SOAP_TYPE__tds__SetDot1XConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetDot1XConfigurationResponse*>(p->ptr), _tds__SetDot1XConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetDot1XConfigurationResponse*>(p->ptr), _tds__SetDot1XConfigurationResponse); - break; - case SOAP_TYPE__tds__GetDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot1XConfiguration*>(p->ptr), _tds__GetDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot1XConfiguration*>(p->ptr), _tds__GetDot1XConfiguration); - break; - case SOAP_TYPE__tds__GetDot1XConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot1XConfigurationResponse*>(p->ptr), _tds__GetDot1XConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot1XConfigurationResponse*>(p->ptr), _tds__GetDot1XConfigurationResponse); - break; - case SOAP_TYPE__tds__GetDot1XConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot1XConfigurations*>(p->ptr), _tds__GetDot1XConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot1XConfigurations*>(p->ptr), _tds__GetDot1XConfigurations); - break; - case SOAP_TYPE__tds__GetDot1XConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot1XConfigurationsResponse*>(p->ptr), _tds__GetDot1XConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot1XConfigurationsResponse*>(p->ptr), _tds__GetDot1XConfigurationsResponse); - break; - case SOAP_TYPE__tds__DeleteDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteDot1XConfiguration*>(p->ptr), _tds__DeleteDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteDot1XConfiguration*>(p->ptr), _tds__DeleteDot1XConfiguration); - break; - case SOAP_TYPE__tds__DeleteDot1XConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteDot1XConfigurationResponse*>(p->ptr), _tds__DeleteDot1XConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteDot1XConfigurationResponse*>(p->ptr), _tds__DeleteDot1XConfigurationResponse); - break; - case SOAP_TYPE__tds__GetRelayOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetRelayOutputs*>(p->ptr), _tds__GetRelayOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetRelayOutputs*>(p->ptr), _tds__GetRelayOutputs); - break; - case SOAP_TYPE__tds__GetRelayOutputsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetRelayOutputsResponse*>(p->ptr), _tds__GetRelayOutputsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetRelayOutputsResponse*>(p->ptr), _tds__GetRelayOutputsResponse); - break; - case SOAP_TYPE__tds__SetRelayOutputSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRelayOutputSettings*>(p->ptr), _tds__SetRelayOutputSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRelayOutputSettings*>(p->ptr), _tds__SetRelayOutputSettings); - break; - case SOAP_TYPE__tds__SetRelayOutputSettingsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRelayOutputSettingsResponse*>(p->ptr), _tds__SetRelayOutputSettingsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRelayOutputSettingsResponse*>(p->ptr), _tds__SetRelayOutputSettingsResponse); - break; - case SOAP_TYPE__tds__SetRelayOutputState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRelayOutputState*>(p->ptr), _tds__SetRelayOutputState); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRelayOutputState*>(p->ptr), _tds__SetRelayOutputState); - break; - case SOAP_TYPE__tds__SetRelayOutputStateResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetRelayOutputStateResponse*>(p->ptr), _tds__SetRelayOutputStateResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetRelayOutputStateResponse*>(p->ptr), _tds__SetRelayOutputStateResponse); - break; - case SOAP_TYPE__tds__SendAuxiliaryCommand: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SendAuxiliaryCommand*>(p->ptr), _tds__SendAuxiliaryCommand); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SendAuxiliaryCommand*>(p->ptr), _tds__SendAuxiliaryCommand); - break; - case SOAP_TYPE__tds__SendAuxiliaryCommandResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SendAuxiliaryCommandResponse*>(p->ptr), _tds__SendAuxiliaryCommandResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SendAuxiliaryCommandResponse*>(p->ptr), _tds__SendAuxiliaryCommandResponse); - break; - case SOAP_TYPE__tds__GetDot11Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot11Capabilities*>(p->ptr), _tds__GetDot11Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot11Capabilities*>(p->ptr), _tds__GetDot11Capabilities); - break; - case SOAP_TYPE__tds__GetDot11CapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot11CapabilitiesResponse*>(p->ptr), _tds__GetDot11CapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot11CapabilitiesResponse*>(p->ptr), _tds__GetDot11CapabilitiesResponse); - break; - case SOAP_TYPE__tds__GetDot11Status: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot11Status*>(p->ptr), _tds__GetDot11Status); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot11Status*>(p->ptr), _tds__GetDot11Status); - break; - case SOAP_TYPE__tds__GetDot11StatusResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetDot11StatusResponse*>(p->ptr), _tds__GetDot11StatusResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetDot11StatusResponse*>(p->ptr), _tds__GetDot11StatusResponse); - break; - case SOAP_TYPE__tds__ScanAvailableDot11Networks: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__ScanAvailableDot11Networks*>(p->ptr), _tds__ScanAvailableDot11Networks); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__ScanAvailableDot11Networks*>(p->ptr), _tds__ScanAvailableDot11Networks); - break; - case SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__ScanAvailableDot11NetworksResponse*>(p->ptr), _tds__ScanAvailableDot11NetworksResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__ScanAvailableDot11NetworksResponse*>(p->ptr), _tds__ScanAvailableDot11NetworksResponse); - break; - case SOAP_TYPE__tds__GetSystemUris: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemUris*>(p->ptr), _tds__GetSystemUris); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemUris*>(p->ptr), _tds__GetSystemUris); - break; - case SOAP_TYPE__tds__GetSystemUrisResponse_Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemUrisResponse_Extension*>(p->ptr), _tds__GetSystemUrisResponse_Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemUrisResponse_Extension*>(p->ptr), _tds__GetSystemUrisResponse_Extension); - break; - case SOAP_TYPE__tds__GetSystemUrisResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetSystemUrisResponse*>(p->ptr), _tds__GetSystemUrisResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetSystemUrisResponse*>(p->ptr), _tds__GetSystemUrisResponse); - break; - case SOAP_TYPE__tds__StartFirmwareUpgrade: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__StartFirmwareUpgrade*>(p->ptr), _tds__StartFirmwareUpgrade); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__StartFirmwareUpgrade*>(p->ptr), _tds__StartFirmwareUpgrade); - break; - case SOAP_TYPE__tds__StartFirmwareUpgradeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__StartFirmwareUpgradeResponse*>(p->ptr), _tds__StartFirmwareUpgradeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__StartFirmwareUpgradeResponse*>(p->ptr), _tds__StartFirmwareUpgradeResponse); - break; - case SOAP_TYPE__tds__StartSystemRestore: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__StartSystemRestore*>(p->ptr), _tds__StartSystemRestore); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__StartSystemRestore*>(p->ptr), _tds__StartSystemRestore); - break; - case SOAP_TYPE__tds__StartSystemRestoreResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__StartSystemRestoreResponse*>(p->ptr), _tds__StartSystemRestoreResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__StartSystemRestoreResponse*>(p->ptr), _tds__StartSystemRestoreResponse); - break; - case SOAP_TYPE__tds__GetStorageConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetStorageConfigurations*>(p->ptr), _tds__GetStorageConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetStorageConfigurations*>(p->ptr), _tds__GetStorageConfigurations); - break; - case SOAP_TYPE__tds__GetStorageConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetStorageConfigurationsResponse*>(p->ptr), _tds__GetStorageConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetStorageConfigurationsResponse*>(p->ptr), _tds__GetStorageConfigurationsResponse); - break; - case SOAP_TYPE__tds__CreateStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateStorageConfiguration*>(p->ptr), _tds__CreateStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateStorageConfiguration*>(p->ptr), _tds__CreateStorageConfiguration); - break; - case SOAP_TYPE__tds__CreateStorageConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__CreateStorageConfigurationResponse*>(p->ptr), _tds__CreateStorageConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__CreateStorageConfigurationResponse*>(p->ptr), _tds__CreateStorageConfigurationResponse); - break; - case SOAP_TYPE__tds__GetStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetStorageConfiguration*>(p->ptr), _tds__GetStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetStorageConfiguration*>(p->ptr), _tds__GetStorageConfiguration); - break; - case SOAP_TYPE__tds__GetStorageConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetStorageConfigurationResponse*>(p->ptr), _tds__GetStorageConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetStorageConfigurationResponse*>(p->ptr), _tds__GetStorageConfigurationResponse); - break; - case SOAP_TYPE__tds__SetStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetStorageConfiguration*>(p->ptr), _tds__SetStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetStorageConfiguration*>(p->ptr), _tds__SetStorageConfiguration); - break; - case SOAP_TYPE__tds__SetStorageConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetStorageConfigurationResponse*>(p->ptr), _tds__SetStorageConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetStorageConfigurationResponse*>(p->ptr), _tds__SetStorageConfigurationResponse); - break; - case SOAP_TYPE__tds__DeleteStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteStorageConfiguration*>(p->ptr), _tds__DeleteStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteStorageConfiguration*>(p->ptr), _tds__DeleteStorageConfiguration); - break; - case SOAP_TYPE__tds__DeleteStorageConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteStorageConfigurationResponse*>(p->ptr), _tds__DeleteStorageConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteStorageConfigurationResponse*>(p->ptr), _tds__DeleteStorageConfigurationResponse); - break; - case SOAP_TYPE__tds__GetGeoLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetGeoLocation*>(p->ptr), _tds__GetGeoLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetGeoLocation*>(p->ptr), _tds__GetGeoLocation); - break; - case SOAP_TYPE__tds__GetGeoLocationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__GetGeoLocationResponse*>(p->ptr), _tds__GetGeoLocationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__GetGeoLocationResponse*>(p->ptr), _tds__GetGeoLocationResponse); - break; - case SOAP_TYPE__tds__SetGeoLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetGeoLocation*>(p->ptr), _tds__SetGeoLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetGeoLocation*>(p->ptr), _tds__SetGeoLocation); - break; - case SOAP_TYPE__tds__SetGeoLocationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__SetGeoLocationResponse*>(p->ptr), _tds__SetGeoLocationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__SetGeoLocationResponse*>(p->ptr), _tds__SetGeoLocationResponse); - break; - case SOAP_TYPE__tds__DeleteGeoLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteGeoLocation*>(p->ptr), _tds__DeleteGeoLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteGeoLocation*>(p->ptr), _tds__DeleteGeoLocation); - break; - case SOAP_TYPE__tds__DeleteGeoLocationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tds__DeleteGeoLocationResponse*>(p->ptr), _tds__DeleteGeoLocationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tds__DeleteGeoLocationResponse*>(p->ptr), _tds__DeleteGeoLocationResponse); - break; - case SOAP_TYPE_tls__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tls__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tls__Capabilities); - break; - case SOAP_TYPE__tls__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetServiceCapabilities*>(p->ptr), _tls__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetServiceCapabilities*>(p->ptr), _tls__GetServiceCapabilities); - break; - case SOAP_TYPE__tls__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetServiceCapabilitiesResponse*>(p->ptr), _tls__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetServiceCapabilitiesResponse*>(p->ptr), _tls__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__tls__GetLayout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetLayout*>(p->ptr), _tls__GetLayout); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetLayout*>(p->ptr), _tls__GetLayout); - break; - case SOAP_TYPE__tls__GetLayoutResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetLayoutResponse*>(p->ptr), _tls__GetLayoutResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetLayoutResponse*>(p->ptr), _tls__GetLayoutResponse); - break; - case SOAP_TYPE__tls__SetLayout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__SetLayout*>(p->ptr), _tls__SetLayout); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__SetLayout*>(p->ptr), _tls__SetLayout); - break; - case SOAP_TYPE__tls__SetLayoutResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__SetLayoutResponse*>(p->ptr), _tls__SetLayoutResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__SetLayoutResponse*>(p->ptr), _tls__SetLayoutResponse); - break; - case SOAP_TYPE__tls__GetDisplayOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetDisplayOptions*>(p->ptr), _tls__GetDisplayOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetDisplayOptions*>(p->ptr), _tls__GetDisplayOptions); - break; - case SOAP_TYPE__tls__GetDisplayOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetDisplayOptionsResponse*>(p->ptr), _tls__GetDisplayOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetDisplayOptionsResponse*>(p->ptr), _tls__GetDisplayOptionsResponse); - break; - case SOAP_TYPE__tls__GetPaneConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetPaneConfigurations*>(p->ptr), _tls__GetPaneConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetPaneConfigurations*>(p->ptr), _tls__GetPaneConfigurations); - break; - case SOAP_TYPE__tls__GetPaneConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetPaneConfigurationsResponse*>(p->ptr), _tls__GetPaneConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetPaneConfigurationsResponse*>(p->ptr), _tls__GetPaneConfigurationsResponse); - break; - case SOAP_TYPE__tls__GetPaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetPaneConfiguration*>(p->ptr), _tls__GetPaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetPaneConfiguration*>(p->ptr), _tls__GetPaneConfiguration); - break; - case SOAP_TYPE__tls__GetPaneConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__GetPaneConfigurationResponse*>(p->ptr), _tls__GetPaneConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__GetPaneConfigurationResponse*>(p->ptr), _tls__GetPaneConfigurationResponse); - break; - case SOAP_TYPE__tls__SetPaneConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__SetPaneConfigurations*>(p->ptr), _tls__SetPaneConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__SetPaneConfigurations*>(p->ptr), _tls__SetPaneConfigurations); - break; - case SOAP_TYPE__tls__SetPaneConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__SetPaneConfigurationsResponse*>(p->ptr), _tls__SetPaneConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__SetPaneConfigurationsResponse*>(p->ptr), _tls__SetPaneConfigurationsResponse); - break; - case SOAP_TYPE__tls__SetPaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__SetPaneConfiguration*>(p->ptr), _tls__SetPaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__SetPaneConfiguration*>(p->ptr), _tls__SetPaneConfiguration); - break; - case SOAP_TYPE__tls__SetPaneConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__SetPaneConfigurationResponse*>(p->ptr), _tls__SetPaneConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__SetPaneConfigurationResponse*>(p->ptr), _tls__SetPaneConfigurationResponse); - break; - case SOAP_TYPE__tls__CreatePaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__CreatePaneConfiguration*>(p->ptr), _tls__CreatePaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__CreatePaneConfiguration*>(p->ptr), _tls__CreatePaneConfiguration); - break; - case SOAP_TYPE__tls__CreatePaneConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__CreatePaneConfigurationResponse*>(p->ptr), _tls__CreatePaneConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__CreatePaneConfigurationResponse*>(p->ptr), _tls__CreatePaneConfigurationResponse); - break; - case SOAP_TYPE__tls__DeletePaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__DeletePaneConfiguration*>(p->ptr), _tls__DeletePaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__DeletePaneConfiguration*>(p->ptr), _tls__DeletePaneConfiguration); - break; - case SOAP_TYPE__tls__DeletePaneConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tls__DeletePaneConfigurationResponse*>(p->ptr), _tls__DeletePaneConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tls__DeletePaneConfigurationResponse*>(p->ptr), _tls__DeletePaneConfigurationResponse); - break; - case SOAP_TYPE_timg__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), timg__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), timg__Capabilities); - break; - case SOAP_TYPE_timg__ImagingPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), timg__ImagingPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), timg__ImagingPreset); - break; - case SOAP_TYPE__timg__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetServiceCapabilities*>(p->ptr), _timg__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetServiceCapabilities*>(p->ptr), _timg__GetServiceCapabilities); - break; - case SOAP_TYPE__timg__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetServiceCapabilitiesResponse*>(p->ptr), _timg__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetServiceCapabilitiesResponse*>(p->ptr), _timg__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__timg__GetImagingSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetImagingSettings*>(p->ptr), _timg__GetImagingSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetImagingSettings*>(p->ptr), _timg__GetImagingSettings); - break; - case SOAP_TYPE__timg__GetImagingSettingsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetImagingSettingsResponse*>(p->ptr), _timg__GetImagingSettingsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetImagingSettingsResponse*>(p->ptr), _timg__GetImagingSettingsResponse); - break; - case SOAP_TYPE__timg__SetImagingSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__SetImagingSettings*>(p->ptr), _timg__SetImagingSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__SetImagingSettings*>(p->ptr), _timg__SetImagingSettings); - break; - case SOAP_TYPE__timg__SetImagingSettingsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__SetImagingSettingsResponse*>(p->ptr), _timg__SetImagingSettingsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__SetImagingSettingsResponse*>(p->ptr), _timg__SetImagingSettingsResponse); - break; - case SOAP_TYPE__timg__GetOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetOptions*>(p->ptr), _timg__GetOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetOptions*>(p->ptr), _timg__GetOptions); - break; - case SOAP_TYPE__timg__GetOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetOptionsResponse*>(p->ptr), _timg__GetOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetOptionsResponse*>(p->ptr), _timg__GetOptionsResponse); - break; - case SOAP_TYPE__timg__Move: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__Move*>(p->ptr), _timg__Move); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__Move*>(p->ptr), _timg__Move); - break; - case SOAP_TYPE__timg__MoveResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__MoveResponse*>(p->ptr), _timg__MoveResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__MoveResponse*>(p->ptr), _timg__MoveResponse); - break; - case SOAP_TYPE__timg__GetMoveOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetMoveOptions*>(p->ptr), _timg__GetMoveOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetMoveOptions*>(p->ptr), _timg__GetMoveOptions); - break; - case SOAP_TYPE__timg__GetMoveOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetMoveOptionsResponse*>(p->ptr), _timg__GetMoveOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetMoveOptionsResponse*>(p->ptr), _timg__GetMoveOptionsResponse); - break; - case SOAP_TYPE__timg__Stop: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__Stop*>(p->ptr), _timg__Stop); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__Stop*>(p->ptr), _timg__Stop); - break; - case SOAP_TYPE__timg__StopResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__StopResponse*>(p->ptr), _timg__StopResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__StopResponse*>(p->ptr), _timg__StopResponse); - break; - case SOAP_TYPE__timg__GetStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetStatus*>(p->ptr), _timg__GetStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetStatus*>(p->ptr), _timg__GetStatus); - break; - case SOAP_TYPE__timg__GetStatusResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetStatusResponse*>(p->ptr), _timg__GetStatusResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetStatusResponse*>(p->ptr), _timg__GetStatusResponse); - break; - case SOAP_TYPE__timg__GetPresets: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetPresets*>(p->ptr), _timg__GetPresets); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetPresets*>(p->ptr), _timg__GetPresets); - break; - case SOAP_TYPE__timg__GetPresetsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetPresetsResponse*>(p->ptr), _timg__GetPresetsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetPresetsResponse*>(p->ptr), _timg__GetPresetsResponse); - break; - case SOAP_TYPE__timg__GetCurrentPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetCurrentPreset*>(p->ptr), _timg__GetCurrentPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetCurrentPreset*>(p->ptr), _timg__GetCurrentPreset); - break; - case SOAP_TYPE__timg__GetCurrentPresetResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__GetCurrentPresetResponse*>(p->ptr), _timg__GetCurrentPresetResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__GetCurrentPresetResponse*>(p->ptr), _timg__GetCurrentPresetResponse); - break; - case SOAP_TYPE__timg__SetCurrentPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__SetCurrentPreset*>(p->ptr), _timg__SetCurrentPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__SetCurrentPreset*>(p->ptr), _timg__SetCurrentPreset); - break; - case SOAP_TYPE__timg__SetCurrentPresetResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_timg__SetCurrentPresetResponse*>(p->ptr), _timg__SetCurrentPresetResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_timg__SetCurrentPresetResponse*>(p->ptr), _timg__SetCurrentPresetResponse); - break; - case SOAP_TYPE_xop__Include: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xop__Include); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xop__Include); - break; - case SOAP_TYPE_trt__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trt__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trt__Capabilities); - break; - case SOAP_TYPE_trt__ProfileCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trt__ProfileCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trt__ProfileCapabilities); - break; - case SOAP_TYPE_trt__StreamingCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trt__StreamingCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trt__StreamingCapabilities); - break; - case SOAP_TYPE_trt__VideoSourceMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trt__VideoSourceMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trt__VideoSourceMode); - break; - case SOAP_TYPE_trt__VideoSourceModeExtension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trt__VideoSourceModeExtension); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trt__VideoSourceModeExtension); - break; - case SOAP_TYPE__trt__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetServiceCapabilities*>(p->ptr), _trt__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetServiceCapabilities*>(p->ptr), _trt__GetServiceCapabilities); - break; - case SOAP_TYPE__trt__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetServiceCapabilitiesResponse*>(p->ptr), _trt__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetServiceCapabilitiesResponse*>(p->ptr), _trt__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__trt__GetVideoSources: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSources*>(p->ptr), _trt__GetVideoSources); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSources*>(p->ptr), _trt__GetVideoSources); - break; - case SOAP_TYPE__trt__GetVideoSourcesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourcesResponse*>(p->ptr), _trt__GetVideoSourcesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourcesResponse*>(p->ptr), _trt__GetVideoSourcesResponse); - break; - case SOAP_TYPE__trt__GetAudioSources: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSources*>(p->ptr), _trt__GetAudioSources); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSources*>(p->ptr), _trt__GetAudioSources); - break; - case SOAP_TYPE__trt__GetAudioSourcesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSourcesResponse*>(p->ptr), _trt__GetAudioSourcesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSourcesResponse*>(p->ptr), _trt__GetAudioSourcesResponse); - break; - case SOAP_TYPE__trt__GetAudioOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputs*>(p->ptr), _trt__GetAudioOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputs*>(p->ptr), _trt__GetAudioOutputs); - break; - case SOAP_TYPE__trt__GetAudioOutputsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputsResponse*>(p->ptr), _trt__GetAudioOutputsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputsResponse*>(p->ptr), _trt__GetAudioOutputsResponse); - break; - case SOAP_TYPE__trt__CreateProfile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__CreateProfile*>(p->ptr), _trt__CreateProfile); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__CreateProfile*>(p->ptr), _trt__CreateProfile); - break; - case SOAP_TYPE__trt__CreateProfileResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__CreateProfileResponse*>(p->ptr), _trt__CreateProfileResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__CreateProfileResponse*>(p->ptr), _trt__CreateProfileResponse); - break; - case SOAP_TYPE__trt__GetProfile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetProfile*>(p->ptr), _trt__GetProfile); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetProfile*>(p->ptr), _trt__GetProfile); - break; - case SOAP_TYPE__trt__GetProfileResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetProfileResponse*>(p->ptr), _trt__GetProfileResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetProfileResponse*>(p->ptr), _trt__GetProfileResponse); - break; - case SOAP_TYPE__trt__GetProfiles: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetProfiles*>(p->ptr), _trt__GetProfiles); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetProfiles*>(p->ptr), _trt__GetProfiles); - break; - case SOAP_TYPE__trt__GetProfilesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetProfilesResponse*>(p->ptr), _trt__GetProfilesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetProfilesResponse*>(p->ptr), _trt__GetProfilesResponse); - break; - case SOAP_TYPE__trt__AddVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddVideoEncoderConfiguration*>(p->ptr), _trt__AddVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddVideoEncoderConfiguration*>(p->ptr), _trt__AddVideoEncoderConfiguration); - break; - case SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddVideoEncoderConfigurationResponse*>(p->ptr), _trt__AddVideoEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddVideoEncoderConfigurationResponse*>(p->ptr), _trt__AddVideoEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveVideoEncoderConfiguration*>(p->ptr), _trt__RemoveVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveVideoEncoderConfiguration*>(p->ptr), _trt__RemoveVideoEncoderConfiguration); - break; - case SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveVideoEncoderConfigurationResponse*>(p->ptr), _trt__RemoveVideoEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveVideoEncoderConfigurationResponse*>(p->ptr), _trt__RemoveVideoEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__AddVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddVideoSourceConfiguration*>(p->ptr), _trt__AddVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddVideoSourceConfiguration*>(p->ptr), _trt__AddVideoSourceConfiguration); - break; - case SOAP_TYPE__trt__AddVideoSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddVideoSourceConfigurationResponse*>(p->ptr), _trt__AddVideoSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddVideoSourceConfigurationResponse*>(p->ptr), _trt__AddVideoSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveVideoSourceConfiguration*>(p->ptr), _trt__RemoveVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveVideoSourceConfiguration*>(p->ptr), _trt__RemoveVideoSourceConfiguration); - break; - case SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveVideoSourceConfigurationResponse*>(p->ptr), _trt__RemoveVideoSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveVideoSourceConfigurationResponse*>(p->ptr), _trt__RemoveVideoSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__AddAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioEncoderConfiguration*>(p->ptr), _trt__AddAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioEncoderConfiguration*>(p->ptr), _trt__AddAudioEncoderConfiguration); - break; - case SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioEncoderConfigurationResponse*>(p->ptr), _trt__AddAudioEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioEncoderConfigurationResponse*>(p->ptr), _trt__AddAudioEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioEncoderConfiguration*>(p->ptr), _trt__RemoveAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioEncoderConfiguration*>(p->ptr), _trt__RemoveAudioEncoderConfiguration); - break; - case SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioEncoderConfigurationResponse*>(p->ptr), _trt__RemoveAudioEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioEncoderConfigurationResponse*>(p->ptr), _trt__RemoveAudioEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__AddAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioSourceConfiguration*>(p->ptr), _trt__AddAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioSourceConfiguration*>(p->ptr), _trt__AddAudioSourceConfiguration); - break; - case SOAP_TYPE__trt__AddAudioSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioSourceConfigurationResponse*>(p->ptr), _trt__AddAudioSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioSourceConfigurationResponse*>(p->ptr), _trt__AddAudioSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioSourceConfiguration*>(p->ptr), _trt__RemoveAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioSourceConfiguration*>(p->ptr), _trt__RemoveAudioSourceConfiguration); - break; - case SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioSourceConfigurationResponse*>(p->ptr), _trt__RemoveAudioSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioSourceConfigurationResponse*>(p->ptr), _trt__RemoveAudioSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__AddPTZConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddPTZConfiguration*>(p->ptr), _trt__AddPTZConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddPTZConfiguration*>(p->ptr), _trt__AddPTZConfiguration); - break; - case SOAP_TYPE__trt__AddPTZConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddPTZConfigurationResponse*>(p->ptr), _trt__AddPTZConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddPTZConfigurationResponse*>(p->ptr), _trt__AddPTZConfigurationResponse); - break; - case SOAP_TYPE__trt__RemovePTZConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemovePTZConfiguration*>(p->ptr), _trt__RemovePTZConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemovePTZConfiguration*>(p->ptr), _trt__RemovePTZConfiguration); - break; - case SOAP_TYPE__trt__RemovePTZConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemovePTZConfigurationResponse*>(p->ptr), _trt__RemovePTZConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemovePTZConfigurationResponse*>(p->ptr), _trt__RemovePTZConfigurationResponse); - break; - case SOAP_TYPE__trt__AddVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddVideoAnalyticsConfiguration*>(p->ptr), _trt__AddVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddVideoAnalyticsConfiguration*>(p->ptr), _trt__AddVideoAnalyticsConfiguration); - break; - case SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__AddVideoAnalyticsConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__AddVideoAnalyticsConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveVideoAnalyticsConfiguration*>(p->ptr), _trt__RemoveVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveVideoAnalyticsConfiguration*>(p->ptr), _trt__RemoveVideoAnalyticsConfiguration); - break; - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__RemoveVideoAnalyticsConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__RemoveVideoAnalyticsConfigurationResponse); - break; - case SOAP_TYPE__trt__AddMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddMetadataConfiguration*>(p->ptr), _trt__AddMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddMetadataConfiguration*>(p->ptr), _trt__AddMetadataConfiguration); - break; - case SOAP_TYPE__trt__AddMetadataConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddMetadataConfigurationResponse*>(p->ptr), _trt__AddMetadataConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddMetadataConfigurationResponse*>(p->ptr), _trt__AddMetadataConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveMetadataConfiguration*>(p->ptr), _trt__RemoveMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveMetadataConfiguration*>(p->ptr), _trt__RemoveMetadataConfiguration); - break; - case SOAP_TYPE__trt__RemoveMetadataConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveMetadataConfigurationResponse*>(p->ptr), _trt__RemoveMetadataConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveMetadataConfigurationResponse*>(p->ptr), _trt__RemoveMetadataConfigurationResponse); - break; - case SOAP_TYPE__trt__AddAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioOutputConfiguration*>(p->ptr), _trt__AddAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioOutputConfiguration*>(p->ptr), _trt__AddAudioOutputConfiguration); - break; - case SOAP_TYPE__trt__AddAudioOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioOutputConfigurationResponse*>(p->ptr), _trt__AddAudioOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioOutputConfigurationResponse*>(p->ptr), _trt__AddAudioOutputConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioOutputConfiguration*>(p->ptr), _trt__RemoveAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioOutputConfiguration*>(p->ptr), _trt__RemoveAudioOutputConfiguration); - break; - case SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioOutputConfigurationResponse*>(p->ptr), _trt__RemoveAudioOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioOutputConfigurationResponse*>(p->ptr), _trt__RemoveAudioOutputConfigurationResponse); - break; - case SOAP_TYPE__trt__AddAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioDecoderConfiguration*>(p->ptr), _trt__AddAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioDecoderConfiguration*>(p->ptr), _trt__AddAudioDecoderConfiguration); - break; - case SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__AddAudioDecoderConfigurationResponse*>(p->ptr), _trt__AddAudioDecoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__AddAudioDecoderConfigurationResponse*>(p->ptr), _trt__AddAudioDecoderConfigurationResponse); - break; - case SOAP_TYPE__trt__RemoveAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioDecoderConfiguration*>(p->ptr), _trt__RemoveAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioDecoderConfiguration*>(p->ptr), _trt__RemoveAudioDecoderConfiguration); - break; - case SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__RemoveAudioDecoderConfigurationResponse*>(p->ptr), _trt__RemoveAudioDecoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__RemoveAudioDecoderConfigurationResponse*>(p->ptr), _trt__RemoveAudioDecoderConfigurationResponse); - break; - case SOAP_TYPE__trt__DeleteProfile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__DeleteProfile*>(p->ptr), _trt__DeleteProfile); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__DeleteProfile*>(p->ptr), _trt__DeleteProfile); - break; - case SOAP_TYPE__trt__DeleteProfileResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__DeleteProfileResponse*>(p->ptr), _trt__DeleteProfileResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__DeleteProfileResponse*>(p->ptr), _trt__DeleteProfileResponse); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoEncoderConfigurations*>(p->ptr), _trt__GetVideoEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoEncoderConfigurations*>(p->ptr), _trt__GetVideoEncoderConfigurations); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoEncoderConfigurationsResponse*>(p->ptr), _trt__GetVideoEncoderConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoEncoderConfigurationsResponse*>(p->ptr), _trt__GetVideoEncoderConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceConfigurations*>(p->ptr), _trt__GetVideoSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceConfigurations*>(p->ptr), _trt__GetVideoSourceConfigurations); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceConfigurationsResponse*>(p->ptr), _trt__GetVideoSourceConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceConfigurationsResponse*>(p->ptr), _trt__GetVideoSourceConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioEncoderConfigurations*>(p->ptr), _trt__GetAudioEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioEncoderConfigurations*>(p->ptr), _trt__GetAudioEncoderConfigurations); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioEncoderConfigurationsResponse*>(p->ptr), _trt__GetAudioEncoderConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioEncoderConfigurationsResponse*>(p->ptr), _trt__GetAudioEncoderConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSourceConfigurations*>(p->ptr), _trt__GetAudioSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSourceConfigurations*>(p->ptr), _trt__GetAudioSourceConfigurations); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSourceConfigurationsResponse*>(p->ptr), _trt__GetAudioSourceConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSourceConfigurationsResponse*>(p->ptr), _trt__GetAudioSourceConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoAnalyticsConfigurations*>(p->ptr), _trt__GetVideoAnalyticsConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoAnalyticsConfigurations*>(p->ptr), _trt__GetVideoAnalyticsConfigurations); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoAnalyticsConfigurationsResponse*>(p->ptr), _trt__GetVideoAnalyticsConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoAnalyticsConfigurationsResponse*>(p->ptr), _trt__GetVideoAnalyticsConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetMetadataConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetMetadataConfigurations*>(p->ptr), _trt__GetMetadataConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetMetadataConfigurations*>(p->ptr), _trt__GetMetadataConfigurations); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetMetadataConfigurationsResponse*>(p->ptr), _trt__GetMetadataConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetMetadataConfigurationsResponse*>(p->ptr), _trt__GetMetadataConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputConfigurations*>(p->ptr), _trt__GetAudioOutputConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputConfigurations*>(p->ptr), _trt__GetAudioOutputConfigurations); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputConfigurationsResponse*>(p->ptr), _trt__GetAudioOutputConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputConfigurationsResponse*>(p->ptr), _trt__GetAudioOutputConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioDecoderConfigurations*>(p->ptr), _trt__GetAudioDecoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioDecoderConfigurations*>(p->ptr), _trt__GetAudioDecoderConfigurations); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioDecoderConfigurationsResponse*>(p->ptr), _trt__GetAudioDecoderConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioDecoderConfigurationsResponse*>(p->ptr), _trt__GetAudioDecoderConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceConfiguration*>(p->ptr), _trt__GetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceConfiguration*>(p->ptr), _trt__GetVideoSourceConfiguration); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceConfigurationResponse*>(p->ptr), _trt__GetVideoSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceConfigurationResponse*>(p->ptr), _trt__GetVideoSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoEncoderConfiguration*>(p->ptr), _trt__GetVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoEncoderConfiguration*>(p->ptr), _trt__GetVideoEncoderConfiguration); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoEncoderConfigurationResponse*>(p->ptr), _trt__GetVideoEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoEncoderConfigurationResponse*>(p->ptr), _trt__GetVideoEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__GetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSourceConfiguration*>(p->ptr), _trt__GetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSourceConfiguration*>(p->ptr), _trt__GetAudioSourceConfiguration); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSourceConfigurationResponse*>(p->ptr), _trt__GetAudioSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSourceConfigurationResponse*>(p->ptr), _trt__GetAudioSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioEncoderConfiguration*>(p->ptr), _trt__GetAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioEncoderConfiguration*>(p->ptr), _trt__GetAudioEncoderConfiguration); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioEncoderConfigurationResponse*>(p->ptr), _trt__GetAudioEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioEncoderConfigurationResponse*>(p->ptr), _trt__GetAudioEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoAnalyticsConfiguration*>(p->ptr), _trt__GetVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoAnalyticsConfiguration*>(p->ptr), _trt__GetVideoAnalyticsConfiguration); - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__GetVideoAnalyticsConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__GetVideoAnalyticsConfigurationResponse); - break; - case SOAP_TYPE__trt__GetMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetMetadataConfiguration*>(p->ptr), _trt__GetMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetMetadataConfiguration*>(p->ptr), _trt__GetMetadataConfiguration); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetMetadataConfigurationResponse*>(p->ptr), _trt__GetMetadataConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetMetadataConfigurationResponse*>(p->ptr), _trt__GetMetadataConfigurationResponse); - break; - case SOAP_TYPE__trt__GetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputConfiguration*>(p->ptr), _trt__GetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputConfiguration*>(p->ptr), _trt__GetAudioOutputConfiguration); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputConfigurationResponse*>(p->ptr), _trt__GetAudioOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputConfigurationResponse*>(p->ptr), _trt__GetAudioOutputConfigurationResponse); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioDecoderConfiguration*>(p->ptr), _trt__GetAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioDecoderConfiguration*>(p->ptr), _trt__GetAudioDecoderConfiguration); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioDecoderConfigurationResponse*>(p->ptr), _trt__GetAudioDecoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioDecoderConfigurationResponse*>(p->ptr), _trt__GetAudioDecoderConfigurationResponse); - break; - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleVideoEncoderConfigurations*>(p->ptr), _trt__GetCompatibleVideoEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleVideoEncoderConfigurations*>(p->ptr), _trt__GetCompatibleVideoEncoderConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleVideoEncoderConfigurationsResponse*>(p->ptr), _trt__GetCompatibleVideoEncoderConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleVideoEncoderConfigurationsResponse*>(p->ptr), _trt__GetCompatibleVideoEncoderConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleVideoSourceConfigurations*>(p->ptr), _trt__GetCompatibleVideoSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleVideoSourceConfigurations*>(p->ptr), _trt__GetCompatibleVideoSourceConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleVideoSourceConfigurationsResponse*>(p->ptr), _trt__GetCompatibleVideoSourceConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleVideoSourceConfigurationsResponse*>(p->ptr), _trt__GetCompatibleVideoSourceConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioEncoderConfigurations*>(p->ptr), _trt__GetCompatibleAudioEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioEncoderConfigurations*>(p->ptr), _trt__GetCompatibleAudioEncoderConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioEncoderConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioEncoderConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioEncoderConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioEncoderConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioSourceConfigurations*>(p->ptr), _trt__GetCompatibleAudioSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioSourceConfigurations*>(p->ptr), _trt__GetCompatibleAudioSourceConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioSourceConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioSourceConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioSourceConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioSourceConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleVideoAnalyticsConfigurations*>(p->ptr), _trt__GetCompatibleVideoAnalyticsConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleVideoAnalyticsConfigurations*>(p->ptr), _trt__GetCompatibleVideoAnalyticsConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleVideoAnalyticsConfigurationsResponse*>(p->ptr), _trt__GetCompatibleVideoAnalyticsConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleVideoAnalyticsConfigurationsResponse*>(p->ptr), _trt__GetCompatibleVideoAnalyticsConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleMetadataConfigurations*>(p->ptr), _trt__GetCompatibleMetadataConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleMetadataConfigurations*>(p->ptr), _trt__GetCompatibleMetadataConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleMetadataConfigurationsResponse*>(p->ptr), _trt__GetCompatibleMetadataConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleMetadataConfigurationsResponse*>(p->ptr), _trt__GetCompatibleMetadataConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioOutputConfigurations*>(p->ptr), _trt__GetCompatibleAudioOutputConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioOutputConfigurations*>(p->ptr), _trt__GetCompatibleAudioOutputConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioOutputConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioOutputConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioOutputConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioOutputConfigurationsResponse); - break; - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioDecoderConfigurations*>(p->ptr), _trt__GetCompatibleAudioDecoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioDecoderConfigurations*>(p->ptr), _trt__GetCompatibleAudioDecoderConfigurations); - break; - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetCompatibleAudioDecoderConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioDecoderConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetCompatibleAudioDecoderConfigurationsResponse*>(p->ptr), _trt__GetCompatibleAudioDecoderConfigurationsResponse); - break; - case SOAP_TYPE__trt__SetVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoEncoderConfiguration*>(p->ptr), _trt__SetVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoEncoderConfiguration*>(p->ptr), _trt__SetVideoEncoderConfiguration); - break; - case SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoEncoderConfigurationResponse*>(p->ptr), _trt__SetVideoEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoEncoderConfigurationResponse*>(p->ptr), _trt__SetVideoEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__SetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoSourceConfiguration*>(p->ptr), _trt__SetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoSourceConfiguration*>(p->ptr), _trt__SetVideoSourceConfiguration); - break; - case SOAP_TYPE__trt__SetVideoSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoSourceConfigurationResponse*>(p->ptr), _trt__SetVideoSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoSourceConfigurationResponse*>(p->ptr), _trt__SetVideoSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__SetAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioEncoderConfiguration*>(p->ptr), _trt__SetAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioEncoderConfiguration*>(p->ptr), _trt__SetAudioEncoderConfiguration); - break; - case SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioEncoderConfigurationResponse*>(p->ptr), _trt__SetAudioEncoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioEncoderConfigurationResponse*>(p->ptr), _trt__SetAudioEncoderConfigurationResponse); - break; - case SOAP_TYPE__trt__SetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioSourceConfiguration*>(p->ptr), _trt__SetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioSourceConfiguration*>(p->ptr), _trt__SetAudioSourceConfiguration); - break; - case SOAP_TYPE__trt__SetAudioSourceConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioSourceConfigurationResponse*>(p->ptr), _trt__SetAudioSourceConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioSourceConfigurationResponse*>(p->ptr), _trt__SetAudioSourceConfigurationResponse); - break; - case SOAP_TYPE__trt__SetVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoAnalyticsConfiguration*>(p->ptr), _trt__SetVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoAnalyticsConfiguration*>(p->ptr), _trt__SetVideoAnalyticsConfiguration); - break; - case SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__SetVideoAnalyticsConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoAnalyticsConfigurationResponse*>(p->ptr), _trt__SetVideoAnalyticsConfigurationResponse); - break; - case SOAP_TYPE__trt__SetMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetMetadataConfiguration*>(p->ptr), _trt__SetMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetMetadataConfiguration*>(p->ptr), _trt__SetMetadataConfiguration); - break; - case SOAP_TYPE__trt__SetMetadataConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetMetadataConfigurationResponse*>(p->ptr), _trt__SetMetadataConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetMetadataConfigurationResponse*>(p->ptr), _trt__SetMetadataConfigurationResponse); - break; - case SOAP_TYPE__trt__SetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioOutputConfiguration*>(p->ptr), _trt__SetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioOutputConfiguration*>(p->ptr), _trt__SetAudioOutputConfiguration); - break; - case SOAP_TYPE__trt__SetAudioOutputConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioOutputConfigurationResponse*>(p->ptr), _trt__SetAudioOutputConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioOutputConfigurationResponse*>(p->ptr), _trt__SetAudioOutputConfigurationResponse); - break; - case SOAP_TYPE__trt__SetAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioDecoderConfiguration*>(p->ptr), _trt__SetAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioDecoderConfiguration*>(p->ptr), _trt__SetAudioDecoderConfiguration); - break; - case SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetAudioDecoderConfigurationResponse*>(p->ptr), _trt__SetAudioDecoderConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetAudioDecoderConfigurationResponse*>(p->ptr), _trt__SetAudioDecoderConfigurationResponse); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceConfigurationOptions*>(p->ptr), _trt__GetVideoSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceConfigurationOptions*>(p->ptr), _trt__GetVideoSourceConfigurationOptions); - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceConfigurationOptionsResponse*>(p->ptr), _trt__GetVideoSourceConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceConfigurationOptionsResponse*>(p->ptr), _trt__GetVideoSourceConfigurationOptionsResponse); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoEncoderConfigurationOptions*>(p->ptr), _trt__GetVideoEncoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoEncoderConfigurationOptions*>(p->ptr), _trt__GetVideoEncoderConfigurationOptions); - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoEncoderConfigurationOptionsResponse*>(p->ptr), _trt__GetVideoEncoderConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoEncoderConfigurationOptionsResponse*>(p->ptr), _trt__GetVideoEncoderConfigurationOptionsResponse); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSourceConfigurationOptions*>(p->ptr), _trt__GetAudioSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSourceConfigurationOptions*>(p->ptr), _trt__GetAudioSourceConfigurationOptions); - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioSourceConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioSourceConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioSourceConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioSourceConfigurationOptionsResponse); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioEncoderConfigurationOptions*>(p->ptr), _trt__GetAudioEncoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioEncoderConfigurationOptions*>(p->ptr), _trt__GetAudioEncoderConfigurationOptions); - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioEncoderConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioEncoderConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioEncoderConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioEncoderConfigurationOptionsResponse); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetMetadataConfigurationOptions*>(p->ptr), _trt__GetMetadataConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetMetadataConfigurationOptions*>(p->ptr), _trt__GetMetadataConfigurationOptions); - break; - case SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetMetadataConfigurationOptionsResponse*>(p->ptr), _trt__GetMetadataConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetMetadataConfigurationOptionsResponse*>(p->ptr), _trt__GetMetadataConfigurationOptionsResponse); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputConfigurationOptions*>(p->ptr), _trt__GetAudioOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputConfigurationOptions*>(p->ptr), _trt__GetAudioOutputConfigurationOptions); - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioOutputConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioOutputConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioOutputConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioOutputConfigurationOptionsResponse); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioDecoderConfigurationOptions*>(p->ptr), _trt__GetAudioDecoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioDecoderConfigurationOptions*>(p->ptr), _trt__GetAudioDecoderConfigurationOptions); - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetAudioDecoderConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioDecoderConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetAudioDecoderConfigurationOptionsResponse*>(p->ptr), _trt__GetAudioDecoderConfigurationOptionsResponse); - break; - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetGuaranteedNumberOfVideoEncoderInstances*>(p->ptr), _trt__GetGuaranteedNumberOfVideoEncoderInstances); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetGuaranteedNumberOfVideoEncoderInstances*>(p->ptr), _trt__GetGuaranteedNumberOfVideoEncoderInstances); - break; - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse*>(p->ptr), _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse*>(p->ptr), _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse); - break; - case SOAP_TYPE__trt__GetStreamUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetStreamUri*>(p->ptr), _trt__GetStreamUri); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetStreamUri*>(p->ptr), _trt__GetStreamUri); - break; - case SOAP_TYPE__trt__GetStreamUriResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetStreamUriResponse*>(p->ptr), _trt__GetStreamUriResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetStreamUriResponse*>(p->ptr), _trt__GetStreamUriResponse); - break; - case SOAP_TYPE__trt__StartMulticastStreaming: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__StartMulticastStreaming*>(p->ptr), _trt__StartMulticastStreaming); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__StartMulticastStreaming*>(p->ptr), _trt__StartMulticastStreaming); - break; - case SOAP_TYPE__trt__StartMulticastStreamingResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__StartMulticastStreamingResponse*>(p->ptr), _trt__StartMulticastStreamingResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__StartMulticastStreamingResponse*>(p->ptr), _trt__StartMulticastStreamingResponse); - break; - case SOAP_TYPE__trt__StopMulticastStreaming: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__StopMulticastStreaming*>(p->ptr), _trt__StopMulticastStreaming); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__StopMulticastStreaming*>(p->ptr), _trt__StopMulticastStreaming); - break; - case SOAP_TYPE__trt__StopMulticastStreamingResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__StopMulticastStreamingResponse*>(p->ptr), _trt__StopMulticastStreamingResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__StopMulticastStreamingResponse*>(p->ptr), _trt__StopMulticastStreamingResponse); - break; - case SOAP_TYPE__trt__SetSynchronizationPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetSynchronizationPoint*>(p->ptr), _trt__SetSynchronizationPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetSynchronizationPoint*>(p->ptr), _trt__SetSynchronizationPoint); - break; - case SOAP_TYPE__trt__SetSynchronizationPointResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetSynchronizationPointResponse*>(p->ptr), _trt__SetSynchronizationPointResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetSynchronizationPointResponse*>(p->ptr), _trt__SetSynchronizationPointResponse); - break; - case SOAP_TYPE__trt__GetSnapshotUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetSnapshotUri*>(p->ptr), _trt__GetSnapshotUri); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetSnapshotUri*>(p->ptr), _trt__GetSnapshotUri); - break; - case SOAP_TYPE__trt__GetSnapshotUriResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetSnapshotUriResponse*>(p->ptr), _trt__GetSnapshotUriResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetSnapshotUriResponse*>(p->ptr), _trt__GetSnapshotUriResponse); - break; - case SOAP_TYPE__trt__GetVideoSourceModes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceModes*>(p->ptr), _trt__GetVideoSourceModes); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceModes*>(p->ptr), _trt__GetVideoSourceModes); - break; - case SOAP_TYPE__trt__GetVideoSourceModesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetVideoSourceModesResponse*>(p->ptr), _trt__GetVideoSourceModesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetVideoSourceModesResponse*>(p->ptr), _trt__GetVideoSourceModesResponse); - break; - case SOAP_TYPE__trt__SetVideoSourceMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoSourceMode*>(p->ptr), _trt__SetVideoSourceMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoSourceMode*>(p->ptr), _trt__SetVideoSourceMode); - break; - case SOAP_TYPE__trt__SetVideoSourceModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetVideoSourceModeResponse*>(p->ptr), _trt__SetVideoSourceModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetVideoSourceModeResponse*>(p->ptr), _trt__SetVideoSourceModeResponse); - break; - case SOAP_TYPE__trt__GetOSDs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetOSDs*>(p->ptr), _trt__GetOSDs); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetOSDs*>(p->ptr), _trt__GetOSDs); - break; - case SOAP_TYPE__trt__GetOSDsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetOSDsResponse*>(p->ptr), _trt__GetOSDsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetOSDsResponse*>(p->ptr), _trt__GetOSDsResponse); - break; - case SOAP_TYPE__trt__GetOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetOSD*>(p->ptr), _trt__GetOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetOSD*>(p->ptr), _trt__GetOSD); - break; - case SOAP_TYPE__trt__GetOSDResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetOSDResponse*>(p->ptr), _trt__GetOSDResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetOSDResponse*>(p->ptr), _trt__GetOSDResponse); - break; - case SOAP_TYPE__trt__SetOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetOSD*>(p->ptr), _trt__SetOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetOSD*>(p->ptr), _trt__SetOSD); - break; - case SOAP_TYPE__trt__SetOSDResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__SetOSDResponse*>(p->ptr), _trt__SetOSDResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__SetOSDResponse*>(p->ptr), _trt__SetOSDResponse); - break; - case SOAP_TYPE__trt__GetOSDOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetOSDOptions*>(p->ptr), _trt__GetOSDOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetOSDOptions*>(p->ptr), _trt__GetOSDOptions); - break; - case SOAP_TYPE__trt__GetOSDOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__GetOSDOptionsResponse*>(p->ptr), _trt__GetOSDOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__GetOSDOptionsResponse*>(p->ptr), _trt__GetOSDOptionsResponse); - break; - case SOAP_TYPE__trt__CreateOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__CreateOSD*>(p->ptr), _trt__CreateOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__CreateOSD*>(p->ptr), _trt__CreateOSD); - break; - case SOAP_TYPE__trt__CreateOSDResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__CreateOSDResponse*>(p->ptr), _trt__CreateOSDResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__CreateOSDResponse*>(p->ptr), _trt__CreateOSDResponse); - break; - case SOAP_TYPE__trt__DeleteOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__DeleteOSD*>(p->ptr), _trt__DeleteOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__DeleteOSD*>(p->ptr), _trt__DeleteOSD); - break; - case SOAP_TYPE__trt__DeleteOSDResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trt__DeleteOSDResponse*>(p->ptr), _trt__DeleteOSDResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trt__DeleteOSDResponse*>(p->ptr), _trt__DeleteOSDResponse); - break; - case SOAP_TYPE_tptz__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tptz__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tptz__Capabilities); - break; - case SOAP_TYPE__tptz__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetServiceCapabilities*>(p->ptr), _tptz__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetServiceCapabilities*>(p->ptr), _tptz__GetServiceCapabilities); - break; - case SOAP_TYPE__tptz__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetServiceCapabilitiesResponse*>(p->ptr), _tptz__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetServiceCapabilitiesResponse*>(p->ptr), _tptz__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__tptz__GetNodes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetNodes*>(p->ptr), _tptz__GetNodes); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetNodes*>(p->ptr), _tptz__GetNodes); - break; - case SOAP_TYPE__tptz__GetNodesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetNodesResponse*>(p->ptr), _tptz__GetNodesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetNodesResponse*>(p->ptr), _tptz__GetNodesResponse); - break; - case SOAP_TYPE__tptz__GetNode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetNode*>(p->ptr), _tptz__GetNode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetNode*>(p->ptr), _tptz__GetNode); - break; - case SOAP_TYPE__tptz__GetNodeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetNodeResponse*>(p->ptr), _tptz__GetNodeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetNodeResponse*>(p->ptr), _tptz__GetNodeResponse); - break; - case SOAP_TYPE__tptz__GetConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetConfigurations*>(p->ptr), _tptz__GetConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetConfigurations*>(p->ptr), _tptz__GetConfigurations); - break; - case SOAP_TYPE__tptz__GetConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetConfigurationsResponse*>(p->ptr), _tptz__GetConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetConfigurationsResponse*>(p->ptr), _tptz__GetConfigurationsResponse); - break; - case SOAP_TYPE__tptz__GetConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetConfiguration*>(p->ptr), _tptz__GetConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetConfiguration*>(p->ptr), _tptz__GetConfiguration); - break; - case SOAP_TYPE__tptz__GetConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetConfigurationResponse*>(p->ptr), _tptz__GetConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetConfigurationResponse*>(p->ptr), _tptz__GetConfigurationResponse); - break; - case SOAP_TYPE__tptz__SetConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SetConfiguration*>(p->ptr), _tptz__SetConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SetConfiguration*>(p->ptr), _tptz__SetConfiguration); - break; - case SOAP_TYPE___tptz__SetConfigurationResponse_sequence: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__SetConfigurationResponse_sequence); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__SetConfigurationResponse_sequence); - break; - case SOAP_TYPE__tptz__SetConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SetConfigurationResponse*>(p->ptr), _tptz__SetConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SetConfigurationResponse*>(p->ptr), _tptz__SetConfigurationResponse); - break; - case SOAP_TYPE__tptz__GetConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetConfigurationOptions*>(p->ptr), _tptz__GetConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetConfigurationOptions*>(p->ptr), _tptz__GetConfigurationOptions); - break; - case SOAP_TYPE__tptz__GetConfigurationOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetConfigurationOptionsResponse*>(p->ptr), _tptz__GetConfigurationOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetConfigurationOptionsResponse*>(p->ptr), _tptz__GetConfigurationOptionsResponse); - break; - case SOAP_TYPE__tptz__SendAuxiliaryCommand: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SendAuxiliaryCommand*>(p->ptr), _tptz__SendAuxiliaryCommand); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SendAuxiliaryCommand*>(p->ptr), _tptz__SendAuxiliaryCommand); - break; - case SOAP_TYPE__tptz__SendAuxiliaryCommandResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SendAuxiliaryCommandResponse*>(p->ptr), _tptz__SendAuxiliaryCommandResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SendAuxiliaryCommandResponse*>(p->ptr), _tptz__SendAuxiliaryCommandResponse); - break; - case SOAP_TYPE__tptz__GetPresets: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresets*>(p->ptr), _tptz__GetPresets); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresets*>(p->ptr), _tptz__GetPresets); - break; - case SOAP_TYPE__tptz__GetPresetsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresetsResponse*>(p->ptr), _tptz__GetPresetsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresetsResponse*>(p->ptr), _tptz__GetPresetsResponse); - break; - case SOAP_TYPE__tptz__SetPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SetPreset*>(p->ptr), _tptz__SetPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SetPreset*>(p->ptr), _tptz__SetPreset); - break; - case SOAP_TYPE__tptz__SetPresetResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SetPresetResponse*>(p->ptr), _tptz__SetPresetResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SetPresetResponse*>(p->ptr), _tptz__SetPresetResponse); - break; - case SOAP_TYPE__tptz__RemovePreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__RemovePreset*>(p->ptr), _tptz__RemovePreset); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__RemovePreset*>(p->ptr), _tptz__RemovePreset); - break; - case SOAP_TYPE__tptz__RemovePresetResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__RemovePresetResponse*>(p->ptr), _tptz__RemovePresetResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__RemovePresetResponse*>(p->ptr), _tptz__RemovePresetResponse); - break; - case SOAP_TYPE__tptz__GotoPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GotoPreset*>(p->ptr), _tptz__GotoPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GotoPreset*>(p->ptr), _tptz__GotoPreset); - break; - case SOAP_TYPE__tptz__GotoPresetResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GotoPresetResponse*>(p->ptr), _tptz__GotoPresetResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GotoPresetResponse*>(p->ptr), _tptz__GotoPresetResponse); - break; - case SOAP_TYPE__tptz__GetStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetStatus*>(p->ptr), _tptz__GetStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetStatus*>(p->ptr), _tptz__GetStatus); - break; - case SOAP_TYPE__tptz__GetStatusResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetStatusResponse*>(p->ptr), _tptz__GetStatusResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetStatusResponse*>(p->ptr), _tptz__GetStatusResponse); - break; - case SOAP_TYPE__tptz__GotoHomePosition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GotoHomePosition*>(p->ptr), _tptz__GotoHomePosition); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GotoHomePosition*>(p->ptr), _tptz__GotoHomePosition); - break; - case SOAP_TYPE__tptz__GotoHomePositionResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GotoHomePositionResponse*>(p->ptr), _tptz__GotoHomePositionResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GotoHomePositionResponse*>(p->ptr), _tptz__GotoHomePositionResponse); - break; - case SOAP_TYPE__tptz__SetHomePosition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SetHomePosition*>(p->ptr), _tptz__SetHomePosition); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SetHomePosition*>(p->ptr), _tptz__SetHomePosition); - break; - case SOAP_TYPE__tptz__SetHomePositionResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__SetHomePositionResponse*>(p->ptr), _tptz__SetHomePositionResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__SetHomePositionResponse*>(p->ptr), _tptz__SetHomePositionResponse); - break; - case SOAP_TYPE__tptz__ContinuousMove: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__ContinuousMove*>(p->ptr), _tptz__ContinuousMove); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__ContinuousMove*>(p->ptr), _tptz__ContinuousMove); - break; - case SOAP_TYPE__tptz__ContinuousMoveResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__ContinuousMoveResponse*>(p->ptr), _tptz__ContinuousMoveResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__ContinuousMoveResponse*>(p->ptr), _tptz__ContinuousMoveResponse); - break; - case SOAP_TYPE__tptz__RelativeMove: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__RelativeMove*>(p->ptr), _tptz__RelativeMove); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__RelativeMove*>(p->ptr), _tptz__RelativeMove); - break; - case SOAP_TYPE__tptz__RelativeMoveResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__RelativeMoveResponse*>(p->ptr), _tptz__RelativeMoveResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__RelativeMoveResponse*>(p->ptr), _tptz__RelativeMoveResponse); - break; - case SOAP_TYPE__tptz__AbsoluteMove: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__AbsoluteMove*>(p->ptr), _tptz__AbsoluteMove); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__AbsoluteMove*>(p->ptr), _tptz__AbsoluteMove); - break; - case SOAP_TYPE__tptz__AbsoluteMoveResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__AbsoluteMoveResponse*>(p->ptr), _tptz__AbsoluteMoveResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__AbsoluteMoveResponse*>(p->ptr), _tptz__AbsoluteMoveResponse); - break; - case SOAP_TYPE__tptz__Stop: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__Stop*>(p->ptr), _tptz__Stop); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__Stop*>(p->ptr), _tptz__Stop); - break; - case SOAP_TYPE__tptz__StopResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__StopResponse*>(p->ptr), _tptz__StopResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__StopResponse*>(p->ptr), _tptz__StopResponse); - break; - case SOAP_TYPE__tptz__GetPresetTours: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresetTours*>(p->ptr), _tptz__GetPresetTours); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresetTours*>(p->ptr), _tptz__GetPresetTours); - break; - case SOAP_TYPE__tptz__GetPresetToursResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresetToursResponse*>(p->ptr), _tptz__GetPresetToursResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresetToursResponse*>(p->ptr), _tptz__GetPresetToursResponse); - break; - case SOAP_TYPE__tptz__GetPresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresetTour*>(p->ptr), _tptz__GetPresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresetTour*>(p->ptr), _tptz__GetPresetTour); - break; - case SOAP_TYPE__tptz__GetPresetTourResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresetTourResponse*>(p->ptr), _tptz__GetPresetTourResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresetTourResponse*>(p->ptr), _tptz__GetPresetTourResponse); - break; - case SOAP_TYPE__tptz__GetPresetTourOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresetTourOptions*>(p->ptr), _tptz__GetPresetTourOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresetTourOptions*>(p->ptr), _tptz__GetPresetTourOptions); - break; - case SOAP_TYPE__tptz__GetPresetTourOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetPresetTourOptionsResponse*>(p->ptr), _tptz__GetPresetTourOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetPresetTourOptionsResponse*>(p->ptr), _tptz__GetPresetTourOptionsResponse); - break; - case SOAP_TYPE__tptz__CreatePresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__CreatePresetTour*>(p->ptr), _tptz__CreatePresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__CreatePresetTour*>(p->ptr), _tptz__CreatePresetTour); - break; - case SOAP_TYPE__tptz__CreatePresetTourResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__CreatePresetTourResponse*>(p->ptr), _tptz__CreatePresetTourResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__CreatePresetTourResponse*>(p->ptr), _tptz__CreatePresetTourResponse); - break; - case SOAP_TYPE__tptz__ModifyPresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__ModifyPresetTour*>(p->ptr), _tptz__ModifyPresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__ModifyPresetTour*>(p->ptr), _tptz__ModifyPresetTour); - break; - case SOAP_TYPE__tptz__ModifyPresetTourResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__ModifyPresetTourResponse*>(p->ptr), _tptz__ModifyPresetTourResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__ModifyPresetTourResponse*>(p->ptr), _tptz__ModifyPresetTourResponse); - break; - case SOAP_TYPE__tptz__OperatePresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__OperatePresetTour*>(p->ptr), _tptz__OperatePresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__OperatePresetTour*>(p->ptr), _tptz__OperatePresetTour); - break; - case SOAP_TYPE__tptz__OperatePresetTourResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__OperatePresetTourResponse*>(p->ptr), _tptz__OperatePresetTourResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__OperatePresetTourResponse*>(p->ptr), _tptz__OperatePresetTourResponse); - break; - case SOAP_TYPE__tptz__RemovePresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__RemovePresetTour*>(p->ptr), _tptz__RemovePresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__RemovePresetTour*>(p->ptr), _tptz__RemovePresetTour); - break; - case SOAP_TYPE__tptz__RemovePresetTourResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__RemovePresetTourResponse*>(p->ptr), _tptz__RemovePresetTourResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__RemovePresetTourResponse*>(p->ptr), _tptz__RemovePresetTourResponse); - break; - case SOAP_TYPE__tptz__GetCompatibleConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetCompatibleConfigurations*>(p->ptr), _tptz__GetCompatibleConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetCompatibleConfigurations*>(p->ptr), _tptz__GetCompatibleConfigurations); - break; - case SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tptz__GetCompatibleConfigurationsResponse*>(p->ptr), _tptz__GetCompatibleConfigurationsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tptz__GetCompatibleConfigurationsResponse*>(p->ptr), _tptz__GetCompatibleConfigurationsResponse); - break; - case SOAP_TYPE_trv__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trv__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trv__Capabilities); - break; - case SOAP_TYPE__trv__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetServiceCapabilities*>(p->ptr), _trv__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetServiceCapabilities*>(p->ptr), _trv__GetServiceCapabilities); - break; - case SOAP_TYPE__trv__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetServiceCapabilitiesResponse*>(p->ptr), _trv__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetServiceCapabilitiesResponse*>(p->ptr), _trv__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__trv__GetReceivers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetReceivers*>(p->ptr), _trv__GetReceivers); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetReceivers*>(p->ptr), _trv__GetReceivers); - break; - case SOAP_TYPE__trv__GetReceiversResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetReceiversResponse*>(p->ptr), _trv__GetReceiversResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetReceiversResponse*>(p->ptr), _trv__GetReceiversResponse); - break; - case SOAP_TYPE__trv__GetReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetReceiver*>(p->ptr), _trv__GetReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetReceiver*>(p->ptr), _trv__GetReceiver); - break; - case SOAP_TYPE__trv__GetReceiverResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetReceiverResponse*>(p->ptr), _trv__GetReceiverResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetReceiverResponse*>(p->ptr), _trv__GetReceiverResponse); - break; - case SOAP_TYPE__trv__CreateReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__CreateReceiver*>(p->ptr), _trv__CreateReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__CreateReceiver*>(p->ptr), _trv__CreateReceiver); - break; - case SOAP_TYPE__trv__CreateReceiverResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__CreateReceiverResponse*>(p->ptr), _trv__CreateReceiverResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__CreateReceiverResponse*>(p->ptr), _trv__CreateReceiverResponse); - break; - case SOAP_TYPE__trv__DeleteReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__DeleteReceiver*>(p->ptr), _trv__DeleteReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__DeleteReceiver*>(p->ptr), _trv__DeleteReceiver); - break; - case SOAP_TYPE__trv__DeleteReceiverResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__DeleteReceiverResponse*>(p->ptr), _trv__DeleteReceiverResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__DeleteReceiverResponse*>(p->ptr), _trv__DeleteReceiverResponse); - break; - case SOAP_TYPE__trv__ConfigureReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__ConfigureReceiver*>(p->ptr), _trv__ConfigureReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__ConfigureReceiver*>(p->ptr), _trv__ConfigureReceiver); - break; - case SOAP_TYPE__trv__ConfigureReceiverResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__ConfigureReceiverResponse*>(p->ptr), _trv__ConfigureReceiverResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__ConfigureReceiverResponse*>(p->ptr), _trv__ConfigureReceiverResponse); - break; - case SOAP_TYPE__trv__SetReceiverMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__SetReceiverMode*>(p->ptr), _trv__SetReceiverMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__SetReceiverMode*>(p->ptr), _trv__SetReceiverMode); - break; - case SOAP_TYPE__trv__SetReceiverModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__SetReceiverModeResponse*>(p->ptr), _trv__SetReceiverModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__SetReceiverModeResponse*>(p->ptr), _trv__SetReceiverModeResponse); - break; - case SOAP_TYPE__trv__GetReceiverState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetReceiverState*>(p->ptr), _trv__GetReceiverState); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetReceiverState*>(p->ptr), _trv__GetReceiverState); - break; - case SOAP_TYPE__trv__GetReceiverStateResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trv__GetReceiverStateResponse*>(p->ptr), _trv__GetReceiverStateResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trv__GetReceiverStateResponse*>(p->ptr), _trv__GetReceiverStateResponse); - break; - case SOAP_TYPE_trc__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trc__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trc__Capabilities); - break; - case SOAP_TYPE_trc__RecordingOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trc__RecordingOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trc__RecordingOptions); - break; - case SOAP_TYPE_trc__JobOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trc__JobOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trc__JobOptions); - break; - case SOAP_TYPE_trc__TrackOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trc__TrackOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trc__TrackOptions); - break; - case SOAP_TYPE__trc__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetServiceCapabilities*>(p->ptr), _trc__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetServiceCapabilities*>(p->ptr), _trc__GetServiceCapabilities); - break; - case SOAP_TYPE__trc__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetServiceCapabilitiesResponse*>(p->ptr), _trc__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetServiceCapabilitiesResponse*>(p->ptr), _trc__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__trc__CreateRecording: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__CreateRecording*>(p->ptr), _trc__CreateRecording); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__CreateRecording*>(p->ptr), _trc__CreateRecording); - break; - case SOAP_TYPE__trc__CreateRecordingResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__CreateRecordingResponse*>(p->ptr), _trc__CreateRecordingResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__CreateRecordingResponse*>(p->ptr), _trc__CreateRecordingResponse); - break; - case SOAP_TYPE__trc__DeleteRecording: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__DeleteRecording*>(p->ptr), _trc__DeleteRecording); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__DeleteRecording*>(p->ptr), _trc__DeleteRecording); - break; - case SOAP_TYPE__trc__DeleteRecordingResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__DeleteRecordingResponse*>(p->ptr), _trc__DeleteRecordingResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__DeleteRecordingResponse*>(p->ptr), _trc__DeleteRecordingResponse); - break; - case SOAP_TYPE__trc__GetRecordings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordings*>(p->ptr), _trc__GetRecordings); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordings*>(p->ptr), _trc__GetRecordings); - break; - case SOAP_TYPE__trc__GetRecordingsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingsResponse*>(p->ptr), _trc__GetRecordingsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingsResponse*>(p->ptr), _trc__GetRecordingsResponse); - break; - case SOAP_TYPE__trc__SetRecordingConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetRecordingConfiguration*>(p->ptr), _trc__SetRecordingConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetRecordingConfiguration*>(p->ptr), _trc__SetRecordingConfiguration); - break; - case SOAP_TYPE__trc__SetRecordingConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetRecordingConfigurationResponse*>(p->ptr), _trc__SetRecordingConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetRecordingConfigurationResponse*>(p->ptr), _trc__SetRecordingConfigurationResponse); - break; - case SOAP_TYPE__trc__GetRecordingConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingConfiguration*>(p->ptr), _trc__GetRecordingConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingConfiguration*>(p->ptr), _trc__GetRecordingConfiguration); - break; - case SOAP_TYPE__trc__GetRecordingConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingConfigurationResponse*>(p->ptr), _trc__GetRecordingConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingConfigurationResponse*>(p->ptr), _trc__GetRecordingConfigurationResponse); - break; - case SOAP_TYPE__trc__CreateTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__CreateTrack*>(p->ptr), _trc__CreateTrack); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__CreateTrack*>(p->ptr), _trc__CreateTrack); - break; - case SOAP_TYPE__trc__CreateTrackResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__CreateTrackResponse*>(p->ptr), _trc__CreateTrackResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__CreateTrackResponse*>(p->ptr), _trc__CreateTrackResponse); - break; - case SOAP_TYPE__trc__DeleteTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__DeleteTrack*>(p->ptr), _trc__DeleteTrack); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__DeleteTrack*>(p->ptr), _trc__DeleteTrack); - break; - case SOAP_TYPE__trc__DeleteTrackResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__DeleteTrackResponse*>(p->ptr), _trc__DeleteTrackResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__DeleteTrackResponse*>(p->ptr), _trc__DeleteTrackResponse); - break; - case SOAP_TYPE__trc__GetTrackConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetTrackConfiguration*>(p->ptr), _trc__GetTrackConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetTrackConfiguration*>(p->ptr), _trc__GetTrackConfiguration); - break; - case SOAP_TYPE__trc__GetTrackConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetTrackConfigurationResponse*>(p->ptr), _trc__GetTrackConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetTrackConfigurationResponse*>(p->ptr), _trc__GetTrackConfigurationResponse); - break; - case SOAP_TYPE__trc__SetTrackConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetTrackConfiguration*>(p->ptr), _trc__SetTrackConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetTrackConfiguration*>(p->ptr), _trc__SetTrackConfiguration); - break; - case SOAP_TYPE__trc__SetTrackConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetTrackConfigurationResponse*>(p->ptr), _trc__SetTrackConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetTrackConfigurationResponse*>(p->ptr), _trc__SetTrackConfigurationResponse); - break; - case SOAP_TYPE__trc__CreateRecordingJob: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__CreateRecordingJob*>(p->ptr), _trc__CreateRecordingJob); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__CreateRecordingJob*>(p->ptr), _trc__CreateRecordingJob); - break; - case SOAP_TYPE__trc__CreateRecordingJobResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__CreateRecordingJobResponse*>(p->ptr), _trc__CreateRecordingJobResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__CreateRecordingJobResponse*>(p->ptr), _trc__CreateRecordingJobResponse); - break; - case SOAP_TYPE__trc__DeleteRecordingJob: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__DeleteRecordingJob*>(p->ptr), _trc__DeleteRecordingJob); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__DeleteRecordingJob*>(p->ptr), _trc__DeleteRecordingJob); - break; - case SOAP_TYPE__trc__DeleteRecordingJobResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__DeleteRecordingJobResponse*>(p->ptr), _trc__DeleteRecordingJobResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__DeleteRecordingJobResponse*>(p->ptr), _trc__DeleteRecordingJobResponse); - break; - case SOAP_TYPE__trc__GetRecordingJobs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingJobs*>(p->ptr), _trc__GetRecordingJobs); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingJobs*>(p->ptr), _trc__GetRecordingJobs); - break; - case SOAP_TYPE__trc__GetRecordingJobsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingJobsResponse*>(p->ptr), _trc__GetRecordingJobsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingJobsResponse*>(p->ptr), _trc__GetRecordingJobsResponse); - break; - case SOAP_TYPE__trc__SetRecordingJobConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetRecordingJobConfiguration*>(p->ptr), _trc__SetRecordingJobConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetRecordingJobConfiguration*>(p->ptr), _trc__SetRecordingJobConfiguration); - break; - case SOAP_TYPE__trc__SetRecordingJobConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetRecordingJobConfigurationResponse*>(p->ptr), _trc__SetRecordingJobConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetRecordingJobConfigurationResponse*>(p->ptr), _trc__SetRecordingJobConfigurationResponse); - break; - case SOAP_TYPE__trc__GetRecordingJobConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingJobConfiguration*>(p->ptr), _trc__GetRecordingJobConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingJobConfiguration*>(p->ptr), _trc__GetRecordingJobConfiguration); - break; - case SOAP_TYPE__trc__GetRecordingJobConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingJobConfigurationResponse*>(p->ptr), _trc__GetRecordingJobConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingJobConfigurationResponse*>(p->ptr), _trc__GetRecordingJobConfigurationResponse); - break; - case SOAP_TYPE__trc__SetRecordingJobMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetRecordingJobMode*>(p->ptr), _trc__SetRecordingJobMode); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetRecordingJobMode*>(p->ptr), _trc__SetRecordingJobMode); - break; - case SOAP_TYPE__trc__SetRecordingJobModeResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__SetRecordingJobModeResponse*>(p->ptr), _trc__SetRecordingJobModeResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__SetRecordingJobModeResponse*>(p->ptr), _trc__SetRecordingJobModeResponse); - break; - case SOAP_TYPE__trc__GetRecordingJobState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingJobState*>(p->ptr), _trc__GetRecordingJobState); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingJobState*>(p->ptr), _trc__GetRecordingJobState); - break; - case SOAP_TYPE__trc__GetRecordingJobStateResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingJobStateResponse*>(p->ptr), _trc__GetRecordingJobStateResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingJobStateResponse*>(p->ptr), _trc__GetRecordingJobStateResponse); - break; - case SOAP_TYPE__trc__GetRecordingOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingOptions*>(p->ptr), _trc__GetRecordingOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingOptions*>(p->ptr), _trc__GetRecordingOptions); - break; - case SOAP_TYPE__trc__GetRecordingOptionsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetRecordingOptionsResponse*>(p->ptr), _trc__GetRecordingOptionsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetRecordingOptionsResponse*>(p->ptr), _trc__GetRecordingOptionsResponse); - break; - case SOAP_TYPE__trc__ExportRecordedData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__ExportRecordedData*>(p->ptr), _trc__ExportRecordedData); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__ExportRecordedData*>(p->ptr), _trc__ExportRecordedData); - break; - case SOAP_TYPE__trc__ExportRecordedDataResponse_Extension: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__ExportRecordedDataResponse_Extension*>(p->ptr), _trc__ExportRecordedDataResponse_Extension); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__ExportRecordedDataResponse_Extension*>(p->ptr), _trc__ExportRecordedDataResponse_Extension); - break; - case SOAP_TYPE__trc__ExportRecordedDataResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__ExportRecordedDataResponse*>(p->ptr), _trc__ExportRecordedDataResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__ExportRecordedDataResponse*>(p->ptr), _trc__ExportRecordedDataResponse); - break; - case SOAP_TYPE__trc__StopExportRecordedData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__StopExportRecordedData*>(p->ptr), _trc__StopExportRecordedData); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__StopExportRecordedData*>(p->ptr), _trc__StopExportRecordedData); - break; - case SOAP_TYPE__trc__StopExportRecordedDataResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__StopExportRecordedDataResponse*>(p->ptr), _trc__StopExportRecordedDataResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__StopExportRecordedDataResponse*>(p->ptr), _trc__StopExportRecordedDataResponse); - break; - case SOAP_TYPE__trc__GetExportRecordedDataState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetExportRecordedDataState*>(p->ptr), _trc__GetExportRecordedDataState); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetExportRecordedDataState*>(p->ptr), _trc__GetExportRecordedDataState); - break; - case SOAP_TYPE__trc__GetExportRecordedDataStateResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trc__GetExportRecordedDataStateResponse*>(p->ptr), _trc__GetExportRecordedDataStateResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trc__GetExportRecordedDataStateResponse*>(p->ptr), _trc__GetExportRecordedDataStateResponse); - break; - case SOAP_TYPE_trp__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), trp__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), trp__Capabilities); - break; - case SOAP_TYPE__trp__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__GetServiceCapabilities*>(p->ptr), _trp__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__GetServiceCapabilities*>(p->ptr), _trp__GetServiceCapabilities); - break; - case SOAP_TYPE__trp__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__GetServiceCapabilitiesResponse*>(p->ptr), _trp__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__GetServiceCapabilitiesResponse*>(p->ptr), _trp__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__trp__GetReplayUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__GetReplayUri*>(p->ptr), _trp__GetReplayUri); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__GetReplayUri*>(p->ptr), _trp__GetReplayUri); - break; - case SOAP_TYPE__trp__GetReplayUriResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__GetReplayUriResponse*>(p->ptr), _trp__GetReplayUriResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__GetReplayUriResponse*>(p->ptr), _trp__GetReplayUriResponse); - break; - case SOAP_TYPE__trp__SetReplayConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__SetReplayConfiguration*>(p->ptr), _trp__SetReplayConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__SetReplayConfiguration*>(p->ptr), _trp__SetReplayConfiguration); - break; - case SOAP_TYPE__trp__SetReplayConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__SetReplayConfigurationResponse*>(p->ptr), _trp__SetReplayConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__SetReplayConfigurationResponse*>(p->ptr), _trp__SetReplayConfigurationResponse); - break; - case SOAP_TYPE__trp__GetReplayConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__GetReplayConfiguration*>(p->ptr), _trp__GetReplayConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__GetReplayConfiguration*>(p->ptr), _trp__GetReplayConfiguration); - break; - case SOAP_TYPE__trp__GetReplayConfigurationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_trp__GetReplayConfigurationResponse*>(p->ptr), _trp__GetReplayConfigurationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_trp__GetReplayConfigurationResponse*>(p->ptr), _trp__GetReplayConfigurationResponse); - break; - case SOAP_TYPE_tse__Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tse__Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tse__Capabilities); - break; - case SOAP_TYPE__tse__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetServiceCapabilities*>(p->ptr), _tse__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetServiceCapabilities*>(p->ptr), _tse__GetServiceCapabilities); - break; - case SOAP_TYPE__tse__GetServiceCapabilitiesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetServiceCapabilitiesResponse*>(p->ptr), _tse__GetServiceCapabilitiesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetServiceCapabilitiesResponse*>(p->ptr), _tse__GetServiceCapabilitiesResponse); - break; - case SOAP_TYPE__tse__GetRecordingSummary: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetRecordingSummary*>(p->ptr), _tse__GetRecordingSummary); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetRecordingSummary*>(p->ptr), _tse__GetRecordingSummary); - break; - case SOAP_TYPE__tse__GetRecordingSummaryResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetRecordingSummaryResponse*>(p->ptr), _tse__GetRecordingSummaryResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetRecordingSummaryResponse*>(p->ptr), _tse__GetRecordingSummaryResponse); - break; - case SOAP_TYPE__tse__GetRecordingInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetRecordingInformation*>(p->ptr), _tse__GetRecordingInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetRecordingInformation*>(p->ptr), _tse__GetRecordingInformation); - break; - case SOAP_TYPE__tse__GetRecordingInformationResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetRecordingInformationResponse*>(p->ptr), _tse__GetRecordingInformationResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetRecordingInformationResponse*>(p->ptr), _tse__GetRecordingInformationResponse); - break; - case SOAP_TYPE__tse__GetMediaAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetMediaAttributes*>(p->ptr), _tse__GetMediaAttributes); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetMediaAttributes*>(p->ptr), _tse__GetMediaAttributes); - break; - case SOAP_TYPE__tse__GetMediaAttributesResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetMediaAttributesResponse*>(p->ptr), _tse__GetMediaAttributesResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetMediaAttributesResponse*>(p->ptr), _tse__GetMediaAttributesResponse); - break; - case SOAP_TYPE__tse__FindRecordings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindRecordings*>(p->ptr), _tse__FindRecordings); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindRecordings*>(p->ptr), _tse__FindRecordings); - break; - case SOAP_TYPE__tse__FindRecordingsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindRecordingsResponse*>(p->ptr), _tse__FindRecordingsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindRecordingsResponse*>(p->ptr), _tse__FindRecordingsResponse); - break; - case SOAP_TYPE__tse__GetRecordingSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetRecordingSearchResults*>(p->ptr), _tse__GetRecordingSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetRecordingSearchResults*>(p->ptr), _tse__GetRecordingSearchResults); - break; - case SOAP_TYPE__tse__GetRecordingSearchResultsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetRecordingSearchResultsResponse*>(p->ptr), _tse__GetRecordingSearchResultsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetRecordingSearchResultsResponse*>(p->ptr), _tse__GetRecordingSearchResultsResponse); - break; - case SOAP_TYPE__tse__FindEvents: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindEvents*>(p->ptr), _tse__FindEvents); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindEvents*>(p->ptr), _tse__FindEvents); - break; - case SOAP_TYPE__tse__FindEventsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindEventsResponse*>(p->ptr), _tse__FindEventsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindEventsResponse*>(p->ptr), _tse__FindEventsResponse); - break; - case SOAP_TYPE__tse__GetEventSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetEventSearchResults*>(p->ptr), _tse__GetEventSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetEventSearchResults*>(p->ptr), _tse__GetEventSearchResults); - break; - case SOAP_TYPE__tse__GetEventSearchResultsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetEventSearchResultsResponse*>(p->ptr), _tse__GetEventSearchResultsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetEventSearchResultsResponse*>(p->ptr), _tse__GetEventSearchResultsResponse); - break; - case SOAP_TYPE__tse__FindPTZPosition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindPTZPosition*>(p->ptr), _tse__FindPTZPosition); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindPTZPosition*>(p->ptr), _tse__FindPTZPosition); - break; - case SOAP_TYPE__tse__FindPTZPositionResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindPTZPositionResponse*>(p->ptr), _tse__FindPTZPositionResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindPTZPositionResponse*>(p->ptr), _tse__FindPTZPositionResponse); - break; - case SOAP_TYPE__tse__GetPTZPositionSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetPTZPositionSearchResults*>(p->ptr), _tse__GetPTZPositionSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetPTZPositionSearchResults*>(p->ptr), _tse__GetPTZPositionSearchResults); - break; - case SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetPTZPositionSearchResultsResponse*>(p->ptr), _tse__GetPTZPositionSearchResultsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetPTZPositionSearchResultsResponse*>(p->ptr), _tse__GetPTZPositionSearchResultsResponse); - break; - case SOAP_TYPE__tse__FindMetadata: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindMetadata*>(p->ptr), _tse__FindMetadata); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindMetadata*>(p->ptr), _tse__FindMetadata); - break; - case SOAP_TYPE__tse__FindMetadataResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__FindMetadataResponse*>(p->ptr), _tse__FindMetadataResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__FindMetadataResponse*>(p->ptr), _tse__FindMetadataResponse); - break; - case SOAP_TYPE__tse__GetMetadataSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetMetadataSearchResults*>(p->ptr), _tse__GetMetadataSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetMetadataSearchResults*>(p->ptr), _tse__GetMetadataSearchResults); - break; - case SOAP_TYPE__tse__GetMetadataSearchResultsResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetMetadataSearchResultsResponse*>(p->ptr), _tse__GetMetadataSearchResultsResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetMetadataSearchResultsResponse*>(p->ptr), _tse__GetMetadataSearchResultsResponse); - break; - case SOAP_TYPE__tse__GetSearchState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetSearchState*>(p->ptr), _tse__GetSearchState); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetSearchState*>(p->ptr), _tse__GetSearchState); - break; - case SOAP_TYPE__tse__GetSearchStateResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__GetSearchStateResponse*>(p->ptr), _tse__GetSearchStateResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__GetSearchStateResponse*>(p->ptr), _tse__GetSearchStateResponse); - break; - case SOAP_TYPE__tse__EndSearch: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__EndSearch*>(p->ptr), _tse__EndSearch); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__EndSearch*>(p->ptr), _tse__EndSearch); - break; - case SOAP_TYPE__tse__EndSearchResponse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_tse__EndSearchResponse*>(p->ptr), _tse__EndSearchResponse); - else - SOAP_DELETE_ARRAY(soap, static_cast<_tse__EndSearchResponse*>(p->ptr), _tse__EndSearchResponse); - break; - case SOAP_TYPE_wstop__Documentation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__Documentation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__Documentation); - break; - case SOAP_TYPE_wstop__ExtensibleDocumented: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__ExtensibleDocumented); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__ExtensibleDocumented); - break; - case SOAP_TYPE_wstop__QueryExpressionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__QueryExpressionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__QueryExpressionType); - break; - case SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__SubscribeCreationFailedFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__SubscribeCreationFailedFaultType); - break; - case SOAP_TYPE_wsnt__InvalidFilterFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__InvalidFilterFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__InvalidFilterFaultType); - break; - case SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__TopicExpressionDialectUnknownFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__TopicExpressionDialectUnknownFaultType); - break; - case SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__InvalidTopicExpressionFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__InvalidTopicExpressionFaultType); - break; - case SOAP_TYPE_wsnt__TopicNotSupportedFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__TopicNotSupportedFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__TopicNotSupportedFaultType); - break; - case SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__MultipleTopicsSpecifiedFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__MultipleTopicsSpecifiedFaultType); - break; - case SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__InvalidProducerPropertiesExpressionFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__InvalidProducerPropertiesExpressionFaultType); - break; - case SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__InvalidMessageContentExpressionFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__InvalidMessageContentExpressionFaultType); - break; - case SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnrecognizedPolicyRequestFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnrecognizedPolicyRequestFaultType); - break; - case SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnsupportedPolicyRequestFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnsupportedPolicyRequestFaultType); - break; - case SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__NotifyMessageNotSupportedFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__NotifyMessageNotSupportedFaultType); - break; - case SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnacceptableInitialTerminationTimeFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnacceptableInitialTerminationTimeFaultType); - break; - case SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__NoCurrentMessageOnTopicFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__NoCurrentMessageOnTopicFaultType); - break; - case SOAP_TYPE_wsnt__UnableToGetMessagesFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnableToGetMessagesFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnableToGetMessagesFaultType); - break; - case SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnableToDestroyPullPointFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnableToDestroyPullPointFaultType); - break; - case SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnableToCreatePullPointFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnableToCreatePullPointFaultType); - break; - case SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnacceptableTerminationTimeFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnacceptableTerminationTimeFaultType); - break; - case SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__UnableToDestroySubscriptionFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__UnableToDestroySubscriptionFaultType); - break; - case SOAP_TYPE_wsnt__PauseFailedFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__PauseFailedFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__PauseFailedFaultType); - break; - case SOAP_TYPE_wsnt__ResumeFailedFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsnt__ResumeFailedFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsnt__ResumeFailedFaultType); - break; - case SOAP_TYPE_tt__VideoSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSource); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSource); - break; - case SOAP_TYPE_tt__AudioSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioSource); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioSource); - break; - case SOAP_TYPE_tt__VideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoSourceConfiguration); - break; - case SOAP_TYPE_tt__VideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncoderConfiguration); - break; - case SOAP_TYPE_tt__JpegOptions2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__JpegOptions2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__JpegOptions2); - break; - case SOAP_TYPE_tt__Mpeg4Options2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__Mpeg4Options2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__Mpeg4Options2); - break; - case SOAP_TYPE_tt__H264Options2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__H264Options2); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__H264Options2); - break; - case SOAP_TYPE_tt__VideoEncoder2Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoEncoder2Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoEncoder2Configuration); - break; - case SOAP_TYPE_tt__AudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioSourceConfiguration); - break; - case SOAP_TYPE_tt__AudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioEncoderConfiguration); - break; - case SOAP_TYPE_tt__AudioEncoder2Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioEncoder2Configuration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioEncoder2Configuration); - break; - case SOAP_TYPE_tt__VideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoAnalyticsConfiguration); - break; - case SOAP_TYPE_tt__MetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__MetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__MetadataConfiguration); - break; - case SOAP_TYPE_tt__VideoOutput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoOutput); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoOutput); - break; - case SOAP_TYPE_tt__VideoOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__VideoOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__VideoOutputConfiguration); - break; - case SOAP_TYPE_tt__AudioOutput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioOutput); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioOutput); - break; - case SOAP_TYPE_tt__AudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioOutputConfiguration); - break; - case SOAP_TYPE_tt__AudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AudioDecoderConfiguration); - break; - case SOAP_TYPE_tt__NetworkInterface: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__NetworkInterface); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__NetworkInterface); - break; - case SOAP_TYPE_tt__CertificateUsage: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__CertificateUsage); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__CertificateUsage); - break; - case SOAP_TYPE_tt__RelayOutput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__RelayOutput); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__RelayOutput); - break; - case SOAP_TYPE_tt__DigitalInput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__DigitalInput); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__DigitalInput); - break; - case SOAP_TYPE_tt__PTZNode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZNode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZNode); - break; - case SOAP_TYPE_tt__PTZConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__PTZConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__PTZConfiguration); - break; - case SOAP_TYPE_tt__EventFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__EventFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__EventFilter); - break; - case SOAP_TYPE_tt__AnalyticsEngine: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsEngine); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsEngine); - break; - case SOAP_TYPE_tt__AnalyticsEngineInput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsEngineInput); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsEngineInput); - break; - case SOAP_TYPE_tt__AnalyticsEngineControl: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__AnalyticsEngineControl); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__AnalyticsEngineControl); - break; - case SOAP_TYPE_tt__OSDConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDConfiguration); - break; - case SOAP_TYPE_tmd__SerialPort: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tmd__SerialPort); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tmd__SerialPort); - break; - case SOAP_TYPE_tds__StorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tds__StorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tds__StorageConfiguration); - break; - case SOAP_TYPE_wsrfr__ResourceUnknownFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsrfr__ResourceUnknownFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsrfr__ResourceUnknownFaultType); - break; - case SOAP_TYPE_wsrfr__ResourceUnavailableFaultType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wsrfr__ResourceUnavailableFaultType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wsrfr__ResourceUnavailableFaultType); - break; - case SOAP_TYPE__wstop__TopicNamespaceType_Topic: - if (p->size < 0) - SOAP_DELETE(soap, static_cast<_wstop__TopicNamespaceType_Topic*>(p->ptr), _wstop__TopicNamespaceType_Topic); - else - SOAP_DELETE_ARRAY(soap, static_cast<_wstop__TopicNamespaceType_Topic*>(p->ptr), _wstop__TopicNamespaceType_Topic); - break; - case SOAP_TYPE_wstop__TopicNamespaceType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__TopicNamespaceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__TopicNamespaceType); - break; - case SOAP_TYPE_wstop__TopicType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__TopicType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__TopicType); - break; - case SOAP_TYPE_wstop__TopicSetType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), wstop__TopicSetType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), wstop__TopicSetType); - break; - case SOAP_TYPE_tt__OSDReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), tt__OSDReference); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), tt__OSDReference); - break; -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Detail: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct SOAP_ENV__Detail); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct SOAP_ENV__Detail); - break; -#endif - case SOAP_TYPE___tds__GetServices: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetServices); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetServices); - break; - case SOAP_TYPE___tds__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetServiceCapabilities); - break; - case SOAP_TYPE___tds__GetDeviceInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDeviceInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDeviceInformation); - break; - case SOAP_TYPE___tds__SetSystemDateAndTime: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetSystemDateAndTime); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetSystemDateAndTime); - break; - case SOAP_TYPE___tds__GetSystemDateAndTime: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetSystemDateAndTime); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetSystemDateAndTime); - break; - case SOAP_TYPE___tds__SetSystemFactoryDefault: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetSystemFactoryDefault); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetSystemFactoryDefault); - break; - case SOAP_TYPE___tds__UpgradeSystemFirmware: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__UpgradeSystemFirmware); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__UpgradeSystemFirmware); - break; - case SOAP_TYPE___tds__SystemReboot: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SystemReboot); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SystemReboot); - break; - case SOAP_TYPE___tds__RestoreSystem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__RestoreSystem); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__RestoreSystem); - break; - case SOAP_TYPE___tds__GetSystemBackup: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetSystemBackup); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetSystemBackup); - break; - case SOAP_TYPE___tds__GetSystemLog: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetSystemLog); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetSystemLog); - break; - case SOAP_TYPE___tds__GetSystemSupportInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetSystemSupportInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetSystemSupportInformation); - break; - case SOAP_TYPE___tds__GetScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetScopes); - break; - case SOAP_TYPE___tds__SetScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetScopes); - break; - case SOAP_TYPE___tds__AddScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__AddScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__AddScopes); - break; - case SOAP_TYPE___tds__RemoveScopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__RemoveScopes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__RemoveScopes); - break; - case SOAP_TYPE___tds__GetDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDiscoveryMode); - break; - case SOAP_TYPE___tds__SetDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetDiscoveryMode); - break; - case SOAP_TYPE___tds__GetRemoteDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetRemoteDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetRemoteDiscoveryMode); - break; - case SOAP_TYPE___tds__SetRemoteDiscoveryMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetRemoteDiscoveryMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetRemoteDiscoveryMode); - break; - case SOAP_TYPE___tds__GetDPAddresses: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDPAddresses); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDPAddresses); - break; - case SOAP_TYPE___tds__GetEndpointReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetEndpointReference); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetEndpointReference); - break; - case SOAP_TYPE___tds__GetRemoteUser: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetRemoteUser); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetRemoteUser); - break; - case SOAP_TYPE___tds__SetRemoteUser: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetRemoteUser); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetRemoteUser); - break; - case SOAP_TYPE___tds__GetUsers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetUsers); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetUsers); - break; - case SOAP_TYPE___tds__CreateUsers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__CreateUsers); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__CreateUsers); - break; - case SOAP_TYPE___tds__DeleteUsers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__DeleteUsers); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__DeleteUsers); - break; - case SOAP_TYPE___tds__SetUser: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetUser); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetUser); - break; - case SOAP_TYPE___tds__GetWsdlUrl: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetWsdlUrl); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetWsdlUrl); - break; - case SOAP_TYPE___tds__GetCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetCapabilities); - break; - case SOAP_TYPE___tds__SetDPAddresses: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetDPAddresses); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetDPAddresses); - break; - case SOAP_TYPE___tds__GetHostname: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetHostname); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetHostname); - break; - case SOAP_TYPE___tds__SetHostname: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetHostname); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetHostname); - break; - case SOAP_TYPE___tds__SetHostnameFromDHCP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetHostnameFromDHCP); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetHostnameFromDHCP); - break; - case SOAP_TYPE___tds__GetDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDNS); - break; - case SOAP_TYPE___tds__SetDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetDNS); - break; - case SOAP_TYPE___tds__GetNTP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetNTP); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetNTP); - break; - case SOAP_TYPE___tds__SetNTP: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetNTP); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetNTP); - break; - case SOAP_TYPE___tds__GetDynamicDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDynamicDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDynamicDNS); - break; - case SOAP_TYPE___tds__SetDynamicDNS: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetDynamicDNS); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetDynamicDNS); - break; - case SOAP_TYPE___tds__GetNetworkInterfaces: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetNetworkInterfaces); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetNetworkInterfaces); - break; - case SOAP_TYPE___tds__SetNetworkInterfaces: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetNetworkInterfaces); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetNetworkInterfaces); - break; - case SOAP_TYPE___tds__GetNetworkProtocols: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetNetworkProtocols); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetNetworkProtocols); - break; - case SOAP_TYPE___tds__SetNetworkProtocols: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetNetworkProtocols); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetNetworkProtocols); - break; - case SOAP_TYPE___tds__GetNetworkDefaultGateway: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetNetworkDefaultGateway); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetNetworkDefaultGateway); - break; - case SOAP_TYPE___tds__SetNetworkDefaultGateway: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetNetworkDefaultGateway); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetNetworkDefaultGateway); - break; - case SOAP_TYPE___tds__GetZeroConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetZeroConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetZeroConfiguration); - break; - case SOAP_TYPE___tds__SetZeroConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetZeroConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetZeroConfiguration); - break; - case SOAP_TYPE___tds__GetIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetIPAddressFilter); - break; - case SOAP_TYPE___tds__SetIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetIPAddressFilter); - break; - case SOAP_TYPE___tds__AddIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__AddIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__AddIPAddressFilter); - break; - case SOAP_TYPE___tds__RemoveIPAddressFilter: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__RemoveIPAddressFilter); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__RemoveIPAddressFilter); - break; - case SOAP_TYPE___tds__GetAccessPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetAccessPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetAccessPolicy); - break; - case SOAP_TYPE___tds__SetAccessPolicy: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetAccessPolicy); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetAccessPolicy); - break; - case SOAP_TYPE___tds__CreateCertificate: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__CreateCertificate); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__CreateCertificate); - break; - case SOAP_TYPE___tds__GetCertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetCertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetCertificates); - break; - case SOAP_TYPE___tds__GetCertificatesStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetCertificatesStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetCertificatesStatus); - break; - case SOAP_TYPE___tds__SetCertificatesStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetCertificatesStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetCertificatesStatus); - break; - case SOAP_TYPE___tds__DeleteCertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__DeleteCertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__DeleteCertificates); - break; - case SOAP_TYPE___tds__GetPkcs10Request: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetPkcs10Request); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetPkcs10Request); - break; - case SOAP_TYPE___tds__LoadCertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__LoadCertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__LoadCertificates); - break; - case SOAP_TYPE___tds__GetClientCertificateMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetClientCertificateMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetClientCertificateMode); - break; - case SOAP_TYPE___tds__SetClientCertificateMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetClientCertificateMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetClientCertificateMode); - break; - case SOAP_TYPE___tds__GetRelayOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetRelayOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetRelayOutputs); - break; - case SOAP_TYPE___tds__SetRelayOutputSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetRelayOutputSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetRelayOutputSettings); - break; - case SOAP_TYPE___tds__SetRelayOutputState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetRelayOutputState); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetRelayOutputState); - break; - case SOAP_TYPE___tds__SendAuxiliaryCommand: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SendAuxiliaryCommand); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SendAuxiliaryCommand); - break; - case SOAP_TYPE___tds__GetCACertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetCACertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetCACertificates); - break; - case SOAP_TYPE___tds__LoadCertificateWithPrivateKey: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__LoadCertificateWithPrivateKey); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__LoadCertificateWithPrivateKey); - break; - case SOAP_TYPE___tds__GetCertificateInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetCertificateInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetCertificateInformation); - break; - case SOAP_TYPE___tds__LoadCACertificates: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__LoadCACertificates); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__LoadCACertificates); - break; - case SOAP_TYPE___tds__CreateDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__CreateDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__CreateDot1XConfiguration); - break; - case SOAP_TYPE___tds__SetDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetDot1XConfiguration); - break; - case SOAP_TYPE___tds__GetDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDot1XConfiguration); - break; - case SOAP_TYPE___tds__GetDot1XConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDot1XConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDot1XConfigurations); - break; - case SOAP_TYPE___tds__DeleteDot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__DeleteDot1XConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__DeleteDot1XConfiguration); - break; - case SOAP_TYPE___tds__GetDot11Capabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDot11Capabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDot11Capabilities); - break; - case SOAP_TYPE___tds__GetDot11Status: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetDot11Status); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetDot11Status); - break; - case SOAP_TYPE___tds__ScanAvailableDot11Networks: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__ScanAvailableDot11Networks); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__ScanAvailableDot11Networks); - break; - case SOAP_TYPE___tds__GetSystemUris: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetSystemUris); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetSystemUris); - break; - case SOAP_TYPE___tds__StartFirmwareUpgrade: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__StartFirmwareUpgrade); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__StartFirmwareUpgrade); - break; - case SOAP_TYPE___tds__StartSystemRestore: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__StartSystemRestore); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__StartSystemRestore); - break; - case SOAP_TYPE___tds__GetStorageConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetStorageConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetStorageConfigurations); - break; - case SOAP_TYPE___tds__CreateStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__CreateStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__CreateStorageConfiguration); - break; - case SOAP_TYPE___tds__GetStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetStorageConfiguration); - break; - case SOAP_TYPE___tds__SetStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetStorageConfiguration); - break; - case SOAP_TYPE___tds__DeleteStorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__DeleteStorageConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__DeleteStorageConfiguration); - break; - case SOAP_TYPE___tds__GetGeoLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__GetGeoLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__GetGeoLocation); - break; - case SOAP_TYPE___tds__SetGeoLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__SetGeoLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__SetGeoLocation); - break; - case SOAP_TYPE___tds__DeleteGeoLocation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tds__DeleteGeoLocation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tds__DeleteGeoLocation); - break; - case SOAP_TYPE___tevcpp__CreatePullPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevcpp__CreatePullPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevcpp__CreatePullPoint); - break; - case SOAP_TYPE___teve__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __teve__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __teve__GetServiceCapabilities); - break; - case SOAP_TYPE___teve__CreatePullPointSubscription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __teve__CreatePullPointSubscription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __teve__CreatePullPointSubscription); - break; - case SOAP_TYPE___teve__GetEventProperties: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __teve__GetEventProperties); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __teve__GetEventProperties); - break; - case SOAP_TYPE___tevnc__Notify: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevnc__Notify); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevnc__Notify); - break; - case SOAP_TYPE___tevnp__Subscribe: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevnp__Subscribe); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevnp__Subscribe); - break; - case SOAP_TYPE___tevnp__GetCurrentMessage: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevnp__GetCurrentMessage); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevnp__GetCurrentMessage); - break; - case SOAP_TYPE___tevpp__GetMessages: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevpp__GetMessages); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevpp__GetMessages); - break; - case SOAP_TYPE___tevpp__DestroyPullPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevpp__DestroyPullPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevpp__DestroyPullPoint); - break; - case SOAP_TYPE___tevpp__Notify: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevpp__Notify); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevpp__Notify); - break; - case SOAP_TYPE___tevpps__PullMessages: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevpps__PullMessages); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevpps__PullMessages); - break; - case SOAP_TYPE___tevpps__Seek: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevpps__Seek); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevpps__Seek); - break; - case SOAP_TYPE___tevpps__SetSynchronizationPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevpps__SetSynchronizationPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevpps__SetSynchronizationPoint); - break; - case SOAP_TYPE___tevps__Renew: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevps__Renew); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevps__Renew); - break; - case SOAP_TYPE___tevps__Unsubscribe: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevps__Unsubscribe); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevps__Unsubscribe); - break; - case SOAP_TYPE___tevps__PauseSubscription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevps__PauseSubscription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevps__PauseSubscription); - break; - case SOAP_TYPE___tevps__ResumeSubscription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevps__ResumeSubscription); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevps__ResumeSubscription); - break; - case SOAP_TYPE___tevs__Renew: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevs__Renew); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevs__Renew); - break; - case SOAP_TYPE___tevs__Unsubscribe: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tevs__Unsubscribe); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tevs__Unsubscribe); - break; - case SOAP_TYPE___timg__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__GetServiceCapabilities); - break; - case SOAP_TYPE___timg__GetImagingSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__GetImagingSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__GetImagingSettings); - break; - case SOAP_TYPE___timg__SetImagingSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__SetImagingSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__SetImagingSettings); - break; - case SOAP_TYPE___timg__GetOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__GetOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__GetOptions); - break; - case SOAP_TYPE___timg__Move: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__Move); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__Move); - break; - case SOAP_TYPE___timg__Stop: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__Stop); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__Stop); - break; - case SOAP_TYPE___timg__GetStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__GetStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__GetStatus); - break; - case SOAP_TYPE___timg__GetMoveOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__GetMoveOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__GetMoveOptions); - break; - case SOAP_TYPE___timg__GetPresets: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__GetPresets); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__GetPresets); - break; - case SOAP_TYPE___timg__GetCurrentPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__GetCurrentPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__GetCurrentPreset); - break; - case SOAP_TYPE___timg__SetCurrentPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __timg__SetCurrentPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __timg__SetCurrentPreset); - break; - case SOAP_TYPE___tls__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__GetServiceCapabilities); - break; - case SOAP_TYPE___tls__GetLayout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__GetLayout); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__GetLayout); - break; - case SOAP_TYPE___tls__SetLayout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__SetLayout); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__SetLayout); - break; - case SOAP_TYPE___tls__GetDisplayOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__GetDisplayOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__GetDisplayOptions); - break; - case SOAP_TYPE___tls__GetPaneConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__GetPaneConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__GetPaneConfigurations); - break; - case SOAP_TYPE___tls__GetPaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__GetPaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__GetPaneConfiguration); - break; - case SOAP_TYPE___tls__SetPaneConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__SetPaneConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__SetPaneConfigurations); - break; - case SOAP_TYPE___tls__SetPaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__SetPaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__SetPaneConfiguration); - break; - case SOAP_TYPE___tls__CreatePaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__CreatePaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__CreatePaneConfiguration); - break; - case SOAP_TYPE___tls__DeletePaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tls__DeletePaneConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tls__DeletePaneConfiguration); - break; - case SOAP_TYPE___tmd__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetServiceCapabilities); - break; - case SOAP_TYPE___tmd__GetRelayOutputOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetRelayOutputOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetRelayOutputOptions); - break; - case SOAP_TYPE___tmd__GetAudioSources: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetAudioSources); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetAudioSources); - break; - case SOAP_TYPE___tmd__GetAudioOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetAudioOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetAudioOutputs); - break; - case SOAP_TYPE___tmd__GetVideoSources: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetVideoSources); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetVideoSources); - break; - case SOAP_TYPE___tmd__GetVideoOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetVideoOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetVideoOutputs); - break; - case SOAP_TYPE___tmd__GetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetVideoSourceConfiguration); - break; - case SOAP_TYPE___tmd__GetVideoOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetVideoOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetVideoOutputConfiguration); - break; - case SOAP_TYPE___tmd__GetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetAudioSourceConfiguration); - break; - case SOAP_TYPE___tmd__GetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetAudioOutputConfiguration); - break; - case SOAP_TYPE___tmd__SetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetVideoSourceConfiguration); - break; - case SOAP_TYPE___tmd__SetVideoOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetVideoOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetVideoOutputConfiguration); - break; - case SOAP_TYPE___tmd__SetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetAudioSourceConfiguration); - break; - case SOAP_TYPE___tmd__SetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetAudioOutputConfiguration); - break; - case SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetVideoSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetVideoSourceConfigurationOptions); - break; - case SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetVideoOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetVideoOutputConfigurationOptions); - break; - case SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetAudioSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetAudioSourceConfigurationOptions); - break; - case SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetAudioOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetAudioOutputConfigurationOptions); - break; - case SOAP_TYPE___tmd__GetRelayOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetRelayOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetRelayOutputs); - break; - case SOAP_TYPE___tmd__SetRelayOutputSettings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetRelayOutputSettings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetRelayOutputSettings); - break; - case SOAP_TYPE___tmd__SetRelayOutputState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetRelayOutputState); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetRelayOutputState); - break; - case SOAP_TYPE___tmd__GetDigitalInputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetDigitalInputs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetDigitalInputs); - break; - case SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetDigitalInputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetDigitalInputConfigurationOptions); - break; - case SOAP_TYPE___tmd__SetDigitalInputConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetDigitalInputConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetDigitalInputConfigurations); - break; - case SOAP_TYPE___tmd__GetSerialPorts: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetSerialPorts); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetSerialPorts); - break; - case SOAP_TYPE___tmd__GetSerialPortConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetSerialPortConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetSerialPortConfiguration); - break; - case SOAP_TYPE___tmd__SetSerialPortConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SetSerialPortConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SetSerialPortConfiguration); - break; - case SOAP_TYPE___tmd__GetSerialPortConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__GetSerialPortConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__GetSerialPortConfigurationOptions); - break; - case SOAP_TYPE___tmd__SendReceiveSerialCommand: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tmd__SendReceiveSerialCommand); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tmd__SendReceiveSerialCommand); - break; - case SOAP_TYPE___tptz__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetServiceCapabilities); - break; - case SOAP_TYPE___tptz__GetConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetConfigurations); - break; - case SOAP_TYPE___tptz__GetPresets: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetPresets); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetPresets); - break; - case SOAP_TYPE___tptz__SetPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__SetPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__SetPreset); - break; - case SOAP_TYPE___tptz__RemovePreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__RemovePreset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__RemovePreset); - break; - case SOAP_TYPE___tptz__GotoPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GotoPreset); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GotoPreset); - break; - case SOAP_TYPE___tptz__GetStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetStatus); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetStatus); - break; - case SOAP_TYPE___tptz__GetConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetConfiguration); - break; - case SOAP_TYPE___tptz__GetNodes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetNodes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetNodes); - break; - case SOAP_TYPE___tptz__GetNode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetNode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetNode); - break; - case SOAP_TYPE___tptz__SetConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__SetConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__SetConfiguration); - break; - case SOAP_TYPE___tptz__GetConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetConfigurationOptions); - break; - case SOAP_TYPE___tptz__GotoHomePosition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GotoHomePosition); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GotoHomePosition); - break; - case SOAP_TYPE___tptz__SetHomePosition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__SetHomePosition); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__SetHomePosition); - break; - case SOAP_TYPE___tptz__ContinuousMove: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__ContinuousMove); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__ContinuousMove); - break; - case SOAP_TYPE___tptz__RelativeMove: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__RelativeMove); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__RelativeMove); - break; - case SOAP_TYPE___tptz__SendAuxiliaryCommand: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__SendAuxiliaryCommand); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__SendAuxiliaryCommand); - break; - case SOAP_TYPE___tptz__AbsoluteMove: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__AbsoluteMove); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__AbsoluteMove); - break; - case SOAP_TYPE___tptz__Stop: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__Stop); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__Stop); - break; - case SOAP_TYPE___tptz__GetPresetTours: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetPresetTours); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetPresetTours); - break; - case SOAP_TYPE___tptz__GetPresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetPresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetPresetTour); - break; - case SOAP_TYPE___tptz__GetPresetTourOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetPresetTourOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetPresetTourOptions); - break; - case SOAP_TYPE___tptz__CreatePresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__CreatePresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__CreatePresetTour); - break; - case SOAP_TYPE___tptz__ModifyPresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__ModifyPresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__ModifyPresetTour); - break; - case SOAP_TYPE___tptz__OperatePresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__OperatePresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__OperatePresetTour); - break; - case SOAP_TYPE___tptz__RemovePresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__RemovePresetTour); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__RemovePresetTour); - break; - case SOAP_TYPE___tptz__GetCompatibleConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tptz__GetCompatibleConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tptz__GetCompatibleConfigurations); - break; - case SOAP_TYPE___trc__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetServiceCapabilities); - break; - case SOAP_TYPE___trc__CreateRecording: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__CreateRecording); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__CreateRecording); - break; - case SOAP_TYPE___trc__DeleteRecording: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__DeleteRecording); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__DeleteRecording); - break; - case SOAP_TYPE___trc__GetRecordings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetRecordings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetRecordings); - break; - case SOAP_TYPE___trc__SetRecordingConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__SetRecordingConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__SetRecordingConfiguration); - break; - case SOAP_TYPE___trc__GetRecordingConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetRecordingConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetRecordingConfiguration); - break; - case SOAP_TYPE___trc__GetRecordingOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetRecordingOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetRecordingOptions); - break; - case SOAP_TYPE___trc__CreateTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__CreateTrack); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__CreateTrack); - break; - case SOAP_TYPE___trc__DeleteTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__DeleteTrack); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__DeleteTrack); - break; - case SOAP_TYPE___trc__GetTrackConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetTrackConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetTrackConfiguration); - break; - case SOAP_TYPE___trc__SetTrackConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__SetTrackConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__SetTrackConfiguration); - break; - case SOAP_TYPE___trc__CreateRecordingJob: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__CreateRecordingJob); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__CreateRecordingJob); - break; - case SOAP_TYPE___trc__DeleteRecordingJob: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__DeleteRecordingJob); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__DeleteRecordingJob); - break; - case SOAP_TYPE___trc__GetRecordingJobs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetRecordingJobs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetRecordingJobs); - break; - case SOAP_TYPE___trc__SetRecordingJobConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__SetRecordingJobConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__SetRecordingJobConfiguration); - break; - case SOAP_TYPE___trc__GetRecordingJobConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetRecordingJobConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetRecordingJobConfiguration); - break; - case SOAP_TYPE___trc__SetRecordingJobMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__SetRecordingJobMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__SetRecordingJobMode); - break; - case SOAP_TYPE___trc__GetRecordingJobState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetRecordingJobState); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetRecordingJobState); - break; - case SOAP_TYPE___trc__ExportRecordedData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__ExportRecordedData); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__ExportRecordedData); - break; - case SOAP_TYPE___trc__StopExportRecordedData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__StopExportRecordedData); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__StopExportRecordedData); - break; - case SOAP_TYPE___trc__GetExportRecordedDataState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trc__GetExportRecordedDataState); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trc__GetExportRecordedDataState); - break; - case SOAP_TYPE___trp__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trp__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trp__GetServiceCapabilities); - break; - case SOAP_TYPE___trp__GetReplayUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trp__GetReplayUri); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trp__GetReplayUri); - break; - case SOAP_TYPE___trp__GetReplayConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trp__GetReplayConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trp__GetReplayConfiguration); - break; - case SOAP_TYPE___trp__SetReplayConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trp__SetReplayConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trp__SetReplayConfiguration); - break; - case SOAP_TYPE___trt__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetServiceCapabilities); - break; - case SOAP_TYPE___trt__GetVideoSources: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoSources); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoSources); - break; - case SOAP_TYPE___trt__GetAudioSources: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioSources); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioSources); - break; - case SOAP_TYPE___trt__GetAudioOutputs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioOutputs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioOutputs); - break; - case SOAP_TYPE___trt__CreateProfile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__CreateProfile); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__CreateProfile); - break; - case SOAP_TYPE___trt__GetProfile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetProfile); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetProfile); - break; - case SOAP_TYPE___trt__GetProfiles: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetProfiles); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetProfiles); - break; - case SOAP_TYPE___trt__AddVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddVideoEncoderConfiguration); - break; - case SOAP_TYPE___trt__AddVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddVideoSourceConfiguration); - break; - case SOAP_TYPE___trt__AddAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddAudioEncoderConfiguration); - break; - case SOAP_TYPE___trt__AddAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddAudioSourceConfiguration); - break; - case SOAP_TYPE___trt__AddPTZConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddPTZConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddPTZConfiguration); - break; - case SOAP_TYPE___trt__AddVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddVideoAnalyticsConfiguration); - break; - case SOAP_TYPE___trt__AddMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddMetadataConfiguration); - break; - case SOAP_TYPE___trt__AddAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddAudioOutputConfiguration); - break; - case SOAP_TYPE___trt__AddAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__AddAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__AddAudioDecoderConfiguration); - break; - case SOAP_TYPE___trt__RemoveVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveVideoEncoderConfiguration); - break; - case SOAP_TYPE___trt__RemoveVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveVideoSourceConfiguration); - break; - case SOAP_TYPE___trt__RemoveAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveAudioEncoderConfiguration); - break; - case SOAP_TYPE___trt__RemoveAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveAudioSourceConfiguration); - break; - case SOAP_TYPE___trt__RemovePTZConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemovePTZConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemovePTZConfiguration); - break; - case SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveVideoAnalyticsConfiguration); - break; - case SOAP_TYPE___trt__RemoveMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveMetadataConfiguration); - break; - case SOAP_TYPE___trt__RemoveAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveAudioOutputConfiguration); - break; - case SOAP_TYPE___trt__RemoveAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__RemoveAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__RemoveAudioDecoderConfiguration); - break; - case SOAP_TYPE___trt__DeleteProfile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__DeleteProfile); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__DeleteProfile); - break; - case SOAP_TYPE___trt__GetVideoSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoSourceConfigurations); - break; - case SOAP_TYPE___trt__GetVideoEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoEncoderConfigurations); - break; - case SOAP_TYPE___trt__GetAudioSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioSourceConfigurations); - break; - case SOAP_TYPE___trt__GetAudioEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioEncoderConfigurations); - break; - case SOAP_TYPE___trt__GetVideoAnalyticsConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoAnalyticsConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoAnalyticsConfigurations); - break; - case SOAP_TYPE___trt__GetMetadataConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetMetadataConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetMetadataConfigurations); - break; - case SOAP_TYPE___trt__GetAudioOutputConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioOutputConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioOutputConfigurations); - break; - case SOAP_TYPE___trt__GetAudioDecoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioDecoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioDecoderConfigurations); - break; - case SOAP_TYPE___trt__GetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoSourceConfiguration); - break; - case SOAP_TYPE___trt__GetVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoEncoderConfiguration); - break; - case SOAP_TYPE___trt__GetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioSourceConfiguration); - break; - case SOAP_TYPE___trt__GetAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioEncoderConfiguration); - break; - case SOAP_TYPE___trt__GetVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoAnalyticsConfiguration); - break; - case SOAP_TYPE___trt__GetMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetMetadataConfiguration); - break; - case SOAP_TYPE___trt__GetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioOutputConfiguration); - break; - case SOAP_TYPE___trt__GetAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioDecoderConfiguration); - break; - case SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleVideoEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleVideoEncoderConfigurations); - break; - case SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleVideoSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleVideoSourceConfigurations); - break; - case SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioEncoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioEncoderConfigurations); - break; - case SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioSourceConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioSourceConfigurations); - break; - case SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleVideoAnalyticsConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleVideoAnalyticsConfigurations); - break; - case SOAP_TYPE___trt__GetCompatibleMetadataConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleMetadataConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleMetadataConfigurations); - break; - case SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioOutputConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioOutputConfigurations); - break; - case SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioDecoderConfigurations); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetCompatibleAudioDecoderConfigurations); - break; - case SOAP_TYPE___trt__SetVideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetVideoSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetVideoSourceConfiguration); - break; - case SOAP_TYPE___trt__SetVideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetVideoEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetVideoEncoderConfiguration); - break; - case SOAP_TYPE___trt__SetAudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetAudioSourceConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetAudioSourceConfiguration); - break; - case SOAP_TYPE___trt__SetAudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetAudioEncoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetAudioEncoderConfiguration); - break; - case SOAP_TYPE___trt__SetVideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetVideoAnalyticsConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetVideoAnalyticsConfiguration); - break; - case SOAP_TYPE___trt__SetMetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetMetadataConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetMetadataConfiguration); - break; - case SOAP_TYPE___trt__SetAudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetAudioOutputConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetAudioOutputConfiguration); - break; - case SOAP_TYPE___trt__SetAudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetAudioDecoderConfiguration); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetAudioDecoderConfiguration); - break; - case SOAP_TYPE___trt__GetVideoSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoSourceConfigurationOptions); - break; - case SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoEncoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoEncoderConfigurationOptions); - break; - case SOAP_TYPE___trt__GetAudioSourceConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioSourceConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioSourceConfigurationOptions); - break; - case SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioEncoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioEncoderConfigurationOptions); - break; - case SOAP_TYPE___trt__GetMetadataConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetMetadataConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetMetadataConfigurationOptions); - break; - case SOAP_TYPE___trt__GetAudioOutputConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioOutputConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioOutputConfigurationOptions); - break; - case SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetAudioDecoderConfigurationOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetAudioDecoderConfigurationOptions); - break; - case SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetGuaranteedNumberOfVideoEncoderInstances); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetGuaranteedNumberOfVideoEncoderInstances); - break; - case SOAP_TYPE___trt__GetStreamUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetStreamUri); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetStreamUri); - break; - case SOAP_TYPE___trt__StartMulticastStreaming: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__StartMulticastStreaming); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__StartMulticastStreaming); - break; - case SOAP_TYPE___trt__StopMulticastStreaming: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__StopMulticastStreaming); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__StopMulticastStreaming); - break; - case SOAP_TYPE___trt__SetSynchronizationPoint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetSynchronizationPoint); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetSynchronizationPoint); - break; - case SOAP_TYPE___trt__GetSnapshotUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetSnapshotUri); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetSnapshotUri); - break; - case SOAP_TYPE___trt__GetVideoSourceModes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetVideoSourceModes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetVideoSourceModes); - break; - case SOAP_TYPE___trt__SetVideoSourceMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetVideoSourceMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetVideoSourceMode); - break; - case SOAP_TYPE___trt__GetOSDs: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetOSDs); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetOSDs); - break; - case SOAP_TYPE___trt__GetOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetOSD); - break; - case SOAP_TYPE___trt__GetOSDOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__GetOSDOptions); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__GetOSDOptions); - break; - case SOAP_TYPE___trt__SetOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__SetOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__SetOSD); - break; - case SOAP_TYPE___trt__CreateOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__CreateOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__CreateOSD); - break; - case SOAP_TYPE___trt__DeleteOSD: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trt__DeleteOSD); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trt__DeleteOSD); - break; - case SOAP_TYPE___trv__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__GetServiceCapabilities); - break; - case SOAP_TYPE___trv__GetReceivers: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__GetReceivers); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__GetReceivers); - break; - case SOAP_TYPE___trv__GetReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__GetReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__GetReceiver); - break; - case SOAP_TYPE___trv__CreateReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__CreateReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__CreateReceiver); - break; - case SOAP_TYPE___trv__DeleteReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__DeleteReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__DeleteReceiver); - break; - case SOAP_TYPE___trv__ConfigureReceiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__ConfigureReceiver); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__ConfigureReceiver); - break; - case SOAP_TYPE___trv__SetReceiverMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__SetReceiverMode); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__SetReceiverMode); - break; - case SOAP_TYPE___trv__GetReceiverState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __trv__GetReceiverState); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __trv__GetReceiverState); - break; - case SOAP_TYPE___tse__GetServiceCapabilities: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetServiceCapabilities); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetServiceCapabilities); - break; - case SOAP_TYPE___tse__GetRecordingSummary: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetRecordingSummary); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetRecordingSummary); - break; - case SOAP_TYPE___tse__GetRecordingInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetRecordingInformation); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetRecordingInformation); - break; - case SOAP_TYPE___tse__GetMediaAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetMediaAttributes); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetMediaAttributes); - break; - case SOAP_TYPE___tse__FindRecordings: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__FindRecordings); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__FindRecordings); - break; - case SOAP_TYPE___tse__GetRecordingSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetRecordingSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetRecordingSearchResults); - break; - case SOAP_TYPE___tse__FindEvents: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__FindEvents); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__FindEvents); - break; - case SOAP_TYPE___tse__GetEventSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetEventSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetEventSearchResults); - break; - case SOAP_TYPE___tse__FindPTZPosition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__FindPTZPosition); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__FindPTZPosition); - break; - case SOAP_TYPE___tse__GetPTZPositionSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetPTZPositionSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetPTZPositionSearchResults); - break; - case SOAP_TYPE___tse__GetSearchState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetSearchState); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetSearchState); - break; - case SOAP_TYPE___tse__EndSearch: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__EndSearch); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__EndSearch); - break; - case SOAP_TYPE___tse__FindMetadata: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__FindMetadata); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__FindMetadata); - break; - case SOAP_TYPE___tse__GetMetadataSearchResults: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct __tse__GetMetadataSearchResults); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct __tse__GetMetadataSearchResults); - break; - case SOAP_TYPE__wsa__EndpointReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - break; - case SOAP_TYPE__wsa__RelatesTo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__Relationship); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__Relationship); - break; - case SOAP_TYPE__wsa__From: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - break; - case SOAP_TYPE__wsa__ReplyTo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - break; - case SOAP_TYPE__wsa__FaultTo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa__EndpointReferenceType); - break; - case SOAP_TYPE__wsdd__Hello: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__HelloType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__HelloType); - break; - case SOAP_TYPE__wsdd__Bye: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ByeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ByeType); - break; - case SOAP_TYPE__wsdd__Probe: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ProbeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ProbeType); - break; - case SOAP_TYPE__wsdd__ProbeMatches: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ProbeMatchesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ProbeMatchesType); - break; - case SOAP_TYPE__wsdd__Resolve: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ResolveType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ResolveType); - break; - case SOAP_TYPE__wsdd__ResolveMatches: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ResolveMatchesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ResolveMatchesType); - break; - case SOAP_TYPE__wsdd__Scopes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__ScopesType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__ScopesType); - break; - case SOAP_TYPE__wsdd__Security: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__SecurityType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__SecurityType); - break; - case SOAP_TYPE__wsdd__Sig: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__SigType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__SigType); - break; - case SOAP_TYPE__wsdd__AppSequence: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsdd__AppSequenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsdd__AppSequenceType); - break; - case SOAP_TYPE__ds__Signature: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__SignatureType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__SignatureType); - break; - case SOAP_TYPE__ds__Transform: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__TransformType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__TransformType); - break; - case SOAP_TYPE__ds__KeyInfo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct ds__KeyInfoType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct ds__KeyInfoType); - break; - case SOAP_TYPE_xsd__dateTime: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct timeval); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct timeval); - break; - case SOAP_TYPE__saml1__Assertion: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AssertionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AssertionType); - break; - case SOAP_TYPE__saml1__Conditions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__ConditionsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__ConditionsType); - break; - case SOAP_TYPE__saml1__Condition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__ConditionAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__ConditionAbstractType); - break; - case SOAP_TYPE__saml1__AudienceRestrictionCondition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AudienceRestrictionConditionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AudienceRestrictionConditionType); - break; - case SOAP_TYPE__saml1__DoNotCacheCondition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__DoNotCacheConditionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__DoNotCacheConditionType); - break; - case SOAP_TYPE__saml1__Advice: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AdviceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AdviceType); - break; - case SOAP_TYPE__saml1__Statement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__StatementAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__StatementAbstractType); - break; - case SOAP_TYPE__saml1__SubjectStatement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectStatementAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectStatementAbstractType); - break; - case SOAP_TYPE__saml1__Subject: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectType); - break; - case SOAP_TYPE__saml1__NameIdentifier: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__NameIdentifierType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__NameIdentifierType); - break; - case SOAP_TYPE__saml1__SubjectConfirmation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectConfirmationType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectConfirmationType); - break; - case SOAP_TYPE__saml1__AuthenticationStatement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AuthenticationStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AuthenticationStatementType); - break; - case SOAP_TYPE__saml1__SubjectLocality: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__SubjectLocalityType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__SubjectLocalityType); - break; - case SOAP_TYPE__saml1__AuthorityBinding: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AuthorityBindingType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AuthorityBindingType); - break; - case SOAP_TYPE__saml1__AuthorizationDecisionStatement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AuthorizationDecisionStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AuthorizationDecisionStatementType); - break; - case SOAP_TYPE__saml1__Action: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__ActionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__ActionType); - break; - case SOAP_TYPE__saml1__Evidence: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__EvidenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__EvidenceType); - break; - case SOAP_TYPE__saml1__AttributeStatement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AttributeStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AttributeStatementType); - break; - case SOAP_TYPE__saml1__AttributeDesignator: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AttributeDesignatorType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AttributeDesignatorType); - break; - case SOAP_TYPE__saml1__Attribute: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml1__AttributeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml1__AttributeType); - break; - case SOAP_TYPE__saml2__BaseID: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__BaseIDAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__BaseIDAbstractType); - break; - case SOAP_TYPE__saml2__NameID: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__NameIDType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__NameIDType); - break; - case SOAP_TYPE__saml2__EncryptedID: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - break; - case SOAP_TYPE__saml2__Issuer: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__NameIDType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__NameIDType); - break; - case SOAP_TYPE__saml2__Assertion: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AssertionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AssertionType); - break; - case SOAP_TYPE__saml2__Subject: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectType); - break; - case SOAP_TYPE__saml2__SubjectConfirmation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationType); - break; - case SOAP_TYPE__saml2__SubjectConfirmationData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationDataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectConfirmationDataType); - break; - case SOAP_TYPE__saml2__Conditions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ConditionsType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ConditionsType); - break; - case SOAP_TYPE__saml2__Condition: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ConditionAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ConditionAbstractType); - break; - case SOAP_TYPE__saml2__AudienceRestriction: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AudienceRestrictionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AudienceRestrictionType); - break; - case SOAP_TYPE__saml2__OneTimeUse: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__OneTimeUseType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__OneTimeUseType); - break; - case SOAP_TYPE__saml2__ProxyRestriction: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ProxyRestrictionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ProxyRestrictionType); - break; - case SOAP_TYPE__saml2__Advice: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AdviceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AdviceType); - break; - case SOAP_TYPE__saml2__EncryptedAssertion: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - break; - case SOAP_TYPE__saml2__Statement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__StatementAbstractType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__StatementAbstractType); - break; - case SOAP_TYPE__saml2__AuthnStatement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AuthnStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AuthnStatementType); - break; - case SOAP_TYPE__saml2__SubjectLocality: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__SubjectLocalityType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__SubjectLocalityType); - break; - case SOAP_TYPE__saml2__AuthnContext: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AuthnContextType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AuthnContextType); - break; - case SOAP_TYPE__saml2__AuthzDecisionStatement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AuthzDecisionStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AuthzDecisionStatementType); - break; - case SOAP_TYPE__saml2__Action: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__ActionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__ActionType); - break; - case SOAP_TYPE__saml2__Evidence: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__EvidenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__EvidenceType); - break; - case SOAP_TYPE__saml2__AttributeStatement: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AttributeStatementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AttributeStatementType); - break; - case SOAP_TYPE__saml2__Attribute: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__AttributeType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__AttributeType); - break; - case SOAP_TYPE__saml2__EncryptedAttribute: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct saml2__EncryptedElementType); - break; - case SOAP_TYPE_xsd__anyType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct soap_dom_element); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct soap_dom_element); - break; - case SOAP_TYPE_xsd__anyAttribute: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct soap_dom_attribute); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct soap_dom_attribute); - break; - case SOAP_TYPE__wsa5__EndpointReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - break; - case SOAP_TYPE__wsa5__ReferenceParameters: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__ReferenceParametersType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__ReferenceParametersType); - break; - case SOAP_TYPE__wsa5__Metadata: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__MetadataType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__MetadataType); - break; - case SOAP_TYPE__wsa5__RelatesTo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__RelatesToType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__RelatesToType); - break; - case SOAP_TYPE__wsa5__ReplyTo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - break; - case SOAP_TYPE__wsa5__From: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - break; - case SOAP_TYPE__wsa5__FaultTo: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__EndpointReferenceType); - break; - case SOAP_TYPE__wsa5__ProblemAction: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), struct wsa5__ProblemActionType); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct wsa5__ProblemActionType); - break; - case SOAP_TYPE_xsd__QName: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_SOAP_ENV__Envelope: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__NCName: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__anySimpleType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__anyURI: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__duration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__integer: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__nonNegativeInteger: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_xsd__token: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE__xmime__contentType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE__xml__lang: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__IntAttrList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__FloatAttrList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__StringAttrList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__StringList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__ReferenceTokenList: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tmd__DelayTimes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tds__EAPMethodTypes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_trt__EncodingTypes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_trc__EncodingTypes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__ReferenceToken: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__Name: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__IPv4Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__IPv6Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__HwAddress: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__DNSName: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__Domain: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__Dot11SSIDType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__hexBinary); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__hexBinary); - break; - case SOAP_TYPE_tt__Dot11PSK: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), xsd__hexBinary); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), xsd__hexBinary); - break; - case SOAP_TYPE_tt__Dot11PSKPassphrase: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__AuxiliaryData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__Description: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__XPathExpression: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__RecordingJobMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__RecordingJobState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__AudioClassType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_wstop__FullTopicExpression: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_wstop__ConcreteTopicExpression: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_wstop__SimpleTopicExpression: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__ReceiverReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__RecordingReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__TrackReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__JobToken: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_tt__RecordingJobReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), std::string); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); - break; - case SOAP_TYPE_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_wstop__TopicNamespaceType_Topic> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_wstop__TopicNamespaceType_Topic> ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTowstop__TopicType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__QName: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__MediaAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Receiver: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PresetTour: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZNode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__OSDConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotrt__VideoSourceMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutputConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__MetadataConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSourceConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Profile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotimg__ImagingPreset: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LocationEntity: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotds__StorageConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RelayOutput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot1XConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateStatus: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Certificate: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkProtocol: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkInterface: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__CapabilityCategory: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__User: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Scope: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__BackupFile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotds__Service: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotmd__SerialPort: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__DigitalInput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoOutput: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotmd__RelayOutputOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftmd__ParityBit: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__DigitalIdleState: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__RelayMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FileProgress: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__OSDType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ColorspaceRange: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Color: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ActiveConnection: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioClassCandidate: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__EngineConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobTrack: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobSource: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetTracksResponseItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackAttributes: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindMetadataResult: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindPTZPositionResult: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindEventResult: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingInformation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__RecordingReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__SourceReference: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Rectangle: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayoutOptions: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayout: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Polyline: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ConfigDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ConfigDescription_Messages: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_tt__ConfigDescription_Messages> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_tt__ConfigDescription_Messages> ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Config: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_tt__ItemListDescription_ElementItemDescription> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_tt__ItemListDescription_ElementItemDescription> ); - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_tt__ItemListDescription_SimpleItemDescription> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_tt__ItemListDescription_SimpleItemDescription> ); - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_ElementItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_tt__ItemList_ElementItem> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_tt__ItemList_ElementItem> ); - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_SimpleItem: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_tt__ItemList_SimpleItem> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_tt__ItemList_SimpleItem> ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__BacklightCompensationMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__ImageStabilizationMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__WhiteBalanceMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__ExposurePriority: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__ExposureMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__AutoFocusMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__WideDynamicMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__IrCutFilterMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourDirection: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPresetTourSpot: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Space1DDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Space2DDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__ReverseMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__EFlipMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourOperation: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__SystemLogUri: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__OnvifVersion: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__AuxiliaryData: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__Dot11Cipher: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__Dot11AuthAndMangementSuite: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__IPv6Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__IPv4Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkHost: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__IPAddress: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__token: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv6Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv4Address: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot3Configuration: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfstd__string: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution2: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__H264Profile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__Mpeg4Profile: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__RotateMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__SceneOrientationMode: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOftt__ReferenceToken: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LensProjection: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LensDescription: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOffloat: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfint: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_tt__ColorDescriptor_ColorCluster> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_tt__ColorDescriptor_ColorCluster> ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Vector: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector<_wsrfbf__BaseFaultType_Description> ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector<_wsrfbf__BaseFaultType_Description> ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__anyURI: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__TopicExpressionType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__anyType: - if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); - else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); - break; - default: - return SOAP_ERR; - } - return SOAP_OK; -} - -#ifdef WIN32 -#pragma warning(push) -// do not warn on switch w/o cases -#pragma warning(disable:4065) -#endif -SOAP_FMAC3 int SOAP_FMAC4 soap_fbase(int t, int b) -{ - do - { switch (t) - { - - case SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__InvalidFilterFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__TopicNotSupportedFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnableToGetMessagesFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__PauseFailedFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsnt__ResumeFailedFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_tt__VideoSource: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__AudioSource: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__VideoSourceConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__VideoEncoderConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__JpegOptions2: t = SOAP_TYPE_tt__JpegOptions; break; - case SOAP_TYPE_tt__Mpeg4Options2: t = SOAP_TYPE_tt__Mpeg4Options; break; - case SOAP_TYPE_tt__H264Options2: t = SOAP_TYPE_tt__H264Options; break; - case SOAP_TYPE_tt__VideoEncoder2Configuration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__AudioSourceConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__AudioEncoderConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__AudioEncoder2Configuration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__VideoAnalyticsConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__MetadataConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__VideoOutput: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__VideoOutputConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__AudioOutput: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__AudioOutputConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__AudioDecoderConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__NetworkInterface: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__RelayOutput: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__DigitalInput: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__PTZNode: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tt__PTZConfiguration: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__EventFilter: t = SOAP_TYPE_wsnt__FilterType; break; - case SOAP_TYPE_tt__AnalyticsEngine: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__AnalyticsEngineInput: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__AnalyticsEngineControl: t = SOAP_TYPE_tt__ConfigurationEntity; break; - case SOAP_TYPE_tt__OSDConfiguration: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tmd__SerialPort: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_tds__StorageConfiguration: t = SOAP_TYPE_tt__DeviceEntity; break; - case SOAP_TYPE_wsrfr__ResourceUnknownFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wsrfr__ResourceUnavailableFaultType: t = SOAP_TYPE_wsrfbf__BaseFaultType; break; - case SOAP_TYPE_wstop__TopicNamespaceType: t = SOAP_TYPE_wstop__ExtensibleDocumented; break; - case SOAP_TYPE_wstop__TopicType: t = SOAP_TYPE_wstop__ExtensibleDocumented; break; - case SOAP_TYPE_wstop__TopicSetType: t = SOAP_TYPE_wstop__ExtensibleDocumented; break; - default: return 0; - } - } - while (t != b); - return 1; -} -#ifdef WIN32 -#pragma warning(pop) -#endif - -#ifndef WITH_NOIDREF -#ifdef WIN32 -#pragma warning(push) -// do not warn on switch w/o cases -#pragma warning(disable:4065) -#endif -SOAP_FMAC3 void SOAP_FMAC4 soap_finsert(struct soap *soap, int t, int tt, void *p, size_t index, const void *q, void **x) -{ - (void)soap; (void)t; (void)p; (void)index; (void)q; (void)x; /* appease -Wall -Werror */ - switch (tt) - { - case SOAP_TYPE_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic: - if (t == SOAP_TYPE__wstop__TopicNamespaceType_Topic) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_wstop__TopicNamespaceType_Topic> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_wstop__TopicNamespaceType_Topic> *)p)[index] = *(_wstop__TopicNamespaceType_Topic *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTowstop__TopicType: - if (t == SOAP_TYPE_wstop__TopicType || soap_fbase(t, SOAP_TYPE_wstop__TopicType)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(wstop__TopicType **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__QName: - if (t == SOAP_TYPE_xsd__QName) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__MediaAttributes: - if (t == SOAP_TYPE_tt__MediaAttributes || soap_fbase(t, SOAP_TYPE_tt__MediaAttributes)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__MediaAttributes **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem: - if (t == SOAP_TYPE_tt__GetRecordingJobsResponseItem || soap_fbase(t, SOAP_TYPE_tt__GetRecordingJobsResponseItem)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__GetRecordingJobsResponseItem **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem: - if (t == SOAP_TYPE_tt__GetRecordingsResponseItem || soap_fbase(t, SOAP_TYPE_tt__GetRecordingsResponseItem)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__GetRecordingsResponseItem **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Receiver: - if (t == SOAP_TYPE_tt__Receiver || soap_fbase(t, SOAP_TYPE_tt__Receiver)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Receiver **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PresetTour: - if (t == SOAP_TYPE_tt__PresetTour || soap_fbase(t, SOAP_TYPE_tt__PresetTour)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PresetTour **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPreset: - if (t == SOAP_TYPE_tt__PTZPreset || soap_fbase(t, SOAP_TYPE_tt__PTZPreset)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PTZPreset **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZConfiguration: - if (t == SOAP_TYPE_tt__PTZConfiguration || soap_fbase(t, SOAP_TYPE_tt__PTZConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PTZConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZNode: - if (t == SOAP_TYPE_tt__PTZNode || soap_fbase(t, SOAP_TYPE_tt__PTZNode)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PTZNode **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__OSDConfiguration: - if (t == SOAP_TYPE_tt__OSDConfiguration || soap_fbase(t, SOAP_TYPE_tt__OSDConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__OSDConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotrt__VideoSourceMode: - if (t == SOAP_TYPE_trt__VideoSourceMode || soap_fbase(t, SOAP_TYPE_trt__VideoSourceMode)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(trt__VideoSourceMode **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration: - if (t == SOAP_TYPE_tt__AudioDecoderConfiguration || soap_fbase(t, SOAP_TYPE_tt__AudioDecoderConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioDecoderConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutputConfiguration: - if (t == SOAP_TYPE_tt__AudioOutputConfiguration || soap_fbase(t, SOAP_TYPE_tt__AudioOutputConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioOutputConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__MetadataConfiguration: - if (t == SOAP_TYPE_tt__MetadataConfiguration || soap_fbase(t, SOAP_TYPE_tt__MetadataConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__MetadataConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration: - if (t == SOAP_TYPE_tt__VideoAnalyticsConfiguration || soap_fbase(t, SOAP_TYPE_tt__VideoAnalyticsConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__VideoAnalyticsConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSourceConfiguration: - if (t == SOAP_TYPE_tt__AudioSourceConfiguration || soap_fbase(t, SOAP_TYPE_tt__AudioSourceConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioSourceConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration: - if (t == SOAP_TYPE_tt__AudioEncoderConfiguration || soap_fbase(t, SOAP_TYPE_tt__AudioEncoderConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioEncoderConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSourceConfiguration: - if (t == SOAP_TYPE_tt__VideoSourceConfiguration || soap_fbase(t, SOAP_TYPE_tt__VideoSourceConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__VideoSourceConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration: - if (t == SOAP_TYPE_tt__VideoEncoderConfiguration || soap_fbase(t, SOAP_TYPE_tt__VideoEncoderConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__VideoEncoderConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Profile: - if (t == SOAP_TYPE_tt__Profile || soap_fbase(t, SOAP_TYPE_tt__Profile)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Profile **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutput: - if (t == SOAP_TYPE_tt__AudioOutput || soap_fbase(t, SOAP_TYPE_tt__AudioOutput)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioOutput **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSource: - if (t == SOAP_TYPE_tt__AudioSource || soap_fbase(t, SOAP_TYPE_tt__AudioSource)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioSource **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSource: - if (t == SOAP_TYPE_tt__VideoSource || soap_fbase(t, SOAP_TYPE_tt__VideoSource)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__VideoSource **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotimg__ImagingPreset: - if (t == SOAP_TYPE_timg__ImagingPreset || soap_fbase(t, SOAP_TYPE_timg__ImagingPreset)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(timg__ImagingPreset **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneConfiguration: - if (t == SOAP_TYPE_tt__PaneConfiguration || soap_fbase(t, SOAP_TYPE_tt__PaneConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PaneConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LocationEntity: - if (t == SOAP_TYPE_tt__LocationEntity || soap_fbase(t, SOAP_TYPE_tt__LocationEntity)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__LocationEntity **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotds__StorageConfiguration: - if (t == SOAP_TYPE_tds__StorageConfiguration || soap_fbase(t, SOAP_TYPE_tds__StorageConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tds__StorageConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks: - if (t == SOAP_TYPE_tt__Dot11AvailableNetworks || soap_fbase(t, SOAP_TYPE_tt__Dot11AvailableNetworks)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Dot11AvailableNetworks **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RelayOutput: - if (t == SOAP_TYPE_tt__RelayOutput || soap_fbase(t, SOAP_TYPE_tt__RelayOutput)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__RelayOutput **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot1XConfiguration: - if (t == SOAP_TYPE_tt__Dot1XConfiguration || soap_fbase(t, SOAP_TYPE_tt__Dot1XConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Dot1XConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey: - if (t == SOAP_TYPE_tt__CertificateWithPrivateKey || soap_fbase(t, SOAP_TYPE_tt__CertificateWithPrivateKey)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__CertificateWithPrivateKey **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateStatus: - if (t == SOAP_TYPE_tt__CertificateStatus || soap_fbase(t, SOAP_TYPE_tt__CertificateStatus)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__CertificateStatus **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Certificate: - if (t == SOAP_TYPE_tt__Certificate || soap_fbase(t, SOAP_TYPE_tt__Certificate)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Certificate **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkProtocol: - if (t == SOAP_TYPE_tt__NetworkProtocol || soap_fbase(t, SOAP_TYPE_tt__NetworkProtocol)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__NetworkProtocol **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkInterface: - if (t == SOAP_TYPE_tt__NetworkInterface || soap_fbase(t, SOAP_TYPE_tt__NetworkInterface)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__NetworkInterface **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__CapabilityCategory: - if (t == SOAP_TYPE_tt__CapabilityCategory) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__CapabilityCategory *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__User: - if (t == SOAP_TYPE_tt__User || soap_fbase(t, SOAP_TYPE_tt__User)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__User **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Scope: - if (t == SOAP_TYPE_tt__Scope || soap_fbase(t, SOAP_TYPE_tt__Scope)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Scope **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__BackupFile: - if (t == SOAP_TYPE_tt__BackupFile || soap_fbase(t, SOAP_TYPE_tt__BackupFile)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__BackupFile **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotds__Service: - if (t == SOAP_TYPE_tds__Service || soap_fbase(t, SOAP_TYPE_tds__Service)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tds__Service **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotmd__SerialPort: - if (t == SOAP_TYPE_tmd__SerialPort || soap_fbase(t, SOAP_TYPE_tmd__SerialPort)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tmd__SerialPort **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__DigitalInput: - if (t == SOAP_TYPE_tt__DigitalInput || soap_fbase(t, SOAP_TYPE_tt__DigitalInput)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__DigitalInput **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoOutput: - if (t == SOAP_TYPE_tt__VideoOutput || soap_fbase(t, SOAP_TYPE_tt__VideoOutput)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__VideoOutput **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTotmd__RelayOutputOptions: - if (t == SOAP_TYPE_tmd__RelayOutputOptions || soap_fbase(t, SOAP_TYPE_tmd__RelayOutputOptions)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tmd__RelayOutputOptions **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftmd__ParityBit: - if (t == SOAP_TYPE_tmd__ParityBit) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tmd__ParityBit *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__DigitalIdleState: - if (t == SOAP_TYPE_tt__DigitalIdleState) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__DigitalIdleState *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__RelayMode: - if (t == SOAP_TYPE_tt__RelayMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__RelayMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FileProgress: - if (t == SOAP_TYPE_tt__FileProgress || soap_fbase(t, SOAP_TYPE_tt__FileProgress)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__FileProgress **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__OSDType: - if (t == SOAP_TYPE_tt__OSDType) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__OSDType *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ColorspaceRange: - if (t == SOAP_TYPE_tt__ColorspaceRange || soap_fbase(t, SOAP_TYPE_tt__ColorspaceRange)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__ColorspaceRange **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Color: - if (t == SOAP_TYPE_tt__Color || soap_fbase(t, SOAP_TYPE_tt__Color)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Color **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ActiveConnection: - if (t == SOAP_TYPE_tt__ActiveConnection || soap_fbase(t, SOAP_TYPE_tt__ActiveConnection)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__ActiveConnection **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioClassCandidate: - if (t == SOAP_TYPE_tt__AudioClassCandidate || soap_fbase(t, SOAP_TYPE_tt__AudioClassCandidate)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioClassCandidate **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__EngineConfiguration: - if (t == SOAP_TYPE_tt__EngineConfiguration || soap_fbase(t, SOAP_TYPE_tt__EngineConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__EngineConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateTrack: - if (t == SOAP_TYPE_tt__RecordingJobStateTrack || soap_fbase(t, SOAP_TYPE_tt__RecordingJobStateTrack)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__RecordingJobStateTrack **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateSource: - if (t == SOAP_TYPE_tt__RecordingJobStateSource || soap_fbase(t, SOAP_TYPE_tt__RecordingJobStateSource)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__RecordingJobStateSource **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobTrack: - if (t == SOAP_TYPE_tt__RecordingJobTrack || soap_fbase(t, SOAP_TYPE_tt__RecordingJobTrack)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__RecordingJobTrack **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobSource: - if (t == SOAP_TYPE_tt__RecordingJobSource || soap_fbase(t, SOAP_TYPE_tt__RecordingJobSource)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__RecordingJobSource **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__GetTracksResponseItem: - if (t == SOAP_TYPE_tt__GetTracksResponseItem || soap_fbase(t, SOAP_TYPE_tt__GetTracksResponseItem)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__GetTracksResponseItem **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackAttributes: - if (t == SOAP_TYPE_tt__TrackAttributes || soap_fbase(t, SOAP_TYPE_tt__TrackAttributes)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__TrackAttributes **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackInformation: - if (t == SOAP_TYPE_tt__TrackInformation || soap_fbase(t, SOAP_TYPE_tt__TrackInformation)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__TrackInformation **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindMetadataResult: - if (t == SOAP_TYPE_tt__FindMetadataResult || soap_fbase(t, SOAP_TYPE_tt__FindMetadataResult)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__FindMetadataResult **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindPTZPositionResult: - if (t == SOAP_TYPE_tt__FindPTZPositionResult || soap_fbase(t, SOAP_TYPE_tt__FindPTZPositionResult)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__FindPTZPositionResult **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__FindEventResult: - if (t == SOAP_TYPE_tt__FindEventResult || soap_fbase(t, SOAP_TYPE_tt__FindEventResult)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__FindEventResult **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingInformation: - if (t == SOAP_TYPE_tt__RecordingInformation || soap_fbase(t, SOAP_TYPE_tt__RecordingInformation)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__RecordingInformation **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__RecordingReference: - if (t == SOAP_TYPE_tt__RecordingReference) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__SourceReference: - if (t == SOAP_TYPE_tt__SourceReference || soap_fbase(t, SOAP_TYPE_tt__SourceReference)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__SourceReference **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Rectangle: - if (t == SOAP_TYPE_tt__Rectangle || soap_fbase(t, SOAP_TYPE_tt__Rectangle)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Rectangle **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayoutOptions: - if (t == SOAP_TYPE_tt__PaneLayoutOptions || soap_fbase(t, SOAP_TYPE_tt__PaneLayoutOptions)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PaneLayoutOptions **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayout: - if (t == SOAP_TYPE_tt__PaneLayout || soap_fbase(t, SOAP_TYPE_tt__PaneLayout)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PaneLayout **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Polyline: - if (t == SOAP_TYPE_tt__Polyline || soap_fbase(t, SOAP_TYPE_tt__Polyline)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Polyline **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__ConfigDescription: - if (t == SOAP_TYPE_tt__ConfigDescription || soap_fbase(t, SOAP_TYPE_tt__ConfigDescription)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__ConfigDescription **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ConfigDescription_Messages: - if (t == SOAP_TYPE__tt__ConfigDescription_Messages) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_tt__ConfigDescription_Messages> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_tt__ConfigDescription_Messages> *)p)[index] = *(_tt__ConfigDescription_Messages *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Config: - if (t == SOAP_TYPE_tt__Config || soap_fbase(t, SOAP_TYPE_tt__Config)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Config **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription: - if (t == SOAP_TYPE__tt__ItemListDescription_ElementItemDescription) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_tt__ItemListDescription_ElementItemDescription> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_tt__ItemListDescription_ElementItemDescription> *)p)[index] = *(_tt__ItemListDescription_ElementItemDescription *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription: - if (t == SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_tt__ItemListDescription_SimpleItemDescription> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_tt__ItemListDescription_SimpleItemDescription> *)p)[index] = *(_tt__ItemListDescription_SimpleItemDescription *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_ElementItem: - if (t == SOAP_TYPE__tt__ItemList_ElementItem) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_tt__ItemList_ElementItem> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_tt__ItemList_ElementItem> *)p)[index] = *(_tt__ItemList_ElementItem *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_SimpleItem: - if (t == SOAP_TYPE__tt__ItemList_SimpleItem) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_tt__ItemList_SimpleItem> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_tt__ItemList_SimpleItem> *)p)[index] = *(_tt__ItemList_SimpleItem *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__BacklightCompensationMode: - if (t == SOAP_TYPE_tt__BacklightCompensationMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__BacklightCompensationMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__ImageStabilizationMode: - if (t == SOAP_TYPE_tt__ImageStabilizationMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__ImageStabilizationMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment: - if (t == SOAP_TYPE_tt__IrCutFilterAutoAdjustment || soap_fbase(t, SOAP_TYPE_tt__IrCutFilterAutoAdjustment)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__IrCutFilterAutoAdjustment **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__WhiteBalanceMode: - if (t == SOAP_TYPE_tt__WhiteBalanceMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__WhiteBalanceMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__ExposurePriority: - if (t == SOAP_TYPE_tt__ExposurePriority) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__ExposurePriority *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__ExposureMode: - if (t == SOAP_TYPE_tt__ExposureMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__ExposureMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__AutoFocusMode: - if (t == SOAP_TYPE_tt__AutoFocusMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__AutoFocusMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__WideDynamicMode: - if (t == SOAP_TYPE_tt__WideDynamicMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__WideDynamicMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__IrCutFilterMode: - if (t == SOAP_TYPE_tt__IrCutFilterMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__IrCutFilterMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourDirection: - if (t == SOAP_TYPE_tt__PTZPresetTourDirection) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__PTZPresetTourDirection *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPresetTourSpot: - if (t == SOAP_TYPE_tt__PTZPresetTourSpot || soap_fbase(t, SOAP_TYPE_tt__PTZPresetTourSpot)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PTZPresetTourSpot **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Space1DDescription: - if (t == SOAP_TYPE_tt__Space1DDescription || soap_fbase(t, SOAP_TYPE_tt__Space1DDescription)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Space1DDescription **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Space2DDescription: - if (t == SOAP_TYPE_tt__Space2DDescription || soap_fbase(t, SOAP_TYPE_tt__Space2DDescription)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Space2DDescription **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__ReverseMode: - if (t == SOAP_TYPE_tt__ReverseMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__ReverseMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__EFlipMode: - if (t == SOAP_TYPE_tt__EFlipMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__EFlipMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourOperation: - if (t == SOAP_TYPE_tt__PTZPresetTourOperation) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__PTZPresetTourOperation *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__SystemLogUri: - if (t == SOAP_TYPE_tt__SystemLogUri || soap_fbase(t, SOAP_TYPE_tt__SystemLogUri)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__SystemLogUri **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__OnvifVersion: - if (t == SOAP_TYPE_tt__OnvifVersion || soap_fbase(t, SOAP_TYPE_tt__OnvifVersion)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__OnvifVersion **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__AuxiliaryData: - if (t == SOAP_TYPE_tt__AuxiliaryData) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__Dot11Cipher: - if (t == SOAP_TYPE_tt__Dot11Cipher) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__Dot11Cipher *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__Dot11AuthAndMangementSuite: - if (t == SOAP_TYPE_tt__Dot11AuthAndMangementSuite) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__Dot11AuthAndMangementSuite *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration: - if (t == SOAP_TYPE_tt__NetworkZeroConfiguration || soap_fbase(t, SOAP_TYPE_tt__NetworkZeroConfiguration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__NetworkZeroConfiguration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__IPv6Address: - if (t == SOAP_TYPE_tt__IPv6Address) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__IPv4Address: - if (t == SOAP_TYPE_tt__IPv4Address) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkHost: - if (t == SOAP_TYPE_tt__NetworkHost || soap_fbase(t, SOAP_TYPE_tt__NetworkHost)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__NetworkHost **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__IPAddress: - if (t == SOAP_TYPE_tt__IPAddress || soap_fbase(t, SOAP_TYPE_tt__IPAddress)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__IPAddress **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__token: - if (t == SOAP_TYPE_xsd__token) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv6Address: - if (t == SOAP_TYPE_tt__PrefixedIPv6Address || soap_fbase(t, SOAP_TYPE_tt__PrefixedIPv6Address)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PrefixedIPv6Address **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv4Address: - if (t == SOAP_TYPE_tt__PrefixedIPv4Address || soap_fbase(t, SOAP_TYPE_tt__PrefixedIPv4Address)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__PrefixedIPv4Address **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11Configuration: - if (t == SOAP_TYPE_tt__Dot11Configuration || soap_fbase(t, SOAP_TYPE_tt__Dot11Configuration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Dot11Configuration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot3Configuration: - if (t == SOAP_TYPE_tt__Dot3Configuration || soap_fbase(t, SOAP_TYPE_tt__Dot3Configuration)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Dot3Configuration **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfstd__string: - if (t == SOAP_TYPE_std__string) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption: - if (t == SOAP_TYPE_tt__AudioEncoderConfigurationOption || soap_fbase(t, SOAP_TYPE_tt__AudioEncoderConfigurationOption)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__AudioEncoderConfigurationOption **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution2: - if (t == SOAP_TYPE_tt__VideoResolution2 || soap_fbase(t, SOAP_TYPE_tt__VideoResolution2)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__VideoResolution2 **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__H264Profile: - if (t == SOAP_TYPE_tt__H264Profile) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__H264Profile *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__Mpeg4Profile: - if (t == SOAP_TYPE_tt__Mpeg4Profile) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__Mpeg4Profile *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution: - if (t == SOAP_TYPE_tt__VideoResolution || soap_fbase(t, SOAP_TYPE_tt__VideoResolution)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__VideoResolution **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__RotateMode: - if (t == SOAP_TYPE_tt__RotateMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__RotateMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__SceneOrientationMode: - if (t == SOAP_TYPE_tt__SceneOrientationMode) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(enum tt__SceneOrientationMode *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOftt__ReferenceToken: - if (t == SOAP_TYPE_tt__ReferenceToken) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LensProjection: - if (t == SOAP_TYPE_tt__LensProjection || soap_fbase(t, SOAP_TYPE_tt__LensProjection)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__LensProjection **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__LensDescription: - if (t == SOAP_TYPE_tt__LensDescription || soap_fbase(t, SOAP_TYPE_tt__LensDescription)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__LensDescription **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOffloat: - if (t == SOAP_TYPE_float) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(float *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfint: - if (t == SOAP_TYPE_int) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(int *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster: - if (t == SOAP_TYPE__tt__ColorDescriptor_ColorCluster) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_tt__ColorDescriptor_ColorCluster> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_tt__ColorDescriptor_ColorCluster> *)p)[index] = *(_tt__ColorDescriptor_ColorCluster *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTott__Vector: - if (t == SOAP_TYPE_tt__Vector || soap_fbase(t, SOAP_TYPE_tt__Vector)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(tt__Vector **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description: - if (t == SOAP_TYPE__wsrfbf__BaseFaultType_Description) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector<_wsrfbf__BaseFaultType_Description> insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector<_wsrfbf__BaseFaultType_Description> *)p)[index] = *(_wsrfbf__BaseFaultType_Description *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType: - if (t == SOAP_TYPE_wsnt__NotificationMessageHolderType || soap_fbase(t, SOAP_TYPE_wsnt__NotificationMessageHolderType)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(wsnt__NotificationMessageHolderType **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__anyURI: - if (t == SOAP_TYPE_xsd__anyURI) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(std::string *)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__TopicExpressionType: - if (t == SOAP_TYPE_wsnt__TopicExpressionType || soap_fbase(t, SOAP_TYPE_wsnt__TopicExpressionType)) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(wsnt__TopicExpressionType **)q; - } - break; - case SOAP_TYPE_std__vectorTemplateOfxsd__anyType: - if (t == SOAP_TYPE_xsd__anyType) - { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container std::vector insert type=%d in %d location=%p object=%p at index=%lu\n", t, tt, p, q, (unsigned long)index)); - (*(std::vector *)p)[index] = *(struct soap_dom_element *)q; - } - break; - case SOAP_TYPE_wsa__EndpointReferenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__EndpointReferenceType*)p = *(struct wsa__EndpointReferenceType*)q; - break; - case SOAP_TYPE_wsa__ReferencePropertiesType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__ReferencePropertiesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__ReferencePropertiesType*)p = *(struct wsa__ReferencePropertiesType*)q; - break; - case SOAP_TYPE_wsa__ReferenceParametersType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__ReferenceParametersType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__ReferenceParametersType*)p = *(struct wsa__ReferenceParametersType*)q; - break; - case SOAP_TYPE_wsa__ServiceNameType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__ServiceNameType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__ServiceNameType*)p = *(struct wsa__ServiceNameType*)q; - break; - case SOAP_TYPE_wsa__Relationship: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__Relationship type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__Relationship*)p = *(struct wsa__Relationship*)q; - break; -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Header: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct SOAP_ENV__Header type=%d location=%p object=%p\n", t, p, q)); - *(struct SOAP_ENV__Header*)p = *(struct SOAP_ENV__Header*)q; - break; -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Code: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct SOAP_ENV__Code type=%d location=%p object=%p\n", t, p, q)); - *(struct SOAP_ENV__Code*)p = *(struct SOAP_ENV__Code*)q; - break; -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Reason: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct SOAP_ENV__Reason type=%d location=%p object=%p\n", t, p, q)); - *(struct SOAP_ENV__Reason*)p = *(struct SOAP_ENV__Reason*)q; - break; -#endif -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Fault: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct SOAP_ENV__Fault type=%d location=%p object=%p\n", t, p, q)); - *(struct SOAP_ENV__Fault*)p = *(struct SOAP_ENV__Fault*)q; - break; -#endif - case SOAP_TYPE_wsdd__HelloType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__HelloType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__HelloType*)p = *(struct wsdd__HelloType*)q; - break; - case SOAP_TYPE_wsdd__ByeType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ByeType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ByeType*)p = *(struct wsdd__ByeType*)q; - break; - case SOAP_TYPE_wsdd__ProbeType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ProbeType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ProbeType*)p = *(struct wsdd__ProbeType*)q; - break; - case SOAP_TYPE_wsdd__ProbeMatchesType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ProbeMatchesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ProbeMatchesType*)p = *(struct wsdd__ProbeMatchesType*)q; - break; - case SOAP_TYPE_wsdd__ProbeMatchType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ProbeMatchType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ProbeMatchType*)p = *(struct wsdd__ProbeMatchType*)q; - break; - case SOAP_TYPE_wsdd__ResolveType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ResolveType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ResolveType*)p = *(struct wsdd__ResolveType*)q; - break; - case SOAP_TYPE_wsdd__ResolveMatchesType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ResolveMatchesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ResolveMatchesType*)p = *(struct wsdd__ResolveMatchesType*)q; - break; - case SOAP_TYPE_wsdd__ResolveMatchType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ResolveMatchType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ResolveMatchType*)p = *(struct wsdd__ResolveMatchType*)q; - break; - case SOAP_TYPE_wsdd__SecurityType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__SecurityType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__SecurityType*)p = *(struct wsdd__SecurityType*)q; - break; - case SOAP_TYPE_wsdd__SigType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__SigType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__SigType*)p = *(struct wsdd__SigType*)q; - break; - case SOAP_TYPE_wsdd__ScopesType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ScopesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ScopesType*)p = *(struct wsdd__ScopesType*)q; - break; - case SOAP_TYPE_wsdd__AppSequenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__AppSequenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__AppSequenceType*)p = *(struct wsdd__AppSequenceType*)q; - break; - case SOAP_TYPE___wsdd__Hello: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __wsdd__Hello type=%d location=%p object=%p\n", t, p, q)); - *(struct __wsdd__Hello*)p = *(struct __wsdd__Hello*)q; - break; - case SOAP_TYPE___wsdd__Bye: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __wsdd__Bye type=%d location=%p object=%p\n", t, p, q)); - *(struct __wsdd__Bye*)p = *(struct __wsdd__Bye*)q; - break; - case SOAP_TYPE___wsdd__Probe: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __wsdd__Probe type=%d location=%p object=%p\n", t, p, q)); - *(struct __wsdd__Probe*)p = *(struct __wsdd__Probe*)q; - break; - case SOAP_TYPE___wsdd__ProbeMatches: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __wsdd__ProbeMatches type=%d location=%p object=%p\n", t, p, q)); - *(struct __wsdd__ProbeMatches*)p = *(struct __wsdd__ProbeMatches*)q; - break; - case SOAP_TYPE___wsdd__Resolve: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __wsdd__Resolve type=%d location=%p object=%p\n", t, p, q)); - *(struct __wsdd__Resolve*)p = *(struct __wsdd__Resolve*)q; - break; - case SOAP_TYPE___wsdd__ResolveMatches: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __wsdd__ResolveMatches type=%d location=%p object=%p\n", t, p, q)); - *(struct __wsdd__ResolveMatches*)p = *(struct __wsdd__ResolveMatches*)q; - break; - case SOAP_TYPE__wsu__Timestamp: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsu__Timestamp type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsu__Timestamp*)p = *(struct _wsu__Timestamp*)q; - break; - case SOAP_TYPE_wsse__EncodedString: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsse__EncodedString type=%d location=%p object=%p\n", t, p, q)); - *(struct wsse__EncodedString*)p = *(struct wsse__EncodedString*)q; - break; - case SOAP_TYPE__wsse__UsernameToken: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__UsernameToken type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__UsernameToken*)p = *(struct _wsse__UsernameToken*)q; - break; - case SOAP_TYPE__wsse__BinarySecurityToken: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__BinarySecurityToken type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__BinarySecurityToken*)p = *(struct _wsse__BinarySecurityToken*)q; - break; - case SOAP_TYPE__wsse__Reference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__Reference type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__Reference*)p = *(struct _wsse__Reference*)q; - break; - case SOAP_TYPE__wsse__Embedded: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__Embedded type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__Embedded*)p = *(struct _wsse__Embedded*)q; - break; - case SOAP_TYPE__wsse__KeyIdentifier: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__KeyIdentifier type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__KeyIdentifier*)p = *(struct _wsse__KeyIdentifier*)q; - break; - case SOAP_TYPE__wsse__SecurityTokenReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__SecurityTokenReference type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__SecurityTokenReference*)p = *(struct _wsse__SecurityTokenReference*)q; - break; - case SOAP_TYPE_ds__KeyInfoType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__KeyInfoType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__KeyInfoType*)p = *(struct ds__KeyInfoType*)q; - break; - case SOAP_TYPE_ds__SignatureType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__SignatureType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__SignatureType*)p = *(struct ds__SignatureType*)q; - break; - case SOAP_TYPE__c14n__InclusiveNamespaces: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _c14n__InclusiveNamespaces type=%d location=%p object=%p\n", t, p, q)); - *(struct _c14n__InclusiveNamespaces*)p = *(struct _c14n__InclusiveNamespaces*)q; - break; - case SOAP_TYPE_ds__TransformType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__TransformType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__TransformType*)p = *(struct ds__TransformType*)q; - break; - case SOAP_TYPE_ds__SignedInfoType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__SignedInfoType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__SignedInfoType*)p = *(struct ds__SignedInfoType*)q; - break; - case SOAP_TYPE_ds__CanonicalizationMethodType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__CanonicalizationMethodType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__CanonicalizationMethodType*)p = *(struct ds__CanonicalizationMethodType*)q; - break; - case SOAP_TYPE_ds__SignatureMethodType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__SignatureMethodType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__SignatureMethodType*)p = *(struct ds__SignatureMethodType*)q; - break; - case SOAP_TYPE_ds__ReferenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__ReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__ReferenceType*)p = *(struct ds__ReferenceType*)q; - break; - case SOAP_TYPE_ds__TransformsType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__TransformsType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__TransformsType*)p = *(struct ds__TransformsType*)q; - break; - case SOAP_TYPE_ds__DigestMethodType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__DigestMethodType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__DigestMethodType*)p = *(struct ds__DigestMethodType*)q; - break; - case SOAP_TYPE_ds__KeyValueType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__KeyValueType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__KeyValueType*)p = *(struct ds__KeyValueType*)q; - break; - case SOAP_TYPE_ds__RetrievalMethodType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__RetrievalMethodType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__RetrievalMethodType*)p = *(struct ds__RetrievalMethodType*)q; - break; - case SOAP_TYPE_ds__X509DataType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__X509DataType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__X509DataType*)p = *(struct ds__X509DataType*)q; - break; - case SOAP_TYPE_ds__X509IssuerSerialType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__X509IssuerSerialType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__X509IssuerSerialType*)p = *(struct ds__X509IssuerSerialType*)q; - break; - case SOAP_TYPE_ds__DSAKeyValueType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__DSAKeyValueType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__DSAKeyValueType*)p = *(struct ds__DSAKeyValueType*)q; - break; - case SOAP_TYPE_ds__RSAKeyValueType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__RSAKeyValueType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__RSAKeyValueType*)p = *(struct ds__RSAKeyValueType*)q; - break; - case SOAP_TYPE_xenc__EncryptionPropertyType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__EncryptionPropertyType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__EncryptionPropertyType*)p = *(struct xenc__EncryptionPropertyType*)q; - break; - case SOAP_TYPE_xenc__EncryptedType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__EncryptedType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__EncryptedType*)p = *(struct xenc__EncryptedType*)q; - break; - case SOAP_TYPE_xenc__EncryptionMethodType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__EncryptionMethodType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__EncryptionMethodType*)p = *(struct xenc__EncryptionMethodType*)q; - break; - case SOAP_TYPE_xenc__CipherDataType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__CipherDataType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__CipherDataType*)p = *(struct xenc__CipherDataType*)q; - break; - case SOAP_TYPE_xenc__CipherReferenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__CipherReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__CipherReferenceType*)p = *(struct xenc__CipherReferenceType*)q; - break; - case SOAP_TYPE_xenc__TransformsType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__TransformsType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__TransformsType*)p = *(struct xenc__TransformsType*)q; - break; - case SOAP_TYPE_xenc__AgreementMethodType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__AgreementMethodType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__AgreementMethodType*)p = *(struct xenc__AgreementMethodType*)q; - break; - case SOAP_TYPE_xenc__ReferenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__ReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__ReferenceType*)p = *(struct xenc__ReferenceType*)q; - break; - case SOAP_TYPE_xenc__EncryptionPropertiesType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__EncryptionPropertiesType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__EncryptionPropertiesType*)p = *(struct xenc__EncryptionPropertiesType*)q; - break; - case SOAP_TYPE___xenc__union_ReferenceList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __xenc__union_ReferenceList type=%d location=%p object=%p\n", t, p, q)); - *(struct __xenc__union_ReferenceList*)p = *(struct __xenc__union_ReferenceList*)q; - break; - case SOAP_TYPE__xenc__ReferenceList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _xenc__ReferenceList type=%d location=%p object=%p\n", t, p, q)); - *(struct _xenc__ReferenceList*)p = *(struct _xenc__ReferenceList*)q; - break; - case SOAP_TYPE_xenc__EncryptedDataType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__EncryptedDataType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__EncryptedDataType*)p = *(struct xenc__EncryptedDataType*)q; - break; - case SOAP_TYPE_xenc__EncryptedKeyType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct xenc__EncryptedKeyType type=%d location=%p object=%p\n", t, p, q)); - *(struct xenc__EncryptedKeyType*)p = *(struct xenc__EncryptedKeyType*)q; - break; - case SOAP_TYPE_wsc__SecurityContextTokenType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsc__SecurityContextTokenType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsc__SecurityContextTokenType*)p = *(struct wsc__SecurityContextTokenType*)q; - break; - case SOAP_TYPE__wsc__union_DerivedKeyTokenType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy union _wsc__union_DerivedKeyTokenType type=%d location=%p object=%p\n", t, p, q)); - *(union _wsc__union_DerivedKeyTokenType*)p = *(union _wsc__union_DerivedKeyTokenType*)q; - break; - case SOAP_TYPE___wsc__DerivedKeyTokenType_sequence: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __wsc__DerivedKeyTokenType_sequence type=%d location=%p object=%p\n", t, p, q)); - *(struct __wsc__DerivedKeyTokenType_sequence*)p = *(struct __wsc__DerivedKeyTokenType_sequence*)q; - break; - case SOAP_TYPE_wsc__DerivedKeyTokenType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsc__DerivedKeyTokenType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsc__DerivedKeyTokenType*)p = *(struct wsc__DerivedKeyTokenType*)q; - break; - case SOAP_TYPE_wsc__PropertiesType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsc__PropertiesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsc__PropertiesType*)p = *(struct wsc__PropertiesType*)q; - break; - case SOAP_TYPE___saml1__union_AssertionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml1__union_AssertionType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml1__union_AssertionType*)p = *(struct __saml1__union_AssertionType*)q; - break; - case SOAP_TYPE_saml1__AssertionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AssertionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AssertionType*)p = *(struct saml1__AssertionType*)q; - break; - case SOAP_TYPE___saml1__union_ConditionsType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml1__union_ConditionsType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml1__union_ConditionsType*)p = *(struct __saml1__union_ConditionsType*)q; - break; - case SOAP_TYPE_saml1__ConditionsType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__ConditionsType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__ConditionsType*)p = *(struct saml1__ConditionsType*)q; - break; - case SOAP_TYPE_saml1__ConditionAbstractType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__ConditionAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__ConditionAbstractType*)p = *(struct saml1__ConditionAbstractType*)q; - break; - case SOAP_TYPE___saml1__union_AdviceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml1__union_AdviceType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml1__union_AdviceType*)p = *(struct __saml1__union_AdviceType*)q; - break; - case SOAP_TYPE_saml1__AdviceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AdviceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AdviceType*)p = *(struct saml1__AdviceType*)q; - break; - case SOAP_TYPE_saml1__StatementAbstractType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__StatementAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__StatementAbstractType*)p = *(struct saml1__StatementAbstractType*)q; - break; - case SOAP_TYPE_saml1__SubjectType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectType*)p = *(struct saml1__SubjectType*)q; - break; - case SOAP_TYPE_saml1__SubjectConfirmationType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectConfirmationType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectConfirmationType*)p = *(struct saml1__SubjectConfirmationType*)q; - break; - case SOAP_TYPE_saml1__SubjectLocalityType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectLocalityType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectLocalityType*)p = *(struct saml1__SubjectLocalityType*)q; - break; - case SOAP_TYPE_saml1__AuthorityBindingType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AuthorityBindingType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AuthorityBindingType*)p = *(struct saml1__AuthorityBindingType*)q; - break; - case SOAP_TYPE___saml1__union_EvidenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml1__union_EvidenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml1__union_EvidenceType*)p = *(struct __saml1__union_EvidenceType*)q; - break; - case SOAP_TYPE_saml1__EvidenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__EvidenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__EvidenceType*)p = *(struct saml1__EvidenceType*)q; - break; - case SOAP_TYPE_saml1__AttributeDesignatorType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AttributeDesignatorType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AttributeDesignatorType*)p = *(struct saml1__AttributeDesignatorType*)q; - break; - case SOAP_TYPE_saml1__AudienceRestrictionConditionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AudienceRestrictionConditionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AudienceRestrictionConditionType*)p = *(struct saml1__AudienceRestrictionConditionType*)q; - break; - case SOAP_TYPE_saml1__DoNotCacheConditionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__DoNotCacheConditionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__DoNotCacheConditionType*)p = *(struct saml1__DoNotCacheConditionType*)q; - break; - case SOAP_TYPE_saml1__SubjectStatementAbstractType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectStatementAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectStatementAbstractType*)p = *(struct saml1__SubjectStatementAbstractType*)q; - break; - case SOAP_TYPE_saml1__NameIdentifierType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__NameIdentifierType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__NameIdentifierType*)p = *(struct saml1__NameIdentifierType*)q; - break; - case SOAP_TYPE_saml1__ActionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__ActionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__ActionType*)p = *(struct saml1__ActionType*)q; - break; - case SOAP_TYPE_saml1__AttributeType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AttributeType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AttributeType*)p = *(struct saml1__AttributeType*)q; - break; - case SOAP_TYPE_saml1__AuthenticationStatementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AuthenticationStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AuthenticationStatementType*)p = *(struct saml1__AuthenticationStatementType*)q; - break; - case SOAP_TYPE_saml1__AuthorizationDecisionStatementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AuthorizationDecisionStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AuthorizationDecisionStatementType*)p = *(struct saml1__AuthorizationDecisionStatementType*)q; - break; - case SOAP_TYPE_saml1__AttributeStatementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AttributeStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AttributeStatementType*)p = *(struct saml1__AttributeStatementType*)q; - break; - case SOAP_TYPE_saml2__BaseIDAbstractType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__BaseIDAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__BaseIDAbstractType*)p = *(struct saml2__BaseIDAbstractType*)q; - break; - case SOAP_TYPE_saml2__EncryptedElementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__EncryptedElementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__EncryptedElementType*)p = *(struct saml2__EncryptedElementType*)q; - break; - case SOAP_TYPE___saml2__union_AssertionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml2__union_AssertionType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml2__union_AssertionType*)p = *(struct __saml2__union_AssertionType*)q; - break; - case SOAP_TYPE_saml2__AssertionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AssertionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AssertionType*)p = *(struct saml2__AssertionType*)q; - break; - case SOAP_TYPE_saml2__SubjectType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectType*)p = *(struct saml2__SubjectType*)q; - break; - case SOAP_TYPE_saml2__SubjectConfirmationType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectConfirmationType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectConfirmationType*)p = *(struct saml2__SubjectConfirmationType*)q; - break; - case SOAP_TYPE___saml2__union_ConditionsType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml2__union_ConditionsType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml2__union_ConditionsType*)p = *(struct __saml2__union_ConditionsType*)q; - break; - case SOAP_TYPE_saml2__ConditionsType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ConditionsType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ConditionsType*)p = *(struct saml2__ConditionsType*)q; - break; - case SOAP_TYPE_saml2__ConditionAbstractType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ConditionAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ConditionAbstractType*)p = *(struct saml2__ConditionAbstractType*)q; - break; - case SOAP_TYPE___saml2__union_AdviceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml2__union_AdviceType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml2__union_AdviceType*)p = *(struct __saml2__union_AdviceType*)q; - break; - case SOAP_TYPE_saml2__AdviceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AdviceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AdviceType*)p = *(struct saml2__AdviceType*)q; - break; - case SOAP_TYPE_saml2__StatementAbstractType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__StatementAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__StatementAbstractType*)p = *(struct saml2__StatementAbstractType*)q; - break; - case SOAP_TYPE_saml2__SubjectLocalityType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectLocalityType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectLocalityType*)p = *(struct saml2__SubjectLocalityType*)q; - break; - case SOAP_TYPE_saml2__AuthnContextType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AuthnContextType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AuthnContextType*)p = *(struct saml2__AuthnContextType*)q; - break; - case SOAP_TYPE___saml2__union_EvidenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml2__union_EvidenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml2__union_EvidenceType*)p = *(struct __saml2__union_EvidenceType*)q; - break; - case SOAP_TYPE_saml2__EvidenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__EvidenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__EvidenceType*)p = *(struct saml2__EvidenceType*)q; - break; - case SOAP_TYPE_saml2__AttributeType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AttributeType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AttributeType*)p = *(struct saml2__AttributeType*)q; - break; - case SOAP_TYPE_saml2__NameIDType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__NameIDType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__NameIDType*)p = *(struct saml2__NameIDType*)q; - break; - case SOAP_TYPE_saml2__SubjectConfirmationDataType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectConfirmationDataType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectConfirmationDataType*)p = *(struct saml2__SubjectConfirmationDataType*)q; - break; - case SOAP_TYPE_saml2__AudienceRestrictionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AudienceRestrictionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AudienceRestrictionType*)p = *(struct saml2__AudienceRestrictionType*)q; - break; - case SOAP_TYPE_saml2__OneTimeUseType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__OneTimeUseType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__OneTimeUseType*)p = *(struct saml2__OneTimeUseType*)q; - break; - case SOAP_TYPE_saml2__ProxyRestrictionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ProxyRestrictionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ProxyRestrictionType*)p = *(struct saml2__ProxyRestrictionType*)q; - break; - case SOAP_TYPE_saml2__AuthnStatementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AuthnStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AuthnStatementType*)p = *(struct saml2__AuthnStatementType*)q; - break; - case SOAP_TYPE_saml2__AuthzDecisionStatementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AuthzDecisionStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AuthzDecisionStatementType*)p = *(struct saml2__AuthzDecisionStatementType*)q; - break; - case SOAP_TYPE_saml2__ActionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ActionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ActionType*)p = *(struct saml2__ActionType*)q; - break; - case SOAP_TYPE___saml2__union_AttributeStatementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __saml2__union_AttributeStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct __saml2__union_AttributeStatementType*)p = *(struct __saml2__union_AttributeStatementType*)q; - break; - case SOAP_TYPE_saml2__AttributeStatementType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AttributeStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AttributeStatementType*)p = *(struct saml2__AttributeStatementType*)q; - break; - case SOAP_TYPE_saml2__KeyInfoConfirmationDataType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__KeyInfoConfirmationDataType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__KeyInfoConfirmationDataType*)p = *(struct saml2__KeyInfoConfirmationDataType*)q; - break; - case SOAP_TYPE__wsse__Security: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__Security type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__Security*)p = *(struct _wsse__Security*)q; - break; - case SOAP_TYPE__wsse__Password: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct _wsse__Password type=%d location=%p object=%p\n", t, p, q)); - *(struct _wsse__Password*)p = *(struct _wsse__Password*)q; - break; - case SOAP_TYPE_wsa5__EndpointReferenceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__EndpointReferenceType*)p = *(struct wsa5__EndpointReferenceType*)q; - break; - case SOAP_TYPE_wsa5__ReferenceParametersType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__ReferenceParametersType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__ReferenceParametersType*)p = *(struct wsa5__ReferenceParametersType*)q; - break; - case SOAP_TYPE_wsa5__MetadataType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__MetadataType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__MetadataType*)p = *(struct wsa5__MetadataType*)q; - break; - case SOAP_TYPE_wsa5__ProblemActionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__ProblemActionType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__ProblemActionType*)p = *(struct wsa5__ProblemActionType*)q; - break; - case SOAP_TYPE_wsa5__RelatesToType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__RelatesToType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__RelatesToType*)p = *(struct wsa5__RelatesToType*)q; - break; - case SOAP_TYPE_chan__ChannelInstanceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct chan__ChannelInstanceType type=%d location=%p object=%p\n", t, p, q)); - *(struct chan__ChannelInstanceType*)p = *(struct chan__ChannelInstanceType*)q; - break; - case SOAP_TYPE_std__string: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__base64Binary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__base64Binary type=%d location=%p object=%p\n", t, p, q)); - *(xsd__base64Binary*)p = *(xsd__base64Binary*)q; - break; - case SOAP_TYPE_xsd__hexBinary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__hexBinary type=%d location=%p object=%p\n", t, p, q)); - *(xsd__hexBinary*)p = *(xsd__hexBinary*)q; - break; - case SOAP_TYPE_tt__FloatList__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FloatList__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__FloatList__*)p = *(tt__FloatList__*)q; - break; - case SOAP_TYPE_tt__IntList__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IntList__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IntList__*)p = *(tt__IntList__*)q; - break; - case SOAP_TYPE_wsa5__EndpointReferenceType__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsa5__EndpointReferenceType__ type=%d location=%p object=%p\n", t, p, q)); - *(wsa5__EndpointReferenceType__*)p = *(wsa5__EndpointReferenceType__*)q; - break; - case SOAP_TYPE_SOAP_ENV__Envelope__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy SOAP_ENV__Envelope__ type=%d location=%p object=%p\n", t, p, q)); - *(SOAP_ENV__Envelope__*)p = *(SOAP_ENV__Envelope__*)q; - break; - case SOAP_TYPE_SOAP_ENV__Fault_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy SOAP_ENV__Fault_ type=%d location=%p object=%p\n", t, p, q)); - *(SOAP_ENV__Fault_*)p = *(SOAP_ENV__Fault_*)q; - break; - case SOAP_TYPE_xsd__NCName__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__NCName__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__NCName__*)p = *(xsd__NCName__*)q; - break; - case SOAP_TYPE_xsd__QName__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__QName__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__QName__*)p = *(xsd__QName__*)q; - break; - case SOAP_TYPE_xsd__anySimpleType__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__anySimpleType__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__anySimpleType__*)p = *(xsd__anySimpleType__*)q; - break; - case SOAP_TYPE_xsd__anyURI__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__anyURI__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__anyURI__*)p = *(xsd__anyURI__*)q; - break; - case SOAP_TYPE_xsd__base64Binary__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__base64Binary__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__base64Binary__*)p = *(xsd__base64Binary__*)q; - break; - case SOAP_TYPE_xsd__boolean_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__boolean_ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__boolean_*)p = *(xsd__boolean_*)q; - break; - case SOAP_TYPE_xsd__dateTime__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__dateTime__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__dateTime__*)p = *(xsd__dateTime__*)q; - break; - case SOAP_TYPE_xsd__double_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__double_ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__double_*)p = *(xsd__double_*)q; - break; - case SOAP_TYPE_xsd__duration__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__duration__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__duration__*)p = *(xsd__duration__*)q; - break; - case SOAP_TYPE_xsd__float_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__float_ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__float_*)p = *(xsd__float_*)q; - break; - case SOAP_TYPE_xsd__hexBinary__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__hexBinary__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__hexBinary__*)p = *(xsd__hexBinary__*)q; - break; - case SOAP_TYPE_xsd__int_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__int_ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__int_*)p = *(xsd__int_*)q; - break; - case SOAP_TYPE_xsd__integer__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__integer__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__integer__*)p = *(xsd__integer__*)q; - break; - case SOAP_TYPE_xsd__nonNegativeInteger__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__nonNegativeInteger__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__nonNegativeInteger__*)p = *(xsd__nonNegativeInteger__*)q; - break; - case SOAP_TYPE_xsd__string_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__string_ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__string_*)p = *(xsd__string_*)q; - break; - case SOAP_TYPE_xsd__token__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__token__ type=%d location=%p object=%p\n", t, p, q)); - *(xsd__token__*)p = *(xsd__token__*)q; - break; - case SOAP_TYPE_tt__ReferenceToken__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReferenceToken__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReferenceToken__*)p = *(tt__ReferenceToken__*)q; - break; - case SOAP_TYPE_tt__MoveStatus_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MoveStatus_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__MoveStatus_*)p = *(tt__MoveStatus_*)q; - break; - case SOAP_TYPE_tt__Entity_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Entity_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Entity_*)p = *(tt__Entity_*)q; - break; - case SOAP_TYPE_tt__Name__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Name__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Name__*)p = *(tt__Name__*)q; - break; - case SOAP_TYPE_tt__RotateMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RotateMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RotateMode_*)p = *(tt__RotateMode_*)q; - break; - case SOAP_TYPE_tt__SceneOrientationMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SceneOrientationMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__SceneOrientationMode_*)p = *(tt__SceneOrientationMode_*)q; - break; - case SOAP_TYPE_tt__SceneOrientationOption_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SceneOrientationOption_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__SceneOrientationOption_*)p = *(tt__SceneOrientationOption_*)q; - break; - case SOAP_TYPE_tt__ViewModes_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ViewModes_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ViewModes_*)p = *(tt__ViewModes_*)q; - break; - case SOAP_TYPE_tt__VideoEncoding_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncoding_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncoding_*)p = *(tt__VideoEncoding_*)q; - break; - case SOAP_TYPE_tt__Mpeg4Profile_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Mpeg4Profile_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Mpeg4Profile_*)p = *(tt__Mpeg4Profile_*)q; - break; - case SOAP_TYPE_tt__H264Profile_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__H264Profile_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__H264Profile_*)p = *(tt__H264Profile_*)q; - break; - case SOAP_TYPE_tt__VideoEncodingMimeNames_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncodingMimeNames_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncodingMimeNames_*)p = *(tt__VideoEncodingMimeNames_*)q; - break; - case SOAP_TYPE_tt__VideoEncodingProfiles_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncodingProfiles_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncodingProfiles_*)p = *(tt__VideoEncodingProfiles_*)q; - break; - case SOAP_TYPE_tt__AudioEncoding_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioEncoding_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioEncoding_*)p = *(tt__AudioEncoding_*)q; - break; - case SOAP_TYPE_tt__AudioEncodingMimeNames_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioEncodingMimeNames_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioEncodingMimeNames_*)p = *(tt__AudioEncodingMimeNames_*)q; - break; - case SOAP_TYPE_tt__MetadataCompressionType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataCompressionType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataCompressionType_*)p = *(tt__MetadataCompressionType_*)q; - break; - case SOAP_TYPE_tt__StreamType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__StreamType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__StreamType_*)p = *(tt__StreamType_*)q; - break; - case SOAP_TYPE_tt__TransportProtocol_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TransportProtocol_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__TransportProtocol_*)p = *(tt__TransportProtocol_*)q; - break; - case SOAP_TYPE_tt__ScopeDefinition_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ScopeDefinition_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ScopeDefinition_*)p = *(tt__ScopeDefinition_*)q; - break; - case SOAP_TYPE_tt__DiscoveryMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DiscoveryMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__DiscoveryMode_*)p = *(tt__DiscoveryMode_*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceConfigPriority__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceConfigPriority__*)p = *(tt__NetworkInterfaceConfigPriority__*)q; - break; - case SOAP_TYPE_tt__Duplex_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Duplex_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Duplex_*)p = *(tt__Duplex_*)q; - break; - case SOAP_TYPE_tt__IANA_IfTypes__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IANA_IfTypes__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IANA_IfTypes__*)p = *(tt__IANA_IfTypes__*)q; - break; - case SOAP_TYPE_tt__IPv6DHCPConfiguration_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv6DHCPConfiguration_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv6DHCPConfiguration_*)p = *(tt__IPv6DHCPConfiguration_*)q; - break; - case SOAP_TYPE_tt__NetworkProtocolType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkProtocolType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkProtocolType_*)p = *(tt__NetworkProtocolType_*)q; - break; - case SOAP_TYPE_tt__NetworkHostType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkHostType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkHostType_*)p = *(tt__NetworkHostType_*)q; - break; - case SOAP_TYPE_tt__IPv4Address__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv4Address__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv4Address__*)p = *(tt__IPv4Address__*)q; - break; - case SOAP_TYPE_tt__IPv6Address__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv6Address__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv6Address__*)p = *(tt__IPv6Address__*)q; - break; - case SOAP_TYPE_tt__HwAddress__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__HwAddress__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__HwAddress__*)p = *(tt__HwAddress__*)q; - break; - case SOAP_TYPE_tt__IPType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPType_*)p = *(tt__IPType_*)q; - break; - case SOAP_TYPE_tt__DNSName__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DNSName__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__DNSName__*)p = *(tt__DNSName__*)q; - break; - case SOAP_TYPE_tt__Domain__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Domain__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Domain__*)p = *(tt__Domain__*)q; - break; - case SOAP_TYPE_tt__IPAddressFilterType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPAddressFilterType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPAddressFilterType_*)p = *(tt__IPAddressFilterType_*)q; - break; - case SOAP_TYPE_tt__DynamicDNSType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DynamicDNSType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__DynamicDNSType_*)p = *(tt__DynamicDNSType_*)q; - break; - case SOAP_TYPE_tt__Dot11SSIDType__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11SSIDType__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11SSIDType__*)p = *(tt__Dot11SSIDType__*)q; - break; - case SOAP_TYPE_tt__Dot11StationMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11StationMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11StationMode_*)p = *(tt__Dot11StationMode_*)q; - break; - case SOAP_TYPE_tt__Dot11SecurityMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11SecurityMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11SecurityMode_*)p = *(tt__Dot11SecurityMode_*)q; - break; - case SOAP_TYPE_tt__Dot11Cipher_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11Cipher_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11Cipher_*)p = *(tt__Dot11Cipher_*)q; - break; - case SOAP_TYPE_tt__Dot11PSK__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11PSK__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11PSK__*)p = *(tt__Dot11PSK__*)q; - break; - case SOAP_TYPE_tt__Dot11PSKPassphrase__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11PSKPassphrase__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11PSKPassphrase__*)p = *(tt__Dot11PSKPassphrase__*)q; - break; - case SOAP_TYPE_tt__Dot11SignalStrength_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11SignalStrength_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11SignalStrength_*)p = *(tt__Dot11SignalStrength_*)q; - break; - case SOAP_TYPE_tt__Dot11AuthAndMangementSuite_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11AuthAndMangementSuite_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11AuthAndMangementSuite_*)p = *(tt__Dot11AuthAndMangementSuite_*)q; - break; - case SOAP_TYPE_tt__CapabilityCategory_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CapabilityCategory_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__CapabilityCategory_*)p = *(tt__CapabilityCategory_*)q; - break; - case SOAP_TYPE_tt__SystemLogType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemLogType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemLogType_*)p = *(tt__SystemLogType_*)q; - break; - case SOAP_TYPE_tt__FactoryDefaultType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FactoryDefaultType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__FactoryDefaultType_*)p = *(tt__FactoryDefaultType_*)q; - break; - case SOAP_TYPE_tt__SetDateTimeType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SetDateTimeType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__SetDateTimeType_*)p = *(tt__SetDateTimeType_*)q; - break; - case SOAP_TYPE_tt__UserLevel_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__UserLevel_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__UserLevel_*)p = *(tt__UserLevel_*)q; - break; - case SOAP_TYPE_tt__RelayLogicalState_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelayLogicalState_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelayLogicalState_*)p = *(tt__RelayLogicalState_*)q; - break; - case SOAP_TYPE_tt__RelayIdleState_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelayIdleState_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelayIdleState_*)p = *(tt__RelayIdleState_*)q; - break; - case SOAP_TYPE_tt__RelayMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelayMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelayMode_*)p = *(tt__RelayMode_*)q; - break; - case SOAP_TYPE_tt__DigitalIdleState_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DigitalIdleState_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__DigitalIdleState_*)p = *(tt__DigitalIdleState_*)q; - break; - case SOAP_TYPE_tt__EFlipMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EFlipMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__EFlipMode_*)p = *(tt__EFlipMode_*)q; - break; - case SOAP_TYPE_tt__ReverseMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReverseMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReverseMode_*)p = *(tt__ReverseMode_*)q; - break; - case SOAP_TYPE_tt__AuxiliaryData__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AuxiliaryData__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__AuxiliaryData__*)p = *(tt__AuxiliaryData__*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourState_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourState_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourState_*)p = *(tt__PTZPresetTourState_*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourDirection_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourDirection_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourDirection_*)p = *(tt__PTZPresetTourDirection_*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourOperation_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourOperation_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourOperation_*)p = *(tt__PTZPresetTourOperation_*)q; - break; - case SOAP_TYPE_tt__MoveAndTrackMethod_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MoveAndTrackMethod_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__MoveAndTrackMethod_*)p = *(tt__MoveAndTrackMethod_*)q; - break; - case SOAP_TYPE_tt__AutoFocusMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AutoFocusMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__AutoFocusMode_*)p = *(tt__AutoFocusMode_*)q; - break; - case SOAP_TYPE_tt__AFModes_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AFModes_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__AFModes_*)p = *(tt__AFModes_*)q; - break; - case SOAP_TYPE_tt__WideDynamicMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WideDynamicMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__WideDynamicMode_*)p = *(tt__WideDynamicMode_*)q; - break; - case SOAP_TYPE_tt__BacklightCompensationMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__BacklightCompensationMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__BacklightCompensationMode_*)p = *(tt__BacklightCompensationMode_*)q; - break; - case SOAP_TYPE_tt__ExposurePriority_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ExposurePriority_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ExposurePriority_*)p = *(tt__ExposurePriority_*)q; - break; - case SOAP_TYPE_tt__ExposureMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ExposureMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ExposureMode_*)p = *(tt__ExposureMode_*)q; - break; - case SOAP_TYPE_tt__Enabled_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Enabled_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Enabled_*)p = *(tt__Enabled_*)q; - break; - case SOAP_TYPE_tt__WhiteBalanceMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WhiteBalanceMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__WhiteBalanceMode_*)p = *(tt__WhiteBalanceMode_*)q; - break; - case SOAP_TYPE_tt__IrCutFilterMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IrCutFilterMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IrCutFilterMode_*)p = *(tt__IrCutFilterMode_*)q; - break; - case SOAP_TYPE_tt__ImageStabilizationMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImageStabilizationMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImageStabilizationMode_*)p = *(tt__ImageStabilizationMode_*)q; - break; - case SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IrCutFilterAutoBoundaryType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__IrCutFilterAutoBoundaryType_*)p = *(tt__IrCutFilterAutoBoundaryType_*)q; - break; - case SOAP_TYPE_tt__ToneCompensationMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ToneCompensationMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ToneCompensationMode_*)p = *(tt__ToneCompensationMode_*)q; - break; - case SOAP_TYPE_tt__DefoggingMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DefoggingMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__DefoggingMode_*)p = *(tt__DefoggingMode_*)q; - break; - case SOAP_TYPE_tt__ImageSendingType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImageSendingType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImageSendingType_*)p = *(tt__ImageSendingType_*)q; - break; - case SOAP_TYPE_tt__PropertyOperation_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PropertyOperation_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__PropertyOperation_*)p = *(tt__PropertyOperation_*)q; - break; - case SOAP_TYPE_tt__Direction_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Direction_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Direction_*)p = *(tt__Direction_*)q; - break; - case SOAP_TYPE_tt__ReceiverMode_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReceiverMode_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReceiverMode_*)p = *(tt__ReceiverMode_*)q; - break; - case SOAP_TYPE_tt__ReceiverState_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReceiverState_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReceiverState_*)p = *(tt__ReceiverState_*)q; - break; - case SOAP_TYPE_tt__Description__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Description__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__Description__*)p = *(tt__Description__*)q; - break; - case SOAP_TYPE_tt__XPathExpression__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__XPathExpression__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__XPathExpression__*)p = *(tt__XPathExpression__*)q; - break; - case SOAP_TYPE_tt__SearchState_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SearchState_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__SearchState_*)p = *(tt__SearchState_*)q; - break; - case SOAP_TYPE_tt__RecordingStatus_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingStatus_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingStatus_*)p = *(tt__RecordingStatus_*)q; - break; - case SOAP_TYPE_tt__TrackType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TrackType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__TrackType_*)p = *(tt__TrackType_*)q; - break; - case SOAP_TYPE_tt__RecordingJobMode__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobMode__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobMode__*)p = *(tt__RecordingJobMode__*)q; - break; - case SOAP_TYPE_tt__RecordingJobState__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobState__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobState__*)p = *(tt__RecordingJobState__*)q; - break; - case SOAP_TYPE_tt__ModeOfOperation_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ModeOfOperation_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ModeOfOperation_*)p = *(tt__ModeOfOperation_*)q; - break; - case SOAP_TYPE_tt__AudioClassType__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioClassType__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioClassType__*)p = *(tt__AudioClassType__*)q; - break; - case SOAP_TYPE_tt__OSDType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDType_ type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDType_*)p = *(tt__OSDType_*)q; - break; - case SOAP_TYPE_tmd__SerialPortType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__SerialPortType_ type=%d location=%p object=%p\n", t, p, q)); - *(tmd__SerialPortType_*)p = *(tmd__SerialPortType_*)q; - break; - case SOAP_TYPE_tmd__ParityBit_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__ParityBit_ type=%d location=%p object=%p\n", t, p, q)); - *(tmd__ParityBit_*)p = *(tmd__ParityBit_*)q; - break; - case SOAP_TYPE_tds__AutoGeoModes_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__AutoGeoModes_ type=%d location=%p object=%p\n", t, p, q)); - *(tds__AutoGeoModes_*)p = *(tds__AutoGeoModes_*)q; - break; - case SOAP_TYPE_tds__StorageType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__StorageType_ type=%d location=%p object=%p\n", t, p, q)); - *(tds__StorageType_*)p = *(tds__StorageType_*)q; - break; - case SOAP_TYPE_timg__ImagingPresetType_: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy timg__ImagingPresetType_ type=%d location=%p object=%p\n", t, p, q)); - *(timg__ImagingPresetType_*)p = *(timg__ImagingPresetType_*)q; - break; - case SOAP_TYPE_wstop__FullTopicExpression__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__FullTopicExpression__ type=%d location=%p object=%p\n", t, p, q)); - *(wstop__FullTopicExpression__*)p = *(wstop__FullTopicExpression__*)q; - break; - case SOAP_TYPE_wstop__ConcreteTopicExpression__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__ConcreteTopicExpression__ type=%d location=%p object=%p\n", t, p, q)); - *(wstop__ConcreteTopicExpression__*)p = *(wstop__ConcreteTopicExpression__*)q; - break; - case SOAP_TYPE_wstop__SimpleTopicExpression__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__SimpleTopicExpression__ type=%d location=%p object=%p\n", t, p, q)); - *(wstop__SimpleTopicExpression__*)p = *(wstop__SimpleTopicExpression__*)q; - break; - case SOAP_TYPE_tt__ReceiverReference__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReceiverReference__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReceiverReference__*)p = *(tt__ReceiverReference__*)q; - break; - case SOAP_TYPE_tt__RecordingReference__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingReference__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingReference__*)p = *(tt__RecordingReference__*)q; - break; - case SOAP_TYPE_tt__TrackReference__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TrackReference__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__TrackReference__*)p = *(tt__TrackReference__*)q; - break; - case SOAP_TYPE_tt__JobToken__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__JobToken__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__JobToken__*)p = *(tt__JobToken__*)q; - break; - case SOAP_TYPE_tt__RecordingJobReference__: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobReference__ type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobReference__*)p = *(tt__RecordingJobReference__*)q; - break; - case SOAP_TYPE_wsnt__QueryExpressionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__QueryExpressionType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__QueryExpressionType*)p = *(wsnt__QueryExpressionType*)q; - break; - case SOAP_TYPE_wsnt__TopicExpressionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__TopicExpressionType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__TopicExpressionType*)p = *(wsnt__TopicExpressionType*)q; - break; - case SOAP_TYPE_wsnt__FilterType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__FilterType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__FilterType*)p = *(wsnt__FilterType*)q; - break; - case SOAP_TYPE_wsnt__SubscriptionPolicyType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__SubscriptionPolicyType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__SubscriptionPolicyType*)p = *(wsnt__SubscriptionPolicyType*)q; - break; - case SOAP_TYPE__wsnt__NotificationMessageHolderType_Message: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__NotificationMessageHolderType_Message type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__NotificationMessageHolderType_Message*)p = *(_wsnt__NotificationMessageHolderType_Message*)q; - break; - case SOAP_TYPE_wsnt__NotificationMessageHolderType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__NotificationMessageHolderType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__NotificationMessageHolderType*)p = *(wsnt__NotificationMessageHolderType*)q; - break; - case SOAP_TYPE__wsnt__NotificationProducerRP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__NotificationProducerRP type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__NotificationProducerRP*)p = *(_wsnt__NotificationProducerRP*)q; - break; - case SOAP_TYPE__wsnt__SubscriptionManagerRP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__SubscriptionManagerRP type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__SubscriptionManagerRP*)p = *(_wsnt__SubscriptionManagerRP*)q; - break; - case SOAP_TYPE__wsnt__Notify: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__Notify type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__Notify*)p = *(_wsnt__Notify*)q; - break; - case SOAP_TYPE__wsnt__UseRaw: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__UseRaw type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__UseRaw*)p = *(_wsnt__UseRaw*)q; - break; - case SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__Subscribe_SubscriptionPolicy type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__Subscribe_SubscriptionPolicy*)p = *(_wsnt__Subscribe_SubscriptionPolicy*)q; - break; - case SOAP_TYPE__wsnt__Subscribe: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__Subscribe type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__Subscribe*)p = *(_wsnt__Subscribe*)q; - break; - case SOAP_TYPE__wsnt__SubscribeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__SubscribeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__SubscribeResponse*)p = *(_wsnt__SubscribeResponse*)q; - break; - case SOAP_TYPE__wsnt__GetCurrentMessage: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__GetCurrentMessage type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__GetCurrentMessage*)p = *(_wsnt__GetCurrentMessage*)q; - break; - case SOAP_TYPE__wsnt__GetCurrentMessageResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__GetCurrentMessageResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__GetCurrentMessageResponse*)p = *(_wsnt__GetCurrentMessageResponse*)q; - break; - case SOAP_TYPE__wsnt__GetMessages: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__GetMessages type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__GetMessages*)p = *(_wsnt__GetMessages*)q; - break; - case SOAP_TYPE__wsnt__GetMessagesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__GetMessagesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__GetMessagesResponse*)p = *(_wsnt__GetMessagesResponse*)q; - break; - case SOAP_TYPE__wsnt__DestroyPullPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__DestroyPullPoint type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__DestroyPullPoint*)p = *(_wsnt__DestroyPullPoint*)q; - break; - case SOAP_TYPE__wsnt__DestroyPullPointResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__DestroyPullPointResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__DestroyPullPointResponse*)p = *(_wsnt__DestroyPullPointResponse*)q; - break; - case SOAP_TYPE__wsnt__CreatePullPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__CreatePullPoint type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__CreatePullPoint*)p = *(_wsnt__CreatePullPoint*)q; - break; - case SOAP_TYPE__wsnt__CreatePullPointResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__CreatePullPointResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__CreatePullPointResponse*)p = *(_wsnt__CreatePullPointResponse*)q; - break; - case SOAP_TYPE__wsnt__Renew: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__Renew type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__Renew*)p = *(_wsnt__Renew*)q; - break; - case SOAP_TYPE__wsnt__RenewResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__RenewResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__RenewResponse*)p = *(_wsnt__RenewResponse*)q; - break; - case SOAP_TYPE__wsnt__Unsubscribe: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__Unsubscribe type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__Unsubscribe*)p = *(_wsnt__Unsubscribe*)q; - break; - case SOAP_TYPE__wsnt__UnsubscribeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__UnsubscribeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__UnsubscribeResponse*)p = *(_wsnt__UnsubscribeResponse*)q; - break; - case SOAP_TYPE__wsnt__PauseSubscription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__PauseSubscription type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__PauseSubscription*)p = *(_wsnt__PauseSubscription*)q; - break; - case SOAP_TYPE__wsnt__PauseSubscriptionResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__PauseSubscriptionResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__PauseSubscriptionResponse*)p = *(_wsnt__PauseSubscriptionResponse*)q; - break; - case SOAP_TYPE__wsnt__ResumeSubscription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__ResumeSubscription type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__ResumeSubscription*)p = *(_wsnt__ResumeSubscription*)q; - break; - case SOAP_TYPE__wsnt__ResumeSubscriptionResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsnt__ResumeSubscriptionResponse type=%d location=%p object=%p\n", t, p, q)); - *(_wsnt__ResumeSubscriptionResponse*)p = *(_wsnt__ResumeSubscriptionResponse*)q; - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsrfbf__BaseFaultType_ErrorCode type=%d location=%p object=%p\n", t, p, q)); - *(_wsrfbf__BaseFaultType_ErrorCode*)p = *(_wsrfbf__BaseFaultType_ErrorCode*)q; - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_Description: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsrfbf__BaseFaultType_Description type=%d location=%p object=%p\n", t, p, q)); - *(_wsrfbf__BaseFaultType_Description*)p = *(_wsrfbf__BaseFaultType_Description*)q; - break; - case SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wsrfbf__BaseFaultType_FaultCause type=%d location=%p object=%p\n", t, p, q)); - *(_wsrfbf__BaseFaultType_FaultCause*)p = *(_wsrfbf__BaseFaultType_FaultCause*)q; - break; - case SOAP_TYPE_wsrfbf__BaseFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsrfbf__BaseFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsrfbf__BaseFaultType*)p = *(wsrfbf__BaseFaultType*)q; - break; - case SOAP_TYPE_tev__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tev__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(tev__Capabilities*)p = *(tev__Capabilities*)q; - break; - case SOAP_TYPE_tev__SubscriptionPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tev__SubscriptionPolicy type=%d location=%p object=%p\n", t, p, q)); - *(tev__SubscriptionPolicy*)p = *(tev__SubscriptionPolicy*)q; - break; - case SOAP_TYPE__tev__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tev__GetServiceCapabilities*)p = *(_tev__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__tev__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tev__GetServiceCapabilitiesResponse*)p = *(_tev__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__CreatePullPointSubscription_SubscriptionPolicy type=%d location=%p object=%p\n", t, p, q)); - *(_tev__CreatePullPointSubscription_SubscriptionPolicy*)p = *(_tev__CreatePullPointSubscription_SubscriptionPolicy*)q; - break; - case SOAP_TYPE__tev__CreatePullPointSubscription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__CreatePullPointSubscription type=%d location=%p object=%p\n", t, p, q)); - *(_tev__CreatePullPointSubscription*)p = *(_tev__CreatePullPointSubscription*)q; - break; - case SOAP_TYPE__tev__CreatePullPointSubscriptionResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__CreatePullPointSubscriptionResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tev__CreatePullPointSubscriptionResponse*)p = *(_tev__CreatePullPointSubscriptionResponse*)q; - break; - case SOAP_TYPE__tev__PullMessages: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__PullMessages type=%d location=%p object=%p\n", t, p, q)); - *(_tev__PullMessages*)p = *(_tev__PullMessages*)q; - break; - case SOAP_TYPE__tev__PullMessagesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__PullMessagesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tev__PullMessagesResponse*)p = *(_tev__PullMessagesResponse*)q; - break; - case SOAP_TYPE__tev__PullMessagesFaultResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__PullMessagesFaultResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tev__PullMessagesFaultResponse*)p = *(_tev__PullMessagesFaultResponse*)q; - break; - case SOAP_TYPE__tev__Seek: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__Seek type=%d location=%p object=%p\n", t, p, q)); - *(_tev__Seek*)p = *(_tev__Seek*)q; - break; - case SOAP_TYPE__tev__SeekResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__SeekResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tev__SeekResponse*)p = *(_tev__SeekResponse*)q; - break; - case SOAP_TYPE__tev__SetSynchronizationPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__SetSynchronizationPoint type=%d location=%p object=%p\n", t, p, q)); - *(_tev__SetSynchronizationPoint*)p = *(_tev__SetSynchronizationPoint*)q; - break; - case SOAP_TYPE__tev__SetSynchronizationPointResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__SetSynchronizationPointResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tev__SetSynchronizationPointResponse*)p = *(_tev__SetSynchronizationPointResponse*)q; - break; - case SOAP_TYPE__tev__GetEventProperties: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__GetEventProperties type=%d location=%p object=%p\n", t, p, q)); - *(_tev__GetEventProperties*)p = *(_tev__GetEventProperties*)q; - break; - case SOAP_TYPE__tev__GetEventPropertiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tev__GetEventPropertiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tev__GetEventPropertiesResponse*)p = *(_tev__GetEventPropertiesResponse*)q; - break; - case SOAP_TYPE_tt__IntRange: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IntRange type=%d location=%p object=%p\n", t, p, q)); - *(tt__IntRange*)p = *(tt__IntRange*)q; - break; - case SOAP_TYPE_tt__Vector2D: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Vector2D type=%d location=%p object=%p\n", t, p, q)); - *(tt__Vector2D*)p = *(tt__Vector2D*)q; - break; - case SOAP_TYPE_tt__Vector1D: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Vector1D type=%d location=%p object=%p\n", t, p, q)); - *(tt__Vector1D*)p = *(tt__Vector1D*)q; - break; - case SOAP_TYPE_tt__PTZVector: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZVector type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZVector*)p = *(tt__PTZVector*)q; - break; - case SOAP_TYPE_tt__PTZStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZStatus type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZStatus*)p = *(tt__PTZStatus*)q; - break; - case SOAP_TYPE_tt__PTZMoveStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZMoveStatus type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZMoveStatus*)p = *(tt__PTZMoveStatus*)q; - break; - case SOAP_TYPE_tt__Vector: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Vector type=%d location=%p object=%p\n", t, p, q)); - *(tt__Vector*)p = *(tt__Vector*)q; - break; - case SOAP_TYPE_tt__Rectangle: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Rectangle type=%d location=%p object=%p\n", t, p, q)); - *(tt__Rectangle*)p = *(tt__Rectangle*)q; - break; - case SOAP_TYPE_tt__Polygon: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Polygon type=%d location=%p object=%p\n", t, p, q)); - *(tt__Polygon*)p = *(tt__Polygon*)q; - break; - case SOAP_TYPE_tt__Color: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Color type=%d location=%p object=%p\n", t, p, q)); - *(tt__Color*)p = *(tt__Color*)q; - break; - case SOAP_TYPE_tt__ColorCovariance: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ColorCovariance type=%d location=%p object=%p\n", t, p, q)); - *(tt__ColorCovariance*)p = *(tt__ColorCovariance*)q; - break; - case SOAP_TYPE__tt__ColorDescriptor_ColorCluster: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__ColorDescriptor_ColorCluster type=%d location=%p object=%p\n", t, p, q)); - *(_tt__ColorDescriptor_ColorCluster*)p = *(_tt__ColorDescriptor_ColorCluster*)q; - break; - case SOAP_TYPE_tt__ColorDescriptor: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ColorDescriptor type=%d location=%p object=%p\n", t, p, q)); - *(tt__ColorDescriptor*)p = *(tt__ColorDescriptor*)q; - break; - case SOAP_TYPE_tt__Transformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Transformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__Transformation*)p = *(tt__Transformation*)q; - break; - case SOAP_TYPE_tt__TransformationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TransformationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__TransformationExtension*)p = *(tt__TransformationExtension*)q; - break; - case SOAP_TYPE_tt__GeoLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__GeoLocation type=%d location=%p object=%p\n", t, p, q)); - *(tt__GeoLocation*)p = *(tt__GeoLocation*)q; - break; - case SOAP_TYPE_tt__GeoOrientation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__GeoOrientation type=%d location=%p object=%p\n", t, p, q)); - *(tt__GeoOrientation*)p = *(tt__GeoOrientation*)q; - break; - case SOAP_TYPE_tt__LocalLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LocalLocation type=%d location=%p object=%p\n", t, p, q)); - *(tt__LocalLocation*)p = *(tt__LocalLocation*)q; - break; - case SOAP_TYPE_tt__LocalOrientation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LocalOrientation type=%d location=%p object=%p\n", t, p, q)); - *(tt__LocalOrientation*)p = *(tt__LocalOrientation*)q; - break; - case SOAP_TYPE_tt__LocationEntity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LocationEntity type=%d location=%p object=%p\n", t, p, q)); - *(tt__LocationEntity*)p = *(tt__LocationEntity*)q; - break; - case SOAP_TYPE_tt__DeviceEntity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DeviceEntity type=%d location=%p object=%p\n", t, p, q)); - *(tt__DeviceEntity*)p = *(tt__DeviceEntity*)q; - break; - case SOAP_TYPE_tt__IntRectangle: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IntRectangle type=%d location=%p object=%p\n", t, p, q)); - *(tt__IntRectangle*)p = *(tt__IntRectangle*)q; - break; - case SOAP_TYPE_tt__IntRectangleRange: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IntRectangleRange type=%d location=%p object=%p\n", t, p, q)); - *(tt__IntRectangleRange*)p = *(tt__IntRectangleRange*)q; - break; - case SOAP_TYPE_tt__FloatRange: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FloatRange type=%d location=%p object=%p\n", t, p, q)); - *(tt__FloatRange*)p = *(tt__FloatRange*)q; - break; - case SOAP_TYPE_tt__DurationRange: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DurationRange type=%d location=%p object=%p\n", t, p, q)); - *(tt__DurationRange*)p = *(tt__DurationRange*)q; - break; - case SOAP_TYPE_tt__IntItems: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IntItems type=%d location=%p object=%p\n", t, p, q)); - *(tt__IntItems*)p = *(tt__IntItems*)q; - break; - case SOAP_TYPE_tt__FloatItems: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FloatItems type=%d location=%p object=%p\n", t, p, q)); - *(tt__FloatItems*)p = *(tt__FloatItems*)q; - break; - case SOAP_TYPE_tt__AnyHolder: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnyHolder type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnyHolder*)p = *(tt__AnyHolder*)q; - break; - case SOAP_TYPE_tt__VideoSourceExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceExtension*)p = *(tt__VideoSourceExtension*)q; - break; - case SOAP_TYPE_tt__VideoSourceExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceExtension2*)p = *(tt__VideoSourceExtension2*)q; - break; - case SOAP_TYPE_tt__Profile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Profile type=%d location=%p object=%p\n", t, p, q)); - *(tt__Profile*)p = *(tt__Profile*)q; - break; - case SOAP_TYPE_tt__ProfileExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ProfileExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ProfileExtension*)p = *(tt__ProfileExtension*)q; - break; - case SOAP_TYPE_tt__ProfileExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ProfileExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ProfileExtension2*)p = *(tt__ProfileExtension2*)q; - break; - case SOAP_TYPE_tt__ConfigurationEntity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ConfigurationEntity type=%d location=%p object=%p\n", t, p, q)); - *(tt__ConfigurationEntity*)p = *(tt__ConfigurationEntity*)q; - break; - case SOAP_TYPE_tt__VideoSourceConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceConfigurationExtension*)p = *(tt__VideoSourceConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__VideoSourceConfigurationExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceConfigurationExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceConfigurationExtension2*)p = *(tt__VideoSourceConfigurationExtension2*)q; - break; - case SOAP_TYPE_tt__Rotate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Rotate type=%d location=%p object=%p\n", t, p, q)); - *(tt__Rotate*)p = *(tt__Rotate*)q; - break; - case SOAP_TYPE_tt__RotateExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RotateExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__RotateExtension*)p = *(tt__RotateExtension*)q; - break; - case SOAP_TYPE_tt__LensProjection: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LensProjection type=%d location=%p object=%p\n", t, p, q)); - *(tt__LensProjection*)p = *(tt__LensProjection*)q; - break; - case SOAP_TYPE_tt__LensOffset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LensOffset type=%d location=%p object=%p\n", t, p, q)); - *(tt__LensOffset*)p = *(tt__LensOffset*)q; - break; - case SOAP_TYPE_tt__LensDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LensDescription type=%d location=%p object=%p\n", t, p, q)); - *(tt__LensDescription*)p = *(tt__LensDescription*)q; - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceConfigurationOptions*)p = *(tt__VideoSourceConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceConfigurationOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceConfigurationOptionsExtension*)p = *(tt__VideoSourceConfigurationOptionsExtension*)q; - break; - case SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceConfigurationOptionsExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceConfigurationOptionsExtension2*)p = *(tt__VideoSourceConfigurationOptionsExtension2*)q; - break; - case SOAP_TYPE_tt__RotateOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RotateOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__RotateOptions*)p = *(tt__RotateOptions*)q; - break; - case SOAP_TYPE_tt__RotateOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RotateOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__RotateOptionsExtension*)p = *(tt__RotateOptionsExtension*)q; - break; - case SOAP_TYPE_tt__SceneOrientation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SceneOrientation type=%d location=%p object=%p\n", t, p, q)); - *(tt__SceneOrientation*)p = *(tt__SceneOrientation*)q; - break; - case SOAP_TYPE_tt__VideoResolution: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoResolution type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoResolution*)p = *(tt__VideoResolution*)q; - break; - case SOAP_TYPE_tt__VideoRateControl: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoRateControl type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoRateControl*)p = *(tt__VideoRateControl*)q; - break; - case SOAP_TYPE_tt__Mpeg4Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Mpeg4Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__Mpeg4Configuration*)p = *(tt__Mpeg4Configuration*)q; - break; - case SOAP_TYPE_tt__H264Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__H264Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__H264Configuration*)p = *(tt__H264Configuration*)q; - break; - case SOAP_TYPE_tt__VideoEncoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncoderConfigurationOptions*)p = *(tt__VideoEncoderConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__VideoEncoderOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncoderOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncoderOptionsExtension*)p = *(tt__VideoEncoderOptionsExtension*)q; - break; - case SOAP_TYPE_tt__VideoEncoderOptionsExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncoderOptionsExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncoderOptionsExtension2*)p = *(tt__VideoEncoderOptionsExtension2*)q; - break; - case SOAP_TYPE_tt__JpegOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__JpegOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__JpegOptions*)p = *(tt__JpegOptions*)q; - break; - case SOAP_TYPE_tt__Mpeg4Options: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Mpeg4Options type=%d location=%p object=%p\n", t, p, q)); - *(tt__Mpeg4Options*)p = *(tt__Mpeg4Options*)q; - break; - case SOAP_TYPE_tt__H264Options: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__H264Options type=%d location=%p object=%p\n", t, p, q)); - *(tt__H264Options*)p = *(tt__H264Options*)q; - break; - case SOAP_TYPE_tt__VideoResolution2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoResolution2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoResolution2*)p = *(tt__VideoResolution2*)q; - break; - case SOAP_TYPE_tt__VideoRateControl2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoRateControl2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoRateControl2*)p = *(tt__VideoRateControl2*)q; - break; - case SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncoder2ConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncoder2ConfigurationOptions*)p = *(tt__VideoEncoder2ConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__AudioSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioSourceConfigurationOptions*)p = *(tt__AudioSourceConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__AudioSourceOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioSourceOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioSourceOptionsExtension*)p = *(tt__AudioSourceOptionsExtension*)q; - break; - case SOAP_TYPE_tt__AudioEncoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioEncoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioEncoderConfigurationOptions*)p = *(tt__AudioEncoderConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__AudioEncoderConfigurationOption: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioEncoderConfigurationOption type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioEncoderConfigurationOption*)p = *(tt__AudioEncoderConfigurationOption*)q; - break; - case SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioEncoder2ConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioEncoder2ConfigurationOptions*)p = *(tt__AudioEncoder2ConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__MetadataConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataConfigurationExtension*)p = *(tt__MetadataConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__PTZFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZFilter type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZFilter*)p = *(tt__PTZFilter*)q; - break; - case SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__EventSubscription_SubscriptionPolicy type=%d location=%p object=%p\n", t, p, q)); - *(_tt__EventSubscription_SubscriptionPolicy*)p = *(_tt__EventSubscription_SubscriptionPolicy*)q; - break; - case SOAP_TYPE_tt__EventSubscription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EventSubscription type=%d location=%p object=%p\n", t, p, q)); - *(tt__EventSubscription*)p = *(tt__EventSubscription*)q; - break; - case SOAP_TYPE_tt__MetadataConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataConfigurationOptions*)p = *(tt__MetadataConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataConfigurationOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataConfigurationOptionsExtension*)p = *(tt__MetadataConfigurationOptionsExtension*)q; - break; - case SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataConfigurationOptionsExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataConfigurationOptionsExtension2*)p = *(tt__MetadataConfigurationOptionsExtension2*)q; - break; - case SOAP_TYPE_tt__PTZStatusFilterOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZStatusFilterOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZStatusFilterOptions*)p = *(tt__PTZStatusFilterOptions*)q; - break; - case SOAP_TYPE_tt__PTZStatusFilterOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZStatusFilterOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZStatusFilterOptionsExtension*)p = *(tt__PTZStatusFilterOptionsExtension*)q; - break; - case SOAP_TYPE_tt__VideoOutputExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoOutputExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoOutputExtension*)p = *(tt__VideoOutputExtension*)q; - break; - case SOAP_TYPE_tt__VideoOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoOutputConfigurationOptions*)p = *(tt__VideoOutputConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__VideoDecoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoDecoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoDecoderConfigurationOptions*)p = *(tt__VideoDecoderConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__H264DecOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__H264DecOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__H264DecOptions*)p = *(tt__H264DecOptions*)q; - break; - case SOAP_TYPE_tt__JpegDecOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__JpegDecOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__JpegDecOptions*)p = *(tt__JpegDecOptions*)q; - break; - case SOAP_TYPE_tt__Mpeg4DecOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Mpeg4DecOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__Mpeg4DecOptions*)p = *(tt__Mpeg4DecOptions*)q; - break; - case SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoDecoderConfigurationOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoDecoderConfigurationOptionsExtension*)p = *(tt__VideoDecoderConfigurationOptionsExtension*)q; - break; - case SOAP_TYPE_tt__AudioOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioOutputConfigurationOptions*)p = *(tt__AudioOutputConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__AudioDecoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioDecoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioDecoderConfigurationOptions*)p = *(tt__AudioDecoderConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__G711DecOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__G711DecOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__G711DecOptions*)p = *(tt__G711DecOptions*)q; - break; - case SOAP_TYPE_tt__AACDecOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AACDecOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__AACDecOptions*)p = *(tt__AACDecOptions*)q; - break; - case SOAP_TYPE_tt__G726DecOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__G726DecOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__G726DecOptions*)p = *(tt__G726DecOptions*)q; - break; - case SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioDecoderConfigurationOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioDecoderConfigurationOptionsExtension*)p = *(tt__AudioDecoderConfigurationOptionsExtension*)q; - break; - case SOAP_TYPE_tt__MulticastConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MulticastConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__MulticastConfiguration*)p = *(tt__MulticastConfiguration*)q; - break; - case SOAP_TYPE_tt__StreamSetup: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__StreamSetup type=%d location=%p object=%p\n", t, p, q)); - *(tt__StreamSetup*)p = *(tt__StreamSetup*)q; - break; - case SOAP_TYPE_tt__Transport: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Transport type=%d location=%p object=%p\n", t, p, q)); - *(tt__Transport*)p = *(tt__Transport*)q; - break; - case SOAP_TYPE_tt__MediaUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MediaUri type=%d location=%p object=%p\n", t, p, q)); - *(tt__MediaUri*)p = *(tt__MediaUri*)q; - break; - case SOAP_TYPE_tt__Scope: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Scope type=%d location=%p object=%p\n", t, p, q)); - *(tt__Scope*)p = *(tt__Scope*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceExtension*)p = *(tt__NetworkInterfaceExtension*)q; - break; - case SOAP_TYPE_tt__Dot3Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot3Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot3Configuration*)p = *(tt__Dot3Configuration*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceExtension2*)p = *(tt__NetworkInterfaceExtension2*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceLink: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceLink type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceLink*)p = *(tt__NetworkInterfaceLink*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceConnectionSetting: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceConnectionSetting type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceConnectionSetting*)p = *(tt__NetworkInterfaceConnectionSetting*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceInfo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceInfo type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceInfo*)p = *(tt__NetworkInterfaceInfo*)q; - break; - case SOAP_TYPE_tt__IPv6NetworkInterface: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv6NetworkInterface type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv6NetworkInterface*)p = *(tt__IPv6NetworkInterface*)q; - break; - case SOAP_TYPE_tt__IPv4NetworkInterface: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv4NetworkInterface type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv4NetworkInterface*)p = *(tt__IPv4NetworkInterface*)q; - break; - case SOAP_TYPE_tt__IPv4Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv4Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv4Configuration*)p = *(tt__IPv4Configuration*)q; - break; - case SOAP_TYPE_tt__IPv6Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv6Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv6Configuration*)p = *(tt__IPv6Configuration*)q; - break; - case SOAP_TYPE_tt__IPv6ConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv6ConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv6ConfigurationExtension*)p = *(tt__IPv6ConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__NetworkProtocol: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkProtocol type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkProtocol*)p = *(tt__NetworkProtocol*)q; - break; - case SOAP_TYPE_tt__NetworkProtocolExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkProtocolExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkProtocolExtension*)p = *(tt__NetworkProtocolExtension*)q; - break; - case SOAP_TYPE_tt__NetworkHost: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkHost type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkHost*)p = *(tt__NetworkHost*)q; - break; - case SOAP_TYPE_tt__NetworkHostExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkHostExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkHostExtension*)p = *(tt__NetworkHostExtension*)q; - break; - case SOAP_TYPE_tt__IPAddress: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPAddress type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPAddress*)p = *(tt__IPAddress*)q; - break; - case SOAP_TYPE_tt__PrefixedIPv4Address: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PrefixedIPv4Address type=%d location=%p object=%p\n", t, p, q)); - *(tt__PrefixedIPv4Address*)p = *(tt__PrefixedIPv4Address*)q; - break; - case SOAP_TYPE_tt__PrefixedIPv6Address: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PrefixedIPv6Address type=%d location=%p object=%p\n", t, p, q)); - *(tt__PrefixedIPv6Address*)p = *(tt__PrefixedIPv6Address*)q; - break; - case SOAP_TYPE_tt__HostnameInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__HostnameInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__HostnameInformation*)p = *(tt__HostnameInformation*)q; - break; - case SOAP_TYPE_tt__HostnameInformationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__HostnameInformationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__HostnameInformationExtension*)p = *(tt__HostnameInformationExtension*)q; - break; - case SOAP_TYPE_tt__DNSInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DNSInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__DNSInformation*)p = *(tt__DNSInformation*)q; - break; - case SOAP_TYPE_tt__DNSInformationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DNSInformationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__DNSInformationExtension*)p = *(tt__DNSInformationExtension*)q; - break; - case SOAP_TYPE_tt__NTPInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NTPInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__NTPInformation*)p = *(tt__NTPInformation*)q; - break; - case SOAP_TYPE_tt__NTPInformationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NTPInformationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__NTPInformationExtension*)p = *(tt__NTPInformationExtension*)q; - break; - case SOAP_TYPE_tt__DynamicDNSInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DynamicDNSInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__DynamicDNSInformation*)p = *(tt__DynamicDNSInformation*)q; - break; - case SOAP_TYPE_tt__DynamicDNSInformationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DynamicDNSInformationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__DynamicDNSInformationExtension*)p = *(tt__DynamicDNSInformationExtension*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceSetConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceSetConfiguration*)p = *(tt__NetworkInterfaceSetConfiguration*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceSetConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceSetConfigurationExtension*)p = *(tt__NetworkInterfaceSetConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv6NetworkInterfaceSetConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv6NetworkInterfaceSetConfiguration*)p = *(tt__IPv6NetworkInterfaceSetConfiguration*)q; - break; - case SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPv4NetworkInterfaceSetConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPv4NetworkInterfaceSetConfiguration*)p = *(tt__IPv4NetworkInterfaceSetConfiguration*)q; - break; - case SOAP_TYPE_tt__NetworkGateway: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkGateway type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkGateway*)p = *(tt__NetworkGateway*)q; - break; - case SOAP_TYPE_tt__NetworkZeroConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkZeroConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkZeroConfiguration*)p = *(tt__NetworkZeroConfiguration*)q; - break; - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkZeroConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkZeroConfigurationExtension*)p = *(tt__NetworkZeroConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__NetworkZeroConfigurationExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkZeroConfigurationExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkZeroConfigurationExtension2*)p = *(tt__NetworkZeroConfigurationExtension2*)q; - break; - case SOAP_TYPE_tt__IPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPAddressFilter*)p = *(tt__IPAddressFilter*)q; - break; - case SOAP_TYPE_tt__IPAddressFilterExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IPAddressFilterExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__IPAddressFilterExtension*)p = *(tt__IPAddressFilterExtension*)q; - break; - case SOAP_TYPE_tt__Dot11Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11Configuration*)p = *(tt__Dot11Configuration*)q; - break; - case SOAP_TYPE_tt__Dot11SecurityConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11SecurityConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11SecurityConfiguration*)p = *(tt__Dot11SecurityConfiguration*)q; - break; - case SOAP_TYPE_tt__Dot11SecurityConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11SecurityConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11SecurityConfigurationExtension*)p = *(tt__Dot11SecurityConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__Dot11PSKSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11PSKSet type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11PSKSet*)p = *(tt__Dot11PSKSet*)q; - break; - case SOAP_TYPE_tt__Dot11PSKSetExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11PSKSetExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11PSKSetExtension*)p = *(tt__Dot11PSKSetExtension*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterfaceSetConfigurationExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterfaceSetConfigurationExtension2*)p = *(tt__NetworkInterfaceSetConfigurationExtension2*)q; - break; - case SOAP_TYPE_tt__Dot11Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11Capabilities*)p = *(tt__Dot11Capabilities*)q; - break; - case SOAP_TYPE_tt__Dot11Status: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11Status type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11Status*)p = *(tt__Dot11Status*)q; - break; - case SOAP_TYPE_tt__Dot11AvailableNetworks: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11AvailableNetworks type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11AvailableNetworks*)p = *(tt__Dot11AvailableNetworks*)q; - break; - case SOAP_TYPE_tt__Dot11AvailableNetworksExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot11AvailableNetworksExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot11AvailableNetworksExtension*)p = *(tt__Dot11AvailableNetworksExtension*)q; - break; - case SOAP_TYPE_tt__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__Capabilities*)p = *(tt__Capabilities*)q; - break; - case SOAP_TYPE_tt__CapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__CapabilitiesExtension*)p = *(tt__CapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__CapabilitiesExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CapabilitiesExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__CapabilitiesExtension2*)p = *(tt__CapabilitiesExtension2*)q; - break; - case SOAP_TYPE_tt__AnalyticsCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsCapabilities*)p = *(tt__AnalyticsCapabilities*)q; - break; - case SOAP_TYPE_tt__DeviceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DeviceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__DeviceCapabilities*)p = *(tt__DeviceCapabilities*)q; - break; - case SOAP_TYPE_tt__DeviceCapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DeviceCapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__DeviceCapabilitiesExtension*)p = *(tt__DeviceCapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__EventCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EventCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__EventCapabilities*)p = *(tt__EventCapabilities*)q; - break; - case SOAP_TYPE_tt__IOCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IOCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__IOCapabilities*)p = *(tt__IOCapabilities*)q; - break; - case SOAP_TYPE_tt__IOCapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IOCapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__IOCapabilitiesExtension*)p = *(tt__IOCapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__IOCapabilitiesExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IOCapabilitiesExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__IOCapabilitiesExtension2*)p = *(tt__IOCapabilitiesExtension2*)q; - break; - case SOAP_TYPE_tt__MediaCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MediaCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__MediaCapabilities*)p = *(tt__MediaCapabilities*)q; - break; - case SOAP_TYPE_tt__MediaCapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MediaCapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__MediaCapabilitiesExtension*)p = *(tt__MediaCapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__RealTimeStreamingCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RealTimeStreamingCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__RealTimeStreamingCapabilities*)p = *(tt__RealTimeStreamingCapabilities*)q; - break; - case SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RealTimeStreamingCapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__RealTimeStreamingCapabilitiesExtension*)p = *(tt__RealTimeStreamingCapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__ProfileCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ProfileCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__ProfileCapabilities*)p = *(tt__ProfileCapabilities*)q; - break; - case SOAP_TYPE_tt__NetworkCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkCapabilities*)p = *(tt__NetworkCapabilities*)q; - break; - case SOAP_TYPE_tt__NetworkCapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkCapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkCapabilitiesExtension*)p = *(tt__NetworkCapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__NetworkCapabilitiesExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkCapabilitiesExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkCapabilitiesExtension2*)p = *(tt__NetworkCapabilitiesExtension2*)q; - break; - case SOAP_TYPE_tt__SecurityCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SecurityCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__SecurityCapabilities*)p = *(tt__SecurityCapabilities*)q; - break; - case SOAP_TYPE_tt__SecurityCapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SecurityCapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__SecurityCapabilitiesExtension*)p = *(tt__SecurityCapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__SecurityCapabilitiesExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SecurityCapabilitiesExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__SecurityCapabilitiesExtension2*)p = *(tt__SecurityCapabilitiesExtension2*)q; - break; - case SOAP_TYPE_tt__SystemCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemCapabilities*)p = *(tt__SystemCapabilities*)q; - break; - case SOAP_TYPE_tt__SystemCapabilitiesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemCapabilitiesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemCapabilitiesExtension*)p = *(tt__SystemCapabilitiesExtension*)q; - break; - case SOAP_TYPE_tt__SystemCapabilitiesExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemCapabilitiesExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemCapabilitiesExtension2*)p = *(tt__SystemCapabilitiesExtension2*)q; - break; - case SOAP_TYPE_tt__OnvifVersion: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OnvifVersion type=%d location=%p object=%p\n", t, p, q)); - *(tt__OnvifVersion*)p = *(tt__OnvifVersion*)q; - break; - case SOAP_TYPE_tt__ImagingCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingCapabilities*)p = *(tt__ImagingCapabilities*)q; - break; - case SOAP_TYPE_tt__PTZCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZCapabilities*)p = *(tt__PTZCapabilities*)q; - break; - case SOAP_TYPE_tt__DeviceIOCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DeviceIOCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__DeviceIOCapabilities*)p = *(tt__DeviceIOCapabilities*)q; - break; - case SOAP_TYPE_tt__DisplayCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DisplayCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__DisplayCapabilities*)p = *(tt__DisplayCapabilities*)q; - break; - case SOAP_TYPE_tt__RecordingCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingCapabilities*)p = *(tt__RecordingCapabilities*)q; - break; - case SOAP_TYPE_tt__SearchCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SearchCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__SearchCapabilities*)p = *(tt__SearchCapabilities*)q; - break; - case SOAP_TYPE_tt__ReplayCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReplayCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReplayCapabilities*)p = *(tt__ReplayCapabilities*)q; - break; - case SOAP_TYPE_tt__ReceiverCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReceiverCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReceiverCapabilities*)p = *(tt__ReceiverCapabilities*)q; - break; - case SOAP_TYPE_tt__AnalyticsDeviceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsDeviceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsDeviceCapabilities*)p = *(tt__AnalyticsDeviceCapabilities*)q; - break; - case SOAP_TYPE_tt__AnalyticsDeviceExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsDeviceExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsDeviceExtension*)p = *(tt__AnalyticsDeviceExtension*)q; - break; - case SOAP_TYPE_tt__SystemLog: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemLog type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemLog*)p = *(tt__SystemLog*)q; - break; - case SOAP_TYPE_tt__SupportInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SupportInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__SupportInformation*)p = *(tt__SupportInformation*)q; - break; - case SOAP_TYPE_tt__BinaryData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__BinaryData type=%d location=%p object=%p\n", t, p, q)); - *(tt__BinaryData*)p = *(tt__BinaryData*)q; - break; - case SOAP_TYPE_tt__AttachmentData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AttachmentData type=%d location=%p object=%p\n", t, p, q)); - *(tt__AttachmentData*)p = *(tt__AttachmentData*)q; - break; - case SOAP_TYPE_tt__BackupFile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__BackupFile type=%d location=%p object=%p\n", t, p, q)); - *(tt__BackupFile*)p = *(tt__BackupFile*)q; - break; - case SOAP_TYPE_tt__SystemLogUriList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemLogUriList type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemLogUriList*)p = *(tt__SystemLogUriList*)q; - break; - case SOAP_TYPE_tt__SystemLogUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemLogUri type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemLogUri*)p = *(tt__SystemLogUri*)q; - break; - case SOAP_TYPE_tt__SystemDateTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemDateTime type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemDateTime*)p = *(tt__SystemDateTime*)q; - break; - case SOAP_TYPE_tt__SystemDateTimeExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SystemDateTimeExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__SystemDateTimeExtension*)p = *(tt__SystemDateTimeExtension*)q; - break; - case SOAP_TYPE_tt__DateTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DateTime type=%d location=%p object=%p\n", t, p, q)); - *(tt__DateTime*)p = *(tt__DateTime*)q; - break; - case SOAP_TYPE_tt__Date: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Date type=%d location=%p object=%p\n", t, p, q)); - *(tt__Date*)p = *(tt__Date*)q; - break; - case SOAP_TYPE_tt__Time: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Time type=%d location=%p object=%p\n", t, p, q)); - *(tt__Time*)p = *(tt__Time*)q; - break; - case SOAP_TYPE_tt__TimeZone: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TimeZone type=%d location=%p object=%p\n", t, p, q)); - *(tt__TimeZone*)p = *(tt__TimeZone*)q; - break; - case SOAP_TYPE_tt__RemoteUser: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RemoteUser type=%d location=%p object=%p\n", t, p, q)); - *(tt__RemoteUser*)p = *(tt__RemoteUser*)q; - break; - case SOAP_TYPE_tt__User: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__User type=%d location=%p object=%p\n", t, p, q)); - *(tt__User*)p = *(tt__User*)q; - break; - case SOAP_TYPE_tt__UserExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__UserExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__UserExtension*)p = *(tt__UserExtension*)q; - break; - case SOAP_TYPE_tt__CertificateGenerationParameters: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CertificateGenerationParameters type=%d location=%p object=%p\n", t, p, q)); - *(tt__CertificateGenerationParameters*)p = *(tt__CertificateGenerationParameters*)q; - break; - case SOAP_TYPE_tt__CertificateGenerationParametersExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CertificateGenerationParametersExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__CertificateGenerationParametersExtension*)p = *(tt__CertificateGenerationParametersExtension*)q; - break; - case SOAP_TYPE_tt__Certificate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Certificate type=%d location=%p object=%p\n", t, p, q)); - *(tt__Certificate*)p = *(tt__Certificate*)q; - break; - case SOAP_TYPE_tt__CertificateStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CertificateStatus type=%d location=%p object=%p\n", t, p, q)); - *(tt__CertificateStatus*)p = *(tt__CertificateStatus*)q; - break; - case SOAP_TYPE_tt__CertificateWithPrivateKey: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CertificateWithPrivateKey type=%d location=%p object=%p\n", t, p, q)); - *(tt__CertificateWithPrivateKey*)p = *(tt__CertificateWithPrivateKey*)q; - break; - case SOAP_TYPE_tt__CertificateInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CertificateInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__CertificateInformation*)p = *(tt__CertificateInformation*)q; - break; - case SOAP_TYPE_tt__CertificateInformationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CertificateInformationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__CertificateInformationExtension*)p = *(tt__CertificateInformationExtension*)q; - break; - case SOAP_TYPE_tt__Dot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot1XConfiguration*)p = *(tt__Dot1XConfiguration*)q; - break; - case SOAP_TYPE_tt__Dot1XConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Dot1XConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__Dot1XConfigurationExtension*)p = *(tt__Dot1XConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__EAPMethodConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EAPMethodConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__EAPMethodConfiguration*)p = *(tt__EAPMethodConfiguration*)q; - break; - case SOAP_TYPE_tt__EapMethodExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EapMethodExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__EapMethodExtension*)p = *(tt__EapMethodExtension*)q; - break; - case SOAP_TYPE_tt__TLSConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TLSConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__TLSConfiguration*)p = *(tt__TLSConfiguration*)q; - break; - case SOAP_TYPE_tt__GenericEapPwdConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__GenericEapPwdConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__GenericEapPwdConfigurationExtension*)p = *(tt__GenericEapPwdConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__RelayOutputSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelayOutputSettings type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelayOutputSettings*)p = *(tt__RelayOutputSettings*)q; - break; - case SOAP_TYPE_tt__PTZNodeExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZNodeExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZNodeExtension*)p = *(tt__PTZNodeExtension*)q; - break; - case SOAP_TYPE_tt__PTZNodeExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZNodeExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZNodeExtension2*)p = *(tt__PTZNodeExtension2*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourSupported: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourSupported type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourSupported*)p = *(tt__PTZPresetTourSupported*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourSupportedExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourSupportedExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourSupportedExtension*)p = *(tt__PTZPresetTourSupportedExtension*)q; - break; - case SOAP_TYPE_tt__PTZConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZConfigurationExtension*)p = *(tt__PTZConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__PTZConfigurationExtension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZConfigurationExtension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZConfigurationExtension2*)p = *(tt__PTZConfigurationExtension2*)q; - break; - case SOAP_TYPE_tt__PTControlDirection: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTControlDirection type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTControlDirection*)p = *(tt__PTControlDirection*)q; - break; - case SOAP_TYPE_tt__PTControlDirectionExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTControlDirectionExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTControlDirectionExtension*)p = *(tt__PTControlDirectionExtension*)q; - break; - case SOAP_TYPE_tt__EFlip: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EFlip type=%d location=%p object=%p\n", t, p, q)); - *(tt__EFlip*)p = *(tt__EFlip*)q; - break; - case SOAP_TYPE_tt__Reverse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Reverse type=%d location=%p object=%p\n", t, p, q)); - *(tt__Reverse*)p = *(tt__Reverse*)q; - break; - case SOAP_TYPE_tt__PTZConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZConfigurationOptions*)p = *(tt__PTZConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__PTZConfigurationOptions2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZConfigurationOptions2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZConfigurationOptions2*)p = *(tt__PTZConfigurationOptions2*)q; - break; - case SOAP_TYPE_tt__PTControlDirectionOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTControlDirectionOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTControlDirectionOptions*)p = *(tt__PTControlDirectionOptions*)q; - break; - case SOAP_TYPE_tt__PTControlDirectionOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTControlDirectionOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTControlDirectionOptionsExtension*)p = *(tt__PTControlDirectionOptionsExtension*)q; - break; - case SOAP_TYPE_tt__EFlipOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EFlipOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__EFlipOptions*)p = *(tt__EFlipOptions*)q; - break; - case SOAP_TYPE_tt__EFlipOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EFlipOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__EFlipOptionsExtension*)p = *(tt__EFlipOptionsExtension*)q; - break; - case SOAP_TYPE_tt__ReverseOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReverseOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReverseOptions*)p = *(tt__ReverseOptions*)q; - break; - case SOAP_TYPE_tt__ReverseOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReverseOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReverseOptionsExtension*)p = *(tt__ReverseOptionsExtension*)q; - break; - case SOAP_TYPE_tt__PanTiltLimits: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PanTiltLimits type=%d location=%p object=%p\n", t, p, q)); - *(tt__PanTiltLimits*)p = *(tt__PanTiltLimits*)q; - break; - case SOAP_TYPE_tt__ZoomLimits: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ZoomLimits type=%d location=%p object=%p\n", t, p, q)); - *(tt__ZoomLimits*)p = *(tt__ZoomLimits*)q; - break; - case SOAP_TYPE_tt__PTZSpaces: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZSpaces type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZSpaces*)p = *(tt__PTZSpaces*)q; - break; - case SOAP_TYPE_tt__PTZSpacesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZSpacesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZSpacesExtension*)p = *(tt__PTZSpacesExtension*)q; - break; - case SOAP_TYPE_tt__Space2DDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Space2DDescription type=%d location=%p object=%p\n", t, p, q)); - *(tt__Space2DDescription*)p = *(tt__Space2DDescription*)q; - break; - case SOAP_TYPE_tt__Space1DDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Space1DDescription type=%d location=%p object=%p\n", t, p, q)); - *(tt__Space1DDescription*)p = *(tt__Space1DDescription*)q; - break; - case SOAP_TYPE_tt__PTZSpeed: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZSpeed type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZSpeed*)p = *(tt__PTZSpeed*)q; - break; - case SOAP_TYPE_tt__PTZPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPreset type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPreset*)p = *(tt__PTZPreset*)q; - break; - case SOAP_TYPE_tt__PresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PresetTour type=%d location=%p object=%p\n", t, p, q)); - *(tt__PresetTour*)p = *(tt__PresetTour*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourExtension*)p = *(tt__PTZPresetTourExtension*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourSpot: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourSpot type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourSpot*)p = *(tt__PTZPresetTourSpot*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourSpotExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourSpotExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourSpotExtension*)p = *(tt__PTZPresetTourSpotExtension*)q; - break; - case SOAP_TYPE__tt__union_PTZPresetTourPresetDetail: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy union _tt__union_PTZPresetTourPresetDetail type=%d location=%p object=%p\n", t, p, q)); - *(union _tt__union_PTZPresetTourPresetDetail*)p = *(union _tt__union_PTZPresetTourPresetDetail*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetail: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourPresetDetail type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourPresetDetail*)p = *(tt__PTZPresetTourPresetDetail*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourTypeExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourTypeExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourTypeExtension*)p = *(tt__PTZPresetTourTypeExtension*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourStatus type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourStatus*)p = *(tt__PTZPresetTourStatus*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourStatusExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourStatusExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourStatusExtension*)p = *(tt__PTZPresetTourStatusExtension*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourStartingCondition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourStartingCondition type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourStartingCondition*)p = *(tt__PTZPresetTourStartingCondition*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourStartingConditionExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourStartingConditionExtension*)p = *(tt__PTZPresetTourStartingConditionExtension*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourOptions*)p = *(tt__PTZPresetTourOptions*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourSpotOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourSpotOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourSpotOptions*)p = *(tt__PTZPresetTourSpotOptions*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourPresetDetailOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourPresetDetailOptions*)p = *(tt__PTZPresetTourPresetDetailOptions*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourPresetDetailOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourPresetDetailOptionsExtension*)p = *(tt__PTZPresetTourPresetDetailOptionsExtension*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourStartingConditionOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourStartingConditionOptions*)p = *(tt__PTZPresetTourStartingConditionOptions*)q; - break; - case SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPresetTourStartingConditionOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPresetTourStartingConditionOptionsExtension*)p = *(tt__PTZPresetTourStartingConditionOptionsExtension*)q; - break; - case SOAP_TYPE_tt__ImagingStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingStatus type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingStatus*)p = *(tt__ImagingStatus*)q; - break; - case SOAP_TYPE_tt__FocusStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusStatus type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusStatus*)p = *(tt__FocusStatus*)q; - break; - case SOAP_TYPE_tt__FocusConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusConfiguration*)p = *(tt__FocusConfiguration*)q; - break; - case SOAP_TYPE_tt__ImagingSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingSettings type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingSettings*)p = *(tt__ImagingSettings*)q; - break; - case SOAP_TYPE_tt__ImagingSettingsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingSettingsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingSettingsExtension*)p = *(tt__ImagingSettingsExtension*)q; - break; - case SOAP_TYPE_tt__Exposure: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Exposure type=%d location=%p object=%p\n", t, p, q)); - *(tt__Exposure*)p = *(tt__Exposure*)q; - break; - case SOAP_TYPE_tt__WideDynamicRange: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WideDynamicRange type=%d location=%p object=%p\n", t, p, q)); - *(tt__WideDynamicRange*)p = *(tt__WideDynamicRange*)q; - break; - case SOAP_TYPE_tt__BacklightCompensation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__BacklightCompensation type=%d location=%p object=%p\n", t, p, q)); - *(tt__BacklightCompensation*)p = *(tt__BacklightCompensation*)q; - break; - case SOAP_TYPE_tt__ImagingOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingOptions*)p = *(tt__ImagingOptions*)q; - break; - case SOAP_TYPE_tt__WideDynamicRangeOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WideDynamicRangeOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__WideDynamicRangeOptions*)p = *(tt__WideDynamicRangeOptions*)q; - break; - case SOAP_TYPE_tt__BacklightCompensationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__BacklightCompensationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__BacklightCompensationOptions*)p = *(tt__BacklightCompensationOptions*)q; - break; - case SOAP_TYPE_tt__FocusOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusOptions*)p = *(tt__FocusOptions*)q; - break; - case SOAP_TYPE_tt__ExposureOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ExposureOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__ExposureOptions*)p = *(tt__ExposureOptions*)q; - break; - case SOAP_TYPE_tt__WhiteBalanceOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WhiteBalanceOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__WhiteBalanceOptions*)p = *(tt__WhiteBalanceOptions*)q; - break; - case SOAP_TYPE_tt__FocusMove: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusMove type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusMove*)p = *(tt__FocusMove*)q; - break; - case SOAP_TYPE_tt__AbsoluteFocus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AbsoluteFocus type=%d location=%p object=%p\n", t, p, q)); - *(tt__AbsoluteFocus*)p = *(tt__AbsoluteFocus*)q; - break; - case SOAP_TYPE_tt__RelativeFocus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelativeFocus type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelativeFocus*)p = *(tt__RelativeFocus*)q; - break; - case SOAP_TYPE_tt__ContinuousFocus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ContinuousFocus type=%d location=%p object=%p\n", t, p, q)); - *(tt__ContinuousFocus*)p = *(tt__ContinuousFocus*)q; - break; - case SOAP_TYPE_tt__MoveOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MoveOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__MoveOptions*)p = *(tt__MoveOptions*)q; - break; - case SOAP_TYPE_tt__AbsoluteFocusOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AbsoluteFocusOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__AbsoluteFocusOptions*)p = *(tt__AbsoluteFocusOptions*)q; - break; - case SOAP_TYPE_tt__RelativeFocusOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelativeFocusOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelativeFocusOptions*)p = *(tt__RelativeFocusOptions*)q; - break; - case SOAP_TYPE_tt__ContinuousFocusOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ContinuousFocusOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__ContinuousFocusOptions*)p = *(tt__ContinuousFocusOptions*)q; - break; - case SOAP_TYPE_tt__WhiteBalance: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WhiteBalance type=%d location=%p object=%p\n", t, p, q)); - *(tt__WhiteBalance*)p = *(tt__WhiteBalance*)q; - break; - case SOAP_TYPE_tt__ImagingStatus20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingStatus20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingStatus20*)p = *(tt__ImagingStatus20*)q; - break; - case SOAP_TYPE_tt__ImagingStatus20Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingStatus20Extension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingStatus20Extension*)p = *(tt__ImagingStatus20Extension*)q; - break; - case SOAP_TYPE_tt__FocusStatus20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusStatus20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusStatus20*)p = *(tt__FocusStatus20*)q; - break; - case SOAP_TYPE_tt__FocusStatus20Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusStatus20Extension type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusStatus20Extension*)p = *(tt__FocusStatus20Extension*)q; - break; - case SOAP_TYPE_tt__ImagingSettings20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingSettings20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingSettings20*)p = *(tt__ImagingSettings20*)q; - break; - case SOAP_TYPE_tt__ImagingSettingsExtension20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingSettingsExtension20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingSettingsExtension20*)p = *(tt__ImagingSettingsExtension20*)q; - break; - case SOAP_TYPE_tt__ImagingSettingsExtension202: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingSettingsExtension202 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingSettingsExtension202*)p = *(tt__ImagingSettingsExtension202*)q; - break; - case SOAP_TYPE_tt__ImagingSettingsExtension203: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingSettingsExtension203 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingSettingsExtension203*)p = *(tt__ImagingSettingsExtension203*)q; - break; - case SOAP_TYPE_tt__ImagingSettingsExtension204: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingSettingsExtension204 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingSettingsExtension204*)p = *(tt__ImagingSettingsExtension204*)q; - break; - case SOAP_TYPE_tt__ImageStabilization: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImageStabilization type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImageStabilization*)p = *(tt__ImageStabilization*)q; - break; - case SOAP_TYPE_tt__ImageStabilizationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImageStabilizationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImageStabilizationExtension*)p = *(tt__ImageStabilizationExtension*)q; - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustment: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IrCutFilterAutoAdjustment type=%d location=%p object=%p\n", t, p, q)); - *(tt__IrCutFilterAutoAdjustment*)p = *(tt__IrCutFilterAutoAdjustment*)q; - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IrCutFilterAutoAdjustmentExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__IrCutFilterAutoAdjustmentExtension*)p = *(tt__IrCutFilterAutoAdjustmentExtension*)q; - break; - case SOAP_TYPE_tt__WideDynamicRange20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WideDynamicRange20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__WideDynamicRange20*)p = *(tt__WideDynamicRange20*)q; - break; - case SOAP_TYPE_tt__BacklightCompensation20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__BacklightCompensation20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__BacklightCompensation20*)p = *(tt__BacklightCompensation20*)q; - break; - case SOAP_TYPE_tt__Exposure20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Exposure20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__Exposure20*)p = *(tt__Exposure20*)q; - break; - case SOAP_TYPE_tt__ToneCompensation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ToneCompensation type=%d location=%p object=%p\n", t, p, q)); - *(tt__ToneCompensation*)p = *(tt__ToneCompensation*)q; - break; - case SOAP_TYPE_tt__ToneCompensationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ToneCompensationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ToneCompensationExtension*)p = *(tt__ToneCompensationExtension*)q; - break; - case SOAP_TYPE_tt__Defogging: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Defogging type=%d location=%p object=%p\n", t, p, q)); - *(tt__Defogging*)p = *(tt__Defogging*)q; - break; - case SOAP_TYPE_tt__DefoggingExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DefoggingExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__DefoggingExtension*)p = *(tt__DefoggingExtension*)q; - break; - case SOAP_TYPE_tt__NoiseReduction: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NoiseReduction type=%d location=%p object=%p\n", t, p, q)); - *(tt__NoiseReduction*)p = *(tt__NoiseReduction*)q; - break; - case SOAP_TYPE_tt__ImagingOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingOptions20*)p = *(tt__ImagingOptions20*)q; - break; - case SOAP_TYPE_tt__ImagingOptions20Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingOptions20Extension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingOptions20Extension*)p = *(tt__ImagingOptions20Extension*)q; - break; - case SOAP_TYPE_tt__ImagingOptions20Extension2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingOptions20Extension2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingOptions20Extension2*)p = *(tt__ImagingOptions20Extension2*)q; - break; - case SOAP_TYPE_tt__ImagingOptions20Extension3: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingOptions20Extension3 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingOptions20Extension3*)p = *(tt__ImagingOptions20Extension3*)q; - break; - case SOAP_TYPE_tt__ImagingOptions20Extension4: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImagingOptions20Extension4 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImagingOptions20Extension4*)p = *(tt__ImagingOptions20Extension4*)q; - break; - case SOAP_TYPE_tt__ImageStabilizationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImageStabilizationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImageStabilizationOptions*)p = *(tt__ImageStabilizationOptions*)q; - break; - case SOAP_TYPE_tt__ImageStabilizationOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ImageStabilizationOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ImageStabilizationOptionsExtension*)p = *(tt__ImageStabilizationOptionsExtension*)q; - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IrCutFilterAutoAdjustmentOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__IrCutFilterAutoAdjustmentOptions*)p = *(tt__IrCutFilterAutoAdjustmentOptions*)q; - break; - case SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__IrCutFilterAutoAdjustmentOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__IrCutFilterAutoAdjustmentOptionsExtension*)p = *(tt__IrCutFilterAutoAdjustmentOptionsExtension*)q; - break; - case SOAP_TYPE_tt__WideDynamicRangeOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WideDynamicRangeOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__WideDynamicRangeOptions20*)p = *(tt__WideDynamicRangeOptions20*)q; - break; - case SOAP_TYPE_tt__BacklightCompensationOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__BacklightCompensationOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__BacklightCompensationOptions20*)p = *(tt__BacklightCompensationOptions20*)q; - break; - case SOAP_TYPE_tt__ExposureOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ExposureOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__ExposureOptions20*)p = *(tt__ExposureOptions20*)q; - break; - case SOAP_TYPE_tt__MoveOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MoveOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__MoveOptions20*)p = *(tt__MoveOptions20*)q; - break; - case SOAP_TYPE_tt__RelativeFocusOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelativeFocusOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelativeFocusOptions20*)p = *(tt__RelativeFocusOptions20*)q; - break; - case SOAP_TYPE_tt__WhiteBalance20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WhiteBalance20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__WhiteBalance20*)p = *(tt__WhiteBalance20*)q; - break; - case SOAP_TYPE_tt__WhiteBalance20Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WhiteBalance20Extension type=%d location=%p object=%p\n", t, p, q)); - *(tt__WhiteBalance20Extension*)p = *(tt__WhiteBalance20Extension*)q; - break; - case SOAP_TYPE_tt__FocusConfiguration20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusConfiguration20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusConfiguration20*)p = *(tt__FocusConfiguration20*)q; - break; - case SOAP_TYPE_tt__FocusConfiguration20Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusConfiguration20Extension type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusConfiguration20Extension*)p = *(tt__FocusConfiguration20Extension*)q; - break; - case SOAP_TYPE_tt__WhiteBalanceOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WhiteBalanceOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__WhiteBalanceOptions20*)p = *(tt__WhiteBalanceOptions20*)q; - break; - case SOAP_TYPE_tt__WhiteBalanceOptions20Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__WhiteBalanceOptions20Extension type=%d location=%p object=%p\n", t, p, q)); - *(tt__WhiteBalanceOptions20Extension*)p = *(tt__WhiteBalanceOptions20Extension*)q; - break; - case SOAP_TYPE_tt__FocusOptions20: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusOptions20 type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusOptions20*)p = *(tt__FocusOptions20*)q; - break; - case SOAP_TYPE_tt__FocusOptions20Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FocusOptions20Extension type=%d location=%p object=%p\n", t, p, q)); - *(tt__FocusOptions20Extension*)p = *(tt__FocusOptions20Extension*)q; - break; - case SOAP_TYPE_tt__ToneCompensationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ToneCompensationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__ToneCompensationOptions*)p = *(tt__ToneCompensationOptions*)q; - break; - case SOAP_TYPE_tt__DefoggingOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DefoggingOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__DefoggingOptions*)p = *(tt__DefoggingOptions*)q; - break; - case SOAP_TYPE_tt__NoiseReductionOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NoiseReductionOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__NoiseReductionOptions*)p = *(tt__NoiseReductionOptions*)q; - break; - case SOAP_TYPE_tt__MessageExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MessageExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__MessageExtension*)p = *(tt__MessageExtension*)q; - break; - case SOAP_TYPE__tt__ItemList_SimpleItem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__ItemList_SimpleItem type=%d location=%p object=%p\n", t, p, q)); - *(_tt__ItemList_SimpleItem*)p = *(_tt__ItemList_SimpleItem*)q; - break; - case SOAP_TYPE__tt__ItemList_ElementItem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__ItemList_ElementItem type=%d location=%p object=%p\n", t, p, q)); - *(_tt__ItemList_ElementItem*)p = *(_tt__ItemList_ElementItem*)q; - break; - case SOAP_TYPE_tt__ItemList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ItemList type=%d location=%p object=%p\n", t, p, q)); - *(tt__ItemList*)p = *(tt__ItemList*)q; - break; - case SOAP_TYPE_tt__ItemListExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ItemListExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ItemListExtension*)p = *(tt__ItemListExtension*)q; - break; - case SOAP_TYPE_tt__MessageDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MessageDescription type=%d location=%p object=%p\n", t, p, q)); - *(tt__MessageDescription*)p = *(tt__MessageDescription*)q; - break; - case SOAP_TYPE_tt__MessageDescriptionExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MessageDescriptionExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__MessageDescriptionExtension*)p = *(tt__MessageDescriptionExtension*)q; - break; - case SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__ItemListDescription_SimpleItemDescription type=%d location=%p object=%p\n", t, p, q)); - *(_tt__ItemListDescription_SimpleItemDescription*)p = *(_tt__ItemListDescription_SimpleItemDescription*)q; - break; - case SOAP_TYPE__tt__ItemListDescription_ElementItemDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__ItemListDescription_ElementItemDescription type=%d location=%p object=%p\n", t, p, q)); - *(_tt__ItemListDescription_ElementItemDescription*)p = *(_tt__ItemListDescription_ElementItemDescription*)q; - break; - case SOAP_TYPE_tt__ItemListDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ItemListDescription type=%d location=%p object=%p\n", t, p, q)); - *(tt__ItemListDescription*)p = *(tt__ItemListDescription*)q; - break; - case SOAP_TYPE_tt__ItemListDescriptionExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ItemListDescriptionExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ItemListDescriptionExtension*)p = *(tt__ItemListDescriptionExtension*)q; - break; - case SOAP_TYPE_tt__Polyline: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Polyline type=%d location=%p object=%p\n", t, p, q)); - *(tt__Polyline*)p = *(tt__Polyline*)q; - break; - case SOAP_TYPE_tt__AnalyticsEngineConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsEngineConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsEngineConfiguration*)p = *(tt__AnalyticsEngineConfiguration*)q; - break; - case SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsEngineConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsEngineConfigurationExtension*)p = *(tt__AnalyticsEngineConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__RuleEngineConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RuleEngineConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__RuleEngineConfiguration*)p = *(tt__RuleEngineConfiguration*)q; - break; - case SOAP_TYPE_tt__RuleEngineConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RuleEngineConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__RuleEngineConfigurationExtension*)p = *(tt__RuleEngineConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__Config: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Config type=%d location=%p object=%p\n", t, p, q)); - *(tt__Config*)p = *(tt__Config*)q; - break; - case SOAP_TYPE__tt__ConfigDescription_Messages: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__ConfigDescription_Messages type=%d location=%p object=%p\n", t, p, q)); - *(_tt__ConfigDescription_Messages*)p = *(_tt__ConfigDescription_Messages*)q; - break; - case SOAP_TYPE_tt__ConfigDescription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ConfigDescription type=%d location=%p object=%p\n", t, p, q)); - *(tt__ConfigDescription*)p = *(tt__ConfigDescription*)q; - break; - case SOAP_TYPE_tt__ConfigDescriptionExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ConfigDescriptionExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ConfigDescriptionExtension*)p = *(tt__ConfigDescriptionExtension*)q; - break; - case SOAP_TYPE_tt__SupportedRules: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SupportedRules type=%d location=%p object=%p\n", t, p, q)); - *(tt__SupportedRules*)p = *(tt__SupportedRules*)q; - break; - case SOAP_TYPE_tt__SupportedRulesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SupportedRulesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__SupportedRulesExtension*)p = *(tt__SupportedRulesExtension*)q; - break; - case SOAP_TYPE_tt__SupportedAnalyticsModules: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SupportedAnalyticsModules type=%d location=%p object=%p\n", t, p, q)); - *(tt__SupportedAnalyticsModules*)p = *(tt__SupportedAnalyticsModules*)q; - break; - case SOAP_TYPE_tt__SupportedAnalyticsModulesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SupportedAnalyticsModulesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__SupportedAnalyticsModulesExtension*)p = *(tt__SupportedAnalyticsModulesExtension*)q; - break; - case SOAP_TYPE_tt__PolylineArray: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PolylineArray type=%d location=%p object=%p\n", t, p, q)); - *(tt__PolylineArray*)p = *(tt__PolylineArray*)q; - break; - case SOAP_TYPE_tt__PolylineArrayExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PolylineArrayExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PolylineArrayExtension*)p = *(tt__PolylineArrayExtension*)q; - break; - case SOAP_TYPE_tt__PolylineArrayConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PolylineArrayConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__PolylineArrayConfiguration*)p = *(tt__PolylineArrayConfiguration*)q; - break; - case SOAP_TYPE_tt__MotionExpression: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MotionExpression type=%d location=%p object=%p\n", t, p, q)); - *(tt__MotionExpression*)p = *(tt__MotionExpression*)q; - break; - case SOAP_TYPE_tt__MotionExpressionConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MotionExpressionConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__MotionExpressionConfiguration*)p = *(tt__MotionExpressionConfiguration*)q; - break; - case SOAP_TYPE_tt__CellLayout: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CellLayout type=%d location=%p object=%p\n", t, p, q)); - *(tt__CellLayout*)p = *(tt__CellLayout*)q; - break; - case SOAP_TYPE_tt__PaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__PaneConfiguration*)p = *(tt__PaneConfiguration*)q; - break; - case SOAP_TYPE_tt__PaneLayout: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PaneLayout type=%d location=%p object=%p\n", t, p, q)); - *(tt__PaneLayout*)p = *(tt__PaneLayout*)q; - break; - case SOAP_TYPE_tt__Layout: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Layout type=%d location=%p object=%p\n", t, p, q)); - *(tt__Layout*)p = *(tt__Layout*)q; - break; - case SOAP_TYPE_tt__LayoutExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LayoutExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__LayoutExtension*)p = *(tt__LayoutExtension*)q; - break; - case SOAP_TYPE_tt__CodingCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CodingCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tt__CodingCapabilities*)p = *(tt__CodingCapabilities*)q; - break; - case SOAP_TYPE_tt__LayoutOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LayoutOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__LayoutOptions*)p = *(tt__LayoutOptions*)q; - break; - case SOAP_TYPE_tt__LayoutOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__LayoutOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__LayoutOptionsExtension*)p = *(tt__LayoutOptionsExtension*)q; - break; - case SOAP_TYPE_tt__PaneLayoutOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PaneLayoutOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PaneLayoutOptions*)p = *(tt__PaneLayoutOptions*)q; - break; - case SOAP_TYPE_tt__PaneOptionExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PaneOptionExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__PaneOptionExtension*)p = *(tt__PaneOptionExtension*)q; - break; - case SOAP_TYPE_tt__Receiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Receiver type=%d location=%p object=%p\n", t, p, q)); - *(tt__Receiver*)p = *(tt__Receiver*)q; - break; - case SOAP_TYPE_tt__ReceiverConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReceiverConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReceiverConfiguration*)p = *(tt__ReceiverConfiguration*)q; - break; - case SOAP_TYPE_tt__ReceiverStateInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReceiverStateInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReceiverStateInformation*)p = *(tt__ReceiverStateInformation*)q; - break; - case SOAP_TYPE_tt__SourceReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SourceReference type=%d location=%p object=%p\n", t, p, q)); - *(tt__SourceReference*)p = *(tt__SourceReference*)q; - break; - case SOAP_TYPE_tt__DateTimeRange: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DateTimeRange type=%d location=%p object=%p\n", t, p, q)); - *(tt__DateTimeRange*)p = *(tt__DateTimeRange*)q; - break; - case SOAP_TYPE_tt__RecordingSummary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingSummary type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingSummary*)p = *(tt__RecordingSummary*)q; - break; - case SOAP_TYPE_tt__SearchScope: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SearchScope type=%d location=%p object=%p\n", t, p, q)); - *(tt__SearchScope*)p = *(tt__SearchScope*)q; - break; - case SOAP_TYPE_tt__SearchScopeExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SearchScopeExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__SearchScopeExtension*)p = *(tt__SearchScopeExtension*)q; - break; - case SOAP_TYPE_tt__PTZPositionFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZPositionFilter type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZPositionFilter*)p = *(tt__PTZPositionFilter*)q; - break; - case SOAP_TYPE_tt__MetadataFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataFilter type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataFilter*)p = *(tt__MetadataFilter*)q; - break; - case SOAP_TYPE_tt__FindRecordingResultList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FindRecordingResultList type=%d location=%p object=%p\n", t, p, q)); - *(tt__FindRecordingResultList*)p = *(tt__FindRecordingResultList*)q; - break; - case SOAP_TYPE_tt__FindEventResultList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FindEventResultList type=%d location=%p object=%p\n", t, p, q)); - *(tt__FindEventResultList*)p = *(tt__FindEventResultList*)q; - break; - case SOAP_TYPE_tt__FindEventResult: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FindEventResult type=%d location=%p object=%p\n", t, p, q)); - *(tt__FindEventResult*)p = *(tt__FindEventResult*)q; - break; - case SOAP_TYPE_tt__FindPTZPositionResultList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FindPTZPositionResultList type=%d location=%p object=%p\n", t, p, q)); - *(tt__FindPTZPositionResultList*)p = *(tt__FindPTZPositionResultList*)q; - break; - case SOAP_TYPE_tt__FindPTZPositionResult: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FindPTZPositionResult type=%d location=%p object=%p\n", t, p, q)); - *(tt__FindPTZPositionResult*)p = *(tt__FindPTZPositionResult*)q; - break; - case SOAP_TYPE_tt__FindMetadataResultList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FindMetadataResultList type=%d location=%p object=%p\n", t, p, q)); - *(tt__FindMetadataResultList*)p = *(tt__FindMetadataResultList*)q; - break; - case SOAP_TYPE_tt__FindMetadataResult: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FindMetadataResult type=%d location=%p object=%p\n", t, p, q)); - *(tt__FindMetadataResult*)p = *(tt__FindMetadataResult*)q; - break; - case SOAP_TYPE_tt__RecordingInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingInformation*)p = *(tt__RecordingInformation*)q; - break; - case SOAP_TYPE_tt__RecordingSourceInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingSourceInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingSourceInformation*)p = *(tt__RecordingSourceInformation*)q; - break; - case SOAP_TYPE_tt__TrackInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TrackInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__TrackInformation*)p = *(tt__TrackInformation*)q; - break; - case SOAP_TYPE_tt__MediaAttributes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MediaAttributes type=%d location=%p object=%p\n", t, p, q)); - *(tt__MediaAttributes*)p = *(tt__MediaAttributes*)q; - break; - case SOAP_TYPE_tt__TrackAttributes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TrackAttributes type=%d location=%p object=%p\n", t, p, q)); - *(tt__TrackAttributes*)p = *(tt__TrackAttributes*)q; - break; - case SOAP_TYPE_tt__TrackAttributesExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TrackAttributesExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__TrackAttributesExtension*)p = *(tt__TrackAttributesExtension*)q; - break; - case SOAP_TYPE_tt__VideoAttributes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoAttributes type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoAttributes*)p = *(tt__VideoAttributes*)q; - break; - case SOAP_TYPE_tt__AudioAttributes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioAttributes type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioAttributes*)p = *(tt__AudioAttributes*)q; - break; - case SOAP_TYPE_tt__MetadataAttributes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataAttributes type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataAttributes*)p = *(tt__MetadataAttributes*)q; - break; - case SOAP_TYPE_tt__RecordingConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingConfiguration*)p = *(tt__RecordingConfiguration*)q; - break; - case SOAP_TYPE_tt__TrackConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__TrackConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__TrackConfiguration*)p = *(tt__TrackConfiguration*)q; - break; - case SOAP_TYPE_tt__GetRecordingsResponseItem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__GetRecordingsResponseItem type=%d location=%p object=%p\n", t, p, q)); - *(tt__GetRecordingsResponseItem*)p = *(tt__GetRecordingsResponseItem*)q; - break; - case SOAP_TYPE_tt__GetTracksResponseList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__GetTracksResponseList type=%d location=%p object=%p\n", t, p, q)); - *(tt__GetTracksResponseList*)p = *(tt__GetTracksResponseList*)q; - break; - case SOAP_TYPE_tt__GetTracksResponseItem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__GetTracksResponseItem type=%d location=%p object=%p\n", t, p, q)); - *(tt__GetTracksResponseItem*)p = *(tt__GetTracksResponseItem*)q; - break; - case SOAP_TYPE_tt__RecordingJobConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobConfiguration*)p = *(tt__RecordingJobConfiguration*)q; - break; - case SOAP_TYPE_tt__RecordingJobConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobConfigurationExtension*)p = *(tt__RecordingJobConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__RecordingJobSource: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobSource type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobSource*)p = *(tt__RecordingJobSource*)q; - break; - case SOAP_TYPE_tt__RecordingJobSourceExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobSourceExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobSourceExtension*)p = *(tt__RecordingJobSourceExtension*)q; - break; - case SOAP_TYPE_tt__RecordingJobTrack: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobTrack type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobTrack*)p = *(tt__RecordingJobTrack*)q; - break; - case SOAP_TYPE_tt__RecordingJobStateInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobStateInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobStateInformation*)p = *(tt__RecordingJobStateInformation*)q; - break; - case SOAP_TYPE_tt__RecordingJobStateInformationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobStateInformationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobStateInformationExtension*)p = *(tt__RecordingJobStateInformationExtension*)q; - break; - case SOAP_TYPE_tt__RecordingJobStateSource: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobStateSource type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobStateSource*)p = *(tt__RecordingJobStateSource*)q; - break; - case SOAP_TYPE_tt__RecordingJobStateTracks: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobStateTracks type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobStateTracks*)p = *(tt__RecordingJobStateTracks*)q; - break; - case SOAP_TYPE_tt__RecordingJobStateTrack: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RecordingJobStateTrack type=%d location=%p object=%p\n", t, p, q)); - *(tt__RecordingJobStateTrack*)p = *(tt__RecordingJobStateTrack*)q; - break; - case SOAP_TYPE_tt__GetRecordingJobsResponseItem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__GetRecordingJobsResponseItem type=%d location=%p object=%p\n", t, p, q)); - *(tt__GetRecordingJobsResponseItem*)p = *(tt__GetRecordingJobsResponseItem*)q; - break; - case SOAP_TYPE_tt__ReplayConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ReplayConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__ReplayConfiguration*)p = *(tt__ReplayConfiguration*)q; - break; - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsDeviceEngineConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsDeviceEngineConfiguration*)p = *(tt__AnalyticsDeviceEngineConfiguration*)q; - break; - case SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsDeviceEngineConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsDeviceEngineConfigurationExtension*)p = *(tt__AnalyticsDeviceEngineConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__EngineConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EngineConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__EngineConfiguration*)p = *(tt__EngineConfiguration*)q; - break; - case SOAP_TYPE_tt__AnalyticsEngineInputInfo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsEngineInputInfo type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsEngineInputInfo*)p = *(tt__AnalyticsEngineInputInfo*)q; - break; - case SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsEngineInputInfoExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsEngineInputInfoExtension*)p = *(tt__AnalyticsEngineInputInfoExtension*)q; - break; - case SOAP_TYPE_tt__SourceIdentification: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SourceIdentification type=%d location=%p object=%p\n", t, p, q)); - *(tt__SourceIdentification*)p = *(tt__SourceIdentification*)q; - break; - case SOAP_TYPE_tt__SourceIdentificationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__SourceIdentificationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__SourceIdentificationExtension*)p = *(tt__SourceIdentificationExtension*)q; - break; - case SOAP_TYPE_tt__MetadataInput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataInput type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataInput*)p = *(tt__MetadataInput*)q; - break; - case SOAP_TYPE_tt__MetadataInputExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataInputExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataInputExtension*)p = *(tt__MetadataInputExtension*)q; - break; - case SOAP_TYPE_tt__AnalyticsStateInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsStateInformation type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsStateInformation*)p = *(tt__AnalyticsStateInformation*)q; - break; - case SOAP_TYPE_tt__AnalyticsState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsState type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsState*)p = *(tt__AnalyticsState*)q; - break; - case SOAP_TYPE_tt__ActionEngineEventPayload: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ActionEngineEventPayload type=%d location=%p object=%p\n", t, p, q)); - *(tt__ActionEngineEventPayload*)p = *(tt__ActionEngineEventPayload*)q; - break; - case SOAP_TYPE_tt__ActionEngineEventPayloadExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ActionEngineEventPayloadExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ActionEngineEventPayloadExtension*)p = *(tt__ActionEngineEventPayloadExtension*)q; - break; - case SOAP_TYPE_tt__AudioClassCandidate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioClassCandidate type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioClassCandidate*)p = *(tt__AudioClassCandidate*)q; - break; - case SOAP_TYPE_tt__AudioClassDescriptor: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioClassDescriptor type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioClassDescriptor*)p = *(tt__AudioClassDescriptor*)q; - break; - case SOAP_TYPE_tt__AudioClassDescriptorExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioClassDescriptorExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioClassDescriptorExtension*)p = *(tt__AudioClassDescriptorExtension*)q; - break; - case SOAP_TYPE_tt__ActiveConnection: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ActiveConnection type=%d location=%p object=%p\n", t, p, q)); - *(tt__ActiveConnection*)p = *(tt__ActiveConnection*)q; - break; - case SOAP_TYPE_tt__ProfileStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ProfileStatus type=%d location=%p object=%p\n", t, p, q)); - *(tt__ProfileStatus*)p = *(tt__ProfileStatus*)q; - break; - case SOAP_TYPE_tt__ProfileStatusExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ProfileStatusExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ProfileStatusExtension*)p = *(tt__ProfileStatusExtension*)q; - break; - case SOAP_TYPE_tt__OSDPosConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDPosConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDPosConfiguration*)p = *(tt__OSDPosConfiguration*)q; - break; - case SOAP_TYPE_tt__OSDPosConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDPosConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDPosConfigurationExtension*)p = *(tt__OSDPosConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__OSDColor: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDColor type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDColor*)p = *(tt__OSDColor*)q; - break; - case SOAP_TYPE_tt__OSDTextConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDTextConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDTextConfiguration*)p = *(tt__OSDTextConfiguration*)q; - break; - case SOAP_TYPE_tt__OSDTextConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDTextConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDTextConfigurationExtension*)p = *(tt__OSDTextConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__OSDImgConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDImgConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDImgConfiguration*)p = *(tt__OSDImgConfiguration*)q; - break; - case SOAP_TYPE_tt__OSDImgConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDImgConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDImgConfigurationExtension*)p = *(tt__OSDImgConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__ColorspaceRange: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ColorspaceRange type=%d location=%p object=%p\n", t, p, q)); - *(tt__ColorspaceRange*)p = *(tt__ColorspaceRange*)q; - break; - case SOAP_TYPE__tt__union_ColorOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy union _tt__union_ColorOptions type=%d location=%p object=%p\n", t, p, q)); - *(union _tt__union_ColorOptions*)p = *(union _tt__union_ColorOptions*)q; - break; - case SOAP_TYPE_tt__ColorOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ColorOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__ColorOptions*)p = *(tt__ColorOptions*)q; - break; - case SOAP_TYPE_tt__OSDColorOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDColorOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDColorOptions*)p = *(tt__OSDColorOptions*)q; - break; - case SOAP_TYPE_tt__OSDColorOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDColorOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDColorOptionsExtension*)p = *(tt__OSDColorOptionsExtension*)q; - break; - case SOAP_TYPE_tt__OSDTextOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDTextOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDTextOptions*)p = *(tt__OSDTextOptions*)q; - break; - case SOAP_TYPE_tt__OSDTextOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDTextOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDTextOptionsExtension*)p = *(tt__OSDTextOptionsExtension*)q; - break; - case SOAP_TYPE_tt__OSDImgOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDImgOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDImgOptions*)p = *(tt__OSDImgOptions*)q; - break; - case SOAP_TYPE_tt__OSDImgOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDImgOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDImgOptionsExtension*)p = *(tt__OSDImgOptionsExtension*)q; - break; - case SOAP_TYPE_tt__OSDConfigurationExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDConfigurationExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDConfigurationExtension*)p = *(tt__OSDConfigurationExtension*)q; - break; - case SOAP_TYPE_tt__MaximumNumberOfOSDs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MaximumNumberOfOSDs type=%d location=%p object=%p\n", t, p, q)); - *(tt__MaximumNumberOfOSDs*)p = *(tt__MaximumNumberOfOSDs*)q; - break; - case SOAP_TYPE_tt__OSDConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDConfigurationOptions*)p = *(tt__OSDConfigurationOptions*)q; - break; - case SOAP_TYPE_tt__OSDConfigurationOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDConfigurationOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDConfigurationOptionsExtension*)p = *(tt__OSDConfigurationOptionsExtension*)q; - break; - case SOAP_TYPE_tt__FileProgress: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__FileProgress type=%d location=%p object=%p\n", t, p, q)); - *(tt__FileProgress*)p = *(tt__FileProgress*)q; - break; - case SOAP_TYPE_tt__ArrayOfFileProgress: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ArrayOfFileProgress type=%d location=%p object=%p\n", t, p, q)); - *(tt__ArrayOfFileProgress*)p = *(tt__ArrayOfFileProgress*)q; - break; - case SOAP_TYPE_tt__ArrayOfFileProgressExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__ArrayOfFileProgressExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__ArrayOfFileProgressExtension*)p = *(tt__ArrayOfFileProgressExtension*)q; - break; - case SOAP_TYPE_tt__StorageReferencePath: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__StorageReferencePath type=%d location=%p object=%p\n", t, p, q)); - *(tt__StorageReferencePath*)p = *(tt__StorageReferencePath*)q; - break; - case SOAP_TYPE_tt__StorageReferencePathExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__StorageReferencePathExtension type=%d location=%p object=%p\n", t, p, q)); - *(tt__StorageReferencePathExtension*)p = *(tt__StorageReferencePathExtension*)q; - break; - case SOAP_TYPE_tt__PolygonOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PolygonOptions type=%d location=%p object=%p\n", t, p, q)); - *(tt__PolygonOptions*)p = *(tt__PolygonOptions*)q; - break; - case SOAP_TYPE__tt__StringItems: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__StringItems type=%d location=%p object=%p\n", t, p, q)); - *(_tt__StringItems*)p = *(_tt__StringItems*)q; - break; - case SOAP_TYPE__tt__Message: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tt__Message type=%d location=%p object=%p\n", t, p, q)); - *(_tt__Message*)p = *(_tt__Message*)q; - break; - case SOAP_TYPE_tmd__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(tmd__Capabilities*)p = *(tmd__Capabilities*)q; - break; - case SOAP_TYPE_tmd__RelayOutputOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__RelayOutputOptions type=%d location=%p object=%p\n", t, p, q)); - *(tmd__RelayOutputOptions*)p = *(tmd__RelayOutputOptions*)q; - break; - case SOAP_TYPE_tmd__RelayOutputOptionsExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__RelayOutputOptionsExtension type=%d location=%p object=%p\n", t, p, q)); - *(tmd__RelayOutputOptionsExtension*)p = *(tmd__RelayOutputOptionsExtension*)q; - break; - case SOAP_TYPE_tmd__Get: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__Get type=%d location=%p object=%p\n", t, p, q)); - *(tmd__Get*)p = *(tmd__Get*)q; - break; - case SOAP_TYPE_tmd__GetResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__GetResponse type=%d location=%p object=%p\n", t, p, q)); - *(tmd__GetResponse*)p = *(tmd__GetResponse*)q; - break; - case SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__DigitalInputConfigurationInputOptions type=%d location=%p object=%p\n", t, p, q)); - *(tmd__DigitalInputConfigurationInputOptions*)p = *(tmd__DigitalInputConfigurationInputOptions*)q; - break; - case SOAP_TYPE__tmd__union_SerialData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy union _tmd__union_SerialData type=%d location=%p object=%p\n", t, p, q)); - *(union _tmd__union_SerialData*)p = *(union _tmd__union_SerialData*)q; - break; - case SOAP_TYPE_tmd__SerialData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__SerialData type=%d location=%p object=%p\n", t, p, q)); - *(tmd__SerialData*)p = *(tmd__SerialData*)q; - break; - case SOAP_TYPE_tmd__SerialPortConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__SerialPortConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tmd__SerialPortConfiguration*)p = *(tmd__SerialPortConfiguration*)q; - break; - case SOAP_TYPE_tmd__SerialPortConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__SerialPortConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(tmd__SerialPortConfigurationOptions*)p = *(tmd__SerialPortConfigurationOptions*)q; - break; - case SOAP_TYPE_tmd__ParityBitList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__ParityBitList type=%d location=%p object=%p\n", t, p, q)); - *(tmd__ParityBitList*)p = *(tmd__ParityBitList*)q; - break; - case SOAP_TYPE__tmd__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetServiceCapabilities*)p = *(_tmd__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__tmd__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetServiceCapabilitiesResponse*)p = *(_tmd__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__tmd__GetRelayOutputOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetRelayOutputOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetRelayOutputOptions*)p = *(_tmd__GetRelayOutputOptions*)q; - break; - case SOAP_TYPE__tmd__GetRelayOutputOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetRelayOutputOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetRelayOutputOptionsResponse*)p = *(_tmd__GetRelayOutputOptionsResponse*)q; - break; - case SOAP_TYPE__tmd__GetVideoOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoOutputs type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoOutputs*)p = *(_tmd__GetVideoOutputs*)q; - break; - case SOAP_TYPE__tmd__GetVideoOutputsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoOutputsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoOutputsResponse*)p = *(_tmd__GetVideoOutputsResponse*)q; - break; - case SOAP_TYPE__tmd__GetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioSourceConfiguration*)p = *(_tmd__GetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioSourceConfigurationResponse*)p = *(_tmd__GetAudioSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__GetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioOutputConfiguration*)p = *(_tmd__GetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioOutputConfigurationResponse*)p = *(_tmd__GetAudioOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__GetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoSourceConfiguration*)p = *(_tmd__GetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoSourceConfigurationResponse*)p = *(_tmd__GetVideoSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__GetVideoOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoOutputConfiguration*)p = *(_tmd__GetVideoOutputConfiguration*)q; - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoOutputConfigurationResponse*)p = *(_tmd__GetVideoOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__SetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetAudioSourceConfiguration*)p = *(_tmd__SetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetAudioSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetAudioSourceConfigurationResponse*)p = *(_tmd__SetAudioSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__SetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetAudioOutputConfiguration*)p = *(_tmd__SetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetAudioOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetAudioOutputConfigurationResponse*)p = *(_tmd__SetAudioOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__SetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetVideoSourceConfiguration*)p = *(_tmd__SetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetVideoSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetVideoSourceConfigurationResponse*)p = *(_tmd__SetVideoSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__SetVideoOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetVideoOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetVideoOutputConfiguration*)p = *(_tmd__SetVideoOutputConfiguration*)q; - break; - case SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetVideoOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetVideoOutputConfigurationResponse*)p = *(_tmd__SetVideoOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoSourceConfigurationOptions*)p = *(_tmd__GetVideoSourceConfigurationOptions*)q; - break; - case SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoSourceConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoSourceConfigurationOptionsResponse*)p = *(_tmd__GetVideoSourceConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoOutputConfigurationOptions*)p = *(_tmd__GetVideoOutputConfigurationOptions*)q; - break; - case SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetVideoOutputConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetVideoOutputConfigurationOptionsResponse*)p = *(_tmd__GetVideoOutputConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioSourceConfigurationOptions*)p = *(_tmd__GetAudioSourceConfigurationOptions*)q; - break; - case SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioSourceConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioSourceConfigurationOptionsResponse*)p = *(_tmd__GetAudioSourceConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioOutputConfigurationOptions*)p = *(_tmd__GetAudioOutputConfigurationOptions*)q; - break; - case SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetAudioOutputConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetAudioOutputConfigurationOptionsResponse*)p = *(_tmd__GetAudioOutputConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__tmd__SetRelayOutputSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetRelayOutputSettings type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetRelayOutputSettings*)p = *(_tmd__SetRelayOutputSettings*)q; - break; - case SOAP_TYPE__tmd__SetRelayOutputSettingsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetRelayOutputSettingsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetRelayOutputSettingsResponse*)p = *(_tmd__SetRelayOutputSettingsResponse*)q; - break; - case SOAP_TYPE__tmd__GetDigitalInputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetDigitalInputs type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetDigitalInputs*)p = *(_tmd__GetDigitalInputs*)q; - break; - case SOAP_TYPE__tmd__GetDigitalInputsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetDigitalInputsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetDigitalInputsResponse*)p = *(_tmd__GetDigitalInputsResponse*)q; - break; - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetDigitalInputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetDigitalInputConfigurationOptions*)p = *(_tmd__GetDigitalInputConfigurationOptions*)q; - break; - case SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetDigitalInputConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetDigitalInputConfigurationOptionsResponse*)p = *(_tmd__GetDigitalInputConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__tmd__SetDigitalInputConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetDigitalInputConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetDigitalInputConfigurations*)p = *(_tmd__SetDigitalInputConfigurations*)q; - break; - case SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetDigitalInputConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetDigitalInputConfigurationsResponse*)p = *(_tmd__SetDigitalInputConfigurationsResponse*)q; - break; - case SOAP_TYPE__tmd__GetSerialPorts: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetSerialPorts type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetSerialPorts*)p = *(_tmd__GetSerialPorts*)q; - break; - case SOAP_TYPE__tmd__GetSerialPortsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetSerialPortsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetSerialPortsResponse*)p = *(_tmd__GetSerialPortsResponse*)q; - break; - case SOAP_TYPE__tmd__GetSerialPortConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetSerialPortConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetSerialPortConfiguration*)p = *(_tmd__GetSerialPortConfiguration*)q; - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetSerialPortConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetSerialPortConfigurationResponse*)p = *(_tmd__GetSerialPortConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__SetSerialPortConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetSerialPortConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetSerialPortConfiguration*)p = *(_tmd__SetSerialPortConfiguration*)q; - break; - case SOAP_TYPE__tmd__SetSerialPortConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SetSerialPortConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SetSerialPortConfigurationResponse*)p = *(_tmd__SetSerialPortConfigurationResponse*)q; - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetSerialPortConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetSerialPortConfigurationOptions*)p = *(_tmd__GetSerialPortConfigurationOptions*)q; - break; - case SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__GetSerialPortConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__GetSerialPortConfigurationOptionsResponse*)p = *(_tmd__GetSerialPortConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__tmd__SendReceiveSerialCommand: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SendReceiveSerialCommand type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SendReceiveSerialCommand*)p = *(_tmd__SendReceiveSerialCommand*)q; - break; - case SOAP_TYPE__tmd__SendReceiveSerialCommandResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tmd__SendReceiveSerialCommandResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tmd__SendReceiveSerialCommandResponse*)p = *(_tmd__SendReceiveSerialCommandResponse*)q; - break; - case SOAP_TYPE__tds__Service_Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__Service_Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tds__Service_Capabilities*)p = *(_tds__Service_Capabilities*)q; - break; - case SOAP_TYPE_tds__Service: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__Service type=%d location=%p object=%p\n", t, p, q)); - *(tds__Service*)p = *(tds__Service*)q; - break; - case SOAP_TYPE_tds__DeviceServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__DeviceServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tds__DeviceServiceCapabilities*)p = *(tds__DeviceServiceCapabilities*)q; - break; - case SOAP_TYPE_tds__NetworkCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__NetworkCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tds__NetworkCapabilities*)p = *(tds__NetworkCapabilities*)q; - break; - case SOAP_TYPE_tds__SecurityCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__SecurityCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tds__SecurityCapabilities*)p = *(tds__SecurityCapabilities*)q; - break; - case SOAP_TYPE_tds__SystemCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__SystemCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tds__SystemCapabilities*)p = *(tds__SystemCapabilities*)q; - break; - case SOAP_TYPE_tds__MiscCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__MiscCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(tds__MiscCapabilities*)p = *(tds__MiscCapabilities*)q; - break; - case SOAP_TYPE__tds__UserCredential_Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__UserCredential_Extension type=%d location=%p object=%p\n", t, p, q)); - *(_tds__UserCredential_Extension*)p = *(_tds__UserCredential_Extension*)q; - break; - case SOAP_TYPE_tds__UserCredential: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__UserCredential type=%d location=%p object=%p\n", t, p, q)); - *(tds__UserCredential*)p = *(tds__UserCredential*)q; - break; - case SOAP_TYPE__tds__StorageConfigurationData_Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__StorageConfigurationData_Extension type=%d location=%p object=%p\n", t, p, q)); - *(_tds__StorageConfigurationData_Extension*)p = *(_tds__StorageConfigurationData_Extension*)q; - break; - case SOAP_TYPE_tds__StorageConfigurationData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__StorageConfigurationData type=%d location=%p object=%p\n", t, p, q)); - *(tds__StorageConfigurationData*)p = *(tds__StorageConfigurationData*)q; - break; - case SOAP_TYPE__tds__GetServices: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetServices type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetServices*)p = *(_tds__GetServices*)q; - break; - case SOAP_TYPE__tds__GetServicesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetServicesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetServicesResponse*)p = *(_tds__GetServicesResponse*)q; - break; - case SOAP_TYPE__tds__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetServiceCapabilities*)p = *(_tds__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__tds__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetServiceCapabilitiesResponse*)p = *(_tds__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__tds__GetDeviceInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDeviceInformation type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDeviceInformation*)p = *(_tds__GetDeviceInformation*)q; - break; - case SOAP_TYPE__tds__GetDeviceInformationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDeviceInformationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDeviceInformationResponse*)p = *(_tds__GetDeviceInformationResponse*)q; - break; - case SOAP_TYPE__tds__SetSystemDateAndTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetSystemDateAndTime type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetSystemDateAndTime*)p = *(_tds__SetSystemDateAndTime*)q; - break; - case SOAP_TYPE__tds__SetSystemDateAndTimeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetSystemDateAndTimeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetSystemDateAndTimeResponse*)p = *(_tds__SetSystemDateAndTimeResponse*)q; - break; - case SOAP_TYPE__tds__GetSystemDateAndTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemDateAndTime type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemDateAndTime*)p = *(_tds__GetSystemDateAndTime*)q; - break; - case SOAP_TYPE__tds__GetSystemDateAndTimeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemDateAndTimeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemDateAndTimeResponse*)p = *(_tds__GetSystemDateAndTimeResponse*)q; - break; - case SOAP_TYPE__tds__SetSystemFactoryDefault: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetSystemFactoryDefault type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetSystemFactoryDefault*)p = *(_tds__SetSystemFactoryDefault*)q; - break; - case SOAP_TYPE__tds__SetSystemFactoryDefaultResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetSystemFactoryDefaultResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetSystemFactoryDefaultResponse*)p = *(_tds__SetSystemFactoryDefaultResponse*)q; - break; - case SOAP_TYPE__tds__UpgradeSystemFirmware: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__UpgradeSystemFirmware type=%d location=%p object=%p\n", t, p, q)); - *(_tds__UpgradeSystemFirmware*)p = *(_tds__UpgradeSystemFirmware*)q; - break; - case SOAP_TYPE__tds__UpgradeSystemFirmwareResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__UpgradeSystemFirmwareResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__UpgradeSystemFirmwareResponse*)p = *(_tds__UpgradeSystemFirmwareResponse*)q; - break; - case SOAP_TYPE__tds__SystemReboot: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SystemReboot type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SystemReboot*)p = *(_tds__SystemReboot*)q; - break; - case SOAP_TYPE__tds__SystemRebootResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SystemRebootResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SystemRebootResponse*)p = *(_tds__SystemRebootResponse*)q; - break; - case SOAP_TYPE__tds__RestoreSystem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__RestoreSystem type=%d location=%p object=%p\n", t, p, q)); - *(_tds__RestoreSystem*)p = *(_tds__RestoreSystem*)q; - break; - case SOAP_TYPE__tds__RestoreSystemResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__RestoreSystemResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__RestoreSystemResponse*)p = *(_tds__RestoreSystemResponse*)q; - break; - case SOAP_TYPE__tds__GetSystemBackup: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemBackup type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemBackup*)p = *(_tds__GetSystemBackup*)q; - break; - case SOAP_TYPE__tds__GetSystemBackupResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemBackupResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemBackupResponse*)p = *(_tds__GetSystemBackupResponse*)q; - break; - case SOAP_TYPE__tds__GetSystemSupportInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemSupportInformation type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemSupportInformation*)p = *(_tds__GetSystemSupportInformation*)q; - break; - case SOAP_TYPE__tds__GetSystemSupportInformationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemSupportInformationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemSupportInformationResponse*)p = *(_tds__GetSystemSupportInformationResponse*)q; - break; - case SOAP_TYPE__tds__GetSystemLog: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemLog type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemLog*)p = *(_tds__GetSystemLog*)q; - break; - case SOAP_TYPE__tds__GetSystemLogResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemLogResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemLogResponse*)p = *(_tds__GetSystemLogResponse*)q; - break; - case SOAP_TYPE__tds__GetScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetScopes type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetScopes*)p = *(_tds__GetScopes*)q; - break; - case SOAP_TYPE__tds__GetScopesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetScopesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetScopesResponse*)p = *(_tds__GetScopesResponse*)q; - break; - case SOAP_TYPE__tds__SetScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetScopes type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetScopes*)p = *(_tds__SetScopes*)q; - break; - case SOAP_TYPE__tds__SetScopesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetScopesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetScopesResponse*)p = *(_tds__SetScopesResponse*)q; - break; - case SOAP_TYPE__tds__AddScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__AddScopes type=%d location=%p object=%p\n", t, p, q)); - *(_tds__AddScopes*)p = *(_tds__AddScopes*)q; - break; - case SOAP_TYPE__tds__AddScopesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__AddScopesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__AddScopesResponse*)p = *(_tds__AddScopesResponse*)q; - break; - case SOAP_TYPE__tds__RemoveScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__RemoveScopes type=%d location=%p object=%p\n", t, p, q)); - *(_tds__RemoveScopes*)p = *(_tds__RemoveScopes*)q; - break; - case SOAP_TYPE__tds__RemoveScopesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__RemoveScopesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__RemoveScopesResponse*)p = *(_tds__RemoveScopesResponse*)q; - break; - case SOAP_TYPE__tds__GetDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDiscoveryMode*)p = *(_tds__GetDiscoveryMode*)q; - break; - case SOAP_TYPE__tds__GetDiscoveryModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDiscoveryModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDiscoveryModeResponse*)p = *(_tds__GetDiscoveryModeResponse*)q; - break; - case SOAP_TYPE__tds__SetDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDiscoveryMode*)p = *(_tds__SetDiscoveryMode*)q; - break; - case SOAP_TYPE__tds__SetDiscoveryModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDiscoveryModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDiscoveryModeResponse*)p = *(_tds__SetDiscoveryModeResponse*)q; - break; - case SOAP_TYPE__tds__GetRemoteDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetRemoteDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetRemoteDiscoveryMode*)p = *(_tds__GetRemoteDiscoveryMode*)q; - break; - case SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetRemoteDiscoveryModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetRemoteDiscoveryModeResponse*)p = *(_tds__GetRemoteDiscoveryModeResponse*)q; - break; - case SOAP_TYPE__tds__SetRemoteDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRemoteDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRemoteDiscoveryMode*)p = *(_tds__SetRemoteDiscoveryMode*)q; - break; - case SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRemoteDiscoveryModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRemoteDiscoveryModeResponse*)p = *(_tds__SetRemoteDiscoveryModeResponse*)q; - break; - case SOAP_TYPE__tds__GetDPAddresses: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDPAddresses type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDPAddresses*)p = *(_tds__GetDPAddresses*)q; - break; - case SOAP_TYPE__tds__GetDPAddressesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDPAddressesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDPAddressesResponse*)p = *(_tds__GetDPAddressesResponse*)q; - break; - case SOAP_TYPE__tds__SetDPAddresses: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDPAddresses type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDPAddresses*)p = *(_tds__SetDPAddresses*)q; - break; - case SOAP_TYPE__tds__SetDPAddressesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDPAddressesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDPAddressesResponse*)p = *(_tds__SetDPAddressesResponse*)q; - break; - case SOAP_TYPE__tds__GetEndpointReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetEndpointReference type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetEndpointReference*)p = *(_tds__GetEndpointReference*)q; - break; - case SOAP_TYPE__tds__GetEndpointReferenceResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetEndpointReferenceResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetEndpointReferenceResponse*)p = *(_tds__GetEndpointReferenceResponse*)q; - break; - case SOAP_TYPE__tds__GetRemoteUser: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetRemoteUser type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetRemoteUser*)p = *(_tds__GetRemoteUser*)q; - break; - case SOAP_TYPE__tds__GetRemoteUserResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetRemoteUserResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetRemoteUserResponse*)p = *(_tds__GetRemoteUserResponse*)q; - break; - case SOAP_TYPE__tds__SetRemoteUser: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRemoteUser type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRemoteUser*)p = *(_tds__SetRemoteUser*)q; - break; - case SOAP_TYPE__tds__SetRemoteUserResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRemoteUserResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRemoteUserResponse*)p = *(_tds__SetRemoteUserResponse*)q; - break; - case SOAP_TYPE__tds__GetUsers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetUsers type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetUsers*)p = *(_tds__GetUsers*)q; - break; - case SOAP_TYPE__tds__GetUsersResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetUsersResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetUsersResponse*)p = *(_tds__GetUsersResponse*)q; - break; - case SOAP_TYPE__tds__CreateUsers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateUsers type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateUsers*)p = *(_tds__CreateUsers*)q; - break; - case SOAP_TYPE__tds__CreateUsersResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateUsersResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateUsersResponse*)p = *(_tds__CreateUsersResponse*)q; - break; - case SOAP_TYPE__tds__DeleteUsers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteUsers type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteUsers*)p = *(_tds__DeleteUsers*)q; - break; - case SOAP_TYPE__tds__DeleteUsersResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteUsersResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteUsersResponse*)p = *(_tds__DeleteUsersResponse*)q; - break; - case SOAP_TYPE__tds__SetUser: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetUser type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetUser*)p = *(_tds__SetUser*)q; - break; - case SOAP_TYPE__tds__SetUserResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetUserResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetUserResponse*)p = *(_tds__SetUserResponse*)q; - break; - case SOAP_TYPE__tds__GetWsdlUrl: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetWsdlUrl type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetWsdlUrl*)p = *(_tds__GetWsdlUrl*)q; - break; - case SOAP_TYPE__tds__GetWsdlUrlResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetWsdlUrlResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetWsdlUrlResponse*)p = *(_tds__GetWsdlUrlResponse*)q; - break; - case SOAP_TYPE__tds__GetCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCapabilities*)p = *(_tds__GetCapabilities*)q; - break; - case SOAP_TYPE__tds__GetCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCapabilitiesResponse*)p = *(_tds__GetCapabilitiesResponse*)q; - break; - case SOAP_TYPE__tds__GetHostname: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetHostname type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetHostname*)p = *(_tds__GetHostname*)q; - break; - case SOAP_TYPE__tds__GetHostnameResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetHostnameResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetHostnameResponse*)p = *(_tds__GetHostnameResponse*)q; - break; - case SOAP_TYPE__tds__SetHostname: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetHostname type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetHostname*)p = *(_tds__SetHostname*)q; - break; - case SOAP_TYPE__tds__SetHostnameResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetHostnameResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetHostnameResponse*)p = *(_tds__SetHostnameResponse*)q; - break; - case SOAP_TYPE__tds__SetHostnameFromDHCP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetHostnameFromDHCP type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetHostnameFromDHCP*)p = *(_tds__SetHostnameFromDHCP*)q; - break; - case SOAP_TYPE__tds__SetHostnameFromDHCPResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetHostnameFromDHCPResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetHostnameFromDHCPResponse*)p = *(_tds__SetHostnameFromDHCPResponse*)q; - break; - case SOAP_TYPE__tds__GetDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDNS type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDNS*)p = *(_tds__GetDNS*)q; - break; - case SOAP_TYPE__tds__GetDNSResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDNSResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDNSResponse*)p = *(_tds__GetDNSResponse*)q; - break; - case SOAP_TYPE__tds__SetDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDNS type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDNS*)p = *(_tds__SetDNS*)q; - break; - case SOAP_TYPE__tds__SetDNSResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDNSResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDNSResponse*)p = *(_tds__SetDNSResponse*)q; - break; - case SOAP_TYPE__tds__GetNTP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNTP type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNTP*)p = *(_tds__GetNTP*)q; - break; - case SOAP_TYPE__tds__GetNTPResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNTPResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNTPResponse*)p = *(_tds__GetNTPResponse*)q; - break; - case SOAP_TYPE__tds__SetNTP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNTP type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNTP*)p = *(_tds__SetNTP*)q; - break; - case SOAP_TYPE__tds__SetNTPResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNTPResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNTPResponse*)p = *(_tds__SetNTPResponse*)q; - break; - case SOAP_TYPE__tds__GetDynamicDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDynamicDNS type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDynamicDNS*)p = *(_tds__GetDynamicDNS*)q; - break; - case SOAP_TYPE__tds__GetDynamicDNSResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDynamicDNSResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDynamicDNSResponse*)p = *(_tds__GetDynamicDNSResponse*)q; - break; - case SOAP_TYPE__tds__SetDynamicDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDynamicDNS type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDynamicDNS*)p = *(_tds__SetDynamicDNS*)q; - break; - case SOAP_TYPE__tds__SetDynamicDNSResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDynamicDNSResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDynamicDNSResponse*)p = *(_tds__SetDynamicDNSResponse*)q; - break; - case SOAP_TYPE__tds__GetNetworkInterfaces: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNetworkInterfaces type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNetworkInterfaces*)p = *(_tds__GetNetworkInterfaces*)q; - break; - case SOAP_TYPE__tds__GetNetworkInterfacesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNetworkInterfacesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNetworkInterfacesResponse*)p = *(_tds__GetNetworkInterfacesResponse*)q; - break; - case SOAP_TYPE__tds__SetNetworkInterfaces: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNetworkInterfaces type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNetworkInterfaces*)p = *(_tds__SetNetworkInterfaces*)q; - break; - case SOAP_TYPE__tds__SetNetworkInterfacesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNetworkInterfacesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNetworkInterfacesResponse*)p = *(_tds__SetNetworkInterfacesResponse*)q; - break; - case SOAP_TYPE__tds__GetNetworkProtocols: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNetworkProtocols type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNetworkProtocols*)p = *(_tds__GetNetworkProtocols*)q; - break; - case SOAP_TYPE__tds__GetNetworkProtocolsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNetworkProtocolsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNetworkProtocolsResponse*)p = *(_tds__GetNetworkProtocolsResponse*)q; - break; - case SOAP_TYPE__tds__SetNetworkProtocols: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNetworkProtocols type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNetworkProtocols*)p = *(_tds__SetNetworkProtocols*)q; - break; - case SOAP_TYPE__tds__SetNetworkProtocolsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNetworkProtocolsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNetworkProtocolsResponse*)p = *(_tds__SetNetworkProtocolsResponse*)q; - break; - case SOAP_TYPE__tds__GetNetworkDefaultGateway: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNetworkDefaultGateway type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNetworkDefaultGateway*)p = *(_tds__GetNetworkDefaultGateway*)q; - break; - case SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetNetworkDefaultGatewayResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetNetworkDefaultGatewayResponse*)p = *(_tds__GetNetworkDefaultGatewayResponse*)q; - break; - case SOAP_TYPE__tds__SetNetworkDefaultGateway: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNetworkDefaultGateway type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNetworkDefaultGateway*)p = *(_tds__SetNetworkDefaultGateway*)q; - break; - case SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetNetworkDefaultGatewayResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetNetworkDefaultGatewayResponse*)p = *(_tds__SetNetworkDefaultGatewayResponse*)q; - break; - case SOAP_TYPE__tds__GetZeroConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetZeroConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetZeroConfiguration*)p = *(_tds__GetZeroConfiguration*)q; - break; - case SOAP_TYPE__tds__GetZeroConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetZeroConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetZeroConfigurationResponse*)p = *(_tds__GetZeroConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__SetZeroConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetZeroConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetZeroConfiguration*)p = *(_tds__SetZeroConfiguration*)q; - break; - case SOAP_TYPE__tds__SetZeroConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetZeroConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetZeroConfigurationResponse*)p = *(_tds__SetZeroConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__GetIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetIPAddressFilter*)p = *(_tds__GetIPAddressFilter*)q; - break; - case SOAP_TYPE__tds__GetIPAddressFilterResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetIPAddressFilterResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetIPAddressFilterResponse*)p = *(_tds__GetIPAddressFilterResponse*)q; - break; - case SOAP_TYPE__tds__SetIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetIPAddressFilter*)p = *(_tds__SetIPAddressFilter*)q; - break; - case SOAP_TYPE__tds__SetIPAddressFilterResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetIPAddressFilterResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetIPAddressFilterResponse*)p = *(_tds__SetIPAddressFilterResponse*)q; - break; - case SOAP_TYPE__tds__AddIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__AddIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(_tds__AddIPAddressFilter*)p = *(_tds__AddIPAddressFilter*)q; - break; - case SOAP_TYPE__tds__AddIPAddressFilterResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__AddIPAddressFilterResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__AddIPAddressFilterResponse*)p = *(_tds__AddIPAddressFilterResponse*)q; - break; - case SOAP_TYPE__tds__RemoveIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__RemoveIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(_tds__RemoveIPAddressFilter*)p = *(_tds__RemoveIPAddressFilter*)q; - break; - case SOAP_TYPE__tds__RemoveIPAddressFilterResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__RemoveIPAddressFilterResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__RemoveIPAddressFilterResponse*)p = *(_tds__RemoveIPAddressFilterResponse*)q; - break; - case SOAP_TYPE__tds__GetAccessPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetAccessPolicy type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetAccessPolicy*)p = *(_tds__GetAccessPolicy*)q; - break; - case SOAP_TYPE__tds__GetAccessPolicyResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetAccessPolicyResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetAccessPolicyResponse*)p = *(_tds__GetAccessPolicyResponse*)q; - break; - case SOAP_TYPE__tds__SetAccessPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetAccessPolicy type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetAccessPolicy*)p = *(_tds__SetAccessPolicy*)q; - break; - case SOAP_TYPE__tds__SetAccessPolicyResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetAccessPolicyResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetAccessPolicyResponse*)p = *(_tds__SetAccessPolicyResponse*)q; - break; - case SOAP_TYPE__tds__CreateCertificate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateCertificate type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateCertificate*)p = *(_tds__CreateCertificate*)q; - break; - case SOAP_TYPE__tds__CreateCertificateResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateCertificateResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateCertificateResponse*)p = *(_tds__CreateCertificateResponse*)q; - break; - case SOAP_TYPE__tds__GetCertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCertificates type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCertificates*)p = *(_tds__GetCertificates*)q; - break; - case SOAP_TYPE__tds__GetCertificatesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCertificatesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCertificatesResponse*)p = *(_tds__GetCertificatesResponse*)q; - break; - case SOAP_TYPE__tds__GetCertificatesStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCertificatesStatus type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCertificatesStatus*)p = *(_tds__GetCertificatesStatus*)q; - break; - case SOAP_TYPE__tds__GetCertificatesStatusResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCertificatesStatusResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCertificatesStatusResponse*)p = *(_tds__GetCertificatesStatusResponse*)q; - break; - case SOAP_TYPE__tds__SetCertificatesStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetCertificatesStatus type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetCertificatesStatus*)p = *(_tds__SetCertificatesStatus*)q; - break; - case SOAP_TYPE__tds__SetCertificatesStatusResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetCertificatesStatusResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetCertificatesStatusResponse*)p = *(_tds__SetCertificatesStatusResponse*)q; - break; - case SOAP_TYPE__tds__DeleteCertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteCertificates type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteCertificates*)p = *(_tds__DeleteCertificates*)q; - break; - case SOAP_TYPE__tds__DeleteCertificatesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteCertificatesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteCertificatesResponse*)p = *(_tds__DeleteCertificatesResponse*)q; - break; - case SOAP_TYPE__tds__GetPkcs10Request: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetPkcs10Request type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetPkcs10Request*)p = *(_tds__GetPkcs10Request*)q; - break; - case SOAP_TYPE__tds__GetPkcs10RequestResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetPkcs10RequestResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetPkcs10RequestResponse*)p = *(_tds__GetPkcs10RequestResponse*)q; - break; - case SOAP_TYPE__tds__LoadCertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__LoadCertificates type=%d location=%p object=%p\n", t, p, q)); - *(_tds__LoadCertificates*)p = *(_tds__LoadCertificates*)q; - break; - case SOAP_TYPE__tds__LoadCertificatesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__LoadCertificatesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__LoadCertificatesResponse*)p = *(_tds__LoadCertificatesResponse*)q; - break; - case SOAP_TYPE__tds__GetClientCertificateMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetClientCertificateMode type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetClientCertificateMode*)p = *(_tds__GetClientCertificateMode*)q; - break; - case SOAP_TYPE__tds__GetClientCertificateModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetClientCertificateModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetClientCertificateModeResponse*)p = *(_tds__GetClientCertificateModeResponse*)q; - break; - case SOAP_TYPE__tds__SetClientCertificateMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetClientCertificateMode type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetClientCertificateMode*)p = *(_tds__SetClientCertificateMode*)q; - break; - case SOAP_TYPE__tds__SetClientCertificateModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetClientCertificateModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetClientCertificateModeResponse*)p = *(_tds__SetClientCertificateModeResponse*)q; - break; - case SOAP_TYPE__tds__GetCACertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCACertificates type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCACertificates*)p = *(_tds__GetCACertificates*)q; - break; - case SOAP_TYPE__tds__GetCACertificatesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCACertificatesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCACertificatesResponse*)p = *(_tds__GetCACertificatesResponse*)q; - break; - case SOAP_TYPE__tds__LoadCertificateWithPrivateKey: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__LoadCertificateWithPrivateKey type=%d location=%p object=%p\n", t, p, q)); - *(_tds__LoadCertificateWithPrivateKey*)p = *(_tds__LoadCertificateWithPrivateKey*)q; - break; - case SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__LoadCertificateWithPrivateKeyResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__LoadCertificateWithPrivateKeyResponse*)p = *(_tds__LoadCertificateWithPrivateKeyResponse*)q; - break; - case SOAP_TYPE__tds__GetCertificateInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCertificateInformation type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCertificateInformation*)p = *(_tds__GetCertificateInformation*)q; - break; - case SOAP_TYPE__tds__GetCertificateInformationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetCertificateInformationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetCertificateInformationResponse*)p = *(_tds__GetCertificateInformationResponse*)q; - break; - case SOAP_TYPE__tds__LoadCACertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__LoadCACertificates type=%d location=%p object=%p\n", t, p, q)); - *(_tds__LoadCACertificates*)p = *(_tds__LoadCACertificates*)q; - break; - case SOAP_TYPE__tds__LoadCACertificatesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__LoadCACertificatesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__LoadCACertificatesResponse*)p = *(_tds__LoadCACertificatesResponse*)q; - break; - case SOAP_TYPE__tds__CreateDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateDot1XConfiguration*)p = *(_tds__CreateDot1XConfiguration*)q; - break; - case SOAP_TYPE__tds__CreateDot1XConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateDot1XConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateDot1XConfigurationResponse*)p = *(_tds__CreateDot1XConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__SetDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDot1XConfiguration*)p = *(_tds__SetDot1XConfiguration*)q; - break; - case SOAP_TYPE__tds__SetDot1XConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetDot1XConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetDot1XConfigurationResponse*)p = *(_tds__SetDot1XConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__GetDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot1XConfiguration*)p = *(_tds__GetDot1XConfiguration*)q; - break; - case SOAP_TYPE__tds__GetDot1XConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot1XConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot1XConfigurationResponse*)p = *(_tds__GetDot1XConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__GetDot1XConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot1XConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot1XConfigurations*)p = *(_tds__GetDot1XConfigurations*)q; - break; - case SOAP_TYPE__tds__GetDot1XConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot1XConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot1XConfigurationsResponse*)p = *(_tds__GetDot1XConfigurationsResponse*)q; - break; - case SOAP_TYPE__tds__DeleteDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteDot1XConfiguration*)p = *(_tds__DeleteDot1XConfiguration*)q; - break; - case SOAP_TYPE__tds__DeleteDot1XConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteDot1XConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteDot1XConfigurationResponse*)p = *(_tds__DeleteDot1XConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__GetRelayOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetRelayOutputs type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetRelayOutputs*)p = *(_tds__GetRelayOutputs*)q; - break; - case SOAP_TYPE__tds__GetRelayOutputsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetRelayOutputsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetRelayOutputsResponse*)p = *(_tds__GetRelayOutputsResponse*)q; - break; - case SOAP_TYPE__tds__SetRelayOutputSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRelayOutputSettings type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRelayOutputSettings*)p = *(_tds__SetRelayOutputSettings*)q; - break; - case SOAP_TYPE__tds__SetRelayOutputSettingsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRelayOutputSettingsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRelayOutputSettingsResponse*)p = *(_tds__SetRelayOutputSettingsResponse*)q; - break; - case SOAP_TYPE__tds__SetRelayOutputState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRelayOutputState type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRelayOutputState*)p = *(_tds__SetRelayOutputState*)q; - break; - case SOAP_TYPE__tds__SetRelayOutputStateResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetRelayOutputStateResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetRelayOutputStateResponse*)p = *(_tds__SetRelayOutputStateResponse*)q; - break; - case SOAP_TYPE__tds__SendAuxiliaryCommand: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SendAuxiliaryCommand type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SendAuxiliaryCommand*)p = *(_tds__SendAuxiliaryCommand*)q; - break; - case SOAP_TYPE__tds__SendAuxiliaryCommandResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SendAuxiliaryCommandResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SendAuxiliaryCommandResponse*)p = *(_tds__SendAuxiliaryCommandResponse*)q; - break; - case SOAP_TYPE__tds__GetDot11Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot11Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot11Capabilities*)p = *(_tds__GetDot11Capabilities*)q; - break; - case SOAP_TYPE__tds__GetDot11CapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot11CapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot11CapabilitiesResponse*)p = *(_tds__GetDot11CapabilitiesResponse*)q; - break; - case SOAP_TYPE__tds__GetDot11Status: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot11Status type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot11Status*)p = *(_tds__GetDot11Status*)q; - break; - case SOAP_TYPE__tds__GetDot11StatusResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetDot11StatusResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetDot11StatusResponse*)p = *(_tds__GetDot11StatusResponse*)q; - break; - case SOAP_TYPE__tds__ScanAvailableDot11Networks: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__ScanAvailableDot11Networks type=%d location=%p object=%p\n", t, p, q)); - *(_tds__ScanAvailableDot11Networks*)p = *(_tds__ScanAvailableDot11Networks*)q; - break; - case SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__ScanAvailableDot11NetworksResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__ScanAvailableDot11NetworksResponse*)p = *(_tds__ScanAvailableDot11NetworksResponse*)q; - break; - case SOAP_TYPE__tds__GetSystemUris: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemUris type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemUris*)p = *(_tds__GetSystemUris*)q; - break; - case SOAP_TYPE__tds__GetSystemUrisResponse_Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemUrisResponse_Extension type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemUrisResponse_Extension*)p = *(_tds__GetSystemUrisResponse_Extension*)q; - break; - case SOAP_TYPE__tds__GetSystemUrisResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetSystemUrisResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetSystemUrisResponse*)p = *(_tds__GetSystemUrisResponse*)q; - break; - case SOAP_TYPE__tds__StartFirmwareUpgrade: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__StartFirmwareUpgrade type=%d location=%p object=%p\n", t, p, q)); - *(_tds__StartFirmwareUpgrade*)p = *(_tds__StartFirmwareUpgrade*)q; - break; - case SOAP_TYPE__tds__StartFirmwareUpgradeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__StartFirmwareUpgradeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__StartFirmwareUpgradeResponse*)p = *(_tds__StartFirmwareUpgradeResponse*)q; - break; - case SOAP_TYPE__tds__StartSystemRestore: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__StartSystemRestore type=%d location=%p object=%p\n", t, p, q)); - *(_tds__StartSystemRestore*)p = *(_tds__StartSystemRestore*)q; - break; - case SOAP_TYPE__tds__StartSystemRestoreResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__StartSystemRestoreResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__StartSystemRestoreResponse*)p = *(_tds__StartSystemRestoreResponse*)q; - break; - case SOAP_TYPE__tds__GetStorageConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetStorageConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetStorageConfigurations*)p = *(_tds__GetStorageConfigurations*)q; - break; - case SOAP_TYPE__tds__GetStorageConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetStorageConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetStorageConfigurationsResponse*)p = *(_tds__GetStorageConfigurationsResponse*)q; - break; - case SOAP_TYPE__tds__CreateStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateStorageConfiguration*)p = *(_tds__CreateStorageConfiguration*)q; - break; - case SOAP_TYPE__tds__CreateStorageConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__CreateStorageConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__CreateStorageConfigurationResponse*)p = *(_tds__CreateStorageConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__GetStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetStorageConfiguration*)p = *(_tds__GetStorageConfiguration*)q; - break; - case SOAP_TYPE__tds__GetStorageConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetStorageConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetStorageConfigurationResponse*)p = *(_tds__GetStorageConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__SetStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetStorageConfiguration*)p = *(_tds__SetStorageConfiguration*)q; - break; - case SOAP_TYPE__tds__SetStorageConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetStorageConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetStorageConfigurationResponse*)p = *(_tds__SetStorageConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__DeleteStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteStorageConfiguration*)p = *(_tds__DeleteStorageConfiguration*)q; - break; - case SOAP_TYPE__tds__DeleteStorageConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteStorageConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteStorageConfigurationResponse*)p = *(_tds__DeleteStorageConfigurationResponse*)q; - break; - case SOAP_TYPE__tds__GetGeoLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetGeoLocation type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetGeoLocation*)p = *(_tds__GetGeoLocation*)q; - break; - case SOAP_TYPE__tds__GetGeoLocationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__GetGeoLocationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__GetGeoLocationResponse*)p = *(_tds__GetGeoLocationResponse*)q; - break; - case SOAP_TYPE__tds__SetGeoLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetGeoLocation type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetGeoLocation*)p = *(_tds__SetGeoLocation*)q; - break; - case SOAP_TYPE__tds__SetGeoLocationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__SetGeoLocationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__SetGeoLocationResponse*)p = *(_tds__SetGeoLocationResponse*)q; - break; - case SOAP_TYPE__tds__DeleteGeoLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteGeoLocation type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteGeoLocation*)p = *(_tds__DeleteGeoLocation*)q; - break; - case SOAP_TYPE__tds__DeleteGeoLocationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tds__DeleteGeoLocationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tds__DeleteGeoLocationResponse*)p = *(_tds__DeleteGeoLocationResponse*)q; - break; - case SOAP_TYPE_tls__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tls__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(tls__Capabilities*)p = *(tls__Capabilities*)q; - break; - case SOAP_TYPE__tls__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetServiceCapabilities*)p = *(_tls__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__tls__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetServiceCapabilitiesResponse*)p = *(_tls__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__tls__GetLayout: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetLayout type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetLayout*)p = *(_tls__GetLayout*)q; - break; - case SOAP_TYPE__tls__GetLayoutResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetLayoutResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetLayoutResponse*)p = *(_tls__GetLayoutResponse*)q; - break; - case SOAP_TYPE__tls__SetLayout: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__SetLayout type=%d location=%p object=%p\n", t, p, q)); - *(_tls__SetLayout*)p = *(_tls__SetLayout*)q; - break; - case SOAP_TYPE__tls__SetLayoutResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__SetLayoutResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__SetLayoutResponse*)p = *(_tls__SetLayoutResponse*)q; - break; - case SOAP_TYPE__tls__GetDisplayOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetDisplayOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetDisplayOptions*)p = *(_tls__GetDisplayOptions*)q; - break; - case SOAP_TYPE__tls__GetDisplayOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetDisplayOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetDisplayOptionsResponse*)p = *(_tls__GetDisplayOptionsResponse*)q; - break; - case SOAP_TYPE__tls__GetPaneConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetPaneConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetPaneConfigurations*)p = *(_tls__GetPaneConfigurations*)q; - break; - case SOAP_TYPE__tls__GetPaneConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetPaneConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetPaneConfigurationsResponse*)p = *(_tls__GetPaneConfigurationsResponse*)q; - break; - case SOAP_TYPE__tls__GetPaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetPaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetPaneConfiguration*)p = *(_tls__GetPaneConfiguration*)q; - break; - case SOAP_TYPE__tls__GetPaneConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__GetPaneConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__GetPaneConfigurationResponse*)p = *(_tls__GetPaneConfigurationResponse*)q; - break; - case SOAP_TYPE__tls__SetPaneConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__SetPaneConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_tls__SetPaneConfigurations*)p = *(_tls__SetPaneConfigurations*)q; - break; - case SOAP_TYPE__tls__SetPaneConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__SetPaneConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__SetPaneConfigurationsResponse*)p = *(_tls__SetPaneConfigurationsResponse*)q; - break; - case SOAP_TYPE__tls__SetPaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__SetPaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tls__SetPaneConfiguration*)p = *(_tls__SetPaneConfiguration*)q; - break; - case SOAP_TYPE__tls__SetPaneConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__SetPaneConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__SetPaneConfigurationResponse*)p = *(_tls__SetPaneConfigurationResponse*)q; - break; - case SOAP_TYPE__tls__CreatePaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__CreatePaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tls__CreatePaneConfiguration*)p = *(_tls__CreatePaneConfiguration*)q; - break; - case SOAP_TYPE__tls__CreatePaneConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__CreatePaneConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__CreatePaneConfigurationResponse*)p = *(_tls__CreatePaneConfigurationResponse*)q; - break; - case SOAP_TYPE__tls__DeletePaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__DeletePaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tls__DeletePaneConfiguration*)p = *(_tls__DeletePaneConfiguration*)q; - break; - case SOAP_TYPE__tls__DeletePaneConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tls__DeletePaneConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tls__DeletePaneConfigurationResponse*)p = *(_tls__DeletePaneConfigurationResponse*)q; - break; - case SOAP_TYPE_timg__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy timg__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(timg__Capabilities*)p = *(timg__Capabilities*)q; - break; - case SOAP_TYPE_timg__ImagingPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy timg__ImagingPreset type=%d location=%p object=%p\n", t, p, q)); - *(timg__ImagingPreset*)p = *(timg__ImagingPreset*)q; - break; - case SOAP_TYPE__timg__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetServiceCapabilities*)p = *(_timg__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__timg__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetServiceCapabilitiesResponse*)p = *(_timg__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__timg__GetImagingSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetImagingSettings type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetImagingSettings*)p = *(_timg__GetImagingSettings*)q; - break; - case SOAP_TYPE__timg__GetImagingSettingsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetImagingSettingsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetImagingSettingsResponse*)p = *(_timg__GetImagingSettingsResponse*)q; - break; - case SOAP_TYPE__timg__SetImagingSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__SetImagingSettings type=%d location=%p object=%p\n", t, p, q)); - *(_timg__SetImagingSettings*)p = *(_timg__SetImagingSettings*)q; - break; - case SOAP_TYPE__timg__SetImagingSettingsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__SetImagingSettingsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__SetImagingSettingsResponse*)p = *(_timg__SetImagingSettingsResponse*)q; - break; - case SOAP_TYPE__timg__GetOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetOptions type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetOptions*)p = *(_timg__GetOptions*)q; - break; - case SOAP_TYPE__timg__GetOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetOptionsResponse*)p = *(_timg__GetOptionsResponse*)q; - break; - case SOAP_TYPE__timg__Move: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__Move type=%d location=%p object=%p\n", t, p, q)); - *(_timg__Move*)p = *(_timg__Move*)q; - break; - case SOAP_TYPE__timg__MoveResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__MoveResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__MoveResponse*)p = *(_timg__MoveResponse*)q; - break; - case SOAP_TYPE__timg__GetMoveOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetMoveOptions type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetMoveOptions*)p = *(_timg__GetMoveOptions*)q; - break; - case SOAP_TYPE__timg__GetMoveOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetMoveOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetMoveOptionsResponse*)p = *(_timg__GetMoveOptionsResponse*)q; - break; - case SOAP_TYPE__timg__Stop: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__Stop type=%d location=%p object=%p\n", t, p, q)); - *(_timg__Stop*)p = *(_timg__Stop*)q; - break; - case SOAP_TYPE__timg__StopResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__StopResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__StopResponse*)p = *(_timg__StopResponse*)q; - break; - case SOAP_TYPE__timg__GetStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetStatus type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetStatus*)p = *(_timg__GetStatus*)q; - break; - case SOAP_TYPE__timg__GetStatusResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetStatusResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetStatusResponse*)p = *(_timg__GetStatusResponse*)q; - break; - case SOAP_TYPE__timg__GetPresets: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetPresets type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetPresets*)p = *(_timg__GetPresets*)q; - break; - case SOAP_TYPE__timg__GetPresetsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetPresetsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetPresetsResponse*)p = *(_timg__GetPresetsResponse*)q; - break; - case SOAP_TYPE__timg__GetCurrentPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetCurrentPreset type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetCurrentPreset*)p = *(_timg__GetCurrentPreset*)q; - break; - case SOAP_TYPE__timg__GetCurrentPresetResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__GetCurrentPresetResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__GetCurrentPresetResponse*)p = *(_timg__GetCurrentPresetResponse*)q; - break; - case SOAP_TYPE__timg__SetCurrentPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__SetCurrentPreset type=%d location=%p object=%p\n", t, p, q)); - *(_timg__SetCurrentPreset*)p = *(_timg__SetCurrentPreset*)q; - break; - case SOAP_TYPE__timg__SetCurrentPresetResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _timg__SetCurrentPresetResponse type=%d location=%p object=%p\n", t, p, q)); - *(_timg__SetCurrentPresetResponse*)p = *(_timg__SetCurrentPresetResponse*)q; - break; - case SOAP_TYPE_xop__Include: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xop__Include type=%d location=%p object=%p\n", t, p, q)); - *(xop__Include*)p = *(xop__Include*)q; - break; - case SOAP_TYPE_trt__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trt__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(trt__Capabilities*)p = *(trt__Capabilities*)q; - break; - case SOAP_TYPE_trt__ProfileCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trt__ProfileCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(trt__ProfileCapabilities*)p = *(trt__ProfileCapabilities*)q; - break; - case SOAP_TYPE_trt__StreamingCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trt__StreamingCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(trt__StreamingCapabilities*)p = *(trt__StreamingCapabilities*)q; - break; - case SOAP_TYPE_trt__VideoSourceMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trt__VideoSourceMode type=%d location=%p object=%p\n", t, p, q)); - *(trt__VideoSourceMode*)p = *(trt__VideoSourceMode*)q; - break; - case SOAP_TYPE_trt__VideoSourceModeExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trt__VideoSourceModeExtension type=%d location=%p object=%p\n", t, p, q)); - *(trt__VideoSourceModeExtension*)p = *(trt__VideoSourceModeExtension*)q; - break; - case SOAP_TYPE__trt__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetServiceCapabilities*)p = *(_trt__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__trt__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetServiceCapabilitiesResponse*)p = *(_trt__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoSources: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSources type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSources*)p = *(_trt__GetVideoSources*)q; - break; - case SOAP_TYPE__trt__GetVideoSourcesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourcesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourcesResponse*)p = *(_trt__GetVideoSourcesResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioSources: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSources type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSources*)p = *(_trt__GetAudioSources*)q; - break; - case SOAP_TYPE__trt__GetAudioSourcesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSourcesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSourcesResponse*)p = *(_trt__GetAudioSourcesResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputs type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputs*)p = *(_trt__GetAudioOutputs*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputsResponse*)p = *(_trt__GetAudioOutputsResponse*)q; - break; - case SOAP_TYPE__trt__CreateProfile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__CreateProfile type=%d location=%p object=%p\n", t, p, q)); - *(_trt__CreateProfile*)p = *(_trt__CreateProfile*)q; - break; - case SOAP_TYPE__trt__CreateProfileResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__CreateProfileResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__CreateProfileResponse*)p = *(_trt__CreateProfileResponse*)q; - break; - case SOAP_TYPE__trt__GetProfile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetProfile type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetProfile*)p = *(_trt__GetProfile*)q; - break; - case SOAP_TYPE__trt__GetProfileResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetProfileResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetProfileResponse*)p = *(_trt__GetProfileResponse*)q; - break; - case SOAP_TYPE__trt__GetProfiles: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetProfiles type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetProfiles*)p = *(_trt__GetProfiles*)q; - break; - case SOAP_TYPE__trt__GetProfilesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetProfilesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetProfilesResponse*)p = *(_trt__GetProfilesResponse*)q; - break; - case SOAP_TYPE__trt__AddVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddVideoEncoderConfiguration*)p = *(_trt__AddVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddVideoEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddVideoEncoderConfigurationResponse*)p = *(_trt__AddVideoEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveVideoEncoderConfiguration*)p = *(_trt__RemoveVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveVideoEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveVideoEncoderConfigurationResponse*)p = *(_trt__RemoveVideoEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddVideoSourceConfiguration*)p = *(_trt__AddVideoSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__AddVideoSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddVideoSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddVideoSourceConfigurationResponse*)p = *(_trt__AddVideoSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveVideoSourceConfiguration*)p = *(_trt__RemoveVideoSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveVideoSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveVideoSourceConfigurationResponse*)p = *(_trt__RemoveVideoSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioEncoderConfiguration*)p = *(_trt__AddAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioEncoderConfigurationResponse*)p = *(_trt__AddAudioEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioEncoderConfiguration*)p = *(_trt__RemoveAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioEncoderConfigurationResponse*)p = *(_trt__RemoveAudioEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioSourceConfiguration*)p = *(_trt__AddAudioSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__AddAudioSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioSourceConfigurationResponse*)p = *(_trt__AddAudioSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioSourceConfiguration*)p = *(_trt__RemoveAudioSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioSourceConfigurationResponse*)p = *(_trt__RemoveAudioSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddPTZConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddPTZConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddPTZConfiguration*)p = *(_trt__AddPTZConfiguration*)q; - break; - case SOAP_TYPE__trt__AddPTZConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddPTZConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddPTZConfigurationResponse*)p = *(_trt__AddPTZConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemovePTZConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemovePTZConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemovePTZConfiguration*)p = *(_trt__RemovePTZConfiguration*)q; - break; - case SOAP_TYPE__trt__RemovePTZConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemovePTZConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemovePTZConfigurationResponse*)p = *(_trt__RemovePTZConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddVideoAnalyticsConfiguration*)p = *(_trt__AddVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddVideoAnalyticsConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddVideoAnalyticsConfigurationResponse*)p = *(_trt__AddVideoAnalyticsConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveVideoAnalyticsConfiguration*)p = *(_trt__RemoveVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveVideoAnalyticsConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveVideoAnalyticsConfigurationResponse*)p = *(_trt__RemoveVideoAnalyticsConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddMetadataConfiguration*)p = *(_trt__AddMetadataConfiguration*)q; - break; - case SOAP_TYPE__trt__AddMetadataConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddMetadataConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddMetadataConfigurationResponse*)p = *(_trt__AddMetadataConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveMetadataConfiguration*)p = *(_trt__RemoveMetadataConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveMetadataConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveMetadataConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveMetadataConfigurationResponse*)p = *(_trt__RemoveMetadataConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioOutputConfiguration*)p = *(_trt__AddAudioOutputConfiguration*)q; - break; - case SOAP_TYPE__trt__AddAudioOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioOutputConfigurationResponse*)p = *(_trt__AddAudioOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioOutputConfiguration*)p = *(_trt__RemoveAudioOutputConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioOutputConfigurationResponse*)p = *(_trt__RemoveAudioOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__AddAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioDecoderConfiguration*)p = *(_trt__AddAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__AddAudioDecoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__AddAudioDecoderConfigurationResponse*)p = *(_trt__AddAudioDecoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__RemoveAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioDecoderConfiguration*)p = *(_trt__RemoveAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__RemoveAudioDecoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__RemoveAudioDecoderConfigurationResponse*)p = *(_trt__RemoveAudioDecoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__DeleteProfile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__DeleteProfile type=%d location=%p object=%p\n", t, p, q)); - *(_trt__DeleteProfile*)p = *(_trt__DeleteProfile*)q; - break; - case SOAP_TYPE__trt__DeleteProfileResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__DeleteProfileResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__DeleteProfileResponse*)p = *(_trt__DeleteProfileResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoEncoderConfigurations*)p = *(_trt__GetVideoEncoderConfigurations*)q; - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoEncoderConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoEncoderConfigurationsResponse*)p = *(_trt__GetVideoEncoderConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceConfigurations*)p = *(_trt__GetVideoSourceConfigurations*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceConfigurationsResponse*)p = *(_trt__GetVideoSourceConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioEncoderConfigurations*)p = *(_trt__GetAudioEncoderConfigurations*)q; - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioEncoderConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioEncoderConfigurationsResponse*)p = *(_trt__GetAudioEncoderConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSourceConfigurations*)p = *(_trt__GetAudioSourceConfigurations*)q; - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSourceConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSourceConfigurationsResponse*)p = *(_trt__GetAudioSourceConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoAnalyticsConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoAnalyticsConfigurations*)p = *(_trt__GetVideoAnalyticsConfigurations*)q; - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoAnalyticsConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoAnalyticsConfigurationsResponse*)p = *(_trt__GetVideoAnalyticsConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetMetadataConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetMetadataConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetMetadataConfigurations*)p = *(_trt__GetMetadataConfigurations*)q; - break; - case SOAP_TYPE__trt__GetMetadataConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetMetadataConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetMetadataConfigurationsResponse*)p = *(_trt__GetMetadataConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputConfigurations*)p = *(_trt__GetAudioOutputConfigurations*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputConfigurationsResponse*)p = *(_trt__GetAudioOutputConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioDecoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioDecoderConfigurations*)p = *(_trt__GetAudioDecoderConfigurations*)q; - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioDecoderConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioDecoderConfigurationsResponse*)p = *(_trt__GetAudioDecoderConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceConfiguration*)p = *(_trt__GetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceConfigurationResponse*)p = *(_trt__GetVideoSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoEncoderConfiguration*)p = *(_trt__GetVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoEncoderConfigurationResponse*)p = *(_trt__GetVideoEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSourceConfiguration*)p = *(_trt__GetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSourceConfigurationResponse*)p = *(_trt__GetAudioSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioEncoderConfiguration*)p = *(_trt__GetAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioEncoderConfigurationResponse*)p = *(_trt__GetAudioEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoAnalyticsConfiguration*)p = *(_trt__GetVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoAnalyticsConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoAnalyticsConfigurationResponse*)p = *(_trt__GetVideoAnalyticsConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetMetadataConfiguration*)p = *(_trt__GetMetadataConfiguration*)q; - break; - case SOAP_TYPE__trt__GetMetadataConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetMetadataConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetMetadataConfigurationResponse*)p = *(_trt__GetMetadataConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputConfiguration*)p = *(_trt__GetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputConfigurationResponse*)p = *(_trt__GetAudioOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioDecoderConfiguration*)p = *(_trt__GetAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioDecoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioDecoderConfigurationResponse*)p = *(_trt__GetAudioDecoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleVideoEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleVideoEncoderConfigurations*)p = *(_trt__GetCompatibleVideoEncoderConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleVideoEncoderConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleVideoEncoderConfigurationsResponse*)p = *(_trt__GetCompatibleVideoEncoderConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleVideoSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleVideoSourceConfigurations*)p = *(_trt__GetCompatibleVideoSourceConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleVideoSourceConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleVideoSourceConfigurationsResponse*)p = *(_trt__GetCompatibleVideoSourceConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioEncoderConfigurations*)p = *(_trt__GetCompatibleAudioEncoderConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioEncoderConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioEncoderConfigurationsResponse*)p = *(_trt__GetCompatibleAudioEncoderConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioSourceConfigurations*)p = *(_trt__GetCompatibleAudioSourceConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioSourceConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioSourceConfigurationsResponse*)p = *(_trt__GetCompatibleAudioSourceConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleVideoAnalyticsConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleVideoAnalyticsConfigurations*)p = *(_trt__GetCompatibleVideoAnalyticsConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleVideoAnalyticsConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleVideoAnalyticsConfigurationsResponse*)p = *(_trt__GetCompatibleVideoAnalyticsConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleMetadataConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleMetadataConfigurations*)p = *(_trt__GetCompatibleMetadataConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleMetadataConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleMetadataConfigurationsResponse*)p = *(_trt__GetCompatibleMetadataConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioOutputConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioOutputConfigurations*)p = *(_trt__GetCompatibleAudioOutputConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioOutputConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioOutputConfigurationsResponse*)p = *(_trt__GetCompatibleAudioOutputConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioDecoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioDecoderConfigurations*)p = *(_trt__GetCompatibleAudioDecoderConfigurations*)q; - break; - case SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetCompatibleAudioDecoderConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetCompatibleAudioDecoderConfigurationsResponse*)p = *(_trt__GetCompatibleAudioDecoderConfigurationsResponse*)q; - break; - case SOAP_TYPE__trt__SetVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoEncoderConfiguration*)p = *(_trt__SetVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoEncoderConfigurationResponse*)p = *(_trt__SetVideoEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__SetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoSourceConfiguration*)p = *(_trt__SetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__SetVideoSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoSourceConfigurationResponse*)p = *(_trt__SetVideoSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__SetAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioEncoderConfiguration*)p = *(_trt__SetAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioEncoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioEncoderConfigurationResponse*)p = *(_trt__SetAudioEncoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__SetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioSourceConfiguration*)p = *(_trt__SetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE__trt__SetAudioSourceConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioSourceConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioSourceConfigurationResponse*)p = *(_trt__SetAudioSourceConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__SetVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoAnalyticsConfiguration*)p = *(_trt__SetVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoAnalyticsConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoAnalyticsConfigurationResponse*)p = *(_trt__SetVideoAnalyticsConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__SetMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetMetadataConfiguration*)p = *(_trt__SetMetadataConfiguration*)q; - break; - case SOAP_TYPE__trt__SetMetadataConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetMetadataConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetMetadataConfigurationResponse*)p = *(_trt__SetMetadataConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__SetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioOutputConfiguration*)p = *(_trt__SetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE__trt__SetAudioOutputConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioOutputConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioOutputConfigurationResponse*)p = *(_trt__SetAudioOutputConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__SetAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioDecoderConfiguration*)p = *(_trt__SetAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetAudioDecoderConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetAudioDecoderConfigurationResponse*)p = *(_trt__SetAudioDecoderConfigurationResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceConfigurationOptions*)p = *(_trt__GetVideoSourceConfigurationOptions*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceConfigurationOptionsResponse*)p = *(_trt__GetVideoSourceConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoEncoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoEncoderConfigurationOptions*)p = *(_trt__GetVideoEncoderConfigurationOptions*)q; - break; - case SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoEncoderConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoEncoderConfigurationOptionsResponse*)p = *(_trt__GetVideoEncoderConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSourceConfigurationOptions*)p = *(_trt__GetAudioSourceConfigurationOptions*)q; - break; - case SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioSourceConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioSourceConfigurationOptionsResponse*)p = *(_trt__GetAudioSourceConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioEncoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioEncoderConfigurationOptions*)p = *(_trt__GetAudioEncoderConfigurationOptions*)q; - break; - case SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioEncoderConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioEncoderConfigurationOptionsResponse*)p = *(_trt__GetAudioEncoderConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__trt__GetMetadataConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetMetadataConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetMetadataConfigurationOptions*)p = *(_trt__GetMetadataConfigurationOptions*)q; - break; - case SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetMetadataConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetMetadataConfigurationOptionsResponse*)p = *(_trt__GetMetadataConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputConfigurationOptions*)p = *(_trt__GetAudioOutputConfigurationOptions*)q; - break; - case SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioOutputConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioOutputConfigurationOptionsResponse*)p = *(_trt__GetAudioOutputConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioDecoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioDecoderConfigurationOptions*)p = *(_trt__GetAudioDecoderConfigurationOptions*)q; - break; - case SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetAudioDecoderConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetAudioDecoderConfigurationOptionsResponse*)p = *(_trt__GetAudioDecoderConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetGuaranteedNumberOfVideoEncoderInstances type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetGuaranteedNumberOfVideoEncoderInstances*)p = *(_trt__GetGuaranteedNumberOfVideoEncoderInstances*)q; - break; - case SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse*)p = *(_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse*)q; - break; - case SOAP_TYPE__trt__GetStreamUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetStreamUri type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetStreamUri*)p = *(_trt__GetStreamUri*)q; - break; - case SOAP_TYPE__trt__GetStreamUriResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetStreamUriResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetStreamUriResponse*)p = *(_trt__GetStreamUriResponse*)q; - break; - case SOAP_TYPE__trt__StartMulticastStreaming: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__StartMulticastStreaming type=%d location=%p object=%p\n", t, p, q)); - *(_trt__StartMulticastStreaming*)p = *(_trt__StartMulticastStreaming*)q; - break; - case SOAP_TYPE__trt__StartMulticastStreamingResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__StartMulticastStreamingResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__StartMulticastStreamingResponse*)p = *(_trt__StartMulticastStreamingResponse*)q; - break; - case SOAP_TYPE__trt__StopMulticastStreaming: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__StopMulticastStreaming type=%d location=%p object=%p\n", t, p, q)); - *(_trt__StopMulticastStreaming*)p = *(_trt__StopMulticastStreaming*)q; - break; - case SOAP_TYPE__trt__StopMulticastStreamingResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__StopMulticastStreamingResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__StopMulticastStreamingResponse*)p = *(_trt__StopMulticastStreamingResponse*)q; - break; - case SOAP_TYPE__trt__SetSynchronizationPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetSynchronizationPoint type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetSynchronizationPoint*)p = *(_trt__SetSynchronizationPoint*)q; - break; - case SOAP_TYPE__trt__SetSynchronizationPointResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetSynchronizationPointResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetSynchronizationPointResponse*)p = *(_trt__SetSynchronizationPointResponse*)q; - break; - case SOAP_TYPE__trt__GetSnapshotUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetSnapshotUri type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetSnapshotUri*)p = *(_trt__GetSnapshotUri*)q; - break; - case SOAP_TYPE__trt__GetSnapshotUriResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetSnapshotUriResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetSnapshotUriResponse*)p = *(_trt__GetSnapshotUriResponse*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceModes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceModes type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceModes*)p = *(_trt__GetVideoSourceModes*)q; - break; - case SOAP_TYPE__trt__GetVideoSourceModesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetVideoSourceModesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetVideoSourceModesResponse*)p = *(_trt__GetVideoSourceModesResponse*)q; - break; - case SOAP_TYPE__trt__SetVideoSourceMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoSourceMode type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoSourceMode*)p = *(_trt__SetVideoSourceMode*)q; - break; - case SOAP_TYPE__trt__SetVideoSourceModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetVideoSourceModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetVideoSourceModeResponse*)p = *(_trt__SetVideoSourceModeResponse*)q; - break; - case SOAP_TYPE__trt__GetOSDs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetOSDs type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetOSDs*)p = *(_trt__GetOSDs*)q; - break; - case SOAP_TYPE__trt__GetOSDsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetOSDsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetOSDsResponse*)p = *(_trt__GetOSDsResponse*)q; - break; - case SOAP_TYPE__trt__GetOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetOSD type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetOSD*)p = *(_trt__GetOSD*)q; - break; - case SOAP_TYPE__trt__GetOSDResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetOSDResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetOSDResponse*)p = *(_trt__GetOSDResponse*)q; - break; - case SOAP_TYPE__trt__SetOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetOSD type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetOSD*)p = *(_trt__SetOSD*)q; - break; - case SOAP_TYPE__trt__SetOSDResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__SetOSDResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__SetOSDResponse*)p = *(_trt__SetOSDResponse*)q; - break; - case SOAP_TYPE__trt__GetOSDOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetOSDOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetOSDOptions*)p = *(_trt__GetOSDOptions*)q; - break; - case SOAP_TYPE__trt__GetOSDOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__GetOSDOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__GetOSDOptionsResponse*)p = *(_trt__GetOSDOptionsResponse*)q; - break; - case SOAP_TYPE__trt__CreateOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__CreateOSD type=%d location=%p object=%p\n", t, p, q)); - *(_trt__CreateOSD*)p = *(_trt__CreateOSD*)q; - break; - case SOAP_TYPE__trt__CreateOSDResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__CreateOSDResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__CreateOSDResponse*)p = *(_trt__CreateOSDResponse*)q; - break; - case SOAP_TYPE__trt__DeleteOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__DeleteOSD type=%d location=%p object=%p\n", t, p, q)); - *(_trt__DeleteOSD*)p = *(_trt__DeleteOSD*)q; - break; - case SOAP_TYPE__trt__DeleteOSDResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trt__DeleteOSDResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trt__DeleteOSDResponse*)p = *(_trt__DeleteOSDResponse*)q; - break; - case SOAP_TYPE_tptz__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tptz__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(tptz__Capabilities*)p = *(tptz__Capabilities*)q; - break; - case SOAP_TYPE__tptz__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetServiceCapabilities*)p = *(_tptz__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__tptz__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetServiceCapabilitiesResponse*)p = *(_tptz__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__tptz__GetNodes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetNodes type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetNodes*)p = *(_tptz__GetNodes*)q; - break; - case SOAP_TYPE__tptz__GetNodesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetNodesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetNodesResponse*)p = *(_tptz__GetNodesResponse*)q; - break; - case SOAP_TYPE__tptz__GetNode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetNode type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetNode*)p = *(_tptz__GetNode*)q; - break; - case SOAP_TYPE__tptz__GetNodeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetNodeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetNodeResponse*)p = *(_tptz__GetNodeResponse*)q; - break; - case SOAP_TYPE__tptz__GetConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetConfigurations*)p = *(_tptz__GetConfigurations*)q; - break; - case SOAP_TYPE__tptz__GetConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetConfigurationsResponse*)p = *(_tptz__GetConfigurationsResponse*)q; - break; - case SOAP_TYPE__tptz__GetConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetConfiguration*)p = *(_tptz__GetConfiguration*)q; - break; - case SOAP_TYPE__tptz__GetConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetConfigurationResponse*)p = *(_tptz__GetConfigurationResponse*)q; - break; - case SOAP_TYPE__tptz__SetConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SetConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SetConfiguration*)p = *(_tptz__SetConfiguration*)q; - break; - case SOAP_TYPE___tptz__SetConfigurationResponse_sequence: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__SetConfigurationResponse_sequence type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__SetConfigurationResponse_sequence*)p = *(struct __tptz__SetConfigurationResponse_sequence*)q; - break; - case SOAP_TYPE__tptz__SetConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SetConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SetConfigurationResponse*)p = *(_tptz__SetConfigurationResponse*)q; - break; - case SOAP_TYPE__tptz__GetConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetConfigurationOptions*)p = *(_tptz__GetConfigurationOptions*)q; - break; - case SOAP_TYPE__tptz__GetConfigurationOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetConfigurationOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetConfigurationOptionsResponse*)p = *(_tptz__GetConfigurationOptionsResponse*)q; - break; - case SOAP_TYPE__tptz__SendAuxiliaryCommand: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SendAuxiliaryCommand type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SendAuxiliaryCommand*)p = *(_tptz__SendAuxiliaryCommand*)q; - break; - case SOAP_TYPE__tptz__SendAuxiliaryCommandResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SendAuxiliaryCommandResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SendAuxiliaryCommandResponse*)p = *(_tptz__SendAuxiliaryCommandResponse*)q; - break; - case SOAP_TYPE__tptz__GetPresets: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresets type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresets*)p = *(_tptz__GetPresets*)q; - break; - case SOAP_TYPE__tptz__GetPresetsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresetsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresetsResponse*)p = *(_tptz__GetPresetsResponse*)q; - break; - case SOAP_TYPE__tptz__SetPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SetPreset type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SetPreset*)p = *(_tptz__SetPreset*)q; - break; - case SOAP_TYPE__tptz__SetPresetResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SetPresetResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SetPresetResponse*)p = *(_tptz__SetPresetResponse*)q; - break; - case SOAP_TYPE__tptz__RemovePreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__RemovePreset type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__RemovePreset*)p = *(_tptz__RemovePreset*)q; - break; - case SOAP_TYPE__tptz__RemovePresetResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__RemovePresetResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__RemovePresetResponse*)p = *(_tptz__RemovePresetResponse*)q; - break; - case SOAP_TYPE__tptz__GotoPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GotoPreset type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GotoPreset*)p = *(_tptz__GotoPreset*)q; - break; - case SOAP_TYPE__tptz__GotoPresetResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GotoPresetResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GotoPresetResponse*)p = *(_tptz__GotoPresetResponse*)q; - break; - case SOAP_TYPE__tptz__GetStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetStatus type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetStatus*)p = *(_tptz__GetStatus*)q; - break; - case SOAP_TYPE__tptz__GetStatusResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetStatusResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetStatusResponse*)p = *(_tptz__GetStatusResponse*)q; - break; - case SOAP_TYPE__tptz__GotoHomePosition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GotoHomePosition type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GotoHomePosition*)p = *(_tptz__GotoHomePosition*)q; - break; - case SOAP_TYPE__tptz__GotoHomePositionResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GotoHomePositionResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GotoHomePositionResponse*)p = *(_tptz__GotoHomePositionResponse*)q; - break; - case SOAP_TYPE__tptz__SetHomePosition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SetHomePosition type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SetHomePosition*)p = *(_tptz__SetHomePosition*)q; - break; - case SOAP_TYPE__tptz__SetHomePositionResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__SetHomePositionResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__SetHomePositionResponse*)p = *(_tptz__SetHomePositionResponse*)q; - break; - case SOAP_TYPE__tptz__ContinuousMove: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__ContinuousMove type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__ContinuousMove*)p = *(_tptz__ContinuousMove*)q; - break; - case SOAP_TYPE__tptz__ContinuousMoveResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__ContinuousMoveResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__ContinuousMoveResponse*)p = *(_tptz__ContinuousMoveResponse*)q; - break; - case SOAP_TYPE__tptz__RelativeMove: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__RelativeMove type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__RelativeMove*)p = *(_tptz__RelativeMove*)q; - break; - case SOAP_TYPE__tptz__RelativeMoveResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__RelativeMoveResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__RelativeMoveResponse*)p = *(_tptz__RelativeMoveResponse*)q; - break; - case SOAP_TYPE__tptz__AbsoluteMove: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__AbsoluteMove type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__AbsoluteMove*)p = *(_tptz__AbsoluteMove*)q; - break; - case SOAP_TYPE__tptz__AbsoluteMoveResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__AbsoluteMoveResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__AbsoluteMoveResponse*)p = *(_tptz__AbsoluteMoveResponse*)q; - break; - case SOAP_TYPE__tptz__Stop: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__Stop type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__Stop*)p = *(_tptz__Stop*)q; - break; - case SOAP_TYPE__tptz__StopResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__StopResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__StopResponse*)p = *(_tptz__StopResponse*)q; - break; - case SOAP_TYPE__tptz__GetPresetTours: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresetTours type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresetTours*)p = *(_tptz__GetPresetTours*)q; - break; - case SOAP_TYPE__tptz__GetPresetToursResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresetToursResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresetToursResponse*)p = *(_tptz__GetPresetToursResponse*)q; - break; - case SOAP_TYPE__tptz__GetPresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresetTour type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresetTour*)p = *(_tptz__GetPresetTour*)q; - break; - case SOAP_TYPE__tptz__GetPresetTourResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresetTourResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresetTourResponse*)p = *(_tptz__GetPresetTourResponse*)q; - break; - case SOAP_TYPE__tptz__GetPresetTourOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresetTourOptions type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresetTourOptions*)p = *(_tptz__GetPresetTourOptions*)q; - break; - case SOAP_TYPE__tptz__GetPresetTourOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetPresetTourOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetPresetTourOptionsResponse*)p = *(_tptz__GetPresetTourOptionsResponse*)q; - break; - case SOAP_TYPE__tptz__CreatePresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__CreatePresetTour type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__CreatePresetTour*)p = *(_tptz__CreatePresetTour*)q; - break; - case SOAP_TYPE__tptz__CreatePresetTourResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__CreatePresetTourResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__CreatePresetTourResponse*)p = *(_tptz__CreatePresetTourResponse*)q; - break; - case SOAP_TYPE__tptz__ModifyPresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__ModifyPresetTour type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__ModifyPresetTour*)p = *(_tptz__ModifyPresetTour*)q; - break; - case SOAP_TYPE__tptz__ModifyPresetTourResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__ModifyPresetTourResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__ModifyPresetTourResponse*)p = *(_tptz__ModifyPresetTourResponse*)q; - break; - case SOAP_TYPE__tptz__OperatePresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__OperatePresetTour type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__OperatePresetTour*)p = *(_tptz__OperatePresetTour*)q; - break; - case SOAP_TYPE__tptz__OperatePresetTourResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__OperatePresetTourResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__OperatePresetTourResponse*)p = *(_tptz__OperatePresetTourResponse*)q; - break; - case SOAP_TYPE__tptz__RemovePresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__RemovePresetTour type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__RemovePresetTour*)p = *(_tptz__RemovePresetTour*)q; - break; - case SOAP_TYPE__tptz__RemovePresetTourResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__RemovePresetTourResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__RemovePresetTourResponse*)p = *(_tptz__RemovePresetTourResponse*)q; - break; - case SOAP_TYPE__tptz__GetCompatibleConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetCompatibleConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetCompatibleConfigurations*)p = *(_tptz__GetCompatibleConfigurations*)q; - break; - case SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tptz__GetCompatibleConfigurationsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tptz__GetCompatibleConfigurationsResponse*)p = *(_tptz__GetCompatibleConfigurationsResponse*)q; - break; - case SOAP_TYPE_trv__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trv__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(trv__Capabilities*)p = *(trv__Capabilities*)q; - break; - case SOAP_TYPE__trv__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetServiceCapabilities*)p = *(_trv__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__trv__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetServiceCapabilitiesResponse*)p = *(_trv__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__trv__GetReceivers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetReceivers type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetReceivers*)p = *(_trv__GetReceivers*)q; - break; - case SOAP_TYPE__trv__GetReceiversResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetReceiversResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetReceiversResponse*)p = *(_trv__GetReceiversResponse*)q; - break; - case SOAP_TYPE__trv__GetReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetReceiver type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetReceiver*)p = *(_trv__GetReceiver*)q; - break; - case SOAP_TYPE__trv__GetReceiverResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetReceiverResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetReceiverResponse*)p = *(_trv__GetReceiverResponse*)q; - break; - case SOAP_TYPE__trv__CreateReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__CreateReceiver type=%d location=%p object=%p\n", t, p, q)); - *(_trv__CreateReceiver*)p = *(_trv__CreateReceiver*)q; - break; - case SOAP_TYPE__trv__CreateReceiverResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__CreateReceiverResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__CreateReceiverResponse*)p = *(_trv__CreateReceiverResponse*)q; - break; - case SOAP_TYPE__trv__DeleteReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__DeleteReceiver type=%d location=%p object=%p\n", t, p, q)); - *(_trv__DeleteReceiver*)p = *(_trv__DeleteReceiver*)q; - break; - case SOAP_TYPE__trv__DeleteReceiverResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__DeleteReceiverResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__DeleteReceiverResponse*)p = *(_trv__DeleteReceiverResponse*)q; - break; - case SOAP_TYPE__trv__ConfigureReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__ConfigureReceiver type=%d location=%p object=%p\n", t, p, q)); - *(_trv__ConfigureReceiver*)p = *(_trv__ConfigureReceiver*)q; - break; - case SOAP_TYPE__trv__ConfigureReceiverResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__ConfigureReceiverResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__ConfigureReceiverResponse*)p = *(_trv__ConfigureReceiverResponse*)q; - break; - case SOAP_TYPE__trv__SetReceiverMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__SetReceiverMode type=%d location=%p object=%p\n", t, p, q)); - *(_trv__SetReceiverMode*)p = *(_trv__SetReceiverMode*)q; - break; - case SOAP_TYPE__trv__SetReceiverModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__SetReceiverModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__SetReceiverModeResponse*)p = *(_trv__SetReceiverModeResponse*)q; - break; - case SOAP_TYPE__trv__GetReceiverState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetReceiverState type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetReceiverState*)p = *(_trv__GetReceiverState*)q; - break; - case SOAP_TYPE__trv__GetReceiverStateResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trv__GetReceiverStateResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trv__GetReceiverStateResponse*)p = *(_trv__GetReceiverStateResponse*)q; - break; - case SOAP_TYPE_trc__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trc__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(trc__Capabilities*)p = *(trc__Capabilities*)q; - break; - case SOAP_TYPE_trc__RecordingOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trc__RecordingOptions type=%d location=%p object=%p\n", t, p, q)); - *(trc__RecordingOptions*)p = *(trc__RecordingOptions*)q; - break; - case SOAP_TYPE_trc__JobOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trc__JobOptions type=%d location=%p object=%p\n", t, p, q)); - *(trc__JobOptions*)p = *(trc__JobOptions*)q; - break; - case SOAP_TYPE_trc__TrackOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trc__TrackOptions type=%d location=%p object=%p\n", t, p, q)); - *(trc__TrackOptions*)p = *(trc__TrackOptions*)q; - break; - case SOAP_TYPE__trc__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetServiceCapabilities*)p = *(_trc__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__trc__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetServiceCapabilitiesResponse*)p = *(_trc__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__trc__CreateRecording: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__CreateRecording type=%d location=%p object=%p\n", t, p, q)); - *(_trc__CreateRecording*)p = *(_trc__CreateRecording*)q; - break; - case SOAP_TYPE__trc__CreateRecordingResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__CreateRecordingResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__CreateRecordingResponse*)p = *(_trc__CreateRecordingResponse*)q; - break; - case SOAP_TYPE__trc__DeleteRecording: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__DeleteRecording type=%d location=%p object=%p\n", t, p, q)); - *(_trc__DeleteRecording*)p = *(_trc__DeleteRecording*)q; - break; - case SOAP_TYPE__trc__DeleteRecordingResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__DeleteRecordingResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__DeleteRecordingResponse*)p = *(_trc__DeleteRecordingResponse*)q; - break; - case SOAP_TYPE__trc__GetRecordings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordings type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordings*)p = *(_trc__GetRecordings*)q; - break; - case SOAP_TYPE__trc__GetRecordingsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingsResponse*)p = *(_trc__GetRecordingsResponse*)q; - break; - case SOAP_TYPE__trc__SetRecordingConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetRecordingConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetRecordingConfiguration*)p = *(_trc__SetRecordingConfiguration*)q; - break; - case SOAP_TYPE__trc__SetRecordingConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetRecordingConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetRecordingConfigurationResponse*)p = *(_trc__SetRecordingConfigurationResponse*)q; - break; - case SOAP_TYPE__trc__GetRecordingConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingConfiguration*)p = *(_trc__GetRecordingConfiguration*)q; - break; - case SOAP_TYPE__trc__GetRecordingConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingConfigurationResponse*)p = *(_trc__GetRecordingConfigurationResponse*)q; - break; - case SOAP_TYPE__trc__CreateTrack: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__CreateTrack type=%d location=%p object=%p\n", t, p, q)); - *(_trc__CreateTrack*)p = *(_trc__CreateTrack*)q; - break; - case SOAP_TYPE__trc__CreateTrackResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__CreateTrackResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__CreateTrackResponse*)p = *(_trc__CreateTrackResponse*)q; - break; - case SOAP_TYPE__trc__DeleteTrack: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__DeleteTrack type=%d location=%p object=%p\n", t, p, q)); - *(_trc__DeleteTrack*)p = *(_trc__DeleteTrack*)q; - break; - case SOAP_TYPE__trc__DeleteTrackResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__DeleteTrackResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__DeleteTrackResponse*)p = *(_trc__DeleteTrackResponse*)q; - break; - case SOAP_TYPE__trc__GetTrackConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetTrackConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetTrackConfiguration*)p = *(_trc__GetTrackConfiguration*)q; - break; - case SOAP_TYPE__trc__GetTrackConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetTrackConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetTrackConfigurationResponse*)p = *(_trc__GetTrackConfigurationResponse*)q; - break; - case SOAP_TYPE__trc__SetTrackConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetTrackConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetTrackConfiguration*)p = *(_trc__SetTrackConfiguration*)q; - break; - case SOAP_TYPE__trc__SetTrackConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetTrackConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetTrackConfigurationResponse*)p = *(_trc__SetTrackConfigurationResponse*)q; - break; - case SOAP_TYPE__trc__CreateRecordingJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__CreateRecordingJob type=%d location=%p object=%p\n", t, p, q)); - *(_trc__CreateRecordingJob*)p = *(_trc__CreateRecordingJob*)q; - break; - case SOAP_TYPE__trc__CreateRecordingJobResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__CreateRecordingJobResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__CreateRecordingJobResponse*)p = *(_trc__CreateRecordingJobResponse*)q; - break; - case SOAP_TYPE__trc__DeleteRecordingJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__DeleteRecordingJob type=%d location=%p object=%p\n", t, p, q)); - *(_trc__DeleteRecordingJob*)p = *(_trc__DeleteRecordingJob*)q; - break; - case SOAP_TYPE__trc__DeleteRecordingJobResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__DeleteRecordingJobResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__DeleteRecordingJobResponse*)p = *(_trc__DeleteRecordingJobResponse*)q; - break; - case SOAP_TYPE__trc__GetRecordingJobs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingJobs type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingJobs*)p = *(_trc__GetRecordingJobs*)q; - break; - case SOAP_TYPE__trc__GetRecordingJobsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingJobsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingJobsResponse*)p = *(_trc__GetRecordingJobsResponse*)q; - break; - case SOAP_TYPE__trc__SetRecordingJobConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetRecordingJobConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetRecordingJobConfiguration*)p = *(_trc__SetRecordingJobConfiguration*)q; - break; - case SOAP_TYPE__trc__SetRecordingJobConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetRecordingJobConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetRecordingJobConfigurationResponse*)p = *(_trc__SetRecordingJobConfigurationResponse*)q; - break; - case SOAP_TYPE__trc__GetRecordingJobConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingJobConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingJobConfiguration*)p = *(_trc__GetRecordingJobConfiguration*)q; - break; - case SOAP_TYPE__trc__GetRecordingJobConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingJobConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingJobConfigurationResponse*)p = *(_trc__GetRecordingJobConfigurationResponse*)q; - break; - case SOAP_TYPE__trc__SetRecordingJobMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetRecordingJobMode type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetRecordingJobMode*)p = *(_trc__SetRecordingJobMode*)q; - break; - case SOAP_TYPE__trc__SetRecordingJobModeResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__SetRecordingJobModeResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__SetRecordingJobModeResponse*)p = *(_trc__SetRecordingJobModeResponse*)q; - break; - case SOAP_TYPE__trc__GetRecordingJobState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingJobState type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingJobState*)p = *(_trc__GetRecordingJobState*)q; - break; - case SOAP_TYPE__trc__GetRecordingJobStateResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingJobStateResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingJobStateResponse*)p = *(_trc__GetRecordingJobStateResponse*)q; - break; - case SOAP_TYPE__trc__GetRecordingOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingOptions type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingOptions*)p = *(_trc__GetRecordingOptions*)q; - break; - case SOAP_TYPE__trc__GetRecordingOptionsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetRecordingOptionsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetRecordingOptionsResponse*)p = *(_trc__GetRecordingOptionsResponse*)q; - break; - case SOAP_TYPE__trc__ExportRecordedData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__ExportRecordedData type=%d location=%p object=%p\n", t, p, q)); - *(_trc__ExportRecordedData*)p = *(_trc__ExportRecordedData*)q; - break; - case SOAP_TYPE__trc__ExportRecordedDataResponse_Extension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__ExportRecordedDataResponse_Extension type=%d location=%p object=%p\n", t, p, q)); - *(_trc__ExportRecordedDataResponse_Extension*)p = *(_trc__ExportRecordedDataResponse_Extension*)q; - break; - case SOAP_TYPE__trc__ExportRecordedDataResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__ExportRecordedDataResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__ExportRecordedDataResponse*)p = *(_trc__ExportRecordedDataResponse*)q; - break; - case SOAP_TYPE__trc__StopExportRecordedData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__StopExportRecordedData type=%d location=%p object=%p\n", t, p, q)); - *(_trc__StopExportRecordedData*)p = *(_trc__StopExportRecordedData*)q; - break; - case SOAP_TYPE__trc__StopExportRecordedDataResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__StopExportRecordedDataResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__StopExportRecordedDataResponse*)p = *(_trc__StopExportRecordedDataResponse*)q; - break; - case SOAP_TYPE__trc__GetExportRecordedDataState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetExportRecordedDataState type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetExportRecordedDataState*)p = *(_trc__GetExportRecordedDataState*)q; - break; - case SOAP_TYPE__trc__GetExportRecordedDataStateResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trc__GetExportRecordedDataStateResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trc__GetExportRecordedDataStateResponse*)p = *(_trc__GetExportRecordedDataStateResponse*)q; - break; - case SOAP_TYPE_trp__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy trp__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(trp__Capabilities*)p = *(trp__Capabilities*)q; - break; - case SOAP_TYPE__trp__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_trp__GetServiceCapabilities*)p = *(_trp__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__trp__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trp__GetServiceCapabilitiesResponse*)p = *(_trp__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__trp__GetReplayUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__GetReplayUri type=%d location=%p object=%p\n", t, p, q)); - *(_trp__GetReplayUri*)p = *(_trp__GetReplayUri*)q; - break; - case SOAP_TYPE__trp__GetReplayUriResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__GetReplayUriResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trp__GetReplayUriResponse*)p = *(_trp__GetReplayUriResponse*)q; - break; - case SOAP_TYPE__trp__SetReplayConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__SetReplayConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trp__SetReplayConfiguration*)p = *(_trp__SetReplayConfiguration*)q; - break; - case SOAP_TYPE__trp__SetReplayConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__SetReplayConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trp__SetReplayConfigurationResponse*)p = *(_trp__SetReplayConfigurationResponse*)q; - break; - case SOAP_TYPE__trp__GetReplayConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__GetReplayConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(_trp__GetReplayConfiguration*)p = *(_trp__GetReplayConfiguration*)q; - break; - case SOAP_TYPE__trp__GetReplayConfigurationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _trp__GetReplayConfigurationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_trp__GetReplayConfigurationResponse*)p = *(_trp__GetReplayConfigurationResponse*)q; - break; - case SOAP_TYPE_tse__Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tse__Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(tse__Capabilities*)p = *(tse__Capabilities*)q; - break; - case SOAP_TYPE__tse__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetServiceCapabilities*)p = *(_tse__GetServiceCapabilities*)q; - break; - case SOAP_TYPE__tse__GetServiceCapabilitiesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetServiceCapabilitiesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetServiceCapabilitiesResponse*)p = *(_tse__GetServiceCapabilitiesResponse*)q; - break; - case SOAP_TYPE__tse__GetRecordingSummary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetRecordingSummary type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetRecordingSummary*)p = *(_tse__GetRecordingSummary*)q; - break; - case SOAP_TYPE__tse__GetRecordingSummaryResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetRecordingSummaryResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetRecordingSummaryResponse*)p = *(_tse__GetRecordingSummaryResponse*)q; - break; - case SOAP_TYPE__tse__GetRecordingInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetRecordingInformation type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetRecordingInformation*)p = *(_tse__GetRecordingInformation*)q; - break; - case SOAP_TYPE__tse__GetRecordingInformationResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetRecordingInformationResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetRecordingInformationResponse*)p = *(_tse__GetRecordingInformationResponse*)q; - break; - case SOAP_TYPE__tse__GetMediaAttributes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetMediaAttributes type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetMediaAttributes*)p = *(_tse__GetMediaAttributes*)q; - break; - case SOAP_TYPE__tse__GetMediaAttributesResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetMediaAttributesResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetMediaAttributesResponse*)p = *(_tse__GetMediaAttributesResponse*)q; - break; - case SOAP_TYPE__tse__FindRecordings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindRecordings type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindRecordings*)p = *(_tse__FindRecordings*)q; - break; - case SOAP_TYPE__tse__FindRecordingsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindRecordingsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindRecordingsResponse*)p = *(_tse__FindRecordingsResponse*)q; - break; - case SOAP_TYPE__tse__GetRecordingSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetRecordingSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetRecordingSearchResults*)p = *(_tse__GetRecordingSearchResults*)q; - break; - case SOAP_TYPE__tse__GetRecordingSearchResultsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetRecordingSearchResultsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetRecordingSearchResultsResponse*)p = *(_tse__GetRecordingSearchResultsResponse*)q; - break; - case SOAP_TYPE__tse__FindEvents: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindEvents type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindEvents*)p = *(_tse__FindEvents*)q; - break; - case SOAP_TYPE__tse__FindEventsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindEventsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindEventsResponse*)p = *(_tse__FindEventsResponse*)q; - break; - case SOAP_TYPE__tse__GetEventSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetEventSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetEventSearchResults*)p = *(_tse__GetEventSearchResults*)q; - break; - case SOAP_TYPE__tse__GetEventSearchResultsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetEventSearchResultsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetEventSearchResultsResponse*)p = *(_tse__GetEventSearchResultsResponse*)q; - break; - case SOAP_TYPE__tse__FindPTZPosition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindPTZPosition type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindPTZPosition*)p = *(_tse__FindPTZPosition*)q; - break; - case SOAP_TYPE__tse__FindPTZPositionResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindPTZPositionResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindPTZPositionResponse*)p = *(_tse__FindPTZPositionResponse*)q; - break; - case SOAP_TYPE__tse__GetPTZPositionSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetPTZPositionSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetPTZPositionSearchResults*)p = *(_tse__GetPTZPositionSearchResults*)q; - break; - case SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetPTZPositionSearchResultsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetPTZPositionSearchResultsResponse*)p = *(_tse__GetPTZPositionSearchResultsResponse*)q; - break; - case SOAP_TYPE__tse__FindMetadata: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindMetadata type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindMetadata*)p = *(_tse__FindMetadata*)q; - break; - case SOAP_TYPE__tse__FindMetadataResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__FindMetadataResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__FindMetadataResponse*)p = *(_tse__FindMetadataResponse*)q; - break; - case SOAP_TYPE__tse__GetMetadataSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetMetadataSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetMetadataSearchResults*)p = *(_tse__GetMetadataSearchResults*)q; - break; - case SOAP_TYPE__tse__GetMetadataSearchResultsResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetMetadataSearchResultsResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetMetadataSearchResultsResponse*)p = *(_tse__GetMetadataSearchResultsResponse*)q; - break; - case SOAP_TYPE__tse__GetSearchState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetSearchState type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetSearchState*)p = *(_tse__GetSearchState*)q; - break; - case SOAP_TYPE__tse__GetSearchStateResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__GetSearchStateResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__GetSearchStateResponse*)p = *(_tse__GetSearchStateResponse*)q; - break; - case SOAP_TYPE__tse__EndSearch: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__EndSearch type=%d location=%p object=%p\n", t, p, q)); - *(_tse__EndSearch*)p = *(_tse__EndSearch*)q; - break; - case SOAP_TYPE__tse__EndSearchResponse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _tse__EndSearchResponse type=%d location=%p object=%p\n", t, p, q)); - *(_tse__EndSearchResponse*)p = *(_tse__EndSearchResponse*)q; - break; - case SOAP_TYPE_wstop__Documentation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__Documentation type=%d location=%p object=%p\n", t, p, q)); - *(wstop__Documentation*)p = *(wstop__Documentation*)q; - break; - case SOAP_TYPE_wstop__ExtensibleDocumented: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__ExtensibleDocumented type=%d location=%p object=%p\n", t, p, q)); - *(wstop__ExtensibleDocumented*)p = *(wstop__ExtensibleDocumented*)q; - break; - case SOAP_TYPE_wstop__QueryExpressionType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__QueryExpressionType type=%d location=%p object=%p\n", t, p, q)); - *(wstop__QueryExpressionType*)p = *(wstop__QueryExpressionType*)q; - break; - case SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__SubscribeCreationFailedFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__SubscribeCreationFailedFaultType*)p = *(wsnt__SubscribeCreationFailedFaultType*)q; - break; - case SOAP_TYPE_wsnt__InvalidFilterFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__InvalidFilterFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__InvalidFilterFaultType*)p = *(wsnt__InvalidFilterFaultType*)q; - break; - case SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__TopicExpressionDialectUnknownFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__TopicExpressionDialectUnknownFaultType*)p = *(wsnt__TopicExpressionDialectUnknownFaultType*)q; - break; - case SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__InvalidTopicExpressionFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__InvalidTopicExpressionFaultType*)p = *(wsnt__InvalidTopicExpressionFaultType*)q; - break; - case SOAP_TYPE_wsnt__TopicNotSupportedFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__TopicNotSupportedFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__TopicNotSupportedFaultType*)p = *(wsnt__TopicNotSupportedFaultType*)q; - break; - case SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__MultipleTopicsSpecifiedFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__MultipleTopicsSpecifiedFaultType*)p = *(wsnt__MultipleTopicsSpecifiedFaultType*)q; - break; - case SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__InvalidProducerPropertiesExpressionFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__InvalidProducerPropertiesExpressionFaultType*)p = *(wsnt__InvalidProducerPropertiesExpressionFaultType*)q; - break; - case SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__InvalidMessageContentExpressionFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__InvalidMessageContentExpressionFaultType*)p = *(wsnt__InvalidMessageContentExpressionFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnrecognizedPolicyRequestFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnrecognizedPolicyRequestFaultType*)p = *(wsnt__UnrecognizedPolicyRequestFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnsupportedPolicyRequestFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnsupportedPolicyRequestFaultType*)p = *(wsnt__UnsupportedPolicyRequestFaultType*)q; - break; - case SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__NotifyMessageNotSupportedFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__NotifyMessageNotSupportedFaultType*)p = *(wsnt__NotifyMessageNotSupportedFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnacceptableInitialTerminationTimeFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnacceptableInitialTerminationTimeFaultType*)p = *(wsnt__UnacceptableInitialTerminationTimeFaultType*)q; - break; - case SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__NoCurrentMessageOnTopicFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__NoCurrentMessageOnTopicFaultType*)p = *(wsnt__NoCurrentMessageOnTopicFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnableToGetMessagesFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnableToGetMessagesFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnableToGetMessagesFaultType*)p = *(wsnt__UnableToGetMessagesFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnableToDestroyPullPointFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnableToDestroyPullPointFaultType*)p = *(wsnt__UnableToDestroyPullPointFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnableToCreatePullPointFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnableToCreatePullPointFaultType*)p = *(wsnt__UnableToCreatePullPointFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnacceptableTerminationTimeFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnacceptableTerminationTimeFaultType*)p = *(wsnt__UnacceptableTerminationTimeFaultType*)q; - break; - case SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__UnableToDestroySubscriptionFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__UnableToDestroySubscriptionFaultType*)p = *(wsnt__UnableToDestroySubscriptionFaultType*)q; - break; - case SOAP_TYPE_wsnt__PauseFailedFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__PauseFailedFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__PauseFailedFaultType*)p = *(wsnt__PauseFailedFaultType*)q; - break; - case SOAP_TYPE_wsnt__ResumeFailedFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsnt__ResumeFailedFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsnt__ResumeFailedFaultType*)p = *(wsnt__ResumeFailedFaultType*)q; - break; - case SOAP_TYPE_tt__VideoSource: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSource type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSource*)p = *(tt__VideoSource*)q; - break; - case SOAP_TYPE_tt__AudioSource: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioSource type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioSource*)p = *(tt__AudioSource*)q; - break; - case SOAP_TYPE_tt__VideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoSourceConfiguration*)p = *(tt__VideoSourceConfiguration*)q; - break; - case SOAP_TYPE_tt__VideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncoderConfiguration*)p = *(tt__VideoEncoderConfiguration*)q; - break; - case SOAP_TYPE_tt__JpegOptions2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__JpegOptions2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__JpegOptions2*)p = *(tt__JpegOptions2*)q; - break; - case SOAP_TYPE_tt__Mpeg4Options2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__Mpeg4Options2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__Mpeg4Options2*)p = *(tt__Mpeg4Options2*)q; - break; - case SOAP_TYPE_tt__H264Options2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__H264Options2 type=%d location=%p object=%p\n", t, p, q)); - *(tt__H264Options2*)p = *(tt__H264Options2*)q; - break; - case SOAP_TYPE_tt__VideoEncoder2Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoEncoder2Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoEncoder2Configuration*)p = *(tt__VideoEncoder2Configuration*)q; - break; - case SOAP_TYPE_tt__AudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioSourceConfiguration*)p = *(tt__AudioSourceConfiguration*)q; - break; - case SOAP_TYPE_tt__AudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioEncoderConfiguration*)p = *(tt__AudioEncoderConfiguration*)q; - break; - case SOAP_TYPE_tt__AudioEncoder2Configuration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioEncoder2Configuration type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioEncoder2Configuration*)p = *(tt__AudioEncoder2Configuration*)q; - break; - case SOAP_TYPE_tt__VideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoAnalyticsConfiguration*)p = *(tt__VideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE_tt__MetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__MetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__MetadataConfiguration*)p = *(tt__MetadataConfiguration*)q; - break; - case SOAP_TYPE_tt__VideoOutput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoOutput type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoOutput*)p = *(tt__VideoOutput*)q; - break; - case SOAP_TYPE_tt__VideoOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__VideoOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__VideoOutputConfiguration*)p = *(tt__VideoOutputConfiguration*)q; - break; - case SOAP_TYPE_tt__AudioOutput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioOutput type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioOutput*)p = *(tt__AudioOutput*)q; - break; - case SOAP_TYPE_tt__AudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioOutputConfiguration*)p = *(tt__AudioOutputConfiguration*)q; - break; - case SOAP_TYPE_tt__AudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__AudioDecoderConfiguration*)p = *(tt__AudioDecoderConfiguration*)q; - break; - case SOAP_TYPE_tt__NetworkInterface: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__NetworkInterface type=%d location=%p object=%p\n", t, p, q)); - *(tt__NetworkInterface*)p = *(tt__NetworkInterface*)q; - break; - case SOAP_TYPE_tt__CertificateUsage: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__CertificateUsage type=%d location=%p object=%p\n", t, p, q)); - *(tt__CertificateUsage*)p = *(tt__CertificateUsage*)q; - break; - case SOAP_TYPE_tt__RelayOutput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__RelayOutput type=%d location=%p object=%p\n", t, p, q)); - *(tt__RelayOutput*)p = *(tt__RelayOutput*)q; - break; - case SOAP_TYPE_tt__DigitalInput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__DigitalInput type=%d location=%p object=%p\n", t, p, q)); - *(tt__DigitalInput*)p = *(tt__DigitalInput*)q; - break; - case SOAP_TYPE_tt__PTZNode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZNode type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZNode*)p = *(tt__PTZNode*)q; - break; - case SOAP_TYPE_tt__PTZConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__PTZConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__PTZConfiguration*)p = *(tt__PTZConfiguration*)q; - break; - case SOAP_TYPE_tt__EventFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__EventFilter type=%d location=%p object=%p\n", t, p, q)); - *(tt__EventFilter*)p = *(tt__EventFilter*)q; - break; - case SOAP_TYPE_tt__AnalyticsEngine: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsEngine type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsEngine*)p = *(tt__AnalyticsEngine*)q; - break; - case SOAP_TYPE_tt__AnalyticsEngineInput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsEngineInput type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsEngineInput*)p = *(tt__AnalyticsEngineInput*)q; - break; - case SOAP_TYPE_tt__AnalyticsEngineControl: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__AnalyticsEngineControl type=%d location=%p object=%p\n", t, p, q)); - *(tt__AnalyticsEngineControl*)p = *(tt__AnalyticsEngineControl*)q; - break; - case SOAP_TYPE_tt__OSDConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDConfiguration*)p = *(tt__OSDConfiguration*)q; - break; - case SOAP_TYPE_tmd__SerialPort: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tmd__SerialPort type=%d location=%p object=%p\n", t, p, q)); - *(tmd__SerialPort*)p = *(tmd__SerialPort*)q; - break; - case SOAP_TYPE_tds__StorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tds__StorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(tds__StorageConfiguration*)p = *(tds__StorageConfiguration*)q; - break; - case SOAP_TYPE_wsrfr__ResourceUnknownFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsrfr__ResourceUnknownFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsrfr__ResourceUnknownFaultType*)p = *(wsrfr__ResourceUnknownFaultType*)q; - break; - case SOAP_TYPE_wsrfr__ResourceUnavailableFaultType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wsrfr__ResourceUnavailableFaultType type=%d location=%p object=%p\n", t, p, q)); - *(wsrfr__ResourceUnavailableFaultType*)p = *(wsrfr__ResourceUnavailableFaultType*)q; - break; - case SOAP_TYPE__wstop__TopicNamespaceType_Topic: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy _wstop__TopicNamespaceType_Topic type=%d location=%p object=%p\n", t, p, q)); - *(_wstop__TopicNamespaceType_Topic*)p = *(_wstop__TopicNamespaceType_Topic*)q; - break; - case SOAP_TYPE_wstop__TopicNamespaceType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__TopicNamespaceType type=%d location=%p object=%p\n", t, p, q)); - *(wstop__TopicNamespaceType*)p = *(wstop__TopicNamespaceType*)q; - break; - case SOAP_TYPE_wstop__TopicType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__TopicType type=%d location=%p object=%p\n", t, p, q)); - *(wstop__TopicType*)p = *(wstop__TopicType*)q; - break; - case SOAP_TYPE_wstop__TopicSetType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy wstop__TopicSetType type=%d location=%p object=%p\n", t, p, q)); - *(wstop__TopicSetType*)p = *(wstop__TopicSetType*)q; - break; - case SOAP_TYPE_tt__OSDReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy tt__OSDReference type=%d location=%p object=%p\n", t, p, q)); - *(tt__OSDReference*)p = *(tt__OSDReference*)q; - break; -#ifndef WITH_NOGLOBAL - case SOAP_TYPE_SOAP_ENV__Detail: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct SOAP_ENV__Detail type=%d location=%p object=%p\n", t, p, q)); - *(struct SOAP_ENV__Detail*)p = *(struct SOAP_ENV__Detail*)q; - break; -#endif - case SOAP_TYPE___tds__GetServices: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetServices type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetServices*)p = *(struct __tds__GetServices*)q; - break; - case SOAP_TYPE___tds__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetServiceCapabilities*)p = *(struct __tds__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___tds__GetDeviceInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDeviceInformation type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDeviceInformation*)p = *(struct __tds__GetDeviceInformation*)q; - break; - case SOAP_TYPE___tds__SetSystemDateAndTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetSystemDateAndTime type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetSystemDateAndTime*)p = *(struct __tds__SetSystemDateAndTime*)q; - break; - case SOAP_TYPE___tds__GetSystemDateAndTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetSystemDateAndTime type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetSystemDateAndTime*)p = *(struct __tds__GetSystemDateAndTime*)q; - break; - case SOAP_TYPE___tds__SetSystemFactoryDefault: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetSystemFactoryDefault type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetSystemFactoryDefault*)p = *(struct __tds__SetSystemFactoryDefault*)q; - break; - case SOAP_TYPE___tds__UpgradeSystemFirmware: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__UpgradeSystemFirmware type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__UpgradeSystemFirmware*)p = *(struct __tds__UpgradeSystemFirmware*)q; - break; - case SOAP_TYPE___tds__SystemReboot: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SystemReboot type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SystemReboot*)p = *(struct __tds__SystemReboot*)q; - break; - case SOAP_TYPE___tds__RestoreSystem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__RestoreSystem type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__RestoreSystem*)p = *(struct __tds__RestoreSystem*)q; - break; - case SOAP_TYPE___tds__GetSystemBackup: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetSystemBackup type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetSystemBackup*)p = *(struct __tds__GetSystemBackup*)q; - break; - case SOAP_TYPE___tds__GetSystemLog: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetSystemLog type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetSystemLog*)p = *(struct __tds__GetSystemLog*)q; - break; - case SOAP_TYPE___tds__GetSystemSupportInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetSystemSupportInformation type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetSystemSupportInformation*)p = *(struct __tds__GetSystemSupportInformation*)q; - break; - case SOAP_TYPE___tds__GetScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetScopes type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetScopes*)p = *(struct __tds__GetScopes*)q; - break; - case SOAP_TYPE___tds__SetScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetScopes type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetScopes*)p = *(struct __tds__SetScopes*)q; - break; - case SOAP_TYPE___tds__AddScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__AddScopes type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__AddScopes*)p = *(struct __tds__AddScopes*)q; - break; - case SOAP_TYPE___tds__RemoveScopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__RemoveScopes type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__RemoveScopes*)p = *(struct __tds__RemoveScopes*)q; - break; - case SOAP_TYPE___tds__GetDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDiscoveryMode*)p = *(struct __tds__GetDiscoveryMode*)q; - break; - case SOAP_TYPE___tds__SetDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetDiscoveryMode*)p = *(struct __tds__SetDiscoveryMode*)q; - break; - case SOAP_TYPE___tds__GetRemoteDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetRemoteDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetRemoteDiscoveryMode*)p = *(struct __tds__GetRemoteDiscoveryMode*)q; - break; - case SOAP_TYPE___tds__SetRemoteDiscoveryMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetRemoteDiscoveryMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetRemoteDiscoveryMode*)p = *(struct __tds__SetRemoteDiscoveryMode*)q; - break; - case SOAP_TYPE___tds__GetDPAddresses: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDPAddresses type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDPAddresses*)p = *(struct __tds__GetDPAddresses*)q; - break; - case SOAP_TYPE___tds__GetEndpointReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetEndpointReference type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetEndpointReference*)p = *(struct __tds__GetEndpointReference*)q; - break; - case SOAP_TYPE___tds__GetRemoteUser: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetRemoteUser type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetRemoteUser*)p = *(struct __tds__GetRemoteUser*)q; - break; - case SOAP_TYPE___tds__SetRemoteUser: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetRemoteUser type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetRemoteUser*)p = *(struct __tds__SetRemoteUser*)q; - break; - case SOAP_TYPE___tds__GetUsers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetUsers type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetUsers*)p = *(struct __tds__GetUsers*)q; - break; - case SOAP_TYPE___tds__CreateUsers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__CreateUsers type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__CreateUsers*)p = *(struct __tds__CreateUsers*)q; - break; - case SOAP_TYPE___tds__DeleteUsers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__DeleteUsers type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__DeleteUsers*)p = *(struct __tds__DeleteUsers*)q; - break; - case SOAP_TYPE___tds__SetUser: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetUser type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetUser*)p = *(struct __tds__SetUser*)q; - break; - case SOAP_TYPE___tds__GetWsdlUrl: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetWsdlUrl type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetWsdlUrl*)p = *(struct __tds__GetWsdlUrl*)q; - break; - case SOAP_TYPE___tds__GetCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetCapabilities*)p = *(struct __tds__GetCapabilities*)q; - break; - case SOAP_TYPE___tds__SetDPAddresses: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetDPAddresses type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetDPAddresses*)p = *(struct __tds__SetDPAddresses*)q; - break; - case SOAP_TYPE___tds__GetHostname: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetHostname type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetHostname*)p = *(struct __tds__GetHostname*)q; - break; - case SOAP_TYPE___tds__SetHostname: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetHostname type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetHostname*)p = *(struct __tds__SetHostname*)q; - break; - case SOAP_TYPE___tds__SetHostnameFromDHCP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetHostnameFromDHCP type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetHostnameFromDHCP*)p = *(struct __tds__SetHostnameFromDHCP*)q; - break; - case SOAP_TYPE___tds__GetDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDNS type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDNS*)p = *(struct __tds__GetDNS*)q; - break; - case SOAP_TYPE___tds__SetDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetDNS type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetDNS*)p = *(struct __tds__SetDNS*)q; - break; - case SOAP_TYPE___tds__GetNTP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetNTP type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetNTP*)p = *(struct __tds__GetNTP*)q; - break; - case SOAP_TYPE___tds__SetNTP: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetNTP type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetNTP*)p = *(struct __tds__SetNTP*)q; - break; - case SOAP_TYPE___tds__GetDynamicDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDynamicDNS type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDynamicDNS*)p = *(struct __tds__GetDynamicDNS*)q; - break; - case SOAP_TYPE___tds__SetDynamicDNS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetDynamicDNS type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetDynamicDNS*)p = *(struct __tds__SetDynamicDNS*)q; - break; - case SOAP_TYPE___tds__GetNetworkInterfaces: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetNetworkInterfaces type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetNetworkInterfaces*)p = *(struct __tds__GetNetworkInterfaces*)q; - break; - case SOAP_TYPE___tds__SetNetworkInterfaces: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetNetworkInterfaces type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetNetworkInterfaces*)p = *(struct __tds__SetNetworkInterfaces*)q; - break; - case SOAP_TYPE___tds__GetNetworkProtocols: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetNetworkProtocols type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetNetworkProtocols*)p = *(struct __tds__GetNetworkProtocols*)q; - break; - case SOAP_TYPE___tds__SetNetworkProtocols: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetNetworkProtocols type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetNetworkProtocols*)p = *(struct __tds__SetNetworkProtocols*)q; - break; - case SOAP_TYPE___tds__GetNetworkDefaultGateway: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetNetworkDefaultGateway type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetNetworkDefaultGateway*)p = *(struct __tds__GetNetworkDefaultGateway*)q; - break; - case SOAP_TYPE___tds__SetNetworkDefaultGateway: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetNetworkDefaultGateway type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetNetworkDefaultGateway*)p = *(struct __tds__SetNetworkDefaultGateway*)q; - break; - case SOAP_TYPE___tds__GetZeroConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetZeroConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetZeroConfiguration*)p = *(struct __tds__GetZeroConfiguration*)q; - break; - case SOAP_TYPE___tds__SetZeroConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetZeroConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetZeroConfiguration*)p = *(struct __tds__SetZeroConfiguration*)q; - break; - case SOAP_TYPE___tds__GetIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetIPAddressFilter*)p = *(struct __tds__GetIPAddressFilter*)q; - break; - case SOAP_TYPE___tds__SetIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetIPAddressFilter*)p = *(struct __tds__SetIPAddressFilter*)q; - break; - case SOAP_TYPE___tds__AddIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__AddIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__AddIPAddressFilter*)p = *(struct __tds__AddIPAddressFilter*)q; - break; - case SOAP_TYPE___tds__RemoveIPAddressFilter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__RemoveIPAddressFilter type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__RemoveIPAddressFilter*)p = *(struct __tds__RemoveIPAddressFilter*)q; - break; - case SOAP_TYPE___tds__GetAccessPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetAccessPolicy type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetAccessPolicy*)p = *(struct __tds__GetAccessPolicy*)q; - break; - case SOAP_TYPE___tds__SetAccessPolicy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetAccessPolicy type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetAccessPolicy*)p = *(struct __tds__SetAccessPolicy*)q; - break; - case SOAP_TYPE___tds__CreateCertificate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__CreateCertificate type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__CreateCertificate*)p = *(struct __tds__CreateCertificate*)q; - break; - case SOAP_TYPE___tds__GetCertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetCertificates type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetCertificates*)p = *(struct __tds__GetCertificates*)q; - break; - case SOAP_TYPE___tds__GetCertificatesStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetCertificatesStatus type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetCertificatesStatus*)p = *(struct __tds__GetCertificatesStatus*)q; - break; - case SOAP_TYPE___tds__SetCertificatesStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetCertificatesStatus type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetCertificatesStatus*)p = *(struct __tds__SetCertificatesStatus*)q; - break; - case SOAP_TYPE___tds__DeleteCertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__DeleteCertificates type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__DeleteCertificates*)p = *(struct __tds__DeleteCertificates*)q; - break; - case SOAP_TYPE___tds__GetPkcs10Request: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetPkcs10Request type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetPkcs10Request*)p = *(struct __tds__GetPkcs10Request*)q; - break; - case SOAP_TYPE___tds__LoadCertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__LoadCertificates type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__LoadCertificates*)p = *(struct __tds__LoadCertificates*)q; - break; - case SOAP_TYPE___tds__GetClientCertificateMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetClientCertificateMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetClientCertificateMode*)p = *(struct __tds__GetClientCertificateMode*)q; - break; - case SOAP_TYPE___tds__SetClientCertificateMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetClientCertificateMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetClientCertificateMode*)p = *(struct __tds__SetClientCertificateMode*)q; - break; - case SOAP_TYPE___tds__GetRelayOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetRelayOutputs type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetRelayOutputs*)p = *(struct __tds__GetRelayOutputs*)q; - break; - case SOAP_TYPE___tds__SetRelayOutputSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetRelayOutputSettings type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetRelayOutputSettings*)p = *(struct __tds__SetRelayOutputSettings*)q; - break; - case SOAP_TYPE___tds__SetRelayOutputState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetRelayOutputState type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetRelayOutputState*)p = *(struct __tds__SetRelayOutputState*)q; - break; - case SOAP_TYPE___tds__SendAuxiliaryCommand: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SendAuxiliaryCommand type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SendAuxiliaryCommand*)p = *(struct __tds__SendAuxiliaryCommand*)q; - break; - case SOAP_TYPE___tds__GetCACertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetCACertificates type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetCACertificates*)p = *(struct __tds__GetCACertificates*)q; - break; - case SOAP_TYPE___tds__LoadCertificateWithPrivateKey: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__LoadCertificateWithPrivateKey type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__LoadCertificateWithPrivateKey*)p = *(struct __tds__LoadCertificateWithPrivateKey*)q; - break; - case SOAP_TYPE___tds__GetCertificateInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetCertificateInformation type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetCertificateInformation*)p = *(struct __tds__GetCertificateInformation*)q; - break; - case SOAP_TYPE___tds__LoadCACertificates: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__LoadCACertificates type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__LoadCACertificates*)p = *(struct __tds__LoadCACertificates*)q; - break; - case SOAP_TYPE___tds__CreateDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__CreateDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__CreateDot1XConfiguration*)p = *(struct __tds__CreateDot1XConfiguration*)q; - break; - case SOAP_TYPE___tds__SetDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetDot1XConfiguration*)p = *(struct __tds__SetDot1XConfiguration*)q; - break; - case SOAP_TYPE___tds__GetDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDot1XConfiguration*)p = *(struct __tds__GetDot1XConfiguration*)q; - break; - case SOAP_TYPE___tds__GetDot1XConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDot1XConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDot1XConfigurations*)p = *(struct __tds__GetDot1XConfigurations*)q; - break; - case SOAP_TYPE___tds__DeleteDot1XConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__DeleteDot1XConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__DeleteDot1XConfiguration*)p = *(struct __tds__DeleteDot1XConfiguration*)q; - break; - case SOAP_TYPE___tds__GetDot11Capabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDot11Capabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDot11Capabilities*)p = *(struct __tds__GetDot11Capabilities*)q; - break; - case SOAP_TYPE___tds__GetDot11Status: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetDot11Status type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetDot11Status*)p = *(struct __tds__GetDot11Status*)q; - break; - case SOAP_TYPE___tds__ScanAvailableDot11Networks: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__ScanAvailableDot11Networks type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__ScanAvailableDot11Networks*)p = *(struct __tds__ScanAvailableDot11Networks*)q; - break; - case SOAP_TYPE___tds__GetSystemUris: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetSystemUris type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetSystemUris*)p = *(struct __tds__GetSystemUris*)q; - break; - case SOAP_TYPE___tds__StartFirmwareUpgrade: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__StartFirmwareUpgrade type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__StartFirmwareUpgrade*)p = *(struct __tds__StartFirmwareUpgrade*)q; - break; - case SOAP_TYPE___tds__StartSystemRestore: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__StartSystemRestore type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__StartSystemRestore*)p = *(struct __tds__StartSystemRestore*)q; - break; - case SOAP_TYPE___tds__GetStorageConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetStorageConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetStorageConfigurations*)p = *(struct __tds__GetStorageConfigurations*)q; - break; - case SOAP_TYPE___tds__CreateStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__CreateStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__CreateStorageConfiguration*)p = *(struct __tds__CreateStorageConfiguration*)q; - break; - case SOAP_TYPE___tds__GetStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetStorageConfiguration*)p = *(struct __tds__GetStorageConfiguration*)q; - break; - case SOAP_TYPE___tds__SetStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetStorageConfiguration*)p = *(struct __tds__SetStorageConfiguration*)q; - break; - case SOAP_TYPE___tds__DeleteStorageConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__DeleteStorageConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__DeleteStorageConfiguration*)p = *(struct __tds__DeleteStorageConfiguration*)q; - break; - case SOAP_TYPE___tds__GetGeoLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__GetGeoLocation type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__GetGeoLocation*)p = *(struct __tds__GetGeoLocation*)q; - break; - case SOAP_TYPE___tds__SetGeoLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__SetGeoLocation type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__SetGeoLocation*)p = *(struct __tds__SetGeoLocation*)q; - break; - case SOAP_TYPE___tds__DeleteGeoLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tds__DeleteGeoLocation type=%d location=%p object=%p\n", t, p, q)); - *(struct __tds__DeleteGeoLocation*)p = *(struct __tds__DeleteGeoLocation*)q; - break; - case SOAP_TYPE___tevcpp__CreatePullPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevcpp__CreatePullPoint type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevcpp__CreatePullPoint*)p = *(struct __tevcpp__CreatePullPoint*)q; - break; - case SOAP_TYPE___teve__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __teve__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __teve__GetServiceCapabilities*)p = *(struct __teve__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___teve__CreatePullPointSubscription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __teve__CreatePullPointSubscription type=%d location=%p object=%p\n", t, p, q)); - *(struct __teve__CreatePullPointSubscription*)p = *(struct __teve__CreatePullPointSubscription*)q; - break; - case SOAP_TYPE___teve__GetEventProperties: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __teve__GetEventProperties type=%d location=%p object=%p\n", t, p, q)); - *(struct __teve__GetEventProperties*)p = *(struct __teve__GetEventProperties*)q; - break; - case SOAP_TYPE___tevnc__Notify: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevnc__Notify type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevnc__Notify*)p = *(struct __tevnc__Notify*)q; - break; - case SOAP_TYPE___tevnp__Subscribe: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevnp__Subscribe type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevnp__Subscribe*)p = *(struct __tevnp__Subscribe*)q; - break; - case SOAP_TYPE___tevnp__GetCurrentMessage: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevnp__GetCurrentMessage type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevnp__GetCurrentMessage*)p = *(struct __tevnp__GetCurrentMessage*)q; - break; - case SOAP_TYPE___tevpp__GetMessages: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevpp__GetMessages type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevpp__GetMessages*)p = *(struct __tevpp__GetMessages*)q; - break; - case SOAP_TYPE___tevpp__DestroyPullPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevpp__DestroyPullPoint type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevpp__DestroyPullPoint*)p = *(struct __tevpp__DestroyPullPoint*)q; - break; - case SOAP_TYPE___tevpp__Notify: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevpp__Notify type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevpp__Notify*)p = *(struct __tevpp__Notify*)q; - break; - case SOAP_TYPE___tevpps__PullMessages: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevpps__PullMessages type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevpps__PullMessages*)p = *(struct __tevpps__PullMessages*)q; - break; - case SOAP_TYPE___tevpps__Seek: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevpps__Seek type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevpps__Seek*)p = *(struct __tevpps__Seek*)q; - break; - case SOAP_TYPE___tevpps__SetSynchronizationPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevpps__SetSynchronizationPoint type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevpps__SetSynchronizationPoint*)p = *(struct __tevpps__SetSynchronizationPoint*)q; - break; - case SOAP_TYPE___tevps__Renew: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevps__Renew type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevps__Renew*)p = *(struct __tevps__Renew*)q; - break; - case SOAP_TYPE___tevps__Unsubscribe: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevps__Unsubscribe type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevps__Unsubscribe*)p = *(struct __tevps__Unsubscribe*)q; - break; - case SOAP_TYPE___tevps__PauseSubscription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevps__PauseSubscription type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevps__PauseSubscription*)p = *(struct __tevps__PauseSubscription*)q; - break; - case SOAP_TYPE___tevps__ResumeSubscription: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevps__ResumeSubscription type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevps__ResumeSubscription*)p = *(struct __tevps__ResumeSubscription*)q; - break; - case SOAP_TYPE___tevs__Renew: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevs__Renew type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevs__Renew*)p = *(struct __tevs__Renew*)q; - break; - case SOAP_TYPE___tevs__Unsubscribe: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tevs__Unsubscribe type=%d location=%p object=%p\n", t, p, q)); - *(struct __tevs__Unsubscribe*)p = *(struct __tevs__Unsubscribe*)q; - break; - case SOAP_TYPE___timg__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__GetServiceCapabilities*)p = *(struct __timg__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___timg__GetImagingSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__GetImagingSettings type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__GetImagingSettings*)p = *(struct __timg__GetImagingSettings*)q; - break; - case SOAP_TYPE___timg__SetImagingSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__SetImagingSettings type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__SetImagingSettings*)p = *(struct __timg__SetImagingSettings*)q; - break; - case SOAP_TYPE___timg__GetOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__GetOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__GetOptions*)p = *(struct __timg__GetOptions*)q; - break; - case SOAP_TYPE___timg__Move: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__Move type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__Move*)p = *(struct __timg__Move*)q; - break; - case SOAP_TYPE___timg__Stop: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__Stop type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__Stop*)p = *(struct __timg__Stop*)q; - break; - case SOAP_TYPE___timg__GetStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__GetStatus type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__GetStatus*)p = *(struct __timg__GetStatus*)q; - break; - case SOAP_TYPE___timg__GetMoveOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__GetMoveOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__GetMoveOptions*)p = *(struct __timg__GetMoveOptions*)q; - break; - case SOAP_TYPE___timg__GetPresets: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__GetPresets type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__GetPresets*)p = *(struct __timg__GetPresets*)q; - break; - case SOAP_TYPE___timg__GetCurrentPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__GetCurrentPreset type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__GetCurrentPreset*)p = *(struct __timg__GetCurrentPreset*)q; - break; - case SOAP_TYPE___timg__SetCurrentPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __timg__SetCurrentPreset type=%d location=%p object=%p\n", t, p, q)); - *(struct __timg__SetCurrentPreset*)p = *(struct __timg__SetCurrentPreset*)q; - break; - case SOAP_TYPE___tls__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__GetServiceCapabilities*)p = *(struct __tls__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___tls__GetLayout: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__GetLayout type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__GetLayout*)p = *(struct __tls__GetLayout*)q; - break; - case SOAP_TYPE___tls__SetLayout: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__SetLayout type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__SetLayout*)p = *(struct __tls__SetLayout*)q; - break; - case SOAP_TYPE___tls__GetDisplayOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__GetDisplayOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__GetDisplayOptions*)p = *(struct __tls__GetDisplayOptions*)q; - break; - case SOAP_TYPE___tls__GetPaneConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__GetPaneConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__GetPaneConfigurations*)p = *(struct __tls__GetPaneConfigurations*)q; - break; - case SOAP_TYPE___tls__GetPaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__GetPaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__GetPaneConfiguration*)p = *(struct __tls__GetPaneConfiguration*)q; - break; - case SOAP_TYPE___tls__SetPaneConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__SetPaneConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__SetPaneConfigurations*)p = *(struct __tls__SetPaneConfigurations*)q; - break; - case SOAP_TYPE___tls__SetPaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__SetPaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__SetPaneConfiguration*)p = *(struct __tls__SetPaneConfiguration*)q; - break; - case SOAP_TYPE___tls__CreatePaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__CreatePaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__CreatePaneConfiguration*)p = *(struct __tls__CreatePaneConfiguration*)q; - break; - case SOAP_TYPE___tls__DeletePaneConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tls__DeletePaneConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tls__DeletePaneConfiguration*)p = *(struct __tls__DeletePaneConfiguration*)q; - break; - case SOAP_TYPE___tmd__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetServiceCapabilities*)p = *(struct __tmd__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___tmd__GetRelayOutputOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetRelayOutputOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetRelayOutputOptions*)p = *(struct __tmd__GetRelayOutputOptions*)q; - break; - case SOAP_TYPE___tmd__GetAudioSources: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetAudioSources type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetAudioSources*)p = *(struct __tmd__GetAudioSources*)q; - break; - case SOAP_TYPE___tmd__GetAudioOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetAudioOutputs type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetAudioOutputs*)p = *(struct __tmd__GetAudioOutputs*)q; - break; - case SOAP_TYPE___tmd__GetVideoSources: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetVideoSources type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetVideoSources*)p = *(struct __tmd__GetVideoSources*)q; - break; - case SOAP_TYPE___tmd__GetVideoOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetVideoOutputs type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetVideoOutputs*)p = *(struct __tmd__GetVideoOutputs*)q; - break; - case SOAP_TYPE___tmd__GetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetVideoSourceConfiguration*)p = *(struct __tmd__GetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE___tmd__GetVideoOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetVideoOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetVideoOutputConfiguration*)p = *(struct __tmd__GetVideoOutputConfiguration*)q; - break; - case SOAP_TYPE___tmd__GetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetAudioSourceConfiguration*)p = *(struct __tmd__GetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE___tmd__GetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetAudioOutputConfiguration*)p = *(struct __tmd__GetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE___tmd__SetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetVideoSourceConfiguration*)p = *(struct __tmd__SetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE___tmd__SetVideoOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetVideoOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetVideoOutputConfiguration*)p = *(struct __tmd__SetVideoOutputConfiguration*)q; - break; - case SOAP_TYPE___tmd__SetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetAudioSourceConfiguration*)p = *(struct __tmd__SetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE___tmd__SetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetAudioOutputConfiguration*)p = *(struct __tmd__SetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetVideoSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetVideoSourceConfigurationOptions*)p = *(struct __tmd__GetVideoSourceConfigurationOptions*)q; - break; - case SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetVideoOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetVideoOutputConfigurationOptions*)p = *(struct __tmd__GetVideoOutputConfigurationOptions*)q; - break; - case SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetAudioSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetAudioSourceConfigurationOptions*)p = *(struct __tmd__GetAudioSourceConfigurationOptions*)q; - break; - case SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetAudioOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetAudioOutputConfigurationOptions*)p = *(struct __tmd__GetAudioOutputConfigurationOptions*)q; - break; - case SOAP_TYPE___tmd__GetRelayOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetRelayOutputs type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetRelayOutputs*)p = *(struct __tmd__GetRelayOutputs*)q; - break; - case SOAP_TYPE___tmd__SetRelayOutputSettings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetRelayOutputSettings type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetRelayOutputSettings*)p = *(struct __tmd__SetRelayOutputSettings*)q; - break; - case SOAP_TYPE___tmd__SetRelayOutputState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetRelayOutputState type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetRelayOutputState*)p = *(struct __tmd__SetRelayOutputState*)q; - break; - case SOAP_TYPE___tmd__GetDigitalInputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetDigitalInputs type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetDigitalInputs*)p = *(struct __tmd__GetDigitalInputs*)q; - break; - case SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetDigitalInputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetDigitalInputConfigurationOptions*)p = *(struct __tmd__GetDigitalInputConfigurationOptions*)q; - break; - case SOAP_TYPE___tmd__SetDigitalInputConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetDigitalInputConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetDigitalInputConfigurations*)p = *(struct __tmd__SetDigitalInputConfigurations*)q; - break; - case SOAP_TYPE___tmd__GetSerialPorts: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetSerialPorts type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetSerialPorts*)p = *(struct __tmd__GetSerialPorts*)q; - break; - case SOAP_TYPE___tmd__GetSerialPortConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetSerialPortConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetSerialPortConfiguration*)p = *(struct __tmd__GetSerialPortConfiguration*)q; - break; - case SOAP_TYPE___tmd__SetSerialPortConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SetSerialPortConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SetSerialPortConfiguration*)p = *(struct __tmd__SetSerialPortConfiguration*)q; - break; - case SOAP_TYPE___tmd__GetSerialPortConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__GetSerialPortConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__GetSerialPortConfigurationOptions*)p = *(struct __tmd__GetSerialPortConfigurationOptions*)q; - break; - case SOAP_TYPE___tmd__SendReceiveSerialCommand: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tmd__SendReceiveSerialCommand type=%d location=%p object=%p\n", t, p, q)); - *(struct __tmd__SendReceiveSerialCommand*)p = *(struct __tmd__SendReceiveSerialCommand*)q; - break; - case SOAP_TYPE___tptz__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetServiceCapabilities*)p = *(struct __tptz__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___tptz__GetConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetConfigurations*)p = *(struct __tptz__GetConfigurations*)q; - break; - case SOAP_TYPE___tptz__GetPresets: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetPresets type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetPresets*)p = *(struct __tptz__GetPresets*)q; - break; - case SOAP_TYPE___tptz__SetPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__SetPreset type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__SetPreset*)p = *(struct __tptz__SetPreset*)q; - break; - case SOAP_TYPE___tptz__RemovePreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__RemovePreset type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__RemovePreset*)p = *(struct __tptz__RemovePreset*)q; - break; - case SOAP_TYPE___tptz__GotoPreset: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GotoPreset type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GotoPreset*)p = *(struct __tptz__GotoPreset*)q; - break; - case SOAP_TYPE___tptz__GetStatus: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetStatus type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetStatus*)p = *(struct __tptz__GetStatus*)q; - break; - case SOAP_TYPE___tptz__GetConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetConfiguration*)p = *(struct __tptz__GetConfiguration*)q; - break; - case SOAP_TYPE___tptz__GetNodes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetNodes type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetNodes*)p = *(struct __tptz__GetNodes*)q; - break; - case SOAP_TYPE___tptz__GetNode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetNode type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetNode*)p = *(struct __tptz__GetNode*)q; - break; - case SOAP_TYPE___tptz__SetConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__SetConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__SetConfiguration*)p = *(struct __tptz__SetConfiguration*)q; - break; - case SOAP_TYPE___tptz__GetConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetConfigurationOptions*)p = *(struct __tptz__GetConfigurationOptions*)q; - break; - case SOAP_TYPE___tptz__GotoHomePosition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GotoHomePosition type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GotoHomePosition*)p = *(struct __tptz__GotoHomePosition*)q; - break; - case SOAP_TYPE___tptz__SetHomePosition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__SetHomePosition type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__SetHomePosition*)p = *(struct __tptz__SetHomePosition*)q; - break; - case SOAP_TYPE___tptz__ContinuousMove: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__ContinuousMove type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__ContinuousMove*)p = *(struct __tptz__ContinuousMove*)q; - break; - case SOAP_TYPE___tptz__RelativeMove: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__RelativeMove type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__RelativeMove*)p = *(struct __tptz__RelativeMove*)q; - break; - case SOAP_TYPE___tptz__SendAuxiliaryCommand: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__SendAuxiliaryCommand type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__SendAuxiliaryCommand*)p = *(struct __tptz__SendAuxiliaryCommand*)q; - break; - case SOAP_TYPE___tptz__AbsoluteMove: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__AbsoluteMove type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__AbsoluteMove*)p = *(struct __tptz__AbsoluteMove*)q; - break; - case SOAP_TYPE___tptz__Stop: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__Stop type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__Stop*)p = *(struct __tptz__Stop*)q; - break; - case SOAP_TYPE___tptz__GetPresetTours: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetPresetTours type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetPresetTours*)p = *(struct __tptz__GetPresetTours*)q; - break; - case SOAP_TYPE___tptz__GetPresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetPresetTour type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetPresetTour*)p = *(struct __tptz__GetPresetTour*)q; - break; - case SOAP_TYPE___tptz__GetPresetTourOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetPresetTourOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetPresetTourOptions*)p = *(struct __tptz__GetPresetTourOptions*)q; - break; - case SOAP_TYPE___tptz__CreatePresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__CreatePresetTour type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__CreatePresetTour*)p = *(struct __tptz__CreatePresetTour*)q; - break; - case SOAP_TYPE___tptz__ModifyPresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__ModifyPresetTour type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__ModifyPresetTour*)p = *(struct __tptz__ModifyPresetTour*)q; - break; - case SOAP_TYPE___tptz__OperatePresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__OperatePresetTour type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__OperatePresetTour*)p = *(struct __tptz__OperatePresetTour*)q; - break; - case SOAP_TYPE___tptz__RemovePresetTour: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__RemovePresetTour type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__RemovePresetTour*)p = *(struct __tptz__RemovePresetTour*)q; - break; - case SOAP_TYPE___tptz__GetCompatibleConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tptz__GetCompatibleConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __tptz__GetCompatibleConfigurations*)p = *(struct __tptz__GetCompatibleConfigurations*)q; - break; - case SOAP_TYPE___trc__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetServiceCapabilities*)p = *(struct __trc__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___trc__CreateRecording: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__CreateRecording type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__CreateRecording*)p = *(struct __trc__CreateRecording*)q; - break; - case SOAP_TYPE___trc__DeleteRecording: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__DeleteRecording type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__DeleteRecording*)p = *(struct __trc__DeleteRecording*)q; - break; - case SOAP_TYPE___trc__GetRecordings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetRecordings type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetRecordings*)p = *(struct __trc__GetRecordings*)q; - break; - case SOAP_TYPE___trc__SetRecordingConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__SetRecordingConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__SetRecordingConfiguration*)p = *(struct __trc__SetRecordingConfiguration*)q; - break; - case SOAP_TYPE___trc__GetRecordingConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetRecordingConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetRecordingConfiguration*)p = *(struct __trc__GetRecordingConfiguration*)q; - break; - case SOAP_TYPE___trc__GetRecordingOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetRecordingOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetRecordingOptions*)p = *(struct __trc__GetRecordingOptions*)q; - break; - case SOAP_TYPE___trc__CreateTrack: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__CreateTrack type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__CreateTrack*)p = *(struct __trc__CreateTrack*)q; - break; - case SOAP_TYPE___trc__DeleteTrack: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__DeleteTrack type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__DeleteTrack*)p = *(struct __trc__DeleteTrack*)q; - break; - case SOAP_TYPE___trc__GetTrackConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetTrackConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetTrackConfiguration*)p = *(struct __trc__GetTrackConfiguration*)q; - break; - case SOAP_TYPE___trc__SetTrackConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__SetTrackConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__SetTrackConfiguration*)p = *(struct __trc__SetTrackConfiguration*)q; - break; - case SOAP_TYPE___trc__CreateRecordingJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__CreateRecordingJob type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__CreateRecordingJob*)p = *(struct __trc__CreateRecordingJob*)q; - break; - case SOAP_TYPE___trc__DeleteRecordingJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__DeleteRecordingJob type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__DeleteRecordingJob*)p = *(struct __trc__DeleteRecordingJob*)q; - break; - case SOAP_TYPE___trc__GetRecordingJobs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetRecordingJobs type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetRecordingJobs*)p = *(struct __trc__GetRecordingJobs*)q; - break; - case SOAP_TYPE___trc__SetRecordingJobConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__SetRecordingJobConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__SetRecordingJobConfiguration*)p = *(struct __trc__SetRecordingJobConfiguration*)q; - break; - case SOAP_TYPE___trc__GetRecordingJobConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetRecordingJobConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetRecordingJobConfiguration*)p = *(struct __trc__GetRecordingJobConfiguration*)q; - break; - case SOAP_TYPE___trc__SetRecordingJobMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__SetRecordingJobMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__SetRecordingJobMode*)p = *(struct __trc__SetRecordingJobMode*)q; - break; - case SOAP_TYPE___trc__GetRecordingJobState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetRecordingJobState type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetRecordingJobState*)p = *(struct __trc__GetRecordingJobState*)q; - break; - case SOAP_TYPE___trc__ExportRecordedData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__ExportRecordedData type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__ExportRecordedData*)p = *(struct __trc__ExportRecordedData*)q; - break; - case SOAP_TYPE___trc__StopExportRecordedData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__StopExportRecordedData type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__StopExportRecordedData*)p = *(struct __trc__StopExportRecordedData*)q; - break; - case SOAP_TYPE___trc__GetExportRecordedDataState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trc__GetExportRecordedDataState type=%d location=%p object=%p\n", t, p, q)); - *(struct __trc__GetExportRecordedDataState*)p = *(struct __trc__GetExportRecordedDataState*)q; - break; - case SOAP_TYPE___trp__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trp__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __trp__GetServiceCapabilities*)p = *(struct __trp__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___trp__GetReplayUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trp__GetReplayUri type=%d location=%p object=%p\n", t, p, q)); - *(struct __trp__GetReplayUri*)p = *(struct __trp__GetReplayUri*)q; - break; - case SOAP_TYPE___trp__GetReplayConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trp__GetReplayConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trp__GetReplayConfiguration*)p = *(struct __trp__GetReplayConfiguration*)q; - break; - case SOAP_TYPE___trp__SetReplayConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trp__SetReplayConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trp__SetReplayConfiguration*)p = *(struct __trp__SetReplayConfiguration*)q; - break; - case SOAP_TYPE___trt__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetServiceCapabilities*)p = *(struct __trt__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___trt__GetVideoSources: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoSources type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoSources*)p = *(struct __trt__GetVideoSources*)q; - break; - case SOAP_TYPE___trt__GetAudioSources: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioSources type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioSources*)p = *(struct __trt__GetAudioSources*)q; - break; - case SOAP_TYPE___trt__GetAudioOutputs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioOutputs type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioOutputs*)p = *(struct __trt__GetAudioOutputs*)q; - break; - case SOAP_TYPE___trt__CreateProfile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__CreateProfile type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__CreateProfile*)p = *(struct __trt__CreateProfile*)q; - break; - case SOAP_TYPE___trt__GetProfile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetProfile type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetProfile*)p = *(struct __trt__GetProfile*)q; - break; - case SOAP_TYPE___trt__GetProfiles: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetProfiles type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetProfiles*)p = *(struct __trt__GetProfiles*)q; - break; - case SOAP_TYPE___trt__AddVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddVideoEncoderConfiguration*)p = *(struct __trt__AddVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__AddVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddVideoSourceConfiguration*)p = *(struct __trt__AddVideoSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__AddAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddAudioEncoderConfiguration*)p = *(struct __trt__AddAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__AddAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddAudioSourceConfiguration*)p = *(struct __trt__AddAudioSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__AddPTZConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddPTZConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddPTZConfiguration*)p = *(struct __trt__AddPTZConfiguration*)q; - break; - case SOAP_TYPE___trt__AddVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddVideoAnalyticsConfiguration*)p = *(struct __trt__AddVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE___trt__AddMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddMetadataConfiguration*)p = *(struct __trt__AddMetadataConfiguration*)q; - break; - case SOAP_TYPE___trt__AddAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddAudioOutputConfiguration*)p = *(struct __trt__AddAudioOutputConfiguration*)q; - break; - case SOAP_TYPE___trt__AddAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__AddAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__AddAudioDecoderConfiguration*)p = *(struct __trt__AddAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveVideoEncoderConfiguration*)p = *(struct __trt__RemoveVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveVideoSourceConfiguration*)p = *(struct __trt__RemoveVideoSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveAudioEncoderConfiguration*)p = *(struct __trt__RemoveAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveAudioSourceConfiguration*)p = *(struct __trt__RemoveAudioSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__RemovePTZConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemovePTZConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemovePTZConfiguration*)p = *(struct __trt__RemovePTZConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveVideoAnalyticsConfiguration*)p = *(struct __trt__RemoveVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveMetadataConfiguration*)p = *(struct __trt__RemoveMetadataConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveAudioOutputConfiguration*)p = *(struct __trt__RemoveAudioOutputConfiguration*)q; - break; - case SOAP_TYPE___trt__RemoveAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__RemoveAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__RemoveAudioDecoderConfiguration*)p = *(struct __trt__RemoveAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE___trt__DeleteProfile: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__DeleteProfile type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__DeleteProfile*)p = *(struct __trt__DeleteProfile*)q; - break; - case SOAP_TYPE___trt__GetVideoSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoSourceConfigurations*)p = *(struct __trt__GetVideoSourceConfigurations*)q; - break; - case SOAP_TYPE___trt__GetVideoEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoEncoderConfigurations*)p = *(struct __trt__GetVideoEncoderConfigurations*)q; - break; - case SOAP_TYPE___trt__GetAudioSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioSourceConfigurations*)p = *(struct __trt__GetAudioSourceConfigurations*)q; - break; - case SOAP_TYPE___trt__GetAudioEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioEncoderConfigurations*)p = *(struct __trt__GetAudioEncoderConfigurations*)q; - break; - case SOAP_TYPE___trt__GetVideoAnalyticsConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoAnalyticsConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoAnalyticsConfigurations*)p = *(struct __trt__GetVideoAnalyticsConfigurations*)q; - break; - case SOAP_TYPE___trt__GetMetadataConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetMetadataConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetMetadataConfigurations*)p = *(struct __trt__GetMetadataConfigurations*)q; - break; - case SOAP_TYPE___trt__GetAudioOutputConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioOutputConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioOutputConfigurations*)p = *(struct __trt__GetAudioOutputConfigurations*)q; - break; - case SOAP_TYPE___trt__GetAudioDecoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioDecoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioDecoderConfigurations*)p = *(struct __trt__GetAudioDecoderConfigurations*)q; - break; - case SOAP_TYPE___trt__GetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoSourceConfiguration*)p = *(struct __trt__GetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__GetVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoEncoderConfiguration*)p = *(struct __trt__GetVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__GetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioSourceConfiguration*)p = *(struct __trt__GetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__GetAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioEncoderConfiguration*)p = *(struct __trt__GetAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__GetVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoAnalyticsConfiguration*)p = *(struct __trt__GetVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE___trt__GetMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetMetadataConfiguration*)p = *(struct __trt__GetMetadataConfiguration*)q; - break; - case SOAP_TYPE___trt__GetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioOutputConfiguration*)p = *(struct __trt__GetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE___trt__GetAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioDecoderConfiguration*)p = *(struct __trt__GetAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleVideoEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleVideoEncoderConfigurations*)p = *(struct __trt__GetCompatibleVideoEncoderConfigurations*)q; - break; - case SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleVideoSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleVideoSourceConfigurations*)p = *(struct __trt__GetCompatibleVideoSourceConfigurations*)q; - break; - case SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleAudioEncoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleAudioEncoderConfigurations*)p = *(struct __trt__GetCompatibleAudioEncoderConfigurations*)q; - break; - case SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleAudioSourceConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleAudioSourceConfigurations*)p = *(struct __trt__GetCompatibleAudioSourceConfigurations*)q; - break; - case SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleVideoAnalyticsConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleVideoAnalyticsConfigurations*)p = *(struct __trt__GetCompatibleVideoAnalyticsConfigurations*)q; - break; - case SOAP_TYPE___trt__GetCompatibleMetadataConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleMetadataConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleMetadataConfigurations*)p = *(struct __trt__GetCompatibleMetadataConfigurations*)q; - break; - case SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleAudioOutputConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleAudioOutputConfigurations*)p = *(struct __trt__GetCompatibleAudioOutputConfigurations*)q; - break; - case SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetCompatibleAudioDecoderConfigurations type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetCompatibleAudioDecoderConfigurations*)p = *(struct __trt__GetCompatibleAudioDecoderConfigurations*)q; - break; - case SOAP_TYPE___trt__SetVideoSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetVideoSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetVideoSourceConfiguration*)p = *(struct __trt__SetVideoSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__SetVideoEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetVideoEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetVideoEncoderConfiguration*)p = *(struct __trt__SetVideoEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__SetAudioSourceConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetAudioSourceConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetAudioSourceConfiguration*)p = *(struct __trt__SetAudioSourceConfiguration*)q; - break; - case SOAP_TYPE___trt__SetAudioEncoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetAudioEncoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetAudioEncoderConfiguration*)p = *(struct __trt__SetAudioEncoderConfiguration*)q; - break; - case SOAP_TYPE___trt__SetVideoAnalyticsConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetVideoAnalyticsConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetVideoAnalyticsConfiguration*)p = *(struct __trt__SetVideoAnalyticsConfiguration*)q; - break; - case SOAP_TYPE___trt__SetMetadataConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetMetadataConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetMetadataConfiguration*)p = *(struct __trt__SetMetadataConfiguration*)q; - break; - case SOAP_TYPE___trt__SetAudioOutputConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetAudioOutputConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetAudioOutputConfiguration*)p = *(struct __trt__SetAudioOutputConfiguration*)q; - break; - case SOAP_TYPE___trt__SetAudioDecoderConfiguration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetAudioDecoderConfiguration type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetAudioDecoderConfiguration*)p = *(struct __trt__SetAudioDecoderConfiguration*)q; - break; - case SOAP_TYPE___trt__GetVideoSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoSourceConfigurationOptions*)p = *(struct __trt__GetVideoSourceConfigurationOptions*)q; - break; - case SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoEncoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoEncoderConfigurationOptions*)p = *(struct __trt__GetVideoEncoderConfigurationOptions*)q; - break; - case SOAP_TYPE___trt__GetAudioSourceConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioSourceConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioSourceConfigurationOptions*)p = *(struct __trt__GetAudioSourceConfigurationOptions*)q; - break; - case SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioEncoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioEncoderConfigurationOptions*)p = *(struct __trt__GetAudioEncoderConfigurationOptions*)q; - break; - case SOAP_TYPE___trt__GetMetadataConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetMetadataConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetMetadataConfigurationOptions*)p = *(struct __trt__GetMetadataConfigurationOptions*)q; - break; - case SOAP_TYPE___trt__GetAudioOutputConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioOutputConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioOutputConfigurationOptions*)p = *(struct __trt__GetAudioOutputConfigurationOptions*)q; - break; - case SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetAudioDecoderConfigurationOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetAudioDecoderConfigurationOptions*)p = *(struct __trt__GetAudioDecoderConfigurationOptions*)q; - break; - case SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetGuaranteedNumberOfVideoEncoderInstances type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetGuaranteedNumberOfVideoEncoderInstances*)p = *(struct __trt__GetGuaranteedNumberOfVideoEncoderInstances*)q; - break; - case SOAP_TYPE___trt__GetStreamUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetStreamUri type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetStreamUri*)p = *(struct __trt__GetStreamUri*)q; - break; - case SOAP_TYPE___trt__StartMulticastStreaming: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__StartMulticastStreaming type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__StartMulticastStreaming*)p = *(struct __trt__StartMulticastStreaming*)q; - break; - case SOAP_TYPE___trt__StopMulticastStreaming: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__StopMulticastStreaming type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__StopMulticastStreaming*)p = *(struct __trt__StopMulticastStreaming*)q; - break; - case SOAP_TYPE___trt__SetSynchronizationPoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetSynchronizationPoint type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetSynchronizationPoint*)p = *(struct __trt__SetSynchronizationPoint*)q; - break; - case SOAP_TYPE___trt__GetSnapshotUri: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetSnapshotUri type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetSnapshotUri*)p = *(struct __trt__GetSnapshotUri*)q; - break; - case SOAP_TYPE___trt__GetVideoSourceModes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetVideoSourceModes type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetVideoSourceModes*)p = *(struct __trt__GetVideoSourceModes*)q; - break; - case SOAP_TYPE___trt__SetVideoSourceMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetVideoSourceMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetVideoSourceMode*)p = *(struct __trt__SetVideoSourceMode*)q; - break; - case SOAP_TYPE___trt__GetOSDs: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetOSDs type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetOSDs*)p = *(struct __trt__GetOSDs*)q; - break; - case SOAP_TYPE___trt__GetOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetOSD type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetOSD*)p = *(struct __trt__GetOSD*)q; - break; - case SOAP_TYPE___trt__GetOSDOptions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__GetOSDOptions type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__GetOSDOptions*)p = *(struct __trt__GetOSDOptions*)q; - break; - case SOAP_TYPE___trt__SetOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__SetOSD type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__SetOSD*)p = *(struct __trt__SetOSD*)q; - break; - case SOAP_TYPE___trt__CreateOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__CreateOSD type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__CreateOSD*)p = *(struct __trt__CreateOSD*)q; - break; - case SOAP_TYPE___trt__DeleteOSD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trt__DeleteOSD type=%d location=%p object=%p\n", t, p, q)); - *(struct __trt__DeleteOSD*)p = *(struct __trt__DeleteOSD*)q; - break; - case SOAP_TYPE___trv__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__GetServiceCapabilities*)p = *(struct __trv__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___trv__GetReceivers: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__GetReceivers type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__GetReceivers*)p = *(struct __trv__GetReceivers*)q; - break; - case SOAP_TYPE___trv__GetReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__GetReceiver type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__GetReceiver*)p = *(struct __trv__GetReceiver*)q; - break; - case SOAP_TYPE___trv__CreateReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__CreateReceiver type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__CreateReceiver*)p = *(struct __trv__CreateReceiver*)q; - break; - case SOAP_TYPE___trv__DeleteReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__DeleteReceiver type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__DeleteReceiver*)p = *(struct __trv__DeleteReceiver*)q; - break; - case SOAP_TYPE___trv__ConfigureReceiver: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__ConfigureReceiver type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__ConfigureReceiver*)p = *(struct __trv__ConfigureReceiver*)q; - break; - case SOAP_TYPE___trv__SetReceiverMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__SetReceiverMode type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__SetReceiverMode*)p = *(struct __trv__SetReceiverMode*)q; - break; - case SOAP_TYPE___trv__GetReceiverState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __trv__GetReceiverState type=%d location=%p object=%p\n", t, p, q)); - *(struct __trv__GetReceiverState*)p = *(struct __trv__GetReceiverState*)q; - break; - case SOAP_TYPE___tse__GetServiceCapabilities: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetServiceCapabilities type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetServiceCapabilities*)p = *(struct __tse__GetServiceCapabilities*)q; - break; - case SOAP_TYPE___tse__GetRecordingSummary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetRecordingSummary type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetRecordingSummary*)p = *(struct __tse__GetRecordingSummary*)q; - break; - case SOAP_TYPE___tse__GetRecordingInformation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetRecordingInformation type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetRecordingInformation*)p = *(struct __tse__GetRecordingInformation*)q; - break; - case SOAP_TYPE___tse__GetMediaAttributes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetMediaAttributes type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetMediaAttributes*)p = *(struct __tse__GetMediaAttributes*)q; - break; - case SOAP_TYPE___tse__FindRecordings: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__FindRecordings type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__FindRecordings*)p = *(struct __tse__FindRecordings*)q; - break; - case SOAP_TYPE___tse__GetRecordingSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetRecordingSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetRecordingSearchResults*)p = *(struct __tse__GetRecordingSearchResults*)q; - break; - case SOAP_TYPE___tse__FindEvents: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__FindEvents type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__FindEvents*)p = *(struct __tse__FindEvents*)q; - break; - case SOAP_TYPE___tse__GetEventSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetEventSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetEventSearchResults*)p = *(struct __tse__GetEventSearchResults*)q; - break; - case SOAP_TYPE___tse__FindPTZPosition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__FindPTZPosition type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__FindPTZPosition*)p = *(struct __tse__FindPTZPosition*)q; - break; - case SOAP_TYPE___tse__GetPTZPositionSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetPTZPositionSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetPTZPositionSearchResults*)p = *(struct __tse__GetPTZPositionSearchResults*)q; - break; - case SOAP_TYPE___tse__GetSearchState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetSearchState type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetSearchState*)p = *(struct __tse__GetSearchState*)q; - break; - case SOAP_TYPE___tse__EndSearch: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__EndSearch type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__EndSearch*)p = *(struct __tse__EndSearch*)q; - break; - case SOAP_TYPE___tse__FindMetadata: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__FindMetadata type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__FindMetadata*)p = *(struct __tse__FindMetadata*)q; - break; - case SOAP_TYPE___tse__GetMetadataSearchResults: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct __tse__GetMetadataSearchResults type=%d location=%p object=%p\n", t, p, q)); - *(struct __tse__GetMetadataSearchResults*)p = *(struct __tse__GetMetadataSearchResults*)q; - break; - case SOAP_TYPE__wsa__EndpointReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__EndpointReferenceType*)p = *(struct wsa__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsa__RelatesTo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__Relationship type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__Relationship*)p = *(struct wsa__Relationship*)q; - break; - case SOAP_TYPE__wsa__From: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__EndpointReferenceType*)p = *(struct wsa__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsa__ReplyTo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__EndpointReferenceType*)p = *(struct wsa__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsa__FaultTo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa__EndpointReferenceType*)p = *(struct wsa__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsdd__Hello: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__HelloType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__HelloType*)p = *(struct wsdd__HelloType*)q; - break; - case SOAP_TYPE__wsdd__Bye: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ByeType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ByeType*)p = *(struct wsdd__ByeType*)q; - break; - case SOAP_TYPE__wsdd__Probe: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ProbeType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ProbeType*)p = *(struct wsdd__ProbeType*)q; - break; - case SOAP_TYPE__wsdd__ProbeMatches: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ProbeMatchesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ProbeMatchesType*)p = *(struct wsdd__ProbeMatchesType*)q; - break; - case SOAP_TYPE__wsdd__Resolve: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ResolveType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ResolveType*)p = *(struct wsdd__ResolveType*)q; - break; - case SOAP_TYPE__wsdd__ResolveMatches: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ResolveMatchesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ResolveMatchesType*)p = *(struct wsdd__ResolveMatchesType*)q; - break; - case SOAP_TYPE__wsdd__Scopes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__ScopesType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__ScopesType*)p = *(struct wsdd__ScopesType*)q; - break; - case SOAP_TYPE__wsdd__Security: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__SecurityType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__SecurityType*)p = *(struct wsdd__SecurityType*)q; - break; - case SOAP_TYPE__wsdd__Sig: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__SigType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__SigType*)p = *(struct wsdd__SigType*)q; - break; - case SOAP_TYPE__wsdd__AppSequence: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsdd__AppSequenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsdd__AppSequenceType*)p = *(struct wsdd__AppSequenceType*)q; - break; - case SOAP_TYPE__ds__Signature: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__SignatureType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__SignatureType*)p = *(struct ds__SignatureType*)q; - break; - case SOAP_TYPE__ds__Transform: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__TransformType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__TransformType*)p = *(struct ds__TransformType*)q; - break; - case SOAP_TYPE__ds__KeyInfo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct ds__KeyInfoType type=%d location=%p object=%p\n", t, p, q)); - *(struct ds__KeyInfoType*)p = *(struct ds__KeyInfoType*)q; - break; - case SOAP_TYPE_xsd__dateTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct timeval type=%d location=%p object=%p\n", t, p, q)); - *(struct timeval*)p = *(struct timeval*)q; - break; - case SOAP_TYPE__saml1__Assertion: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AssertionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AssertionType*)p = *(struct saml1__AssertionType*)q; - break; - case SOAP_TYPE__saml1__Conditions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__ConditionsType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__ConditionsType*)p = *(struct saml1__ConditionsType*)q; - break; - case SOAP_TYPE__saml1__Condition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__ConditionAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__ConditionAbstractType*)p = *(struct saml1__ConditionAbstractType*)q; - break; - case SOAP_TYPE__saml1__AudienceRestrictionCondition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AudienceRestrictionConditionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AudienceRestrictionConditionType*)p = *(struct saml1__AudienceRestrictionConditionType*)q; - break; - case SOAP_TYPE__saml1__DoNotCacheCondition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__DoNotCacheConditionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__DoNotCacheConditionType*)p = *(struct saml1__DoNotCacheConditionType*)q; - break; - case SOAP_TYPE__saml1__Advice: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AdviceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AdviceType*)p = *(struct saml1__AdviceType*)q; - break; - case SOAP_TYPE__saml1__Statement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__StatementAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__StatementAbstractType*)p = *(struct saml1__StatementAbstractType*)q; - break; - case SOAP_TYPE__saml1__SubjectStatement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectStatementAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectStatementAbstractType*)p = *(struct saml1__SubjectStatementAbstractType*)q; - break; - case SOAP_TYPE__saml1__Subject: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectType*)p = *(struct saml1__SubjectType*)q; - break; - case SOAP_TYPE__saml1__NameIdentifier: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__NameIdentifierType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__NameIdentifierType*)p = *(struct saml1__NameIdentifierType*)q; - break; - case SOAP_TYPE__saml1__SubjectConfirmation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectConfirmationType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectConfirmationType*)p = *(struct saml1__SubjectConfirmationType*)q; - break; - case SOAP_TYPE__saml1__AuthenticationStatement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AuthenticationStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AuthenticationStatementType*)p = *(struct saml1__AuthenticationStatementType*)q; - break; - case SOAP_TYPE__saml1__SubjectLocality: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__SubjectLocalityType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__SubjectLocalityType*)p = *(struct saml1__SubjectLocalityType*)q; - break; - case SOAP_TYPE__saml1__AuthorityBinding: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AuthorityBindingType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AuthorityBindingType*)p = *(struct saml1__AuthorityBindingType*)q; - break; - case SOAP_TYPE__saml1__AuthorizationDecisionStatement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AuthorizationDecisionStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AuthorizationDecisionStatementType*)p = *(struct saml1__AuthorizationDecisionStatementType*)q; - break; - case SOAP_TYPE__saml1__Action: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__ActionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__ActionType*)p = *(struct saml1__ActionType*)q; - break; - case SOAP_TYPE__saml1__Evidence: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__EvidenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__EvidenceType*)p = *(struct saml1__EvidenceType*)q; - break; - case SOAP_TYPE__saml1__AttributeStatement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AttributeStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AttributeStatementType*)p = *(struct saml1__AttributeStatementType*)q; - break; - case SOAP_TYPE__saml1__AttributeDesignator: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AttributeDesignatorType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AttributeDesignatorType*)p = *(struct saml1__AttributeDesignatorType*)q; - break; - case SOAP_TYPE__saml1__Attribute: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml1__AttributeType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml1__AttributeType*)p = *(struct saml1__AttributeType*)q; - break; - case SOAP_TYPE__saml2__BaseID: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__BaseIDAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__BaseIDAbstractType*)p = *(struct saml2__BaseIDAbstractType*)q; - break; - case SOAP_TYPE__saml2__NameID: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__NameIDType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__NameIDType*)p = *(struct saml2__NameIDType*)q; - break; - case SOAP_TYPE__saml2__EncryptedID: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__EncryptedElementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__EncryptedElementType*)p = *(struct saml2__EncryptedElementType*)q; - break; - case SOAP_TYPE__saml2__Issuer: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__NameIDType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__NameIDType*)p = *(struct saml2__NameIDType*)q; - break; - case SOAP_TYPE__saml2__Assertion: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AssertionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AssertionType*)p = *(struct saml2__AssertionType*)q; - break; - case SOAP_TYPE__saml2__Subject: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectType*)p = *(struct saml2__SubjectType*)q; - break; - case SOAP_TYPE__saml2__SubjectConfirmation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectConfirmationType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectConfirmationType*)p = *(struct saml2__SubjectConfirmationType*)q; - break; - case SOAP_TYPE__saml2__SubjectConfirmationData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectConfirmationDataType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectConfirmationDataType*)p = *(struct saml2__SubjectConfirmationDataType*)q; - break; - case SOAP_TYPE__saml2__Conditions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ConditionsType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ConditionsType*)p = *(struct saml2__ConditionsType*)q; - break; - case SOAP_TYPE__saml2__Condition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ConditionAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ConditionAbstractType*)p = *(struct saml2__ConditionAbstractType*)q; - break; - case SOAP_TYPE__saml2__AudienceRestriction: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AudienceRestrictionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AudienceRestrictionType*)p = *(struct saml2__AudienceRestrictionType*)q; - break; - case SOAP_TYPE__saml2__OneTimeUse: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__OneTimeUseType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__OneTimeUseType*)p = *(struct saml2__OneTimeUseType*)q; - break; - case SOAP_TYPE__saml2__ProxyRestriction: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ProxyRestrictionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ProxyRestrictionType*)p = *(struct saml2__ProxyRestrictionType*)q; - break; - case SOAP_TYPE__saml2__Advice: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AdviceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AdviceType*)p = *(struct saml2__AdviceType*)q; - break; - case SOAP_TYPE__saml2__EncryptedAssertion: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__EncryptedElementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__EncryptedElementType*)p = *(struct saml2__EncryptedElementType*)q; - break; - case SOAP_TYPE__saml2__Statement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__StatementAbstractType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__StatementAbstractType*)p = *(struct saml2__StatementAbstractType*)q; - break; - case SOAP_TYPE__saml2__AuthnStatement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AuthnStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AuthnStatementType*)p = *(struct saml2__AuthnStatementType*)q; - break; - case SOAP_TYPE__saml2__SubjectLocality: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__SubjectLocalityType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__SubjectLocalityType*)p = *(struct saml2__SubjectLocalityType*)q; - break; - case SOAP_TYPE__saml2__AuthnContext: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AuthnContextType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AuthnContextType*)p = *(struct saml2__AuthnContextType*)q; - break; - case SOAP_TYPE__saml2__AuthzDecisionStatement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AuthzDecisionStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AuthzDecisionStatementType*)p = *(struct saml2__AuthzDecisionStatementType*)q; - break; - case SOAP_TYPE__saml2__Action: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__ActionType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__ActionType*)p = *(struct saml2__ActionType*)q; - break; - case SOAP_TYPE__saml2__Evidence: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__EvidenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__EvidenceType*)p = *(struct saml2__EvidenceType*)q; - break; - case SOAP_TYPE__saml2__AttributeStatement: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AttributeStatementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AttributeStatementType*)p = *(struct saml2__AttributeStatementType*)q; - break; - case SOAP_TYPE__saml2__Attribute: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__AttributeType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__AttributeType*)p = *(struct saml2__AttributeType*)q; - break; - case SOAP_TYPE__saml2__EncryptedAttribute: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct saml2__EncryptedElementType type=%d location=%p object=%p\n", t, p, q)); - *(struct saml2__EncryptedElementType*)p = *(struct saml2__EncryptedElementType*)q; - break; - case SOAP_TYPE_xsd__anyType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct soap_dom_element type=%d location=%p object=%p\n", t, p, q)); - *(struct soap_dom_element*)p = *(struct soap_dom_element*)q; - break; - case SOAP_TYPE_xsd__anyAttribute: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct soap_dom_attribute type=%d location=%p object=%p\n", t, p, q)); - *(struct soap_dom_attribute*)p = *(struct soap_dom_attribute*)q; - break; - case SOAP_TYPE__wsa5__EndpointReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__EndpointReferenceType*)p = *(struct wsa5__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsa5__ReferenceParameters: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__ReferenceParametersType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__ReferenceParametersType*)p = *(struct wsa5__ReferenceParametersType*)q; - break; - case SOAP_TYPE__wsa5__Metadata: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__MetadataType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__MetadataType*)p = *(struct wsa5__MetadataType*)q; - break; - case SOAP_TYPE__wsa5__RelatesTo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__RelatesToType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__RelatesToType*)p = *(struct wsa5__RelatesToType*)q; - break; - case SOAP_TYPE__wsa5__ReplyTo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__EndpointReferenceType*)p = *(struct wsa5__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsa5__From: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__EndpointReferenceType*)p = *(struct wsa5__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsa5__FaultTo: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__EndpointReferenceType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__EndpointReferenceType*)p = *(struct wsa5__EndpointReferenceType*)q; - break; - case SOAP_TYPE__wsa5__ProblemAction: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct wsa5__ProblemActionType type=%d location=%p object=%p\n", t, p, q)); - *(struct wsa5__ProblemActionType*)p = *(struct wsa5__ProblemActionType*)q; - break; - case SOAP_TYPE_xsd__QName: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_SOAP_ENV__Envelope: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__NCName: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__anySimpleType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__anyURI: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__duration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__integer: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__nonNegativeInteger: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_xsd__token: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE__xmime__contentType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE__xml__lang: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__IntAttrList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__FloatAttrList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__StringAttrList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__StringList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__ReferenceTokenList: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tmd__DelayTimes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tds__EAPMethodTypes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_trt__EncodingTypes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_trc__EncodingTypes: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__ReferenceToken: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__Name: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__NetworkInterfaceConfigPriority: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__IPv4Address: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__IPv6Address: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__HwAddress: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__DNSName: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__Domain: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__Dot11SSIDType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__hexBinary type=%d location=%p object=%p\n", t, p, q)); - *(xsd__hexBinary*)p = *(xsd__hexBinary*)q; - break; - case SOAP_TYPE_tt__Dot11PSK: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy xsd__hexBinary type=%d location=%p object=%p\n", t, p, q)); - *(xsd__hexBinary*)p = *(xsd__hexBinary*)q; - break; - case SOAP_TYPE_tt__Dot11PSKPassphrase: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__AuxiliaryData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__Description: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__XPathExpression: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__RecordingJobMode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__RecordingJobState: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__AudioClassType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_wstop__FullTopicExpression: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_wstop__ConcreteTopicExpression: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_wstop__SimpleTopicExpression: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__ReceiverReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__RecordingReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__TrackReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__JobToken: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - case SOAP_TYPE_tt__RecordingJobReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy std::string type=%d location=%p object=%p\n", t, p, q)); - *(std::string*)p = *(std::string*)q; - break; - default: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Could not insert type=%d in %d\n", t, tt)); - } -} -#ifdef WIN32 -#pragma warning(pop) -#endif -#endif - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_byte(struct soap *soap, const char *tag, int id, const char *a, const char *type) -{ - return soap_outbyte(soap, tag, id, a, type, SOAP_TYPE_byte); -} - -SOAP_FMAC3 char * SOAP_FMAC4 soap_in_byte(struct soap *soap, const char *tag, char *a, const char *type) -{ - a = soap_inbyte(soap, tag, a, type, SOAP_TYPE_byte); - return a; -} - -SOAP_FMAC3 char * SOAP_FMAC4 soap_new_byte(struct soap *soap, int n) -{ - char *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(char))); - for (char *p = a; p && n--; ++p) - soap_default_byte(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_byte(struct soap *soap, const char *a, const char *tag, const char *type) -{ - if (soap_out_byte(soap, tag ? tag : "byte", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 char * SOAP_FMAC4 soap_get_byte(struct soap *soap, char *p, const char *tag, const char *type) -{ - if ((p = soap_in_byte(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IANA_IfTypes(struct soap *soap, const char *tag, int id, const int *a, const char *type) -{ - return soap_outint(soap, tag, id, a, type, SOAP_TYPE_tt__IANA_IfTypes); -} - -SOAP_FMAC3 int * SOAP_FMAC4 soap_in_tt__IANA_IfTypes(struct soap *soap, const char *tag, int *a, const char *type) -{ - a = soap_inint(soap, tag, a, type, SOAP_TYPE_tt__IANA_IfTypes); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IANA_IfTypes(struct soap *soap, const int *a, const char *tag, const char *type) -{ - if (soap_out_tt__IANA_IfTypes(soap, tag ? tag : "tt:IANA-IfTypes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int * SOAP_FMAC4 soap_get_tt__IANA_IfTypes(struct soap *soap, int *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IANA_IfTypes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_int(struct soap *soap, const char *tag, int id, const int *a, const char *type) -{ - return soap_outint(soap, tag, id, a, type, SOAP_TYPE_int); -} - -SOAP_FMAC3 int * SOAP_FMAC4 soap_in_int(struct soap *soap, const char *tag, int *a, const char *type) -{ - a = soap_inint(soap, tag, a, type, SOAP_TYPE_int); - return a; -} - -SOAP_FMAC3 int * SOAP_FMAC4 soap_new_int(struct soap *soap, int n) -{ - int *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(int))); - for (int *p = a; p && n--; ++p) - soap_default_int(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_int(struct soap *soap, const int *a, const char *tag, const char *type) -{ - if (soap_out_int(soap, tag ? tag : "int", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int * SOAP_FMAC4 soap_get_int(struct soap *soap, int *p, const char *tag, const char *type) -{ - if ((p = soap_in_int(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_float(struct soap *soap, const char *tag, int id, const float *a, const char *type) -{ - return soap_outfloat(soap, tag, id, a, type, SOAP_TYPE_float); -} - -SOAP_FMAC3 float * SOAP_FMAC4 soap_in_float(struct soap *soap, const char *tag, float *a, const char *type) -{ - a = soap_infloat(soap, tag, a, type, SOAP_TYPE_float); - return a; -} - -SOAP_FMAC3 float * SOAP_FMAC4 soap_new_float(struct soap *soap, int n) -{ - float *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(float))); - for (float *p = a; p && n--; ++p) - soap_default_float(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_float(struct soap *soap, const float *a, const char *tag, const char *type) -{ - if (soap_out_float(soap, tag ? tag : "float", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 float * SOAP_FMAC4 soap_get_float(struct soap *soap, float *p, const char *tag, const char *type) -{ - if ((p = soap_in_float(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_double(struct soap *soap, const char *tag, int id, const double *a, const char *type) -{ - return soap_outdouble(soap, tag, id, a, type, SOAP_TYPE_double); -} - -SOAP_FMAC3 double * SOAP_FMAC4 soap_in_double(struct soap *soap, const char *tag, double *a, const char *type) -{ - a = soap_indouble(soap, tag, a, type, SOAP_TYPE_double); - return a; -} - -SOAP_FMAC3 double * SOAP_FMAC4 soap_new_double(struct soap *soap, int n) -{ - double *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(double))); - for (double *p = a; p && n--; ++p) - soap_default_double(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_double(struct soap *soap, const double *a, const char *tag, const char *type) -{ - if (soap_out_double(soap, tag ? tag : "double", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 double * SOAP_FMAC4 soap_get_double(struct soap *soap, double *p, const char *tag, const char *type) -{ - if ((p = soap_in_double(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_unsignedByte(struct soap *soap, const char *tag, int id, const unsigned char *a, const char *type) -{ - return soap_outunsignedByte(soap, tag, id, a, type, SOAP_TYPE_unsignedByte); -} - -SOAP_FMAC3 unsigned char * SOAP_FMAC4 soap_in_unsignedByte(struct soap *soap, const char *tag, unsigned char *a, const char *type) -{ - a = soap_inunsignedByte(soap, tag, a, type, SOAP_TYPE_unsignedByte); - return a; -} - -SOAP_FMAC3 unsigned char * SOAP_FMAC4 soap_new_unsignedByte(struct soap *soap, int n) -{ - unsigned char *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(unsigned char))); - for (unsigned char *p = a; p && n--; ++p) - soap_default_unsignedByte(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_unsignedByte(struct soap *soap, const unsigned char *a, const char *tag, const char *type) -{ - if (soap_out_unsignedByte(soap, tag ? tag : "unsignedByte", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 unsigned char * SOAP_FMAC4 soap_get_unsignedByte(struct soap *soap, unsigned char *p, const char *tag, const char *type) -{ - if ((p = soap_in_unsignedByte(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__MetadataVersion(struct soap *soap, const unsigned int *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__MetadataVersion(soap, tag ? tag : "wsdd:MetadataVersion", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__ReplyAfter(struct soap *soap, const unsigned int *a, const char *tag, const char *type) -{ - if (soap_out__wsa__ReplyAfter(soap, tag ? tag : "wsa:ReplyAfter", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_unsignedInt(struct soap *soap, const char *tag, int id, const unsigned int *a, const char *type) -{ - return soap_outunsignedInt(soap, tag, id, a, type, SOAP_TYPE_unsignedInt); -} - -SOAP_FMAC3 unsigned int * SOAP_FMAC4 soap_in_unsignedInt(struct soap *soap, const char *tag, unsigned int *a, const char *type) -{ - a = soap_inunsignedInt(soap, tag, a, type, SOAP_TYPE_unsignedInt); - return a; -} - -SOAP_FMAC3 unsigned int * SOAP_FMAC4 soap_new_unsignedInt(struct soap *soap, int n) -{ - unsigned int *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(unsigned int))); - for (unsigned int *p = a; p && n--; ++p) - soap_default_unsignedInt(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_unsignedInt(struct soap *soap, const unsigned int *a, const char *tag, const char *type) -{ - if (soap_out_unsignedInt(soap, tag ? tag : "unsignedInt", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 unsigned int * SOAP_FMAC4 soap_get_unsignedInt(struct soap *soap, unsigned int *p, const char *tag, const char *type) -{ - if ((p = soap_in_unsignedInt(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__RetryAfter(struct soap *soap, const ULONG64 *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__RetryAfter(soap, tag ? tag : "wsa5:RetryAfter", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ULONG64(struct soap *soap, const char *tag, int id, const ULONG64 *a, const char *type) -{ - return soap_outULONG64(soap, tag, id, a, type, SOAP_TYPE_ULONG64); -} - -SOAP_FMAC3 ULONG64 * SOAP_FMAC4 soap_in_ULONG64(struct soap *soap, const char *tag, ULONG64 *a, const char *type) -{ - a = soap_inULONG64(soap, tag, a, type, SOAP_TYPE_ULONG64); - return a; -} - -SOAP_FMAC3 ULONG64 * SOAP_FMAC4 soap_new_ULONG64(struct soap *soap, int n) -{ - ULONG64 *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(ULONG64))); - for (ULONG64 *p = a; p && n--; ++p) - soap_default_ULONG64(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ULONG64(struct soap *soap, const ULONG64 *a, const char *tag, const char *type) -{ - if (soap_out_ULONG64(soap, tag ? tag : "unsignedLong", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 ULONG64 * SOAP_FMAC4 soap_get_ULONG64(struct soap *soap, ULONG64 *p, const char *tag, const char *type) -{ - if ((p = soap_in_ULONG64(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_timg__ImagingPresetType[] = -{ { (LONG64)timg__ImagingPresetType__Custom, "Custom" }, - { (LONG64)timg__ImagingPresetType__ClearWeather, "ClearWeather" }, - { (LONG64)timg__ImagingPresetType__Cloudy, "Cloudy" }, - { (LONG64)timg__ImagingPresetType__Fog, "Fog" }, - { (LONG64)timg__ImagingPresetType__Rain, "Rain" }, - { (LONG64)timg__ImagingPresetType__Snowing, "Snowing" }, - { (LONG64)timg__ImagingPresetType__Snow, "Snow" }, - { (LONG64)timg__ImagingPresetType__WDR, "WDR" }, - { (LONG64)timg__ImagingPresetType__Shade, "Shade" }, - { (LONG64)timg__ImagingPresetType__Night, "Night" }, - { (LONG64)timg__ImagingPresetType__Indoor, "Indoor" }, - { (LONG64)timg__ImagingPresetType__Fluorescent, "Fluorescent" }, - { (LONG64)timg__ImagingPresetType__Incandescent, "Incandescent" }, - { (LONG64)timg__ImagingPresetType__Sodium_x0028Natrium_x0029, "Sodium(Natrium)" }, - { (LONG64)timg__ImagingPresetType__Sunrise_x0028Horizon_x0029, "Sunrise(Horizon)" }, - { (LONG64)timg__ImagingPresetType__Sunset_x0028Rear_x0029, "Sunset(Rear)" }, - { (LONG64)timg__ImagingPresetType__ExtremeHot, "ExtremeHot" }, - { (LONG64)timg__ImagingPresetType__ExtremeCold, "ExtremeCold" }, - { (LONG64)timg__ImagingPresetType__Underwater, "Underwater" }, - { (LONG64)timg__ImagingPresetType__CloseUp, "CloseUp" }, - { (LONG64)timg__ImagingPresetType__Motion, "Motion" }, - { (LONG64)timg__ImagingPresetType__FlickerFree50, "FlickerFree50" }, - { (LONG64)timg__ImagingPresetType__FlickerFree60, "FlickerFree60" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_timg__ImagingPresetType2s(struct soap *soap, enum timg__ImagingPresetType n) -{ - const char *s = soap_code_str(soap_codes_timg__ImagingPresetType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__ImagingPresetType(struct soap *soap, const char *tag, int id, const enum timg__ImagingPresetType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_timg__ImagingPresetType), type) || soap_send(soap, soap_timg__ImagingPresetType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2timg__ImagingPresetType(struct soap *soap, const char *s, enum timg__ImagingPresetType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_timg__ImagingPresetType, s); - if (map) - *a = (enum timg__ImagingPresetType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 22) - return soap->error = SOAP_TYPE; - *a = (enum timg__ImagingPresetType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum timg__ImagingPresetType * SOAP_FMAC4 soap_in_timg__ImagingPresetType(struct soap *soap, const char *tag, enum timg__ImagingPresetType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum timg__ImagingPresetType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_timg__ImagingPresetType, sizeof(enum timg__ImagingPresetType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2timg__ImagingPresetType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum timg__ImagingPresetType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_timg__ImagingPresetType, SOAP_TYPE_timg__ImagingPresetType, sizeof(enum timg__ImagingPresetType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum timg__ImagingPresetType * SOAP_FMAC4 soap_new_timg__ImagingPresetType(struct soap *soap, int n) -{ - enum timg__ImagingPresetType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum timg__ImagingPresetType))); - for (enum timg__ImagingPresetType *p = a; p && n--; ++p) - soap_default_timg__ImagingPresetType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_timg__ImagingPresetType(struct soap *soap, const enum timg__ImagingPresetType *a, const char *tag, const char *type) -{ - if (soap_out_timg__ImagingPresetType(soap, tag ? tag : "timg:ImagingPresetType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum timg__ImagingPresetType * SOAP_FMAC4 soap_get_timg__ImagingPresetType(struct soap *soap, enum timg__ImagingPresetType *p, const char *tag, const char *type) -{ - if ((p = soap_in_timg__ImagingPresetType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tds__StorageType[] = -{ { (LONG64)tds__StorageType__NFS, "NFS" }, - { (LONG64)tds__StorageType__CIFS, "CIFS" }, - { (LONG64)tds__StorageType__CDMI, "CDMI" }, - { (LONG64)tds__StorageType__FTP, "FTP" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tds__StorageType2s(struct soap *soap, enum tds__StorageType n) -{ - const char *s = soap_code_str(soap_codes_tds__StorageType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageType(struct soap *soap, const char *tag, int id, const enum tds__StorageType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__StorageType), type) || soap_send(soap, soap_tds__StorageType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tds__StorageType(struct soap *soap, const char *s, enum tds__StorageType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tds__StorageType, s); - if (map) - *a = (enum tds__StorageType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tds__StorageType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tds__StorageType * SOAP_FMAC4 soap_in_tds__StorageType(struct soap *soap, const char *tag, enum tds__StorageType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tds__StorageType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__StorageType, sizeof(enum tds__StorageType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tds__StorageType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tds__StorageType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__StorageType, SOAP_TYPE_tds__StorageType, sizeof(enum tds__StorageType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tds__StorageType * SOAP_FMAC4 soap_new_tds__StorageType(struct soap *soap, int n) -{ - enum tds__StorageType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tds__StorageType))); - for (enum tds__StorageType *p = a; p && n--; ++p) - soap_default_tds__StorageType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tds__StorageType(struct soap *soap, const enum tds__StorageType *a, const char *tag, const char *type) -{ - if (soap_out_tds__StorageType(soap, tag ? tag : "tds:StorageType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tds__StorageType * SOAP_FMAC4 soap_get_tds__StorageType(struct soap *soap, enum tds__StorageType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__StorageType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tds__AutoGeoModes[] = -{ { (LONG64)tds__AutoGeoModes__Location, "Location" }, - { (LONG64)tds__AutoGeoModes__Heading, "Heading" }, - { (LONG64)tds__AutoGeoModes__Leveling, "Leveling" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tds__AutoGeoModes2s(struct soap *soap, enum tds__AutoGeoModes n) -{ - const char *s = soap_code_str(soap_codes_tds__AutoGeoModes, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__AutoGeoModes(struct soap *soap, const char *tag, int id, const enum tds__AutoGeoModes *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__AutoGeoModes), type) || soap_send(soap, soap_tds__AutoGeoModes2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tds__AutoGeoModes(struct soap *soap, const char *s, enum tds__AutoGeoModes *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tds__AutoGeoModes, s); - if (map) - *a = (enum tds__AutoGeoModes)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tds__AutoGeoModes)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tds__AutoGeoModes * SOAP_FMAC4 soap_in_tds__AutoGeoModes(struct soap *soap, const char *tag, enum tds__AutoGeoModes *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tds__AutoGeoModes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__AutoGeoModes, sizeof(enum tds__AutoGeoModes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tds__AutoGeoModes(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tds__AutoGeoModes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__AutoGeoModes, SOAP_TYPE_tds__AutoGeoModes, sizeof(enum tds__AutoGeoModes), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tds__AutoGeoModes * SOAP_FMAC4 soap_new_tds__AutoGeoModes(struct soap *soap, int n) -{ - enum tds__AutoGeoModes *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tds__AutoGeoModes))); - for (enum tds__AutoGeoModes *p = a; p && n--; ++p) - soap_default_tds__AutoGeoModes(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tds__AutoGeoModes(struct soap *soap, const enum tds__AutoGeoModes *a, const char *tag, const char *type) -{ - if (soap_out_tds__AutoGeoModes(soap, tag ? tag : "tds:AutoGeoModes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tds__AutoGeoModes * SOAP_FMAC4 soap_get_tds__AutoGeoModes(struct soap *soap, enum tds__AutoGeoModes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__AutoGeoModes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tmd__ParityBit[] = -{ { (LONG64)tmd__ParityBit__None, "None" }, - { (LONG64)tmd__ParityBit__Even, "Even" }, - { (LONG64)tmd__ParityBit__Odd, "Odd" }, - { (LONG64)tmd__ParityBit__Mark, "Mark" }, - { (LONG64)tmd__ParityBit__Space, "Space" }, - { (LONG64)tmd__ParityBit__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tmd__ParityBit2s(struct soap *soap, enum tmd__ParityBit n) -{ - const char *s = soap_code_str(soap_codes_tmd__ParityBit, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__ParityBit(struct soap *soap, const char *tag, int id, const enum tmd__ParityBit *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__ParityBit), type) || soap_send(soap, soap_tmd__ParityBit2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tmd__ParityBit(struct soap *soap, const char *s, enum tmd__ParityBit *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tmd__ParityBit, s); - if (map) - *a = (enum tmd__ParityBit)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 5) - return soap->error = SOAP_TYPE; - *a = (enum tmd__ParityBit)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tmd__ParityBit * SOAP_FMAC4 soap_in_tmd__ParityBit(struct soap *soap, const char *tag, enum tmd__ParityBit *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tmd__ParityBit*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__ParityBit, sizeof(enum tmd__ParityBit), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tmd__ParityBit(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tmd__ParityBit *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__ParityBit, SOAP_TYPE_tmd__ParityBit, sizeof(enum tmd__ParityBit), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tmd__ParityBit * SOAP_FMAC4 soap_new_tmd__ParityBit(struct soap *soap, int n) -{ - enum tmd__ParityBit *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tmd__ParityBit))); - for (enum tmd__ParityBit *p = a; p && n--; ++p) - soap_default_tmd__ParityBit(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tmd__ParityBit(struct soap *soap, const enum tmd__ParityBit *a, const char *tag, const char *type) -{ - if (soap_out_tmd__ParityBit(soap, tag ? tag : "tmd:ParityBit", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tmd__ParityBit * SOAP_FMAC4 soap_get_tmd__ParityBit(struct soap *soap, enum tmd__ParityBit *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__ParityBit(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tmd__SerialPortType[] = -{ { (LONG64)tmd__SerialPortType__RS232, "RS232" }, - { (LONG64)tmd__SerialPortType__RS422HalfDuplex, "RS422HalfDuplex" }, - { (LONG64)tmd__SerialPortType__RS422FullDuplex, "RS422FullDuplex" }, - { (LONG64)tmd__SerialPortType__RS485HalfDuplex, "RS485HalfDuplex" }, - { (LONG64)tmd__SerialPortType__RS485FullDuplex, "RS485FullDuplex" }, - { (LONG64)tmd__SerialPortType__Generic, "Generic" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tmd__SerialPortType2s(struct soap *soap, enum tmd__SerialPortType n) -{ - const char *s = soap_code_str(soap_codes_tmd__SerialPortType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortType(struct soap *soap, const char *tag, int id, const enum tmd__SerialPortType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__SerialPortType), type) || soap_send(soap, soap_tmd__SerialPortType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tmd__SerialPortType(struct soap *soap, const char *s, enum tmd__SerialPortType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tmd__SerialPortType, s); - if (map) - *a = (enum tmd__SerialPortType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 5) - return soap->error = SOAP_TYPE; - *a = (enum tmd__SerialPortType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tmd__SerialPortType * SOAP_FMAC4 soap_in_tmd__SerialPortType(struct soap *soap, const char *tag, enum tmd__SerialPortType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tmd__SerialPortType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__SerialPortType, sizeof(enum tmd__SerialPortType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tmd__SerialPortType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tmd__SerialPortType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__SerialPortType, SOAP_TYPE_tmd__SerialPortType, sizeof(enum tmd__SerialPortType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tmd__SerialPortType * SOAP_FMAC4 soap_new_tmd__SerialPortType(struct soap *soap, int n) -{ - enum tmd__SerialPortType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tmd__SerialPortType))); - for (enum tmd__SerialPortType *p = a; p && n--; ++p) - soap_default_tmd__SerialPortType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tmd__SerialPortType(struct soap *soap, const enum tmd__SerialPortType *a, const char *tag, const char *type) -{ - if (soap_out_tmd__SerialPortType(soap, tag ? tag : "tmd:SerialPortType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tmd__SerialPortType * SOAP_FMAC4 soap_get_tmd__SerialPortType(struct soap *soap, enum tmd__SerialPortType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__SerialPortType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__OSDType[] = -{ { (LONG64)tt__OSDType__Text, "Text" }, - { (LONG64)tt__OSDType__Image, "Image" }, - { (LONG64)tt__OSDType__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__OSDType2s(struct soap *soap, enum tt__OSDType n) -{ - const char *s = soap_code_str(soap_codes_tt__OSDType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDType(struct soap *soap, const char *tag, int id, const enum tt__OSDType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDType), type) || soap_send(soap, soap_tt__OSDType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__OSDType(struct soap *soap, const char *s, enum tt__OSDType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__OSDType, s); - if (map) - *a = (enum tt__OSDType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__OSDType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__OSDType * SOAP_FMAC4 soap_in_tt__OSDType(struct soap *soap, const char *tag, enum tt__OSDType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__OSDType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDType, sizeof(enum tt__OSDType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__OSDType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__OSDType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDType, SOAP_TYPE_tt__OSDType, sizeof(enum tt__OSDType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__OSDType * SOAP_FMAC4 soap_new_tt__OSDType(struct soap *soap, int n) -{ - enum tt__OSDType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__OSDType))); - for (enum tt__OSDType *p = a; p && n--; ++p) - soap_default_tt__OSDType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__OSDType(struct soap *soap, const enum tt__OSDType *a, const char *tag, const char *type) -{ - if (soap_out_tt__OSDType(soap, tag ? tag : "tt:OSDType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__OSDType * SOAP_FMAC4 soap_get_tt__OSDType(struct soap *soap, enum tt__OSDType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ModeOfOperation[] = -{ { (LONG64)tt__ModeOfOperation__Idle, "Idle" }, - { (LONG64)tt__ModeOfOperation__Active, "Active" }, - { (LONG64)tt__ModeOfOperation__Unknown, "Unknown" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ModeOfOperation2s(struct soap *soap, enum tt__ModeOfOperation n) -{ - const char *s = soap_code_str(soap_codes_tt__ModeOfOperation, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ModeOfOperation(struct soap *soap, const char *tag, int id, const enum tt__ModeOfOperation *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ModeOfOperation), type) || soap_send(soap, soap_tt__ModeOfOperation2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ModeOfOperation(struct soap *soap, const char *s, enum tt__ModeOfOperation *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ModeOfOperation, s); - if (map) - *a = (enum tt__ModeOfOperation)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__ModeOfOperation)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ModeOfOperation * SOAP_FMAC4 soap_in_tt__ModeOfOperation(struct soap *soap, const char *tag, enum tt__ModeOfOperation *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ModeOfOperation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ModeOfOperation, sizeof(enum tt__ModeOfOperation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ModeOfOperation(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ModeOfOperation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ModeOfOperation, SOAP_TYPE_tt__ModeOfOperation, sizeof(enum tt__ModeOfOperation), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ModeOfOperation * SOAP_FMAC4 soap_new_tt__ModeOfOperation(struct soap *soap, int n) -{ - enum tt__ModeOfOperation *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ModeOfOperation))); - for (enum tt__ModeOfOperation *p = a; p && n--; ++p) - soap_default_tt__ModeOfOperation(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ModeOfOperation(struct soap *soap, const enum tt__ModeOfOperation *a, const char *tag, const char *type) -{ - if (soap_out_tt__ModeOfOperation(soap, tag ? tag : "tt:ModeOfOperation", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ModeOfOperation * SOAP_FMAC4 soap_get_tt__ModeOfOperation(struct soap *soap, enum tt__ModeOfOperation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ModeOfOperation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__TrackType[] = -{ { (LONG64)tt__TrackType__Video, "Video" }, - { (LONG64)tt__TrackType__Audio, "Audio" }, - { (LONG64)tt__TrackType__Metadata, "Metadata" }, - { (LONG64)tt__TrackType__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__TrackType2s(struct soap *soap, enum tt__TrackType n) -{ - const char *s = soap_code_str(soap_codes_tt__TrackType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackType(struct soap *soap, const char *tag, int id, const enum tt__TrackType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TrackType), type) || soap_send(soap, soap_tt__TrackType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__TrackType(struct soap *soap, const char *s, enum tt__TrackType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__TrackType, s); - if (map) - *a = (enum tt__TrackType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__TrackType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__TrackType * SOAP_FMAC4 soap_in_tt__TrackType(struct soap *soap, const char *tag, enum tt__TrackType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__TrackType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TrackType, sizeof(enum tt__TrackType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__TrackType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__TrackType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TrackType, SOAP_TYPE_tt__TrackType, sizeof(enum tt__TrackType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__TrackType * SOAP_FMAC4 soap_new_tt__TrackType(struct soap *soap, int n) -{ - enum tt__TrackType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__TrackType))); - for (enum tt__TrackType *p = a; p && n--; ++p) - soap_default_tt__TrackType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__TrackType(struct soap *soap, const enum tt__TrackType *a, const char *tag, const char *type) -{ - if (soap_out_tt__TrackType(soap, tag ? tag : "tt:TrackType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__TrackType * SOAP_FMAC4 soap_get_tt__TrackType(struct soap *soap, enum tt__TrackType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TrackType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__RecordingStatus[] = -{ { (LONG64)tt__RecordingStatus__Initiated, "Initiated" }, - { (LONG64)tt__RecordingStatus__Recording, "Recording" }, - { (LONG64)tt__RecordingStatus__Stopped, "Stopped" }, - { (LONG64)tt__RecordingStatus__Removing, "Removing" }, - { (LONG64)tt__RecordingStatus__Removed, "Removed" }, - { (LONG64)tt__RecordingStatus__Unknown, "Unknown" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RecordingStatus2s(struct soap *soap, enum tt__RecordingStatus n) -{ - const char *s = soap_code_str(soap_codes_tt__RecordingStatus, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingStatus(struct soap *soap, const char *tag, int id, const enum tt__RecordingStatus *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingStatus), type) || soap_send(soap, soap_tt__RecordingStatus2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RecordingStatus(struct soap *soap, const char *s, enum tt__RecordingStatus *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__RecordingStatus, s); - if (map) - *a = (enum tt__RecordingStatus)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 5) - return soap->error = SOAP_TYPE; - *a = (enum tt__RecordingStatus)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__RecordingStatus * SOAP_FMAC4 soap_in_tt__RecordingStatus(struct soap *soap, const char *tag, enum tt__RecordingStatus *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__RecordingStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingStatus, sizeof(enum tt__RecordingStatus), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__RecordingStatus(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__RecordingStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingStatus, SOAP_TYPE_tt__RecordingStatus, sizeof(enum tt__RecordingStatus), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__RecordingStatus * SOAP_FMAC4 soap_new_tt__RecordingStatus(struct soap *soap, int n) -{ - enum tt__RecordingStatus *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__RecordingStatus))); - for (enum tt__RecordingStatus *p = a; p && n--; ++p) - soap_default_tt__RecordingStatus(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RecordingStatus(struct soap *soap, const enum tt__RecordingStatus *a, const char *tag, const char *type) -{ - if (soap_out_tt__RecordingStatus(soap, tag ? tag : "tt:RecordingStatus", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__RecordingStatus * SOAP_FMAC4 soap_get_tt__RecordingStatus(struct soap *soap, enum tt__RecordingStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__SearchState[] = -{ { (LONG64)tt__SearchState__Queued, "Queued" }, - { (LONG64)tt__SearchState__Searching, "Searching" }, - { (LONG64)tt__SearchState__Completed, "Completed" }, - { (LONG64)tt__SearchState__Unknown, "Unknown" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SearchState2s(struct soap *soap, enum tt__SearchState n) -{ - const char *s = soap_code_str(soap_codes_tt__SearchState, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchState(struct soap *soap, const char *tag, int id, const enum tt__SearchState *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SearchState), type) || soap_send(soap, soap_tt__SearchState2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SearchState(struct soap *soap, const char *s, enum tt__SearchState *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__SearchState, s); - if (map) - *a = (enum tt__SearchState)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__SearchState)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__SearchState * SOAP_FMAC4 soap_in_tt__SearchState(struct soap *soap, const char *tag, enum tt__SearchState *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__SearchState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SearchState, sizeof(enum tt__SearchState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__SearchState(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__SearchState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SearchState, SOAP_TYPE_tt__SearchState, sizeof(enum tt__SearchState), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__SearchState * SOAP_FMAC4 soap_new_tt__SearchState(struct soap *soap, int n) -{ - enum tt__SearchState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__SearchState))); - for (enum tt__SearchState *p = a; p && n--; ++p) - soap_default_tt__SearchState(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SearchState(struct soap *soap, const enum tt__SearchState *a, const char *tag, const char *type) -{ - if (soap_out_tt__SearchState(soap, tag ? tag : "tt:SearchState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__SearchState * SOAP_FMAC4 soap_get_tt__SearchState(struct soap *soap, enum tt__SearchState *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SearchState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ReceiverState[] = -{ { (LONG64)tt__ReceiverState__NotConnected, "NotConnected" }, - { (LONG64)tt__ReceiverState__Connecting, "Connecting" }, - { (LONG64)tt__ReceiverState__Connected, "Connected" }, - { (LONG64)tt__ReceiverState__Unknown, "Unknown" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ReceiverState2s(struct soap *soap, enum tt__ReceiverState n) -{ - const char *s = soap_code_str(soap_codes_tt__ReceiverState, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverState(struct soap *soap, const char *tag, int id, const enum tt__ReceiverState *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReceiverState), type) || soap_send(soap, soap_tt__ReceiverState2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ReceiverState(struct soap *soap, const char *s, enum tt__ReceiverState *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ReceiverState, s); - if (map) - *a = (enum tt__ReceiverState)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__ReceiverState)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ReceiverState * SOAP_FMAC4 soap_in_tt__ReceiverState(struct soap *soap, const char *tag, enum tt__ReceiverState *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ReceiverState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverState, sizeof(enum tt__ReceiverState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ReceiverState(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ReceiverState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReceiverState, SOAP_TYPE_tt__ReceiverState, sizeof(enum tt__ReceiverState), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ReceiverState * SOAP_FMAC4 soap_new_tt__ReceiverState(struct soap *soap, int n) -{ - enum tt__ReceiverState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ReceiverState))); - for (enum tt__ReceiverState *p = a; p && n--; ++p) - soap_default_tt__ReceiverState(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReceiverState(struct soap *soap, const enum tt__ReceiverState *a, const char *tag, const char *type) -{ - if (soap_out_tt__ReceiverState(soap, tag ? tag : "tt:ReceiverState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ReceiverState * SOAP_FMAC4 soap_get_tt__ReceiverState(struct soap *soap, enum tt__ReceiverState *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ReceiverMode[] = -{ { (LONG64)tt__ReceiverMode__AutoConnect, "AutoConnect" }, - { (LONG64)tt__ReceiverMode__AlwaysConnect, "AlwaysConnect" }, - { (LONG64)tt__ReceiverMode__NeverConnect, "NeverConnect" }, - { (LONG64)tt__ReceiverMode__Unknown, "Unknown" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ReceiverMode2s(struct soap *soap, enum tt__ReceiverMode n) -{ - const char *s = soap_code_str(soap_codes_tt__ReceiverMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverMode(struct soap *soap, const char *tag, int id, const enum tt__ReceiverMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReceiverMode), type) || soap_send(soap, soap_tt__ReceiverMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ReceiverMode(struct soap *soap, const char *s, enum tt__ReceiverMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ReceiverMode, s); - if (map) - *a = (enum tt__ReceiverMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__ReceiverMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ReceiverMode * SOAP_FMAC4 soap_in_tt__ReceiverMode(struct soap *soap, const char *tag, enum tt__ReceiverMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ReceiverMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverMode, sizeof(enum tt__ReceiverMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ReceiverMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ReceiverMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReceiverMode, SOAP_TYPE_tt__ReceiverMode, sizeof(enum tt__ReceiverMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ReceiverMode * SOAP_FMAC4 soap_new_tt__ReceiverMode(struct soap *soap, int n) -{ - enum tt__ReceiverMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ReceiverMode))); - for (enum tt__ReceiverMode *p = a; p && n--; ++p) - soap_default_tt__ReceiverMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReceiverMode(struct soap *soap, const enum tt__ReceiverMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__ReceiverMode(soap, tag ? tag : "tt:ReceiverMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ReceiverMode * SOAP_FMAC4 soap_get_tt__ReceiverMode(struct soap *soap, enum tt__ReceiverMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Direction[] = -{ { (LONG64)tt__Direction__Left, "Left" }, - { (LONG64)tt__Direction__Right, "Right" }, - { (LONG64)tt__Direction__Any, "Any" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Direction2s(struct soap *soap, enum tt__Direction n) -{ - const char *s = soap_code_str(soap_codes_tt__Direction, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Direction(struct soap *soap, const char *tag, int id, const enum tt__Direction *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Direction), type) || soap_send(soap, soap_tt__Direction2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Direction(struct soap *soap, const char *s, enum tt__Direction *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Direction, s); - if (map) - *a = (enum tt__Direction)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__Direction)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Direction * SOAP_FMAC4 soap_in_tt__Direction(struct soap *soap, const char *tag, enum tt__Direction *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Direction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Direction, sizeof(enum tt__Direction), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Direction(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Direction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Direction, SOAP_TYPE_tt__Direction, sizeof(enum tt__Direction), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Direction * SOAP_FMAC4 soap_new_tt__Direction(struct soap *soap, int n) -{ - enum tt__Direction *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Direction))); - for (enum tt__Direction *p = a; p && n--; ++p) - soap_default_tt__Direction(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Direction(struct soap *soap, const enum tt__Direction *a, const char *tag, const char *type) -{ - if (soap_out_tt__Direction(soap, tag ? tag : "tt:Direction", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Direction * SOAP_FMAC4 soap_get_tt__Direction(struct soap *soap, enum tt__Direction *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Direction(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__PropertyOperation[] = -{ { (LONG64)tt__PropertyOperation__Initialized, "Initialized" }, - { (LONG64)tt__PropertyOperation__Deleted, "Deleted" }, - { (LONG64)tt__PropertyOperation__Changed, "Changed" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PropertyOperation2s(struct soap *soap, enum tt__PropertyOperation n) -{ - const char *s = soap_code_str(soap_codes_tt__PropertyOperation, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PropertyOperation(struct soap *soap, const char *tag, int id, const enum tt__PropertyOperation *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PropertyOperation), type) || soap_send(soap, soap_tt__PropertyOperation2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PropertyOperation(struct soap *soap, const char *s, enum tt__PropertyOperation *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__PropertyOperation, s); - if (map) - *a = (enum tt__PropertyOperation)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__PropertyOperation)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__PropertyOperation * SOAP_FMAC4 soap_in_tt__PropertyOperation(struct soap *soap, const char *tag, enum tt__PropertyOperation *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__PropertyOperation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PropertyOperation, sizeof(enum tt__PropertyOperation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__PropertyOperation(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__PropertyOperation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PropertyOperation, SOAP_TYPE_tt__PropertyOperation, sizeof(enum tt__PropertyOperation), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__PropertyOperation * SOAP_FMAC4 soap_new_tt__PropertyOperation(struct soap *soap, int n) -{ - enum tt__PropertyOperation *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__PropertyOperation))); - for (enum tt__PropertyOperation *p = a; p && n--; ++p) - soap_default_tt__PropertyOperation(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PropertyOperation(struct soap *soap, const enum tt__PropertyOperation *a, const char *tag, const char *type) -{ - if (soap_out_tt__PropertyOperation(soap, tag ? tag : "tt:PropertyOperation", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__PropertyOperation * SOAP_FMAC4 soap_get_tt__PropertyOperation(struct soap *soap, enum tt__PropertyOperation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PropertyOperation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ImageSendingType[] = -{ { (LONG64)tt__ImageSendingType__Embedded, "Embedded" }, - { (LONG64)tt__ImageSendingType__LocalStorage, "LocalStorage" }, - { (LONG64)tt__ImageSendingType__RemoteStorage, "RemoteStorage" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ImageSendingType2s(struct soap *soap, enum tt__ImageSendingType n) -{ - const char *s = soap_code_str(soap_codes_tt__ImageSendingType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageSendingType(struct soap *soap, const char *tag, int id, const enum tt__ImageSendingType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImageSendingType), type) || soap_send(soap, soap_tt__ImageSendingType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ImageSendingType(struct soap *soap, const char *s, enum tt__ImageSendingType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ImageSendingType, s); - if (map) - *a = (enum tt__ImageSendingType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__ImageSendingType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ImageSendingType * SOAP_FMAC4 soap_in_tt__ImageSendingType(struct soap *soap, const char *tag, enum tt__ImageSendingType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ImageSendingType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageSendingType, sizeof(enum tt__ImageSendingType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ImageSendingType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ImageSendingType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImageSendingType, SOAP_TYPE_tt__ImageSendingType, sizeof(enum tt__ImageSendingType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ImageSendingType * SOAP_FMAC4 soap_new_tt__ImageSendingType(struct soap *soap, int n) -{ - enum tt__ImageSendingType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ImageSendingType))); - for (enum tt__ImageSendingType *p = a; p && n--; ++p) - soap_default_tt__ImageSendingType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ImageSendingType(struct soap *soap, const enum tt__ImageSendingType *a, const char *tag, const char *type) -{ - if (soap_out_tt__ImageSendingType(soap, tag ? tag : "tt:ImageSendingType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ImageSendingType * SOAP_FMAC4 soap_get_tt__ImageSendingType(struct soap *soap, enum tt__ImageSendingType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageSendingType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__DefoggingMode[] = -{ { (LONG64)tt__DefoggingMode__OFF, "OFF" }, - { (LONG64)tt__DefoggingMode__ON, "ON" }, - { (LONG64)tt__DefoggingMode__AUTO, "AUTO" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DefoggingMode2s(struct soap *soap, enum tt__DefoggingMode n) -{ - const char *s = soap_code_str(soap_codes_tt__DefoggingMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingMode(struct soap *soap, const char *tag, int id, const enum tt__DefoggingMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DefoggingMode), type) || soap_send(soap, soap_tt__DefoggingMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DefoggingMode(struct soap *soap, const char *s, enum tt__DefoggingMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__DefoggingMode, s); - if (map) - *a = (enum tt__DefoggingMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__DefoggingMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__DefoggingMode * SOAP_FMAC4 soap_in_tt__DefoggingMode(struct soap *soap, const char *tag, enum tt__DefoggingMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__DefoggingMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DefoggingMode, sizeof(enum tt__DefoggingMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__DefoggingMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__DefoggingMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DefoggingMode, SOAP_TYPE_tt__DefoggingMode, sizeof(enum tt__DefoggingMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__DefoggingMode * SOAP_FMAC4 soap_new_tt__DefoggingMode(struct soap *soap, int n) -{ - enum tt__DefoggingMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__DefoggingMode))); - for (enum tt__DefoggingMode *p = a; p && n--; ++p) - soap_default_tt__DefoggingMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DefoggingMode(struct soap *soap, const enum tt__DefoggingMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__DefoggingMode(soap, tag ? tag : "tt:DefoggingMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__DefoggingMode * SOAP_FMAC4 soap_get_tt__DefoggingMode(struct soap *soap, enum tt__DefoggingMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DefoggingMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ToneCompensationMode[] = -{ { (LONG64)tt__ToneCompensationMode__OFF, "OFF" }, - { (LONG64)tt__ToneCompensationMode__ON, "ON" }, - { (LONG64)tt__ToneCompensationMode__AUTO, "AUTO" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ToneCompensationMode2s(struct soap *soap, enum tt__ToneCompensationMode n) -{ - const char *s = soap_code_str(soap_codes_tt__ToneCompensationMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationMode(struct soap *soap, const char *tag, int id, const enum tt__ToneCompensationMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ToneCompensationMode), type) || soap_send(soap, soap_tt__ToneCompensationMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ToneCompensationMode(struct soap *soap, const char *s, enum tt__ToneCompensationMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ToneCompensationMode, s); - if (map) - *a = (enum tt__ToneCompensationMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__ToneCompensationMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ToneCompensationMode * SOAP_FMAC4 soap_in_tt__ToneCompensationMode(struct soap *soap, const char *tag, enum tt__ToneCompensationMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ToneCompensationMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ToneCompensationMode, sizeof(enum tt__ToneCompensationMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ToneCompensationMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ToneCompensationMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ToneCompensationMode, SOAP_TYPE_tt__ToneCompensationMode, sizeof(enum tt__ToneCompensationMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ToneCompensationMode * SOAP_FMAC4 soap_new_tt__ToneCompensationMode(struct soap *soap, int n) -{ - enum tt__ToneCompensationMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ToneCompensationMode))); - for (enum tt__ToneCompensationMode *p = a; p && n--; ++p) - soap_default_tt__ToneCompensationMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ToneCompensationMode(struct soap *soap, const enum tt__ToneCompensationMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__ToneCompensationMode(soap, tag ? tag : "tt:ToneCompensationMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ToneCompensationMode * SOAP_FMAC4 soap_get_tt__ToneCompensationMode(struct soap *soap, enum tt__ToneCompensationMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ToneCompensationMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__IrCutFilterAutoBoundaryType[] = -{ { (LONG64)tt__IrCutFilterAutoBoundaryType__Common, "Common" }, - { (LONG64)tt__IrCutFilterAutoBoundaryType__ToOn, "ToOn" }, - { (LONG64)tt__IrCutFilterAutoBoundaryType__ToOff, "ToOff" }, - { (LONG64)tt__IrCutFilterAutoBoundaryType__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IrCutFilterAutoBoundaryType2s(struct soap *soap, enum tt__IrCutFilterAutoBoundaryType n) -{ - const char *s = soap_code_str(soap_codes_tt__IrCutFilterAutoBoundaryType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoBoundaryType(struct soap *soap, const char *tag, int id, const enum tt__IrCutFilterAutoBoundaryType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IrCutFilterAutoBoundaryType), type) || soap_send(soap, soap_tt__IrCutFilterAutoBoundaryType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IrCutFilterAutoBoundaryType(struct soap *soap, const char *s, enum tt__IrCutFilterAutoBoundaryType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__IrCutFilterAutoBoundaryType, s); - if (map) - *a = (enum tt__IrCutFilterAutoBoundaryType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__IrCutFilterAutoBoundaryType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__IrCutFilterAutoBoundaryType * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoBoundaryType(struct soap *soap, const char *tag, enum tt__IrCutFilterAutoBoundaryType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__IrCutFilterAutoBoundaryType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterAutoBoundaryType, sizeof(enum tt__IrCutFilterAutoBoundaryType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__IrCutFilterAutoBoundaryType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__IrCutFilterAutoBoundaryType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IrCutFilterAutoBoundaryType, SOAP_TYPE_tt__IrCutFilterAutoBoundaryType, sizeof(enum tt__IrCutFilterAutoBoundaryType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__IrCutFilterAutoBoundaryType * SOAP_FMAC4 soap_new_tt__IrCutFilterAutoBoundaryType(struct soap *soap, int n) -{ - enum tt__IrCutFilterAutoBoundaryType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__IrCutFilterAutoBoundaryType))); - for (enum tt__IrCutFilterAutoBoundaryType *p = a; p && n--; ++p) - soap_default_tt__IrCutFilterAutoBoundaryType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IrCutFilterAutoBoundaryType(struct soap *soap, const enum tt__IrCutFilterAutoBoundaryType *a, const char *tag, const char *type) -{ - if (soap_out_tt__IrCutFilterAutoBoundaryType(soap, tag ? tag : "tt:IrCutFilterAutoBoundaryType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__IrCutFilterAutoBoundaryType * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoBoundaryType(struct soap *soap, enum tt__IrCutFilterAutoBoundaryType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterAutoBoundaryType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ImageStabilizationMode[] = -{ { (LONG64)tt__ImageStabilizationMode__OFF, "OFF" }, - { (LONG64)tt__ImageStabilizationMode__ON, "ON" }, - { (LONG64)tt__ImageStabilizationMode__AUTO, "AUTO" }, - { (LONG64)tt__ImageStabilizationMode__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ImageStabilizationMode2s(struct soap *soap, enum tt__ImageStabilizationMode n) -{ - const char *s = soap_code_str(soap_codes_tt__ImageStabilizationMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationMode(struct soap *soap, const char *tag, int id, const enum tt__ImageStabilizationMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImageStabilizationMode), type) || soap_send(soap, soap_tt__ImageStabilizationMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ImageStabilizationMode(struct soap *soap, const char *s, enum tt__ImageStabilizationMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ImageStabilizationMode, s); - if (map) - *a = (enum tt__ImageStabilizationMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__ImageStabilizationMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ImageStabilizationMode * SOAP_FMAC4 soap_in_tt__ImageStabilizationMode(struct soap *soap, const char *tag, enum tt__ImageStabilizationMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ImageStabilizationMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageStabilizationMode, sizeof(enum tt__ImageStabilizationMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ImageStabilizationMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ImageStabilizationMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImageStabilizationMode, SOAP_TYPE_tt__ImageStabilizationMode, sizeof(enum tt__ImageStabilizationMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ImageStabilizationMode * SOAP_FMAC4 soap_new_tt__ImageStabilizationMode(struct soap *soap, int n) -{ - enum tt__ImageStabilizationMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ImageStabilizationMode))); - for (enum tt__ImageStabilizationMode *p = a; p && n--; ++p) - soap_default_tt__ImageStabilizationMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ImageStabilizationMode(struct soap *soap, const enum tt__ImageStabilizationMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__ImageStabilizationMode(soap, tag ? tag : "tt:ImageStabilizationMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ImageStabilizationMode * SOAP_FMAC4 soap_get_tt__ImageStabilizationMode(struct soap *soap, enum tt__ImageStabilizationMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageStabilizationMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__IrCutFilterMode[] = -{ { (LONG64)tt__IrCutFilterMode__ON, "ON" }, - { (LONG64)tt__IrCutFilterMode__OFF, "OFF" }, - { (LONG64)tt__IrCutFilterMode__AUTO, "AUTO" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IrCutFilterMode2s(struct soap *soap, enum tt__IrCutFilterMode n) -{ - const char *s = soap_code_str(soap_codes_tt__IrCutFilterMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterMode(struct soap *soap, const char *tag, int id, const enum tt__IrCutFilterMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IrCutFilterMode), type) || soap_send(soap, soap_tt__IrCutFilterMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IrCutFilterMode(struct soap *soap, const char *s, enum tt__IrCutFilterMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__IrCutFilterMode, s); - if (map) - *a = (enum tt__IrCutFilterMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__IrCutFilterMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__IrCutFilterMode * SOAP_FMAC4 soap_in_tt__IrCutFilterMode(struct soap *soap, const char *tag, enum tt__IrCutFilterMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__IrCutFilterMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterMode, sizeof(enum tt__IrCutFilterMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__IrCutFilterMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__IrCutFilterMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IrCutFilterMode, SOAP_TYPE_tt__IrCutFilterMode, sizeof(enum tt__IrCutFilterMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__IrCutFilterMode * SOAP_FMAC4 soap_new_tt__IrCutFilterMode(struct soap *soap, int n) -{ - enum tt__IrCutFilterMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__IrCutFilterMode))); - for (enum tt__IrCutFilterMode *p = a; p && n--; ++p) - soap_default_tt__IrCutFilterMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IrCutFilterMode(struct soap *soap, const enum tt__IrCutFilterMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__IrCutFilterMode(soap, tag ? tag : "tt:IrCutFilterMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__IrCutFilterMode * SOAP_FMAC4 soap_get_tt__IrCutFilterMode(struct soap *soap, enum tt__IrCutFilterMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__WhiteBalanceMode[] = -{ { (LONG64)tt__WhiteBalanceMode__AUTO, "AUTO" }, - { (LONG64)tt__WhiteBalanceMode__MANUAL, "MANUAL" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__WhiteBalanceMode2s(struct soap *soap, enum tt__WhiteBalanceMode n) -{ - const char *s = soap_code_str(soap_codes_tt__WhiteBalanceMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceMode(struct soap *soap, const char *tag, int id, const enum tt__WhiteBalanceMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WhiteBalanceMode), type) || soap_send(soap, soap_tt__WhiteBalanceMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__WhiteBalanceMode(struct soap *soap, const char *s, enum tt__WhiteBalanceMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__WhiteBalanceMode, s); - if (map) - *a = (enum tt__WhiteBalanceMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__WhiteBalanceMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__WhiteBalanceMode * SOAP_FMAC4 soap_in_tt__WhiteBalanceMode(struct soap *soap, const char *tag, enum tt__WhiteBalanceMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__WhiteBalanceMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalanceMode, sizeof(enum tt__WhiteBalanceMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__WhiteBalanceMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__WhiteBalanceMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WhiteBalanceMode, SOAP_TYPE_tt__WhiteBalanceMode, sizeof(enum tt__WhiteBalanceMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__WhiteBalanceMode * SOAP_FMAC4 soap_new_tt__WhiteBalanceMode(struct soap *soap, int n) -{ - enum tt__WhiteBalanceMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__WhiteBalanceMode))); - for (enum tt__WhiteBalanceMode *p = a; p && n--; ++p) - soap_default_tt__WhiteBalanceMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__WhiteBalanceMode(struct soap *soap, const enum tt__WhiteBalanceMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__WhiteBalanceMode(soap, tag ? tag : "tt:WhiteBalanceMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__WhiteBalanceMode * SOAP_FMAC4 soap_get_tt__WhiteBalanceMode(struct soap *soap, enum tt__WhiteBalanceMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalanceMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Enabled[] = -{ { (LONG64)tt__Enabled__ENABLED, "ENABLED" }, - { (LONG64)tt__Enabled__DISABLED, "DISABLED" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Enabled2s(struct soap *soap, enum tt__Enabled n) -{ - const char *s = soap_code_str(soap_codes_tt__Enabled, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Enabled(struct soap *soap, const char *tag, int id, const enum tt__Enabled *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Enabled), type) || soap_send(soap, soap_tt__Enabled2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Enabled(struct soap *soap, const char *s, enum tt__Enabled *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Enabled, s); - if (map) - *a = (enum tt__Enabled)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__Enabled)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Enabled * SOAP_FMAC4 soap_in_tt__Enabled(struct soap *soap, const char *tag, enum tt__Enabled *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Enabled*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Enabled, sizeof(enum tt__Enabled), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Enabled(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Enabled *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Enabled, SOAP_TYPE_tt__Enabled, sizeof(enum tt__Enabled), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Enabled * SOAP_FMAC4 soap_new_tt__Enabled(struct soap *soap, int n) -{ - enum tt__Enabled *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Enabled))); - for (enum tt__Enabled *p = a; p && n--; ++p) - soap_default_tt__Enabled(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Enabled(struct soap *soap, const enum tt__Enabled *a, const char *tag, const char *type) -{ - if (soap_out_tt__Enabled(soap, tag ? tag : "tt:Enabled", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Enabled * SOAP_FMAC4 soap_get_tt__Enabled(struct soap *soap, enum tt__Enabled *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Enabled(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ExposureMode[] = -{ { (LONG64)tt__ExposureMode__AUTO, "AUTO" }, - { (LONG64)tt__ExposureMode__MANUAL, "MANUAL" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ExposureMode2s(struct soap *soap, enum tt__ExposureMode n) -{ - const char *s = soap_code_str(soap_codes_tt__ExposureMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureMode(struct soap *soap, const char *tag, int id, const enum tt__ExposureMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ExposureMode), type) || soap_send(soap, soap_tt__ExposureMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ExposureMode(struct soap *soap, const char *s, enum tt__ExposureMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ExposureMode, s); - if (map) - *a = (enum tt__ExposureMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__ExposureMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ExposureMode * SOAP_FMAC4 soap_in_tt__ExposureMode(struct soap *soap, const char *tag, enum tt__ExposureMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ExposureMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ExposureMode, sizeof(enum tt__ExposureMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ExposureMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ExposureMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ExposureMode, SOAP_TYPE_tt__ExposureMode, sizeof(enum tt__ExposureMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ExposureMode * SOAP_FMAC4 soap_new_tt__ExposureMode(struct soap *soap, int n) -{ - enum tt__ExposureMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ExposureMode))); - for (enum tt__ExposureMode *p = a; p && n--; ++p) - soap_default_tt__ExposureMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ExposureMode(struct soap *soap, const enum tt__ExposureMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__ExposureMode(soap, tag ? tag : "tt:ExposureMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ExposureMode * SOAP_FMAC4 soap_get_tt__ExposureMode(struct soap *soap, enum tt__ExposureMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ExposureMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ExposurePriority[] = -{ { (LONG64)tt__ExposurePriority__LowNoise, "LowNoise" }, - { (LONG64)tt__ExposurePriority__FrameRate, "FrameRate" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ExposurePriority2s(struct soap *soap, enum tt__ExposurePriority n) -{ - const char *s = soap_code_str(soap_codes_tt__ExposurePriority, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposurePriority(struct soap *soap, const char *tag, int id, const enum tt__ExposurePriority *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ExposurePriority), type) || soap_send(soap, soap_tt__ExposurePriority2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ExposurePriority(struct soap *soap, const char *s, enum tt__ExposurePriority *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ExposurePriority, s); - if (map) - *a = (enum tt__ExposurePriority)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__ExposurePriority)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ExposurePriority * SOAP_FMAC4 soap_in_tt__ExposurePriority(struct soap *soap, const char *tag, enum tt__ExposurePriority *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ExposurePriority*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ExposurePriority, sizeof(enum tt__ExposurePriority), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ExposurePriority(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ExposurePriority *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ExposurePriority, SOAP_TYPE_tt__ExposurePriority, sizeof(enum tt__ExposurePriority), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ExposurePriority * SOAP_FMAC4 soap_new_tt__ExposurePriority(struct soap *soap, int n) -{ - enum tt__ExposurePriority *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ExposurePriority))); - for (enum tt__ExposurePriority *p = a; p && n--; ++p) - soap_default_tt__ExposurePriority(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ExposurePriority(struct soap *soap, const enum tt__ExposurePriority *a, const char *tag, const char *type) -{ - if (soap_out_tt__ExposurePriority(soap, tag ? tag : "tt:ExposurePriority", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ExposurePriority * SOAP_FMAC4 soap_get_tt__ExposurePriority(struct soap *soap, enum tt__ExposurePriority *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ExposurePriority(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__BacklightCompensationMode[] = -{ { (LONG64)tt__BacklightCompensationMode__OFF, "OFF" }, - { (LONG64)tt__BacklightCompensationMode__ON, "ON" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__BacklightCompensationMode2s(struct soap *soap, enum tt__BacklightCompensationMode n) -{ - const char *s = soap_code_str(soap_codes_tt__BacklightCompensationMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationMode(struct soap *soap, const char *tag, int id, const enum tt__BacklightCompensationMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__BacklightCompensationMode), type) || soap_send(soap, soap_tt__BacklightCompensationMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__BacklightCompensationMode(struct soap *soap, const char *s, enum tt__BacklightCompensationMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__BacklightCompensationMode, s); - if (map) - *a = (enum tt__BacklightCompensationMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__BacklightCompensationMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__BacklightCompensationMode * SOAP_FMAC4 soap_in_tt__BacklightCompensationMode(struct soap *soap, const char *tag, enum tt__BacklightCompensationMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__BacklightCompensationMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BacklightCompensationMode, sizeof(enum tt__BacklightCompensationMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__BacklightCompensationMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__BacklightCompensationMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__BacklightCompensationMode, SOAP_TYPE_tt__BacklightCompensationMode, sizeof(enum tt__BacklightCompensationMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__BacklightCompensationMode * SOAP_FMAC4 soap_new_tt__BacklightCompensationMode(struct soap *soap, int n) -{ - enum tt__BacklightCompensationMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__BacklightCompensationMode))); - for (enum tt__BacklightCompensationMode *p = a; p && n--; ++p) - soap_default_tt__BacklightCompensationMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__BacklightCompensationMode(struct soap *soap, const enum tt__BacklightCompensationMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__BacklightCompensationMode(soap, tag ? tag : "tt:BacklightCompensationMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__BacklightCompensationMode * SOAP_FMAC4 soap_get_tt__BacklightCompensationMode(struct soap *soap, enum tt__BacklightCompensationMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BacklightCompensationMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__WideDynamicMode[] = -{ { (LONG64)tt__WideDynamicMode__OFF, "OFF" }, - { (LONG64)tt__WideDynamicMode__ON, "ON" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__WideDynamicMode2s(struct soap *soap, enum tt__WideDynamicMode n) -{ - const char *s = soap_code_str(soap_codes_tt__WideDynamicMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicMode(struct soap *soap, const char *tag, int id, const enum tt__WideDynamicMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WideDynamicMode), type) || soap_send(soap, soap_tt__WideDynamicMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__WideDynamicMode(struct soap *soap, const char *s, enum tt__WideDynamicMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__WideDynamicMode, s); - if (map) - *a = (enum tt__WideDynamicMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__WideDynamicMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__WideDynamicMode * SOAP_FMAC4 soap_in_tt__WideDynamicMode(struct soap *soap, const char *tag, enum tt__WideDynamicMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__WideDynamicMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WideDynamicMode, sizeof(enum tt__WideDynamicMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__WideDynamicMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__WideDynamicMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WideDynamicMode, SOAP_TYPE_tt__WideDynamicMode, sizeof(enum tt__WideDynamicMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__WideDynamicMode * SOAP_FMAC4 soap_new_tt__WideDynamicMode(struct soap *soap, int n) -{ - enum tt__WideDynamicMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__WideDynamicMode))); - for (enum tt__WideDynamicMode *p = a; p && n--; ++p) - soap_default_tt__WideDynamicMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__WideDynamicMode(struct soap *soap, const enum tt__WideDynamicMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__WideDynamicMode(soap, tag ? tag : "tt:WideDynamicMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__WideDynamicMode * SOAP_FMAC4 soap_get_tt__WideDynamicMode(struct soap *soap, enum tt__WideDynamicMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WideDynamicMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__AFModes[] = -{ { (LONG64)tt__AFModes__OnceAfterMove, "OnceAfterMove" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AFModes2s(struct soap *soap, enum tt__AFModes n) -{ - const char *s = soap_code_str(soap_codes_tt__AFModes, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AFModes(struct soap *soap, const char *tag, int id, const enum tt__AFModes *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AFModes), type) || soap_send(soap, soap_tt__AFModes2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AFModes(struct soap *soap, const char *s, enum tt__AFModes *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__AFModes, s); - if (map) - *a = (enum tt__AFModes)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 0) - return soap->error = SOAP_TYPE; - *a = (enum tt__AFModes)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__AFModes * SOAP_FMAC4 soap_in_tt__AFModes(struct soap *soap, const char *tag, enum tt__AFModes *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__AFModes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AFModes, sizeof(enum tt__AFModes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__AFModes(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__AFModes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AFModes, SOAP_TYPE_tt__AFModes, sizeof(enum tt__AFModes), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__AFModes * SOAP_FMAC4 soap_new_tt__AFModes(struct soap *soap, int n) -{ - enum tt__AFModes *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__AFModes))); - for (enum tt__AFModes *p = a; p && n--; ++p) - soap_default_tt__AFModes(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AFModes(struct soap *soap, const enum tt__AFModes *a, const char *tag, const char *type) -{ - if (soap_out_tt__AFModes(soap, tag ? tag : "tt:AFModes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__AFModes * SOAP_FMAC4 soap_get_tt__AFModes(struct soap *soap, enum tt__AFModes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AFModes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__AutoFocusMode[] = -{ { (LONG64)tt__AutoFocusMode__AUTO, "AUTO" }, - { (LONG64)tt__AutoFocusMode__MANUAL, "MANUAL" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AutoFocusMode2s(struct soap *soap, enum tt__AutoFocusMode n) -{ - const char *s = soap_code_str(soap_codes_tt__AutoFocusMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AutoFocusMode(struct soap *soap, const char *tag, int id, const enum tt__AutoFocusMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AutoFocusMode), type) || soap_send(soap, soap_tt__AutoFocusMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AutoFocusMode(struct soap *soap, const char *s, enum tt__AutoFocusMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__AutoFocusMode, s); - if (map) - *a = (enum tt__AutoFocusMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__AutoFocusMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__AutoFocusMode * SOAP_FMAC4 soap_in_tt__AutoFocusMode(struct soap *soap, const char *tag, enum tt__AutoFocusMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__AutoFocusMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AutoFocusMode, sizeof(enum tt__AutoFocusMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__AutoFocusMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__AutoFocusMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AutoFocusMode, SOAP_TYPE_tt__AutoFocusMode, sizeof(enum tt__AutoFocusMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__AutoFocusMode * SOAP_FMAC4 soap_new_tt__AutoFocusMode(struct soap *soap, int n) -{ - enum tt__AutoFocusMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__AutoFocusMode))); - for (enum tt__AutoFocusMode *p = a; p && n--; ++p) - soap_default_tt__AutoFocusMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AutoFocusMode(struct soap *soap, const enum tt__AutoFocusMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__AutoFocusMode(soap, tag ? tag : "tt:AutoFocusMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__AutoFocusMode * SOAP_FMAC4 soap_get_tt__AutoFocusMode(struct soap *soap, enum tt__AutoFocusMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AutoFocusMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__MoveAndTrackMethod[] = -{ { (LONG64)tt__MoveAndTrackMethod__PresetToken, "PresetToken" }, - { (LONG64)tt__MoveAndTrackMethod__GeoLocation, "GeoLocation" }, - { (LONG64)tt__MoveAndTrackMethod__PTZVector, "PTZVector" }, - { (LONG64)tt__MoveAndTrackMethod__ObjectID, "ObjectID" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__MoveAndTrackMethod2s(struct soap *soap, enum tt__MoveAndTrackMethod n) -{ - const char *s = soap_code_str(soap_codes_tt__MoveAndTrackMethod, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveAndTrackMethod(struct soap *soap, const char *tag, int id, const enum tt__MoveAndTrackMethod *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MoveAndTrackMethod), type) || soap_send(soap, soap_tt__MoveAndTrackMethod2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__MoveAndTrackMethod(struct soap *soap, const char *s, enum tt__MoveAndTrackMethod *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__MoveAndTrackMethod, s); - if (map) - *a = (enum tt__MoveAndTrackMethod)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__MoveAndTrackMethod)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__MoveAndTrackMethod * SOAP_FMAC4 soap_in_tt__MoveAndTrackMethod(struct soap *soap, const char *tag, enum tt__MoveAndTrackMethod *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__MoveAndTrackMethod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MoveAndTrackMethod, sizeof(enum tt__MoveAndTrackMethod), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__MoveAndTrackMethod(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__MoveAndTrackMethod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MoveAndTrackMethod, SOAP_TYPE_tt__MoveAndTrackMethod, sizeof(enum tt__MoveAndTrackMethod), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__MoveAndTrackMethod * SOAP_FMAC4 soap_new_tt__MoveAndTrackMethod(struct soap *soap, int n) -{ - enum tt__MoveAndTrackMethod *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__MoveAndTrackMethod))); - for (enum tt__MoveAndTrackMethod *p = a; p && n--; ++p) - soap_default_tt__MoveAndTrackMethod(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__MoveAndTrackMethod(struct soap *soap, const enum tt__MoveAndTrackMethod *a, const char *tag, const char *type) -{ - if (soap_out_tt__MoveAndTrackMethod(soap, tag ? tag : "tt:MoveAndTrackMethod", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__MoveAndTrackMethod * SOAP_FMAC4 soap_get_tt__MoveAndTrackMethod(struct soap *soap, enum tt__MoveAndTrackMethod *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MoveAndTrackMethod(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__PTZPresetTourOperation[] = -{ { (LONG64)tt__PTZPresetTourOperation__Start, "Start" }, - { (LONG64)tt__PTZPresetTourOperation__Stop, "Stop" }, - { (LONG64)tt__PTZPresetTourOperation__Pause, "Pause" }, - { (LONG64)tt__PTZPresetTourOperation__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PTZPresetTourOperation2s(struct soap *soap, enum tt__PTZPresetTourOperation n) -{ - const char *s = soap_code_str(soap_codes_tt__PTZPresetTourOperation, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourOperation(struct soap *soap, const char *tag, int id, const enum tt__PTZPresetTourOperation *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourOperation), type) || soap_send(soap, soap_tt__PTZPresetTourOperation2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PTZPresetTourOperation(struct soap *soap, const char *s, enum tt__PTZPresetTourOperation *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__PTZPresetTourOperation, s); - if (map) - *a = (enum tt__PTZPresetTourOperation)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__PTZPresetTourOperation)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__PTZPresetTourOperation * SOAP_FMAC4 soap_in_tt__PTZPresetTourOperation(struct soap *soap, const char *tag, enum tt__PTZPresetTourOperation *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__PTZPresetTourOperation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourOperation, sizeof(enum tt__PTZPresetTourOperation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__PTZPresetTourOperation(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__PTZPresetTourOperation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourOperation, SOAP_TYPE_tt__PTZPresetTourOperation, sizeof(enum tt__PTZPresetTourOperation), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__PTZPresetTourOperation * SOAP_FMAC4 soap_new_tt__PTZPresetTourOperation(struct soap *soap, int n) -{ - enum tt__PTZPresetTourOperation *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__PTZPresetTourOperation))); - for (enum tt__PTZPresetTourOperation *p = a; p && n--; ++p) - soap_default_tt__PTZPresetTourOperation(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PTZPresetTourOperation(struct soap *soap, const enum tt__PTZPresetTourOperation *a, const char *tag, const char *type) -{ - if (soap_out_tt__PTZPresetTourOperation(soap, tag ? tag : "tt:PTZPresetTourOperation", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__PTZPresetTourOperation * SOAP_FMAC4 soap_get_tt__PTZPresetTourOperation(struct soap *soap, enum tt__PTZPresetTourOperation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourOperation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__PTZPresetTourDirection[] = -{ { (LONG64)tt__PTZPresetTourDirection__Forward, "Forward" }, - { (LONG64)tt__PTZPresetTourDirection__Backward, "Backward" }, - { (LONG64)tt__PTZPresetTourDirection__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PTZPresetTourDirection2s(struct soap *soap, enum tt__PTZPresetTourDirection n) -{ - const char *s = soap_code_str(soap_codes_tt__PTZPresetTourDirection, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourDirection(struct soap *soap, const char *tag, int id, const enum tt__PTZPresetTourDirection *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourDirection), type) || soap_send(soap, soap_tt__PTZPresetTourDirection2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PTZPresetTourDirection(struct soap *soap, const char *s, enum tt__PTZPresetTourDirection *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__PTZPresetTourDirection, s); - if (map) - *a = (enum tt__PTZPresetTourDirection)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__PTZPresetTourDirection)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__PTZPresetTourDirection * SOAP_FMAC4 soap_in_tt__PTZPresetTourDirection(struct soap *soap, const char *tag, enum tt__PTZPresetTourDirection *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__PTZPresetTourDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourDirection, sizeof(enum tt__PTZPresetTourDirection), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__PTZPresetTourDirection(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__PTZPresetTourDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourDirection, SOAP_TYPE_tt__PTZPresetTourDirection, sizeof(enum tt__PTZPresetTourDirection), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__PTZPresetTourDirection * SOAP_FMAC4 soap_new_tt__PTZPresetTourDirection(struct soap *soap, int n) -{ - enum tt__PTZPresetTourDirection *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__PTZPresetTourDirection))); - for (enum tt__PTZPresetTourDirection *p = a; p && n--; ++p) - soap_default_tt__PTZPresetTourDirection(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PTZPresetTourDirection(struct soap *soap, const enum tt__PTZPresetTourDirection *a, const char *tag, const char *type) -{ - if (soap_out_tt__PTZPresetTourDirection(soap, tag ? tag : "tt:PTZPresetTourDirection", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__PTZPresetTourDirection * SOAP_FMAC4 soap_get_tt__PTZPresetTourDirection(struct soap *soap, enum tt__PTZPresetTourDirection *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourDirection(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__PTZPresetTourState[] = -{ { (LONG64)tt__PTZPresetTourState__Idle, "Idle" }, - { (LONG64)tt__PTZPresetTourState__Touring, "Touring" }, - { (LONG64)tt__PTZPresetTourState__Paused, "Paused" }, - { (LONG64)tt__PTZPresetTourState__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PTZPresetTourState2s(struct soap *soap, enum tt__PTZPresetTourState n) -{ - const char *s = soap_code_str(soap_codes_tt__PTZPresetTourState, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourState(struct soap *soap, const char *tag, int id, const enum tt__PTZPresetTourState *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourState), type) || soap_send(soap, soap_tt__PTZPresetTourState2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PTZPresetTourState(struct soap *soap, const char *s, enum tt__PTZPresetTourState *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__PTZPresetTourState, s); - if (map) - *a = (enum tt__PTZPresetTourState)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__PTZPresetTourState)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__PTZPresetTourState * SOAP_FMAC4 soap_in_tt__PTZPresetTourState(struct soap *soap, const char *tag, enum tt__PTZPresetTourState *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__PTZPresetTourState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourState, sizeof(enum tt__PTZPresetTourState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__PTZPresetTourState(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__PTZPresetTourState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourState, SOAP_TYPE_tt__PTZPresetTourState, sizeof(enum tt__PTZPresetTourState), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__PTZPresetTourState * SOAP_FMAC4 soap_new_tt__PTZPresetTourState(struct soap *soap, int n) -{ - enum tt__PTZPresetTourState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__PTZPresetTourState))); - for (enum tt__PTZPresetTourState *p = a; p && n--; ++p) - soap_default_tt__PTZPresetTourState(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PTZPresetTourState(struct soap *soap, const enum tt__PTZPresetTourState *a, const char *tag, const char *type) -{ - if (soap_out_tt__PTZPresetTourState(soap, tag ? tag : "tt:PTZPresetTourState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__PTZPresetTourState * SOAP_FMAC4 soap_get_tt__PTZPresetTourState(struct soap *soap, enum tt__PTZPresetTourState *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ReverseMode[] = -{ { (LONG64)tt__ReverseMode__OFF, "OFF" }, - { (LONG64)tt__ReverseMode__ON, "ON" }, - { (LONG64)tt__ReverseMode__AUTO, "AUTO" }, - { (LONG64)tt__ReverseMode__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ReverseMode2s(struct soap *soap, enum tt__ReverseMode n) -{ - const char *s = soap_code_str(soap_codes_tt__ReverseMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseMode(struct soap *soap, const char *tag, int id, const enum tt__ReverseMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReverseMode), type) || soap_send(soap, soap_tt__ReverseMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ReverseMode(struct soap *soap, const char *s, enum tt__ReverseMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ReverseMode, s); - if (map) - *a = (enum tt__ReverseMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__ReverseMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ReverseMode * SOAP_FMAC4 soap_in_tt__ReverseMode(struct soap *soap, const char *tag, enum tt__ReverseMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ReverseMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReverseMode, sizeof(enum tt__ReverseMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ReverseMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ReverseMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReverseMode, SOAP_TYPE_tt__ReverseMode, sizeof(enum tt__ReverseMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ReverseMode * SOAP_FMAC4 soap_new_tt__ReverseMode(struct soap *soap, int n) -{ - enum tt__ReverseMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ReverseMode))); - for (enum tt__ReverseMode *p = a; p && n--; ++p) - soap_default_tt__ReverseMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReverseMode(struct soap *soap, const enum tt__ReverseMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__ReverseMode(soap, tag ? tag : "tt:ReverseMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ReverseMode * SOAP_FMAC4 soap_get_tt__ReverseMode(struct soap *soap, enum tt__ReverseMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReverseMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__EFlipMode[] = -{ { (LONG64)tt__EFlipMode__OFF, "OFF" }, - { (LONG64)tt__EFlipMode__ON, "ON" }, - { (LONG64)tt__EFlipMode__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__EFlipMode2s(struct soap *soap, enum tt__EFlipMode n) -{ - const char *s = soap_code_str(soap_codes_tt__EFlipMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipMode(struct soap *soap, const char *tag, int id, const enum tt__EFlipMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EFlipMode), type) || soap_send(soap, soap_tt__EFlipMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__EFlipMode(struct soap *soap, const char *s, enum tt__EFlipMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__EFlipMode, s); - if (map) - *a = (enum tt__EFlipMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__EFlipMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__EFlipMode * SOAP_FMAC4 soap_in_tt__EFlipMode(struct soap *soap, const char *tag, enum tt__EFlipMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__EFlipMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EFlipMode, sizeof(enum tt__EFlipMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__EFlipMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__EFlipMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EFlipMode, SOAP_TYPE_tt__EFlipMode, sizeof(enum tt__EFlipMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__EFlipMode * SOAP_FMAC4 soap_new_tt__EFlipMode(struct soap *soap, int n) -{ - enum tt__EFlipMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__EFlipMode))); - for (enum tt__EFlipMode *p = a; p && n--; ++p) - soap_default_tt__EFlipMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__EFlipMode(struct soap *soap, const enum tt__EFlipMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__EFlipMode(soap, tag ? tag : "tt:EFlipMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__EFlipMode * SOAP_FMAC4 soap_get_tt__EFlipMode(struct soap *soap, enum tt__EFlipMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EFlipMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__DigitalIdleState[] = -{ { (LONG64)tt__DigitalIdleState__closed, "closed" }, - { (LONG64)tt__DigitalIdleState__open, "open" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DigitalIdleState2s(struct soap *soap, enum tt__DigitalIdleState n) -{ - const char *s = soap_code_str(soap_codes_tt__DigitalIdleState, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DigitalIdleState(struct soap *soap, const char *tag, int id, const enum tt__DigitalIdleState *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DigitalIdleState), type) || soap_send(soap, soap_tt__DigitalIdleState2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DigitalIdleState(struct soap *soap, const char *s, enum tt__DigitalIdleState *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__DigitalIdleState, s); - if (map) - *a = (enum tt__DigitalIdleState)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__DigitalIdleState)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__DigitalIdleState * SOAP_FMAC4 soap_in_tt__DigitalIdleState(struct soap *soap, const char *tag, enum tt__DigitalIdleState *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__DigitalIdleState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DigitalIdleState, sizeof(enum tt__DigitalIdleState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__DigitalIdleState(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__DigitalIdleState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DigitalIdleState, SOAP_TYPE_tt__DigitalIdleState, sizeof(enum tt__DigitalIdleState), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__DigitalIdleState * SOAP_FMAC4 soap_new_tt__DigitalIdleState(struct soap *soap, int n) -{ - enum tt__DigitalIdleState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__DigitalIdleState))); - for (enum tt__DigitalIdleState *p = a; p && n--; ++p) - soap_default_tt__DigitalIdleState(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DigitalIdleState(struct soap *soap, const enum tt__DigitalIdleState *a, const char *tag, const char *type) -{ - if (soap_out_tt__DigitalIdleState(soap, tag ? tag : "tt:DigitalIdleState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__DigitalIdleState * SOAP_FMAC4 soap_get_tt__DigitalIdleState(struct soap *soap, enum tt__DigitalIdleState *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DigitalIdleState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__RelayMode[] = -{ { (LONG64)tt__RelayMode__Monostable, "Monostable" }, - { (LONG64)tt__RelayMode__Bistable, "Bistable" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RelayMode2s(struct soap *soap, enum tt__RelayMode n) -{ - const char *s = soap_code_str(soap_codes_tt__RelayMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayMode(struct soap *soap, const char *tag, int id, const enum tt__RelayMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelayMode), type) || soap_send(soap, soap_tt__RelayMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RelayMode(struct soap *soap, const char *s, enum tt__RelayMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__RelayMode, s); - if (map) - *a = (enum tt__RelayMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__RelayMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__RelayMode * SOAP_FMAC4 soap_in_tt__RelayMode(struct soap *soap, const char *tag, enum tt__RelayMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__RelayMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayMode, sizeof(enum tt__RelayMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__RelayMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__RelayMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelayMode, SOAP_TYPE_tt__RelayMode, sizeof(enum tt__RelayMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__RelayMode * SOAP_FMAC4 soap_new_tt__RelayMode(struct soap *soap, int n) -{ - enum tt__RelayMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__RelayMode))); - for (enum tt__RelayMode *p = a; p && n--; ++p) - soap_default_tt__RelayMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RelayMode(struct soap *soap, const enum tt__RelayMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__RelayMode(soap, tag ? tag : "tt:RelayMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__RelayMode * SOAP_FMAC4 soap_get_tt__RelayMode(struct soap *soap, enum tt__RelayMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__RelayIdleState[] = -{ { (LONG64)tt__RelayIdleState__closed, "closed" }, - { (LONG64)tt__RelayIdleState__open, "open" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RelayIdleState2s(struct soap *soap, enum tt__RelayIdleState n) -{ - const char *s = soap_code_str(soap_codes_tt__RelayIdleState, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayIdleState(struct soap *soap, const char *tag, int id, const enum tt__RelayIdleState *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelayIdleState), type) || soap_send(soap, soap_tt__RelayIdleState2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RelayIdleState(struct soap *soap, const char *s, enum tt__RelayIdleState *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__RelayIdleState, s); - if (map) - *a = (enum tt__RelayIdleState)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__RelayIdleState)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__RelayIdleState * SOAP_FMAC4 soap_in_tt__RelayIdleState(struct soap *soap, const char *tag, enum tt__RelayIdleState *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__RelayIdleState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayIdleState, sizeof(enum tt__RelayIdleState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__RelayIdleState(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__RelayIdleState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelayIdleState, SOAP_TYPE_tt__RelayIdleState, sizeof(enum tt__RelayIdleState), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__RelayIdleState * SOAP_FMAC4 soap_new_tt__RelayIdleState(struct soap *soap, int n) -{ - enum tt__RelayIdleState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__RelayIdleState))); - for (enum tt__RelayIdleState *p = a; p && n--; ++p) - soap_default_tt__RelayIdleState(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RelayIdleState(struct soap *soap, const enum tt__RelayIdleState *a, const char *tag, const char *type) -{ - if (soap_out_tt__RelayIdleState(soap, tag ? tag : "tt:RelayIdleState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__RelayIdleState * SOAP_FMAC4 soap_get_tt__RelayIdleState(struct soap *soap, enum tt__RelayIdleState *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayIdleState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__RelayLogicalState[] = -{ { (LONG64)tt__RelayLogicalState__active, "active" }, - { (LONG64)tt__RelayLogicalState__inactive, "inactive" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RelayLogicalState2s(struct soap *soap, enum tt__RelayLogicalState n) -{ - const char *s = soap_code_str(soap_codes_tt__RelayLogicalState, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayLogicalState(struct soap *soap, const char *tag, int id, const enum tt__RelayLogicalState *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelayLogicalState), type) || soap_send(soap, soap_tt__RelayLogicalState2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RelayLogicalState(struct soap *soap, const char *s, enum tt__RelayLogicalState *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__RelayLogicalState, s); - if (map) - *a = (enum tt__RelayLogicalState)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__RelayLogicalState)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__RelayLogicalState * SOAP_FMAC4 soap_in_tt__RelayLogicalState(struct soap *soap, const char *tag, enum tt__RelayLogicalState *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__RelayLogicalState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayLogicalState, sizeof(enum tt__RelayLogicalState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__RelayLogicalState(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__RelayLogicalState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelayLogicalState, SOAP_TYPE_tt__RelayLogicalState, sizeof(enum tt__RelayLogicalState), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__RelayLogicalState * SOAP_FMAC4 soap_new_tt__RelayLogicalState(struct soap *soap, int n) -{ - enum tt__RelayLogicalState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__RelayLogicalState))); - for (enum tt__RelayLogicalState *p = a; p && n--; ++p) - soap_default_tt__RelayLogicalState(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RelayLogicalState(struct soap *soap, const enum tt__RelayLogicalState *a, const char *tag, const char *type) -{ - if (soap_out_tt__RelayLogicalState(soap, tag ? tag : "tt:RelayLogicalState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__RelayLogicalState * SOAP_FMAC4 soap_get_tt__RelayLogicalState(struct soap *soap, enum tt__RelayLogicalState *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayLogicalState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__UserLevel[] = -{ { (LONG64)tt__UserLevel__Administrator, "Administrator" }, - { (LONG64)tt__UserLevel__Operator, "Operator" }, - { (LONG64)tt__UserLevel__User, "User" }, - { (LONG64)tt__UserLevel__Anonymous, "Anonymous" }, - { (LONG64)tt__UserLevel__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__UserLevel2s(struct soap *soap, enum tt__UserLevel n) -{ - const char *s = soap_code_str(soap_codes_tt__UserLevel, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__UserLevel(struct soap *soap, const char *tag, int id, const enum tt__UserLevel *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__UserLevel), type) || soap_send(soap, soap_tt__UserLevel2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__UserLevel(struct soap *soap, const char *s, enum tt__UserLevel *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__UserLevel, s); - if (map) - *a = (enum tt__UserLevel)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 4) - return soap->error = SOAP_TYPE; - *a = (enum tt__UserLevel)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__UserLevel * SOAP_FMAC4 soap_in_tt__UserLevel(struct soap *soap, const char *tag, enum tt__UserLevel *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__UserLevel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__UserLevel, sizeof(enum tt__UserLevel), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__UserLevel(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__UserLevel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__UserLevel, SOAP_TYPE_tt__UserLevel, sizeof(enum tt__UserLevel), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__UserLevel * SOAP_FMAC4 soap_new_tt__UserLevel(struct soap *soap, int n) -{ - enum tt__UserLevel *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__UserLevel))); - for (enum tt__UserLevel *p = a; p && n--; ++p) - soap_default_tt__UserLevel(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__UserLevel(struct soap *soap, const enum tt__UserLevel *a, const char *tag, const char *type) -{ - if (soap_out_tt__UserLevel(soap, tag ? tag : "tt:UserLevel", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__UserLevel * SOAP_FMAC4 soap_get_tt__UserLevel(struct soap *soap, enum tt__UserLevel *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__UserLevel(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__SetDateTimeType[] = -{ { (LONG64)tt__SetDateTimeType__Manual, "Manual" }, - { (LONG64)tt__SetDateTimeType__NTP, "NTP" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SetDateTimeType2s(struct soap *soap, enum tt__SetDateTimeType n) -{ - const char *s = soap_code_str(soap_codes_tt__SetDateTimeType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SetDateTimeType(struct soap *soap, const char *tag, int id, const enum tt__SetDateTimeType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SetDateTimeType), type) || soap_send(soap, soap_tt__SetDateTimeType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SetDateTimeType(struct soap *soap, const char *s, enum tt__SetDateTimeType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__SetDateTimeType, s); - if (map) - *a = (enum tt__SetDateTimeType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__SetDateTimeType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__SetDateTimeType * SOAP_FMAC4 soap_in_tt__SetDateTimeType(struct soap *soap, const char *tag, enum tt__SetDateTimeType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__SetDateTimeType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SetDateTimeType, sizeof(enum tt__SetDateTimeType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__SetDateTimeType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__SetDateTimeType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SetDateTimeType, SOAP_TYPE_tt__SetDateTimeType, sizeof(enum tt__SetDateTimeType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__SetDateTimeType * SOAP_FMAC4 soap_new_tt__SetDateTimeType(struct soap *soap, int n) -{ - enum tt__SetDateTimeType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__SetDateTimeType))); - for (enum tt__SetDateTimeType *p = a; p && n--; ++p) - soap_default_tt__SetDateTimeType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SetDateTimeType(struct soap *soap, const enum tt__SetDateTimeType *a, const char *tag, const char *type) -{ - if (soap_out_tt__SetDateTimeType(soap, tag ? tag : "tt:SetDateTimeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__SetDateTimeType * SOAP_FMAC4 soap_get_tt__SetDateTimeType(struct soap *soap, enum tt__SetDateTimeType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SetDateTimeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__FactoryDefaultType[] = -{ { (LONG64)tt__FactoryDefaultType__Hard, "Hard" }, - { (LONG64)tt__FactoryDefaultType__Soft, "Soft" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__FactoryDefaultType2s(struct soap *soap, enum tt__FactoryDefaultType n) -{ - const char *s = soap_code_str(soap_codes_tt__FactoryDefaultType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FactoryDefaultType(struct soap *soap, const char *tag, int id, const enum tt__FactoryDefaultType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FactoryDefaultType), type) || soap_send(soap, soap_tt__FactoryDefaultType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__FactoryDefaultType(struct soap *soap, const char *s, enum tt__FactoryDefaultType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__FactoryDefaultType, s); - if (map) - *a = (enum tt__FactoryDefaultType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__FactoryDefaultType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__FactoryDefaultType * SOAP_FMAC4 soap_in_tt__FactoryDefaultType(struct soap *soap, const char *tag, enum tt__FactoryDefaultType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__FactoryDefaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FactoryDefaultType, sizeof(enum tt__FactoryDefaultType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__FactoryDefaultType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__FactoryDefaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FactoryDefaultType, SOAP_TYPE_tt__FactoryDefaultType, sizeof(enum tt__FactoryDefaultType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__FactoryDefaultType * SOAP_FMAC4 soap_new_tt__FactoryDefaultType(struct soap *soap, int n) -{ - enum tt__FactoryDefaultType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__FactoryDefaultType))); - for (enum tt__FactoryDefaultType *p = a; p && n--; ++p) - soap_default_tt__FactoryDefaultType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__FactoryDefaultType(struct soap *soap, const enum tt__FactoryDefaultType *a, const char *tag, const char *type) -{ - if (soap_out_tt__FactoryDefaultType(soap, tag ? tag : "tt:FactoryDefaultType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__FactoryDefaultType * SOAP_FMAC4 soap_get_tt__FactoryDefaultType(struct soap *soap, enum tt__FactoryDefaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FactoryDefaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__SystemLogType[] = -{ { (LONG64)tt__SystemLogType__System, "System" }, - { (LONG64)tt__SystemLogType__Access, "Access" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SystemLogType2s(struct soap *soap, enum tt__SystemLogType n) -{ - const char *s = soap_code_str(soap_codes_tt__SystemLogType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogType(struct soap *soap, const char *tag, int id, const enum tt__SystemLogType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemLogType), type) || soap_send(soap, soap_tt__SystemLogType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SystemLogType(struct soap *soap, const char *s, enum tt__SystemLogType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__SystemLogType, s); - if (map) - *a = (enum tt__SystemLogType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__SystemLogType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__SystemLogType * SOAP_FMAC4 soap_in_tt__SystemLogType(struct soap *soap, const char *tag, enum tt__SystemLogType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__SystemLogType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemLogType, sizeof(enum tt__SystemLogType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__SystemLogType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__SystemLogType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemLogType, SOAP_TYPE_tt__SystemLogType, sizeof(enum tt__SystemLogType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__SystemLogType * SOAP_FMAC4 soap_new_tt__SystemLogType(struct soap *soap, int n) -{ - enum tt__SystemLogType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__SystemLogType))); - for (enum tt__SystemLogType *p = a; p && n--; ++p) - soap_default_tt__SystemLogType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SystemLogType(struct soap *soap, const enum tt__SystemLogType *a, const char *tag, const char *type) -{ - if (soap_out_tt__SystemLogType(soap, tag ? tag : "tt:SystemLogType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__SystemLogType * SOAP_FMAC4 soap_get_tt__SystemLogType(struct soap *soap, enum tt__SystemLogType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemLogType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__CapabilityCategory[] = -{ { (LONG64)tt__CapabilityCategory__All, "All" }, - { (LONG64)tt__CapabilityCategory__Analytics, "Analytics" }, - { (LONG64)tt__CapabilityCategory__Device, "Device" }, - { (LONG64)tt__CapabilityCategory__Events, "Events" }, - { (LONG64)tt__CapabilityCategory__Imaging, "Imaging" }, - { (LONG64)tt__CapabilityCategory__Media, "Media" }, - { (LONG64)tt__CapabilityCategory__PTZ, "PTZ" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__CapabilityCategory2s(struct soap *soap, enum tt__CapabilityCategory n) -{ - const char *s = soap_code_str(soap_codes_tt__CapabilityCategory, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilityCategory(struct soap *soap, const char *tag, int id, const enum tt__CapabilityCategory *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CapabilityCategory), type) || soap_send(soap, soap_tt__CapabilityCategory2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__CapabilityCategory(struct soap *soap, const char *s, enum tt__CapabilityCategory *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__CapabilityCategory, s); - if (map) - *a = (enum tt__CapabilityCategory)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 6) - return soap->error = SOAP_TYPE; - *a = (enum tt__CapabilityCategory)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__CapabilityCategory * SOAP_FMAC4 soap_in_tt__CapabilityCategory(struct soap *soap, const char *tag, enum tt__CapabilityCategory *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__CapabilityCategory*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CapabilityCategory, sizeof(enum tt__CapabilityCategory), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__CapabilityCategory(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__CapabilityCategory *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CapabilityCategory, SOAP_TYPE_tt__CapabilityCategory, sizeof(enum tt__CapabilityCategory), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__CapabilityCategory * SOAP_FMAC4 soap_new_tt__CapabilityCategory(struct soap *soap, int n) -{ - enum tt__CapabilityCategory *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__CapabilityCategory))); - for (enum tt__CapabilityCategory *p = a; p && n--; ++p) - soap_default_tt__CapabilityCategory(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__CapabilityCategory(struct soap *soap, const enum tt__CapabilityCategory *a, const char *tag, const char *type) -{ - if (soap_out_tt__CapabilityCategory(soap, tag ? tag : "tt:CapabilityCategory", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__CapabilityCategory * SOAP_FMAC4 soap_get_tt__CapabilityCategory(struct soap *soap, enum tt__CapabilityCategory *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CapabilityCategory(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Dot11AuthAndMangementSuite[] = -{ { (LONG64)tt__Dot11AuthAndMangementSuite__None, "None" }, - { (LONG64)tt__Dot11AuthAndMangementSuite__Dot1X, "Dot1X" }, - { (LONG64)tt__Dot11AuthAndMangementSuite__PSK, "PSK" }, - { (LONG64)tt__Dot11AuthAndMangementSuite__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11AuthAndMangementSuite2s(struct soap *soap, enum tt__Dot11AuthAndMangementSuite n) -{ - const char *s = soap_code_str(soap_codes_tt__Dot11AuthAndMangementSuite, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AuthAndMangementSuite(struct soap *soap, const char *tag, int id, const enum tt__Dot11AuthAndMangementSuite *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11AuthAndMangementSuite), type) || soap_send(soap, soap_tt__Dot11AuthAndMangementSuite2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11AuthAndMangementSuite(struct soap *soap, const char *s, enum tt__Dot11AuthAndMangementSuite *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Dot11AuthAndMangementSuite, s); - if (map) - *a = (enum tt__Dot11AuthAndMangementSuite)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__Dot11AuthAndMangementSuite)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Dot11AuthAndMangementSuite * SOAP_FMAC4 soap_in_tt__Dot11AuthAndMangementSuite(struct soap *soap, const char *tag, enum tt__Dot11AuthAndMangementSuite *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Dot11AuthAndMangementSuite*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11AuthAndMangementSuite, sizeof(enum tt__Dot11AuthAndMangementSuite), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Dot11AuthAndMangementSuite(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Dot11AuthAndMangementSuite *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11AuthAndMangementSuite, SOAP_TYPE_tt__Dot11AuthAndMangementSuite, sizeof(enum tt__Dot11AuthAndMangementSuite), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Dot11AuthAndMangementSuite * SOAP_FMAC4 soap_new_tt__Dot11AuthAndMangementSuite(struct soap *soap, int n) -{ - enum tt__Dot11AuthAndMangementSuite *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Dot11AuthAndMangementSuite))); - for (enum tt__Dot11AuthAndMangementSuite *p = a; p && n--; ++p) - soap_default_tt__Dot11AuthAndMangementSuite(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11AuthAndMangementSuite(struct soap *soap, const enum tt__Dot11AuthAndMangementSuite *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11AuthAndMangementSuite(soap, tag ? tag : "tt:Dot11AuthAndMangementSuite", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Dot11AuthAndMangementSuite * SOAP_FMAC4 soap_get_tt__Dot11AuthAndMangementSuite(struct soap *soap, enum tt__Dot11AuthAndMangementSuite *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11AuthAndMangementSuite(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Dot11SignalStrength[] = -{ { (LONG64)tt__Dot11SignalStrength__None, "None" }, - { (LONG64)tt__Dot11SignalStrength__Very_x0020Bad, "Very Bad" }, - { (LONG64)tt__Dot11SignalStrength__Bad, "Bad" }, - { (LONG64)tt__Dot11SignalStrength__Good, "Good" }, - { (LONG64)tt__Dot11SignalStrength__Very_x0020Good, "Very Good" }, - { (LONG64)tt__Dot11SignalStrength__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11SignalStrength2s(struct soap *soap, enum tt__Dot11SignalStrength n) -{ - const char *s = soap_code_str(soap_codes_tt__Dot11SignalStrength, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SignalStrength(struct soap *soap, const char *tag, int id, const enum tt__Dot11SignalStrength *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11SignalStrength), type) || soap_send(soap, soap_tt__Dot11SignalStrength2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11SignalStrength(struct soap *soap, const char *s, enum tt__Dot11SignalStrength *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Dot11SignalStrength, s); - if (map) - *a = (enum tt__Dot11SignalStrength)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 5) - return soap->error = SOAP_TYPE; - *a = (enum tt__Dot11SignalStrength)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Dot11SignalStrength * SOAP_FMAC4 soap_in_tt__Dot11SignalStrength(struct soap *soap, const char *tag, enum tt__Dot11SignalStrength *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Dot11SignalStrength*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SignalStrength, sizeof(enum tt__Dot11SignalStrength), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Dot11SignalStrength(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Dot11SignalStrength *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11SignalStrength, SOAP_TYPE_tt__Dot11SignalStrength, sizeof(enum tt__Dot11SignalStrength), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Dot11SignalStrength * SOAP_FMAC4 soap_new_tt__Dot11SignalStrength(struct soap *soap, int n) -{ - enum tt__Dot11SignalStrength *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Dot11SignalStrength))); - for (enum tt__Dot11SignalStrength *p = a; p && n--; ++p) - soap_default_tt__Dot11SignalStrength(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11SignalStrength(struct soap *soap, const enum tt__Dot11SignalStrength *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11SignalStrength(soap, tag ? tag : "tt:Dot11SignalStrength", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Dot11SignalStrength * SOAP_FMAC4 soap_get_tt__Dot11SignalStrength(struct soap *soap, enum tt__Dot11SignalStrength *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SignalStrength(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Dot11Cipher[] = -{ { (LONG64)tt__Dot11Cipher__CCMP, "CCMP" }, - { (LONG64)tt__Dot11Cipher__TKIP, "TKIP" }, - { (LONG64)tt__Dot11Cipher__Any, "Any" }, - { (LONG64)tt__Dot11Cipher__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11Cipher2s(struct soap *soap, enum tt__Dot11Cipher n) -{ - const char *s = soap_code_str(soap_codes_tt__Dot11Cipher, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Cipher(struct soap *soap, const char *tag, int id, const enum tt__Dot11Cipher *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11Cipher), type) || soap_send(soap, soap_tt__Dot11Cipher2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11Cipher(struct soap *soap, const char *s, enum tt__Dot11Cipher *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Dot11Cipher, s); - if (map) - *a = (enum tt__Dot11Cipher)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__Dot11Cipher)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Dot11Cipher * SOAP_FMAC4 soap_in_tt__Dot11Cipher(struct soap *soap, const char *tag, enum tt__Dot11Cipher *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Dot11Cipher*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11Cipher, sizeof(enum tt__Dot11Cipher), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Dot11Cipher(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Dot11Cipher *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11Cipher, SOAP_TYPE_tt__Dot11Cipher, sizeof(enum tt__Dot11Cipher), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Dot11Cipher * SOAP_FMAC4 soap_new_tt__Dot11Cipher(struct soap *soap, int n) -{ - enum tt__Dot11Cipher *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Dot11Cipher))); - for (enum tt__Dot11Cipher *p = a; p && n--; ++p) - soap_default_tt__Dot11Cipher(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11Cipher(struct soap *soap, const enum tt__Dot11Cipher *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11Cipher(soap, tag ? tag : "tt:Dot11Cipher", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Dot11Cipher * SOAP_FMAC4 soap_get_tt__Dot11Cipher(struct soap *soap, enum tt__Dot11Cipher *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11Cipher(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Dot11SecurityMode[] = -{ { (LONG64)tt__Dot11SecurityMode__None, "None" }, - { (LONG64)tt__Dot11SecurityMode__WEP, "WEP" }, - { (LONG64)tt__Dot11SecurityMode__PSK, "PSK" }, - { (LONG64)tt__Dot11SecurityMode__Dot1X, "Dot1X" }, - { (LONG64)tt__Dot11SecurityMode__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11SecurityMode2s(struct soap *soap, enum tt__Dot11SecurityMode n) -{ - const char *s = soap_code_str(soap_codes_tt__Dot11SecurityMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityMode(struct soap *soap, const char *tag, int id, const enum tt__Dot11SecurityMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11SecurityMode), type) || soap_send(soap, soap_tt__Dot11SecurityMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11SecurityMode(struct soap *soap, const char *s, enum tt__Dot11SecurityMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Dot11SecurityMode, s); - if (map) - *a = (enum tt__Dot11SecurityMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 4) - return soap->error = SOAP_TYPE; - *a = (enum tt__Dot11SecurityMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Dot11SecurityMode * SOAP_FMAC4 soap_in_tt__Dot11SecurityMode(struct soap *soap, const char *tag, enum tt__Dot11SecurityMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Dot11SecurityMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SecurityMode, sizeof(enum tt__Dot11SecurityMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Dot11SecurityMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Dot11SecurityMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11SecurityMode, SOAP_TYPE_tt__Dot11SecurityMode, sizeof(enum tt__Dot11SecurityMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Dot11SecurityMode * SOAP_FMAC4 soap_new_tt__Dot11SecurityMode(struct soap *soap, int n) -{ - enum tt__Dot11SecurityMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Dot11SecurityMode))); - for (enum tt__Dot11SecurityMode *p = a; p && n--; ++p) - soap_default_tt__Dot11SecurityMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11SecurityMode(struct soap *soap, const enum tt__Dot11SecurityMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11SecurityMode(soap, tag ? tag : "tt:Dot11SecurityMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Dot11SecurityMode * SOAP_FMAC4 soap_get_tt__Dot11SecurityMode(struct soap *soap, enum tt__Dot11SecurityMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SecurityMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Dot11StationMode[] = -{ { (LONG64)tt__Dot11StationMode__Ad_hoc, "Ad-hoc" }, - { (LONG64)tt__Dot11StationMode__Infrastructure, "Infrastructure" }, - { (LONG64)tt__Dot11StationMode__Extended, "Extended" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11StationMode2s(struct soap *soap, enum tt__Dot11StationMode n) -{ - const char *s = soap_code_str(soap_codes_tt__Dot11StationMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11StationMode(struct soap *soap, const char *tag, int id, const enum tt__Dot11StationMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11StationMode), type) || soap_send(soap, soap_tt__Dot11StationMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11StationMode(struct soap *soap, const char *s, enum tt__Dot11StationMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Dot11StationMode, s); - if (map) - *a = (enum tt__Dot11StationMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__Dot11StationMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Dot11StationMode * SOAP_FMAC4 soap_in_tt__Dot11StationMode(struct soap *soap, const char *tag, enum tt__Dot11StationMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Dot11StationMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11StationMode, sizeof(enum tt__Dot11StationMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Dot11StationMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Dot11StationMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11StationMode, SOAP_TYPE_tt__Dot11StationMode, sizeof(enum tt__Dot11StationMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Dot11StationMode * SOAP_FMAC4 soap_new_tt__Dot11StationMode(struct soap *soap, int n) -{ - enum tt__Dot11StationMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Dot11StationMode))); - for (enum tt__Dot11StationMode *p = a; p && n--; ++p) - soap_default_tt__Dot11StationMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11StationMode(struct soap *soap, const enum tt__Dot11StationMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11StationMode(soap, tag ? tag : "tt:Dot11StationMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Dot11StationMode * SOAP_FMAC4 soap_get_tt__Dot11StationMode(struct soap *soap, enum tt__Dot11StationMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11StationMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__DynamicDNSType[] = -{ { (LONG64)tt__DynamicDNSType__NoUpdate, "NoUpdate" }, - { (LONG64)tt__DynamicDNSType__ClientUpdates, "ClientUpdates" }, - { (LONG64)tt__DynamicDNSType__ServerUpdates, "ServerUpdates" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DynamicDNSType2s(struct soap *soap, enum tt__DynamicDNSType n) -{ - const char *s = soap_code_str(soap_codes_tt__DynamicDNSType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSType(struct soap *soap, const char *tag, int id, const enum tt__DynamicDNSType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DynamicDNSType), type) || soap_send(soap, soap_tt__DynamicDNSType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DynamicDNSType(struct soap *soap, const char *s, enum tt__DynamicDNSType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__DynamicDNSType, s); - if (map) - *a = (enum tt__DynamicDNSType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__DynamicDNSType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__DynamicDNSType * SOAP_FMAC4 soap_in_tt__DynamicDNSType(struct soap *soap, const char *tag, enum tt__DynamicDNSType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__DynamicDNSType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DynamicDNSType, sizeof(enum tt__DynamicDNSType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__DynamicDNSType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__DynamicDNSType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DynamicDNSType, SOAP_TYPE_tt__DynamicDNSType, sizeof(enum tt__DynamicDNSType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__DynamicDNSType * SOAP_FMAC4 soap_new_tt__DynamicDNSType(struct soap *soap, int n) -{ - enum tt__DynamicDNSType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__DynamicDNSType))); - for (enum tt__DynamicDNSType *p = a; p && n--; ++p) - soap_default_tt__DynamicDNSType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DynamicDNSType(struct soap *soap, const enum tt__DynamicDNSType *a, const char *tag, const char *type) -{ - if (soap_out_tt__DynamicDNSType(soap, tag ? tag : "tt:DynamicDNSType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__DynamicDNSType * SOAP_FMAC4 soap_get_tt__DynamicDNSType(struct soap *soap, enum tt__DynamicDNSType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DynamicDNSType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__IPAddressFilterType[] = -{ { (LONG64)tt__IPAddressFilterType__Allow, "Allow" }, - { (LONG64)tt__IPAddressFilterType__Deny, "Deny" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IPAddressFilterType2s(struct soap *soap, enum tt__IPAddressFilterType n) -{ - const char *s = soap_code_str(soap_codes_tt__IPAddressFilterType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilterType(struct soap *soap, const char *tag, int id, const enum tt__IPAddressFilterType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPAddressFilterType), type) || soap_send(soap, soap_tt__IPAddressFilterType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IPAddressFilterType(struct soap *soap, const char *s, enum tt__IPAddressFilterType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__IPAddressFilterType, s); - if (map) - *a = (enum tt__IPAddressFilterType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__IPAddressFilterType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__IPAddressFilterType * SOAP_FMAC4 soap_in_tt__IPAddressFilterType(struct soap *soap, const char *tag, enum tt__IPAddressFilterType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__IPAddressFilterType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPAddressFilterType, sizeof(enum tt__IPAddressFilterType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__IPAddressFilterType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__IPAddressFilterType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPAddressFilterType, SOAP_TYPE_tt__IPAddressFilterType, sizeof(enum tt__IPAddressFilterType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__IPAddressFilterType * SOAP_FMAC4 soap_new_tt__IPAddressFilterType(struct soap *soap, int n) -{ - enum tt__IPAddressFilterType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__IPAddressFilterType))); - for (enum tt__IPAddressFilterType *p = a; p && n--; ++p) - soap_default_tt__IPAddressFilterType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IPAddressFilterType(struct soap *soap, const enum tt__IPAddressFilterType *a, const char *tag, const char *type) -{ - if (soap_out_tt__IPAddressFilterType(soap, tag ? tag : "tt:IPAddressFilterType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__IPAddressFilterType * SOAP_FMAC4 soap_get_tt__IPAddressFilterType(struct soap *soap, enum tt__IPAddressFilterType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPAddressFilterType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__IPType[] = -{ { (LONG64)tt__IPType__IPv4, "IPv4" }, - { (LONG64)tt__IPType__IPv6, "IPv6" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IPType2s(struct soap *soap, enum tt__IPType n) -{ - const char *s = soap_code_str(soap_codes_tt__IPType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPType(struct soap *soap, const char *tag, int id, const enum tt__IPType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPType), type) || soap_send(soap, soap_tt__IPType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IPType(struct soap *soap, const char *s, enum tt__IPType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__IPType, s); - if (map) - *a = (enum tt__IPType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__IPType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__IPType * SOAP_FMAC4 soap_in_tt__IPType(struct soap *soap, const char *tag, enum tt__IPType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__IPType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPType, sizeof(enum tt__IPType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__IPType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__IPType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPType, SOAP_TYPE_tt__IPType, sizeof(enum tt__IPType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__IPType * SOAP_FMAC4 soap_new_tt__IPType(struct soap *soap, int n) -{ - enum tt__IPType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__IPType))); - for (enum tt__IPType *p = a; p && n--; ++p) - soap_default_tt__IPType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IPType(struct soap *soap, const enum tt__IPType *a, const char *tag, const char *type) -{ - if (soap_out_tt__IPType(soap, tag ? tag : "tt:IPType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__IPType * SOAP_FMAC4 soap_get_tt__IPType(struct soap *soap, enum tt__IPType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__NetworkHostType[] = -{ { (LONG64)tt__NetworkHostType__IPv4, "IPv4" }, - { (LONG64)tt__NetworkHostType__IPv6, "IPv6" }, - { (LONG64)tt__NetworkHostType__DNS, "DNS" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__NetworkHostType2s(struct soap *soap, enum tt__NetworkHostType n) -{ - const char *s = soap_code_str(soap_codes_tt__NetworkHostType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHostType(struct soap *soap, const char *tag, int id, const enum tt__NetworkHostType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkHostType), type) || soap_send(soap, soap_tt__NetworkHostType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__NetworkHostType(struct soap *soap, const char *s, enum tt__NetworkHostType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__NetworkHostType, s); - if (map) - *a = (enum tt__NetworkHostType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__NetworkHostType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__NetworkHostType * SOAP_FMAC4 soap_in_tt__NetworkHostType(struct soap *soap, const char *tag, enum tt__NetworkHostType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__NetworkHostType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkHostType, sizeof(enum tt__NetworkHostType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__NetworkHostType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__NetworkHostType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkHostType, SOAP_TYPE_tt__NetworkHostType, sizeof(enum tt__NetworkHostType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__NetworkHostType * SOAP_FMAC4 soap_new_tt__NetworkHostType(struct soap *soap, int n) -{ - enum tt__NetworkHostType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__NetworkHostType))); - for (enum tt__NetworkHostType *p = a; p && n--; ++p) - soap_default_tt__NetworkHostType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__NetworkHostType(struct soap *soap, const enum tt__NetworkHostType *a, const char *tag, const char *type) -{ - if (soap_out_tt__NetworkHostType(soap, tag ? tag : "tt:NetworkHostType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__NetworkHostType * SOAP_FMAC4 soap_get_tt__NetworkHostType(struct soap *soap, enum tt__NetworkHostType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkHostType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__NetworkProtocolType[] = -{ { (LONG64)tt__NetworkProtocolType__HTTP, "HTTP" }, - { (LONG64)tt__NetworkProtocolType__HTTPS, "HTTPS" }, - { (LONG64)tt__NetworkProtocolType__RTSP, "RTSP" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__NetworkProtocolType2s(struct soap *soap, enum tt__NetworkProtocolType n) -{ - const char *s = soap_code_str(soap_codes_tt__NetworkProtocolType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocolType(struct soap *soap, const char *tag, int id, const enum tt__NetworkProtocolType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkProtocolType), type) || soap_send(soap, soap_tt__NetworkProtocolType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__NetworkProtocolType(struct soap *soap, const char *s, enum tt__NetworkProtocolType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__NetworkProtocolType, s); - if (map) - *a = (enum tt__NetworkProtocolType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__NetworkProtocolType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__NetworkProtocolType * SOAP_FMAC4 soap_in_tt__NetworkProtocolType(struct soap *soap, const char *tag, enum tt__NetworkProtocolType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__NetworkProtocolType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkProtocolType, sizeof(enum tt__NetworkProtocolType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__NetworkProtocolType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__NetworkProtocolType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkProtocolType, SOAP_TYPE_tt__NetworkProtocolType, sizeof(enum tt__NetworkProtocolType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__NetworkProtocolType * SOAP_FMAC4 soap_new_tt__NetworkProtocolType(struct soap *soap, int n) -{ - enum tt__NetworkProtocolType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__NetworkProtocolType))); - for (enum tt__NetworkProtocolType *p = a; p && n--; ++p) - soap_default_tt__NetworkProtocolType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__NetworkProtocolType(struct soap *soap, const enum tt__NetworkProtocolType *a, const char *tag, const char *type) -{ - if (soap_out_tt__NetworkProtocolType(soap, tag ? tag : "tt:NetworkProtocolType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__NetworkProtocolType * SOAP_FMAC4 soap_get_tt__NetworkProtocolType(struct soap *soap, enum tt__NetworkProtocolType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkProtocolType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__IPv6DHCPConfiguration[] = -{ { (LONG64)tt__IPv6DHCPConfiguration__Auto, "Auto" }, - { (LONG64)tt__IPv6DHCPConfiguration__Stateful, "Stateful" }, - { (LONG64)tt__IPv6DHCPConfiguration__Stateless, "Stateless" }, - { (LONG64)tt__IPv6DHCPConfiguration__Off, "Off" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IPv6DHCPConfiguration2s(struct soap *soap, enum tt__IPv6DHCPConfiguration n) -{ - const char *s = soap_code_str(soap_codes_tt__IPv6DHCPConfiguration, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6DHCPConfiguration(struct soap *soap, const char *tag, int id, const enum tt__IPv6DHCPConfiguration *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv6DHCPConfiguration), type) || soap_send(soap, soap_tt__IPv6DHCPConfiguration2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IPv6DHCPConfiguration(struct soap *soap, const char *s, enum tt__IPv6DHCPConfiguration *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__IPv6DHCPConfiguration, s); - if (map) - *a = (enum tt__IPv6DHCPConfiguration)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__IPv6DHCPConfiguration)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration * SOAP_FMAC4 soap_in_tt__IPv6DHCPConfiguration(struct soap *soap, const char *tag, enum tt__IPv6DHCPConfiguration *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__IPv6DHCPConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv6DHCPConfiguration, sizeof(enum tt__IPv6DHCPConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__IPv6DHCPConfiguration(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__IPv6DHCPConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv6DHCPConfiguration, SOAP_TYPE_tt__IPv6DHCPConfiguration, sizeof(enum tt__IPv6DHCPConfiguration), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration * SOAP_FMAC4 soap_new_tt__IPv6DHCPConfiguration(struct soap *soap, int n) -{ - enum tt__IPv6DHCPConfiguration *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__IPv6DHCPConfiguration))); - for (enum tt__IPv6DHCPConfiguration *p = a; p && n--; ++p) - soap_default_tt__IPv6DHCPConfiguration(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IPv6DHCPConfiguration(struct soap *soap, const enum tt__IPv6DHCPConfiguration *a, const char *tag, const char *type) -{ - if (soap_out_tt__IPv6DHCPConfiguration(soap, tag ? tag : "tt:IPv6DHCPConfiguration", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration * SOAP_FMAC4 soap_get_tt__IPv6DHCPConfiguration(struct soap *soap, enum tt__IPv6DHCPConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv6DHCPConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Duplex[] = -{ { (LONG64)tt__Duplex__Full, "Full" }, - { (LONG64)tt__Duplex__Half, "Half" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Duplex2s(struct soap *soap, enum tt__Duplex n) -{ - const char *s = soap_code_str(soap_codes_tt__Duplex, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Duplex(struct soap *soap, const char *tag, int id, const enum tt__Duplex *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Duplex), type) || soap_send(soap, soap_tt__Duplex2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Duplex(struct soap *soap, const char *s, enum tt__Duplex *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Duplex, s); - if (map) - *a = (enum tt__Duplex)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__Duplex)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Duplex * SOAP_FMAC4 soap_in_tt__Duplex(struct soap *soap, const char *tag, enum tt__Duplex *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Duplex*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Duplex, sizeof(enum tt__Duplex), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Duplex(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Duplex *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Duplex, SOAP_TYPE_tt__Duplex, sizeof(enum tt__Duplex), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Duplex * SOAP_FMAC4 soap_new_tt__Duplex(struct soap *soap, int n) -{ - enum tt__Duplex *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Duplex))); - for (enum tt__Duplex *p = a; p && n--; ++p) - soap_default_tt__Duplex(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Duplex(struct soap *soap, const enum tt__Duplex *a, const char *tag, const char *type) -{ - if (soap_out_tt__Duplex(soap, tag ? tag : "tt:Duplex", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Duplex * SOAP_FMAC4 soap_get_tt__Duplex(struct soap *soap, enum tt__Duplex *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Duplex(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__DiscoveryMode[] = -{ { (LONG64)tt__DiscoveryMode__Discoverable, "Discoverable" }, - { (LONG64)tt__DiscoveryMode__NonDiscoverable, "NonDiscoverable" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DiscoveryMode2s(struct soap *soap, enum tt__DiscoveryMode n) -{ - const char *s = soap_code_str(soap_codes_tt__DiscoveryMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DiscoveryMode(struct soap *soap, const char *tag, int id, const enum tt__DiscoveryMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DiscoveryMode), type) || soap_send(soap, soap_tt__DiscoveryMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DiscoveryMode(struct soap *soap, const char *s, enum tt__DiscoveryMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__DiscoveryMode, s); - if (map) - *a = (enum tt__DiscoveryMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__DiscoveryMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__DiscoveryMode * SOAP_FMAC4 soap_in_tt__DiscoveryMode(struct soap *soap, const char *tag, enum tt__DiscoveryMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__DiscoveryMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DiscoveryMode, sizeof(enum tt__DiscoveryMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__DiscoveryMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__DiscoveryMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DiscoveryMode, SOAP_TYPE_tt__DiscoveryMode, sizeof(enum tt__DiscoveryMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__DiscoveryMode * SOAP_FMAC4 soap_new_tt__DiscoveryMode(struct soap *soap, int n) -{ - enum tt__DiscoveryMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__DiscoveryMode))); - for (enum tt__DiscoveryMode *p = a; p && n--; ++p) - soap_default_tt__DiscoveryMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DiscoveryMode(struct soap *soap, const enum tt__DiscoveryMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__DiscoveryMode(soap, tag ? tag : "tt:DiscoveryMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__DiscoveryMode * SOAP_FMAC4 soap_get_tt__DiscoveryMode(struct soap *soap, enum tt__DiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ScopeDefinition[] = -{ { (LONG64)tt__ScopeDefinition__Fixed, "Fixed" }, - { (LONG64)tt__ScopeDefinition__Configurable, "Configurable" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ScopeDefinition2s(struct soap *soap, enum tt__ScopeDefinition n) -{ - const char *s = soap_code_str(soap_codes_tt__ScopeDefinition, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ScopeDefinition(struct soap *soap, const char *tag, int id, const enum tt__ScopeDefinition *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ScopeDefinition), type) || soap_send(soap, soap_tt__ScopeDefinition2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ScopeDefinition(struct soap *soap, const char *s, enum tt__ScopeDefinition *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ScopeDefinition, s); - if (map) - *a = (enum tt__ScopeDefinition)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__ScopeDefinition)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ScopeDefinition * SOAP_FMAC4 soap_in_tt__ScopeDefinition(struct soap *soap, const char *tag, enum tt__ScopeDefinition *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ScopeDefinition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ScopeDefinition, sizeof(enum tt__ScopeDefinition), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ScopeDefinition(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ScopeDefinition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ScopeDefinition, SOAP_TYPE_tt__ScopeDefinition, sizeof(enum tt__ScopeDefinition), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ScopeDefinition * SOAP_FMAC4 soap_new_tt__ScopeDefinition(struct soap *soap, int n) -{ - enum tt__ScopeDefinition *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ScopeDefinition))); - for (enum tt__ScopeDefinition *p = a; p && n--; ++p) - soap_default_tt__ScopeDefinition(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ScopeDefinition(struct soap *soap, const enum tt__ScopeDefinition *a, const char *tag, const char *type) -{ - if (soap_out_tt__ScopeDefinition(soap, tag ? tag : "tt:ScopeDefinition", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ScopeDefinition * SOAP_FMAC4 soap_get_tt__ScopeDefinition(struct soap *soap, enum tt__ScopeDefinition *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ScopeDefinition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__TransportProtocol[] = -{ { (LONG64)tt__TransportProtocol__UDP, "UDP" }, - { (LONG64)tt__TransportProtocol__TCP, "TCP" }, - { (LONG64)tt__TransportProtocol__RTSP, "RTSP" }, - { (LONG64)tt__TransportProtocol__HTTP, "HTTP" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__TransportProtocol2s(struct soap *soap, enum tt__TransportProtocol n) -{ - const char *s = soap_code_str(soap_codes_tt__TransportProtocol, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TransportProtocol(struct soap *soap, const char *tag, int id, const enum tt__TransportProtocol *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TransportProtocol), type) || soap_send(soap, soap_tt__TransportProtocol2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__TransportProtocol(struct soap *soap, const char *s, enum tt__TransportProtocol *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__TransportProtocol, s); - if (map) - *a = (enum tt__TransportProtocol)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__TransportProtocol)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__TransportProtocol * SOAP_FMAC4 soap_in_tt__TransportProtocol(struct soap *soap, const char *tag, enum tt__TransportProtocol *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__TransportProtocol*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TransportProtocol, sizeof(enum tt__TransportProtocol), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__TransportProtocol(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__TransportProtocol *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TransportProtocol, SOAP_TYPE_tt__TransportProtocol, sizeof(enum tt__TransportProtocol), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__TransportProtocol * SOAP_FMAC4 soap_new_tt__TransportProtocol(struct soap *soap, int n) -{ - enum tt__TransportProtocol *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__TransportProtocol))); - for (enum tt__TransportProtocol *p = a; p && n--; ++p) - soap_default_tt__TransportProtocol(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__TransportProtocol(struct soap *soap, const enum tt__TransportProtocol *a, const char *tag, const char *type) -{ - if (soap_out_tt__TransportProtocol(soap, tag ? tag : "tt:TransportProtocol", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__TransportProtocol * SOAP_FMAC4 soap_get_tt__TransportProtocol(struct soap *soap, enum tt__TransportProtocol *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TransportProtocol(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__StreamType[] = -{ { (LONG64)tt__StreamType__RTP_Unicast, "RTP-Unicast" }, - { (LONG64)tt__StreamType__RTP_Multicast, "RTP-Multicast" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__StreamType2s(struct soap *soap, enum tt__StreamType n) -{ - const char *s = soap_code_str(soap_codes_tt__StreamType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StreamType(struct soap *soap, const char *tag, int id, const enum tt__StreamType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__StreamType), type) || soap_send(soap, soap_tt__StreamType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__StreamType(struct soap *soap, const char *s, enum tt__StreamType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__StreamType, s); - if (map) - *a = (enum tt__StreamType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__StreamType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__StreamType * SOAP_FMAC4 soap_in_tt__StreamType(struct soap *soap, const char *tag, enum tt__StreamType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__StreamType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__StreamType, sizeof(enum tt__StreamType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__StreamType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__StreamType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__StreamType, SOAP_TYPE_tt__StreamType, sizeof(enum tt__StreamType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__StreamType * SOAP_FMAC4 soap_new_tt__StreamType(struct soap *soap, int n) -{ - enum tt__StreamType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__StreamType))); - for (enum tt__StreamType *p = a; p && n--; ++p) - soap_default_tt__StreamType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__StreamType(struct soap *soap, const enum tt__StreamType *a, const char *tag, const char *type) -{ - if (soap_out_tt__StreamType(soap, tag ? tag : "tt:StreamType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__StreamType * SOAP_FMAC4 soap_get_tt__StreamType(struct soap *soap, enum tt__StreamType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__StreamType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__MetadataCompressionType[] = -{ { (LONG64)tt__MetadataCompressionType__None, "None" }, - { (LONG64)tt__MetadataCompressionType__GZIP, "GZIP" }, - { (LONG64)tt__MetadataCompressionType__EXI, "EXI" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__MetadataCompressionType2s(struct soap *soap, enum tt__MetadataCompressionType n) -{ - const char *s = soap_code_str(soap_codes_tt__MetadataCompressionType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataCompressionType(struct soap *soap, const char *tag, int id, const enum tt__MetadataCompressionType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataCompressionType), type) || soap_send(soap, soap_tt__MetadataCompressionType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__MetadataCompressionType(struct soap *soap, const char *s, enum tt__MetadataCompressionType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__MetadataCompressionType, s); - if (map) - *a = (enum tt__MetadataCompressionType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__MetadataCompressionType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__MetadataCompressionType * SOAP_FMAC4 soap_in_tt__MetadataCompressionType(struct soap *soap, const char *tag, enum tt__MetadataCompressionType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__MetadataCompressionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataCompressionType, sizeof(enum tt__MetadataCompressionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__MetadataCompressionType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__MetadataCompressionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataCompressionType, SOAP_TYPE_tt__MetadataCompressionType, sizeof(enum tt__MetadataCompressionType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__MetadataCompressionType * SOAP_FMAC4 soap_new_tt__MetadataCompressionType(struct soap *soap, int n) -{ - enum tt__MetadataCompressionType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__MetadataCompressionType))); - for (enum tt__MetadataCompressionType *p = a; p && n--; ++p) - soap_default_tt__MetadataCompressionType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__MetadataCompressionType(struct soap *soap, const enum tt__MetadataCompressionType *a, const char *tag, const char *type) -{ - if (soap_out_tt__MetadataCompressionType(soap, tag ? tag : "tt:MetadataCompressionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__MetadataCompressionType * SOAP_FMAC4 soap_get_tt__MetadataCompressionType(struct soap *soap, enum tt__MetadataCompressionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataCompressionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__AudioEncodingMimeNames[] = -{ { (LONG64)tt__AudioEncodingMimeNames__PCMU, "PCMU" }, - { (LONG64)tt__AudioEncodingMimeNames__G726, "G726" }, - { (LONG64)tt__AudioEncodingMimeNames__MP4A_LATM, "MP4A-LATM" }, - { (LONG64)tt__AudioEncodingMimeNames__mpeg4_generic, "mpeg4-generic" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AudioEncodingMimeNames2s(struct soap *soap, enum tt__AudioEncodingMimeNames n) -{ - const char *s = soap_code_str(soap_codes_tt__AudioEncodingMimeNames, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncodingMimeNames(struct soap *soap, const char *tag, int id, const enum tt__AudioEncodingMimeNames *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioEncodingMimeNames), type) || soap_send(soap, soap_tt__AudioEncodingMimeNames2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AudioEncodingMimeNames(struct soap *soap, const char *s, enum tt__AudioEncodingMimeNames *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__AudioEncodingMimeNames, s); - if (map) - *a = (enum tt__AudioEncodingMimeNames)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__AudioEncodingMimeNames)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__AudioEncodingMimeNames * SOAP_FMAC4 soap_in_tt__AudioEncodingMimeNames(struct soap *soap, const char *tag, enum tt__AudioEncodingMimeNames *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__AudioEncodingMimeNames*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncodingMimeNames, sizeof(enum tt__AudioEncodingMimeNames), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__AudioEncodingMimeNames(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__AudioEncodingMimeNames *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioEncodingMimeNames, SOAP_TYPE_tt__AudioEncodingMimeNames, sizeof(enum tt__AudioEncodingMimeNames), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__AudioEncodingMimeNames * SOAP_FMAC4 soap_new_tt__AudioEncodingMimeNames(struct soap *soap, int n) -{ - enum tt__AudioEncodingMimeNames *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__AudioEncodingMimeNames))); - for (enum tt__AudioEncodingMimeNames *p = a; p && n--; ++p) - soap_default_tt__AudioEncodingMimeNames(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AudioEncodingMimeNames(struct soap *soap, const enum tt__AudioEncodingMimeNames *a, const char *tag, const char *type) -{ - if (soap_out_tt__AudioEncodingMimeNames(soap, tag ? tag : "tt:AudioEncodingMimeNames", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__AudioEncodingMimeNames * SOAP_FMAC4 soap_get_tt__AudioEncodingMimeNames(struct soap *soap, enum tt__AudioEncodingMimeNames *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncodingMimeNames(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__AudioEncoding[] = -{ { (LONG64)tt__AudioEncoding__G711, "G711" }, - { (LONG64)tt__AudioEncoding__G726, "G726" }, - { (LONG64)tt__AudioEncoding__AAC, "AAC" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AudioEncoding2s(struct soap *soap, enum tt__AudioEncoding n) -{ - const char *s = soap_code_str(soap_codes_tt__AudioEncoding, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoding(struct soap *soap, const char *tag, int id, const enum tt__AudioEncoding *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioEncoding), type) || soap_send(soap, soap_tt__AudioEncoding2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AudioEncoding(struct soap *soap, const char *s, enum tt__AudioEncoding *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__AudioEncoding, s); - if (map) - *a = (enum tt__AudioEncoding)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__AudioEncoding)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__AudioEncoding * SOAP_FMAC4 soap_in_tt__AudioEncoding(struct soap *soap, const char *tag, enum tt__AudioEncoding *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__AudioEncoding*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncoding, sizeof(enum tt__AudioEncoding), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__AudioEncoding(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__AudioEncoding *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioEncoding, SOAP_TYPE_tt__AudioEncoding, sizeof(enum tt__AudioEncoding), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__AudioEncoding * SOAP_FMAC4 soap_new_tt__AudioEncoding(struct soap *soap, int n) -{ - enum tt__AudioEncoding *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__AudioEncoding))); - for (enum tt__AudioEncoding *p = a; p && n--; ++p) - soap_default_tt__AudioEncoding(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AudioEncoding(struct soap *soap, const enum tt__AudioEncoding *a, const char *tag, const char *type) -{ - if (soap_out_tt__AudioEncoding(soap, tag ? tag : "tt:AudioEncoding", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__AudioEncoding * SOAP_FMAC4 soap_get_tt__AudioEncoding(struct soap *soap, enum tt__AudioEncoding *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncoding(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__VideoEncodingProfiles[] = -{ { (LONG64)tt__VideoEncodingProfiles__Simple, "Simple" }, - { (LONG64)tt__VideoEncodingProfiles__AdvancedSimple, "AdvancedSimple" }, - { (LONG64)tt__VideoEncodingProfiles__Baseline, "Baseline" }, - { (LONG64)tt__VideoEncodingProfiles__Main, "Main" }, - { (LONG64)tt__VideoEncodingProfiles__Main10, "Main10" }, - { (LONG64)tt__VideoEncodingProfiles__Extended, "Extended" }, - { (LONG64)tt__VideoEncodingProfiles__High, "High" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__VideoEncodingProfiles2s(struct soap *soap, enum tt__VideoEncodingProfiles n) -{ - const char *s = soap_code_str(soap_codes_tt__VideoEncodingProfiles, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingProfiles(struct soap *soap, const char *tag, int id, const enum tt__VideoEncodingProfiles *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncodingProfiles), type) || soap_send(soap, soap_tt__VideoEncodingProfiles2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__VideoEncodingProfiles(struct soap *soap, const char *s, enum tt__VideoEncodingProfiles *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__VideoEncodingProfiles, s); - if (map) - *a = (enum tt__VideoEncodingProfiles)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 6) - return soap->error = SOAP_TYPE; - *a = (enum tt__VideoEncodingProfiles)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__VideoEncodingProfiles * SOAP_FMAC4 soap_in_tt__VideoEncodingProfiles(struct soap *soap, const char *tag, enum tt__VideoEncodingProfiles *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__VideoEncodingProfiles*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncodingProfiles, sizeof(enum tt__VideoEncodingProfiles), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__VideoEncodingProfiles(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__VideoEncodingProfiles *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncodingProfiles, SOAP_TYPE_tt__VideoEncodingProfiles, sizeof(enum tt__VideoEncodingProfiles), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__VideoEncodingProfiles * SOAP_FMAC4 soap_new_tt__VideoEncodingProfiles(struct soap *soap, int n) -{ - enum tt__VideoEncodingProfiles *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__VideoEncodingProfiles))); - for (enum tt__VideoEncodingProfiles *p = a; p && n--; ++p) - soap_default_tt__VideoEncodingProfiles(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__VideoEncodingProfiles(struct soap *soap, const enum tt__VideoEncodingProfiles *a, const char *tag, const char *type) -{ - if (soap_out_tt__VideoEncodingProfiles(soap, tag ? tag : "tt:VideoEncodingProfiles", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__VideoEncodingProfiles * SOAP_FMAC4 soap_get_tt__VideoEncodingProfiles(struct soap *soap, enum tt__VideoEncodingProfiles *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncodingProfiles(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__VideoEncodingMimeNames[] = -{ { (LONG64)tt__VideoEncodingMimeNames__JPEG, "JPEG" }, - { (LONG64)tt__VideoEncodingMimeNames__MPV4_ES, "MPV4-ES" }, - { (LONG64)tt__VideoEncodingMimeNames__H264, "H264" }, - { (LONG64)tt__VideoEncodingMimeNames__H265, "H265" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__VideoEncodingMimeNames2s(struct soap *soap, enum tt__VideoEncodingMimeNames n) -{ - const char *s = soap_code_str(soap_codes_tt__VideoEncodingMimeNames, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingMimeNames(struct soap *soap, const char *tag, int id, const enum tt__VideoEncodingMimeNames *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncodingMimeNames), type) || soap_send(soap, soap_tt__VideoEncodingMimeNames2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__VideoEncodingMimeNames(struct soap *soap, const char *s, enum tt__VideoEncodingMimeNames *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__VideoEncodingMimeNames, s); - if (map) - *a = (enum tt__VideoEncodingMimeNames)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__VideoEncodingMimeNames)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__VideoEncodingMimeNames * SOAP_FMAC4 soap_in_tt__VideoEncodingMimeNames(struct soap *soap, const char *tag, enum tt__VideoEncodingMimeNames *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__VideoEncodingMimeNames*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncodingMimeNames, sizeof(enum tt__VideoEncodingMimeNames), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__VideoEncodingMimeNames(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__VideoEncodingMimeNames *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncodingMimeNames, SOAP_TYPE_tt__VideoEncodingMimeNames, sizeof(enum tt__VideoEncodingMimeNames), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__VideoEncodingMimeNames * SOAP_FMAC4 soap_new_tt__VideoEncodingMimeNames(struct soap *soap, int n) -{ - enum tt__VideoEncodingMimeNames *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__VideoEncodingMimeNames))); - for (enum tt__VideoEncodingMimeNames *p = a; p && n--; ++p) - soap_default_tt__VideoEncodingMimeNames(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__VideoEncodingMimeNames(struct soap *soap, const enum tt__VideoEncodingMimeNames *a, const char *tag, const char *type) -{ - if (soap_out_tt__VideoEncodingMimeNames(soap, tag ? tag : "tt:VideoEncodingMimeNames", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__VideoEncodingMimeNames * SOAP_FMAC4 soap_get_tt__VideoEncodingMimeNames(struct soap *soap, enum tt__VideoEncodingMimeNames *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncodingMimeNames(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__H264Profile[] = -{ { (LONG64)tt__H264Profile__Baseline, "Baseline" }, - { (LONG64)tt__H264Profile__Main, "Main" }, - { (LONG64)tt__H264Profile__Extended, "Extended" }, - { (LONG64)tt__H264Profile__High, "High" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__H264Profile2s(struct soap *soap, enum tt__H264Profile n) -{ - const char *s = soap_code_str(soap_codes_tt__H264Profile, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Profile(struct soap *soap, const char *tag, int id, const enum tt__H264Profile *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__H264Profile), type) || soap_send(soap, soap_tt__H264Profile2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__H264Profile(struct soap *soap, const char *s, enum tt__H264Profile *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__H264Profile, s); - if (map) - *a = (enum tt__H264Profile)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 3) - return soap->error = SOAP_TYPE; - *a = (enum tt__H264Profile)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__H264Profile * SOAP_FMAC4 soap_in_tt__H264Profile(struct soap *soap, const char *tag, enum tt__H264Profile *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__H264Profile*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__H264Profile, sizeof(enum tt__H264Profile), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__H264Profile(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__H264Profile *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__H264Profile, SOAP_TYPE_tt__H264Profile, sizeof(enum tt__H264Profile), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__H264Profile * SOAP_FMAC4 soap_new_tt__H264Profile(struct soap *soap, int n) -{ - enum tt__H264Profile *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__H264Profile))); - for (enum tt__H264Profile *p = a; p && n--; ++p) - soap_default_tt__H264Profile(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__H264Profile(struct soap *soap, const enum tt__H264Profile *a, const char *tag, const char *type) -{ - if (soap_out_tt__H264Profile(soap, tag ? tag : "tt:H264Profile", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__H264Profile * SOAP_FMAC4 soap_get_tt__H264Profile(struct soap *soap, enum tt__H264Profile *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__H264Profile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Mpeg4Profile[] = -{ { (LONG64)tt__Mpeg4Profile__SP, "SP" }, - { (LONG64)tt__Mpeg4Profile__ASP, "ASP" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Mpeg4Profile2s(struct soap *soap, enum tt__Mpeg4Profile n) -{ - const char *s = soap_code_str(soap_codes_tt__Mpeg4Profile, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Profile(struct soap *soap, const char *tag, int id, const enum tt__Mpeg4Profile *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Mpeg4Profile), type) || soap_send(soap, soap_tt__Mpeg4Profile2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Mpeg4Profile(struct soap *soap, const char *s, enum tt__Mpeg4Profile *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Mpeg4Profile, s); - if (map) - *a = (enum tt__Mpeg4Profile)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__Mpeg4Profile)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Mpeg4Profile * SOAP_FMAC4 soap_in_tt__Mpeg4Profile(struct soap *soap, const char *tag, enum tt__Mpeg4Profile *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Mpeg4Profile*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Mpeg4Profile, sizeof(enum tt__Mpeg4Profile), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Mpeg4Profile(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Mpeg4Profile *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Mpeg4Profile, SOAP_TYPE_tt__Mpeg4Profile, sizeof(enum tt__Mpeg4Profile), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Mpeg4Profile * SOAP_FMAC4 soap_new_tt__Mpeg4Profile(struct soap *soap, int n) -{ - enum tt__Mpeg4Profile *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Mpeg4Profile))); - for (enum tt__Mpeg4Profile *p = a; p && n--; ++p) - soap_default_tt__Mpeg4Profile(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Mpeg4Profile(struct soap *soap, const enum tt__Mpeg4Profile *a, const char *tag, const char *type) -{ - if (soap_out_tt__Mpeg4Profile(soap, tag ? tag : "tt:Mpeg4Profile", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Mpeg4Profile * SOAP_FMAC4 soap_get_tt__Mpeg4Profile(struct soap *soap, enum tt__Mpeg4Profile *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Mpeg4Profile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__VideoEncoding[] = -{ { (LONG64)tt__VideoEncoding__JPEG, "JPEG" }, - { (LONG64)tt__VideoEncoding__MPEG4, "MPEG4" }, - { (LONG64)tt__VideoEncoding__H264, "H264" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__VideoEncoding2s(struct soap *soap, enum tt__VideoEncoding n) -{ - const char *s = soap_code_str(soap_codes_tt__VideoEncoding, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoding(struct soap *soap, const char *tag, int id, const enum tt__VideoEncoding *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncoding), type) || soap_send(soap, soap_tt__VideoEncoding2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__VideoEncoding(struct soap *soap, const char *s, enum tt__VideoEncoding *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__VideoEncoding, s); - if (map) - *a = (enum tt__VideoEncoding)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__VideoEncoding)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__VideoEncoding * SOAP_FMAC4 soap_in_tt__VideoEncoding(struct soap *soap, const char *tag, enum tt__VideoEncoding *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__VideoEncoding*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoding, sizeof(enum tt__VideoEncoding), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__VideoEncoding(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__VideoEncoding *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncoding, SOAP_TYPE_tt__VideoEncoding, sizeof(enum tt__VideoEncoding), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__VideoEncoding * SOAP_FMAC4 soap_new_tt__VideoEncoding(struct soap *soap, int n) -{ - enum tt__VideoEncoding *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__VideoEncoding))); - for (enum tt__VideoEncoding *p = a; p && n--; ++p) - soap_default_tt__VideoEncoding(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__VideoEncoding(struct soap *soap, const enum tt__VideoEncoding *a, const char *tag, const char *type) -{ - if (soap_out_tt__VideoEncoding(soap, tag ? tag : "tt:VideoEncoding", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__VideoEncoding * SOAP_FMAC4 soap_get_tt__VideoEncoding(struct soap *soap, enum tt__VideoEncoding *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoding(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__ViewModes[] = -{ { (LONG64)tt__ViewModes__tt_x003aFisheye, "tt:Fisheye" }, - { (LONG64)tt__ViewModes__tt_x003a360Panorama, "tt:360Panorama" }, - { (LONG64)tt__ViewModes__tt_x003a180Panorama, "tt:180Panorama" }, - { (LONG64)tt__ViewModes__tt_x003aQuad, "tt:Quad" }, - { (LONG64)tt__ViewModes__tt_x003aOriginal, "tt:Original" }, - { (LONG64)tt__ViewModes__tt_x003aLeftHalf, "tt:LeftHalf" }, - { (LONG64)tt__ViewModes__tt_x003aRightHalf, "tt:RightHalf" }, - { (LONG64)tt__ViewModes__tt_x003aDewarp, "tt:Dewarp" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ViewModes2s(struct soap *soap, enum tt__ViewModes n) -{ - const char *s = soap_code_str(soap_codes_tt__ViewModes, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ViewModes(struct soap *soap, const char *tag, int id, const enum tt__ViewModes *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ViewModes), type) || soap_send(soap, soap_tt__ViewModes2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ViewModes(struct soap *soap, const char *s, enum tt__ViewModes *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__ViewModes, s); - if (map) - *a = (enum tt__ViewModes)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 7) - return soap->error = SOAP_TYPE; - *a = (enum tt__ViewModes)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__ViewModes * SOAP_FMAC4 soap_in_tt__ViewModes(struct soap *soap, const char *tag, enum tt__ViewModes *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__ViewModes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ViewModes, sizeof(enum tt__ViewModes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__ViewModes(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__ViewModes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ViewModes, SOAP_TYPE_tt__ViewModes, sizeof(enum tt__ViewModes), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__ViewModes * SOAP_FMAC4 soap_new_tt__ViewModes(struct soap *soap, int n) -{ - enum tt__ViewModes *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__ViewModes))); - for (enum tt__ViewModes *p = a; p && n--; ++p) - soap_default_tt__ViewModes(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ViewModes(struct soap *soap, const enum tt__ViewModes *a, const char *tag, const char *type) -{ - if (soap_out_tt__ViewModes(soap, tag ? tag : "tt:ViewModes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__ViewModes * SOAP_FMAC4 soap_get_tt__ViewModes(struct soap *soap, enum tt__ViewModes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ViewModes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__SceneOrientationOption[] = -{ { (LONG64)tt__SceneOrientationOption__Below, "Below" }, - { (LONG64)tt__SceneOrientationOption__Horizon, "Horizon" }, - { (LONG64)tt__SceneOrientationOption__Above, "Above" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SceneOrientationOption2s(struct soap *soap, enum tt__SceneOrientationOption n) -{ - const char *s = soap_code_str(soap_codes_tt__SceneOrientationOption, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationOption(struct soap *soap, const char *tag, int id, const enum tt__SceneOrientationOption *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SceneOrientationOption), type) || soap_send(soap, soap_tt__SceneOrientationOption2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SceneOrientationOption(struct soap *soap, const char *s, enum tt__SceneOrientationOption *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__SceneOrientationOption, s); - if (map) - *a = (enum tt__SceneOrientationOption)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__SceneOrientationOption)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__SceneOrientationOption * SOAP_FMAC4 soap_in_tt__SceneOrientationOption(struct soap *soap, const char *tag, enum tt__SceneOrientationOption *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__SceneOrientationOption*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SceneOrientationOption, sizeof(enum tt__SceneOrientationOption), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__SceneOrientationOption(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__SceneOrientationOption *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SceneOrientationOption, SOAP_TYPE_tt__SceneOrientationOption, sizeof(enum tt__SceneOrientationOption), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__SceneOrientationOption * SOAP_FMAC4 soap_new_tt__SceneOrientationOption(struct soap *soap, int n) -{ - enum tt__SceneOrientationOption *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__SceneOrientationOption))); - for (enum tt__SceneOrientationOption *p = a; p && n--; ++p) - soap_default_tt__SceneOrientationOption(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SceneOrientationOption(struct soap *soap, const enum tt__SceneOrientationOption *a, const char *tag, const char *type) -{ - if (soap_out_tt__SceneOrientationOption(soap, tag ? tag : "tt:SceneOrientationOption", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__SceneOrientationOption * SOAP_FMAC4 soap_get_tt__SceneOrientationOption(struct soap *soap, enum tt__SceneOrientationOption *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SceneOrientationOption(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__SceneOrientationMode[] = -{ { (LONG64)tt__SceneOrientationMode__MANUAL, "MANUAL" }, - { (LONG64)tt__SceneOrientationMode__AUTO, "AUTO" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SceneOrientationMode2s(struct soap *soap, enum tt__SceneOrientationMode n) -{ - const char *s = soap_code_str(soap_codes_tt__SceneOrientationMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationMode(struct soap *soap, const char *tag, int id, const enum tt__SceneOrientationMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SceneOrientationMode), type) || soap_send(soap, soap_tt__SceneOrientationMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SceneOrientationMode(struct soap *soap, const char *s, enum tt__SceneOrientationMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__SceneOrientationMode, s); - if (map) - *a = (enum tt__SceneOrientationMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum tt__SceneOrientationMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__SceneOrientationMode * SOAP_FMAC4 soap_in_tt__SceneOrientationMode(struct soap *soap, const char *tag, enum tt__SceneOrientationMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__SceneOrientationMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SceneOrientationMode, sizeof(enum tt__SceneOrientationMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__SceneOrientationMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__SceneOrientationMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SceneOrientationMode, SOAP_TYPE_tt__SceneOrientationMode, sizeof(enum tt__SceneOrientationMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__SceneOrientationMode * SOAP_FMAC4 soap_new_tt__SceneOrientationMode(struct soap *soap, int n) -{ - enum tt__SceneOrientationMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__SceneOrientationMode))); - for (enum tt__SceneOrientationMode *p = a; p && n--; ++p) - soap_default_tt__SceneOrientationMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SceneOrientationMode(struct soap *soap, const enum tt__SceneOrientationMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__SceneOrientationMode(soap, tag ? tag : "tt:SceneOrientationMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__SceneOrientationMode * SOAP_FMAC4 soap_get_tt__SceneOrientationMode(struct soap *soap, enum tt__SceneOrientationMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SceneOrientationMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__RotateMode[] = -{ { (LONG64)tt__RotateMode__OFF, "OFF" }, - { (LONG64)tt__RotateMode__ON, "ON" }, - { (LONG64)tt__RotateMode__AUTO, "AUTO" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RotateMode2s(struct soap *soap, enum tt__RotateMode n) -{ - const char *s = soap_code_str(soap_codes_tt__RotateMode, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateMode(struct soap *soap, const char *tag, int id, const enum tt__RotateMode *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RotateMode), type) || soap_send(soap, soap_tt__RotateMode2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RotateMode(struct soap *soap, const char *s, enum tt__RotateMode *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__RotateMode, s); - if (map) - *a = (enum tt__RotateMode)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__RotateMode)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__RotateMode * SOAP_FMAC4 soap_in_tt__RotateMode(struct soap *soap, const char *tag, enum tt__RotateMode *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__RotateMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RotateMode, sizeof(enum tt__RotateMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__RotateMode(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__RotateMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RotateMode, SOAP_TYPE_tt__RotateMode, sizeof(enum tt__RotateMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__RotateMode * SOAP_FMAC4 soap_new_tt__RotateMode(struct soap *soap, int n) -{ - enum tt__RotateMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__RotateMode))); - for (enum tt__RotateMode *p = a; p && n--; ++p) - soap_default_tt__RotateMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RotateMode(struct soap *soap, const enum tt__RotateMode *a, const char *tag, const char *type) -{ - if (soap_out_tt__RotateMode(soap, tag ? tag : "tt:RotateMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__RotateMode * SOAP_FMAC4 soap_get_tt__RotateMode(struct soap *soap, enum tt__RotateMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RotateMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__Entity[] = -{ { (LONG64)tt__Entity__Device, "Device" }, - { (LONG64)tt__Entity__VideoSource, "VideoSource" }, - { (LONG64)tt__Entity__AudioSource, "AudioSource" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Entity2s(struct soap *soap, enum tt__Entity n) -{ - const char *s = soap_code_str(soap_codes_tt__Entity, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Entity(struct soap *soap, const char *tag, int id, const enum tt__Entity *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Entity), type) || soap_send(soap, soap_tt__Entity2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Entity(struct soap *soap, const char *s, enum tt__Entity *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__Entity, s); - if (map) - *a = (enum tt__Entity)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__Entity)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__Entity * SOAP_FMAC4 soap_in_tt__Entity(struct soap *soap, const char *tag, enum tt__Entity *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__Entity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Entity, sizeof(enum tt__Entity), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__Entity(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__Entity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Entity, SOAP_TYPE_tt__Entity, sizeof(enum tt__Entity), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__Entity * SOAP_FMAC4 soap_new_tt__Entity(struct soap *soap, int n) -{ - enum tt__Entity *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__Entity))); - for (enum tt__Entity *p = a; p && n--; ++p) - soap_default_tt__Entity(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Entity(struct soap *soap, const enum tt__Entity *a, const char *tag, const char *type) -{ - if (soap_out_tt__Entity(soap, tag ? tag : "tt:Entity", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__Entity * SOAP_FMAC4 soap_get_tt__Entity(struct soap *soap, enum tt__Entity *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Entity(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_tt__MoveStatus[] = -{ { (LONG64)tt__MoveStatus__IDLE, "IDLE" }, - { (LONG64)tt__MoveStatus__MOVING, "MOVING" }, - { (LONG64)tt__MoveStatus__UNKNOWN, "UNKNOWN" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__MoveStatus2s(struct soap *soap, enum tt__MoveStatus n) -{ - const char *s = soap_code_str(soap_codes_tt__MoveStatus, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveStatus(struct soap *soap, const char *tag, int id, const enum tt__MoveStatus *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MoveStatus), type) || soap_send(soap, soap_tt__MoveStatus2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__MoveStatus(struct soap *soap, const char *s, enum tt__MoveStatus *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_tt__MoveStatus, s); - if (map) - *a = (enum tt__MoveStatus)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum tt__MoveStatus)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum tt__MoveStatus * SOAP_FMAC4 soap_in_tt__MoveStatus(struct soap *soap, const char *tag, enum tt__MoveStatus *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum tt__MoveStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MoveStatus, sizeof(enum tt__MoveStatus), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2tt__MoveStatus(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum tt__MoveStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MoveStatus, SOAP_TYPE_tt__MoveStatus, sizeof(enum tt__MoveStatus), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum tt__MoveStatus * SOAP_FMAC4 soap_new_tt__MoveStatus(struct soap *soap, int n) -{ - enum tt__MoveStatus *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum tt__MoveStatus))); - for (enum tt__MoveStatus *p = a; p && n--; ++p) - soap_default_tt__MoveStatus(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__MoveStatus(struct soap *soap, const enum tt__MoveStatus *a, const char *tag, const char *type) -{ - if (soap_out_tt__MoveStatus(soap, tag ? tag : "tt:MoveStatus", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum tt__MoveStatus * SOAP_FMAC4 soap_get_tt__MoveStatus(struct soap *soap, enum tt__MoveStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MoveStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_bool[] = -{ { (LONG64)false, "false" }, - { (LONG64)true, "true" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_bool2s(struct soap *soap, bool n) -{ - (void)soap; /* appease -Wall -Werror */ - return soap_code_str(soap_codes_bool, n != 0); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_bool(struct soap *soap, const char *tag, int id, const bool *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_bool), type) || soap_send(soap, soap_bool2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2bool(struct soap *soap, const char *s, bool *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_bool, s); - if (map) - *a = (bool)(map->code != 0); - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { long n; - if (soap_s2long(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (bool)(n != 0); - } - return SOAP_OK; -} - -SOAP_FMAC3 bool * SOAP_FMAC4 soap_in_bool(struct soap *soap, const char *tag, bool *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - if (*soap->type && soap_match_tag(soap, soap->type, type) && soap_match_tag(soap, soap->type, ":boolean")) - { soap->error = SOAP_TYPE; - return NULL; - } - a = (bool*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_bool, sizeof(bool), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2bool(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (bool *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_bool, SOAP_TYPE_bool, sizeof(bool), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 bool * SOAP_FMAC4 soap_new_bool(struct soap *soap, int n) -{ - bool *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(bool))); - for (bool *p = a; p && n--; ++p) - soap_default_bool(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_bool(struct soap *soap, const bool *a, const char *tag, const char *type) -{ - if (soap_out_bool(soap, tag ? tag : "boolean", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 bool * SOAP_FMAC4 soap_get_bool(struct soap *soap, bool *p, const char *tag, const char *type) -{ - if ((p = soap_in_bool(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes__wsa5__IsReferenceParameter[] = -{ { (LONG64)_wsa5__IsReferenceParameter__false, "false" }, - { (LONG64)_wsa5__IsReferenceParameter__true, "true" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap__wsa5__IsReferenceParameter2s(struct soap *soap, enum _wsa5__IsReferenceParameter n) -{ - const char *s = soap_code_str(soap_codes__wsa5__IsReferenceParameter, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsa5__IsReferenceParameter(struct soap *soap, const char *tag, int id, const enum _wsa5__IsReferenceParameter *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsa5__IsReferenceParameter), type) || soap_send(soap, soap__wsa5__IsReferenceParameter2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2_wsa5__IsReferenceParameter(struct soap *soap, const char *s, enum _wsa5__IsReferenceParameter *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes__wsa5__IsReferenceParameter, s); - if (map) - *a = (enum _wsa5__IsReferenceParameter)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 1) - return soap->error = SOAP_TYPE; - *a = (enum _wsa5__IsReferenceParameter)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum _wsa5__IsReferenceParameter * SOAP_FMAC4 soap_in__wsa5__IsReferenceParameter(struct soap *soap, const char *tag, enum _wsa5__IsReferenceParameter *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum _wsa5__IsReferenceParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsa5__IsReferenceParameter, sizeof(enum _wsa5__IsReferenceParameter), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2_wsa5__IsReferenceParameter(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum _wsa5__IsReferenceParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsa5__IsReferenceParameter, SOAP_TYPE__wsa5__IsReferenceParameter, sizeof(enum _wsa5__IsReferenceParameter), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum _wsa5__IsReferenceParameter * SOAP_FMAC4 soap_new__wsa5__IsReferenceParameter(struct soap *soap, int n) -{ - enum _wsa5__IsReferenceParameter *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum _wsa5__IsReferenceParameter))); - for (enum _wsa5__IsReferenceParameter *p = a; p && n--; ++p) - soap_default__wsa5__IsReferenceParameter(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__IsReferenceParameter(struct soap *soap, const enum _wsa5__IsReferenceParameter *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__IsReferenceParameter(soap, tag ? tag : "wsa5:IsReferenceParameter", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum _wsa5__IsReferenceParameter * SOAP_FMAC4 soap_get__wsa5__IsReferenceParameter(struct soap *soap, enum _wsa5__IsReferenceParameter *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsa5__IsReferenceParameter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsa5__FaultCodesType[] = -{ { (LONG64)wsa5__InvalidAddressingHeader, "wsa5:InvalidAddressingHeader" }, - { (LONG64)wsa5__InvalidAddress, "wsa5:InvalidAddress" }, - { (LONG64)wsa5__InvalidEPR, "wsa5:InvalidEPR" }, - { (LONG64)wsa5__InvalidCardinality, "wsa5:InvalidCardinality" }, - { (LONG64)wsa5__MissingAddressInEPR, "wsa5:MissingAddressInEPR" }, - { (LONG64)wsa5__DuplicateMessageID, "wsa5:DuplicateMessageID" }, - { (LONG64)wsa5__ActionMismatch, "wsa5:ActionMismatch" }, - { (LONG64)wsa5__MessageAddressingHeaderRequired, "wsa5:MessageAddressingHeaderRequired" }, - { (LONG64)wsa5__DestinationUnreachable, "wsa5:DestinationUnreachable" }, - { (LONG64)wsa5__ActionNotSupported, "wsa5:ActionNotSupported" }, - { (LONG64)wsa5__EndpointUnavailable, "wsa5:EndpointUnavailable" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa5__FaultCodesType2s(struct soap *soap, enum wsa5__FaultCodesType n) -{ - const char *s = soap_code_str(soap_codes_wsa5__FaultCodesType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__FaultCodesType(struct soap *soap, const char *tag, int id, const enum wsa5__FaultCodesType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa5__FaultCodesType), type) || soap_send(soap, soap_wsa5__FaultCodesType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa5__FaultCodesType(struct soap *soap, const char *s, enum wsa5__FaultCodesType *a) -{ - const struct soap_code_map *map; - char *t; - if (!s) - return soap->error; - soap_s2QName(soap, s, &t, 0, -1, NULL); - map = soap_code(soap_codes_wsa5__FaultCodesType, t); - if (map) - *a = (enum wsa5__FaultCodesType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 10) - return soap->error = SOAP_TYPE; - *a = (enum wsa5__FaultCodesType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsa5__FaultCodesType * SOAP_FMAC4 soap_in_wsa5__FaultCodesType(struct soap *soap, const char *tag, enum wsa5__FaultCodesType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsa5__FaultCodesType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__FaultCodesType, sizeof(enum wsa5__FaultCodesType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsa5__FaultCodesType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsa5__FaultCodesType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa5__FaultCodesType, SOAP_TYPE_wsa5__FaultCodesType, sizeof(enum wsa5__FaultCodesType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsa5__FaultCodesType * SOAP_FMAC4 soap_new_wsa5__FaultCodesType(struct soap *soap, int n) -{ - enum wsa5__FaultCodesType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsa5__FaultCodesType))); - for (enum wsa5__FaultCodesType *p = a; p && n--; ++p) - soap_default_wsa5__FaultCodesType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__FaultCodesType(struct soap *soap, const enum wsa5__FaultCodesType *a, const char *tag, const char *type) -{ - if (soap_out_wsa5__FaultCodesType(soap, tag ? tag : "wsa5:FaultCodesType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsa5__FaultCodesType * SOAP_FMAC4 soap_get_wsa5__FaultCodesType(struct soap *soap, enum wsa5__FaultCodesType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__FaultCodesType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsa5__RelationshipType[] = -{ { (LONG64)http_x003a_x002f_x002fwww_x002ew3_x002eorg_x002f2005_x002f08_x002faddressing_x002freply, "http://www.w3.org/2005/08/addressing/reply" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa5__RelationshipType2s(struct soap *soap, enum wsa5__RelationshipType n) -{ - const char *s = soap_code_str(soap_codes_wsa5__RelationshipType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__RelationshipType(struct soap *soap, const char *tag, int id, const enum wsa5__RelationshipType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa5__RelationshipType), type) || soap_send(soap, soap_wsa5__RelationshipType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa5__RelationshipType(struct soap *soap, const char *s, enum wsa5__RelationshipType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_wsa5__RelationshipType, s); - if (map) - *a = (enum wsa5__RelationshipType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 0) - return soap->error = SOAP_TYPE; - *a = (enum wsa5__RelationshipType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsa5__RelationshipType * SOAP_FMAC4 soap_in_wsa5__RelationshipType(struct soap *soap, const char *tag, enum wsa5__RelationshipType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsa5__RelationshipType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__RelationshipType, sizeof(enum wsa5__RelationshipType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsa5__RelationshipType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsa5__RelationshipType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa5__RelationshipType, SOAP_TYPE_wsa5__RelationshipType, sizeof(enum wsa5__RelationshipType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsa5__RelationshipType * SOAP_FMAC4 soap_new_wsa5__RelationshipType(struct soap *soap, int n) -{ - enum wsa5__RelationshipType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsa5__RelationshipType))); - for (enum wsa5__RelationshipType *p = a; p && n--; ++p) - soap_default_wsa5__RelationshipType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__RelationshipType(struct soap *soap, const enum wsa5__RelationshipType *a, const char *tag, const char *type) -{ - if (soap_out_wsa5__RelationshipType(soap, tag ? tag : "wsa5:RelationshipType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsa5__RelationshipType * SOAP_FMAC4 soap_get_wsa5__RelationshipType(struct soap *soap, enum wsa5__RelationshipType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__RelationshipType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_saml2__DecisionType[] = -{ { (LONG64)saml2__DecisionType__Permit, "Permit" }, - { (LONG64)saml2__DecisionType__Deny, "Deny" }, - { (LONG64)saml2__DecisionType__Indeterminate, "Indeterminate" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_saml2__DecisionType2s(struct soap *soap, enum saml2__DecisionType n) -{ - const char *s = soap_code_str(soap_codes_saml2__DecisionType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__DecisionType(struct soap *soap, const char *tag, int id, const enum saml2__DecisionType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__DecisionType), type) || soap_send(soap, soap_saml2__DecisionType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2saml2__DecisionType(struct soap *soap, const char *s, enum saml2__DecisionType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_saml2__DecisionType, s); - if (map) - *a = (enum saml2__DecisionType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum saml2__DecisionType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum saml2__DecisionType * SOAP_FMAC4 soap_in_saml2__DecisionType(struct soap *soap, const char *tag, enum saml2__DecisionType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum saml2__DecisionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__DecisionType, sizeof(enum saml2__DecisionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2saml2__DecisionType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum saml2__DecisionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__DecisionType, SOAP_TYPE_saml2__DecisionType, sizeof(enum saml2__DecisionType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum saml2__DecisionType * SOAP_FMAC4 soap_new_saml2__DecisionType(struct soap *soap, int n) -{ - enum saml2__DecisionType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum saml2__DecisionType))); - for (enum saml2__DecisionType *p = a; p && n--; ++p) - soap_default_saml2__DecisionType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__DecisionType(struct soap *soap, const enum saml2__DecisionType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__DecisionType(soap, tag ? tag : "saml2:DecisionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum saml2__DecisionType * SOAP_FMAC4 soap_get_saml2__DecisionType(struct soap *soap, enum saml2__DecisionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__DecisionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_saml1__DecisionType[] = -{ { (LONG64)saml1__DecisionType__Permit, "Permit" }, - { (LONG64)saml1__DecisionType__Deny, "Deny" }, - { (LONG64)saml1__DecisionType__Indeterminate, "Indeterminate" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_saml1__DecisionType2s(struct soap *soap, enum saml1__DecisionType n) -{ - const char *s = soap_code_str(soap_codes_saml1__DecisionType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__DecisionType(struct soap *soap, const char *tag, int id, const enum saml1__DecisionType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__DecisionType), type) || soap_send(soap, soap_saml1__DecisionType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2saml1__DecisionType(struct soap *soap, const char *s, enum saml1__DecisionType *a) -{ - const struct soap_code_map *map; - if (!s) - return soap->error; - map = soap_code(soap_codes_saml1__DecisionType, s); - if (map) - *a = (enum saml1__DecisionType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 2) - return soap->error = SOAP_TYPE; - *a = (enum saml1__DecisionType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum saml1__DecisionType * SOAP_FMAC4 soap_in_saml1__DecisionType(struct soap *soap, const char *tag, enum saml1__DecisionType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum saml1__DecisionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__DecisionType, sizeof(enum saml1__DecisionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2saml1__DecisionType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum saml1__DecisionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__DecisionType, SOAP_TYPE_saml1__DecisionType, sizeof(enum saml1__DecisionType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum saml1__DecisionType * SOAP_FMAC4 soap_new_saml1__DecisionType(struct soap *soap, int n) -{ - enum saml1__DecisionType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum saml1__DecisionType))); - for (enum saml1__DecisionType *p = a; p && n--; ++p) - soap_default_saml1__DecisionType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__DecisionType(struct soap *soap, const enum saml1__DecisionType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__DecisionType(soap, tag ? tag : "saml1:DecisionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum saml1__DecisionType * SOAP_FMAC4 soap_get_saml1__DecisionType(struct soap *soap, enum saml1__DecisionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__DecisionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsc__FaultCodeType[] = -{ { (LONG64)wsc__BadContextToken, "wsc:BadContextToken" }, - { (LONG64)wsc__UnsupportedContextToken, "wsc:UnsupportedContextToken" }, - { (LONG64)wsc__UnknownDerivationSource, "wsc:UnknownDerivationSource" }, - { (LONG64)wsc__RenewNeeded, "wsc:RenewNeeded" }, - { (LONG64)wsc__UnableToRenew, "wsc:UnableToRenew" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsc__FaultCodeType2s(struct soap *soap, enum wsc__FaultCodeType n) -{ - const char *s = soap_code_str(soap_codes_wsc__FaultCodeType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__FaultCodeType(struct soap *soap, const char *tag, int id, const enum wsc__FaultCodeType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsc__FaultCodeType), type) || soap_send(soap, soap_wsc__FaultCodeType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsc__FaultCodeType(struct soap *soap, const char *s, enum wsc__FaultCodeType *a) -{ - const struct soap_code_map *map; - char *t; - if (!s) - return soap->error; - soap_s2QName(soap, s, &t, 0, -1, NULL); - map = soap_code(soap_codes_wsc__FaultCodeType, t); - if (map) - *a = (enum wsc__FaultCodeType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 4) - return soap->error = SOAP_TYPE; - *a = (enum wsc__FaultCodeType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsc__FaultCodeType * SOAP_FMAC4 soap_in_wsc__FaultCodeType(struct soap *soap, const char *tag, enum wsc__FaultCodeType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsc__FaultCodeType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsc__FaultCodeType, sizeof(enum wsc__FaultCodeType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsc__FaultCodeType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsc__FaultCodeType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsc__FaultCodeType, SOAP_TYPE_wsc__FaultCodeType, sizeof(enum wsc__FaultCodeType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsc__FaultCodeType * SOAP_FMAC4 soap_new_wsc__FaultCodeType(struct soap *soap, int n) -{ - enum wsc__FaultCodeType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsc__FaultCodeType))); - for (enum wsc__FaultCodeType *p = a; p && n--; ++p) - soap_default_wsc__FaultCodeType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__FaultCodeType(struct soap *soap, const enum wsc__FaultCodeType *a, const char *tag, const char *type) -{ - if (soap_out_wsc__FaultCodeType(soap, tag ? tag : "wsc:FaultCodeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsc__FaultCodeType * SOAP_FMAC4 soap_get_wsc__FaultCodeType(struct soap *soap, enum wsc__FaultCodeType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsc__FaultCodeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsse__FaultcodeEnum[] = -{ { (LONG64)wsse__UnsupportedSecurityToken, "wsse:UnsupportedSecurityToken" }, - { (LONG64)wsse__UnsupportedAlgorithm, "wsse:UnsupportedAlgorithm" }, - { (LONG64)wsse__InvalidSecurity, "wsse:InvalidSecurity" }, - { (LONG64)wsse__InvalidSecurityToken, "wsse:InvalidSecurityToken" }, - { (LONG64)wsse__FailedAuthentication, "wsse:FailedAuthentication" }, - { (LONG64)wsse__FailedCheck, "wsse:FailedCheck" }, - { (LONG64)wsse__SecurityTokenUnavailable, "wsse:SecurityTokenUnavailable" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsse__FaultcodeEnum2s(struct soap *soap, enum wsse__FaultcodeEnum n) -{ - const char *s = soap_code_str(soap_codes_wsse__FaultcodeEnum, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsse__FaultcodeEnum(struct soap *soap, const char *tag, int id, const enum wsse__FaultcodeEnum *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsse__FaultcodeEnum), type) || soap_send(soap, soap_wsse__FaultcodeEnum2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsse__FaultcodeEnum(struct soap *soap, const char *s, enum wsse__FaultcodeEnum *a) -{ - const struct soap_code_map *map; - char *t; - if (!s) - return soap->error; - soap_s2QName(soap, s, &t, 0, -1, NULL); - map = soap_code(soap_codes_wsse__FaultcodeEnum, t); - if (map) - *a = (enum wsse__FaultcodeEnum)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 6) - return soap->error = SOAP_TYPE; - *a = (enum wsse__FaultcodeEnum)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsse__FaultcodeEnum * SOAP_FMAC4 soap_in_wsse__FaultcodeEnum(struct soap *soap, const char *tag, enum wsse__FaultcodeEnum *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsse__FaultcodeEnum*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsse__FaultcodeEnum, sizeof(enum wsse__FaultcodeEnum), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsse__FaultcodeEnum(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsse__FaultcodeEnum *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsse__FaultcodeEnum, SOAP_TYPE_wsse__FaultcodeEnum, sizeof(enum wsse__FaultcodeEnum), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsse__FaultcodeEnum * SOAP_FMAC4 soap_new_wsse__FaultcodeEnum(struct soap *soap, int n) -{ - enum wsse__FaultcodeEnum *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsse__FaultcodeEnum))); - for (enum wsse__FaultcodeEnum *p = a; p && n--; ++p) - soap_default_wsse__FaultcodeEnum(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsse__FaultcodeEnum(struct soap *soap, const enum wsse__FaultcodeEnum *a, const char *tag, const char *type) -{ - if (soap_out_wsse__FaultcodeEnum(soap, tag ? tag : "wsse:FaultcodeEnum", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsse__FaultcodeEnum * SOAP_FMAC4 soap_get_wsse__FaultcodeEnum(struct soap *soap, enum wsse__FaultcodeEnum *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsse__FaultcodeEnum(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsu__tTimestampFault[] = -{ { (LONG64)wsu__MessageExpired, "wsu:MessageExpired" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsu__tTimestampFault2s(struct soap *soap, enum wsu__tTimestampFault n) -{ - const char *s = soap_code_str(soap_codes_wsu__tTimestampFault, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsu__tTimestampFault(struct soap *soap, const char *tag, int id, const enum wsu__tTimestampFault *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsu__tTimestampFault), type) || soap_send(soap, soap_wsu__tTimestampFault2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsu__tTimestampFault(struct soap *soap, const char *s, enum wsu__tTimestampFault *a) -{ - const struct soap_code_map *map; - char *t; - if (!s) - return soap->error; - soap_s2QName(soap, s, &t, 0, -1, NULL); - map = soap_code(soap_codes_wsu__tTimestampFault, t); - if (map) - *a = (enum wsu__tTimestampFault)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 0) - return soap->error = SOAP_TYPE; - *a = (enum wsu__tTimestampFault)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsu__tTimestampFault * SOAP_FMAC4 soap_in_wsu__tTimestampFault(struct soap *soap, const char *tag, enum wsu__tTimestampFault *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsu__tTimestampFault*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsu__tTimestampFault, sizeof(enum wsu__tTimestampFault), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsu__tTimestampFault(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsu__tTimestampFault *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsu__tTimestampFault, SOAP_TYPE_wsu__tTimestampFault, sizeof(enum wsu__tTimestampFault), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsu__tTimestampFault * SOAP_FMAC4 soap_new_wsu__tTimestampFault(struct soap *soap, int n) -{ - enum wsu__tTimestampFault *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsu__tTimestampFault))); - for (enum wsu__tTimestampFault *p = a; p && n--; ++p) - soap_default_wsu__tTimestampFault(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsu__tTimestampFault(struct soap *soap, const enum wsu__tTimestampFault *a, const char *tag, const char *type) -{ - if (soap_out_wsu__tTimestampFault(soap, tag ? tag : "wsu:tTimestampFault", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsu__tTimestampFault * SOAP_FMAC4 soap_get_wsu__tTimestampFault(struct soap *soap, enum wsu__tTimestampFault *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsu__tTimestampFault(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsdd__FaultCodeType[] = -{ { (LONG64)wsdd__MatchingRuleNotSupported, "wsdd:MatchingRuleNotSupported" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsdd__FaultCodeType2s(struct soap *soap, enum wsdd__FaultCodeType n) -{ - const char *s = soap_code_str(soap_codes_wsdd__FaultCodeType, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__FaultCodeType(struct soap *soap, const char *tag, int id, const enum wsdd__FaultCodeType *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__FaultCodeType), type) || soap_send(soap, soap_wsdd__FaultCodeType2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsdd__FaultCodeType(struct soap *soap, const char *s, enum wsdd__FaultCodeType *a) -{ - const struct soap_code_map *map; - char *t; - if (!s) - return soap->error; - soap_s2QName(soap, s, &t, 0, -1, NULL); - map = soap_code(soap_codes_wsdd__FaultCodeType, t); - if (map) - *a = (enum wsdd__FaultCodeType)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 0) - return soap->error = SOAP_TYPE; - *a = (enum wsdd__FaultCodeType)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsdd__FaultCodeType * SOAP_FMAC4 soap_in_wsdd__FaultCodeType(struct soap *soap, const char *tag, enum wsdd__FaultCodeType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsdd__FaultCodeType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__FaultCodeType, sizeof(enum wsdd__FaultCodeType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsdd__FaultCodeType(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsdd__FaultCodeType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__FaultCodeType, SOAP_TYPE_wsdd__FaultCodeType, sizeof(enum wsdd__FaultCodeType), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsdd__FaultCodeType * SOAP_FMAC4 soap_new_wsdd__FaultCodeType(struct soap *soap, int n) -{ - enum wsdd__FaultCodeType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsdd__FaultCodeType))); - for (enum wsdd__FaultCodeType *p = a; p && n--; ++p) - soap_default_wsdd__FaultCodeType(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__FaultCodeType(struct soap *soap, const enum wsdd__FaultCodeType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__FaultCodeType(soap, tag ? tag : "wsdd:FaultCodeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsdd__FaultCodeType * SOAP_FMAC4 soap_get_wsdd__FaultCodeType(struct soap *soap, enum wsdd__FaultCodeType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__FaultCodeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsa__FaultSubcodeValues[] = -{ { (LONG64)wsa__InvalidMessageInformationHeader, "wsa:InvalidMessageInformationHeader" }, - { (LONG64)wsa__MessageInformationHeaderRequired, "wsa:MessageInformationHeaderRequired" }, - { (LONG64)wsa__DestinationUnreachable, "wsa:DestinationUnreachable" }, - { (LONG64)wsa__ActionNotSupported, "wsa:ActionNotSupported" }, - { (LONG64)wsa__EndpointUnavailable, "wsa:EndpointUnavailable" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa__FaultSubcodeValues2s(struct soap *soap, enum wsa__FaultSubcodeValues n) -{ - const char *s = soap_code_str(soap_codes_wsa__FaultSubcodeValues, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__FaultSubcodeValues(struct soap *soap, const char *tag, int id, const enum wsa__FaultSubcodeValues *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa__FaultSubcodeValues), type) || soap_send(soap, soap_wsa__FaultSubcodeValues2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa__FaultSubcodeValues(struct soap *soap, const char *s, enum wsa__FaultSubcodeValues *a) -{ - const struct soap_code_map *map; - char *t; - if (!s) - return soap->error; - soap_s2QName(soap, s, &t, 0, -1, NULL); - map = soap_code(soap_codes_wsa__FaultSubcodeValues, t); - if (map) - *a = (enum wsa__FaultSubcodeValues)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 4) - return soap->error = SOAP_TYPE; - *a = (enum wsa__FaultSubcodeValues)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsa__FaultSubcodeValues * SOAP_FMAC4 soap_in_wsa__FaultSubcodeValues(struct soap *soap, const char *tag, enum wsa__FaultSubcodeValues *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsa__FaultSubcodeValues*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa__FaultSubcodeValues, sizeof(enum wsa__FaultSubcodeValues), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsa__FaultSubcodeValues(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsa__FaultSubcodeValues *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa__FaultSubcodeValues, SOAP_TYPE_wsa__FaultSubcodeValues, sizeof(enum wsa__FaultSubcodeValues), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsa__FaultSubcodeValues * SOAP_FMAC4 soap_new_wsa__FaultSubcodeValues(struct soap *soap, int n) -{ - enum wsa__FaultSubcodeValues *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsa__FaultSubcodeValues))); - for (enum wsa__FaultSubcodeValues *p = a; p && n--; ++p) - soap_default_wsa__FaultSubcodeValues(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__FaultSubcodeValues(struct soap *soap, const enum wsa__FaultSubcodeValues *a, const char *tag, const char *type) -{ - if (soap_out_wsa__FaultSubcodeValues(soap, tag ? tag : "wsa:FaultSubcodeValues", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsa__FaultSubcodeValues * SOAP_FMAC4 soap_get_wsa__FaultSubcodeValues(struct soap *soap, enum wsa__FaultSubcodeValues *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa__FaultSubcodeValues(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_wsa__RelationshipTypeValues[] = -{ { (LONG64)wsa__Reply, "wsa:Reply" }, - { 0, NULL } -}; - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa__RelationshipTypeValues2s(struct soap *soap, enum wsa__RelationshipTypeValues n) -{ - const char *s = soap_code_str(soap_codes_wsa__RelationshipTypeValues, (long)n); - if (s) - return s; - return soap_long2s(soap, (long)n); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__RelationshipTypeValues(struct soap *soap, const char *tag, int id, const enum wsa__RelationshipTypeValues *a, const char *type) -{ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa__RelationshipTypeValues), type) || soap_send(soap, soap_wsa__RelationshipTypeValues2s(soap, *a))) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa__RelationshipTypeValues(struct soap *soap, const char *s, enum wsa__RelationshipTypeValues *a) -{ - const struct soap_code_map *map; - char *t; - if (!s) - return soap->error; - soap_s2QName(soap, s, &t, 0, -1, NULL); - map = soap_code(soap_codes_wsa__RelationshipTypeValues, t); - if (map) - *a = (enum wsa__RelationshipTypeValues)map->code; - else if (!*s) - return soap->error = SOAP_EMPTY; - else - { int n; - if (soap_s2int(soap, s, &n) || n < 0 || n > 0) - return soap->error = SOAP_TYPE; - *a = (enum wsa__RelationshipTypeValues)n; - } - return SOAP_OK; -} - -SOAP_FMAC3 enum wsa__RelationshipTypeValues * SOAP_FMAC4 soap_in_wsa__RelationshipTypeValues(struct soap *soap, const char *tag, enum wsa__RelationshipTypeValues *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, type)) - return NULL; - a = (enum wsa__RelationshipTypeValues*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa__RelationshipTypeValues, sizeof(enum wsa__RelationshipTypeValues), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - if (*soap->href != '#') - { int err = soap_s2wsa__RelationshipTypeValues(soap, soap_value(soap), a); - if ((soap->body && soap_element_end_in(soap, tag)) || err) - return NULL; - } - else - { a = (enum wsa__RelationshipTypeValues *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa__RelationshipTypeValues, SOAP_TYPE_wsa__RelationshipTypeValues, sizeof(enum wsa__RelationshipTypeValues), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 enum wsa__RelationshipTypeValues * SOAP_FMAC4 soap_new_wsa__RelationshipTypeValues(struct soap *soap, int n) -{ - enum wsa__RelationshipTypeValues *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(enum wsa__RelationshipTypeValues))); - for (enum wsa__RelationshipTypeValues *p = a; p && n--; ++p) - soap_default_wsa__RelationshipTypeValues(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__RelationshipTypeValues(struct soap *soap, const enum wsa__RelationshipTypeValues *a, const char *tag, const char *type) -{ - if (soap_out_wsa__RelationshipTypeValues(soap, tag ? tag : "wsa:RelationshipTypeValues", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 enum wsa__RelationshipTypeValues * SOAP_FMAC4 soap_get_wsa__RelationshipTypeValues(struct soap *soap, enum wsa__RelationshipTypeValues *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa__RelationshipTypeValues(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wstop__TopicNamespaceType_Topic::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - this->_wstop__TopicNamespaceType_Topic::documentation = NULL; - soap_default_xsd__anyAttribute(soap, &this->_wstop__TopicNamespaceType_Topic::__anyAttribute); - this->_wstop__TopicNamespaceType_Topic::MessagePattern = NULL; - soap_default_std__vectorTemplateOfPointerTowstop__TopicType(soap, &this->_wstop__TopicNamespaceType_Topic::Topic); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wstop__TopicNamespaceType_Topic::__any); - soap_default_xsd__NCName(soap, &this->_wstop__TopicNamespaceType_Topic::name); - this->_wstop__TopicNamespaceType_Topic::messageTypes = NULL; - this->_wstop__TopicNamespaceType_Topic::final_ = (bool)0; - this->_wstop__TopicNamespaceType_Topic::parent = NULL; -} - -void _wstop__TopicNamespaceType_Topic::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowstop__Documentation(soap, &this->_wstop__TopicNamespaceType_Topic::documentation); - soap_serialize_PointerTowstop__QueryExpressionType(soap, &this->_wstop__TopicNamespaceType_Topic::MessagePattern); - soap_serialize_std__vectorTemplateOfPointerTowstop__TopicType(soap, &this->_wstop__TopicNamespaceType_Topic::Topic); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wstop__TopicNamespaceType_Topic::__any); -#endif -} - -int _wstop__TopicNamespaceType_Topic::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wstop__TopicNamespaceType_Topic(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wstop__TopicNamespaceType_Topic(struct soap *soap, const char *tag, int id, const _wstop__TopicNamespaceType_Topic *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_wstop__TopicNamespaceType_Topic*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "name", soap_xsd__NCName2s(soap, ((_wstop__TopicNamespaceType_Topic*)a)->name), 1); - if (((_wstop__TopicNamespaceType_Topic*)a)->messageTypes) - { soap_set_attr(soap, "messageTypes", soap_xsd__QName2s(soap, *((_wstop__TopicNamespaceType_Topic*)a)->messageTypes), 1); - } - if (((_wstop__TopicNamespaceType_Topic*)a)->final_ != (bool)0) - { soap_set_attr(soap, "final", soap_bool2s(soap, ((_wstop__TopicNamespaceType_Topic*)a)->final_), 1); - } - if (((_wstop__TopicNamespaceType_Topic*)a)->parent) - { soap_set_attr(soap, "parent", soap_wstop__ConcreteTopicExpression2s(soap, *((_wstop__TopicNamespaceType_Topic*)a)->parent), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wstop__TopicNamespaceType_Topic), type)) - return soap->error; - if (soap_out_PointerTowstop__Documentation(soap, "wstop:documentation", -1, &a->_wstop__TopicNamespaceType_Topic::documentation, "")) - return soap->error; - if (soap_out_PointerTowstop__QueryExpressionType(soap, "wstop:MessagePattern", -1, &a->_wstop__TopicNamespaceType_Topic::MessagePattern, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTowstop__TopicType(soap, "wstop:Topic", -1, &a->_wstop__TopicNamespaceType_Topic::Topic, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wstop__TopicNamespaceType_Topic::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wstop__TopicNamespaceType_Topic::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wstop__TopicNamespaceType_Topic(soap, tag, this, type); -} - -SOAP_FMAC3 _wstop__TopicNamespaceType_Topic * SOAP_FMAC4 soap_in__wstop__TopicNamespaceType_Topic(struct soap *soap, const char *tag, _wstop__TopicNamespaceType_Topic *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wstop__TopicNamespaceType_Topic*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wstop__TopicNamespaceType_Topic, sizeof(_wstop__TopicNamespaceType_Topic), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wstop__TopicNamespaceType_Topic) - { soap_revert(soap); - *soap->id = '\0'; - return (_wstop__TopicNamespaceType_Topic *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_wstop__TopicNamespaceType_Topic*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2xsd__NCName(soap, soap_attr_value(soap, "name", 5, 1), &((_wstop__TopicNamespaceType_Topic*)a)->name)) - return NULL; - { - const char *t = soap_attr_value(soap, "messageTypes", 2, 0); - if (t) - { - if (!(((_wstop__TopicNamespaceType_Topic*)a)->messageTypes = soap_new_xsd__QName(soap))) - return NULL; - if (soap_s2xsd__QName(soap, t, ((_wstop__TopicNamespaceType_Topic*)a)->messageTypes)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap_s2bool(soap, soap_attr_value(soap, "final", 5, 0), &((_wstop__TopicNamespaceType_Topic*)a)->final_)) - return NULL; - { - const char *t = soap_attr_value(soap, "parent", 5, 0); - if (t) - { - if (!(((_wstop__TopicNamespaceType_Topic*)a)->parent = soap_new_wstop__ConcreteTopicExpression(soap))) - return NULL; - if (soap_s2wstop__ConcreteTopicExpression(soap, t, ((_wstop__TopicNamespaceType_Topic*)a)->parent)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_documentation1 = 1; - size_t soap_flag_MessagePattern1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_documentation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__Documentation(soap, "wstop:documentation", &a->_wstop__TopicNamespaceType_Topic::documentation, "wstop:Documentation")) - { soap_flag_documentation1--; - continue; - } - } - if (soap_flag_MessagePattern1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__QueryExpressionType(soap, "wstop:MessagePattern", &a->_wstop__TopicNamespaceType_Topic::MessagePattern, "wstop:QueryExpressionType")) - { soap_flag_MessagePattern1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTowstop__TopicType(soap, "wstop:Topic", &a->_wstop__TopicNamespaceType_Topic::Topic, "wstop:TopicType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wstop__TopicNamespaceType_Topic::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wstop__TopicNamespaceType_Topic *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wstop__TopicNamespaceType_Topic, SOAP_TYPE__wstop__TopicNamespaceType_Topic, sizeof(_wstop__TopicNamespaceType_Topic), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wstop__TopicNamespaceType_Topic * SOAP_FMAC2 soap_instantiate__wstop__TopicNamespaceType_Topic(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wstop__TopicNamespaceType_Topic(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wstop__TopicNamespaceType_Topic *p; - size_t k = sizeof(_wstop__TopicNamespaceType_Topic); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wstop__TopicNamespaceType_Topic, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wstop__TopicNamespaceType_Topic); - } - else - { p = SOAP_NEW_ARRAY(soap, _wstop__TopicNamespaceType_Topic, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wstop__TopicNamespaceType_Topic location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wstop__TopicNamespaceType_Topic::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wstop__TopicNamespaceType_Topic(soap, tag ? tag : "wstop:TopicNamespaceType-Topic", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wstop__TopicNamespaceType_Topic::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wstop__TopicNamespaceType_Topic(soap, this, tag, type); -} - -SOAP_FMAC3 _wstop__TopicNamespaceType_Topic * SOAP_FMAC4 soap_get__wstop__TopicNamespaceType_Topic(struct soap *soap, _wstop__TopicNamespaceType_Topic *p, const char *tag, const char *type) -{ - if ((p = soap_in__wstop__TopicNamespaceType_Topic(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__ExportRecordedDataResponse_Extension::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_xsd__anyType(soap, &this->_trc__ExportRecordedDataResponse_Extension::__any); -} - -void _trc__ExportRecordedDataResponse_Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trc__ExportRecordedDataResponse_Extension::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_trc__ExportRecordedDataResponse_Extension::__any); -#endif -} - -int _trc__ExportRecordedDataResponse_Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__ExportRecordedDataResponse_Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__ExportRecordedDataResponse_Extension(struct soap *soap, const char *tag, int id, const _trc__ExportRecordedDataResponse_Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__ExportRecordedDataResponse_Extension), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->_trc__ExportRecordedDataResponse_Extension::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__ExportRecordedDataResponse_Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__ExportRecordedDataResponse_Extension(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__ExportRecordedDataResponse_Extension * SOAP_FMAC4 soap_in__trc__ExportRecordedDataResponse_Extension(struct soap *soap, const char *tag, _trc__ExportRecordedDataResponse_Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__ExportRecordedDataResponse_Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__ExportRecordedDataResponse_Extension, sizeof(_trc__ExportRecordedDataResponse_Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__ExportRecordedDataResponse_Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__ExportRecordedDataResponse_Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->_trc__ExportRecordedDataResponse_Extension::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__ExportRecordedDataResponse_Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__ExportRecordedDataResponse_Extension, SOAP_TYPE__trc__ExportRecordedDataResponse_Extension, sizeof(_trc__ExportRecordedDataResponse_Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__ExportRecordedDataResponse_Extension * SOAP_FMAC2 soap_instantiate__trc__ExportRecordedDataResponse_Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__ExportRecordedDataResponse_Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__ExportRecordedDataResponse_Extension *p; - size_t k = sizeof(_trc__ExportRecordedDataResponse_Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__ExportRecordedDataResponse_Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__ExportRecordedDataResponse_Extension); - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__ExportRecordedDataResponse_Extension, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__ExportRecordedDataResponse_Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__ExportRecordedDataResponse_Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__ExportRecordedDataResponse_Extension(soap, tag ? tag : "trc:ExportRecordedDataResponse-Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__ExportRecordedDataResponse_Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__ExportRecordedDataResponse_Extension(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__ExportRecordedDataResponse_Extension * SOAP_FMAC4 soap_get__trc__ExportRecordedDataResponse_Extension(struct soap *soap, _trc__ExportRecordedDataResponse_Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__ExportRecordedDataResponse_Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemUrisResponse_Extension::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__GetSystemUrisResponse_Extension::__any); -} - -void _tds__GetSystemUrisResponse_Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__GetSystemUrisResponse_Extension::__any); -#endif -} - -int _tds__GetSystemUrisResponse_Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemUrisResponse_Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemUrisResponse_Extension(struct soap *soap, const char *tag, int id, const _tds__GetSystemUrisResponse_Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemUrisResponse_Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tds__GetSystemUrisResponse_Extension::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemUrisResponse_Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemUrisResponse_Extension(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemUrisResponse_Extension * SOAP_FMAC4 soap_in__tds__GetSystemUrisResponse_Extension(struct soap *soap, const char *tag, _tds__GetSystemUrisResponse_Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemUrisResponse_Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemUrisResponse_Extension, sizeof(_tds__GetSystemUrisResponse_Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemUrisResponse_Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemUrisResponse_Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tds__GetSystemUrisResponse_Extension::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetSystemUrisResponse_Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemUrisResponse_Extension, SOAP_TYPE__tds__GetSystemUrisResponse_Extension, sizeof(_tds__GetSystemUrisResponse_Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemUrisResponse_Extension * SOAP_FMAC2 soap_instantiate__tds__GetSystemUrisResponse_Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemUrisResponse_Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemUrisResponse_Extension *p; - size_t k = sizeof(_tds__GetSystemUrisResponse_Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemUrisResponse_Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemUrisResponse_Extension); - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemUrisResponse_Extension, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemUrisResponse_Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemUrisResponse_Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemUrisResponse_Extension(soap, tag ? tag : "tds:GetSystemUrisResponse-Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemUrisResponse_Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemUrisResponse_Extension(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemUrisResponse_Extension * SOAP_FMAC4 soap_get__tds__GetSystemUrisResponse_Extension(struct soap *soap, _tds__GetSystemUrisResponse_Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemUrisResponse_Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__StorageConfigurationData_Extension::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__StorageConfigurationData_Extension::__any); -} - -void _tds__StorageConfigurationData_Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__StorageConfigurationData_Extension::__any); -#endif -} - -int _tds__StorageConfigurationData_Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__StorageConfigurationData_Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StorageConfigurationData_Extension(struct soap *soap, const char *tag, int id, const _tds__StorageConfigurationData_Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__StorageConfigurationData_Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tds__StorageConfigurationData_Extension::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__StorageConfigurationData_Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__StorageConfigurationData_Extension(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__StorageConfigurationData_Extension * SOAP_FMAC4 soap_in__tds__StorageConfigurationData_Extension(struct soap *soap, const char *tag, _tds__StorageConfigurationData_Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__StorageConfigurationData_Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__StorageConfigurationData_Extension, sizeof(_tds__StorageConfigurationData_Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__StorageConfigurationData_Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__StorageConfigurationData_Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tds__StorageConfigurationData_Extension::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__StorageConfigurationData_Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__StorageConfigurationData_Extension, SOAP_TYPE__tds__StorageConfigurationData_Extension, sizeof(_tds__StorageConfigurationData_Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__StorageConfigurationData_Extension * SOAP_FMAC2 soap_instantiate__tds__StorageConfigurationData_Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__StorageConfigurationData_Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__StorageConfigurationData_Extension *p; - size_t k = sizeof(_tds__StorageConfigurationData_Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__StorageConfigurationData_Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__StorageConfigurationData_Extension); - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__StorageConfigurationData_Extension, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__StorageConfigurationData_Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__StorageConfigurationData_Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__StorageConfigurationData_Extension(soap, tag ? tag : "tds:StorageConfigurationData-Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__StorageConfigurationData_Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__StorageConfigurationData_Extension(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__StorageConfigurationData_Extension * SOAP_FMAC4 soap_get__tds__StorageConfigurationData_Extension(struct soap *soap, _tds__StorageConfigurationData_Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__StorageConfigurationData_Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__UserCredential_Extension::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__UserCredential_Extension::__any); -} - -void _tds__UserCredential_Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__UserCredential_Extension::__any); -#endif -} - -int _tds__UserCredential_Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__UserCredential_Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__UserCredential_Extension(struct soap *soap, const char *tag, int id, const _tds__UserCredential_Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__UserCredential_Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tds__UserCredential_Extension::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__UserCredential_Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__UserCredential_Extension(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__UserCredential_Extension * SOAP_FMAC4 soap_in__tds__UserCredential_Extension(struct soap *soap, const char *tag, _tds__UserCredential_Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__UserCredential_Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__UserCredential_Extension, sizeof(_tds__UserCredential_Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__UserCredential_Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__UserCredential_Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tds__UserCredential_Extension::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__UserCredential_Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__UserCredential_Extension, SOAP_TYPE__tds__UserCredential_Extension, sizeof(_tds__UserCredential_Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__UserCredential_Extension * SOAP_FMAC2 soap_instantiate__tds__UserCredential_Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__UserCredential_Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__UserCredential_Extension *p; - size_t k = sizeof(_tds__UserCredential_Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__UserCredential_Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__UserCredential_Extension); - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__UserCredential_Extension, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__UserCredential_Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__UserCredential_Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__UserCredential_Extension(soap, tag ? tag : "tds:UserCredential-Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__UserCredential_Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__UserCredential_Extension(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__UserCredential_Extension * SOAP_FMAC4 soap_get__tds__UserCredential_Extension(struct soap *soap, _tds__UserCredential_Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__UserCredential_Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__Service_Capabilities::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_xsd__anyType(soap, &this->_tds__Service_Capabilities::__any); -} - -void _tds__Service_Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__Service_Capabilities::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_tds__Service_Capabilities::__any); -#endif -} - -int _tds__Service_Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__Service_Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__Service_Capabilities(struct soap *soap, const char *tag, int id, const _tds__Service_Capabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__Service_Capabilities), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->_tds__Service_Capabilities::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__Service_Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__Service_Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__Service_Capabilities * SOAP_FMAC4 soap_in__tds__Service_Capabilities(struct soap *soap, const char *tag, _tds__Service_Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__Service_Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__Service_Capabilities, sizeof(_tds__Service_Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__Service_Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__Service_Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->_tds__Service_Capabilities::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__Service_Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__Service_Capabilities, SOAP_TYPE__tds__Service_Capabilities, sizeof(_tds__Service_Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__Service_Capabilities * SOAP_FMAC2 soap_instantiate__tds__Service_Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__Service_Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__Service_Capabilities *p; - size_t k = sizeof(_tds__Service_Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__Service_Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__Service_Capabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__Service_Capabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__Service_Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__Service_Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__Service_Capabilities(soap, tag ? tag : "tds:Service-Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__Service_Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__Service_Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__Service_Capabilities * SOAP_FMAC4 soap_get__tds__Service_Capabilities(struct soap *soap, _tds__Service_Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__Service_Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__ConfigDescription_Messages::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - this->_tt__ConfigDescription_Messages::Source = NULL; - this->_tt__ConfigDescription_Messages::Key = NULL; - this->_tt__ConfigDescription_Messages::Data = NULL; - this->_tt__ConfigDescription_Messages::Extension = NULL; - this->_tt__ConfigDescription_Messages::IsProperty = NULL; - soap_default_xsd__anyAttribute(soap, &this->_tt__ConfigDescription_Messages::__anyAttribute); - soap_default_std__string(soap, &this->_tt__ConfigDescription_Messages::ParentTopic); -} - -void _tt__ConfigDescription_Messages::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ItemListDescription(soap, &this->_tt__ConfigDescription_Messages::Source); - soap_serialize_PointerTott__ItemListDescription(soap, &this->_tt__ConfigDescription_Messages::Key); - soap_serialize_PointerTott__ItemListDescription(soap, &this->_tt__ConfigDescription_Messages::Data); - soap_serialize_PointerTott__MessageDescriptionExtension(soap, &this->_tt__ConfigDescription_Messages::Extension); - soap_embedded(soap, &this->_tt__ConfigDescription_Messages::ParentTopic, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tt__ConfigDescription_Messages::ParentTopic); -#endif -} - -int _tt__ConfigDescription_Messages::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__ConfigDescription_Messages(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ConfigDescription_Messages(struct soap *soap, const char *tag, int id, const _tt__ConfigDescription_Messages *a, const char *type) -{ - if (((_tt__ConfigDescription_Messages*)a)->IsProperty) - { soap_set_attr(soap, "IsProperty", soap_bool2s(soap, *((_tt__ConfigDescription_Messages*)a)->IsProperty), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_tt__ConfigDescription_Messages*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__ConfigDescription_Messages), type)) - return soap->error; - if (soap_out_PointerTott__ItemListDescription(soap, "tt:Source", -1, &a->_tt__ConfigDescription_Messages::Source, "")) - return soap->error; - if (soap_out_PointerTott__ItemListDescription(soap, "tt:Key", -1, &a->_tt__ConfigDescription_Messages::Key, "")) - return soap->error; - if (soap_out_PointerTott__ItemListDescription(soap, "tt:Data", -1, &a->_tt__ConfigDescription_Messages::Data, "")) - return soap->error; - if (soap_out_PointerTott__MessageDescriptionExtension(soap, "tt:Extension", -1, &a->_tt__ConfigDescription_Messages::Extension, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:ParentTopic", -1, &a->_tt__ConfigDescription_Messages::ParentTopic, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__ConfigDescription_Messages::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__ConfigDescription_Messages(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__ConfigDescription_Messages * SOAP_FMAC4 soap_in__tt__ConfigDescription_Messages(struct soap *soap, const char *tag, _tt__ConfigDescription_Messages *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__ConfigDescription_Messages*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__ConfigDescription_Messages, sizeof(_tt__ConfigDescription_Messages), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__ConfigDescription_Messages) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__ConfigDescription_Messages *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "IsProperty", 5, 0); - if (t) - { - if (!(((_tt__ConfigDescription_Messages*)a)->IsProperty = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((_tt__ConfigDescription_Messages*)a)->IsProperty)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_tt__ConfigDescription_Messages*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_Source1 = 1; - size_t soap_flag_Key1 = 1; - size_t soap_flag_Data1 = 1; - size_t soap_flag_Extension1 = 1; - size_t soap_flag_ParentTopic1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Source1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescription(soap, "tt:Source", &a->_tt__ConfigDescription_Messages::Source, "tt:ItemListDescription")) - { soap_flag_Source1--; - continue; - } - } - if (soap_flag_Key1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescription(soap, "tt:Key", &a->_tt__ConfigDescription_Messages::Key, "tt:ItemListDescription")) - { soap_flag_Key1--; - continue; - } - } - if (soap_flag_Data1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescription(soap, "tt:Data", &a->_tt__ConfigDescription_Messages::Data, "tt:ItemListDescription")) - { soap_flag_Data1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MessageDescriptionExtension(soap, "tt:Extension", &a->_tt__ConfigDescription_Messages::Extension, "tt:MessageDescriptionExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_ParentTopic1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:ParentTopic", &a->_tt__ConfigDescription_Messages::ParentTopic, "xsd:string")) - { soap_flag_ParentTopic1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ParentTopic1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tt__ConfigDescription_Messages *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__ConfigDescription_Messages, SOAP_TYPE__tt__ConfigDescription_Messages, sizeof(_tt__ConfigDescription_Messages), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__ConfigDescription_Messages * SOAP_FMAC2 soap_instantiate__tt__ConfigDescription_Messages(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__ConfigDescription_Messages(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__ConfigDescription_Messages *p; - size_t k = sizeof(_tt__ConfigDescription_Messages); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__ConfigDescription_Messages, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__ConfigDescription_Messages); - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__ConfigDescription_Messages, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__ConfigDescription_Messages location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__ConfigDescription_Messages::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__ConfigDescription_Messages(soap, tag ? tag : "tt:ConfigDescription-Messages", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__ConfigDescription_Messages::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__ConfigDescription_Messages(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__ConfigDescription_Messages * SOAP_FMAC4 soap_get__tt__ConfigDescription_Messages(struct soap *soap, _tt__ConfigDescription_Messages *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__ConfigDescription_Messages(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__ItemListDescription_ElementItemDescription::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__string(soap, &this->_tt__ItemListDescription_ElementItemDescription::Name); - soap_default_xsd__QName(soap, &this->_tt__ItemListDescription_ElementItemDescription::Type); -} - -void _tt__ItemListDescription_ElementItemDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tt__ItemListDescription_ElementItemDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__ItemListDescription_ElementItemDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemListDescription_ElementItemDescription(struct soap *soap, const char *tag, int id, const _tt__ItemListDescription_ElementItemDescription *a, const char *type) -{ - soap_set_attr(soap, "Name", soap_std__string2s(soap, ((_tt__ItemListDescription_ElementItemDescription*)a)->Name), 1); - soap_set_attr(soap, "Type", soap_xsd__QName2s(soap, ((_tt__ItemListDescription_ElementItemDescription*)a)->Type), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__ItemListDescription_ElementItemDescription), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__ItemListDescription_ElementItemDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__ItemListDescription_ElementItemDescription(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__ItemListDescription_ElementItemDescription * SOAP_FMAC4 soap_in__tt__ItemListDescription_ElementItemDescription(struct soap *soap, const char *tag, _tt__ItemListDescription_ElementItemDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__ItemListDescription_ElementItemDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__ItemListDescription_ElementItemDescription, sizeof(_tt__ItemListDescription_ElementItemDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__ItemListDescription_ElementItemDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__ItemListDescription_ElementItemDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2std__string(soap, soap_attr_value(soap, "Name", 1, 1), &((_tt__ItemListDescription_ElementItemDescription*)a)->Name)) - return NULL; - if (soap_s2xsd__QName(soap, soap_attr_value(soap, "Type", 2, 1), &((_tt__ItemListDescription_ElementItemDescription*)a)->Type)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tt__ItemListDescription_ElementItemDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__ItemListDescription_ElementItemDescription, SOAP_TYPE__tt__ItemListDescription_ElementItemDescription, sizeof(_tt__ItemListDescription_ElementItemDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__ItemListDescription_ElementItemDescription * SOAP_FMAC2 soap_instantiate__tt__ItemListDescription_ElementItemDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__ItemListDescription_ElementItemDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__ItemListDescription_ElementItemDescription *p; - size_t k = sizeof(_tt__ItemListDescription_ElementItemDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__ItemListDescription_ElementItemDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__ItemListDescription_ElementItemDescription); - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__ItemListDescription_ElementItemDescription, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__ItemListDescription_ElementItemDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__ItemListDescription_ElementItemDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__ItemListDescription_ElementItemDescription(soap, tag ? tag : "tt:ItemListDescription-ElementItemDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__ItemListDescription_ElementItemDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__ItemListDescription_ElementItemDescription(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__ItemListDescription_ElementItemDescription * SOAP_FMAC4 soap_get__tt__ItemListDescription_ElementItemDescription(struct soap *soap, _tt__ItemListDescription_ElementItemDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__ItemListDescription_ElementItemDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__ItemListDescription_SimpleItemDescription::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__string(soap, &this->_tt__ItemListDescription_SimpleItemDescription::Name); - soap_default_xsd__QName(soap, &this->_tt__ItemListDescription_SimpleItemDescription::Type); -} - -void _tt__ItemListDescription_SimpleItemDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tt__ItemListDescription_SimpleItemDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__ItemListDescription_SimpleItemDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, const char *tag, int id, const _tt__ItemListDescription_SimpleItemDescription *a, const char *type) -{ - soap_set_attr(soap, "Name", soap_std__string2s(soap, ((_tt__ItemListDescription_SimpleItemDescription*)a)->Name), 1); - soap_set_attr(soap, "Type", soap_xsd__QName2s(soap, ((_tt__ItemListDescription_SimpleItemDescription*)a)->Type), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__ItemListDescription_SimpleItemDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__ItemListDescription_SimpleItemDescription(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__ItemListDescription_SimpleItemDescription * SOAP_FMAC4 soap_in__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, const char *tag, _tt__ItemListDescription_SimpleItemDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__ItemListDescription_SimpleItemDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription, sizeof(_tt__ItemListDescription_SimpleItemDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__ItemListDescription_SimpleItemDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2std__string(soap, soap_attr_value(soap, "Name", 1, 1), &((_tt__ItemListDescription_SimpleItemDescription*)a)->Name)) - return NULL; - if (soap_s2xsd__QName(soap, soap_attr_value(soap, "Type", 2, 1), &((_tt__ItemListDescription_SimpleItemDescription*)a)->Type)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tt__ItemListDescription_SimpleItemDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription, SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription, sizeof(_tt__ItemListDescription_SimpleItemDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__ItemListDescription_SimpleItemDescription * SOAP_FMAC2 soap_instantiate__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__ItemListDescription_SimpleItemDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__ItemListDescription_SimpleItemDescription *p; - size_t k = sizeof(_tt__ItemListDescription_SimpleItemDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__ItemListDescription_SimpleItemDescription); - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__ItemListDescription_SimpleItemDescription, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__ItemListDescription_SimpleItemDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__ItemListDescription_SimpleItemDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__ItemListDescription_SimpleItemDescription(soap, tag ? tag : "tt:ItemListDescription-SimpleItemDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__ItemListDescription_SimpleItemDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__ItemListDescription_SimpleItemDescription(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__ItemListDescription_SimpleItemDescription * SOAP_FMAC4 soap_get__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, _tt__ItemListDescription_SimpleItemDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__ItemListDescription_SimpleItemDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__ItemList_ElementItem::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_xsd__anyType(soap, &this->_tt__ItemList_ElementItem::__any); - soap_default_std__string(soap, &this->_tt__ItemList_ElementItem::Name); -} - -void _tt__ItemList_ElementItem::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tt__ItemList_ElementItem::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_tt__ItemList_ElementItem::__any); -#endif -} - -int _tt__ItemList_ElementItem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__ItemList_ElementItem(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemList_ElementItem(struct soap *soap, const char *tag, int id, const _tt__ItemList_ElementItem *a, const char *type) -{ - soap_set_attr(soap, "Name", soap_std__string2s(soap, ((_tt__ItemList_ElementItem*)a)->Name), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__ItemList_ElementItem), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->_tt__ItemList_ElementItem::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__ItemList_ElementItem::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__ItemList_ElementItem(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__ItemList_ElementItem * SOAP_FMAC4 soap_in__tt__ItemList_ElementItem(struct soap *soap, const char *tag, _tt__ItemList_ElementItem *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__ItemList_ElementItem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__ItemList_ElementItem, sizeof(_tt__ItemList_ElementItem), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__ItemList_ElementItem) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__ItemList_ElementItem *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2std__string(soap, soap_attr_value(soap, "Name", 1, 1), &((_tt__ItemList_ElementItem*)a)->Name)) - return NULL; - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->_tt__ItemList_ElementItem::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tt__ItemList_ElementItem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__ItemList_ElementItem, SOAP_TYPE__tt__ItemList_ElementItem, sizeof(_tt__ItemList_ElementItem), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__ItemList_ElementItem * SOAP_FMAC2 soap_instantiate__tt__ItemList_ElementItem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__ItemList_ElementItem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__ItemList_ElementItem *p; - size_t k = sizeof(_tt__ItemList_ElementItem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__ItemList_ElementItem, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__ItemList_ElementItem); - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__ItemList_ElementItem, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__ItemList_ElementItem location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__ItemList_ElementItem::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__ItemList_ElementItem(soap, tag ? tag : "tt:ItemList-ElementItem", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__ItemList_ElementItem::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__ItemList_ElementItem(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__ItemList_ElementItem * SOAP_FMAC4 soap_get__tt__ItemList_ElementItem(struct soap *soap, _tt__ItemList_ElementItem *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__ItemList_ElementItem(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__ItemList_SimpleItem::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__string(soap, &this->_tt__ItemList_SimpleItem::Name); - soap_default_xsd__anySimpleType(soap, &this->_tt__ItemList_SimpleItem::Value); -} - -void _tt__ItemList_SimpleItem::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tt__ItemList_SimpleItem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__ItemList_SimpleItem(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemList_SimpleItem(struct soap *soap, const char *tag, int id, const _tt__ItemList_SimpleItem *a, const char *type) -{ - soap_set_attr(soap, "Name", soap_std__string2s(soap, ((_tt__ItemList_SimpleItem*)a)->Name), 1); - soap_set_attr(soap, "Value", soap_xsd__anySimpleType2s(soap, ((_tt__ItemList_SimpleItem*)a)->Value), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__ItemList_SimpleItem), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__ItemList_SimpleItem::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__ItemList_SimpleItem(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__ItemList_SimpleItem * SOAP_FMAC4 soap_in__tt__ItemList_SimpleItem(struct soap *soap, const char *tag, _tt__ItemList_SimpleItem *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__ItemList_SimpleItem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__ItemList_SimpleItem, sizeof(_tt__ItemList_SimpleItem), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__ItemList_SimpleItem) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__ItemList_SimpleItem *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2std__string(soap, soap_attr_value(soap, "Name", 1, 1), &((_tt__ItemList_SimpleItem*)a)->Name)) - return NULL; - if (soap_s2xsd__anySimpleType(soap, soap_attr_value(soap, "Value", 1, 1), &((_tt__ItemList_SimpleItem*)a)->Value)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tt__ItemList_SimpleItem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__ItemList_SimpleItem, SOAP_TYPE__tt__ItemList_SimpleItem, sizeof(_tt__ItemList_SimpleItem), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__ItemList_SimpleItem * SOAP_FMAC2 soap_instantiate__tt__ItemList_SimpleItem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__ItemList_SimpleItem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__ItemList_SimpleItem *p; - size_t k = sizeof(_tt__ItemList_SimpleItem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__ItemList_SimpleItem, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__ItemList_SimpleItem); - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__ItemList_SimpleItem, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__ItemList_SimpleItem location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__ItemList_SimpleItem::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__ItemList_SimpleItem(soap, tag ? tag : "tt:ItemList-SimpleItem", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__ItemList_SimpleItem::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__ItemList_SimpleItem(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__ItemList_SimpleItem * SOAP_FMAC4 soap_get__tt__ItemList_SimpleItem(struct soap *soap, _tt__ItemList_SimpleItem *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__ItemList_SimpleItem(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__EventSubscription_SubscriptionPolicy::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tt__EventSubscription_SubscriptionPolicy::__any); -} - -void _tt__EventSubscription_SubscriptionPolicy::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tt__EventSubscription_SubscriptionPolicy::__any); -#endif -} - -int _tt__EventSubscription_SubscriptionPolicy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__EventSubscription_SubscriptionPolicy(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, const char *tag, int id, const _tt__EventSubscription_SubscriptionPolicy *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tt__EventSubscription_SubscriptionPolicy::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__EventSubscription_SubscriptionPolicy::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__EventSubscription_SubscriptionPolicy(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__EventSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_in__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, const char *tag, _tt__EventSubscription_SubscriptionPolicy *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__EventSubscription_SubscriptionPolicy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy, sizeof(_tt__EventSubscription_SubscriptionPolicy), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__EventSubscription_SubscriptionPolicy *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tt__EventSubscription_SubscriptionPolicy::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tt__EventSubscription_SubscriptionPolicy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy, SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy, sizeof(_tt__EventSubscription_SubscriptionPolicy), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__EventSubscription_SubscriptionPolicy * SOAP_FMAC2 soap_instantiate__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__EventSubscription_SubscriptionPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__EventSubscription_SubscriptionPolicy *p; - size_t k = sizeof(_tt__EventSubscription_SubscriptionPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__EventSubscription_SubscriptionPolicy); - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__EventSubscription_SubscriptionPolicy, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__EventSubscription_SubscriptionPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__EventSubscription_SubscriptionPolicy::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__EventSubscription_SubscriptionPolicy(soap, tag ? tag : "tt:EventSubscription-SubscriptionPolicy", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__EventSubscription_SubscriptionPolicy::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__EventSubscription_SubscriptionPolicy(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__EventSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_get__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, _tt__EventSubscription_SubscriptionPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__EventSubscription_SubscriptionPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__ColorDescriptor_ColorCluster::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - this->_tt__ColorDescriptor_ColorCluster::Color = NULL; - this->_tt__ColorDescriptor_ColorCluster::Weight = NULL; - this->_tt__ColorDescriptor_ColorCluster::Covariance = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tt__ColorDescriptor_ColorCluster::__any); -} - -void _tt__ColorDescriptor_ColorCluster::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Color(soap, &this->_tt__ColorDescriptor_ColorCluster::Color); - soap_serialize_PointerTofloat(soap, &this->_tt__ColorDescriptor_ColorCluster::Weight); - soap_serialize_PointerTott__ColorCovariance(soap, &this->_tt__ColorDescriptor_ColorCluster::Covariance); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tt__ColorDescriptor_ColorCluster::__any); -#endif -} - -int _tt__ColorDescriptor_ColorCluster::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__ColorDescriptor_ColorCluster(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ColorDescriptor_ColorCluster(struct soap *soap, const char *tag, int id, const _tt__ColorDescriptor_ColorCluster *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__ColorDescriptor_ColorCluster), type)) - return soap->error; - if (!a->_tt__ColorDescriptor_ColorCluster::Color) - { if (soap_element_empty(soap, "tt:Color", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Color(soap, "tt:Color", -1, &a->_tt__ColorDescriptor_ColorCluster::Color, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Weight", -1, &a->_tt__ColorDescriptor_ColorCluster::Weight, "")) - return soap->error; - if (soap_out_PointerTott__ColorCovariance(soap, "tt:Covariance", -1, &a->_tt__ColorDescriptor_ColorCluster::Covariance, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tt__ColorDescriptor_ColorCluster::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__ColorDescriptor_ColorCluster::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__ColorDescriptor_ColorCluster(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__ColorDescriptor_ColorCluster * SOAP_FMAC4 soap_in__tt__ColorDescriptor_ColorCluster(struct soap *soap, const char *tag, _tt__ColorDescriptor_ColorCluster *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__ColorDescriptor_ColorCluster*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__ColorDescriptor_ColorCluster, sizeof(_tt__ColorDescriptor_ColorCluster), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__ColorDescriptor_ColorCluster) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__ColorDescriptor_ColorCluster *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Color1 = 1; - size_t soap_flag_Weight1 = 1; - size_t soap_flag_Covariance1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Color1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Color(soap, "tt:Color", &a->_tt__ColorDescriptor_ColorCluster::Color, "tt:Color")) - { soap_flag_Color1--; - continue; - } - } - if (soap_flag_Weight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Weight", &a->_tt__ColorDescriptor_ColorCluster::Weight, "xsd:float")) - { soap_flag_Weight1--; - continue; - } - } - if (soap_flag_Covariance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ColorCovariance(soap, "tt:Covariance", &a->_tt__ColorDescriptor_ColorCluster::Covariance, "tt:ColorCovariance")) - { soap_flag_Covariance1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tt__ColorDescriptor_ColorCluster::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tt__ColorDescriptor_ColorCluster::Color)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tt__ColorDescriptor_ColorCluster *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__ColorDescriptor_ColorCluster, SOAP_TYPE__tt__ColorDescriptor_ColorCluster, sizeof(_tt__ColorDescriptor_ColorCluster), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__ColorDescriptor_ColorCluster * SOAP_FMAC2 soap_instantiate__tt__ColorDescriptor_ColorCluster(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__ColorDescriptor_ColorCluster(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__ColorDescriptor_ColorCluster *p; - size_t k = sizeof(_tt__ColorDescriptor_ColorCluster); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__ColorDescriptor_ColorCluster, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__ColorDescriptor_ColorCluster); - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__ColorDescriptor_ColorCluster, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__ColorDescriptor_ColorCluster location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__ColorDescriptor_ColorCluster::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__ColorDescriptor_ColorCluster(soap, tag ? tag : "tt:ColorDescriptor-ColorCluster", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__ColorDescriptor_ColorCluster::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__ColorDescriptor_ColorCluster(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__ColorDescriptor_ColorCluster * SOAP_FMAC4 soap_get__tt__ColorDescriptor_ColorCluster(struct soap *soap, _tt__ColorDescriptor_ColorCluster *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__ColorDescriptor_ColorCluster(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__CreatePullPointSubscription_SubscriptionPolicy::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__CreatePullPointSubscription_SubscriptionPolicy::__any); -} - -void _tev__CreatePullPointSubscription_SubscriptionPolicy::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__CreatePullPointSubscription_SubscriptionPolicy::__any); -#endif -} - -int _tev__CreatePullPointSubscription_SubscriptionPolicy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, const char *tag, int id, const _tev__CreatePullPointSubscription_SubscriptionPolicy *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tev__CreatePullPointSubscription_SubscriptionPolicy::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__CreatePullPointSubscription_SubscriptionPolicy::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__CreatePullPointSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_in__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, const char *tag, _tev__CreatePullPointSubscription_SubscriptionPolicy *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__CreatePullPointSubscription_SubscriptionPolicy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy, sizeof(_tev__CreatePullPointSubscription_SubscriptionPolicy), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__CreatePullPointSubscription_SubscriptionPolicy *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tev__CreatePullPointSubscription_SubscriptionPolicy::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tev__CreatePullPointSubscription_SubscriptionPolicy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy, SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy, sizeof(_tev__CreatePullPointSubscription_SubscriptionPolicy), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__CreatePullPointSubscription_SubscriptionPolicy * SOAP_FMAC2 soap_instantiate__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__CreatePullPointSubscription_SubscriptionPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__CreatePullPointSubscription_SubscriptionPolicy *p; - size_t k = sizeof(_tev__CreatePullPointSubscription_SubscriptionPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__CreatePullPointSubscription_SubscriptionPolicy); - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__CreatePullPointSubscription_SubscriptionPolicy, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__CreatePullPointSubscription_SubscriptionPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__CreatePullPointSubscription_SubscriptionPolicy::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, tag ? tag : "tev:CreatePullPointSubscription-SubscriptionPolicy", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__CreatePullPointSubscription_SubscriptionPolicy::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__CreatePullPointSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_get__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, _tev__CreatePullPointSubscription_SubscriptionPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsrfbf__BaseFaultType_FaultCause::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_xsd__anyType(soap, &this->_wsrfbf__BaseFaultType_FaultCause::__any); -} - -void _wsrfbf__BaseFaultType_FaultCause::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsrfbf__BaseFaultType_FaultCause::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_wsrfbf__BaseFaultType_FaultCause::__any); -#endif -} - -int _wsrfbf__BaseFaultType_FaultCause::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsrfbf__BaseFaultType_FaultCause(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, const char *tag, int id, const _wsrfbf__BaseFaultType_FaultCause *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->_wsrfbf__BaseFaultType_FaultCause::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsrfbf__BaseFaultType_FaultCause::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsrfbf__BaseFaultType_FaultCause(soap, tag, this, type); -} - -SOAP_FMAC3 _wsrfbf__BaseFaultType_FaultCause * SOAP_FMAC4 soap_in__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, const char *tag, _wsrfbf__BaseFaultType_FaultCause *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsrfbf__BaseFaultType_FaultCause*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause, sizeof(_wsrfbf__BaseFaultType_FaultCause), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsrfbf__BaseFaultType_FaultCause *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->_wsrfbf__BaseFaultType_FaultCause::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsrfbf__BaseFaultType_FaultCause *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause, SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause, sizeof(_wsrfbf__BaseFaultType_FaultCause), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsrfbf__BaseFaultType_FaultCause * SOAP_FMAC2 soap_instantiate__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsrfbf__BaseFaultType_FaultCause(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsrfbf__BaseFaultType_FaultCause *p; - size_t k = sizeof(_wsrfbf__BaseFaultType_FaultCause); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsrfbf__BaseFaultType_FaultCause); - } - else - { p = SOAP_NEW_ARRAY(soap, _wsrfbf__BaseFaultType_FaultCause, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsrfbf__BaseFaultType_FaultCause location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsrfbf__BaseFaultType_FaultCause::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsrfbf__BaseFaultType_FaultCause(soap, tag ? tag : "wsrfbf:BaseFaultType-FaultCause", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsrfbf__BaseFaultType_FaultCause::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsrfbf__BaseFaultType_FaultCause(soap, this, tag, type); -} - -SOAP_FMAC3 _wsrfbf__BaseFaultType_FaultCause * SOAP_FMAC4 soap_get__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, _wsrfbf__BaseFaultType_FaultCause *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsrfbf__BaseFaultType_FaultCause(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsrfbf__BaseFaultType_Description::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__string(soap, &this->_wsrfbf__BaseFaultType_Description::__item); - this->_wsrfbf__BaseFaultType_Description::xml__lang = NULL; -} - -void _wsrfbf__BaseFaultType_Description::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsrfbf__BaseFaultType_Description::__item, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_wsrfbf__BaseFaultType_Description::__item); -#endif -} - -int _wsrfbf__BaseFaultType_Description::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsrfbf__BaseFaultType_Description(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsrfbf__BaseFaultType_Description(struct soap *soap, const char *tag, int id, const _wsrfbf__BaseFaultType_Description *a, const char *type) -{ - if (((_wsrfbf__BaseFaultType_Description*)a)->xml__lang) - { soap_set_attr(soap, "xml:lang", soap__xml__lang2s(soap, *((_wsrfbf__BaseFaultType_Description*)a)->xml__lang), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_std__string(soap, tag, id, &a->_wsrfbf__BaseFaultType_Description::__item, ""); -} - -void *_wsrfbf__BaseFaultType_Description::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsrfbf__BaseFaultType_Description(soap, tag, this, type); -} - -SOAP_FMAC3 _wsrfbf__BaseFaultType_Description * SOAP_FMAC4 soap_in__wsrfbf__BaseFaultType_Description(struct soap *soap, const char *tag, _wsrfbf__BaseFaultType_Description *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (_wsrfbf__BaseFaultType_Description*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsrfbf__BaseFaultType_Description, sizeof(_wsrfbf__BaseFaultType_Description), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsrfbf__BaseFaultType_Description) - return (_wsrfbf__BaseFaultType_Description *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "xml:lang", 1, 0); - if (t) - { - if (!(((_wsrfbf__BaseFaultType_Description*)a)->xml__lang = soap_new__xml__lang(soap))) - return NULL; - if (soap_s2_xml__lang(soap, t, ((_wsrfbf__BaseFaultType_Description*)a)->xml__lang)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (!soap_in_std__string(soap, tag, &a->_wsrfbf__BaseFaultType_Description::__item, "")) - return NULL; - return a; -} - -SOAP_FMAC1 _wsrfbf__BaseFaultType_Description * SOAP_FMAC2 soap_instantiate__wsrfbf__BaseFaultType_Description(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsrfbf__BaseFaultType_Description(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsrfbf__BaseFaultType_Description *p; - size_t k = sizeof(_wsrfbf__BaseFaultType_Description); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsrfbf__BaseFaultType_Description, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsrfbf__BaseFaultType_Description); - } - else - { p = SOAP_NEW_ARRAY(soap, _wsrfbf__BaseFaultType_Description, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsrfbf__BaseFaultType_Description location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsrfbf__BaseFaultType_Description::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsrfbf__BaseFaultType_Description(soap, tag ? tag : "wsrfbf:BaseFaultType-Description", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsrfbf__BaseFaultType_Description::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsrfbf__BaseFaultType_Description(soap, this, tag, type); -} - -SOAP_FMAC3 _wsrfbf__BaseFaultType_Description * SOAP_FMAC4 soap_get__wsrfbf__BaseFaultType_Description(struct soap *soap, _wsrfbf__BaseFaultType_Description *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsrfbf__BaseFaultType_Description(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsrfbf__BaseFaultType_ErrorCode::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_xsd__anyURI(soap, &this->_wsrfbf__BaseFaultType_ErrorCode::dialect); - soap_default_xsd__anyType(soap, &this->_wsrfbf__BaseFaultType_ErrorCode::__mixed); -} - -void _wsrfbf__BaseFaultType_ErrorCode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsrfbf__BaseFaultType_ErrorCode::__mixed, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_wsrfbf__BaseFaultType_ErrorCode::__mixed); -#endif -} - -int _wsrfbf__BaseFaultType_ErrorCode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsrfbf__BaseFaultType_ErrorCode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, const char *tag, int id, const _wsrfbf__BaseFaultType_ErrorCode *a, const char *type) -{ - soap_set_attr(soap, "dialect", soap_xsd__anyURI2s(soap, ((_wsrfbf__BaseFaultType_ErrorCode*)a)->dialect), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-mixed", -1, &a->_wsrfbf__BaseFaultType_ErrorCode::__mixed, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsrfbf__BaseFaultType_ErrorCode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsrfbf__BaseFaultType_ErrorCode(soap, tag, this, type); -} - -SOAP_FMAC3 _wsrfbf__BaseFaultType_ErrorCode * SOAP_FMAC4 soap_in__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, const char *tag, _wsrfbf__BaseFaultType_ErrorCode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsrfbf__BaseFaultType_ErrorCode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode, sizeof(_wsrfbf__BaseFaultType_ErrorCode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsrfbf__BaseFaultType_ErrorCode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__anyURI(soap, soap_attr_value(soap, "dialect", 4, 1), &((_wsrfbf__BaseFaultType_ErrorCode*)a)->dialect)) - return NULL; - size_t soap_flag___mixed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___mixed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-mixed", &a->_wsrfbf__BaseFaultType_ErrorCode::__mixed, "xsd:anyType")) - { soap_flag___mixed1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsrfbf__BaseFaultType_ErrorCode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode, SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode, sizeof(_wsrfbf__BaseFaultType_ErrorCode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsrfbf__BaseFaultType_ErrorCode * SOAP_FMAC2 soap_instantiate__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsrfbf__BaseFaultType_ErrorCode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsrfbf__BaseFaultType_ErrorCode *p; - size_t k = sizeof(_wsrfbf__BaseFaultType_ErrorCode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsrfbf__BaseFaultType_ErrorCode); - } - else - { p = SOAP_NEW_ARRAY(soap, _wsrfbf__BaseFaultType_ErrorCode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsrfbf__BaseFaultType_ErrorCode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsrfbf__BaseFaultType_ErrorCode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsrfbf__BaseFaultType_ErrorCode(soap, tag ? tag : "wsrfbf:BaseFaultType-ErrorCode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsrfbf__BaseFaultType_ErrorCode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsrfbf__BaseFaultType_ErrorCode(soap, this, tag, type); -} - -SOAP_FMAC3 _wsrfbf__BaseFaultType_ErrorCode * SOAP_FMAC4 soap_get__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, _wsrfbf__BaseFaultType_ErrorCode *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsrfbf__BaseFaultType_ErrorCode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__Subscribe_SubscriptionPolicy::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Subscribe_SubscriptionPolicy::__any); -} - -void _wsnt__Subscribe_SubscriptionPolicy::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Subscribe_SubscriptionPolicy::__any); -#endif -} - -int _wsnt__Subscribe_SubscriptionPolicy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__Subscribe_SubscriptionPolicy(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, const char *tag, int id, const _wsnt__Subscribe_SubscriptionPolicy *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__Subscribe_SubscriptionPolicy::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__Subscribe_SubscriptionPolicy::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__Subscribe_SubscriptionPolicy(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__Subscribe_SubscriptionPolicy * SOAP_FMAC4 soap_in__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, const char *tag, _wsnt__Subscribe_SubscriptionPolicy *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__Subscribe_SubscriptionPolicy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy, sizeof(_wsnt__Subscribe_SubscriptionPolicy), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__Subscribe_SubscriptionPolicy *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__Subscribe_SubscriptionPolicy::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__Subscribe_SubscriptionPolicy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy, SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy, sizeof(_wsnt__Subscribe_SubscriptionPolicy), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__Subscribe_SubscriptionPolicy * SOAP_FMAC2 soap_instantiate__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__Subscribe_SubscriptionPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__Subscribe_SubscriptionPolicy *p; - size_t k = sizeof(_wsnt__Subscribe_SubscriptionPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__Subscribe_SubscriptionPolicy); - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__Subscribe_SubscriptionPolicy, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__Subscribe_SubscriptionPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__Subscribe_SubscriptionPolicy::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__Subscribe_SubscriptionPolicy(soap, tag ? tag : "wsnt:Subscribe-SubscriptionPolicy", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__Subscribe_SubscriptionPolicy::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__Subscribe_SubscriptionPolicy(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__Subscribe_SubscriptionPolicy * SOAP_FMAC4 soap_get__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, _wsnt__Subscribe_SubscriptionPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__Subscribe_SubscriptionPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__NotificationMessageHolderType_Message::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - soap_default_xsd__anyType(soap, &this->_wsnt__NotificationMessageHolderType_Message::__any); -} - -void _wsnt__NotificationMessageHolderType_Message::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsnt__NotificationMessageHolderType_Message::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_wsnt__NotificationMessageHolderType_Message::__any); -#endif -} - -int _wsnt__NotificationMessageHolderType_Message::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__NotificationMessageHolderType_Message(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__NotificationMessageHolderType_Message(struct soap *soap, const char *tag, int id, const _wsnt__NotificationMessageHolderType_Message *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__NotificationMessageHolderType_Message), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->_wsnt__NotificationMessageHolderType_Message::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__NotificationMessageHolderType_Message::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__NotificationMessageHolderType_Message(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__NotificationMessageHolderType_Message * SOAP_FMAC4 soap_in__wsnt__NotificationMessageHolderType_Message(struct soap *soap, const char *tag, _wsnt__NotificationMessageHolderType_Message *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__NotificationMessageHolderType_Message*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__NotificationMessageHolderType_Message, sizeof(_wsnt__NotificationMessageHolderType_Message), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__NotificationMessageHolderType_Message) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__NotificationMessageHolderType_Message *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->_wsnt__NotificationMessageHolderType_Message::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__NotificationMessageHolderType_Message *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__NotificationMessageHolderType_Message, SOAP_TYPE__wsnt__NotificationMessageHolderType_Message, sizeof(_wsnt__NotificationMessageHolderType_Message), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__NotificationMessageHolderType_Message * SOAP_FMAC2 soap_instantiate__wsnt__NotificationMessageHolderType_Message(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__NotificationMessageHolderType_Message(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__NotificationMessageHolderType_Message *p; - size_t k = sizeof(_wsnt__NotificationMessageHolderType_Message); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__NotificationMessageHolderType_Message, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__NotificationMessageHolderType_Message); - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__NotificationMessageHolderType_Message, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__NotificationMessageHolderType_Message location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__NotificationMessageHolderType_Message::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__NotificationMessageHolderType_Message(soap, tag ? tag : "wsnt:NotificationMessageHolderType-Message", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__NotificationMessageHolderType_Message::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__NotificationMessageHolderType_Message(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__NotificationMessageHolderType_Message * SOAP_FMAC4 soap_get__wsnt__NotificationMessageHolderType_Message(struct soap *soap, _wsnt__NotificationMessageHolderType_Message *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__NotificationMessageHolderType_Message(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobReference__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->tt__RecordingJobReference__::__item); -} - -void tt__RecordingJobReference__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->tt__RecordingJobReference__::__item); -#endif -} - -int tt__RecordingJobReference__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobReference__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobReference__(struct soap *soap, const char *tag, int id, const tt__RecordingJobReference__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RecordingJobReference(soap, tag, id, &a->tt__RecordingJobReference__::__item, ""); -} - -void *tt__RecordingJobReference__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobReference__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobReference__ * SOAP_FMAC4 soap_in_tt__RecordingJobReference__(struct soap *soap, const char *tag, tt__RecordingJobReference__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RecordingJobReference__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobReference__, sizeof(tt__RecordingJobReference__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobReference__) - return (tt__RecordingJobReference__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RecordingJobReference(soap, tag, &a->tt__RecordingJobReference__::__item, "tt:RecordingJobReference")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RecordingJobReference__ * SOAP_FMAC2 soap_instantiate_tt__RecordingJobReference__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobReference__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobReference__ *p; - size_t k = sizeof(tt__RecordingJobReference__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobReference__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobReference__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobReference__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobReference__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobReference__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobReference__(soap, tag ? tag : "tt:RecordingJobReference", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobReference__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobReference__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobReference__ * SOAP_FMAC4 soap_get_tt__RecordingJobReference__(struct soap *soap, tt__RecordingJobReference__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobReference__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__JobToken__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->tt__JobToken__::__item); -} - -void tt__JobToken__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->tt__JobToken__::__item); -#endif -} - -int tt__JobToken__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__JobToken__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JobToken__(struct soap *soap, const char *tag, int id, const tt__JobToken__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__JobToken(soap, tag, id, &a->tt__JobToken__::__item, ""); -} - -void *tt__JobToken__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__JobToken__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__JobToken__ * SOAP_FMAC4 soap_in_tt__JobToken__(struct soap *soap, const char *tag, tt__JobToken__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__JobToken__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__JobToken__, sizeof(tt__JobToken__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__JobToken__) - return (tt__JobToken__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__JobToken(soap, tag, &a->tt__JobToken__::__item, "tt:JobToken")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__JobToken__ * SOAP_FMAC2 soap_instantiate_tt__JobToken__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__JobToken__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__JobToken__ *p; - size_t k = sizeof(tt__JobToken__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__JobToken__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__JobToken__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__JobToken__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__JobToken__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__JobToken__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__JobToken__(soap, tag ? tag : "tt:JobToken", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__JobToken__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__JobToken__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__JobToken__ * SOAP_FMAC4 soap_get_tt__JobToken__(struct soap *soap, tt__JobToken__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__JobToken__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TrackReference__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TrackReference(soap, &this->tt__TrackReference__::__item); -} - -void tt__TrackReference__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__TrackReference(soap, &this->tt__TrackReference__::__item); -#endif -} - -int tt__TrackReference__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TrackReference__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackReference__(struct soap *soap, const char *tag, int id, const tt__TrackReference__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__TrackReference(soap, tag, id, &a->tt__TrackReference__::__item, ""); -} - -void *tt__TrackReference__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TrackReference__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TrackReference__ * SOAP_FMAC4 soap_in_tt__TrackReference__(struct soap *soap, const char *tag, tt__TrackReference__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__TrackReference__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TrackReference__, sizeof(tt__TrackReference__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TrackReference__) - return (tt__TrackReference__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__TrackReference(soap, tag, &a->tt__TrackReference__::__item, "tt:TrackReference")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__TrackReference__ * SOAP_FMAC2 soap_instantiate_tt__TrackReference__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TrackReference__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TrackReference__ *p; - size_t k = sizeof(tt__TrackReference__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TrackReference__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TrackReference__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TrackReference__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TrackReference__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TrackReference__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TrackReference__(soap, tag ? tag : "tt:TrackReference", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TrackReference__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TrackReference__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TrackReference__ * SOAP_FMAC4 soap_get_tt__TrackReference__(struct soap *soap, tt__TrackReference__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TrackReference__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingReference__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__RecordingReference__::__item); -} - -void tt__RecordingReference__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__RecordingReference__::__item); -#endif -} - -int tt__RecordingReference__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingReference__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingReference__(struct soap *soap, const char *tag, int id, const tt__RecordingReference__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RecordingReference(soap, tag, id, &a->tt__RecordingReference__::__item, ""); -} - -void *tt__RecordingReference__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingReference__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingReference__ * SOAP_FMAC4 soap_in_tt__RecordingReference__(struct soap *soap, const char *tag, tt__RecordingReference__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RecordingReference__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingReference__, sizeof(tt__RecordingReference__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingReference__) - return (tt__RecordingReference__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RecordingReference(soap, tag, &a->tt__RecordingReference__::__item, "tt:RecordingReference")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RecordingReference__ * SOAP_FMAC2 soap_instantiate_tt__RecordingReference__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingReference__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingReference__ *p; - size_t k = sizeof(tt__RecordingReference__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingReference__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingReference__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingReference__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingReference__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingReference__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingReference__(soap, tag ? tag : "tt:RecordingReference", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingReference__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingReference__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingReference__ * SOAP_FMAC4 soap_get_tt__RecordingReference__(struct soap *soap, tt__RecordingReference__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingReference__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReceiverReference__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReceiverReference(soap, &this->tt__ReceiverReference__::__item); -} - -void tt__ReceiverReference__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__ReceiverReference(soap, &this->tt__ReceiverReference__::__item); -#endif -} - -int tt__ReceiverReference__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReceiverReference__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverReference__(struct soap *soap, const char *tag, int id, const tt__ReceiverReference__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ReceiverReference(soap, tag, id, &a->tt__ReceiverReference__::__item, ""); -} - -void *tt__ReceiverReference__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReceiverReference__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReceiverReference__ * SOAP_FMAC4 soap_in_tt__ReceiverReference__(struct soap *soap, const char *tag, tt__ReceiverReference__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ReceiverReference__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverReference__, sizeof(tt__ReceiverReference__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReceiverReference__) - return (tt__ReceiverReference__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ReceiverReference(soap, tag, &a->tt__ReceiverReference__::__item, "tt:ReceiverReference")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ReceiverReference__ * SOAP_FMAC2 soap_instantiate_tt__ReceiverReference__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReceiverReference__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReceiverReference__ *p; - size_t k = sizeof(tt__ReceiverReference__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReceiverReference__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReceiverReference__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReceiverReference__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReceiverReference__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReceiverReference__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReceiverReference__(soap, tag ? tag : "tt:ReceiverReference", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReceiverReference__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReceiverReference__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReceiverReference__ * SOAP_FMAC4 soap_get_tt__ReceiverReference__(struct soap *soap, tt__ReceiverReference__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverReference__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__SimpleTopicExpression__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wstop__SimpleTopicExpression(soap, &this->wstop__SimpleTopicExpression__::__item); -} - -void wstop__SimpleTopicExpression__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_wstop__SimpleTopicExpression(soap, &this->wstop__SimpleTopicExpression__::__item); -#endif -} - -int wstop__SimpleTopicExpression__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__SimpleTopicExpression__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__SimpleTopicExpression__(struct soap *soap, const char *tag, int id, const wstop__SimpleTopicExpression__ *a, const char *type) -{ - std::string soap_tmp___item(soap_QName2s(soap, a->__item.c_str())); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_wstop__SimpleTopicExpression(soap, tag, id, &soap_tmp___item, ""); -} - -void *wstop__SimpleTopicExpression__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__SimpleTopicExpression__(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__SimpleTopicExpression__ * SOAP_FMAC4 soap_in_wstop__SimpleTopicExpression__(struct soap *soap, const char *tag, wstop__SimpleTopicExpression__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (wstop__SimpleTopicExpression__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__SimpleTopicExpression__, sizeof(wstop__SimpleTopicExpression__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__SimpleTopicExpression__) - return (wstop__SimpleTopicExpression__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_wstop__SimpleTopicExpression(soap, tag, &a->wstop__SimpleTopicExpression__::__item, "wstop:SimpleTopicExpression")) - return NULL; - return a; -} - -SOAP_FMAC1 wstop__SimpleTopicExpression__ * SOAP_FMAC2 soap_instantiate_wstop__SimpleTopicExpression__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__SimpleTopicExpression__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__SimpleTopicExpression__ *p; - size_t k = sizeof(wstop__SimpleTopicExpression__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__SimpleTopicExpression__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__SimpleTopicExpression__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__SimpleTopicExpression__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__SimpleTopicExpression__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__SimpleTopicExpression__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__SimpleTopicExpression__(soap, tag ? tag : "wstop:SimpleTopicExpression", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__SimpleTopicExpression__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__SimpleTopicExpression__(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__SimpleTopicExpression__ * SOAP_FMAC4 soap_get_wstop__SimpleTopicExpression__(struct soap *soap, wstop__SimpleTopicExpression__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__SimpleTopicExpression__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__ConcreteTopicExpression__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wstop__ConcreteTopicExpression(soap, &this->wstop__ConcreteTopicExpression__::__item); -} - -void wstop__ConcreteTopicExpression__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->wstop__ConcreteTopicExpression__::__item, SOAP_TYPE_wstop__ConcreteTopicExpression); - soap_serialize_wstop__ConcreteTopicExpression(soap, &this->wstop__ConcreteTopicExpression__::__item); -#endif -} - -int wstop__ConcreteTopicExpression__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__ConcreteTopicExpression__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__ConcreteTopicExpression__(struct soap *soap, const char *tag, int id, const wstop__ConcreteTopicExpression__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_wstop__ConcreteTopicExpression(soap, tag, id, &a->wstop__ConcreteTopicExpression__::__item, ""); -} - -void *wstop__ConcreteTopicExpression__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__ConcreteTopicExpression__(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__ConcreteTopicExpression__ * SOAP_FMAC4 soap_in_wstop__ConcreteTopicExpression__(struct soap *soap, const char *tag, wstop__ConcreteTopicExpression__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (wstop__ConcreteTopicExpression__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__ConcreteTopicExpression__, sizeof(wstop__ConcreteTopicExpression__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__ConcreteTopicExpression__) - return (wstop__ConcreteTopicExpression__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_wstop__ConcreteTopicExpression(soap, tag, &a->wstop__ConcreteTopicExpression__::__item, "wstop:ConcreteTopicExpression")) - return NULL; - return a; -} - -SOAP_FMAC1 wstop__ConcreteTopicExpression__ * SOAP_FMAC2 soap_instantiate_wstop__ConcreteTopicExpression__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__ConcreteTopicExpression__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__ConcreteTopicExpression__ *p; - size_t k = sizeof(wstop__ConcreteTopicExpression__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__ConcreteTopicExpression__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__ConcreteTopicExpression__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__ConcreteTopicExpression__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__ConcreteTopicExpression__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__ConcreteTopicExpression__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__ConcreteTopicExpression__(soap, tag ? tag : "wstop:ConcreteTopicExpression", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__ConcreteTopicExpression__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__ConcreteTopicExpression__(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__ConcreteTopicExpression__ * SOAP_FMAC4 soap_get_wstop__ConcreteTopicExpression__(struct soap *soap, wstop__ConcreteTopicExpression__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__ConcreteTopicExpression__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__ConcreteTopicExpression(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_wstop__ConcreteTopicExpression), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_wstop__ConcreteTopicExpression(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_wstop__ConcreteTopicExpression, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 5, 0, -1, "(([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*)(/([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*)*"))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_wstop__ConcreteTopicExpression, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_wstop__ConcreteTopicExpression, SOAP_TYPE_wstop__ConcreteTopicExpression, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wstop__ConcreteTopicExpression(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_wstop__ConcreteTopicExpression(soap, tag ? tag : "wstop:ConcreteTopicExpression", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_wstop__ConcreteTopicExpression(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__ConcreteTopicExpression(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__FullTopicExpression__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wstop__FullTopicExpression(soap, &this->wstop__FullTopicExpression__::__item); -} - -void wstop__FullTopicExpression__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_wstop__FullTopicExpression(soap, &this->wstop__FullTopicExpression__::__item); -#endif -} - -int wstop__FullTopicExpression__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__FullTopicExpression__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__FullTopicExpression__(struct soap *soap, const char *tag, int id, const wstop__FullTopicExpression__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_wstop__FullTopicExpression(soap, tag, id, &a->wstop__FullTopicExpression__::__item, ""); -} - -void *wstop__FullTopicExpression__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__FullTopicExpression__(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__FullTopicExpression__ * SOAP_FMAC4 soap_in_wstop__FullTopicExpression__(struct soap *soap, const char *tag, wstop__FullTopicExpression__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (wstop__FullTopicExpression__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__FullTopicExpression__, sizeof(wstop__FullTopicExpression__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__FullTopicExpression__) - return (wstop__FullTopicExpression__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_wstop__FullTopicExpression(soap, tag, &a->wstop__FullTopicExpression__::__item, "wstop:FullTopicExpression")) - return NULL; - return a; -} - -SOAP_FMAC1 wstop__FullTopicExpression__ * SOAP_FMAC2 soap_instantiate_wstop__FullTopicExpression__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__FullTopicExpression__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__FullTopicExpression__ *p; - size_t k = sizeof(wstop__FullTopicExpression__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__FullTopicExpression__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__FullTopicExpression__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__FullTopicExpression__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__FullTopicExpression__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__FullTopicExpression__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__FullTopicExpression__(soap, tag ? tag : "wstop:FullTopicExpression", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__FullTopicExpression__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__FullTopicExpression__(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__FullTopicExpression__ * SOAP_FMAC4 soap_get_wstop__FullTopicExpression__(struct soap *soap, wstop__FullTopicExpression__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__FullTopicExpression__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__FullTopicExpression(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_wstop__FullTopicExpression), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_wstop__FullTopicExpression(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_wstop__FullTopicExpression, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 5, 0, -1, "([\\i-[:]][\\c-[:]]*:)?(//)?([\\i-[:]][\\c-[:]]*|\\*)((/|//)(([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*|\\*|[.]))*(\\|([\\i-[:]][\\c-[:]]*:)?(//)?([\\i-[:]][\\c-[:]]*|\\*)((/|//)(([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*|\\*|[.]))*)*"))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_wstop__FullTopicExpression, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_wstop__FullTopicExpression, SOAP_TYPE_wstop__FullTopicExpression, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wstop__FullTopicExpression(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_wstop__FullTopicExpression(soap, tag ? tag : "wstop:FullTopicExpression", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_wstop__FullTopicExpression(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__FullTopicExpression(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void timg__ImagingPresetType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_timg__ImagingPresetType(soap, &this->timg__ImagingPresetType_::__item); -} - -void timg__ImagingPresetType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int timg__ImagingPresetType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_timg__ImagingPresetType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__ImagingPresetType_(struct soap *soap, const char *tag, int id, const timg__ImagingPresetType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_timg__ImagingPresetType(soap, tag, id, &a->timg__ImagingPresetType_::__item, ""); -} - -void *timg__ImagingPresetType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_timg__ImagingPresetType_(soap, tag, this, type); -} - -SOAP_FMAC3 timg__ImagingPresetType_ * SOAP_FMAC4 soap_in_timg__ImagingPresetType_(struct soap *soap, const char *tag, timg__ImagingPresetType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (timg__ImagingPresetType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_timg__ImagingPresetType_, sizeof(timg__ImagingPresetType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_timg__ImagingPresetType_) - return (timg__ImagingPresetType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_timg__ImagingPresetType(soap, tag, &a->timg__ImagingPresetType_::__item, "timg:ImagingPresetType")) - return NULL; - return a; -} - -SOAP_FMAC1 timg__ImagingPresetType_ * SOAP_FMAC2 soap_instantiate_timg__ImagingPresetType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_timg__ImagingPresetType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - timg__ImagingPresetType_ *p; - size_t k = sizeof(timg__ImagingPresetType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_timg__ImagingPresetType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, timg__ImagingPresetType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, timg__ImagingPresetType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated timg__ImagingPresetType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int timg__ImagingPresetType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_timg__ImagingPresetType_(soap, tag ? tag : "timg:ImagingPresetType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *timg__ImagingPresetType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_timg__ImagingPresetType_(soap, this, tag, type); -} - -SOAP_FMAC3 timg__ImagingPresetType_ * SOAP_FMAC4 soap_get_timg__ImagingPresetType_(struct soap *soap, timg__ImagingPresetType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_timg__ImagingPresetType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__StorageType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tds__StorageType(soap, &this->tds__StorageType_::__item); -} - -void tds__StorageType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tds__StorageType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__StorageType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageType_(struct soap *soap, const char *tag, int id, const tds__StorageType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tds__StorageType(soap, tag, id, &a->tds__StorageType_::__item, ""); -} - -void *tds__StorageType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__StorageType_(soap, tag, this, type); -} - -SOAP_FMAC3 tds__StorageType_ * SOAP_FMAC4 soap_in_tds__StorageType_(struct soap *soap, const char *tag, tds__StorageType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tds__StorageType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__StorageType_, sizeof(tds__StorageType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__StorageType_) - return (tds__StorageType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tds__StorageType(soap, tag, &a->tds__StorageType_::__item, "tds:StorageType")) - return NULL; - return a; -} - -SOAP_FMAC1 tds__StorageType_ * SOAP_FMAC2 soap_instantiate_tds__StorageType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__StorageType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__StorageType_ *p; - size_t k = sizeof(tds__StorageType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__StorageType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__StorageType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__StorageType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__StorageType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__StorageType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__StorageType_(soap, tag ? tag : "tds:StorageType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__StorageType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__StorageType_(soap, this, tag, type); -} - -SOAP_FMAC3 tds__StorageType_ * SOAP_FMAC4 soap_get_tds__StorageType_(struct soap *soap, tds__StorageType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__StorageType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__AutoGeoModes_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tds__AutoGeoModes(soap, &this->tds__AutoGeoModes_::__item); -} - -void tds__AutoGeoModes_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tds__AutoGeoModes_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__AutoGeoModes_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__AutoGeoModes_(struct soap *soap, const char *tag, int id, const tds__AutoGeoModes_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tds__AutoGeoModes(soap, tag, id, &a->tds__AutoGeoModes_::__item, ""); -} - -void *tds__AutoGeoModes_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__AutoGeoModes_(soap, tag, this, type); -} - -SOAP_FMAC3 tds__AutoGeoModes_ * SOAP_FMAC4 soap_in_tds__AutoGeoModes_(struct soap *soap, const char *tag, tds__AutoGeoModes_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tds__AutoGeoModes_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__AutoGeoModes_, sizeof(tds__AutoGeoModes_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__AutoGeoModes_) - return (tds__AutoGeoModes_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tds__AutoGeoModes(soap, tag, &a->tds__AutoGeoModes_::__item, "tds:AutoGeoModes")) - return NULL; - return a; -} - -SOAP_FMAC1 tds__AutoGeoModes_ * SOAP_FMAC2 soap_instantiate_tds__AutoGeoModes_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__AutoGeoModes_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__AutoGeoModes_ *p; - size_t k = sizeof(tds__AutoGeoModes_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__AutoGeoModes_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__AutoGeoModes_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__AutoGeoModes_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__AutoGeoModes_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__AutoGeoModes_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__AutoGeoModes_(soap, tag ? tag : "tds:AutoGeoModes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__AutoGeoModes_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__AutoGeoModes_(soap, this, tag, type); -} - -SOAP_FMAC3 tds__AutoGeoModes_ * SOAP_FMAC4 soap_get_tds__AutoGeoModes_(struct soap *soap, tds__AutoGeoModes_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__AutoGeoModes_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__ParityBit_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tmd__ParityBit(soap, &this->tmd__ParityBit_::__item); -} - -void tmd__ParityBit_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tmd__ParityBit_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__ParityBit_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__ParityBit_(struct soap *soap, const char *tag, int id, const tmd__ParityBit_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tmd__ParityBit(soap, tag, id, &a->tmd__ParityBit_::__item, ""); -} - -void *tmd__ParityBit_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__ParityBit_(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__ParityBit_ * SOAP_FMAC4 soap_in_tmd__ParityBit_(struct soap *soap, const char *tag, tmd__ParityBit_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tmd__ParityBit_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__ParityBit_, sizeof(tmd__ParityBit_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__ParityBit_) - return (tmd__ParityBit_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tmd__ParityBit(soap, tag, &a->tmd__ParityBit_::__item, "tmd:ParityBit")) - return NULL; - return a; -} - -SOAP_FMAC1 tmd__ParityBit_ * SOAP_FMAC2 soap_instantiate_tmd__ParityBit_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__ParityBit_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__ParityBit_ *p; - size_t k = sizeof(tmd__ParityBit_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__ParityBit_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__ParityBit_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__ParityBit_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__ParityBit_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__ParityBit_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__ParityBit_(soap, tag ? tag : "tmd:ParityBit", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__ParityBit_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__ParityBit_(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__ParityBit_ * SOAP_FMAC4 soap_get_tmd__ParityBit_(struct soap *soap, tmd__ParityBit_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__ParityBit_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__SerialPortType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tmd__SerialPortType(soap, &this->tmd__SerialPortType_::__item); -} - -void tmd__SerialPortType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tmd__SerialPortType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__SerialPortType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortType_(struct soap *soap, const char *tag, int id, const tmd__SerialPortType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tmd__SerialPortType(soap, tag, id, &a->tmd__SerialPortType_::__item, ""); -} - -void *tmd__SerialPortType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__SerialPortType_(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__SerialPortType_ * SOAP_FMAC4 soap_in_tmd__SerialPortType_(struct soap *soap, const char *tag, tmd__SerialPortType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tmd__SerialPortType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__SerialPortType_, sizeof(tmd__SerialPortType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__SerialPortType_) - return (tmd__SerialPortType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tmd__SerialPortType(soap, tag, &a->tmd__SerialPortType_::__item, "tmd:SerialPortType")) - return NULL; - return a; -} - -SOAP_FMAC1 tmd__SerialPortType_ * SOAP_FMAC2 soap_instantiate_tmd__SerialPortType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__SerialPortType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__SerialPortType_ *p; - size_t k = sizeof(tmd__SerialPortType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__SerialPortType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__SerialPortType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__SerialPortType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__SerialPortType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__SerialPortType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__SerialPortType_(soap, tag ? tag : "tmd:SerialPortType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__SerialPortType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__SerialPortType_(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__SerialPortType_ * SOAP_FMAC4 soap_get_tmd__SerialPortType_(struct soap *soap, tmd__SerialPortType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__SerialPortType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__OSDType(soap, &this->tt__OSDType_::__item); -} - -void tt__OSDType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__OSDType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDType_(struct soap *soap, const char *tag, int id, const tt__OSDType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__OSDType(soap, tag, id, &a->tt__OSDType_::__item, ""); -} - -void *tt__OSDType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDType_ * SOAP_FMAC4 soap_in_tt__OSDType_(struct soap *soap, const char *tag, tt__OSDType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__OSDType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDType_, sizeof(tt__OSDType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDType_) - return (tt__OSDType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__OSDType(soap, tag, &a->tt__OSDType_::__item, "tt:OSDType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__OSDType_ * SOAP_FMAC2 soap_instantiate_tt__OSDType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDType_ *p; - size_t k = sizeof(tt__OSDType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDType_(soap, tag ? tag : "tt:OSDType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDType_ * SOAP_FMAC4 soap_get_tt__OSDType_(struct soap *soap, tt__OSDType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioClassType__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AudioClassType(soap, &this->tt__AudioClassType__::__item); -} - -void tt__AudioClassType__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__AudioClassType(soap, &this->tt__AudioClassType__::__item); -#endif -} - -int tt__AudioClassType__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioClassType__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassType__(struct soap *soap, const char *tag, int id, const tt__AudioClassType__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__AudioClassType(soap, tag, id, &a->tt__AudioClassType__::__item, ""); -} - -void *tt__AudioClassType__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioClassType__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioClassType__ * SOAP_FMAC4 soap_in_tt__AudioClassType__(struct soap *soap, const char *tag, tt__AudioClassType__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__AudioClassType__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioClassType__, sizeof(tt__AudioClassType__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioClassType__) - return (tt__AudioClassType__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__AudioClassType(soap, tag, &a->tt__AudioClassType__::__item, "tt:AudioClassType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__AudioClassType__ * SOAP_FMAC2 soap_instantiate_tt__AudioClassType__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioClassType__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioClassType__ *p; - size_t k = sizeof(tt__AudioClassType__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioClassType__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioClassType__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioClassType__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioClassType__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioClassType__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioClassType__(soap, tag ? tag : "tt:AudioClassType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioClassType__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioClassType__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioClassType__ * SOAP_FMAC4 soap_get_tt__AudioClassType__(struct soap *soap, tt__AudioClassType__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioClassType__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__AudioClassType(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassType(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__AudioClassType), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__AudioClassType(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__AudioClassType, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__AudioClassType, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__AudioClassType, SOAP_TYPE_tt__AudioClassType, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AudioClassType(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__AudioClassType(soap, tag ? tag : "tt:AudioClassType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__AudioClassType(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioClassType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ModeOfOperation_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ModeOfOperation(soap, &this->tt__ModeOfOperation_::__item); -} - -void tt__ModeOfOperation_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ModeOfOperation_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ModeOfOperation_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ModeOfOperation_(struct soap *soap, const char *tag, int id, const tt__ModeOfOperation_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ModeOfOperation(soap, tag, id, &a->tt__ModeOfOperation_::__item, ""); -} - -void *tt__ModeOfOperation_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ModeOfOperation_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ModeOfOperation_ * SOAP_FMAC4 soap_in_tt__ModeOfOperation_(struct soap *soap, const char *tag, tt__ModeOfOperation_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ModeOfOperation_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ModeOfOperation_, sizeof(tt__ModeOfOperation_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ModeOfOperation_) - return (tt__ModeOfOperation_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ModeOfOperation(soap, tag, &a->tt__ModeOfOperation_::__item, "tt:ModeOfOperation")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ModeOfOperation_ * SOAP_FMAC2 soap_instantiate_tt__ModeOfOperation_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ModeOfOperation_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ModeOfOperation_ *p; - size_t k = sizeof(tt__ModeOfOperation_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ModeOfOperation_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ModeOfOperation_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ModeOfOperation_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ModeOfOperation_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ModeOfOperation_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ModeOfOperation_(soap, tag ? tag : "tt:ModeOfOperation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ModeOfOperation_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ModeOfOperation_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ModeOfOperation_ * SOAP_FMAC4 soap_get_tt__ModeOfOperation_(struct soap *soap, tt__ModeOfOperation_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ModeOfOperation_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobState__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobState(soap, &this->tt__RecordingJobState__::__item); -} - -void tt__RecordingJobState__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobState(soap, &this->tt__RecordingJobState__::__item); -#endif -} - -int tt__RecordingJobState__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobState__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobState__(struct soap *soap, const char *tag, int id, const tt__RecordingJobState__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RecordingJobState(soap, tag, id, &a->tt__RecordingJobState__::__item, ""); -} - -void *tt__RecordingJobState__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobState__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobState__ * SOAP_FMAC4 soap_in_tt__RecordingJobState__(struct soap *soap, const char *tag, tt__RecordingJobState__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RecordingJobState__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobState__, sizeof(tt__RecordingJobState__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobState__) - return (tt__RecordingJobState__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RecordingJobState(soap, tag, &a->tt__RecordingJobState__::__item, "tt:RecordingJobState")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RecordingJobState__ * SOAP_FMAC2 soap_instantiate_tt__RecordingJobState__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobState__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobState__ *p; - size_t k = sizeof(tt__RecordingJobState__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobState__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobState__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobState__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobState__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobState__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobState__(soap, tag ? tag : "tt:RecordingJobState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobState__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobState__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobState__ * SOAP_FMAC4 soap_get_tt__RecordingJobState__(struct soap *soap, tt__RecordingJobState__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobState__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__RecordingJobState(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobState(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__RecordingJobState), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__RecordingJobState(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__RecordingJobState, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__RecordingJobState, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__RecordingJobState, SOAP_TYPE_tt__RecordingJobState, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RecordingJobState(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__RecordingJobState(soap, tag ? tag : "tt:RecordingJobState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__RecordingJobState(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobMode__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobMode(soap, &this->tt__RecordingJobMode__::__item); -} - -void tt__RecordingJobMode__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobMode(soap, &this->tt__RecordingJobMode__::__item); -#endif -} - -int tt__RecordingJobMode__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobMode__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobMode__(struct soap *soap, const char *tag, int id, const tt__RecordingJobMode__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RecordingJobMode(soap, tag, id, &a->tt__RecordingJobMode__::__item, ""); -} - -void *tt__RecordingJobMode__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobMode__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobMode__ * SOAP_FMAC4 soap_in_tt__RecordingJobMode__(struct soap *soap, const char *tag, tt__RecordingJobMode__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RecordingJobMode__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobMode__, sizeof(tt__RecordingJobMode__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobMode__) - return (tt__RecordingJobMode__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RecordingJobMode(soap, tag, &a->tt__RecordingJobMode__::__item, "tt:RecordingJobMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RecordingJobMode__ * SOAP_FMAC2 soap_instantiate_tt__RecordingJobMode__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobMode__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobMode__ *p; - size_t k = sizeof(tt__RecordingJobMode__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobMode__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobMode__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobMode__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobMode__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobMode__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobMode__(soap, tag ? tag : "tt:RecordingJobMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobMode__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobMode__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobMode__ * SOAP_FMAC4 soap_get_tt__RecordingJobMode__(struct soap *soap, tt__RecordingJobMode__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobMode__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__RecordingJobMode(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobMode(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__RecordingJobMode), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__RecordingJobMode(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__RecordingJobMode, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__RecordingJobMode, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__RecordingJobMode, SOAP_TYPE_tt__RecordingJobMode, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RecordingJobMode(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__RecordingJobMode(soap, tag ? tag : "tt:RecordingJobMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__RecordingJobMode(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TrackType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TrackType(soap, &this->tt__TrackType_::__item); -} - -void tt__TrackType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__TrackType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TrackType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackType_(struct soap *soap, const char *tag, int id, const tt__TrackType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__TrackType(soap, tag, id, &a->tt__TrackType_::__item, ""); -} - -void *tt__TrackType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TrackType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TrackType_ * SOAP_FMAC4 soap_in_tt__TrackType_(struct soap *soap, const char *tag, tt__TrackType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__TrackType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TrackType_, sizeof(tt__TrackType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TrackType_) - return (tt__TrackType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__TrackType(soap, tag, &a->tt__TrackType_::__item, "tt:TrackType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__TrackType_ * SOAP_FMAC2 soap_instantiate_tt__TrackType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TrackType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TrackType_ *p; - size_t k = sizeof(tt__TrackType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TrackType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TrackType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TrackType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TrackType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TrackType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TrackType_(soap, tag ? tag : "tt:TrackType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TrackType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TrackType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TrackType_ * SOAP_FMAC4 soap_get_tt__TrackType_(struct soap *soap, tt__TrackType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TrackType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingStatus_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingStatus(soap, &this->tt__RecordingStatus_::__item); -} - -void tt__RecordingStatus_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__RecordingStatus_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingStatus_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingStatus_(struct soap *soap, const char *tag, int id, const tt__RecordingStatus_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RecordingStatus(soap, tag, id, &a->tt__RecordingStatus_::__item, ""); -} - -void *tt__RecordingStatus_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingStatus_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingStatus_ * SOAP_FMAC4 soap_in_tt__RecordingStatus_(struct soap *soap, const char *tag, tt__RecordingStatus_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RecordingStatus_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingStatus_, sizeof(tt__RecordingStatus_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingStatus_) - return (tt__RecordingStatus_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RecordingStatus(soap, tag, &a->tt__RecordingStatus_::__item, "tt:RecordingStatus")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RecordingStatus_ * SOAP_FMAC2 soap_instantiate_tt__RecordingStatus_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingStatus_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingStatus_ *p; - size_t k = sizeof(tt__RecordingStatus_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingStatus_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingStatus_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingStatus_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingStatus_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingStatus_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingStatus_(soap, tag ? tag : "tt:RecordingStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingStatus_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingStatus_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingStatus_ * SOAP_FMAC4 soap_get_tt__RecordingStatus_(struct soap *soap, tt__RecordingStatus_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingStatus_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SearchState_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SearchState(soap, &this->tt__SearchState_::__item); -} - -void tt__SearchState_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__SearchState_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SearchState_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchState_(struct soap *soap, const char *tag, int id, const tt__SearchState_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__SearchState(soap, tag, id, &a->tt__SearchState_::__item, ""); -} - -void *tt__SearchState_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SearchState_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SearchState_ * SOAP_FMAC4 soap_in_tt__SearchState_(struct soap *soap, const char *tag, tt__SearchState_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__SearchState_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SearchState_, sizeof(tt__SearchState_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SearchState_) - return (tt__SearchState_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__SearchState(soap, tag, &a->tt__SearchState_::__item, "tt:SearchState")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__SearchState_ * SOAP_FMAC2 soap_instantiate_tt__SearchState_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SearchState_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SearchState_ *p; - size_t k = sizeof(tt__SearchState_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SearchState_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SearchState_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SearchState_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SearchState_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SearchState_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SearchState_(soap, tag ? tag : "tt:SearchState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SearchState_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SearchState_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SearchState_ * SOAP_FMAC4 soap_get_tt__SearchState_(struct soap *soap, tt__SearchState_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SearchState_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__XPathExpression__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__XPathExpression(soap, &this->tt__XPathExpression__::__item); -} - -void tt__XPathExpression__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__XPathExpression__::__item, SOAP_TYPE_tt__XPathExpression); - soap_serialize_tt__XPathExpression(soap, &this->tt__XPathExpression__::__item); -#endif -} - -int tt__XPathExpression__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__XPathExpression__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__XPathExpression__(struct soap *soap, const char *tag, int id, const tt__XPathExpression__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__XPathExpression(soap, tag, id, &a->tt__XPathExpression__::__item, ""); -} - -void *tt__XPathExpression__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__XPathExpression__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__XPathExpression__ * SOAP_FMAC4 soap_in_tt__XPathExpression__(struct soap *soap, const char *tag, tt__XPathExpression__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__XPathExpression__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__XPathExpression__, sizeof(tt__XPathExpression__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__XPathExpression__) - return (tt__XPathExpression__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__XPathExpression(soap, tag, &a->tt__XPathExpression__::__item, "tt:XPathExpression")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__XPathExpression__ * SOAP_FMAC2 soap_instantiate_tt__XPathExpression__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__XPathExpression__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__XPathExpression__ *p; - size_t k = sizeof(tt__XPathExpression__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__XPathExpression__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__XPathExpression__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__XPathExpression__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__XPathExpression__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__XPathExpression__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__XPathExpression__(soap, tag ? tag : "tt:XPathExpression", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__XPathExpression__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__XPathExpression__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__XPathExpression__ * SOAP_FMAC4 soap_get_tt__XPathExpression__(struct soap *soap, tt__XPathExpression__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__XPathExpression__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__XPathExpression(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__XPathExpression(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__XPathExpression), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__XPathExpression(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__XPathExpression, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__XPathExpression, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__XPathExpression, SOAP_TYPE_tt__XPathExpression, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__XPathExpression(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__XPathExpression(soap, tag ? tag : "tt:XPathExpression", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__XPathExpression(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__XPathExpression(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Description__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Description(soap, &this->tt__Description__::__item); -} - -void tt__Description__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Description__::__item, SOAP_TYPE_tt__Description); - soap_serialize_tt__Description(soap, &this->tt__Description__::__item); -#endif -} - -int tt__Description__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Description__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Description__(struct soap *soap, const char *tag, int id, const tt__Description__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Description(soap, tag, id, &a->tt__Description__::__item, ""); -} - -void *tt__Description__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Description__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Description__ * SOAP_FMAC4 soap_in_tt__Description__(struct soap *soap, const char *tag, tt__Description__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Description__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Description__, sizeof(tt__Description__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Description__) - return (tt__Description__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Description(soap, tag, &a->tt__Description__::__item, "tt:Description")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Description__ * SOAP_FMAC2 soap_instantiate_tt__Description__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Description__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Description__ *p; - size_t k = sizeof(tt__Description__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Description__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Description__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Description__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Description__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Description__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Description__(soap, tag ? tag : "tt:Description", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Description__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Description__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Description__ * SOAP_FMAC4 soap_get_tt__Description__(struct soap *soap, tt__Description__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Description__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Description(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Description(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__Description), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__Description(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__Description, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__Description, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__Description, SOAP_TYPE_tt__Description, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Description(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__Description(soap, tag ? tag : "tt:Description", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__Description(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Description(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReceiverState_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReceiverState(soap, &this->tt__ReceiverState_::__item); -} - -void tt__ReceiverState_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ReceiverState_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReceiverState_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverState_(struct soap *soap, const char *tag, int id, const tt__ReceiverState_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ReceiverState(soap, tag, id, &a->tt__ReceiverState_::__item, ""); -} - -void *tt__ReceiverState_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReceiverState_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReceiverState_ * SOAP_FMAC4 soap_in_tt__ReceiverState_(struct soap *soap, const char *tag, tt__ReceiverState_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ReceiverState_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverState_, sizeof(tt__ReceiverState_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReceiverState_) - return (tt__ReceiverState_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ReceiverState(soap, tag, &a->tt__ReceiverState_::__item, "tt:ReceiverState")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ReceiverState_ * SOAP_FMAC2 soap_instantiate_tt__ReceiverState_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReceiverState_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReceiverState_ *p; - size_t k = sizeof(tt__ReceiverState_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReceiverState_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReceiverState_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReceiverState_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReceiverState_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReceiverState_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReceiverState_(soap, tag ? tag : "tt:ReceiverState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReceiverState_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReceiverState_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReceiverState_ * SOAP_FMAC4 soap_get_tt__ReceiverState_(struct soap *soap, tt__ReceiverState_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverState_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReceiverMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReceiverMode(soap, &this->tt__ReceiverMode_::__item); -} - -void tt__ReceiverMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ReceiverMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReceiverMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverMode_(struct soap *soap, const char *tag, int id, const tt__ReceiverMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ReceiverMode(soap, tag, id, &a->tt__ReceiverMode_::__item, ""); -} - -void *tt__ReceiverMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReceiverMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReceiverMode_ * SOAP_FMAC4 soap_in_tt__ReceiverMode_(struct soap *soap, const char *tag, tt__ReceiverMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ReceiverMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverMode_, sizeof(tt__ReceiverMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReceiverMode_) - return (tt__ReceiverMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ReceiverMode(soap, tag, &a->tt__ReceiverMode_::__item, "tt:ReceiverMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ReceiverMode_ * SOAP_FMAC2 soap_instantiate_tt__ReceiverMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReceiverMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReceiverMode_ *p; - size_t k = sizeof(tt__ReceiverMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReceiverMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReceiverMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReceiverMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReceiverMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReceiverMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReceiverMode_(soap, tag ? tag : "tt:ReceiverMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReceiverMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReceiverMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReceiverMode_ * SOAP_FMAC4 soap_get_tt__ReceiverMode_(struct soap *soap, tt__ReceiverMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Direction_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Direction(soap, &this->tt__Direction_::__item); -} - -void tt__Direction_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Direction_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Direction_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Direction_(struct soap *soap, const char *tag, int id, const tt__Direction_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Direction(soap, tag, id, &a->tt__Direction_::__item, ""); -} - -void *tt__Direction_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Direction_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Direction_ * SOAP_FMAC4 soap_in_tt__Direction_(struct soap *soap, const char *tag, tt__Direction_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Direction_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Direction_, sizeof(tt__Direction_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Direction_) - return (tt__Direction_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Direction(soap, tag, &a->tt__Direction_::__item, "tt:Direction")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Direction_ * SOAP_FMAC2 soap_instantiate_tt__Direction_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Direction_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Direction_ *p; - size_t k = sizeof(tt__Direction_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Direction_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Direction_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Direction_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Direction_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Direction_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Direction_(soap, tag ? tag : "tt:Direction", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Direction_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Direction_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Direction_ * SOAP_FMAC4 soap_get_tt__Direction_(struct soap *soap, tt__Direction_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Direction_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PropertyOperation_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__PropertyOperation(soap, &this->tt__PropertyOperation_::__item); -} - -void tt__PropertyOperation_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PropertyOperation_::__item, SOAP_TYPE_tt__PropertyOperation); -#endif -} - -int tt__PropertyOperation_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PropertyOperation_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PropertyOperation_(struct soap *soap, const char *tag, int id, const tt__PropertyOperation_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__PropertyOperation(soap, tag, id, &a->tt__PropertyOperation_::__item, ""); -} - -void *tt__PropertyOperation_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PropertyOperation_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PropertyOperation_ * SOAP_FMAC4 soap_in_tt__PropertyOperation_(struct soap *soap, const char *tag, tt__PropertyOperation_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__PropertyOperation_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PropertyOperation_, sizeof(tt__PropertyOperation_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PropertyOperation_) - return (tt__PropertyOperation_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__PropertyOperation(soap, tag, &a->tt__PropertyOperation_::__item, "tt:PropertyOperation")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__PropertyOperation_ * SOAP_FMAC2 soap_instantiate_tt__PropertyOperation_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PropertyOperation_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PropertyOperation_ *p; - size_t k = sizeof(tt__PropertyOperation_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PropertyOperation_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PropertyOperation_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PropertyOperation_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PropertyOperation_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PropertyOperation_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PropertyOperation_(soap, tag ? tag : "tt:PropertyOperation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PropertyOperation_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PropertyOperation_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PropertyOperation_ * SOAP_FMAC4 soap_get_tt__PropertyOperation_(struct soap *soap, tt__PropertyOperation_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PropertyOperation_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImageSendingType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ImageSendingType(soap, &this->tt__ImageSendingType_::__item); -} - -void tt__ImageSendingType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ImageSendingType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImageSendingType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageSendingType_(struct soap *soap, const char *tag, int id, const tt__ImageSendingType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ImageSendingType(soap, tag, id, &a->tt__ImageSendingType_::__item, ""); -} - -void *tt__ImageSendingType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImageSendingType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImageSendingType_ * SOAP_FMAC4 soap_in_tt__ImageSendingType_(struct soap *soap, const char *tag, tt__ImageSendingType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ImageSendingType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageSendingType_, sizeof(tt__ImageSendingType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImageSendingType_) - return (tt__ImageSendingType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ImageSendingType(soap, tag, &a->tt__ImageSendingType_::__item, "tt:ImageSendingType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ImageSendingType_ * SOAP_FMAC2 soap_instantiate_tt__ImageSendingType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImageSendingType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImageSendingType_ *p; - size_t k = sizeof(tt__ImageSendingType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImageSendingType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImageSendingType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImageSendingType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImageSendingType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImageSendingType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImageSendingType_(soap, tag ? tag : "tt:ImageSendingType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImageSendingType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImageSendingType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImageSendingType_ * SOAP_FMAC4 soap_get_tt__ImageSendingType_(struct soap *soap, tt__ImageSendingType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageSendingType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DefoggingMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DefoggingMode(soap, &this->tt__DefoggingMode_::__item); -} - -void tt__DefoggingMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__DefoggingMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DefoggingMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingMode_(struct soap *soap, const char *tag, int id, const tt__DefoggingMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__DefoggingMode(soap, tag, id, &a->tt__DefoggingMode_::__item, ""); -} - -void *tt__DefoggingMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DefoggingMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DefoggingMode_ * SOAP_FMAC4 soap_in_tt__DefoggingMode_(struct soap *soap, const char *tag, tt__DefoggingMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__DefoggingMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DefoggingMode_, sizeof(tt__DefoggingMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DefoggingMode_) - return (tt__DefoggingMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__DefoggingMode(soap, tag, &a->tt__DefoggingMode_::__item, "tt:DefoggingMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__DefoggingMode_ * SOAP_FMAC2 soap_instantiate_tt__DefoggingMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DefoggingMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DefoggingMode_ *p; - size_t k = sizeof(tt__DefoggingMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DefoggingMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DefoggingMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DefoggingMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DefoggingMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DefoggingMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DefoggingMode_(soap, tag ? tag : "tt:DefoggingMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DefoggingMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DefoggingMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DefoggingMode_ * SOAP_FMAC4 soap_get_tt__DefoggingMode_(struct soap *soap, tt__DefoggingMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DefoggingMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ToneCompensationMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ToneCompensationMode(soap, &this->tt__ToneCompensationMode_::__item); -} - -void tt__ToneCompensationMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ToneCompensationMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ToneCompensationMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationMode_(struct soap *soap, const char *tag, int id, const tt__ToneCompensationMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ToneCompensationMode(soap, tag, id, &a->tt__ToneCompensationMode_::__item, ""); -} - -void *tt__ToneCompensationMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ToneCompensationMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ToneCompensationMode_ * SOAP_FMAC4 soap_in_tt__ToneCompensationMode_(struct soap *soap, const char *tag, tt__ToneCompensationMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ToneCompensationMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ToneCompensationMode_, sizeof(tt__ToneCompensationMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ToneCompensationMode_) - return (tt__ToneCompensationMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ToneCompensationMode(soap, tag, &a->tt__ToneCompensationMode_::__item, "tt:ToneCompensationMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ToneCompensationMode_ * SOAP_FMAC2 soap_instantiate_tt__ToneCompensationMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ToneCompensationMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ToneCompensationMode_ *p; - size_t k = sizeof(tt__ToneCompensationMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ToneCompensationMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ToneCompensationMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ToneCompensationMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ToneCompensationMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ToneCompensationMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ToneCompensationMode_(soap, tag ? tag : "tt:ToneCompensationMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ToneCompensationMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ToneCompensationMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ToneCompensationMode_ * SOAP_FMAC4 soap_get_tt__ToneCompensationMode_(struct soap *soap, tt__ToneCompensationMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ToneCompensationMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IrCutFilterAutoBoundaryType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IrCutFilterAutoBoundaryType(soap, &this->tt__IrCutFilterAutoBoundaryType_::__item); -} - -void tt__IrCutFilterAutoBoundaryType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__IrCutFilterAutoBoundaryType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IrCutFilterAutoBoundaryType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, const char *tag, int id, const tt__IrCutFilterAutoBoundaryType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IrCutFilterAutoBoundaryType(soap, tag, id, &a->tt__IrCutFilterAutoBoundaryType_::__item, ""); -} - -void *tt__IrCutFilterAutoBoundaryType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IrCutFilterAutoBoundaryType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoBoundaryType_ * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, const char *tag, tt__IrCutFilterAutoBoundaryType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IrCutFilterAutoBoundaryType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_, sizeof(tt__IrCutFilterAutoBoundaryType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_) - return (tt__IrCutFilterAutoBoundaryType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IrCutFilterAutoBoundaryType(soap, tag, &a->tt__IrCutFilterAutoBoundaryType_::__item, "tt:IrCutFilterAutoBoundaryType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IrCutFilterAutoBoundaryType_ * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IrCutFilterAutoBoundaryType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IrCutFilterAutoBoundaryType_ *p; - size_t k = sizeof(tt__IrCutFilterAutoBoundaryType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IrCutFilterAutoBoundaryType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IrCutFilterAutoBoundaryType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IrCutFilterAutoBoundaryType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IrCutFilterAutoBoundaryType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IrCutFilterAutoBoundaryType_(soap, tag ? tag : "tt:IrCutFilterAutoBoundaryType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IrCutFilterAutoBoundaryType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IrCutFilterAutoBoundaryType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoBoundaryType_ * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, tt__IrCutFilterAutoBoundaryType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterAutoBoundaryType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImageStabilizationMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ImageStabilizationMode(soap, &this->tt__ImageStabilizationMode_::__item); -} - -void tt__ImageStabilizationMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ImageStabilizationMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImageStabilizationMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationMode_(struct soap *soap, const char *tag, int id, const tt__ImageStabilizationMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ImageStabilizationMode(soap, tag, id, &a->tt__ImageStabilizationMode_::__item, ""); -} - -void *tt__ImageStabilizationMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImageStabilizationMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImageStabilizationMode_ * SOAP_FMAC4 soap_in_tt__ImageStabilizationMode_(struct soap *soap, const char *tag, tt__ImageStabilizationMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ImageStabilizationMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageStabilizationMode_, sizeof(tt__ImageStabilizationMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImageStabilizationMode_) - return (tt__ImageStabilizationMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ImageStabilizationMode(soap, tag, &a->tt__ImageStabilizationMode_::__item, "tt:ImageStabilizationMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ImageStabilizationMode_ * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImageStabilizationMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImageStabilizationMode_ *p; - size_t k = sizeof(tt__ImageStabilizationMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImageStabilizationMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImageStabilizationMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImageStabilizationMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImageStabilizationMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImageStabilizationMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImageStabilizationMode_(soap, tag ? tag : "tt:ImageStabilizationMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImageStabilizationMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImageStabilizationMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImageStabilizationMode_ * SOAP_FMAC4 soap_get_tt__ImageStabilizationMode_(struct soap *soap, tt__ImageStabilizationMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageStabilizationMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IrCutFilterMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IrCutFilterMode(soap, &this->tt__IrCutFilterMode_::__item); -} - -void tt__IrCutFilterMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IrCutFilterMode_::__item, SOAP_TYPE_tt__IrCutFilterMode); -#endif -} - -int tt__IrCutFilterMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IrCutFilterMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterMode_(struct soap *soap, const char *tag, int id, const tt__IrCutFilterMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IrCutFilterMode(soap, tag, id, &a->tt__IrCutFilterMode_::__item, ""); -} - -void *tt__IrCutFilterMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IrCutFilterMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IrCutFilterMode_ * SOAP_FMAC4 soap_in_tt__IrCutFilterMode_(struct soap *soap, const char *tag, tt__IrCutFilterMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IrCutFilterMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterMode_, sizeof(tt__IrCutFilterMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IrCutFilterMode_) - return (tt__IrCutFilterMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IrCutFilterMode(soap, tag, &a->tt__IrCutFilterMode_::__item, "tt:IrCutFilterMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IrCutFilterMode_ * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IrCutFilterMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IrCutFilterMode_ *p; - size_t k = sizeof(tt__IrCutFilterMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IrCutFilterMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IrCutFilterMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IrCutFilterMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IrCutFilterMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IrCutFilterMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IrCutFilterMode_(soap, tag ? tag : "tt:IrCutFilterMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IrCutFilterMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IrCutFilterMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IrCutFilterMode_ * SOAP_FMAC4 soap_get_tt__IrCutFilterMode_(struct soap *soap, tt__IrCutFilterMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WhiteBalanceMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__WhiteBalanceMode(soap, &this->tt__WhiteBalanceMode_::__item); -} - -void tt__WhiteBalanceMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__WhiteBalanceMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WhiteBalanceMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceMode_(struct soap *soap, const char *tag, int id, const tt__WhiteBalanceMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__WhiteBalanceMode(soap, tag, id, &a->tt__WhiteBalanceMode_::__item, ""); -} - -void *tt__WhiteBalanceMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WhiteBalanceMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WhiteBalanceMode_ * SOAP_FMAC4 soap_in_tt__WhiteBalanceMode_(struct soap *soap, const char *tag, tt__WhiteBalanceMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__WhiteBalanceMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalanceMode_, sizeof(tt__WhiteBalanceMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WhiteBalanceMode_) - return (tt__WhiteBalanceMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__WhiteBalanceMode(soap, tag, &a->tt__WhiteBalanceMode_::__item, "tt:WhiteBalanceMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__WhiteBalanceMode_ * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WhiteBalanceMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WhiteBalanceMode_ *p; - size_t k = sizeof(tt__WhiteBalanceMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WhiteBalanceMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WhiteBalanceMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WhiteBalanceMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WhiteBalanceMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WhiteBalanceMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WhiteBalanceMode_(soap, tag ? tag : "tt:WhiteBalanceMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WhiteBalanceMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WhiteBalanceMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WhiteBalanceMode_ * SOAP_FMAC4 soap_get_tt__WhiteBalanceMode_(struct soap *soap, tt__WhiteBalanceMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalanceMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Enabled_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Enabled(soap, &this->tt__Enabled_::__item); -} - -void tt__Enabled_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Enabled_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Enabled_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Enabled_(struct soap *soap, const char *tag, int id, const tt__Enabled_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Enabled(soap, tag, id, &a->tt__Enabled_::__item, ""); -} - -void *tt__Enabled_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Enabled_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Enabled_ * SOAP_FMAC4 soap_in_tt__Enabled_(struct soap *soap, const char *tag, tt__Enabled_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Enabled_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Enabled_, sizeof(tt__Enabled_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Enabled_) - return (tt__Enabled_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Enabled(soap, tag, &a->tt__Enabled_::__item, "tt:Enabled")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Enabled_ * SOAP_FMAC2 soap_instantiate_tt__Enabled_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Enabled_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Enabled_ *p; - size_t k = sizeof(tt__Enabled_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Enabled_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Enabled_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Enabled_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Enabled_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Enabled_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Enabled_(soap, tag ? tag : "tt:Enabled", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Enabled_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Enabled_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Enabled_ * SOAP_FMAC4 soap_get_tt__Enabled_(struct soap *soap, tt__Enabled_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Enabled_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ExposureMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ExposureMode(soap, &this->tt__ExposureMode_::__item); -} - -void tt__ExposureMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ExposureMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ExposureMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureMode_(struct soap *soap, const char *tag, int id, const tt__ExposureMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ExposureMode(soap, tag, id, &a->tt__ExposureMode_::__item, ""); -} - -void *tt__ExposureMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ExposureMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ExposureMode_ * SOAP_FMAC4 soap_in_tt__ExposureMode_(struct soap *soap, const char *tag, tt__ExposureMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ExposureMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ExposureMode_, sizeof(tt__ExposureMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ExposureMode_) - return (tt__ExposureMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ExposureMode(soap, tag, &a->tt__ExposureMode_::__item, "tt:ExposureMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ExposureMode_ * SOAP_FMAC2 soap_instantiate_tt__ExposureMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ExposureMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ExposureMode_ *p; - size_t k = sizeof(tt__ExposureMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ExposureMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ExposureMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ExposureMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ExposureMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ExposureMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ExposureMode_(soap, tag ? tag : "tt:ExposureMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ExposureMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ExposureMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ExposureMode_ * SOAP_FMAC4 soap_get_tt__ExposureMode_(struct soap *soap, tt__ExposureMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ExposureMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ExposurePriority_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ExposurePriority(soap, &this->tt__ExposurePriority_::__item); -} - -void tt__ExposurePriority_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ExposurePriority_::__item, SOAP_TYPE_tt__ExposurePriority); -#endif -} - -int tt__ExposurePriority_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ExposurePriority_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposurePriority_(struct soap *soap, const char *tag, int id, const tt__ExposurePriority_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ExposurePriority(soap, tag, id, &a->tt__ExposurePriority_::__item, ""); -} - -void *tt__ExposurePriority_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ExposurePriority_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ExposurePriority_ * SOAP_FMAC4 soap_in_tt__ExposurePriority_(struct soap *soap, const char *tag, tt__ExposurePriority_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ExposurePriority_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ExposurePriority_, sizeof(tt__ExposurePriority_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ExposurePriority_) - return (tt__ExposurePriority_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ExposurePriority(soap, tag, &a->tt__ExposurePriority_::__item, "tt:ExposurePriority")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ExposurePriority_ * SOAP_FMAC2 soap_instantiate_tt__ExposurePriority_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ExposurePriority_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ExposurePriority_ *p; - size_t k = sizeof(tt__ExposurePriority_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ExposurePriority_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ExposurePriority_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ExposurePriority_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ExposurePriority_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ExposurePriority_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ExposurePriority_(soap, tag ? tag : "tt:ExposurePriority", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ExposurePriority_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ExposurePriority_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ExposurePriority_ * SOAP_FMAC4 soap_get_tt__ExposurePriority_(struct soap *soap, tt__ExposurePriority_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ExposurePriority_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__BacklightCompensationMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__BacklightCompensationMode(soap, &this->tt__BacklightCompensationMode_::__item); -} - -void tt__BacklightCompensationMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__BacklightCompensationMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__BacklightCompensationMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationMode_(struct soap *soap, const char *tag, int id, const tt__BacklightCompensationMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__BacklightCompensationMode(soap, tag, id, &a->tt__BacklightCompensationMode_::__item, ""); -} - -void *tt__BacklightCompensationMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__BacklightCompensationMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__BacklightCompensationMode_ * SOAP_FMAC4 soap_in_tt__BacklightCompensationMode_(struct soap *soap, const char *tag, tt__BacklightCompensationMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__BacklightCompensationMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BacklightCompensationMode_, sizeof(tt__BacklightCompensationMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__BacklightCompensationMode_) - return (tt__BacklightCompensationMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__BacklightCompensationMode(soap, tag, &a->tt__BacklightCompensationMode_::__item, "tt:BacklightCompensationMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__BacklightCompensationMode_ * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensationMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__BacklightCompensationMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__BacklightCompensationMode_ *p; - size_t k = sizeof(tt__BacklightCompensationMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__BacklightCompensationMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__BacklightCompensationMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__BacklightCompensationMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__BacklightCompensationMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__BacklightCompensationMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__BacklightCompensationMode_(soap, tag ? tag : "tt:BacklightCompensationMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__BacklightCompensationMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__BacklightCompensationMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__BacklightCompensationMode_ * SOAP_FMAC4 soap_get_tt__BacklightCompensationMode_(struct soap *soap, tt__BacklightCompensationMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BacklightCompensationMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WideDynamicMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__WideDynamicMode(soap, &this->tt__WideDynamicMode_::__item); -} - -void tt__WideDynamicMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__WideDynamicMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WideDynamicMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicMode_(struct soap *soap, const char *tag, int id, const tt__WideDynamicMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__WideDynamicMode(soap, tag, id, &a->tt__WideDynamicMode_::__item, ""); -} - -void *tt__WideDynamicMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WideDynamicMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WideDynamicMode_ * SOAP_FMAC4 soap_in_tt__WideDynamicMode_(struct soap *soap, const char *tag, tt__WideDynamicMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__WideDynamicMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WideDynamicMode_, sizeof(tt__WideDynamicMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WideDynamicMode_) - return (tt__WideDynamicMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__WideDynamicMode(soap, tag, &a->tt__WideDynamicMode_::__item, "tt:WideDynamicMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__WideDynamicMode_ * SOAP_FMAC2 soap_instantiate_tt__WideDynamicMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WideDynamicMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WideDynamicMode_ *p; - size_t k = sizeof(tt__WideDynamicMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WideDynamicMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WideDynamicMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WideDynamicMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WideDynamicMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WideDynamicMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WideDynamicMode_(soap, tag ? tag : "tt:WideDynamicMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WideDynamicMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WideDynamicMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WideDynamicMode_ * SOAP_FMAC4 soap_get_tt__WideDynamicMode_(struct soap *soap, tt__WideDynamicMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WideDynamicMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AFModes_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AFModes(soap, &this->tt__AFModes_::__item); -} - -void tt__AFModes_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__AFModes_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AFModes_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AFModes_(struct soap *soap, const char *tag, int id, const tt__AFModes_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__AFModes(soap, tag, id, &a->tt__AFModes_::__item, ""); -} - -void *tt__AFModes_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AFModes_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AFModes_ * SOAP_FMAC4 soap_in_tt__AFModes_(struct soap *soap, const char *tag, tt__AFModes_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__AFModes_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AFModes_, sizeof(tt__AFModes_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AFModes_) - return (tt__AFModes_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__AFModes(soap, tag, &a->tt__AFModes_::__item, "tt:AFModes")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__AFModes_ * SOAP_FMAC2 soap_instantiate_tt__AFModes_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AFModes_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AFModes_ *p; - size_t k = sizeof(tt__AFModes_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AFModes_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AFModes_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AFModes_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AFModes_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AFModes_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AFModes_(soap, tag ? tag : "tt:AFModes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AFModes_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AFModes_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AFModes_ * SOAP_FMAC4 soap_get_tt__AFModes_(struct soap *soap, tt__AFModes_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AFModes_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AutoFocusMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AutoFocusMode(soap, &this->tt__AutoFocusMode_::__item); -} - -void tt__AutoFocusMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__AutoFocusMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AutoFocusMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AutoFocusMode_(struct soap *soap, const char *tag, int id, const tt__AutoFocusMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__AutoFocusMode(soap, tag, id, &a->tt__AutoFocusMode_::__item, ""); -} - -void *tt__AutoFocusMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AutoFocusMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AutoFocusMode_ * SOAP_FMAC4 soap_in_tt__AutoFocusMode_(struct soap *soap, const char *tag, tt__AutoFocusMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__AutoFocusMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AutoFocusMode_, sizeof(tt__AutoFocusMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AutoFocusMode_) - return (tt__AutoFocusMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__AutoFocusMode(soap, tag, &a->tt__AutoFocusMode_::__item, "tt:AutoFocusMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__AutoFocusMode_ * SOAP_FMAC2 soap_instantiate_tt__AutoFocusMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AutoFocusMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AutoFocusMode_ *p; - size_t k = sizeof(tt__AutoFocusMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AutoFocusMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AutoFocusMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AutoFocusMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AutoFocusMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AutoFocusMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AutoFocusMode_(soap, tag ? tag : "tt:AutoFocusMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AutoFocusMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AutoFocusMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AutoFocusMode_ * SOAP_FMAC4 soap_get_tt__AutoFocusMode_(struct soap *soap, tt__AutoFocusMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AutoFocusMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MoveAndTrackMethod_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__MoveAndTrackMethod(soap, &this->tt__MoveAndTrackMethod_::__item); -} - -void tt__MoveAndTrackMethod_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__MoveAndTrackMethod_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MoveAndTrackMethod_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveAndTrackMethod_(struct soap *soap, const char *tag, int id, const tt__MoveAndTrackMethod_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__MoveAndTrackMethod(soap, tag, id, &a->tt__MoveAndTrackMethod_::__item, ""); -} - -void *tt__MoveAndTrackMethod_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MoveAndTrackMethod_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MoveAndTrackMethod_ * SOAP_FMAC4 soap_in_tt__MoveAndTrackMethod_(struct soap *soap, const char *tag, tt__MoveAndTrackMethod_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__MoveAndTrackMethod_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MoveAndTrackMethod_, sizeof(tt__MoveAndTrackMethod_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MoveAndTrackMethod_) - return (tt__MoveAndTrackMethod_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__MoveAndTrackMethod(soap, tag, &a->tt__MoveAndTrackMethod_::__item, "tt:MoveAndTrackMethod")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__MoveAndTrackMethod_ * SOAP_FMAC2 soap_instantiate_tt__MoveAndTrackMethod_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MoveAndTrackMethod_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MoveAndTrackMethod_ *p; - size_t k = sizeof(tt__MoveAndTrackMethod_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MoveAndTrackMethod_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MoveAndTrackMethod_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MoveAndTrackMethod_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MoveAndTrackMethod_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MoveAndTrackMethod_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MoveAndTrackMethod_(soap, tag ? tag : "tt:MoveAndTrackMethod", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MoveAndTrackMethod_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MoveAndTrackMethod_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MoveAndTrackMethod_ * SOAP_FMAC4 soap_get_tt__MoveAndTrackMethod_(struct soap *soap, tt__MoveAndTrackMethod_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MoveAndTrackMethod_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourOperation_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__PTZPresetTourOperation(soap, &this->tt__PTZPresetTourOperation_::__item); -} - -void tt__PTZPresetTourOperation_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__PTZPresetTourOperation_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourOperation_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourOperation_(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourOperation_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__PTZPresetTourOperation(soap, tag, id, &a->tt__PTZPresetTourOperation_::__item, ""); -} - -void *tt__PTZPresetTourOperation_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourOperation_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourOperation_ * SOAP_FMAC4 soap_in_tt__PTZPresetTourOperation_(struct soap *soap, const char *tag, tt__PTZPresetTourOperation_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__PTZPresetTourOperation_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourOperation_, sizeof(tt__PTZPresetTourOperation_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourOperation_) - return (tt__PTZPresetTourOperation_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__PTZPresetTourOperation(soap, tag, &a->tt__PTZPresetTourOperation_::__item, "tt:PTZPresetTourOperation")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourOperation_ * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourOperation_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourOperation_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourOperation_ *p; - size_t k = sizeof(tt__PTZPresetTourOperation_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourOperation_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourOperation_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourOperation_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourOperation_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourOperation_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourOperation_(soap, tag ? tag : "tt:PTZPresetTourOperation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourOperation_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourOperation_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourOperation_ * SOAP_FMAC4 soap_get_tt__PTZPresetTourOperation_(struct soap *soap, tt__PTZPresetTourOperation_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourOperation_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourDirection_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__PTZPresetTourDirection(soap, &this->tt__PTZPresetTourDirection_::__item); -} - -void tt__PTZPresetTourDirection_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PTZPresetTourDirection_::__item, SOAP_TYPE_tt__PTZPresetTourDirection); -#endif -} - -int tt__PTZPresetTourDirection_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourDirection_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourDirection_(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourDirection_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__PTZPresetTourDirection(soap, tag, id, &a->tt__PTZPresetTourDirection_::__item, ""); -} - -void *tt__PTZPresetTourDirection_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourDirection_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourDirection_ * SOAP_FMAC4 soap_in_tt__PTZPresetTourDirection_(struct soap *soap, const char *tag, tt__PTZPresetTourDirection_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__PTZPresetTourDirection_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourDirection_, sizeof(tt__PTZPresetTourDirection_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourDirection_) - return (tt__PTZPresetTourDirection_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__PTZPresetTourDirection(soap, tag, &a->tt__PTZPresetTourDirection_::__item, "tt:PTZPresetTourDirection")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourDirection_ * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourDirection_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourDirection_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourDirection_ *p; - size_t k = sizeof(tt__PTZPresetTourDirection_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourDirection_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourDirection_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourDirection_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourDirection_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourDirection_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourDirection_(soap, tag ? tag : "tt:PTZPresetTourDirection", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourDirection_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourDirection_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourDirection_ * SOAP_FMAC4 soap_get_tt__PTZPresetTourDirection_(struct soap *soap, tt__PTZPresetTourDirection_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourDirection_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourState_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__PTZPresetTourState(soap, &this->tt__PTZPresetTourState_::__item); -} - -void tt__PTZPresetTourState_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__PTZPresetTourState_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourState_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourState_(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourState_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__PTZPresetTourState(soap, tag, id, &a->tt__PTZPresetTourState_::__item, ""); -} - -void *tt__PTZPresetTourState_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourState_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourState_ * SOAP_FMAC4 soap_in_tt__PTZPresetTourState_(struct soap *soap, const char *tag, tt__PTZPresetTourState_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__PTZPresetTourState_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourState_, sizeof(tt__PTZPresetTourState_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourState_) - return (tt__PTZPresetTourState_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__PTZPresetTourState(soap, tag, &a->tt__PTZPresetTourState_::__item, "tt:PTZPresetTourState")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourState_ * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourState_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourState_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourState_ *p; - size_t k = sizeof(tt__PTZPresetTourState_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourState_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourState_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourState_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourState_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourState_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourState_(soap, tag ? tag : "tt:PTZPresetTourState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourState_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourState_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourState_ * SOAP_FMAC4 soap_get_tt__PTZPresetTourState_(struct soap *soap, tt__PTZPresetTourState_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourState_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AuxiliaryData__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AuxiliaryData(soap, &this->tt__AuxiliaryData__::__item); -} - -void tt__AuxiliaryData__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AuxiliaryData__::__item, SOAP_TYPE_tt__AuxiliaryData); - soap_serialize_tt__AuxiliaryData(soap, &this->tt__AuxiliaryData__::__item); -#endif -} - -int tt__AuxiliaryData__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AuxiliaryData__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AuxiliaryData__(struct soap *soap, const char *tag, int id, const tt__AuxiliaryData__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__AuxiliaryData(soap, tag, id, &a->tt__AuxiliaryData__::__item, ""); -} - -void *tt__AuxiliaryData__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AuxiliaryData__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AuxiliaryData__ * SOAP_FMAC4 soap_in_tt__AuxiliaryData__(struct soap *soap, const char *tag, tt__AuxiliaryData__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__AuxiliaryData__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AuxiliaryData__, sizeof(tt__AuxiliaryData__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AuxiliaryData__) - return (tt__AuxiliaryData__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__AuxiliaryData(soap, tag, &a->tt__AuxiliaryData__::__item, "tt:AuxiliaryData")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__AuxiliaryData__ * SOAP_FMAC2 soap_instantiate_tt__AuxiliaryData__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AuxiliaryData__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AuxiliaryData__ *p; - size_t k = sizeof(tt__AuxiliaryData__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AuxiliaryData__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AuxiliaryData__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AuxiliaryData__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AuxiliaryData__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AuxiliaryData__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AuxiliaryData__(soap, tag ? tag : "tt:AuxiliaryData", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AuxiliaryData__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AuxiliaryData__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AuxiliaryData__ * SOAP_FMAC4 soap_get_tt__AuxiliaryData__(struct soap *soap, tt__AuxiliaryData__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AuxiliaryData__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__AuxiliaryData(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AuxiliaryData(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__AuxiliaryData), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__AuxiliaryData(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__AuxiliaryData, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, 128, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__AuxiliaryData, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__AuxiliaryData, SOAP_TYPE_tt__AuxiliaryData, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AuxiliaryData(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__AuxiliaryData(soap, tag ? tag : "tt:AuxiliaryData", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__AuxiliaryData(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AuxiliaryData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReverseMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReverseMode(soap, &this->tt__ReverseMode_::__item); -} - -void tt__ReverseMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ReverseMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReverseMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseMode_(struct soap *soap, const char *tag, int id, const tt__ReverseMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ReverseMode(soap, tag, id, &a->tt__ReverseMode_::__item, ""); -} - -void *tt__ReverseMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReverseMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReverseMode_ * SOAP_FMAC4 soap_in_tt__ReverseMode_(struct soap *soap, const char *tag, tt__ReverseMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ReverseMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReverseMode_, sizeof(tt__ReverseMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReverseMode_) - return (tt__ReverseMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ReverseMode(soap, tag, &a->tt__ReverseMode_::__item, "tt:ReverseMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ReverseMode_ * SOAP_FMAC2 soap_instantiate_tt__ReverseMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReverseMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReverseMode_ *p; - size_t k = sizeof(tt__ReverseMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReverseMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReverseMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReverseMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReverseMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReverseMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReverseMode_(soap, tag ? tag : "tt:ReverseMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReverseMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReverseMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReverseMode_ * SOAP_FMAC4 soap_get_tt__ReverseMode_(struct soap *soap, tt__ReverseMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReverseMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EFlipMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__EFlipMode(soap, &this->tt__EFlipMode_::__item); -} - -void tt__EFlipMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__EFlipMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EFlipMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipMode_(struct soap *soap, const char *tag, int id, const tt__EFlipMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__EFlipMode(soap, tag, id, &a->tt__EFlipMode_::__item, ""); -} - -void *tt__EFlipMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EFlipMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EFlipMode_ * SOAP_FMAC4 soap_in_tt__EFlipMode_(struct soap *soap, const char *tag, tt__EFlipMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__EFlipMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EFlipMode_, sizeof(tt__EFlipMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EFlipMode_) - return (tt__EFlipMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__EFlipMode(soap, tag, &a->tt__EFlipMode_::__item, "tt:EFlipMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__EFlipMode_ * SOAP_FMAC2 soap_instantiate_tt__EFlipMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EFlipMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EFlipMode_ *p; - size_t k = sizeof(tt__EFlipMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EFlipMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EFlipMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EFlipMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EFlipMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EFlipMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EFlipMode_(soap, tag ? tag : "tt:EFlipMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EFlipMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EFlipMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EFlipMode_ * SOAP_FMAC4 soap_get_tt__EFlipMode_(struct soap *soap, tt__EFlipMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EFlipMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DigitalIdleState_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DigitalIdleState(soap, &this->tt__DigitalIdleState_::__item); -} - -void tt__DigitalIdleState_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DigitalIdleState_::__item, SOAP_TYPE_tt__DigitalIdleState); -#endif -} - -int tt__DigitalIdleState_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DigitalIdleState_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DigitalIdleState_(struct soap *soap, const char *tag, int id, const tt__DigitalIdleState_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__DigitalIdleState(soap, tag, id, &a->tt__DigitalIdleState_::__item, ""); -} - -void *tt__DigitalIdleState_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DigitalIdleState_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DigitalIdleState_ * SOAP_FMAC4 soap_in_tt__DigitalIdleState_(struct soap *soap, const char *tag, tt__DigitalIdleState_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__DigitalIdleState_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DigitalIdleState_, sizeof(tt__DigitalIdleState_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DigitalIdleState_) - return (tt__DigitalIdleState_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__DigitalIdleState(soap, tag, &a->tt__DigitalIdleState_::__item, "tt:DigitalIdleState")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__DigitalIdleState_ * SOAP_FMAC2 soap_instantiate_tt__DigitalIdleState_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DigitalIdleState_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DigitalIdleState_ *p; - size_t k = sizeof(tt__DigitalIdleState_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DigitalIdleState_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DigitalIdleState_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DigitalIdleState_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DigitalIdleState_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DigitalIdleState_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DigitalIdleState_(soap, tag ? tag : "tt:DigitalIdleState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DigitalIdleState_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DigitalIdleState_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DigitalIdleState_ * SOAP_FMAC4 soap_get_tt__DigitalIdleState_(struct soap *soap, tt__DigitalIdleState_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DigitalIdleState_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelayMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RelayMode(soap, &this->tt__RelayMode_::__item); -} - -void tt__RelayMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__RelayMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelayMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayMode_(struct soap *soap, const char *tag, int id, const tt__RelayMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RelayMode(soap, tag, id, &a->tt__RelayMode_::__item, ""); -} - -void *tt__RelayMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelayMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelayMode_ * SOAP_FMAC4 soap_in_tt__RelayMode_(struct soap *soap, const char *tag, tt__RelayMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RelayMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayMode_, sizeof(tt__RelayMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelayMode_) - return (tt__RelayMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RelayMode(soap, tag, &a->tt__RelayMode_::__item, "tt:RelayMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RelayMode_ * SOAP_FMAC2 soap_instantiate_tt__RelayMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelayMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelayMode_ *p; - size_t k = sizeof(tt__RelayMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelayMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelayMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelayMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelayMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelayMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelayMode_(soap, tag ? tag : "tt:RelayMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelayMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelayMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelayMode_ * SOAP_FMAC4 soap_get_tt__RelayMode_(struct soap *soap, tt__RelayMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelayIdleState_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RelayIdleState(soap, &this->tt__RelayIdleState_::__item); -} - -void tt__RelayIdleState_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__RelayIdleState_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelayIdleState_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayIdleState_(struct soap *soap, const char *tag, int id, const tt__RelayIdleState_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RelayIdleState(soap, tag, id, &a->tt__RelayIdleState_::__item, ""); -} - -void *tt__RelayIdleState_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelayIdleState_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelayIdleState_ * SOAP_FMAC4 soap_in_tt__RelayIdleState_(struct soap *soap, const char *tag, tt__RelayIdleState_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RelayIdleState_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayIdleState_, sizeof(tt__RelayIdleState_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelayIdleState_) - return (tt__RelayIdleState_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RelayIdleState(soap, tag, &a->tt__RelayIdleState_::__item, "tt:RelayIdleState")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RelayIdleState_ * SOAP_FMAC2 soap_instantiate_tt__RelayIdleState_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelayIdleState_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelayIdleState_ *p; - size_t k = sizeof(tt__RelayIdleState_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelayIdleState_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelayIdleState_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelayIdleState_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelayIdleState_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelayIdleState_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelayIdleState_(soap, tag ? tag : "tt:RelayIdleState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelayIdleState_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelayIdleState_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelayIdleState_ * SOAP_FMAC4 soap_get_tt__RelayIdleState_(struct soap *soap, tt__RelayIdleState_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayIdleState_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelayLogicalState_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RelayLogicalState(soap, &this->tt__RelayLogicalState_::__item); -} - -void tt__RelayLogicalState_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__RelayLogicalState_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelayLogicalState_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayLogicalState_(struct soap *soap, const char *tag, int id, const tt__RelayLogicalState_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RelayLogicalState(soap, tag, id, &a->tt__RelayLogicalState_::__item, ""); -} - -void *tt__RelayLogicalState_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelayLogicalState_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelayLogicalState_ * SOAP_FMAC4 soap_in_tt__RelayLogicalState_(struct soap *soap, const char *tag, tt__RelayLogicalState_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RelayLogicalState_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayLogicalState_, sizeof(tt__RelayLogicalState_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelayLogicalState_) - return (tt__RelayLogicalState_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RelayLogicalState(soap, tag, &a->tt__RelayLogicalState_::__item, "tt:RelayLogicalState")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RelayLogicalState_ * SOAP_FMAC2 soap_instantiate_tt__RelayLogicalState_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelayLogicalState_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelayLogicalState_ *p; - size_t k = sizeof(tt__RelayLogicalState_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelayLogicalState_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelayLogicalState_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelayLogicalState_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelayLogicalState_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelayLogicalState_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelayLogicalState_(soap, tag ? tag : "tt:RelayLogicalState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelayLogicalState_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelayLogicalState_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelayLogicalState_ * SOAP_FMAC4 soap_get_tt__RelayLogicalState_(struct soap *soap, tt__RelayLogicalState_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayLogicalState_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__UserLevel_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__UserLevel(soap, &this->tt__UserLevel_::__item); -} - -void tt__UserLevel_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__UserLevel_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__UserLevel_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__UserLevel_(struct soap *soap, const char *tag, int id, const tt__UserLevel_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__UserLevel(soap, tag, id, &a->tt__UserLevel_::__item, ""); -} - -void *tt__UserLevel_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__UserLevel_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__UserLevel_ * SOAP_FMAC4 soap_in_tt__UserLevel_(struct soap *soap, const char *tag, tt__UserLevel_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__UserLevel_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__UserLevel_, sizeof(tt__UserLevel_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__UserLevel_) - return (tt__UserLevel_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__UserLevel(soap, tag, &a->tt__UserLevel_::__item, "tt:UserLevel")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__UserLevel_ * SOAP_FMAC2 soap_instantiate_tt__UserLevel_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__UserLevel_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__UserLevel_ *p; - size_t k = sizeof(tt__UserLevel_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__UserLevel_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__UserLevel_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__UserLevel_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__UserLevel_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__UserLevel_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__UserLevel_(soap, tag ? tag : "tt:UserLevel", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__UserLevel_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__UserLevel_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__UserLevel_ * SOAP_FMAC4 soap_get_tt__UserLevel_(struct soap *soap, tt__UserLevel_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__UserLevel_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SetDateTimeType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SetDateTimeType(soap, &this->tt__SetDateTimeType_::__item); -} - -void tt__SetDateTimeType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__SetDateTimeType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SetDateTimeType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SetDateTimeType_(struct soap *soap, const char *tag, int id, const tt__SetDateTimeType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__SetDateTimeType(soap, tag, id, &a->tt__SetDateTimeType_::__item, ""); -} - -void *tt__SetDateTimeType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SetDateTimeType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SetDateTimeType_ * SOAP_FMAC4 soap_in_tt__SetDateTimeType_(struct soap *soap, const char *tag, tt__SetDateTimeType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__SetDateTimeType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SetDateTimeType_, sizeof(tt__SetDateTimeType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SetDateTimeType_) - return (tt__SetDateTimeType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__SetDateTimeType(soap, tag, &a->tt__SetDateTimeType_::__item, "tt:SetDateTimeType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__SetDateTimeType_ * SOAP_FMAC2 soap_instantiate_tt__SetDateTimeType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SetDateTimeType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SetDateTimeType_ *p; - size_t k = sizeof(tt__SetDateTimeType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SetDateTimeType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SetDateTimeType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SetDateTimeType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SetDateTimeType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SetDateTimeType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SetDateTimeType_(soap, tag ? tag : "tt:SetDateTimeType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SetDateTimeType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SetDateTimeType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SetDateTimeType_ * SOAP_FMAC4 soap_get_tt__SetDateTimeType_(struct soap *soap, tt__SetDateTimeType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SetDateTimeType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FactoryDefaultType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__FactoryDefaultType(soap, &this->tt__FactoryDefaultType_::__item); -} - -void tt__FactoryDefaultType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__FactoryDefaultType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FactoryDefaultType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FactoryDefaultType_(struct soap *soap, const char *tag, int id, const tt__FactoryDefaultType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__FactoryDefaultType(soap, tag, id, &a->tt__FactoryDefaultType_::__item, ""); -} - -void *tt__FactoryDefaultType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FactoryDefaultType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FactoryDefaultType_ * SOAP_FMAC4 soap_in_tt__FactoryDefaultType_(struct soap *soap, const char *tag, tt__FactoryDefaultType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__FactoryDefaultType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FactoryDefaultType_, sizeof(tt__FactoryDefaultType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FactoryDefaultType_) - return (tt__FactoryDefaultType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__FactoryDefaultType(soap, tag, &a->tt__FactoryDefaultType_::__item, "tt:FactoryDefaultType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__FactoryDefaultType_ * SOAP_FMAC2 soap_instantiate_tt__FactoryDefaultType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FactoryDefaultType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FactoryDefaultType_ *p; - size_t k = sizeof(tt__FactoryDefaultType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FactoryDefaultType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FactoryDefaultType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FactoryDefaultType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FactoryDefaultType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FactoryDefaultType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FactoryDefaultType_(soap, tag ? tag : "tt:FactoryDefaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FactoryDefaultType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FactoryDefaultType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FactoryDefaultType_ * SOAP_FMAC4 soap_get_tt__FactoryDefaultType_(struct soap *soap, tt__FactoryDefaultType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FactoryDefaultType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemLogType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SystemLogType(soap, &this->tt__SystemLogType_::__item); -} - -void tt__SystemLogType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__SystemLogType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemLogType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogType_(struct soap *soap, const char *tag, int id, const tt__SystemLogType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__SystemLogType(soap, tag, id, &a->tt__SystemLogType_::__item, ""); -} - -void *tt__SystemLogType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemLogType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemLogType_ * SOAP_FMAC4 soap_in_tt__SystemLogType_(struct soap *soap, const char *tag, tt__SystemLogType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__SystemLogType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemLogType_, sizeof(tt__SystemLogType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemLogType_) - return (tt__SystemLogType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__SystemLogType(soap, tag, &a->tt__SystemLogType_::__item, "tt:SystemLogType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__SystemLogType_ * SOAP_FMAC2 soap_instantiate_tt__SystemLogType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemLogType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemLogType_ *p; - size_t k = sizeof(tt__SystemLogType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemLogType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemLogType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemLogType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemLogType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemLogType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemLogType_(soap, tag ? tag : "tt:SystemLogType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemLogType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemLogType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemLogType_ * SOAP_FMAC4 soap_get_tt__SystemLogType_(struct soap *soap, tt__SystemLogType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemLogType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CapabilityCategory_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__CapabilityCategory(soap, &this->tt__CapabilityCategory_::__item); -} - -void tt__CapabilityCategory_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__CapabilityCategory_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CapabilityCategory_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilityCategory_(struct soap *soap, const char *tag, int id, const tt__CapabilityCategory_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__CapabilityCategory(soap, tag, id, &a->tt__CapabilityCategory_::__item, ""); -} - -void *tt__CapabilityCategory_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CapabilityCategory_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CapabilityCategory_ * SOAP_FMAC4 soap_in_tt__CapabilityCategory_(struct soap *soap, const char *tag, tt__CapabilityCategory_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__CapabilityCategory_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CapabilityCategory_, sizeof(tt__CapabilityCategory_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CapabilityCategory_) - return (tt__CapabilityCategory_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__CapabilityCategory(soap, tag, &a->tt__CapabilityCategory_::__item, "tt:CapabilityCategory")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__CapabilityCategory_ * SOAP_FMAC2 soap_instantiate_tt__CapabilityCategory_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CapabilityCategory_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CapabilityCategory_ *p; - size_t k = sizeof(tt__CapabilityCategory_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CapabilityCategory_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CapabilityCategory_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CapabilityCategory_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CapabilityCategory_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CapabilityCategory_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CapabilityCategory_(soap, tag ? tag : "tt:CapabilityCategory", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CapabilityCategory_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CapabilityCategory_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CapabilityCategory_ * SOAP_FMAC4 soap_get_tt__CapabilityCategory_(struct soap *soap, tt__CapabilityCategory_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CapabilityCategory_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11AuthAndMangementSuite_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11AuthAndMangementSuite(soap, &this->tt__Dot11AuthAndMangementSuite_::__item); -} - -void tt__Dot11AuthAndMangementSuite_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Dot11AuthAndMangementSuite_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11AuthAndMangementSuite_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AuthAndMangementSuite_(struct soap *soap, const char *tag, int id, const tt__Dot11AuthAndMangementSuite_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11AuthAndMangementSuite(soap, tag, id, &a->tt__Dot11AuthAndMangementSuite_::__item, ""); -} - -void *tt__Dot11AuthAndMangementSuite_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11AuthAndMangementSuite_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11AuthAndMangementSuite_ * SOAP_FMAC4 soap_in_tt__Dot11AuthAndMangementSuite_(struct soap *soap, const char *tag, tt__Dot11AuthAndMangementSuite_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11AuthAndMangementSuite_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11AuthAndMangementSuite_, sizeof(tt__Dot11AuthAndMangementSuite_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11AuthAndMangementSuite_) - return (tt__Dot11AuthAndMangementSuite_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11AuthAndMangementSuite(soap, tag, &a->tt__Dot11AuthAndMangementSuite_::__item, "tt:Dot11AuthAndMangementSuite")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11AuthAndMangementSuite_ * SOAP_FMAC2 soap_instantiate_tt__Dot11AuthAndMangementSuite_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11AuthAndMangementSuite_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11AuthAndMangementSuite_ *p; - size_t k = sizeof(tt__Dot11AuthAndMangementSuite_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11AuthAndMangementSuite_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11AuthAndMangementSuite_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11AuthAndMangementSuite_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11AuthAndMangementSuite_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11AuthAndMangementSuite_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11AuthAndMangementSuite_(soap, tag ? tag : "tt:Dot11AuthAndMangementSuite", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11AuthAndMangementSuite_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11AuthAndMangementSuite_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11AuthAndMangementSuite_ * SOAP_FMAC4 soap_get_tt__Dot11AuthAndMangementSuite_(struct soap *soap, tt__Dot11AuthAndMangementSuite_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11AuthAndMangementSuite_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11SignalStrength_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11SignalStrength(soap, &this->tt__Dot11SignalStrength_::__item); -} - -void tt__Dot11SignalStrength_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Dot11SignalStrength_::__item, SOAP_TYPE_tt__Dot11SignalStrength); -#endif -} - -int tt__Dot11SignalStrength_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11SignalStrength_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SignalStrength_(struct soap *soap, const char *tag, int id, const tt__Dot11SignalStrength_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11SignalStrength(soap, tag, id, &a->tt__Dot11SignalStrength_::__item, ""); -} - -void *tt__Dot11SignalStrength_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11SignalStrength_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11SignalStrength_ * SOAP_FMAC4 soap_in_tt__Dot11SignalStrength_(struct soap *soap, const char *tag, tt__Dot11SignalStrength_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11SignalStrength_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SignalStrength_, sizeof(tt__Dot11SignalStrength_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11SignalStrength_) - return (tt__Dot11SignalStrength_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11SignalStrength(soap, tag, &a->tt__Dot11SignalStrength_::__item, "tt:Dot11SignalStrength")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11SignalStrength_ * SOAP_FMAC2 soap_instantiate_tt__Dot11SignalStrength_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11SignalStrength_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11SignalStrength_ *p; - size_t k = sizeof(tt__Dot11SignalStrength_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11SignalStrength_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11SignalStrength_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11SignalStrength_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11SignalStrength_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11SignalStrength_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11SignalStrength_(soap, tag ? tag : "tt:Dot11SignalStrength", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11SignalStrength_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11SignalStrength_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11SignalStrength_ * SOAP_FMAC4 soap_get_tt__Dot11SignalStrength_(struct soap *soap, tt__Dot11SignalStrength_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SignalStrength_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11PSKPassphrase__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11PSKPassphrase(soap, &this->tt__Dot11PSKPassphrase__::__item); -} - -void tt__Dot11PSKPassphrase__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Dot11PSKPassphrase__::__item, SOAP_TYPE_tt__Dot11PSKPassphrase); - soap_serialize_tt__Dot11PSKPassphrase(soap, &this->tt__Dot11PSKPassphrase__::__item); -#endif -} - -int tt__Dot11PSKPassphrase__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11PSKPassphrase__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKPassphrase__(struct soap *soap, const char *tag, int id, const tt__Dot11PSKPassphrase__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11PSKPassphrase(soap, tag, id, &a->tt__Dot11PSKPassphrase__::__item, ""); -} - -void *tt__Dot11PSKPassphrase__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11PSKPassphrase__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11PSKPassphrase__ * SOAP_FMAC4 soap_in_tt__Dot11PSKPassphrase__(struct soap *soap, const char *tag, tt__Dot11PSKPassphrase__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11PSKPassphrase__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11PSKPassphrase__, sizeof(tt__Dot11PSKPassphrase__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11PSKPassphrase__) - return (tt__Dot11PSKPassphrase__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11PSKPassphrase(soap, tag, &a->tt__Dot11PSKPassphrase__::__item, "tt:Dot11PSKPassphrase")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11PSKPassphrase__ * SOAP_FMAC2 soap_instantiate_tt__Dot11PSKPassphrase__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11PSKPassphrase__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11PSKPassphrase__ *p; - size_t k = sizeof(tt__Dot11PSKPassphrase__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11PSKPassphrase__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11PSKPassphrase__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11PSKPassphrase__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11PSKPassphrase__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11PSKPassphrase__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11PSKPassphrase__(soap, tag ? tag : "tt:Dot11PSKPassphrase", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11PSKPassphrase__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11PSKPassphrase__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11PSKPassphrase__ * SOAP_FMAC4 soap_get_tt__Dot11PSKPassphrase__(struct soap *soap, tt__Dot11PSKPassphrase__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11PSKPassphrase__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Dot11PSKPassphrase(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKPassphrase(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__Dot11PSKPassphrase), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__Dot11PSKPassphrase(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__Dot11PSKPassphrase, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, "[ -~]{8,63}"))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__Dot11PSKPassphrase, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__Dot11PSKPassphrase, SOAP_TYPE_tt__Dot11PSKPassphrase, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11PSKPassphrase(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11PSKPassphrase(soap, tag ? tag : "tt:Dot11PSKPassphrase", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__Dot11PSKPassphrase(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11PSKPassphrase(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11PSK__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11PSK(soap, &this->tt__Dot11PSK__::__item); -} - -void tt__Dot11PSK__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Dot11PSK__::__item, SOAP_TYPE_tt__Dot11PSK); - soap_serialize_tt__Dot11PSK(soap, &this->tt__Dot11PSK__::__item); -#endif -} - -int tt__Dot11PSK__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11PSK__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSK__(struct soap *soap, const char *tag, int id, const tt__Dot11PSK__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11PSK(soap, tag, id, &a->tt__Dot11PSK__::__item, ""); -} - -void *tt__Dot11PSK__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11PSK__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11PSK__ * SOAP_FMAC4 soap_in_tt__Dot11PSK__(struct soap *soap, const char *tag, tt__Dot11PSK__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11PSK__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11PSK__, sizeof(tt__Dot11PSK__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11PSK__) - return (tt__Dot11PSK__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11PSK(soap, tag, &a->tt__Dot11PSK__::__item, "tt:Dot11PSK")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11PSK__ * SOAP_FMAC2 soap_instantiate_tt__Dot11PSK__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11PSK__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11PSK__ *p; - size_t k = sizeof(tt__Dot11PSK__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11PSK__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11PSK__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11PSK__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11PSK__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11PSK__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11PSK__(soap, tag ? tag : "tt:Dot11PSK", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11PSK__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11PSK__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11PSK__ * SOAP_FMAC4 soap_get_tt__Dot11PSK__(struct soap *soap, tt__Dot11PSK__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11PSK__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_tt__Dot11PSK(struct soap *soap, xsd__hexBinary *a) -{ - (void)soap; /* appease -Wall -Werror */ - a->__ptr = NULL; - a->__size = 0; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Dot11PSK(struct soap *soap, const xsd__hexBinary *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__ptr) - (void)soap_array_reference(soap, a, a->__ptr, a->__size, SOAP_TYPE_tt__Dot11PSK); -#endif -} - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11PSK2s(struct soap *soap, xsd__hexBinary a) -{ - return soap_s2hex(soap, a.__ptr, NULL, a.__size); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSK(struct soap *soap, const char *tag, int id, const xsd__hexBinary *a, const char *type) -{ - id = soap_element_id(soap, tag, id, a, a->__ptr, a->__size, type, SOAP_TYPE_tt__Dot11PSK, NULL); - if (id < 0) - return soap->error; - if (soap_element_begin_out(soap, tag, id, type)) - return soap->error; - if (soap_puthex(soap, a->__ptr, a->__size)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11PSK(struct soap *soap, const char *s, xsd__hexBinary *a) -{ - a->__ptr = (unsigned char*)soap_hex2s(soap, s, NULL, 0, &a->__size); - if (!a->__ptr) - return soap->error; - if (a->__size < 32) - return soap->error = SOAP_LENGTH; - if (a->__size > 32) - return soap->error = SOAP_LENGTH; - return SOAP_OK; -} - -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_in_tt__Dot11PSK(struct soap *soap, const char *tag, xsd__hexBinary *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (*soap->type && soap_match_tag(soap, soap->type, type) && soap_match_tag(soap, soap->type, ":hexBinary")) - { soap->error = SOAP_TYPE; - return NULL; - } - a = (xsd__hexBinary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11PSK, sizeof(xsd__hexBinary), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - a->__ptr = soap_gethex(soap, &a->__size); - if ((!a->__ptr && soap->error) || soap_element_end_in(soap, tag)) - return NULL; - if (a->__size < 32) - { soap->error = SOAP_LENGTH; - return NULL; - } - if (a->__size > 32) - { soap->error = SOAP_LENGTH; - return NULL; - } - } - else - { a = (xsd__hexBinary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11PSK, SOAP_TYPE_tt__Dot11PSK, sizeof(xsd__hexBinary), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11PSK(struct soap *soap, const xsd__hexBinary *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11PSK(soap, tag ? tag : "tt:Dot11PSK", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_get_tt__Dot11PSK(struct soap *soap, xsd__hexBinary *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11PSK(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11Cipher_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11Cipher(soap, &this->tt__Dot11Cipher_::__item); -} - -void tt__Dot11Cipher_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Dot11Cipher_::__item, SOAP_TYPE_tt__Dot11Cipher); -#endif -} - -int tt__Dot11Cipher_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11Cipher_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Cipher_(struct soap *soap, const char *tag, int id, const tt__Dot11Cipher_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11Cipher(soap, tag, id, &a->tt__Dot11Cipher_::__item, ""); -} - -void *tt__Dot11Cipher_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11Cipher_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11Cipher_ * SOAP_FMAC4 soap_in_tt__Dot11Cipher_(struct soap *soap, const char *tag, tt__Dot11Cipher_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11Cipher_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11Cipher_, sizeof(tt__Dot11Cipher_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11Cipher_) - return (tt__Dot11Cipher_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11Cipher(soap, tag, &a->tt__Dot11Cipher_::__item, "tt:Dot11Cipher")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11Cipher_ * SOAP_FMAC2 soap_instantiate_tt__Dot11Cipher_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11Cipher_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11Cipher_ *p; - size_t k = sizeof(tt__Dot11Cipher_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11Cipher_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11Cipher_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11Cipher_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11Cipher_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11Cipher_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11Cipher_(soap, tag ? tag : "tt:Dot11Cipher", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11Cipher_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11Cipher_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11Cipher_ * SOAP_FMAC4 soap_get_tt__Dot11Cipher_(struct soap *soap, tt__Dot11Cipher_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11Cipher_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11SecurityMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11SecurityMode(soap, &this->tt__Dot11SecurityMode_::__item); -} - -void tt__Dot11SecurityMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Dot11SecurityMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11SecurityMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityMode_(struct soap *soap, const char *tag, int id, const tt__Dot11SecurityMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11SecurityMode(soap, tag, id, &a->tt__Dot11SecurityMode_::__item, ""); -} - -void *tt__Dot11SecurityMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11SecurityMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11SecurityMode_ * SOAP_FMAC4 soap_in_tt__Dot11SecurityMode_(struct soap *soap, const char *tag, tt__Dot11SecurityMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11SecurityMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SecurityMode_, sizeof(tt__Dot11SecurityMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11SecurityMode_) - return (tt__Dot11SecurityMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11SecurityMode(soap, tag, &a->tt__Dot11SecurityMode_::__item, "tt:Dot11SecurityMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11SecurityMode_ * SOAP_FMAC2 soap_instantiate_tt__Dot11SecurityMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11SecurityMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11SecurityMode_ *p; - size_t k = sizeof(tt__Dot11SecurityMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11SecurityMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11SecurityMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11SecurityMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11SecurityMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11SecurityMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11SecurityMode_(soap, tag ? tag : "tt:Dot11SecurityMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11SecurityMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11SecurityMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11SecurityMode_ * SOAP_FMAC4 soap_get_tt__Dot11SecurityMode_(struct soap *soap, tt__Dot11SecurityMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SecurityMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11StationMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11StationMode(soap, &this->tt__Dot11StationMode_::__item); -} - -void tt__Dot11StationMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Dot11StationMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11StationMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11StationMode_(struct soap *soap, const char *tag, int id, const tt__Dot11StationMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11StationMode(soap, tag, id, &a->tt__Dot11StationMode_::__item, ""); -} - -void *tt__Dot11StationMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11StationMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11StationMode_ * SOAP_FMAC4 soap_in_tt__Dot11StationMode_(struct soap *soap, const char *tag, tt__Dot11StationMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11StationMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11StationMode_, sizeof(tt__Dot11StationMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11StationMode_) - return (tt__Dot11StationMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11StationMode(soap, tag, &a->tt__Dot11StationMode_::__item, "tt:Dot11StationMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11StationMode_ * SOAP_FMAC2 soap_instantiate_tt__Dot11StationMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11StationMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11StationMode_ *p; - size_t k = sizeof(tt__Dot11StationMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11StationMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11StationMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11StationMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11StationMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11StationMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11StationMode_(soap, tag ? tag : "tt:Dot11StationMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11StationMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11StationMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11StationMode_ * SOAP_FMAC4 soap_get_tt__Dot11StationMode_(struct soap *soap, tt__Dot11StationMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11StationMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11SSIDType__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11SSIDType(soap, &this->tt__Dot11SSIDType__::__item); -} - -void tt__Dot11SSIDType__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__Dot11SSIDType(soap, &this->tt__Dot11SSIDType__::__item); -#endif -} - -int tt__Dot11SSIDType__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11SSIDType__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SSIDType__(struct soap *soap, const char *tag, int id, const tt__Dot11SSIDType__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Dot11SSIDType(soap, tag, id, &a->tt__Dot11SSIDType__::__item, ""); -} - -void *tt__Dot11SSIDType__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11SSIDType__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11SSIDType__ * SOAP_FMAC4 soap_in_tt__Dot11SSIDType__(struct soap *soap, const char *tag, tt__Dot11SSIDType__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Dot11SSIDType__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SSIDType__, sizeof(tt__Dot11SSIDType__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11SSIDType__) - return (tt__Dot11SSIDType__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Dot11SSIDType(soap, tag, &a->tt__Dot11SSIDType__::__item, "tt:Dot11SSIDType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Dot11SSIDType__ * SOAP_FMAC2 soap_instantiate_tt__Dot11SSIDType__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11SSIDType__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11SSIDType__ *p; - size_t k = sizeof(tt__Dot11SSIDType__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11SSIDType__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11SSIDType__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11SSIDType__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11SSIDType__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11SSIDType__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11SSIDType__(soap, tag ? tag : "tt:Dot11SSIDType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11SSIDType__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11SSIDType__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11SSIDType__ * SOAP_FMAC4 soap_get_tt__Dot11SSIDType__(struct soap *soap, tt__Dot11SSIDType__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SSIDType__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_tt__Dot11SSIDType(struct soap *soap, xsd__hexBinary *a) -{ - (void)soap; /* appease -Wall -Werror */ - a->__ptr = NULL; - a->__size = 0; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Dot11SSIDType(struct soap *soap, const xsd__hexBinary *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__ptr) - (void)soap_array_reference(soap, a, a->__ptr, a->__size, SOAP_TYPE_tt__Dot11SSIDType); -#endif -} - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11SSIDType2s(struct soap *soap, xsd__hexBinary a) -{ - return soap_s2hex(soap, a.__ptr, NULL, a.__size); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SSIDType(struct soap *soap, const char *tag, int id, const xsd__hexBinary *a, const char *type) -{ - id = soap_element_id(soap, tag, id, a, a->__ptr, a->__size, type, SOAP_TYPE_tt__Dot11SSIDType, NULL); - if (id < 0) - return soap->error; - if (soap_element_begin_out(soap, tag, id, type)) - return soap->error; - if (soap_puthex(soap, a->__ptr, a->__size)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11SSIDType(struct soap *soap, const char *s, xsd__hexBinary *a) -{ - a->__ptr = (unsigned char*)soap_hex2s(soap, s, NULL, 0, &a->__size); - if (!a->__ptr) - return soap->error; - if (a->__size < 1) - return soap->error = SOAP_LENGTH; - if (a->__size > 32) - return soap->error = SOAP_LENGTH; - return SOAP_OK; -} - -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_in_tt__Dot11SSIDType(struct soap *soap, const char *tag, xsd__hexBinary *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (*soap->type && soap_match_tag(soap, soap->type, type) && soap_match_tag(soap, soap->type, ":hexBinary")) - { soap->error = SOAP_TYPE; - return NULL; - } - a = (xsd__hexBinary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SSIDType, sizeof(xsd__hexBinary), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - a->__ptr = soap_gethex(soap, &a->__size); - if ((!a->__ptr && soap->error) || soap_element_end_in(soap, tag)) - return NULL; - if (a->__size < 1) - { soap->error = SOAP_LENGTH; - return NULL; - } - if (a->__size > 32) - { soap->error = SOAP_LENGTH; - return NULL; - } - } - else - { a = (xsd__hexBinary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11SSIDType, SOAP_TYPE_tt__Dot11SSIDType, sizeof(xsd__hexBinary), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11SSIDType(struct soap *soap, const xsd__hexBinary *a, const char *tag, const char *type) -{ - if (soap_out_tt__Dot11SSIDType(soap, tag ? tag : "tt:Dot11SSIDType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_get_tt__Dot11SSIDType(struct soap *soap, xsd__hexBinary *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SSIDType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DynamicDNSType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DynamicDNSType(soap, &this->tt__DynamicDNSType_::__item); -} - -void tt__DynamicDNSType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__DynamicDNSType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DynamicDNSType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSType_(struct soap *soap, const char *tag, int id, const tt__DynamicDNSType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__DynamicDNSType(soap, tag, id, &a->tt__DynamicDNSType_::__item, ""); -} - -void *tt__DynamicDNSType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DynamicDNSType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DynamicDNSType_ * SOAP_FMAC4 soap_in_tt__DynamicDNSType_(struct soap *soap, const char *tag, tt__DynamicDNSType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__DynamicDNSType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DynamicDNSType_, sizeof(tt__DynamicDNSType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DynamicDNSType_) - return (tt__DynamicDNSType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__DynamicDNSType(soap, tag, &a->tt__DynamicDNSType_::__item, "tt:DynamicDNSType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__DynamicDNSType_ * SOAP_FMAC2 soap_instantiate_tt__DynamicDNSType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DynamicDNSType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DynamicDNSType_ *p; - size_t k = sizeof(tt__DynamicDNSType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DynamicDNSType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DynamicDNSType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DynamicDNSType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DynamicDNSType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DynamicDNSType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DynamicDNSType_(soap, tag ? tag : "tt:DynamicDNSType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DynamicDNSType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DynamicDNSType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DynamicDNSType_ * SOAP_FMAC4 soap_get_tt__DynamicDNSType_(struct soap *soap, tt__DynamicDNSType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DynamicDNSType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPAddressFilterType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPAddressFilterType(soap, &this->tt__IPAddressFilterType_::__item); -} - -void tt__IPAddressFilterType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__IPAddressFilterType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPAddressFilterType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilterType_(struct soap *soap, const char *tag, int id, const tt__IPAddressFilterType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IPAddressFilterType(soap, tag, id, &a->tt__IPAddressFilterType_::__item, ""); -} - -void *tt__IPAddressFilterType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPAddressFilterType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPAddressFilterType_ * SOAP_FMAC4 soap_in_tt__IPAddressFilterType_(struct soap *soap, const char *tag, tt__IPAddressFilterType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IPAddressFilterType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPAddressFilterType_, sizeof(tt__IPAddressFilterType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPAddressFilterType_) - return (tt__IPAddressFilterType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IPAddressFilterType(soap, tag, &a->tt__IPAddressFilterType_::__item, "tt:IPAddressFilterType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IPAddressFilterType_ * SOAP_FMAC2 soap_instantiate_tt__IPAddressFilterType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPAddressFilterType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPAddressFilterType_ *p; - size_t k = sizeof(tt__IPAddressFilterType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPAddressFilterType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPAddressFilterType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPAddressFilterType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPAddressFilterType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPAddressFilterType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPAddressFilterType_(soap, tag ? tag : "tt:IPAddressFilterType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPAddressFilterType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPAddressFilterType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPAddressFilterType_ * SOAP_FMAC4 soap_get_tt__IPAddressFilterType_(struct soap *soap, tt__IPAddressFilterType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPAddressFilterType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Domain__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Domain(soap, &this->tt__Domain__::__item); -} - -void tt__Domain__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__Domain(soap, &this->tt__Domain__::__item); -#endif -} - -int tt__Domain__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Domain__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Domain__(struct soap *soap, const char *tag, int id, const tt__Domain__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Domain(soap, tag, id, &a->tt__Domain__::__item, ""); -} - -void *tt__Domain__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Domain__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Domain__ * SOAP_FMAC4 soap_in_tt__Domain__(struct soap *soap, const char *tag, tt__Domain__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Domain__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Domain__, sizeof(tt__Domain__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Domain__) - return (tt__Domain__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Domain(soap, tag, &a->tt__Domain__::__item, "tt:Domain")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Domain__ * SOAP_FMAC2 soap_instantiate_tt__Domain__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Domain__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Domain__ *p; - size_t k = sizeof(tt__Domain__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Domain__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Domain__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Domain__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Domain__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Domain__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Domain__(soap, tag ? tag : "tt:Domain", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Domain__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Domain__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Domain__ * SOAP_FMAC4 soap_get_tt__Domain__(struct soap *soap, tt__Domain__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Domain__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DNSName__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DNSName(soap, &this->tt__DNSName__::__item); -} - -void tt__DNSName__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DNSName__::__item, SOAP_TYPE_tt__DNSName); - soap_serialize_tt__DNSName(soap, &this->tt__DNSName__::__item); -#endif -} - -int tt__DNSName__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DNSName__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DNSName__(struct soap *soap, const char *tag, int id, const tt__DNSName__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__DNSName(soap, tag, id, &a->tt__DNSName__::__item, ""); -} - -void *tt__DNSName__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DNSName__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DNSName__ * SOAP_FMAC4 soap_in_tt__DNSName__(struct soap *soap, const char *tag, tt__DNSName__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__DNSName__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DNSName__, sizeof(tt__DNSName__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DNSName__) - return (tt__DNSName__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__DNSName(soap, tag, &a->tt__DNSName__::__item, "tt:DNSName")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__DNSName__ * SOAP_FMAC2 soap_instantiate_tt__DNSName__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DNSName__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DNSName__ *p; - size_t k = sizeof(tt__DNSName__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DNSName__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DNSName__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DNSName__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DNSName__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DNSName__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DNSName__(soap, tag ? tag : "tt:DNSName", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DNSName__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DNSName__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DNSName__ * SOAP_FMAC4 soap_get_tt__DNSName__(struct soap *soap, tt__DNSName__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DNSName__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPType(soap, &this->tt__IPType_::__item); -} - -void tt__IPType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__IPType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPType_(struct soap *soap, const char *tag, int id, const tt__IPType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IPType(soap, tag, id, &a->tt__IPType_::__item, ""); -} - -void *tt__IPType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPType_ * SOAP_FMAC4 soap_in_tt__IPType_(struct soap *soap, const char *tag, tt__IPType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IPType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPType_, sizeof(tt__IPType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPType_) - return (tt__IPType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IPType(soap, tag, &a->tt__IPType_::__item, "tt:IPType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IPType_ * SOAP_FMAC2 soap_instantiate_tt__IPType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPType_ *p; - size_t k = sizeof(tt__IPType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPType_(soap, tag ? tag : "tt:IPType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPType_ * SOAP_FMAC4 soap_get_tt__IPType_(struct soap *soap, tt__IPType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__HwAddress__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__HwAddress(soap, &this->tt__HwAddress__::__item); -} - -void tt__HwAddress__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__HwAddress(soap, &this->tt__HwAddress__::__item); -#endif -} - -int tt__HwAddress__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__HwAddress__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__HwAddress__(struct soap *soap, const char *tag, int id, const tt__HwAddress__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__HwAddress(soap, tag, id, &a->tt__HwAddress__::__item, ""); -} - -void *tt__HwAddress__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__HwAddress__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__HwAddress__ * SOAP_FMAC4 soap_in_tt__HwAddress__(struct soap *soap, const char *tag, tt__HwAddress__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__HwAddress__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__HwAddress__, sizeof(tt__HwAddress__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__HwAddress__) - return (tt__HwAddress__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__HwAddress(soap, tag, &a->tt__HwAddress__::__item, "tt:HwAddress")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__HwAddress__ * SOAP_FMAC2 soap_instantiate_tt__HwAddress__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__HwAddress__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__HwAddress__ *p; - size_t k = sizeof(tt__HwAddress__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__HwAddress__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__HwAddress__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__HwAddress__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__HwAddress__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__HwAddress__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__HwAddress__(soap, tag ? tag : "tt:HwAddress", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__HwAddress__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__HwAddress__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__HwAddress__ * SOAP_FMAC4 soap_get_tt__HwAddress__(struct soap *soap, tt__HwAddress__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__HwAddress__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv6Address__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPv6Address(soap, &this->tt__IPv6Address__::__item); -} - -void tt__IPv6Address__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IPv6Address__::__item, SOAP_TYPE_tt__IPv6Address); - soap_serialize_tt__IPv6Address(soap, &this->tt__IPv6Address__::__item); -#endif -} - -int tt__IPv6Address__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv6Address__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6Address__(struct soap *soap, const char *tag, int id, const tt__IPv6Address__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IPv6Address(soap, tag, id, &a->tt__IPv6Address__::__item, ""); -} - -void *tt__IPv6Address__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv6Address__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv6Address__ * SOAP_FMAC4 soap_in_tt__IPv6Address__(struct soap *soap, const char *tag, tt__IPv6Address__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IPv6Address__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv6Address__, sizeof(tt__IPv6Address__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv6Address__) - return (tt__IPv6Address__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IPv6Address(soap, tag, &a->tt__IPv6Address__::__item, "tt:IPv6Address")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IPv6Address__ * SOAP_FMAC2 soap_instantiate_tt__IPv6Address__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv6Address__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv6Address__ *p; - size_t k = sizeof(tt__IPv6Address__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv6Address__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv6Address__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv6Address__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv6Address__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv6Address__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv6Address__(soap, tag ? tag : "tt:IPv6Address", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv6Address__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv6Address__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv6Address__ * SOAP_FMAC4 soap_get_tt__IPv6Address__(struct soap *soap, tt__IPv6Address__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv6Address__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv4Address__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPv4Address(soap, &this->tt__IPv4Address__::__item); -} - -void tt__IPv4Address__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IPv4Address__::__item, SOAP_TYPE_tt__IPv4Address); - soap_serialize_tt__IPv4Address(soap, &this->tt__IPv4Address__::__item); -#endif -} - -int tt__IPv4Address__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv4Address__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4Address__(struct soap *soap, const char *tag, int id, const tt__IPv4Address__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IPv4Address(soap, tag, id, &a->tt__IPv4Address__::__item, ""); -} - -void *tt__IPv4Address__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv4Address__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv4Address__ * SOAP_FMAC4 soap_in_tt__IPv4Address__(struct soap *soap, const char *tag, tt__IPv4Address__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IPv4Address__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv4Address__, sizeof(tt__IPv4Address__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv4Address__) - return (tt__IPv4Address__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IPv4Address(soap, tag, &a->tt__IPv4Address__::__item, "tt:IPv4Address")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IPv4Address__ * SOAP_FMAC2 soap_instantiate_tt__IPv4Address__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv4Address__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv4Address__ *p; - size_t k = sizeof(tt__IPv4Address__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv4Address__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv4Address__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv4Address__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv4Address__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv4Address__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv4Address__(soap, tag ? tag : "tt:IPv4Address", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv4Address__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv4Address__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv4Address__ * SOAP_FMAC4 soap_get_tt__IPv4Address__(struct soap *soap, tt__IPv4Address__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv4Address__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkHostType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__NetworkHostType(soap, &this->tt__NetworkHostType_::__item); -} - -void tt__NetworkHostType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__NetworkHostType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkHostType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHostType_(struct soap *soap, const char *tag, int id, const tt__NetworkHostType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__NetworkHostType(soap, tag, id, &a->tt__NetworkHostType_::__item, ""); -} - -void *tt__NetworkHostType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkHostType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkHostType_ * SOAP_FMAC4 soap_in_tt__NetworkHostType_(struct soap *soap, const char *tag, tt__NetworkHostType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__NetworkHostType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkHostType_, sizeof(tt__NetworkHostType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkHostType_) - return (tt__NetworkHostType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__NetworkHostType(soap, tag, &a->tt__NetworkHostType_::__item, "tt:NetworkHostType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__NetworkHostType_ * SOAP_FMAC2 soap_instantiate_tt__NetworkHostType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkHostType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkHostType_ *p; - size_t k = sizeof(tt__NetworkHostType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkHostType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkHostType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkHostType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkHostType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkHostType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkHostType_(soap, tag ? tag : "tt:NetworkHostType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkHostType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkHostType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkHostType_ * SOAP_FMAC4 soap_get_tt__NetworkHostType_(struct soap *soap, tt__NetworkHostType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkHostType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkProtocolType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__NetworkProtocolType(soap, &this->tt__NetworkProtocolType_::__item); -} - -void tt__NetworkProtocolType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__NetworkProtocolType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkProtocolType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocolType_(struct soap *soap, const char *tag, int id, const tt__NetworkProtocolType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__NetworkProtocolType(soap, tag, id, &a->tt__NetworkProtocolType_::__item, ""); -} - -void *tt__NetworkProtocolType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkProtocolType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkProtocolType_ * SOAP_FMAC4 soap_in_tt__NetworkProtocolType_(struct soap *soap, const char *tag, tt__NetworkProtocolType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__NetworkProtocolType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkProtocolType_, sizeof(tt__NetworkProtocolType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkProtocolType_) - return (tt__NetworkProtocolType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__NetworkProtocolType(soap, tag, &a->tt__NetworkProtocolType_::__item, "tt:NetworkProtocolType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__NetworkProtocolType_ * SOAP_FMAC2 soap_instantiate_tt__NetworkProtocolType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkProtocolType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkProtocolType_ *p; - size_t k = sizeof(tt__NetworkProtocolType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkProtocolType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkProtocolType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkProtocolType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkProtocolType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkProtocolType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkProtocolType_(soap, tag ? tag : "tt:NetworkProtocolType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkProtocolType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkProtocolType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkProtocolType_ * SOAP_FMAC4 soap_get_tt__NetworkProtocolType_(struct soap *soap, tt__NetworkProtocolType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkProtocolType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv6DHCPConfiguration_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPv6DHCPConfiguration(soap, &this->tt__IPv6DHCPConfiguration_::__item); -} - -void tt__IPv6DHCPConfiguration_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IPv6DHCPConfiguration_::__item, SOAP_TYPE_tt__IPv6DHCPConfiguration); -#endif -} - -int tt__IPv6DHCPConfiguration_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv6DHCPConfiguration_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6DHCPConfiguration_(struct soap *soap, const char *tag, int id, const tt__IPv6DHCPConfiguration_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IPv6DHCPConfiguration(soap, tag, id, &a->tt__IPv6DHCPConfiguration_::__item, ""); -} - -void *tt__IPv6DHCPConfiguration_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv6DHCPConfiguration_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv6DHCPConfiguration_ * SOAP_FMAC4 soap_in_tt__IPv6DHCPConfiguration_(struct soap *soap, const char *tag, tt__IPv6DHCPConfiguration_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IPv6DHCPConfiguration_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv6DHCPConfiguration_, sizeof(tt__IPv6DHCPConfiguration_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv6DHCPConfiguration_) - return (tt__IPv6DHCPConfiguration_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IPv6DHCPConfiguration(soap, tag, &a->tt__IPv6DHCPConfiguration_::__item, "tt:IPv6DHCPConfiguration")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IPv6DHCPConfiguration_ * SOAP_FMAC2 soap_instantiate_tt__IPv6DHCPConfiguration_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv6DHCPConfiguration_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv6DHCPConfiguration_ *p; - size_t k = sizeof(tt__IPv6DHCPConfiguration_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv6DHCPConfiguration_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv6DHCPConfiguration_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv6DHCPConfiguration_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv6DHCPConfiguration_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv6DHCPConfiguration_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv6DHCPConfiguration_(soap, tag ? tag : "tt:IPv6DHCPConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv6DHCPConfiguration_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv6DHCPConfiguration_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv6DHCPConfiguration_ * SOAP_FMAC4 soap_get_tt__IPv6DHCPConfiguration_(struct soap *soap, tt__IPv6DHCPConfiguration_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv6DHCPConfiguration_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IANA_IfTypes__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IANA_IfTypes(soap, &this->tt__IANA_IfTypes__::__item); -} - -void tt__IANA_IfTypes__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__IANA_IfTypes__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IANA_IfTypes__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IANA_IfTypes__(struct soap *soap, const char *tag, int id, const tt__IANA_IfTypes__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__IANA_IfTypes(soap, tag, id, &a->tt__IANA_IfTypes__::__item, ""); -} - -void *tt__IANA_IfTypes__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IANA_IfTypes__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IANA_IfTypes__ * SOAP_FMAC4 soap_in_tt__IANA_IfTypes__(struct soap *soap, const char *tag, tt__IANA_IfTypes__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__IANA_IfTypes__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IANA_IfTypes__, sizeof(tt__IANA_IfTypes__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IANA_IfTypes__) - return (tt__IANA_IfTypes__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__IANA_IfTypes(soap, tag, &a->tt__IANA_IfTypes__::__item, "tt:IANA-IfTypes")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__IANA_IfTypes__ * SOAP_FMAC2 soap_instantiate_tt__IANA_IfTypes__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IANA_IfTypes__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IANA_IfTypes__ *p; - size_t k = sizeof(tt__IANA_IfTypes__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IANA_IfTypes__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IANA_IfTypes__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IANA_IfTypes__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IANA_IfTypes__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IANA_IfTypes__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IANA_IfTypes__(soap, tag ? tag : "tt:IANA-IfTypes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IANA_IfTypes__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IANA_IfTypes__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IANA_IfTypes__ * SOAP_FMAC4 soap_get_tt__IANA_IfTypes__(struct soap *soap, tt__IANA_IfTypes__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IANA_IfTypes__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Duplex_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Duplex(soap, &this->tt__Duplex_::__item); -} - -void tt__Duplex_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Duplex_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Duplex_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Duplex_(struct soap *soap, const char *tag, int id, const tt__Duplex_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Duplex(soap, tag, id, &a->tt__Duplex_::__item, ""); -} - -void *tt__Duplex_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Duplex_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Duplex_ * SOAP_FMAC4 soap_in_tt__Duplex_(struct soap *soap, const char *tag, tt__Duplex_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Duplex_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Duplex_, sizeof(tt__Duplex_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Duplex_) - return (tt__Duplex_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Duplex(soap, tag, &a->tt__Duplex_::__item, "tt:Duplex")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Duplex_ * SOAP_FMAC2 soap_instantiate_tt__Duplex_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Duplex_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Duplex_ *p; - size_t k = sizeof(tt__Duplex_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Duplex_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Duplex_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Duplex_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Duplex_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Duplex_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Duplex_(soap, tag ? tag : "tt:Duplex", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Duplex_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Duplex_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Duplex_ * SOAP_FMAC4 soap_get_tt__Duplex_(struct soap *soap, tt__Duplex_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Duplex_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceConfigPriority__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__NetworkInterfaceConfigPriority(soap, &this->tt__NetworkInterfaceConfigPriority__::__item); -} - -void tt__NetworkInterfaceConfigPriority__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__NetworkInterfaceConfigPriority(soap, &this->tt__NetworkInterfaceConfigPriority__::__item); -#endif -} - -int tt__NetworkInterfaceConfigPriority__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceConfigPriority__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceConfigPriority__(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceConfigPriority__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__NetworkInterfaceConfigPriority(soap, tag, id, &a->tt__NetworkInterfaceConfigPriority__::__item, ""); -} - -void *tt__NetworkInterfaceConfigPriority__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceConfigPriority__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceConfigPriority__ * SOAP_FMAC4 soap_in_tt__NetworkInterfaceConfigPriority__(struct soap *soap, const char *tag, tt__NetworkInterfaceConfigPriority__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__NetworkInterfaceConfigPriority__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceConfigPriority__, sizeof(tt__NetworkInterfaceConfigPriority__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceConfigPriority__) - return (tt__NetworkInterfaceConfigPriority__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__NetworkInterfaceConfigPriority(soap, tag, &a->tt__NetworkInterfaceConfigPriority__::__item, "tt:NetworkInterfaceConfigPriority")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceConfigPriority__ * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceConfigPriority__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceConfigPriority__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceConfigPriority__ *p; - size_t k = sizeof(tt__NetworkInterfaceConfigPriority__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceConfigPriority__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceConfigPriority__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceConfigPriority__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceConfigPriority__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceConfigPriority__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceConfigPriority__(soap, tag ? tag : "tt:NetworkInterfaceConfigPriority", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceConfigPriority__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceConfigPriority__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceConfigPriority__ * SOAP_FMAC4 soap_get_tt__NetworkInterfaceConfigPriority__(struct soap *soap, tt__NetworkInterfaceConfigPriority__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceConfigPriority__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DiscoveryMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DiscoveryMode(soap, &this->tt__DiscoveryMode_::__item); -} - -void tt__DiscoveryMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__DiscoveryMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DiscoveryMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DiscoveryMode_(struct soap *soap, const char *tag, int id, const tt__DiscoveryMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__DiscoveryMode(soap, tag, id, &a->tt__DiscoveryMode_::__item, ""); -} - -void *tt__DiscoveryMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DiscoveryMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DiscoveryMode_ * SOAP_FMAC4 soap_in_tt__DiscoveryMode_(struct soap *soap, const char *tag, tt__DiscoveryMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__DiscoveryMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DiscoveryMode_, sizeof(tt__DiscoveryMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DiscoveryMode_) - return (tt__DiscoveryMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__DiscoveryMode(soap, tag, &a->tt__DiscoveryMode_::__item, "tt:DiscoveryMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__DiscoveryMode_ * SOAP_FMAC2 soap_instantiate_tt__DiscoveryMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DiscoveryMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DiscoveryMode_ *p; - size_t k = sizeof(tt__DiscoveryMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DiscoveryMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DiscoveryMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DiscoveryMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DiscoveryMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DiscoveryMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DiscoveryMode_(soap, tag ? tag : "tt:DiscoveryMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DiscoveryMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DiscoveryMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DiscoveryMode_ * SOAP_FMAC4 soap_get_tt__DiscoveryMode_(struct soap *soap, tt__DiscoveryMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DiscoveryMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ScopeDefinition_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ScopeDefinition(soap, &this->tt__ScopeDefinition_::__item); -} - -void tt__ScopeDefinition_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ScopeDefinition_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ScopeDefinition_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ScopeDefinition_(struct soap *soap, const char *tag, int id, const tt__ScopeDefinition_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ScopeDefinition(soap, tag, id, &a->tt__ScopeDefinition_::__item, ""); -} - -void *tt__ScopeDefinition_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ScopeDefinition_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ScopeDefinition_ * SOAP_FMAC4 soap_in_tt__ScopeDefinition_(struct soap *soap, const char *tag, tt__ScopeDefinition_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ScopeDefinition_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ScopeDefinition_, sizeof(tt__ScopeDefinition_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ScopeDefinition_) - return (tt__ScopeDefinition_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ScopeDefinition(soap, tag, &a->tt__ScopeDefinition_::__item, "tt:ScopeDefinition")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ScopeDefinition_ * SOAP_FMAC2 soap_instantiate_tt__ScopeDefinition_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ScopeDefinition_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ScopeDefinition_ *p; - size_t k = sizeof(tt__ScopeDefinition_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ScopeDefinition_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ScopeDefinition_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ScopeDefinition_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ScopeDefinition_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ScopeDefinition_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ScopeDefinition_(soap, tag ? tag : "tt:ScopeDefinition", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ScopeDefinition_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ScopeDefinition_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ScopeDefinition_ * SOAP_FMAC4 soap_get_tt__ScopeDefinition_(struct soap *soap, tt__ScopeDefinition_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ScopeDefinition_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TransportProtocol_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TransportProtocol(soap, &this->tt__TransportProtocol_::__item); -} - -void tt__TransportProtocol_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__TransportProtocol_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TransportProtocol_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TransportProtocol_(struct soap *soap, const char *tag, int id, const tt__TransportProtocol_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__TransportProtocol(soap, tag, id, &a->tt__TransportProtocol_::__item, ""); -} - -void *tt__TransportProtocol_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TransportProtocol_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TransportProtocol_ * SOAP_FMAC4 soap_in_tt__TransportProtocol_(struct soap *soap, const char *tag, tt__TransportProtocol_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__TransportProtocol_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TransportProtocol_, sizeof(tt__TransportProtocol_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TransportProtocol_) - return (tt__TransportProtocol_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__TransportProtocol(soap, tag, &a->tt__TransportProtocol_::__item, "tt:TransportProtocol")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__TransportProtocol_ * SOAP_FMAC2 soap_instantiate_tt__TransportProtocol_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TransportProtocol_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TransportProtocol_ *p; - size_t k = sizeof(tt__TransportProtocol_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TransportProtocol_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TransportProtocol_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TransportProtocol_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TransportProtocol_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TransportProtocol_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TransportProtocol_(soap, tag ? tag : "tt:TransportProtocol", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TransportProtocol_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TransportProtocol_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TransportProtocol_ * SOAP_FMAC4 soap_get_tt__TransportProtocol_(struct soap *soap, tt__TransportProtocol_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TransportProtocol_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__StreamType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__StreamType(soap, &this->tt__StreamType_::__item); -} - -void tt__StreamType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__StreamType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__StreamType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StreamType_(struct soap *soap, const char *tag, int id, const tt__StreamType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__StreamType(soap, tag, id, &a->tt__StreamType_::__item, ""); -} - -void *tt__StreamType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__StreamType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__StreamType_ * SOAP_FMAC4 soap_in_tt__StreamType_(struct soap *soap, const char *tag, tt__StreamType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__StreamType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__StreamType_, sizeof(tt__StreamType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__StreamType_) - return (tt__StreamType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__StreamType(soap, tag, &a->tt__StreamType_::__item, "tt:StreamType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__StreamType_ * SOAP_FMAC2 soap_instantiate_tt__StreamType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__StreamType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__StreamType_ *p; - size_t k = sizeof(tt__StreamType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__StreamType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__StreamType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__StreamType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__StreamType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__StreamType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__StreamType_(soap, tag ? tag : "tt:StreamType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__StreamType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__StreamType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__StreamType_ * SOAP_FMAC4 soap_get_tt__StreamType_(struct soap *soap, tt__StreamType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__StreamType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataCompressionType_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__MetadataCompressionType(soap, &this->tt__MetadataCompressionType_::__item); -} - -void tt__MetadataCompressionType_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__MetadataCompressionType_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataCompressionType_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataCompressionType_(struct soap *soap, const char *tag, int id, const tt__MetadataCompressionType_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__MetadataCompressionType(soap, tag, id, &a->tt__MetadataCompressionType_::__item, ""); -} - -void *tt__MetadataCompressionType_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataCompressionType_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataCompressionType_ * SOAP_FMAC4 soap_in_tt__MetadataCompressionType_(struct soap *soap, const char *tag, tt__MetadataCompressionType_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__MetadataCompressionType_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataCompressionType_, sizeof(tt__MetadataCompressionType_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataCompressionType_) - return (tt__MetadataCompressionType_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__MetadataCompressionType(soap, tag, &a->tt__MetadataCompressionType_::__item, "tt:MetadataCompressionType")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__MetadataCompressionType_ * SOAP_FMAC2 soap_instantiate_tt__MetadataCompressionType_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataCompressionType_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataCompressionType_ *p; - size_t k = sizeof(tt__MetadataCompressionType_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataCompressionType_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataCompressionType_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataCompressionType_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataCompressionType_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataCompressionType_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataCompressionType_(soap, tag ? tag : "tt:MetadataCompressionType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataCompressionType_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataCompressionType_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataCompressionType_ * SOAP_FMAC4 soap_get_tt__MetadataCompressionType_(struct soap *soap, tt__MetadataCompressionType_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataCompressionType_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioEncodingMimeNames_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AudioEncodingMimeNames(soap, &this->tt__AudioEncodingMimeNames_::__item); -} - -void tt__AudioEncodingMimeNames_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__AudioEncodingMimeNames_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioEncodingMimeNames_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncodingMimeNames_(struct soap *soap, const char *tag, int id, const tt__AudioEncodingMimeNames_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__AudioEncodingMimeNames(soap, tag, id, &a->tt__AudioEncodingMimeNames_::__item, ""); -} - -void *tt__AudioEncodingMimeNames_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioEncodingMimeNames_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioEncodingMimeNames_ * SOAP_FMAC4 soap_in_tt__AudioEncodingMimeNames_(struct soap *soap, const char *tag, tt__AudioEncodingMimeNames_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__AudioEncodingMimeNames_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncodingMimeNames_, sizeof(tt__AudioEncodingMimeNames_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioEncodingMimeNames_) - return (tt__AudioEncodingMimeNames_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__AudioEncodingMimeNames(soap, tag, &a->tt__AudioEncodingMimeNames_::__item, "tt:AudioEncodingMimeNames")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__AudioEncodingMimeNames_ * SOAP_FMAC2 soap_instantiate_tt__AudioEncodingMimeNames_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioEncodingMimeNames_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioEncodingMimeNames_ *p; - size_t k = sizeof(tt__AudioEncodingMimeNames_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioEncodingMimeNames_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioEncodingMimeNames_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioEncodingMimeNames_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioEncodingMimeNames_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioEncodingMimeNames_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioEncodingMimeNames_(soap, tag ? tag : "tt:AudioEncodingMimeNames", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioEncodingMimeNames_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioEncodingMimeNames_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioEncodingMimeNames_ * SOAP_FMAC4 soap_get_tt__AudioEncodingMimeNames_(struct soap *soap, tt__AudioEncodingMimeNames_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncodingMimeNames_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioEncoding_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AudioEncoding(soap, &this->tt__AudioEncoding_::__item); -} - -void tt__AudioEncoding_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__AudioEncoding_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioEncoding_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoding_(struct soap *soap, const char *tag, int id, const tt__AudioEncoding_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__AudioEncoding(soap, tag, id, &a->tt__AudioEncoding_::__item, ""); -} - -void *tt__AudioEncoding_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioEncoding_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioEncoding_ * SOAP_FMAC4 soap_in_tt__AudioEncoding_(struct soap *soap, const char *tag, tt__AudioEncoding_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__AudioEncoding_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncoding_, sizeof(tt__AudioEncoding_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioEncoding_) - return (tt__AudioEncoding_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__AudioEncoding(soap, tag, &a->tt__AudioEncoding_::__item, "tt:AudioEncoding")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__AudioEncoding_ * SOAP_FMAC2 soap_instantiate_tt__AudioEncoding_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioEncoding_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioEncoding_ *p; - size_t k = sizeof(tt__AudioEncoding_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioEncoding_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioEncoding_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioEncoding_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioEncoding_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioEncoding_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioEncoding_(soap, tag ? tag : "tt:AudioEncoding", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioEncoding_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioEncoding_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioEncoding_ * SOAP_FMAC4 soap_get_tt__AudioEncoding_(struct soap *soap, tt__AudioEncoding_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncoding_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncodingProfiles_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__VideoEncodingProfiles(soap, &this->tt__VideoEncodingProfiles_::__item); -} - -void tt__VideoEncodingProfiles_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__VideoEncodingProfiles_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncodingProfiles_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingProfiles_(struct soap *soap, const char *tag, int id, const tt__VideoEncodingProfiles_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__VideoEncodingProfiles(soap, tag, id, &a->tt__VideoEncodingProfiles_::__item, ""); -} - -void *tt__VideoEncodingProfiles_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncodingProfiles_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncodingProfiles_ * SOAP_FMAC4 soap_in_tt__VideoEncodingProfiles_(struct soap *soap, const char *tag, tt__VideoEncodingProfiles_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__VideoEncodingProfiles_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncodingProfiles_, sizeof(tt__VideoEncodingProfiles_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncodingProfiles_) - return (tt__VideoEncodingProfiles_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__VideoEncodingProfiles(soap, tag, &a->tt__VideoEncodingProfiles_::__item, "tt:VideoEncodingProfiles")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__VideoEncodingProfiles_ * SOAP_FMAC2 soap_instantiate_tt__VideoEncodingProfiles_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncodingProfiles_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncodingProfiles_ *p; - size_t k = sizeof(tt__VideoEncodingProfiles_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncodingProfiles_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncodingProfiles_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncodingProfiles_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncodingProfiles_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncodingProfiles_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncodingProfiles_(soap, tag ? tag : "tt:VideoEncodingProfiles", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncodingProfiles_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncodingProfiles_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncodingProfiles_ * SOAP_FMAC4 soap_get_tt__VideoEncodingProfiles_(struct soap *soap, tt__VideoEncodingProfiles_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncodingProfiles_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncodingMimeNames_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__VideoEncodingMimeNames(soap, &this->tt__VideoEncodingMimeNames_::__item); -} - -void tt__VideoEncodingMimeNames_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__VideoEncodingMimeNames_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncodingMimeNames_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingMimeNames_(struct soap *soap, const char *tag, int id, const tt__VideoEncodingMimeNames_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__VideoEncodingMimeNames(soap, tag, id, &a->tt__VideoEncodingMimeNames_::__item, ""); -} - -void *tt__VideoEncodingMimeNames_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncodingMimeNames_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncodingMimeNames_ * SOAP_FMAC4 soap_in_tt__VideoEncodingMimeNames_(struct soap *soap, const char *tag, tt__VideoEncodingMimeNames_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__VideoEncodingMimeNames_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncodingMimeNames_, sizeof(tt__VideoEncodingMimeNames_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncodingMimeNames_) - return (tt__VideoEncodingMimeNames_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__VideoEncodingMimeNames(soap, tag, &a->tt__VideoEncodingMimeNames_::__item, "tt:VideoEncodingMimeNames")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__VideoEncodingMimeNames_ * SOAP_FMAC2 soap_instantiate_tt__VideoEncodingMimeNames_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncodingMimeNames_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncodingMimeNames_ *p; - size_t k = sizeof(tt__VideoEncodingMimeNames_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncodingMimeNames_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncodingMimeNames_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncodingMimeNames_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncodingMimeNames_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncodingMimeNames_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncodingMimeNames_(soap, tag ? tag : "tt:VideoEncodingMimeNames", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncodingMimeNames_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncodingMimeNames_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncodingMimeNames_ * SOAP_FMAC4 soap_get_tt__VideoEncodingMimeNames_(struct soap *soap, tt__VideoEncodingMimeNames_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncodingMimeNames_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__H264Profile_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__H264Profile(soap, &this->tt__H264Profile_::__item); -} - -void tt__H264Profile_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__H264Profile_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__H264Profile_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Profile_(struct soap *soap, const char *tag, int id, const tt__H264Profile_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__H264Profile(soap, tag, id, &a->tt__H264Profile_::__item, ""); -} - -void *tt__H264Profile_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__H264Profile_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__H264Profile_ * SOAP_FMAC4 soap_in_tt__H264Profile_(struct soap *soap, const char *tag, tt__H264Profile_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__H264Profile_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__H264Profile_, sizeof(tt__H264Profile_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__H264Profile_) - return (tt__H264Profile_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__H264Profile(soap, tag, &a->tt__H264Profile_::__item, "tt:H264Profile")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__H264Profile_ * SOAP_FMAC2 soap_instantiate_tt__H264Profile_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__H264Profile_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__H264Profile_ *p; - size_t k = sizeof(tt__H264Profile_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__H264Profile_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__H264Profile_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__H264Profile_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__H264Profile_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__H264Profile_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__H264Profile_(soap, tag ? tag : "tt:H264Profile", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__H264Profile_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__H264Profile_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__H264Profile_ * SOAP_FMAC4 soap_get_tt__H264Profile_(struct soap *soap, tt__H264Profile_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__H264Profile_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Mpeg4Profile_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Mpeg4Profile(soap, &this->tt__Mpeg4Profile_::__item); -} - -void tt__Mpeg4Profile_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Mpeg4Profile_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Mpeg4Profile_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Profile_(struct soap *soap, const char *tag, int id, const tt__Mpeg4Profile_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Mpeg4Profile(soap, tag, id, &a->tt__Mpeg4Profile_::__item, ""); -} - -void *tt__Mpeg4Profile_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Mpeg4Profile_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Mpeg4Profile_ * SOAP_FMAC4 soap_in_tt__Mpeg4Profile_(struct soap *soap, const char *tag, tt__Mpeg4Profile_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Mpeg4Profile_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Mpeg4Profile_, sizeof(tt__Mpeg4Profile_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Mpeg4Profile_) - return (tt__Mpeg4Profile_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Mpeg4Profile(soap, tag, &a->tt__Mpeg4Profile_::__item, "tt:Mpeg4Profile")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Mpeg4Profile_ * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Profile_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Mpeg4Profile_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Mpeg4Profile_ *p; - size_t k = sizeof(tt__Mpeg4Profile_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Mpeg4Profile_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Mpeg4Profile_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Mpeg4Profile_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Mpeg4Profile_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Mpeg4Profile_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Mpeg4Profile_(soap, tag ? tag : "tt:Mpeg4Profile", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Mpeg4Profile_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Mpeg4Profile_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Mpeg4Profile_ * SOAP_FMAC4 soap_get_tt__Mpeg4Profile_(struct soap *soap, tt__Mpeg4Profile_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Mpeg4Profile_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncoding_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__VideoEncoding(soap, &this->tt__VideoEncoding_::__item); -} - -void tt__VideoEncoding_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__VideoEncoding_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncoding_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoding_(struct soap *soap, const char *tag, int id, const tt__VideoEncoding_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__VideoEncoding(soap, tag, id, &a->tt__VideoEncoding_::__item, ""); -} - -void *tt__VideoEncoding_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncoding_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncoding_ * SOAP_FMAC4 soap_in_tt__VideoEncoding_(struct soap *soap, const char *tag, tt__VideoEncoding_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__VideoEncoding_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoding_, sizeof(tt__VideoEncoding_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncoding_) - return (tt__VideoEncoding_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__VideoEncoding(soap, tag, &a->tt__VideoEncoding_::__item, "tt:VideoEncoding")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__VideoEncoding_ * SOAP_FMAC2 soap_instantiate_tt__VideoEncoding_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncoding_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncoding_ *p; - size_t k = sizeof(tt__VideoEncoding_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncoding_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncoding_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncoding_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncoding_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncoding_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncoding_(soap, tag ? tag : "tt:VideoEncoding", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncoding_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncoding_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncoding_ * SOAP_FMAC4 soap_get_tt__VideoEncoding_(struct soap *soap, tt__VideoEncoding_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoding_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ViewModes_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ViewModes(soap, &this->tt__ViewModes_::__item); -} - -void tt__ViewModes_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ViewModes_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ViewModes_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ViewModes_(struct soap *soap, const char *tag, int id, const tt__ViewModes_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ViewModes(soap, tag, id, &a->tt__ViewModes_::__item, ""); -} - -void *tt__ViewModes_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ViewModes_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ViewModes_ * SOAP_FMAC4 soap_in_tt__ViewModes_(struct soap *soap, const char *tag, tt__ViewModes_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ViewModes_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ViewModes_, sizeof(tt__ViewModes_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ViewModes_) - return (tt__ViewModes_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ViewModes(soap, tag, &a->tt__ViewModes_::__item, "tt:ViewModes")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ViewModes_ * SOAP_FMAC2 soap_instantiate_tt__ViewModes_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ViewModes_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ViewModes_ *p; - size_t k = sizeof(tt__ViewModes_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ViewModes_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ViewModes_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ViewModes_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ViewModes_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ViewModes_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ViewModes_(soap, tag ? tag : "tt:ViewModes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ViewModes_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ViewModes_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ViewModes_ * SOAP_FMAC4 soap_get_tt__ViewModes_(struct soap *soap, tt__ViewModes_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ViewModes_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SceneOrientationOption_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SceneOrientationOption(soap, &this->tt__SceneOrientationOption_::__item); -} - -void tt__SceneOrientationOption_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__SceneOrientationOption_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SceneOrientationOption_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationOption_(struct soap *soap, const char *tag, int id, const tt__SceneOrientationOption_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__SceneOrientationOption(soap, tag, id, &a->tt__SceneOrientationOption_::__item, ""); -} - -void *tt__SceneOrientationOption_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SceneOrientationOption_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SceneOrientationOption_ * SOAP_FMAC4 soap_in_tt__SceneOrientationOption_(struct soap *soap, const char *tag, tt__SceneOrientationOption_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__SceneOrientationOption_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SceneOrientationOption_, sizeof(tt__SceneOrientationOption_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SceneOrientationOption_) - return (tt__SceneOrientationOption_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__SceneOrientationOption(soap, tag, &a->tt__SceneOrientationOption_::__item, "tt:SceneOrientationOption")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__SceneOrientationOption_ * SOAP_FMAC2 soap_instantiate_tt__SceneOrientationOption_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SceneOrientationOption_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SceneOrientationOption_ *p; - size_t k = sizeof(tt__SceneOrientationOption_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SceneOrientationOption_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SceneOrientationOption_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SceneOrientationOption_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SceneOrientationOption_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SceneOrientationOption_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SceneOrientationOption_(soap, tag ? tag : "tt:SceneOrientationOption", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SceneOrientationOption_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SceneOrientationOption_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SceneOrientationOption_ * SOAP_FMAC4 soap_get_tt__SceneOrientationOption_(struct soap *soap, tt__SceneOrientationOption_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SceneOrientationOption_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SceneOrientationMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SceneOrientationMode(soap, &this->tt__SceneOrientationMode_::__item); -} - -void tt__SceneOrientationMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__SceneOrientationMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SceneOrientationMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationMode_(struct soap *soap, const char *tag, int id, const tt__SceneOrientationMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__SceneOrientationMode(soap, tag, id, &a->tt__SceneOrientationMode_::__item, ""); -} - -void *tt__SceneOrientationMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SceneOrientationMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SceneOrientationMode_ * SOAP_FMAC4 soap_in_tt__SceneOrientationMode_(struct soap *soap, const char *tag, tt__SceneOrientationMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__SceneOrientationMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SceneOrientationMode_, sizeof(tt__SceneOrientationMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SceneOrientationMode_) - return (tt__SceneOrientationMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__SceneOrientationMode(soap, tag, &a->tt__SceneOrientationMode_::__item, "tt:SceneOrientationMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__SceneOrientationMode_ * SOAP_FMAC2 soap_instantiate_tt__SceneOrientationMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SceneOrientationMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SceneOrientationMode_ *p; - size_t k = sizeof(tt__SceneOrientationMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SceneOrientationMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SceneOrientationMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SceneOrientationMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SceneOrientationMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SceneOrientationMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SceneOrientationMode_(soap, tag ? tag : "tt:SceneOrientationMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SceneOrientationMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SceneOrientationMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SceneOrientationMode_ * SOAP_FMAC4 soap_get_tt__SceneOrientationMode_(struct soap *soap, tt__SceneOrientationMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SceneOrientationMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RotateMode_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RotateMode(soap, &this->tt__RotateMode_::__item); -} - -void tt__RotateMode_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__RotateMode_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RotateMode_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateMode_(struct soap *soap, const char *tag, int id, const tt__RotateMode_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__RotateMode(soap, tag, id, &a->tt__RotateMode_::__item, ""); -} - -void *tt__RotateMode_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RotateMode_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RotateMode_ * SOAP_FMAC4 soap_in_tt__RotateMode_(struct soap *soap, const char *tag, tt__RotateMode_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__RotateMode_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RotateMode_, sizeof(tt__RotateMode_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RotateMode_) - return (tt__RotateMode_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__RotateMode(soap, tag, &a->tt__RotateMode_::__item, "tt:RotateMode")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__RotateMode_ * SOAP_FMAC2 soap_instantiate_tt__RotateMode_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RotateMode_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RotateMode_ *p; - size_t k = sizeof(tt__RotateMode_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RotateMode_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RotateMode_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RotateMode_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RotateMode_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RotateMode_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RotateMode_(soap, tag ? tag : "tt:RotateMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RotateMode_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RotateMode_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RotateMode_ * SOAP_FMAC4 soap_get_tt__RotateMode_(struct soap *soap, tt__RotateMode_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RotateMode_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Name__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Name(soap, &this->tt__Name__::__item); -} - -void tt__Name__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Name__::__item, SOAP_TYPE_tt__Name); - soap_serialize_tt__Name(soap, &this->tt__Name__::__item); -#endif -} - -int tt__Name__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Name__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Name__(struct soap *soap, const char *tag, int id, const tt__Name__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Name(soap, tag, id, &a->tt__Name__::__item, ""); -} - -void *tt__Name__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Name__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Name__ * SOAP_FMAC4 soap_in_tt__Name__(struct soap *soap, const char *tag, tt__Name__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Name__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Name__, sizeof(tt__Name__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Name__) - return (tt__Name__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Name(soap, tag, &a->tt__Name__::__item, "tt:Name")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Name__ * SOAP_FMAC2 soap_instantiate_tt__Name__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Name__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Name__ *p; - size_t k = sizeof(tt__Name__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Name__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Name__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Name__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Name__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Name__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Name__(soap, tag ? tag : "tt:Name", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Name__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Name__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Name__ * SOAP_FMAC4 soap_get_tt__Name__(struct soap *soap, tt__Name__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Name__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Name(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Name(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__Name), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__Name(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__Name, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, 64, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__Name, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__Name, SOAP_TYPE_tt__Name, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Name(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__Name(soap, tag ? tag : "tt:Name", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__Name(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Name(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Entity_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Entity(soap, &this->tt__Entity_::__item); -} - -void tt__Entity_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Entity_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Entity_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Entity_(struct soap *soap, const char *tag, int id, const tt__Entity_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__Entity(soap, tag, id, &a->tt__Entity_::__item, ""); -} - -void *tt__Entity_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Entity_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Entity_ * SOAP_FMAC4 soap_in_tt__Entity_(struct soap *soap, const char *tag, tt__Entity_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__Entity_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Entity_, sizeof(tt__Entity_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Entity_) - return (tt__Entity_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__Entity(soap, tag, &a->tt__Entity_::__item, "tt:Entity")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__Entity_ * SOAP_FMAC2 soap_instantiate_tt__Entity_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Entity_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Entity_ *p; - size_t k = sizeof(tt__Entity_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Entity_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Entity_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Entity_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Entity_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Entity_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Entity_(soap, tag ? tag : "tt:Entity", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Entity_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Entity_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Entity_ * SOAP_FMAC4 soap_get_tt__Entity_(struct soap *soap, tt__Entity_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Entity_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MoveStatus_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__MoveStatus(soap, &this->tt__MoveStatus_::__item); -} - -void tt__MoveStatus_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__MoveStatus_::__item, SOAP_TYPE_tt__MoveStatus); -#endif -} - -int tt__MoveStatus_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MoveStatus_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveStatus_(struct soap *soap, const char *tag, int id, const tt__MoveStatus_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__MoveStatus(soap, tag, id, &a->tt__MoveStatus_::__item, ""); -} - -void *tt__MoveStatus_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MoveStatus_(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MoveStatus_ * SOAP_FMAC4 soap_in_tt__MoveStatus_(struct soap *soap, const char *tag, tt__MoveStatus_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__MoveStatus_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MoveStatus_, sizeof(tt__MoveStatus_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MoveStatus_) - return (tt__MoveStatus_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__MoveStatus(soap, tag, &a->tt__MoveStatus_::__item, "tt:MoveStatus")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__MoveStatus_ * SOAP_FMAC2 soap_instantiate_tt__MoveStatus_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MoveStatus_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MoveStatus_ *p; - size_t k = sizeof(tt__MoveStatus_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MoveStatus_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MoveStatus_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MoveStatus_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MoveStatus_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MoveStatus_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MoveStatus_(soap, tag ? tag : "tt:MoveStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MoveStatus_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MoveStatus_(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MoveStatus_ * SOAP_FMAC4 soap_get_tt__MoveStatus_(struct soap *soap, tt__MoveStatus_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MoveStatus_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReferenceToken__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__ReferenceToken__::__item); -} - -void tt__ReferenceToken__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ReferenceToken__::__item, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__ReferenceToken__::__item); -#endif -} - -int tt__ReferenceToken__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReferenceToken__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReferenceToken__(struct soap *soap, const char *tag, int id, const tt__ReferenceToken__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ReferenceToken(soap, tag, id, &a->tt__ReferenceToken__::__item, ""); -} - -void *tt__ReferenceToken__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReferenceToken__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReferenceToken__ * SOAP_FMAC4 soap_in_tt__ReferenceToken__(struct soap *soap, const char *tag, tt__ReferenceToken__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__ReferenceToken__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReferenceToken__, sizeof(tt__ReferenceToken__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReferenceToken__) - return (tt__ReferenceToken__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_tt__ReferenceToken(soap, tag, &a->tt__ReferenceToken__::__item, "tt:ReferenceToken")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__ReferenceToken__ * SOAP_FMAC2 soap_instantiate_tt__ReferenceToken__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReferenceToken__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReferenceToken__ *p; - size_t k = sizeof(tt__ReferenceToken__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReferenceToken__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReferenceToken__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReferenceToken__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReferenceToken__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReferenceToken__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReferenceToken__(soap, tag ? tag : "tt:ReferenceToken", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReferenceToken__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReferenceToken__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReferenceToken__ * SOAP_FMAC4 soap_get_tt__ReferenceToken__(struct soap *soap, tt__ReferenceToken__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReferenceToken__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__ReferenceToken(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReferenceToken(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__ReferenceToken), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__ReferenceToken(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__ReferenceToken, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, 64, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__ReferenceToken, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__ReferenceToken, SOAP_TYPE_tt__ReferenceToken, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReferenceToken(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__ReferenceToken(soap, tag ? tag : "tt:ReferenceToken", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__ReferenceToken(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReferenceToken(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_trc__EncodingTypes(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__EncodingTypes(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_trc__EncodingTypes), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_trc__EncodingTypes(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_trc__EncodingTypes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_trc__EncodingTypes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_trc__EncodingTypes, SOAP_TYPE_trc__EncodingTypes, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_trc__EncodingTypes(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_trc__EncodingTypes(soap, tag ? tag : "trc:EncodingTypes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_trc__EncodingTypes(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_trc__EncodingTypes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_trt__EncodingTypes(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__EncodingTypes(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_trt__EncodingTypes), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_trt__EncodingTypes(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_trt__EncodingTypes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_trt__EncodingTypes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_trt__EncodingTypes, SOAP_TYPE_trt__EncodingTypes, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_trt__EncodingTypes(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_trt__EncodingTypes(soap, tag ? tag : "trt:EncodingTypes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_trt__EncodingTypes(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_trt__EncodingTypes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tds__EAPMethodTypes(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__EAPMethodTypes(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tds__EAPMethodTypes), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tds__EAPMethodTypes(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tds__EAPMethodTypes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tds__EAPMethodTypes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tds__EAPMethodTypes, SOAP_TYPE_tds__EAPMethodTypes, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tds__EAPMethodTypes(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tds__EAPMethodTypes(soap, tag ? tag : "tds:EAPMethodTypes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tds__EAPMethodTypes(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__EAPMethodTypes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tmd__DelayTimes(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__DelayTimes(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tmd__DelayTimes), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tmd__DelayTimes(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tmd__DelayTimes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tmd__DelayTimes, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tmd__DelayTimes, SOAP_TYPE_tmd__DelayTimes, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tmd__DelayTimes(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tmd__DelayTimes(soap, tag ? tag : "tmd:DelayTimes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tmd__DelayTimes(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__DelayTimes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__ReferenceTokenList(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReferenceTokenList(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__ReferenceTokenList), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__ReferenceTokenList(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__ReferenceTokenList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__ReferenceTokenList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__ReferenceTokenList, SOAP_TYPE_tt__ReferenceTokenList, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReferenceTokenList(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__ReferenceTokenList(soap, tag ? tag : "tt:ReferenceTokenList", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__ReferenceTokenList(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReferenceTokenList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__StringList(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StringList(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__StringList), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__StringList(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__StringList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__StringList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__StringList, SOAP_TYPE_tt__StringList, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__StringList(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__StringList(soap, tag ? tag : "tt:StringList", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__StringList(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__StringList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__StringAttrList(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StringAttrList(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__StringAttrList), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__StringAttrList(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__StringAttrList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__StringAttrList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__StringAttrList, SOAP_TYPE_tt__StringAttrList, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__StringAttrList(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__StringAttrList(soap, tag ? tag : "tt:StringAttrList", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__StringAttrList(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__StringAttrList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__FloatAttrList(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatAttrList(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__FloatAttrList), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__FloatAttrList(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__FloatAttrList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__FloatAttrList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__FloatAttrList, SOAP_TYPE_tt__FloatAttrList, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__FloatAttrList(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__FloatAttrList(soap, tag ? tag : "tt:FloatAttrList", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__FloatAttrList(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FloatAttrList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__IntAttrList(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntAttrList(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_tt__IntAttrList), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__IntAttrList(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__IntAttrList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_tt__IntAttrList, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_tt__IntAttrList, SOAP_TYPE_tt__IntAttrList, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IntAttrList(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_tt__IntAttrList(soap, tag ? tag : "tt:IntAttrList", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__IntAttrList(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IntAttrList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType, SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_wsnt__AbsoluteOrRelativeTimeType(soap, tag ? tag : "wsnt:AbsoluteOrRelativeTimeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__AbsoluteOrRelativeTimeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__TopicSetType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wstop__ExtensibleDocumented::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__TopicSetType::__any); -} - -void wstop__TopicSetType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__TopicSetType::__any); - this->wstop__ExtensibleDocumented::soap_serialize(soap); -#endif -} - -int wstop__TopicSetType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__TopicSetType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__TopicSetType(struct soap *soap, const char *tag, int id, const wstop__TopicSetType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wstop__TopicSetType), type ? type : "wstop:TopicSetType")) - return soap->error; - if (soap_out_PointerTowstop__Documentation(soap, "wstop:documentation", -1, &a->wstop__ExtensibleDocumented::documentation, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wstop__TopicSetType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wstop__TopicSetType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__TopicSetType(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__TopicSetType * SOAP_FMAC4 soap_in_wstop__TopicSetType(struct soap *soap, const char *tag, wstop__TopicSetType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wstop__TopicSetType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__TopicSetType, sizeof(wstop__TopicSetType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__TopicSetType) - { soap_revert(soap); - *soap->id = '\0'; - return (wstop__TopicSetType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_documentation2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_documentation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__Documentation(soap, "wstop:documentation", &a->wstop__ExtensibleDocumented::documentation, "wstop:Documentation")) - { soap_flag_documentation2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wstop__TopicSetType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wstop__TopicSetType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wstop__TopicSetType, SOAP_TYPE_wstop__TopicSetType, sizeof(wstop__TopicSetType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wstop__TopicSetType * SOAP_FMAC2 soap_instantiate_wstop__TopicSetType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__TopicSetType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__TopicSetType *p; - size_t k = sizeof(wstop__TopicSetType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__TopicSetType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__TopicSetType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__TopicSetType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__TopicSetType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__TopicSetType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__TopicSetType(soap, tag ? tag : "wstop:TopicSetType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__TopicSetType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__TopicSetType(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__TopicSetType * SOAP_FMAC4 soap_get_wstop__TopicSetType(struct soap *soap, wstop__TopicSetType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__TopicSetType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__TopicType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wstop__ExtensibleDocumented::soap_default(soap); - this->wstop__TopicType::MessagePattern = NULL; - soap_default_std__vectorTemplateOfPointerTowstop__TopicType(soap, &this->wstop__TopicType::Topic); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__TopicType::__any); - soap_default_xsd__NCName(soap, &this->wstop__TopicType::name); - this->wstop__TopicType::messageTypes = NULL; - this->wstop__TopicType::final_ = (bool)0; -} - -void wstop__TopicType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowstop__QueryExpressionType(soap, &this->wstop__TopicType::MessagePattern); - soap_serialize_std__vectorTemplateOfPointerTowstop__TopicType(soap, &this->wstop__TopicType::Topic); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__TopicType::__any); - this->wstop__ExtensibleDocumented::soap_serialize(soap); -#endif -} - -int wstop__TopicType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__TopicType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__TopicType(struct soap *soap, const char *tag, int id, const wstop__TopicType *a, const char *type) -{ - soap_set_attr(soap, "name", soap_xsd__NCName2s(soap, ((wstop__TopicType*)a)->name), 1); - if (((wstop__TopicType*)a)->messageTypes) - { soap_set_attr(soap, "messageTypes", soap_xsd__QName2s(soap, *((wstop__TopicType*)a)->messageTypes), 1); - } - if (((wstop__TopicType*)a)->final_ != (bool)0) - { soap_set_attr(soap, "final", soap_bool2s(soap, ((wstop__TopicType*)a)->final_), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wstop__TopicType), type ? type : "wstop:TopicType")) - return soap->error; - if (soap_out_PointerTowstop__Documentation(soap, "wstop:documentation", -1, &a->wstop__ExtensibleDocumented::documentation, "")) - return soap->error; - if (soap_out_PointerTowstop__QueryExpressionType(soap, "wstop:MessagePattern", -1, &a->wstop__TopicType::MessagePattern, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTowstop__TopicType(soap, "wstop:Topic", -1, &a->wstop__TopicType::Topic, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wstop__TopicType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wstop__TopicType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__TopicType(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__TopicType * SOAP_FMAC4 soap_in_wstop__TopicType(struct soap *soap, const char *tag, wstop__TopicType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wstop__TopicType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__TopicType, sizeof(wstop__TopicType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__TopicType) - { soap_revert(soap); - *soap->id = '\0'; - return (wstop__TopicType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__NCName(soap, soap_attr_value(soap, "name", 5, 1), &((wstop__TopicType*)a)->name)) - return NULL; - { - const char *t = soap_attr_value(soap, "messageTypes", 2, 0); - if (t) - { - if (!(((wstop__TopicType*)a)->messageTypes = soap_new_xsd__QName(soap))) - return NULL; - if (soap_s2xsd__QName(soap, t, ((wstop__TopicType*)a)->messageTypes)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap_s2bool(soap, soap_attr_value(soap, "final", 5, 0), &((wstop__TopicType*)a)->final_)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_documentation2 = 1; - size_t soap_flag_MessagePattern1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_documentation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__Documentation(soap, "wstop:documentation", &a->wstop__ExtensibleDocumented::documentation, "wstop:Documentation")) - { soap_flag_documentation2--; - continue; - } - } - if (soap_flag_MessagePattern1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__QueryExpressionType(soap, "wstop:MessagePattern", &a->wstop__TopicType::MessagePattern, "wstop:QueryExpressionType")) - { soap_flag_MessagePattern1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTowstop__TopicType(soap, "wstop:Topic", &a->wstop__TopicType::Topic, "wstop:TopicType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wstop__TopicType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wstop__TopicType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wstop__TopicType, SOAP_TYPE_wstop__TopicType, sizeof(wstop__TopicType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wstop__TopicType * SOAP_FMAC2 soap_instantiate_wstop__TopicType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__TopicType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__TopicType *p; - size_t k = sizeof(wstop__TopicType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__TopicType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__TopicType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__TopicType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__TopicType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__TopicType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__TopicType(soap, tag ? tag : "wstop:TopicType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__TopicType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__TopicType(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__TopicType * SOAP_FMAC4 soap_get_wstop__TopicType(struct soap *soap, wstop__TopicType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__TopicType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__TopicNamespaceType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wstop__ExtensibleDocumented::soap_default(soap); - soap_default_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(soap, &this->wstop__TopicNamespaceType::Topic); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__TopicNamespaceType::__any); - this->wstop__TopicNamespaceType::name = NULL; - soap_default_xsd__anyURI(soap, &this->wstop__TopicNamespaceType::targetNamespace); - this->wstop__TopicNamespaceType::final_ = (bool)0; -} - -void wstop__TopicNamespaceType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(soap, &this->wstop__TopicNamespaceType::Topic); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__TopicNamespaceType::__any); - this->wstop__ExtensibleDocumented::soap_serialize(soap); -#endif -} - -int wstop__TopicNamespaceType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__TopicNamespaceType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__TopicNamespaceType(struct soap *soap, const char *tag, int id, const wstop__TopicNamespaceType *a, const char *type) -{ - if (((wstop__TopicNamespaceType*)a)->name) - { soap_set_attr(soap, "name", soap_xsd__NCName2s(soap, *((wstop__TopicNamespaceType*)a)->name), 1); - } - soap_set_attr(soap, "targetNamespace", soap_xsd__anyURI2s(soap, ((wstop__TopicNamespaceType*)a)->targetNamespace), 1); - if (((wstop__TopicNamespaceType*)a)->final_ != (bool)0) - { soap_set_attr(soap, "final", soap_bool2s(soap, ((wstop__TopicNamespaceType*)a)->final_), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wstop__TopicNamespaceType), type ? type : "wstop:TopicNamespaceType")) - return soap->error; - if (soap_out_PointerTowstop__Documentation(soap, "wstop:documentation", -1, &a->wstop__ExtensibleDocumented::documentation, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(soap, "wstop:Topic", -1, &a->wstop__TopicNamespaceType::Topic, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wstop__TopicNamespaceType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wstop__TopicNamespaceType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__TopicNamespaceType(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__TopicNamespaceType * SOAP_FMAC4 soap_in_wstop__TopicNamespaceType(struct soap *soap, const char *tag, wstop__TopicNamespaceType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wstop__TopicNamespaceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__TopicNamespaceType, sizeof(wstop__TopicNamespaceType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__TopicNamespaceType) - { soap_revert(soap); - *soap->id = '\0'; - return (wstop__TopicNamespaceType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "name", 5, 0); - if (t) - { - if (!(((wstop__TopicNamespaceType*)a)->name = soap_new_xsd__NCName(soap))) - return NULL; - if (soap_s2xsd__NCName(soap, t, ((wstop__TopicNamespaceType*)a)->name)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap_s2xsd__anyURI(soap, soap_attr_value(soap, "targetNamespace", 4, 1), &((wstop__TopicNamespaceType*)a)->targetNamespace)) - return NULL; - if (soap_s2bool(soap, soap_attr_value(soap, "final", 5, 0), &((wstop__TopicNamespaceType*)a)->final_)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_documentation2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_documentation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__Documentation(soap, "wstop:documentation", &a->wstop__ExtensibleDocumented::documentation, "wstop:Documentation")) - { soap_flag_documentation2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(soap, "wstop:Topic", &a->wstop__TopicNamespaceType::Topic, "")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wstop__TopicNamespaceType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wstop__TopicNamespaceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wstop__TopicNamespaceType, SOAP_TYPE_wstop__TopicNamespaceType, sizeof(wstop__TopicNamespaceType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wstop__TopicNamespaceType * SOAP_FMAC2 soap_instantiate_wstop__TopicNamespaceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__TopicNamespaceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__TopicNamespaceType *p; - size_t k = sizeof(wstop__TopicNamespaceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__TopicNamespaceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__TopicNamespaceType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__TopicNamespaceType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__TopicNamespaceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__TopicNamespaceType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__TopicNamespaceType(soap, tag ? tag : "wstop:TopicNamespaceType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__TopicNamespaceType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__TopicNamespaceType(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__TopicNamespaceType * SOAP_FMAC4 soap_get_wstop__TopicNamespaceType(struct soap *soap, wstop__TopicNamespaceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__TopicNamespaceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__QueryExpressionType::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyType(soap, &this->wstop__QueryExpressionType::__any); - soap_default_xsd__anyURI(soap, &this->wstop__QueryExpressionType::Dialect); - soap_default_xsd__anyType(soap, &this->wstop__QueryExpressionType::__mixed); -} - -void wstop__QueryExpressionType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->wstop__QueryExpressionType::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->wstop__QueryExpressionType::__any); - soap_embedded(soap, &this->wstop__QueryExpressionType::__mixed, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->wstop__QueryExpressionType::__mixed); -#endif -} - -int wstop__QueryExpressionType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__QueryExpressionType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__QueryExpressionType(struct soap *soap, const char *tag, int id, const wstop__QueryExpressionType *a, const char *type) -{ - soap_set_attr(soap, "Dialect", soap_xsd__anyURI2s(soap, ((wstop__QueryExpressionType*)a)->Dialect), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wstop__QueryExpressionType), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->wstop__QueryExpressionType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, "-mixed", -1, &a->wstop__QueryExpressionType::__mixed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wstop__QueryExpressionType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__QueryExpressionType(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__QueryExpressionType * SOAP_FMAC4 soap_in_wstop__QueryExpressionType(struct soap *soap, const char *tag, wstop__QueryExpressionType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wstop__QueryExpressionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__QueryExpressionType, sizeof(wstop__QueryExpressionType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__QueryExpressionType) - { soap_revert(soap); - *soap->id = '\0'; - return (wstop__QueryExpressionType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__anyURI(soap, soap_attr_value(soap, "Dialect", 4, 1), &((wstop__QueryExpressionType*)a)->Dialect)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag___any1 = 1; - size_t soap_flag___mixed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->wstop__QueryExpressionType::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap_flag___mixed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-mixed", &a->wstop__QueryExpressionType::__mixed, "xsd:anyType")) - { soap_flag___mixed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wstop__QueryExpressionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wstop__QueryExpressionType, SOAP_TYPE_wstop__QueryExpressionType, sizeof(wstop__QueryExpressionType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wstop__QueryExpressionType * SOAP_FMAC2 soap_instantiate_wstop__QueryExpressionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__QueryExpressionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__QueryExpressionType *p; - size_t k = sizeof(wstop__QueryExpressionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__QueryExpressionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__QueryExpressionType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__QueryExpressionType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__QueryExpressionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__QueryExpressionType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__QueryExpressionType(soap, tag ? tag : "wstop:QueryExpressionType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__QueryExpressionType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__QueryExpressionType(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__QueryExpressionType * SOAP_FMAC4 soap_get_wstop__QueryExpressionType(struct soap *soap, wstop__QueryExpressionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__QueryExpressionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__ExtensibleDocumented::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wstop__ExtensibleDocumented::documentation = NULL; - soap_default_xsd__anyAttribute(soap, &this->wstop__ExtensibleDocumented::__anyAttribute); -} - -void wstop__ExtensibleDocumented::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowstop__Documentation(soap, &this->wstop__ExtensibleDocumented::documentation); -#endif -} - -int wstop__ExtensibleDocumented::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__ExtensibleDocumented(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__ExtensibleDocumented(struct soap *soap, const char *tag, int id, const wstop__ExtensibleDocumented *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wstop__ExtensibleDocumented), type)) - return soap->error; - if (soap_out_PointerTowstop__Documentation(soap, "wstop:documentation", -1, &a->wstop__ExtensibleDocumented::documentation, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wstop__ExtensibleDocumented::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__ExtensibleDocumented(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__ExtensibleDocumented * SOAP_FMAC4 soap_in_wstop__ExtensibleDocumented(struct soap *soap, const char *tag, wstop__ExtensibleDocumented *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wstop__ExtensibleDocumented*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__ExtensibleDocumented, sizeof(wstop__ExtensibleDocumented), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__ExtensibleDocumented) - { soap_revert(soap); - *soap->id = '\0'; - return (wstop__ExtensibleDocumented *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wstop__ExtensibleDocumented*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_documentation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_documentation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__Documentation(soap, "wstop:documentation", &a->wstop__ExtensibleDocumented::documentation, "wstop:Documentation")) - { soap_flag_documentation1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wstop__ExtensibleDocumented *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wstop__ExtensibleDocumented, SOAP_TYPE_wstop__ExtensibleDocumented, sizeof(wstop__ExtensibleDocumented), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wstop__ExtensibleDocumented * SOAP_FMAC2 soap_instantiate_wstop__ExtensibleDocumented(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__ExtensibleDocumented(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "wstop:TopicNamespaceType")) - return soap_instantiate_wstop__TopicNamespaceType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wstop:TopicType")) - return soap_instantiate_wstop__TopicType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wstop:TopicSetType")) - return soap_instantiate_wstop__TopicSetType(soap, n, NULL, NULL, size); - wstop__ExtensibleDocumented *p; - size_t k = sizeof(wstop__ExtensibleDocumented); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__ExtensibleDocumented, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__ExtensibleDocumented); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__ExtensibleDocumented, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__ExtensibleDocumented location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__ExtensibleDocumented::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__ExtensibleDocumented(soap, tag ? tag : "wstop:ExtensibleDocumented", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__ExtensibleDocumented::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__ExtensibleDocumented(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__ExtensibleDocumented * SOAP_FMAC4 soap_get_wstop__ExtensibleDocumented(struct soap *soap, wstop__ExtensibleDocumented *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__ExtensibleDocumented(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wstop__Documentation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__Documentation::__any); - soap_default_xsd__anyType(soap, &this->wstop__Documentation::__mixed); -} - -void wstop__Documentation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->wstop__Documentation::__any); - soap_embedded(soap, &this->wstop__Documentation::__mixed, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->wstop__Documentation::__mixed); -#endif -} - -int wstop__Documentation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wstop__Documentation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__Documentation(struct soap *soap, const char *tag, int id, const wstop__Documentation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wstop__Documentation), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wstop__Documentation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, "-mixed", -1, &a->wstop__Documentation::__mixed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wstop__Documentation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wstop__Documentation(soap, tag, this, type); -} - -SOAP_FMAC3 wstop__Documentation * SOAP_FMAC4 soap_in_wstop__Documentation(struct soap *soap, const char *tag, wstop__Documentation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wstop__Documentation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wstop__Documentation, sizeof(wstop__Documentation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wstop__Documentation) - { soap_revert(soap); - *soap->id = '\0'; - return (wstop__Documentation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag___mixed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wstop__Documentation::__any, "xsd:anyType")) - continue; - } - if (soap_flag___mixed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-mixed", &a->wstop__Documentation::__mixed, "xsd:anyType")) - { soap_flag___mixed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wstop__Documentation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wstop__Documentation, SOAP_TYPE_wstop__Documentation, sizeof(wstop__Documentation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wstop__Documentation * SOAP_FMAC2 soap_instantiate_wstop__Documentation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wstop__Documentation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wstop__Documentation *p; - size_t k = sizeof(wstop__Documentation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wstop__Documentation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wstop__Documentation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wstop__Documentation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wstop__Documentation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wstop__Documentation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wstop__Documentation(soap, tag ? tag : "wstop:Documentation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wstop__Documentation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wstop__Documentation(soap, this, tag, type); -} - -SOAP_FMAC3 wstop__Documentation * SOAP_FMAC4 soap_get_wstop__Documentation(struct soap *soap, wstop__Documentation *p, const char *tag, const char *type) -{ - if ((p = soap_in_wstop__Documentation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__EndSearchResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->_tse__EndSearchResponse::Endpoint); -} - -void _tse__EndSearchResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tse__EndSearchResponse::Endpoint, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tse__EndSearchResponse::Endpoint); -#endif -} - -int _tse__EndSearchResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__EndSearchResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__EndSearchResponse(struct soap *soap, const char *tag, int id, const _tse__EndSearchResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__EndSearchResponse), type)) - return soap->error; - soap_element_result(soap, "tse:Endpoint"); - if (soap_out_xsd__dateTime(soap, "tse:Endpoint", -1, &a->_tse__EndSearchResponse::Endpoint, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__EndSearchResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__EndSearchResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__EndSearchResponse * SOAP_FMAC4 soap_in__tse__EndSearchResponse(struct soap *soap, const char *tag, _tse__EndSearchResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__EndSearchResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__EndSearchResponse, sizeof(_tse__EndSearchResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__EndSearchResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__EndSearchResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Endpoint1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Endpoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tse:Endpoint", &a->_tse__EndSearchResponse::Endpoint, "xsd:dateTime")) - { soap_flag_Endpoint1--; - continue; - } - } - soap_check_result(soap, "tse:Endpoint"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Endpoint1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__EndSearchResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__EndSearchResponse, SOAP_TYPE__tse__EndSearchResponse, sizeof(_tse__EndSearchResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__EndSearchResponse * SOAP_FMAC2 soap_instantiate__tse__EndSearchResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__EndSearchResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__EndSearchResponse *p; - size_t k = sizeof(_tse__EndSearchResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__EndSearchResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__EndSearchResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__EndSearchResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__EndSearchResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__EndSearchResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__EndSearchResponse(soap, tag ? tag : "tse:EndSearchResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__EndSearchResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__EndSearchResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__EndSearchResponse * SOAP_FMAC4 soap_get__tse__EndSearchResponse(struct soap *soap, _tse__EndSearchResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__EndSearchResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__EndSearch::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__EndSearch::SearchToken); -} - -void _tse__EndSearch::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__EndSearch::SearchToken); -#endif -} - -int _tse__EndSearch::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__EndSearch(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__EndSearch(struct soap *soap, const char *tag, int id, const _tse__EndSearch *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__EndSearch), type)) - return soap->error; - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__EndSearch::SearchToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__EndSearch::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__EndSearch(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__EndSearch * SOAP_FMAC4 soap_in__tse__EndSearch(struct soap *soap, const char *tag, _tse__EndSearch *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__EndSearch*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__EndSearch, sizeof(_tse__EndSearch), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__EndSearch) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__EndSearch *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__EndSearch::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__EndSearch *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__EndSearch, SOAP_TYPE__tse__EndSearch, sizeof(_tse__EndSearch), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__EndSearch * SOAP_FMAC2 soap_instantiate__tse__EndSearch(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__EndSearch(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__EndSearch *p; - size_t k = sizeof(_tse__EndSearch); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__EndSearch, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__EndSearch); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__EndSearch, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__EndSearch location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__EndSearch::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__EndSearch(soap, tag ? tag : "tse:EndSearch", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__EndSearch::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__EndSearch(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__EndSearch * SOAP_FMAC4 soap_get__tse__EndSearch(struct soap *soap, _tse__EndSearch *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__EndSearch(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetSearchStateResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SearchState(soap, &this->_tse__GetSearchStateResponse::State); -} - -void _tse__GetSearchStateResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tse__GetSearchStateResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetSearchStateResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetSearchStateResponse(struct soap *soap, const char *tag, int id, const _tse__GetSearchStateResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetSearchStateResponse), type)) - return soap->error; - soap_element_result(soap, "tse:State"); - if (soap_out_tt__SearchState(soap, "tse:State", -1, &a->_tse__GetSearchStateResponse::State, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetSearchStateResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetSearchStateResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetSearchStateResponse * SOAP_FMAC4 soap_in__tse__GetSearchStateResponse(struct soap *soap, const char *tag, _tse__GetSearchStateResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetSearchStateResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetSearchStateResponse, sizeof(_tse__GetSearchStateResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetSearchStateResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetSearchStateResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_State1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_State1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SearchState(soap, "tse:State", &a->_tse__GetSearchStateResponse::State, "tt:SearchState")) - { soap_flag_State1--; - continue; - } - } - soap_check_result(soap, "tse:State"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_State1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetSearchStateResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetSearchStateResponse, SOAP_TYPE__tse__GetSearchStateResponse, sizeof(_tse__GetSearchStateResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetSearchStateResponse * SOAP_FMAC2 soap_instantiate__tse__GetSearchStateResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetSearchStateResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetSearchStateResponse *p; - size_t k = sizeof(_tse__GetSearchStateResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetSearchStateResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetSearchStateResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetSearchStateResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetSearchStateResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetSearchStateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetSearchStateResponse(soap, tag ? tag : "tse:GetSearchStateResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetSearchStateResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetSearchStateResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetSearchStateResponse * SOAP_FMAC4 soap_get__tse__GetSearchStateResponse(struct soap *soap, _tse__GetSearchStateResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetSearchStateResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetSearchState::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__GetSearchState::SearchToken); -} - -void _tse__GetSearchState::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__GetSearchState::SearchToken); -#endif -} - -int _tse__GetSearchState::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetSearchState(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetSearchState(struct soap *soap, const char *tag, int id, const _tse__GetSearchState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetSearchState), type)) - return soap->error; - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__GetSearchState::SearchToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetSearchState::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetSearchState(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetSearchState * SOAP_FMAC4 soap_in__tse__GetSearchState(struct soap *soap, const char *tag, _tse__GetSearchState *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetSearchState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetSearchState, sizeof(_tse__GetSearchState), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetSearchState) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetSearchState *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__GetSearchState::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetSearchState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetSearchState, SOAP_TYPE__tse__GetSearchState, sizeof(_tse__GetSearchState), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetSearchState * SOAP_FMAC2 soap_instantiate__tse__GetSearchState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetSearchState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetSearchState *p; - size_t k = sizeof(_tse__GetSearchState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetSearchState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetSearchState); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetSearchState, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetSearchState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetSearchState::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetSearchState(soap, tag ? tag : "tse:GetSearchState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetSearchState::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetSearchState(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetSearchState * SOAP_FMAC4 soap_get__tse__GetSearchState(struct soap *soap, _tse__GetSearchState *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetSearchState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetMetadataSearchResultsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__GetMetadataSearchResultsResponse::ResultList = NULL; -} - -void _tse__GetMetadataSearchResultsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FindMetadataResultList(soap, &this->_tse__GetMetadataSearchResultsResponse::ResultList); -#endif -} - -int _tse__GetMetadataSearchResultsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetMetadataSearchResultsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMetadataSearchResultsResponse(struct soap *soap, const char *tag, int id, const _tse__GetMetadataSearchResultsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetMetadataSearchResultsResponse), type)) - return soap->error; - if (a->ResultList) - soap_element_result(soap, "tse:ResultList"); - if (!a->_tse__GetMetadataSearchResultsResponse::ResultList) - { if (soap_element_empty(soap, "tse:ResultList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FindMetadataResultList(soap, "tse:ResultList", -1, &a->_tse__GetMetadataSearchResultsResponse::ResultList, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetMetadataSearchResultsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetMetadataSearchResultsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetMetadataSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetMetadataSearchResultsResponse(struct soap *soap, const char *tag, _tse__GetMetadataSearchResultsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetMetadataSearchResultsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetMetadataSearchResultsResponse, sizeof(_tse__GetMetadataSearchResultsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetMetadataSearchResultsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetMetadataSearchResultsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ResultList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ResultList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FindMetadataResultList(soap, "tse:ResultList", &a->_tse__GetMetadataSearchResultsResponse::ResultList, "tt:FindMetadataResultList")) - { soap_flag_ResultList1--; - continue; - } - } - soap_check_result(soap, "tse:ResultList"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__GetMetadataSearchResultsResponse::ResultList)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetMetadataSearchResultsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetMetadataSearchResultsResponse, SOAP_TYPE__tse__GetMetadataSearchResultsResponse, sizeof(_tse__GetMetadataSearchResultsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetMetadataSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetMetadataSearchResultsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetMetadataSearchResultsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetMetadataSearchResultsResponse *p; - size_t k = sizeof(_tse__GetMetadataSearchResultsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetMetadataSearchResultsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetMetadataSearchResultsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetMetadataSearchResultsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetMetadataSearchResultsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetMetadataSearchResultsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetMetadataSearchResultsResponse(soap, tag ? tag : "tse:GetMetadataSearchResultsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetMetadataSearchResultsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetMetadataSearchResultsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetMetadataSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetMetadataSearchResultsResponse(struct soap *soap, _tse__GetMetadataSearchResultsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetMetadataSearchResultsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetMetadataSearchResults::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__GetMetadataSearchResults::SearchToken); - this->_tse__GetMetadataSearchResults::MinResults = NULL; - this->_tse__GetMetadataSearchResults::MaxResults = NULL; - this->_tse__GetMetadataSearchResults::WaitTime = NULL; -} - -void _tse__GetMetadataSearchResults::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__GetMetadataSearchResults::SearchToken); - soap_serialize_PointerToint(soap, &this->_tse__GetMetadataSearchResults::MinResults); - soap_serialize_PointerToint(soap, &this->_tse__GetMetadataSearchResults::MaxResults); - soap_serialize_PointerToxsd__duration(soap, &this->_tse__GetMetadataSearchResults::WaitTime); -#endif -} - -int _tse__GetMetadataSearchResults::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetMetadataSearchResults(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMetadataSearchResults(struct soap *soap, const char *tag, int id, const _tse__GetMetadataSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetMetadataSearchResults), type)) - return soap->error; - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__GetMetadataSearchResults::SearchToken, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MinResults", -1, &a->_tse__GetMetadataSearchResults::MinResults, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxResults", -1, &a->_tse__GetMetadataSearchResults::MaxResults, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tse:WaitTime", -1, &a->_tse__GetMetadataSearchResults::WaitTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetMetadataSearchResults::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetMetadataSearchResults(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetMetadataSearchResults * SOAP_FMAC4 soap_in__tse__GetMetadataSearchResults(struct soap *soap, const char *tag, _tse__GetMetadataSearchResults *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetMetadataSearchResults*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetMetadataSearchResults, sizeof(_tse__GetMetadataSearchResults), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetMetadataSearchResults) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetMetadataSearchResults *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - size_t soap_flag_MinResults1 = 1; - size_t soap_flag_MaxResults1 = 1; - size_t soap_flag_WaitTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__GetMetadataSearchResults::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - if (soap_flag_MinResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MinResults", &a->_tse__GetMetadataSearchResults::MinResults, "xsd:int")) - { soap_flag_MinResults1--; - continue; - } - } - if (soap_flag_MaxResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxResults", &a->_tse__GetMetadataSearchResults::MaxResults, "xsd:int")) - { soap_flag_MaxResults1--; - continue; - } - } - if (soap_flag_WaitTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tse:WaitTime", &a->_tse__GetMetadataSearchResults::WaitTime, "xsd:duration")) - { soap_flag_WaitTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetMetadataSearchResults *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetMetadataSearchResults, SOAP_TYPE__tse__GetMetadataSearchResults, sizeof(_tse__GetMetadataSearchResults), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetMetadataSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetMetadataSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetMetadataSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetMetadataSearchResults *p; - size_t k = sizeof(_tse__GetMetadataSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetMetadataSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetMetadataSearchResults); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetMetadataSearchResults, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetMetadataSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetMetadataSearchResults::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetMetadataSearchResults(soap, tag ? tag : "tse:GetMetadataSearchResults", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetMetadataSearchResults::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetMetadataSearchResults(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetMetadataSearchResults * SOAP_FMAC4 soap_get__tse__GetMetadataSearchResults(struct soap *soap, _tse__GetMetadataSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetMetadataSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindMetadataResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__FindMetadataResponse::SearchToken); -} - -void _tse__FindMetadataResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__FindMetadataResponse::SearchToken); -#endif -} - -int _tse__FindMetadataResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindMetadataResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindMetadataResponse(struct soap *soap, const char *tag, int id, const _tse__FindMetadataResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindMetadataResponse), type)) - return soap->error; - soap_element_result(soap, "tse:SearchToken"); - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__FindMetadataResponse::SearchToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindMetadataResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindMetadataResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindMetadataResponse * SOAP_FMAC4 soap_in__tse__FindMetadataResponse(struct soap *soap, const char *tag, _tse__FindMetadataResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindMetadataResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindMetadataResponse, sizeof(_tse__FindMetadataResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindMetadataResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindMetadataResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__FindMetadataResponse::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - soap_check_result(soap, "tse:SearchToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindMetadataResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindMetadataResponse, SOAP_TYPE__tse__FindMetadataResponse, sizeof(_tse__FindMetadataResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindMetadataResponse * SOAP_FMAC2 soap_instantiate__tse__FindMetadataResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindMetadataResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindMetadataResponse *p; - size_t k = sizeof(_tse__FindMetadataResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindMetadataResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindMetadataResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindMetadataResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindMetadataResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindMetadataResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindMetadataResponse(soap, tag ? tag : "tse:FindMetadataResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindMetadataResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindMetadataResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindMetadataResponse * SOAP_FMAC4 soap_get__tse__FindMetadataResponse(struct soap *soap, _tse__FindMetadataResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindMetadataResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindMetadata::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->_tse__FindMetadata::StartPoint); - this->_tse__FindMetadata::EndPoint = NULL; - this->_tse__FindMetadata::Scope = NULL; - this->_tse__FindMetadata::MetadataFilter = NULL; - this->_tse__FindMetadata::MaxMatches = NULL; - soap_default_xsd__duration(soap, &this->_tse__FindMetadata::KeepAliveTime); -} - -void _tse__FindMetadata::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tse__FindMetadata::StartPoint, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tse__FindMetadata::StartPoint); - soap_serialize_PointerToxsd__dateTime(soap, &this->_tse__FindMetadata::EndPoint); - soap_serialize_PointerTott__SearchScope(soap, &this->_tse__FindMetadata::Scope); - soap_serialize_PointerTott__MetadataFilter(soap, &this->_tse__FindMetadata::MetadataFilter); - soap_serialize_PointerToint(soap, &this->_tse__FindMetadata::MaxMatches); - soap_embedded(soap, &this->_tse__FindMetadata::KeepAliveTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tse__FindMetadata::KeepAliveTime); -#endif -} - -int _tse__FindMetadata::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindMetadata(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindMetadata(struct soap *soap, const char *tag, int id, const _tse__FindMetadata *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindMetadata), type)) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tse:StartPoint", -1, &a->_tse__FindMetadata::StartPoint, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "tse:EndPoint", -1, &a->_tse__FindMetadata::EndPoint, "")) - return soap->error; - if (!a->_tse__FindMetadata::Scope) - { if (soap_element_empty(soap, "tse:Scope", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SearchScope(soap, "tse:Scope", -1, &a->_tse__FindMetadata::Scope, "")) - return soap->error; - if (!a->_tse__FindMetadata::MetadataFilter) - { if (soap_element_empty(soap, "tse:MetadataFilter", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MetadataFilter(soap, "tse:MetadataFilter", -1, &a->_tse__FindMetadata::MetadataFilter, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxMatches", -1, &a->_tse__FindMetadata::MaxMatches, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tse:KeepAliveTime", -1, &a->_tse__FindMetadata::KeepAliveTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindMetadata::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindMetadata(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindMetadata * SOAP_FMAC4 soap_in__tse__FindMetadata(struct soap *soap, const char *tag, _tse__FindMetadata *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindMetadata*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindMetadata, sizeof(_tse__FindMetadata), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindMetadata) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindMetadata *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StartPoint1 = 1; - size_t soap_flag_EndPoint1 = 1; - size_t soap_flag_Scope1 = 1; - size_t soap_flag_MetadataFilter1 = 1; - size_t soap_flag_MaxMatches1 = 1; - size_t soap_flag_KeepAliveTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StartPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tse:StartPoint", &a->_tse__FindMetadata::StartPoint, "xsd:dateTime")) - { soap_flag_StartPoint1--; - continue; - } - } - if (soap_flag_EndPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "tse:EndPoint", &a->_tse__FindMetadata::EndPoint, "xsd:dateTime")) - { soap_flag_EndPoint1--; - continue; - } - } - if (soap_flag_Scope1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SearchScope(soap, "tse:Scope", &a->_tse__FindMetadata::Scope, "tt:SearchScope")) - { soap_flag_Scope1--; - continue; - } - } - if (soap_flag_MetadataFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataFilter(soap, "tse:MetadataFilter", &a->_tse__FindMetadata::MetadataFilter, "tt:MetadataFilter")) - { soap_flag_MetadataFilter1--; - continue; - } - } - if (soap_flag_MaxMatches1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxMatches", &a->_tse__FindMetadata::MaxMatches, "xsd:int")) - { soap_flag_MaxMatches1--; - continue; - } - } - if (soap_flag_KeepAliveTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tse:KeepAliveTime", &a->_tse__FindMetadata::KeepAliveTime, "xsd:duration")) - { soap_flag_KeepAliveTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_StartPoint1 > 0 || !a->_tse__FindMetadata::Scope || !a->_tse__FindMetadata::MetadataFilter || soap_flag_KeepAliveTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindMetadata *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindMetadata, SOAP_TYPE__tse__FindMetadata, sizeof(_tse__FindMetadata), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindMetadata * SOAP_FMAC2 soap_instantiate__tse__FindMetadata(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindMetadata(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindMetadata *p; - size_t k = sizeof(_tse__FindMetadata); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindMetadata, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindMetadata); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindMetadata, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindMetadata location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindMetadata::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindMetadata(soap, tag ? tag : "tse:FindMetadata", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindMetadata::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindMetadata(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindMetadata * SOAP_FMAC4 soap_get__tse__FindMetadata(struct soap *soap, _tse__FindMetadata *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindMetadata(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetPTZPositionSearchResultsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__GetPTZPositionSearchResultsResponse::ResultList = NULL; -} - -void _tse__GetPTZPositionSearchResultsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FindPTZPositionResultList(soap, &this->_tse__GetPTZPositionSearchResultsResponse::ResultList); -#endif -} - -int _tse__GetPTZPositionSearchResultsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetPTZPositionSearchResultsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, const char *tag, int id, const _tse__GetPTZPositionSearchResultsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse), type)) - return soap->error; - if (a->ResultList) - soap_element_result(soap, "tse:ResultList"); - if (!a->_tse__GetPTZPositionSearchResultsResponse::ResultList) - { if (soap_element_empty(soap, "tse:ResultList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FindPTZPositionResultList(soap, "tse:ResultList", -1, &a->_tse__GetPTZPositionSearchResultsResponse::ResultList, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetPTZPositionSearchResultsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetPTZPositionSearchResultsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetPTZPositionSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, const char *tag, _tse__GetPTZPositionSearchResultsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetPTZPositionSearchResultsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse, sizeof(_tse__GetPTZPositionSearchResultsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetPTZPositionSearchResultsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ResultList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ResultList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FindPTZPositionResultList(soap, "tse:ResultList", &a->_tse__GetPTZPositionSearchResultsResponse::ResultList, "tt:FindPTZPositionResultList")) - { soap_flag_ResultList1--; - continue; - } - } - soap_check_result(soap, "tse:ResultList"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__GetPTZPositionSearchResultsResponse::ResultList)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetPTZPositionSearchResultsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse, SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse, sizeof(_tse__GetPTZPositionSearchResultsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetPTZPositionSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetPTZPositionSearchResultsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetPTZPositionSearchResultsResponse *p; - size_t k = sizeof(_tse__GetPTZPositionSearchResultsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetPTZPositionSearchResultsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetPTZPositionSearchResultsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetPTZPositionSearchResultsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetPTZPositionSearchResultsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetPTZPositionSearchResultsResponse(soap, tag ? tag : "tse:GetPTZPositionSearchResultsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetPTZPositionSearchResultsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetPTZPositionSearchResultsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetPTZPositionSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, _tse__GetPTZPositionSearchResultsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetPTZPositionSearchResultsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetPTZPositionSearchResults::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__GetPTZPositionSearchResults::SearchToken); - this->_tse__GetPTZPositionSearchResults::MinResults = NULL; - this->_tse__GetPTZPositionSearchResults::MaxResults = NULL; - this->_tse__GetPTZPositionSearchResults::WaitTime = NULL; -} - -void _tse__GetPTZPositionSearchResults::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__GetPTZPositionSearchResults::SearchToken); - soap_serialize_PointerToint(soap, &this->_tse__GetPTZPositionSearchResults::MinResults); - soap_serialize_PointerToint(soap, &this->_tse__GetPTZPositionSearchResults::MaxResults); - soap_serialize_PointerToxsd__duration(soap, &this->_tse__GetPTZPositionSearchResults::WaitTime); -#endif -} - -int _tse__GetPTZPositionSearchResults::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetPTZPositionSearchResults(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetPTZPositionSearchResults(struct soap *soap, const char *tag, int id, const _tse__GetPTZPositionSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetPTZPositionSearchResults), type)) - return soap->error; - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__GetPTZPositionSearchResults::SearchToken, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MinResults", -1, &a->_tse__GetPTZPositionSearchResults::MinResults, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxResults", -1, &a->_tse__GetPTZPositionSearchResults::MaxResults, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tse:WaitTime", -1, &a->_tse__GetPTZPositionSearchResults::WaitTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetPTZPositionSearchResults::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetPTZPositionSearchResults(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_in__tse__GetPTZPositionSearchResults(struct soap *soap, const char *tag, _tse__GetPTZPositionSearchResults *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetPTZPositionSearchResults*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetPTZPositionSearchResults, sizeof(_tse__GetPTZPositionSearchResults), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetPTZPositionSearchResults) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetPTZPositionSearchResults *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - size_t soap_flag_MinResults1 = 1; - size_t soap_flag_MaxResults1 = 1; - size_t soap_flag_WaitTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__GetPTZPositionSearchResults::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - if (soap_flag_MinResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MinResults", &a->_tse__GetPTZPositionSearchResults::MinResults, "xsd:int")) - { soap_flag_MinResults1--; - continue; - } - } - if (soap_flag_MaxResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxResults", &a->_tse__GetPTZPositionSearchResults::MaxResults, "xsd:int")) - { soap_flag_MaxResults1--; - continue; - } - } - if (soap_flag_WaitTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tse:WaitTime", &a->_tse__GetPTZPositionSearchResults::WaitTime, "xsd:duration")) - { soap_flag_WaitTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetPTZPositionSearchResults *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetPTZPositionSearchResults, SOAP_TYPE__tse__GetPTZPositionSearchResults, sizeof(_tse__GetPTZPositionSearchResults), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetPTZPositionSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetPTZPositionSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetPTZPositionSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetPTZPositionSearchResults *p; - size_t k = sizeof(_tse__GetPTZPositionSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetPTZPositionSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetPTZPositionSearchResults); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetPTZPositionSearchResults, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetPTZPositionSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetPTZPositionSearchResults::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetPTZPositionSearchResults(soap, tag ? tag : "tse:GetPTZPositionSearchResults", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetPTZPositionSearchResults::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetPTZPositionSearchResults(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_get__tse__GetPTZPositionSearchResults(struct soap *soap, _tse__GetPTZPositionSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetPTZPositionSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindPTZPositionResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__FindPTZPositionResponse::SearchToken); -} - -void _tse__FindPTZPositionResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__FindPTZPositionResponse::SearchToken); -#endif -} - -int _tse__FindPTZPositionResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindPTZPositionResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindPTZPositionResponse(struct soap *soap, const char *tag, int id, const _tse__FindPTZPositionResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindPTZPositionResponse), type)) - return soap->error; - soap_element_result(soap, "tse:SearchToken"); - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__FindPTZPositionResponse::SearchToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindPTZPositionResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindPTZPositionResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindPTZPositionResponse * SOAP_FMAC4 soap_in__tse__FindPTZPositionResponse(struct soap *soap, const char *tag, _tse__FindPTZPositionResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindPTZPositionResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindPTZPositionResponse, sizeof(_tse__FindPTZPositionResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindPTZPositionResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindPTZPositionResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__FindPTZPositionResponse::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - soap_check_result(soap, "tse:SearchToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindPTZPositionResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindPTZPositionResponse, SOAP_TYPE__tse__FindPTZPositionResponse, sizeof(_tse__FindPTZPositionResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindPTZPositionResponse * SOAP_FMAC2 soap_instantiate__tse__FindPTZPositionResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindPTZPositionResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindPTZPositionResponse *p; - size_t k = sizeof(_tse__FindPTZPositionResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindPTZPositionResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindPTZPositionResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindPTZPositionResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindPTZPositionResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindPTZPositionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindPTZPositionResponse(soap, tag ? tag : "tse:FindPTZPositionResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindPTZPositionResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindPTZPositionResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindPTZPositionResponse * SOAP_FMAC4 soap_get__tse__FindPTZPositionResponse(struct soap *soap, _tse__FindPTZPositionResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindPTZPositionResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindPTZPosition::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->_tse__FindPTZPosition::StartPoint); - this->_tse__FindPTZPosition::EndPoint = NULL; - this->_tse__FindPTZPosition::Scope = NULL; - this->_tse__FindPTZPosition::SearchFilter = NULL; - this->_tse__FindPTZPosition::MaxMatches = NULL; - soap_default_xsd__duration(soap, &this->_tse__FindPTZPosition::KeepAliveTime); -} - -void _tse__FindPTZPosition::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tse__FindPTZPosition::StartPoint, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tse__FindPTZPosition::StartPoint); - soap_serialize_PointerToxsd__dateTime(soap, &this->_tse__FindPTZPosition::EndPoint); - soap_serialize_PointerTott__SearchScope(soap, &this->_tse__FindPTZPosition::Scope); - soap_serialize_PointerTott__PTZPositionFilter(soap, &this->_tse__FindPTZPosition::SearchFilter); - soap_serialize_PointerToint(soap, &this->_tse__FindPTZPosition::MaxMatches); - soap_embedded(soap, &this->_tse__FindPTZPosition::KeepAliveTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tse__FindPTZPosition::KeepAliveTime); -#endif -} - -int _tse__FindPTZPosition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindPTZPosition(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindPTZPosition(struct soap *soap, const char *tag, int id, const _tse__FindPTZPosition *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindPTZPosition), type)) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tse:StartPoint", -1, &a->_tse__FindPTZPosition::StartPoint, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "tse:EndPoint", -1, &a->_tse__FindPTZPosition::EndPoint, "")) - return soap->error; - if (!a->_tse__FindPTZPosition::Scope) - { if (soap_element_empty(soap, "tse:Scope", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SearchScope(soap, "tse:Scope", -1, &a->_tse__FindPTZPosition::Scope, "")) - return soap->error; - if (!a->_tse__FindPTZPosition::SearchFilter) - { if (soap_element_empty(soap, "tse:SearchFilter", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPositionFilter(soap, "tse:SearchFilter", -1, &a->_tse__FindPTZPosition::SearchFilter, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxMatches", -1, &a->_tse__FindPTZPosition::MaxMatches, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tse:KeepAliveTime", -1, &a->_tse__FindPTZPosition::KeepAliveTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindPTZPosition::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindPTZPosition(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindPTZPosition * SOAP_FMAC4 soap_in__tse__FindPTZPosition(struct soap *soap, const char *tag, _tse__FindPTZPosition *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindPTZPosition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindPTZPosition, sizeof(_tse__FindPTZPosition), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindPTZPosition) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindPTZPosition *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StartPoint1 = 1; - size_t soap_flag_EndPoint1 = 1; - size_t soap_flag_Scope1 = 1; - size_t soap_flag_SearchFilter1 = 1; - size_t soap_flag_MaxMatches1 = 1; - size_t soap_flag_KeepAliveTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StartPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tse:StartPoint", &a->_tse__FindPTZPosition::StartPoint, "xsd:dateTime")) - { soap_flag_StartPoint1--; - continue; - } - } - if (soap_flag_EndPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "tse:EndPoint", &a->_tse__FindPTZPosition::EndPoint, "xsd:dateTime")) - { soap_flag_EndPoint1--; - continue; - } - } - if (soap_flag_Scope1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SearchScope(soap, "tse:Scope", &a->_tse__FindPTZPosition::Scope, "tt:SearchScope")) - { soap_flag_Scope1--; - continue; - } - } - if (soap_flag_SearchFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPositionFilter(soap, "tse:SearchFilter", &a->_tse__FindPTZPosition::SearchFilter, "tt:PTZPositionFilter")) - { soap_flag_SearchFilter1--; - continue; - } - } - if (soap_flag_MaxMatches1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxMatches", &a->_tse__FindPTZPosition::MaxMatches, "xsd:int")) - { soap_flag_MaxMatches1--; - continue; - } - } - if (soap_flag_KeepAliveTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tse:KeepAliveTime", &a->_tse__FindPTZPosition::KeepAliveTime, "xsd:duration")) - { soap_flag_KeepAliveTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_StartPoint1 > 0 || !a->_tse__FindPTZPosition::Scope || !a->_tse__FindPTZPosition::SearchFilter || soap_flag_KeepAliveTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindPTZPosition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindPTZPosition, SOAP_TYPE__tse__FindPTZPosition, sizeof(_tse__FindPTZPosition), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindPTZPosition * SOAP_FMAC2 soap_instantiate__tse__FindPTZPosition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindPTZPosition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindPTZPosition *p; - size_t k = sizeof(_tse__FindPTZPosition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindPTZPosition, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindPTZPosition); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindPTZPosition, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindPTZPosition location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindPTZPosition::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindPTZPosition(soap, tag ? tag : "tse:FindPTZPosition", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindPTZPosition::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindPTZPosition(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindPTZPosition * SOAP_FMAC4 soap_get__tse__FindPTZPosition(struct soap *soap, _tse__FindPTZPosition *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindPTZPosition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetEventSearchResultsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__GetEventSearchResultsResponse::ResultList = NULL; -} - -void _tse__GetEventSearchResultsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FindEventResultList(soap, &this->_tse__GetEventSearchResultsResponse::ResultList); -#endif -} - -int _tse__GetEventSearchResultsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetEventSearchResultsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetEventSearchResultsResponse(struct soap *soap, const char *tag, int id, const _tse__GetEventSearchResultsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetEventSearchResultsResponse), type)) - return soap->error; - if (a->ResultList) - soap_element_result(soap, "tse:ResultList"); - if (!a->_tse__GetEventSearchResultsResponse::ResultList) - { if (soap_element_empty(soap, "tse:ResultList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FindEventResultList(soap, "tse:ResultList", -1, &a->_tse__GetEventSearchResultsResponse::ResultList, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetEventSearchResultsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetEventSearchResultsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetEventSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetEventSearchResultsResponse(struct soap *soap, const char *tag, _tse__GetEventSearchResultsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetEventSearchResultsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetEventSearchResultsResponse, sizeof(_tse__GetEventSearchResultsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetEventSearchResultsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetEventSearchResultsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ResultList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ResultList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FindEventResultList(soap, "tse:ResultList", &a->_tse__GetEventSearchResultsResponse::ResultList, "tt:FindEventResultList")) - { soap_flag_ResultList1--; - continue; - } - } - soap_check_result(soap, "tse:ResultList"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__GetEventSearchResultsResponse::ResultList)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetEventSearchResultsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetEventSearchResultsResponse, SOAP_TYPE__tse__GetEventSearchResultsResponse, sizeof(_tse__GetEventSearchResultsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetEventSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetEventSearchResultsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetEventSearchResultsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetEventSearchResultsResponse *p; - size_t k = sizeof(_tse__GetEventSearchResultsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetEventSearchResultsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetEventSearchResultsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetEventSearchResultsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetEventSearchResultsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetEventSearchResultsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetEventSearchResultsResponse(soap, tag ? tag : "tse:GetEventSearchResultsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetEventSearchResultsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetEventSearchResultsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetEventSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetEventSearchResultsResponse(struct soap *soap, _tse__GetEventSearchResultsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetEventSearchResultsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetEventSearchResults::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__GetEventSearchResults::SearchToken); - this->_tse__GetEventSearchResults::MinResults = NULL; - this->_tse__GetEventSearchResults::MaxResults = NULL; - this->_tse__GetEventSearchResults::WaitTime = NULL; -} - -void _tse__GetEventSearchResults::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__GetEventSearchResults::SearchToken); - soap_serialize_PointerToint(soap, &this->_tse__GetEventSearchResults::MinResults); - soap_serialize_PointerToint(soap, &this->_tse__GetEventSearchResults::MaxResults); - soap_serialize_PointerToxsd__duration(soap, &this->_tse__GetEventSearchResults::WaitTime); -#endif -} - -int _tse__GetEventSearchResults::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetEventSearchResults(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetEventSearchResults(struct soap *soap, const char *tag, int id, const _tse__GetEventSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetEventSearchResults), type)) - return soap->error; - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__GetEventSearchResults::SearchToken, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MinResults", -1, &a->_tse__GetEventSearchResults::MinResults, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxResults", -1, &a->_tse__GetEventSearchResults::MaxResults, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tse:WaitTime", -1, &a->_tse__GetEventSearchResults::WaitTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetEventSearchResults::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetEventSearchResults(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetEventSearchResults * SOAP_FMAC4 soap_in__tse__GetEventSearchResults(struct soap *soap, const char *tag, _tse__GetEventSearchResults *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetEventSearchResults*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetEventSearchResults, sizeof(_tse__GetEventSearchResults), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetEventSearchResults) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetEventSearchResults *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - size_t soap_flag_MinResults1 = 1; - size_t soap_flag_MaxResults1 = 1; - size_t soap_flag_WaitTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__GetEventSearchResults::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - if (soap_flag_MinResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MinResults", &a->_tse__GetEventSearchResults::MinResults, "xsd:int")) - { soap_flag_MinResults1--; - continue; - } - } - if (soap_flag_MaxResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxResults", &a->_tse__GetEventSearchResults::MaxResults, "xsd:int")) - { soap_flag_MaxResults1--; - continue; - } - } - if (soap_flag_WaitTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tse:WaitTime", &a->_tse__GetEventSearchResults::WaitTime, "xsd:duration")) - { soap_flag_WaitTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetEventSearchResults *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetEventSearchResults, SOAP_TYPE__tse__GetEventSearchResults, sizeof(_tse__GetEventSearchResults), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetEventSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetEventSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetEventSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetEventSearchResults *p; - size_t k = sizeof(_tse__GetEventSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetEventSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetEventSearchResults); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetEventSearchResults, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetEventSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetEventSearchResults::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetEventSearchResults(soap, tag ? tag : "tse:GetEventSearchResults", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetEventSearchResults::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetEventSearchResults(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetEventSearchResults * SOAP_FMAC4 soap_get__tse__GetEventSearchResults(struct soap *soap, _tse__GetEventSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetEventSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindEventsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__FindEventsResponse::SearchToken); -} - -void _tse__FindEventsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__FindEventsResponse::SearchToken); -#endif -} - -int _tse__FindEventsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindEventsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindEventsResponse(struct soap *soap, const char *tag, int id, const _tse__FindEventsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindEventsResponse), type)) - return soap->error; - soap_element_result(soap, "tse:SearchToken"); - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__FindEventsResponse::SearchToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindEventsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindEventsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindEventsResponse * SOAP_FMAC4 soap_in__tse__FindEventsResponse(struct soap *soap, const char *tag, _tse__FindEventsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindEventsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindEventsResponse, sizeof(_tse__FindEventsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindEventsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindEventsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__FindEventsResponse::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - soap_check_result(soap, "tse:SearchToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindEventsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindEventsResponse, SOAP_TYPE__tse__FindEventsResponse, sizeof(_tse__FindEventsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindEventsResponse * SOAP_FMAC2 soap_instantiate__tse__FindEventsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindEventsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindEventsResponse *p; - size_t k = sizeof(_tse__FindEventsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindEventsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindEventsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindEventsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindEventsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindEventsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindEventsResponse(soap, tag ? tag : "tse:FindEventsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindEventsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindEventsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindEventsResponse * SOAP_FMAC4 soap_get__tse__FindEventsResponse(struct soap *soap, _tse__FindEventsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindEventsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindEvents::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->_tse__FindEvents::StartPoint); - this->_tse__FindEvents::EndPoint = NULL; - this->_tse__FindEvents::Scope = NULL; - this->_tse__FindEvents::SearchFilter = NULL; - soap_default_bool(soap, &this->_tse__FindEvents::IncludeStartState); - this->_tse__FindEvents::MaxMatches = NULL; - soap_default_xsd__duration(soap, &this->_tse__FindEvents::KeepAliveTime); -} - -void _tse__FindEvents::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tse__FindEvents::StartPoint, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tse__FindEvents::StartPoint); - soap_serialize_PointerToxsd__dateTime(soap, &this->_tse__FindEvents::EndPoint); - soap_serialize_PointerTott__SearchScope(soap, &this->_tse__FindEvents::Scope); - soap_serialize_PointerTott__EventFilter(soap, &this->_tse__FindEvents::SearchFilter); - soap_embedded(soap, &this->_tse__FindEvents::IncludeStartState, SOAP_TYPE_bool); - soap_serialize_PointerToint(soap, &this->_tse__FindEvents::MaxMatches); - soap_embedded(soap, &this->_tse__FindEvents::KeepAliveTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tse__FindEvents::KeepAliveTime); -#endif -} - -int _tse__FindEvents::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindEvents(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindEvents(struct soap *soap, const char *tag, int id, const _tse__FindEvents *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindEvents), type)) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tse:StartPoint", -1, &a->_tse__FindEvents::StartPoint, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "tse:EndPoint", -1, &a->_tse__FindEvents::EndPoint, "")) - return soap->error; - if (!a->_tse__FindEvents::Scope) - { if (soap_element_empty(soap, "tse:Scope", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SearchScope(soap, "tse:Scope", -1, &a->_tse__FindEvents::Scope, "")) - return soap->error; - if (!a->_tse__FindEvents::SearchFilter) - { if (soap_element_empty(soap, "tse:SearchFilter", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__EventFilter(soap, "tse:SearchFilter", -1, &a->_tse__FindEvents::SearchFilter, "")) - return soap->error; - if (soap_out_bool(soap, "tse:IncludeStartState", -1, &a->_tse__FindEvents::IncludeStartState, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxMatches", -1, &a->_tse__FindEvents::MaxMatches, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tse:KeepAliveTime", -1, &a->_tse__FindEvents::KeepAliveTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindEvents::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindEvents(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindEvents * SOAP_FMAC4 soap_in__tse__FindEvents(struct soap *soap, const char *tag, _tse__FindEvents *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindEvents*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindEvents, sizeof(_tse__FindEvents), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindEvents) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindEvents *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StartPoint1 = 1; - size_t soap_flag_EndPoint1 = 1; - size_t soap_flag_Scope1 = 1; - size_t soap_flag_SearchFilter1 = 1; - size_t soap_flag_IncludeStartState1 = 1; - size_t soap_flag_MaxMatches1 = 1; - size_t soap_flag_KeepAliveTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StartPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tse:StartPoint", &a->_tse__FindEvents::StartPoint, "xsd:dateTime")) - { soap_flag_StartPoint1--; - continue; - } - } - if (soap_flag_EndPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "tse:EndPoint", &a->_tse__FindEvents::EndPoint, "xsd:dateTime")) - { soap_flag_EndPoint1--; - continue; - } - } - if (soap_flag_Scope1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SearchScope(soap, "tse:Scope", &a->_tse__FindEvents::Scope, "tt:SearchScope")) - { soap_flag_Scope1--; - continue; - } - } - if (soap_flag_SearchFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EventFilter(soap, "tse:SearchFilter", &a->_tse__FindEvents::SearchFilter, "tt:EventFilter")) - { soap_flag_SearchFilter1--; - continue; - } - } - if (soap_flag_IncludeStartState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tse:IncludeStartState", &a->_tse__FindEvents::IncludeStartState, "xsd:boolean")) - { soap_flag_IncludeStartState1--; - continue; - } - } - if (soap_flag_MaxMatches1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxMatches", &a->_tse__FindEvents::MaxMatches, "xsd:int")) - { soap_flag_MaxMatches1--; - continue; - } - } - if (soap_flag_KeepAliveTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tse:KeepAliveTime", &a->_tse__FindEvents::KeepAliveTime, "xsd:duration")) - { soap_flag_KeepAliveTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_StartPoint1 > 0 || !a->_tse__FindEvents::Scope || !a->_tse__FindEvents::SearchFilter || soap_flag_IncludeStartState1 > 0 || soap_flag_KeepAliveTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindEvents *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindEvents, SOAP_TYPE__tse__FindEvents, sizeof(_tse__FindEvents), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindEvents * SOAP_FMAC2 soap_instantiate__tse__FindEvents(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindEvents(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindEvents *p; - size_t k = sizeof(_tse__FindEvents); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindEvents, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindEvents); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindEvents, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindEvents location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindEvents::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindEvents(soap, tag ? tag : "tse:FindEvents", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindEvents::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindEvents(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindEvents * SOAP_FMAC4 soap_get__tse__FindEvents(struct soap *soap, _tse__FindEvents *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindEvents(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetRecordingSearchResultsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__GetRecordingSearchResultsResponse::ResultList = NULL; -} - -void _tse__GetRecordingSearchResultsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FindRecordingResultList(soap, &this->_tse__GetRecordingSearchResultsResponse::ResultList); -#endif -} - -int _tse__GetRecordingSearchResultsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetRecordingSearchResultsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSearchResultsResponse(struct soap *soap, const char *tag, int id, const _tse__GetRecordingSearchResultsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetRecordingSearchResultsResponse), type)) - return soap->error; - if (a->ResultList) - soap_element_result(soap, "tse:ResultList"); - if (!a->_tse__GetRecordingSearchResultsResponse::ResultList) - { if (soap_element_empty(soap, "tse:ResultList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FindRecordingResultList(soap, "tse:ResultList", -1, &a->_tse__GetRecordingSearchResultsResponse::ResultList, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetRecordingSearchResultsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetRecordingSearchResultsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetRecordingSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetRecordingSearchResultsResponse(struct soap *soap, const char *tag, _tse__GetRecordingSearchResultsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetRecordingSearchResultsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetRecordingSearchResultsResponse, sizeof(_tse__GetRecordingSearchResultsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetRecordingSearchResultsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetRecordingSearchResultsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ResultList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ResultList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FindRecordingResultList(soap, "tse:ResultList", &a->_tse__GetRecordingSearchResultsResponse::ResultList, "tt:FindRecordingResultList")) - { soap_flag_ResultList1--; - continue; - } - } - soap_check_result(soap, "tse:ResultList"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__GetRecordingSearchResultsResponse::ResultList)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetRecordingSearchResultsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetRecordingSearchResultsResponse, SOAP_TYPE__tse__GetRecordingSearchResultsResponse, sizeof(_tse__GetRecordingSearchResultsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetRecordingSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSearchResultsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetRecordingSearchResultsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetRecordingSearchResultsResponse *p; - size_t k = sizeof(_tse__GetRecordingSearchResultsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetRecordingSearchResultsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetRecordingSearchResultsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetRecordingSearchResultsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetRecordingSearchResultsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetRecordingSearchResultsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetRecordingSearchResultsResponse(soap, tag ? tag : "tse:GetRecordingSearchResultsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetRecordingSearchResultsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetRecordingSearchResultsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetRecordingSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetRecordingSearchResultsResponse(struct soap *soap, _tse__GetRecordingSearchResultsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetRecordingSearchResultsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetRecordingSearchResults::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__GetRecordingSearchResults::SearchToken); - this->_tse__GetRecordingSearchResults::MinResults = NULL; - this->_tse__GetRecordingSearchResults::MaxResults = NULL; - this->_tse__GetRecordingSearchResults::WaitTime = NULL; -} - -void _tse__GetRecordingSearchResults::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__GetRecordingSearchResults::SearchToken); - soap_serialize_PointerToint(soap, &this->_tse__GetRecordingSearchResults::MinResults); - soap_serialize_PointerToint(soap, &this->_tse__GetRecordingSearchResults::MaxResults); - soap_serialize_PointerToxsd__duration(soap, &this->_tse__GetRecordingSearchResults::WaitTime); -#endif -} - -int _tse__GetRecordingSearchResults::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetRecordingSearchResults(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSearchResults(struct soap *soap, const char *tag, int id, const _tse__GetRecordingSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetRecordingSearchResults), type)) - return soap->error; - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__GetRecordingSearchResults::SearchToken, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MinResults", -1, &a->_tse__GetRecordingSearchResults::MinResults, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxResults", -1, &a->_tse__GetRecordingSearchResults::MaxResults, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tse:WaitTime", -1, &a->_tse__GetRecordingSearchResults::WaitTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetRecordingSearchResults::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetRecordingSearchResults(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetRecordingSearchResults * SOAP_FMAC4 soap_in__tse__GetRecordingSearchResults(struct soap *soap, const char *tag, _tse__GetRecordingSearchResults *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetRecordingSearchResults*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetRecordingSearchResults, sizeof(_tse__GetRecordingSearchResults), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetRecordingSearchResults) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetRecordingSearchResults *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - size_t soap_flag_MinResults1 = 1; - size_t soap_flag_MaxResults1 = 1; - size_t soap_flag_WaitTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__GetRecordingSearchResults::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - if (soap_flag_MinResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MinResults", &a->_tse__GetRecordingSearchResults::MinResults, "xsd:int")) - { soap_flag_MinResults1--; - continue; - } - } - if (soap_flag_MaxResults1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxResults", &a->_tse__GetRecordingSearchResults::MaxResults, "xsd:int")) - { soap_flag_MaxResults1--; - continue; - } - } - if (soap_flag_WaitTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tse:WaitTime", &a->_tse__GetRecordingSearchResults::WaitTime, "xsd:duration")) - { soap_flag_WaitTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetRecordingSearchResults *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetRecordingSearchResults, SOAP_TYPE__tse__GetRecordingSearchResults, sizeof(_tse__GetRecordingSearchResults), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetRecordingSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetRecordingSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetRecordingSearchResults *p; - size_t k = sizeof(_tse__GetRecordingSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetRecordingSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetRecordingSearchResults); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetRecordingSearchResults, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetRecordingSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetRecordingSearchResults::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetRecordingSearchResults(soap, tag ? tag : "tse:GetRecordingSearchResults", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetRecordingSearchResults::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetRecordingSearchResults(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetRecordingSearchResults * SOAP_FMAC4 soap_get__tse__GetRecordingSearchResults(struct soap *soap, _tse__GetRecordingSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetRecordingSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindRecordingsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__JobToken(soap, &this->_tse__FindRecordingsResponse::SearchToken); -} - -void _tse__FindRecordingsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__JobToken(soap, &this->_tse__FindRecordingsResponse::SearchToken); -#endif -} - -int _tse__FindRecordingsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindRecordingsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindRecordingsResponse(struct soap *soap, const char *tag, int id, const _tse__FindRecordingsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindRecordingsResponse), type)) - return soap->error; - soap_element_result(soap, "tse:SearchToken"); - if (soap_out_tt__JobToken(soap, "tse:SearchToken", -1, &a->_tse__FindRecordingsResponse::SearchToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindRecordingsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindRecordingsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindRecordingsResponse * SOAP_FMAC4 soap_in__tse__FindRecordingsResponse(struct soap *soap, const char *tag, _tse__FindRecordingsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindRecordingsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindRecordingsResponse, sizeof(_tse__FindRecordingsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindRecordingsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindRecordingsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__JobToken(soap, "tse:SearchToken", &a->_tse__FindRecordingsResponse::SearchToken, "tt:JobToken")) - { soap_flag_SearchToken1--; - continue; - } - } - soap_check_result(soap, "tse:SearchToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindRecordingsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindRecordingsResponse, SOAP_TYPE__tse__FindRecordingsResponse, sizeof(_tse__FindRecordingsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindRecordingsResponse * SOAP_FMAC2 soap_instantiate__tse__FindRecordingsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindRecordingsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindRecordingsResponse *p; - size_t k = sizeof(_tse__FindRecordingsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindRecordingsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindRecordingsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindRecordingsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindRecordingsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindRecordingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindRecordingsResponse(soap, tag ? tag : "tse:FindRecordingsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindRecordingsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindRecordingsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindRecordingsResponse * SOAP_FMAC4 soap_get__tse__FindRecordingsResponse(struct soap *soap, _tse__FindRecordingsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindRecordingsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__FindRecordings::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__FindRecordings::Scope = NULL; - this->_tse__FindRecordings::MaxMatches = NULL; - soap_default_xsd__duration(soap, &this->_tse__FindRecordings::KeepAliveTime); -} - -void _tse__FindRecordings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SearchScope(soap, &this->_tse__FindRecordings::Scope); - soap_serialize_PointerToint(soap, &this->_tse__FindRecordings::MaxMatches); - soap_embedded(soap, &this->_tse__FindRecordings::KeepAliveTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tse__FindRecordings::KeepAliveTime); -#endif -} - -int _tse__FindRecordings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__FindRecordings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindRecordings(struct soap *soap, const char *tag, int id, const _tse__FindRecordings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__FindRecordings), type)) - return soap->error; - if (!a->_tse__FindRecordings::Scope) - { if (soap_element_empty(soap, "tse:Scope", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SearchScope(soap, "tse:Scope", -1, &a->_tse__FindRecordings::Scope, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tse:MaxMatches", -1, &a->_tse__FindRecordings::MaxMatches, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tse:KeepAliveTime", -1, &a->_tse__FindRecordings::KeepAliveTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__FindRecordings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__FindRecordings(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__FindRecordings * SOAP_FMAC4 soap_in__tse__FindRecordings(struct soap *soap, const char *tag, _tse__FindRecordings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__FindRecordings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__FindRecordings, sizeof(_tse__FindRecordings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__FindRecordings) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__FindRecordings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Scope1 = 1; - size_t soap_flag_MaxMatches1 = 1; - size_t soap_flag_KeepAliveTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Scope1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SearchScope(soap, "tse:Scope", &a->_tse__FindRecordings::Scope, "tt:SearchScope")) - { soap_flag_Scope1--; - continue; - } - } - if (soap_flag_MaxMatches1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tse:MaxMatches", &a->_tse__FindRecordings::MaxMatches, "xsd:int")) - { soap_flag_MaxMatches1--; - continue; - } - } - if (soap_flag_KeepAliveTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tse:KeepAliveTime", &a->_tse__FindRecordings::KeepAliveTime, "xsd:duration")) - { soap_flag_KeepAliveTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__FindRecordings::Scope || soap_flag_KeepAliveTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__FindRecordings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__FindRecordings, SOAP_TYPE__tse__FindRecordings, sizeof(_tse__FindRecordings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__FindRecordings * SOAP_FMAC2 soap_instantiate__tse__FindRecordings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__FindRecordings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__FindRecordings *p; - size_t k = sizeof(_tse__FindRecordings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__FindRecordings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__FindRecordings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__FindRecordings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__FindRecordings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__FindRecordings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__FindRecordings(soap, tag ? tag : "tse:FindRecordings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__FindRecordings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__FindRecordings(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__FindRecordings * SOAP_FMAC4 soap_get__tse__FindRecordings(struct soap *soap, _tse__FindRecordings *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__FindRecordings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetMediaAttributesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__MediaAttributes(soap, &this->_tse__GetMediaAttributesResponse::MediaAttributes); -} - -void _tse__GetMediaAttributesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__MediaAttributes(soap, &this->_tse__GetMediaAttributesResponse::MediaAttributes); -#endif -} - -int _tse__GetMediaAttributesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetMediaAttributesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMediaAttributesResponse(struct soap *soap, const char *tag, int id, const _tse__GetMediaAttributesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetMediaAttributesResponse), type)) - return soap->error; - soap_element_result(soap, "tse:MediaAttributes"); - if (soap_out_std__vectorTemplateOfPointerTott__MediaAttributes(soap, "tse:MediaAttributes", -1, &a->_tse__GetMediaAttributesResponse::MediaAttributes, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetMediaAttributesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetMediaAttributesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetMediaAttributesResponse * SOAP_FMAC4 soap_in__tse__GetMediaAttributesResponse(struct soap *soap, const char *tag, _tse__GetMediaAttributesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetMediaAttributesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetMediaAttributesResponse, sizeof(_tse__GetMediaAttributesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetMediaAttributesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetMediaAttributesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__MediaAttributes(soap, "tse:MediaAttributes", &a->_tse__GetMediaAttributesResponse::MediaAttributes, "tt:MediaAttributes")) - continue; - } - soap_check_result(soap, "tse:MediaAttributes"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tse__GetMediaAttributesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetMediaAttributesResponse, SOAP_TYPE__tse__GetMediaAttributesResponse, sizeof(_tse__GetMediaAttributesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetMediaAttributesResponse * SOAP_FMAC2 soap_instantiate__tse__GetMediaAttributesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetMediaAttributesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetMediaAttributesResponse *p; - size_t k = sizeof(_tse__GetMediaAttributesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetMediaAttributesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetMediaAttributesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetMediaAttributesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetMediaAttributesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetMediaAttributesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetMediaAttributesResponse(soap, tag ? tag : "tse:GetMediaAttributesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetMediaAttributesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetMediaAttributesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetMediaAttributesResponse * SOAP_FMAC4 soap_get__tse__GetMediaAttributesResponse(struct soap *soap, _tse__GetMediaAttributesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetMediaAttributesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetMediaAttributes::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__RecordingReference(soap, &this->_tse__GetMediaAttributes::RecordingTokens); - soap_default_xsd__dateTime(soap, &this->_tse__GetMediaAttributes::Time); -} - -void _tse__GetMediaAttributes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__RecordingReference(soap, &this->_tse__GetMediaAttributes::RecordingTokens); - soap_embedded(soap, &this->_tse__GetMediaAttributes::Time, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tse__GetMediaAttributes::Time); -#endif -} - -int _tse__GetMediaAttributes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetMediaAttributes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMediaAttributes(struct soap *soap, const char *tag, int id, const _tse__GetMediaAttributes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetMediaAttributes), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__RecordingReference(soap, "tse:RecordingTokens", -1, &a->_tse__GetMediaAttributes::RecordingTokens, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tse:Time", -1, &a->_tse__GetMediaAttributes::Time, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetMediaAttributes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetMediaAttributes(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetMediaAttributes * SOAP_FMAC4 soap_in__tse__GetMediaAttributes(struct soap *soap, const char *tag, _tse__GetMediaAttributes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetMediaAttributes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetMediaAttributes, sizeof(_tse__GetMediaAttributes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetMediaAttributes) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetMediaAttributes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Time1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__RecordingReference(soap, "tse:RecordingTokens", &a->_tse__GetMediaAttributes::RecordingTokens, "tt:RecordingReference")) - continue; - } - if (soap_flag_Time1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tse:Time", &a->_tse__GetMediaAttributes::Time, "xsd:dateTime")) - { soap_flag_Time1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Time1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetMediaAttributes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetMediaAttributes, SOAP_TYPE__tse__GetMediaAttributes, sizeof(_tse__GetMediaAttributes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetMediaAttributes * SOAP_FMAC2 soap_instantiate__tse__GetMediaAttributes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetMediaAttributes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetMediaAttributes *p; - size_t k = sizeof(_tse__GetMediaAttributes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetMediaAttributes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetMediaAttributes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetMediaAttributes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetMediaAttributes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetMediaAttributes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetMediaAttributes(soap, tag ? tag : "tse:GetMediaAttributes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetMediaAttributes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetMediaAttributes(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetMediaAttributes * SOAP_FMAC4 soap_get__tse__GetMediaAttributes(struct soap *soap, _tse__GetMediaAttributes *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetMediaAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetRecordingInformationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__GetRecordingInformationResponse::RecordingInformation = NULL; -} - -void _tse__GetRecordingInformationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingInformation(soap, &this->_tse__GetRecordingInformationResponse::RecordingInformation); -#endif -} - -int _tse__GetRecordingInformationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetRecordingInformationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingInformationResponse(struct soap *soap, const char *tag, int id, const _tse__GetRecordingInformationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetRecordingInformationResponse), type)) - return soap->error; - if (a->RecordingInformation) - soap_element_result(soap, "tse:RecordingInformation"); - if (!a->_tse__GetRecordingInformationResponse::RecordingInformation) - { if (soap_element_empty(soap, "tse:RecordingInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingInformation(soap, "tse:RecordingInformation", -1, &a->_tse__GetRecordingInformationResponse::RecordingInformation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetRecordingInformationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetRecordingInformationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetRecordingInformationResponse * SOAP_FMAC4 soap_in__tse__GetRecordingInformationResponse(struct soap *soap, const char *tag, _tse__GetRecordingInformationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetRecordingInformationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetRecordingInformationResponse, sizeof(_tse__GetRecordingInformationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetRecordingInformationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetRecordingInformationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingInformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingInformation(soap, "tse:RecordingInformation", &a->_tse__GetRecordingInformationResponse::RecordingInformation, "tt:RecordingInformation")) - { soap_flag_RecordingInformation1--; - continue; - } - } - soap_check_result(soap, "tse:RecordingInformation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__GetRecordingInformationResponse::RecordingInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetRecordingInformationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetRecordingInformationResponse, SOAP_TYPE__tse__GetRecordingInformationResponse, sizeof(_tse__GetRecordingInformationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetRecordingInformationResponse * SOAP_FMAC2 soap_instantiate__tse__GetRecordingInformationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetRecordingInformationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetRecordingInformationResponse *p; - size_t k = sizeof(_tse__GetRecordingInformationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetRecordingInformationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetRecordingInformationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetRecordingInformationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetRecordingInformationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetRecordingInformationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetRecordingInformationResponse(soap, tag ? tag : "tse:GetRecordingInformationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetRecordingInformationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetRecordingInformationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetRecordingInformationResponse * SOAP_FMAC4 soap_get__tse__GetRecordingInformationResponse(struct soap *soap, _tse__GetRecordingInformationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetRecordingInformationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetRecordingInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_tse__GetRecordingInformation::RecordingToken); -} - -void _tse__GetRecordingInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_tse__GetRecordingInformation::RecordingToken); -#endif -} - -int _tse__GetRecordingInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetRecordingInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingInformation(struct soap *soap, const char *tag, int id, const _tse__GetRecordingInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetRecordingInformation), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tse:RecordingToken", -1, &a->_tse__GetRecordingInformation::RecordingToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetRecordingInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetRecordingInformation(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetRecordingInformation * SOAP_FMAC4 soap_in__tse__GetRecordingInformation(struct soap *soap, const char *tag, _tse__GetRecordingInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetRecordingInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetRecordingInformation, sizeof(_tse__GetRecordingInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetRecordingInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetRecordingInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tse:RecordingToken", &a->_tse__GetRecordingInformation::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetRecordingInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetRecordingInformation, SOAP_TYPE__tse__GetRecordingInformation, sizeof(_tse__GetRecordingInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetRecordingInformation * SOAP_FMAC2 soap_instantiate__tse__GetRecordingInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetRecordingInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetRecordingInformation *p; - size_t k = sizeof(_tse__GetRecordingInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetRecordingInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetRecordingInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetRecordingInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetRecordingInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetRecordingInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetRecordingInformation(soap, tag ? tag : "tse:GetRecordingInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetRecordingInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetRecordingInformation(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetRecordingInformation * SOAP_FMAC4 soap_get__tse__GetRecordingInformation(struct soap *soap, _tse__GetRecordingInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetRecordingInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetRecordingSummaryResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__GetRecordingSummaryResponse::Summary = NULL; -} - -void _tse__GetRecordingSummaryResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingSummary(soap, &this->_tse__GetRecordingSummaryResponse::Summary); -#endif -} - -int _tse__GetRecordingSummaryResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetRecordingSummaryResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSummaryResponse(struct soap *soap, const char *tag, int id, const _tse__GetRecordingSummaryResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetRecordingSummaryResponse), type)) - return soap->error; - if (a->Summary) - soap_element_result(soap, "tse:Summary"); - if (!a->_tse__GetRecordingSummaryResponse::Summary) - { if (soap_element_empty(soap, "tse:Summary", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingSummary(soap, "tse:Summary", -1, &a->_tse__GetRecordingSummaryResponse::Summary, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetRecordingSummaryResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetRecordingSummaryResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetRecordingSummaryResponse * SOAP_FMAC4 soap_in__tse__GetRecordingSummaryResponse(struct soap *soap, const char *tag, _tse__GetRecordingSummaryResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetRecordingSummaryResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetRecordingSummaryResponse, sizeof(_tse__GetRecordingSummaryResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetRecordingSummaryResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetRecordingSummaryResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Summary1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Summary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingSummary(soap, "tse:Summary", &a->_tse__GetRecordingSummaryResponse::Summary, "tt:RecordingSummary")) - { soap_flag_Summary1--; - continue; - } - } - soap_check_result(soap, "tse:Summary"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__GetRecordingSummaryResponse::Summary)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetRecordingSummaryResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetRecordingSummaryResponse, SOAP_TYPE__tse__GetRecordingSummaryResponse, sizeof(_tse__GetRecordingSummaryResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetRecordingSummaryResponse * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSummaryResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetRecordingSummaryResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetRecordingSummaryResponse *p; - size_t k = sizeof(_tse__GetRecordingSummaryResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetRecordingSummaryResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetRecordingSummaryResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetRecordingSummaryResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetRecordingSummaryResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetRecordingSummaryResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetRecordingSummaryResponse(soap, tag ? tag : "tse:GetRecordingSummaryResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetRecordingSummaryResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetRecordingSummaryResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetRecordingSummaryResponse * SOAP_FMAC4 soap_get__tse__GetRecordingSummaryResponse(struct soap *soap, _tse__GetRecordingSummaryResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetRecordingSummaryResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetRecordingSummary::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tse__GetRecordingSummary::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tse__GetRecordingSummary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetRecordingSummary(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSummary(struct soap *soap, const char *tag, int id, const _tse__GetRecordingSummary *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetRecordingSummary), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetRecordingSummary::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetRecordingSummary(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetRecordingSummary * SOAP_FMAC4 soap_in__tse__GetRecordingSummary(struct soap *soap, const char *tag, _tse__GetRecordingSummary *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetRecordingSummary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetRecordingSummary, sizeof(_tse__GetRecordingSummary), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetRecordingSummary) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetRecordingSummary *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tse__GetRecordingSummary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetRecordingSummary, SOAP_TYPE__tse__GetRecordingSummary, sizeof(_tse__GetRecordingSummary), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetRecordingSummary * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSummary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetRecordingSummary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetRecordingSummary *p; - size_t k = sizeof(_tse__GetRecordingSummary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetRecordingSummary, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetRecordingSummary); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetRecordingSummary, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetRecordingSummary location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetRecordingSummary::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetRecordingSummary(soap, tag ? tag : "tse:GetRecordingSummary", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetRecordingSummary::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetRecordingSummary(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetRecordingSummary * SOAP_FMAC4 soap_get__tse__GetRecordingSummary(struct soap *soap, _tse__GetRecordingSummary *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetRecordingSummary(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tse__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _tse__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotse__Capabilities(soap, &this->_tse__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _tse__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tse__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tse:Capabilities"); - if (!a->_tse__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tse:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotse__Capabilities(soap, "tse:Capabilities", -1, &a->_tse__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tse__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _tse__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetServiceCapabilitiesResponse, sizeof(_tse__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotse__Capabilities(soap, "tse:Capabilities", &a->_tse__GetServiceCapabilitiesResponse::Capabilities, "tse:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tse:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tse__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tse__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetServiceCapabilitiesResponse, SOAP_TYPE__tse__GetServiceCapabilitiesResponse, sizeof(_tse__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tse__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_tse__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetServiceCapabilitiesResponse(soap, tag ? tag : "tse:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tse__GetServiceCapabilitiesResponse(struct soap *soap, _tse__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tse__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tse__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tse__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tse__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _tse__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tse__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tse__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tse__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tse__GetServiceCapabilities * SOAP_FMAC4 soap_in__tse__GetServiceCapabilities(struct soap *soap, const char *tag, _tse__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tse__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tse__GetServiceCapabilities, sizeof(_tse__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tse__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tse__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tse__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tse__GetServiceCapabilities, SOAP_TYPE__tse__GetServiceCapabilities, sizeof(_tse__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tse__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tse__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tse__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tse__GetServiceCapabilities *p; - size_t k = sizeof(_tse__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tse__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tse__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tse__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tse__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tse__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tse__GetServiceCapabilities(soap, tag ? tag : "tse:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tse__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tse__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tse__GetServiceCapabilities * SOAP_FMAC4 soap_get__tse__GetServiceCapabilities(struct soap *soap, _tse__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tse__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tse__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tse__Capabilities::__any); - this->tse__Capabilities::MetadataSearch = NULL; - this->tse__Capabilities::GeneralStartEvents = NULL; - soap_default_xsd__anyAttribute(soap, &this->tse__Capabilities::__anyAttribute); -} - -void tse__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tse__Capabilities::__any); -#endif -} - -int tse__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tse__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tse__Capabilities(struct soap *soap, const char *tag, int id, const tse__Capabilities *a, const char *type) -{ - if (((tse__Capabilities*)a)->MetadataSearch) - { soap_set_attr(soap, "MetadataSearch", soap_bool2s(soap, *((tse__Capabilities*)a)->MetadataSearch), 1); - } - if (((tse__Capabilities*)a)->GeneralStartEvents) - { soap_set_attr(soap, "GeneralStartEvents", soap_bool2s(soap, *((tse__Capabilities*)a)->GeneralStartEvents), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tse__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tse__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tse__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tse__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tse__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tse__Capabilities * SOAP_FMAC4 soap_in_tse__Capabilities(struct soap *soap, const char *tag, tse__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tse__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tse__Capabilities, sizeof(tse__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tse__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tse__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "MetadataSearch", 5, 0); - if (t) - { - if (!(((tse__Capabilities*)a)->MetadataSearch = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tse__Capabilities*)a)->MetadataSearch)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GeneralStartEvents", 5, 0); - if (t) - { - if (!(((tse__Capabilities*)a)->GeneralStartEvents = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tse__Capabilities*)a)->GeneralStartEvents)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tse__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tse__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tse__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tse__Capabilities, SOAP_TYPE_tse__Capabilities, sizeof(tse__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tse__Capabilities * SOAP_FMAC2 soap_instantiate_tse__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tse__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tse__Capabilities *p; - size_t k = sizeof(tse__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tse__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tse__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tse__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tse__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tse__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tse__Capabilities(soap, tag ? tag : "tse:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tse__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tse__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tse__Capabilities * SOAP_FMAC4 soap_get_tse__Capabilities(struct soap *soap, tse__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tse__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__GetReplayConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trp__GetReplayConfigurationResponse::Configuration = NULL; -} - -void _trp__GetReplayConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReplayConfiguration(soap, &this->_trp__GetReplayConfigurationResponse::Configuration); -#endif -} - -int _trp__GetReplayConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__GetReplayConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayConfigurationResponse(struct soap *soap, const char *tag, int id, const _trp__GetReplayConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__GetReplayConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trp:Configuration"); - if (!a->_trp__GetReplayConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trp:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ReplayConfiguration(soap, "trp:Configuration", -1, &a->_trp__GetReplayConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__GetReplayConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__GetReplayConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__GetReplayConfigurationResponse * SOAP_FMAC4 soap_in__trp__GetReplayConfigurationResponse(struct soap *soap, const char *tag, _trp__GetReplayConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__GetReplayConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__GetReplayConfigurationResponse, sizeof(_trp__GetReplayConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__GetReplayConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__GetReplayConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReplayConfiguration(soap, "trp:Configuration", &a->_trp__GetReplayConfigurationResponse::Configuration, "tt:ReplayConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trp:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trp__GetReplayConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trp__GetReplayConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__GetReplayConfigurationResponse, SOAP_TYPE__trp__GetReplayConfigurationResponse, sizeof(_trp__GetReplayConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__GetReplayConfigurationResponse * SOAP_FMAC2 soap_instantiate__trp__GetReplayConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__GetReplayConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__GetReplayConfigurationResponse *p; - size_t k = sizeof(_trp__GetReplayConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__GetReplayConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__GetReplayConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__GetReplayConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__GetReplayConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__GetReplayConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__GetReplayConfigurationResponse(soap, tag ? tag : "trp:GetReplayConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__GetReplayConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__GetReplayConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__GetReplayConfigurationResponse * SOAP_FMAC4 soap_get__trp__GetReplayConfigurationResponse(struct soap *soap, _trp__GetReplayConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__GetReplayConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__GetReplayConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trp__GetReplayConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trp__GetReplayConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__GetReplayConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayConfiguration(struct soap *soap, const char *tag, int id, const _trp__GetReplayConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__GetReplayConfiguration), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__GetReplayConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__GetReplayConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__GetReplayConfiguration * SOAP_FMAC4 soap_in__trp__GetReplayConfiguration(struct soap *soap, const char *tag, _trp__GetReplayConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__GetReplayConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__GetReplayConfiguration, sizeof(_trp__GetReplayConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__GetReplayConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__GetReplayConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trp__GetReplayConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__GetReplayConfiguration, SOAP_TYPE__trp__GetReplayConfiguration, sizeof(_trp__GetReplayConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__GetReplayConfiguration * SOAP_FMAC2 soap_instantiate__trp__GetReplayConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__GetReplayConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__GetReplayConfiguration *p; - size_t k = sizeof(_trp__GetReplayConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__GetReplayConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__GetReplayConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__GetReplayConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__GetReplayConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__GetReplayConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__GetReplayConfiguration(soap, tag ? tag : "trp:GetReplayConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__GetReplayConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__GetReplayConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__GetReplayConfiguration * SOAP_FMAC4 soap_get__trp__GetReplayConfiguration(struct soap *soap, _trp__GetReplayConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__GetReplayConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__SetReplayConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trp__SetReplayConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trp__SetReplayConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__SetReplayConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__SetReplayConfigurationResponse(struct soap *soap, const char *tag, int id, const _trp__SetReplayConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__SetReplayConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__SetReplayConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__SetReplayConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__SetReplayConfigurationResponse * SOAP_FMAC4 soap_in__trp__SetReplayConfigurationResponse(struct soap *soap, const char *tag, _trp__SetReplayConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__SetReplayConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__SetReplayConfigurationResponse, sizeof(_trp__SetReplayConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__SetReplayConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__SetReplayConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trp__SetReplayConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__SetReplayConfigurationResponse, SOAP_TYPE__trp__SetReplayConfigurationResponse, sizeof(_trp__SetReplayConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__SetReplayConfigurationResponse * SOAP_FMAC2 soap_instantiate__trp__SetReplayConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__SetReplayConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__SetReplayConfigurationResponse *p; - size_t k = sizeof(_trp__SetReplayConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__SetReplayConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__SetReplayConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__SetReplayConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__SetReplayConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__SetReplayConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__SetReplayConfigurationResponse(soap, tag ? tag : "trp:SetReplayConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__SetReplayConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__SetReplayConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__SetReplayConfigurationResponse * SOAP_FMAC4 soap_get__trp__SetReplayConfigurationResponse(struct soap *soap, _trp__SetReplayConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__SetReplayConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__SetReplayConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trp__SetReplayConfiguration::Configuration = NULL; -} - -void _trp__SetReplayConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReplayConfiguration(soap, &this->_trp__SetReplayConfiguration::Configuration); -#endif -} - -int _trp__SetReplayConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__SetReplayConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__SetReplayConfiguration(struct soap *soap, const char *tag, int id, const _trp__SetReplayConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__SetReplayConfiguration), type)) - return soap->error; - if (!a->_trp__SetReplayConfiguration::Configuration) - { if (soap_element_empty(soap, "trp:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ReplayConfiguration(soap, "trp:Configuration", -1, &a->_trp__SetReplayConfiguration::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__SetReplayConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__SetReplayConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__SetReplayConfiguration * SOAP_FMAC4 soap_in__trp__SetReplayConfiguration(struct soap *soap, const char *tag, _trp__SetReplayConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__SetReplayConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__SetReplayConfiguration, sizeof(_trp__SetReplayConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__SetReplayConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__SetReplayConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReplayConfiguration(soap, "trp:Configuration", &a->_trp__SetReplayConfiguration::Configuration, "tt:ReplayConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trp__SetReplayConfiguration::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trp__SetReplayConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__SetReplayConfiguration, SOAP_TYPE__trp__SetReplayConfiguration, sizeof(_trp__SetReplayConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__SetReplayConfiguration * SOAP_FMAC2 soap_instantiate__trp__SetReplayConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__SetReplayConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__SetReplayConfiguration *p; - size_t k = sizeof(_trp__SetReplayConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__SetReplayConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__SetReplayConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__SetReplayConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__SetReplayConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__SetReplayConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__SetReplayConfiguration(soap, tag ? tag : "trp:SetReplayConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__SetReplayConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__SetReplayConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__SetReplayConfiguration * SOAP_FMAC4 soap_get__trp__SetReplayConfiguration(struct soap *soap, _trp__SetReplayConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__SetReplayConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__GetReplayUriResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->_trp__GetReplayUriResponse::Uri); -} - -void _trp__GetReplayUriResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trp__GetReplayUriResponse::Uri, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->_trp__GetReplayUriResponse::Uri); -#endif -} - -int _trp__GetReplayUriResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__GetReplayUriResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayUriResponse(struct soap *soap, const char *tag, int id, const _trp__GetReplayUriResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__GetReplayUriResponse), type)) - return soap->error; - soap_element_result(soap, "trp:Uri"); - if (soap_out_xsd__anyURI(soap, "trp:Uri", -1, &a->_trp__GetReplayUriResponse::Uri, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__GetReplayUriResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__GetReplayUriResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__GetReplayUriResponse * SOAP_FMAC4 soap_in__trp__GetReplayUriResponse(struct soap *soap, const char *tag, _trp__GetReplayUriResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__GetReplayUriResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__GetReplayUriResponse, sizeof(_trp__GetReplayUriResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__GetReplayUriResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__GetReplayUriResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Uri1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Uri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "trp:Uri", &a->_trp__GetReplayUriResponse::Uri, "xsd:anyURI")) - { soap_flag_Uri1--; - continue; - } - } - soap_check_result(soap, "trp:Uri"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Uri1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trp__GetReplayUriResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__GetReplayUriResponse, SOAP_TYPE__trp__GetReplayUriResponse, sizeof(_trp__GetReplayUriResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__GetReplayUriResponse * SOAP_FMAC2 soap_instantiate__trp__GetReplayUriResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__GetReplayUriResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__GetReplayUriResponse *p; - size_t k = sizeof(_trp__GetReplayUriResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__GetReplayUriResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__GetReplayUriResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__GetReplayUriResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__GetReplayUriResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__GetReplayUriResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__GetReplayUriResponse(soap, tag ? tag : "trp:GetReplayUriResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__GetReplayUriResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__GetReplayUriResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__GetReplayUriResponse * SOAP_FMAC4 soap_get__trp__GetReplayUriResponse(struct soap *soap, _trp__GetReplayUriResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__GetReplayUriResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__GetReplayUri::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trp__GetReplayUri::StreamSetup = NULL; - soap_default_tt__ReferenceToken(soap, &this->_trp__GetReplayUri::RecordingToken); -} - -void _trp__GetReplayUri::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__StreamSetup(soap, &this->_trp__GetReplayUri::StreamSetup); - soap_embedded(soap, &this->_trp__GetReplayUri::RecordingToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trp__GetReplayUri::RecordingToken); -#endif -} - -int _trp__GetReplayUri::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__GetReplayUri(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayUri(struct soap *soap, const char *tag, int id, const _trp__GetReplayUri *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__GetReplayUri), type)) - return soap->error; - if (!a->_trp__GetReplayUri::StreamSetup) - { if (soap_element_empty(soap, "trp:StreamSetup", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__StreamSetup(soap, "trp:StreamSetup", -1, &a->_trp__GetReplayUri::StreamSetup, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trp:RecordingToken", -1, &a->_trp__GetReplayUri::RecordingToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__GetReplayUri::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__GetReplayUri(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__GetReplayUri * SOAP_FMAC4 soap_in__trp__GetReplayUri(struct soap *soap, const char *tag, _trp__GetReplayUri *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__GetReplayUri*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__GetReplayUri, sizeof(_trp__GetReplayUri), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__GetReplayUri) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__GetReplayUri *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StreamSetup1 = 1; - size_t soap_flag_RecordingToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StreamSetup1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__StreamSetup(soap, "trp:StreamSetup", &a->_trp__GetReplayUri::StreamSetup, "tt:StreamSetup")) - { soap_flag_StreamSetup1--; - continue; - } - } - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trp:RecordingToken", &a->_trp__GetReplayUri::RecordingToken, "tt:ReferenceToken")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trp__GetReplayUri::StreamSetup || soap_flag_RecordingToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trp__GetReplayUri *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__GetReplayUri, SOAP_TYPE__trp__GetReplayUri, sizeof(_trp__GetReplayUri), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__GetReplayUri * SOAP_FMAC2 soap_instantiate__trp__GetReplayUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__GetReplayUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__GetReplayUri *p; - size_t k = sizeof(_trp__GetReplayUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__GetReplayUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__GetReplayUri); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__GetReplayUri, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__GetReplayUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__GetReplayUri::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__GetReplayUri(soap, tag ? tag : "trp:GetReplayUri", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__GetReplayUri::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__GetReplayUri(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__GetReplayUri * SOAP_FMAC4 soap_get__trp__GetReplayUri(struct soap *soap, _trp__GetReplayUri *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__GetReplayUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trp__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _trp__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotrp__Capabilities(soap, &this->_trp__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _trp__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _trp__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "trp:Capabilities"); - if (!a->_trp__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "trp:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrp__Capabilities(soap, "trp:Capabilities", -1, &a->_trp__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trp__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _trp__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__GetServiceCapabilitiesResponse, sizeof(_trp__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrp__Capabilities(soap, "trp:Capabilities", &a->_trp__GetServiceCapabilitiesResponse::Capabilities, "trp:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "trp:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trp__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trp__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__GetServiceCapabilitiesResponse, SOAP_TYPE__trp__GetServiceCapabilitiesResponse, sizeof(_trp__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trp__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_trp__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__GetServiceCapabilitiesResponse(soap, tag ? tag : "trp:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trp__GetServiceCapabilitiesResponse(struct soap *soap, _trp__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trp__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trp__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trp__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trp__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _trp__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trp__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trp__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trp__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _trp__GetServiceCapabilities * SOAP_FMAC4 soap_in__trp__GetServiceCapabilities(struct soap *soap, const char *tag, _trp__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trp__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trp__GetServiceCapabilities, sizeof(_trp__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trp__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_trp__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trp__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trp__GetServiceCapabilities, SOAP_TYPE__trp__GetServiceCapabilities, sizeof(_trp__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trp__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trp__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trp__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trp__GetServiceCapabilities *p; - size_t k = sizeof(_trp__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trp__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trp__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trp__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trp__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trp__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trp__GetServiceCapabilities(soap, tag ? tag : "trp:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trp__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trp__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _trp__GetServiceCapabilities * SOAP_FMAC4 soap_get__trp__GetServiceCapabilities(struct soap *soap, _trp__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__trp__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trp__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trp__Capabilities::__any); - this->trp__Capabilities::ReversePlayback = (bool)0; - this->trp__Capabilities::SessionTimeoutRange = NULL; - this->trp__Capabilities::RTP_USCORERTSP_USCORETCP = NULL; - soap_default_xsd__anyAttribute(soap, &this->trp__Capabilities::__anyAttribute); -} - -void trp__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trp__Capabilities::__any); -#endif -} - -int trp__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trp__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trp__Capabilities(struct soap *soap, const char *tag, int id, const trp__Capabilities *a, const char *type) -{ - if (((trp__Capabilities*)a)->ReversePlayback != (bool)0) - { soap_set_attr(soap, "ReversePlayback", soap_bool2s(soap, ((trp__Capabilities*)a)->ReversePlayback), 1); - } - if (((trp__Capabilities*)a)->SessionTimeoutRange) - { soap_set_attr(soap, "SessionTimeoutRange", soap_tt__FloatAttrList2s(soap, *((trp__Capabilities*)a)->SessionTimeoutRange), 1); - } - if (((trp__Capabilities*)a)->RTP_USCORERTSP_USCORETCP) - { soap_set_attr(soap, "RTP_RTSP_TCP", soap_bool2s(soap, *((trp__Capabilities*)a)->RTP_USCORERTSP_USCORETCP), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trp__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trp__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trp__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trp__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trp__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 trp__Capabilities * SOAP_FMAC4 soap_in_trp__Capabilities(struct soap *soap, const char *tag, trp__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trp__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trp__Capabilities, sizeof(trp__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trp__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (trp__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2bool(soap, soap_attr_value(soap, "ReversePlayback", 5, 0), &((trp__Capabilities*)a)->ReversePlayback)) - return NULL; - { - const char *t = soap_attr_value(soap, "SessionTimeoutRange", 1, 0); - if (t) - { - if (!(((trp__Capabilities*)a)->SessionTimeoutRange = soap_new_tt__FloatAttrList(soap))) - return NULL; - if (soap_s2tt__FloatAttrList(soap, t, ((trp__Capabilities*)a)->SessionTimeoutRange)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RTP_RTSP_TCP", 5, 0); - if (t) - { - if (!(((trp__Capabilities*)a)->RTP_USCORERTSP_USCORETCP = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trp__Capabilities*)a)->RTP_USCORERTSP_USCORETCP)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trp__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trp__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trp__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trp__Capabilities, SOAP_TYPE_trp__Capabilities, sizeof(trp__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trp__Capabilities * SOAP_FMAC2 soap_instantiate_trp__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trp__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trp__Capabilities *p; - size_t k = sizeof(trp__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trp__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trp__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trp__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trp__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trp__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trp__Capabilities(soap, tag ? tag : "trp:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trp__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trp__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 trp__Capabilities * SOAP_FMAC4 soap_get_trp__Capabilities(struct soap *soap, trp__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_trp__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetExportRecordedDataStateResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->_trc__GetExportRecordedDataStateResponse::Progress); - this->_trc__GetExportRecordedDataStateResponse::FileProgressStatus = NULL; - soap_default_xsd__anyType(soap, &this->_trc__GetExportRecordedDataStateResponse::__any); -} - -void _trc__GetExportRecordedDataStateResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trc__GetExportRecordedDataStateResponse::Progress, SOAP_TYPE_float); - soap_serialize_PointerTott__ArrayOfFileProgress(soap, &this->_trc__GetExportRecordedDataStateResponse::FileProgressStatus); - soap_embedded(soap, &this->_trc__GetExportRecordedDataStateResponse::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_trc__GetExportRecordedDataStateResponse::__any); -#endif -} - -int _trc__GetExportRecordedDataStateResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetExportRecordedDataStateResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetExportRecordedDataStateResponse(struct soap *soap, const char *tag, int id, const _trc__GetExportRecordedDataStateResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetExportRecordedDataStateResponse), type)) - return soap->error; - soap_element_result(soap, "trc:Progress"); - if (soap_out_float(soap, "trc:Progress", -1, &a->_trc__GetExportRecordedDataStateResponse::Progress, "")) - return soap->error; - if (!a->_trc__GetExportRecordedDataStateResponse::FileProgressStatus) - { if (soap_element_empty(soap, "trc:FileProgressStatus", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ArrayOfFileProgress(soap, "trc:FileProgressStatus", -1, &a->_trc__GetExportRecordedDataStateResponse::FileProgressStatus, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->_trc__GetExportRecordedDataStateResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetExportRecordedDataStateResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetExportRecordedDataStateResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetExportRecordedDataStateResponse * SOAP_FMAC4 soap_in__trc__GetExportRecordedDataStateResponse(struct soap *soap, const char *tag, _trc__GetExportRecordedDataStateResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetExportRecordedDataStateResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetExportRecordedDataStateResponse, sizeof(_trc__GetExportRecordedDataStateResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetExportRecordedDataStateResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetExportRecordedDataStateResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Progress1 = 1; - size_t soap_flag_FileProgressStatus1 = 1; - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Progress1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "trc:Progress", &a->_trc__GetExportRecordedDataStateResponse::Progress, "xsd:float")) - { soap_flag_Progress1--; - continue; - } - } - if (soap_flag_FileProgressStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ArrayOfFileProgress(soap, "trc:FileProgressStatus", &a->_trc__GetExportRecordedDataStateResponse::FileProgressStatus, "tt:ArrayOfFileProgress")) - { soap_flag_FileProgressStatus1--; - continue; - } - } - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->_trc__GetExportRecordedDataStateResponse::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - soap_check_result(soap, "trc:Progress"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Progress1 > 0 || !a->_trc__GetExportRecordedDataStateResponse::FileProgressStatus)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetExportRecordedDataStateResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetExportRecordedDataStateResponse, SOAP_TYPE__trc__GetExportRecordedDataStateResponse, sizeof(_trc__GetExportRecordedDataStateResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetExportRecordedDataStateResponse * SOAP_FMAC2 soap_instantiate__trc__GetExportRecordedDataStateResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetExportRecordedDataStateResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetExportRecordedDataStateResponse *p; - size_t k = sizeof(_trc__GetExportRecordedDataStateResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetExportRecordedDataStateResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetExportRecordedDataStateResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetExportRecordedDataStateResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetExportRecordedDataStateResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetExportRecordedDataStateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetExportRecordedDataStateResponse(soap, tag ? tag : "trc:GetExportRecordedDataStateResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetExportRecordedDataStateResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetExportRecordedDataStateResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetExportRecordedDataStateResponse * SOAP_FMAC4 soap_get__trc__GetExportRecordedDataStateResponse(struct soap *soap, _trc__GetExportRecordedDataStateResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetExportRecordedDataStateResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetExportRecordedDataState::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trc__GetExportRecordedDataState::OperationToken); -} - -void _trc__GetExportRecordedDataState::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trc__GetExportRecordedDataState::OperationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trc__GetExportRecordedDataState::OperationToken); -#endif -} - -int _trc__GetExportRecordedDataState::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetExportRecordedDataState(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetExportRecordedDataState(struct soap *soap, const char *tag, int id, const _trc__GetExportRecordedDataState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetExportRecordedDataState), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trc:OperationToken", -1, &a->_trc__GetExportRecordedDataState::OperationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetExportRecordedDataState::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetExportRecordedDataState(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetExportRecordedDataState * SOAP_FMAC4 soap_in__trc__GetExportRecordedDataState(struct soap *soap, const char *tag, _trc__GetExportRecordedDataState *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetExportRecordedDataState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetExportRecordedDataState, sizeof(_trc__GetExportRecordedDataState), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetExportRecordedDataState) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetExportRecordedDataState *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OperationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OperationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trc:OperationToken", &a->_trc__GetExportRecordedDataState::OperationToken, "tt:ReferenceToken")) - { soap_flag_OperationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_OperationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetExportRecordedDataState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetExportRecordedDataState, SOAP_TYPE__trc__GetExportRecordedDataState, sizeof(_trc__GetExportRecordedDataState), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetExportRecordedDataState * SOAP_FMAC2 soap_instantiate__trc__GetExportRecordedDataState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetExportRecordedDataState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetExportRecordedDataState *p; - size_t k = sizeof(_trc__GetExportRecordedDataState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetExportRecordedDataState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetExportRecordedDataState); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetExportRecordedDataState, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetExportRecordedDataState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetExportRecordedDataState::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetExportRecordedDataState(soap, tag ? tag : "trc:GetExportRecordedDataState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetExportRecordedDataState::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetExportRecordedDataState(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetExportRecordedDataState * SOAP_FMAC4 soap_get__trc__GetExportRecordedDataState(struct soap *soap, _trc__GetExportRecordedDataState *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetExportRecordedDataState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__StopExportRecordedDataResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->_trc__StopExportRecordedDataResponse::Progress); - this->_trc__StopExportRecordedDataResponse::FileProgressStatus = NULL; - soap_default_xsd__anyType(soap, &this->_trc__StopExportRecordedDataResponse::__any); -} - -void _trc__StopExportRecordedDataResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trc__StopExportRecordedDataResponse::Progress, SOAP_TYPE_float); - soap_serialize_PointerTott__ArrayOfFileProgress(soap, &this->_trc__StopExportRecordedDataResponse::FileProgressStatus); - soap_embedded(soap, &this->_trc__StopExportRecordedDataResponse::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->_trc__StopExportRecordedDataResponse::__any); -#endif -} - -int _trc__StopExportRecordedDataResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__StopExportRecordedDataResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__StopExportRecordedDataResponse(struct soap *soap, const char *tag, int id, const _trc__StopExportRecordedDataResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__StopExportRecordedDataResponse), type)) - return soap->error; - soap_element_result(soap, "trc:Progress"); - if (soap_out_float(soap, "trc:Progress", -1, &a->_trc__StopExportRecordedDataResponse::Progress, "")) - return soap->error; - if (!a->_trc__StopExportRecordedDataResponse::FileProgressStatus) - { if (soap_element_empty(soap, "trc:FileProgressStatus", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ArrayOfFileProgress(soap, "trc:FileProgressStatus", -1, &a->_trc__StopExportRecordedDataResponse::FileProgressStatus, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->_trc__StopExportRecordedDataResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__StopExportRecordedDataResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__StopExportRecordedDataResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__StopExportRecordedDataResponse * SOAP_FMAC4 soap_in__trc__StopExportRecordedDataResponse(struct soap *soap, const char *tag, _trc__StopExportRecordedDataResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__StopExportRecordedDataResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__StopExportRecordedDataResponse, sizeof(_trc__StopExportRecordedDataResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__StopExportRecordedDataResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__StopExportRecordedDataResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Progress1 = 1; - size_t soap_flag_FileProgressStatus1 = 1; - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Progress1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "trc:Progress", &a->_trc__StopExportRecordedDataResponse::Progress, "xsd:float")) - { soap_flag_Progress1--; - continue; - } - } - if (soap_flag_FileProgressStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ArrayOfFileProgress(soap, "trc:FileProgressStatus", &a->_trc__StopExportRecordedDataResponse::FileProgressStatus, "tt:ArrayOfFileProgress")) - { soap_flag_FileProgressStatus1--; - continue; - } - } - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->_trc__StopExportRecordedDataResponse::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - soap_check_result(soap, "trc:Progress"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Progress1 > 0 || !a->_trc__StopExportRecordedDataResponse::FileProgressStatus)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__StopExportRecordedDataResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__StopExportRecordedDataResponse, SOAP_TYPE__trc__StopExportRecordedDataResponse, sizeof(_trc__StopExportRecordedDataResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__StopExportRecordedDataResponse * SOAP_FMAC2 soap_instantiate__trc__StopExportRecordedDataResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__StopExportRecordedDataResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__StopExportRecordedDataResponse *p; - size_t k = sizeof(_trc__StopExportRecordedDataResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__StopExportRecordedDataResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__StopExportRecordedDataResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__StopExportRecordedDataResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__StopExportRecordedDataResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__StopExportRecordedDataResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__StopExportRecordedDataResponse(soap, tag ? tag : "trc:StopExportRecordedDataResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__StopExportRecordedDataResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__StopExportRecordedDataResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__StopExportRecordedDataResponse * SOAP_FMAC4 soap_get__trc__StopExportRecordedDataResponse(struct soap *soap, _trc__StopExportRecordedDataResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__StopExportRecordedDataResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__StopExportRecordedData::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trc__StopExportRecordedData::OperationToken); -} - -void _trc__StopExportRecordedData::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trc__StopExportRecordedData::OperationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trc__StopExportRecordedData::OperationToken); -#endif -} - -int _trc__StopExportRecordedData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__StopExportRecordedData(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__StopExportRecordedData(struct soap *soap, const char *tag, int id, const _trc__StopExportRecordedData *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__StopExportRecordedData), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trc:OperationToken", -1, &a->_trc__StopExportRecordedData::OperationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__StopExportRecordedData::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__StopExportRecordedData(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__StopExportRecordedData * SOAP_FMAC4 soap_in__trc__StopExportRecordedData(struct soap *soap, const char *tag, _trc__StopExportRecordedData *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__StopExportRecordedData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__StopExportRecordedData, sizeof(_trc__StopExportRecordedData), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__StopExportRecordedData) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__StopExportRecordedData *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OperationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OperationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trc:OperationToken", &a->_trc__StopExportRecordedData::OperationToken, "tt:ReferenceToken")) - { soap_flag_OperationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_OperationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__StopExportRecordedData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__StopExportRecordedData, SOAP_TYPE__trc__StopExportRecordedData, sizeof(_trc__StopExportRecordedData), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__StopExportRecordedData * SOAP_FMAC2 soap_instantiate__trc__StopExportRecordedData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__StopExportRecordedData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__StopExportRecordedData *p; - size_t k = sizeof(_trc__StopExportRecordedData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__StopExportRecordedData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__StopExportRecordedData); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__StopExportRecordedData, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__StopExportRecordedData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__StopExportRecordedData::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__StopExportRecordedData(soap, tag ? tag : "trc:StopExportRecordedData", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__StopExportRecordedData::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__StopExportRecordedData(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__StopExportRecordedData * SOAP_FMAC4 soap_get__trc__StopExportRecordedData(struct soap *soap, _trc__StopExportRecordedData *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__StopExportRecordedData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__ExportRecordedDataResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trc__ExportRecordedDataResponse::OperationToken); - soap_default_std__vectorTemplateOfstd__string(soap, &this->_trc__ExportRecordedDataResponse::FileNames); - this->_trc__ExportRecordedDataResponse::Extension = NULL; -} - -void _trc__ExportRecordedDataResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trc__ExportRecordedDataResponse::OperationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trc__ExportRecordedDataResponse::OperationToken); - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->_trc__ExportRecordedDataResponse::FileNames); - soap_serialize_PointerTo_trc__ExportRecordedDataResponse_Extension(soap, &this->_trc__ExportRecordedDataResponse::Extension); -#endif -} - -int _trc__ExportRecordedDataResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__ExportRecordedDataResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__ExportRecordedDataResponse(struct soap *soap, const char *tag, int id, const _trc__ExportRecordedDataResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__ExportRecordedDataResponse), type)) - return soap->error; - soap_element_result(soap, "trc:OperationToken"); - if (soap_out_tt__ReferenceToken(soap, "trc:OperationToken", -1, &a->_trc__ExportRecordedDataResponse::OperationToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "trc:FileNames", -1, &a->_trc__ExportRecordedDataResponse::FileNames, "")) - return soap->error; - if (soap_out_PointerTo_trc__ExportRecordedDataResponse_Extension(soap, "trc:Extension", -1, &a->_trc__ExportRecordedDataResponse::Extension, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__ExportRecordedDataResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__ExportRecordedDataResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__ExportRecordedDataResponse * SOAP_FMAC4 soap_in__trc__ExportRecordedDataResponse(struct soap *soap, const char *tag, _trc__ExportRecordedDataResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__ExportRecordedDataResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__ExportRecordedDataResponse, sizeof(_trc__ExportRecordedDataResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__ExportRecordedDataResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__ExportRecordedDataResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OperationToken1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OperationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trc:OperationToken", &a->_trc__ExportRecordedDataResponse::OperationToken, "tt:ReferenceToken")) - { soap_flag_OperationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "trc:FileNames", &a->_trc__ExportRecordedDataResponse::FileNames, "xsd:string")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__ExportRecordedDataResponse_Extension(soap, "trc:Extension", &a->_trc__ExportRecordedDataResponse::Extension, "")) - { soap_flag_Extension1--; - continue; - } - } - soap_check_result(soap, "trc:OperationToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_OperationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__ExportRecordedDataResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__ExportRecordedDataResponse, SOAP_TYPE__trc__ExportRecordedDataResponse, sizeof(_trc__ExportRecordedDataResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__ExportRecordedDataResponse * SOAP_FMAC2 soap_instantiate__trc__ExportRecordedDataResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__ExportRecordedDataResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__ExportRecordedDataResponse *p; - size_t k = sizeof(_trc__ExportRecordedDataResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__ExportRecordedDataResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__ExportRecordedDataResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__ExportRecordedDataResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__ExportRecordedDataResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__ExportRecordedDataResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__ExportRecordedDataResponse(soap, tag ? tag : "trc:ExportRecordedDataResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__ExportRecordedDataResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__ExportRecordedDataResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__ExportRecordedDataResponse * SOAP_FMAC4 soap_get__trc__ExportRecordedDataResponse(struct soap *soap, _trc__ExportRecordedDataResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__ExportRecordedDataResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__ExportRecordedData::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__ExportRecordedData::SearchScope = NULL; - soap_default_std__string(soap, &this->_trc__ExportRecordedData::FileFormat); - this->_trc__ExportRecordedData::StorageDestination = NULL; -} - -void _trc__ExportRecordedData::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SearchScope(soap, &this->_trc__ExportRecordedData::SearchScope); - soap_embedded(soap, &this->_trc__ExportRecordedData::FileFormat, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_trc__ExportRecordedData::FileFormat); - soap_serialize_PointerTott__StorageReferencePath(soap, &this->_trc__ExportRecordedData::StorageDestination); -#endif -} - -int _trc__ExportRecordedData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__ExportRecordedData(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__ExportRecordedData(struct soap *soap, const char *tag, int id, const _trc__ExportRecordedData *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__ExportRecordedData), type)) - return soap->error; - if (!a->_trc__ExportRecordedData::SearchScope) - { if (soap_element_empty(soap, "trc:SearchScope", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SearchScope(soap, "trc:SearchScope", -1, &a->_trc__ExportRecordedData::SearchScope, "")) - return soap->error; - if (soap_out_std__string(soap, "trc:FileFormat", -1, &a->_trc__ExportRecordedData::FileFormat, "")) - return soap->error; - if (!a->_trc__ExportRecordedData::StorageDestination) - { if (soap_element_empty(soap, "trc:StorageDestination", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__StorageReferencePath(soap, "trc:StorageDestination", -1, &a->_trc__ExportRecordedData::StorageDestination, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__ExportRecordedData::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__ExportRecordedData(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__ExportRecordedData * SOAP_FMAC4 soap_in__trc__ExportRecordedData(struct soap *soap, const char *tag, _trc__ExportRecordedData *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__ExportRecordedData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__ExportRecordedData, sizeof(_trc__ExportRecordedData), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__ExportRecordedData) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__ExportRecordedData *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SearchScope1 = 1; - size_t soap_flag_FileFormat1 = 1; - size_t soap_flag_StorageDestination1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchScope1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SearchScope(soap, "trc:SearchScope", &a->_trc__ExportRecordedData::SearchScope, "tt:SearchScope")) - { soap_flag_SearchScope1--; - continue; - } - } - if (soap_flag_FileFormat1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "trc:FileFormat", &a->_trc__ExportRecordedData::FileFormat, "xsd:string")) - { soap_flag_FileFormat1--; - continue; - } - } - if (soap_flag_StorageDestination1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__StorageReferencePath(soap, "trc:StorageDestination", &a->_trc__ExportRecordedData::StorageDestination, "tt:StorageReferencePath")) - { soap_flag_StorageDestination1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__ExportRecordedData::SearchScope || soap_flag_FileFormat1 > 0 || !a->_trc__ExportRecordedData::StorageDestination)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__ExportRecordedData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__ExportRecordedData, SOAP_TYPE__trc__ExportRecordedData, sizeof(_trc__ExportRecordedData), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__ExportRecordedData * SOAP_FMAC2 soap_instantiate__trc__ExportRecordedData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__ExportRecordedData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__ExportRecordedData *p; - size_t k = sizeof(_trc__ExportRecordedData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__ExportRecordedData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__ExportRecordedData); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__ExportRecordedData, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__ExportRecordedData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__ExportRecordedData::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__ExportRecordedData(soap, tag ? tag : "trc:ExportRecordedData", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__ExportRecordedData::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__ExportRecordedData(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__ExportRecordedData * SOAP_FMAC4 soap_get__trc__ExportRecordedData(struct soap *soap, _trc__ExportRecordedData *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__ExportRecordedData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__GetRecordingOptionsResponse::Options = NULL; -} - -void _trc__GetRecordingOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotrc__RecordingOptions(soap, &this->_trc__GetRecordingOptionsResponse::Options); -#endif -} - -int _trc__GetRecordingOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingOptionsResponse(struct soap *soap, const char *tag, int id, const _trc__GetRecordingOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trc:Options"); - if (!a->_trc__GetRecordingOptionsResponse::Options) - { if (soap_element_empty(soap, "trc:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrc__RecordingOptions(soap, "trc:Options", -1, &a->_trc__GetRecordingOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingOptionsResponse * SOAP_FMAC4 soap_in__trc__GetRecordingOptionsResponse(struct soap *soap, const char *tag, _trc__GetRecordingOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingOptionsResponse, sizeof(_trc__GetRecordingOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrc__RecordingOptions(soap, "trc:Options", &a->_trc__GetRecordingOptionsResponse::Options, "trc:RecordingOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trc:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__GetRecordingOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingOptionsResponse, SOAP_TYPE__trc__GetRecordingOptionsResponse, sizeof(_trc__GetRecordingOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingOptionsResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingOptionsResponse *p; - size_t k = sizeof(_trc__GetRecordingOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingOptionsResponse(soap, tag ? tag : "trc:GetRecordingOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingOptionsResponse * SOAP_FMAC4 soap_get__trc__GetRecordingOptionsResponse(struct soap *soap, _trc__GetRecordingOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__GetRecordingOptions::RecordingToken); -} - -void _trc__GetRecordingOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__GetRecordingOptions::RecordingToken); -#endif -} - -int _trc__GetRecordingOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingOptions(struct soap *soap, const char *tag, int id, const _trc__GetRecordingOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingOptions), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__GetRecordingOptions::RecordingToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingOptions * SOAP_FMAC4 soap_in__trc__GetRecordingOptions(struct soap *soap, const char *tag, _trc__GetRecordingOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingOptions, sizeof(_trc__GetRecordingOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__GetRecordingOptions::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingOptions, SOAP_TYPE__trc__GetRecordingOptions, sizeof(_trc__GetRecordingOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingOptions * SOAP_FMAC2 soap_instantiate__trc__GetRecordingOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingOptions *p; - size_t k = sizeof(_trc__GetRecordingOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingOptions(soap, tag ? tag : "trc:GetRecordingOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingOptions * SOAP_FMAC4 soap_get__trc__GetRecordingOptions(struct soap *soap, _trc__GetRecordingOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingJobStateResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__GetRecordingJobStateResponse::State = NULL; -} - -void _trc__GetRecordingJobStateResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingJobStateInformation(soap, &this->_trc__GetRecordingJobStateResponse::State); -#endif -} - -int _trc__GetRecordingJobStateResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingJobStateResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobStateResponse(struct soap *soap, const char *tag, int id, const _trc__GetRecordingJobStateResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingJobStateResponse), type)) - return soap->error; - if (a->State) - soap_element_result(soap, "trc:State"); - if (!a->_trc__GetRecordingJobStateResponse::State) - { if (soap_element_empty(soap, "trc:State", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobStateInformation(soap, "trc:State", -1, &a->_trc__GetRecordingJobStateResponse::State, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingJobStateResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingJobStateResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobStateResponse * SOAP_FMAC4 soap_in__trc__GetRecordingJobStateResponse(struct soap *soap, const char *tag, _trc__GetRecordingJobStateResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingJobStateResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingJobStateResponse, sizeof(_trc__GetRecordingJobStateResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingJobStateResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingJobStateResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_State1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_State1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobStateInformation(soap, "trc:State", &a->_trc__GetRecordingJobStateResponse::State, "tt:RecordingJobStateInformation")) - { soap_flag_State1--; - continue; - } - } - soap_check_result(soap, "trc:State"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__GetRecordingJobStateResponse::State)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingJobStateResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingJobStateResponse, SOAP_TYPE__trc__GetRecordingJobStateResponse, sizeof(_trc__GetRecordingJobStateResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingJobStateResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobStateResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingJobStateResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingJobStateResponse *p; - size_t k = sizeof(_trc__GetRecordingJobStateResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingJobStateResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingJobStateResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingJobStateResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingJobStateResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingJobStateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingJobStateResponse(soap, tag ? tag : "trc:GetRecordingJobStateResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingJobStateResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingJobStateResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobStateResponse * SOAP_FMAC4 soap_get__trc__GetRecordingJobStateResponse(struct soap *soap, _trc__GetRecordingJobStateResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingJobStateResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingJobState::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->_trc__GetRecordingJobState::JobToken); -} - -void _trc__GetRecordingJobState::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->_trc__GetRecordingJobState::JobToken); -#endif -} - -int _trc__GetRecordingJobState::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingJobState(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobState(struct soap *soap, const char *tag, int id, const _trc__GetRecordingJobState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingJobState), type)) - return soap->error; - if (soap_out_tt__RecordingJobReference(soap, "trc:JobToken", -1, &a->_trc__GetRecordingJobState::JobToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingJobState::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingJobState(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobState * SOAP_FMAC4 soap_in__trc__GetRecordingJobState(struct soap *soap, const char *tag, _trc__GetRecordingJobState *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingJobState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingJobState, sizeof(_trc__GetRecordingJobState), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingJobState) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingJobState *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobReference(soap, "trc:JobToken", &a->_trc__GetRecordingJobState::JobToken, "tt:RecordingJobReference")) - { soap_flag_JobToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_JobToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingJobState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingJobState, SOAP_TYPE__trc__GetRecordingJobState, sizeof(_trc__GetRecordingJobState), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingJobState * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingJobState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingJobState *p; - size_t k = sizeof(_trc__GetRecordingJobState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingJobState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingJobState); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingJobState, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingJobState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingJobState::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingJobState(soap, tag ? tag : "trc:GetRecordingJobState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingJobState::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingJobState(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobState * SOAP_FMAC4 soap_get__trc__GetRecordingJobState(struct soap *soap, _trc__GetRecordingJobState *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingJobState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetRecordingJobModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__SetRecordingJobModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__SetRecordingJobModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetRecordingJobModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobModeResponse(struct soap *soap, const char *tag, int id, const _trc__SetRecordingJobModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetRecordingJobModeResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetRecordingJobModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetRecordingJobModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobModeResponse * SOAP_FMAC4 soap_in__trc__SetRecordingJobModeResponse(struct soap *soap, const char *tag, _trc__SetRecordingJobModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetRecordingJobModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetRecordingJobModeResponse, sizeof(_trc__SetRecordingJobModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetRecordingJobModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetRecordingJobModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__SetRecordingJobModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetRecordingJobModeResponse, SOAP_TYPE__trc__SetRecordingJobModeResponse, sizeof(_trc__SetRecordingJobModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetRecordingJobModeResponse * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetRecordingJobModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetRecordingJobModeResponse *p; - size_t k = sizeof(_trc__SetRecordingJobModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetRecordingJobModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetRecordingJobModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetRecordingJobModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetRecordingJobModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetRecordingJobModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetRecordingJobModeResponse(soap, tag ? tag : "trc:SetRecordingJobModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetRecordingJobModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetRecordingJobModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobModeResponse * SOAP_FMAC4 soap_get__trc__SetRecordingJobModeResponse(struct soap *soap, _trc__SetRecordingJobModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetRecordingJobModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetRecordingJobMode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->_trc__SetRecordingJobMode::JobToken); - soap_default_tt__RecordingJobMode(soap, &this->_trc__SetRecordingJobMode::Mode); -} - -void _trc__SetRecordingJobMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->_trc__SetRecordingJobMode::JobToken); - soap_serialize_tt__RecordingJobMode(soap, &this->_trc__SetRecordingJobMode::Mode); -#endif -} - -int _trc__SetRecordingJobMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetRecordingJobMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobMode(struct soap *soap, const char *tag, int id, const _trc__SetRecordingJobMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetRecordingJobMode), type)) - return soap->error; - if (soap_out_tt__RecordingJobReference(soap, "trc:JobToken", -1, &a->_trc__SetRecordingJobMode::JobToken, "")) - return soap->error; - if (soap_out_tt__RecordingJobMode(soap, "trc:Mode", -1, &a->_trc__SetRecordingJobMode::Mode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetRecordingJobMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetRecordingJobMode(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobMode * SOAP_FMAC4 soap_in__trc__SetRecordingJobMode(struct soap *soap, const char *tag, _trc__SetRecordingJobMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetRecordingJobMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetRecordingJobMode, sizeof(_trc__SetRecordingJobMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetRecordingJobMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetRecordingJobMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobToken1 = 1; - size_t soap_flag_Mode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobReference(soap, "trc:JobToken", &a->_trc__SetRecordingJobMode::JobToken, "tt:RecordingJobReference")) - { soap_flag_JobToken1--; - continue; - } - } - if (soap_flag_Mode1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobMode(soap, "trc:Mode", &a->_trc__SetRecordingJobMode::Mode, "tt:RecordingJobMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_JobToken1 > 0 || soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__SetRecordingJobMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetRecordingJobMode, SOAP_TYPE__trc__SetRecordingJobMode, sizeof(_trc__SetRecordingJobMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetRecordingJobMode * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetRecordingJobMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetRecordingJobMode *p; - size_t k = sizeof(_trc__SetRecordingJobMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetRecordingJobMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetRecordingJobMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetRecordingJobMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetRecordingJobMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetRecordingJobMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetRecordingJobMode(soap, tag ? tag : "trc:SetRecordingJobMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetRecordingJobMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetRecordingJobMode(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobMode * SOAP_FMAC4 soap_get__trc__SetRecordingJobMode(struct soap *soap, _trc__SetRecordingJobMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetRecordingJobMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingJobConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__GetRecordingJobConfigurationResponse::JobConfiguration = NULL; -} - -void _trc__GetRecordingJobConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingJobConfiguration(soap, &this->_trc__GetRecordingJobConfigurationResponse::JobConfiguration); -#endif -} - -int _trc__GetRecordingJobConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingJobConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobConfigurationResponse(struct soap *soap, const char *tag, int id, const _trc__GetRecordingJobConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingJobConfigurationResponse), type)) - return soap->error; - if (a->JobConfiguration) - soap_element_result(soap, "trc:JobConfiguration"); - if (!a->_trc__GetRecordingJobConfigurationResponse::JobConfiguration) - { if (soap_element_empty(soap, "trc:JobConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", -1, &a->_trc__GetRecordingJobConfigurationResponse::JobConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingJobConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingJobConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_in__trc__GetRecordingJobConfigurationResponse(struct soap *soap, const char *tag, _trc__GetRecordingJobConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingJobConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingJobConfigurationResponse, sizeof(_trc__GetRecordingJobConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingJobConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingJobConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", &a->_trc__GetRecordingJobConfigurationResponse::JobConfiguration, "tt:RecordingJobConfiguration")) - { soap_flag_JobConfiguration1--; - continue; - } - } - soap_check_result(soap, "trc:JobConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__GetRecordingJobConfigurationResponse::JobConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingJobConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingJobConfigurationResponse, SOAP_TYPE__trc__GetRecordingJobConfigurationResponse, sizeof(_trc__GetRecordingJobConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingJobConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingJobConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingJobConfigurationResponse *p; - size_t k = sizeof(_trc__GetRecordingJobConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingJobConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingJobConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingJobConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingJobConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingJobConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingJobConfigurationResponse(soap, tag ? tag : "trc:GetRecordingJobConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingJobConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingJobConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_get__trc__GetRecordingJobConfigurationResponse(struct soap *soap, _trc__GetRecordingJobConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingJobConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingJobConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->_trc__GetRecordingJobConfiguration::JobToken); -} - -void _trc__GetRecordingJobConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->_trc__GetRecordingJobConfiguration::JobToken); -#endif -} - -int _trc__GetRecordingJobConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingJobConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobConfiguration(struct soap *soap, const char *tag, int id, const _trc__GetRecordingJobConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingJobConfiguration), type)) - return soap->error; - if (soap_out_tt__RecordingJobReference(soap, "trc:JobToken", -1, &a->_trc__GetRecordingJobConfiguration::JobToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingJobConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingJobConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_in__trc__GetRecordingJobConfiguration(struct soap *soap, const char *tag, _trc__GetRecordingJobConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingJobConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingJobConfiguration, sizeof(_trc__GetRecordingJobConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingJobConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingJobConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobReference(soap, "trc:JobToken", &a->_trc__GetRecordingJobConfiguration::JobToken, "tt:RecordingJobReference")) - { soap_flag_JobToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_JobToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingJobConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingJobConfiguration, SOAP_TYPE__trc__GetRecordingJobConfiguration, sizeof(_trc__GetRecordingJobConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingJobConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingJobConfiguration *p; - size_t k = sizeof(_trc__GetRecordingJobConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingJobConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingJobConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingJobConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingJobConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingJobConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingJobConfiguration(soap, tag ? tag : "trc:GetRecordingJobConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingJobConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingJobConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_get__trc__GetRecordingJobConfiguration(struct soap *soap, _trc__GetRecordingJobConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingJobConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetRecordingJobConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__SetRecordingJobConfigurationResponse::JobConfiguration = NULL; -} - -void _trc__SetRecordingJobConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingJobConfiguration(soap, &this->_trc__SetRecordingJobConfigurationResponse::JobConfiguration); -#endif -} - -int _trc__SetRecordingJobConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetRecordingJobConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobConfigurationResponse(struct soap *soap, const char *tag, int id, const _trc__SetRecordingJobConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetRecordingJobConfigurationResponse), type)) - return soap->error; - if (a->JobConfiguration) - soap_element_result(soap, "trc:JobConfiguration"); - if (!a->_trc__SetRecordingJobConfigurationResponse::JobConfiguration) - { if (soap_element_empty(soap, "trc:JobConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", -1, &a->_trc__SetRecordingJobConfigurationResponse::JobConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetRecordingJobConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetRecordingJobConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_in__trc__SetRecordingJobConfigurationResponse(struct soap *soap, const char *tag, _trc__SetRecordingJobConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetRecordingJobConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetRecordingJobConfigurationResponse, sizeof(_trc__SetRecordingJobConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetRecordingJobConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetRecordingJobConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", &a->_trc__SetRecordingJobConfigurationResponse::JobConfiguration, "tt:RecordingJobConfiguration")) - { soap_flag_JobConfiguration1--; - continue; - } - } - soap_check_result(soap, "trc:JobConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__SetRecordingJobConfigurationResponse::JobConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__SetRecordingJobConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetRecordingJobConfigurationResponse, SOAP_TYPE__trc__SetRecordingJobConfigurationResponse, sizeof(_trc__SetRecordingJobConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetRecordingJobConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetRecordingJobConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetRecordingJobConfigurationResponse *p; - size_t k = sizeof(_trc__SetRecordingJobConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetRecordingJobConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetRecordingJobConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetRecordingJobConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetRecordingJobConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetRecordingJobConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetRecordingJobConfigurationResponse(soap, tag ? tag : "trc:SetRecordingJobConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetRecordingJobConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetRecordingJobConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_get__trc__SetRecordingJobConfigurationResponse(struct soap *soap, _trc__SetRecordingJobConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetRecordingJobConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetRecordingJobConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->_trc__SetRecordingJobConfiguration::JobToken); - this->_trc__SetRecordingJobConfiguration::JobConfiguration = NULL; -} - -void _trc__SetRecordingJobConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->_trc__SetRecordingJobConfiguration::JobToken); - soap_serialize_PointerTott__RecordingJobConfiguration(soap, &this->_trc__SetRecordingJobConfiguration::JobConfiguration); -#endif -} - -int _trc__SetRecordingJobConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetRecordingJobConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobConfiguration(struct soap *soap, const char *tag, int id, const _trc__SetRecordingJobConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetRecordingJobConfiguration), type)) - return soap->error; - if (soap_out_tt__RecordingJobReference(soap, "trc:JobToken", -1, &a->_trc__SetRecordingJobConfiguration::JobToken, "")) - return soap->error; - if (!a->_trc__SetRecordingJobConfiguration::JobConfiguration) - { if (soap_element_empty(soap, "trc:JobConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", -1, &a->_trc__SetRecordingJobConfiguration::JobConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetRecordingJobConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetRecordingJobConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_in__trc__SetRecordingJobConfiguration(struct soap *soap, const char *tag, _trc__SetRecordingJobConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetRecordingJobConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetRecordingJobConfiguration, sizeof(_trc__SetRecordingJobConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetRecordingJobConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetRecordingJobConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobToken1 = 1; - size_t soap_flag_JobConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobReference(soap, "trc:JobToken", &a->_trc__SetRecordingJobConfiguration::JobToken, "tt:RecordingJobReference")) - { soap_flag_JobToken1--; - continue; - } - } - if (soap_flag_JobConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", &a->_trc__SetRecordingJobConfiguration::JobConfiguration, "tt:RecordingJobConfiguration")) - { soap_flag_JobConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_JobToken1 > 0 || !a->_trc__SetRecordingJobConfiguration::JobConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__SetRecordingJobConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetRecordingJobConfiguration, SOAP_TYPE__trc__SetRecordingJobConfiguration, sizeof(_trc__SetRecordingJobConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetRecordingJobConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetRecordingJobConfiguration *p; - size_t k = sizeof(_trc__SetRecordingJobConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetRecordingJobConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetRecordingJobConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetRecordingJobConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetRecordingJobConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetRecordingJobConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetRecordingJobConfiguration(soap, tag ? tag : "trc:SetRecordingJobConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetRecordingJobConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetRecordingJobConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_get__trc__SetRecordingJobConfiguration(struct soap *soap, _trc__SetRecordingJobConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetRecordingJobConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingJobsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(soap, &this->_trc__GetRecordingJobsResponse::JobItem); -} - -void _trc__GetRecordingJobsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(soap, &this->_trc__GetRecordingJobsResponse::JobItem); -#endif -} - -int _trc__GetRecordingJobsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingJobsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobsResponse(struct soap *soap, const char *tag, int id, const _trc__GetRecordingJobsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingJobsResponse), type)) - return soap->error; - soap_element_result(soap, "trc:JobItem"); - if (soap_out_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(soap, "trc:JobItem", -1, &a->_trc__GetRecordingJobsResponse::JobItem, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingJobsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingJobsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobsResponse * SOAP_FMAC4 soap_in__trc__GetRecordingJobsResponse(struct soap *soap, const char *tag, _trc__GetRecordingJobsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingJobsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingJobsResponse, sizeof(_trc__GetRecordingJobsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingJobsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingJobsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(soap, "trc:JobItem", &a->_trc__GetRecordingJobsResponse::JobItem, "tt:GetRecordingJobsResponseItem")) - continue; - } - soap_check_result(soap, "trc:JobItem"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__GetRecordingJobsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingJobsResponse, SOAP_TYPE__trc__GetRecordingJobsResponse, sizeof(_trc__GetRecordingJobsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingJobsResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingJobsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingJobsResponse *p; - size_t k = sizeof(_trc__GetRecordingJobsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingJobsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingJobsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingJobsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingJobsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingJobsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingJobsResponse(soap, tag ? tag : "trc:GetRecordingJobsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingJobsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingJobsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobsResponse * SOAP_FMAC4 soap_get__trc__GetRecordingJobsResponse(struct soap *soap, _trc__GetRecordingJobsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingJobsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingJobs::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__GetRecordingJobs::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__GetRecordingJobs::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingJobs(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobs(struct soap *soap, const char *tag, int id, const _trc__GetRecordingJobs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingJobs), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingJobs::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingJobs(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobs * SOAP_FMAC4 soap_in__trc__GetRecordingJobs(struct soap *soap, const char *tag, _trc__GetRecordingJobs *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingJobs*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingJobs, sizeof(_trc__GetRecordingJobs), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingJobs) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingJobs *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__GetRecordingJobs *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingJobs, SOAP_TYPE__trc__GetRecordingJobs, sizeof(_trc__GetRecordingJobs), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingJobs * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingJobs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingJobs *p; - size_t k = sizeof(_trc__GetRecordingJobs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingJobs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingJobs); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingJobs, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingJobs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingJobs::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingJobs(soap, tag ? tag : "trc:GetRecordingJobs", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingJobs::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingJobs(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingJobs * SOAP_FMAC4 soap_get__trc__GetRecordingJobs(struct soap *soap, _trc__GetRecordingJobs *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingJobs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__DeleteRecordingJobResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__DeleteRecordingJobResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__DeleteRecordingJobResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__DeleteRecordingJobResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecordingJobResponse(struct soap *soap, const char *tag, int id, const _trc__DeleteRecordingJobResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__DeleteRecordingJobResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__DeleteRecordingJobResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__DeleteRecordingJobResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__DeleteRecordingJobResponse * SOAP_FMAC4 soap_in__trc__DeleteRecordingJobResponse(struct soap *soap, const char *tag, _trc__DeleteRecordingJobResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__DeleteRecordingJobResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__DeleteRecordingJobResponse, sizeof(_trc__DeleteRecordingJobResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__DeleteRecordingJobResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__DeleteRecordingJobResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__DeleteRecordingJobResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__DeleteRecordingJobResponse, SOAP_TYPE__trc__DeleteRecordingJobResponse, sizeof(_trc__DeleteRecordingJobResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__DeleteRecordingJobResponse * SOAP_FMAC2 soap_instantiate__trc__DeleteRecordingJobResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__DeleteRecordingJobResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__DeleteRecordingJobResponse *p; - size_t k = sizeof(_trc__DeleteRecordingJobResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__DeleteRecordingJobResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__DeleteRecordingJobResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__DeleteRecordingJobResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__DeleteRecordingJobResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__DeleteRecordingJobResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__DeleteRecordingJobResponse(soap, tag ? tag : "trc:DeleteRecordingJobResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__DeleteRecordingJobResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__DeleteRecordingJobResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__DeleteRecordingJobResponse * SOAP_FMAC4 soap_get__trc__DeleteRecordingJobResponse(struct soap *soap, _trc__DeleteRecordingJobResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__DeleteRecordingJobResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__DeleteRecordingJob::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->_trc__DeleteRecordingJob::JobToken); -} - -void _trc__DeleteRecordingJob::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->_trc__DeleteRecordingJob::JobToken); -#endif -} - -int _trc__DeleteRecordingJob::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__DeleteRecordingJob(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecordingJob(struct soap *soap, const char *tag, int id, const _trc__DeleteRecordingJob *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__DeleteRecordingJob), type)) - return soap->error; - if (soap_out_tt__RecordingJobReference(soap, "trc:JobToken", -1, &a->_trc__DeleteRecordingJob::JobToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__DeleteRecordingJob::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__DeleteRecordingJob(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__DeleteRecordingJob * SOAP_FMAC4 soap_in__trc__DeleteRecordingJob(struct soap *soap, const char *tag, _trc__DeleteRecordingJob *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__DeleteRecordingJob*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__DeleteRecordingJob, sizeof(_trc__DeleteRecordingJob), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__DeleteRecordingJob) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__DeleteRecordingJob *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobReference(soap, "trc:JobToken", &a->_trc__DeleteRecordingJob::JobToken, "tt:RecordingJobReference")) - { soap_flag_JobToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_JobToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__DeleteRecordingJob *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__DeleteRecordingJob, SOAP_TYPE__trc__DeleteRecordingJob, sizeof(_trc__DeleteRecordingJob), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__DeleteRecordingJob * SOAP_FMAC2 soap_instantiate__trc__DeleteRecordingJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__DeleteRecordingJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__DeleteRecordingJob *p; - size_t k = sizeof(_trc__DeleteRecordingJob); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__DeleteRecordingJob, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__DeleteRecordingJob); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__DeleteRecordingJob, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__DeleteRecordingJob location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__DeleteRecordingJob::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__DeleteRecordingJob(soap, tag ? tag : "trc:DeleteRecordingJob", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__DeleteRecordingJob::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__DeleteRecordingJob(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__DeleteRecordingJob * SOAP_FMAC4 soap_get__trc__DeleteRecordingJob(struct soap *soap, _trc__DeleteRecordingJob *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__DeleteRecordingJob(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__CreateRecordingJobResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->_trc__CreateRecordingJobResponse::JobToken); - this->_trc__CreateRecordingJobResponse::JobConfiguration = NULL; -} - -void _trc__CreateRecordingJobResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->_trc__CreateRecordingJobResponse::JobToken); - soap_serialize_PointerTott__RecordingJobConfiguration(soap, &this->_trc__CreateRecordingJobResponse::JobConfiguration); -#endif -} - -int _trc__CreateRecordingJobResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__CreateRecordingJobResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecordingJobResponse(struct soap *soap, const char *tag, int id, const _trc__CreateRecordingJobResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__CreateRecordingJobResponse), type)) - return soap->error; - soap_element_result(soap, "trc:JobToken"); - if (soap_out_tt__RecordingJobReference(soap, "trc:JobToken", -1, &a->_trc__CreateRecordingJobResponse::JobToken, "")) - return soap->error; - if (!a->_trc__CreateRecordingJobResponse::JobConfiguration) - { if (soap_element_empty(soap, "trc:JobConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", -1, &a->_trc__CreateRecordingJobResponse::JobConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__CreateRecordingJobResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__CreateRecordingJobResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__CreateRecordingJobResponse * SOAP_FMAC4 soap_in__trc__CreateRecordingJobResponse(struct soap *soap, const char *tag, _trc__CreateRecordingJobResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__CreateRecordingJobResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__CreateRecordingJobResponse, sizeof(_trc__CreateRecordingJobResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__CreateRecordingJobResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__CreateRecordingJobResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobToken1 = 1; - size_t soap_flag_JobConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobReference(soap, "trc:JobToken", &a->_trc__CreateRecordingJobResponse::JobToken, "tt:RecordingJobReference")) - { soap_flag_JobToken1--; - continue; - } - } - if (soap_flag_JobConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", &a->_trc__CreateRecordingJobResponse::JobConfiguration, "tt:RecordingJobConfiguration")) - { soap_flag_JobConfiguration1--; - continue; - } - } - soap_check_result(soap, "trc:JobToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_JobToken1 > 0 || !a->_trc__CreateRecordingJobResponse::JobConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__CreateRecordingJobResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__CreateRecordingJobResponse, SOAP_TYPE__trc__CreateRecordingJobResponse, sizeof(_trc__CreateRecordingJobResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__CreateRecordingJobResponse * SOAP_FMAC2 soap_instantiate__trc__CreateRecordingJobResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__CreateRecordingJobResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__CreateRecordingJobResponse *p; - size_t k = sizeof(_trc__CreateRecordingJobResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__CreateRecordingJobResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__CreateRecordingJobResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__CreateRecordingJobResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__CreateRecordingJobResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__CreateRecordingJobResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__CreateRecordingJobResponse(soap, tag ? tag : "trc:CreateRecordingJobResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__CreateRecordingJobResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__CreateRecordingJobResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__CreateRecordingJobResponse * SOAP_FMAC4 soap_get__trc__CreateRecordingJobResponse(struct soap *soap, _trc__CreateRecordingJobResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__CreateRecordingJobResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__CreateRecordingJob::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__CreateRecordingJob::JobConfiguration = NULL; -} - -void _trc__CreateRecordingJob::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingJobConfiguration(soap, &this->_trc__CreateRecordingJob::JobConfiguration); -#endif -} - -int _trc__CreateRecordingJob::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__CreateRecordingJob(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecordingJob(struct soap *soap, const char *tag, int id, const _trc__CreateRecordingJob *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__CreateRecordingJob), type)) - return soap->error; - if (!a->_trc__CreateRecordingJob::JobConfiguration) - { if (soap_element_empty(soap, "trc:JobConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", -1, &a->_trc__CreateRecordingJob::JobConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__CreateRecordingJob::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__CreateRecordingJob(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__CreateRecordingJob * SOAP_FMAC4 soap_in__trc__CreateRecordingJob(struct soap *soap, const char *tag, _trc__CreateRecordingJob *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__CreateRecordingJob*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__CreateRecordingJob, sizeof(_trc__CreateRecordingJob), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__CreateRecordingJob) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__CreateRecordingJob *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_JobConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobConfiguration(soap, "trc:JobConfiguration", &a->_trc__CreateRecordingJob::JobConfiguration, "tt:RecordingJobConfiguration")) - { soap_flag_JobConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__CreateRecordingJob::JobConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__CreateRecordingJob *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__CreateRecordingJob, SOAP_TYPE__trc__CreateRecordingJob, sizeof(_trc__CreateRecordingJob), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__CreateRecordingJob * SOAP_FMAC2 soap_instantiate__trc__CreateRecordingJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__CreateRecordingJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__CreateRecordingJob *p; - size_t k = sizeof(_trc__CreateRecordingJob); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__CreateRecordingJob, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__CreateRecordingJob); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__CreateRecordingJob, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__CreateRecordingJob location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__CreateRecordingJob::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__CreateRecordingJob(soap, tag ? tag : "trc:CreateRecordingJob", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__CreateRecordingJob::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__CreateRecordingJob(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__CreateRecordingJob * SOAP_FMAC4 soap_get__trc__CreateRecordingJob(struct soap *soap, _trc__CreateRecordingJob *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__CreateRecordingJob(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetTrackConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__SetTrackConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__SetTrackConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetTrackConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetTrackConfigurationResponse(struct soap *soap, const char *tag, int id, const _trc__SetTrackConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetTrackConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetTrackConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetTrackConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetTrackConfigurationResponse * SOAP_FMAC4 soap_in__trc__SetTrackConfigurationResponse(struct soap *soap, const char *tag, _trc__SetTrackConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetTrackConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetTrackConfigurationResponse, sizeof(_trc__SetTrackConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetTrackConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetTrackConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__SetTrackConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetTrackConfigurationResponse, SOAP_TYPE__trc__SetTrackConfigurationResponse, sizeof(_trc__SetTrackConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetTrackConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__SetTrackConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetTrackConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetTrackConfigurationResponse *p; - size_t k = sizeof(_trc__SetTrackConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetTrackConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetTrackConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetTrackConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetTrackConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetTrackConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetTrackConfigurationResponse(soap, tag ? tag : "trc:SetTrackConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetTrackConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetTrackConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetTrackConfigurationResponse * SOAP_FMAC4 soap_get__trc__SetTrackConfigurationResponse(struct soap *soap, _trc__SetTrackConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetTrackConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetTrackConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__SetTrackConfiguration::RecordingToken); - soap_default_tt__TrackReference(soap, &this->_trc__SetTrackConfiguration::TrackToken); - this->_trc__SetTrackConfiguration::TrackConfiguration = NULL; -} - -void _trc__SetTrackConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__SetTrackConfiguration::RecordingToken); - soap_serialize_tt__TrackReference(soap, &this->_trc__SetTrackConfiguration::TrackToken); - soap_serialize_PointerTott__TrackConfiguration(soap, &this->_trc__SetTrackConfiguration::TrackConfiguration); -#endif -} - -int _trc__SetTrackConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetTrackConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetTrackConfiguration(struct soap *soap, const char *tag, int id, const _trc__SetTrackConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetTrackConfiguration), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__SetTrackConfiguration::RecordingToken, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "trc:TrackToken", -1, &a->_trc__SetTrackConfiguration::TrackToken, "")) - return soap->error; - if (!a->_trc__SetTrackConfiguration::TrackConfiguration) - { if (soap_element_empty(soap, "trc:TrackConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__TrackConfiguration(soap, "trc:TrackConfiguration", -1, &a->_trc__SetTrackConfiguration::TrackConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetTrackConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetTrackConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetTrackConfiguration * SOAP_FMAC4 soap_in__trc__SetTrackConfiguration(struct soap *soap, const char *tag, _trc__SetTrackConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetTrackConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetTrackConfiguration, sizeof(_trc__SetTrackConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetTrackConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetTrackConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_TrackToken1 = 1; - size_t soap_flag_TrackConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__SetTrackConfiguration::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "trc:TrackToken", &a->_trc__SetTrackConfiguration::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap_flag_TrackConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TrackConfiguration(soap, "trc:TrackConfiguration", &a->_trc__SetTrackConfiguration::TrackConfiguration, "tt:TrackConfiguration")) - { soap_flag_TrackConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_TrackToken1 > 0 || !a->_trc__SetTrackConfiguration::TrackConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__SetTrackConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetTrackConfiguration, SOAP_TYPE__trc__SetTrackConfiguration, sizeof(_trc__SetTrackConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetTrackConfiguration * SOAP_FMAC2 soap_instantiate__trc__SetTrackConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetTrackConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetTrackConfiguration *p; - size_t k = sizeof(_trc__SetTrackConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetTrackConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetTrackConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetTrackConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetTrackConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetTrackConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetTrackConfiguration(soap, tag ? tag : "trc:SetTrackConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetTrackConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetTrackConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetTrackConfiguration * SOAP_FMAC4 soap_get__trc__SetTrackConfiguration(struct soap *soap, _trc__SetTrackConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetTrackConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetTrackConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__GetTrackConfigurationResponse::TrackConfiguration = NULL; -} - -void _trc__GetTrackConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__TrackConfiguration(soap, &this->_trc__GetTrackConfigurationResponse::TrackConfiguration); -#endif -} - -int _trc__GetTrackConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetTrackConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetTrackConfigurationResponse(struct soap *soap, const char *tag, int id, const _trc__GetTrackConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetTrackConfigurationResponse), type)) - return soap->error; - if (a->TrackConfiguration) - soap_element_result(soap, "trc:TrackConfiguration"); - if (!a->_trc__GetTrackConfigurationResponse::TrackConfiguration) - { if (soap_element_empty(soap, "trc:TrackConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__TrackConfiguration(soap, "trc:TrackConfiguration", -1, &a->_trc__GetTrackConfigurationResponse::TrackConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetTrackConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetTrackConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetTrackConfigurationResponse * SOAP_FMAC4 soap_in__trc__GetTrackConfigurationResponse(struct soap *soap, const char *tag, _trc__GetTrackConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetTrackConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetTrackConfigurationResponse, sizeof(_trc__GetTrackConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetTrackConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetTrackConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_TrackConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TrackConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TrackConfiguration(soap, "trc:TrackConfiguration", &a->_trc__GetTrackConfigurationResponse::TrackConfiguration, "tt:TrackConfiguration")) - { soap_flag_TrackConfiguration1--; - continue; - } - } - soap_check_result(soap, "trc:TrackConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__GetTrackConfigurationResponse::TrackConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetTrackConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetTrackConfigurationResponse, SOAP_TYPE__trc__GetTrackConfigurationResponse, sizeof(_trc__GetTrackConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetTrackConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__GetTrackConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetTrackConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetTrackConfigurationResponse *p; - size_t k = sizeof(_trc__GetTrackConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetTrackConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetTrackConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetTrackConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetTrackConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetTrackConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetTrackConfigurationResponse(soap, tag ? tag : "trc:GetTrackConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetTrackConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetTrackConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetTrackConfigurationResponse * SOAP_FMAC4 soap_get__trc__GetTrackConfigurationResponse(struct soap *soap, _trc__GetTrackConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetTrackConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetTrackConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__GetTrackConfiguration::RecordingToken); - soap_default_tt__TrackReference(soap, &this->_trc__GetTrackConfiguration::TrackToken); -} - -void _trc__GetTrackConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__GetTrackConfiguration::RecordingToken); - soap_serialize_tt__TrackReference(soap, &this->_trc__GetTrackConfiguration::TrackToken); -#endif -} - -int _trc__GetTrackConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetTrackConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetTrackConfiguration(struct soap *soap, const char *tag, int id, const _trc__GetTrackConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetTrackConfiguration), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__GetTrackConfiguration::RecordingToken, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "trc:TrackToken", -1, &a->_trc__GetTrackConfiguration::TrackToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetTrackConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetTrackConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetTrackConfiguration * SOAP_FMAC4 soap_in__trc__GetTrackConfiguration(struct soap *soap, const char *tag, _trc__GetTrackConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetTrackConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetTrackConfiguration, sizeof(_trc__GetTrackConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetTrackConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetTrackConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_TrackToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__GetTrackConfiguration::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "trc:TrackToken", &a->_trc__GetTrackConfiguration::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_TrackToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetTrackConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetTrackConfiguration, SOAP_TYPE__trc__GetTrackConfiguration, sizeof(_trc__GetTrackConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetTrackConfiguration * SOAP_FMAC2 soap_instantiate__trc__GetTrackConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetTrackConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetTrackConfiguration *p; - size_t k = sizeof(_trc__GetTrackConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetTrackConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetTrackConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetTrackConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetTrackConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetTrackConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetTrackConfiguration(soap, tag ? tag : "trc:GetTrackConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetTrackConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetTrackConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetTrackConfiguration * SOAP_FMAC4 soap_get__trc__GetTrackConfiguration(struct soap *soap, _trc__GetTrackConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetTrackConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__DeleteTrackResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__DeleteTrackResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__DeleteTrackResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__DeleteTrackResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteTrackResponse(struct soap *soap, const char *tag, int id, const _trc__DeleteTrackResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__DeleteTrackResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__DeleteTrackResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__DeleteTrackResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__DeleteTrackResponse * SOAP_FMAC4 soap_in__trc__DeleteTrackResponse(struct soap *soap, const char *tag, _trc__DeleteTrackResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__DeleteTrackResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__DeleteTrackResponse, sizeof(_trc__DeleteTrackResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__DeleteTrackResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__DeleteTrackResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__DeleteTrackResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__DeleteTrackResponse, SOAP_TYPE__trc__DeleteTrackResponse, sizeof(_trc__DeleteTrackResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__DeleteTrackResponse * SOAP_FMAC2 soap_instantiate__trc__DeleteTrackResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__DeleteTrackResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__DeleteTrackResponse *p; - size_t k = sizeof(_trc__DeleteTrackResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__DeleteTrackResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__DeleteTrackResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__DeleteTrackResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__DeleteTrackResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__DeleteTrackResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__DeleteTrackResponse(soap, tag ? tag : "trc:DeleteTrackResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__DeleteTrackResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__DeleteTrackResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__DeleteTrackResponse * SOAP_FMAC4 soap_get__trc__DeleteTrackResponse(struct soap *soap, _trc__DeleteTrackResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__DeleteTrackResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__DeleteTrack::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__DeleteTrack::RecordingToken); - soap_default_tt__TrackReference(soap, &this->_trc__DeleteTrack::TrackToken); -} - -void _trc__DeleteTrack::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__DeleteTrack::RecordingToken); - soap_serialize_tt__TrackReference(soap, &this->_trc__DeleteTrack::TrackToken); -#endif -} - -int _trc__DeleteTrack::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__DeleteTrack(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteTrack(struct soap *soap, const char *tag, int id, const _trc__DeleteTrack *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__DeleteTrack), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__DeleteTrack::RecordingToken, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "trc:TrackToken", -1, &a->_trc__DeleteTrack::TrackToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__DeleteTrack::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__DeleteTrack(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__DeleteTrack * SOAP_FMAC4 soap_in__trc__DeleteTrack(struct soap *soap, const char *tag, _trc__DeleteTrack *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__DeleteTrack*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__DeleteTrack, sizeof(_trc__DeleteTrack), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__DeleteTrack) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__DeleteTrack *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_TrackToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__DeleteTrack::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "trc:TrackToken", &a->_trc__DeleteTrack::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_TrackToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__DeleteTrack *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__DeleteTrack, SOAP_TYPE__trc__DeleteTrack, sizeof(_trc__DeleteTrack), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__DeleteTrack * SOAP_FMAC2 soap_instantiate__trc__DeleteTrack(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__DeleteTrack(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__DeleteTrack *p; - size_t k = sizeof(_trc__DeleteTrack); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__DeleteTrack, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__DeleteTrack); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__DeleteTrack, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__DeleteTrack location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__DeleteTrack::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__DeleteTrack(soap, tag ? tag : "trc:DeleteTrack", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__DeleteTrack::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__DeleteTrack(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__DeleteTrack * SOAP_FMAC4 soap_get__trc__DeleteTrack(struct soap *soap, _trc__DeleteTrack *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__DeleteTrack(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__CreateTrackResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TrackReference(soap, &this->_trc__CreateTrackResponse::TrackToken); -} - -void _trc__CreateTrackResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__TrackReference(soap, &this->_trc__CreateTrackResponse::TrackToken); -#endif -} - -int _trc__CreateTrackResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__CreateTrackResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateTrackResponse(struct soap *soap, const char *tag, int id, const _trc__CreateTrackResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__CreateTrackResponse), type)) - return soap->error; - soap_element_result(soap, "trc:TrackToken"); - if (soap_out_tt__TrackReference(soap, "trc:TrackToken", -1, &a->_trc__CreateTrackResponse::TrackToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__CreateTrackResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__CreateTrackResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__CreateTrackResponse * SOAP_FMAC4 soap_in__trc__CreateTrackResponse(struct soap *soap, const char *tag, _trc__CreateTrackResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__CreateTrackResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__CreateTrackResponse, sizeof(_trc__CreateTrackResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__CreateTrackResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__CreateTrackResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_TrackToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "trc:TrackToken", &a->_trc__CreateTrackResponse::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - soap_check_result(soap, "trc:TrackToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TrackToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__CreateTrackResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__CreateTrackResponse, SOAP_TYPE__trc__CreateTrackResponse, sizeof(_trc__CreateTrackResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__CreateTrackResponse * SOAP_FMAC2 soap_instantiate__trc__CreateTrackResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__CreateTrackResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__CreateTrackResponse *p; - size_t k = sizeof(_trc__CreateTrackResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__CreateTrackResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__CreateTrackResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__CreateTrackResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__CreateTrackResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__CreateTrackResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__CreateTrackResponse(soap, tag ? tag : "trc:CreateTrackResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__CreateTrackResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__CreateTrackResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__CreateTrackResponse * SOAP_FMAC4 soap_get__trc__CreateTrackResponse(struct soap *soap, _trc__CreateTrackResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__CreateTrackResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__CreateTrack::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__CreateTrack::RecordingToken); - this->_trc__CreateTrack::TrackConfiguration = NULL; -} - -void _trc__CreateTrack::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__CreateTrack::RecordingToken); - soap_serialize_PointerTott__TrackConfiguration(soap, &this->_trc__CreateTrack::TrackConfiguration); -#endif -} - -int _trc__CreateTrack::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__CreateTrack(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateTrack(struct soap *soap, const char *tag, int id, const _trc__CreateTrack *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__CreateTrack), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__CreateTrack::RecordingToken, "")) - return soap->error; - if (!a->_trc__CreateTrack::TrackConfiguration) - { if (soap_element_empty(soap, "trc:TrackConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__TrackConfiguration(soap, "trc:TrackConfiguration", -1, &a->_trc__CreateTrack::TrackConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__CreateTrack::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__CreateTrack(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__CreateTrack * SOAP_FMAC4 soap_in__trc__CreateTrack(struct soap *soap, const char *tag, _trc__CreateTrack *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__CreateTrack*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__CreateTrack, sizeof(_trc__CreateTrack), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__CreateTrack) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__CreateTrack *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_TrackConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__CreateTrack::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_TrackConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TrackConfiguration(soap, "trc:TrackConfiguration", &a->_trc__CreateTrack::TrackConfiguration, "tt:TrackConfiguration")) - { soap_flag_TrackConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || !a->_trc__CreateTrack::TrackConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__CreateTrack *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__CreateTrack, SOAP_TYPE__trc__CreateTrack, sizeof(_trc__CreateTrack), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__CreateTrack * SOAP_FMAC2 soap_instantiate__trc__CreateTrack(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__CreateTrack(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__CreateTrack *p; - size_t k = sizeof(_trc__CreateTrack); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__CreateTrack, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__CreateTrack); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__CreateTrack, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__CreateTrack location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__CreateTrack::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__CreateTrack(soap, tag ? tag : "trc:CreateTrack", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__CreateTrack::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__CreateTrack(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__CreateTrack * SOAP_FMAC4 soap_get__trc__CreateTrack(struct soap *soap, _trc__CreateTrack *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__CreateTrack(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__GetRecordingConfigurationResponse::RecordingConfiguration = NULL; -} - -void _trc__GetRecordingConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingConfiguration(soap, &this->_trc__GetRecordingConfigurationResponse::RecordingConfiguration); -#endif -} - -int _trc__GetRecordingConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingConfigurationResponse(struct soap *soap, const char *tag, int id, const _trc__GetRecordingConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingConfigurationResponse), type)) - return soap->error; - if (a->RecordingConfiguration) - soap_element_result(soap, "trc:RecordingConfiguration"); - if (!a->_trc__GetRecordingConfigurationResponse::RecordingConfiguration) - { if (soap_element_empty(soap, "trc:RecordingConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingConfiguration(soap, "trc:RecordingConfiguration", -1, &a->_trc__GetRecordingConfigurationResponse::RecordingConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingConfigurationResponse * SOAP_FMAC4 soap_in__trc__GetRecordingConfigurationResponse(struct soap *soap, const char *tag, _trc__GetRecordingConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingConfigurationResponse, sizeof(_trc__GetRecordingConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingConfiguration(soap, "trc:RecordingConfiguration", &a->_trc__GetRecordingConfigurationResponse::RecordingConfiguration, "tt:RecordingConfiguration")) - { soap_flag_RecordingConfiguration1--; - continue; - } - } - soap_check_result(soap, "trc:RecordingConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__GetRecordingConfigurationResponse::RecordingConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingConfigurationResponse, SOAP_TYPE__trc__GetRecordingConfigurationResponse, sizeof(_trc__GetRecordingConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingConfigurationResponse *p; - size_t k = sizeof(_trc__GetRecordingConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingConfigurationResponse(soap, tag ? tag : "trc:GetRecordingConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingConfigurationResponse * SOAP_FMAC4 soap_get__trc__GetRecordingConfigurationResponse(struct soap *soap, _trc__GetRecordingConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__GetRecordingConfiguration::RecordingToken); -} - -void _trc__GetRecordingConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__GetRecordingConfiguration::RecordingToken); -#endif -} - -int _trc__GetRecordingConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingConfiguration(struct soap *soap, const char *tag, int id, const _trc__GetRecordingConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingConfiguration), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__GetRecordingConfiguration::RecordingToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingConfiguration * SOAP_FMAC4 soap_in__trc__GetRecordingConfiguration(struct soap *soap, const char *tag, _trc__GetRecordingConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingConfiguration, sizeof(_trc__GetRecordingConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__GetRecordingConfiguration::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetRecordingConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingConfiguration, SOAP_TYPE__trc__GetRecordingConfiguration, sizeof(_trc__GetRecordingConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingConfiguration * SOAP_FMAC2 soap_instantiate__trc__GetRecordingConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingConfiguration *p; - size_t k = sizeof(_trc__GetRecordingConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingConfiguration(soap, tag ? tag : "trc:GetRecordingConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingConfiguration * SOAP_FMAC4 soap_get__trc__GetRecordingConfiguration(struct soap *soap, _trc__GetRecordingConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetRecordingConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__SetRecordingConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__SetRecordingConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetRecordingConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingConfigurationResponse(struct soap *soap, const char *tag, int id, const _trc__SetRecordingConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetRecordingConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetRecordingConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetRecordingConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetRecordingConfigurationResponse * SOAP_FMAC4 soap_in__trc__SetRecordingConfigurationResponse(struct soap *soap, const char *tag, _trc__SetRecordingConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetRecordingConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetRecordingConfigurationResponse, sizeof(_trc__SetRecordingConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetRecordingConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetRecordingConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__SetRecordingConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetRecordingConfigurationResponse, SOAP_TYPE__trc__SetRecordingConfigurationResponse, sizeof(_trc__SetRecordingConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetRecordingConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__SetRecordingConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetRecordingConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetRecordingConfigurationResponse *p; - size_t k = sizeof(_trc__SetRecordingConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetRecordingConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetRecordingConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetRecordingConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetRecordingConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetRecordingConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetRecordingConfigurationResponse(soap, tag ? tag : "trc:SetRecordingConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetRecordingConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetRecordingConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetRecordingConfigurationResponse * SOAP_FMAC4 soap_get__trc__SetRecordingConfigurationResponse(struct soap *soap, _trc__SetRecordingConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetRecordingConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__SetRecordingConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__SetRecordingConfiguration::RecordingToken); - this->_trc__SetRecordingConfiguration::RecordingConfiguration = NULL; -} - -void _trc__SetRecordingConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__SetRecordingConfiguration::RecordingToken); - soap_serialize_PointerTott__RecordingConfiguration(soap, &this->_trc__SetRecordingConfiguration::RecordingConfiguration); -#endif -} - -int _trc__SetRecordingConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__SetRecordingConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingConfiguration(struct soap *soap, const char *tag, int id, const _trc__SetRecordingConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__SetRecordingConfiguration), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__SetRecordingConfiguration::RecordingToken, "")) - return soap->error; - if (!a->_trc__SetRecordingConfiguration::RecordingConfiguration) - { if (soap_element_empty(soap, "trc:RecordingConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingConfiguration(soap, "trc:RecordingConfiguration", -1, &a->_trc__SetRecordingConfiguration::RecordingConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__SetRecordingConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__SetRecordingConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__SetRecordingConfiguration * SOAP_FMAC4 soap_in__trc__SetRecordingConfiguration(struct soap *soap, const char *tag, _trc__SetRecordingConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__SetRecordingConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__SetRecordingConfiguration, sizeof(_trc__SetRecordingConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__SetRecordingConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__SetRecordingConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_RecordingConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__SetRecordingConfiguration::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_RecordingConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingConfiguration(soap, "trc:RecordingConfiguration", &a->_trc__SetRecordingConfiguration::RecordingConfiguration, "tt:RecordingConfiguration")) - { soap_flag_RecordingConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || !a->_trc__SetRecordingConfiguration::RecordingConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__SetRecordingConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__SetRecordingConfiguration, SOAP_TYPE__trc__SetRecordingConfiguration, sizeof(_trc__SetRecordingConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__SetRecordingConfiguration * SOAP_FMAC2 soap_instantiate__trc__SetRecordingConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__SetRecordingConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__SetRecordingConfiguration *p; - size_t k = sizeof(_trc__SetRecordingConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__SetRecordingConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__SetRecordingConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__SetRecordingConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__SetRecordingConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__SetRecordingConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__SetRecordingConfiguration(soap, tag ? tag : "trc:SetRecordingConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__SetRecordingConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__SetRecordingConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__SetRecordingConfiguration * SOAP_FMAC4 soap_get__trc__SetRecordingConfiguration(struct soap *soap, _trc__SetRecordingConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__SetRecordingConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordingsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(soap, &this->_trc__GetRecordingsResponse::RecordingItem); -} - -void _trc__GetRecordingsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(soap, &this->_trc__GetRecordingsResponse::RecordingItem); -#endif -} - -int _trc__GetRecordingsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordingsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingsResponse(struct soap *soap, const char *tag, int id, const _trc__GetRecordingsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordingsResponse), type)) - return soap->error; - soap_element_result(soap, "trc:RecordingItem"); - if (soap_out_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(soap, "trc:RecordingItem", -1, &a->_trc__GetRecordingsResponse::RecordingItem, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordingsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordingsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordingsResponse * SOAP_FMAC4 soap_in__trc__GetRecordingsResponse(struct soap *soap, const char *tag, _trc__GetRecordingsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordingsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordingsResponse, sizeof(_trc__GetRecordingsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordingsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordingsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(soap, "trc:RecordingItem", &a->_trc__GetRecordingsResponse::RecordingItem, "tt:GetRecordingsResponseItem")) - continue; - } - soap_check_result(soap, "trc:RecordingItem"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__GetRecordingsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordingsResponse, SOAP_TYPE__trc__GetRecordingsResponse, sizeof(_trc__GetRecordingsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordingsResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordingsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordingsResponse *p; - size_t k = sizeof(_trc__GetRecordingsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordingsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordingsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordingsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordingsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordingsResponse(soap, tag ? tag : "trc:GetRecordingsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordingsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordingsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordingsResponse * SOAP_FMAC4 soap_get__trc__GetRecordingsResponse(struct soap *soap, _trc__GetRecordingsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordingsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetRecordings::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__GetRecordings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__GetRecordings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetRecordings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordings(struct soap *soap, const char *tag, int id, const _trc__GetRecordings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetRecordings), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetRecordings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetRecordings(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetRecordings * SOAP_FMAC4 soap_in__trc__GetRecordings(struct soap *soap, const char *tag, _trc__GetRecordings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetRecordings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetRecordings, sizeof(_trc__GetRecordings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetRecordings) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetRecordings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__GetRecordings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetRecordings, SOAP_TYPE__trc__GetRecordings, sizeof(_trc__GetRecordings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetRecordings * SOAP_FMAC2 soap_instantiate__trc__GetRecordings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetRecordings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetRecordings *p; - size_t k = sizeof(_trc__GetRecordings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetRecordings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetRecordings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetRecordings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetRecordings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetRecordings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetRecordings(soap, tag ? tag : "trc:GetRecordings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetRecordings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetRecordings(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetRecordings * SOAP_FMAC4 soap_get__trc__GetRecordings(struct soap *soap, _trc__GetRecordings *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetRecordings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__DeleteRecordingResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__DeleteRecordingResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__DeleteRecordingResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__DeleteRecordingResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecordingResponse(struct soap *soap, const char *tag, int id, const _trc__DeleteRecordingResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__DeleteRecordingResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__DeleteRecordingResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__DeleteRecordingResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__DeleteRecordingResponse * SOAP_FMAC4 soap_in__trc__DeleteRecordingResponse(struct soap *soap, const char *tag, _trc__DeleteRecordingResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__DeleteRecordingResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__DeleteRecordingResponse, sizeof(_trc__DeleteRecordingResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__DeleteRecordingResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__DeleteRecordingResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__DeleteRecordingResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__DeleteRecordingResponse, SOAP_TYPE__trc__DeleteRecordingResponse, sizeof(_trc__DeleteRecordingResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__DeleteRecordingResponse * SOAP_FMAC2 soap_instantiate__trc__DeleteRecordingResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__DeleteRecordingResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__DeleteRecordingResponse *p; - size_t k = sizeof(_trc__DeleteRecordingResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__DeleteRecordingResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__DeleteRecordingResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__DeleteRecordingResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__DeleteRecordingResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__DeleteRecordingResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__DeleteRecordingResponse(soap, tag ? tag : "trc:DeleteRecordingResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__DeleteRecordingResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__DeleteRecordingResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__DeleteRecordingResponse * SOAP_FMAC4 soap_get__trc__DeleteRecordingResponse(struct soap *soap, _trc__DeleteRecordingResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__DeleteRecordingResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__DeleteRecording::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__DeleteRecording::RecordingToken); -} - -void _trc__DeleteRecording::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__DeleteRecording::RecordingToken); -#endif -} - -int _trc__DeleteRecording::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__DeleteRecording(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecording(struct soap *soap, const char *tag, int id, const _trc__DeleteRecording *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__DeleteRecording), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__DeleteRecording::RecordingToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__DeleteRecording::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__DeleteRecording(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__DeleteRecording * SOAP_FMAC4 soap_in__trc__DeleteRecording(struct soap *soap, const char *tag, _trc__DeleteRecording *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__DeleteRecording*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__DeleteRecording, sizeof(_trc__DeleteRecording), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__DeleteRecording) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__DeleteRecording *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__DeleteRecording::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__DeleteRecording *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__DeleteRecording, SOAP_TYPE__trc__DeleteRecording, sizeof(_trc__DeleteRecording), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__DeleteRecording * SOAP_FMAC2 soap_instantiate__trc__DeleteRecording(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__DeleteRecording(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__DeleteRecording *p; - size_t k = sizeof(_trc__DeleteRecording); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__DeleteRecording, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__DeleteRecording); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__DeleteRecording, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__DeleteRecording location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__DeleteRecording::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__DeleteRecording(soap, tag ? tag : "trc:DeleteRecording", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__DeleteRecording::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__DeleteRecording(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__DeleteRecording * SOAP_FMAC4 soap_get__trc__DeleteRecording(struct soap *soap, _trc__DeleteRecording *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__DeleteRecording(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__CreateRecordingResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->_trc__CreateRecordingResponse::RecordingToken); -} - -void _trc__CreateRecordingResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->_trc__CreateRecordingResponse::RecordingToken); -#endif -} - -int _trc__CreateRecordingResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__CreateRecordingResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecordingResponse(struct soap *soap, const char *tag, int id, const _trc__CreateRecordingResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__CreateRecordingResponse), type)) - return soap->error; - soap_element_result(soap, "trc:RecordingToken"); - if (soap_out_tt__RecordingReference(soap, "trc:RecordingToken", -1, &a->_trc__CreateRecordingResponse::RecordingToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__CreateRecordingResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__CreateRecordingResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__CreateRecordingResponse * SOAP_FMAC4 soap_in__trc__CreateRecordingResponse(struct soap *soap, const char *tag, _trc__CreateRecordingResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__CreateRecordingResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__CreateRecordingResponse, sizeof(_trc__CreateRecordingResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__CreateRecordingResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__CreateRecordingResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "trc:RecordingToken", &a->_trc__CreateRecordingResponse::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - soap_check_result(soap, "trc:RecordingToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__CreateRecordingResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__CreateRecordingResponse, SOAP_TYPE__trc__CreateRecordingResponse, sizeof(_trc__CreateRecordingResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__CreateRecordingResponse * SOAP_FMAC2 soap_instantiate__trc__CreateRecordingResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__CreateRecordingResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__CreateRecordingResponse *p; - size_t k = sizeof(_trc__CreateRecordingResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__CreateRecordingResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__CreateRecordingResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__CreateRecordingResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__CreateRecordingResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__CreateRecordingResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__CreateRecordingResponse(soap, tag ? tag : "trc:CreateRecordingResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__CreateRecordingResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__CreateRecordingResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__CreateRecordingResponse * SOAP_FMAC4 soap_get__trc__CreateRecordingResponse(struct soap *soap, _trc__CreateRecordingResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__CreateRecordingResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__CreateRecording::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__CreateRecording::RecordingConfiguration = NULL; -} - -void _trc__CreateRecording::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingConfiguration(soap, &this->_trc__CreateRecording::RecordingConfiguration); -#endif -} - -int _trc__CreateRecording::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__CreateRecording(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecording(struct soap *soap, const char *tag, int id, const _trc__CreateRecording *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__CreateRecording), type)) - return soap->error; - if (!a->_trc__CreateRecording::RecordingConfiguration) - { if (soap_element_empty(soap, "trc:RecordingConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingConfiguration(soap, "trc:RecordingConfiguration", -1, &a->_trc__CreateRecording::RecordingConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__CreateRecording::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__CreateRecording(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__CreateRecording * SOAP_FMAC4 soap_in__trc__CreateRecording(struct soap *soap, const char *tag, _trc__CreateRecording *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__CreateRecording*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__CreateRecording, sizeof(_trc__CreateRecording), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__CreateRecording) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__CreateRecording *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RecordingConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingConfiguration(soap, "trc:RecordingConfiguration", &a->_trc__CreateRecording::RecordingConfiguration, "tt:RecordingConfiguration")) - { soap_flag_RecordingConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__CreateRecording::RecordingConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__CreateRecording *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__CreateRecording, SOAP_TYPE__trc__CreateRecording, sizeof(_trc__CreateRecording), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__CreateRecording * SOAP_FMAC2 soap_instantiate__trc__CreateRecording(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__CreateRecording(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__CreateRecording *p; - size_t k = sizeof(_trc__CreateRecording); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__CreateRecording, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__CreateRecording); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__CreateRecording, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__CreateRecording location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__CreateRecording::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__CreateRecording(soap, tag ? tag : "trc:CreateRecording", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__CreateRecording::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__CreateRecording(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__CreateRecording * SOAP_FMAC4 soap_get__trc__CreateRecording(struct soap *soap, _trc__CreateRecording *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__CreateRecording(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trc__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _trc__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotrc__Capabilities(soap, &this->_trc__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _trc__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _trc__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "trc:Capabilities"); - if (!a->_trc__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "trc:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrc__Capabilities(soap, "trc:Capabilities", -1, &a->_trc__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trc__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _trc__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetServiceCapabilitiesResponse, sizeof(_trc__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrc__Capabilities(soap, "trc:Capabilities", &a->_trc__GetServiceCapabilitiesResponse::Capabilities, "trc:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "trc:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trc__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trc__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetServiceCapabilitiesResponse, SOAP_TYPE__trc__GetServiceCapabilitiesResponse, sizeof(_trc__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trc__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_trc__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetServiceCapabilitiesResponse(soap, tag ? tag : "trc:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trc__GetServiceCapabilitiesResponse(struct soap *soap, _trc__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trc__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trc__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trc__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trc__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _trc__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trc__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trc__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trc__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _trc__GetServiceCapabilities * SOAP_FMAC4 soap_in__trc__GetServiceCapabilities(struct soap *soap, const char *tag, _trc__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trc__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trc__GetServiceCapabilities, sizeof(_trc__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trc__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_trc__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trc__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trc__GetServiceCapabilities, SOAP_TYPE__trc__GetServiceCapabilities, sizeof(_trc__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trc__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trc__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trc__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trc__GetServiceCapabilities *p; - size_t k = sizeof(_trc__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trc__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trc__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trc__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trc__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trc__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trc__GetServiceCapabilities(soap, tag ? tag : "trc:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trc__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trc__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _trc__GetServiceCapabilities * SOAP_FMAC4 soap_get__trc__GetServiceCapabilities(struct soap *soap, _trc__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__trc__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trc__TrackOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->trc__TrackOptions::SpareTotal = NULL; - this->trc__TrackOptions::SpareVideo = NULL; - this->trc__TrackOptions::SpareAudio = NULL; - this->trc__TrackOptions::SpareMetadata = NULL; - soap_default_xsd__anyAttribute(soap, &this->trc__TrackOptions::__anyAttribute); -} - -void trc__TrackOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int trc__TrackOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trc__TrackOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__TrackOptions(struct soap *soap, const char *tag, int id, const trc__TrackOptions *a, const char *type) -{ - if (((trc__TrackOptions*)a)->SpareTotal) - { soap_set_attr(soap, "SpareTotal", soap_int2s(soap, *((trc__TrackOptions*)a)->SpareTotal), 1); - } - if (((trc__TrackOptions*)a)->SpareVideo) - { soap_set_attr(soap, "SpareVideo", soap_int2s(soap, *((trc__TrackOptions*)a)->SpareVideo), 1); - } - if (((trc__TrackOptions*)a)->SpareAudio) - { soap_set_attr(soap, "SpareAudio", soap_int2s(soap, *((trc__TrackOptions*)a)->SpareAudio), 1); - } - if (((trc__TrackOptions*)a)->SpareMetadata) - { soap_set_attr(soap, "SpareMetadata", soap_int2s(soap, *((trc__TrackOptions*)a)->SpareMetadata), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trc__TrackOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trc__TrackOptions), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trc__TrackOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trc__TrackOptions(soap, tag, this, type); -} - -SOAP_FMAC3 trc__TrackOptions * SOAP_FMAC4 soap_in_trc__TrackOptions(struct soap *soap, const char *tag, trc__TrackOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trc__TrackOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trc__TrackOptions, sizeof(trc__TrackOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trc__TrackOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (trc__TrackOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "SpareTotal", 5, 0); - if (t) - { - if (!(((trc__TrackOptions*)a)->SpareTotal = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trc__TrackOptions*)a)->SpareTotal)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SpareVideo", 5, 0); - if (t) - { - if (!(((trc__TrackOptions*)a)->SpareVideo = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trc__TrackOptions*)a)->SpareVideo)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SpareAudio", 5, 0); - if (t) - { - if (!(((trc__TrackOptions*)a)->SpareAudio = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trc__TrackOptions*)a)->SpareAudio)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SpareMetadata", 5, 0); - if (t) - { - if (!(((trc__TrackOptions*)a)->SpareMetadata = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trc__TrackOptions*)a)->SpareMetadata)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trc__TrackOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trc__TrackOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trc__TrackOptions, SOAP_TYPE_trc__TrackOptions, sizeof(trc__TrackOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trc__TrackOptions * SOAP_FMAC2 soap_instantiate_trc__TrackOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trc__TrackOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trc__TrackOptions *p; - size_t k = sizeof(trc__TrackOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trc__TrackOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trc__TrackOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trc__TrackOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trc__TrackOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trc__TrackOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trc__TrackOptions(soap, tag ? tag : "trc:TrackOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trc__TrackOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trc__TrackOptions(soap, this, tag, type); -} - -SOAP_FMAC3 trc__TrackOptions * SOAP_FMAC4 soap_get_trc__TrackOptions(struct soap *soap, trc__TrackOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_trc__TrackOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trc__JobOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->trc__JobOptions::Spare = NULL; - this->trc__JobOptions::CompatibleSources = NULL; - soap_default_xsd__anyAttribute(soap, &this->trc__JobOptions::__anyAttribute); -} - -void trc__JobOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int trc__JobOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trc__JobOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__JobOptions(struct soap *soap, const char *tag, int id, const trc__JobOptions *a, const char *type) -{ - if (((trc__JobOptions*)a)->Spare) - { soap_set_attr(soap, "Spare", soap_int2s(soap, *((trc__JobOptions*)a)->Spare), 1); - } - if (((trc__JobOptions*)a)->CompatibleSources) - { soap_set_attr(soap, "CompatibleSources", soap_tt__StringAttrList2s(soap, *((trc__JobOptions*)a)->CompatibleSources), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trc__JobOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trc__JobOptions), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trc__JobOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trc__JobOptions(soap, tag, this, type); -} - -SOAP_FMAC3 trc__JobOptions * SOAP_FMAC4 soap_in_trc__JobOptions(struct soap *soap, const char *tag, trc__JobOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trc__JobOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trc__JobOptions, sizeof(trc__JobOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trc__JobOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (trc__JobOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "Spare", 5, 0); - if (t) - { - if (!(((trc__JobOptions*)a)->Spare = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trc__JobOptions*)a)->Spare)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "CompatibleSources", 1, 0); - if (t) - { - if (!(((trc__JobOptions*)a)->CompatibleSources = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((trc__JobOptions*)a)->CompatibleSources)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trc__JobOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trc__JobOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trc__JobOptions, SOAP_TYPE_trc__JobOptions, sizeof(trc__JobOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trc__JobOptions * SOAP_FMAC2 soap_instantiate_trc__JobOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trc__JobOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trc__JobOptions *p; - size_t k = sizeof(trc__JobOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trc__JobOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trc__JobOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trc__JobOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trc__JobOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trc__JobOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trc__JobOptions(soap, tag ? tag : "trc:JobOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trc__JobOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trc__JobOptions(soap, this, tag, type); -} - -SOAP_FMAC3 trc__JobOptions * SOAP_FMAC4 soap_get_trc__JobOptions(struct soap *soap, trc__JobOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_trc__JobOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trc__RecordingOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->trc__RecordingOptions::Job = NULL; - this->trc__RecordingOptions::Track = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trc__RecordingOptions::__any); -} - -void trc__RecordingOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotrc__JobOptions(soap, &this->trc__RecordingOptions::Job); - soap_serialize_PointerTotrc__TrackOptions(soap, &this->trc__RecordingOptions::Track); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trc__RecordingOptions::__any); -#endif -} - -int trc__RecordingOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trc__RecordingOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__RecordingOptions(struct soap *soap, const char *tag, int id, const trc__RecordingOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trc__RecordingOptions), type)) - return soap->error; - if (!a->trc__RecordingOptions::Job) - { if (soap_element_empty(soap, "trc:Job", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrc__JobOptions(soap, "trc:Job", -1, &a->trc__RecordingOptions::Job, "")) - return soap->error; - if (!a->trc__RecordingOptions::Track) - { if (soap_element_empty(soap, "trc:Track", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrc__TrackOptions(soap, "trc:Track", -1, &a->trc__RecordingOptions::Track, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trc__RecordingOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trc__RecordingOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trc__RecordingOptions(soap, tag, this, type); -} - -SOAP_FMAC3 trc__RecordingOptions * SOAP_FMAC4 soap_in_trc__RecordingOptions(struct soap *soap, const char *tag, trc__RecordingOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trc__RecordingOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trc__RecordingOptions, sizeof(trc__RecordingOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trc__RecordingOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (trc__RecordingOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Job1 = 1; - size_t soap_flag_Track1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Job1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrc__JobOptions(soap, "trc:Job", &a->trc__RecordingOptions::Job, "trc:JobOptions")) - { soap_flag_Job1--; - continue; - } - } - if (soap_flag_Track1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrc__TrackOptions(soap, "trc:Track", &a->trc__RecordingOptions::Track, "trc:TrackOptions")) - { soap_flag_Track1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trc__RecordingOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->trc__RecordingOptions::Job || !a->trc__RecordingOptions::Track)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (trc__RecordingOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trc__RecordingOptions, SOAP_TYPE_trc__RecordingOptions, sizeof(trc__RecordingOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trc__RecordingOptions * SOAP_FMAC2 soap_instantiate_trc__RecordingOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trc__RecordingOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trc__RecordingOptions *p; - size_t k = sizeof(trc__RecordingOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trc__RecordingOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trc__RecordingOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trc__RecordingOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trc__RecordingOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trc__RecordingOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trc__RecordingOptions(soap, tag ? tag : "trc:RecordingOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trc__RecordingOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trc__RecordingOptions(soap, this, tag, type); -} - -SOAP_FMAC3 trc__RecordingOptions * SOAP_FMAC4 soap_get_trc__RecordingOptions(struct soap *soap, trc__RecordingOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_trc__RecordingOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trc__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trc__Capabilities::__any); - this->trc__Capabilities::DynamicRecordings = NULL; - this->trc__Capabilities::DynamicTracks = NULL; - this->trc__Capabilities::Encoding = NULL; - this->trc__Capabilities::MaxRate = NULL; - this->trc__Capabilities::MaxTotalRate = NULL; - this->trc__Capabilities::MaxRecordings = NULL; - this->trc__Capabilities::MaxRecordingJobs = NULL; - this->trc__Capabilities::Options = NULL; - this->trc__Capabilities::MetadataRecording = NULL; - this->trc__Capabilities::SupportedExportFileFormats = NULL; - soap_default_xsd__anyAttribute(soap, &this->trc__Capabilities::__anyAttribute); -} - -void trc__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trc__Capabilities::__any); -#endif -} - -int trc__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trc__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__Capabilities(struct soap *soap, const char *tag, int id, const trc__Capabilities *a, const char *type) -{ - if (((trc__Capabilities*)a)->DynamicRecordings) - { soap_set_attr(soap, "DynamicRecordings", soap_bool2s(soap, *((trc__Capabilities*)a)->DynamicRecordings), 1); - } - if (((trc__Capabilities*)a)->DynamicTracks) - { soap_set_attr(soap, "DynamicTracks", soap_bool2s(soap, *((trc__Capabilities*)a)->DynamicTracks), 1); - } - if (((trc__Capabilities*)a)->Encoding) - { soap_set_attr(soap, "Encoding", soap_trc__EncodingTypes2s(soap, *((trc__Capabilities*)a)->Encoding), 1); - } - if (((trc__Capabilities*)a)->MaxRate) - { soap_set_attr(soap, "MaxRate", soap_float2s(soap, *((trc__Capabilities*)a)->MaxRate), 1); - } - if (((trc__Capabilities*)a)->MaxTotalRate) - { soap_set_attr(soap, "MaxTotalRate", soap_float2s(soap, *((trc__Capabilities*)a)->MaxTotalRate), 1); - } - if (((trc__Capabilities*)a)->MaxRecordings) - { soap_set_attr(soap, "MaxRecordings", soap_float2s(soap, *((trc__Capabilities*)a)->MaxRecordings), 1); - } - if (((trc__Capabilities*)a)->MaxRecordingJobs) - { soap_set_attr(soap, "MaxRecordingJobs", soap_int2s(soap, *((trc__Capabilities*)a)->MaxRecordingJobs), 1); - } - if (((trc__Capabilities*)a)->Options) - { soap_set_attr(soap, "Options", soap_bool2s(soap, *((trc__Capabilities*)a)->Options), 1); - } - if (((trc__Capabilities*)a)->MetadataRecording) - { soap_set_attr(soap, "MetadataRecording", soap_bool2s(soap, *((trc__Capabilities*)a)->MetadataRecording), 1); - } - if (((trc__Capabilities*)a)->SupportedExportFileFormats) - { soap_set_attr(soap, "SupportedExportFileFormats", soap_tt__StringAttrList2s(soap, *((trc__Capabilities*)a)->SupportedExportFileFormats), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trc__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trc__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trc__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trc__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trc__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 trc__Capabilities * SOAP_FMAC4 soap_in_trc__Capabilities(struct soap *soap, const char *tag, trc__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trc__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trc__Capabilities, sizeof(trc__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trc__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (trc__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "DynamicRecordings", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->DynamicRecordings = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trc__Capabilities*)a)->DynamicRecordings)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "DynamicTracks", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->DynamicTracks = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trc__Capabilities*)a)->DynamicTracks)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Encoding", 1, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->Encoding = soap_new_trc__EncodingTypes(soap))) - return NULL; - if (soap_s2trc__EncodingTypes(soap, t, ((trc__Capabilities*)a)->Encoding)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxRate", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->MaxRate = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((trc__Capabilities*)a)->MaxRate)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxTotalRate", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->MaxTotalRate = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((trc__Capabilities*)a)->MaxTotalRate)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxRecordings", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->MaxRecordings = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((trc__Capabilities*)a)->MaxRecordings)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxRecordingJobs", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->MaxRecordingJobs = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trc__Capabilities*)a)->MaxRecordingJobs)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Options", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->Options = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trc__Capabilities*)a)->Options)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MetadataRecording", 5, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->MetadataRecording = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trc__Capabilities*)a)->MetadataRecording)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SupportedExportFileFormats", 1, 0); - if (t) - { - if (!(((trc__Capabilities*)a)->SupportedExportFileFormats = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((trc__Capabilities*)a)->SupportedExportFileFormats)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trc__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trc__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trc__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trc__Capabilities, SOAP_TYPE_trc__Capabilities, sizeof(trc__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trc__Capabilities * SOAP_FMAC2 soap_instantiate_trc__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trc__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trc__Capabilities *p; - size_t k = sizeof(trc__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trc__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trc__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trc__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trc__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trc__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trc__Capabilities(soap, tag ? tag : "trc:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trc__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trc__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 trc__Capabilities * SOAP_FMAC4 soap_get_trc__Capabilities(struct soap *soap, trc__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_trc__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetReceiverStateResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trv__GetReceiverStateResponse::ReceiverState = NULL; -} - -void _trv__GetReceiverStateResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReceiverStateInformation(soap, &this->_trv__GetReceiverStateResponse::ReceiverState); -#endif -} - -int _trv__GetReceiverStateResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetReceiverStateResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiverStateResponse(struct soap *soap, const char *tag, int id, const _trv__GetReceiverStateResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetReceiverStateResponse), type)) - return soap->error; - if (a->ReceiverState) - soap_element_result(soap, "trv:ReceiverState"); - if (!a->_trv__GetReceiverStateResponse::ReceiverState) - { if (soap_element_empty(soap, "trv:ReceiverState", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ReceiverStateInformation(soap, "trv:ReceiverState", -1, &a->_trv__GetReceiverStateResponse::ReceiverState, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetReceiverStateResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetReceiverStateResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetReceiverStateResponse * SOAP_FMAC4 soap_in__trv__GetReceiverStateResponse(struct soap *soap, const char *tag, _trv__GetReceiverStateResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetReceiverStateResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetReceiverStateResponse, sizeof(_trv__GetReceiverStateResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetReceiverStateResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetReceiverStateResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ReceiverState1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ReceiverState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReceiverStateInformation(soap, "trv:ReceiverState", &a->_trv__GetReceiverStateResponse::ReceiverState, "tt:ReceiverStateInformation")) - { soap_flag_ReceiverState1--; - continue; - } - } - soap_check_result(soap, "trv:ReceiverState"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trv__GetReceiverStateResponse::ReceiverState)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__GetReceiverStateResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetReceiverStateResponse, SOAP_TYPE__trv__GetReceiverStateResponse, sizeof(_trv__GetReceiverStateResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetReceiverStateResponse * SOAP_FMAC2 soap_instantiate__trv__GetReceiverStateResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetReceiverStateResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetReceiverStateResponse *p; - size_t k = sizeof(_trv__GetReceiverStateResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetReceiverStateResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetReceiverStateResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetReceiverStateResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetReceiverStateResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetReceiverStateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetReceiverStateResponse(soap, tag ? tag : "trv:GetReceiverStateResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetReceiverStateResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetReceiverStateResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetReceiverStateResponse * SOAP_FMAC4 soap_get__trv__GetReceiverStateResponse(struct soap *soap, _trv__GetReceiverStateResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetReceiverStateResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetReceiverState::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trv__GetReceiverState::ReceiverToken); -} - -void _trv__GetReceiverState::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trv__GetReceiverState::ReceiverToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trv__GetReceiverState::ReceiverToken); -#endif -} - -int _trv__GetReceiverState::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetReceiverState(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiverState(struct soap *soap, const char *tag, int id, const _trv__GetReceiverState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetReceiverState), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trv:ReceiverToken", -1, &a->_trv__GetReceiverState::ReceiverToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetReceiverState::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetReceiverState(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetReceiverState * SOAP_FMAC4 soap_in__trv__GetReceiverState(struct soap *soap, const char *tag, _trv__GetReceiverState *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetReceiverState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetReceiverState, sizeof(_trv__GetReceiverState), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetReceiverState) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetReceiverState *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ReceiverToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ReceiverToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trv:ReceiverToken", &a->_trv__GetReceiverState::ReceiverToken, "tt:ReferenceToken")) - { soap_flag_ReceiverToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ReceiverToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__GetReceiverState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetReceiverState, SOAP_TYPE__trv__GetReceiverState, sizeof(_trv__GetReceiverState), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetReceiverState * SOAP_FMAC2 soap_instantiate__trv__GetReceiverState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetReceiverState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetReceiverState *p; - size_t k = sizeof(_trv__GetReceiverState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetReceiverState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetReceiverState); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetReceiverState, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetReceiverState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetReceiverState::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetReceiverState(soap, tag ? tag : "trv:GetReceiverState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetReceiverState::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetReceiverState(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetReceiverState * SOAP_FMAC4 soap_get__trv__GetReceiverState(struct soap *soap, _trv__GetReceiverState *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetReceiverState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__SetReceiverModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trv__SetReceiverModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trv__SetReceiverModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__SetReceiverModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__SetReceiverModeResponse(struct soap *soap, const char *tag, int id, const _trv__SetReceiverModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__SetReceiverModeResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__SetReceiverModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__SetReceiverModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__SetReceiverModeResponse * SOAP_FMAC4 soap_in__trv__SetReceiverModeResponse(struct soap *soap, const char *tag, _trv__SetReceiverModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__SetReceiverModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__SetReceiverModeResponse, sizeof(_trv__SetReceiverModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__SetReceiverModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__SetReceiverModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trv__SetReceiverModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__SetReceiverModeResponse, SOAP_TYPE__trv__SetReceiverModeResponse, sizeof(_trv__SetReceiverModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__SetReceiverModeResponse * SOAP_FMAC2 soap_instantiate__trv__SetReceiverModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__SetReceiverModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__SetReceiverModeResponse *p; - size_t k = sizeof(_trv__SetReceiverModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__SetReceiverModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__SetReceiverModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__SetReceiverModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__SetReceiverModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__SetReceiverModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__SetReceiverModeResponse(soap, tag ? tag : "trv:SetReceiverModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__SetReceiverModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__SetReceiverModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__SetReceiverModeResponse * SOAP_FMAC4 soap_get__trv__SetReceiverModeResponse(struct soap *soap, _trv__SetReceiverModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__SetReceiverModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__SetReceiverMode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trv__SetReceiverMode::ReceiverToken); - soap_default_tt__ReceiverMode(soap, &this->_trv__SetReceiverMode::Mode); -} - -void _trv__SetReceiverMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trv__SetReceiverMode::ReceiverToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trv__SetReceiverMode::ReceiverToken); -#endif -} - -int _trv__SetReceiverMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__SetReceiverMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__SetReceiverMode(struct soap *soap, const char *tag, int id, const _trv__SetReceiverMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__SetReceiverMode), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trv:ReceiverToken", -1, &a->_trv__SetReceiverMode::ReceiverToken, "")) - return soap->error; - if (soap_out_tt__ReceiverMode(soap, "trv:Mode", -1, &a->_trv__SetReceiverMode::Mode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__SetReceiverMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__SetReceiverMode(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__SetReceiverMode * SOAP_FMAC4 soap_in__trv__SetReceiverMode(struct soap *soap, const char *tag, _trv__SetReceiverMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__SetReceiverMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__SetReceiverMode, sizeof(_trv__SetReceiverMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__SetReceiverMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__SetReceiverMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ReceiverToken1 = 1; - size_t soap_flag_Mode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ReceiverToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trv:ReceiverToken", &a->_trv__SetReceiverMode::ReceiverToken, "tt:ReferenceToken")) - { soap_flag_ReceiverToken1--; - continue; - } - } - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ReceiverMode(soap, "trv:Mode", &a->_trv__SetReceiverMode::Mode, "tt:ReceiverMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ReceiverToken1 > 0 || soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__SetReceiverMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__SetReceiverMode, SOAP_TYPE__trv__SetReceiverMode, sizeof(_trv__SetReceiverMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__SetReceiverMode * SOAP_FMAC2 soap_instantiate__trv__SetReceiverMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__SetReceiverMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__SetReceiverMode *p; - size_t k = sizeof(_trv__SetReceiverMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__SetReceiverMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__SetReceiverMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__SetReceiverMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__SetReceiverMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__SetReceiverMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__SetReceiverMode(soap, tag ? tag : "trv:SetReceiverMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__SetReceiverMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__SetReceiverMode(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__SetReceiverMode * SOAP_FMAC4 soap_get__trv__SetReceiverMode(struct soap *soap, _trv__SetReceiverMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__SetReceiverMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__ConfigureReceiverResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trv__ConfigureReceiverResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trv__ConfigureReceiverResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__ConfigureReceiverResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__ConfigureReceiverResponse(struct soap *soap, const char *tag, int id, const _trv__ConfigureReceiverResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__ConfigureReceiverResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__ConfigureReceiverResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__ConfigureReceiverResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__ConfigureReceiverResponse * SOAP_FMAC4 soap_in__trv__ConfigureReceiverResponse(struct soap *soap, const char *tag, _trv__ConfigureReceiverResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__ConfigureReceiverResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__ConfigureReceiverResponse, sizeof(_trv__ConfigureReceiverResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__ConfigureReceiverResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__ConfigureReceiverResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trv__ConfigureReceiverResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__ConfigureReceiverResponse, SOAP_TYPE__trv__ConfigureReceiverResponse, sizeof(_trv__ConfigureReceiverResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__ConfigureReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__ConfigureReceiverResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__ConfigureReceiverResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__ConfigureReceiverResponse *p; - size_t k = sizeof(_trv__ConfigureReceiverResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__ConfigureReceiverResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__ConfigureReceiverResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__ConfigureReceiverResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__ConfigureReceiverResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__ConfigureReceiverResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__ConfigureReceiverResponse(soap, tag ? tag : "trv:ConfigureReceiverResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__ConfigureReceiverResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__ConfigureReceiverResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__ConfigureReceiverResponse * SOAP_FMAC4 soap_get__trv__ConfigureReceiverResponse(struct soap *soap, _trv__ConfigureReceiverResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__ConfigureReceiverResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__ConfigureReceiver::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trv__ConfigureReceiver::ReceiverToken); - this->_trv__ConfigureReceiver::Configuration = NULL; -} - -void _trv__ConfigureReceiver::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trv__ConfigureReceiver::ReceiverToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trv__ConfigureReceiver::ReceiverToken); - soap_serialize_PointerTott__ReceiverConfiguration(soap, &this->_trv__ConfigureReceiver::Configuration); -#endif -} - -int _trv__ConfigureReceiver::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__ConfigureReceiver(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__ConfigureReceiver(struct soap *soap, const char *tag, int id, const _trv__ConfigureReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__ConfigureReceiver), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trv:ReceiverToken", -1, &a->_trv__ConfigureReceiver::ReceiverToken, "")) - return soap->error; - if (!a->_trv__ConfigureReceiver::Configuration) - { if (soap_element_empty(soap, "trv:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ReceiverConfiguration(soap, "trv:Configuration", -1, &a->_trv__ConfigureReceiver::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__ConfigureReceiver::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__ConfigureReceiver(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__ConfigureReceiver * SOAP_FMAC4 soap_in__trv__ConfigureReceiver(struct soap *soap, const char *tag, _trv__ConfigureReceiver *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__ConfigureReceiver*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__ConfigureReceiver, sizeof(_trv__ConfigureReceiver), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__ConfigureReceiver) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__ConfigureReceiver *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ReceiverToken1 = 1; - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ReceiverToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trv:ReceiverToken", &a->_trv__ConfigureReceiver::ReceiverToken, "tt:ReferenceToken")) - { soap_flag_ReceiverToken1--; - continue; - } - } - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReceiverConfiguration(soap, "trv:Configuration", &a->_trv__ConfigureReceiver::Configuration, "tt:ReceiverConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ReceiverToken1 > 0 || !a->_trv__ConfigureReceiver::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__ConfigureReceiver *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__ConfigureReceiver, SOAP_TYPE__trv__ConfigureReceiver, sizeof(_trv__ConfigureReceiver), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__ConfigureReceiver * SOAP_FMAC2 soap_instantiate__trv__ConfigureReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__ConfigureReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__ConfigureReceiver *p; - size_t k = sizeof(_trv__ConfigureReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__ConfigureReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__ConfigureReceiver); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__ConfigureReceiver, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__ConfigureReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__ConfigureReceiver::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__ConfigureReceiver(soap, tag ? tag : "trv:ConfigureReceiver", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__ConfigureReceiver::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__ConfigureReceiver(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__ConfigureReceiver * SOAP_FMAC4 soap_get__trv__ConfigureReceiver(struct soap *soap, _trv__ConfigureReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__ConfigureReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__DeleteReceiverResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trv__DeleteReceiverResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trv__DeleteReceiverResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__DeleteReceiverResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__DeleteReceiverResponse(struct soap *soap, const char *tag, int id, const _trv__DeleteReceiverResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__DeleteReceiverResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__DeleteReceiverResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__DeleteReceiverResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__DeleteReceiverResponse * SOAP_FMAC4 soap_in__trv__DeleteReceiverResponse(struct soap *soap, const char *tag, _trv__DeleteReceiverResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__DeleteReceiverResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__DeleteReceiverResponse, sizeof(_trv__DeleteReceiverResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__DeleteReceiverResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__DeleteReceiverResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trv__DeleteReceiverResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__DeleteReceiverResponse, SOAP_TYPE__trv__DeleteReceiverResponse, sizeof(_trv__DeleteReceiverResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__DeleteReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__DeleteReceiverResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__DeleteReceiverResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__DeleteReceiverResponse *p; - size_t k = sizeof(_trv__DeleteReceiverResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__DeleteReceiverResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__DeleteReceiverResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__DeleteReceiverResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__DeleteReceiverResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__DeleteReceiverResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__DeleteReceiverResponse(soap, tag ? tag : "trv:DeleteReceiverResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__DeleteReceiverResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__DeleteReceiverResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__DeleteReceiverResponse * SOAP_FMAC4 soap_get__trv__DeleteReceiverResponse(struct soap *soap, _trv__DeleteReceiverResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__DeleteReceiverResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__DeleteReceiver::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trv__DeleteReceiver::ReceiverToken); -} - -void _trv__DeleteReceiver::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trv__DeleteReceiver::ReceiverToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trv__DeleteReceiver::ReceiverToken); -#endif -} - -int _trv__DeleteReceiver::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__DeleteReceiver(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__DeleteReceiver(struct soap *soap, const char *tag, int id, const _trv__DeleteReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__DeleteReceiver), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trv:ReceiverToken", -1, &a->_trv__DeleteReceiver::ReceiverToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__DeleteReceiver::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__DeleteReceiver(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__DeleteReceiver * SOAP_FMAC4 soap_in__trv__DeleteReceiver(struct soap *soap, const char *tag, _trv__DeleteReceiver *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__DeleteReceiver*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__DeleteReceiver, sizeof(_trv__DeleteReceiver), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__DeleteReceiver) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__DeleteReceiver *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ReceiverToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ReceiverToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trv:ReceiverToken", &a->_trv__DeleteReceiver::ReceiverToken, "tt:ReferenceToken")) - { soap_flag_ReceiverToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ReceiverToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__DeleteReceiver *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__DeleteReceiver, SOAP_TYPE__trv__DeleteReceiver, sizeof(_trv__DeleteReceiver), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__DeleteReceiver * SOAP_FMAC2 soap_instantiate__trv__DeleteReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__DeleteReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__DeleteReceiver *p; - size_t k = sizeof(_trv__DeleteReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__DeleteReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__DeleteReceiver); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__DeleteReceiver, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__DeleteReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__DeleteReceiver::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__DeleteReceiver(soap, tag ? tag : "trv:DeleteReceiver", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__DeleteReceiver::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__DeleteReceiver(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__DeleteReceiver * SOAP_FMAC4 soap_get__trv__DeleteReceiver(struct soap *soap, _trv__DeleteReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__DeleteReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__CreateReceiverResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trv__CreateReceiverResponse::Receiver = NULL; -} - -void _trv__CreateReceiverResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Receiver(soap, &this->_trv__CreateReceiverResponse::Receiver); -#endif -} - -int _trv__CreateReceiverResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__CreateReceiverResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__CreateReceiverResponse(struct soap *soap, const char *tag, int id, const _trv__CreateReceiverResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__CreateReceiverResponse), type)) - return soap->error; - if (a->Receiver) - soap_element_result(soap, "trv:Receiver"); - if (!a->_trv__CreateReceiverResponse::Receiver) - { if (soap_element_empty(soap, "trv:Receiver", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Receiver(soap, "trv:Receiver", -1, &a->_trv__CreateReceiverResponse::Receiver, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__CreateReceiverResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__CreateReceiverResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__CreateReceiverResponse * SOAP_FMAC4 soap_in__trv__CreateReceiverResponse(struct soap *soap, const char *tag, _trv__CreateReceiverResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__CreateReceiverResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__CreateReceiverResponse, sizeof(_trv__CreateReceiverResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__CreateReceiverResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__CreateReceiverResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Receiver1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Receiver1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Receiver(soap, "trv:Receiver", &a->_trv__CreateReceiverResponse::Receiver, "tt:Receiver")) - { soap_flag_Receiver1--; - continue; - } - } - soap_check_result(soap, "trv:Receiver"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trv__CreateReceiverResponse::Receiver)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__CreateReceiverResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__CreateReceiverResponse, SOAP_TYPE__trv__CreateReceiverResponse, sizeof(_trv__CreateReceiverResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__CreateReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__CreateReceiverResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__CreateReceiverResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__CreateReceiverResponse *p; - size_t k = sizeof(_trv__CreateReceiverResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__CreateReceiverResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__CreateReceiverResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__CreateReceiverResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__CreateReceiverResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__CreateReceiverResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__CreateReceiverResponse(soap, tag ? tag : "trv:CreateReceiverResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__CreateReceiverResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__CreateReceiverResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__CreateReceiverResponse * SOAP_FMAC4 soap_get__trv__CreateReceiverResponse(struct soap *soap, _trv__CreateReceiverResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__CreateReceiverResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__CreateReceiver::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trv__CreateReceiver::Configuration = NULL; -} - -void _trv__CreateReceiver::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReceiverConfiguration(soap, &this->_trv__CreateReceiver::Configuration); -#endif -} - -int _trv__CreateReceiver::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__CreateReceiver(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__CreateReceiver(struct soap *soap, const char *tag, int id, const _trv__CreateReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__CreateReceiver), type)) - return soap->error; - if (!a->_trv__CreateReceiver::Configuration) - { if (soap_element_empty(soap, "trv:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ReceiverConfiguration(soap, "trv:Configuration", -1, &a->_trv__CreateReceiver::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__CreateReceiver::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__CreateReceiver(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__CreateReceiver * SOAP_FMAC4 soap_in__trv__CreateReceiver(struct soap *soap, const char *tag, _trv__CreateReceiver *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__CreateReceiver*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__CreateReceiver, sizeof(_trv__CreateReceiver), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__CreateReceiver) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__CreateReceiver *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReceiverConfiguration(soap, "trv:Configuration", &a->_trv__CreateReceiver::Configuration, "tt:ReceiverConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trv__CreateReceiver::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__CreateReceiver *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__CreateReceiver, SOAP_TYPE__trv__CreateReceiver, sizeof(_trv__CreateReceiver), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__CreateReceiver * SOAP_FMAC2 soap_instantiate__trv__CreateReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__CreateReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__CreateReceiver *p; - size_t k = sizeof(_trv__CreateReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__CreateReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__CreateReceiver); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__CreateReceiver, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__CreateReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__CreateReceiver::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__CreateReceiver(soap, tag ? tag : "trv:CreateReceiver", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__CreateReceiver::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__CreateReceiver(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__CreateReceiver * SOAP_FMAC4 soap_get__trv__CreateReceiver(struct soap *soap, _trv__CreateReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__CreateReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetReceiverResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trv__GetReceiverResponse::Receiver = NULL; -} - -void _trv__GetReceiverResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Receiver(soap, &this->_trv__GetReceiverResponse::Receiver); -#endif -} - -int _trv__GetReceiverResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetReceiverResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiverResponse(struct soap *soap, const char *tag, int id, const _trv__GetReceiverResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetReceiverResponse), type)) - return soap->error; - if (a->Receiver) - soap_element_result(soap, "trv:Receiver"); - if (!a->_trv__GetReceiverResponse::Receiver) - { if (soap_element_empty(soap, "trv:Receiver", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Receiver(soap, "trv:Receiver", -1, &a->_trv__GetReceiverResponse::Receiver, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetReceiverResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetReceiverResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetReceiverResponse * SOAP_FMAC4 soap_in__trv__GetReceiverResponse(struct soap *soap, const char *tag, _trv__GetReceiverResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetReceiverResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetReceiverResponse, sizeof(_trv__GetReceiverResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetReceiverResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetReceiverResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Receiver1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Receiver1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Receiver(soap, "trv:Receiver", &a->_trv__GetReceiverResponse::Receiver, "tt:Receiver")) - { soap_flag_Receiver1--; - continue; - } - } - soap_check_result(soap, "trv:Receiver"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trv__GetReceiverResponse::Receiver)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__GetReceiverResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetReceiverResponse, SOAP_TYPE__trv__GetReceiverResponse, sizeof(_trv__GetReceiverResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__GetReceiverResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetReceiverResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetReceiverResponse *p; - size_t k = sizeof(_trv__GetReceiverResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetReceiverResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetReceiverResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetReceiverResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetReceiverResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetReceiverResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetReceiverResponse(soap, tag ? tag : "trv:GetReceiverResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetReceiverResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetReceiverResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetReceiverResponse * SOAP_FMAC4 soap_get__trv__GetReceiverResponse(struct soap *soap, _trv__GetReceiverResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetReceiverResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetReceiver::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trv__GetReceiver::ReceiverToken); -} - -void _trv__GetReceiver::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trv__GetReceiver::ReceiverToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trv__GetReceiver::ReceiverToken); -#endif -} - -int _trv__GetReceiver::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetReceiver(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiver(struct soap *soap, const char *tag, int id, const _trv__GetReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetReceiver), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trv:ReceiverToken", -1, &a->_trv__GetReceiver::ReceiverToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetReceiver::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetReceiver(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetReceiver * SOAP_FMAC4 soap_in__trv__GetReceiver(struct soap *soap, const char *tag, _trv__GetReceiver *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetReceiver*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetReceiver, sizeof(_trv__GetReceiver), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetReceiver) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetReceiver *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ReceiverToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ReceiverToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trv:ReceiverToken", &a->_trv__GetReceiver::ReceiverToken, "tt:ReferenceToken")) - { soap_flag_ReceiverToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ReceiverToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__GetReceiver *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetReceiver, SOAP_TYPE__trv__GetReceiver, sizeof(_trv__GetReceiver), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetReceiver * SOAP_FMAC2 soap_instantiate__trv__GetReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetReceiver *p; - size_t k = sizeof(_trv__GetReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetReceiver); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetReceiver, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetReceiver::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetReceiver(soap, tag ? tag : "trv:GetReceiver", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetReceiver::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetReceiver(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetReceiver * SOAP_FMAC4 soap_get__trv__GetReceiver(struct soap *soap, _trv__GetReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetReceiversResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Receiver(soap, &this->_trv__GetReceiversResponse::Receivers); -} - -void _trv__GetReceiversResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Receiver(soap, &this->_trv__GetReceiversResponse::Receivers); -#endif -} - -int _trv__GetReceiversResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetReceiversResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiversResponse(struct soap *soap, const char *tag, int id, const _trv__GetReceiversResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetReceiversResponse), type)) - return soap->error; - soap_element_result(soap, "trv:Receivers"); - if (soap_out_std__vectorTemplateOfPointerTott__Receiver(soap, "trv:Receivers", -1, &a->_trv__GetReceiversResponse::Receivers, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetReceiversResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetReceiversResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetReceiversResponse * SOAP_FMAC4 soap_in__trv__GetReceiversResponse(struct soap *soap, const char *tag, _trv__GetReceiversResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetReceiversResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetReceiversResponse, sizeof(_trv__GetReceiversResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetReceiversResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetReceiversResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Receiver(soap, "trv:Receivers", &a->_trv__GetReceiversResponse::Receivers, "tt:Receiver")) - continue; - } - soap_check_result(soap, "trv:Receivers"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trv__GetReceiversResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetReceiversResponse, SOAP_TYPE__trv__GetReceiversResponse, sizeof(_trv__GetReceiversResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetReceiversResponse * SOAP_FMAC2 soap_instantiate__trv__GetReceiversResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetReceiversResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetReceiversResponse *p; - size_t k = sizeof(_trv__GetReceiversResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetReceiversResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetReceiversResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetReceiversResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetReceiversResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetReceiversResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetReceiversResponse(soap, tag ? tag : "trv:GetReceiversResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetReceiversResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetReceiversResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetReceiversResponse * SOAP_FMAC4 soap_get__trv__GetReceiversResponse(struct soap *soap, _trv__GetReceiversResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetReceiversResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetReceivers::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trv__GetReceivers::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trv__GetReceivers::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetReceivers(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceivers(struct soap *soap, const char *tag, int id, const _trv__GetReceivers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetReceivers), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetReceivers::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetReceivers(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetReceivers * SOAP_FMAC4 soap_in__trv__GetReceivers(struct soap *soap, const char *tag, _trv__GetReceivers *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetReceivers*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetReceivers, sizeof(_trv__GetReceivers), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetReceivers) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetReceivers *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trv__GetReceivers *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetReceivers, SOAP_TYPE__trv__GetReceivers, sizeof(_trv__GetReceivers), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetReceivers * SOAP_FMAC2 soap_instantiate__trv__GetReceivers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetReceivers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetReceivers *p; - size_t k = sizeof(_trv__GetReceivers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetReceivers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetReceivers); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetReceivers, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetReceivers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetReceivers::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetReceivers(soap, tag ? tag : "trv:GetReceivers", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetReceivers::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetReceivers(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetReceivers * SOAP_FMAC4 soap_get__trv__GetReceivers(struct soap *soap, _trv__GetReceivers *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetReceivers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trv__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _trv__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotrv__Capabilities(soap, &this->_trv__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _trv__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _trv__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "trv:Capabilities"); - if (!a->_trv__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "trv:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrv__Capabilities(soap, "trv:Capabilities", -1, &a->_trv__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trv__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _trv__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetServiceCapabilitiesResponse, sizeof(_trv__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrv__Capabilities(soap, "trv:Capabilities", &a->_trv__GetServiceCapabilitiesResponse::Capabilities, "trv:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "trv:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trv__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trv__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetServiceCapabilitiesResponse, SOAP_TYPE__trv__GetServiceCapabilitiesResponse, sizeof(_trv__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trv__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_trv__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetServiceCapabilitiesResponse(soap, tag ? tag : "trv:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trv__GetServiceCapabilitiesResponse(struct soap *soap, _trv__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trv__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trv__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trv__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trv__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _trv__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trv__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trv__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trv__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _trv__GetServiceCapabilities * SOAP_FMAC4 soap_in__trv__GetServiceCapabilities(struct soap *soap, const char *tag, _trv__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trv__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trv__GetServiceCapabilities, sizeof(_trv__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trv__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_trv__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trv__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trv__GetServiceCapabilities, SOAP_TYPE__trv__GetServiceCapabilities, sizeof(_trv__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trv__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trv__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trv__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trv__GetServiceCapabilities *p; - size_t k = sizeof(_trv__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trv__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trv__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trv__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trv__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trv__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trv__GetServiceCapabilities(soap, tag ? tag : "trv:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trv__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trv__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _trv__GetServiceCapabilities * SOAP_FMAC4 soap_get__trv__GetServiceCapabilities(struct soap *soap, _trv__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__trv__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trv__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trv__Capabilities::__any); - this->trv__Capabilities::RTP_USCOREMulticast = NULL; - this->trv__Capabilities::RTP_USCORETCP = NULL; - this->trv__Capabilities::RTP_USCORERTSP_USCORETCP = NULL; - soap_default_int(soap, &this->trv__Capabilities::SupportedReceivers); - this->trv__Capabilities::MaximumRTSPURILength = NULL; - soap_default_xsd__anyAttribute(soap, &this->trv__Capabilities::__anyAttribute); -} - -void trv__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trv__Capabilities::__any); -#endif -} - -int trv__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trv__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trv__Capabilities(struct soap *soap, const char *tag, int id, const trv__Capabilities *a, const char *type) -{ - if (((trv__Capabilities*)a)->RTP_USCOREMulticast) - { soap_set_attr(soap, "RTP_Multicast", soap_bool2s(soap, *((trv__Capabilities*)a)->RTP_USCOREMulticast), 1); - } - if (((trv__Capabilities*)a)->RTP_USCORETCP) - { soap_set_attr(soap, "RTP_TCP", soap_bool2s(soap, *((trv__Capabilities*)a)->RTP_USCORETCP), 1); - } - if (((trv__Capabilities*)a)->RTP_USCORERTSP_USCORETCP) - { soap_set_attr(soap, "RTP_RTSP_TCP", soap_bool2s(soap, *((trv__Capabilities*)a)->RTP_USCORERTSP_USCORETCP), 1); - } - soap_set_attr(soap, "SupportedReceivers", soap_int2s(soap, ((trv__Capabilities*)a)->SupportedReceivers), 1); - if (((trv__Capabilities*)a)->MaximumRTSPURILength) - { soap_set_attr(soap, "MaximumRTSPURILength", soap_int2s(soap, *((trv__Capabilities*)a)->MaximumRTSPURILength), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trv__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trv__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trv__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trv__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trv__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 trv__Capabilities * SOAP_FMAC4 soap_in_trv__Capabilities(struct soap *soap, const char *tag, trv__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trv__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trv__Capabilities, sizeof(trv__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trv__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (trv__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "RTP_Multicast", 5, 0); - if (t) - { - if (!(((trv__Capabilities*)a)->RTP_USCOREMulticast = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trv__Capabilities*)a)->RTP_USCOREMulticast)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RTP_TCP", 5, 0); - if (t) - { - if (!(((trv__Capabilities*)a)->RTP_USCORETCP = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trv__Capabilities*)a)->RTP_USCORETCP)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RTP_RTSP_TCP", 5, 0); - if (t) - { - if (!(((trv__Capabilities*)a)->RTP_USCORERTSP_USCORETCP = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trv__Capabilities*)a)->RTP_USCORERTSP_USCORETCP)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap_s2int(soap, soap_attr_value(soap, "SupportedReceivers", 5, 1), &((trv__Capabilities*)a)->SupportedReceivers)) - return NULL; - { - const char *t = soap_attr_value(soap, "MaximumRTSPURILength", 5, 0); - if (t) - { - if (!(((trv__Capabilities*)a)->MaximumRTSPURILength = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trv__Capabilities*)a)->MaximumRTSPURILength)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trv__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trv__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trv__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trv__Capabilities, SOAP_TYPE_trv__Capabilities, sizeof(trv__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trv__Capabilities * SOAP_FMAC2 soap_instantiate_trv__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trv__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trv__Capabilities *p; - size_t k = sizeof(trv__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trv__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trv__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trv__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trv__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trv__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trv__Capabilities(soap, tag ? tag : "trv:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trv__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trv__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 trv__Capabilities * SOAP_FMAC4 soap_get_trv__Capabilities(struct soap *soap, trv__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_trv__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsrfr__ResourceUnavailableFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsrfr__ResourceUnavailableFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsrfr__ResourceUnavailableFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsrfr__ResourceUnavailableFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsrfr__ResourceUnavailableFaultType(struct soap *soap, const char *tag, int id, const wsrfr__ResourceUnavailableFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsrfr__ResourceUnavailableFaultType), type ? type : "wsrfr:ResourceUnavailableFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsrfr__ResourceUnavailableFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsrfr__ResourceUnavailableFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsrfr__ResourceUnavailableFaultType * SOAP_FMAC4 soap_in_wsrfr__ResourceUnavailableFaultType(struct soap *soap, const char *tag, wsrfr__ResourceUnavailableFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsrfr__ResourceUnavailableFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsrfr__ResourceUnavailableFaultType, sizeof(wsrfr__ResourceUnavailableFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsrfr__ResourceUnavailableFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsrfr__ResourceUnavailableFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsrfr__ResourceUnavailableFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsrfr__ResourceUnavailableFaultType, SOAP_TYPE_wsrfr__ResourceUnavailableFaultType, sizeof(wsrfr__ResourceUnavailableFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsrfr__ResourceUnavailableFaultType * SOAP_FMAC2 soap_instantiate_wsrfr__ResourceUnavailableFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsrfr__ResourceUnavailableFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsrfr__ResourceUnavailableFaultType *p; - size_t k = sizeof(wsrfr__ResourceUnavailableFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsrfr__ResourceUnavailableFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsrfr__ResourceUnavailableFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsrfr__ResourceUnavailableFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsrfr__ResourceUnavailableFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsrfr__ResourceUnavailableFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsrfr__ResourceUnavailableFaultType(soap, tag ? tag : "wsrfr:ResourceUnavailableFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsrfr__ResourceUnavailableFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsrfr__ResourceUnavailableFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsrfr__ResourceUnavailableFaultType * SOAP_FMAC4 soap_get_wsrfr__ResourceUnavailableFaultType(struct soap *soap, wsrfr__ResourceUnavailableFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsrfr__ResourceUnavailableFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsrfr__ResourceUnknownFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsrfr__ResourceUnknownFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsrfr__ResourceUnknownFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsrfr__ResourceUnknownFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsrfr__ResourceUnknownFaultType(struct soap *soap, const char *tag, int id, const wsrfr__ResourceUnknownFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsrfr__ResourceUnknownFaultType), type ? type : "wsrfr:ResourceUnknownFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsrfr__ResourceUnknownFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsrfr__ResourceUnknownFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsrfr__ResourceUnknownFaultType * SOAP_FMAC4 soap_in_wsrfr__ResourceUnknownFaultType(struct soap *soap, const char *tag, wsrfr__ResourceUnknownFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsrfr__ResourceUnknownFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsrfr__ResourceUnknownFaultType, sizeof(wsrfr__ResourceUnknownFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsrfr__ResourceUnknownFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsrfr__ResourceUnknownFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsrfr__ResourceUnknownFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsrfr__ResourceUnknownFaultType, SOAP_TYPE_wsrfr__ResourceUnknownFaultType, sizeof(wsrfr__ResourceUnknownFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsrfr__ResourceUnknownFaultType * SOAP_FMAC2 soap_instantiate_wsrfr__ResourceUnknownFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsrfr__ResourceUnknownFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsrfr__ResourceUnknownFaultType *p; - size_t k = sizeof(wsrfr__ResourceUnknownFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsrfr__ResourceUnknownFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsrfr__ResourceUnknownFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsrfr__ResourceUnknownFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsrfr__ResourceUnknownFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsrfr__ResourceUnknownFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsrfr__ResourceUnknownFaultType(soap, tag ? tag : "wsrfr:ResourceUnknownFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsrfr__ResourceUnknownFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsrfr__ResourceUnknownFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsrfr__ResourceUnknownFaultType * SOAP_FMAC4 soap_get_wsrfr__ResourceUnknownFaultType(struct soap *soap, wsrfr__ResourceUnknownFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsrfr__ResourceUnknownFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetCompatibleConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, &this->_tptz__GetCompatibleConfigurationsResponse::PTZConfiguration); -} - -void _tptz__GetCompatibleConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, &this->_tptz__GetCompatibleConfigurationsResponse::PTZConfiguration); -#endif -} - -int _tptz__GetCompatibleConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetCompatibleConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, const char *tag, int id, const _tptz__GetCompatibleConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:PTZConfiguration"); - if (soap_out_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", -1, &a->_tptz__GetCompatibleConfigurationsResponse::PTZConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetCompatibleConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetCompatibleConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetCompatibleConfigurationsResponse * SOAP_FMAC4 soap_in__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, const char *tag, _tptz__GetCompatibleConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetCompatibleConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse, sizeof(_tptz__GetCompatibleConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetCompatibleConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", &a->_tptz__GetCompatibleConfigurationsResponse::PTZConfiguration, "tt:PTZConfiguration")) - continue; - } - soap_check_result(soap, "tptz:PTZConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetCompatibleConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse, SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse, sizeof(_tptz__GetCompatibleConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetCompatibleConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetCompatibleConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetCompatibleConfigurationsResponse *p; - size_t k = sizeof(_tptz__GetCompatibleConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetCompatibleConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetCompatibleConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetCompatibleConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetCompatibleConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetCompatibleConfigurationsResponse(soap, tag ? tag : "tptz:GetCompatibleConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetCompatibleConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetCompatibleConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetCompatibleConfigurationsResponse * SOAP_FMAC4 soap_get__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, _tptz__GetCompatibleConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetCompatibleConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetCompatibleConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetCompatibleConfigurations::ProfileToken); -} - -void _tptz__GetCompatibleConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetCompatibleConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetCompatibleConfigurations::ProfileToken); -#endif -} - -int _tptz__GetCompatibleConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetCompatibleConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetCompatibleConfigurations(struct soap *soap, const char *tag, int id, const _tptz__GetCompatibleConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetCompatibleConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GetCompatibleConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetCompatibleConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetCompatibleConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_in__tptz__GetCompatibleConfigurations(struct soap *soap, const char *tag, _tptz__GetCompatibleConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetCompatibleConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetCompatibleConfigurations, sizeof(_tptz__GetCompatibleConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetCompatibleConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetCompatibleConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GetCompatibleConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetCompatibleConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetCompatibleConfigurations, SOAP_TYPE__tptz__GetCompatibleConfigurations, sizeof(_tptz__GetCompatibleConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetCompatibleConfigurations * SOAP_FMAC2 soap_instantiate__tptz__GetCompatibleConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetCompatibleConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetCompatibleConfigurations *p; - size_t k = sizeof(_tptz__GetCompatibleConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetCompatibleConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetCompatibleConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetCompatibleConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetCompatibleConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetCompatibleConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetCompatibleConfigurations(soap, tag ? tag : "tptz:GetCompatibleConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetCompatibleConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetCompatibleConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_get__tptz__GetCompatibleConfigurations(struct soap *soap, _tptz__GetCompatibleConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetCompatibleConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__RemovePresetTourResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__RemovePresetTourResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__RemovePresetTourResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__RemovePresetTourResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePresetTourResponse(struct soap *soap, const char *tag, int id, const _tptz__RemovePresetTourResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__RemovePresetTourResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__RemovePresetTourResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__RemovePresetTourResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__RemovePresetTourResponse * SOAP_FMAC4 soap_in__tptz__RemovePresetTourResponse(struct soap *soap, const char *tag, _tptz__RemovePresetTourResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__RemovePresetTourResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__RemovePresetTourResponse, sizeof(_tptz__RemovePresetTourResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__RemovePresetTourResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__RemovePresetTourResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__RemovePresetTourResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__RemovePresetTourResponse, SOAP_TYPE__tptz__RemovePresetTourResponse, sizeof(_tptz__RemovePresetTourResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__RemovePresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__RemovePresetTourResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__RemovePresetTourResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__RemovePresetTourResponse *p; - size_t k = sizeof(_tptz__RemovePresetTourResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__RemovePresetTourResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__RemovePresetTourResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__RemovePresetTourResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__RemovePresetTourResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__RemovePresetTourResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__RemovePresetTourResponse(soap, tag ? tag : "tptz:RemovePresetTourResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__RemovePresetTourResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__RemovePresetTourResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__RemovePresetTourResponse * SOAP_FMAC4 soap_get__tptz__RemovePresetTourResponse(struct soap *soap, _tptz__RemovePresetTourResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__RemovePresetTourResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__RemovePresetTour::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__RemovePresetTour::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_tptz__RemovePresetTour::PresetTourToken); -} - -void _tptz__RemovePresetTour::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__RemovePresetTour::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__RemovePresetTour::ProfileToken); - soap_embedded(soap, &this->_tptz__RemovePresetTour::PresetTourToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__RemovePresetTour::PresetTourToken); -#endif -} - -int _tptz__RemovePresetTour::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__RemovePresetTour(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePresetTour(struct soap *soap, const char *tag, int id, const _tptz__RemovePresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__RemovePresetTour), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__RemovePresetTour::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:PresetTourToken", -1, &a->_tptz__RemovePresetTour::PresetTourToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__RemovePresetTour::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__RemovePresetTour(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__RemovePresetTour * SOAP_FMAC4 soap_in__tptz__RemovePresetTour(struct soap *soap, const char *tag, _tptz__RemovePresetTour *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__RemovePresetTour*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__RemovePresetTour, sizeof(_tptz__RemovePresetTour), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__RemovePresetTour) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__RemovePresetTour *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetTourToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__RemovePresetTour::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetTourToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PresetTourToken", &a->_tptz__RemovePresetTour::PresetTourToken, "tt:ReferenceToken")) - { soap_flag_PresetTourToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_PresetTourToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__RemovePresetTour *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__RemovePresetTour, SOAP_TYPE__tptz__RemovePresetTour, sizeof(_tptz__RemovePresetTour), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__RemovePresetTour * SOAP_FMAC2 soap_instantiate__tptz__RemovePresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__RemovePresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__RemovePresetTour *p; - size_t k = sizeof(_tptz__RemovePresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__RemovePresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__RemovePresetTour); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__RemovePresetTour, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__RemovePresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__RemovePresetTour::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__RemovePresetTour(soap, tag ? tag : "tptz:RemovePresetTour", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__RemovePresetTour::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__RemovePresetTour(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__RemovePresetTour * SOAP_FMAC4 soap_get__tptz__RemovePresetTour(struct soap *soap, _tptz__RemovePresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__RemovePresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__OperatePresetTourResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__OperatePresetTourResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__OperatePresetTourResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__OperatePresetTourResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__OperatePresetTourResponse(struct soap *soap, const char *tag, int id, const _tptz__OperatePresetTourResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__OperatePresetTourResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__OperatePresetTourResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__OperatePresetTourResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__OperatePresetTourResponse * SOAP_FMAC4 soap_in__tptz__OperatePresetTourResponse(struct soap *soap, const char *tag, _tptz__OperatePresetTourResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__OperatePresetTourResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__OperatePresetTourResponse, sizeof(_tptz__OperatePresetTourResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__OperatePresetTourResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__OperatePresetTourResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__OperatePresetTourResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__OperatePresetTourResponse, SOAP_TYPE__tptz__OperatePresetTourResponse, sizeof(_tptz__OperatePresetTourResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__OperatePresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__OperatePresetTourResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__OperatePresetTourResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__OperatePresetTourResponse *p; - size_t k = sizeof(_tptz__OperatePresetTourResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__OperatePresetTourResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__OperatePresetTourResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__OperatePresetTourResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__OperatePresetTourResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__OperatePresetTourResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__OperatePresetTourResponse(soap, tag ? tag : "tptz:OperatePresetTourResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__OperatePresetTourResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__OperatePresetTourResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__OperatePresetTourResponse * SOAP_FMAC4 soap_get__tptz__OperatePresetTourResponse(struct soap *soap, _tptz__OperatePresetTourResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__OperatePresetTourResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__OperatePresetTour::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__OperatePresetTour::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_tptz__OperatePresetTour::PresetTourToken); - soap_default_tt__PTZPresetTourOperation(soap, &this->_tptz__OperatePresetTour::Operation); -} - -void _tptz__OperatePresetTour::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__OperatePresetTour::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__OperatePresetTour::ProfileToken); - soap_embedded(soap, &this->_tptz__OperatePresetTour::PresetTourToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__OperatePresetTour::PresetTourToken); -#endif -} - -int _tptz__OperatePresetTour::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__OperatePresetTour(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__OperatePresetTour(struct soap *soap, const char *tag, int id, const _tptz__OperatePresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__OperatePresetTour), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__OperatePresetTour::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:PresetTourToken", -1, &a->_tptz__OperatePresetTour::PresetTourToken, "")) - return soap->error; - if (soap_out_tt__PTZPresetTourOperation(soap, "tptz:Operation", -1, &a->_tptz__OperatePresetTour::Operation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__OperatePresetTour::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__OperatePresetTour(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__OperatePresetTour * SOAP_FMAC4 soap_in__tptz__OperatePresetTour(struct soap *soap, const char *tag, _tptz__OperatePresetTour *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__OperatePresetTour*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__OperatePresetTour, sizeof(_tptz__OperatePresetTour), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__OperatePresetTour) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__OperatePresetTour *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetTourToken1 = 1; - size_t soap_flag_Operation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__OperatePresetTour::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetTourToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PresetTourToken", &a->_tptz__OperatePresetTour::PresetTourToken, "tt:ReferenceToken")) - { soap_flag_PresetTourToken1--; - continue; - } - } - if (soap_flag_Operation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__PTZPresetTourOperation(soap, "tptz:Operation", &a->_tptz__OperatePresetTour::Operation, "tt:PTZPresetTourOperation")) - { soap_flag_Operation1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_PresetTourToken1 > 0 || soap_flag_Operation1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__OperatePresetTour *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__OperatePresetTour, SOAP_TYPE__tptz__OperatePresetTour, sizeof(_tptz__OperatePresetTour), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__OperatePresetTour * SOAP_FMAC2 soap_instantiate__tptz__OperatePresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__OperatePresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__OperatePresetTour *p; - size_t k = sizeof(_tptz__OperatePresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__OperatePresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__OperatePresetTour); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__OperatePresetTour, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__OperatePresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__OperatePresetTour::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__OperatePresetTour(soap, tag ? tag : "tptz:OperatePresetTour", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__OperatePresetTour::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__OperatePresetTour(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__OperatePresetTour * SOAP_FMAC4 soap_get__tptz__OperatePresetTour(struct soap *soap, _tptz__OperatePresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__OperatePresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__ModifyPresetTourResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__ModifyPresetTourResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__ModifyPresetTourResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__ModifyPresetTourResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ModifyPresetTourResponse(struct soap *soap, const char *tag, int id, const _tptz__ModifyPresetTourResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__ModifyPresetTourResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__ModifyPresetTourResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__ModifyPresetTourResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__ModifyPresetTourResponse * SOAP_FMAC4 soap_in__tptz__ModifyPresetTourResponse(struct soap *soap, const char *tag, _tptz__ModifyPresetTourResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__ModifyPresetTourResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__ModifyPresetTourResponse, sizeof(_tptz__ModifyPresetTourResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__ModifyPresetTourResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__ModifyPresetTourResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__ModifyPresetTourResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__ModifyPresetTourResponse, SOAP_TYPE__tptz__ModifyPresetTourResponse, sizeof(_tptz__ModifyPresetTourResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__ModifyPresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__ModifyPresetTourResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__ModifyPresetTourResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__ModifyPresetTourResponse *p; - size_t k = sizeof(_tptz__ModifyPresetTourResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__ModifyPresetTourResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__ModifyPresetTourResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__ModifyPresetTourResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__ModifyPresetTourResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__ModifyPresetTourResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__ModifyPresetTourResponse(soap, tag ? tag : "tptz:ModifyPresetTourResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__ModifyPresetTourResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__ModifyPresetTourResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__ModifyPresetTourResponse * SOAP_FMAC4 soap_get__tptz__ModifyPresetTourResponse(struct soap *soap, _tptz__ModifyPresetTourResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__ModifyPresetTourResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__ModifyPresetTour::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__ModifyPresetTour::ProfileToken); - this->_tptz__ModifyPresetTour::PresetTour = NULL; -} - -void _tptz__ModifyPresetTour::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__ModifyPresetTour::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__ModifyPresetTour::ProfileToken); - soap_serialize_PointerTott__PresetTour(soap, &this->_tptz__ModifyPresetTour::PresetTour); -#endif -} - -int _tptz__ModifyPresetTour::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__ModifyPresetTour(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ModifyPresetTour(struct soap *soap, const char *tag, int id, const _tptz__ModifyPresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__ModifyPresetTour), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__ModifyPresetTour::ProfileToken, "")) - return soap->error; - if (!a->_tptz__ModifyPresetTour::PresetTour) - { if (soap_element_empty(soap, "tptz:PresetTour", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PresetTour(soap, "tptz:PresetTour", -1, &a->_tptz__ModifyPresetTour::PresetTour, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__ModifyPresetTour::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__ModifyPresetTour(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__ModifyPresetTour * SOAP_FMAC4 soap_in__tptz__ModifyPresetTour(struct soap *soap, const char *tag, _tptz__ModifyPresetTour *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__ModifyPresetTour*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__ModifyPresetTour, sizeof(_tptz__ModifyPresetTour), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__ModifyPresetTour) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__ModifyPresetTour *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetTour1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__ModifyPresetTour::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetTour1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PresetTour(soap, "tptz:PresetTour", &a->_tptz__ModifyPresetTour::PresetTour, "tt:PresetTour")) - { soap_flag_PresetTour1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || !a->_tptz__ModifyPresetTour::PresetTour)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__ModifyPresetTour *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__ModifyPresetTour, SOAP_TYPE__tptz__ModifyPresetTour, sizeof(_tptz__ModifyPresetTour), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__ModifyPresetTour * SOAP_FMAC2 soap_instantiate__tptz__ModifyPresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__ModifyPresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__ModifyPresetTour *p; - size_t k = sizeof(_tptz__ModifyPresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__ModifyPresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__ModifyPresetTour); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__ModifyPresetTour, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__ModifyPresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__ModifyPresetTour::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__ModifyPresetTour(soap, tag ? tag : "tptz:ModifyPresetTour", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__ModifyPresetTour::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__ModifyPresetTour(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__ModifyPresetTour * SOAP_FMAC4 soap_get__tptz__ModifyPresetTour(struct soap *soap, _tptz__ModifyPresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__ModifyPresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__CreatePresetTourResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__CreatePresetTourResponse::PresetTourToken); -} - -void _tptz__CreatePresetTourResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__CreatePresetTourResponse::PresetTourToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__CreatePresetTourResponse::PresetTourToken); -#endif -} - -int _tptz__CreatePresetTourResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__CreatePresetTourResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__CreatePresetTourResponse(struct soap *soap, const char *tag, int id, const _tptz__CreatePresetTourResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__CreatePresetTourResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:PresetTourToken"); - if (soap_out_tt__ReferenceToken(soap, "tptz:PresetTourToken", -1, &a->_tptz__CreatePresetTourResponse::PresetTourToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__CreatePresetTourResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__CreatePresetTourResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__CreatePresetTourResponse * SOAP_FMAC4 soap_in__tptz__CreatePresetTourResponse(struct soap *soap, const char *tag, _tptz__CreatePresetTourResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__CreatePresetTourResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__CreatePresetTourResponse, sizeof(_tptz__CreatePresetTourResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__CreatePresetTourResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__CreatePresetTourResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PresetTourToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PresetTourToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PresetTourToken", &a->_tptz__CreatePresetTourResponse::PresetTourToken, "tt:ReferenceToken")) - { soap_flag_PresetTourToken1--; - continue; - } - } - soap_check_result(soap, "tptz:PresetTourToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_PresetTourToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__CreatePresetTourResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__CreatePresetTourResponse, SOAP_TYPE__tptz__CreatePresetTourResponse, sizeof(_tptz__CreatePresetTourResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__CreatePresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__CreatePresetTourResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__CreatePresetTourResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__CreatePresetTourResponse *p; - size_t k = sizeof(_tptz__CreatePresetTourResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__CreatePresetTourResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__CreatePresetTourResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__CreatePresetTourResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__CreatePresetTourResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__CreatePresetTourResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__CreatePresetTourResponse(soap, tag ? tag : "tptz:CreatePresetTourResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__CreatePresetTourResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__CreatePresetTourResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__CreatePresetTourResponse * SOAP_FMAC4 soap_get__tptz__CreatePresetTourResponse(struct soap *soap, _tptz__CreatePresetTourResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__CreatePresetTourResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__CreatePresetTour::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__CreatePresetTour::ProfileToken); -} - -void _tptz__CreatePresetTour::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__CreatePresetTour::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__CreatePresetTour::ProfileToken); -#endif -} - -int _tptz__CreatePresetTour::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__CreatePresetTour(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__CreatePresetTour(struct soap *soap, const char *tag, int id, const _tptz__CreatePresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__CreatePresetTour), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__CreatePresetTour::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__CreatePresetTour::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__CreatePresetTour(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__CreatePresetTour * SOAP_FMAC4 soap_in__tptz__CreatePresetTour(struct soap *soap, const char *tag, _tptz__CreatePresetTour *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__CreatePresetTour*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__CreatePresetTour, sizeof(_tptz__CreatePresetTour), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__CreatePresetTour) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__CreatePresetTour *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__CreatePresetTour::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__CreatePresetTour *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__CreatePresetTour, SOAP_TYPE__tptz__CreatePresetTour, sizeof(_tptz__CreatePresetTour), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__CreatePresetTour * SOAP_FMAC2 soap_instantiate__tptz__CreatePresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__CreatePresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__CreatePresetTour *p; - size_t k = sizeof(_tptz__CreatePresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__CreatePresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__CreatePresetTour); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__CreatePresetTour, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__CreatePresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__CreatePresetTour::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__CreatePresetTour(soap, tag ? tag : "tptz:CreatePresetTour", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__CreatePresetTour::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__CreatePresetTour(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__CreatePresetTour * SOAP_FMAC4 soap_get__tptz__CreatePresetTour(struct soap *soap, _tptz__CreatePresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__CreatePresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresetTourOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__GetPresetTourOptionsResponse::Options = NULL; -} - -void _tptz__GetPresetTourOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZPresetTourOptions(soap, &this->_tptz__GetPresetTourOptionsResponse::Options); -#endif -} - -int _tptz__GetPresetTourOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresetTourOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTourOptionsResponse(struct soap *soap, const char *tag, int id, const _tptz__GetPresetTourOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresetTourOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "tptz:Options"); - if (!a->_tptz__GetPresetTourOptionsResponse::Options) - { if (soap_element_empty(soap, "tptz:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPresetTourOptions(soap, "tptz:Options", -1, &a->_tptz__GetPresetTourOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresetTourOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresetTourOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresetTourOptionsResponse * SOAP_FMAC4 soap_in__tptz__GetPresetTourOptionsResponse(struct soap *soap, const char *tag, _tptz__GetPresetTourOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresetTourOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresetTourOptionsResponse, sizeof(_tptz__GetPresetTourOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresetTourOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresetTourOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourOptions(soap, "tptz:Options", &a->_tptz__GetPresetTourOptionsResponse::Options, "tt:PTZPresetTourOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "tptz:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__GetPresetTourOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetPresetTourOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresetTourOptionsResponse, SOAP_TYPE__tptz__GetPresetTourOptionsResponse, sizeof(_tptz__GetPresetTourOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresetTourOptionsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTourOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresetTourOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresetTourOptionsResponse *p; - size_t k = sizeof(_tptz__GetPresetTourOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresetTourOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresetTourOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresetTourOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresetTourOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresetTourOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresetTourOptionsResponse(soap, tag ? tag : "tptz:GetPresetTourOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresetTourOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresetTourOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresetTourOptionsResponse * SOAP_FMAC4 soap_get__tptz__GetPresetTourOptionsResponse(struct soap *soap, _tptz__GetPresetTourOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresetTourOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresetTourOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetPresetTourOptions::ProfileToken); - this->_tptz__GetPresetTourOptions::PresetTourToken = NULL; -} - -void _tptz__GetPresetTourOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetPresetTourOptions::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetPresetTourOptions::ProfileToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_tptz__GetPresetTourOptions::PresetTourToken); -#endif -} - -int _tptz__GetPresetTourOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresetTourOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTourOptions(struct soap *soap, const char *tag, int id, const _tptz__GetPresetTourOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresetTourOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GetPresetTourOptions::ProfileToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tptz:PresetTourToken", -1, &a->_tptz__GetPresetTourOptions::PresetTourToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresetTourOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresetTourOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresetTourOptions * SOAP_FMAC4 soap_in__tptz__GetPresetTourOptions(struct soap *soap, const char *tag, _tptz__GetPresetTourOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresetTourOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresetTourOptions, sizeof(_tptz__GetPresetTourOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresetTourOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresetTourOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetTourToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GetPresetTourOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetTourToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tptz:PresetTourToken", &a->_tptz__GetPresetTourOptions::PresetTourToken, "tt:ReferenceToken")) - { soap_flag_PresetTourToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetPresetTourOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresetTourOptions, SOAP_TYPE__tptz__GetPresetTourOptions, sizeof(_tptz__GetPresetTourOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresetTourOptions * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTourOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresetTourOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresetTourOptions *p; - size_t k = sizeof(_tptz__GetPresetTourOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresetTourOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresetTourOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresetTourOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresetTourOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresetTourOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresetTourOptions(soap, tag ? tag : "tptz:GetPresetTourOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresetTourOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresetTourOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresetTourOptions * SOAP_FMAC4 soap_get__tptz__GetPresetTourOptions(struct soap *soap, _tptz__GetPresetTourOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresetTourOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresetTourResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__GetPresetTourResponse::PresetTour = NULL; -} - -void _tptz__GetPresetTourResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PresetTour(soap, &this->_tptz__GetPresetTourResponse::PresetTour); -#endif -} - -int _tptz__GetPresetTourResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresetTourResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTourResponse(struct soap *soap, const char *tag, int id, const _tptz__GetPresetTourResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresetTourResponse), type)) - return soap->error; - if (a->PresetTour) - soap_element_result(soap, "tptz:PresetTour"); - if (!a->_tptz__GetPresetTourResponse::PresetTour) - { if (soap_element_empty(soap, "tptz:PresetTour", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PresetTour(soap, "tptz:PresetTour", -1, &a->_tptz__GetPresetTourResponse::PresetTour, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresetTourResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresetTourResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresetTourResponse * SOAP_FMAC4 soap_in__tptz__GetPresetTourResponse(struct soap *soap, const char *tag, _tptz__GetPresetTourResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresetTourResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresetTourResponse, sizeof(_tptz__GetPresetTourResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresetTourResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresetTourResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PresetTour1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PresetTour1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PresetTour(soap, "tptz:PresetTour", &a->_tptz__GetPresetTourResponse::PresetTour, "tt:PresetTour")) - { soap_flag_PresetTour1--; - continue; - } - } - soap_check_result(soap, "tptz:PresetTour"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__GetPresetTourResponse::PresetTour)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetPresetTourResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresetTourResponse, SOAP_TYPE__tptz__GetPresetTourResponse, sizeof(_tptz__GetPresetTourResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTourResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresetTourResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresetTourResponse *p; - size_t k = sizeof(_tptz__GetPresetTourResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresetTourResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresetTourResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresetTourResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresetTourResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresetTourResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresetTourResponse(soap, tag ? tag : "tptz:GetPresetTourResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresetTourResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresetTourResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresetTourResponse * SOAP_FMAC4 soap_get__tptz__GetPresetTourResponse(struct soap *soap, _tptz__GetPresetTourResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresetTourResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresetTour::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetPresetTour::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetPresetTour::PresetTourToken); -} - -void _tptz__GetPresetTour::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetPresetTour::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetPresetTour::ProfileToken); - soap_embedded(soap, &this->_tptz__GetPresetTour::PresetTourToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetPresetTour::PresetTourToken); -#endif -} - -int _tptz__GetPresetTour::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresetTour(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTour(struct soap *soap, const char *tag, int id, const _tptz__GetPresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresetTour), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GetPresetTour::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:PresetTourToken", -1, &a->_tptz__GetPresetTour::PresetTourToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresetTour::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresetTour(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresetTour * SOAP_FMAC4 soap_in__tptz__GetPresetTour(struct soap *soap, const char *tag, _tptz__GetPresetTour *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresetTour*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresetTour, sizeof(_tptz__GetPresetTour), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresetTour) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresetTour *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetTourToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GetPresetTour::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetTourToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PresetTourToken", &a->_tptz__GetPresetTour::PresetTourToken, "tt:ReferenceToken")) - { soap_flag_PresetTourToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_PresetTourToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetPresetTour *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresetTour, SOAP_TYPE__tptz__GetPresetTour, sizeof(_tptz__GetPresetTour), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresetTour * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresetTour *p; - size_t k = sizeof(_tptz__GetPresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresetTour); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresetTour, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresetTour::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresetTour(soap, tag ? tag : "tptz:GetPresetTour", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresetTour::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresetTour(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresetTour * SOAP_FMAC4 soap_get__tptz__GetPresetTour(struct soap *soap, _tptz__GetPresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresetToursResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PresetTour(soap, &this->_tptz__GetPresetToursResponse::PresetTour); -} - -void _tptz__GetPresetToursResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PresetTour(soap, &this->_tptz__GetPresetToursResponse::PresetTour); -#endif -} - -int _tptz__GetPresetToursResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresetToursResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetToursResponse(struct soap *soap, const char *tag, int id, const _tptz__GetPresetToursResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresetToursResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:PresetTour"); - if (soap_out_std__vectorTemplateOfPointerTott__PresetTour(soap, "tptz:PresetTour", -1, &a->_tptz__GetPresetToursResponse::PresetTour, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresetToursResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresetToursResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresetToursResponse * SOAP_FMAC4 soap_in__tptz__GetPresetToursResponse(struct soap *soap, const char *tag, _tptz__GetPresetToursResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresetToursResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresetToursResponse, sizeof(_tptz__GetPresetToursResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresetToursResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresetToursResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PresetTour(soap, "tptz:PresetTour", &a->_tptz__GetPresetToursResponse::PresetTour, "tt:PresetTour")) - continue; - } - soap_check_result(soap, "tptz:PresetTour"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetPresetToursResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresetToursResponse, SOAP_TYPE__tptz__GetPresetToursResponse, sizeof(_tptz__GetPresetToursResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresetToursResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetToursResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresetToursResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresetToursResponse *p; - size_t k = sizeof(_tptz__GetPresetToursResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresetToursResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresetToursResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresetToursResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresetToursResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresetToursResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresetToursResponse(soap, tag ? tag : "tptz:GetPresetToursResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresetToursResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresetToursResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresetToursResponse * SOAP_FMAC4 soap_get__tptz__GetPresetToursResponse(struct soap *soap, _tptz__GetPresetToursResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresetToursResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresetTours::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetPresetTours::ProfileToken); -} - -void _tptz__GetPresetTours::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetPresetTours::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetPresetTours::ProfileToken); -#endif -} - -int _tptz__GetPresetTours::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresetTours(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTours(struct soap *soap, const char *tag, int id, const _tptz__GetPresetTours *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresetTours), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GetPresetTours::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresetTours::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresetTours(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresetTours * SOAP_FMAC4 soap_in__tptz__GetPresetTours(struct soap *soap, const char *tag, _tptz__GetPresetTours *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresetTours*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresetTours, sizeof(_tptz__GetPresetTours), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresetTours) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresetTours *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GetPresetTours::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetPresetTours *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresetTours, SOAP_TYPE__tptz__GetPresetTours, sizeof(_tptz__GetPresetTours), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresetTours * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTours(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresetTours(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresetTours *p; - size_t k = sizeof(_tptz__GetPresetTours); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresetTours, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresetTours); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresetTours, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresetTours location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresetTours::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresetTours(soap, tag ? tag : "tptz:GetPresetTours", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresetTours::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresetTours(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresetTours * SOAP_FMAC4 soap_get__tptz__GetPresetTours(struct soap *soap, _tptz__GetPresetTours *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresetTours(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__StopResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__StopResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__StopResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__StopResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__StopResponse(struct soap *soap, const char *tag, int id, const _tptz__StopResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__StopResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__StopResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__StopResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__StopResponse * SOAP_FMAC4 soap_in__tptz__StopResponse(struct soap *soap, const char *tag, _tptz__StopResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__StopResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__StopResponse, sizeof(_tptz__StopResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__StopResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__StopResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__StopResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__StopResponse, SOAP_TYPE__tptz__StopResponse, sizeof(_tptz__StopResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__StopResponse * SOAP_FMAC2 soap_instantiate__tptz__StopResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__StopResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__StopResponse *p; - size_t k = sizeof(_tptz__StopResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__StopResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__StopResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__StopResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__StopResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__StopResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__StopResponse(soap, tag ? tag : "tptz:StopResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__StopResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__StopResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__StopResponse * SOAP_FMAC4 soap_get__tptz__StopResponse(struct soap *soap, _tptz__StopResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__StopResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__Stop::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__Stop::ProfileToken); - this->_tptz__Stop::PanTilt = NULL; - this->_tptz__Stop::Zoom = NULL; -} - -void _tptz__Stop::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__Stop::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__Stop::ProfileToken); - soap_serialize_PointerTobool(soap, &this->_tptz__Stop::PanTilt); - soap_serialize_PointerTobool(soap, &this->_tptz__Stop::Zoom); -#endif -} - -int _tptz__Stop::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__Stop(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__Stop(struct soap *soap, const char *tag, int id, const _tptz__Stop *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__Stop), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__Stop::ProfileToken, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tptz:PanTilt", -1, &a->_tptz__Stop::PanTilt, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tptz:Zoom", -1, &a->_tptz__Stop::Zoom, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__Stop::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__Stop(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__Stop * SOAP_FMAC4 soap_in__tptz__Stop(struct soap *soap, const char *tag, _tptz__Stop *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__Stop*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__Stop, sizeof(_tptz__Stop), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__Stop) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__Stop *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PanTilt1 = 1; - size_t soap_flag_Zoom1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__Stop::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PanTilt1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tptz:PanTilt", &a->_tptz__Stop::PanTilt, "xsd:boolean")) - { soap_flag_PanTilt1--; - continue; - } - } - if (soap_flag_Zoom1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tptz:Zoom", &a->_tptz__Stop::Zoom, "xsd:boolean")) - { soap_flag_Zoom1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__Stop *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__Stop, SOAP_TYPE__tptz__Stop, sizeof(_tptz__Stop), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__Stop * SOAP_FMAC2 soap_instantiate__tptz__Stop(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__Stop(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__Stop *p; - size_t k = sizeof(_tptz__Stop); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__Stop, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__Stop); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__Stop, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__Stop location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__Stop::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__Stop(soap, tag ? tag : "tptz:Stop", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__Stop::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__Stop(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__Stop * SOAP_FMAC4 soap_get__tptz__Stop(struct soap *soap, _tptz__Stop *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__Stop(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__AbsoluteMoveResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__AbsoluteMoveResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__AbsoluteMoveResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__AbsoluteMoveResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__AbsoluteMoveResponse(struct soap *soap, const char *tag, int id, const _tptz__AbsoluteMoveResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__AbsoluteMoveResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__AbsoluteMoveResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__AbsoluteMoveResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__AbsoluteMoveResponse * SOAP_FMAC4 soap_in__tptz__AbsoluteMoveResponse(struct soap *soap, const char *tag, _tptz__AbsoluteMoveResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__AbsoluteMoveResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__AbsoluteMoveResponse, sizeof(_tptz__AbsoluteMoveResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__AbsoluteMoveResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__AbsoluteMoveResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__AbsoluteMoveResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__AbsoluteMoveResponse, SOAP_TYPE__tptz__AbsoluteMoveResponse, sizeof(_tptz__AbsoluteMoveResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__AbsoluteMoveResponse * SOAP_FMAC2 soap_instantiate__tptz__AbsoluteMoveResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__AbsoluteMoveResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__AbsoluteMoveResponse *p; - size_t k = sizeof(_tptz__AbsoluteMoveResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__AbsoluteMoveResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__AbsoluteMoveResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__AbsoluteMoveResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__AbsoluteMoveResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__AbsoluteMoveResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__AbsoluteMoveResponse(soap, tag ? tag : "tptz:AbsoluteMoveResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__AbsoluteMoveResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__AbsoluteMoveResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__AbsoluteMoveResponse * SOAP_FMAC4 soap_get__tptz__AbsoluteMoveResponse(struct soap *soap, _tptz__AbsoluteMoveResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__AbsoluteMoveResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__AbsoluteMove::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__AbsoluteMove::ProfileToken); - this->_tptz__AbsoluteMove::Position = NULL; - this->_tptz__AbsoluteMove::Speed = NULL; -} - -void _tptz__AbsoluteMove::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__AbsoluteMove::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__AbsoluteMove::ProfileToken); - soap_serialize_PointerTott__PTZVector(soap, &this->_tptz__AbsoluteMove::Position); - soap_serialize_PointerTott__PTZSpeed(soap, &this->_tptz__AbsoluteMove::Speed); -#endif -} - -int _tptz__AbsoluteMove::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__AbsoluteMove(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__AbsoluteMove(struct soap *soap, const char *tag, int id, const _tptz__AbsoluteMove *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__AbsoluteMove), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__AbsoluteMove::ProfileToken, "")) - return soap->error; - if (!a->_tptz__AbsoluteMove::Position) - { if (soap_element_empty(soap, "tptz:Position", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZVector(soap, "tptz:Position", -1, &a->_tptz__AbsoluteMove::Position, "")) - return soap->error; - if (soap_out_PointerTott__PTZSpeed(soap, "tptz:Speed", -1, &a->_tptz__AbsoluteMove::Speed, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__AbsoluteMove::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__AbsoluteMove(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__AbsoluteMove * SOAP_FMAC4 soap_in__tptz__AbsoluteMove(struct soap *soap, const char *tag, _tptz__AbsoluteMove *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__AbsoluteMove*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__AbsoluteMove, sizeof(_tptz__AbsoluteMove), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__AbsoluteMove) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__AbsoluteMove *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_Position1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__AbsoluteMove::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZVector(soap, "tptz:Position", &a->_tptz__AbsoluteMove::Position, "tt:PTZVector")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpeed(soap, "tptz:Speed", &a->_tptz__AbsoluteMove::Speed, "tt:PTZSpeed")) - { soap_flag_Speed1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || !a->_tptz__AbsoluteMove::Position)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__AbsoluteMove *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__AbsoluteMove, SOAP_TYPE__tptz__AbsoluteMove, sizeof(_tptz__AbsoluteMove), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__AbsoluteMove * SOAP_FMAC2 soap_instantiate__tptz__AbsoluteMove(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__AbsoluteMove(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__AbsoluteMove *p; - size_t k = sizeof(_tptz__AbsoluteMove); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__AbsoluteMove, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__AbsoluteMove); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__AbsoluteMove, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__AbsoluteMove location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__AbsoluteMove::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__AbsoluteMove(soap, tag ? tag : "tptz:AbsoluteMove", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__AbsoluteMove::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__AbsoluteMove(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__AbsoluteMove * SOAP_FMAC4 soap_get__tptz__AbsoluteMove(struct soap *soap, _tptz__AbsoluteMove *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__AbsoluteMove(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__RelativeMoveResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__RelativeMoveResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__RelativeMoveResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__RelativeMoveResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RelativeMoveResponse(struct soap *soap, const char *tag, int id, const _tptz__RelativeMoveResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__RelativeMoveResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__RelativeMoveResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__RelativeMoveResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__RelativeMoveResponse * SOAP_FMAC4 soap_in__tptz__RelativeMoveResponse(struct soap *soap, const char *tag, _tptz__RelativeMoveResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__RelativeMoveResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__RelativeMoveResponse, sizeof(_tptz__RelativeMoveResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__RelativeMoveResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__RelativeMoveResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__RelativeMoveResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__RelativeMoveResponse, SOAP_TYPE__tptz__RelativeMoveResponse, sizeof(_tptz__RelativeMoveResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__RelativeMoveResponse * SOAP_FMAC2 soap_instantiate__tptz__RelativeMoveResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__RelativeMoveResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__RelativeMoveResponse *p; - size_t k = sizeof(_tptz__RelativeMoveResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__RelativeMoveResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__RelativeMoveResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__RelativeMoveResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__RelativeMoveResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__RelativeMoveResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__RelativeMoveResponse(soap, tag ? tag : "tptz:RelativeMoveResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__RelativeMoveResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__RelativeMoveResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__RelativeMoveResponse * SOAP_FMAC4 soap_get__tptz__RelativeMoveResponse(struct soap *soap, _tptz__RelativeMoveResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__RelativeMoveResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__RelativeMove::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__RelativeMove::ProfileToken); - this->_tptz__RelativeMove::Translation = NULL; - this->_tptz__RelativeMove::Speed = NULL; -} - -void _tptz__RelativeMove::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__RelativeMove::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__RelativeMove::ProfileToken); - soap_serialize_PointerTott__PTZVector(soap, &this->_tptz__RelativeMove::Translation); - soap_serialize_PointerTott__PTZSpeed(soap, &this->_tptz__RelativeMove::Speed); -#endif -} - -int _tptz__RelativeMove::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__RelativeMove(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RelativeMove(struct soap *soap, const char *tag, int id, const _tptz__RelativeMove *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__RelativeMove), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__RelativeMove::ProfileToken, "")) - return soap->error; - if (!a->_tptz__RelativeMove::Translation) - { if (soap_element_empty(soap, "tptz:Translation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZVector(soap, "tptz:Translation", -1, &a->_tptz__RelativeMove::Translation, "")) - return soap->error; - if (soap_out_PointerTott__PTZSpeed(soap, "tptz:Speed", -1, &a->_tptz__RelativeMove::Speed, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__RelativeMove::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__RelativeMove(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__RelativeMove * SOAP_FMAC4 soap_in__tptz__RelativeMove(struct soap *soap, const char *tag, _tptz__RelativeMove *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__RelativeMove*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__RelativeMove, sizeof(_tptz__RelativeMove), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__RelativeMove) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__RelativeMove *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_Translation1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__RelativeMove::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_Translation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZVector(soap, "tptz:Translation", &a->_tptz__RelativeMove::Translation, "tt:PTZVector")) - { soap_flag_Translation1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpeed(soap, "tptz:Speed", &a->_tptz__RelativeMove::Speed, "tt:PTZSpeed")) - { soap_flag_Speed1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || !a->_tptz__RelativeMove::Translation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__RelativeMove *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__RelativeMove, SOAP_TYPE__tptz__RelativeMove, sizeof(_tptz__RelativeMove), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__RelativeMove * SOAP_FMAC2 soap_instantiate__tptz__RelativeMove(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__RelativeMove(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__RelativeMove *p; - size_t k = sizeof(_tptz__RelativeMove); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__RelativeMove, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__RelativeMove); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__RelativeMove, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__RelativeMove location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__RelativeMove::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__RelativeMove(soap, tag ? tag : "tptz:RelativeMove", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__RelativeMove::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__RelativeMove(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__RelativeMove * SOAP_FMAC4 soap_get__tptz__RelativeMove(struct soap *soap, _tptz__RelativeMove *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__RelativeMove(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__ContinuousMoveResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__ContinuousMoveResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__ContinuousMoveResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__ContinuousMoveResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ContinuousMoveResponse(struct soap *soap, const char *tag, int id, const _tptz__ContinuousMoveResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__ContinuousMoveResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__ContinuousMoveResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__ContinuousMoveResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__ContinuousMoveResponse * SOAP_FMAC4 soap_in__tptz__ContinuousMoveResponse(struct soap *soap, const char *tag, _tptz__ContinuousMoveResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__ContinuousMoveResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__ContinuousMoveResponse, sizeof(_tptz__ContinuousMoveResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__ContinuousMoveResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__ContinuousMoveResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__ContinuousMoveResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__ContinuousMoveResponse, SOAP_TYPE__tptz__ContinuousMoveResponse, sizeof(_tptz__ContinuousMoveResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__ContinuousMoveResponse * SOAP_FMAC2 soap_instantiate__tptz__ContinuousMoveResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__ContinuousMoveResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__ContinuousMoveResponse *p; - size_t k = sizeof(_tptz__ContinuousMoveResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__ContinuousMoveResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__ContinuousMoveResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__ContinuousMoveResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__ContinuousMoveResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__ContinuousMoveResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__ContinuousMoveResponse(soap, tag ? tag : "tptz:ContinuousMoveResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__ContinuousMoveResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__ContinuousMoveResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__ContinuousMoveResponse * SOAP_FMAC4 soap_get__tptz__ContinuousMoveResponse(struct soap *soap, _tptz__ContinuousMoveResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__ContinuousMoveResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__ContinuousMove::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__ContinuousMove::ProfileToken); - this->_tptz__ContinuousMove::Velocity = NULL; - this->_tptz__ContinuousMove::Timeout = NULL; -} - -void _tptz__ContinuousMove::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__ContinuousMove::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__ContinuousMove::ProfileToken); - soap_serialize_PointerTott__PTZSpeed(soap, &this->_tptz__ContinuousMove::Velocity); - soap_serialize_PointerToxsd__duration(soap, &this->_tptz__ContinuousMove::Timeout); -#endif -} - -int _tptz__ContinuousMove::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__ContinuousMove(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ContinuousMove(struct soap *soap, const char *tag, int id, const _tptz__ContinuousMove *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__ContinuousMove), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__ContinuousMove::ProfileToken, "")) - return soap->error; - if (!a->_tptz__ContinuousMove::Velocity) - { if (soap_element_empty(soap, "tptz:Velocity", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZSpeed(soap, "tptz:Velocity", -1, &a->_tptz__ContinuousMove::Velocity, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tptz:Timeout", -1, &a->_tptz__ContinuousMove::Timeout, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__ContinuousMove::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__ContinuousMove(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__ContinuousMove * SOAP_FMAC4 soap_in__tptz__ContinuousMove(struct soap *soap, const char *tag, _tptz__ContinuousMove *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__ContinuousMove*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__ContinuousMove, sizeof(_tptz__ContinuousMove), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__ContinuousMove) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__ContinuousMove *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_Velocity1 = 1; - size_t soap_flag_Timeout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__ContinuousMove::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_Velocity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpeed(soap, "tptz:Velocity", &a->_tptz__ContinuousMove::Velocity, "tt:PTZSpeed")) - { soap_flag_Velocity1--; - continue; - } - } - if (soap_flag_Timeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tptz:Timeout", &a->_tptz__ContinuousMove::Timeout, "xsd:duration")) - { soap_flag_Timeout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || !a->_tptz__ContinuousMove::Velocity)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__ContinuousMove *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__ContinuousMove, SOAP_TYPE__tptz__ContinuousMove, sizeof(_tptz__ContinuousMove), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__ContinuousMove * SOAP_FMAC2 soap_instantiate__tptz__ContinuousMove(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__ContinuousMove(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__ContinuousMove *p; - size_t k = sizeof(_tptz__ContinuousMove); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__ContinuousMove, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__ContinuousMove); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__ContinuousMove, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__ContinuousMove location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__ContinuousMove::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__ContinuousMove(soap, tag ? tag : "tptz:ContinuousMove", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__ContinuousMove::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__ContinuousMove(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__ContinuousMove * SOAP_FMAC4 soap_get__tptz__ContinuousMove(struct soap *soap, _tptz__ContinuousMove *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__ContinuousMove(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SetHomePositionResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__SetHomePositionResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__SetHomePositionResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SetHomePositionResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetHomePositionResponse(struct soap *soap, const char *tag, int id, const _tptz__SetHomePositionResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SetHomePositionResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SetHomePositionResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SetHomePositionResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SetHomePositionResponse * SOAP_FMAC4 soap_in__tptz__SetHomePositionResponse(struct soap *soap, const char *tag, _tptz__SetHomePositionResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SetHomePositionResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SetHomePositionResponse, sizeof(_tptz__SetHomePositionResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SetHomePositionResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SetHomePositionResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__SetHomePositionResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SetHomePositionResponse, SOAP_TYPE__tptz__SetHomePositionResponse, sizeof(_tptz__SetHomePositionResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SetHomePositionResponse * SOAP_FMAC2 soap_instantiate__tptz__SetHomePositionResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SetHomePositionResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SetHomePositionResponse *p; - size_t k = sizeof(_tptz__SetHomePositionResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SetHomePositionResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SetHomePositionResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SetHomePositionResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SetHomePositionResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SetHomePositionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SetHomePositionResponse(soap, tag ? tag : "tptz:SetHomePositionResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SetHomePositionResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SetHomePositionResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SetHomePositionResponse * SOAP_FMAC4 soap_get__tptz__SetHomePositionResponse(struct soap *soap, _tptz__SetHomePositionResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SetHomePositionResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SetHomePosition::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__SetHomePosition::ProfileToken); -} - -void _tptz__SetHomePosition::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__SetHomePosition::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__SetHomePosition::ProfileToken); -#endif -} - -int _tptz__SetHomePosition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SetHomePosition(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetHomePosition(struct soap *soap, const char *tag, int id, const _tptz__SetHomePosition *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SetHomePosition), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__SetHomePosition::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SetHomePosition::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SetHomePosition(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SetHomePosition * SOAP_FMAC4 soap_in__tptz__SetHomePosition(struct soap *soap, const char *tag, _tptz__SetHomePosition *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SetHomePosition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SetHomePosition, sizeof(_tptz__SetHomePosition), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SetHomePosition) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SetHomePosition *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__SetHomePosition::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__SetHomePosition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SetHomePosition, SOAP_TYPE__tptz__SetHomePosition, sizeof(_tptz__SetHomePosition), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SetHomePosition * SOAP_FMAC2 soap_instantiate__tptz__SetHomePosition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SetHomePosition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SetHomePosition *p; - size_t k = sizeof(_tptz__SetHomePosition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SetHomePosition, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SetHomePosition); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SetHomePosition, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SetHomePosition location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SetHomePosition::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SetHomePosition(soap, tag ? tag : "tptz:SetHomePosition", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SetHomePosition::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SetHomePosition(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SetHomePosition * SOAP_FMAC4 soap_get__tptz__SetHomePosition(struct soap *soap, _tptz__SetHomePosition *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SetHomePosition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GotoHomePositionResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__GotoHomePositionResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__GotoHomePositionResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GotoHomePositionResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoHomePositionResponse(struct soap *soap, const char *tag, int id, const _tptz__GotoHomePositionResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GotoHomePositionResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GotoHomePositionResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GotoHomePositionResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GotoHomePositionResponse * SOAP_FMAC4 soap_in__tptz__GotoHomePositionResponse(struct soap *soap, const char *tag, _tptz__GotoHomePositionResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GotoHomePositionResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GotoHomePositionResponse, sizeof(_tptz__GotoHomePositionResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GotoHomePositionResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GotoHomePositionResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GotoHomePositionResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GotoHomePositionResponse, SOAP_TYPE__tptz__GotoHomePositionResponse, sizeof(_tptz__GotoHomePositionResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GotoHomePositionResponse * SOAP_FMAC2 soap_instantiate__tptz__GotoHomePositionResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GotoHomePositionResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GotoHomePositionResponse *p; - size_t k = sizeof(_tptz__GotoHomePositionResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GotoHomePositionResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GotoHomePositionResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GotoHomePositionResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GotoHomePositionResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GotoHomePositionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GotoHomePositionResponse(soap, tag ? tag : "tptz:GotoHomePositionResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GotoHomePositionResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GotoHomePositionResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GotoHomePositionResponse * SOAP_FMAC4 soap_get__tptz__GotoHomePositionResponse(struct soap *soap, _tptz__GotoHomePositionResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GotoHomePositionResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GotoHomePosition::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GotoHomePosition::ProfileToken); - this->_tptz__GotoHomePosition::Speed = NULL; -} - -void _tptz__GotoHomePosition::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GotoHomePosition::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GotoHomePosition::ProfileToken); - soap_serialize_PointerTott__PTZSpeed(soap, &this->_tptz__GotoHomePosition::Speed); -#endif -} - -int _tptz__GotoHomePosition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GotoHomePosition(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoHomePosition(struct soap *soap, const char *tag, int id, const _tptz__GotoHomePosition *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GotoHomePosition), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GotoHomePosition::ProfileToken, "")) - return soap->error; - if (soap_out_PointerTott__PTZSpeed(soap, "tptz:Speed", -1, &a->_tptz__GotoHomePosition::Speed, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GotoHomePosition::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GotoHomePosition(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GotoHomePosition * SOAP_FMAC4 soap_in__tptz__GotoHomePosition(struct soap *soap, const char *tag, _tptz__GotoHomePosition *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GotoHomePosition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GotoHomePosition, sizeof(_tptz__GotoHomePosition), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GotoHomePosition) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GotoHomePosition *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GotoHomePosition::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpeed(soap, "tptz:Speed", &a->_tptz__GotoHomePosition::Speed, "tt:PTZSpeed")) - { soap_flag_Speed1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GotoHomePosition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GotoHomePosition, SOAP_TYPE__tptz__GotoHomePosition, sizeof(_tptz__GotoHomePosition), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GotoHomePosition * SOAP_FMAC2 soap_instantiate__tptz__GotoHomePosition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GotoHomePosition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GotoHomePosition *p; - size_t k = sizeof(_tptz__GotoHomePosition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GotoHomePosition, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GotoHomePosition); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GotoHomePosition, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GotoHomePosition location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GotoHomePosition::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GotoHomePosition(soap, tag ? tag : "tptz:GotoHomePosition", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GotoHomePosition::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GotoHomePosition(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GotoHomePosition * SOAP_FMAC4 soap_get__tptz__GotoHomePosition(struct soap *soap, _tptz__GotoHomePosition *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GotoHomePosition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetStatusResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__GetStatusResponse::PTZStatus = NULL; -} - -void _tptz__GetStatusResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZStatus(soap, &this->_tptz__GetStatusResponse::PTZStatus); -#endif -} - -int _tptz__GetStatusResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetStatusResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetStatusResponse(struct soap *soap, const char *tag, int id, const _tptz__GetStatusResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetStatusResponse), type)) - return soap->error; - if (a->PTZStatus) - soap_element_result(soap, "tptz:PTZStatus"); - if (!a->_tptz__GetStatusResponse::PTZStatus) - { if (soap_element_empty(soap, "tptz:PTZStatus", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZStatus(soap, "tptz:PTZStatus", -1, &a->_tptz__GetStatusResponse::PTZStatus, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetStatusResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetStatusResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetStatusResponse * SOAP_FMAC4 soap_in__tptz__GetStatusResponse(struct soap *soap, const char *tag, _tptz__GetStatusResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetStatusResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetStatusResponse, sizeof(_tptz__GetStatusResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetStatusResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetStatusResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PTZStatus1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTZStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZStatus(soap, "tptz:PTZStatus", &a->_tptz__GetStatusResponse::PTZStatus, "tt:PTZStatus")) - { soap_flag_PTZStatus1--; - continue; - } - } - soap_check_result(soap, "tptz:PTZStatus"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__GetStatusResponse::PTZStatus)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetStatusResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetStatusResponse, SOAP_TYPE__tptz__GetStatusResponse, sizeof(_tptz__GetStatusResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetStatusResponse * SOAP_FMAC2 soap_instantiate__tptz__GetStatusResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetStatusResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetStatusResponse *p; - size_t k = sizeof(_tptz__GetStatusResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetStatusResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetStatusResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetStatusResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetStatusResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetStatusResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetStatusResponse(soap, tag ? tag : "tptz:GetStatusResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetStatusResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetStatusResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetStatusResponse * SOAP_FMAC4 soap_get__tptz__GetStatusResponse(struct soap *soap, _tptz__GetStatusResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetStatusResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetStatus::ProfileToken); -} - -void _tptz__GetStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetStatus::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetStatus::ProfileToken); -#endif -} - -int _tptz__GetStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetStatus(struct soap *soap, const char *tag, int id, const _tptz__GetStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetStatus), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GetStatus::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetStatus(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetStatus * SOAP_FMAC4 soap_in__tptz__GetStatus(struct soap *soap, const char *tag, _tptz__GetStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetStatus, sizeof(_tptz__GetStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GetStatus::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetStatus, SOAP_TYPE__tptz__GetStatus, sizeof(_tptz__GetStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetStatus * SOAP_FMAC2 soap_instantiate__tptz__GetStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetStatus *p; - size_t k = sizeof(_tptz__GetStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetStatus(soap, tag ? tag : "tptz:GetStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetStatus(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetStatus * SOAP_FMAC4 soap_get__tptz__GetStatus(struct soap *soap, _tptz__GetStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GotoPresetResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__GotoPresetResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__GotoPresetResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GotoPresetResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoPresetResponse(struct soap *soap, const char *tag, int id, const _tptz__GotoPresetResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GotoPresetResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GotoPresetResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GotoPresetResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GotoPresetResponse * SOAP_FMAC4 soap_in__tptz__GotoPresetResponse(struct soap *soap, const char *tag, _tptz__GotoPresetResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GotoPresetResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GotoPresetResponse, sizeof(_tptz__GotoPresetResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GotoPresetResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GotoPresetResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GotoPresetResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GotoPresetResponse, SOAP_TYPE__tptz__GotoPresetResponse, sizeof(_tptz__GotoPresetResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GotoPresetResponse * SOAP_FMAC2 soap_instantiate__tptz__GotoPresetResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GotoPresetResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GotoPresetResponse *p; - size_t k = sizeof(_tptz__GotoPresetResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GotoPresetResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GotoPresetResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GotoPresetResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GotoPresetResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GotoPresetResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GotoPresetResponse(soap, tag ? tag : "tptz:GotoPresetResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GotoPresetResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GotoPresetResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GotoPresetResponse * SOAP_FMAC4 soap_get__tptz__GotoPresetResponse(struct soap *soap, _tptz__GotoPresetResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GotoPresetResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GotoPreset::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GotoPreset::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_tptz__GotoPreset::PresetToken); - this->_tptz__GotoPreset::Speed = NULL; -} - -void _tptz__GotoPreset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GotoPreset::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GotoPreset::ProfileToken); - soap_embedded(soap, &this->_tptz__GotoPreset::PresetToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GotoPreset::PresetToken); - soap_serialize_PointerTott__PTZSpeed(soap, &this->_tptz__GotoPreset::Speed); -#endif -} - -int _tptz__GotoPreset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GotoPreset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoPreset(struct soap *soap, const char *tag, int id, const _tptz__GotoPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GotoPreset), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GotoPreset::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:PresetToken", -1, &a->_tptz__GotoPreset::PresetToken, "")) - return soap->error; - if (soap_out_PointerTott__PTZSpeed(soap, "tptz:Speed", -1, &a->_tptz__GotoPreset::Speed, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GotoPreset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GotoPreset(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GotoPreset * SOAP_FMAC4 soap_in__tptz__GotoPreset(struct soap *soap, const char *tag, _tptz__GotoPreset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GotoPreset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GotoPreset, sizeof(_tptz__GotoPreset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GotoPreset) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GotoPreset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetToken1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GotoPreset::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PresetToken", &a->_tptz__GotoPreset::PresetToken, "tt:ReferenceToken")) - { soap_flag_PresetToken1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpeed(soap, "tptz:Speed", &a->_tptz__GotoPreset::Speed, "tt:PTZSpeed")) - { soap_flag_Speed1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_PresetToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GotoPreset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GotoPreset, SOAP_TYPE__tptz__GotoPreset, sizeof(_tptz__GotoPreset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GotoPreset * SOAP_FMAC2 soap_instantiate__tptz__GotoPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GotoPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GotoPreset *p; - size_t k = sizeof(_tptz__GotoPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GotoPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GotoPreset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GotoPreset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GotoPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GotoPreset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GotoPreset(soap, tag ? tag : "tptz:GotoPreset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GotoPreset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GotoPreset(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GotoPreset * SOAP_FMAC4 soap_get__tptz__GotoPreset(struct soap *soap, _tptz__GotoPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GotoPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__RemovePresetResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__RemovePresetResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__RemovePresetResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__RemovePresetResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePresetResponse(struct soap *soap, const char *tag, int id, const _tptz__RemovePresetResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__RemovePresetResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__RemovePresetResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__RemovePresetResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__RemovePresetResponse * SOAP_FMAC4 soap_in__tptz__RemovePresetResponse(struct soap *soap, const char *tag, _tptz__RemovePresetResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__RemovePresetResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__RemovePresetResponse, sizeof(_tptz__RemovePresetResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__RemovePresetResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__RemovePresetResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__RemovePresetResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__RemovePresetResponse, SOAP_TYPE__tptz__RemovePresetResponse, sizeof(_tptz__RemovePresetResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__RemovePresetResponse * SOAP_FMAC2 soap_instantiate__tptz__RemovePresetResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__RemovePresetResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__RemovePresetResponse *p; - size_t k = sizeof(_tptz__RemovePresetResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__RemovePresetResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__RemovePresetResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__RemovePresetResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__RemovePresetResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__RemovePresetResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__RemovePresetResponse(soap, tag ? tag : "tptz:RemovePresetResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__RemovePresetResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__RemovePresetResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__RemovePresetResponse * SOAP_FMAC4 soap_get__tptz__RemovePresetResponse(struct soap *soap, _tptz__RemovePresetResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__RemovePresetResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__RemovePreset::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__RemovePreset::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_tptz__RemovePreset::PresetToken); -} - -void _tptz__RemovePreset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__RemovePreset::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__RemovePreset::ProfileToken); - soap_embedded(soap, &this->_tptz__RemovePreset::PresetToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__RemovePreset::PresetToken); -#endif -} - -int _tptz__RemovePreset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__RemovePreset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePreset(struct soap *soap, const char *tag, int id, const _tptz__RemovePreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__RemovePreset), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__RemovePreset::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:PresetToken", -1, &a->_tptz__RemovePreset::PresetToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__RemovePreset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__RemovePreset(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__RemovePreset * SOAP_FMAC4 soap_in__tptz__RemovePreset(struct soap *soap, const char *tag, _tptz__RemovePreset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__RemovePreset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__RemovePreset, sizeof(_tptz__RemovePreset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__RemovePreset) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__RemovePreset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__RemovePreset::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PresetToken", &a->_tptz__RemovePreset::PresetToken, "tt:ReferenceToken")) - { soap_flag_PresetToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_PresetToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__RemovePreset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__RemovePreset, SOAP_TYPE__tptz__RemovePreset, sizeof(_tptz__RemovePreset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__RemovePreset * SOAP_FMAC2 soap_instantiate__tptz__RemovePreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__RemovePreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__RemovePreset *p; - size_t k = sizeof(_tptz__RemovePreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__RemovePreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__RemovePreset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__RemovePreset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__RemovePreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__RemovePreset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__RemovePreset(soap, tag ? tag : "tptz:RemovePreset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__RemovePreset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__RemovePreset(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__RemovePreset * SOAP_FMAC4 soap_get__tptz__RemovePreset(struct soap *soap, _tptz__RemovePreset *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__RemovePreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SetPresetResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__SetPresetResponse::PresetToken); -} - -void _tptz__SetPresetResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__SetPresetResponse::PresetToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__SetPresetResponse::PresetToken); -#endif -} - -int _tptz__SetPresetResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SetPresetResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetPresetResponse(struct soap *soap, const char *tag, int id, const _tptz__SetPresetResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SetPresetResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:PresetToken"); - if (soap_out_tt__ReferenceToken(soap, "tptz:PresetToken", -1, &a->_tptz__SetPresetResponse::PresetToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SetPresetResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SetPresetResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SetPresetResponse * SOAP_FMAC4 soap_in__tptz__SetPresetResponse(struct soap *soap, const char *tag, _tptz__SetPresetResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SetPresetResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SetPresetResponse, sizeof(_tptz__SetPresetResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SetPresetResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SetPresetResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PresetToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PresetToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PresetToken", &a->_tptz__SetPresetResponse::PresetToken, "tt:ReferenceToken")) - { soap_flag_PresetToken1--; - continue; - } - } - soap_check_result(soap, "tptz:PresetToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_PresetToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__SetPresetResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SetPresetResponse, SOAP_TYPE__tptz__SetPresetResponse, sizeof(_tptz__SetPresetResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SetPresetResponse * SOAP_FMAC2 soap_instantiate__tptz__SetPresetResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SetPresetResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SetPresetResponse *p; - size_t k = sizeof(_tptz__SetPresetResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SetPresetResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SetPresetResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SetPresetResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SetPresetResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SetPresetResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SetPresetResponse(soap, tag ? tag : "tptz:SetPresetResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SetPresetResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SetPresetResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SetPresetResponse * SOAP_FMAC4 soap_get__tptz__SetPresetResponse(struct soap *soap, _tptz__SetPresetResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SetPresetResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SetPreset::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__SetPreset::ProfileToken); - this->_tptz__SetPreset::PresetName = NULL; - this->_tptz__SetPreset::PresetToken = NULL; -} - -void _tptz__SetPreset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__SetPreset::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__SetPreset::ProfileToken); - soap_serialize_PointerTostd__string(soap, &this->_tptz__SetPreset::PresetName); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_tptz__SetPreset::PresetToken); -#endif -} - -int _tptz__SetPreset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SetPreset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetPreset(struct soap *soap, const char *tag, int id, const _tptz__SetPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SetPreset), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__SetPreset::ProfileToken, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tptz:PresetName", -1, &a->_tptz__SetPreset::PresetName, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tptz:PresetToken", -1, &a->_tptz__SetPreset::PresetToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SetPreset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SetPreset(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SetPreset * SOAP_FMAC4 soap_in__tptz__SetPreset(struct soap *soap, const char *tag, _tptz__SetPreset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SetPreset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SetPreset, sizeof(_tptz__SetPreset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SetPreset) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SetPreset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_PresetName1 = 1; - size_t soap_flag_PresetToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__SetPreset::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_PresetName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tptz:PresetName", &a->_tptz__SetPreset::PresetName, "xsd:string")) - { soap_flag_PresetName1--; - continue; - } - } - if (soap_flag_PresetToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tptz:PresetToken", &a->_tptz__SetPreset::PresetToken, "tt:ReferenceToken")) - { soap_flag_PresetToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__SetPreset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SetPreset, SOAP_TYPE__tptz__SetPreset, sizeof(_tptz__SetPreset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SetPreset * SOAP_FMAC2 soap_instantiate__tptz__SetPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SetPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SetPreset *p; - size_t k = sizeof(_tptz__SetPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SetPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SetPreset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SetPreset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SetPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SetPreset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SetPreset(soap, tag ? tag : "tptz:SetPreset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SetPreset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SetPreset(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SetPreset * SOAP_FMAC4 soap_get__tptz__SetPreset(struct soap *soap, _tptz__SetPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SetPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresetsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PTZPreset(soap, &this->_tptz__GetPresetsResponse::Preset); -} - -void _tptz__GetPresetsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PTZPreset(soap, &this->_tptz__GetPresetsResponse::Preset); -#endif -} - -int _tptz__GetPresetsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresetsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetsResponse(struct soap *soap, const char *tag, int id, const _tptz__GetPresetsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresetsResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:Preset"); - if (soap_out_std__vectorTemplateOfPointerTott__PTZPreset(soap, "tptz:Preset", -1, &a->_tptz__GetPresetsResponse::Preset, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresetsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresetsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresetsResponse * SOAP_FMAC4 soap_in__tptz__GetPresetsResponse(struct soap *soap, const char *tag, _tptz__GetPresetsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresetsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresetsResponse, sizeof(_tptz__GetPresetsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresetsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresetsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PTZPreset(soap, "tptz:Preset", &a->_tptz__GetPresetsResponse::Preset, "tt:PTZPreset")) - continue; - } - soap_check_result(soap, "tptz:Preset"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetPresetsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresetsResponse, SOAP_TYPE__tptz__GetPresetsResponse, sizeof(_tptz__GetPresetsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresetsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresetsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresetsResponse *p; - size_t k = sizeof(_tptz__GetPresetsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresetsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresetsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresetsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresetsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresetsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresetsResponse(soap, tag ? tag : "tptz:GetPresetsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresetsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresetsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresetsResponse * SOAP_FMAC4 soap_get__tptz__GetPresetsResponse(struct soap *soap, _tptz__GetPresetsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresetsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetPresets::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetPresets::ProfileToken); -} - -void _tptz__GetPresets::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetPresets::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetPresets::ProfileToken); -#endif -} - -int _tptz__GetPresets::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetPresets(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresets(struct soap *soap, const char *tag, int id, const _tptz__GetPresets *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetPresets), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__GetPresets::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetPresets::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetPresets(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetPresets * SOAP_FMAC4 soap_in__tptz__GetPresets(struct soap *soap, const char *tag, _tptz__GetPresets *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetPresets*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetPresets, sizeof(_tptz__GetPresets), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetPresets) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetPresets *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__GetPresets::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetPresets *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetPresets, SOAP_TYPE__tptz__GetPresets, sizeof(_tptz__GetPresets), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetPresets * SOAP_FMAC2 soap_instantiate__tptz__GetPresets(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetPresets(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetPresets *p; - size_t k = sizeof(_tptz__GetPresets); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetPresets, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetPresets); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetPresets, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetPresets location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetPresets::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetPresets(soap, tag ? tag : "tptz:GetPresets", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetPresets::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetPresets(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetPresets * SOAP_FMAC4 soap_get__tptz__GetPresets(struct soap *soap, _tptz__GetPresets *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetPresets(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SendAuxiliaryCommandResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AuxiliaryData(soap, &this->_tptz__SendAuxiliaryCommandResponse::AuxiliaryResponse); -} - -void _tptz__SendAuxiliaryCommandResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__SendAuxiliaryCommandResponse::AuxiliaryResponse, SOAP_TYPE_tt__AuxiliaryData); - soap_serialize_tt__AuxiliaryData(soap, &this->_tptz__SendAuxiliaryCommandResponse::AuxiliaryResponse); -#endif -} - -int _tptz__SendAuxiliaryCommandResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SendAuxiliaryCommandResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SendAuxiliaryCommandResponse(struct soap *soap, const char *tag, int id, const _tptz__SendAuxiliaryCommandResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SendAuxiliaryCommandResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:AuxiliaryResponse"); - if (soap_out_tt__AuxiliaryData(soap, "tptz:AuxiliaryResponse", -1, &a->_tptz__SendAuxiliaryCommandResponse::AuxiliaryResponse, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SendAuxiliaryCommandResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SendAuxiliaryCommandResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_in__tptz__SendAuxiliaryCommandResponse(struct soap *soap, const char *tag, _tptz__SendAuxiliaryCommandResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SendAuxiliaryCommandResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SendAuxiliaryCommandResponse, sizeof(_tptz__SendAuxiliaryCommandResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SendAuxiliaryCommandResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SendAuxiliaryCommandResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AuxiliaryResponse1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AuxiliaryResponse1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__AuxiliaryData(soap, "tptz:AuxiliaryResponse", &a->_tptz__SendAuxiliaryCommandResponse::AuxiliaryResponse, "tt:AuxiliaryData")) - { soap_flag_AuxiliaryResponse1--; - continue; - } - } - soap_check_result(soap, "tptz:AuxiliaryResponse"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AuxiliaryResponse1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__SendAuxiliaryCommandResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SendAuxiliaryCommandResponse, SOAP_TYPE__tptz__SendAuxiliaryCommandResponse, sizeof(_tptz__SendAuxiliaryCommandResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SendAuxiliaryCommandResponse * SOAP_FMAC2 soap_instantiate__tptz__SendAuxiliaryCommandResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SendAuxiliaryCommandResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SendAuxiliaryCommandResponse *p; - size_t k = sizeof(_tptz__SendAuxiliaryCommandResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SendAuxiliaryCommandResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SendAuxiliaryCommandResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SendAuxiliaryCommandResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SendAuxiliaryCommandResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SendAuxiliaryCommandResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SendAuxiliaryCommandResponse(soap, tag ? tag : "tptz:SendAuxiliaryCommandResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SendAuxiliaryCommandResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SendAuxiliaryCommandResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_get__tptz__SendAuxiliaryCommandResponse(struct soap *soap, _tptz__SendAuxiliaryCommandResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SendAuxiliaryCommandResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SendAuxiliaryCommand::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__SendAuxiliaryCommand::ProfileToken); - soap_default_tt__AuxiliaryData(soap, &this->_tptz__SendAuxiliaryCommand::AuxiliaryData); -} - -void _tptz__SendAuxiliaryCommand::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__SendAuxiliaryCommand::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__SendAuxiliaryCommand::ProfileToken); - soap_embedded(soap, &this->_tptz__SendAuxiliaryCommand::AuxiliaryData, SOAP_TYPE_tt__AuxiliaryData); - soap_serialize_tt__AuxiliaryData(soap, &this->_tptz__SendAuxiliaryCommand::AuxiliaryData); -#endif -} - -int _tptz__SendAuxiliaryCommand::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SendAuxiliaryCommand(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SendAuxiliaryCommand(struct soap *soap, const char *tag, int id, const _tptz__SendAuxiliaryCommand *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SendAuxiliaryCommand), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ProfileToken", -1, &a->_tptz__SendAuxiliaryCommand::ProfileToken, "")) - return soap->error; - if (soap_out_tt__AuxiliaryData(soap, "tptz:AuxiliaryData", -1, &a->_tptz__SendAuxiliaryCommand::AuxiliaryData, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SendAuxiliaryCommand::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SendAuxiliaryCommand(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_in__tptz__SendAuxiliaryCommand(struct soap *soap, const char *tag, _tptz__SendAuxiliaryCommand *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SendAuxiliaryCommand*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SendAuxiliaryCommand, sizeof(_tptz__SendAuxiliaryCommand), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SendAuxiliaryCommand) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SendAuxiliaryCommand *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_AuxiliaryData1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ProfileToken", &a->_tptz__SendAuxiliaryCommand::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_AuxiliaryData1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__AuxiliaryData(soap, "tptz:AuxiliaryData", &a->_tptz__SendAuxiliaryCommand::AuxiliaryData, "tt:AuxiliaryData")) - { soap_flag_AuxiliaryData1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_AuxiliaryData1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__SendAuxiliaryCommand *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SendAuxiliaryCommand, SOAP_TYPE__tptz__SendAuxiliaryCommand, sizeof(_tptz__SendAuxiliaryCommand), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate__tptz__SendAuxiliaryCommand(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SendAuxiliaryCommand(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SendAuxiliaryCommand *p; - size_t k = sizeof(_tptz__SendAuxiliaryCommand); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SendAuxiliaryCommand, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SendAuxiliaryCommand); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SendAuxiliaryCommand, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SendAuxiliaryCommand location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SendAuxiliaryCommand::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SendAuxiliaryCommand(soap, tag ? tag : "tptz:SendAuxiliaryCommand", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SendAuxiliaryCommand::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SendAuxiliaryCommand(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_get__tptz__SendAuxiliaryCommand(struct soap *soap, _tptz__SendAuxiliaryCommand *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SendAuxiliaryCommand(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions = NULL; -} - -void _tptz__GetConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZConfigurationOptions(soap, &this->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions); -#endif -} - -int _tptz__GetConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _tptz__GetConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetConfigurationOptionsResponse), type)) - return soap->error; - if (a->PTZConfigurationOptions) - soap_element_result(soap, "tptz:PTZConfigurationOptions"); - if (!a->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions) - { if (soap_element_empty(soap, "tptz:PTZConfigurationOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZConfigurationOptions(soap, "tptz:PTZConfigurationOptions", -1, &a->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tptz__GetConfigurationOptionsResponse(struct soap *soap, const char *tag, _tptz__GetConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetConfigurationOptionsResponse, sizeof(_tptz__GetConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PTZConfigurationOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTZConfigurationOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZConfigurationOptions(soap, "tptz:PTZConfigurationOptions", &a->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions, "tt:PTZConfigurationOptions")) - { soap_flag_PTZConfigurationOptions1--; - continue; - } - } - soap_check_result(soap, "tptz:PTZConfigurationOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetConfigurationOptionsResponse, SOAP_TYPE__tptz__GetConfigurationOptionsResponse, sizeof(_tptz__GetConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetConfigurationOptionsResponse *p; - size_t k = sizeof(_tptz__GetConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetConfigurationOptionsResponse(soap, tag ? tag : "tptz:GetConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tptz__GetConfigurationOptionsResponse(struct soap *soap, _tptz__GetConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetConfigurationOptions::ConfigurationToken); -} - -void _tptz__GetConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetConfigurationOptions::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetConfigurationOptions::ConfigurationToken); -#endif -} - -int _tptz__GetConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationOptions(struct soap *soap, const char *tag, int id, const _tptz__GetConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetConfigurationOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:ConfigurationToken", -1, &a->_tptz__GetConfigurationOptions::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationOptions * SOAP_FMAC4 soap_in__tptz__GetConfigurationOptions(struct soap *soap, const char *tag, _tptz__GetConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetConfigurationOptions, sizeof(_tptz__GetConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:ConfigurationToken", &a->_tptz__GetConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetConfigurationOptions, SOAP_TYPE__tptz__GetConfigurationOptions, sizeof(_tptz__GetConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetConfigurationOptions * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetConfigurationOptions *p; - size_t k = sizeof(_tptz__GetConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetConfigurationOptions(soap, tag ? tag : "tptz:GetConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationOptions * SOAP_FMAC4 soap_get__tptz__GetConfigurationOptions(struct soap *soap, _tptz__GetConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SetConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__SetConfigurationResponse::__SetConfigurationResponse_sequence = NULL; -} - -void _tptz__SetConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo__tptz__SetConfigurationResponse_sequence(soap, &this->_tptz__SetConfigurationResponse::__SetConfigurationResponse_sequence); -#endif -} - -int _tptz__SetConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SetConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetConfigurationResponse(struct soap *soap, const char *tag, int id, const _tptz__SetConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SetConfigurationResponse), type)) - return soap->error; - if (a->__SetConfigurationResponse_sequence) - soap_element_result(soap, "-SetConfigurationResponse-sequence"); - if (soap_out_PointerTo__tptz__SetConfigurationResponse_sequence(soap, "-SetConfigurationResponse-sequence", -1, &a->_tptz__SetConfigurationResponse::__SetConfigurationResponse_sequence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SetConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SetConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SetConfigurationResponse * SOAP_FMAC4 soap_in__tptz__SetConfigurationResponse(struct soap *soap, const char *tag, _tptz__SetConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SetConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SetConfigurationResponse, sizeof(_tptz__SetConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SetConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SetConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag___SetConfigurationResponse_sequence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___SetConfigurationResponse_sequence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo__tptz__SetConfigurationResponse_sequence(soap, "-SetConfigurationResponse-sequence", &a->_tptz__SetConfigurationResponse::__SetConfigurationResponse_sequence, "-tptz:SetConfigurationResponse-sequence")) - { soap_flag___SetConfigurationResponse_sequence1--; - continue; - } - } - soap_check_result(soap, "-SetConfigurationResponse-sequence"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__SetConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SetConfigurationResponse, SOAP_TYPE__tptz__SetConfigurationResponse, sizeof(_tptz__SetConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SetConfigurationResponse * SOAP_FMAC2 soap_instantiate__tptz__SetConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SetConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SetConfigurationResponse *p; - size_t k = sizeof(_tptz__SetConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SetConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SetConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SetConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SetConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SetConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SetConfigurationResponse(soap, tag ? tag : "tptz:SetConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SetConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SetConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SetConfigurationResponse * SOAP_FMAC4 soap_get__tptz__SetConfigurationResponse(struct soap *soap, _tptz__SetConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SetConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__SetConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__SetConfiguration::PTZConfiguration = NULL; - soap_default_bool(soap, &this->_tptz__SetConfiguration::ForcePersistence); -} - -void _tptz__SetConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZConfiguration(soap, &this->_tptz__SetConfiguration::PTZConfiguration); - soap_embedded(soap, &this->_tptz__SetConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _tptz__SetConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__SetConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetConfiguration(struct soap *soap, const char *tag, int id, const _tptz__SetConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__SetConfiguration), type)) - return soap->error; - if (!a->_tptz__SetConfiguration::PTZConfiguration) - { if (soap_element_empty(soap, "tptz:PTZConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", -1, &a->_tptz__SetConfiguration::PTZConfiguration, "")) - return soap->error; - if (soap_out_bool(soap, "tptz:ForcePersistence", -1, &a->_tptz__SetConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__SetConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__SetConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__SetConfiguration * SOAP_FMAC4 soap_in__tptz__SetConfiguration(struct soap *soap, const char *tag, _tptz__SetConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__SetConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__SetConfiguration, sizeof(_tptz__SetConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__SetConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__SetConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PTZConfiguration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTZConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", &a->_tptz__SetConfiguration::PTZConfiguration, "tt:PTZConfiguration")) - { soap_flag_PTZConfiguration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tptz:ForcePersistence", &a->_tptz__SetConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__SetConfiguration::PTZConfiguration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__SetConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__SetConfiguration, SOAP_TYPE__tptz__SetConfiguration, sizeof(_tptz__SetConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__SetConfiguration * SOAP_FMAC2 soap_instantiate__tptz__SetConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__SetConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__SetConfiguration *p; - size_t k = sizeof(_tptz__SetConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__SetConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__SetConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__SetConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__SetConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__SetConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__SetConfiguration(soap, tag ? tag : "tptz:SetConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__SetConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__SetConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__SetConfiguration * SOAP_FMAC4 soap_get__tptz__SetConfiguration(struct soap *soap, _tptz__SetConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__SetConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__GetConfigurationResponse::PTZConfiguration = NULL; -} - -void _tptz__GetConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZConfiguration(soap, &this->_tptz__GetConfigurationResponse::PTZConfiguration); -#endif -} - -int _tptz__GetConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationResponse(struct soap *soap, const char *tag, int id, const _tptz__GetConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetConfigurationResponse), type)) - return soap->error; - if (a->PTZConfiguration) - soap_element_result(soap, "tptz:PTZConfiguration"); - if (!a->_tptz__GetConfigurationResponse::PTZConfiguration) - { if (soap_element_empty(soap, "tptz:PTZConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", -1, &a->_tptz__GetConfigurationResponse::PTZConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationResponse * SOAP_FMAC4 soap_in__tptz__GetConfigurationResponse(struct soap *soap, const char *tag, _tptz__GetConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetConfigurationResponse, sizeof(_tptz__GetConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PTZConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTZConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", &a->_tptz__GetConfigurationResponse::PTZConfiguration, "tt:PTZConfiguration")) - { soap_flag_PTZConfiguration1--; - continue; - } - } - soap_check_result(soap, "tptz:PTZConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__GetConfigurationResponse::PTZConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetConfigurationResponse, SOAP_TYPE__tptz__GetConfigurationResponse, sizeof(_tptz__GetConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetConfigurationResponse * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetConfigurationResponse *p; - size_t k = sizeof(_tptz__GetConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetConfigurationResponse(soap, tag ? tag : "tptz:GetConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationResponse * SOAP_FMAC4 soap_get__tptz__GetConfigurationResponse(struct soap *soap, _tptz__GetConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetConfiguration::PTZConfigurationToken); -} - -void _tptz__GetConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetConfiguration::PTZConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetConfiguration::PTZConfigurationToken); -#endif -} - -int _tptz__GetConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfiguration(struct soap *soap, const char *tag, int id, const _tptz__GetConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:PTZConfigurationToken", -1, &a->_tptz__GetConfiguration::PTZConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetConfiguration * SOAP_FMAC4 soap_in__tptz__GetConfiguration(struct soap *soap, const char *tag, _tptz__GetConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetConfiguration, sizeof(_tptz__GetConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PTZConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTZConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:PTZConfigurationToken", &a->_tptz__GetConfiguration::PTZConfigurationToken, "tt:ReferenceToken")) - { soap_flag_PTZConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_PTZConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetConfiguration, SOAP_TYPE__tptz__GetConfiguration, sizeof(_tptz__GetConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetConfiguration * SOAP_FMAC2 soap_instantiate__tptz__GetConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetConfiguration *p; - size_t k = sizeof(_tptz__GetConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetConfiguration(soap, tag ? tag : "tptz:GetConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetConfiguration * SOAP_FMAC4 soap_get__tptz__GetConfiguration(struct soap *soap, _tptz__GetConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, &this->_tptz__GetConfigurationsResponse::PTZConfiguration); -} - -void _tptz__GetConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, &this->_tptz__GetConfigurationsResponse::PTZConfiguration); -#endif -} - -int _tptz__GetConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationsResponse(struct soap *soap, const char *tag, int id, const _tptz__GetConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:PTZConfiguration"); - if (soap_out_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", -1, &a->_tptz__GetConfigurationsResponse::PTZConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationsResponse * SOAP_FMAC4 soap_in__tptz__GetConfigurationsResponse(struct soap *soap, const char *tag, _tptz__GetConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetConfigurationsResponse, sizeof(_tptz__GetConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, "tptz:PTZConfiguration", &a->_tptz__GetConfigurationsResponse::PTZConfiguration, "tt:PTZConfiguration")) - continue; - } - soap_check_result(soap, "tptz:PTZConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetConfigurationsResponse, SOAP_TYPE__tptz__GetConfigurationsResponse, sizeof(_tptz__GetConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetConfigurationsResponse *p; - size_t k = sizeof(_tptz__GetConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetConfigurationsResponse(soap, tag ? tag : "tptz:GetConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetConfigurationsResponse * SOAP_FMAC4 soap_get__tptz__GetConfigurationsResponse(struct soap *soap, _tptz__GetConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__GetConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__GetConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurations(struct soap *soap, const char *tag, int id, const _tptz__GetConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetConfigurations * SOAP_FMAC4 soap_in__tptz__GetConfigurations(struct soap *soap, const char *tag, _tptz__GetConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetConfigurations, sizeof(_tptz__GetConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetConfigurations, SOAP_TYPE__tptz__GetConfigurations, sizeof(_tptz__GetConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetConfigurations * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetConfigurations *p; - size_t k = sizeof(_tptz__GetConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetConfigurations(soap, tag ? tag : "tptz:GetConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetConfigurations * SOAP_FMAC4 soap_get__tptz__GetConfigurations(struct soap *soap, _tptz__GetConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetNodeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__GetNodeResponse::PTZNode = NULL; -} - -void _tptz__GetNodeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZNode(soap, &this->_tptz__GetNodeResponse::PTZNode); -#endif -} - -int _tptz__GetNodeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetNodeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNodeResponse(struct soap *soap, const char *tag, int id, const _tptz__GetNodeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetNodeResponse), type)) - return soap->error; - if (a->PTZNode) - soap_element_result(soap, "tptz:PTZNode"); - if (!a->_tptz__GetNodeResponse::PTZNode) - { if (soap_element_empty(soap, "tptz:PTZNode", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZNode(soap, "tptz:PTZNode", -1, &a->_tptz__GetNodeResponse::PTZNode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetNodeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetNodeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetNodeResponse * SOAP_FMAC4 soap_in__tptz__GetNodeResponse(struct soap *soap, const char *tag, _tptz__GetNodeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetNodeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetNodeResponse, sizeof(_tptz__GetNodeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetNodeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetNodeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PTZNode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTZNode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZNode(soap, "tptz:PTZNode", &a->_tptz__GetNodeResponse::PTZNode, "tt:PTZNode")) - { soap_flag_PTZNode1--; - continue; - } - } - soap_check_result(soap, "tptz:PTZNode"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__GetNodeResponse::PTZNode)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetNodeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetNodeResponse, SOAP_TYPE__tptz__GetNodeResponse, sizeof(_tptz__GetNodeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetNodeResponse * SOAP_FMAC2 soap_instantiate__tptz__GetNodeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetNodeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetNodeResponse *p; - size_t k = sizeof(_tptz__GetNodeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetNodeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetNodeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetNodeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetNodeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetNodeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetNodeResponse(soap, tag ? tag : "tptz:GetNodeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetNodeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetNodeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetNodeResponse * SOAP_FMAC4 soap_get__tptz__GetNodeResponse(struct soap *soap, _tptz__GetNodeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetNodeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetNode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tptz__GetNode::NodeToken); -} - -void _tptz__GetNode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tptz__GetNode::NodeToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tptz__GetNode::NodeToken); -#endif -} - -int _tptz__GetNode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetNode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNode(struct soap *soap, const char *tag, int id, const _tptz__GetNode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetNode), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tptz:NodeToken", -1, &a->_tptz__GetNode::NodeToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetNode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetNode(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetNode * SOAP_FMAC4 soap_in__tptz__GetNode(struct soap *soap, const char *tag, _tptz__GetNode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetNode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetNode, sizeof(_tptz__GetNode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetNode) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetNode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_NodeToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_NodeToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tptz:NodeToken", &a->_tptz__GetNode::NodeToken, "tt:ReferenceToken")) - { soap_flag_NodeToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_NodeToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetNode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetNode, SOAP_TYPE__tptz__GetNode, sizeof(_tptz__GetNode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetNode * SOAP_FMAC2 soap_instantiate__tptz__GetNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetNode *p; - size_t k = sizeof(_tptz__GetNode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetNode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetNode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetNode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetNode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetNode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetNode(soap, tag ? tag : "tptz:GetNode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetNode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetNode(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetNode * SOAP_FMAC4 soap_get__tptz__GetNode(struct soap *soap, _tptz__GetNode *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetNode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetNodesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PTZNode(soap, &this->_tptz__GetNodesResponse::PTZNode); -} - -void _tptz__GetNodesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PTZNode(soap, &this->_tptz__GetNodesResponse::PTZNode); -#endif -} - -int _tptz__GetNodesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetNodesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNodesResponse(struct soap *soap, const char *tag, int id, const _tptz__GetNodesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetNodesResponse), type)) - return soap->error; - soap_element_result(soap, "tptz:PTZNode"); - if (soap_out_std__vectorTemplateOfPointerTott__PTZNode(soap, "tptz:PTZNode", -1, &a->_tptz__GetNodesResponse::PTZNode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetNodesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetNodesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetNodesResponse * SOAP_FMAC4 soap_in__tptz__GetNodesResponse(struct soap *soap, const char *tag, _tptz__GetNodesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetNodesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetNodesResponse, sizeof(_tptz__GetNodesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetNodesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetNodesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PTZNode(soap, "tptz:PTZNode", &a->_tptz__GetNodesResponse::PTZNode, "tt:PTZNode")) - continue; - } - soap_check_result(soap, "tptz:PTZNode"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetNodesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetNodesResponse, SOAP_TYPE__tptz__GetNodesResponse, sizeof(_tptz__GetNodesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetNodesResponse * SOAP_FMAC2 soap_instantiate__tptz__GetNodesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetNodesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetNodesResponse *p; - size_t k = sizeof(_tptz__GetNodesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetNodesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetNodesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetNodesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetNodesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetNodesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetNodesResponse(soap, tag ? tag : "tptz:GetNodesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetNodesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetNodesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetNodesResponse * SOAP_FMAC4 soap_get__tptz__GetNodesResponse(struct soap *soap, _tptz__GetNodesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetNodesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetNodes::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__GetNodes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__GetNodes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetNodes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNodes(struct soap *soap, const char *tag, int id, const _tptz__GetNodes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetNodes), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetNodes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetNodes(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetNodes * SOAP_FMAC4 soap_in__tptz__GetNodes(struct soap *soap, const char *tag, _tptz__GetNodes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetNodes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetNodes, sizeof(_tptz__GetNodes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetNodes) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetNodes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetNodes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetNodes, SOAP_TYPE__tptz__GetNodes, sizeof(_tptz__GetNodes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetNodes * SOAP_FMAC2 soap_instantiate__tptz__GetNodes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetNodes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetNodes *p; - size_t k = sizeof(_tptz__GetNodes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetNodes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetNodes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetNodes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetNodes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetNodes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetNodes(soap, tag ? tag : "tptz:GetNodes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetNodes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetNodes(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetNodes * SOAP_FMAC4 soap_get__tptz__GetNodes(struct soap *soap, _tptz__GetNodes *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetNodes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tptz__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _tptz__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotptz__Capabilities(soap, &this->_tptz__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _tptz__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tptz__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tptz:Capabilities"); - if (!a->_tptz__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tptz:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotptz__Capabilities(soap, "tptz:Capabilities", -1, &a->_tptz__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tptz__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _tptz__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetServiceCapabilitiesResponse, sizeof(_tptz__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotptz__Capabilities(soap, "tptz:Capabilities", &a->_tptz__GetServiceCapabilitiesResponse::Capabilities, "tptz:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tptz:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tptz__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tptz__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetServiceCapabilitiesResponse, SOAP_TYPE__tptz__GetServiceCapabilitiesResponse, sizeof(_tptz__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tptz__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_tptz__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetServiceCapabilitiesResponse(soap, tag ? tag : "tptz:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tptz__GetServiceCapabilitiesResponse(struct soap *soap, _tptz__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tptz__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tptz__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tptz__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tptz__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _tptz__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tptz__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tptz__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tptz__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tptz__GetServiceCapabilities * SOAP_FMAC4 soap_in__tptz__GetServiceCapabilities(struct soap *soap, const char *tag, _tptz__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tptz__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tptz__GetServiceCapabilities, sizeof(_tptz__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tptz__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tptz__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tptz__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tptz__GetServiceCapabilities, SOAP_TYPE__tptz__GetServiceCapabilities, sizeof(_tptz__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tptz__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tptz__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tptz__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tptz__GetServiceCapabilities *p; - size_t k = sizeof(_tptz__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tptz__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tptz__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tptz__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tptz__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tptz__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tptz__GetServiceCapabilities(soap, tag ? tag : "tptz:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tptz__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tptz__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tptz__GetServiceCapabilities * SOAP_FMAC4 soap_get__tptz__GetServiceCapabilities(struct soap *soap, _tptz__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tptz__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tptz__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tptz__Capabilities::__any); - this->tptz__Capabilities::EFlip = NULL; - this->tptz__Capabilities::Reverse = NULL; - this->tptz__Capabilities::GetCompatibleConfigurations = NULL; - this->tptz__Capabilities::MoveStatus = NULL; - this->tptz__Capabilities::StatusPosition = NULL; - soap_default_xsd__anyAttribute(soap, &this->tptz__Capabilities::__anyAttribute); -} - -void tptz__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tptz__Capabilities::__any); -#endif -} - -int tptz__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tptz__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tptz__Capabilities(struct soap *soap, const char *tag, int id, const tptz__Capabilities *a, const char *type) -{ - if (((tptz__Capabilities*)a)->EFlip) - { soap_set_attr(soap, "EFlip", soap_bool2s(soap, *((tptz__Capabilities*)a)->EFlip), 1); - } - if (((tptz__Capabilities*)a)->Reverse) - { soap_set_attr(soap, "Reverse", soap_bool2s(soap, *((tptz__Capabilities*)a)->Reverse), 1); - } - if (((tptz__Capabilities*)a)->GetCompatibleConfigurations) - { soap_set_attr(soap, "GetCompatibleConfigurations", soap_bool2s(soap, *((tptz__Capabilities*)a)->GetCompatibleConfigurations), 1); - } - if (((tptz__Capabilities*)a)->MoveStatus) - { soap_set_attr(soap, "MoveStatus", soap_bool2s(soap, *((tptz__Capabilities*)a)->MoveStatus), 1); - } - if (((tptz__Capabilities*)a)->StatusPosition) - { soap_set_attr(soap, "StatusPosition", soap_bool2s(soap, *((tptz__Capabilities*)a)->StatusPosition), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tptz__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tptz__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tptz__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tptz__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tptz__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tptz__Capabilities * SOAP_FMAC4 soap_in_tptz__Capabilities(struct soap *soap, const char *tag, tptz__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tptz__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tptz__Capabilities, sizeof(tptz__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tptz__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tptz__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "EFlip", 5, 0); - if (t) - { - if (!(((tptz__Capabilities*)a)->EFlip = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tptz__Capabilities*)a)->EFlip)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Reverse", 5, 0); - if (t) - { - if (!(((tptz__Capabilities*)a)->Reverse = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tptz__Capabilities*)a)->Reverse)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GetCompatibleConfigurations", 5, 0); - if (t) - { - if (!(((tptz__Capabilities*)a)->GetCompatibleConfigurations = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tptz__Capabilities*)a)->GetCompatibleConfigurations)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MoveStatus", 5, 0); - if (t) - { - if (!(((tptz__Capabilities*)a)->MoveStatus = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tptz__Capabilities*)a)->MoveStatus)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "StatusPosition", 5, 0); - if (t) - { - if (!(((tptz__Capabilities*)a)->StatusPosition = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tptz__Capabilities*)a)->StatusPosition)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tptz__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tptz__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tptz__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tptz__Capabilities, SOAP_TYPE_tptz__Capabilities, sizeof(tptz__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tptz__Capabilities * SOAP_FMAC2 soap_instantiate_tptz__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tptz__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tptz__Capabilities *p; - size_t k = sizeof(tptz__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tptz__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tptz__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tptz__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tptz__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tptz__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tptz__Capabilities(soap, tag ? tag : "tptz:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tptz__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tptz__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tptz__Capabilities * SOAP_FMAC4 soap_get_tptz__Capabilities(struct soap *soap, tptz__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tptz__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__DeleteOSDResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__DeleteOSDResponse::__any); -} - -void _trt__DeleteOSDResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__DeleteOSDResponse::__any); -#endif -} - -int _trt__DeleteOSDResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__DeleteOSDResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteOSDResponse(struct soap *soap, const char *tag, int id, const _trt__DeleteOSDResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__DeleteOSDResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__DeleteOSDResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__DeleteOSDResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__DeleteOSDResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__DeleteOSDResponse * SOAP_FMAC4 soap_in__trt__DeleteOSDResponse(struct soap *soap, const char *tag, _trt__DeleteOSDResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__DeleteOSDResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__DeleteOSDResponse, sizeof(_trt__DeleteOSDResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__DeleteOSDResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__DeleteOSDResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__DeleteOSDResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__DeleteOSDResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__DeleteOSDResponse, SOAP_TYPE__trt__DeleteOSDResponse, sizeof(_trt__DeleteOSDResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__DeleteOSDResponse * SOAP_FMAC2 soap_instantiate__trt__DeleteOSDResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__DeleteOSDResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__DeleteOSDResponse *p; - size_t k = sizeof(_trt__DeleteOSDResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__DeleteOSDResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__DeleteOSDResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__DeleteOSDResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__DeleteOSDResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__DeleteOSDResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__DeleteOSDResponse(soap, tag ? tag : "trt:DeleteOSDResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__DeleteOSDResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__DeleteOSDResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__DeleteOSDResponse * SOAP_FMAC4 soap_get__trt__DeleteOSDResponse(struct soap *soap, _trt__DeleteOSDResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__DeleteOSDResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__DeleteOSD::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__DeleteOSD::OSDToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__DeleteOSD::__any); -} - -void _trt__DeleteOSD::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__DeleteOSD::OSDToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__DeleteOSD::OSDToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__DeleteOSD::__any); -#endif -} - -int _trt__DeleteOSD::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__DeleteOSD(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteOSD(struct soap *soap, const char *tag, int id, const _trt__DeleteOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__DeleteOSD), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:OSDToken", -1, &a->_trt__DeleteOSD::OSDToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__DeleteOSD::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__DeleteOSD::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__DeleteOSD(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__DeleteOSD * SOAP_FMAC4 soap_in__trt__DeleteOSD(struct soap *soap, const char *tag, _trt__DeleteOSD *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__DeleteOSD*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__DeleteOSD, sizeof(_trt__DeleteOSD), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__DeleteOSD) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__DeleteOSD *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OSDToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OSDToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:OSDToken", &a->_trt__DeleteOSD::OSDToken, "tt:ReferenceToken")) - { soap_flag_OSDToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__DeleteOSD::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_OSDToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__DeleteOSD *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__DeleteOSD, SOAP_TYPE__trt__DeleteOSD, sizeof(_trt__DeleteOSD), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__DeleteOSD * SOAP_FMAC2 soap_instantiate__trt__DeleteOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__DeleteOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__DeleteOSD *p; - size_t k = sizeof(_trt__DeleteOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__DeleteOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__DeleteOSD); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__DeleteOSD, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__DeleteOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__DeleteOSD::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__DeleteOSD(soap, tag ? tag : "trt:DeleteOSD", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__DeleteOSD::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__DeleteOSD(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__DeleteOSD * SOAP_FMAC4 soap_get__trt__DeleteOSD(struct soap *soap, _trt__DeleteOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__DeleteOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__CreateOSDResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__CreateOSDResponse::OSDToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__CreateOSDResponse::__any); -} - -void _trt__CreateOSDResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__CreateOSDResponse::OSDToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__CreateOSDResponse::OSDToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__CreateOSDResponse::__any); -#endif -} - -int _trt__CreateOSDResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__CreateOSDResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateOSDResponse(struct soap *soap, const char *tag, int id, const _trt__CreateOSDResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__CreateOSDResponse), type)) - return soap->error; - soap_element_result(soap, "trt:OSDToken"); - if (soap_out_tt__ReferenceToken(soap, "trt:OSDToken", -1, &a->_trt__CreateOSDResponse::OSDToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__CreateOSDResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__CreateOSDResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__CreateOSDResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__CreateOSDResponse * SOAP_FMAC4 soap_in__trt__CreateOSDResponse(struct soap *soap, const char *tag, _trt__CreateOSDResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__CreateOSDResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__CreateOSDResponse, sizeof(_trt__CreateOSDResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__CreateOSDResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__CreateOSDResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OSDToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OSDToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:OSDToken", &a->_trt__CreateOSDResponse::OSDToken, "tt:ReferenceToken")) - { soap_flag_OSDToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__CreateOSDResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "trt:OSDToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_OSDToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__CreateOSDResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__CreateOSDResponse, SOAP_TYPE__trt__CreateOSDResponse, sizeof(_trt__CreateOSDResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__CreateOSDResponse * SOAP_FMAC2 soap_instantiate__trt__CreateOSDResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__CreateOSDResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__CreateOSDResponse *p; - size_t k = sizeof(_trt__CreateOSDResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__CreateOSDResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__CreateOSDResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__CreateOSDResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__CreateOSDResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__CreateOSDResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__CreateOSDResponse(soap, tag ? tag : "trt:CreateOSDResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__CreateOSDResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__CreateOSDResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__CreateOSDResponse * SOAP_FMAC4 soap_get__trt__CreateOSDResponse(struct soap *soap, _trt__CreateOSDResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__CreateOSDResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__CreateOSD::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__CreateOSD::OSD = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__CreateOSD::__any); -} - -void _trt__CreateOSD::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__OSDConfiguration(soap, &this->_trt__CreateOSD::OSD); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__CreateOSD::__any); -#endif -} - -int _trt__CreateOSD::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__CreateOSD(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateOSD(struct soap *soap, const char *tag, int id, const _trt__CreateOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__CreateOSD), type)) - return soap->error; - if (!a->_trt__CreateOSD::OSD) - { if (soap_element_empty(soap, "trt:OSD", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__OSDConfiguration(soap, "trt:OSD", -1, &a->_trt__CreateOSD::OSD, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__CreateOSD::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__CreateOSD::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__CreateOSD(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__CreateOSD * SOAP_FMAC4 soap_in__trt__CreateOSD(struct soap *soap, const char *tag, _trt__CreateOSD *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__CreateOSD*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__CreateOSD, sizeof(_trt__CreateOSD), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__CreateOSD) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__CreateOSD *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OSD1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OSD1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDConfiguration(soap, "trt:OSD", &a->_trt__CreateOSD::OSD, "tt:OSDConfiguration")) - { soap_flag_OSD1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__CreateOSD::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__CreateOSD::OSD)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__CreateOSD *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__CreateOSD, SOAP_TYPE__trt__CreateOSD, sizeof(_trt__CreateOSD), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__CreateOSD * SOAP_FMAC2 soap_instantiate__trt__CreateOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__CreateOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__CreateOSD *p; - size_t k = sizeof(_trt__CreateOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__CreateOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__CreateOSD); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__CreateOSD, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__CreateOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__CreateOSD::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__CreateOSD(soap, tag ? tag : "trt:CreateOSD", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__CreateOSD::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__CreateOSD(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__CreateOSD * SOAP_FMAC4 soap_get__trt__CreateOSD(struct soap *soap, _trt__CreateOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__CreateOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetOSDOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetOSDOptionsResponse::OSDOptions = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSDOptionsResponse::__any); -} - -void _trt__GetOSDOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__OSDConfigurationOptions(soap, &this->_trt__GetOSDOptionsResponse::OSDOptions); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSDOptionsResponse::__any); -#endif -} - -int _trt__GetOSDOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetOSDOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetOSDOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetOSDOptionsResponse), type)) - return soap->error; - if (a->OSDOptions) - soap_element_result(soap, "trt:OSDOptions"); - if (!a->_trt__GetOSDOptionsResponse::OSDOptions) - { if (soap_element_empty(soap, "trt:OSDOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__OSDConfigurationOptions(soap, "trt:OSDOptions", -1, &a->_trt__GetOSDOptionsResponse::OSDOptions, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__GetOSDOptionsResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetOSDOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetOSDOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetOSDOptionsResponse * SOAP_FMAC4 soap_in__trt__GetOSDOptionsResponse(struct soap *soap, const char *tag, _trt__GetOSDOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetOSDOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetOSDOptionsResponse, sizeof(_trt__GetOSDOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetOSDOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetOSDOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OSDOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OSDOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDConfigurationOptions(soap, "trt:OSDOptions", &a->_trt__GetOSDOptionsResponse::OSDOptions, "tt:OSDConfigurationOptions")) - { soap_flag_OSDOptions1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__GetOSDOptionsResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "trt:OSDOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetOSDOptionsResponse::OSDOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetOSDOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetOSDOptionsResponse, SOAP_TYPE__trt__GetOSDOptionsResponse, sizeof(_trt__GetOSDOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetOSDOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetOSDOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetOSDOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetOSDOptionsResponse *p; - size_t k = sizeof(_trt__GetOSDOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetOSDOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetOSDOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetOSDOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetOSDOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetOSDOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetOSDOptionsResponse(soap, tag ? tag : "trt:GetOSDOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetOSDOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetOSDOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetOSDOptionsResponse * SOAP_FMAC4 soap_get__trt__GetOSDOptionsResponse(struct soap *soap, _trt__GetOSDOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetOSDOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetOSDOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetOSDOptions::ConfigurationToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSDOptions::__any); -} - -void _trt__GetOSDOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetOSDOptions::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetOSDOptions::ConfigurationToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSDOptions::__any); -#endif -} - -int _trt__GetOSDOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetOSDOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDOptions(struct soap *soap, const char *tag, int id, const _trt__GetOSDOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetOSDOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetOSDOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__GetOSDOptions::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetOSDOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetOSDOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetOSDOptions * SOAP_FMAC4 soap_in__trt__GetOSDOptions(struct soap *soap, const char *tag, _trt__GetOSDOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetOSDOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetOSDOptions, sizeof(_trt__GetOSDOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetOSDOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetOSDOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetOSDOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__GetOSDOptions::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetOSDOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetOSDOptions, SOAP_TYPE__trt__GetOSDOptions, sizeof(_trt__GetOSDOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetOSDOptions * SOAP_FMAC2 soap_instantiate__trt__GetOSDOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetOSDOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetOSDOptions *p; - size_t k = sizeof(_trt__GetOSDOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetOSDOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetOSDOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetOSDOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetOSDOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetOSDOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetOSDOptions(soap, tag ? tag : "trt:GetOSDOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetOSDOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetOSDOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetOSDOptions * SOAP_FMAC4 soap_get__trt__GetOSDOptions(struct soap *soap, _trt__GetOSDOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetOSDOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetOSDResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__SetOSDResponse::__any); -} - -void _trt__SetOSDResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__SetOSDResponse::__any); -#endif -} - -int _trt__SetOSDResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetOSDResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetOSDResponse(struct soap *soap, const char *tag, int id, const _trt__SetOSDResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetOSDResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__SetOSDResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetOSDResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetOSDResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetOSDResponse * SOAP_FMAC4 soap_in__trt__SetOSDResponse(struct soap *soap, const char *tag, _trt__SetOSDResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetOSDResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetOSDResponse, sizeof(_trt__SetOSDResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetOSDResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetOSDResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__SetOSDResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetOSDResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetOSDResponse, SOAP_TYPE__trt__SetOSDResponse, sizeof(_trt__SetOSDResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetOSDResponse * SOAP_FMAC2 soap_instantiate__trt__SetOSDResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetOSDResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetOSDResponse *p; - size_t k = sizeof(_trt__SetOSDResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetOSDResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetOSDResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetOSDResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetOSDResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetOSDResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetOSDResponse(soap, tag ? tag : "trt:SetOSDResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetOSDResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetOSDResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetOSDResponse * SOAP_FMAC4 soap_get__trt__SetOSDResponse(struct soap *soap, _trt__SetOSDResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetOSDResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetOSD::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetOSD::OSD = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__SetOSD::__any); -} - -void _trt__SetOSD::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__OSDConfiguration(soap, &this->_trt__SetOSD::OSD); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__SetOSD::__any); -#endif -} - -int _trt__SetOSD::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetOSD(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetOSD(struct soap *soap, const char *tag, int id, const _trt__SetOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetOSD), type)) - return soap->error; - if (!a->_trt__SetOSD::OSD) - { if (soap_element_empty(soap, "trt:OSD", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__OSDConfiguration(soap, "trt:OSD", -1, &a->_trt__SetOSD::OSD, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__SetOSD::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetOSD::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetOSD(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetOSD * SOAP_FMAC4 soap_in__trt__SetOSD(struct soap *soap, const char *tag, _trt__SetOSD *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetOSD*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetOSD, sizeof(_trt__SetOSD), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetOSD) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetOSD *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OSD1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OSD1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDConfiguration(soap, "trt:OSD", &a->_trt__SetOSD::OSD, "tt:OSDConfiguration")) - { soap_flag_OSD1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__SetOSD::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetOSD::OSD)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetOSD *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetOSD, SOAP_TYPE__trt__SetOSD, sizeof(_trt__SetOSD), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetOSD * SOAP_FMAC2 soap_instantiate__trt__SetOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetOSD *p; - size_t k = sizeof(_trt__SetOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetOSD); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetOSD, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetOSD::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetOSD(soap, tag ? tag : "trt:SetOSD", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetOSD::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetOSD(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetOSD * SOAP_FMAC4 soap_get__trt__SetOSD(struct soap *soap, _trt__SetOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetOSDResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetOSDResponse::OSD = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSDResponse::__any); -} - -void _trt__GetOSDResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__OSDConfiguration(soap, &this->_trt__GetOSDResponse::OSD); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSDResponse::__any); -#endif -} - -int _trt__GetOSDResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetOSDResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDResponse(struct soap *soap, const char *tag, int id, const _trt__GetOSDResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetOSDResponse), type)) - return soap->error; - if (a->OSD) - soap_element_result(soap, "trt:OSD"); - if (!a->_trt__GetOSDResponse::OSD) - { if (soap_element_empty(soap, "trt:OSD", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__OSDConfiguration(soap, "trt:OSD", -1, &a->_trt__GetOSDResponse::OSD, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__GetOSDResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetOSDResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetOSDResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetOSDResponse * SOAP_FMAC4 soap_in__trt__GetOSDResponse(struct soap *soap, const char *tag, _trt__GetOSDResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetOSDResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetOSDResponse, sizeof(_trt__GetOSDResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetOSDResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetOSDResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OSD1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OSD1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDConfiguration(soap, "trt:OSD", &a->_trt__GetOSDResponse::OSD, "tt:OSDConfiguration")) - { soap_flag_OSD1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__GetOSDResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "trt:OSD"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetOSDResponse::OSD)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetOSDResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetOSDResponse, SOAP_TYPE__trt__GetOSDResponse, sizeof(_trt__GetOSDResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetOSDResponse * SOAP_FMAC2 soap_instantiate__trt__GetOSDResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetOSDResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetOSDResponse *p; - size_t k = sizeof(_trt__GetOSDResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetOSDResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetOSDResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetOSDResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetOSDResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetOSDResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetOSDResponse(soap, tag ? tag : "trt:GetOSDResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetOSDResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetOSDResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetOSDResponse * SOAP_FMAC4 soap_get__trt__GetOSDResponse(struct soap *soap, _trt__GetOSDResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetOSDResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetOSD::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetOSD::OSDToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSD::__any); -} - -void _trt__GetOSD::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetOSD::OSDToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetOSD::OSDToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_trt__GetOSD::__any); -#endif -} - -int _trt__GetOSD::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetOSD(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSD(struct soap *soap, const char *tag, int id, const _trt__GetOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetOSD), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:OSDToken", -1, &a->_trt__GetOSD::OSDToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_trt__GetOSD::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetOSD::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetOSD(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetOSD * SOAP_FMAC4 soap_in__trt__GetOSD(struct soap *soap, const char *tag, _trt__GetOSD *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetOSD*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetOSD, sizeof(_trt__GetOSD), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetOSD) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetOSD *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_OSDToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_OSDToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:OSDToken", &a->_trt__GetOSD::OSDToken, "tt:ReferenceToken")) - { soap_flag_OSDToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_trt__GetOSD::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_OSDToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetOSD *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetOSD, SOAP_TYPE__trt__GetOSD, sizeof(_trt__GetOSD), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetOSD * SOAP_FMAC2 soap_instantiate__trt__GetOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetOSD *p; - size_t k = sizeof(_trt__GetOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetOSD); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetOSD, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetOSD::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetOSD(soap, tag ? tag : "trt:GetOSD", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetOSD::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetOSD(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetOSD * SOAP_FMAC4 soap_get__trt__GetOSD(struct soap *soap, _trt__GetOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetOSDsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__OSDConfiguration(soap, &this->_trt__GetOSDsResponse::OSDs); -} - -void _trt__GetOSDsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__OSDConfiguration(soap, &this->_trt__GetOSDsResponse::OSDs); -#endif -} - -int _trt__GetOSDsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetOSDsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDsResponse(struct soap *soap, const char *tag, int id, const _trt__GetOSDsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetOSDsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:OSDs"); - if (soap_out_std__vectorTemplateOfPointerTott__OSDConfiguration(soap, "trt:OSDs", -1, &a->_trt__GetOSDsResponse::OSDs, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetOSDsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetOSDsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetOSDsResponse * SOAP_FMAC4 soap_in__trt__GetOSDsResponse(struct soap *soap, const char *tag, _trt__GetOSDsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetOSDsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetOSDsResponse, sizeof(_trt__GetOSDsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetOSDsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetOSDsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__OSDConfiguration(soap, "trt:OSDs", &a->_trt__GetOSDsResponse::OSDs, "tt:OSDConfiguration")) - continue; - } - soap_check_result(soap, "trt:OSDs"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetOSDsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetOSDsResponse, SOAP_TYPE__trt__GetOSDsResponse, sizeof(_trt__GetOSDsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetOSDsResponse * SOAP_FMAC2 soap_instantiate__trt__GetOSDsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetOSDsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetOSDsResponse *p; - size_t k = sizeof(_trt__GetOSDsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetOSDsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetOSDsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetOSDsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetOSDsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetOSDsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetOSDsResponse(soap, tag ? tag : "trt:GetOSDsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetOSDsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetOSDsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetOSDsResponse * SOAP_FMAC4 soap_get__trt__GetOSDsResponse(struct soap *soap, _trt__GetOSDsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetOSDsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetOSDs::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetOSDs::ConfigurationToken = NULL; -} - -void _trt__GetOSDs::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetOSDs::ConfigurationToken); -#endif -} - -int _trt__GetOSDs::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetOSDs(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDs(struct soap *soap, const char *tag, int id, const _trt__GetOSDs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetOSDs), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetOSDs::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetOSDs::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetOSDs(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetOSDs * SOAP_FMAC4 soap_in__trt__GetOSDs(struct soap *soap, const char *tag, _trt__GetOSDs *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetOSDs*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetOSDs, sizeof(_trt__GetOSDs), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetOSDs) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetOSDs *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetOSDs::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetOSDs *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetOSDs, SOAP_TYPE__trt__GetOSDs, sizeof(_trt__GetOSDs), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetOSDs * SOAP_FMAC2 soap_instantiate__trt__GetOSDs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetOSDs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetOSDs *p; - size_t k = sizeof(_trt__GetOSDs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetOSDs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetOSDs); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetOSDs, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetOSDs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetOSDs::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetOSDs(soap, tag ? tag : "trt:GetOSDs", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetOSDs::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetOSDs(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetOSDs * SOAP_FMAC4 soap_get__trt__GetOSDs(struct soap *soap, _trt__GetOSDs *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetOSDs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoSourceModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_trt__SetVideoSourceModeResponse::Reboot); -} - -void _trt__SetVideoSourceModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__SetVideoSourceModeResponse::Reboot, SOAP_TYPE_bool); -#endif -} - -int _trt__SetVideoSourceModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoSourceModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceModeResponse(struct soap *soap, const char *tag, int id, const _trt__SetVideoSourceModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoSourceModeResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Reboot"); - if (soap_out_bool(soap, "trt:Reboot", -1, &a->_trt__SetVideoSourceModeResponse::Reboot, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoSourceModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoSourceModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceModeResponse * SOAP_FMAC4 soap_in__trt__SetVideoSourceModeResponse(struct soap *soap, const char *tag, _trt__SetVideoSourceModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoSourceModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoSourceModeResponse, sizeof(_trt__SetVideoSourceModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoSourceModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoSourceModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Reboot1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Reboot1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:Reboot", &a->_trt__SetVideoSourceModeResponse::Reboot, "xsd:boolean")) - { soap_flag_Reboot1--; - continue; - } - } - soap_check_result(soap, "trt:Reboot"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Reboot1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetVideoSourceModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoSourceModeResponse, SOAP_TYPE__trt__SetVideoSourceModeResponse, sizeof(_trt__SetVideoSourceModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoSourceModeResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoSourceModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoSourceModeResponse *p; - size_t k = sizeof(_trt__SetVideoSourceModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoSourceModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoSourceModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoSourceModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoSourceModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoSourceModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoSourceModeResponse(soap, tag ? tag : "trt:SetVideoSourceModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoSourceModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoSourceModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceModeResponse * SOAP_FMAC4 soap_get__trt__SetVideoSourceModeResponse(struct soap *soap, _trt__SetVideoSourceModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoSourceModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoSourceMode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__SetVideoSourceMode::VideoSourceToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__SetVideoSourceMode::VideoSourceModeToken); -} - -void _trt__SetVideoSourceMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__SetVideoSourceMode::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__SetVideoSourceMode::VideoSourceToken); - soap_embedded(soap, &this->_trt__SetVideoSourceMode::VideoSourceModeToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__SetVideoSourceMode::VideoSourceModeToken); -#endif -} - -int _trt__SetVideoSourceMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoSourceMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceMode(struct soap *soap, const char *tag, int id, const _trt__SetVideoSourceMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoSourceMode), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:VideoSourceToken", -1, &a->_trt__SetVideoSourceMode::VideoSourceToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:VideoSourceModeToken", -1, &a->_trt__SetVideoSourceMode::VideoSourceModeToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoSourceMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoSourceMode(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceMode * SOAP_FMAC4 soap_in__trt__SetVideoSourceMode(struct soap *soap, const char *tag, _trt__SetVideoSourceMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoSourceMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoSourceMode, sizeof(_trt__SetVideoSourceMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoSourceMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoSourceMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - size_t soap_flag_VideoSourceModeToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:VideoSourceToken", &a->_trt__SetVideoSourceMode::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap_flag_VideoSourceModeToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:VideoSourceModeToken", &a->_trt__SetVideoSourceMode::VideoSourceModeToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceModeToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0 || soap_flag_VideoSourceModeToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetVideoSourceMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoSourceMode, SOAP_TYPE__trt__SetVideoSourceMode, sizeof(_trt__SetVideoSourceMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoSourceMode * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoSourceMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoSourceMode *p; - size_t k = sizeof(_trt__SetVideoSourceMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoSourceMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoSourceMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoSourceMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoSourceMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoSourceMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoSourceMode(soap, tag ? tag : "trt:SetVideoSourceMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoSourceMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoSourceMode(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceMode * SOAP_FMAC4 soap_get__trt__SetVideoSourceMode(struct soap *soap, _trt__SetVideoSourceMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoSourceMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceModesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTotrt__VideoSourceMode(soap, &this->_trt__GetVideoSourceModesResponse::VideoSourceModes); -} - -void _trt__GetVideoSourceModesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTotrt__VideoSourceMode(soap, &this->_trt__GetVideoSourceModesResponse::VideoSourceModes); -#endif -} - -int _trt__GetVideoSourceModesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceModesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceModesResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceModesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceModesResponse), type)) - return soap->error; - soap_element_result(soap, "trt:VideoSourceModes"); - if (soap_out_std__vectorTemplateOfPointerTotrt__VideoSourceMode(soap, "trt:VideoSourceModes", -1, &a->_trt__GetVideoSourceModesResponse::VideoSourceModes, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceModesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceModesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceModesResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceModesResponse(struct soap *soap, const char *tag, _trt__GetVideoSourceModesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceModesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceModesResponse, sizeof(_trt__GetVideoSourceModesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceModesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceModesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTotrt__VideoSourceMode(soap, "trt:VideoSourceModes", &a->_trt__GetVideoSourceModesResponse::VideoSourceModes, "trt:VideoSourceMode")) - continue; - } - soap_check_result(soap, "trt:VideoSourceModes"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_trt__GetVideoSourceModesResponse::VideoSourceModes.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoSourceModesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceModesResponse, SOAP_TYPE__trt__GetVideoSourceModesResponse, sizeof(_trt__GetVideoSourceModesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceModesResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceModesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceModesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceModesResponse *p; - size_t k = sizeof(_trt__GetVideoSourceModesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceModesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceModesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceModesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceModesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceModesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceModesResponse(soap, tag ? tag : "trt:GetVideoSourceModesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceModesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceModesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceModesResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceModesResponse(struct soap *soap, _trt__GetVideoSourceModesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceModesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceModes::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetVideoSourceModes::VideoSourceToken); -} - -void _trt__GetVideoSourceModes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetVideoSourceModes::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetVideoSourceModes::VideoSourceToken); -#endif -} - -int _trt__GetVideoSourceModes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceModes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceModes(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceModes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceModes), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:VideoSourceToken", -1, &a->_trt__GetVideoSourceModes::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceModes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceModes(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceModes * SOAP_FMAC4 soap_in__trt__GetVideoSourceModes(struct soap *soap, const char *tag, _trt__GetVideoSourceModes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceModes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceModes, sizeof(_trt__GetVideoSourceModes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceModes) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceModes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:VideoSourceToken", &a->_trt__GetVideoSourceModes::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoSourceModes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceModes, SOAP_TYPE__trt__GetVideoSourceModes, sizeof(_trt__GetVideoSourceModes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceModes * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceModes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceModes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceModes *p; - size_t k = sizeof(_trt__GetVideoSourceModes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceModes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceModes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceModes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceModes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceModes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceModes(soap, tag ? tag : "trt:GetVideoSourceModes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceModes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceModes(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceModes * SOAP_FMAC4 soap_get__trt__GetVideoSourceModes(struct soap *soap, _trt__GetVideoSourceModes *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceModes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetSnapshotUriResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetSnapshotUriResponse::MediaUri = NULL; -} - -void _trt__GetSnapshotUriResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MediaUri(soap, &this->_trt__GetSnapshotUriResponse::MediaUri); -#endif -} - -int _trt__GetSnapshotUriResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetSnapshotUriResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetSnapshotUriResponse(struct soap *soap, const char *tag, int id, const _trt__GetSnapshotUriResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetSnapshotUriResponse), type)) - return soap->error; - if (a->MediaUri) - soap_element_result(soap, "trt:MediaUri"); - if (!a->_trt__GetSnapshotUriResponse::MediaUri) - { if (soap_element_empty(soap, "trt:MediaUri", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MediaUri(soap, "trt:MediaUri", -1, &a->_trt__GetSnapshotUriResponse::MediaUri, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetSnapshotUriResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetSnapshotUriResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetSnapshotUriResponse * SOAP_FMAC4 soap_in__trt__GetSnapshotUriResponse(struct soap *soap, const char *tag, _trt__GetSnapshotUriResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetSnapshotUriResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetSnapshotUriResponse, sizeof(_trt__GetSnapshotUriResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetSnapshotUriResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetSnapshotUriResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_MediaUri1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MediaUri1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MediaUri(soap, "trt:MediaUri", &a->_trt__GetSnapshotUriResponse::MediaUri, "tt:MediaUri")) - { soap_flag_MediaUri1--; - continue; - } - } - soap_check_result(soap, "trt:MediaUri"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetSnapshotUriResponse::MediaUri)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetSnapshotUriResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetSnapshotUriResponse, SOAP_TYPE__trt__GetSnapshotUriResponse, sizeof(_trt__GetSnapshotUriResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetSnapshotUriResponse * SOAP_FMAC2 soap_instantiate__trt__GetSnapshotUriResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetSnapshotUriResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetSnapshotUriResponse *p; - size_t k = sizeof(_trt__GetSnapshotUriResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetSnapshotUriResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetSnapshotUriResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetSnapshotUriResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetSnapshotUriResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetSnapshotUriResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetSnapshotUriResponse(soap, tag ? tag : "trt:GetSnapshotUriResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetSnapshotUriResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetSnapshotUriResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetSnapshotUriResponse * SOAP_FMAC4 soap_get__trt__GetSnapshotUriResponse(struct soap *soap, _trt__GetSnapshotUriResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetSnapshotUriResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetSnapshotUri::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetSnapshotUri::ProfileToken); -} - -void _trt__GetSnapshotUri::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetSnapshotUri::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetSnapshotUri::ProfileToken); -#endif -} - -int _trt__GetSnapshotUri::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetSnapshotUri(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetSnapshotUri(struct soap *soap, const char *tag, int id, const _trt__GetSnapshotUri *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetSnapshotUri), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetSnapshotUri::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetSnapshotUri::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetSnapshotUri(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetSnapshotUri * SOAP_FMAC4 soap_in__trt__GetSnapshotUri(struct soap *soap, const char *tag, _trt__GetSnapshotUri *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetSnapshotUri*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetSnapshotUri, sizeof(_trt__GetSnapshotUri), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetSnapshotUri) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetSnapshotUri *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetSnapshotUri::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetSnapshotUri *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetSnapshotUri, SOAP_TYPE__trt__GetSnapshotUri, sizeof(_trt__GetSnapshotUri), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetSnapshotUri * SOAP_FMAC2 soap_instantiate__trt__GetSnapshotUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetSnapshotUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetSnapshotUri *p; - size_t k = sizeof(_trt__GetSnapshotUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetSnapshotUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetSnapshotUri); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetSnapshotUri, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetSnapshotUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetSnapshotUri::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetSnapshotUri(soap, tag ? tag : "trt:GetSnapshotUri", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetSnapshotUri::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetSnapshotUri(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetSnapshotUri * SOAP_FMAC4 soap_get__trt__GetSnapshotUri(struct soap *soap, _trt__GetSnapshotUri *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetSnapshotUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetSynchronizationPointResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetSynchronizationPointResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetSynchronizationPointResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetSynchronizationPointResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetSynchronizationPointResponse(struct soap *soap, const char *tag, int id, const _trt__SetSynchronizationPointResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetSynchronizationPointResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetSynchronizationPointResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetSynchronizationPointResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetSynchronizationPointResponse * SOAP_FMAC4 soap_in__trt__SetSynchronizationPointResponse(struct soap *soap, const char *tag, _trt__SetSynchronizationPointResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetSynchronizationPointResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetSynchronizationPointResponse, sizeof(_trt__SetSynchronizationPointResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetSynchronizationPointResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetSynchronizationPointResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetSynchronizationPointResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetSynchronizationPointResponse, SOAP_TYPE__trt__SetSynchronizationPointResponse, sizeof(_trt__SetSynchronizationPointResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetSynchronizationPointResponse * SOAP_FMAC2 soap_instantiate__trt__SetSynchronizationPointResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetSynchronizationPointResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetSynchronizationPointResponse *p; - size_t k = sizeof(_trt__SetSynchronizationPointResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetSynchronizationPointResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetSynchronizationPointResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetSynchronizationPointResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetSynchronizationPointResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetSynchronizationPointResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetSynchronizationPointResponse(soap, tag ? tag : "trt:SetSynchronizationPointResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetSynchronizationPointResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetSynchronizationPointResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetSynchronizationPointResponse * SOAP_FMAC4 soap_get__trt__SetSynchronizationPointResponse(struct soap *soap, _trt__SetSynchronizationPointResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetSynchronizationPointResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetSynchronizationPoint::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__SetSynchronizationPoint::ProfileToken); -} - -void _trt__SetSynchronizationPoint::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__SetSynchronizationPoint::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__SetSynchronizationPoint::ProfileToken); -#endif -} - -int _trt__SetSynchronizationPoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetSynchronizationPoint(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetSynchronizationPoint(struct soap *soap, const char *tag, int id, const _trt__SetSynchronizationPoint *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetSynchronizationPoint), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__SetSynchronizationPoint::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetSynchronizationPoint::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetSynchronizationPoint(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetSynchronizationPoint * SOAP_FMAC4 soap_in__trt__SetSynchronizationPoint(struct soap *soap, const char *tag, _trt__SetSynchronizationPoint *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetSynchronizationPoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetSynchronizationPoint, sizeof(_trt__SetSynchronizationPoint), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetSynchronizationPoint) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetSynchronizationPoint *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__SetSynchronizationPoint::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetSynchronizationPoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetSynchronizationPoint, SOAP_TYPE__trt__SetSynchronizationPoint, sizeof(_trt__SetSynchronizationPoint), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate__trt__SetSynchronizationPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetSynchronizationPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetSynchronizationPoint *p; - size_t k = sizeof(_trt__SetSynchronizationPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetSynchronizationPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetSynchronizationPoint); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetSynchronizationPoint, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetSynchronizationPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetSynchronizationPoint::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetSynchronizationPoint(soap, tag ? tag : "trt:SetSynchronizationPoint", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetSynchronizationPoint::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetSynchronizationPoint(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetSynchronizationPoint * SOAP_FMAC4 soap_get__trt__SetSynchronizationPoint(struct soap *soap, _trt__SetSynchronizationPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetSynchronizationPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__StopMulticastStreamingResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__StopMulticastStreamingResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__StopMulticastStreamingResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__StopMulticastStreamingResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StopMulticastStreamingResponse(struct soap *soap, const char *tag, int id, const _trt__StopMulticastStreamingResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__StopMulticastStreamingResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__StopMulticastStreamingResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__StopMulticastStreamingResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__StopMulticastStreamingResponse * SOAP_FMAC4 soap_in__trt__StopMulticastStreamingResponse(struct soap *soap, const char *tag, _trt__StopMulticastStreamingResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__StopMulticastStreamingResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__StopMulticastStreamingResponse, sizeof(_trt__StopMulticastStreamingResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__StopMulticastStreamingResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__StopMulticastStreamingResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__StopMulticastStreamingResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__StopMulticastStreamingResponse, SOAP_TYPE__trt__StopMulticastStreamingResponse, sizeof(_trt__StopMulticastStreamingResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__StopMulticastStreamingResponse * SOAP_FMAC2 soap_instantiate__trt__StopMulticastStreamingResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__StopMulticastStreamingResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__StopMulticastStreamingResponse *p; - size_t k = sizeof(_trt__StopMulticastStreamingResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__StopMulticastStreamingResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__StopMulticastStreamingResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__StopMulticastStreamingResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__StopMulticastStreamingResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__StopMulticastStreamingResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__StopMulticastStreamingResponse(soap, tag ? tag : "trt:StopMulticastStreamingResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__StopMulticastStreamingResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__StopMulticastStreamingResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__StopMulticastStreamingResponse * SOAP_FMAC4 soap_get__trt__StopMulticastStreamingResponse(struct soap *soap, _trt__StopMulticastStreamingResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__StopMulticastStreamingResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__StopMulticastStreaming::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__StopMulticastStreaming::ProfileToken); -} - -void _trt__StopMulticastStreaming::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__StopMulticastStreaming::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__StopMulticastStreaming::ProfileToken); -#endif -} - -int _trt__StopMulticastStreaming::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__StopMulticastStreaming(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StopMulticastStreaming(struct soap *soap, const char *tag, int id, const _trt__StopMulticastStreaming *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__StopMulticastStreaming), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__StopMulticastStreaming::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__StopMulticastStreaming::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__StopMulticastStreaming(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__StopMulticastStreaming * SOAP_FMAC4 soap_in__trt__StopMulticastStreaming(struct soap *soap, const char *tag, _trt__StopMulticastStreaming *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__StopMulticastStreaming*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__StopMulticastStreaming, sizeof(_trt__StopMulticastStreaming), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__StopMulticastStreaming) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__StopMulticastStreaming *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__StopMulticastStreaming::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__StopMulticastStreaming *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__StopMulticastStreaming, SOAP_TYPE__trt__StopMulticastStreaming, sizeof(_trt__StopMulticastStreaming), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__StopMulticastStreaming * SOAP_FMAC2 soap_instantiate__trt__StopMulticastStreaming(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__StopMulticastStreaming(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__StopMulticastStreaming *p; - size_t k = sizeof(_trt__StopMulticastStreaming); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__StopMulticastStreaming, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__StopMulticastStreaming); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__StopMulticastStreaming, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__StopMulticastStreaming location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__StopMulticastStreaming::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__StopMulticastStreaming(soap, tag ? tag : "trt:StopMulticastStreaming", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__StopMulticastStreaming::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__StopMulticastStreaming(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__StopMulticastStreaming * SOAP_FMAC4 soap_get__trt__StopMulticastStreaming(struct soap *soap, _trt__StopMulticastStreaming *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__StopMulticastStreaming(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__StartMulticastStreamingResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__StartMulticastStreamingResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__StartMulticastStreamingResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__StartMulticastStreamingResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StartMulticastStreamingResponse(struct soap *soap, const char *tag, int id, const _trt__StartMulticastStreamingResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__StartMulticastStreamingResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__StartMulticastStreamingResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__StartMulticastStreamingResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__StartMulticastStreamingResponse * SOAP_FMAC4 soap_in__trt__StartMulticastStreamingResponse(struct soap *soap, const char *tag, _trt__StartMulticastStreamingResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__StartMulticastStreamingResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__StartMulticastStreamingResponse, sizeof(_trt__StartMulticastStreamingResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__StartMulticastStreamingResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__StartMulticastStreamingResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__StartMulticastStreamingResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__StartMulticastStreamingResponse, SOAP_TYPE__trt__StartMulticastStreamingResponse, sizeof(_trt__StartMulticastStreamingResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__StartMulticastStreamingResponse * SOAP_FMAC2 soap_instantiate__trt__StartMulticastStreamingResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__StartMulticastStreamingResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__StartMulticastStreamingResponse *p; - size_t k = sizeof(_trt__StartMulticastStreamingResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__StartMulticastStreamingResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__StartMulticastStreamingResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__StartMulticastStreamingResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__StartMulticastStreamingResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__StartMulticastStreamingResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__StartMulticastStreamingResponse(soap, tag ? tag : "trt:StartMulticastStreamingResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__StartMulticastStreamingResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__StartMulticastStreamingResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__StartMulticastStreamingResponse * SOAP_FMAC4 soap_get__trt__StartMulticastStreamingResponse(struct soap *soap, _trt__StartMulticastStreamingResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__StartMulticastStreamingResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__StartMulticastStreaming::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__StartMulticastStreaming::ProfileToken); -} - -void _trt__StartMulticastStreaming::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__StartMulticastStreaming::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__StartMulticastStreaming::ProfileToken); -#endif -} - -int _trt__StartMulticastStreaming::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__StartMulticastStreaming(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StartMulticastStreaming(struct soap *soap, const char *tag, int id, const _trt__StartMulticastStreaming *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__StartMulticastStreaming), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__StartMulticastStreaming::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__StartMulticastStreaming::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__StartMulticastStreaming(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__StartMulticastStreaming * SOAP_FMAC4 soap_in__trt__StartMulticastStreaming(struct soap *soap, const char *tag, _trt__StartMulticastStreaming *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__StartMulticastStreaming*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__StartMulticastStreaming, sizeof(_trt__StartMulticastStreaming), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__StartMulticastStreaming) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__StartMulticastStreaming *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__StartMulticastStreaming::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__StartMulticastStreaming *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__StartMulticastStreaming, SOAP_TYPE__trt__StartMulticastStreaming, sizeof(_trt__StartMulticastStreaming), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__StartMulticastStreaming * SOAP_FMAC2 soap_instantiate__trt__StartMulticastStreaming(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__StartMulticastStreaming(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__StartMulticastStreaming *p; - size_t k = sizeof(_trt__StartMulticastStreaming); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__StartMulticastStreaming, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__StartMulticastStreaming); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__StartMulticastStreaming, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__StartMulticastStreaming location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__StartMulticastStreaming::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__StartMulticastStreaming(soap, tag ? tag : "trt:StartMulticastStreaming", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__StartMulticastStreaming::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__StartMulticastStreaming(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__StartMulticastStreaming * SOAP_FMAC4 soap_get__trt__StartMulticastStreaming(struct soap *soap, _trt__StartMulticastStreaming *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__StartMulticastStreaming(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetStreamUriResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetStreamUriResponse::MediaUri = NULL; -} - -void _trt__GetStreamUriResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MediaUri(soap, &this->_trt__GetStreamUriResponse::MediaUri); -#endif -} - -int _trt__GetStreamUriResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetStreamUriResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetStreamUriResponse(struct soap *soap, const char *tag, int id, const _trt__GetStreamUriResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetStreamUriResponse), type)) - return soap->error; - if (a->MediaUri) - soap_element_result(soap, "trt:MediaUri"); - if (!a->_trt__GetStreamUriResponse::MediaUri) - { if (soap_element_empty(soap, "trt:MediaUri", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MediaUri(soap, "trt:MediaUri", -1, &a->_trt__GetStreamUriResponse::MediaUri, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetStreamUriResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetStreamUriResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetStreamUriResponse * SOAP_FMAC4 soap_in__trt__GetStreamUriResponse(struct soap *soap, const char *tag, _trt__GetStreamUriResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetStreamUriResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetStreamUriResponse, sizeof(_trt__GetStreamUriResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetStreamUriResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetStreamUriResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_MediaUri1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MediaUri1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MediaUri(soap, "trt:MediaUri", &a->_trt__GetStreamUriResponse::MediaUri, "tt:MediaUri")) - { soap_flag_MediaUri1--; - continue; - } - } - soap_check_result(soap, "trt:MediaUri"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetStreamUriResponse::MediaUri)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetStreamUriResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetStreamUriResponse, SOAP_TYPE__trt__GetStreamUriResponse, sizeof(_trt__GetStreamUriResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetStreamUriResponse * SOAP_FMAC2 soap_instantiate__trt__GetStreamUriResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetStreamUriResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetStreamUriResponse *p; - size_t k = sizeof(_trt__GetStreamUriResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetStreamUriResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetStreamUriResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetStreamUriResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetStreamUriResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetStreamUriResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetStreamUriResponse(soap, tag ? tag : "trt:GetStreamUriResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetStreamUriResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetStreamUriResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetStreamUriResponse * SOAP_FMAC4 soap_get__trt__GetStreamUriResponse(struct soap *soap, _trt__GetStreamUriResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetStreamUriResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetStreamUri::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetStreamUri::StreamSetup = NULL; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetStreamUri::ProfileToken); -} - -void _trt__GetStreamUri::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__StreamSetup(soap, &this->_trt__GetStreamUri::StreamSetup); - soap_embedded(soap, &this->_trt__GetStreamUri::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetStreamUri::ProfileToken); -#endif -} - -int _trt__GetStreamUri::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetStreamUri(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetStreamUri(struct soap *soap, const char *tag, int id, const _trt__GetStreamUri *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetStreamUri), type)) - return soap->error; - if (!a->_trt__GetStreamUri::StreamSetup) - { if (soap_element_empty(soap, "trt:StreamSetup", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__StreamSetup(soap, "trt:StreamSetup", -1, &a->_trt__GetStreamUri::StreamSetup, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetStreamUri::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetStreamUri::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetStreamUri(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetStreamUri * SOAP_FMAC4 soap_in__trt__GetStreamUri(struct soap *soap, const char *tag, _trt__GetStreamUri *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetStreamUri*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetStreamUri, sizeof(_trt__GetStreamUri), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetStreamUri) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetStreamUri *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StreamSetup1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StreamSetup1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__StreamSetup(soap, "trt:StreamSetup", &a->_trt__GetStreamUri::StreamSetup, "tt:StreamSetup")) - { soap_flag_StreamSetup1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetStreamUri::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetStreamUri::StreamSetup || soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetStreamUri *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetStreamUri, SOAP_TYPE__trt__GetStreamUri, sizeof(_trt__GetStreamUri), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetStreamUri * SOAP_FMAC2 soap_instantiate__trt__GetStreamUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetStreamUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetStreamUri *p; - size_t k = sizeof(_trt__GetStreamUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetStreamUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetStreamUri); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetStreamUri, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetStreamUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetStreamUri::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetStreamUri(soap, tag ? tag : "trt:GetStreamUri", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetStreamUri::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetStreamUri(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetStreamUri * SOAP_FMAC4 soap_get__trt__GetStreamUri(struct soap *soap, _trt__GetStreamUri *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetStreamUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::TotalNumber); - this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::JPEG = NULL; - this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::H264 = NULL; - this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::MPEG4 = NULL; -} - -void _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::TotalNumber, SOAP_TYPE_int); - soap_serialize_PointerToint(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::JPEG); - soap_serialize_PointerToint(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::H264); - soap_serialize_PointerToint(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::MPEG4); -#endif -} - -int _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, const char *tag, int id, const _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse), type)) - return soap->error; - soap_element_result(soap, "trt:TotalNumber"); - if (soap_out_int(soap, "trt:TotalNumber", -1, &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::TotalNumber, "")) - return soap->error; - if (soap_out_PointerToint(soap, "trt:JPEG", -1, &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::JPEG, "")) - return soap->error; - if (soap_out_PointerToint(soap, "trt:H264", -1, &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::H264, "")) - return soap->error; - if (soap_out_PointerToint(soap, "trt:MPEG4", -1, &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::MPEG4, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * SOAP_FMAC4 soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, const char *tag, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse, sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_TotalNumber1 = 1; - size_t soap_flag_JPEG1 = 1; - size_t soap_flag_H2641 = 1; - size_t soap_flag_MPEG41 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TotalNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "trt:TotalNumber", &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::TotalNumber, "xsd:int")) - { soap_flag_TotalNumber1--; - continue; - } - } - if (soap_flag_JPEG1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "trt:JPEG", &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::JPEG, "xsd:int")) - { soap_flag_JPEG1--; - continue; - } - } - if (soap_flag_H2641 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "trt:H264", &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::H264, "xsd:int")) - { soap_flag_H2641--; - continue; - } - } - if (soap_flag_MPEG41 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "trt:MPEG4", &a->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::MPEG4, "xsd:int")) - { soap_flag_MPEG41--; - continue; - } - } - soap_check_result(soap, "trt:TotalNumber"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TotalNumber1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse, sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * SOAP_FMAC2 soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *p; - size_t k = sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, tag ? tag : "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * SOAP_FMAC4 soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetGuaranteedNumberOfVideoEncoderInstances::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstances::ConfigurationToken); -} - -void _trt__GetGuaranteedNumberOfVideoEncoderInstances::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstances::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetGuaranteedNumberOfVideoEncoderInstances::ConfigurationToken); -#endif -} - -int _trt__GetGuaranteedNumberOfVideoEncoderInstances::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *tag, int id, const _trt__GetGuaranteedNumberOfVideoEncoderInstances *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetGuaranteedNumberOfVideoEncoderInstances::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetGuaranteedNumberOfVideoEncoderInstances::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *tag, _trt__GetGuaranteedNumberOfVideoEncoderInstances *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetGuaranteedNumberOfVideoEncoderInstances*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances, sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstances), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetGuaranteedNumberOfVideoEncoderInstances *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetGuaranteedNumberOfVideoEncoderInstances::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetGuaranteedNumberOfVideoEncoderInstances *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances, sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstances), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC2 soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstances(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetGuaranteedNumberOfVideoEncoderInstances *p; - size_t k = sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstances); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetGuaranteedNumberOfVideoEncoderInstances location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetGuaranteedNumberOfVideoEncoderInstances::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag ? tag : "trt:GetGuaranteedNumberOfVideoEncoderInstances", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetGuaranteedNumberOfVideoEncoderInstances::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioDecoderConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioDecoderConfigurationOptionsResponse::Options = NULL; -} - -void _trt__GetAudioDecoderConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioDecoderConfigurationOptions(soap, &this->_trt__GetAudioDecoderConfigurationOptionsResponse::Options); -#endif -} - -int _trt__GetAudioDecoderConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioDecoderConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioDecoderConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trt:Options"); - if (!a->_trt__GetAudioDecoderConfigurationOptionsResponse::Options) - { if (soap_element_empty(soap, "trt:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioDecoderConfigurationOptions(soap, "trt:Options", -1, &a->_trt__GetAudioDecoderConfigurationOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioDecoderConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioDecoderConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, const char *tag, _trt__GetAudioDecoderConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioDecoderConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse, sizeof(_trt__GetAudioDecoderConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioDecoderConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioDecoderConfigurationOptions(soap, "trt:Options", &a->_trt__GetAudioDecoderConfigurationOptionsResponse::Options, "tt:AudioDecoderConfigurationOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trt:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioDecoderConfigurationOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioDecoderConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse, sizeof(_trt__GetAudioDecoderConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioDecoderConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioDecoderConfigurationOptionsResponse *p; - size_t k = sizeof(_trt__GetAudioDecoderConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioDecoderConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioDecoderConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioDecoderConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioDecoderConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioDecoderConfigurationOptionsResponse(soap, tag ? tag : "trt:GetAudioDecoderConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioDecoderConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioDecoderConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioDecoderConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioDecoderConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioDecoderConfigurationOptions::ConfigurationToken = NULL; - this->_trt__GetAudioDecoderConfigurationOptions::ProfileToken = NULL; -} - -void _trt__GetAudioDecoderConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioDecoderConfigurationOptions::ConfigurationToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioDecoderConfigurationOptions::ProfileToken); -#endif -} - -int _trt__GetAudioDecoderConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioDecoderConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *tag, int id, const _trt__GetAudioDecoderConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioDecoderConfigurationOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetAudioDecoderConfigurationOptions::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioDecoderConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioDecoderConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioDecoderConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioDecoderConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions, sizeof(_trt__GetAudioDecoderConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioDecoderConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioDecoderConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetAudioDecoderConfigurationOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioDecoderConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions, sizeof(_trt__GetAudioDecoderConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioDecoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioDecoderConfigurationOptions *p; - size_t k = sizeof(_trt__GetAudioDecoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioDecoderConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioDecoderConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioDecoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioDecoderConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioDecoderConfigurationOptions(soap, tag ? tag : "trt:GetAudioDecoderConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioDecoderConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioDecoderConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, _trt__GetAudioDecoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioDecoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioOutputConfigurationOptionsResponse::Options = NULL; -} - -void _trt__GetAudioOutputConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioOutputConfigurationOptions(soap, &this->_trt__GetAudioOutputConfigurationOptionsResponse::Options); -#endif -} - -int _trt__GetAudioOutputConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trt:Options"); - if (!a->_trt__GetAudioOutputConfigurationOptionsResponse::Options) - { if (soap_element_empty(soap, "trt:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioOutputConfigurationOptions(soap, "trt:Options", -1, &a->_trt__GetAudioOutputConfigurationOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *tag, _trt__GetAudioOutputConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse, sizeof(_trt__GetAudioOutputConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioOutputConfigurationOptions(soap, "trt:Options", &a->_trt__GetAudioOutputConfigurationOptionsResponse::Options, "tt:AudioOutputConfigurationOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trt:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioOutputConfigurationOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioOutputConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse, SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse, sizeof(_trt__GetAudioOutputConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputConfigurationOptionsResponse *p; - size_t k = sizeof(_trt__GetAudioOutputConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputConfigurationOptionsResponse(soap, tag ? tag : "trt:GetAudioOutputConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioOutputConfigurationOptions::ConfigurationToken = NULL; - this->_trt__GetAudioOutputConfigurationOptions::ProfileToken = NULL; -} - -void _trt__GetAudioOutputConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioOutputConfigurationOptions::ConfigurationToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioOutputConfigurationOptions::ProfileToken); -#endif -} - -int _trt__GetAudioOutputConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioOutputConfigurationOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetAudioOutputConfigurationOptions::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioOutputConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions, sizeof(_trt__GetAudioOutputConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioOutputConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetAudioOutputConfigurationOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioOutputConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions, sizeof(_trt__GetAudioOutputConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputConfigurationOptions *p; - size_t k = sizeof(_trt__GetAudioOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputConfigurationOptions(soap, tag ? tag : "trt:GetAudioOutputConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationOptions(struct soap *soap, _trt__GetAudioOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetMetadataConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetMetadataConfigurationOptionsResponse::Options = NULL; -} - -void _trt__GetMetadataConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MetadataConfigurationOptions(soap, &this->_trt__GetMetadataConfigurationOptionsResponse::Options); -#endif -} - -int _trt__GetMetadataConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetMetadataConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetMetadataConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trt:Options"); - if (!a->_trt__GetMetadataConfigurationOptionsResponse::Options) - { if (soap_element_empty(soap, "trt:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MetadataConfigurationOptions(soap, "trt:Options", -1, &a->_trt__GetMetadataConfigurationOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetMetadataConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetMetadataConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, const char *tag, _trt__GetMetadataConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetMetadataConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse, sizeof(_trt__GetMetadataConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetMetadataConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataConfigurationOptions(soap, "trt:Options", &a->_trt__GetMetadataConfigurationOptionsResponse::Options, "tt:MetadataConfigurationOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trt:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetMetadataConfigurationOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetMetadataConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse, SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse, sizeof(_trt__GetMetadataConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetMetadataConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetMetadataConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetMetadataConfigurationOptionsResponse *p; - size_t k = sizeof(_trt__GetMetadataConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetMetadataConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetMetadataConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetMetadataConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetMetadataConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetMetadataConfigurationOptionsResponse(soap, tag ? tag : "trt:GetMetadataConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetMetadataConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetMetadataConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, _trt__GetMetadataConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetMetadataConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetMetadataConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetMetadataConfigurationOptions::ConfigurationToken = NULL; - this->_trt__GetMetadataConfigurationOptions::ProfileToken = NULL; -} - -void _trt__GetMetadataConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetMetadataConfigurationOptions::ConfigurationToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetMetadataConfigurationOptions::ProfileToken); -#endif -} - -int _trt__GetMetadataConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetMetadataConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationOptions(struct soap *soap, const char *tag, int id, const _trt__GetMetadataConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetMetadataConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetMetadataConfigurationOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetMetadataConfigurationOptions::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetMetadataConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetMetadataConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationOptions(struct soap *soap, const char *tag, _trt__GetMetadataConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetMetadataConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetMetadataConfigurationOptions, sizeof(_trt__GetMetadataConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetMetadataConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetMetadataConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetMetadataConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetMetadataConfigurationOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetMetadataConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetMetadataConfigurationOptions, SOAP_TYPE__trt__GetMetadataConfigurationOptions, sizeof(_trt__GetMetadataConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetMetadataConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetMetadataConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetMetadataConfigurationOptions *p; - size_t k = sizeof(_trt__GetMetadataConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetMetadataConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetMetadataConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetMetadataConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetMetadataConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetMetadataConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetMetadataConfigurationOptions(soap, tag ? tag : "trt:GetMetadataConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetMetadataConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetMetadataConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationOptions(struct soap *soap, _trt__GetMetadataConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetMetadataConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioEncoderConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioEncoderConfigurationOptionsResponse::Options = NULL; -} - -void _trt__GetAudioEncoderConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioEncoderConfigurationOptions(soap, &this->_trt__GetAudioEncoderConfigurationOptionsResponse::Options); -#endif -} - -int _trt__GetAudioEncoderConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioEncoderConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioEncoderConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trt:Options"); - if (!a->_trt__GetAudioEncoderConfigurationOptionsResponse::Options) - { if (soap_element_empty(soap, "trt:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioEncoderConfigurationOptions(soap, "trt:Options", -1, &a->_trt__GetAudioEncoderConfigurationOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioEncoderConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioEncoderConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, const char *tag, _trt__GetAudioEncoderConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioEncoderConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse, sizeof(_trt__GetAudioEncoderConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioEncoderConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioEncoderConfigurationOptions(soap, "trt:Options", &a->_trt__GetAudioEncoderConfigurationOptionsResponse::Options, "tt:AudioEncoderConfigurationOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trt:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioEncoderConfigurationOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioEncoderConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse, sizeof(_trt__GetAudioEncoderConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioEncoderConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioEncoderConfigurationOptionsResponse *p; - size_t k = sizeof(_trt__GetAudioEncoderConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioEncoderConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioEncoderConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioEncoderConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioEncoderConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioEncoderConfigurationOptionsResponse(soap, tag ? tag : "trt:GetAudioEncoderConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioEncoderConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioEncoderConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioEncoderConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioEncoderConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioEncoderConfigurationOptions::ConfigurationToken = NULL; - this->_trt__GetAudioEncoderConfigurationOptions::ProfileToken = NULL; -} - -void _trt__GetAudioEncoderConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioEncoderConfigurationOptions::ConfigurationToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioEncoderConfigurationOptions::ProfileToken); -#endif -} - -int _trt__GetAudioEncoderConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioEncoderConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, const _trt__GetAudioEncoderConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioEncoderConfigurationOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetAudioEncoderConfigurationOptions::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioEncoderConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioEncoderConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioEncoderConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioEncoderConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions, sizeof(_trt__GetAudioEncoderConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioEncoderConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioEncoderConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetAudioEncoderConfigurationOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioEncoderConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions, sizeof(_trt__GetAudioEncoderConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioEncoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioEncoderConfigurationOptions *p; - size_t k = sizeof(_trt__GetAudioEncoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioEncoderConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioEncoderConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioEncoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioEncoderConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioEncoderConfigurationOptions(soap, tag ? tag : "trt:GetAudioEncoderConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioEncoderConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioEncoderConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, _trt__GetAudioEncoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSourceConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioSourceConfigurationOptionsResponse::Options = NULL; -} - -void _trt__GetAudioSourceConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioSourceConfigurationOptions(soap, &this->_trt__GetAudioSourceConfigurationOptionsResponse::Options); -#endif -} - -int _trt__GetAudioSourceConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSourceConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trt:Options"); - if (!a->_trt__GetAudioSourceConfigurationOptionsResponse::Options) - { if (soap_element_empty(soap, "trt:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioSourceConfigurationOptions(soap, "trt:Options", -1, &a->_trt__GetAudioSourceConfigurationOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSourceConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSourceConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, _trt__GetAudioSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSourceConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse, sizeof(_trt__GetAudioSourceConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSourceConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceConfigurationOptions(soap, "trt:Options", &a->_trt__GetAudioSourceConfigurationOptionsResponse::Options, "tt:AudioSourceConfigurationOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trt:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioSourceConfigurationOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioSourceConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse, SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse, sizeof(_trt__GetAudioSourceConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSourceConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSourceConfigurationOptionsResponse *p; - size_t k = sizeof(_trt__GetAudioSourceConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSourceConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSourceConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSourceConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSourceConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSourceConfigurationOptionsResponse(soap, tag ? tag : "trt:GetAudioSourceConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSourceConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSourceConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSourceConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSourceConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioSourceConfigurationOptions::ConfigurationToken = NULL; - this->_trt__GetAudioSourceConfigurationOptions::ProfileToken = NULL; -} - -void _trt__GetAudioSourceConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioSourceConfigurationOptions::ConfigurationToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetAudioSourceConfigurationOptions::ProfileToken); -#endif -} - -int _trt__GetAudioSourceConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSourceConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const _trt__GetAudioSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioSourceConfigurationOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetAudioSourceConfigurationOptions::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSourceConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSourceConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioSourceConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSourceConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions, sizeof(_trt__GetAudioSourceConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSourceConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSourceConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioSourceConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetAudioSourceConfigurationOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioSourceConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions, sizeof(_trt__GetAudioSourceConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSourceConfigurationOptions *p; - size_t k = sizeof(_trt__GetAudioSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSourceConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSourceConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSourceConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSourceConfigurationOptions(soap, tag ? tag : "trt:GetAudioSourceConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSourceConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSourceConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationOptions(struct soap *soap, _trt__GetAudioSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoEncoderConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetVideoEncoderConfigurationOptionsResponse::Options = NULL; -} - -void _trt__GetVideoEncoderConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoEncoderConfigurationOptions(soap, &this->_trt__GetVideoEncoderConfigurationOptionsResponse::Options); -#endif -} - -int _trt__GetVideoEncoderConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoEncoderConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoEncoderConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trt:Options"); - if (!a->_trt__GetVideoEncoderConfigurationOptionsResponse::Options) - { if (soap_element_empty(soap, "trt:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoEncoderConfigurationOptions(soap, "trt:Options", -1, &a->_trt__GetVideoEncoderConfigurationOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoEncoderConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoEncoderConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, const char *tag, _trt__GetVideoEncoderConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoEncoderConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse, sizeof(_trt__GetVideoEncoderConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoEncoderConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoEncoderConfigurationOptions(soap, "trt:Options", &a->_trt__GetVideoEncoderConfigurationOptionsResponse::Options, "tt:VideoEncoderConfigurationOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trt:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetVideoEncoderConfigurationOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoEncoderConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse, sizeof(_trt__GetVideoEncoderConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoEncoderConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoEncoderConfigurationOptionsResponse *p; - size_t k = sizeof(_trt__GetVideoEncoderConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoEncoderConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoEncoderConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoEncoderConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoEncoderConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoEncoderConfigurationOptionsResponse(soap, tag ? tag : "trt:GetVideoEncoderConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoEncoderConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoEncoderConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoEncoderConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoEncoderConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetVideoEncoderConfigurationOptions::ConfigurationToken = NULL; - this->_trt__GetVideoEncoderConfigurationOptions::ProfileToken = NULL; -} - -void _trt__GetVideoEncoderConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetVideoEncoderConfigurationOptions::ConfigurationToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetVideoEncoderConfigurationOptions::ProfileToken); -#endif -} - -int _trt__GetVideoEncoderConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoEncoderConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, const _trt__GetVideoEncoderConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetVideoEncoderConfigurationOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetVideoEncoderConfigurationOptions::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoEncoderConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoEncoderConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *tag, _trt__GetVideoEncoderConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoEncoderConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions, sizeof(_trt__GetVideoEncoderConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoEncoderConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetVideoEncoderConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetVideoEncoderConfigurationOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoEncoderConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions, sizeof(_trt__GetVideoEncoderConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoEncoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoEncoderConfigurationOptions *p; - size_t k = sizeof(_trt__GetVideoEncoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoEncoderConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoEncoderConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoEncoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoEncoderConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoEncoderConfigurationOptions(soap, tag ? tag : "trt:GetVideoEncoderConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoEncoderConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoEncoderConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, _trt__GetVideoEncoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetVideoSourceConfigurationOptionsResponse::Options = NULL; -} - -void _trt__GetVideoSourceConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoSourceConfigurationOptions(soap, &this->_trt__GetVideoSourceConfigurationOptionsResponse::Options); -#endif -} - -int _trt__GetVideoSourceConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse), type)) - return soap->error; - if (a->Options) - soap_element_result(soap, "trt:Options"); - if (!a->_trt__GetVideoSourceConfigurationOptionsResponse::Options) - { if (soap_element_empty(soap, "trt:Options", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoSourceConfigurationOptions(soap, "trt:Options", -1, &a->_trt__GetVideoSourceConfigurationOptionsResponse::Options, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, _trt__GetVideoSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse, sizeof(_trt__GetVideoSourceConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Options1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Options1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfigurationOptions(soap, "trt:Options", &a->_trt__GetVideoSourceConfigurationOptionsResponse::Options, "tt:VideoSourceConfigurationOptions")) - { soap_flag_Options1--; - continue; - } - } - soap_check_result(soap, "trt:Options"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetVideoSourceConfigurationOptionsResponse::Options)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoSourceConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse, SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse, sizeof(_trt__GetVideoSourceConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceConfigurationOptionsResponse *p; - size_t k = sizeof(_trt__GetVideoSourceConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceConfigurationOptionsResponse(soap, tag ? tag : "trt:GetVideoSourceConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetVideoSourceConfigurationOptions::ConfigurationToken = NULL; - this->_trt__GetVideoSourceConfigurationOptions::ProfileToken = NULL; -} - -void _trt__GetVideoSourceConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetVideoSourceConfigurationOptions::ConfigurationToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__GetVideoSourceConfigurationOptions::ProfileToken); -#endif -} - -int _trt__GetVideoSourceConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetVideoSourceConfigurationOptions::ConfigurationToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetVideoSourceConfigurationOptions::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, _trt__GetVideoSourceConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions, sizeof(_trt__GetVideoSourceConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetVideoSourceConfigurationOptions::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetVideoSourceConfigurationOptions::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoSourceConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions, sizeof(_trt__GetVideoSourceConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceConfigurationOptions *p; - size_t k = sizeof(_trt__GetVideoSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceConfigurationOptions(soap, tag ? tag : "trt:GetVideoSourceConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationOptions(struct soap *soap, _trt__GetVideoSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioDecoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetAudioDecoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetAudioDecoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioDecoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioDecoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioDecoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, _trt__SetAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioDecoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse, sizeof(_trt__SetAudioDecoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioDecoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetAudioDecoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse, SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse, sizeof(_trt__SetAudioDecoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioDecoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioDecoderConfigurationResponse *p; - size_t k = sizeof(_trt__SetAudioDecoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioDecoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioDecoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioDecoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioDecoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioDecoderConfigurationResponse(soap, tag ? tag : "trt:SetAudioDecoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioDecoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioDecoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, _trt__SetAudioDecoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioDecoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioDecoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetAudioDecoderConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetAudioDecoderConfiguration::ForcePersistence); -} - -void _trt__SetAudioDecoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioDecoderConfiguration(soap, &this->_trt__SetAudioDecoderConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetAudioDecoderConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetAudioDecoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioDecoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioDecoderConfiguration), type)) - return soap->error; - if (!a->_trt__SetAudioDecoderConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioDecoderConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetAudioDecoderConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetAudioDecoderConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioDecoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioDecoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioDecoderConfiguration(struct soap *soap, const char *tag, _trt__SetAudioDecoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioDecoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioDecoderConfiguration, sizeof(_trt__SetAudioDecoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioDecoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioDecoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioDecoderConfiguration(soap, "trt:Configuration", &a->_trt__SetAudioDecoderConfiguration::Configuration, "tt:AudioDecoderConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetAudioDecoderConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetAudioDecoderConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetAudioDecoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioDecoderConfiguration, SOAP_TYPE__trt__SetAudioDecoderConfiguration, sizeof(_trt__SetAudioDecoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioDecoderConfiguration *p; - size_t k = sizeof(_trt__SetAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioDecoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioDecoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioDecoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioDecoderConfiguration(soap, tag ? tag : "trt:SetAudioDecoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioDecoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioDecoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioDecoderConfiguration(struct soap *soap, _trt__SetAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetAudioOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetAudioOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioOutputConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, _trt__SetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioOutputConfigurationResponse, sizeof(_trt__SetAudioOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetAudioOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioOutputConfigurationResponse, SOAP_TYPE__trt__SetAudioOutputConfigurationResponse, sizeof(_trt__SetAudioOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioOutputConfigurationResponse *p; - size_t k = sizeof(_trt__SetAudioOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioOutputConfigurationResponse(soap, tag ? tag : "trt:SetAudioOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioOutputConfigurationResponse(struct soap *soap, _trt__SetAudioOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetAudioOutputConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetAudioOutputConfiguration::ForcePersistence); -} - -void _trt__SetAudioOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioOutputConfiguration(soap, &this->_trt__SetAudioOutputConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetAudioOutputConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetAudioOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioOutputConfiguration), type)) - return soap->error; - if (!a->_trt__SetAudioOutputConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioOutputConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetAudioOutputConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetAudioOutputConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioOutputConfiguration(struct soap *soap, const char *tag, _trt__SetAudioOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioOutputConfiguration, sizeof(_trt__SetAudioOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioOutputConfiguration(soap, "trt:Configuration", &a->_trt__SetAudioOutputConfiguration::Configuration, "tt:AudioOutputConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetAudioOutputConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetAudioOutputConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetAudioOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioOutputConfiguration, SOAP_TYPE__trt__SetAudioOutputConfiguration, sizeof(_trt__SetAudioOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioOutputConfiguration *p; - size_t k = sizeof(_trt__SetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioOutputConfiguration(soap, tag ? tag : "trt:SetAudioOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioOutputConfiguration(struct soap *soap, _trt__SetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetMetadataConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetMetadataConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetMetadataConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetMetadataConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetMetadataConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetMetadataConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetMetadataConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetMetadataConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetMetadataConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetMetadataConfigurationResponse(struct soap *soap, const char *tag, _trt__SetMetadataConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetMetadataConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetMetadataConfigurationResponse, sizeof(_trt__SetMetadataConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetMetadataConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetMetadataConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetMetadataConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetMetadataConfigurationResponse, SOAP_TYPE__trt__SetMetadataConfigurationResponse, sizeof(_trt__SetMetadataConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetMetadataConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetMetadataConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetMetadataConfigurationResponse *p; - size_t k = sizeof(_trt__SetMetadataConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetMetadataConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetMetadataConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetMetadataConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetMetadataConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetMetadataConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetMetadataConfigurationResponse(soap, tag ? tag : "trt:SetMetadataConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetMetadataConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetMetadataConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetMetadataConfigurationResponse(struct soap *soap, _trt__SetMetadataConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetMetadataConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetMetadataConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetMetadataConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetMetadataConfiguration::ForcePersistence); -} - -void _trt__SetMetadataConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MetadataConfiguration(soap, &this->_trt__SetMetadataConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetMetadataConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetMetadataConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetMetadataConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetMetadataConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetMetadataConfiguration), type)) - return soap->error; - if (!a->_trt__SetMetadataConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MetadataConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetMetadataConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetMetadataConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetMetadataConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetMetadataConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetMetadataConfiguration * SOAP_FMAC4 soap_in__trt__SetMetadataConfiguration(struct soap *soap, const char *tag, _trt__SetMetadataConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetMetadataConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetMetadataConfiguration, sizeof(_trt__SetMetadataConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetMetadataConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetMetadataConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataConfiguration(soap, "trt:Configuration", &a->_trt__SetMetadataConfiguration::Configuration, "tt:MetadataConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetMetadataConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetMetadataConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetMetadataConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetMetadataConfiguration, SOAP_TYPE__trt__SetMetadataConfiguration, sizeof(_trt__SetMetadataConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetMetadataConfiguration *p; - size_t k = sizeof(_trt__SetMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetMetadataConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetMetadataConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetMetadataConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetMetadataConfiguration(soap, tag ? tag : "trt:SetMetadataConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetMetadataConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetMetadataConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetMetadataConfiguration * SOAP_FMAC4 soap_get__trt__SetMetadataConfiguration(struct soap *soap, _trt__SetMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoAnalyticsConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetVideoAnalyticsConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetVideoAnalyticsConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoAnalyticsConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoAnalyticsConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoAnalyticsConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, _trt__SetVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoAnalyticsConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse, sizeof(_trt__SetVideoAnalyticsConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoAnalyticsConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetVideoAnalyticsConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse, SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse, sizeof(_trt__SetVideoAnalyticsConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoAnalyticsConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoAnalyticsConfigurationResponse *p; - size_t k = sizeof(_trt__SetVideoAnalyticsConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoAnalyticsConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoAnalyticsConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoAnalyticsConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoAnalyticsConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoAnalyticsConfigurationResponse(soap, tag ? tag : "trt:SetVideoAnalyticsConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoAnalyticsConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoAnalyticsConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__SetVideoAnalyticsConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoAnalyticsConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoAnalyticsConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetVideoAnalyticsConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetVideoAnalyticsConfiguration::ForcePersistence); -} - -void _trt__SetVideoAnalyticsConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoAnalyticsConfiguration(soap, &this->_trt__SetVideoAnalyticsConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetVideoAnalyticsConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetVideoAnalyticsConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoAnalyticsConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration), type)) - return soap->error; - if (!a->_trt__SetVideoAnalyticsConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoAnalyticsConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetVideoAnalyticsConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetVideoAnalyticsConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoAnalyticsConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoAnalyticsConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, _trt__SetVideoAnalyticsConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoAnalyticsConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration, sizeof(_trt__SetVideoAnalyticsConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoAnalyticsConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoAnalyticsConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoAnalyticsConfiguration(soap, "trt:Configuration", &a->_trt__SetVideoAnalyticsConfiguration::Configuration, "tt:VideoAnalyticsConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetVideoAnalyticsConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetVideoAnalyticsConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetVideoAnalyticsConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration, sizeof(_trt__SetVideoAnalyticsConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoAnalyticsConfiguration *p; - size_t k = sizeof(_trt__SetVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoAnalyticsConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoAnalyticsConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoAnalyticsConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoAnalyticsConfiguration(soap, tag ? tag : "trt:SetVideoAnalyticsConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoAnalyticsConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoAnalyticsConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__SetVideoAnalyticsConfiguration(struct soap *soap, _trt__SetVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetAudioSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetAudioSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioSourceConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__SetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioSourceConfigurationResponse, sizeof(_trt__SetAudioSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetAudioSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioSourceConfigurationResponse, SOAP_TYPE__trt__SetAudioSourceConfigurationResponse, sizeof(_trt__SetAudioSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioSourceConfigurationResponse *p; - size_t k = sizeof(_trt__SetAudioSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioSourceConfigurationResponse(soap, tag ? tag : "trt:SetAudioSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioSourceConfigurationResponse(struct soap *soap, _trt__SetAudioSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetAudioSourceConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetAudioSourceConfiguration::ForcePersistence); -} - -void _trt__SetAudioSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioSourceConfiguration(soap, &this->_trt__SetAudioSourceConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetAudioSourceConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetAudioSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioSourceConfiguration), type)) - return soap->error; - if (!a->_trt__SetAudioSourceConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioSourceConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetAudioSourceConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetAudioSourceConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioSourceConfiguration(struct soap *soap, const char *tag, _trt__SetAudioSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioSourceConfiguration, sizeof(_trt__SetAudioSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceConfiguration(soap, "trt:Configuration", &a->_trt__SetAudioSourceConfiguration::Configuration, "tt:AudioSourceConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetAudioSourceConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetAudioSourceConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetAudioSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioSourceConfiguration, SOAP_TYPE__trt__SetAudioSourceConfiguration, sizeof(_trt__SetAudioSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioSourceConfiguration *p; - size_t k = sizeof(_trt__SetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioSourceConfiguration(soap, tag ? tag : "trt:SetAudioSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioSourceConfiguration(struct soap *soap, _trt__SetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetAudioEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetAudioEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__SetAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse, sizeof(_trt__SetAudioEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetAudioEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse, SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse, sizeof(_trt__SetAudioEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__SetAudioEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioEncoderConfigurationResponse(soap, tag ? tag : "trt:SetAudioEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, _trt__SetAudioEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetAudioEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetAudioEncoderConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetAudioEncoderConfiguration::ForcePersistence); -} - -void _trt__SetAudioEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioEncoderConfiguration(soap, &this->_trt__SetAudioEncoderConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetAudioEncoderConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetAudioEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetAudioEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetAudioEncoderConfiguration), type)) - return soap->error; - if (!a->_trt__SetAudioEncoderConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioEncoderConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetAudioEncoderConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetAudioEncoderConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetAudioEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetAudioEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioEncoderConfiguration(struct soap *soap, const char *tag, _trt__SetAudioEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetAudioEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetAudioEncoderConfiguration, sizeof(_trt__SetAudioEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetAudioEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetAudioEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioEncoderConfiguration(soap, "trt:Configuration", &a->_trt__SetAudioEncoderConfiguration::Configuration, "tt:AudioEncoderConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetAudioEncoderConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetAudioEncoderConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetAudioEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetAudioEncoderConfiguration, SOAP_TYPE__trt__SetAudioEncoderConfiguration, sizeof(_trt__SetAudioEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetAudioEncoderConfiguration *p; - size_t k = sizeof(_trt__SetAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetAudioEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetAudioEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetAudioEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetAudioEncoderConfiguration(soap, tag ? tag : "trt:SetAudioEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetAudioEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetAudioEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioEncoderConfiguration(struct soap *soap, _trt__SetAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetVideoSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetVideoSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoSourceConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__SetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoSourceConfigurationResponse, sizeof(_trt__SetVideoSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetVideoSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoSourceConfigurationResponse, SOAP_TYPE__trt__SetVideoSourceConfigurationResponse, sizeof(_trt__SetVideoSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoSourceConfigurationResponse *p; - size_t k = sizeof(_trt__SetVideoSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoSourceConfigurationResponse(soap, tag ? tag : "trt:SetVideoSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetVideoSourceConfigurationResponse(struct soap *soap, _trt__SetVideoSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetVideoSourceConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetVideoSourceConfiguration::ForcePersistence); -} - -void _trt__SetVideoSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoSourceConfiguration(soap, &this->_trt__SetVideoSourceConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetVideoSourceConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetVideoSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoSourceConfiguration), type)) - return soap->error; - if (!a->_trt__SetVideoSourceConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoSourceConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetVideoSourceConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetVideoSourceConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__SetVideoSourceConfiguration(struct soap *soap, const char *tag, _trt__SetVideoSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoSourceConfiguration, sizeof(_trt__SetVideoSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfiguration(soap, "trt:Configuration", &a->_trt__SetVideoSourceConfiguration::Configuration, "tt:VideoSourceConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetVideoSourceConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetVideoSourceConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetVideoSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoSourceConfiguration, SOAP_TYPE__trt__SetVideoSourceConfiguration, sizeof(_trt__SetVideoSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoSourceConfiguration *p; - size_t k = sizeof(_trt__SetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoSourceConfiguration(soap, tag ? tag : "trt:SetVideoSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__SetVideoSourceConfiguration(struct soap *soap, _trt__SetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__SetVideoEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__SetVideoEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__SetVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__SetVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse, sizeof(_trt__SetVideoEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__SetVideoEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse, SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse, sizeof(_trt__SetVideoEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__SetVideoEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoEncoderConfigurationResponse(soap, tag ? tag : "trt:SetVideoEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, _trt__SetVideoEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__SetVideoEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__SetVideoEncoderConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_trt__SetVideoEncoderConfiguration::ForcePersistence); -} - -void _trt__SetVideoEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoEncoderConfiguration(soap, &this->_trt__SetVideoEncoderConfiguration::Configuration); - soap_embedded(soap, &this->_trt__SetVideoEncoderConfiguration::ForcePersistence, SOAP_TYPE_bool); -#endif -} - -int _trt__SetVideoEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__SetVideoEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__SetVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__SetVideoEncoderConfiguration), type)) - return soap->error; - if (!a->_trt__SetVideoEncoderConfiguration::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoEncoderConfiguration(soap, "trt:Configuration", -1, &a->_trt__SetVideoEncoderConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "trt:ForcePersistence", -1, &a->_trt__SetVideoEncoderConfiguration::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__SetVideoEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__SetVideoEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__SetVideoEncoderConfiguration(struct soap *soap, const char *tag, _trt__SetVideoEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__SetVideoEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__SetVideoEncoderConfiguration, sizeof(_trt__SetVideoEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__SetVideoEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__SetVideoEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoEncoderConfiguration(soap, "trt:Configuration", &a->_trt__SetVideoEncoderConfiguration::Configuration, "tt:VideoEncoderConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:ForcePersistence", &a->_trt__SetVideoEncoderConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__SetVideoEncoderConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__SetVideoEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__SetVideoEncoderConfiguration, SOAP_TYPE__trt__SetVideoEncoderConfiguration, sizeof(_trt__SetVideoEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__SetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__SetVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__SetVideoEncoderConfiguration *p; - size_t k = sizeof(_trt__SetVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__SetVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__SetVideoEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__SetVideoEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__SetVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__SetVideoEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__SetVideoEncoderConfiguration(soap, tag ? tag : "trt:SetVideoEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__SetVideoEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__SetVideoEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__SetVideoEncoderConfiguration(struct soap *soap, _trt__SetVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__SetVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioDecoderConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, &this->_trt__GetCompatibleAudioDecoderConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleAudioDecoderConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, &this->_trt__GetCompatibleAudioDecoderConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleAudioDecoderConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioDecoderConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleAudioDecoderConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioDecoderConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleAudioDecoderConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioDecoderConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse, sizeof(_trt__GetCompatibleAudioDecoderConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioDecoderConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleAudioDecoderConfigurationsResponse::Configurations, "tt:AudioDecoderConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleAudioDecoderConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse, sizeof(_trt__GetCompatibleAudioDecoderConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioDecoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioDecoderConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioDecoderConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleAudioDecoderConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioDecoderConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioDecoderConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioDecoderConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioDecoderConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleAudioDecoderConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioDecoderConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioDecoderConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioDecoderConfigurations::ProfileToken); -} - -void _trt__GetCompatibleAudioDecoderConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleAudioDecoderConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioDecoderConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleAudioDecoderConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioDecoderConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioDecoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleAudioDecoderConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioDecoderConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioDecoderConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleAudioDecoderConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioDecoderConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations, sizeof(_trt__GetCompatibleAudioDecoderConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioDecoderConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleAudioDecoderConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleAudioDecoderConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations, sizeof(_trt__GetCompatibleAudioDecoderConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioDecoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioDecoderConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleAudioDecoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioDecoderConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioDecoderConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioDecoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioDecoderConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioDecoderConfigurations(soap, tag ? tag : "trt:GetCompatibleAudioDecoderConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioDecoderConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioDecoderConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioDecoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioOutputConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, &this->_trt__GetCompatibleAudioOutputConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleAudioOutputConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, &this->_trt__GetCompatibleAudioOutputConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleAudioOutputConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioOutputConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleAudioOutputConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioOutputConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleAudioOutputConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioOutputConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse, sizeof(_trt__GetCompatibleAudioOutputConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioOutputConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleAudioOutputConfigurationsResponse::Configurations, "tt:AudioOutputConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleAudioOutputConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse, sizeof(_trt__GetCompatibleAudioOutputConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioOutputConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioOutputConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioOutputConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleAudioOutputConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioOutputConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioOutputConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioOutputConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioOutputConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleAudioOutputConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioOutputConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioOutputConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioOutputConfigurations::ProfileToken); -} - -void _trt__GetCompatibleAudioOutputConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleAudioOutputConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioOutputConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleAudioOutputConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioOutputConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioOutputConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleAudioOutputConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioOutputConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioOutputConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleAudioOutputConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioOutputConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations, sizeof(_trt__GetCompatibleAudioOutputConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioOutputConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleAudioOutputConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleAudioOutputConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations, sizeof(_trt__GetCompatibleAudioOutputConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioOutputConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioOutputConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleAudioOutputConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioOutputConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioOutputConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioOutputConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioOutputConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioOutputConfigurations(soap, tag ? tag : "trt:GetCompatibleAudioOutputConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioOutputConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioOutputConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioOutputConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleMetadataConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, &this->_trt__GetCompatibleMetadataConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleMetadataConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, &this->_trt__GetCompatibleMetadataConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleMetadataConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleMetadataConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleMetadataConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleMetadataConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleMetadataConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleMetadataConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleMetadataConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleMetadataConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse, sizeof(_trt__GetCompatibleMetadataConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleMetadataConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleMetadataConfigurationsResponse::Configurations, "tt:MetadataConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleMetadataConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse, sizeof(_trt__GetCompatibleMetadataConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleMetadataConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleMetadataConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleMetadataConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleMetadataConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleMetadataConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleMetadataConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleMetadataConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleMetadataConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleMetadataConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleMetadataConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleMetadataConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleMetadataConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, _trt__GetCompatibleMetadataConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleMetadataConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleMetadataConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleMetadataConfigurations::ProfileToken); -} - -void _trt__GetCompatibleMetadataConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleMetadataConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleMetadataConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleMetadataConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleMetadataConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleMetadataConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleMetadataConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleMetadataConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleMetadataConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleMetadataConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleMetadataConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleMetadataConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleMetadataConfigurations, sizeof(_trt__GetCompatibleMetadataConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleMetadataConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleMetadataConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleMetadataConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleMetadataConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleMetadataConfigurations, SOAP_TYPE__trt__GetCompatibleMetadataConfigurations, sizeof(_trt__GetCompatibleMetadataConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleMetadataConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleMetadataConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleMetadataConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleMetadataConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleMetadataConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleMetadataConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleMetadataConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleMetadataConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleMetadataConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleMetadataConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleMetadataConfigurations(soap, tag ? tag : "trt:GetCompatibleMetadataConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleMetadataConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleMetadataConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleMetadataConfigurations(struct soap *soap, _trt__GetCompatibleMetadataConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleMetadataConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleVideoAnalyticsConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, &this->_trt__GetCompatibleVideoAnalyticsConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleVideoAnalyticsConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, &this->_trt__GetCompatibleVideoAnalyticsConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleVideoAnalyticsConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleVideoAnalyticsConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleVideoAnalyticsConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleVideoAnalyticsConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse, sizeof(_trt__GetCompatibleVideoAnalyticsConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleVideoAnalyticsConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleVideoAnalyticsConfigurationsResponse::Configurations, "tt:VideoAnalyticsConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleVideoAnalyticsConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse, sizeof(_trt__GetCompatibleVideoAnalyticsConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleVideoAnalyticsConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleVideoAnalyticsConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleVideoAnalyticsConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleVideoAnalyticsConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleVideoAnalyticsConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleVideoAnalyticsConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleVideoAnalyticsConfigurations::ProfileToken); -} - -void _trt__GetCompatibleVideoAnalyticsConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleVideoAnalyticsConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleVideoAnalyticsConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleVideoAnalyticsConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleVideoAnalyticsConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleVideoAnalyticsConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleVideoAnalyticsConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleVideoAnalyticsConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleVideoAnalyticsConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations, sizeof(_trt__GetCompatibleVideoAnalyticsConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleVideoAnalyticsConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleVideoAnalyticsConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleVideoAnalyticsConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations, sizeof(_trt__GetCompatibleVideoAnalyticsConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleVideoAnalyticsConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleVideoAnalyticsConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleVideoAnalyticsConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleVideoAnalyticsConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleVideoAnalyticsConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleVideoAnalyticsConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag ? tag : "trt:GetCompatibleVideoAnalyticsConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleVideoAnalyticsConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleVideoAnalyticsConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioSourceConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, &this->_trt__GetCompatibleAudioSourceConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleAudioSourceConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, &this->_trt__GetCompatibleAudioSourceConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleAudioSourceConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioSourceConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleAudioSourceConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioSourceConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleAudioSourceConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioSourceConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse, sizeof(_trt__GetCompatibleAudioSourceConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioSourceConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleAudioSourceConfigurationsResponse::Configurations, "tt:AudioSourceConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleAudioSourceConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse, sizeof(_trt__GetCompatibleAudioSourceConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioSourceConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioSourceConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleAudioSourceConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioSourceConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioSourceConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioSourceConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioSourceConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleAudioSourceConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioSourceConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioSourceConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioSourceConfigurations::ProfileToken); -} - -void _trt__GetCompatibleAudioSourceConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleAudioSourceConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioSourceConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleAudioSourceConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioSourceConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleAudioSourceConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioSourceConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioSourceConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleAudioSourceConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioSourceConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations, sizeof(_trt__GetCompatibleAudioSourceConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioSourceConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleAudioSourceConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleAudioSourceConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations, sizeof(_trt__GetCompatibleAudioSourceConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioSourceConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleAudioSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioSourceConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioSourceConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioSourceConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioSourceConfigurations(soap, tag ? tag : "trt:GetCompatibleAudioSourceConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioSourceConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioSourceConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioEncoderConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, &this->_trt__GetCompatibleAudioEncoderConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleAudioEncoderConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, &this->_trt__GetCompatibleAudioEncoderConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleAudioEncoderConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioEncoderConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleAudioEncoderConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioEncoderConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleAudioEncoderConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioEncoderConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse, sizeof(_trt__GetCompatibleAudioEncoderConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioEncoderConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleAudioEncoderConfigurationsResponse::Configurations, "tt:AudioEncoderConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleAudioEncoderConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse, sizeof(_trt__GetCompatibleAudioEncoderConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioEncoderConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioEncoderConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleAudioEncoderConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioEncoderConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioEncoderConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioEncoderConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioEncoderConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleAudioEncoderConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioEncoderConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleAudioEncoderConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioEncoderConfigurations::ProfileToken); -} - -void _trt__GetCompatibleAudioEncoderConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleAudioEncoderConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleAudioEncoderConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleAudioEncoderConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleAudioEncoderConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleAudioEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleAudioEncoderConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleAudioEncoderConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleAudioEncoderConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleAudioEncoderConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleAudioEncoderConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations, sizeof(_trt__GetCompatibleAudioEncoderConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleAudioEncoderConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleAudioEncoderConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleAudioEncoderConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations, sizeof(_trt__GetCompatibleAudioEncoderConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleAudioEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleAudioEncoderConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleAudioEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleAudioEncoderConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleAudioEncoderConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleAudioEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleAudioEncoderConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleAudioEncoderConfigurations(soap, tag ? tag : "trt:GetCompatibleAudioEncoderConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleAudioEncoderConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleAudioEncoderConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleAudioEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleVideoSourceConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, &this->_trt__GetCompatibleVideoSourceConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleVideoSourceConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, &this->_trt__GetCompatibleVideoSourceConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleVideoSourceConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleVideoSourceConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleVideoSourceConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleVideoSourceConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleVideoSourceConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleVideoSourceConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse, sizeof(_trt__GetCompatibleVideoSourceConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleVideoSourceConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleVideoSourceConfigurationsResponse::Configurations, "tt:VideoSourceConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleVideoSourceConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse, sizeof(_trt__GetCompatibleVideoSourceConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleVideoSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleVideoSourceConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleVideoSourceConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleVideoSourceConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleVideoSourceConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleVideoSourceConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleVideoSourceConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleVideoSourceConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleVideoSourceConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleVideoSourceConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleVideoSourceConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleVideoSourceConfigurations::ProfileToken); -} - -void _trt__GetCompatibleVideoSourceConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleVideoSourceConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleVideoSourceConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleVideoSourceConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleVideoSourceConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleVideoSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleVideoSourceConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleVideoSourceConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleVideoSourceConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleVideoSourceConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleVideoSourceConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations, sizeof(_trt__GetCompatibleVideoSourceConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleVideoSourceConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleVideoSourceConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleVideoSourceConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations, sizeof(_trt__GetCompatibleVideoSourceConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleVideoSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleVideoSourceConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleVideoSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleVideoSourceConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleVideoSourceConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleVideoSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleVideoSourceConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleVideoSourceConfigurations(soap, tag ? tag : "trt:GetCompatibleVideoSourceConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleVideoSourceConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleVideoSourceConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleVideoSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleVideoEncoderConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, &this->_trt__GetCompatibleVideoEncoderConfigurationsResponse::Configurations); -} - -void _trt__GetCompatibleVideoEncoderConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, &this->_trt__GetCompatibleVideoEncoderConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetCompatibleVideoEncoderConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleVideoEncoderConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetCompatibleVideoEncoderConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleVideoEncoderConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetCompatibleVideoEncoderConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleVideoEncoderConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse, sizeof(_trt__GetCompatibleVideoEncoderConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleVideoEncoderConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, "trt:Configurations", &a->_trt__GetCompatibleVideoEncoderConfigurationsResponse::Configurations, "tt:VideoEncoderConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetCompatibleVideoEncoderConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse, sizeof(_trt__GetCompatibleVideoEncoderConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleVideoEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleVideoEncoderConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleVideoEncoderConfigurationsResponse *p; - size_t k = sizeof(_trt__GetCompatibleVideoEncoderConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleVideoEncoderConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleVideoEncoderConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleVideoEncoderConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleVideoEncoderConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, tag ? tag : "trt:GetCompatibleVideoEncoderConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleVideoEncoderConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetCompatibleVideoEncoderConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetCompatibleVideoEncoderConfigurations::ProfileToken); -} - -void _trt__GetCompatibleVideoEncoderConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetCompatibleVideoEncoderConfigurations::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetCompatibleVideoEncoderConfigurations::ProfileToken); -#endif -} - -int _trt__GetCompatibleVideoEncoderConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetCompatibleVideoEncoderConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetCompatibleVideoEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetCompatibleVideoEncoderConfigurations::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetCompatibleVideoEncoderConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetCompatibleVideoEncoderConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *tag, _trt__GetCompatibleVideoEncoderConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetCompatibleVideoEncoderConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations, sizeof(_trt__GetCompatibleVideoEncoderConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetCompatibleVideoEncoderConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetCompatibleVideoEncoderConfigurations::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetCompatibleVideoEncoderConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations, sizeof(_trt__GetCompatibleVideoEncoderConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetCompatibleVideoEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetCompatibleVideoEncoderConfigurations *p; - size_t k = sizeof(_trt__GetCompatibleVideoEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetCompatibleVideoEncoderConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetCompatibleVideoEncoderConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetCompatibleVideoEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetCompatibleVideoEncoderConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetCompatibleVideoEncoderConfigurations(soap, tag ? tag : "trt:GetCompatibleVideoEncoderConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetCompatibleVideoEncoderConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetCompatibleVideoEncoderConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetCompatibleVideoEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioDecoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioDecoderConfigurationResponse::Configuration = NULL; -} - -void _trt__GetAudioDecoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioDecoderConfiguration(soap, &this->_trt__GetAudioDecoderConfigurationResponse::Configuration); -#endif -} - -int _trt__GetAudioDecoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioDecoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetAudioDecoderConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioDecoderConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetAudioDecoderConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioDecoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioDecoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, _trt__GetAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioDecoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse, sizeof(_trt__GetAudioDecoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioDecoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioDecoderConfiguration(soap, "trt:Configuration", &a->_trt__GetAudioDecoderConfigurationResponse::Configuration, "tt:AudioDecoderConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioDecoderConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioDecoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse, SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse, sizeof(_trt__GetAudioDecoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioDecoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioDecoderConfigurationResponse *p; - size_t k = sizeof(_trt__GetAudioDecoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioDecoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioDecoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioDecoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioDecoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioDecoderConfigurationResponse(soap, tag ? tag : "trt:GetAudioDecoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioDecoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioDecoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioDecoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioDecoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetAudioDecoderConfiguration::ConfigurationToken); -} - -void _trt__GetAudioDecoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetAudioDecoderConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetAudioDecoderConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetAudioDecoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioDecoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioDecoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioDecoderConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioDecoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioDecoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfiguration(struct soap *soap, const char *tag, _trt__GetAudioDecoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioDecoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioDecoderConfiguration, sizeof(_trt__GetAudioDecoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioDecoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioDecoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioDecoderConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioDecoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioDecoderConfiguration, SOAP_TYPE__trt__GetAudioDecoderConfiguration, sizeof(_trt__GetAudioDecoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioDecoderConfiguration *p; - size_t k = sizeof(_trt__GetAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioDecoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioDecoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioDecoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioDecoderConfiguration(soap, tag ? tag : "trt:GetAudioDecoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioDecoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioDecoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfiguration(struct soap *soap, _trt__GetAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioOutputConfigurationResponse::Configuration = NULL; -} - -void _trt__GetAudioOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioOutputConfiguration(soap, &this->_trt__GetAudioOutputConfigurationResponse::Configuration); -#endif -} - -int _trt__GetAudioOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetAudioOutputConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioOutputConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetAudioOutputConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, _trt__GetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationResponse, sizeof(_trt__GetAudioOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioOutputConfiguration(soap, "trt:Configuration", &a->_trt__GetAudioOutputConfigurationResponse::Configuration, "tt:AudioOutputConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioOutputConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputConfigurationResponse, SOAP_TYPE__trt__GetAudioOutputConfigurationResponse, sizeof(_trt__GetAudioOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputConfigurationResponse *p; - size_t k = sizeof(_trt__GetAudioOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputConfigurationResponse(soap, tag ? tag : "trt:GetAudioOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationResponse(struct soap *soap, _trt__GetAudioOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetAudioOutputConfiguration::ConfigurationToken); -} - -void _trt__GetAudioOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetAudioOutputConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetAudioOutputConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetAudioOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioOutputConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfiguration(struct soap *soap, const char *tag, _trt__GetAudioOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputConfiguration, sizeof(_trt__GetAudioOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioOutputConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputConfiguration, SOAP_TYPE__trt__GetAudioOutputConfiguration, sizeof(_trt__GetAudioOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputConfiguration *p; - size_t k = sizeof(_trt__GetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputConfiguration(soap, tag ? tag : "trt:GetAudioOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfiguration(struct soap *soap, _trt__GetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetMetadataConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetMetadataConfigurationResponse::Configuration = NULL; -} - -void _trt__GetMetadataConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MetadataConfiguration(soap, &this->_trt__GetMetadataConfigurationResponse::Configuration); -#endif -} - -int _trt__GetMetadataConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetMetadataConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetMetadataConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetMetadataConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetMetadataConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MetadataConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetMetadataConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetMetadataConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetMetadataConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationResponse(struct soap *soap, const char *tag, _trt__GetMetadataConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetMetadataConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetMetadataConfigurationResponse, sizeof(_trt__GetMetadataConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetMetadataConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetMetadataConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataConfiguration(soap, "trt:Configuration", &a->_trt__GetMetadataConfigurationResponse::Configuration, "tt:MetadataConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetMetadataConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetMetadataConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetMetadataConfigurationResponse, SOAP_TYPE__trt__GetMetadataConfigurationResponse, sizeof(_trt__GetMetadataConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetMetadataConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetMetadataConfigurationResponse *p; - size_t k = sizeof(_trt__GetMetadataConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetMetadataConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetMetadataConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetMetadataConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetMetadataConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetMetadataConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetMetadataConfigurationResponse(soap, tag ? tag : "trt:GetMetadataConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetMetadataConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetMetadataConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationResponse(struct soap *soap, _trt__GetMetadataConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetMetadataConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetMetadataConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetMetadataConfiguration::ConfigurationToken); -} - -void _trt__GetMetadataConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetMetadataConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetMetadataConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetMetadataConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetMetadataConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetMetadataConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetMetadataConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetMetadataConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetMetadataConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfiguration * SOAP_FMAC4 soap_in__trt__GetMetadataConfiguration(struct soap *soap, const char *tag, _trt__GetMetadataConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetMetadataConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetMetadataConfiguration, sizeof(_trt__GetMetadataConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetMetadataConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetMetadataConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetMetadataConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetMetadataConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetMetadataConfiguration, SOAP_TYPE__trt__GetMetadataConfiguration, sizeof(_trt__GetMetadataConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetMetadataConfiguration *p; - size_t k = sizeof(_trt__GetMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetMetadataConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetMetadataConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetMetadataConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetMetadataConfiguration(soap, tag ? tag : "trt:GetMetadataConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetMetadataConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetMetadataConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfiguration * SOAP_FMAC4 soap_get__trt__GetMetadataConfiguration(struct soap *soap, _trt__GetMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoAnalyticsConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetVideoAnalyticsConfigurationResponse::Configuration = NULL; -} - -void _trt__GetVideoAnalyticsConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoAnalyticsConfiguration(soap, &this->_trt__GetVideoAnalyticsConfigurationResponse::Configuration); -#endif -} - -int _trt__GetVideoAnalyticsConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoAnalyticsConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetVideoAnalyticsConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoAnalyticsConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetVideoAnalyticsConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoAnalyticsConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoAnalyticsConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, _trt__GetVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoAnalyticsConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse, sizeof(_trt__GetVideoAnalyticsConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoAnalyticsConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoAnalyticsConfiguration(soap, "trt:Configuration", &a->_trt__GetVideoAnalyticsConfigurationResponse::Configuration, "tt:VideoAnalyticsConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetVideoAnalyticsConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoAnalyticsConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse, sizeof(_trt__GetVideoAnalyticsConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoAnalyticsConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoAnalyticsConfigurationResponse *p; - size_t k = sizeof(_trt__GetVideoAnalyticsConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoAnalyticsConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoAnalyticsConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoAnalyticsConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoAnalyticsConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoAnalyticsConfigurationResponse(soap, tag ? tag : "trt:GetVideoAnalyticsConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoAnalyticsConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoAnalyticsConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoAnalyticsConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoAnalyticsConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetVideoAnalyticsConfiguration::ConfigurationToken); -} - -void _trt__GetVideoAnalyticsConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetVideoAnalyticsConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetVideoAnalyticsConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetVideoAnalyticsConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoAnalyticsConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetVideoAnalyticsConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoAnalyticsConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoAnalyticsConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, _trt__GetVideoAnalyticsConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoAnalyticsConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfiguration, sizeof(_trt__GetVideoAnalyticsConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoAnalyticsConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoAnalyticsConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetVideoAnalyticsConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoAnalyticsConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoAnalyticsConfiguration, SOAP_TYPE__trt__GetVideoAnalyticsConfiguration, sizeof(_trt__GetVideoAnalyticsConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoAnalyticsConfiguration *p; - size_t k = sizeof(_trt__GetVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoAnalyticsConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoAnalyticsConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoAnalyticsConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoAnalyticsConfiguration(soap, tag ? tag : "trt:GetVideoAnalyticsConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoAnalyticsConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoAnalyticsConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfiguration(struct soap *soap, _trt__GetVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioEncoderConfigurationResponse::Configuration = NULL; -} - -void _trt__GetAudioEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioEncoderConfiguration(soap, &this->_trt__GetAudioEncoderConfigurationResponse::Configuration); -#endif -} - -int _trt__GetAudioEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetAudioEncoderConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioEncoderConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetAudioEncoderConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__GetAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse, sizeof(_trt__GetAudioEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioEncoderConfiguration(soap, "trt:Configuration", &a->_trt__GetAudioEncoderConfigurationResponse::Configuration, "tt:AudioEncoderConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioEncoderConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse, SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse, sizeof(_trt__GetAudioEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__GetAudioEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioEncoderConfigurationResponse(soap, tag ? tag : "trt:GetAudioEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetAudioEncoderConfiguration::ConfigurationToken); -} - -void _trt__GetAudioEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetAudioEncoderConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetAudioEncoderConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetAudioEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioEncoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioEncoderConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfiguration(struct soap *soap, const char *tag, _trt__GetAudioEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioEncoderConfiguration, sizeof(_trt__GetAudioEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioEncoderConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioEncoderConfiguration, SOAP_TYPE__trt__GetAudioEncoderConfiguration, sizeof(_trt__GetAudioEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioEncoderConfiguration *p; - size_t k = sizeof(_trt__GetAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioEncoderConfiguration(soap, tag ? tag : "trt:GetAudioEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfiguration(struct soap *soap, _trt__GetAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetAudioSourceConfigurationResponse::Configuration = NULL; -} - -void _trt__GetAudioSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioSourceConfiguration(soap, &this->_trt__GetAudioSourceConfigurationResponse::Configuration); -#endif -} - -int _trt__GetAudioSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetAudioSourceConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioSourceConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetAudioSourceConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__GetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationResponse, sizeof(_trt__GetAudioSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceConfiguration(soap, "trt:Configuration", &a->_trt__GetAudioSourceConfigurationResponse::Configuration, "tt:AudioSourceConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetAudioSourceConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSourceConfigurationResponse, SOAP_TYPE__trt__GetAudioSourceConfigurationResponse, sizeof(_trt__GetAudioSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSourceConfigurationResponse *p; - size_t k = sizeof(_trt__GetAudioSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSourceConfigurationResponse(soap, tag ? tag : "trt:GetAudioSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationResponse(struct soap *soap, _trt__GetAudioSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetAudioSourceConfiguration::ConfigurationToken); -} - -void _trt__GetAudioSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetAudioSourceConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetAudioSourceConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetAudioSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetAudioSourceConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfiguration(struct soap *soap, const char *tag, _trt__GetAudioSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSourceConfiguration, sizeof(_trt__GetAudioSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetAudioSourceConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetAudioSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSourceConfiguration, SOAP_TYPE__trt__GetAudioSourceConfiguration, sizeof(_trt__GetAudioSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSourceConfiguration *p; - size_t k = sizeof(_trt__GetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSourceConfiguration(soap, tag ? tag : "trt:GetAudioSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfiguration(struct soap *soap, _trt__GetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetVideoEncoderConfigurationResponse::Configuration = NULL; -} - -void _trt__GetVideoEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoEncoderConfiguration(soap, &this->_trt__GetVideoEncoderConfigurationResponse::Configuration); -#endif -} - -int _trt__GetVideoEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetVideoEncoderConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoEncoderConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetVideoEncoderConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__GetVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse, sizeof(_trt__GetVideoEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoEncoderConfiguration(soap, "trt:Configuration", &a->_trt__GetVideoEncoderConfigurationResponse::Configuration, "tt:VideoEncoderConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetVideoEncoderConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse, SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse, sizeof(_trt__GetVideoEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__GetVideoEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoEncoderConfigurationResponse(soap, tag ? tag : "trt:GetVideoEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetVideoEncoderConfiguration::ConfigurationToken); -} - -void _trt__GetVideoEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetVideoEncoderConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetVideoEncoderConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetVideoEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoEncoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetVideoEncoderConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfiguration(struct soap *soap, const char *tag, _trt__GetVideoEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoEncoderConfiguration, sizeof(_trt__GetVideoEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetVideoEncoderConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoEncoderConfiguration, SOAP_TYPE__trt__GetVideoEncoderConfiguration, sizeof(_trt__GetVideoEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoEncoderConfiguration *p; - size_t k = sizeof(_trt__GetVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoEncoderConfiguration(soap, tag ? tag : "trt:GetVideoEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfiguration(struct soap *soap, _trt__GetVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetVideoSourceConfigurationResponse::Configuration = NULL; -} - -void _trt__GetVideoSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoSourceConfiguration(soap, &this->_trt__GetVideoSourceConfigurationResponse::Configuration); -#endif -} - -int _trt__GetVideoSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationResponse), type)) - return soap->error; - if (a->Configuration) - soap_element_result(soap, "trt:Configuration"); - if (!a->_trt__GetVideoSourceConfigurationResponse::Configuration) - { if (soap_element_empty(soap, "trt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoSourceConfiguration(soap, "trt:Configuration", -1, &a->_trt__GetVideoSourceConfigurationResponse::Configuration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__GetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationResponse, sizeof(_trt__GetVideoSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfiguration(soap, "trt:Configuration", &a->_trt__GetVideoSourceConfigurationResponse::Configuration, "tt:VideoSourceConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - soap_check_result(soap, "trt:Configuration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetVideoSourceConfigurationResponse::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceConfigurationResponse, SOAP_TYPE__trt__GetVideoSourceConfigurationResponse, sizeof(_trt__GetVideoSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceConfigurationResponse *p; - size_t k = sizeof(_trt__GetVideoSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceConfigurationResponse(soap, tag ? tag : "trt:GetVideoSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationResponse(struct soap *soap, _trt__GetVideoSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetVideoSourceConfiguration::ConfigurationToken); -} - -void _trt__GetVideoSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetVideoSourceConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetVideoSourceConfiguration::ConfigurationToken); -#endif -} - -int _trt__GetVideoSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__GetVideoSourceConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfiguration(struct soap *soap, const char *tag, _trt__GetVideoSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceConfiguration, sizeof(_trt__GetVideoSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__GetVideoSourceConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetVideoSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceConfiguration, SOAP_TYPE__trt__GetVideoSourceConfiguration, sizeof(_trt__GetVideoSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceConfiguration *p; - size_t k = sizeof(_trt__GetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceConfiguration(soap, tag ? tag : "trt:GetVideoSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfiguration(struct soap *soap, _trt__GetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioDecoderConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, &this->_trt__GetAudioDecoderConfigurationsResponse::Configurations); -} - -void _trt__GetAudioDecoderConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, &this->_trt__GetAudioDecoderConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetAudioDecoderConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioDecoderConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioDecoderConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetAudioDecoderConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioDecoderConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioDecoderConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetAudioDecoderConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioDecoderConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse, sizeof(_trt__GetAudioDecoderConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioDecoderConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, "trt:Configurations", &a->_trt__GetAudioDecoderConfigurationsResponse::Configurations, "tt:AudioDecoderConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioDecoderConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse, SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse, sizeof(_trt__GetAudioDecoderConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioDecoderConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioDecoderConfigurationsResponse *p; - size_t k = sizeof(_trt__GetAudioDecoderConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioDecoderConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioDecoderConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioDecoderConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioDecoderConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioDecoderConfigurationsResponse(soap, tag ? tag : "trt:GetAudioDecoderConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioDecoderConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioDecoderConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioDecoderConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioDecoderConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetAudioDecoderConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetAudioDecoderConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioDecoderConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetAudioDecoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioDecoderConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioDecoderConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurations(struct soap *soap, const char *tag, _trt__GetAudioDecoderConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioDecoderConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioDecoderConfigurations, sizeof(_trt__GetAudioDecoderConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioDecoderConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioDecoderConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioDecoderConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioDecoderConfigurations, SOAP_TYPE__trt__GetAudioDecoderConfigurations, sizeof(_trt__GetAudioDecoderConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioDecoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioDecoderConfigurations *p; - size_t k = sizeof(_trt__GetAudioDecoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioDecoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioDecoderConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioDecoderConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioDecoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioDecoderConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioDecoderConfigurations(soap, tag ? tag : "trt:GetAudioDecoderConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioDecoderConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioDecoderConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurations(struct soap *soap, _trt__GetAudioDecoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioDecoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, &this->_trt__GetAudioOutputConfigurationsResponse::Configurations); -} - -void _trt__GetAudioOutputConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, &this->_trt__GetAudioOutputConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetAudioOutputConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetAudioOutputConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetAudioOutputConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse, sizeof(_trt__GetAudioOutputConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, "trt:Configurations", &a->_trt__GetAudioOutputConfigurationsResponse::Configurations, "tt:AudioOutputConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioOutputConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse, SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse, sizeof(_trt__GetAudioOutputConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputConfigurationsResponse *p; - size_t k = sizeof(_trt__GetAudioOutputConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputConfigurationsResponse(soap, tag ? tag : "trt:GetAudioOutputConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetAudioOutputConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetAudioOutputConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurations(struct soap *soap, const char *tag, _trt__GetAudioOutputConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputConfigurations, sizeof(_trt__GetAudioOutputConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioOutputConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputConfigurations, SOAP_TYPE__trt__GetAudioOutputConfigurations, sizeof(_trt__GetAudioOutputConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputConfigurations *p; - size_t k = sizeof(_trt__GetAudioOutputConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputConfigurations(soap, tag ? tag : "trt:GetAudioOutputConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurations(struct soap *soap, _trt__GetAudioOutputConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetMetadataConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, &this->_trt__GetMetadataConfigurationsResponse::Configurations); -} - -void _trt__GetMetadataConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, &this->_trt__GetMetadataConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetMetadataConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetMetadataConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetMetadataConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetMetadataConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetMetadataConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetMetadataConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetMetadataConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetMetadataConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetMetadataConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetMetadataConfigurationsResponse, sizeof(_trt__GetMetadataConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetMetadataConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetMetadataConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, "trt:Configurations", &a->_trt__GetMetadataConfigurationsResponse::Configurations, "tt:MetadataConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetMetadataConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetMetadataConfigurationsResponse, SOAP_TYPE__trt__GetMetadataConfigurationsResponse, sizeof(_trt__GetMetadataConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetMetadataConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetMetadataConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetMetadataConfigurationsResponse *p; - size_t k = sizeof(_trt__GetMetadataConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetMetadataConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetMetadataConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetMetadataConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetMetadataConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetMetadataConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetMetadataConfigurationsResponse(soap, tag ? tag : "trt:GetMetadataConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetMetadataConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetMetadataConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationsResponse(struct soap *soap, _trt__GetMetadataConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetMetadataConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetMetadataConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetMetadataConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetMetadataConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetMetadataConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetMetadataConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetMetadataConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetMetadataConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetMetadataConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurations * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurations(struct soap *soap, const char *tag, _trt__GetMetadataConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetMetadataConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetMetadataConfigurations, sizeof(_trt__GetMetadataConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetMetadataConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetMetadataConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetMetadataConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetMetadataConfigurations, SOAP_TYPE__trt__GetMetadataConfigurations, sizeof(_trt__GetMetadataConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetMetadataConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetMetadataConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetMetadataConfigurations *p; - size_t k = sizeof(_trt__GetMetadataConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetMetadataConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetMetadataConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetMetadataConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetMetadataConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetMetadataConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetMetadataConfigurations(soap, tag ? tag : "trt:GetMetadataConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetMetadataConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetMetadataConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurations * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurations(struct soap *soap, _trt__GetMetadataConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetMetadataConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoAnalyticsConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, &this->_trt__GetVideoAnalyticsConfigurationsResponse::Configurations); -} - -void _trt__GetVideoAnalyticsConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, &this->_trt__GetVideoAnalyticsConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetVideoAnalyticsConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoAnalyticsConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoAnalyticsConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetVideoAnalyticsConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoAnalyticsConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoAnalyticsConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetVideoAnalyticsConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoAnalyticsConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse, sizeof(_trt__GetVideoAnalyticsConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoAnalyticsConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, "trt:Configurations", &a->_trt__GetVideoAnalyticsConfigurationsResponse::Configurations, "tt:VideoAnalyticsConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoAnalyticsConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse, sizeof(_trt__GetVideoAnalyticsConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoAnalyticsConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoAnalyticsConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoAnalyticsConfigurationsResponse *p; - size_t k = sizeof(_trt__GetVideoAnalyticsConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoAnalyticsConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoAnalyticsConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoAnalyticsConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoAnalyticsConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoAnalyticsConfigurationsResponse(soap, tag ? tag : "trt:GetVideoAnalyticsConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoAnalyticsConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoAnalyticsConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoAnalyticsConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoAnalyticsConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetVideoAnalyticsConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetVideoAnalyticsConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoAnalyticsConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetVideoAnalyticsConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoAnalyticsConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoAnalyticsConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *tag, _trt__GetVideoAnalyticsConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoAnalyticsConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoAnalyticsConfigurations, sizeof(_trt__GetVideoAnalyticsConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoAnalyticsConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoAnalyticsConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoAnalyticsConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoAnalyticsConfigurations, SOAP_TYPE__trt__GetVideoAnalyticsConfigurations, sizeof(_trt__GetVideoAnalyticsConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoAnalyticsConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoAnalyticsConfigurations *p; - size_t k = sizeof(_trt__GetVideoAnalyticsConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoAnalyticsConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoAnalyticsConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoAnalyticsConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoAnalyticsConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoAnalyticsConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoAnalyticsConfigurations(soap, tag ? tag : "trt:GetVideoAnalyticsConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoAnalyticsConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoAnalyticsConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfigurations(struct soap *soap, _trt__GetVideoAnalyticsConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoAnalyticsConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSourceConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, &this->_trt__GetAudioSourceConfigurationsResponse::Configurations); -} - -void _trt__GetAudioSourceConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, &this->_trt__GetAudioSourceConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetAudioSourceConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSourceConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioSourceConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetAudioSourceConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSourceConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSourceConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetAudioSourceConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSourceConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse, sizeof(_trt__GetAudioSourceConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSourceConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, "trt:Configurations", &a->_trt__GetAudioSourceConfigurationsResponse::Configurations, "tt:AudioSourceConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioSourceConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse, SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse, sizeof(_trt__GetAudioSourceConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSourceConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSourceConfigurationsResponse *p; - size_t k = sizeof(_trt__GetAudioSourceConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSourceConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSourceConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSourceConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSourceConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSourceConfigurationsResponse(soap, tag ? tag : "trt:GetAudioSourceConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSourceConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSourceConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSourceConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSourceConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetAudioSourceConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetAudioSourceConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSourceConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetAudioSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSourceConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSourceConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSourceConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurations(struct soap *soap, const char *tag, _trt__GetAudioSourceConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSourceConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSourceConfigurations, sizeof(_trt__GetAudioSourceConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSourceConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSourceConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioSourceConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSourceConfigurations, SOAP_TYPE__trt__GetAudioSourceConfigurations, sizeof(_trt__GetAudioSourceConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSourceConfigurations *p; - size_t k = sizeof(_trt__GetAudioSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSourceConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSourceConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSourceConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSourceConfigurations(soap, tag ? tag : "trt:GetAudioSourceConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSourceConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSourceConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurations(struct soap *soap, _trt__GetAudioSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioEncoderConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, &this->_trt__GetAudioEncoderConfigurationsResponse::Configurations); -} - -void _trt__GetAudioEncoderConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, &this->_trt__GetAudioEncoderConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetAudioEncoderConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioEncoderConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioEncoderConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetAudioEncoderConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioEncoderConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioEncoderConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetAudioEncoderConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioEncoderConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse, sizeof(_trt__GetAudioEncoderConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioEncoderConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, "trt:Configurations", &a->_trt__GetAudioEncoderConfigurationsResponse::Configurations, "tt:AudioEncoderConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioEncoderConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse, SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse, sizeof(_trt__GetAudioEncoderConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioEncoderConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioEncoderConfigurationsResponse *p; - size_t k = sizeof(_trt__GetAudioEncoderConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioEncoderConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioEncoderConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioEncoderConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioEncoderConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioEncoderConfigurationsResponse(soap, tag ? tag : "trt:GetAudioEncoderConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioEncoderConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioEncoderConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioEncoderConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioEncoderConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetAudioEncoderConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetAudioEncoderConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioEncoderConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetAudioEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioEncoderConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioEncoderConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurations(struct soap *soap, const char *tag, _trt__GetAudioEncoderConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioEncoderConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioEncoderConfigurations, sizeof(_trt__GetAudioEncoderConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioEncoderConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioEncoderConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioEncoderConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioEncoderConfigurations, SOAP_TYPE__trt__GetAudioEncoderConfigurations, sizeof(_trt__GetAudioEncoderConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioEncoderConfigurations *p; - size_t k = sizeof(_trt__GetAudioEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioEncoderConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioEncoderConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioEncoderConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioEncoderConfigurations(soap, tag ? tag : "trt:GetAudioEncoderConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioEncoderConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioEncoderConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurations(struct soap *soap, _trt__GetAudioEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, &this->_trt__GetVideoSourceConfigurationsResponse::Configurations); -} - -void _trt__GetVideoSourceConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, &this->_trt__GetVideoSourceConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetVideoSourceConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetVideoSourceConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetVideoSourceConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse, sizeof(_trt__GetVideoSourceConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, "trt:Configurations", &a->_trt__GetVideoSourceConfigurationsResponse::Configurations, "tt:VideoSourceConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoSourceConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse, SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse, sizeof(_trt__GetVideoSourceConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceConfigurationsResponse *p; - size_t k = sizeof(_trt__GetVideoSourceConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceConfigurationsResponse(soap, tag ? tag : "trt:GetVideoSourceConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourceConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetVideoSourceConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetVideoSourceConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourceConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourceConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourceConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourceConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurations(struct soap *soap, const char *tag, _trt__GetVideoSourceConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourceConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourceConfigurations, sizeof(_trt__GetVideoSourceConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourceConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourceConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoSourceConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourceConfigurations, SOAP_TYPE__trt__GetVideoSourceConfigurations, sizeof(_trt__GetVideoSourceConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourceConfigurations *p; - size_t k = sizeof(_trt__GetVideoSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourceConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourceConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourceConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourceConfigurations(soap, tag ? tag : "trt:GetVideoSourceConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourceConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourceConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurations(struct soap *soap, _trt__GetVideoSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoEncoderConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, &this->_trt__GetVideoEncoderConfigurationsResponse::Configurations); -} - -void _trt__GetVideoEncoderConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, &this->_trt__GetVideoEncoderConfigurationsResponse::Configurations); -#endif -} - -int _trt__GetVideoEncoderConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoEncoderConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoEncoderConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Configurations"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, "trt:Configurations", -1, &a->_trt__GetVideoEncoderConfigurationsResponse::Configurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoEncoderConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoEncoderConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, const char *tag, _trt__GetVideoEncoderConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoEncoderConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse, sizeof(_trt__GetVideoEncoderConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoEncoderConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, "trt:Configurations", &a->_trt__GetVideoEncoderConfigurationsResponse::Configurations, "tt:VideoEncoderConfiguration")) - continue; - } - soap_check_result(soap, "trt:Configurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoEncoderConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse, SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse, sizeof(_trt__GetVideoEncoderConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoEncoderConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoEncoderConfigurationsResponse *p; - size_t k = sizeof(_trt__GetVideoEncoderConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoEncoderConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoEncoderConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoEncoderConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoEncoderConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoEncoderConfigurationsResponse(soap, tag ? tag : "trt:GetVideoEncoderConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoEncoderConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoEncoderConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoEncoderConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoEncoderConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetVideoEncoderConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetVideoEncoderConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoEncoderConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurations(struct soap *soap, const char *tag, int id, const _trt__GetVideoEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoEncoderConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoEncoderConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurations(struct soap *soap, const char *tag, _trt__GetVideoEncoderConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoEncoderConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoEncoderConfigurations, sizeof(_trt__GetVideoEncoderConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoEncoderConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoEncoderConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoEncoderConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoEncoderConfigurations, SOAP_TYPE__trt__GetVideoEncoderConfigurations, sizeof(_trt__GetVideoEncoderConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoEncoderConfigurations *p; - size_t k = sizeof(_trt__GetVideoEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoEncoderConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoEncoderConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoEncoderConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoEncoderConfigurations(soap, tag ? tag : "trt:GetVideoEncoderConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoEncoderConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoEncoderConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurations(struct soap *soap, _trt__GetVideoEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__DeleteProfileResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__DeleteProfileResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__DeleteProfileResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__DeleteProfileResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteProfileResponse(struct soap *soap, const char *tag, int id, const _trt__DeleteProfileResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__DeleteProfileResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__DeleteProfileResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__DeleteProfileResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__DeleteProfileResponse * SOAP_FMAC4 soap_in__trt__DeleteProfileResponse(struct soap *soap, const char *tag, _trt__DeleteProfileResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__DeleteProfileResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__DeleteProfileResponse, sizeof(_trt__DeleteProfileResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__DeleteProfileResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__DeleteProfileResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__DeleteProfileResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__DeleteProfileResponse, SOAP_TYPE__trt__DeleteProfileResponse, sizeof(_trt__DeleteProfileResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__DeleteProfileResponse * SOAP_FMAC2 soap_instantiate__trt__DeleteProfileResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__DeleteProfileResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__DeleteProfileResponse *p; - size_t k = sizeof(_trt__DeleteProfileResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__DeleteProfileResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__DeleteProfileResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__DeleteProfileResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__DeleteProfileResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__DeleteProfileResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__DeleteProfileResponse(soap, tag ? tag : "trt:DeleteProfileResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__DeleteProfileResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__DeleteProfileResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__DeleteProfileResponse * SOAP_FMAC4 soap_get__trt__DeleteProfileResponse(struct soap *soap, _trt__DeleteProfileResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__DeleteProfileResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__DeleteProfile::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__DeleteProfile::ProfileToken); -} - -void _trt__DeleteProfile::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__DeleteProfile::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__DeleteProfile::ProfileToken); -#endif -} - -int _trt__DeleteProfile::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__DeleteProfile(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteProfile(struct soap *soap, const char *tag, int id, const _trt__DeleteProfile *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__DeleteProfile), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__DeleteProfile::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__DeleteProfile::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__DeleteProfile(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__DeleteProfile * SOAP_FMAC4 soap_in__trt__DeleteProfile(struct soap *soap, const char *tag, _trt__DeleteProfile *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__DeleteProfile*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__DeleteProfile, sizeof(_trt__DeleteProfile), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__DeleteProfile) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__DeleteProfile *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__DeleteProfile::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__DeleteProfile *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__DeleteProfile, SOAP_TYPE__trt__DeleteProfile, sizeof(_trt__DeleteProfile), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__DeleteProfile * SOAP_FMAC2 soap_instantiate__trt__DeleteProfile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__DeleteProfile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__DeleteProfile *p; - size_t k = sizeof(_trt__DeleteProfile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__DeleteProfile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__DeleteProfile); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__DeleteProfile, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__DeleteProfile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__DeleteProfile::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__DeleteProfile(soap, tag ? tag : "trt:DeleteProfile", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__DeleteProfile::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__DeleteProfile(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__DeleteProfile * SOAP_FMAC4 soap_get__trt__DeleteProfile(struct soap *soap, _trt__DeleteProfile *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__DeleteProfile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioDecoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveAudioDecoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveAudioDecoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioDecoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioDecoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioDecoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioDecoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse, sizeof(_trt__RemoveAudioDecoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioDecoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveAudioDecoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse, SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse, sizeof(_trt__RemoveAudioDecoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioDecoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioDecoderConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveAudioDecoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioDecoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioDecoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioDecoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioDecoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioDecoderConfigurationResponse(soap, tag ? tag : "trt:RemoveAudioDecoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioDecoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioDecoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioDecoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioDecoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioDecoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveAudioDecoderConfiguration::ProfileToken); -} - -void _trt__RemoveAudioDecoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveAudioDecoderConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveAudioDecoderConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveAudioDecoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioDecoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioDecoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveAudioDecoderConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioDecoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioDecoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *tag, _trt__RemoveAudioDecoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioDecoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioDecoderConfiguration, sizeof(_trt__RemoveAudioDecoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioDecoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioDecoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveAudioDecoderConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveAudioDecoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioDecoderConfiguration, SOAP_TYPE__trt__RemoveAudioDecoderConfiguration, sizeof(_trt__RemoveAudioDecoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioDecoderConfiguration *p; - size_t k = sizeof(_trt__RemoveAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioDecoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioDecoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioDecoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioDecoderConfiguration(soap, tag ? tag : "trt:RemoveAudioDecoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioDecoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioDecoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioDecoderConfiguration(struct soap *soap, _trt__RemoveAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioDecoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddAudioDecoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddAudioDecoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioDecoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioDecoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioDecoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, const char *tag, _trt__AddAudioDecoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioDecoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse, sizeof(_trt__AddAudioDecoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioDecoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddAudioDecoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse, SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse, sizeof(_trt__AddAudioDecoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioDecoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioDecoderConfigurationResponse *p; - size_t k = sizeof(_trt__AddAudioDecoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioDecoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioDecoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioDecoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioDecoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioDecoderConfigurationResponse(soap, tag ? tag : "trt:AddAudioDecoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioDecoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioDecoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, _trt__AddAudioDecoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioDecoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioDecoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioDecoderConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioDecoderConfiguration::ConfigurationToken); -} - -void _trt__AddAudioDecoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddAudioDecoderConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioDecoderConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddAudioDecoderConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioDecoderConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddAudioDecoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioDecoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioDecoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddAudioDecoderConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddAudioDecoderConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioDecoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioDecoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioDecoderConfiguration(struct soap *soap, const char *tag, _trt__AddAudioDecoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioDecoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioDecoderConfiguration, sizeof(_trt__AddAudioDecoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioDecoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioDecoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddAudioDecoderConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddAudioDecoderConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddAudioDecoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioDecoderConfiguration, SOAP_TYPE__trt__AddAudioDecoderConfiguration, sizeof(_trt__AddAudioDecoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioDecoderConfiguration *p; - size_t k = sizeof(_trt__AddAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioDecoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioDecoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioDecoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioDecoderConfiguration(soap, tag ? tag : "trt:AddAudioDecoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioDecoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioDecoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioDecoderConfiguration(struct soap *soap, _trt__AddAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveAudioOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveAudioOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveAudioOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse, sizeof(_trt__RemoveAudioOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveAudioOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse, SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse, sizeof(_trt__RemoveAudioOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioOutputConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveAudioOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioOutputConfigurationResponse(soap, tag ? tag : "trt:RemoveAudioOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, _trt__RemoveAudioOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveAudioOutputConfiguration::ProfileToken); -} - -void _trt__RemoveAudioOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveAudioOutputConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveAudioOutputConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveAudioOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioOutputConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveAudioOutputConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *tag, _trt__RemoveAudioOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioOutputConfiguration, sizeof(_trt__RemoveAudioOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveAudioOutputConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveAudioOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioOutputConfiguration, SOAP_TYPE__trt__RemoveAudioOutputConfiguration, sizeof(_trt__RemoveAudioOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioOutputConfiguration *p; - size_t k = sizeof(_trt__RemoveAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioOutputConfiguration(soap, tag ? tag : "trt:RemoveAudioOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioOutputConfiguration(struct soap *soap, _trt__RemoveAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddAudioOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddAudioOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddAudioOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioOutputConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioOutputConfigurationResponse(struct soap *soap, const char *tag, _trt__AddAudioOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioOutputConfigurationResponse, sizeof(_trt__AddAudioOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddAudioOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioOutputConfigurationResponse, SOAP_TYPE__trt__AddAudioOutputConfigurationResponse, sizeof(_trt__AddAudioOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioOutputConfigurationResponse *p; - size_t k = sizeof(_trt__AddAudioOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioOutputConfigurationResponse(soap, tag ? tag : "trt:AddAudioOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioOutputConfigurationResponse(struct soap *soap, _trt__AddAudioOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioOutputConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioOutputConfiguration::ConfigurationToken); -} - -void _trt__AddAudioOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddAudioOutputConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioOutputConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddAudioOutputConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioOutputConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddAudioOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioOutputConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddAudioOutputConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddAudioOutputConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioOutputConfiguration(struct soap *soap, const char *tag, _trt__AddAudioOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioOutputConfiguration, sizeof(_trt__AddAudioOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddAudioOutputConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddAudioOutputConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddAudioOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioOutputConfiguration, SOAP_TYPE__trt__AddAudioOutputConfiguration, sizeof(_trt__AddAudioOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioOutputConfiguration *p; - size_t k = sizeof(_trt__AddAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioOutputConfiguration(soap, tag ? tag : "trt:AddAudioOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioOutputConfiguration(struct soap *soap, _trt__AddAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveMetadataConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveMetadataConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveMetadataConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveMetadataConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveMetadataConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveMetadataConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveMetadataConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveMetadataConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveMetadataConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveMetadataConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveMetadataConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveMetadataConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveMetadataConfigurationResponse, sizeof(_trt__RemoveMetadataConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveMetadataConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveMetadataConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveMetadataConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveMetadataConfigurationResponse, SOAP_TYPE__trt__RemoveMetadataConfigurationResponse, sizeof(_trt__RemoveMetadataConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveMetadataConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveMetadataConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveMetadataConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveMetadataConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveMetadataConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveMetadataConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveMetadataConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveMetadataConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveMetadataConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveMetadataConfigurationResponse(soap, tag ? tag : "trt:RemoveMetadataConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveMetadataConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveMetadataConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveMetadataConfigurationResponse(struct soap *soap, _trt__RemoveMetadataConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveMetadataConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveMetadataConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveMetadataConfiguration::ProfileToken); -} - -void _trt__RemoveMetadataConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveMetadataConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveMetadataConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveMetadataConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveMetadataConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveMetadataConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveMetadataConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveMetadataConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveMetadataConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveMetadataConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_in__trt__RemoveMetadataConfiguration(struct soap *soap, const char *tag, _trt__RemoveMetadataConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveMetadataConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveMetadataConfiguration, sizeof(_trt__RemoveMetadataConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveMetadataConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveMetadataConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveMetadataConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveMetadataConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveMetadataConfiguration, SOAP_TYPE__trt__RemoveMetadataConfiguration, sizeof(_trt__RemoveMetadataConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveMetadataConfiguration *p; - size_t k = sizeof(_trt__RemoveMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveMetadataConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveMetadataConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveMetadataConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveMetadataConfiguration(soap, tag ? tag : "trt:RemoveMetadataConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveMetadataConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveMetadataConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_get__trt__RemoveMetadataConfiguration(struct soap *soap, _trt__RemoveMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddMetadataConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddMetadataConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddMetadataConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddMetadataConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddMetadataConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddMetadataConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddMetadataConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddMetadataConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddMetadataConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddMetadataConfigurationResponse(struct soap *soap, const char *tag, _trt__AddMetadataConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddMetadataConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddMetadataConfigurationResponse, sizeof(_trt__AddMetadataConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddMetadataConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddMetadataConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddMetadataConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddMetadataConfigurationResponse, SOAP_TYPE__trt__AddMetadataConfigurationResponse, sizeof(_trt__AddMetadataConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddMetadataConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddMetadataConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddMetadataConfigurationResponse *p; - size_t k = sizeof(_trt__AddMetadataConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddMetadataConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddMetadataConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddMetadataConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddMetadataConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddMetadataConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddMetadataConfigurationResponse(soap, tag ? tag : "trt:AddMetadataConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddMetadataConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddMetadataConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddMetadataConfigurationResponse(struct soap *soap, _trt__AddMetadataConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddMetadataConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddMetadataConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddMetadataConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddMetadataConfiguration::ConfigurationToken); -} - -void _trt__AddMetadataConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddMetadataConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddMetadataConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddMetadataConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddMetadataConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddMetadataConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddMetadataConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddMetadataConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddMetadataConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddMetadataConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddMetadataConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddMetadataConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddMetadataConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddMetadataConfiguration * SOAP_FMAC4 soap_in__trt__AddMetadataConfiguration(struct soap *soap, const char *tag, _trt__AddMetadataConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddMetadataConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddMetadataConfiguration, sizeof(_trt__AddMetadataConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddMetadataConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddMetadataConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddMetadataConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddMetadataConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddMetadataConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddMetadataConfiguration, SOAP_TYPE__trt__AddMetadataConfiguration, sizeof(_trt__AddMetadataConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddMetadataConfiguration *p; - size_t k = sizeof(_trt__AddMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddMetadataConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddMetadataConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddMetadataConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddMetadataConfiguration(soap, tag ? tag : "trt:AddMetadataConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddMetadataConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddMetadataConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddMetadataConfiguration * SOAP_FMAC4 soap_get__trt__AddMetadataConfiguration(struct soap *soap, _trt__AddMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveVideoAnalyticsConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveVideoAnalyticsConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveVideoAnalyticsConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveVideoAnalyticsConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveVideoAnalyticsConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveVideoAnalyticsConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveVideoAnalyticsConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse, sizeof(_trt__RemoveVideoAnalyticsConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveVideoAnalyticsConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveVideoAnalyticsConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse, SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse, sizeof(_trt__RemoveVideoAnalyticsConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveVideoAnalyticsConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveVideoAnalyticsConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveVideoAnalyticsConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveVideoAnalyticsConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveVideoAnalyticsConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveVideoAnalyticsConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveVideoAnalyticsConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveVideoAnalyticsConfigurationResponse(soap, tag ? tag : "trt:RemoveVideoAnalyticsConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveVideoAnalyticsConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveVideoAnalyticsConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__RemoveVideoAnalyticsConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveVideoAnalyticsConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveVideoAnalyticsConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveVideoAnalyticsConfiguration::ProfileToken); -} - -void _trt__RemoveVideoAnalyticsConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveVideoAnalyticsConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveVideoAnalyticsConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveVideoAnalyticsConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveVideoAnalyticsConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveVideoAnalyticsConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveVideoAnalyticsConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveVideoAnalyticsConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *tag, _trt__RemoveVideoAnalyticsConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveVideoAnalyticsConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration, sizeof(_trt__RemoveVideoAnalyticsConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveVideoAnalyticsConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveVideoAnalyticsConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveVideoAnalyticsConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration, SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration, sizeof(_trt__RemoveVideoAnalyticsConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveVideoAnalyticsConfiguration *p; - size_t k = sizeof(_trt__RemoveVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveVideoAnalyticsConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveVideoAnalyticsConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveVideoAnalyticsConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveVideoAnalyticsConfiguration(soap, tag ? tag : "trt:RemoveVideoAnalyticsConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveVideoAnalyticsConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveVideoAnalyticsConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, _trt__RemoveVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddVideoAnalyticsConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddVideoAnalyticsConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddVideoAnalyticsConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddVideoAnalyticsConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddVideoAnalyticsConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddVideoAnalyticsConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, const char *tag, _trt__AddVideoAnalyticsConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddVideoAnalyticsConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse, sizeof(_trt__AddVideoAnalyticsConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddVideoAnalyticsConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddVideoAnalyticsConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse, SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse, sizeof(_trt__AddVideoAnalyticsConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddVideoAnalyticsConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddVideoAnalyticsConfigurationResponse *p; - size_t k = sizeof(_trt__AddVideoAnalyticsConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddVideoAnalyticsConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddVideoAnalyticsConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddVideoAnalyticsConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddVideoAnalyticsConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddVideoAnalyticsConfigurationResponse(soap, tag ? tag : "trt:AddVideoAnalyticsConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddVideoAnalyticsConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddVideoAnalyticsConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__AddVideoAnalyticsConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddVideoAnalyticsConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddVideoAnalyticsConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddVideoAnalyticsConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddVideoAnalyticsConfiguration::ConfigurationToken); -} - -void _trt__AddVideoAnalyticsConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddVideoAnalyticsConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddVideoAnalyticsConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddVideoAnalyticsConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddVideoAnalyticsConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddVideoAnalyticsConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddVideoAnalyticsConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddVideoAnalyticsConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddVideoAnalyticsConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddVideoAnalyticsConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddVideoAnalyticsConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddVideoAnalyticsConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *tag, _trt__AddVideoAnalyticsConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddVideoAnalyticsConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddVideoAnalyticsConfiguration, sizeof(_trt__AddVideoAnalyticsConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddVideoAnalyticsConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddVideoAnalyticsConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddVideoAnalyticsConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddVideoAnalyticsConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddVideoAnalyticsConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddVideoAnalyticsConfiguration, SOAP_TYPE__trt__AddVideoAnalyticsConfiguration, sizeof(_trt__AddVideoAnalyticsConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddVideoAnalyticsConfiguration *p; - size_t k = sizeof(_trt__AddVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddVideoAnalyticsConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddVideoAnalyticsConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddVideoAnalyticsConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddVideoAnalyticsConfiguration(soap, tag ? tag : "trt:AddVideoAnalyticsConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddVideoAnalyticsConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddVideoAnalyticsConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__AddVideoAnalyticsConfiguration(struct soap *soap, _trt__AddVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemovePTZConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemovePTZConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemovePTZConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemovePTZConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemovePTZConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemovePTZConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemovePTZConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemovePTZConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemovePTZConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemovePTZConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemovePTZConfigurationResponse(struct soap *soap, const char *tag, _trt__RemovePTZConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemovePTZConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemovePTZConfigurationResponse, sizeof(_trt__RemovePTZConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemovePTZConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemovePTZConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemovePTZConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemovePTZConfigurationResponse, SOAP_TYPE__trt__RemovePTZConfigurationResponse, sizeof(_trt__RemovePTZConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemovePTZConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemovePTZConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemovePTZConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemovePTZConfigurationResponse *p; - size_t k = sizeof(_trt__RemovePTZConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemovePTZConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemovePTZConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemovePTZConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemovePTZConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemovePTZConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemovePTZConfigurationResponse(soap, tag ? tag : "trt:RemovePTZConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemovePTZConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemovePTZConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemovePTZConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemovePTZConfigurationResponse(struct soap *soap, _trt__RemovePTZConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemovePTZConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemovePTZConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemovePTZConfiguration::ProfileToken); -} - -void _trt__RemovePTZConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemovePTZConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemovePTZConfiguration::ProfileToken); -#endif -} - -int _trt__RemovePTZConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemovePTZConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemovePTZConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemovePTZConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemovePTZConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemovePTZConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemovePTZConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemovePTZConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemovePTZConfiguration * SOAP_FMAC4 soap_in__trt__RemovePTZConfiguration(struct soap *soap, const char *tag, _trt__RemovePTZConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemovePTZConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemovePTZConfiguration, sizeof(_trt__RemovePTZConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemovePTZConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemovePTZConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemovePTZConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemovePTZConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemovePTZConfiguration, SOAP_TYPE__trt__RemovePTZConfiguration, sizeof(_trt__RemovePTZConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemovePTZConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemovePTZConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemovePTZConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemovePTZConfiguration *p; - size_t k = sizeof(_trt__RemovePTZConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemovePTZConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemovePTZConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemovePTZConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemovePTZConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemovePTZConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemovePTZConfiguration(soap, tag ? tag : "trt:RemovePTZConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemovePTZConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemovePTZConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemovePTZConfiguration * SOAP_FMAC4 soap_get__trt__RemovePTZConfiguration(struct soap *soap, _trt__RemovePTZConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemovePTZConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddPTZConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddPTZConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddPTZConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddPTZConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddPTZConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddPTZConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddPTZConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddPTZConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddPTZConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddPTZConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddPTZConfigurationResponse(struct soap *soap, const char *tag, _trt__AddPTZConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddPTZConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddPTZConfigurationResponse, sizeof(_trt__AddPTZConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddPTZConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddPTZConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddPTZConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddPTZConfigurationResponse, SOAP_TYPE__trt__AddPTZConfigurationResponse, sizeof(_trt__AddPTZConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddPTZConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddPTZConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddPTZConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddPTZConfigurationResponse *p; - size_t k = sizeof(_trt__AddPTZConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddPTZConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddPTZConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddPTZConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddPTZConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddPTZConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddPTZConfigurationResponse(soap, tag ? tag : "trt:AddPTZConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddPTZConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddPTZConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddPTZConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddPTZConfigurationResponse(struct soap *soap, _trt__AddPTZConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddPTZConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddPTZConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddPTZConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddPTZConfiguration::ConfigurationToken); -} - -void _trt__AddPTZConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddPTZConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddPTZConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddPTZConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddPTZConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddPTZConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddPTZConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddPTZConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddPTZConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddPTZConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddPTZConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddPTZConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddPTZConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddPTZConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddPTZConfiguration * SOAP_FMAC4 soap_in__trt__AddPTZConfiguration(struct soap *soap, const char *tag, _trt__AddPTZConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddPTZConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddPTZConfiguration, sizeof(_trt__AddPTZConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddPTZConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddPTZConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddPTZConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddPTZConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddPTZConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddPTZConfiguration, SOAP_TYPE__trt__AddPTZConfiguration, sizeof(_trt__AddPTZConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddPTZConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddPTZConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddPTZConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddPTZConfiguration *p; - size_t k = sizeof(_trt__AddPTZConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddPTZConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddPTZConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddPTZConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddPTZConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddPTZConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddPTZConfiguration(soap, tag ? tag : "trt:AddPTZConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddPTZConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddPTZConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddPTZConfiguration * SOAP_FMAC4 soap_get__trt__AddPTZConfiguration(struct soap *soap, _trt__AddPTZConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddPTZConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveAudioSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveAudioSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveAudioSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse, sizeof(_trt__RemoveAudioSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveAudioSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse, SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse, sizeof(_trt__RemoveAudioSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioSourceConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveAudioSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioSourceConfigurationResponse(soap, tag ? tag : "trt:RemoveAudioSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, _trt__RemoveAudioSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveAudioSourceConfiguration::ProfileToken); -} - -void _trt__RemoveAudioSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveAudioSourceConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveAudioSourceConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveAudioSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveAudioSourceConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *tag, _trt__RemoveAudioSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioSourceConfiguration, sizeof(_trt__RemoveAudioSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveAudioSourceConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveAudioSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioSourceConfiguration, SOAP_TYPE__trt__RemoveAudioSourceConfiguration, sizeof(_trt__RemoveAudioSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioSourceConfiguration *p; - size_t k = sizeof(_trt__RemoveAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioSourceConfiguration(soap, tag ? tag : "trt:RemoveAudioSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioSourceConfiguration(struct soap *soap, _trt__RemoveAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddAudioSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddAudioSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddAudioSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioSourceConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__AddAudioSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioSourceConfigurationResponse, sizeof(_trt__AddAudioSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddAudioSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioSourceConfigurationResponse, SOAP_TYPE__trt__AddAudioSourceConfigurationResponse, sizeof(_trt__AddAudioSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioSourceConfigurationResponse *p; - size_t k = sizeof(_trt__AddAudioSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioSourceConfigurationResponse(soap, tag ? tag : "trt:AddAudioSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioSourceConfigurationResponse(struct soap *soap, _trt__AddAudioSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioSourceConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioSourceConfiguration::ConfigurationToken); -} - -void _trt__AddAudioSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddAudioSourceConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioSourceConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddAudioSourceConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioSourceConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddAudioSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddAudioSourceConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddAudioSourceConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioSourceConfiguration(struct soap *soap, const char *tag, _trt__AddAudioSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioSourceConfiguration, sizeof(_trt__AddAudioSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddAudioSourceConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddAudioSourceConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddAudioSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioSourceConfiguration, SOAP_TYPE__trt__AddAudioSourceConfiguration, sizeof(_trt__AddAudioSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioSourceConfiguration *p; - size_t k = sizeof(_trt__AddAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioSourceConfiguration(soap, tag ? tag : "trt:AddAudioSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioSourceConfiguration(struct soap *soap, _trt__AddAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveAudioEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveAudioEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse, sizeof(_trt__RemoveAudioEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveAudioEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse, SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse, sizeof(_trt__RemoveAudioEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveAudioEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioEncoderConfigurationResponse(soap, tag ? tag : "trt:RemoveAudioEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveAudioEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveAudioEncoderConfiguration::ProfileToken); -} - -void _trt__RemoveAudioEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveAudioEncoderConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveAudioEncoderConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveAudioEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveAudioEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveAudioEncoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveAudioEncoderConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveAudioEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveAudioEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *tag, _trt__RemoveAudioEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveAudioEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveAudioEncoderConfiguration, sizeof(_trt__RemoveAudioEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveAudioEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveAudioEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveAudioEncoderConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveAudioEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveAudioEncoderConfiguration, SOAP_TYPE__trt__RemoveAudioEncoderConfiguration, sizeof(_trt__RemoveAudioEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveAudioEncoderConfiguration *p; - size_t k = sizeof(_trt__RemoveAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveAudioEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveAudioEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveAudioEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveAudioEncoderConfiguration(soap, tag ? tag : "trt:RemoveAudioEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveAudioEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveAudioEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioEncoderConfiguration(struct soap *soap, _trt__RemoveAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddAudioEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddAudioEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__AddAudioEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse, sizeof(_trt__AddAudioEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddAudioEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse, SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse, sizeof(_trt__AddAudioEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__AddAudioEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioEncoderConfigurationResponse(soap, tag ? tag : "trt:AddAudioEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, _trt__AddAudioEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddAudioEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioEncoderConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddAudioEncoderConfiguration::ConfigurationToken); -} - -void _trt__AddAudioEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddAudioEncoderConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioEncoderConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddAudioEncoderConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddAudioEncoderConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddAudioEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddAudioEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddAudioEncoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddAudioEncoderConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddAudioEncoderConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddAudioEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddAudioEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioEncoderConfiguration(struct soap *soap, const char *tag, _trt__AddAudioEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddAudioEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddAudioEncoderConfiguration, sizeof(_trt__AddAudioEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddAudioEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddAudioEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddAudioEncoderConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddAudioEncoderConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddAudioEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddAudioEncoderConfiguration, SOAP_TYPE__trt__AddAudioEncoderConfiguration, sizeof(_trt__AddAudioEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddAudioEncoderConfiguration *p; - size_t k = sizeof(_trt__AddAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddAudioEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddAudioEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddAudioEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddAudioEncoderConfiguration(soap, tag ? tag : "trt:AddAudioEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddAudioEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddAudioEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioEncoderConfiguration(struct soap *soap, _trt__AddAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveVideoSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveVideoSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveVideoSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveVideoSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveVideoSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveVideoSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveVideoSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveVideoSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveVideoSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse, sizeof(_trt__RemoveVideoSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveVideoSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveVideoSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse, SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse, sizeof(_trt__RemoveVideoSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveVideoSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveVideoSourceConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveVideoSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveVideoSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveVideoSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveVideoSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveVideoSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveVideoSourceConfigurationResponse(soap, tag ? tag : "trt:RemoveVideoSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveVideoSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveVideoSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, _trt__RemoveVideoSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveVideoSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveVideoSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveVideoSourceConfiguration::ProfileToken); -} - -void _trt__RemoveVideoSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveVideoSourceConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveVideoSourceConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveVideoSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveVideoSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveVideoSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveVideoSourceConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveVideoSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveVideoSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *tag, _trt__RemoveVideoSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveVideoSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveVideoSourceConfiguration, sizeof(_trt__RemoveVideoSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveVideoSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveVideoSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveVideoSourceConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveVideoSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveVideoSourceConfiguration, SOAP_TYPE__trt__RemoveVideoSourceConfiguration, sizeof(_trt__RemoveVideoSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveVideoSourceConfiguration *p; - size_t k = sizeof(_trt__RemoveVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveVideoSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveVideoSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveVideoSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveVideoSourceConfiguration(soap, tag ? tag : "trt:RemoveVideoSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveVideoSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveVideoSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__RemoveVideoSourceConfiguration(struct soap *soap, _trt__RemoveVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddVideoSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddVideoSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddVideoSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddVideoSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddVideoSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddVideoSourceConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddVideoSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddVideoSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddVideoSourceConfigurationResponse(struct soap *soap, const char *tag, _trt__AddVideoSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddVideoSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddVideoSourceConfigurationResponse, sizeof(_trt__AddVideoSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddVideoSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddVideoSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddVideoSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddVideoSourceConfigurationResponse, SOAP_TYPE__trt__AddVideoSourceConfigurationResponse, sizeof(_trt__AddVideoSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddVideoSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddVideoSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddVideoSourceConfigurationResponse *p; - size_t k = sizeof(_trt__AddVideoSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddVideoSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddVideoSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddVideoSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddVideoSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddVideoSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddVideoSourceConfigurationResponse(soap, tag ? tag : "trt:AddVideoSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddVideoSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddVideoSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddVideoSourceConfigurationResponse(struct soap *soap, _trt__AddVideoSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddVideoSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddVideoSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddVideoSourceConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddVideoSourceConfiguration::ConfigurationToken); -} - -void _trt__AddVideoSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddVideoSourceConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddVideoSourceConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddVideoSourceConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddVideoSourceConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddVideoSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddVideoSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddVideoSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddVideoSourceConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddVideoSourceConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddVideoSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddVideoSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__AddVideoSourceConfiguration(struct soap *soap, const char *tag, _trt__AddVideoSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddVideoSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddVideoSourceConfiguration, sizeof(_trt__AddVideoSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddVideoSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddVideoSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddVideoSourceConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddVideoSourceConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddVideoSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddVideoSourceConfiguration, SOAP_TYPE__trt__AddVideoSourceConfiguration, sizeof(_trt__AddVideoSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddVideoSourceConfiguration *p; - size_t k = sizeof(_trt__AddVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddVideoSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddVideoSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddVideoSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddVideoSourceConfiguration(soap, tag ? tag : "trt:AddVideoSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddVideoSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddVideoSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__AddVideoSourceConfiguration(struct soap *soap, _trt__AddVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveVideoEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__RemoveVideoEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__RemoveVideoEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveVideoEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__RemoveVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveVideoEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveVideoEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__RemoveVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveVideoEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse, sizeof(_trt__RemoveVideoEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveVideoEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__RemoveVideoEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse, SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse, sizeof(_trt__RemoveVideoEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveVideoEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveVideoEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__RemoveVideoEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveVideoEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveVideoEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveVideoEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveVideoEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveVideoEncoderConfigurationResponse(soap, tag ? tag : "trt:RemoveVideoEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveVideoEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveVideoEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, _trt__RemoveVideoEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveVideoEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__RemoveVideoEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__RemoveVideoEncoderConfiguration::ProfileToken); -} - -void _trt__RemoveVideoEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__RemoveVideoEncoderConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__RemoveVideoEncoderConfiguration::ProfileToken); -#endif -} - -int _trt__RemoveVideoEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__RemoveVideoEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__RemoveVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__RemoveVideoEncoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__RemoveVideoEncoderConfiguration::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__RemoveVideoEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__RemoveVideoEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *tag, _trt__RemoveVideoEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__RemoveVideoEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__RemoveVideoEncoderConfiguration, sizeof(_trt__RemoveVideoEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__RemoveVideoEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__RemoveVideoEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__RemoveVideoEncoderConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__RemoveVideoEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__RemoveVideoEncoderConfiguration, SOAP_TYPE__trt__RemoveVideoEncoderConfiguration, sizeof(_trt__RemoveVideoEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__RemoveVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__RemoveVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__RemoveVideoEncoderConfiguration *p; - size_t k = sizeof(_trt__RemoveVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__RemoveVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__RemoveVideoEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__RemoveVideoEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__RemoveVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__RemoveVideoEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__RemoveVideoEncoderConfiguration(soap, tag ? tag : "trt:RemoveVideoEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__RemoveVideoEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__RemoveVideoEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__RemoveVideoEncoderConfiguration(struct soap *soap, _trt__RemoveVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__RemoveVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddVideoEncoderConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__AddVideoEncoderConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__AddVideoEncoderConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddVideoEncoderConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, int id, const _trt__AddVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddVideoEncoderConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddVideoEncoderConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, const char *tag, _trt__AddVideoEncoderConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddVideoEncoderConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse, sizeof(_trt__AddVideoEncoderConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddVideoEncoderConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__AddVideoEncoderConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse, SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse, sizeof(_trt__AddVideoEncoderConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddVideoEncoderConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddVideoEncoderConfigurationResponse *p; - size_t k = sizeof(_trt__AddVideoEncoderConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddVideoEncoderConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddVideoEncoderConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddVideoEncoderConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddVideoEncoderConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddVideoEncoderConfigurationResponse(soap, tag ? tag : "trt:AddVideoEncoderConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddVideoEncoderConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddVideoEncoderConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, _trt__AddVideoEncoderConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddVideoEncoderConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__AddVideoEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__AddVideoEncoderConfiguration::ProfileToken); - soap_default_tt__ReferenceToken(soap, &this->_trt__AddVideoEncoderConfiguration::ConfigurationToken); -} - -void _trt__AddVideoEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__AddVideoEncoderConfiguration::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddVideoEncoderConfiguration::ProfileToken); - soap_embedded(soap, &this->_trt__AddVideoEncoderConfiguration::ConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__AddVideoEncoderConfiguration::ConfigurationToken); -#endif -} - -int _trt__AddVideoEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__AddVideoEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const _trt__AddVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__AddVideoEncoderConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__AddVideoEncoderConfiguration::ProfileToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ConfigurationToken", -1, &a->_trt__AddVideoEncoderConfiguration::ConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__AddVideoEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__AddVideoEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__AddVideoEncoderConfiguration(struct soap *soap, const char *tag, _trt__AddVideoEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__AddVideoEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__AddVideoEncoderConfiguration, sizeof(_trt__AddVideoEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__AddVideoEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__AddVideoEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - size_t soap_flag_ConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__AddVideoEncoderConfiguration::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap_flag_ConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ConfigurationToken", &a->_trt__AddVideoEncoderConfiguration::ConfigurationToken, "tt:ReferenceToken")) - { soap_flag_ConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0 || soap_flag_ConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__AddVideoEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__AddVideoEncoderConfiguration, SOAP_TYPE__trt__AddVideoEncoderConfiguration, sizeof(_trt__AddVideoEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__AddVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__AddVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__AddVideoEncoderConfiguration *p; - size_t k = sizeof(_trt__AddVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__AddVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__AddVideoEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__AddVideoEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__AddVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__AddVideoEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__AddVideoEncoderConfiguration(soap, tag ? tag : "trt:AddVideoEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__AddVideoEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__AddVideoEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__AddVideoEncoderConfiguration(struct soap *soap, _trt__AddVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__AddVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetProfilesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Profile(soap, &this->_trt__GetProfilesResponse::Profiles); -} - -void _trt__GetProfilesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Profile(soap, &this->_trt__GetProfilesResponse::Profiles); -#endif -} - -int _trt__GetProfilesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetProfilesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfilesResponse(struct soap *soap, const char *tag, int id, const _trt__GetProfilesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetProfilesResponse), type)) - return soap->error; - soap_element_result(soap, "trt:Profiles"); - if (soap_out_std__vectorTemplateOfPointerTott__Profile(soap, "trt:Profiles", -1, &a->_trt__GetProfilesResponse::Profiles, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetProfilesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetProfilesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetProfilesResponse * SOAP_FMAC4 soap_in__trt__GetProfilesResponse(struct soap *soap, const char *tag, _trt__GetProfilesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetProfilesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetProfilesResponse, sizeof(_trt__GetProfilesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetProfilesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetProfilesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Profile(soap, "trt:Profiles", &a->_trt__GetProfilesResponse::Profiles, "tt:Profile")) - continue; - } - soap_check_result(soap, "trt:Profiles"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetProfilesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetProfilesResponse, SOAP_TYPE__trt__GetProfilesResponse, sizeof(_trt__GetProfilesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetProfilesResponse * SOAP_FMAC2 soap_instantiate__trt__GetProfilesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetProfilesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetProfilesResponse *p; - size_t k = sizeof(_trt__GetProfilesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetProfilesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetProfilesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetProfilesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetProfilesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetProfilesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetProfilesResponse(soap, tag ? tag : "trt:GetProfilesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetProfilesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetProfilesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetProfilesResponse * SOAP_FMAC4 soap_get__trt__GetProfilesResponse(struct soap *soap, _trt__GetProfilesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetProfilesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetProfiles::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetProfiles::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetProfiles::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetProfiles(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfiles(struct soap *soap, const char *tag, int id, const _trt__GetProfiles *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetProfiles), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetProfiles::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetProfiles(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetProfiles * SOAP_FMAC4 soap_in__trt__GetProfiles(struct soap *soap, const char *tag, _trt__GetProfiles *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetProfiles*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetProfiles, sizeof(_trt__GetProfiles), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetProfiles) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetProfiles *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetProfiles *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetProfiles, SOAP_TYPE__trt__GetProfiles, sizeof(_trt__GetProfiles), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetProfiles * SOAP_FMAC2 soap_instantiate__trt__GetProfiles(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetProfiles(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetProfiles *p; - size_t k = sizeof(_trt__GetProfiles); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetProfiles, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetProfiles); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetProfiles, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetProfiles location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetProfiles::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetProfiles(soap, tag ? tag : "trt:GetProfiles", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetProfiles::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetProfiles(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetProfiles * SOAP_FMAC4 soap_get__trt__GetProfiles(struct soap *soap, _trt__GetProfiles *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetProfiles(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetProfileResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetProfileResponse::Profile = NULL; -} - -void _trt__GetProfileResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Profile(soap, &this->_trt__GetProfileResponse::Profile); -#endif -} - -int _trt__GetProfileResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetProfileResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfileResponse(struct soap *soap, const char *tag, int id, const _trt__GetProfileResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetProfileResponse), type)) - return soap->error; - if (a->Profile) - soap_element_result(soap, "trt:Profile"); - if (!a->_trt__GetProfileResponse::Profile) - { if (soap_element_empty(soap, "trt:Profile", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Profile(soap, "trt:Profile", -1, &a->_trt__GetProfileResponse::Profile, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetProfileResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetProfileResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetProfileResponse * SOAP_FMAC4 soap_in__trt__GetProfileResponse(struct soap *soap, const char *tag, _trt__GetProfileResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetProfileResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetProfileResponse, sizeof(_trt__GetProfileResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetProfileResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetProfileResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Profile1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Profile1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Profile(soap, "trt:Profile", &a->_trt__GetProfileResponse::Profile, "tt:Profile")) - { soap_flag_Profile1--; - continue; - } - } - soap_check_result(soap, "trt:Profile"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetProfileResponse::Profile)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetProfileResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetProfileResponse, SOAP_TYPE__trt__GetProfileResponse, sizeof(_trt__GetProfileResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetProfileResponse * SOAP_FMAC2 soap_instantiate__trt__GetProfileResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetProfileResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetProfileResponse *p; - size_t k = sizeof(_trt__GetProfileResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetProfileResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetProfileResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetProfileResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetProfileResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetProfileResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetProfileResponse(soap, tag ? tag : "trt:GetProfileResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetProfileResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetProfileResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetProfileResponse * SOAP_FMAC4 soap_get__trt__GetProfileResponse(struct soap *soap, _trt__GetProfileResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetProfileResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetProfile::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_trt__GetProfile::ProfileToken); -} - -void _trt__GetProfile::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__GetProfile::ProfileToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_trt__GetProfile::ProfileToken); -#endif -} - -int _trt__GetProfile::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetProfile(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfile(struct soap *soap, const char *tag, int id, const _trt__GetProfile *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetProfile), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "trt:ProfileToken", -1, &a->_trt__GetProfile::ProfileToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetProfile::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetProfile(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetProfile * SOAP_FMAC4 soap_in__trt__GetProfile(struct soap *soap, const char *tag, _trt__GetProfile *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetProfile*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetProfile, sizeof(_trt__GetProfile), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetProfile) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetProfile *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ProfileToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "trt:ProfileToken", &a->_trt__GetProfile::ProfileToken, "tt:ReferenceToken")) - { soap_flag_ProfileToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ProfileToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetProfile *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetProfile, SOAP_TYPE__trt__GetProfile, sizeof(_trt__GetProfile), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetProfile * SOAP_FMAC2 soap_instantiate__trt__GetProfile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetProfile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetProfile *p; - size_t k = sizeof(_trt__GetProfile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetProfile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetProfile); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetProfile, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetProfile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetProfile::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetProfile(soap, tag ? tag : "trt:GetProfile", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetProfile::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetProfile(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetProfile * SOAP_FMAC4 soap_get__trt__GetProfile(struct soap *soap, _trt__GetProfile *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetProfile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__CreateProfileResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__CreateProfileResponse::Profile = NULL; -} - -void _trt__CreateProfileResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Profile(soap, &this->_trt__CreateProfileResponse::Profile); -#endif -} - -int _trt__CreateProfileResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__CreateProfileResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateProfileResponse(struct soap *soap, const char *tag, int id, const _trt__CreateProfileResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__CreateProfileResponse), type)) - return soap->error; - if (a->Profile) - soap_element_result(soap, "trt:Profile"); - if (!a->_trt__CreateProfileResponse::Profile) - { if (soap_element_empty(soap, "trt:Profile", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Profile(soap, "trt:Profile", -1, &a->_trt__CreateProfileResponse::Profile, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__CreateProfileResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__CreateProfileResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__CreateProfileResponse * SOAP_FMAC4 soap_in__trt__CreateProfileResponse(struct soap *soap, const char *tag, _trt__CreateProfileResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__CreateProfileResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__CreateProfileResponse, sizeof(_trt__CreateProfileResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__CreateProfileResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__CreateProfileResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Profile1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Profile1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Profile(soap, "trt:Profile", &a->_trt__CreateProfileResponse::Profile, "tt:Profile")) - { soap_flag_Profile1--; - continue; - } - } - soap_check_result(soap, "trt:Profile"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__CreateProfileResponse::Profile)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__CreateProfileResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__CreateProfileResponse, SOAP_TYPE__trt__CreateProfileResponse, sizeof(_trt__CreateProfileResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__CreateProfileResponse * SOAP_FMAC2 soap_instantiate__trt__CreateProfileResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__CreateProfileResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__CreateProfileResponse *p; - size_t k = sizeof(_trt__CreateProfileResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__CreateProfileResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__CreateProfileResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__CreateProfileResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__CreateProfileResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__CreateProfileResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__CreateProfileResponse(soap, tag ? tag : "trt:CreateProfileResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__CreateProfileResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__CreateProfileResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__CreateProfileResponse * SOAP_FMAC4 soap_get__trt__CreateProfileResponse(struct soap *soap, _trt__CreateProfileResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__CreateProfileResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__CreateProfile::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Name(soap, &this->_trt__CreateProfile::Name); - this->_trt__CreateProfile::Token = NULL; -} - -void _trt__CreateProfile::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_trt__CreateProfile::Name, SOAP_TYPE_tt__Name); - soap_serialize_tt__Name(soap, &this->_trt__CreateProfile::Name); - soap_serialize_PointerTott__ReferenceToken(soap, &this->_trt__CreateProfile::Token); -#endif -} - -int _trt__CreateProfile::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__CreateProfile(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateProfile(struct soap *soap, const char *tag, int id, const _trt__CreateProfile *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__CreateProfile), type)) - return soap->error; - if (soap_out_tt__Name(soap, "trt:Name", -1, &a->_trt__CreateProfile::Name, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "trt:Token", -1, &a->_trt__CreateProfile::Token, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__CreateProfile::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__CreateProfile(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__CreateProfile * SOAP_FMAC4 soap_in__trt__CreateProfile(struct soap *soap, const char *tag, _trt__CreateProfile *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__CreateProfile*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__CreateProfile, sizeof(_trt__CreateProfile), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__CreateProfile) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__CreateProfile *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Name1 = 1; - size_t soap_flag_Token1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "trt:Name", &a->_trt__CreateProfile::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "trt:Token", &a->_trt__CreateProfile::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__CreateProfile *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__CreateProfile, SOAP_TYPE__trt__CreateProfile, sizeof(_trt__CreateProfile), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__CreateProfile * SOAP_FMAC2 soap_instantiate__trt__CreateProfile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__CreateProfile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__CreateProfile *p; - size_t k = sizeof(_trt__CreateProfile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__CreateProfile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__CreateProfile); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__CreateProfile, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__CreateProfile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__CreateProfile::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__CreateProfile(soap, tag ? tag : "trt:CreateProfile", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__CreateProfile::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__CreateProfile(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__CreateProfile * SOAP_FMAC4 soap_get__trt__CreateProfile(struct soap *soap, _trt__CreateProfile *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__CreateProfile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioOutput(soap, &this->_trt__GetAudioOutputsResponse::AudioOutputs); -} - -void _trt__GetAudioOutputsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioOutput(soap, &this->_trt__GetAudioOutputsResponse::AudioOutputs); -#endif -} - -int _trt__GetAudioOutputsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputsResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputsResponse), type)) - return soap->error; - soap_element_result(soap, "trt:AudioOutputs"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioOutput(soap, "trt:AudioOutputs", -1, &a->_trt__GetAudioOutputsResponse::AudioOutputs, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputsResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputsResponse(struct soap *soap, const char *tag, _trt__GetAudioOutputsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputsResponse, sizeof(_trt__GetAudioOutputsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioOutput(soap, "trt:AudioOutputs", &a->_trt__GetAudioOutputsResponse::AudioOutputs, "tt:AudioOutput")) - continue; - } - soap_check_result(soap, "trt:AudioOutputs"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioOutputsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputsResponse, SOAP_TYPE__trt__GetAudioOutputsResponse, sizeof(_trt__GetAudioOutputsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputsResponse *p; - size_t k = sizeof(_trt__GetAudioOutputsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputsResponse(soap, tag ? tag : "trt:GetAudioOutputsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputsResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputsResponse(struct soap *soap, _trt__GetAudioOutputsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioOutputs::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetAudioOutputs::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetAudioOutputs::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioOutputs(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputs(struct soap *soap, const char *tag, int id, const _trt__GetAudioOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioOutputs), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioOutputs::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioOutputs(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputs * SOAP_FMAC4 soap_in__trt__GetAudioOutputs(struct soap *soap, const char *tag, _trt__GetAudioOutputs *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioOutputs*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioOutputs, sizeof(_trt__GetAudioOutputs), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioOutputs) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioOutputs *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioOutputs *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioOutputs, SOAP_TYPE__trt__GetAudioOutputs, sizeof(_trt__GetAudioOutputs), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioOutputs * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioOutputs *p; - size_t k = sizeof(_trt__GetAudioOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioOutputs); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioOutputs, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioOutputs::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioOutputs(soap, tag ? tag : "trt:GetAudioOutputs", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioOutputs::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioOutputs(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioOutputs * SOAP_FMAC4 soap_get__trt__GetAudioOutputs(struct soap *soap, _trt__GetAudioOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSourcesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioSource(soap, &this->_trt__GetAudioSourcesResponse::AudioSources); -} - -void _trt__GetAudioSourcesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioSource(soap, &this->_trt__GetAudioSourcesResponse::AudioSources); -#endif -} - -int _trt__GetAudioSourcesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSourcesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourcesResponse(struct soap *soap, const char *tag, int id, const _trt__GetAudioSourcesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSourcesResponse), type)) - return soap->error; - soap_element_result(soap, "trt:AudioSources"); - if (soap_out_std__vectorTemplateOfPointerTott__AudioSource(soap, "trt:AudioSources", -1, &a->_trt__GetAudioSourcesResponse::AudioSources, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSourcesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSourcesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSourcesResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourcesResponse(struct soap *soap, const char *tag, _trt__GetAudioSourcesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSourcesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSourcesResponse, sizeof(_trt__GetAudioSourcesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSourcesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSourcesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioSource(soap, "trt:AudioSources", &a->_trt__GetAudioSourcesResponse::AudioSources, "tt:AudioSource")) - continue; - } - soap_check_result(soap, "trt:AudioSources"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioSourcesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSourcesResponse, SOAP_TYPE__trt__GetAudioSourcesResponse, sizeof(_trt__GetAudioSourcesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSourcesResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourcesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSourcesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSourcesResponse *p; - size_t k = sizeof(_trt__GetAudioSourcesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSourcesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSourcesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSourcesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSourcesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSourcesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSourcesResponse(soap, tag ? tag : "trt:GetAudioSourcesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSourcesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSourcesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSourcesResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourcesResponse(struct soap *soap, _trt__GetAudioSourcesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSourcesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetAudioSources::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetAudioSources::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetAudioSources::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetAudioSources(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSources(struct soap *soap, const char *tag, int id, const _trt__GetAudioSources *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetAudioSources), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetAudioSources::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetAudioSources(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetAudioSources * SOAP_FMAC4 soap_in__trt__GetAudioSources(struct soap *soap, const char *tag, _trt__GetAudioSources *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetAudioSources*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetAudioSources, sizeof(_trt__GetAudioSources), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetAudioSources) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetAudioSources *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetAudioSources *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetAudioSources, SOAP_TYPE__trt__GetAudioSources, sizeof(_trt__GetAudioSources), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetAudioSources * SOAP_FMAC2 soap_instantiate__trt__GetAudioSources(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetAudioSources(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetAudioSources *p; - size_t k = sizeof(_trt__GetAudioSources); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetAudioSources, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetAudioSources); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetAudioSources, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetAudioSources location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetAudioSources::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetAudioSources(soap, tag ? tag : "trt:GetAudioSources", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetAudioSources::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetAudioSources(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetAudioSources * SOAP_FMAC4 soap_get__trt__GetAudioSources(struct soap *soap, _trt__GetAudioSources *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetAudioSources(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSourcesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoSource(soap, &this->_trt__GetVideoSourcesResponse::VideoSources); -} - -void _trt__GetVideoSourcesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoSource(soap, &this->_trt__GetVideoSourcesResponse::VideoSources); -#endif -} - -int _trt__GetVideoSourcesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSourcesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourcesResponse(struct soap *soap, const char *tag, int id, const _trt__GetVideoSourcesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSourcesResponse), type)) - return soap->error; - soap_element_result(soap, "trt:VideoSources"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoSource(soap, "trt:VideoSources", -1, &a->_trt__GetVideoSourcesResponse::VideoSources, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSourcesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSourcesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSourcesResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourcesResponse(struct soap *soap, const char *tag, _trt__GetVideoSourcesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSourcesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSourcesResponse, sizeof(_trt__GetVideoSourcesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSourcesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSourcesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoSource(soap, "trt:VideoSources", &a->_trt__GetVideoSourcesResponse::VideoSources, "tt:VideoSource")) - continue; - } - soap_check_result(soap, "trt:VideoSources"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoSourcesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSourcesResponse, SOAP_TYPE__trt__GetVideoSourcesResponse, sizeof(_trt__GetVideoSourcesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSourcesResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourcesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSourcesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSourcesResponse *p; - size_t k = sizeof(_trt__GetVideoSourcesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSourcesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSourcesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSourcesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSourcesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSourcesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSourcesResponse(soap, tag ? tag : "trt:GetVideoSourcesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSourcesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSourcesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSourcesResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourcesResponse(struct soap *soap, _trt__GetVideoSourcesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSourcesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetVideoSources::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetVideoSources::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetVideoSources::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetVideoSources(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSources(struct soap *soap, const char *tag, int id, const _trt__GetVideoSources *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetVideoSources), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetVideoSources::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetVideoSources(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetVideoSources * SOAP_FMAC4 soap_in__trt__GetVideoSources(struct soap *soap, const char *tag, _trt__GetVideoSources *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetVideoSources*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetVideoSources, sizeof(_trt__GetVideoSources), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetVideoSources) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetVideoSources *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetVideoSources *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetVideoSources, SOAP_TYPE__trt__GetVideoSources, sizeof(_trt__GetVideoSources), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetVideoSources * SOAP_FMAC2 soap_instantiate__trt__GetVideoSources(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetVideoSources(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetVideoSources *p; - size_t k = sizeof(_trt__GetVideoSources); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetVideoSources, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetVideoSources); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetVideoSources, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetVideoSources location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetVideoSources::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetVideoSources(soap, tag ? tag : "trt:GetVideoSources", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetVideoSources::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetVideoSources(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetVideoSources * SOAP_FMAC4 soap_get__trt__GetVideoSources(struct soap *soap, _trt__GetVideoSources *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetVideoSources(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_trt__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _trt__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotrt__Capabilities(soap, &this->_trt__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _trt__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _trt__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "trt:Capabilities"); - if (!a->_trt__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "trt:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrt__Capabilities(soap, "trt:Capabilities", -1, &a->_trt__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trt__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _trt__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetServiceCapabilitiesResponse, sizeof(_trt__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrt__Capabilities(soap, "trt:Capabilities", &a->_trt__GetServiceCapabilitiesResponse::Capabilities, "trt:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "trt:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_trt__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_trt__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetServiceCapabilitiesResponse, SOAP_TYPE__trt__GetServiceCapabilitiesResponse, sizeof(_trt__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trt__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_trt__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetServiceCapabilitiesResponse(soap, tag ? tag : "trt:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trt__GetServiceCapabilitiesResponse(struct soap *soap, _trt__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _trt__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _trt__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _trt__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__trt__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _trt__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__trt__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_trt__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__trt__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _trt__GetServiceCapabilities * SOAP_FMAC4 soap_in__trt__GetServiceCapabilities(struct soap *soap, const char *tag, _trt__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_trt__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__trt__GetServiceCapabilities, sizeof(_trt__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__trt__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_trt__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_trt__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__trt__GetServiceCapabilities, SOAP_TYPE__trt__GetServiceCapabilities, sizeof(_trt__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _trt__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trt__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__trt__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _trt__GetServiceCapabilities *p; - size_t k = sizeof(_trt__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__trt__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _trt__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _trt__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _trt__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _trt__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__trt__GetServiceCapabilities(soap, tag ? tag : "trt:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_trt__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__trt__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _trt__GetServiceCapabilities * SOAP_FMAC4 soap_get__trt__GetServiceCapabilities(struct soap *soap, _trt__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__trt__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trt__VideoSourceModeExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trt__VideoSourceModeExtension::__any); -} - -void trt__VideoSourceModeExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trt__VideoSourceModeExtension::__any); -#endif -} - -int trt__VideoSourceModeExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trt__VideoSourceModeExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__VideoSourceModeExtension(struct soap *soap, const char *tag, int id, const trt__VideoSourceModeExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trt__VideoSourceModeExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trt__VideoSourceModeExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trt__VideoSourceModeExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trt__VideoSourceModeExtension(soap, tag, this, type); -} - -SOAP_FMAC3 trt__VideoSourceModeExtension * SOAP_FMAC4 soap_in_trt__VideoSourceModeExtension(struct soap *soap, const char *tag, trt__VideoSourceModeExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trt__VideoSourceModeExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trt__VideoSourceModeExtension, sizeof(trt__VideoSourceModeExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trt__VideoSourceModeExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (trt__VideoSourceModeExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trt__VideoSourceModeExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trt__VideoSourceModeExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trt__VideoSourceModeExtension, SOAP_TYPE_trt__VideoSourceModeExtension, sizeof(trt__VideoSourceModeExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trt__VideoSourceModeExtension * SOAP_FMAC2 soap_instantiate_trt__VideoSourceModeExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trt__VideoSourceModeExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trt__VideoSourceModeExtension *p; - size_t k = sizeof(trt__VideoSourceModeExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trt__VideoSourceModeExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trt__VideoSourceModeExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trt__VideoSourceModeExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trt__VideoSourceModeExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trt__VideoSourceModeExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trt__VideoSourceModeExtension(soap, tag ? tag : "trt:VideoSourceModeExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trt__VideoSourceModeExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trt__VideoSourceModeExtension(soap, this, tag, type); -} - -SOAP_FMAC3 trt__VideoSourceModeExtension * SOAP_FMAC4 soap_get_trt__VideoSourceModeExtension(struct soap *soap, trt__VideoSourceModeExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_trt__VideoSourceModeExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trt__VideoSourceMode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->trt__VideoSourceMode::MaxFramerate); - this->trt__VideoSourceMode::MaxResolution = NULL; - soap_default_trt__EncodingTypes(soap, &this->trt__VideoSourceMode::Encodings); - soap_default_bool(soap, &this->trt__VideoSourceMode::Reboot); - this->trt__VideoSourceMode::Description = NULL; - this->trt__VideoSourceMode::Extension = NULL; - soap_default_tt__ReferenceToken(soap, &this->trt__VideoSourceMode::token); - this->trt__VideoSourceMode::Enabled = NULL; - soap_default_xsd__anyAttribute(soap, &this->trt__VideoSourceMode::__anyAttribute); -} - -void trt__VideoSourceMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->trt__VideoSourceMode::MaxFramerate, SOAP_TYPE_float); - soap_serialize_PointerTott__VideoResolution(soap, &this->trt__VideoSourceMode::MaxResolution); - soap_serialize_trt__EncodingTypes(soap, &this->trt__VideoSourceMode::Encodings); - soap_embedded(soap, &this->trt__VideoSourceMode::Reboot, SOAP_TYPE_bool); - soap_serialize_PointerTott__Description(soap, &this->trt__VideoSourceMode::Description); - soap_serialize_PointerTotrt__VideoSourceModeExtension(soap, &this->trt__VideoSourceMode::Extension); -#endif -} - -int trt__VideoSourceMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trt__VideoSourceMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__VideoSourceMode(struct soap *soap, const char *tag, int id, const trt__VideoSourceMode *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((trt__VideoSourceMode*)a)->token), 1); - if (((trt__VideoSourceMode*)a)->Enabled) - { soap_set_attr(soap, "Enabled", soap_bool2s(soap, *((trt__VideoSourceMode*)a)->Enabled), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trt__VideoSourceMode*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trt__VideoSourceMode), type)) - return soap->error; - if (soap_out_float(soap, "trt:MaxFramerate", -1, &a->trt__VideoSourceMode::MaxFramerate, "")) - return soap->error; - if (!a->trt__VideoSourceMode::MaxResolution) - { if (soap_element_empty(soap, "trt:MaxResolution", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoResolution(soap, "trt:MaxResolution", -1, &a->trt__VideoSourceMode::MaxResolution, "")) - return soap->error; - if (soap_out_trt__EncodingTypes(soap, "trt:Encodings", -1, &a->trt__VideoSourceMode::Encodings, "")) - return soap->error; - if (soap_out_bool(soap, "trt:Reboot", -1, &a->trt__VideoSourceMode::Reboot, "")) - return soap->error; - if (soap_out_PointerTott__Description(soap, "trt:Description", -1, &a->trt__VideoSourceMode::Description, "")) - return soap->error; - if (soap_out_PointerTotrt__VideoSourceModeExtension(soap, "trt:Extension", -1, &a->trt__VideoSourceMode::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trt__VideoSourceMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trt__VideoSourceMode(soap, tag, this, type); -} - -SOAP_FMAC3 trt__VideoSourceMode * SOAP_FMAC4 soap_in_trt__VideoSourceMode(struct soap *soap, const char *tag, trt__VideoSourceMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trt__VideoSourceMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trt__VideoSourceMode, sizeof(trt__VideoSourceMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trt__VideoSourceMode) - { soap_revert(soap); - *soap->id = '\0'; - return (trt__VideoSourceMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((trt__VideoSourceMode*)a)->token)) - return NULL; - { - const char *t = soap_attr_value(soap, "Enabled", 5, 0); - if (t) - { - if (!(((trt__VideoSourceMode*)a)->Enabled = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__VideoSourceMode*)a)->Enabled)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trt__VideoSourceMode*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MaxFramerate1 = 1; - size_t soap_flag_MaxResolution1 = 1; - size_t soap_flag_Encodings1 = 1; - size_t soap_flag_Reboot1 = 1; - size_t soap_flag_Description1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MaxFramerate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "trt:MaxFramerate", &a->trt__VideoSourceMode::MaxFramerate, "xsd:float")) - { soap_flag_MaxFramerate1--; - continue; - } - } - if (soap_flag_MaxResolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoResolution(soap, "trt:MaxResolution", &a->trt__VideoSourceMode::MaxResolution, "tt:VideoResolution")) - { soap_flag_MaxResolution1--; - continue; - } - } - if (soap_flag_Encodings1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_trt__EncodingTypes(soap, "trt:Encodings", &a->trt__VideoSourceMode::Encodings, "trt:EncodingTypes")) - { soap_flag_Encodings1--; - continue; - } - } - if (soap_flag_Reboot1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "trt:Reboot", &a->trt__VideoSourceMode::Reboot, "xsd:boolean")) - { soap_flag_Reboot1--; - continue; - } - } - if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__Description(soap, "trt:Description", &a->trt__VideoSourceMode::Description, "tt:Description")) - { soap_flag_Description1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrt__VideoSourceModeExtension(soap, "trt:Extension", &a->trt__VideoSourceMode::Extension, "trt:VideoSourceModeExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_MaxFramerate1 > 0 || !a->trt__VideoSourceMode::MaxResolution || soap_flag_Encodings1 > 0 || soap_flag_Reboot1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (trt__VideoSourceMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trt__VideoSourceMode, SOAP_TYPE_trt__VideoSourceMode, sizeof(trt__VideoSourceMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trt__VideoSourceMode * SOAP_FMAC2 soap_instantiate_trt__VideoSourceMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trt__VideoSourceMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trt__VideoSourceMode *p; - size_t k = sizeof(trt__VideoSourceMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trt__VideoSourceMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trt__VideoSourceMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trt__VideoSourceMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trt__VideoSourceMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trt__VideoSourceMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trt__VideoSourceMode(soap, tag ? tag : "trt:VideoSourceMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trt__VideoSourceMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trt__VideoSourceMode(soap, this, tag, type); -} - -SOAP_FMAC3 trt__VideoSourceMode * SOAP_FMAC4 soap_get_trt__VideoSourceMode(struct soap *soap, trt__VideoSourceMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_trt__VideoSourceMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trt__StreamingCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trt__StreamingCapabilities::__any); - this->trt__StreamingCapabilities::RTPMulticast = NULL; - this->trt__StreamingCapabilities::RTP_USCORETCP = NULL; - this->trt__StreamingCapabilities::RTP_USCORERTSP_USCORETCP = NULL; - this->trt__StreamingCapabilities::NonAggregateControl = NULL; - this->trt__StreamingCapabilities::NoRTSPStreaming = NULL; - soap_default_xsd__anyAttribute(soap, &this->trt__StreamingCapabilities::__anyAttribute); -} - -void trt__StreamingCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trt__StreamingCapabilities::__any); -#endif -} - -int trt__StreamingCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trt__StreamingCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__StreamingCapabilities(struct soap *soap, const char *tag, int id, const trt__StreamingCapabilities *a, const char *type) -{ - if (((trt__StreamingCapabilities*)a)->RTPMulticast) - { soap_set_attr(soap, "RTPMulticast", soap_bool2s(soap, *((trt__StreamingCapabilities*)a)->RTPMulticast), 1); - } - if (((trt__StreamingCapabilities*)a)->RTP_USCORETCP) - { soap_set_attr(soap, "RTP_TCP", soap_bool2s(soap, *((trt__StreamingCapabilities*)a)->RTP_USCORETCP), 1); - } - if (((trt__StreamingCapabilities*)a)->RTP_USCORERTSP_USCORETCP) - { soap_set_attr(soap, "RTP_RTSP_TCP", soap_bool2s(soap, *((trt__StreamingCapabilities*)a)->RTP_USCORERTSP_USCORETCP), 1); - } - if (((trt__StreamingCapabilities*)a)->NonAggregateControl) - { soap_set_attr(soap, "NonAggregateControl", soap_bool2s(soap, *((trt__StreamingCapabilities*)a)->NonAggregateControl), 1); - } - if (((trt__StreamingCapabilities*)a)->NoRTSPStreaming) - { soap_set_attr(soap, "NoRTSPStreaming", soap_bool2s(soap, *((trt__StreamingCapabilities*)a)->NoRTSPStreaming), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trt__StreamingCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trt__StreamingCapabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trt__StreamingCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trt__StreamingCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trt__StreamingCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 trt__StreamingCapabilities * SOAP_FMAC4 soap_in_trt__StreamingCapabilities(struct soap *soap, const char *tag, trt__StreamingCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trt__StreamingCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trt__StreamingCapabilities, sizeof(trt__StreamingCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trt__StreamingCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (trt__StreamingCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "RTPMulticast", 5, 0); - if (t) - { - if (!(((trt__StreamingCapabilities*)a)->RTPMulticast = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__StreamingCapabilities*)a)->RTPMulticast)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RTP_TCP", 5, 0); - if (t) - { - if (!(((trt__StreamingCapabilities*)a)->RTP_USCORETCP = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__StreamingCapabilities*)a)->RTP_USCORETCP)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RTP_RTSP_TCP", 5, 0); - if (t) - { - if (!(((trt__StreamingCapabilities*)a)->RTP_USCORERTSP_USCORETCP = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__StreamingCapabilities*)a)->RTP_USCORERTSP_USCORETCP)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "NonAggregateControl", 5, 0); - if (t) - { - if (!(((trt__StreamingCapabilities*)a)->NonAggregateControl = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__StreamingCapabilities*)a)->NonAggregateControl)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "NoRTSPStreaming", 5, 0); - if (t) - { - if (!(((trt__StreamingCapabilities*)a)->NoRTSPStreaming = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__StreamingCapabilities*)a)->NoRTSPStreaming)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trt__StreamingCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trt__StreamingCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trt__StreamingCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trt__StreamingCapabilities, SOAP_TYPE_trt__StreamingCapabilities, sizeof(trt__StreamingCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trt__StreamingCapabilities * SOAP_FMAC2 soap_instantiate_trt__StreamingCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trt__StreamingCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trt__StreamingCapabilities *p; - size_t k = sizeof(trt__StreamingCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trt__StreamingCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trt__StreamingCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trt__StreamingCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trt__StreamingCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trt__StreamingCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trt__StreamingCapabilities(soap, tag ? tag : "trt:StreamingCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trt__StreamingCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trt__StreamingCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 trt__StreamingCapabilities * SOAP_FMAC4 soap_get_trt__StreamingCapabilities(struct soap *soap, trt__StreamingCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_trt__StreamingCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trt__ProfileCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trt__ProfileCapabilities::__any); - this->trt__ProfileCapabilities::MaximumNumberOfProfiles = NULL; - soap_default_xsd__anyAttribute(soap, &this->trt__ProfileCapabilities::__anyAttribute); -} - -void trt__ProfileCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trt__ProfileCapabilities::__any); -#endif -} - -int trt__ProfileCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trt__ProfileCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__ProfileCapabilities(struct soap *soap, const char *tag, int id, const trt__ProfileCapabilities *a, const char *type) -{ - if (((trt__ProfileCapabilities*)a)->MaximumNumberOfProfiles) - { soap_set_attr(soap, "MaximumNumberOfProfiles", soap_int2s(soap, *((trt__ProfileCapabilities*)a)->MaximumNumberOfProfiles), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trt__ProfileCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trt__ProfileCapabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trt__ProfileCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trt__ProfileCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trt__ProfileCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 trt__ProfileCapabilities * SOAP_FMAC4 soap_in_trt__ProfileCapabilities(struct soap *soap, const char *tag, trt__ProfileCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trt__ProfileCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trt__ProfileCapabilities, sizeof(trt__ProfileCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trt__ProfileCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (trt__ProfileCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "MaximumNumberOfProfiles", 5, 0); - if (t) - { - if (!(((trt__ProfileCapabilities*)a)->MaximumNumberOfProfiles = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((trt__ProfileCapabilities*)a)->MaximumNumberOfProfiles)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trt__ProfileCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trt__ProfileCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (trt__ProfileCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trt__ProfileCapabilities, SOAP_TYPE_trt__ProfileCapabilities, sizeof(trt__ProfileCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trt__ProfileCapabilities * SOAP_FMAC2 soap_instantiate_trt__ProfileCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trt__ProfileCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trt__ProfileCapabilities *p; - size_t k = sizeof(trt__ProfileCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trt__ProfileCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trt__ProfileCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trt__ProfileCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trt__ProfileCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trt__ProfileCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trt__ProfileCapabilities(soap, tag ? tag : "trt:ProfileCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trt__ProfileCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trt__ProfileCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 trt__ProfileCapabilities * SOAP_FMAC4 soap_get_trt__ProfileCapabilities(struct soap *soap, trt__ProfileCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_trt__ProfileCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void trt__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->trt__Capabilities::ProfileCapabilities = NULL; - this->trt__Capabilities::StreamingCapabilities = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->trt__Capabilities::__any); - this->trt__Capabilities::SnapshotUri = NULL; - this->trt__Capabilities::Rotation = NULL; - this->trt__Capabilities::VideoSourceMode = NULL; - this->trt__Capabilities::OSD = NULL; - this->trt__Capabilities::EXICompression = NULL; - soap_default_xsd__anyAttribute(soap, &this->trt__Capabilities::__anyAttribute); -} - -void trt__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotrt__ProfileCapabilities(soap, &this->trt__Capabilities::ProfileCapabilities); - soap_serialize_PointerTotrt__StreamingCapabilities(soap, &this->trt__Capabilities::StreamingCapabilities); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->trt__Capabilities::__any); -#endif -} - -int trt__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_trt__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__Capabilities(struct soap *soap, const char *tag, int id, const trt__Capabilities *a, const char *type) -{ - if (((trt__Capabilities*)a)->SnapshotUri) - { soap_set_attr(soap, "SnapshotUri", soap_bool2s(soap, *((trt__Capabilities*)a)->SnapshotUri), 1); - } - if (((trt__Capabilities*)a)->Rotation) - { soap_set_attr(soap, "Rotation", soap_bool2s(soap, *((trt__Capabilities*)a)->Rotation), 1); - } - if (((trt__Capabilities*)a)->VideoSourceMode) - { soap_set_attr(soap, "VideoSourceMode", soap_bool2s(soap, *((trt__Capabilities*)a)->VideoSourceMode), 1); - } - if (((trt__Capabilities*)a)->OSD) - { soap_set_attr(soap, "OSD", soap_bool2s(soap, *((trt__Capabilities*)a)->OSD), 1); - } - if (((trt__Capabilities*)a)->EXICompression) - { soap_set_attr(soap, "EXICompression", soap_bool2s(soap, *((trt__Capabilities*)a)->EXICompression), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((trt__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_trt__Capabilities), type)) - return soap->error; - if (!a->trt__Capabilities::ProfileCapabilities) - { if (soap_element_empty(soap, "trt:ProfileCapabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrt__ProfileCapabilities(soap, "trt:ProfileCapabilities", -1, &a->trt__Capabilities::ProfileCapabilities, "")) - return soap->error; - if (!a->trt__Capabilities::StreamingCapabilities) - { if (soap_element_empty(soap, "trt:StreamingCapabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotrt__StreamingCapabilities(soap, "trt:StreamingCapabilities", -1, &a->trt__Capabilities::StreamingCapabilities, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->trt__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *trt__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_trt__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 trt__Capabilities * SOAP_FMAC4 soap_in_trt__Capabilities(struct soap *soap, const char *tag, trt__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (trt__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_trt__Capabilities, sizeof(trt__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_trt__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (trt__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "SnapshotUri", 5, 0); - if (t) - { - if (!(((trt__Capabilities*)a)->SnapshotUri = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__Capabilities*)a)->SnapshotUri)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Rotation", 5, 0); - if (t) - { - if (!(((trt__Capabilities*)a)->Rotation = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__Capabilities*)a)->Rotation)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "VideoSourceMode", 5, 0); - if (t) - { - if (!(((trt__Capabilities*)a)->VideoSourceMode = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__Capabilities*)a)->VideoSourceMode)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "OSD", 5, 0); - if (t) - { - if (!(((trt__Capabilities*)a)->OSD = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__Capabilities*)a)->OSD)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "EXICompression", 5, 0); - if (t) - { - if (!(((trt__Capabilities*)a)->EXICompression = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((trt__Capabilities*)a)->EXICompression)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((trt__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ProfileCapabilities1 = 1; - size_t soap_flag_StreamingCapabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrt__ProfileCapabilities(soap, "trt:ProfileCapabilities", &a->trt__Capabilities::ProfileCapabilities, "trt:ProfileCapabilities")) - { soap_flag_ProfileCapabilities1--; - continue; - } - } - if (soap_flag_StreamingCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotrt__StreamingCapabilities(soap, "trt:StreamingCapabilities", &a->trt__Capabilities::StreamingCapabilities, "trt:StreamingCapabilities")) - { soap_flag_StreamingCapabilities1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->trt__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->trt__Capabilities::ProfileCapabilities || !a->trt__Capabilities::StreamingCapabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (trt__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_trt__Capabilities, SOAP_TYPE_trt__Capabilities, sizeof(trt__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 trt__Capabilities * SOAP_FMAC2 soap_instantiate_trt__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_trt__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - trt__Capabilities *p; - size_t k = sizeof(trt__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_trt__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, trt__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, trt__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated trt__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int trt__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_trt__Capabilities(soap, tag ? tag : "trt:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *trt__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_trt__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 trt__Capabilities * SOAP_FMAC4 soap_get_trt__Capabilities(struct soap *soap, trt__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_trt__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xop__Include::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->xop__Include::__any); - soap_default_xsd__anyURI(soap, &this->xop__Include::href); - soap_default_xsd__anyAttribute(soap, &this->xop__Include::__anyAttribute); -} - -void xop__Include::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->xop__Include::__any); -#endif -} - -int xop__Include::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xop__Include(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xop__Include(struct soap *soap, const char *tag, int id, const xop__Include *a, const char *type) -{ - soap_set_attr(soap, "href", soap_xsd__anyURI2s(soap, ((xop__Include*)a)->href), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((xop__Include*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xop__Include), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->xop__Include::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *xop__Include::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xop__Include(soap, tag, this, type); -} - -SOAP_FMAC3 xop__Include * SOAP_FMAC4 soap_in_xop__Include(struct soap *soap, const char *tag, xop__Include *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (xop__Include*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xop__Include, sizeof(xop__Include), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_xop__Include) - { soap_revert(soap); - *soap->id = '\0'; - return (xop__Include *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__anyURI(soap, soap_attr_value(soap, "href", 4, 1), &((xop__Include*)a)->href)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((xop__Include*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->xop__Include::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (xop__Include *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xop__Include, SOAP_TYPE_xop__Include, sizeof(xop__Include), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 xop__Include * SOAP_FMAC2 soap_instantiate_xop__Include(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xop__Include(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xop__Include *p; - size_t k = sizeof(xop__Include); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xop__Include, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xop__Include); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xop__Include, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xop__Include location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xop__Include::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xop__Include(soap, tag ? tag : "xop:Include", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xop__Include::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xop__Include(soap, this, tag, type); -} - -SOAP_FMAC3 xop__Include * SOAP_FMAC4 soap_get_xop__Include(struct soap *soap, xop__Include *p, const char *tag, const char *type) -{ - if ((p = soap_in_xop__Include(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__SetCurrentPresetResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _timg__SetCurrentPresetResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _timg__SetCurrentPresetResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__SetCurrentPresetResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetCurrentPresetResponse(struct soap *soap, const char *tag, int id, const _timg__SetCurrentPresetResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__SetCurrentPresetResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__SetCurrentPresetResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__SetCurrentPresetResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__SetCurrentPresetResponse * SOAP_FMAC4 soap_in__timg__SetCurrentPresetResponse(struct soap *soap, const char *tag, _timg__SetCurrentPresetResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__SetCurrentPresetResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__SetCurrentPresetResponse, sizeof(_timg__SetCurrentPresetResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__SetCurrentPresetResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__SetCurrentPresetResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_timg__SetCurrentPresetResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__SetCurrentPresetResponse, SOAP_TYPE__timg__SetCurrentPresetResponse, sizeof(_timg__SetCurrentPresetResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__SetCurrentPresetResponse * SOAP_FMAC2 soap_instantiate__timg__SetCurrentPresetResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__SetCurrentPresetResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__SetCurrentPresetResponse *p; - size_t k = sizeof(_timg__SetCurrentPresetResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__SetCurrentPresetResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__SetCurrentPresetResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__SetCurrentPresetResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__SetCurrentPresetResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__SetCurrentPresetResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__SetCurrentPresetResponse(soap, tag ? tag : "timg:SetCurrentPresetResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__SetCurrentPresetResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__SetCurrentPresetResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__SetCurrentPresetResponse * SOAP_FMAC4 soap_get__timg__SetCurrentPresetResponse(struct soap *soap, _timg__SetCurrentPresetResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__SetCurrentPresetResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__SetCurrentPreset::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__SetCurrentPreset::VideoSourceToken); - soap_default_tt__ReferenceToken(soap, &this->_timg__SetCurrentPreset::PresetToken); -} - -void _timg__SetCurrentPreset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__SetCurrentPreset::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__SetCurrentPreset::VideoSourceToken); - soap_embedded(soap, &this->_timg__SetCurrentPreset::PresetToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__SetCurrentPreset::PresetToken); -#endif -} - -int _timg__SetCurrentPreset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__SetCurrentPreset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetCurrentPreset(struct soap *soap, const char *tag, int id, const _timg__SetCurrentPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__SetCurrentPreset), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__SetCurrentPreset::VideoSourceToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:PresetToken", -1, &a->_timg__SetCurrentPreset::PresetToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__SetCurrentPreset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__SetCurrentPreset(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__SetCurrentPreset * SOAP_FMAC4 soap_in__timg__SetCurrentPreset(struct soap *soap, const char *tag, _timg__SetCurrentPreset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__SetCurrentPreset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__SetCurrentPreset, sizeof(_timg__SetCurrentPreset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__SetCurrentPreset) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__SetCurrentPreset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - size_t soap_flag_PresetToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__SetCurrentPreset::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap_flag_PresetToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:PresetToken", &a->_timg__SetCurrentPreset::PresetToken, "tt:ReferenceToken")) - { soap_flag_PresetToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0 || soap_flag_PresetToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__SetCurrentPreset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__SetCurrentPreset, SOAP_TYPE__timg__SetCurrentPreset, sizeof(_timg__SetCurrentPreset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__SetCurrentPreset * SOAP_FMAC2 soap_instantiate__timg__SetCurrentPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__SetCurrentPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__SetCurrentPreset *p; - size_t k = sizeof(_timg__SetCurrentPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__SetCurrentPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__SetCurrentPreset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__SetCurrentPreset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__SetCurrentPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__SetCurrentPreset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__SetCurrentPreset(soap, tag ? tag : "timg:SetCurrentPreset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__SetCurrentPreset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__SetCurrentPreset(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__SetCurrentPreset * SOAP_FMAC4 soap_get__timg__SetCurrentPreset(struct soap *soap, _timg__SetCurrentPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__SetCurrentPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetCurrentPresetResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_timg__GetCurrentPresetResponse::Preset = NULL; -} - -void _timg__GetCurrentPresetResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotimg__ImagingPreset(soap, &this->_timg__GetCurrentPresetResponse::Preset); -#endif -} - -int _timg__GetCurrentPresetResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetCurrentPresetResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetCurrentPresetResponse(struct soap *soap, const char *tag, int id, const _timg__GetCurrentPresetResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetCurrentPresetResponse), type)) - return soap->error; - if (a->Preset) - soap_element_result(soap, "timg:Preset"); - if (soap_out_PointerTotimg__ImagingPreset(soap, "timg:Preset", -1, &a->_timg__GetCurrentPresetResponse::Preset, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetCurrentPresetResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetCurrentPresetResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetCurrentPresetResponse * SOAP_FMAC4 soap_in__timg__GetCurrentPresetResponse(struct soap *soap, const char *tag, _timg__GetCurrentPresetResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetCurrentPresetResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetCurrentPresetResponse, sizeof(_timg__GetCurrentPresetResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetCurrentPresetResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetCurrentPresetResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Preset1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Preset1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotimg__ImagingPreset(soap, "timg:Preset", &a->_timg__GetCurrentPresetResponse::Preset, "timg:ImagingPreset")) - { soap_flag_Preset1--; - continue; - } - } - soap_check_result(soap, "timg:Preset"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_timg__GetCurrentPresetResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetCurrentPresetResponse, SOAP_TYPE__timg__GetCurrentPresetResponse, sizeof(_timg__GetCurrentPresetResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetCurrentPresetResponse * SOAP_FMAC2 soap_instantiate__timg__GetCurrentPresetResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetCurrentPresetResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetCurrentPresetResponse *p; - size_t k = sizeof(_timg__GetCurrentPresetResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetCurrentPresetResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetCurrentPresetResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetCurrentPresetResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetCurrentPresetResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetCurrentPresetResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetCurrentPresetResponse(soap, tag ? tag : "timg:GetCurrentPresetResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetCurrentPresetResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetCurrentPresetResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetCurrentPresetResponse * SOAP_FMAC4 soap_get__timg__GetCurrentPresetResponse(struct soap *soap, _timg__GetCurrentPresetResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetCurrentPresetResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetCurrentPreset::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__GetCurrentPreset::VideoSourceToken); -} - -void _timg__GetCurrentPreset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__GetCurrentPreset::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__GetCurrentPreset::VideoSourceToken); -#endif -} - -int _timg__GetCurrentPreset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetCurrentPreset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetCurrentPreset(struct soap *soap, const char *tag, int id, const _timg__GetCurrentPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetCurrentPreset), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__GetCurrentPreset::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetCurrentPreset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetCurrentPreset(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetCurrentPreset * SOAP_FMAC4 soap_in__timg__GetCurrentPreset(struct soap *soap, const char *tag, _timg__GetCurrentPreset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetCurrentPreset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetCurrentPreset, sizeof(_timg__GetCurrentPreset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetCurrentPreset) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetCurrentPreset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__GetCurrentPreset::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetCurrentPreset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetCurrentPreset, SOAP_TYPE__timg__GetCurrentPreset, sizeof(_timg__GetCurrentPreset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetCurrentPreset * SOAP_FMAC2 soap_instantiate__timg__GetCurrentPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetCurrentPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetCurrentPreset *p; - size_t k = sizeof(_timg__GetCurrentPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetCurrentPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetCurrentPreset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetCurrentPreset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetCurrentPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetCurrentPreset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetCurrentPreset(soap, tag ? tag : "timg:GetCurrentPreset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetCurrentPreset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetCurrentPreset(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetCurrentPreset * SOAP_FMAC4 soap_get__timg__GetCurrentPreset(struct soap *soap, _timg__GetCurrentPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetCurrentPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetPresetsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTotimg__ImagingPreset(soap, &this->_timg__GetPresetsResponse::Preset); -} - -void _timg__GetPresetsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTotimg__ImagingPreset(soap, &this->_timg__GetPresetsResponse::Preset); -#endif -} - -int _timg__GetPresetsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetPresetsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetPresetsResponse(struct soap *soap, const char *tag, int id, const _timg__GetPresetsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetPresetsResponse), type)) - return soap->error; - soap_element_result(soap, "timg:Preset"); - if (soap_out_std__vectorTemplateOfPointerTotimg__ImagingPreset(soap, "timg:Preset", -1, &a->_timg__GetPresetsResponse::Preset, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetPresetsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetPresetsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetPresetsResponse * SOAP_FMAC4 soap_in__timg__GetPresetsResponse(struct soap *soap, const char *tag, _timg__GetPresetsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetPresetsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetPresetsResponse, sizeof(_timg__GetPresetsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetPresetsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetPresetsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTotimg__ImagingPreset(soap, "timg:Preset", &a->_timg__GetPresetsResponse::Preset, "timg:ImagingPreset")) - continue; - } - soap_check_result(soap, "timg:Preset"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_timg__GetPresetsResponse::Preset.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetPresetsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetPresetsResponse, SOAP_TYPE__timg__GetPresetsResponse, sizeof(_timg__GetPresetsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetPresetsResponse * SOAP_FMAC2 soap_instantiate__timg__GetPresetsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetPresetsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetPresetsResponse *p; - size_t k = sizeof(_timg__GetPresetsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetPresetsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetPresetsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetPresetsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetPresetsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetPresetsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetPresetsResponse(soap, tag ? tag : "timg:GetPresetsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetPresetsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetPresetsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetPresetsResponse * SOAP_FMAC4 soap_get__timg__GetPresetsResponse(struct soap *soap, _timg__GetPresetsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetPresetsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetPresets::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__GetPresets::VideoSourceToken); -} - -void _timg__GetPresets::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__GetPresets::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__GetPresets::VideoSourceToken); -#endif -} - -int _timg__GetPresets::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetPresets(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetPresets(struct soap *soap, const char *tag, int id, const _timg__GetPresets *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetPresets), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__GetPresets::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetPresets::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetPresets(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetPresets * SOAP_FMAC4 soap_in__timg__GetPresets(struct soap *soap, const char *tag, _timg__GetPresets *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetPresets*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetPresets, sizeof(_timg__GetPresets), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetPresets) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetPresets *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__GetPresets::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetPresets *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetPresets, SOAP_TYPE__timg__GetPresets, sizeof(_timg__GetPresets), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetPresets * SOAP_FMAC2 soap_instantiate__timg__GetPresets(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetPresets(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetPresets *p; - size_t k = sizeof(_timg__GetPresets); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetPresets, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetPresets); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetPresets, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetPresets location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetPresets::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetPresets(soap, tag ? tag : "timg:GetPresets", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetPresets::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetPresets(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetPresets * SOAP_FMAC4 soap_get__timg__GetPresets(struct soap *soap, _timg__GetPresets *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetPresets(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetStatusResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_timg__GetStatusResponse::Status = NULL; -} - -void _timg__GetStatusResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ImagingStatus20(soap, &this->_timg__GetStatusResponse::Status); -#endif -} - -int _timg__GetStatusResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetStatusResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetStatusResponse(struct soap *soap, const char *tag, int id, const _timg__GetStatusResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetStatusResponse), type)) - return soap->error; - if (a->Status) - soap_element_result(soap, "timg:Status"); - if (!a->_timg__GetStatusResponse::Status) - { if (soap_element_empty(soap, "timg:Status", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ImagingStatus20(soap, "timg:Status", -1, &a->_timg__GetStatusResponse::Status, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetStatusResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetStatusResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetStatusResponse * SOAP_FMAC4 soap_in__timg__GetStatusResponse(struct soap *soap, const char *tag, _timg__GetStatusResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetStatusResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetStatusResponse, sizeof(_timg__GetStatusResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetStatusResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetStatusResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Status1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Status1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingStatus20(soap, "timg:Status", &a->_timg__GetStatusResponse::Status, "tt:ImagingStatus20")) - { soap_flag_Status1--; - continue; - } - } - soap_check_result(soap, "timg:Status"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_timg__GetStatusResponse::Status)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetStatusResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetStatusResponse, SOAP_TYPE__timg__GetStatusResponse, sizeof(_timg__GetStatusResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetStatusResponse * SOAP_FMAC2 soap_instantiate__timg__GetStatusResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetStatusResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetStatusResponse *p; - size_t k = sizeof(_timg__GetStatusResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetStatusResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetStatusResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetStatusResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetStatusResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetStatusResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetStatusResponse(soap, tag ? tag : "timg:GetStatusResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetStatusResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetStatusResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetStatusResponse * SOAP_FMAC4 soap_get__timg__GetStatusResponse(struct soap *soap, _timg__GetStatusResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetStatusResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__GetStatus::VideoSourceToken); -} - -void _timg__GetStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__GetStatus::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__GetStatus::VideoSourceToken); -#endif -} - -int _timg__GetStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetStatus(struct soap *soap, const char *tag, int id, const _timg__GetStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetStatus), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__GetStatus::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetStatus(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetStatus * SOAP_FMAC4 soap_in__timg__GetStatus(struct soap *soap, const char *tag, _timg__GetStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetStatus, sizeof(_timg__GetStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__GetStatus::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetStatus, SOAP_TYPE__timg__GetStatus, sizeof(_timg__GetStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetStatus * SOAP_FMAC2 soap_instantiate__timg__GetStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetStatus *p; - size_t k = sizeof(_timg__GetStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetStatus(soap, tag ? tag : "timg:GetStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetStatus(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetStatus * SOAP_FMAC4 soap_get__timg__GetStatus(struct soap *soap, _timg__GetStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__StopResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _timg__StopResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _timg__StopResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__StopResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__StopResponse(struct soap *soap, const char *tag, int id, const _timg__StopResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__StopResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__StopResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__StopResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__StopResponse * SOAP_FMAC4 soap_in__timg__StopResponse(struct soap *soap, const char *tag, _timg__StopResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__StopResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__StopResponse, sizeof(_timg__StopResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__StopResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__StopResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_timg__StopResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__StopResponse, SOAP_TYPE__timg__StopResponse, sizeof(_timg__StopResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__StopResponse * SOAP_FMAC2 soap_instantiate__timg__StopResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__StopResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__StopResponse *p; - size_t k = sizeof(_timg__StopResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__StopResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__StopResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__StopResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__StopResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__StopResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__StopResponse(soap, tag ? tag : "timg:StopResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__StopResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__StopResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__StopResponse * SOAP_FMAC4 soap_get__timg__StopResponse(struct soap *soap, _timg__StopResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__StopResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__Stop::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__Stop::VideoSourceToken); -} - -void _timg__Stop::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__Stop::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__Stop::VideoSourceToken); -#endif -} - -int _timg__Stop::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__Stop(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__Stop(struct soap *soap, const char *tag, int id, const _timg__Stop *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__Stop), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__Stop::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__Stop::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__Stop(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__Stop * SOAP_FMAC4 soap_in__timg__Stop(struct soap *soap, const char *tag, _timg__Stop *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__Stop*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__Stop, sizeof(_timg__Stop), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__Stop) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__Stop *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__Stop::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__Stop *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__Stop, SOAP_TYPE__timg__Stop, sizeof(_timg__Stop), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__Stop * SOAP_FMAC2 soap_instantiate__timg__Stop(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__Stop(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__Stop *p; - size_t k = sizeof(_timg__Stop); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__Stop, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__Stop); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__Stop, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__Stop location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__Stop::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__Stop(soap, tag ? tag : "timg:Stop", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__Stop::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__Stop(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__Stop * SOAP_FMAC4 soap_get__timg__Stop(struct soap *soap, _timg__Stop *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__Stop(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetMoveOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_timg__GetMoveOptionsResponse::MoveOptions = NULL; -} - -void _timg__GetMoveOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MoveOptions20(soap, &this->_timg__GetMoveOptionsResponse::MoveOptions); -#endif -} - -int _timg__GetMoveOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetMoveOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetMoveOptionsResponse(struct soap *soap, const char *tag, int id, const _timg__GetMoveOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetMoveOptionsResponse), type)) - return soap->error; - if (a->MoveOptions) - soap_element_result(soap, "timg:MoveOptions"); - if (!a->_timg__GetMoveOptionsResponse::MoveOptions) - { if (soap_element_empty(soap, "timg:MoveOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MoveOptions20(soap, "timg:MoveOptions", -1, &a->_timg__GetMoveOptionsResponse::MoveOptions, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetMoveOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetMoveOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetMoveOptionsResponse * SOAP_FMAC4 soap_in__timg__GetMoveOptionsResponse(struct soap *soap, const char *tag, _timg__GetMoveOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetMoveOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetMoveOptionsResponse, sizeof(_timg__GetMoveOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetMoveOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetMoveOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_MoveOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MoveOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MoveOptions20(soap, "timg:MoveOptions", &a->_timg__GetMoveOptionsResponse::MoveOptions, "tt:MoveOptions20")) - { soap_flag_MoveOptions1--; - continue; - } - } - soap_check_result(soap, "timg:MoveOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_timg__GetMoveOptionsResponse::MoveOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetMoveOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetMoveOptionsResponse, SOAP_TYPE__timg__GetMoveOptionsResponse, sizeof(_timg__GetMoveOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetMoveOptionsResponse * SOAP_FMAC2 soap_instantiate__timg__GetMoveOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetMoveOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetMoveOptionsResponse *p; - size_t k = sizeof(_timg__GetMoveOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetMoveOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetMoveOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetMoveOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetMoveOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetMoveOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetMoveOptionsResponse(soap, tag ? tag : "timg:GetMoveOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetMoveOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetMoveOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetMoveOptionsResponse * SOAP_FMAC4 soap_get__timg__GetMoveOptionsResponse(struct soap *soap, _timg__GetMoveOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetMoveOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetMoveOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__GetMoveOptions::VideoSourceToken); -} - -void _timg__GetMoveOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__GetMoveOptions::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__GetMoveOptions::VideoSourceToken); -#endif -} - -int _timg__GetMoveOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetMoveOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetMoveOptions(struct soap *soap, const char *tag, int id, const _timg__GetMoveOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetMoveOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__GetMoveOptions::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetMoveOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetMoveOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetMoveOptions * SOAP_FMAC4 soap_in__timg__GetMoveOptions(struct soap *soap, const char *tag, _timg__GetMoveOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetMoveOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetMoveOptions, sizeof(_timg__GetMoveOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetMoveOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetMoveOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__GetMoveOptions::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetMoveOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetMoveOptions, SOAP_TYPE__timg__GetMoveOptions, sizeof(_timg__GetMoveOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetMoveOptions * SOAP_FMAC2 soap_instantiate__timg__GetMoveOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetMoveOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetMoveOptions *p; - size_t k = sizeof(_timg__GetMoveOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetMoveOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetMoveOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetMoveOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetMoveOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetMoveOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetMoveOptions(soap, tag ? tag : "timg:GetMoveOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetMoveOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetMoveOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetMoveOptions * SOAP_FMAC4 soap_get__timg__GetMoveOptions(struct soap *soap, _timg__GetMoveOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetMoveOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__MoveResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _timg__MoveResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _timg__MoveResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__MoveResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__MoveResponse(struct soap *soap, const char *tag, int id, const _timg__MoveResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__MoveResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__MoveResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__MoveResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__MoveResponse * SOAP_FMAC4 soap_in__timg__MoveResponse(struct soap *soap, const char *tag, _timg__MoveResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__MoveResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__MoveResponse, sizeof(_timg__MoveResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__MoveResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__MoveResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_timg__MoveResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__MoveResponse, SOAP_TYPE__timg__MoveResponse, sizeof(_timg__MoveResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__MoveResponse * SOAP_FMAC2 soap_instantiate__timg__MoveResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__MoveResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__MoveResponse *p; - size_t k = sizeof(_timg__MoveResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__MoveResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__MoveResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__MoveResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__MoveResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__MoveResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__MoveResponse(soap, tag ? tag : "timg:MoveResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__MoveResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__MoveResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__MoveResponse * SOAP_FMAC4 soap_get__timg__MoveResponse(struct soap *soap, _timg__MoveResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__MoveResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__Move::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__Move::VideoSourceToken); - this->_timg__Move::Focus = NULL; -} - -void _timg__Move::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__Move::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__Move::VideoSourceToken); - soap_serialize_PointerTott__FocusMove(soap, &this->_timg__Move::Focus); -#endif -} - -int _timg__Move::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__Move(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__Move(struct soap *soap, const char *tag, int id, const _timg__Move *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__Move), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__Move::VideoSourceToken, "")) - return soap->error; - if (!a->_timg__Move::Focus) - { if (soap_element_empty(soap, "timg:Focus", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FocusMove(soap, "timg:Focus", -1, &a->_timg__Move::Focus, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__Move::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__Move(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__Move * SOAP_FMAC4 soap_in__timg__Move(struct soap *soap, const char *tag, _timg__Move *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__Move*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__Move, sizeof(_timg__Move), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__Move) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__Move *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - size_t soap_flag_Focus1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__Move::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap_flag_Focus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusMove(soap, "timg:Focus", &a->_timg__Move::Focus, "tt:FocusMove")) - { soap_flag_Focus1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0 || !a->_timg__Move::Focus)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__Move *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__Move, SOAP_TYPE__timg__Move, sizeof(_timg__Move), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__Move * SOAP_FMAC2 soap_instantiate__timg__Move(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__Move(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__Move *p; - size_t k = sizeof(_timg__Move); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__Move, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__Move); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__Move, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__Move location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__Move::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__Move(soap, tag ? tag : "timg:Move", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__Move::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__Move(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__Move * SOAP_FMAC4 soap_get__timg__Move(struct soap *soap, _timg__Move *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__Move(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_timg__GetOptionsResponse::ImagingOptions = NULL; -} - -void _timg__GetOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ImagingOptions20(soap, &this->_timg__GetOptionsResponse::ImagingOptions); -#endif -} - -int _timg__GetOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetOptionsResponse(struct soap *soap, const char *tag, int id, const _timg__GetOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetOptionsResponse), type)) - return soap->error; - if (a->ImagingOptions) - soap_element_result(soap, "timg:ImagingOptions"); - if (!a->_timg__GetOptionsResponse::ImagingOptions) - { if (soap_element_empty(soap, "timg:ImagingOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ImagingOptions20(soap, "timg:ImagingOptions", -1, &a->_timg__GetOptionsResponse::ImagingOptions, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetOptionsResponse * SOAP_FMAC4 soap_in__timg__GetOptionsResponse(struct soap *soap, const char *tag, _timg__GetOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetOptionsResponse, sizeof(_timg__GetOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ImagingOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ImagingOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingOptions20(soap, "timg:ImagingOptions", &a->_timg__GetOptionsResponse::ImagingOptions, "tt:ImagingOptions20")) - { soap_flag_ImagingOptions1--; - continue; - } - } - soap_check_result(soap, "timg:ImagingOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_timg__GetOptionsResponse::ImagingOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetOptionsResponse, SOAP_TYPE__timg__GetOptionsResponse, sizeof(_timg__GetOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetOptionsResponse * SOAP_FMAC2 soap_instantiate__timg__GetOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetOptionsResponse *p; - size_t k = sizeof(_timg__GetOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetOptionsResponse(soap, tag ? tag : "timg:GetOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetOptionsResponse * SOAP_FMAC4 soap_get__timg__GetOptionsResponse(struct soap *soap, _timg__GetOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__GetOptions::VideoSourceToken); -} - -void _timg__GetOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__GetOptions::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__GetOptions::VideoSourceToken); -#endif -} - -int _timg__GetOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetOptions(struct soap *soap, const char *tag, int id, const _timg__GetOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__GetOptions::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetOptions * SOAP_FMAC4 soap_in__timg__GetOptions(struct soap *soap, const char *tag, _timg__GetOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetOptions, sizeof(_timg__GetOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__GetOptions::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetOptions, SOAP_TYPE__timg__GetOptions, sizeof(_timg__GetOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetOptions * SOAP_FMAC2 soap_instantiate__timg__GetOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetOptions *p; - size_t k = sizeof(_timg__GetOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetOptions(soap, tag ? tag : "timg:GetOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetOptions * SOAP_FMAC4 soap_get__timg__GetOptions(struct soap *soap, _timg__GetOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__SetImagingSettingsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _timg__SetImagingSettingsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _timg__SetImagingSettingsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__SetImagingSettingsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetImagingSettingsResponse(struct soap *soap, const char *tag, int id, const _timg__SetImagingSettingsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__SetImagingSettingsResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__SetImagingSettingsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__SetImagingSettingsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__SetImagingSettingsResponse * SOAP_FMAC4 soap_in__timg__SetImagingSettingsResponse(struct soap *soap, const char *tag, _timg__SetImagingSettingsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__SetImagingSettingsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__SetImagingSettingsResponse, sizeof(_timg__SetImagingSettingsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__SetImagingSettingsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__SetImagingSettingsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_timg__SetImagingSettingsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__SetImagingSettingsResponse, SOAP_TYPE__timg__SetImagingSettingsResponse, sizeof(_timg__SetImagingSettingsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__SetImagingSettingsResponse * SOAP_FMAC2 soap_instantiate__timg__SetImagingSettingsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__SetImagingSettingsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__SetImagingSettingsResponse *p; - size_t k = sizeof(_timg__SetImagingSettingsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__SetImagingSettingsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__SetImagingSettingsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__SetImagingSettingsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__SetImagingSettingsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__SetImagingSettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__SetImagingSettingsResponse(soap, tag ? tag : "timg:SetImagingSettingsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__SetImagingSettingsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__SetImagingSettingsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__SetImagingSettingsResponse * SOAP_FMAC4 soap_get__timg__SetImagingSettingsResponse(struct soap *soap, _timg__SetImagingSettingsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__SetImagingSettingsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__SetImagingSettings::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__SetImagingSettings::VideoSourceToken); - this->_timg__SetImagingSettings::ImagingSettings = NULL; - this->_timg__SetImagingSettings::ForcePersistence = NULL; -} - -void _timg__SetImagingSettings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__SetImagingSettings::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__SetImagingSettings::VideoSourceToken); - soap_serialize_PointerTott__ImagingSettings20(soap, &this->_timg__SetImagingSettings::ImagingSettings); - soap_serialize_PointerTobool(soap, &this->_timg__SetImagingSettings::ForcePersistence); -#endif -} - -int _timg__SetImagingSettings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__SetImagingSettings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetImagingSettings(struct soap *soap, const char *tag, int id, const _timg__SetImagingSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__SetImagingSettings), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__SetImagingSettings::VideoSourceToken, "")) - return soap->error; - if (!a->_timg__SetImagingSettings::ImagingSettings) - { if (soap_element_empty(soap, "timg:ImagingSettings", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ImagingSettings20(soap, "timg:ImagingSettings", -1, &a->_timg__SetImagingSettings::ImagingSettings, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "timg:ForcePersistence", -1, &a->_timg__SetImagingSettings::ForcePersistence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__SetImagingSettings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__SetImagingSettings(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__SetImagingSettings * SOAP_FMAC4 soap_in__timg__SetImagingSettings(struct soap *soap, const char *tag, _timg__SetImagingSettings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__SetImagingSettings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__SetImagingSettings, sizeof(_timg__SetImagingSettings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__SetImagingSettings) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__SetImagingSettings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - size_t soap_flag_ImagingSettings1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__SetImagingSettings::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap_flag_ImagingSettings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettings20(soap, "timg:ImagingSettings", &a->_timg__SetImagingSettings::ImagingSettings, "tt:ImagingSettings20")) - { soap_flag_ImagingSettings1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "timg:ForcePersistence", &a->_timg__SetImagingSettings::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0 || !a->_timg__SetImagingSettings::ImagingSettings)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__SetImagingSettings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__SetImagingSettings, SOAP_TYPE__timg__SetImagingSettings, sizeof(_timg__SetImagingSettings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__SetImagingSettings * SOAP_FMAC2 soap_instantiate__timg__SetImagingSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__SetImagingSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__SetImagingSettings *p; - size_t k = sizeof(_timg__SetImagingSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__SetImagingSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__SetImagingSettings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__SetImagingSettings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__SetImagingSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__SetImagingSettings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__SetImagingSettings(soap, tag ? tag : "timg:SetImagingSettings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__SetImagingSettings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__SetImagingSettings(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__SetImagingSettings * SOAP_FMAC4 soap_get__timg__SetImagingSettings(struct soap *soap, _timg__SetImagingSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__SetImagingSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetImagingSettingsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_timg__GetImagingSettingsResponse::ImagingSettings = NULL; -} - -void _timg__GetImagingSettingsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ImagingSettings20(soap, &this->_timg__GetImagingSettingsResponse::ImagingSettings); -#endif -} - -int _timg__GetImagingSettingsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetImagingSettingsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetImagingSettingsResponse(struct soap *soap, const char *tag, int id, const _timg__GetImagingSettingsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetImagingSettingsResponse), type)) - return soap->error; - if (a->ImagingSettings) - soap_element_result(soap, "timg:ImagingSettings"); - if (!a->_timg__GetImagingSettingsResponse::ImagingSettings) - { if (soap_element_empty(soap, "timg:ImagingSettings", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ImagingSettings20(soap, "timg:ImagingSettings", -1, &a->_timg__GetImagingSettingsResponse::ImagingSettings, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetImagingSettingsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetImagingSettingsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetImagingSettingsResponse * SOAP_FMAC4 soap_in__timg__GetImagingSettingsResponse(struct soap *soap, const char *tag, _timg__GetImagingSettingsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetImagingSettingsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetImagingSettingsResponse, sizeof(_timg__GetImagingSettingsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetImagingSettingsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetImagingSettingsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ImagingSettings1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ImagingSettings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettings20(soap, "timg:ImagingSettings", &a->_timg__GetImagingSettingsResponse::ImagingSettings, "tt:ImagingSettings20")) - { soap_flag_ImagingSettings1--; - continue; - } - } - soap_check_result(soap, "timg:ImagingSettings"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_timg__GetImagingSettingsResponse::ImagingSettings)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetImagingSettingsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetImagingSettingsResponse, SOAP_TYPE__timg__GetImagingSettingsResponse, sizeof(_timg__GetImagingSettingsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetImagingSettingsResponse * SOAP_FMAC2 soap_instantiate__timg__GetImagingSettingsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetImagingSettingsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetImagingSettingsResponse *p; - size_t k = sizeof(_timg__GetImagingSettingsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetImagingSettingsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetImagingSettingsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetImagingSettingsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetImagingSettingsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetImagingSettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetImagingSettingsResponse(soap, tag ? tag : "timg:GetImagingSettingsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetImagingSettingsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetImagingSettingsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetImagingSettingsResponse * SOAP_FMAC4 soap_get__timg__GetImagingSettingsResponse(struct soap *soap, _timg__GetImagingSettingsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetImagingSettingsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetImagingSettings::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_timg__GetImagingSettings::VideoSourceToken); -} - -void _timg__GetImagingSettings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_timg__GetImagingSettings::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_timg__GetImagingSettings::VideoSourceToken); -#endif -} - -int _timg__GetImagingSettings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetImagingSettings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetImagingSettings(struct soap *soap, const char *tag, int id, const _timg__GetImagingSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetImagingSettings), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "timg:VideoSourceToken", -1, &a->_timg__GetImagingSettings::VideoSourceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetImagingSettings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetImagingSettings(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetImagingSettings * SOAP_FMAC4 soap_in__timg__GetImagingSettings(struct soap *soap, const char *tag, _timg__GetImagingSettings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetImagingSettings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetImagingSettings, sizeof(_timg__GetImagingSettings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetImagingSettings) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetImagingSettings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "timg:VideoSourceToken", &a->_timg__GetImagingSettings::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetImagingSettings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetImagingSettings, SOAP_TYPE__timg__GetImagingSettings, sizeof(_timg__GetImagingSettings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetImagingSettings * SOAP_FMAC2 soap_instantiate__timg__GetImagingSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetImagingSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetImagingSettings *p; - size_t k = sizeof(_timg__GetImagingSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetImagingSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetImagingSettings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetImagingSettings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetImagingSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetImagingSettings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetImagingSettings(soap, tag ? tag : "timg:GetImagingSettings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetImagingSettings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetImagingSettings(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetImagingSettings * SOAP_FMAC4 soap_get__timg__GetImagingSettings(struct soap *soap, _timg__GetImagingSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetImagingSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_timg__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _timg__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotimg__Capabilities(soap, &this->_timg__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _timg__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _timg__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "timg:Capabilities"); - if (!a->_timg__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "timg:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotimg__Capabilities(soap, "timg:Capabilities", -1, &a->_timg__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__timg__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _timg__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetServiceCapabilitiesResponse, sizeof(_timg__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotimg__Capabilities(soap, "timg:Capabilities", &a->_timg__GetServiceCapabilitiesResponse::Capabilities, "timg:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "timg:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_timg__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_timg__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetServiceCapabilitiesResponse, SOAP_TYPE__timg__GetServiceCapabilitiesResponse, sizeof(_timg__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__timg__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_timg__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetServiceCapabilitiesResponse(soap, tag ? tag : "timg:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__timg__GetServiceCapabilitiesResponse(struct soap *soap, _timg__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _timg__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _timg__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _timg__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__timg__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _timg__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__timg__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_timg__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__timg__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _timg__GetServiceCapabilities * SOAP_FMAC4 soap_in__timg__GetServiceCapabilities(struct soap *soap, const char *tag, _timg__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_timg__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__timg__GetServiceCapabilities, sizeof(_timg__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__timg__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_timg__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_timg__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__timg__GetServiceCapabilities, SOAP_TYPE__timg__GetServiceCapabilities, sizeof(_timg__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _timg__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__timg__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__timg__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _timg__GetServiceCapabilities *p; - size_t k = sizeof(_timg__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__timg__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _timg__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _timg__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _timg__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _timg__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__timg__GetServiceCapabilities(soap, tag ? tag : "timg:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_timg__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__timg__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _timg__GetServiceCapabilities * SOAP_FMAC4 soap_get__timg__GetServiceCapabilities(struct soap *soap, _timg__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__timg__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void timg__ImagingPreset::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Name(soap, &this->timg__ImagingPreset::Name); - soap_default_tt__ReferenceToken(soap, &this->timg__ImagingPreset::token); - soap_default_std__string(soap, &this->timg__ImagingPreset::type); - soap_default_xsd__anyAttribute(soap, &this->timg__ImagingPreset::__anyAttribute); -} - -void timg__ImagingPreset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->timg__ImagingPreset::Name, SOAP_TYPE_tt__Name); - soap_serialize_tt__Name(soap, &this->timg__ImagingPreset::Name); -#endif -} - -int timg__ImagingPreset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_timg__ImagingPreset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__ImagingPreset(struct soap *soap, const char *tag, int id, const timg__ImagingPreset *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((timg__ImagingPreset*)a)->token), 1); - soap_set_attr(soap, "type", soap_std__string2s(soap, ((timg__ImagingPreset*)a)->type), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((timg__ImagingPreset*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_timg__ImagingPreset), type)) - return soap->error; - if (soap_out_tt__Name(soap, "timg:Name", -1, &a->timg__ImagingPreset::Name, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *timg__ImagingPreset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_timg__ImagingPreset(soap, tag, this, type); -} - -SOAP_FMAC3 timg__ImagingPreset * SOAP_FMAC4 soap_in_timg__ImagingPreset(struct soap *soap, const char *tag, timg__ImagingPreset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (timg__ImagingPreset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_timg__ImagingPreset, sizeof(timg__ImagingPreset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_timg__ImagingPreset) - { soap_revert(soap); - *soap->id = '\0'; - return (timg__ImagingPreset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((timg__ImagingPreset*)a)->token)) - return NULL; - if (soap_s2std__string(soap, soap_attr_value(soap, "type", 1, 1), &((timg__ImagingPreset*)a)->type)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((timg__ImagingPreset*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "timg:Name", &a->timg__ImagingPreset::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (timg__ImagingPreset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_timg__ImagingPreset, SOAP_TYPE_timg__ImagingPreset, sizeof(timg__ImagingPreset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 timg__ImagingPreset * SOAP_FMAC2 soap_instantiate_timg__ImagingPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_timg__ImagingPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - timg__ImagingPreset *p; - size_t k = sizeof(timg__ImagingPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_timg__ImagingPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, timg__ImagingPreset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, timg__ImagingPreset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated timg__ImagingPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int timg__ImagingPreset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_timg__ImagingPreset(soap, tag ? tag : "timg:ImagingPreset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *timg__ImagingPreset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_timg__ImagingPreset(soap, this, tag, type); -} - -SOAP_FMAC3 timg__ImagingPreset * SOAP_FMAC4 soap_get_timg__ImagingPreset(struct soap *soap, timg__ImagingPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in_timg__ImagingPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void timg__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->timg__Capabilities::__any); - this->timg__Capabilities::ImageStabilization = NULL; - this->timg__Capabilities::Presets = NULL; - soap_default_xsd__anyAttribute(soap, &this->timg__Capabilities::__anyAttribute); -} - -void timg__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->timg__Capabilities::__any); -#endif -} - -int timg__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_timg__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__Capabilities(struct soap *soap, const char *tag, int id, const timg__Capabilities *a, const char *type) -{ - if (((timg__Capabilities*)a)->ImageStabilization) - { soap_set_attr(soap, "ImageStabilization", soap_bool2s(soap, *((timg__Capabilities*)a)->ImageStabilization), 1); - } - if (((timg__Capabilities*)a)->Presets) - { soap_set_attr(soap, "Presets", soap_bool2s(soap, *((timg__Capabilities*)a)->Presets), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((timg__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_timg__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->timg__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *timg__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_timg__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 timg__Capabilities * SOAP_FMAC4 soap_in_timg__Capabilities(struct soap *soap, const char *tag, timg__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (timg__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_timg__Capabilities, sizeof(timg__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_timg__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (timg__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "ImageStabilization", 5, 0); - if (t) - { - if (!(((timg__Capabilities*)a)->ImageStabilization = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((timg__Capabilities*)a)->ImageStabilization)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Presets", 5, 0); - if (t) - { - if (!(((timg__Capabilities*)a)->Presets = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((timg__Capabilities*)a)->Presets)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((timg__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->timg__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (timg__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_timg__Capabilities, SOAP_TYPE_timg__Capabilities, sizeof(timg__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 timg__Capabilities * SOAP_FMAC2 soap_instantiate_timg__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_timg__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - timg__Capabilities *p; - size_t k = sizeof(timg__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_timg__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, timg__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, timg__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated timg__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int timg__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_timg__Capabilities(soap, tag ? tag : "timg:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *timg__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_timg__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 timg__Capabilities * SOAP_FMAC4 soap_get_timg__Capabilities(struct soap *soap, timg__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_timg__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__DeletePaneConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__DeletePaneConfigurationResponse::__any); -} - -void _tls__DeletePaneConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__DeletePaneConfigurationResponse::__any); -#endif -} - -int _tls__DeletePaneConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__DeletePaneConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__DeletePaneConfigurationResponse(struct soap *soap, const char *tag, int id, const _tls__DeletePaneConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__DeletePaneConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__DeletePaneConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__DeletePaneConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__DeletePaneConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__DeletePaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__DeletePaneConfigurationResponse(struct soap *soap, const char *tag, _tls__DeletePaneConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__DeletePaneConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__DeletePaneConfigurationResponse, sizeof(_tls__DeletePaneConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__DeletePaneConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__DeletePaneConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__DeletePaneConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tls__DeletePaneConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__DeletePaneConfigurationResponse, SOAP_TYPE__tls__DeletePaneConfigurationResponse, sizeof(_tls__DeletePaneConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__DeletePaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__DeletePaneConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__DeletePaneConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__DeletePaneConfigurationResponse *p; - size_t k = sizeof(_tls__DeletePaneConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__DeletePaneConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__DeletePaneConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__DeletePaneConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__DeletePaneConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__DeletePaneConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__DeletePaneConfigurationResponse(soap, tag ? tag : "tls:DeletePaneConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__DeletePaneConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__DeletePaneConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__DeletePaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__DeletePaneConfigurationResponse(struct soap *soap, _tls__DeletePaneConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__DeletePaneConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__DeletePaneConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__DeletePaneConfiguration::VideoOutput); - soap_default_tt__ReferenceToken(soap, &this->_tls__DeletePaneConfiguration::PaneToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__DeletePaneConfiguration::__any); -} - -void _tls__DeletePaneConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__DeletePaneConfiguration::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__DeletePaneConfiguration::VideoOutput); - soap_embedded(soap, &this->_tls__DeletePaneConfiguration::PaneToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__DeletePaneConfiguration::PaneToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__DeletePaneConfiguration::__any); -#endif -} - -int _tls__DeletePaneConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__DeletePaneConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__DeletePaneConfiguration(struct soap *soap, const char *tag, int id, const _tls__DeletePaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__DeletePaneConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__DeletePaneConfiguration::VideoOutput, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:PaneToken", -1, &a->_tls__DeletePaneConfiguration::PaneToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__DeletePaneConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__DeletePaneConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__DeletePaneConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__DeletePaneConfiguration * SOAP_FMAC4 soap_in__tls__DeletePaneConfiguration(struct soap *soap, const char *tag, _tls__DeletePaneConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__DeletePaneConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__DeletePaneConfiguration, sizeof(_tls__DeletePaneConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__DeletePaneConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__DeletePaneConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - size_t soap_flag_PaneToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__DeletePaneConfiguration::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap_flag_PaneToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:PaneToken", &a->_tls__DeletePaneConfiguration::PaneToken, "tt:ReferenceToken")) - { soap_flag_PaneToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__DeletePaneConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0 || soap_flag_PaneToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__DeletePaneConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__DeletePaneConfiguration, SOAP_TYPE__tls__DeletePaneConfiguration, sizeof(_tls__DeletePaneConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__DeletePaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__DeletePaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__DeletePaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__DeletePaneConfiguration *p; - size_t k = sizeof(_tls__DeletePaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__DeletePaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__DeletePaneConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__DeletePaneConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__DeletePaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__DeletePaneConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__DeletePaneConfiguration(soap, tag ? tag : "tls:DeletePaneConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__DeletePaneConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__DeletePaneConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__DeletePaneConfiguration * SOAP_FMAC4 soap_get__tls__DeletePaneConfiguration(struct soap *soap, _tls__DeletePaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__DeletePaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__CreatePaneConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__CreatePaneConfigurationResponse::PaneToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__CreatePaneConfigurationResponse::__any); -} - -void _tls__CreatePaneConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__CreatePaneConfigurationResponse::PaneToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__CreatePaneConfigurationResponse::PaneToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__CreatePaneConfigurationResponse::__any); -#endif -} - -int _tls__CreatePaneConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__CreatePaneConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__CreatePaneConfigurationResponse(struct soap *soap, const char *tag, int id, const _tls__CreatePaneConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__CreatePaneConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "tls:PaneToken"); - if (soap_out_tt__ReferenceToken(soap, "tls:PaneToken", -1, &a->_tls__CreatePaneConfigurationResponse::PaneToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__CreatePaneConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__CreatePaneConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__CreatePaneConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__CreatePaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__CreatePaneConfigurationResponse(struct soap *soap, const char *tag, _tls__CreatePaneConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__CreatePaneConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__CreatePaneConfigurationResponse, sizeof(_tls__CreatePaneConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__CreatePaneConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__CreatePaneConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PaneToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PaneToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:PaneToken", &a->_tls__CreatePaneConfigurationResponse::PaneToken, "tt:ReferenceToken")) - { soap_flag_PaneToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__CreatePaneConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tls:PaneToken"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_PaneToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__CreatePaneConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__CreatePaneConfigurationResponse, SOAP_TYPE__tls__CreatePaneConfigurationResponse, sizeof(_tls__CreatePaneConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__CreatePaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__CreatePaneConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__CreatePaneConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__CreatePaneConfigurationResponse *p; - size_t k = sizeof(_tls__CreatePaneConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__CreatePaneConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__CreatePaneConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__CreatePaneConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__CreatePaneConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__CreatePaneConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__CreatePaneConfigurationResponse(soap, tag ? tag : "tls:CreatePaneConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__CreatePaneConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__CreatePaneConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__CreatePaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__CreatePaneConfigurationResponse(struct soap *soap, _tls__CreatePaneConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__CreatePaneConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__CreatePaneConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__CreatePaneConfiguration::VideoOutput); - this->_tls__CreatePaneConfiguration::PaneConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__CreatePaneConfiguration::__any); -} - -void _tls__CreatePaneConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__CreatePaneConfiguration::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__CreatePaneConfiguration::VideoOutput); - soap_serialize_PointerTott__PaneConfiguration(soap, &this->_tls__CreatePaneConfiguration::PaneConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__CreatePaneConfiguration::__any); -#endif -} - -int _tls__CreatePaneConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__CreatePaneConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__CreatePaneConfiguration(struct soap *soap, const char *tag, int id, const _tls__CreatePaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__CreatePaneConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__CreatePaneConfiguration::VideoOutput, "")) - return soap->error; - if (!a->_tls__CreatePaneConfiguration::PaneConfiguration) - { if (soap_element_empty(soap, "tls:PaneConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", -1, &a->_tls__CreatePaneConfiguration::PaneConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__CreatePaneConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__CreatePaneConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__CreatePaneConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__CreatePaneConfiguration * SOAP_FMAC4 soap_in__tls__CreatePaneConfiguration(struct soap *soap, const char *tag, _tls__CreatePaneConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__CreatePaneConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__CreatePaneConfiguration, sizeof(_tls__CreatePaneConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__CreatePaneConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__CreatePaneConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - size_t soap_flag_PaneConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__CreatePaneConfiguration::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap_flag_PaneConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", &a->_tls__CreatePaneConfiguration::PaneConfiguration, "tt:PaneConfiguration")) - { soap_flag_PaneConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__CreatePaneConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0 || !a->_tls__CreatePaneConfiguration::PaneConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__CreatePaneConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__CreatePaneConfiguration, SOAP_TYPE__tls__CreatePaneConfiguration, sizeof(_tls__CreatePaneConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__CreatePaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__CreatePaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__CreatePaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__CreatePaneConfiguration *p; - size_t k = sizeof(_tls__CreatePaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__CreatePaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__CreatePaneConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__CreatePaneConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__CreatePaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__CreatePaneConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__CreatePaneConfiguration(soap, tag ? tag : "tls:CreatePaneConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__CreatePaneConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__CreatePaneConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__CreatePaneConfiguration * SOAP_FMAC4 soap_get__tls__CreatePaneConfiguration(struct soap *soap, _tls__CreatePaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__CreatePaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__SetPaneConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetPaneConfigurationResponse::__any); -} - -void _tls__SetPaneConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetPaneConfigurationResponse::__any); -#endif -} - -int _tls__SetPaneConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__SetPaneConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfigurationResponse(struct soap *soap, const char *tag, int id, const _tls__SetPaneConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__SetPaneConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__SetPaneConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__SetPaneConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__SetPaneConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__SetPaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__SetPaneConfigurationResponse(struct soap *soap, const char *tag, _tls__SetPaneConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__SetPaneConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__SetPaneConfigurationResponse, sizeof(_tls__SetPaneConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__SetPaneConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__SetPaneConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__SetPaneConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tls__SetPaneConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__SetPaneConfigurationResponse, SOAP_TYPE__tls__SetPaneConfigurationResponse, sizeof(_tls__SetPaneConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__SetPaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__SetPaneConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__SetPaneConfigurationResponse *p; - size_t k = sizeof(_tls__SetPaneConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__SetPaneConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__SetPaneConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__SetPaneConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__SetPaneConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__SetPaneConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__SetPaneConfigurationResponse(soap, tag ? tag : "tls:SetPaneConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__SetPaneConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__SetPaneConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__SetPaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__SetPaneConfigurationResponse(struct soap *soap, _tls__SetPaneConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__SetPaneConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__SetPaneConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__SetPaneConfiguration::VideoOutput); - this->_tls__SetPaneConfiguration::PaneConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetPaneConfiguration::__any); -} - -void _tls__SetPaneConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__SetPaneConfiguration::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__SetPaneConfiguration::VideoOutput); - soap_serialize_PointerTott__PaneConfiguration(soap, &this->_tls__SetPaneConfiguration::PaneConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetPaneConfiguration::__any); -#endif -} - -int _tls__SetPaneConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__SetPaneConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfiguration(struct soap *soap, const char *tag, int id, const _tls__SetPaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__SetPaneConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__SetPaneConfiguration::VideoOutput, "")) - return soap->error; - if (!a->_tls__SetPaneConfiguration::PaneConfiguration) - { if (soap_element_empty(soap, "tls:PaneConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", -1, &a->_tls__SetPaneConfiguration::PaneConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__SetPaneConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__SetPaneConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__SetPaneConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__SetPaneConfiguration * SOAP_FMAC4 soap_in__tls__SetPaneConfiguration(struct soap *soap, const char *tag, _tls__SetPaneConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__SetPaneConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__SetPaneConfiguration, sizeof(_tls__SetPaneConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__SetPaneConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__SetPaneConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - size_t soap_flag_PaneConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__SetPaneConfiguration::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap_flag_PaneConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", &a->_tls__SetPaneConfiguration::PaneConfiguration, "tt:PaneConfiguration")) - { soap_flag_PaneConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__SetPaneConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0 || !a->_tls__SetPaneConfiguration::PaneConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__SetPaneConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__SetPaneConfiguration, SOAP_TYPE__tls__SetPaneConfiguration, sizeof(_tls__SetPaneConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__SetPaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__SetPaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__SetPaneConfiguration *p; - size_t k = sizeof(_tls__SetPaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__SetPaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__SetPaneConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__SetPaneConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__SetPaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__SetPaneConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__SetPaneConfiguration(soap, tag ? tag : "tls:SetPaneConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__SetPaneConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__SetPaneConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__SetPaneConfiguration * SOAP_FMAC4 soap_get__tls__SetPaneConfiguration(struct soap *soap, _tls__SetPaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__SetPaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__SetPaneConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetPaneConfigurationsResponse::__any); -} - -void _tls__SetPaneConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetPaneConfigurationsResponse::__any); -#endif -} - -int _tls__SetPaneConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__SetPaneConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfigurationsResponse(struct soap *soap, const char *tag, int id, const _tls__SetPaneConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__SetPaneConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__SetPaneConfigurationsResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__SetPaneConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__SetPaneConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__SetPaneConfigurationsResponse * SOAP_FMAC4 soap_in__tls__SetPaneConfigurationsResponse(struct soap *soap, const char *tag, _tls__SetPaneConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__SetPaneConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__SetPaneConfigurationsResponse, sizeof(_tls__SetPaneConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__SetPaneConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__SetPaneConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__SetPaneConfigurationsResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tls__SetPaneConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__SetPaneConfigurationsResponse, SOAP_TYPE__tls__SetPaneConfigurationsResponse, sizeof(_tls__SetPaneConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__SetPaneConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__SetPaneConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__SetPaneConfigurationsResponse *p; - size_t k = sizeof(_tls__SetPaneConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__SetPaneConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__SetPaneConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__SetPaneConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__SetPaneConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__SetPaneConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__SetPaneConfigurationsResponse(soap, tag ? tag : "tls:SetPaneConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__SetPaneConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__SetPaneConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__SetPaneConfigurationsResponse * SOAP_FMAC4 soap_get__tls__SetPaneConfigurationsResponse(struct soap *soap, _tls__SetPaneConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__SetPaneConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__SetPaneConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__SetPaneConfigurations::VideoOutput); - soap_default_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, &this->_tls__SetPaneConfigurations::PaneConfiguration); -} - -void _tls__SetPaneConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__SetPaneConfigurations::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__SetPaneConfigurations::VideoOutput); - soap_serialize_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, &this->_tls__SetPaneConfigurations::PaneConfiguration); -#endif -} - -int _tls__SetPaneConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__SetPaneConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfigurations(struct soap *soap, const char *tag, int id, const _tls__SetPaneConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__SetPaneConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__SetPaneConfigurations::VideoOutput, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", -1, &a->_tls__SetPaneConfigurations::PaneConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__SetPaneConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__SetPaneConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__SetPaneConfigurations * SOAP_FMAC4 soap_in__tls__SetPaneConfigurations(struct soap *soap, const char *tag, _tls__SetPaneConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__SetPaneConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__SetPaneConfigurations, sizeof(_tls__SetPaneConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__SetPaneConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__SetPaneConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__SetPaneConfigurations::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", &a->_tls__SetPaneConfigurations::PaneConfiguration, "tt:PaneConfiguration")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0 || a->_tls__SetPaneConfigurations::PaneConfiguration.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__SetPaneConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__SetPaneConfigurations, SOAP_TYPE__tls__SetPaneConfigurations, sizeof(_tls__SetPaneConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__SetPaneConfigurations * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__SetPaneConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__SetPaneConfigurations *p; - size_t k = sizeof(_tls__SetPaneConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__SetPaneConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__SetPaneConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__SetPaneConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__SetPaneConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__SetPaneConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__SetPaneConfigurations(soap, tag ? tag : "tls:SetPaneConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__SetPaneConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__SetPaneConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__SetPaneConfigurations * SOAP_FMAC4 soap_get__tls__SetPaneConfigurations(struct soap *soap, _tls__SetPaneConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__SetPaneConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetPaneConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tls__GetPaneConfigurationResponse::PaneConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetPaneConfigurationResponse::__any); -} - -void _tls__GetPaneConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PaneConfiguration(soap, &this->_tls__GetPaneConfigurationResponse::PaneConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetPaneConfigurationResponse::__any); -#endif -} - -int _tls__GetPaneConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetPaneConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfigurationResponse(struct soap *soap, const char *tag, int id, const _tls__GetPaneConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetPaneConfigurationResponse), type)) - return soap->error; - if (a->PaneConfiguration) - soap_element_result(soap, "tls:PaneConfiguration"); - if (!a->_tls__GetPaneConfigurationResponse::PaneConfiguration) - { if (soap_element_empty(soap, "tls:PaneConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", -1, &a->_tls__GetPaneConfigurationResponse::PaneConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__GetPaneConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetPaneConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetPaneConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetPaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__GetPaneConfigurationResponse(struct soap *soap, const char *tag, _tls__GetPaneConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetPaneConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetPaneConfigurationResponse, sizeof(_tls__GetPaneConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetPaneConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetPaneConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PaneConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PaneConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", &a->_tls__GetPaneConfigurationResponse::PaneConfiguration, "tt:PaneConfiguration")) - { soap_flag_PaneConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__GetPaneConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tls:PaneConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tls__GetPaneConfigurationResponse::PaneConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetPaneConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetPaneConfigurationResponse, SOAP_TYPE__tls__GetPaneConfigurationResponse, sizeof(_tls__GetPaneConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetPaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetPaneConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetPaneConfigurationResponse *p; - size_t k = sizeof(_tls__GetPaneConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetPaneConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetPaneConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetPaneConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetPaneConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetPaneConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetPaneConfigurationResponse(soap, tag ? tag : "tls:GetPaneConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetPaneConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetPaneConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetPaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__GetPaneConfigurationResponse(struct soap *soap, _tls__GetPaneConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetPaneConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetPaneConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__GetPaneConfiguration::VideoOutput); - soap_default_tt__ReferenceToken(soap, &this->_tls__GetPaneConfiguration::Pane); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetPaneConfiguration::__any); -} - -void _tls__GetPaneConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__GetPaneConfiguration::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__GetPaneConfiguration::VideoOutput); - soap_embedded(soap, &this->_tls__GetPaneConfiguration::Pane, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__GetPaneConfiguration::Pane); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetPaneConfiguration::__any); -#endif -} - -int _tls__GetPaneConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetPaneConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfiguration(struct soap *soap, const char *tag, int id, const _tls__GetPaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetPaneConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__GetPaneConfiguration::VideoOutput, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:Pane", -1, &a->_tls__GetPaneConfiguration::Pane, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__GetPaneConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetPaneConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetPaneConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetPaneConfiguration * SOAP_FMAC4 soap_in__tls__GetPaneConfiguration(struct soap *soap, const char *tag, _tls__GetPaneConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetPaneConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetPaneConfiguration, sizeof(_tls__GetPaneConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetPaneConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetPaneConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - size_t soap_flag_Pane1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__GetPaneConfiguration::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap_flag_Pane1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:Pane", &a->_tls__GetPaneConfiguration::Pane, "tt:ReferenceToken")) - { soap_flag_Pane1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__GetPaneConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0 || soap_flag_Pane1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetPaneConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetPaneConfiguration, SOAP_TYPE__tls__GetPaneConfiguration, sizeof(_tls__GetPaneConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetPaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetPaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetPaneConfiguration *p; - size_t k = sizeof(_tls__GetPaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetPaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetPaneConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetPaneConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetPaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetPaneConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetPaneConfiguration(soap, tag ? tag : "tls:GetPaneConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetPaneConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetPaneConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetPaneConfiguration * SOAP_FMAC4 soap_get__tls__GetPaneConfiguration(struct soap *soap, _tls__GetPaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetPaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetPaneConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, &this->_tls__GetPaneConfigurationsResponse::PaneConfiguration); -} - -void _tls__GetPaneConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, &this->_tls__GetPaneConfigurationsResponse::PaneConfiguration); -#endif -} - -int _tls__GetPaneConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetPaneConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfigurationsResponse(struct soap *soap, const char *tag, int id, const _tls__GetPaneConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetPaneConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "tls:PaneConfiguration"); - if (soap_out_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", -1, &a->_tls__GetPaneConfigurationsResponse::PaneConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetPaneConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetPaneConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetPaneConfigurationsResponse * SOAP_FMAC4 soap_in__tls__GetPaneConfigurationsResponse(struct soap *soap, const char *tag, _tls__GetPaneConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetPaneConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetPaneConfigurationsResponse, sizeof(_tls__GetPaneConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetPaneConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetPaneConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, "tls:PaneConfiguration", &a->_tls__GetPaneConfigurationsResponse::PaneConfiguration, "tt:PaneConfiguration")) - continue; - } - soap_check_result(soap, "tls:PaneConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tls__GetPaneConfigurationsResponse::PaneConfiguration.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetPaneConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetPaneConfigurationsResponse, SOAP_TYPE__tls__GetPaneConfigurationsResponse, sizeof(_tls__GetPaneConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetPaneConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetPaneConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetPaneConfigurationsResponse *p; - size_t k = sizeof(_tls__GetPaneConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetPaneConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetPaneConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetPaneConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetPaneConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetPaneConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetPaneConfigurationsResponse(soap, tag ? tag : "tls:GetPaneConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetPaneConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetPaneConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetPaneConfigurationsResponse * SOAP_FMAC4 soap_get__tls__GetPaneConfigurationsResponse(struct soap *soap, _tls__GetPaneConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetPaneConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetPaneConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__GetPaneConfigurations::VideoOutput); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetPaneConfigurations::__any); -} - -void _tls__GetPaneConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__GetPaneConfigurations::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__GetPaneConfigurations::VideoOutput); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetPaneConfigurations::__any); -#endif -} - -int _tls__GetPaneConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetPaneConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfigurations(struct soap *soap, const char *tag, int id, const _tls__GetPaneConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetPaneConfigurations), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__GetPaneConfigurations::VideoOutput, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__GetPaneConfigurations::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetPaneConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetPaneConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetPaneConfigurations * SOAP_FMAC4 soap_in__tls__GetPaneConfigurations(struct soap *soap, const char *tag, _tls__GetPaneConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetPaneConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetPaneConfigurations, sizeof(_tls__GetPaneConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetPaneConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetPaneConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__GetPaneConfigurations::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__GetPaneConfigurations::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetPaneConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetPaneConfigurations, SOAP_TYPE__tls__GetPaneConfigurations, sizeof(_tls__GetPaneConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetPaneConfigurations * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetPaneConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetPaneConfigurations *p; - size_t k = sizeof(_tls__GetPaneConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetPaneConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetPaneConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetPaneConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetPaneConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetPaneConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetPaneConfigurations(soap, tag ? tag : "tls:GetPaneConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetPaneConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetPaneConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetPaneConfigurations * SOAP_FMAC4 soap_get__tls__GetPaneConfigurations(struct soap *soap, _tls__GetPaneConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetPaneConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetDisplayOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tls__GetDisplayOptionsResponse::LayoutOptions = NULL; - this->_tls__GetDisplayOptionsResponse::CodingCapabilities = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetDisplayOptionsResponse::__any); -} - -void _tls__GetDisplayOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__LayoutOptions(soap, &this->_tls__GetDisplayOptionsResponse::LayoutOptions); - soap_serialize_PointerTott__CodingCapabilities(soap, &this->_tls__GetDisplayOptionsResponse::CodingCapabilities); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetDisplayOptionsResponse::__any); -#endif -} - -int _tls__GetDisplayOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetDisplayOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetDisplayOptionsResponse(struct soap *soap, const char *tag, int id, const _tls__GetDisplayOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetDisplayOptionsResponse), type)) - return soap->error; - if (a->LayoutOptions) - soap_element_result(soap, "tls:LayoutOptions"); - if (soap_out_PointerTott__LayoutOptions(soap, "tls:LayoutOptions", -1, &a->_tls__GetDisplayOptionsResponse::LayoutOptions, "")) - return soap->error; - if (!a->_tls__GetDisplayOptionsResponse::CodingCapabilities) - { if (soap_element_empty(soap, "tls:CodingCapabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__CodingCapabilities(soap, "tls:CodingCapabilities", -1, &a->_tls__GetDisplayOptionsResponse::CodingCapabilities, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__GetDisplayOptionsResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetDisplayOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetDisplayOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetDisplayOptionsResponse * SOAP_FMAC4 soap_in__tls__GetDisplayOptionsResponse(struct soap *soap, const char *tag, _tls__GetDisplayOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetDisplayOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetDisplayOptionsResponse, sizeof(_tls__GetDisplayOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetDisplayOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetDisplayOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_LayoutOptions1 = 1; - size_t soap_flag_CodingCapabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_LayoutOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__LayoutOptions(soap, "tls:LayoutOptions", &a->_tls__GetDisplayOptionsResponse::LayoutOptions, "tt:LayoutOptions")) - { soap_flag_LayoutOptions1--; - continue; - } - } - if (soap_flag_CodingCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CodingCapabilities(soap, "tls:CodingCapabilities", &a->_tls__GetDisplayOptionsResponse::CodingCapabilities, "tt:CodingCapabilities")) - { soap_flag_CodingCapabilities1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__GetDisplayOptionsResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tls:LayoutOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tls__GetDisplayOptionsResponse::CodingCapabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetDisplayOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetDisplayOptionsResponse, SOAP_TYPE__tls__GetDisplayOptionsResponse, sizeof(_tls__GetDisplayOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetDisplayOptionsResponse * SOAP_FMAC2 soap_instantiate__tls__GetDisplayOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetDisplayOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetDisplayOptionsResponse *p; - size_t k = sizeof(_tls__GetDisplayOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetDisplayOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetDisplayOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetDisplayOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetDisplayOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetDisplayOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetDisplayOptionsResponse(soap, tag ? tag : "tls:GetDisplayOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetDisplayOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetDisplayOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetDisplayOptionsResponse * SOAP_FMAC4 soap_get__tls__GetDisplayOptionsResponse(struct soap *soap, _tls__GetDisplayOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetDisplayOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetDisplayOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__GetDisplayOptions::VideoOutput); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetDisplayOptions::__any); -} - -void _tls__GetDisplayOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__GetDisplayOptions::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__GetDisplayOptions::VideoOutput); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetDisplayOptions::__any); -#endif -} - -int _tls__GetDisplayOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetDisplayOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetDisplayOptions(struct soap *soap, const char *tag, int id, const _tls__GetDisplayOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetDisplayOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__GetDisplayOptions::VideoOutput, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__GetDisplayOptions::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetDisplayOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetDisplayOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetDisplayOptions * SOAP_FMAC4 soap_in__tls__GetDisplayOptions(struct soap *soap, const char *tag, _tls__GetDisplayOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetDisplayOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetDisplayOptions, sizeof(_tls__GetDisplayOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetDisplayOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetDisplayOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__GetDisplayOptions::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__GetDisplayOptions::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetDisplayOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetDisplayOptions, SOAP_TYPE__tls__GetDisplayOptions, sizeof(_tls__GetDisplayOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetDisplayOptions * SOAP_FMAC2 soap_instantiate__tls__GetDisplayOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetDisplayOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetDisplayOptions *p; - size_t k = sizeof(_tls__GetDisplayOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetDisplayOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetDisplayOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetDisplayOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetDisplayOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetDisplayOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetDisplayOptions(soap, tag ? tag : "tls:GetDisplayOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetDisplayOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetDisplayOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetDisplayOptions * SOAP_FMAC4 soap_get__tls__GetDisplayOptions(struct soap *soap, _tls__GetDisplayOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetDisplayOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__SetLayoutResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetLayoutResponse::__any); -} - -void _tls__SetLayoutResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetLayoutResponse::__any); -#endif -} - -int _tls__SetLayoutResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__SetLayoutResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetLayoutResponse(struct soap *soap, const char *tag, int id, const _tls__SetLayoutResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__SetLayoutResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__SetLayoutResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__SetLayoutResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__SetLayoutResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__SetLayoutResponse * SOAP_FMAC4 soap_in__tls__SetLayoutResponse(struct soap *soap, const char *tag, _tls__SetLayoutResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__SetLayoutResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__SetLayoutResponse, sizeof(_tls__SetLayoutResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__SetLayoutResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__SetLayoutResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__SetLayoutResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tls__SetLayoutResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__SetLayoutResponse, SOAP_TYPE__tls__SetLayoutResponse, sizeof(_tls__SetLayoutResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__SetLayoutResponse * SOAP_FMAC2 soap_instantiate__tls__SetLayoutResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__SetLayoutResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__SetLayoutResponse *p; - size_t k = sizeof(_tls__SetLayoutResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__SetLayoutResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__SetLayoutResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__SetLayoutResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__SetLayoutResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__SetLayoutResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__SetLayoutResponse(soap, tag ? tag : "tls:SetLayoutResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__SetLayoutResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__SetLayoutResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__SetLayoutResponse * SOAP_FMAC4 soap_get__tls__SetLayoutResponse(struct soap *soap, _tls__SetLayoutResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__SetLayoutResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__SetLayout::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__SetLayout::VideoOutput); - this->_tls__SetLayout::Layout = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetLayout::__any); -} - -void _tls__SetLayout::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__SetLayout::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__SetLayout::VideoOutput); - soap_serialize_PointerTott__Layout(soap, &this->_tls__SetLayout::Layout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__SetLayout::__any); -#endif -} - -int _tls__SetLayout::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__SetLayout(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetLayout(struct soap *soap, const char *tag, int id, const _tls__SetLayout *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__SetLayout), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__SetLayout::VideoOutput, "")) - return soap->error; - if (!a->_tls__SetLayout::Layout) - { if (soap_element_empty(soap, "tls:Layout", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Layout(soap, "tls:Layout", -1, &a->_tls__SetLayout::Layout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__SetLayout::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__SetLayout::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__SetLayout(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__SetLayout * SOAP_FMAC4 soap_in__tls__SetLayout(struct soap *soap, const char *tag, _tls__SetLayout *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__SetLayout*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__SetLayout, sizeof(_tls__SetLayout), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__SetLayout) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__SetLayout *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - size_t soap_flag_Layout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__SetLayout::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap_flag_Layout1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Layout(soap, "tls:Layout", &a->_tls__SetLayout::Layout, "tt:Layout")) - { soap_flag_Layout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__SetLayout::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0 || !a->_tls__SetLayout::Layout)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__SetLayout *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__SetLayout, SOAP_TYPE__tls__SetLayout, sizeof(_tls__SetLayout), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__SetLayout * SOAP_FMAC2 soap_instantiate__tls__SetLayout(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__SetLayout(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__SetLayout *p; - size_t k = sizeof(_tls__SetLayout); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__SetLayout, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__SetLayout); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__SetLayout, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__SetLayout location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__SetLayout::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__SetLayout(soap, tag ? tag : "tls:SetLayout", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__SetLayout::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__SetLayout(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__SetLayout * SOAP_FMAC4 soap_get__tls__SetLayout(struct soap *soap, _tls__SetLayout *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__SetLayout(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetLayoutResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tls__GetLayoutResponse::Layout = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetLayoutResponse::__any); -} - -void _tls__GetLayoutResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Layout(soap, &this->_tls__GetLayoutResponse::Layout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetLayoutResponse::__any); -#endif -} - -int _tls__GetLayoutResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetLayoutResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetLayoutResponse(struct soap *soap, const char *tag, int id, const _tls__GetLayoutResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetLayoutResponse), type)) - return soap->error; - if (a->Layout) - soap_element_result(soap, "tls:Layout"); - if (!a->_tls__GetLayoutResponse::Layout) - { if (soap_element_empty(soap, "tls:Layout", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Layout(soap, "tls:Layout", -1, &a->_tls__GetLayoutResponse::Layout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__GetLayoutResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetLayoutResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetLayoutResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetLayoutResponse * SOAP_FMAC4 soap_in__tls__GetLayoutResponse(struct soap *soap, const char *tag, _tls__GetLayoutResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetLayoutResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetLayoutResponse, sizeof(_tls__GetLayoutResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetLayoutResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetLayoutResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Layout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Layout1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Layout(soap, "tls:Layout", &a->_tls__GetLayoutResponse::Layout, "tt:Layout")) - { soap_flag_Layout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__GetLayoutResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tls:Layout"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tls__GetLayoutResponse::Layout)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetLayoutResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetLayoutResponse, SOAP_TYPE__tls__GetLayoutResponse, sizeof(_tls__GetLayoutResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetLayoutResponse * SOAP_FMAC2 soap_instantiate__tls__GetLayoutResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetLayoutResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetLayoutResponse *p; - size_t k = sizeof(_tls__GetLayoutResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetLayoutResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetLayoutResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetLayoutResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetLayoutResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetLayoutResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetLayoutResponse(soap, tag ? tag : "tls:GetLayoutResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetLayoutResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetLayoutResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetLayoutResponse * SOAP_FMAC4 soap_get__tls__GetLayoutResponse(struct soap *soap, _tls__GetLayoutResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetLayoutResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetLayout::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tls__GetLayout::VideoOutput); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetLayout::__any); -} - -void _tls__GetLayout::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tls__GetLayout::VideoOutput, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tls__GetLayout::VideoOutput); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tls__GetLayout::__any); -#endif -} - -int _tls__GetLayout::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetLayout(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetLayout(struct soap *soap, const char *tag, int id, const _tls__GetLayout *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetLayout), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tls:VideoOutput", -1, &a->_tls__GetLayout::VideoOutput, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tls__GetLayout::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetLayout::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetLayout(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetLayout * SOAP_FMAC4 soap_in__tls__GetLayout(struct soap *soap, const char *tag, _tls__GetLayout *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetLayout*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetLayout, sizeof(_tls__GetLayout), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetLayout) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetLayout *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutput1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutput1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tls:VideoOutput", &a->_tls__GetLayout::VideoOutput, "tt:ReferenceToken")) - { soap_flag_VideoOutput1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tls__GetLayout::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutput1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetLayout *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetLayout, SOAP_TYPE__tls__GetLayout, sizeof(_tls__GetLayout), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetLayout * SOAP_FMAC2 soap_instantiate__tls__GetLayout(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetLayout(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetLayout *p; - size_t k = sizeof(_tls__GetLayout); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetLayout, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetLayout); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetLayout, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetLayout location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetLayout::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetLayout(soap, tag ? tag : "tls:GetLayout", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetLayout::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetLayout(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetLayout * SOAP_FMAC4 soap_get__tls__GetLayout(struct soap *soap, _tls__GetLayout *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetLayout(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tls__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _tls__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotls__Capabilities(soap, &this->_tls__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _tls__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tls__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tls:Capabilities"); - if (!a->_tls__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tls:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotls__Capabilities(soap, "tls:Capabilities", -1, &a->_tls__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tls__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _tls__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetServiceCapabilitiesResponse, sizeof(_tls__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotls__Capabilities(soap, "tls:Capabilities", &a->_tls__GetServiceCapabilitiesResponse::Capabilities, "tls:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tls:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tls__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tls__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetServiceCapabilitiesResponse, SOAP_TYPE__tls__GetServiceCapabilitiesResponse, sizeof(_tls__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tls__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_tls__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetServiceCapabilitiesResponse(soap, tag ? tag : "tls:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tls__GetServiceCapabilitiesResponse(struct soap *soap, _tls__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tls__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tls__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tls__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tls__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _tls__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tls__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tls__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tls__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tls__GetServiceCapabilities * SOAP_FMAC4 soap_in__tls__GetServiceCapabilities(struct soap *soap, const char *tag, _tls__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tls__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tls__GetServiceCapabilities, sizeof(_tls__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tls__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tls__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tls__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tls__GetServiceCapabilities, SOAP_TYPE__tls__GetServiceCapabilities, sizeof(_tls__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tls__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tls__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tls__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tls__GetServiceCapabilities *p; - size_t k = sizeof(_tls__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tls__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tls__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tls__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tls__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tls__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tls__GetServiceCapabilities(soap, tag ? tag : "tls:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tls__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tls__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tls__GetServiceCapabilities * SOAP_FMAC4 soap_get__tls__GetServiceCapabilities(struct soap *soap, _tls__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tls__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tls__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tls__Capabilities::__any); - this->tls__Capabilities::FixedLayout = NULL; - soap_default_xsd__anyAttribute(soap, &this->tls__Capabilities::__anyAttribute); -} - -void tls__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tls__Capabilities::__any); -#endif -} - -int tls__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tls__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tls__Capabilities(struct soap *soap, const char *tag, int id, const tls__Capabilities *a, const char *type) -{ - if (((tls__Capabilities*)a)->FixedLayout) - { soap_set_attr(soap, "FixedLayout", soap_bool2s(soap, *((tls__Capabilities*)a)->FixedLayout), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tls__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tls__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tls__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tls__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tls__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tls__Capabilities * SOAP_FMAC4 soap_in_tls__Capabilities(struct soap *soap, const char *tag, tls__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tls__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tls__Capabilities, sizeof(tls__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tls__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tls__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "FixedLayout", 5, 0); - if (t) - { - if (!(((tls__Capabilities*)a)->FixedLayout = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tls__Capabilities*)a)->FixedLayout)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tls__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tls__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tls__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tls__Capabilities, SOAP_TYPE_tls__Capabilities, sizeof(tls__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tls__Capabilities * SOAP_FMAC2 soap_instantiate_tls__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tls__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tls__Capabilities *p; - size_t k = sizeof(tls__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tls__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tls__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tls__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tls__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tls__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tls__Capabilities(soap, tag ? tag : "tls:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tls__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tls__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tls__Capabilities * SOAP_FMAC4 soap_get_tls__Capabilities(struct soap *soap, tls__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tls__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteGeoLocationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__DeleteGeoLocationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__DeleteGeoLocationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteGeoLocationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteGeoLocationResponse(struct soap *soap, const char *tag, int id, const _tds__DeleteGeoLocationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteGeoLocationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteGeoLocationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteGeoLocationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteGeoLocationResponse * SOAP_FMAC4 soap_in__tds__DeleteGeoLocationResponse(struct soap *soap, const char *tag, _tds__DeleteGeoLocationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteGeoLocationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteGeoLocationResponse, sizeof(_tds__DeleteGeoLocationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteGeoLocationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteGeoLocationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__DeleteGeoLocationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteGeoLocationResponse, SOAP_TYPE__tds__DeleteGeoLocationResponse, sizeof(_tds__DeleteGeoLocationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteGeoLocationResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteGeoLocationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteGeoLocationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteGeoLocationResponse *p; - size_t k = sizeof(_tds__DeleteGeoLocationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteGeoLocationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteGeoLocationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteGeoLocationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteGeoLocationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteGeoLocationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteGeoLocationResponse(soap, tag ? tag : "tds:DeleteGeoLocationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteGeoLocationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteGeoLocationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteGeoLocationResponse * SOAP_FMAC4 soap_get__tds__DeleteGeoLocationResponse(struct soap *soap, _tds__DeleteGeoLocationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteGeoLocationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteGeoLocation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__LocationEntity(soap, &this->_tds__DeleteGeoLocation::Location); -} - -void _tds__DeleteGeoLocation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__LocationEntity(soap, &this->_tds__DeleteGeoLocation::Location); -#endif -} - -int _tds__DeleteGeoLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteGeoLocation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteGeoLocation(struct soap *soap, const char *tag, int id, const _tds__DeleteGeoLocation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteGeoLocation), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__LocationEntity(soap, "tds:Location", -1, &a->_tds__DeleteGeoLocation::Location, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteGeoLocation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteGeoLocation(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteGeoLocation * SOAP_FMAC4 soap_in__tds__DeleteGeoLocation(struct soap *soap, const char *tag, _tds__DeleteGeoLocation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteGeoLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteGeoLocation, sizeof(_tds__DeleteGeoLocation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteGeoLocation) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteGeoLocation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__LocationEntity(soap, "tds:Location", &a->_tds__DeleteGeoLocation::Location, "tt:LocationEntity")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__DeleteGeoLocation::Location.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__DeleteGeoLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteGeoLocation, SOAP_TYPE__tds__DeleteGeoLocation, sizeof(_tds__DeleteGeoLocation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteGeoLocation * SOAP_FMAC2 soap_instantiate__tds__DeleteGeoLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteGeoLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteGeoLocation *p; - size_t k = sizeof(_tds__DeleteGeoLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteGeoLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteGeoLocation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteGeoLocation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteGeoLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteGeoLocation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteGeoLocation(soap, tag ? tag : "tds:DeleteGeoLocation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteGeoLocation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteGeoLocation(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteGeoLocation * SOAP_FMAC4 soap_get__tds__DeleteGeoLocation(struct soap *soap, _tds__DeleteGeoLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteGeoLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetGeoLocationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetGeoLocationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetGeoLocationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetGeoLocationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetGeoLocationResponse(struct soap *soap, const char *tag, int id, const _tds__SetGeoLocationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetGeoLocationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetGeoLocationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetGeoLocationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetGeoLocationResponse * SOAP_FMAC4 soap_in__tds__SetGeoLocationResponse(struct soap *soap, const char *tag, _tds__SetGeoLocationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetGeoLocationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetGeoLocationResponse, sizeof(_tds__SetGeoLocationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetGeoLocationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetGeoLocationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetGeoLocationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetGeoLocationResponse, SOAP_TYPE__tds__SetGeoLocationResponse, sizeof(_tds__SetGeoLocationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetGeoLocationResponse * SOAP_FMAC2 soap_instantiate__tds__SetGeoLocationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetGeoLocationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetGeoLocationResponse *p; - size_t k = sizeof(_tds__SetGeoLocationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetGeoLocationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetGeoLocationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetGeoLocationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetGeoLocationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetGeoLocationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetGeoLocationResponse(soap, tag ? tag : "tds:SetGeoLocationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetGeoLocationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetGeoLocationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetGeoLocationResponse * SOAP_FMAC4 soap_get__tds__SetGeoLocationResponse(struct soap *soap, _tds__SetGeoLocationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetGeoLocationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetGeoLocation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__LocationEntity(soap, &this->_tds__SetGeoLocation::Location); -} - -void _tds__SetGeoLocation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__LocationEntity(soap, &this->_tds__SetGeoLocation::Location); -#endif -} - -int _tds__SetGeoLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetGeoLocation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetGeoLocation(struct soap *soap, const char *tag, int id, const _tds__SetGeoLocation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetGeoLocation), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__LocationEntity(soap, "tds:Location", -1, &a->_tds__SetGeoLocation::Location, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetGeoLocation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetGeoLocation(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetGeoLocation * SOAP_FMAC4 soap_in__tds__SetGeoLocation(struct soap *soap, const char *tag, _tds__SetGeoLocation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetGeoLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetGeoLocation, sizeof(_tds__SetGeoLocation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetGeoLocation) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetGeoLocation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__LocationEntity(soap, "tds:Location", &a->_tds__SetGeoLocation::Location, "tt:LocationEntity")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__SetGeoLocation::Location.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetGeoLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetGeoLocation, SOAP_TYPE__tds__SetGeoLocation, sizeof(_tds__SetGeoLocation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetGeoLocation * SOAP_FMAC2 soap_instantiate__tds__SetGeoLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetGeoLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetGeoLocation *p; - size_t k = sizeof(_tds__SetGeoLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetGeoLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetGeoLocation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetGeoLocation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetGeoLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetGeoLocation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetGeoLocation(soap, tag ? tag : "tds:SetGeoLocation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetGeoLocation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetGeoLocation(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetGeoLocation * SOAP_FMAC4 soap_get__tds__SetGeoLocation(struct soap *soap, _tds__SetGeoLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetGeoLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetGeoLocationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__LocationEntity(soap, &this->_tds__GetGeoLocationResponse::Location); -} - -void _tds__GetGeoLocationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__LocationEntity(soap, &this->_tds__GetGeoLocationResponse::Location); -#endif -} - -int _tds__GetGeoLocationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetGeoLocationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetGeoLocationResponse(struct soap *soap, const char *tag, int id, const _tds__GetGeoLocationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetGeoLocationResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Location"); - if (soap_out_std__vectorTemplateOfPointerTott__LocationEntity(soap, "tds:Location", -1, &a->_tds__GetGeoLocationResponse::Location, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetGeoLocationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetGeoLocationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetGeoLocationResponse * SOAP_FMAC4 soap_in__tds__GetGeoLocationResponse(struct soap *soap, const char *tag, _tds__GetGeoLocationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetGeoLocationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetGeoLocationResponse, sizeof(_tds__GetGeoLocationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetGeoLocationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetGeoLocationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__LocationEntity(soap, "tds:Location", &a->_tds__GetGeoLocationResponse::Location, "tt:LocationEntity")) - continue; - } - soap_check_result(soap, "tds:Location"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetGeoLocationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetGeoLocationResponse, SOAP_TYPE__tds__GetGeoLocationResponse, sizeof(_tds__GetGeoLocationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetGeoLocationResponse * SOAP_FMAC2 soap_instantiate__tds__GetGeoLocationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetGeoLocationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetGeoLocationResponse *p; - size_t k = sizeof(_tds__GetGeoLocationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetGeoLocationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetGeoLocationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetGeoLocationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetGeoLocationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetGeoLocationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetGeoLocationResponse(soap, tag ? tag : "tds:GetGeoLocationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetGeoLocationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetGeoLocationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetGeoLocationResponse * SOAP_FMAC4 soap_get__tds__GetGeoLocationResponse(struct soap *soap, _tds__GetGeoLocationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetGeoLocationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetGeoLocation::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetGeoLocation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetGeoLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetGeoLocation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetGeoLocation(struct soap *soap, const char *tag, int id, const _tds__GetGeoLocation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetGeoLocation), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetGeoLocation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetGeoLocation(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetGeoLocation * SOAP_FMAC4 soap_in__tds__GetGeoLocation(struct soap *soap, const char *tag, _tds__GetGeoLocation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetGeoLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetGeoLocation, sizeof(_tds__GetGeoLocation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetGeoLocation) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetGeoLocation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetGeoLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetGeoLocation, SOAP_TYPE__tds__GetGeoLocation, sizeof(_tds__GetGeoLocation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetGeoLocation * SOAP_FMAC2 soap_instantiate__tds__GetGeoLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetGeoLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetGeoLocation *p; - size_t k = sizeof(_tds__GetGeoLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetGeoLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetGeoLocation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetGeoLocation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetGeoLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetGeoLocation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetGeoLocation(soap, tag ? tag : "tds:GetGeoLocation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetGeoLocation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetGeoLocation(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetGeoLocation * SOAP_FMAC4 soap_get__tds__GetGeoLocation(struct soap *soap, _tds__GetGeoLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetGeoLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteStorageConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__DeleteStorageConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__DeleteStorageConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteStorageConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteStorageConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__DeleteStorageConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteStorageConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteStorageConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteStorageConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__DeleteStorageConfigurationResponse(struct soap *soap, const char *tag, _tds__DeleteStorageConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteStorageConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteStorageConfigurationResponse, sizeof(_tds__DeleteStorageConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteStorageConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteStorageConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__DeleteStorageConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteStorageConfigurationResponse, SOAP_TYPE__tds__DeleteStorageConfigurationResponse, sizeof(_tds__DeleteStorageConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteStorageConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteStorageConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteStorageConfigurationResponse *p; - size_t k = sizeof(_tds__DeleteStorageConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteStorageConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteStorageConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteStorageConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteStorageConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteStorageConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteStorageConfigurationResponse(soap, tag ? tag : "tds:DeleteStorageConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteStorageConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteStorageConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__DeleteStorageConfigurationResponse(struct soap *soap, _tds__DeleteStorageConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteStorageConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteStorageConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__DeleteStorageConfiguration::Token); -} - -void _tds__DeleteStorageConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__DeleteStorageConfiguration::Token, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__DeleteStorageConfiguration::Token); -#endif -} - -int _tds__DeleteStorageConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteStorageConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteStorageConfiguration(struct soap *soap, const char *tag, int id, const _tds__DeleteStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteStorageConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:Token", -1, &a->_tds__DeleteStorageConfiguration::Token, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteStorageConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteStorageConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_in__tds__DeleteStorageConfiguration(struct soap *soap, const char *tag, _tds__DeleteStorageConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteStorageConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteStorageConfiguration, sizeof(_tds__DeleteStorageConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteStorageConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteStorageConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Token1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:Token", &a->_tds__DeleteStorageConfiguration::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Token1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__DeleteStorageConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteStorageConfiguration, SOAP_TYPE__tds__DeleteStorageConfiguration, sizeof(_tds__DeleteStorageConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__DeleteStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteStorageConfiguration *p; - size_t k = sizeof(_tds__DeleteStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteStorageConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteStorageConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteStorageConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteStorageConfiguration(soap, tag ? tag : "tds:DeleteStorageConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteStorageConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteStorageConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_get__tds__DeleteStorageConfiguration(struct soap *soap, _tds__DeleteStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetStorageConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetStorageConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetStorageConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetStorageConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetStorageConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__SetStorageConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetStorageConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetStorageConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetStorageConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__SetStorageConfigurationResponse(struct soap *soap, const char *tag, _tds__SetStorageConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetStorageConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetStorageConfigurationResponse, sizeof(_tds__SetStorageConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetStorageConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetStorageConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetStorageConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetStorageConfigurationResponse, SOAP_TYPE__tds__SetStorageConfigurationResponse, sizeof(_tds__SetStorageConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__SetStorageConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetStorageConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetStorageConfigurationResponse *p; - size_t k = sizeof(_tds__SetStorageConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetStorageConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetStorageConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetStorageConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetStorageConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetStorageConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetStorageConfigurationResponse(soap, tag ? tag : "tds:SetStorageConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetStorageConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetStorageConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__SetStorageConfigurationResponse(struct soap *soap, _tds__SetStorageConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetStorageConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetStorageConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__SetStorageConfiguration::StorageConfiguration = NULL; -} - -void _tds__SetStorageConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotds__StorageConfiguration(soap, &this->_tds__SetStorageConfiguration::StorageConfiguration); -#endif -} - -int _tds__SetStorageConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetStorageConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetStorageConfiguration(struct soap *soap, const char *tag, int id, const _tds__SetStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetStorageConfiguration), type)) - return soap->error; - if (!a->_tds__SetStorageConfiguration::StorageConfiguration) - { if (soap_element_empty(soap, "tds:StorageConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__StorageConfiguration(soap, "tds:StorageConfiguration", -1, &a->_tds__SetStorageConfiguration::StorageConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetStorageConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetStorageConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetStorageConfiguration * SOAP_FMAC4 soap_in__tds__SetStorageConfiguration(struct soap *soap, const char *tag, _tds__SetStorageConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetStorageConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetStorageConfiguration, sizeof(_tds__SetStorageConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetStorageConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetStorageConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StorageConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StorageConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__StorageConfiguration(soap, "tds:StorageConfiguration", &a->_tds__SetStorageConfiguration::StorageConfiguration, "tds:StorageConfiguration")) - { soap_flag_StorageConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__SetStorageConfiguration::StorageConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetStorageConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetStorageConfiguration, SOAP_TYPE__tds__SetStorageConfiguration, sizeof(_tds__SetStorageConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__SetStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetStorageConfiguration *p; - size_t k = sizeof(_tds__SetStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetStorageConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetStorageConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetStorageConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetStorageConfiguration(soap, tag ? tag : "tds:SetStorageConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetStorageConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetStorageConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetStorageConfiguration * SOAP_FMAC4 soap_get__tds__SetStorageConfiguration(struct soap *soap, _tds__SetStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetStorageConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetStorageConfigurationResponse::StorageConfiguration = NULL; -} - -void _tds__GetStorageConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotds__StorageConfiguration(soap, &this->_tds__GetStorageConfigurationResponse::StorageConfiguration); -#endif -} - -int _tds__GetStorageConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetStorageConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__GetStorageConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetStorageConfigurationResponse), type)) - return soap->error; - if (a->StorageConfiguration) - soap_element_result(soap, "tds:StorageConfiguration"); - if (!a->_tds__GetStorageConfigurationResponse::StorageConfiguration) - { if (soap_element_empty(soap, "tds:StorageConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__StorageConfiguration(soap, "tds:StorageConfiguration", -1, &a->_tds__GetStorageConfigurationResponse::StorageConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetStorageConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetStorageConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__GetStorageConfigurationResponse(struct soap *soap, const char *tag, _tds__GetStorageConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetStorageConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetStorageConfigurationResponse, sizeof(_tds__GetStorageConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetStorageConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetStorageConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StorageConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StorageConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__StorageConfiguration(soap, "tds:StorageConfiguration", &a->_tds__GetStorageConfigurationResponse::StorageConfiguration, "tds:StorageConfiguration")) - { soap_flag_StorageConfiguration1--; - continue; - } - } - soap_check_result(soap, "tds:StorageConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetStorageConfigurationResponse::StorageConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetStorageConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetStorageConfigurationResponse, SOAP_TYPE__tds__GetStorageConfigurationResponse, sizeof(_tds__GetStorageConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetStorageConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetStorageConfigurationResponse *p; - size_t k = sizeof(_tds__GetStorageConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetStorageConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetStorageConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetStorageConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetStorageConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetStorageConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetStorageConfigurationResponse(soap, tag ? tag : "tds:GetStorageConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetStorageConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetStorageConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__GetStorageConfigurationResponse(struct soap *soap, _tds__GetStorageConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetStorageConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetStorageConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__GetStorageConfiguration::Token); -} - -void _tds__GetStorageConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetStorageConfiguration::Token, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__GetStorageConfiguration::Token); -#endif -} - -int _tds__GetStorageConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetStorageConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfiguration(struct soap *soap, const char *tag, int id, const _tds__GetStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetStorageConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:Token", -1, &a->_tds__GetStorageConfiguration::Token, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetStorageConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetStorageConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetStorageConfiguration * SOAP_FMAC4 soap_in__tds__GetStorageConfiguration(struct soap *soap, const char *tag, _tds__GetStorageConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetStorageConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetStorageConfiguration, sizeof(_tds__GetStorageConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetStorageConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetStorageConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Token1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:Token", &a->_tds__GetStorageConfiguration::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Token1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetStorageConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetStorageConfiguration, SOAP_TYPE__tds__GetStorageConfiguration, sizeof(_tds__GetStorageConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetStorageConfiguration *p; - size_t k = sizeof(_tds__GetStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetStorageConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetStorageConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetStorageConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetStorageConfiguration(soap, tag ? tag : "tds:GetStorageConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetStorageConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetStorageConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetStorageConfiguration * SOAP_FMAC4 soap_get__tds__GetStorageConfiguration(struct soap *soap, _tds__GetStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateStorageConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__CreateStorageConfigurationResponse::Token); -} - -void _tds__CreateStorageConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__CreateStorageConfigurationResponse::Token, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__CreateStorageConfigurationResponse::Token); -#endif -} - -int _tds__CreateStorageConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateStorageConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateStorageConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__CreateStorageConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateStorageConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Token"); - if (soap_out_tt__ReferenceToken(soap, "tds:Token", -1, &a->_tds__CreateStorageConfigurationResponse::Token, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateStorageConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateStorageConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__CreateStorageConfigurationResponse(struct soap *soap, const char *tag, _tds__CreateStorageConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateStorageConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateStorageConfigurationResponse, sizeof(_tds__CreateStorageConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateStorageConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateStorageConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Token1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:Token", &a->_tds__CreateStorageConfigurationResponse::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - soap_check_result(soap, "tds:Token"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Token1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__CreateStorageConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateStorageConfigurationResponse, SOAP_TYPE__tds__CreateStorageConfigurationResponse, sizeof(_tds__CreateStorageConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__CreateStorageConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateStorageConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateStorageConfigurationResponse *p; - size_t k = sizeof(_tds__CreateStorageConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateStorageConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateStorageConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateStorageConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateStorageConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateStorageConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateStorageConfigurationResponse(soap, tag ? tag : "tds:CreateStorageConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateStorageConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateStorageConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__CreateStorageConfigurationResponse(struct soap *soap, _tds__CreateStorageConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateStorageConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateStorageConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__CreateStorageConfiguration::StorageConfiguration = NULL; -} - -void _tds__CreateStorageConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotds__StorageConfigurationData(soap, &this->_tds__CreateStorageConfiguration::StorageConfiguration); -#endif -} - -int _tds__CreateStorageConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateStorageConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateStorageConfiguration(struct soap *soap, const char *tag, int id, const _tds__CreateStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateStorageConfiguration), type)) - return soap->error; - if (!a->_tds__CreateStorageConfiguration::StorageConfiguration) - { if (soap_element_empty(soap, "tds:StorageConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__StorageConfigurationData(soap, "tds:StorageConfiguration", -1, &a->_tds__CreateStorageConfiguration::StorageConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateStorageConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateStorageConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateStorageConfiguration * SOAP_FMAC4 soap_in__tds__CreateStorageConfiguration(struct soap *soap, const char *tag, _tds__CreateStorageConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateStorageConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateStorageConfiguration, sizeof(_tds__CreateStorageConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateStorageConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateStorageConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_StorageConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StorageConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__StorageConfigurationData(soap, "tds:StorageConfiguration", &a->_tds__CreateStorageConfiguration::StorageConfiguration, "tds:StorageConfigurationData")) - { soap_flag_StorageConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__CreateStorageConfiguration::StorageConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__CreateStorageConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateStorageConfiguration, SOAP_TYPE__tds__CreateStorageConfiguration, sizeof(_tds__CreateStorageConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__CreateStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateStorageConfiguration *p; - size_t k = sizeof(_tds__CreateStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateStorageConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateStorageConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateStorageConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateStorageConfiguration(soap, tag ? tag : "tds:CreateStorageConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateStorageConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateStorageConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateStorageConfiguration * SOAP_FMAC4 soap_get__tds__CreateStorageConfiguration(struct soap *soap, _tds__CreateStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetStorageConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTotds__StorageConfiguration(soap, &this->_tds__GetStorageConfigurationsResponse::StorageConfigurations); -} - -void _tds__GetStorageConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTotds__StorageConfiguration(soap, &this->_tds__GetStorageConfigurationsResponse::StorageConfigurations); -#endif -} - -int _tds__GetStorageConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetStorageConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfigurationsResponse(struct soap *soap, const char *tag, int id, const _tds__GetStorageConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetStorageConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "tds:StorageConfigurations"); - if (soap_out_std__vectorTemplateOfPointerTotds__StorageConfiguration(soap, "tds:StorageConfigurations", -1, &a->_tds__GetStorageConfigurationsResponse::StorageConfigurations, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetStorageConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetStorageConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetStorageConfigurationsResponse * SOAP_FMAC4 soap_in__tds__GetStorageConfigurationsResponse(struct soap *soap, const char *tag, _tds__GetStorageConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetStorageConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetStorageConfigurationsResponse, sizeof(_tds__GetStorageConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetStorageConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetStorageConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTotds__StorageConfiguration(soap, "tds:StorageConfigurations", &a->_tds__GetStorageConfigurationsResponse::StorageConfigurations, "tds:StorageConfiguration")) - continue; - } - soap_check_result(soap, "tds:StorageConfigurations"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetStorageConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetStorageConfigurationsResponse, SOAP_TYPE__tds__GetStorageConfigurationsResponse, sizeof(_tds__GetStorageConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetStorageConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetStorageConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetStorageConfigurationsResponse *p; - size_t k = sizeof(_tds__GetStorageConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetStorageConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetStorageConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetStorageConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetStorageConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetStorageConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetStorageConfigurationsResponse(soap, tag ? tag : "tds:GetStorageConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetStorageConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetStorageConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetStorageConfigurationsResponse * SOAP_FMAC4 soap_get__tds__GetStorageConfigurationsResponse(struct soap *soap, _tds__GetStorageConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetStorageConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetStorageConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetStorageConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetStorageConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetStorageConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfigurations(struct soap *soap, const char *tag, int id, const _tds__GetStorageConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetStorageConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetStorageConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetStorageConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetStorageConfigurations * SOAP_FMAC4 soap_in__tds__GetStorageConfigurations(struct soap *soap, const char *tag, _tds__GetStorageConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetStorageConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetStorageConfigurations, sizeof(_tds__GetStorageConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetStorageConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetStorageConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetStorageConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetStorageConfigurations, SOAP_TYPE__tds__GetStorageConfigurations, sizeof(_tds__GetStorageConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetStorageConfigurations * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetStorageConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetStorageConfigurations *p; - size_t k = sizeof(_tds__GetStorageConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetStorageConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetStorageConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetStorageConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetStorageConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetStorageConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetStorageConfigurations(soap, tag ? tag : "tds:GetStorageConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetStorageConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetStorageConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetStorageConfigurations * SOAP_FMAC4 soap_get__tds__GetStorageConfigurations(struct soap *soap, _tds__GetStorageConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetStorageConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__StartSystemRestoreResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->_tds__StartSystemRestoreResponse::UploadUri); - soap_default_xsd__duration(soap, &this->_tds__StartSystemRestoreResponse::ExpectedDownTime); -} - -void _tds__StartSystemRestoreResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__StartSystemRestoreResponse::UploadUri, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->_tds__StartSystemRestoreResponse::UploadUri); - soap_embedded(soap, &this->_tds__StartSystemRestoreResponse::ExpectedDownTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tds__StartSystemRestoreResponse::ExpectedDownTime); -#endif -} - -int _tds__StartSystemRestoreResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__StartSystemRestoreResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartSystemRestoreResponse(struct soap *soap, const char *tag, int id, const _tds__StartSystemRestoreResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__StartSystemRestoreResponse), type)) - return soap->error; - soap_element_result(soap, "tds:UploadUri"); - if (soap_out_xsd__anyURI(soap, "tds:UploadUri", -1, &a->_tds__StartSystemRestoreResponse::UploadUri, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tds:ExpectedDownTime", -1, &a->_tds__StartSystemRestoreResponse::ExpectedDownTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__StartSystemRestoreResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__StartSystemRestoreResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__StartSystemRestoreResponse * SOAP_FMAC4 soap_in__tds__StartSystemRestoreResponse(struct soap *soap, const char *tag, _tds__StartSystemRestoreResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__StartSystemRestoreResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__StartSystemRestoreResponse, sizeof(_tds__StartSystemRestoreResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__StartSystemRestoreResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__StartSystemRestoreResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_UploadUri1 = 1; - size_t soap_flag_ExpectedDownTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_UploadUri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tds:UploadUri", &a->_tds__StartSystemRestoreResponse::UploadUri, "xsd:anyURI")) - { soap_flag_UploadUri1--; - continue; - } - } - if (soap_flag_ExpectedDownTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tds:ExpectedDownTime", &a->_tds__StartSystemRestoreResponse::ExpectedDownTime, "xsd:duration")) - { soap_flag_ExpectedDownTime1--; - continue; - } - } - soap_check_result(soap, "tds:UploadUri"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_UploadUri1 > 0 || soap_flag_ExpectedDownTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__StartSystemRestoreResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__StartSystemRestoreResponse, SOAP_TYPE__tds__StartSystemRestoreResponse, sizeof(_tds__StartSystemRestoreResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__StartSystemRestoreResponse * SOAP_FMAC2 soap_instantiate__tds__StartSystemRestoreResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__StartSystemRestoreResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__StartSystemRestoreResponse *p; - size_t k = sizeof(_tds__StartSystemRestoreResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__StartSystemRestoreResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__StartSystemRestoreResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__StartSystemRestoreResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__StartSystemRestoreResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__StartSystemRestoreResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__StartSystemRestoreResponse(soap, tag ? tag : "tds:StartSystemRestoreResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__StartSystemRestoreResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__StartSystemRestoreResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__StartSystemRestoreResponse * SOAP_FMAC4 soap_get__tds__StartSystemRestoreResponse(struct soap *soap, _tds__StartSystemRestoreResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__StartSystemRestoreResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__StartSystemRestore::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__StartSystemRestore::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__StartSystemRestore::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__StartSystemRestore(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartSystemRestore(struct soap *soap, const char *tag, int id, const _tds__StartSystemRestore *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__StartSystemRestore), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__StartSystemRestore::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__StartSystemRestore(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__StartSystemRestore * SOAP_FMAC4 soap_in__tds__StartSystemRestore(struct soap *soap, const char *tag, _tds__StartSystemRestore *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__StartSystemRestore*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__StartSystemRestore, sizeof(_tds__StartSystemRestore), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__StartSystemRestore) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__StartSystemRestore *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__StartSystemRestore *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__StartSystemRestore, SOAP_TYPE__tds__StartSystemRestore, sizeof(_tds__StartSystemRestore), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__StartSystemRestore * SOAP_FMAC2 soap_instantiate__tds__StartSystemRestore(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__StartSystemRestore(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__StartSystemRestore *p; - size_t k = sizeof(_tds__StartSystemRestore); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__StartSystemRestore, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__StartSystemRestore); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__StartSystemRestore, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__StartSystemRestore location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__StartSystemRestore::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__StartSystemRestore(soap, tag ? tag : "tds:StartSystemRestore", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__StartSystemRestore::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__StartSystemRestore(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__StartSystemRestore * SOAP_FMAC4 soap_get__tds__StartSystemRestore(struct soap *soap, _tds__StartSystemRestore *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__StartSystemRestore(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__StartFirmwareUpgradeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->_tds__StartFirmwareUpgradeResponse::UploadUri); - soap_default_xsd__duration(soap, &this->_tds__StartFirmwareUpgradeResponse::UploadDelay); - soap_default_xsd__duration(soap, &this->_tds__StartFirmwareUpgradeResponse::ExpectedDownTime); -} - -void _tds__StartFirmwareUpgradeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__StartFirmwareUpgradeResponse::UploadUri, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->_tds__StartFirmwareUpgradeResponse::UploadUri); - soap_embedded(soap, &this->_tds__StartFirmwareUpgradeResponse::UploadDelay, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tds__StartFirmwareUpgradeResponse::UploadDelay); - soap_embedded(soap, &this->_tds__StartFirmwareUpgradeResponse::ExpectedDownTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tds__StartFirmwareUpgradeResponse::ExpectedDownTime); -#endif -} - -int _tds__StartFirmwareUpgradeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__StartFirmwareUpgradeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartFirmwareUpgradeResponse(struct soap *soap, const char *tag, int id, const _tds__StartFirmwareUpgradeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__StartFirmwareUpgradeResponse), type)) - return soap->error; - soap_element_result(soap, "tds:UploadUri"); - if (soap_out_xsd__anyURI(soap, "tds:UploadUri", -1, &a->_tds__StartFirmwareUpgradeResponse::UploadUri, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tds:UploadDelay", -1, &a->_tds__StartFirmwareUpgradeResponse::UploadDelay, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tds:ExpectedDownTime", -1, &a->_tds__StartFirmwareUpgradeResponse::ExpectedDownTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__StartFirmwareUpgradeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__StartFirmwareUpgradeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__StartFirmwareUpgradeResponse * SOAP_FMAC4 soap_in__tds__StartFirmwareUpgradeResponse(struct soap *soap, const char *tag, _tds__StartFirmwareUpgradeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__StartFirmwareUpgradeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__StartFirmwareUpgradeResponse, sizeof(_tds__StartFirmwareUpgradeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__StartFirmwareUpgradeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__StartFirmwareUpgradeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_UploadUri1 = 1; - size_t soap_flag_UploadDelay1 = 1; - size_t soap_flag_ExpectedDownTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_UploadUri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tds:UploadUri", &a->_tds__StartFirmwareUpgradeResponse::UploadUri, "xsd:anyURI")) - { soap_flag_UploadUri1--; - continue; - } - } - if (soap_flag_UploadDelay1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tds:UploadDelay", &a->_tds__StartFirmwareUpgradeResponse::UploadDelay, "xsd:duration")) - { soap_flag_UploadDelay1--; - continue; - } - } - if (soap_flag_ExpectedDownTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tds:ExpectedDownTime", &a->_tds__StartFirmwareUpgradeResponse::ExpectedDownTime, "xsd:duration")) - { soap_flag_ExpectedDownTime1--; - continue; - } - } - soap_check_result(soap, "tds:UploadUri"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_UploadUri1 > 0 || soap_flag_UploadDelay1 > 0 || soap_flag_ExpectedDownTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__StartFirmwareUpgradeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__StartFirmwareUpgradeResponse, SOAP_TYPE__tds__StartFirmwareUpgradeResponse, sizeof(_tds__StartFirmwareUpgradeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__StartFirmwareUpgradeResponse * SOAP_FMAC2 soap_instantiate__tds__StartFirmwareUpgradeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__StartFirmwareUpgradeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__StartFirmwareUpgradeResponse *p; - size_t k = sizeof(_tds__StartFirmwareUpgradeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__StartFirmwareUpgradeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__StartFirmwareUpgradeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__StartFirmwareUpgradeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__StartFirmwareUpgradeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__StartFirmwareUpgradeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__StartFirmwareUpgradeResponse(soap, tag ? tag : "tds:StartFirmwareUpgradeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__StartFirmwareUpgradeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__StartFirmwareUpgradeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__StartFirmwareUpgradeResponse * SOAP_FMAC4 soap_get__tds__StartFirmwareUpgradeResponse(struct soap *soap, _tds__StartFirmwareUpgradeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__StartFirmwareUpgradeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__StartFirmwareUpgrade::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__StartFirmwareUpgrade::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__StartFirmwareUpgrade::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__StartFirmwareUpgrade(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartFirmwareUpgrade(struct soap *soap, const char *tag, int id, const _tds__StartFirmwareUpgrade *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__StartFirmwareUpgrade), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__StartFirmwareUpgrade::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__StartFirmwareUpgrade(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_in__tds__StartFirmwareUpgrade(struct soap *soap, const char *tag, _tds__StartFirmwareUpgrade *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__StartFirmwareUpgrade*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__StartFirmwareUpgrade, sizeof(_tds__StartFirmwareUpgrade), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__StartFirmwareUpgrade) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__StartFirmwareUpgrade *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__StartFirmwareUpgrade *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__StartFirmwareUpgrade, SOAP_TYPE__tds__StartFirmwareUpgrade, sizeof(_tds__StartFirmwareUpgrade), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__StartFirmwareUpgrade * SOAP_FMAC2 soap_instantiate__tds__StartFirmwareUpgrade(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__StartFirmwareUpgrade(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__StartFirmwareUpgrade *p; - size_t k = sizeof(_tds__StartFirmwareUpgrade); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__StartFirmwareUpgrade, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__StartFirmwareUpgrade); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__StartFirmwareUpgrade, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__StartFirmwareUpgrade location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__StartFirmwareUpgrade::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__StartFirmwareUpgrade(soap, tag ? tag : "tds:StartFirmwareUpgrade", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__StartFirmwareUpgrade::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__StartFirmwareUpgrade(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_get__tds__StartFirmwareUpgrade(struct soap *soap, _tds__StartFirmwareUpgrade *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__StartFirmwareUpgrade(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemUrisResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetSystemUrisResponse::SystemLogUris = NULL; - this->_tds__GetSystemUrisResponse::SupportInfoUri = NULL; - this->_tds__GetSystemUrisResponse::SystemBackupUri = NULL; - this->_tds__GetSystemUrisResponse::Extension = NULL; -} - -void _tds__GetSystemUrisResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SystemLogUriList(soap, &this->_tds__GetSystemUrisResponse::SystemLogUris); - soap_serialize_PointerToxsd__anyURI(soap, &this->_tds__GetSystemUrisResponse::SupportInfoUri); - soap_serialize_PointerToxsd__anyURI(soap, &this->_tds__GetSystemUrisResponse::SystemBackupUri); - soap_serialize_PointerTo_tds__GetSystemUrisResponse_Extension(soap, &this->_tds__GetSystemUrisResponse::Extension); -#endif -} - -int _tds__GetSystemUrisResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemUrisResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemUrisResponse(struct soap *soap, const char *tag, int id, const _tds__GetSystemUrisResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemUrisResponse), type)) - return soap->error; - if (a->SystemLogUris) - soap_element_result(soap, "tds:SystemLogUris"); - if (soap_out_PointerTott__SystemLogUriList(soap, "tds:SystemLogUris", -1, &a->_tds__GetSystemUrisResponse::SystemLogUris, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tds:SupportInfoUri", -1, &a->_tds__GetSystemUrisResponse::SupportInfoUri, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tds:SystemBackupUri", -1, &a->_tds__GetSystemUrisResponse::SystemBackupUri, "")) - return soap->error; - if (soap_out_PointerTo_tds__GetSystemUrisResponse_Extension(soap, "tds:Extension", -1, &a->_tds__GetSystemUrisResponse::Extension, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemUrisResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemUrisResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemUrisResponse * SOAP_FMAC4 soap_in__tds__GetSystemUrisResponse(struct soap *soap, const char *tag, _tds__GetSystemUrisResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemUrisResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemUrisResponse, sizeof(_tds__GetSystemUrisResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemUrisResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemUrisResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SystemLogUris1 = 1; - size_t soap_flag_SupportInfoUri1 = 1; - size_t soap_flag_SystemBackupUri1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SystemLogUris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SystemLogUriList(soap, "tds:SystemLogUris", &a->_tds__GetSystemUrisResponse::SystemLogUris, "tt:SystemLogUriList")) - { soap_flag_SystemLogUris1--; - continue; - } - } - if (soap_flag_SupportInfoUri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tds:SupportInfoUri", &a->_tds__GetSystemUrisResponse::SupportInfoUri, "xsd:anyURI")) - { soap_flag_SupportInfoUri1--; - continue; - } - } - if (soap_flag_SystemBackupUri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tds:SystemBackupUri", &a->_tds__GetSystemUrisResponse::SystemBackupUri, "xsd:anyURI")) - { soap_flag_SystemBackupUri1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetSystemUrisResponse_Extension(soap, "tds:Extension", &a->_tds__GetSystemUrisResponse::Extension, "")) - { soap_flag_Extension1--; - continue; - } - } - soap_check_result(soap, "tds:SystemLogUris"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetSystemUrisResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemUrisResponse, SOAP_TYPE__tds__GetSystemUrisResponse, sizeof(_tds__GetSystemUrisResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemUrisResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemUrisResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemUrisResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemUrisResponse *p; - size_t k = sizeof(_tds__GetSystemUrisResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemUrisResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemUrisResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemUrisResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemUrisResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemUrisResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemUrisResponse(soap, tag ? tag : "tds:GetSystemUrisResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemUrisResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemUrisResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemUrisResponse * SOAP_FMAC4 soap_get__tds__GetSystemUrisResponse(struct soap *soap, _tds__GetSystemUrisResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemUrisResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemUris::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetSystemUris::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetSystemUris::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemUris(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemUris(struct soap *soap, const char *tag, int id, const _tds__GetSystemUris *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemUris), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemUris::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemUris(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemUris * SOAP_FMAC4 soap_in__tds__GetSystemUris(struct soap *soap, const char *tag, _tds__GetSystemUris *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemUris*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemUris, sizeof(_tds__GetSystemUris), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemUris) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemUris *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetSystemUris *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemUris, SOAP_TYPE__tds__GetSystemUris, sizeof(_tds__GetSystemUris), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemUris * SOAP_FMAC2 soap_instantiate__tds__GetSystemUris(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemUris(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemUris *p; - size_t k = sizeof(_tds__GetSystemUris); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemUris, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemUris); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemUris, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemUris location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemUris::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemUris(soap, tag ? tag : "tds:GetSystemUris", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemUris::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemUris(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemUris * SOAP_FMAC4 soap_get__tds__GetSystemUris(struct soap *soap, _tds__GetSystemUris *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemUris(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__ScanAvailableDot11NetworksResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(soap, &this->_tds__ScanAvailableDot11NetworksResponse::Networks); -} - -void _tds__ScanAvailableDot11NetworksResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(soap, &this->_tds__ScanAvailableDot11NetworksResponse::Networks); -#endif -} - -int _tds__ScanAvailableDot11NetworksResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__ScanAvailableDot11NetworksResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, const char *tag, int id, const _tds__ScanAvailableDot11NetworksResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Networks"); - if (soap_out_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(soap, "tds:Networks", -1, &a->_tds__ScanAvailableDot11NetworksResponse::Networks, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__ScanAvailableDot11NetworksResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__ScanAvailableDot11NetworksResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__ScanAvailableDot11NetworksResponse * SOAP_FMAC4 soap_in__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, const char *tag, _tds__ScanAvailableDot11NetworksResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__ScanAvailableDot11NetworksResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse, sizeof(_tds__ScanAvailableDot11NetworksResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__ScanAvailableDot11NetworksResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(soap, "tds:Networks", &a->_tds__ScanAvailableDot11NetworksResponse::Networks, "tt:Dot11AvailableNetworks")) - continue; - } - soap_check_result(soap, "tds:Networks"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__ScanAvailableDot11NetworksResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse, SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse, sizeof(_tds__ScanAvailableDot11NetworksResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__ScanAvailableDot11NetworksResponse * SOAP_FMAC2 soap_instantiate__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__ScanAvailableDot11NetworksResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__ScanAvailableDot11NetworksResponse *p; - size_t k = sizeof(_tds__ScanAvailableDot11NetworksResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__ScanAvailableDot11NetworksResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__ScanAvailableDot11NetworksResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__ScanAvailableDot11NetworksResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__ScanAvailableDot11NetworksResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__ScanAvailableDot11NetworksResponse(soap, tag ? tag : "tds:ScanAvailableDot11NetworksResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__ScanAvailableDot11NetworksResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__ScanAvailableDot11NetworksResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__ScanAvailableDot11NetworksResponse * SOAP_FMAC4 soap_get__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, _tds__ScanAvailableDot11NetworksResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__ScanAvailableDot11NetworksResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__ScanAvailableDot11Networks::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__ScanAvailableDot11Networks::InterfaceToken); -} - -void _tds__ScanAvailableDot11Networks::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__ScanAvailableDot11Networks::InterfaceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__ScanAvailableDot11Networks::InterfaceToken); -#endif -} - -int _tds__ScanAvailableDot11Networks::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__ScanAvailableDot11Networks(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__ScanAvailableDot11Networks(struct soap *soap, const char *tag, int id, const _tds__ScanAvailableDot11Networks *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__ScanAvailableDot11Networks), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:InterfaceToken", -1, &a->_tds__ScanAvailableDot11Networks::InterfaceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__ScanAvailableDot11Networks::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__ScanAvailableDot11Networks(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_in__tds__ScanAvailableDot11Networks(struct soap *soap, const char *tag, _tds__ScanAvailableDot11Networks *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__ScanAvailableDot11Networks*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__ScanAvailableDot11Networks, sizeof(_tds__ScanAvailableDot11Networks), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__ScanAvailableDot11Networks) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__ScanAvailableDot11Networks *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_InterfaceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InterfaceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:InterfaceToken", &a->_tds__ScanAvailableDot11Networks::InterfaceToken, "tt:ReferenceToken")) - { soap_flag_InterfaceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_InterfaceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__ScanAvailableDot11Networks *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__ScanAvailableDot11Networks, SOAP_TYPE__tds__ScanAvailableDot11Networks, sizeof(_tds__ScanAvailableDot11Networks), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__ScanAvailableDot11Networks * SOAP_FMAC2 soap_instantiate__tds__ScanAvailableDot11Networks(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__ScanAvailableDot11Networks(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__ScanAvailableDot11Networks *p; - size_t k = sizeof(_tds__ScanAvailableDot11Networks); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__ScanAvailableDot11Networks, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__ScanAvailableDot11Networks); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__ScanAvailableDot11Networks, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__ScanAvailableDot11Networks location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__ScanAvailableDot11Networks::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__ScanAvailableDot11Networks(soap, tag ? tag : "tds:ScanAvailableDot11Networks", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__ScanAvailableDot11Networks::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__ScanAvailableDot11Networks(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_get__tds__ScanAvailableDot11Networks(struct soap *soap, _tds__ScanAvailableDot11Networks *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__ScanAvailableDot11Networks(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot11StatusResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetDot11StatusResponse::Status = NULL; -} - -void _tds__GetDot11StatusResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Dot11Status(soap, &this->_tds__GetDot11StatusResponse::Status); -#endif -} - -int _tds__GetDot11StatusResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot11StatusResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11StatusResponse(struct soap *soap, const char *tag, int id, const _tds__GetDot11StatusResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot11StatusResponse), type)) - return soap->error; - if (a->Status) - soap_element_result(soap, "tds:Status"); - if (!a->_tds__GetDot11StatusResponse::Status) - { if (soap_element_empty(soap, "tds:Status", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Dot11Status(soap, "tds:Status", -1, &a->_tds__GetDot11StatusResponse::Status, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot11StatusResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot11StatusResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot11StatusResponse * SOAP_FMAC4 soap_in__tds__GetDot11StatusResponse(struct soap *soap, const char *tag, _tds__GetDot11StatusResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot11StatusResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot11StatusResponse, sizeof(_tds__GetDot11StatusResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot11StatusResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot11StatusResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Status1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Status1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11Status(soap, "tds:Status", &a->_tds__GetDot11StatusResponse::Status, "tt:Dot11Status")) - { soap_flag_Status1--; - continue; - } - } - soap_check_result(soap, "tds:Status"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetDot11StatusResponse::Status)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDot11StatusResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot11StatusResponse, SOAP_TYPE__tds__GetDot11StatusResponse, sizeof(_tds__GetDot11StatusResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot11StatusResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot11StatusResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot11StatusResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot11StatusResponse *p; - size_t k = sizeof(_tds__GetDot11StatusResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot11StatusResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot11StatusResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot11StatusResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot11StatusResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot11StatusResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot11StatusResponse(soap, tag ? tag : "tds:GetDot11StatusResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot11StatusResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot11StatusResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot11StatusResponse * SOAP_FMAC4 soap_get__tds__GetDot11StatusResponse(struct soap *soap, _tds__GetDot11StatusResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot11StatusResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot11Status::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__GetDot11Status::InterfaceToken); -} - -void _tds__GetDot11Status::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetDot11Status::InterfaceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__GetDot11Status::InterfaceToken); -#endif -} - -int _tds__GetDot11Status::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot11Status(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11Status(struct soap *soap, const char *tag, int id, const _tds__GetDot11Status *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot11Status), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:InterfaceToken", -1, &a->_tds__GetDot11Status::InterfaceToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot11Status::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot11Status(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot11Status * SOAP_FMAC4 soap_in__tds__GetDot11Status(struct soap *soap, const char *tag, _tds__GetDot11Status *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot11Status*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot11Status, sizeof(_tds__GetDot11Status), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot11Status) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot11Status *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_InterfaceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InterfaceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:InterfaceToken", &a->_tds__GetDot11Status::InterfaceToken, "tt:ReferenceToken")) - { soap_flag_InterfaceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_InterfaceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDot11Status *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot11Status, SOAP_TYPE__tds__GetDot11Status, sizeof(_tds__GetDot11Status), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot11Status * SOAP_FMAC2 soap_instantiate__tds__GetDot11Status(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot11Status(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot11Status *p; - size_t k = sizeof(_tds__GetDot11Status); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot11Status, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot11Status); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot11Status, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot11Status location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot11Status::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot11Status(soap, tag ? tag : "tds:GetDot11Status", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot11Status::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot11Status(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot11Status * SOAP_FMAC4 soap_get__tds__GetDot11Status(struct soap *soap, _tds__GetDot11Status *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot11Status(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot11CapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetDot11CapabilitiesResponse::Capabilities = NULL; -} - -void _tds__GetDot11CapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Dot11Capabilities(soap, &this->_tds__GetDot11CapabilitiesResponse::Capabilities); -#endif -} - -int _tds__GetDot11CapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot11CapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11CapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tds__GetDot11CapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot11CapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tds:Capabilities"); - if (!a->_tds__GetDot11CapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tds:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Dot11Capabilities(soap, "tds:Capabilities", -1, &a->_tds__GetDot11CapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot11CapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot11CapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot11CapabilitiesResponse * SOAP_FMAC4 soap_in__tds__GetDot11CapabilitiesResponse(struct soap *soap, const char *tag, _tds__GetDot11CapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot11CapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot11CapabilitiesResponse, sizeof(_tds__GetDot11CapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot11CapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot11CapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11Capabilities(soap, "tds:Capabilities", &a->_tds__GetDot11CapabilitiesResponse::Capabilities, "tt:Dot11Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tds:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetDot11CapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDot11CapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot11CapabilitiesResponse, SOAP_TYPE__tds__GetDot11CapabilitiesResponse, sizeof(_tds__GetDot11CapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot11CapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot11CapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot11CapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot11CapabilitiesResponse *p; - size_t k = sizeof(_tds__GetDot11CapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot11CapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot11CapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot11CapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot11CapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot11CapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot11CapabilitiesResponse(soap, tag ? tag : "tds:GetDot11CapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot11CapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot11CapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot11CapabilitiesResponse * SOAP_FMAC4 soap_get__tds__GetDot11CapabilitiesResponse(struct soap *soap, _tds__GetDot11CapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot11CapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot11Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__GetDot11Capabilities::__any); -} - -void _tds__GetDot11Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__GetDot11Capabilities::__any); -#endif -} - -int _tds__GetDot11Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot11Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11Capabilities(struct soap *soap, const char *tag, int id, const _tds__GetDot11Capabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot11Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tds__GetDot11Capabilities::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot11Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot11Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot11Capabilities * SOAP_FMAC4 soap_in__tds__GetDot11Capabilities(struct soap *soap, const char *tag, _tds__GetDot11Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot11Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot11Capabilities, sizeof(_tds__GetDot11Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot11Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot11Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tds__GetDot11Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDot11Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot11Capabilities, SOAP_TYPE__tds__GetDot11Capabilities, sizeof(_tds__GetDot11Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot11Capabilities * SOAP_FMAC2 soap_instantiate__tds__GetDot11Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot11Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot11Capabilities *p; - size_t k = sizeof(_tds__GetDot11Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot11Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot11Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot11Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot11Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot11Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot11Capabilities(soap, tag ? tag : "tds:GetDot11Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot11Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot11Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot11Capabilities * SOAP_FMAC4 soap_get__tds__GetDot11Capabilities(struct soap *soap, _tds__GetDot11Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot11Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SendAuxiliaryCommandResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__SendAuxiliaryCommandResponse::AuxiliaryCommandResponse = NULL; -} - -void _tds__SendAuxiliaryCommandResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AuxiliaryData(soap, &this->_tds__SendAuxiliaryCommandResponse::AuxiliaryCommandResponse); -#endif -} - -int _tds__SendAuxiliaryCommandResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SendAuxiliaryCommandResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SendAuxiliaryCommandResponse(struct soap *soap, const char *tag, int id, const _tds__SendAuxiliaryCommandResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SendAuxiliaryCommandResponse), type)) - return soap->error; - if (a->AuxiliaryCommandResponse) - soap_element_result(soap, "tds:AuxiliaryCommandResponse"); - if (soap_out_PointerTott__AuxiliaryData(soap, "tds:AuxiliaryCommandResponse", -1, &a->_tds__SendAuxiliaryCommandResponse::AuxiliaryCommandResponse, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SendAuxiliaryCommandResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SendAuxiliaryCommandResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_in__tds__SendAuxiliaryCommandResponse(struct soap *soap, const char *tag, _tds__SendAuxiliaryCommandResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SendAuxiliaryCommandResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SendAuxiliaryCommandResponse, sizeof(_tds__SendAuxiliaryCommandResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SendAuxiliaryCommandResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SendAuxiliaryCommandResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AuxiliaryCommandResponse1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AuxiliaryCommandResponse1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__AuxiliaryData(soap, "tds:AuxiliaryCommandResponse", &a->_tds__SendAuxiliaryCommandResponse::AuxiliaryCommandResponse, "tt:AuxiliaryData")) - { soap_flag_AuxiliaryCommandResponse1--; - continue; - } - } - soap_check_result(soap, "tds:AuxiliaryCommandResponse"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SendAuxiliaryCommandResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SendAuxiliaryCommandResponse, SOAP_TYPE__tds__SendAuxiliaryCommandResponse, sizeof(_tds__SendAuxiliaryCommandResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SendAuxiliaryCommandResponse * SOAP_FMAC2 soap_instantiate__tds__SendAuxiliaryCommandResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SendAuxiliaryCommandResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SendAuxiliaryCommandResponse *p; - size_t k = sizeof(_tds__SendAuxiliaryCommandResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SendAuxiliaryCommandResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SendAuxiliaryCommandResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SendAuxiliaryCommandResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SendAuxiliaryCommandResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SendAuxiliaryCommandResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SendAuxiliaryCommandResponse(soap, tag ? tag : "tds:SendAuxiliaryCommandResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SendAuxiliaryCommandResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SendAuxiliaryCommandResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_get__tds__SendAuxiliaryCommandResponse(struct soap *soap, _tds__SendAuxiliaryCommandResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SendAuxiliaryCommandResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SendAuxiliaryCommand::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AuxiliaryData(soap, &this->_tds__SendAuxiliaryCommand::AuxiliaryCommand); -} - -void _tds__SendAuxiliaryCommand::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SendAuxiliaryCommand::AuxiliaryCommand, SOAP_TYPE_tt__AuxiliaryData); - soap_serialize_tt__AuxiliaryData(soap, &this->_tds__SendAuxiliaryCommand::AuxiliaryCommand); -#endif -} - -int _tds__SendAuxiliaryCommand::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SendAuxiliaryCommand(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SendAuxiliaryCommand(struct soap *soap, const char *tag, int id, const _tds__SendAuxiliaryCommand *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SendAuxiliaryCommand), type)) - return soap->error; - if (soap_out_tt__AuxiliaryData(soap, "tds:AuxiliaryCommand", -1, &a->_tds__SendAuxiliaryCommand::AuxiliaryCommand, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SendAuxiliaryCommand::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SendAuxiliaryCommand(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_in__tds__SendAuxiliaryCommand(struct soap *soap, const char *tag, _tds__SendAuxiliaryCommand *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SendAuxiliaryCommand*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SendAuxiliaryCommand, sizeof(_tds__SendAuxiliaryCommand), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SendAuxiliaryCommand) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SendAuxiliaryCommand *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AuxiliaryCommand1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AuxiliaryCommand1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__AuxiliaryData(soap, "tds:AuxiliaryCommand", &a->_tds__SendAuxiliaryCommand::AuxiliaryCommand, "tt:AuxiliaryData")) - { soap_flag_AuxiliaryCommand1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AuxiliaryCommand1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SendAuxiliaryCommand *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SendAuxiliaryCommand, SOAP_TYPE__tds__SendAuxiliaryCommand, sizeof(_tds__SendAuxiliaryCommand), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate__tds__SendAuxiliaryCommand(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SendAuxiliaryCommand(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SendAuxiliaryCommand *p; - size_t k = sizeof(_tds__SendAuxiliaryCommand); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SendAuxiliaryCommand, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SendAuxiliaryCommand); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SendAuxiliaryCommand, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SendAuxiliaryCommand location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SendAuxiliaryCommand::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SendAuxiliaryCommand(soap, tag ? tag : "tds:SendAuxiliaryCommand", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SendAuxiliaryCommand::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SendAuxiliaryCommand(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_get__tds__SendAuxiliaryCommand(struct soap *soap, _tds__SendAuxiliaryCommand *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SendAuxiliaryCommand(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRelayOutputStateResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetRelayOutputStateResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetRelayOutputStateResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRelayOutputStateResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputStateResponse(struct soap *soap, const char *tag, int id, const _tds__SetRelayOutputStateResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRelayOutputStateResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRelayOutputStateResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRelayOutputStateResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputStateResponse * SOAP_FMAC4 soap_in__tds__SetRelayOutputStateResponse(struct soap *soap, const char *tag, _tds__SetRelayOutputStateResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRelayOutputStateResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRelayOutputStateResponse, sizeof(_tds__SetRelayOutputStateResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRelayOutputStateResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRelayOutputStateResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetRelayOutputStateResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRelayOutputStateResponse, SOAP_TYPE__tds__SetRelayOutputStateResponse, sizeof(_tds__SetRelayOutputStateResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRelayOutputStateResponse * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputStateResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRelayOutputStateResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRelayOutputStateResponse *p; - size_t k = sizeof(_tds__SetRelayOutputStateResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRelayOutputStateResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRelayOutputStateResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRelayOutputStateResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRelayOutputStateResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRelayOutputStateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRelayOutputStateResponse(soap, tag ? tag : "tds:SetRelayOutputStateResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRelayOutputStateResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRelayOutputStateResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputStateResponse * SOAP_FMAC4 soap_get__tds__SetRelayOutputStateResponse(struct soap *soap, _tds__SetRelayOutputStateResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRelayOutputStateResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRelayOutputState::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__SetRelayOutputState::RelayOutputToken); - soap_default_tt__RelayLogicalState(soap, &this->_tds__SetRelayOutputState::LogicalState); -} - -void _tds__SetRelayOutputState::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetRelayOutputState::RelayOutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__SetRelayOutputState::RelayOutputToken); -#endif -} - -int _tds__SetRelayOutputState::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRelayOutputState(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputState(struct soap *soap, const char *tag, int id, const _tds__SetRelayOutputState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRelayOutputState), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:RelayOutputToken", -1, &a->_tds__SetRelayOutputState::RelayOutputToken, "")) - return soap->error; - if (soap_out_tt__RelayLogicalState(soap, "tds:LogicalState", -1, &a->_tds__SetRelayOutputState::LogicalState, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRelayOutputState::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRelayOutputState(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputState * SOAP_FMAC4 soap_in__tds__SetRelayOutputState(struct soap *soap, const char *tag, _tds__SetRelayOutputState *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRelayOutputState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRelayOutputState, sizeof(_tds__SetRelayOutputState), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRelayOutputState) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRelayOutputState *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RelayOutputToken1 = 1; - size_t soap_flag_LogicalState1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RelayOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:RelayOutputToken", &a->_tds__SetRelayOutputState::RelayOutputToken, "tt:ReferenceToken")) - { soap_flag_RelayOutputToken1--; - continue; - } - } - if (soap_flag_LogicalState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__RelayLogicalState(soap, "tds:LogicalState", &a->_tds__SetRelayOutputState::LogicalState, "tt:RelayLogicalState")) - { soap_flag_LogicalState1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RelayOutputToken1 > 0 || soap_flag_LogicalState1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetRelayOutputState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRelayOutputState, SOAP_TYPE__tds__SetRelayOutputState, sizeof(_tds__SetRelayOutputState), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRelayOutputState * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRelayOutputState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRelayOutputState *p; - size_t k = sizeof(_tds__SetRelayOutputState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRelayOutputState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRelayOutputState); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRelayOutputState, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRelayOutputState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRelayOutputState::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRelayOutputState(soap, tag ? tag : "tds:SetRelayOutputState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRelayOutputState::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRelayOutputState(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputState * SOAP_FMAC4 soap_get__tds__SetRelayOutputState(struct soap *soap, _tds__SetRelayOutputState *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRelayOutputState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRelayOutputSettingsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetRelayOutputSettingsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetRelayOutputSettingsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRelayOutputSettingsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputSettingsResponse(struct soap *soap, const char *tag, int id, const _tds__SetRelayOutputSettingsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRelayOutputSettingsResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRelayOutputSettingsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRelayOutputSettingsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_in__tds__SetRelayOutputSettingsResponse(struct soap *soap, const char *tag, _tds__SetRelayOutputSettingsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRelayOutputSettingsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRelayOutputSettingsResponse, sizeof(_tds__SetRelayOutputSettingsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRelayOutputSettingsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRelayOutputSettingsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetRelayOutputSettingsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRelayOutputSettingsResponse, SOAP_TYPE__tds__SetRelayOutputSettingsResponse, sizeof(_tds__SetRelayOutputSettingsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRelayOutputSettingsResponse * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputSettingsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRelayOutputSettingsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRelayOutputSettingsResponse *p; - size_t k = sizeof(_tds__SetRelayOutputSettingsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRelayOutputSettingsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRelayOutputSettingsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRelayOutputSettingsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRelayOutputSettingsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRelayOutputSettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRelayOutputSettingsResponse(soap, tag ? tag : "tds:SetRelayOutputSettingsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRelayOutputSettingsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRelayOutputSettingsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_get__tds__SetRelayOutputSettingsResponse(struct soap *soap, _tds__SetRelayOutputSettingsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRelayOutputSettingsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRelayOutputSettings::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__SetRelayOutputSettings::RelayOutputToken); - this->_tds__SetRelayOutputSettings::Properties = NULL; -} - -void _tds__SetRelayOutputSettings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetRelayOutputSettings::RelayOutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__SetRelayOutputSettings::RelayOutputToken); - soap_serialize_PointerTott__RelayOutputSettings(soap, &this->_tds__SetRelayOutputSettings::Properties); -#endif -} - -int _tds__SetRelayOutputSettings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRelayOutputSettings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputSettings(struct soap *soap, const char *tag, int id, const _tds__SetRelayOutputSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRelayOutputSettings), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:RelayOutputToken", -1, &a->_tds__SetRelayOutputSettings::RelayOutputToken, "")) - return soap->error; - if (!a->_tds__SetRelayOutputSettings::Properties) - { if (soap_element_empty(soap, "tds:Properties", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RelayOutputSettings(soap, "tds:Properties", -1, &a->_tds__SetRelayOutputSettings::Properties, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRelayOutputSettings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRelayOutputSettings(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputSettings * SOAP_FMAC4 soap_in__tds__SetRelayOutputSettings(struct soap *soap, const char *tag, _tds__SetRelayOutputSettings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRelayOutputSettings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRelayOutputSettings, sizeof(_tds__SetRelayOutputSettings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRelayOutputSettings) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRelayOutputSettings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RelayOutputToken1 = 1; - size_t soap_flag_Properties1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RelayOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:RelayOutputToken", &a->_tds__SetRelayOutputSettings::RelayOutputToken, "tt:ReferenceToken")) - { soap_flag_RelayOutputToken1--; - continue; - } - } - if (soap_flag_Properties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RelayOutputSettings(soap, "tds:Properties", &a->_tds__SetRelayOutputSettings::Properties, "tt:RelayOutputSettings")) - { soap_flag_Properties1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RelayOutputToken1 > 0 || !a->_tds__SetRelayOutputSettings::Properties)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetRelayOutputSettings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRelayOutputSettings, SOAP_TYPE__tds__SetRelayOutputSettings, sizeof(_tds__SetRelayOutputSettings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRelayOutputSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRelayOutputSettings *p; - size_t k = sizeof(_tds__SetRelayOutputSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRelayOutputSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRelayOutputSettings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRelayOutputSettings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRelayOutputSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRelayOutputSettings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRelayOutputSettings(soap, tag ? tag : "tds:SetRelayOutputSettings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRelayOutputSettings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRelayOutputSettings(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRelayOutputSettings * SOAP_FMAC4 soap_get__tds__SetRelayOutputSettings(struct soap *soap, _tds__SetRelayOutputSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRelayOutputSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetRelayOutputsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__RelayOutput(soap, &this->_tds__GetRelayOutputsResponse::RelayOutputs); -} - -void _tds__GetRelayOutputsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__RelayOutput(soap, &this->_tds__GetRelayOutputsResponse::RelayOutputs); -#endif -} - -int _tds__GetRelayOutputsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetRelayOutputsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRelayOutputsResponse(struct soap *soap, const char *tag, int id, const _tds__GetRelayOutputsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetRelayOutputsResponse), type)) - return soap->error; - soap_element_result(soap, "tds:RelayOutputs"); - if (soap_out_std__vectorTemplateOfPointerTott__RelayOutput(soap, "tds:RelayOutputs", -1, &a->_tds__GetRelayOutputsResponse::RelayOutputs, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetRelayOutputsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetRelayOutputsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetRelayOutputsResponse * SOAP_FMAC4 soap_in__tds__GetRelayOutputsResponse(struct soap *soap, const char *tag, _tds__GetRelayOutputsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetRelayOutputsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetRelayOutputsResponse, sizeof(_tds__GetRelayOutputsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetRelayOutputsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetRelayOutputsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__RelayOutput(soap, "tds:RelayOutputs", &a->_tds__GetRelayOutputsResponse::RelayOutputs, "tt:RelayOutput")) - continue; - } - soap_check_result(soap, "tds:RelayOutputs"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetRelayOutputsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetRelayOutputsResponse, SOAP_TYPE__tds__GetRelayOutputsResponse, sizeof(_tds__GetRelayOutputsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetRelayOutputsResponse * SOAP_FMAC2 soap_instantiate__tds__GetRelayOutputsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetRelayOutputsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetRelayOutputsResponse *p; - size_t k = sizeof(_tds__GetRelayOutputsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetRelayOutputsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetRelayOutputsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetRelayOutputsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetRelayOutputsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetRelayOutputsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetRelayOutputsResponse(soap, tag ? tag : "tds:GetRelayOutputsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetRelayOutputsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetRelayOutputsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetRelayOutputsResponse * SOAP_FMAC4 soap_get__tds__GetRelayOutputsResponse(struct soap *soap, _tds__GetRelayOutputsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetRelayOutputsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetRelayOutputs::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetRelayOutputs::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetRelayOutputs::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetRelayOutputs(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRelayOutputs(struct soap *soap, const char *tag, int id, const _tds__GetRelayOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetRelayOutputs), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetRelayOutputs::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetRelayOutputs(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetRelayOutputs * SOAP_FMAC4 soap_in__tds__GetRelayOutputs(struct soap *soap, const char *tag, _tds__GetRelayOutputs *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetRelayOutputs*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetRelayOutputs, sizeof(_tds__GetRelayOutputs), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetRelayOutputs) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetRelayOutputs *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetRelayOutputs *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetRelayOutputs, SOAP_TYPE__tds__GetRelayOutputs, sizeof(_tds__GetRelayOutputs), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetRelayOutputs * SOAP_FMAC2 soap_instantiate__tds__GetRelayOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetRelayOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetRelayOutputs *p; - size_t k = sizeof(_tds__GetRelayOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetRelayOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetRelayOutputs); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetRelayOutputs, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetRelayOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetRelayOutputs::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetRelayOutputs(soap, tag ? tag : "tds:GetRelayOutputs", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetRelayOutputs::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetRelayOutputs(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetRelayOutputs * SOAP_FMAC4 soap_get__tds__GetRelayOutputs(struct soap *soap, _tds__GetRelayOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetRelayOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteDot1XConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__DeleteDot1XConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__DeleteDot1XConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteDot1XConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteDot1XConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__DeleteDot1XConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteDot1XConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteDot1XConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteDot1XConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__DeleteDot1XConfigurationResponse(struct soap *soap, const char *tag, _tds__DeleteDot1XConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteDot1XConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteDot1XConfigurationResponse, sizeof(_tds__DeleteDot1XConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteDot1XConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteDot1XConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__DeleteDot1XConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteDot1XConfigurationResponse, SOAP_TYPE__tds__DeleteDot1XConfigurationResponse, sizeof(_tds__DeleteDot1XConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteDot1XConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteDot1XConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteDot1XConfigurationResponse *p; - size_t k = sizeof(_tds__DeleteDot1XConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteDot1XConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteDot1XConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteDot1XConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteDot1XConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteDot1XConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteDot1XConfigurationResponse(soap, tag ? tag : "tds:DeleteDot1XConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteDot1XConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteDot1XConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__DeleteDot1XConfigurationResponse(struct soap *soap, _tds__DeleteDot1XConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteDot1XConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteDot1XConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->_tds__DeleteDot1XConfiguration::Dot1XConfigurationToken); -} - -void _tds__DeleteDot1XConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->_tds__DeleteDot1XConfiguration::Dot1XConfigurationToken); -#endif -} - -int _tds__DeleteDot1XConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteDot1XConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteDot1XConfiguration(struct soap *soap, const char *tag, int id, const _tds__DeleteDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteDot1XConfiguration), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tds:Dot1XConfigurationToken", -1, &a->_tds__DeleteDot1XConfiguration::Dot1XConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteDot1XConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteDot1XConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_in__tds__DeleteDot1XConfiguration(struct soap *soap, const char *tag, _tds__DeleteDot1XConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteDot1XConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteDot1XConfiguration, sizeof(_tds__DeleteDot1XConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteDot1XConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteDot1XConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tds:Dot1XConfigurationToken", &a->_tds__DeleteDot1XConfiguration::Dot1XConfigurationToken, "tt:ReferenceToken")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__DeleteDot1XConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteDot1XConfiguration, SOAP_TYPE__tds__DeleteDot1XConfiguration, sizeof(_tds__DeleteDot1XConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__DeleteDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteDot1XConfiguration *p; - size_t k = sizeof(_tds__DeleteDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteDot1XConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteDot1XConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteDot1XConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteDot1XConfiguration(soap, tag ? tag : "tds:DeleteDot1XConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteDot1XConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteDot1XConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_get__tds__DeleteDot1XConfiguration(struct soap *soap, _tds__DeleteDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot1XConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Dot1XConfiguration(soap, &this->_tds__GetDot1XConfigurationsResponse::Dot1XConfiguration); -} - -void _tds__GetDot1XConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Dot1XConfiguration(soap, &this->_tds__GetDot1XConfigurationsResponse::Dot1XConfiguration); -#endif -} - -int _tds__GetDot1XConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot1XConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfigurationsResponse(struct soap *soap, const char *tag, int id, const _tds__GetDot1XConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot1XConfigurationsResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Dot1XConfiguration"); - if (soap_out_std__vectorTemplateOfPointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", -1, &a->_tds__GetDot1XConfigurationsResponse::Dot1XConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot1XConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot1XConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfigurationsResponse * SOAP_FMAC4 soap_in__tds__GetDot1XConfigurationsResponse(struct soap *soap, const char *tag, _tds__GetDot1XConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot1XConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot1XConfigurationsResponse, sizeof(_tds__GetDot1XConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot1XConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot1XConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", &a->_tds__GetDot1XConfigurationsResponse::Dot1XConfiguration, "tt:Dot1XConfiguration")) - continue; - } - soap_check_result(soap, "tds:Dot1XConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDot1XConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot1XConfigurationsResponse, SOAP_TYPE__tds__GetDot1XConfigurationsResponse, sizeof(_tds__GetDot1XConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot1XConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot1XConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot1XConfigurationsResponse *p; - size_t k = sizeof(_tds__GetDot1XConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot1XConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot1XConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot1XConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot1XConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot1XConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot1XConfigurationsResponse(soap, tag ? tag : "tds:GetDot1XConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot1XConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot1XConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfigurationsResponse * SOAP_FMAC4 soap_get__tds__GetDot1XConfigurationsResponse(struct soap *soap, _tds__GetDot1XConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot1XConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot1XConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetDot1XConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetDot1XConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot1XConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfigurations(struct soap *soap, const char *tag, int id, const _tds__GetDot1XConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot1XConfigurations), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot1XConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot1XConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfigurations * SOAP_FMAC4 soap_in__tds__GetDot1XConfigurations(struct soap *soap, const char *tag, _tds__GetDot1XConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot1XConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot1XConfigurations, sizeof(_tds__GetDot1XConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot1XConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot1XConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDot1XConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot1XConfigurations, SOAP_TYPE__tds__GetDot1XConfigurations, sizeof(_tds__GetDot1XConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot1XConfigurations * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot1XConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot1XConfigurations *p; - size_t k = sizeof(_tds__GetDot1XConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot1XConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot1XConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot1XConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot1XConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot1XConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot1XConfigurations(soap, tag ? tag : "tds:GetDot1XConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot1XConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot1XConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfigurations * SOAP_FMAC4 soap_get__tds__GetDot1XConfigurations(struct soap *soap, _tds__GetDot1XConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot1XConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot1XConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration = NULL; -} - -void _tds__GetDot1XConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Dot1XConfiguration(soap, &this->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration); -#endif -} - -int _tds__GetDot1XConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot1XConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__GetDot1XConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot1XConfigurationResponse), type)) - return soap->error; - if (a->Dot1XConfiguration) - soap_element_result(soap, "tds:Dot1XConfiguration"); - if (!a->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration) - { if (soap_element_empty(soap, "tds:Dot1XConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", -1, &a->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot1XConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot1XConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__GetDot1XConfigurationResponse(struct soap *soap, const char *tag, _tds__GetDot1XConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot1XConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot1XConfigurationResponse, sizeof(_tds__GetDot1XConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot1XConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot1XConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Dot1XConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Dot1XConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", &a->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration, "tt:Dot1XConfiguration")) - { soap_flag_Dot1XConfiguration1--; - continue; - } - } - soap_check_result(soap, "tds:Dot1XConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDot1XConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot1XConfigurationResponse, SOAP_TYPE__tds__GetDot1XConfigurationResponse, sizeof(_tds__GetDot1XConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot1XConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot1XConfigurationResponse *p; - size_t k = sizeof(_tds__GetDot1XConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot1XConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot1XConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot1XConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot1XConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot1XConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot1XConfigurationResponse(soap, tag ? tag : "tds:GetDot1XConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot1XConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot1XConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__GetDot1XConfigurationResponse(struct soap *soap, _tds__GetDot1XConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot1XConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDot1XConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__GetDot1XConfiguration::Dot1XConfigurationToken); -} - -void _tds__GetDot1XConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetDot1XConfiguration::Dot1XConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__GetDot1XConfiguration::Dot1XConfigurationToken); -#endif -} - -int _tds__GetDot1XConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDot1XConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfiguration(struct soap *soap, const char *tag, int id, const _tds__GetDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDot1XConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:Dot1XConfigurationToken", -1, &a->_tds__GetDot1XConfiguration::Dot1XConfigurationToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDot1XConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDot1XConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfiguration * SOAP_FMAC4 soap_in__tds__GetDot1XConfiguration(struct soap *soap, const char *tag, _tds__GetDot1XConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDot1XConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDot1XConfiguration, sizeof(_tds__GetDot1XConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDot1XConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDot1XConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Dot1XConfigurationToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Dot1XConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:Dot1XConfigurationToken", &a->_tds__GetDot1XConfiguration::Dot1XConfigurationToken, "tt:ReferenceToken")) - { soap_flag_Dot1XConfigurationToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Dot1XConfigurationToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDot1XConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDot1XConfiguration, SOAP_TYPE__tds__GetDot1XConfiguration, sizeof(_tds__GetDot1XConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDot1XConfiguration *p; - size_t k = sizeof(_tds__GetDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDot1XConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDot1XConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDot1XConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDot1XConfiguration(soap, tag ? tag : "tds:GetDot1XConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDot1XConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDot1XConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDot1XConfiguration * SOAP_FMAC4 soap_get__tds__GetDot1XConfiguration(struct soap *soap, _tds__GetDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDot1XConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetDot1XConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetDot1XConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDot1XConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDot1XConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__SetDot1XConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDot1XConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDot1XConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDot1XConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__SetDot1XConfigurationResponse(struct soap *soap, const char *tag, _tds__SetDot1XConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDot1XConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDot1XConfigurationResponse, sizeof(_tds__SetDot1XConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDot1XConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDot1XConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetDot1XConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDot1XConfigurationResponse, SOAP_TYPE__tds__SetDot1XConfigurationResponse, sizeof(_tds__SetDot1XConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__SetDot1XConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDot1XConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDot1XConfigurationResponse *p; - size_t k = sizeof(_tds__SetDot1XConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDot1XConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDot1XConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDot1XConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDot1XConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDot1XConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDot1XConfigurationResponse(soap, tag ? tag : "tds:SetDot1XConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDot1XConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDot1XConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__SetDot1XConfigurationResponse(struct soap *soap, _tds__SetDot1XConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDot1XConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDot1XConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__SetDot1XConfiguration::Dot1XConfiguration = NULL; -} - -void _tds__SetDot1XConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Dot1XConfiguration(soap, &this->_tds__SetDot1XConfiguration::Dot1XConfiguration); -#endif -} - -int _tds__SetDot1XConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDot1XConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDot1XConfiguration(struct soap *soap, const char *tag, int id, const _tds__SetDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDot1XConfiguration), type)) - return soap->error; - if (!a->_tds__SetDot1XConfiguration::Dot1XConfiguration) - { if (soap_element_empty(soap, "tds:Dot1XConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", -1, &a->_tds__SetDot1XConfiguration::Dot1XConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDot1XConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDot1XConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDot1XConfiguration * SOAP_FMAC4 soap_in__tds__SetDot1XConfiguration(struct soap *soap, const char *tag, _tds__SetDot1XConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDot1XConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDot1XConfiguration, sizeof(_tds__SetDot1XConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDot1XConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDot1XConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Dot1XConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Dot1XConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", &a->_tds__SetDot1XConfiguration::Dot1XConfiguration, "tt:Dot1XConfiguration")) - { soap_flag_Dot1XConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__SetDot1XConfiguration::Dot1XConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetDot1XConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDot1XConfiguration, SOAP_TYPE__tds__SetDot1XConfiguration, sizeof(_tds__SetDot1XConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__SetDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDot1XConfiguration *p; - size_t k = sizeof(_tds__SetDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDot1XConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDot1XConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDot1XConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDot1XConfiguration(soap, tag ? tag : "tds:SetDot1XConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDot1XConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDot1XConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDot1XConfiguration * SOAP_FMAC4 soap_get__tds__SetDot1XConfiguration(struct soap *soap, _tds__SetDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateDot1XConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__CreateDot1XConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__CreateDot1XConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateDot1XConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateDot1XConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__CreateDot1XConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateDot1XConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateDot1XConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateDot1XConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__CreateDot1XConfigurationResponse(struct soap *soap, const char *tag, _tds__CreateDot1XConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateDot1XConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateDot1XConfigurationResponse, sizeof(_tds__CreateDot1XConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateDot1XConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateDot1XConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__CreateDot1XConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateDot1XConfigurationResponse, SOAP_TYPE__tds__CreateDot1XConfigurationResponse, sizeof(_tds__CreateDot1XConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__CreateDot1XConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateDot1XConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateDot1XConfigurationResponse *p; - size_t k = sizeof(_tds__CreateDot1XConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateDot1XConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateDot1XConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateDot1XConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateDot1XConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateDot1XConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateDot1XConfigurationResponse(soap, tag ? tag : "tds:CreateDot1XConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateDot1XConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateDot1XConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__CreateDot1XConfigurationResponse(struct soap *soap, _tds__CreateDot1XConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateDot1XConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateDot1XConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__CreateDot1XConfiguration::Dot1XConfiguration = NULL; -} - -void _tds__CreateDot1XConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Dot1XConfiguration(soap, &this->_tds__CreateDot1XConfiguration::Dot1XConfiguration); -#endif -} - -int _tds__CreateDot1XConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateDot1XConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateDot1XConfiguration(struct soap *soap, const char *tag, int id, const _tds__CreateDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateDot1XConfiguration), type)) - return soap->error; - if (!a->_tds__CreateDot1XConfiguration::Dot1XConfiguration) - { if (soap_element_empty(soap, "tds:Dot1XConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", -1, &a->_tds__CreateDot1XConfiguration::Dot1XConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateDot1XConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateDot1XConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_in__tds__CreateDot1XConfiguration(struct soap *soap, const char *tag, _tds__CreateDot1XConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateDot1XConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateDot1XConfiguration, sizeof(_tds__CreateDot1XConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateDot1XConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateDot1XConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Dot1XConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Dot1XConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot1XConfiguration(soap, "tds:Dot1XConfiguration", &a->_tds__CreateDot1XConfiguration::Dot1XConfiguration, "tt:Dot1XConfiguration")) - { soap_flag_Dot1XConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__CreateDot1XConfiguration::Dot1XConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__CreateDot1XConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateDot1XConfiguration, SOAP_TYPE__tds__CreateDot1XConfiguration, sizeof(_tds__CreateDot1XConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__CreateDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateDot1XConfiguration *p; - size_t k = sizeof(_tds__CreateDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateDot1XConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateDot1XConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateDot1XConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateDot1XConfiguration(soap, tag ? tag : "tds:CreateDot1XConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateDot1XConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateDot1XConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_get__tds__CreateDot1XConfiguration(struct soap *soap, _tds__CreateDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__LoadCACertificatesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__LoadCACertificatesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__LoadCACertificatesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__LoadCACertificatesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCACertificatesResponse(struct soap *soap, const char *tag, int id, const _tds__LoadCACertificatesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__LoadCACertificatesResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__LoadCACertificatesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__LoadCACertificatesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__LoadCACertificatesResponse * SOAP_FMAC4 soap_in__tds__LoadCACertificatesResponse(struct soap *soap, const char *tag, _tds__LoadCACertificatesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__LoadCACertificatesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__LoadCACertificatesResponse, sizeof(_tds__LoadCACertificatesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__LoadCACertificatesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__LoadCACertificatesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__LoadCACertificatesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__LoadCACertificatesResponse, SOAP_TYPE__tds__LoadCACertificatesResponse, sizeof(_tds__LoadCACertificatesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__LoadCACertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__LoadCACertificatesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__LoadCACertificatesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__LoadCACertificatesResponse *p; - size_t k = sizeof(_tds__LoadCACertificatesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__LoadCACertificatesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__LoadCACertificatesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__LoadCACertificatesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__LoadCACertificatesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__LoadCACertificatesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__LoadCACertificatesResponse(soap, tag ? tag : "tds:LoadCACertificatesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__LoadCACertificatesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__LoadCACertificatesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__LoadCACertificatesResponse * SOAP_FMAC4 soap_get__tds__LoadCACertificatesResponse(struct soap *soap, _tds__LoadCACertificatesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__LoadCACertificatesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__LoadCACertificates::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__LoadCACertificates::CACertificate); -} - -void _tds__LoadCACertificates::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__LoadCACertificates::CACertificate); -#endif -} - -int _tds__LoadCACertificates::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__LoadCACertificates(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCACertificates(struct soap *soap, const char *tag, int id, const _tds__LoadCACertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__LoadCACertificates), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:CACertificate", -1, &a->_tds__LoadCACertificates::CACertificate, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__LoadCACertificates::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__LoadCACertificates(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__LoadCACertificates * SOAP_FMAC4 soap_in__tds__LoadCACertificates(struct soap *soap, const char *tag, _tds__LoadCACertificates *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__LoadCACertificates*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__LoadCACertificates, sizeof(_tds__LoadCACertificates), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__LoadCACertificates) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__LoadCACertificates *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:CACertificate", &a->_tds__LoadCACertificates::CACertificate, "tt:Certificate")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__LoadCACertificates::CACertificate.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__LoadCACertificates *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__LoadCACertificates, SOAP_TYPE__tds__LoadCACertificates, sizeof(_tds__LoadCACertificates), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__LoadCACertificates * SOAP_FMAC2 soap_instantiate__tds__LoadCACertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__LoadCACertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__LoadCACertificates *p; - size_t k = sizeof(_tds__LoadCACertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__LoadCACertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__LoadCACertificates); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__LoadCACertificates, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__LoadCACertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__LoadCACertificates::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__LoadCACertificates(soap, tag ? tag : "tds:LoadCACertificates", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__LoadCACertificates::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__LoadCACertificates(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__LoadCACertificates * SOAP_FMAC4 soap_get__tds__LoadCACertificates(struct soap *soap, _tds__LoadCACertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__LoadCACertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCertificateInformationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetCertificateInformationResponse::CertificateInformation = NULL; -} - -void _tds__GetCertificateInformationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__CertificateInformation(soap, &this->_tds__GetCertificateInformationResponse::CertificateInformation); -#endif -} - -int _tds__GetCertificateInformationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCertificateInformationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificateInformationResponse(struct soap *soap, const char *tag, int id, const _tds__GetCertificateInformationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCertificateInformationResponse), type)) - return soap->error; - if (a->CertificateInformation) - soap_element_result(soap, "tds:CertificateInformation"); - if (!a->_tds__GetCertificateInformationResponse::CertificateInformation) - { if (soap_element_empty(soap, "tds:CertificateInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__CertificateInformation(soap, "tds:CertificateInformation", -1, &a->_tds__GetCertificateInformationResponse::CertificateInformation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCertificateInformationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCertificateInformationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCertificateInformationResponse * SOAP_FMAC4 soap_in__tds__GetCertificateInformationResponse(struct soap *soap, const char *tag, _tds__GetCertificateInformationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCertificateInformationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCertificateInformationResponse, sizeof(_tds__GetCertificateInformationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCertificateInformationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCertificateInformationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_CertificateInformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CertificateInformation(soap, "tds:CertificateInformation", &a->_tds__GetCertificateInformationResponse::CertificateInformation, "tt:CertificateInformation")) - { soap_flag_CertificateInformation1--; - continue; - } - } - soap_check_result(soap, "tds:CertificateInformation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetCertificateInformationResponse::CertificateInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetCertificateInformationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCertificateInformationResponse, SOAP_TYPE__tds__GetCertificateInformationResponse, sizeof(_tds__GetCertificateInformationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCertificateInformationResponse * SOAP_FMAC2 soap_instantiate__tds__GetCertificateInformationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCertificateInformationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCertificateInformationResponse *p; - size_t k = sizeof(_tds__GetCertificateInformationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCertificateInformationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCertificateInformationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCertificateInformationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCertificateInformationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCertificateInformationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCertificateInformationResponse(soap, tag ? tag : "tds:GetCertificateInformationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCertificateInformationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCertificateInformationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCertificateInformationResponse * SOAP_FMAC4 soap_get__tds__GetCertificateInformationResponse(struct soap *soap, _tds__GetCertificateInformationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCertificateInformationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCertificateInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->_tds__GetCertificateInformation::CertificateID); -} - -void _tds__GetCertificateInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetCertificateInformation::CertificateID, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->_tds__GetCertificateInformation::CertificateID); -#endif -} - -int _tds__GetCertificateInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCertificateInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificateInformation(struct soap *soap, const char *tag, int id, const _tds__GetCertificateInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCertificateInformation), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tds:CertificateID", -1, &a->_tds__GetCertificateInformation::CertificateID, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCertificateInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCertificateInformation(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCertificateInformation * SOAP_FMAC4 soap_in__tds__GetCertificateInformation(struct soap *soap, const char *tag, _tds__GetCertificateInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCertificateInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCertificateInformation, sizeof(_tds__GetCertificateInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCertificateInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCertificateInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_CertificateID1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tds:CertificateID", &a->_tds__GetCertificateInformation::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CertificateID1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetCertificateInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCertificateInformation, SOAP_TYPE__tds__GetCertificateInformation, sizeof(_tds__GetCertificateInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCertificateInformation * SOAP_FMAC2 soap_instantiate__tds__GetCertificateInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCertificateInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCertificateInformation *p; - size_t k = sizeof(_tds__GetCertificateInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCertificateInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCertificateInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCertificateInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCertificateInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCertificateInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCertificateInformation(soap, tag ? tag : "tds:GetCertificateInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCertificateInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCertificateInformation(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCertificateInformation * SOAP_FMAC4 soap_get__tds__GetCertificateInformation(struct soap *soap, _tds__GetCertificateInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCertificateInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__LoadCertificateWithPrivateKeyResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__LoadCertificateWithPrivateKeyResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__LoadCertificateWithPrivateKeyResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__LoadCertificateWithPrivateKeyResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, const char *tag, int id, const _tds__LoadCertificateWithPrivateKeyResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__LoadCertificateWithPrivateKeyResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__LoadCertificateWithPrivateKeyResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKeyResponse * SOAP_FMAC4 soap_in__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, const char *tag, _tds__LoadCertificateWithPrivateKeyResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__LoadCertificateWithPrivateKeyResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse, sizeof(_tds__LoadCertificateWithPrivateKeyResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__LoadCertificateWithPrivateKeyResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__LoadCertificateWithPrivateKeyResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse, SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse, sizeof(_tds__LoadCertificateWithPrivateKeyResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__LoadCertificateWithPrivateKeyResponse * SOAP_FMAC2 soap_instantiate__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__LoadCertificateWithPrivateKeyResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__LoadCertificateWithPrivateKeyResponse *p; - size_t k = sizeof(_tds__LoadCertificateWithPrivateKeyResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__LoadCertificateWithPrivateKeyResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__LoadCertificateWithPrivateKeyResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__LoadCertificateWithPrivateKeyResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__LoadCertificateWithPrivateKeyResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__LoadCertificateWithPrivateKeyResponse(soap, tag ? tag : "tds:LoadCertificateWithPrivateKeyResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__LoadCertificateWithPrivateKeyResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__LoadCertificateWithPrivateKeyResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKeyResponse * SOAP_FMAC4 soap_get__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, _tds__LoadCertificateWithPrivateKeyResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__LoadCertificateWithPrivateKeyResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__LoadCertificateWithPrivateKey::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(soap, &this->_tds__LoadCertificateWithPrivateKey::CertificateWithPrivateKey); -} - -void _tds__LoadCertificateWithPrivateKey::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(soap, &this->_tds__LoadCertificateWithPrivateKey::CertificateWithPrivateKey); -#endif -} - -int _tds__LoadCertificateWithPrivateKey::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__LoadCertificateWithPrivateKey(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *tag, int id, const _tds__LoadCertificateWithPrivateKey *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__LoadCertificateWithPrivateKey), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(soap, "tds:CertificateWithPrivateKey", -1, &a->_tds__LoadCertificateWithPrivateKey::CertificateWithPrivateKey, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__LoadCertificateWithPrivateKey::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__LoadCertificateWithPrivateKey(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_in__tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *tag, _tds__LoadCertificateWithPrivateKey *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__LoadCertificateWithPrivateKey*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__LoadCertificateWithPrivateKey, sizeof(_tds__LoadCertificateWithPrivateKey), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__LoadCertificateWithPrivateKey) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__LoadCertificateWithPrivateKey *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(soap, "tds:CertificateWithPrivateKey", &a->_tds__LoadCertificateWithPrivateKey::CertificateWithPrivateKey, "tt:CertificateWithPrivateKey")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__LoadCertificateWithPrivateKey::CertificateWithPrivateKey.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__LoadCertificateWithPrivateKey *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__LoadCertificateWithPrivateKey, SOAP_TYPE__tds__LoadCertificateWithPrivateKey, sizeof(_tds__LoadCertificateWithPrivateKey), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__LoadCertificateWithPrivateKey * SOAP_FMAC2 soap_instantiate__tds__LoadCertificateWithPrivateKey(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__LoadCertificateWithPrivateKey(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__LoadCertificateWithPrivateKey *p; - size_t k = sizeof(_tds__LoadCertificateWithPrivateKey); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__LoadCertificateWithPrivateKey, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__LoadCertificateWithPrivateKey); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__LoadCertificateWithPrivateKey, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__LoadCertificateWithPrivateKey location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__LoadCertificateWithPrivateKey::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__LoadCertificateWithPrivateKey(soap, tag ? tag : "tds:LoadCertificateWithPrivateKey", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__LoadCertificateWithPrivateKey::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__LoadCertificateWithPrivateKey(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_get__tds__LoadCertificateWithPrivateKey(struct soap *soap, _tds__LoadCertificateWithPrivateKey *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__LoadCertificateWithPrivateKey(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCACertificatesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__GetCACertificatesResponse::CACertificate); -} - -void _tds__GetCACertificatesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__GetCACertificatesResponse::CACertificate); -#endif -} - -int _tds__GetCACertificatesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCACertificatesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCACertificatesResponse(struct soap *soap, const char *tag, int id, const _tds__GetCACertificatesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCACertificatesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:CACertificate"); - if (soap_out_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:CACertificate", -1, &a->_tds__GetCACertificatesResponse::CACertificate, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCACertificatesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCACertificatesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCACertificatesResponse * SOAP_FMAC4 soap_in__tds__GetCACertificatesResponse(struct soap *soap, const char *tag, _tds__GetCACertificatesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCACertificatesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCACertificatesResponse, sizeof(_tds__GetCACertificatesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCACertificatesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCACertificatesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:CACertificate", &a->_tds__GetCACertificatesResponse::CACertificate, "tt:Certificate")) - continue; - } - soap_check_result(soap, "tds:CACertificate"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetCACertificatesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCACertificatesResponse, SOAP_TYPE__tds__GetCACertificatesResponse, sizeof(_tds__GetCACertificatesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCACertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__GetCACertificatesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCACertificatesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCACertificatesResponse *p; - size_t k = sizeof(_tds__GetCACertificatesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCACertificatesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCACertificatesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCACertificatesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCACertificatesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCACertificatesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCACertificatesResponse(soap, tag ? tag : "tds:GetCACertificatesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCACertificatesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCACertificatesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCACertificatesResponse * SOAP_FMAC4 soap_get__tds__GetCACertificatesResponse(struct soap *soap, _tds__GetCACertificatesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCACertificatesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCACertificates::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetCACertificates::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetCACertificates::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCACertificates(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCACertificates(struct soap *soap, const char *tag, int id, const _tds__GetCACertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCACertificates), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCACertificates::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCACertificates(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCACertificates * SOAP_FMAC4 soap_in__tds__GetCACertificates(struct soap *soap, const char *tag, _tds__GetCACertificates *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCACertificates*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCACertificates, sizeof(_tds__GetCACertificates), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCACertificates) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCACertificates *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetCACertificates *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCACertificates, SOAP_TYPE__tds__GetCACertificates, sizeof(_tds__GetCACertificates), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCACertificates * SOAP_FMAC2 soap_instantiate__tds__GetCACertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCACertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCACertificates *p; - size_t k = sizeof(_tds__GetCACertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCACertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCACertificates); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCACertificates, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCACertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCACertificates::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCACertificates(soap, tag ? tag : "tds:GetCACertificates", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCACertificates::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCACertificates(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCACertificates * SOAP_FMAC4 soap_get__tds__GetCACertificates(struct soap *soap, _tds__GetCACertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCACertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetClientCertificateModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetClientCertificateModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetClientCertificateModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetClientCertificateModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetClientCertificateModeResponse(struct soap *soap, const char *tag, int id, const _tds__SetClientCertificateModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetClientCertificateModeResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetClientCertificateModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetClientCertificateModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetClientCertificateModeResponse * SOAP_FMAC4 soap_in__tds__SetClientCertificateModeResponse(struct soap *soap, const char *tag, _tds__SetClientCertificateModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetClientCertificateModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetClientCertificateModeResponse, sizeof(_tds__SetClientCertificateModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetClientCertificateModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetClientCertificateModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetClientCertificateModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetClientCertificateModeResponse, SOAP_TYPE__tds__SetClientCertificateModeResponse, sizeof(_tds__SetClientCertificateModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetClientCertificateModeResponse * SOAP_FMAC2 soap_instantiate__tds__SetClientCertificateModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetClientCertificateModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetClientCertificateModeResponse *p; - size_t k = sizeof(_tds__SetClientCertificateModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetClientCertificateModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetClientCertificateModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetClientCertificateModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetClientCertificateModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetClientCertificateModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetClientCertificateModeResponse(soap, tag ? tag : "tds:SetClientCertificateModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetClientCertificateModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetClientCertificateModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetClientCertificateModeResponse * SOAP_FMAC4 soap_get__tds__SetClientCertificateModeResponse(struct soap *soap, _tds__SetClientCertificateModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetClientCertificateModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetClientCertificateMode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__SetClientCertificateMode::Enabled); -} - -void _tds__SetClientCertificateMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetClientCertificateMode::Enabled, SOAP_TYPE_bool); -#endif -} - -int _tds__SetClientCertificateMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetClientCertificateMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetClientCertificateMode(struct soap *soap, const char *tag, int id, const _tds__SetClientCertificateMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetClientCertificateMode), type)) - return soap->error; - if (soap_out_bool(soap, "tds:Enabled", -1, &a->_tds__SetClientCertificateMode::Enabled, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetClientCertificateMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetClientCertificateMode(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetClientCertificateMode * SOAP_FMAC4 soap_in__tds__SetClientCertificateMode(struct soap *soap, const char *tag, _tds__SetClientCertificateMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetClientCertificateMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetClientCertificateMode, sizeof(_tds__SetClientCertificateMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetClientCertificateMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetClientCertificateMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Enabled1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:Enabled", &a->_tds__SetClientCertificateMode::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Enabled1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetClientCertificateMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetClientCertificateMode, SOAP_TYPE__tds__SetClientCertificateMode, sizeof(_tds__SetClientCertificateMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetClientCertificateMode * SOAP_FMAC2 soap_instantiate__tds__SetClientCertificateMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetClientCertificateMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetClientCertificateMode *p; - size_t k = sizeof(_tds__SetClientCertificateMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetClientCertificateMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetClientCertificateMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetClientCertificateMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetClientCertificateMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetClientCertificateMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetClientCertificateMode(soap, tag ? tag : "tds:SetClientCertificateMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetClientCertificateMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetClientCertificateMode(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetClientCertificateMode * SOAP_FMAC4 soap_get__tds__SetClientCertificateMode(struct soap *soap, _tds__SetClientCertificateMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetClientCertificateMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetClientCertificateModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__GetClientCertificateModeResponse::Enabled); -} - -void _tds__GetClientCertificateModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetClientCertificateModeResponse::Enabled, SOAP_TYPE_bool); -#endif -} - -int _tds__GetClientCertificateModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetClientCertificateModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetClientCertificateModeResponse(struct soap *soap, const char *tag, int id, const _tds__GetClientCertificateModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetClientCertificateModeResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Enabled"); - if (soap_out_bool(soap, "tds:Enabled", -1, &a->_tds__GetClientCertificateModeResponse::Enabled, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetClientCertificateModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetClientCertificateModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetClientCertificateModeResponse * SOAP_FMAC4 soap_in__tds__GetClientCertificateModeResponse(struct soap *soap, const char *tag, _tds__GetClientCertificateModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetClientCertificateModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetClientCertificateModeResponse, sizeof(_tds__GetClientCertificateModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetClientCertificateModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetClientCertificateModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Enabled1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:Enabled", &a->_tds__GetClientCertificateModeResponse::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - soap_check_result(soap, "tds:Enabled"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Enabled1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetClientCertificateModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetClientCertificateModeResponse, SOAP_TYPE__tds__GetClientCertificateModeResponse, sizeof(_tds__GetClientCertificateModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetClientCertificateModeResponse * SOAP_FMAC2 soap_instantiate__tds__GetClientCertificateModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetClientCertificateModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetClientCertificateModeResponse *p; - size_t k = sizeof(_tds__GetClientCertificateModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetClientCertificateModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetClientCertificateModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetClientCertificateModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetClientCertificateModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetClientCertificateModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetClientCertificateModeResponse(soap, tag ? tag : "tds:GetClientCertificateModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetClientCertificateModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetClientCertificateModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetClientCertificateModeResponse * SOAP_FMAC4 soap_get__tds__GetClientCertificateModeResponse(struct soap *soap, _tds__GetClientCertificateModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetClientCertificateModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetClientCertificateMode::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetClientCertificateMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetClientCertificateMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetClientCertificateMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetClientCertificateMode(struct soap *soap, const char *tag, int id, const _tds__GetClientCertificateMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetClientCertificateMode), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetClientCertificateMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetClientCertificateMode(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetClientCertificateMode * SOAP_FMAC4 soap_in__tds__GetClientCertificateMode(struct soap *soap, const char *tag, _tds__GetClientCertificateMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetClientCertificateMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetClientCertificateMode, sizeof(_tds__GetClientCertificateMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetClientCertificateMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetClientCertificateMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetClientCertificateMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetClientCertificateMode, SOAP_TYPE__tds__GetClientCertificateMode, sizeof(_tds__GetClientCertificateMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetClientCertificateMode * SOAP_FMAC2 soap_instantiate__tds__GetClientCertificateMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetClientCertificateMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetClientCertificateMode *p; - size_t k = sizeof(_tds__GetClientCertificateMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetClientCertificateMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetClientCertificateMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetClientCertificateMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetClientCertificateMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetClientCertificateMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetClientCertificateMode(soap, tag ? tag : "tds:GetClientCertificateMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetClientCertificateMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetClientCertificateMode(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetClientCertificateMode * SOAP_FMAC4 soap_get__tds__GetClientCertificateMode(struct soap *soap, _tds__GetClientCertificateMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetClientCertificateMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__LoadCertificatesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__LoadCertificatesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__LoadCertificatesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__LoadCertificatesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificatesResponse(struct soap *soap, const char *tag, int id, const _tds__LoadCertificatesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__LoadCertificatesResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__LoadCertificatesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__LoadCertificatesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__LoadCertificatesResponse * SOAP_FMAC4 soap_in__tds__LoadCertificatesResponse(struct soap *soap, const char *tag, _tds__LoadCertificatesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__LoadCertificatesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__LoadCertificatesResponse, sizeof(_tds__LoadCertificatesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__LoadCertificatesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__LoadCertificatesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__LoadCertificatesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__LoadCertificatesResponse, SOAP_TYPE__tds__LoadCertificatesResponse, sizeof(_tds__LoadCertificatesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__LoadCertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__LoadCertificatesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__LoadCertificatesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__LoadCertificatesResponse *p; - size_t k = sizeof(_tds__LoadCertificatesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__LoadCertificatesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__LoadCertificatesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__LoadCertificatesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__LoadCertificatesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__LoadCertificatesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__LoadCertificatesResponse(soap, tag ? tag : "tds:LoadCertificatesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__LoadCertificatesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__LoadCertificatesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__LoadCertificatesResponse * SOAP_FMAC4 soap_get__tds__LoadCertificatesResponse(struct soap *soap, _tds__LoadCertificatesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__LoadCertificatesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__LoadCertificates::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__LoadCertificates::NVTCertificate); -} - -void _tds__LoadCertificates::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__LoadCertificates::NVTCertificate); -#endif -} - -int _tds__LoadCertificates::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__LoadCertificates(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificates(struct soap *soap, const char *tag, int id, const _tds__LoadCertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__LoadCertificates), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:NVTCertificate", -1, &a->_tds__LoadCertificates::NVTCertificate, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__LoadCertificates::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__LoadCertificates(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__LoadCertificates * SOAP_FMAC4 soap_in__tds__LoadCertificates(struct soap *soap, const char *tag, _tds__LoadCertificates *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__LoadCertificates*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__LoadCertificates, sizeof(_tds__LoadCertificates), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__LoadCertificates) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__LoadCertificates *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:NVTCertificate", &a->_tds__LoadCertificates::NVTCertificate, "tt:Certificate")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__LoadCertificates::NVTCertificate.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__LoadCertificates *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__LoadCertificates, SOAP_TYPE__tds__LoadCertificates, sizeof(_tds__LoadCertificates), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__LoadCertificates * SOAP_FMAC2 soap_instantiate__tds__LoadCertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__LoadCertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__LoadCertificates *p; - size_t k = sizeof(_tds__LoadCertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__LoadCertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__LoadCertificates); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__LoadCertificates, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__LoadCertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__LoadCertificates::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__LoadCertificates(soap, tag ? tag : "tds:LoadCertificates", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__LoadCertificates::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__LoadCertificates(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__LoadCertificates * SOAP_FMAC4 soap_get__tds__LoadCertificates(struct soap *soap, _tds__LoadCertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__LoadCertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetPkcs10RequestResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetPkcs10RequestResponse::Pkcs10Request = NULL; -} - -void _tds__GetPkcs10RequestResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__BinaryData(soap, &this->_tds__GetPkcs10RequestResponse::Pkcs10Request); -#endif -} - -int _tds__GetPkcs10RequestResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetPkcs10RequestResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetPkcs10RequestResponse(struct soap *soap, const char *tag, int id, const _tds__GetPkcs10RequestResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetPkcs10RequestResponse), type)) - return soap->error; - if (a->Pkcs10Request) - soap_element_result(soap, "tds:Pkcs10Request"); - if (!a->_tds__GetPkcs10RequestResponse::Pkcs10Request) - { if (soap_element_empty(soap, "tds:Pkcs10Request", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__BinaryData(soap, "tds:Pkcs10Request", -1, &a->_tds__GetPkcs10RequestResponse::Pkcs10Request, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetPkcs10RequestResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetPkcs10RequestResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetPkcs10RequestResponse * SOAP_FMAC4 soap_in__tds__GetPkcs10RequestResponse(struct soap *soap, const char *tag, _tds__GetPkcs10RequestResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetPkcs10RequestResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetPkcs10RequestResponse, sizeof(_tds__GetPkcs10RequestResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetPkcs10RequestResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetPkcs10RequestResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Pkcs10Request1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Pkcs10Request1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BinaryData(soap, "tds:Pkcs10Request", &a->_tds__GetPkcs10RequestResponse::Pkcs10Request, "tt:BinaryData")) - { soap_flag_Pkcs10Request1--; - continue; - } - } - soap_check_result(soap, "tds:Pkcs10Request"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetPkcs10RequestResponse::Pkcs10Request)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetPkcs10RequestResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetPkcs10RequestResponse, SOAP_TYPE__tds__GetPkcs10RequestResponse, sizeof(_tds__GetPkcs10RequestResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetPkcs10RequestResponse * SOAP_FMAC2 soap_instantiate__tds__GetPkcs10RequestResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetPkcs10RequestResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetPkcs10RequestResponse *p; - size_t k = sizeof(_tds__GetPkcs10RequestResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetPkcs10RequestResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetPkcs10RequestResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetPkcs10RequestResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetPkcs10RequestResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetPkcs10RequestResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetPkcs10RequestResponse(soap, tag ? tag : "tds:GetPkcs10RequestResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetPkcs10RequestResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetPkcs10RequestResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetPkcs10RequestResponse * SOAP_FMAC4 soap_get__tds__GetPkcs10RequestResponse(struct soap *soap, _tds__GetPkcs10RequestResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetPkcs10RequestResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetPkcs10Request::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->_tds__GetPkcs10Request::CertificateID); - this->_tds__GetPkcs10Request::Subject = NULL; - this->_tds__GetPkcs10Request::Attributes = NULL; -} - -void _tds__GetPkcs10Request::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetPkcs10Request::CertificateID, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->_tds__GetPkcs10Request::CertificateID); - soap_serialize_PointerTostd__string(soap, &this->_tds__GetPkcs10Request::Subject); - soap_serialize_PointerTott__BinaryData(soap, &this->_tds__GetPkcs10Request::Attributes); -#endif -} - -int _tds__GetPkcs10Request::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetPkcs10Request(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetPkcs10Request(struct soap *soap, const char *tag, int id, const _tds__GetPkcs10Request *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetPkcs10Request), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tds:CertificateID", -1, &a->_tds__GetPkcs10Request::CertificateID, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tds:Subject", -1, &a->_tds__GetPkcs10Request::Subject, "")) - return soap->error; - if (soap_out_PointerTott__BinaryData(soap, "tds:Attributes", -1, &a->_tds__GetPkcs10Request::Attributes, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetPkcs10Request::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetPkcs10Request(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetPkcs10Request * SOAP_FMAC4 soap_in__tds__GetPkcs10Request(struct soap *soap, const char *tag, _tds__GetPkcs10Request *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetPkcs10Request*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetPkcs10Request, sizeof(_tds__GetPkcs10Request), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetPkcs10Request) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetPkcs10Request *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_CertificateID1 = 1; - size_t soap_flag_Subject1 = 1; - size_t soap_flag_Attributes1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tds:CertificateID", &a->_tds__GetPkcs10Request::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap_flag_Subject1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tds:Subject", &a->_tds__GetPkcs10Request::Subject, "xsd:string")) - { soap_flag_Subject1--; - continue; - } - } - if (soap_flag_Attributes1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BinaryData(soap, "tds:Attributes", &a->_tds__GetPkcs10Request::Attributes, "tt:BinaryData")) - { soap_flag_Attributes1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CertificateID1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetPkcs10Request *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetPkcs10Request, SOAP_TYPE__tds__GetPkcs10Request, sizeof(_tds__GetPkcs10Request), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetPkcs10Request * SOAP_FMAC2 soap_instantiate__tds__GetPkcs10Request(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetPkcs10Request(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetPkcs10Request *p; - size_t k = sizeof(_tds__GetPkcs10Request); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetPkcs10Request, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetPkcs10Request); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetPkcs10Request, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetPkcs10Request location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetPkcs10Request::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetPkcs10Request(soap, tag ? tag : "tds:GetPkcs10Request", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetPkcs10Request::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetPkcs10Request(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetPkcs10Request * SOAP_FMAC4 soap_get__tds__GetPkcs10Request(struct soap *soap, _tds__GetPkcs10Request *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetPkcs10Request(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteCertificatesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__DeleteCertificatesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__DeleteCertificatesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteCertificatesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteCertificatesResponse(struct soap *soap, const char *tag, int id, const _tds__DeleteCertificatesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteCertificatesResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteCertificatesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteCertificatesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteCertificatesResponse * SOAP_FMAC4 soap_in__tds__DeleteCertificatesResponse(struct soap *soap, const char *tag, _tds__DeleteCertificatesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteCertificatesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteCertificatesResponse, sizeof(_tds__DeleteCertificatesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteCertificatesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteCertificatesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__DeleteCertificatesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteCertificatesResponse, SOAP_TYPE__tds__DeleteCertificatesResponse, sizeof(_tds__DeleteCertificatesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteCertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteCertificatesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteCertificatesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteCertificatesResponse *p; - size_t k = sizeof(_tds__DeleteCertificatesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteCertificatesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteCertificatesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteCertificatesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteCertificatesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteCertificatesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteCertificatesResponse(soap, tag ? tag : "tds:DeleteCertificatesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteCertificatesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteCertificatesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteCertificatesResponse * SOAP_FMAC4 soap_get__tds__DeleteCertificatesResponse(struct soap *soap, _tds__DeleteCertificatesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteCertificatesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteCertificates::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__token(soap, &this->_tds__DeleteCertificates::CertificateID); -} - -void _tds__DeleteCertificates::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__token(soap, &this->_tds__DeleteCertificates::CertificateID); -#endif -} - -int _tds__DeleteCertificates::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteCertificates(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteCertificates(struct soap *soap, const char *tag, int id, const _tds__DeleteCertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteCertificates), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__token(soap, "tds:CertificateID", -1, &a->_tds__DeleteCertificates::CertificateID, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteCertificates::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteCertificates(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteCertificates * SOAP_FMAC4 soap_in__tds__DeleteCertificates(struct soap *soap, const char *tag, _tds__DeleteCertificates *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteCertificates*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteCertificates, sizeof(_tds__DeleteCertificates), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteCertificates) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteCertificates *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__token(soap, "tds:CertificateID", &a->_tds__DeleteCertificates::CertificateID, "xsd:token")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__DeleteCertificates::CertificateID.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__DeleteCertificates *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteCertificates, SOAP_TYPE__tds__DeleteCertificates, sizeof(_tds__DeleteCertificates), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteCertificates * SOAP_FMAC2 soap_instantiate__tds__DeleteCertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteCertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteCertificates *p; - size_t k = sizeof(_tds__DeleteCertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteCertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteCertificates); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteCertificates, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteCertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteCertificates::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteCertificates(soap, tag ? tag : "tds:DeleteCertificates", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteCertificates::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteCertificates(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteCertificates * SOAP_FMAC4 soap_get__tds__DeleteCertificates(struct soap *soap, _tds__DeleteCertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteCertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetCertificatesStatusResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetCertificatesStatusResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetCertificatesStatusResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetCertificatesStatusResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetCertificatesStatusResponse(struct soap *soap, const char *tag, int id, const _tds__SetCertificatesStatusResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetCertificatesStatusResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetCertificatesStatusResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetCertificatesStatusResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetCertificatesStatusResponse * SOAP_FMAC4 soap_in__tds__SetCertificatesStatusResponse(struct soap *soap, const char *tag, _tds__SetCertificatesStatusResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetCertificatesStatusResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetCertificatesStatusResponse, sizeof(_tds__SetCertificatesStatusResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetCertificatesStatusResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetCertificatesStatusResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetCertificatesStatusResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetCertificatesStatusResponse, SOAP_TYPE__tds__SetCertificatesStatusResponse, sizeof(_tds__SetCertificatesStatusResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetCertificatesStatusResponse * SOAP_FMAC2 soap_instantiate__tds__SetCertificatesStatusResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetCertificatesStatusResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetCertificatesStatusResponse *p; - size_t k = sizeof(_tds__SetCertificatesStatusResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetCertificatesStatusResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetCertificatesStatusResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetCertificatesStatusResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetCertificatesStatusResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetCertificatesStatusResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetCertificatesStatusResponse(soap, tag ? tag : "tds:SetCertificatesStatusResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetCertificatesStatusResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetCertificatesStatusResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetCertificatesStatusResponse * SOAP_FMAC4 soap_get__tds__SetCertificatesStatusResponse(struct soap *soap, _tds__SetCertificatesStatusResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetCertificatesStatusResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetCertificatesStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__CertificateStatus(soap, &this->_tds__SetCertificatesStatus::CertificateStatus); -} - -void _tds__SetCertificatesStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__CertificateStatus(soap, &this->_tds__SetCertificatesStatus::CertificateStatus); -#endif -} - -int _tds__SetCertificatesStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetCertificatesStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetCertificatesStatus(struct soap *soap, const char *tag, int id, const _tds__SetCertificatesStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetCertificatesStatus), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__CertificateStatus(soap, "tds:CertificateStatus", -1, &a->_tds__SetCertificatesStatus::CertificateStatus, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetCertificatesStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetCertificatesStatus(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetCertificatesStatus * SOAP_FMAC4 soap_in__tds__SetCertificatesStatus(struct soap *soap, const char *tag, _tds__SetCertificatesStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetCertificatesStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetCertificatesStatus, sizeof(_tds__SetCertificatesStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetCertificatesStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetCertificatesStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__CertificateStatus(soap, "tds:CertificateStatus", &a->_tds__SetCertificatesStatus::CertificateStatus, "tt:CertificateStatus")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetCertificatesStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetCertificatesStatus, SOAP_TYPE__tds__SetCertificatesStatus, sizeof(_tds__SetCertificatesStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetCertificatesStatus * SOAP_FMAC2 soap_instantiate__tds__SetCertificatesStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetCertificatesStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetCertificatesStatus *p; - size_t k = sizeof(_tds__SetCertificatesStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetCertificatesStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetCertificatesStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetCertificatesStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetCertificatesStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetCertificatesStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetCertificatesStatus(soap, tag ? tag : "tds:SetCertificatesStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetCertificatesStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetCertificatesStatus(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetCertificatesStatus * SOAP_FMAC4 soap_get__tds__SetCertificatesStatus(struct soap *soap, _tds__SetCertificatesStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetCertificatesStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCertificatesStatusResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__CertificateStatus(soap, &this->_tds__GetCertificatesStatusResponse::CertificateStatus); -} - -void _tds__GetCertificatesStatusResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__CertificateStatus(soap, &this->_tds__GetCertificatesStatusResponse::CertificateStatus); -#endif -} - -int _tds__GetCertificatesStatusResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCertificatesStatusResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificatesStatusResponse(struct soap *soap, const char *tag, int id, const _tds__GetCertificatesStatusResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCertificatesStatusResponse), type)) - return soap->error; - soap_element_result(soap, "tds:CertificateStatus"); - if (soap_out_std__vectorTemplateOfPointerTott__CertificateStatus(soap, "tds:CertificateStatus", -1, &a->_tds__GetCertificatesStatusResponse::CertificateStatus, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCertificatesStatusResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCertificatesStatusResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCertificatesStatusResponse * SOAP_FMAC4 soap_in__tds__GetCertificatesStatusResponse(struct soap *soap, const char *tag, _tds__GetCertificatesStatusResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCertificatesStatusResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCertificatesStatusResponse, sizeof(_tds__GetCertificatesStatusResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCertificatesStatusResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCertificatesStatusResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__CertificateStatus(soap, "tds:CertificateStatus", &a->_tds__GetCertificatesStatusResponse::CertificateStatus, "tt:CertificateStatus")) - continue; - } - soap_check_result(soap, "tds:CertificateStatus"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetCertificatesStatusResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCertificatesStatusResponse, SOAP_TYPE__tds__GetCertificatesStatusResponse, sizeof(_tds__GetCertificatesStatusResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCertificatesStatusResponse * SOAP_FMAC2 soap_instantiate__tds__GetCertificatesStatusResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCertificatesStatusResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCertificatesStatusResponse *p; - size_t k = sizeof(_tds__GetCertificatesStatusResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCertificatesStatusResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCertificatesStatusResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCertificatesStatusResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCertificatesStatusResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCertificatesStatusResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCertificatesStatusResponse(soap, tag ? tag : "tds:GetCertificatesStatusResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCertificatesStatusResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCertificatesStatusResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCertificatesStatusResponse * SOAP_FMAC4 soap_get__tds__GetCertificatesStatusResponse(struct soap *soap, _tds__GetCertificatesStatusResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCertificatesStatusResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCertificatesStatus::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetCertificatesStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetCertificatesStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCertificatesStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificatesStatus(struct soap *soap, const char *tag, int id, const _tds__GetCertificatesStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCertificatesStatus), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCertificatesStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCertificatesStatus(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCertificatesStatus * SOAP_FMAC4 soap_in__tds__GetCertificatesStatus(struct soap *soap, const char *tag, _tds__GetCertificatesStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCertificatesStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCertificatesStatus, sizeof(_tds__GetCertificatesStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCertificatesStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCertificatesStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetCertificatesStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCertificatesStatus, SOAP_TYPE__tds__GetCertificatesStatus, sizeof(_tds__GetCertificatesStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCertificatesStatus * SOAP_FMAC2 soap_instantiate__tds__GetCertificatesStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCertificatesStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCertificatesStatus *p; - size_t k = sizeof(_tds__GetCertificatesStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCertificatesStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCertificatesStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCertificatesStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCertificatesStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCertificatesStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCertificatesStatus(soap, tag ? tag : "tds:GetCertificatesStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCertificatesStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCertificatesStatus(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCertificatesStatus * SOAP_FMAC4 soap_get__tds__GetCertificatesStatus(struct soap *soap, _tds__GetCertificatesStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCertificatesStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCertificatesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__GetCertificatesResponse::NvtCertificate); -} - -void _tds__GetCertificatesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Certificate(soap, &this->_tds__GetCertificatesResponse::NvtCertificate); -#endif -} - -int _tds__GetCertificatesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCertificatesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificatesResponse(struct soap *soap, const char *tag, int id, const _tds__GetCertificatesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCertificatesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:NvtCertificate"); - if (soap_out_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:NvtCertificate", -1, &a->_tds__GetCertificatesResponse::NvtCertificate, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCertificatesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCertificatesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCertificatesResponse * SOAP_FMAC4 soap_in__tds__GetCertificatesResponse(struct soap *soap, const char *tag, _tds__GetCertificatesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCertificatesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCertificatesResponse, sizeof(_tds__GetCertificatesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCertificatesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCertificatesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Certificate(soap, "tds:NvtCertificate", &a->_tds__GetCertificatesResponse::NvtCertificate, "tt:Certificate")) - continue; - } - soap_check_result(soap, "tds:NvtCertificate"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetCertificatesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCertificatesResponse, SOAP_TYPE__tds__GetCertificatesResponse, sizeof(_tds__GetCertificatesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__GetCertificatesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCertificatesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCertificatesResponse *p; - size_t k = sizeof(_tds__GetCertificatesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCertificatesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCertificatesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCertificatesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCertificatesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCertificatesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCertificatesResponse(soap, tag ? tag : "tds:GetCertificatesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCertificatesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCertificatesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCertificatesResponse * SOAP_FMAC4 soap_get__tds__GetCertificatesResponse(struct soap *soap, _tds__GetCertificatesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCertificatesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCertificates::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetCertificates::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetCertificates::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCertificates(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificates(struct soap *soap, const char *tag, int id, const _tds__GetCertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCertificates), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCertificates::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCertificates(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCertificates * SOAP_FMAC4 soap_in__tds__GetCertificates(struct soap *soap, const char *tag, _tds__GetCertificates *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCertificates*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCertificates, sizeof(_tds__GetCertificates), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCertificates) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCertificates *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetCertificates *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCertificates, SOAP_TYPE__tds__GetCertificates, sizeof(_tds__GetCertificates), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCertificates * SOAP_FMAC2 soap_instantiate__tds__GetCertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCertificates *p; - size_t k = sizeof(_tds__GetCertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCertificates); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCertificates, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCertificates::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCertificates(soap, tag ? tag : "tds:GetCertificates", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCertificates::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCertificates(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCertificates * SOAP_FMAC4 soap_get__tds__GetCertificates(struct soap *soap, _tds__GetCertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateCertificateResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__CreateCertificateResponse::NvtCertificate = NULL; -} - -void _tds__CreateCertificateResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Certificate(soap, &this->_tds__CreateCertificateResponse::NvtCertificate); -#endif -} - -int _tds__CreateCertificateResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateCertificateResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateCertificateResponse(struct soap *soap, const char *tag, int id, const _tds__CreateCertificateResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateCertificateResponse), type)) - return soap->error; - if (a->NvtCertificate) - soap_element_result(soap, "tds:NvtCertificate"); - if (!a->_tds__CreateCertificateResponse::NvtCertificate) - { if (soap_element_empty(soap, "tds:NvtCertificate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Certificate(soap, "tds:NvtCertificate", -1, &a->_tds__CreateCertificateResponse::NvtCertificate, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateCertificateResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateCertificateResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateCertificateResponse * SOAP_FMAC4 soap_in__tds__CreateCertificateResponse(struct soap *soap, const char *tag, _tds__CreateCertificateResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateCertificateResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateCertificateResponse, sizeof(_tds__CreateCertificateResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateCertificateResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateCertificateResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_NvtCertificate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_NvtCertificate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Certificate(soap, "tds:NvtCertificate", &a->_tds__CreateCertificateResponse::NvtCertificate, "tt:Certificate")) - { soap_flag_NvtCertificate1--; - continue; - } - } - soap_check_result(soap, "tds:NvtCertificate"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__CreateCertificateResponse::NvtCertificate)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__CreateCertificateResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateCertificateResponse, SOAP_TYPE__tds__CreateCertificateResponse, sizeof(_tds__CreateCertificateResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateCertificateResponse * SOAP_FMAC2 soap_instantiate__tds__CreateCertificateResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateCertificateResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateCertificateResponse *p; - size_t k = sizeof(_tds__CreateCertificateResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateCertificateResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateCertificateResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateCertificateResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateCertificateResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateCertificateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateCertificateResponse(soap, tag ? tag : "tds:CreateCertificateResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateCertificateResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateCertificateResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateCertificateResponse * SOAP_FMAC4 soap_get__tds__CreateCertificateResponse(struct soap *soap, _tds__CreateCertificateResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateCertificateResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateCertificate::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__CreateCertificate::CertificateID = NULL; - this->_tds__CreateCertificate::Subject = NULL; - this->_tds__CreateCertificate::ValidNotBefore = NULL; - this->_tds__CreateCertificate::ValidNotAfter = NULL; -} - -void _tds__CreateCertificate::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__token(soap, &this->_tds__CreateCertificate::CertificateID); - soap_serialize_PointerTostd__string(soap, &this->_tds__CreateCertificate::Subject); - soap_serialize_PointerToxsd__dateTime(soap, &this->_tds__CreateCertificate::ValidNotBefore); - soap_serialize_PointerToxsd__dateTime(soap, &this->_tds__CreateCertificate::ValidNotAfter); -#endif -} - -int _tds__CreateCertificate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateCertificate(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateCertificate(struct soap *soap, const char *tag, int id, const _tds__CreateCertificate *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateCertificate), type)) - return soap->error; - if (soap_out_PointerToxsd__token(soap, "tds:CertificateID", -1, &a->_tds__CreateCertificate::CertificateID, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tds:Subject", -1, &a->_tds__CreateCertificate::Subject, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "tds:ValidNotBefore", -1, &a->_tds__CreateCertificate::ValidNotBefore, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "tds:ValidNotAfter", -1, &a->_tds__CreateCertificate::ValidNotAfter, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateCertificate::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateCertificate(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateCertificate * SOAP_FMAC4 soap_in__tds__CreateCertificate(struct soap *soap, const char *tag, _tds__CreateCertificate *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateCertificate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateCertificate, sizeof(_tds__CreateCertificate), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateCertificate) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateCertificate *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_CertificateID1 = 1; - size_t soap_flag_Subject1 = 1; - size_t soap_flag_ValidNotBefore1 = 1; - size_t soap_flag_ValidNotAfter1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__token(soap, "tds:CertificateID", &a->_tds__CreateCertificate::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap_flag_Subject1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tds:Subject", &a->_tds__CreateCertificate::Subject, "xsd:string")) - { soap_flag_Subject1--; - continue; - } - } - if (soap_flag_ValidNotBefore1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "tds:ValidNotBefore", &a->_tds__CreateCertificate::ValidNotBefore, "xsd:dateTime")) - { soap_flag_ValidNotBefore1--; - continue; - } - } - if (soap_flag_ValidNotAfter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "tds:ValidNotAfter", &a->_tds__CreateCertificate::ValidNotAfter, "xsd:dateTime")) - { soap_flag_ValidNotAfter1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__CreateCertificate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateCertificate, SOAP_TYPE__tds__CreateCertificate, sizeof(_tds__CreateCertificate), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateCertificate * SOAP_FMAC2 soap_instantiate__tds__CreateCertificate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateCertificate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateCertificate *p; - size_t k = sizeof(_tds__CreateCertificate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateCertificate, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateCertificate); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateCertificate, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateCertificate location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateCertificate::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateCertificate(soap, tag ? tag : "tds:CreateCertificate", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateCertificate::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateCertificate(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateCertificate * SOAP_FMAC4 soap_get__tds__CreateCertificate(struct soap *soap, _tds__CreateCertificate *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateCertificate(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetAccessPolicyResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetAccessPolicyResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetAccessPolicyResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetAccessPolicyResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetAccessPolicyResponse(struct soap *soap, const char *tag, int id, const _tds__SetAccessPolicyResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetAccessPolicyResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetAccessPolicyResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetAccessPolicyResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetAccessPolicyResponse * SOAP_FMAC4 soap_in__tds__SetAccessPolicyResponse(struct soap *soap, const char *tag, _tds__SetAccessPolicyResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetAccessPolicyResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetAccessPolicyResponse, sizeof(_tds__SetAccessPolicyResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetAccessPolicyResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetAccessPolicyResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetAccessPolicyResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetAccessPolicyResponse, SOAP_TYPE__tds__SetAccessPolicyResponse, sizeof(_tds__SetAccessPolicyResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetAccessPolicyResponse * SOAP_FMAC2 soap_instantiate__tds__SetAccessPolicyResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetAccessPolicyResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetAccessPolicyResponse *p; - size_t k = sizeof(_tds__SetAccessPolicyResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetAccessPolicyResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetAccessPolicyResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetAccessPolicyResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetAccessPolicyResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetAccessPolicyResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetAccessPolicyResponse(soap, tag ? tag : "tds:SetAccessPolicyResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetAccessPolicyResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetAccessPolicyResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetAccessPolicyResponse * SOAP_FMAC4 soap_get__tds__SetAccessPolicyResponse(struct soap *soap, _tds__SetAccessPolicyResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetAccessPolicyResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetAccessPolicy::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__SetAccessPolicy::PolicyFile = NULL; -} - -void _tds__SetAccessPolicy::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__BinaryData(soap, &this->_tds__SetAccessPolicy::PolicyFile); -#endif -} - -int _tds__SetAccessPolicy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetAccessPolicy(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetAccessPolicy(struct soap *soap, const char *tag, int id, const _tds__SetAccessPolicy *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetAccessPolicy), type)) - return soap->error; - if (!a->_tds__SetAccessPolicy::PolicyFile) - { if (soap_element_empty(soap, "tds:PolicyFile", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__BinaryData(soap, "tds:PolicyFile", -1, &a->_tds__SetAccessPolicy::PolicyFile, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetAccessPolicy::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetAccessPolicy(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetAccessPolicy * SOAP_FMAC4 soap_in__tds__SetAccessPolicy(struct soap *soap, const char *tag, _tds__SetAccessPolicy *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetAccessPolicy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetAccessPolicy, sizeof(_tds__SetAccessPolicy), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetAccessPolicy) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetAccessPolicy *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PolicyFile1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PolicyFile1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BinaryData(soap, "tds:PolicyFile", &a->_tds__SetAccessPolicy::PolicyFile, "tt:BinaryData")) - { soap_flag_PolicyFile1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__SetAccessPolicy::PolicyFile)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetAccessPolicy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetAccessPolicy, SOAP_TYPE__tds__SetAccessPolicy, sizeof(_tds__SetAccessPolicy), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetAccessPolicy * SOAP_FMAC2 soap_instantiate__tds__SetAccessPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetAccessPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetAccessPolicy *p; - size_t k = sizeof(_tds__SetAccessPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetAccessPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetAccessPolicy); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetAccessPolicy, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetAccessPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetAccessPolicy::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetAccessPolicy(soap, tag ? tag : "tds:SetAccessPolicy", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetAccessPolicy::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetAccessPolicy(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetAccessPolicy * SOAP_FMAC4 soap_get__tds__SetAccessPolicy(struct soap *soap, _tds__SetAccessPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetAccessPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetAccessPolicyResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetAccessPolicyResponse::PolicyFile = NULL; -} - -void _tds__GetAccessPolicyResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__BinaryData(soap, &this->_tds__GetAccessPolicyResponse::PolicyFile); -#endif -} - -int _tds__GetAccessPolicyResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetAccessPolicyResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetAccessPolicyResponse(struct soap *soap, const char *tag, int id, const _tds__GetAccessPolicyResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetAccessPolicyResponse), type)) - return soap->error; - if (a->PolicyFile) - soap_element_result(soap, "tds:PolicyFile"); - if (!a->_tds__GetAccessPolicyResponse::PolicyFile) - { if (soap_element_empty(soap, "tds:PolicyFile", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__BinaryData(soap, "tds:PolicyFile", -1, &a->_tds__GetAccessPolicyResponse::PolicyFile, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetAccessPolicyResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetAccessPolicyResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetAccessPolicyResponse * SOAP_FMAC4 soap_in__tds__GetAccessPolicyResponse(struct soap *soap, const char *tag, _tds__GetAccessPolicyResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetAccessPolicyResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetAccessPolicyResponse, sizeof(_tds__GetAccessPolicyResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetAccessPolicyResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetAccessPolicyResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_PolicyFile1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PolicyFile1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BinaryData(soap, "tds:PolicyFile", &a->_tds__GetAccessPolicyResponse::PolicyFile, "tt:BinaryData")) - { soap_flag_PolicyFile1--; - continue; - } - } - soap_check_result(soap, "tds:PolicyFile"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetAccessPolicyResponse::PolicyFile)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetAccessPolicyResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetAccessPolicyResponse, SOAP_TYPE__tds__GetAccessPolicyResponse, sizeof(_tds__GetAccessPolicyResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetAccessPolicyResponse * SOAP_FMAC2 soap_instantiate__tds__GetAccessPolicyResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetAccessPolicyResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetAccessPolicyResponse *p; - size_t k = sizeof(_tds__GetAccessPolicyResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetAccessPolicyResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetAccessPolicyResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetAccessPolicyResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetAccessPolicyResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetAccessPolicyResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetAccessPolicyResponse(soap, tag ? tag : "tds:GetAccessPolicyResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetAccessPolicyResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetAccessPolicyResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetAccessPolicyResponse * SOAP_FMAC4 soap_get__tds__GetAccessPolicyResponse(struct soap *soap, _tds__GetAccessPolicyResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetAccessPolicyResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetAccessPolicy::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetAccessPolicy::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetAccessPolicy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetAccessPolicy(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetAccessPolicy(struct soap *soap, const char *tag, int id, const _tds__GetAccessPolicy *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetAccessPolicy), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetAccessPolicy::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetAccessPolicy(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetAccessPolicy * SOAP_FMAC4 soap_in__tds__GetAccessPolicy(struct soap *soap, const char *tag, _tds__GetAccessPolicy *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetAccessPolicy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetAccessPolicy, sizeof(_tds__GetAccessPolicy), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetAccessPolicy) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetAccessPolicy *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetAccessPolicy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetAccessPolicy, SOAP_TYPE__tds__GetAccessPolicy, sizeof(_tds__GetAccessPolicy), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetAccessPolicy * SOAP_FMAC2 soap_instantiate__tds__GetAccessPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetAccessPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetAccessPolicy *p; - size_t k = sizeof(_tds__GetAccessPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetAccessPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetAccessPolicy); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetAccessPolicy, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetAccessPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetAccessPolicy::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetAccessPolicy(soap, tag ? tag : "tds:GetAccessPolicy", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetAccessPolicy::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetAccessPolicy(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetAccessPolicy * SOAP_FMAC4 soap_get__tds__GetAccessPolicy(struct soap *soap, _tds__GetAccessPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetAccessPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__RemoveIPAddressFilterResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__RemoveIPAddressFilterResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__RemoveIPAddressFilterResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__RemoveIPAddressFilterResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveIPAddressFilterResponse(struct soap *soap, const char *tag, int id, const _tds__RemoveIPAddressFilterResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__RemoveIPAddressFilterResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__RemoveIPAddressFilterResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__RemoveIPAddressFilterResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__RemoveIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__RemoveIPAddressFilterResponse(struct soap *soap, const char *tag, _tds__RemoveIPAddressFilterResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__RemoveIPAddressFilterResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__RemoveIPAddressFilterResponse, sizeof(_tds__RemoveIPAddressFilterResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__RemoveIPAddressFilterResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__RemoveIPAddressFilterResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__RemoveIPAddressFilterResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__RemoveIPAddressFilterResponse, SOAP_TYPE__tds__RemoveIPAddressFilterResponse, sizeof(_tds__RemoveIPAddressFilterResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__RemoveIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__RemoveIPAddressFilterResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__RemoveIPAddressFilterResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__RemoveIPAddressFilterResponse *p; - size_t k = sizeof(_tds__RemoveIPAddressFilterResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__RemoveIPAddressFilterResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__RemoveIPAddressFilterResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__RemoveIPAddressFilterResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__RemoveIPAddressFilterResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__RemoveIPAddressFilterResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__RemoveIPAddressFilterResponse(soap, tag ? tag : "tds:RemoveIPAddressFilterResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__RemoveIPAddressFilterResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__RemoveIPAddressFilterResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__RemoveIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__RemoveIPAddressFilterResponse(struct soap *soap, _tds__RemoveIPAddressFilterResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__RemoveIPAddressFilterResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__RemoveIPAddressFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__RemoveIPAddressFilter::IPAddressFilter = NULL; -} - -void _tds__RemoveIPAddressFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IPAddressFilter(soap, &this->_tds__RemoveIPAddressFilter::IPAddressFilter); -#endif -} - -int _tds__RemoveIPAddressFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__RemoveIPAddressFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveIPAddressFilter(struct soap *soap, const char *tag, int id, const _tds__RemoveIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__RemoveIPAddressFilter), type)) - return soap->error; - if (!a->_tds__RemoveIPAddressFilter::IPAddressFilter) - { if (soap_element_empty(soap, "tds:IPAddressFilter", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", -1, &a->_tds__RemoveIPAddressFilter::IPAddressFilter, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__RemoveIPAddressFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__RemoveIPAddressFilter(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_in__tds__RemoveIPAddressFilter(struct soap *soap, const char *tag, _tds__RemoveIPAddressFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__RemoveIPAddressFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__RemoveIPAddressFilter, sizeof(_tds__RemoveIPAddressFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__RemoveIPAddressFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__RemoveIPAddressFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_IPAddressFilter1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_IPAddressFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", &a->_tds__RemoveIPAddressFilter::IPAddressFilter, "tt:IPAddressFilter")) - { soap_flag_IPAddressFilter1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__RemoveIPAddressFilter::IPAddressFilter)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__RemoveIPAddressFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__RemoveIPAddressFilter, SOAP_TYPE__tds__RemoveIPAddressFilter, sizeof(_tds__RemoveIPAddressFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__RemoveIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__RemoveIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__RemoveIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__RemoveIPAddressFilter *p; - size_t k = sizeof(_tds__RemoveIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__RemoveIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__RemoveIPAddressFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__RemoveIPAddressFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__RemoveIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__RemoveIPAddressFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__RemoveIPAddressFilter(soap, tag ? tag : "tds:RemoveIPAddressFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__RemoveIPAddressFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__RemoveIPAddressFilter(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_get__tds__RemoveIPAddressFilter(struct soap *soap, _tds__RemoveIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__RemoveIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__AddIPAddressFilterResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__AddIPAddressFilterResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__AddIPAddressFilterResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__AddIPAddressFilterResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddIPAddressFilterResponse(struct soap *soap, const char *tag, int id, const _tds__AddIPAddressFilterResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__AddIPAddressFilterResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__AddIPAddressFilterResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__AddIPAddressFilterResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__AddIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__AddIPAddressFilterResponse(struct soap *soap, const char *tag, _tds__AddIPAddressFilterResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__AddIPAddressFilterResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__AddIPAddressFilterResponse, sizeof(_tds__AddIPAddressFilterResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__AddIPAddressFilterResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__AddIPAddressFilterResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__AddIPAddressFilterResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__AddIPAddressFilterResponse, SOAP_TYPE__tds__AddIPAddressFilterResponse, sizeof(_tds__AddIPAddressFilterResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__AddIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__AddIPAddressFilterResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__AddIPAddressFilterResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__AddIPAddressFilterResponse *p; - size_t k = sizeof(_tds__AddIPAddressFilterResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__AddIPAddressFilterResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__AddIPAddressFilterResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__AddIPAddressFilterResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__AddIPAddressFilterResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__AddIPAddressFilterResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__AddIPAddressFilterResponse(soap, tag ? tag : "tds:AddIPAddressFilterResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__AddIPAddressFilterResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__AddIPAddressFilterResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__AddIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__AddIPAddressFilterResponse(struct soap *soap, _tds__AddIPAddressFilterResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__AddIPAddressFilterResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__AddIPAddressFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__AddIPAddressFilter::IPAddressFilter = NULL; -} - -void _tds__AddIPAddressFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IPAddressFilter(soap, &this->_tds__AddIPAddressFilter::IPAddressFilter); -#endif -} - -int _tds__AddIPAddressFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__AddIPAddressFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddIPAddressFilter(struct soap *soap, const char *tag, int id, const _tds__AddIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__AddIPAddressFilter), type)) - return soap->error; - if (!a->_tds__AddIPAddressFilter::IPAddressFilter) - { if (soap_element_empty(soap, "tds:IPAddressFilter", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", -1, &a->_tds__AddIPAddressFilter::IPAddressFilter, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__AddIPAddressFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__AddIPAddressFilter(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__AddIPAddressFilter * SOAP_FMAC4 soap_in__tds__AddIPAddressFilter(struct soap *soap, const char *tag, _tds__AddIPAddressFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__AddIPAddressFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__AddIPAddressFilter, sizeof(_tds__AddIPAddressFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__AddIPAddressFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__AddIPAddressFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_IPAddressFilter1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_IPAddressFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", &a->_tds__AddIPAddressFilter::IPAddressFilter, "tt:IPAddressFilter")) - { soap_flag_IPAddressFilter1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__AddIPAddressFilter::IPAddressFilter)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__AddIPAddressFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__AddIPAddressFilter, SOAP_TYPE__tds__AddIPAddressFilter, sizeof(_tds__AddIPAddressFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__AddIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__AddIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__AddIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__AddIPAddressFilter *p; - size_t k = sizeof(_tds__AddIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__AddIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__AddIPAddressFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__AddIPAddressFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__AddIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__AddIPAddressFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__AddIPAddressFilter(soap, tag ? tag : "tds:AddIPAddressFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__AddIPAddressFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__AddIPAddressFilter(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__AddIPAddressFilter * SOAP_FMAC4 soap_get__tds__AddIPAddressFilter(struct soap *soap, _tds__AddIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__AddIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetIPAddressFilterResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetIPAddressFilterResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetIPAddressFilterResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetIPAddressFilterResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetIPAddressFilterResponse(struct soap *soap, const char *tag, int id, const _tds__SetIPAddressFilterResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetIPAddressFilterResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetIPAddressFilterResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetIPAddressFilterResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__SetIPAddressFilterResponse(struct soap *soap, const char *tag, _tds__SetIPAddressFilterResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetIPAddressFilterResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetIPAddressFilterResponse, sizeof(_tds__SetIPAddressFilterResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetIPAddressFilterResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetIPAddressFilterResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetIPAddressFilterResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetIPAddressFilterResponse, SOAP_TYPE__tds__SetIPAddressFilterResponse, sizeof(_tds__SetIPAddressFilterResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__SetIPAddressFilterResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetIPAddressFilterResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetIPAddressFilterResponse *p; - size_t k = sizeof(_tds__SetIPAddressFilterResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetIPAddressFilterResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetIPAddressFilterResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetIPAddressFilterResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetIPAddressFilterResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetIPAddressFilterResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetIPAddressFilterResponse(soap, tag ? tag : "tds:SetIPAddressFilterResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetIPAddressFilterResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetIPAddressFilterResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__SetIPAddressFilterResponse(struct soap *soap, _tds__SetIPAddressFilterResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetIPAddressFilterResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetIPAddressFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__SetIPAddressFilter::IPAddressFilter = NULL; -} - -void _tds__SetIPAddressFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IPAddressFilter(soap, &this->_tds__SetIPAddressFilter::IPAddressFilter); -#endif -} - -int _tds__SetIPAddressFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetIPAddressFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetIPAddressFilter(struct soap *soap, const char *tag, int id, const _tds__SetIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetIPAddressFilter), type)) - return soap->error; - if (!a->_tds__SetIPAddressFilter::IPAddressFilter) - { if (soap_element_empty(soap, "tds:IPAddressFilter", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", -1, &a->_tds__SetIPAddressFilter::IPAddressFilter, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetIPAddressFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetIPAddressFilter(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetIPAddressFilter * SOAP_FMAC4 soap_in__tds__SetIPAddressFilter(struct soap *soap, const char *tag, _tds__SetIPAddressFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetIPAddressFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetIPAddressFilter, sizeof(_tds__SetIPAddressFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetIPAddressFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetIPAddressFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_IPAddressFilter1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_IPAddressFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", &a->_tds__SetIPAddressFilter::IPAddressFilter, "tt:IPAddressFilter")) - { soap_flag_IPAddressFilter1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__SetIPAddressFilter::IPAddressFilter)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetIPAddressFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetIPAddressFilter, SOAP_TYPE__tds__SetIPAddressFilter, sizeof(_tds__SetIPAddressFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__SetIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetIPAddressFilter *p; - size_t k = sizeof(_tds__SetIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetIPAddressFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetIPAddressFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetIPAddressFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetIPAddressFilter(soap, tag ? tag : "tds:SetIPAddressFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetIPAddressFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetIPAddressFilter(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetIPAddressFilter * SOAP_FMAC4 soap_get__tds__SetIPAddressFilter(struct soap *soap, _tds__SetIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetIPAddressFilterResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetIPAddressFilterResponse::IPAddressFilter = NULL; -} - -void _tds__GetIPAddressFilterResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IPAddressFilter(soap, &this->_tds__GetIPAddressFilterResponse::IPAddressFilter); -#endif -} - -int _tds__GetIPAddressFilterResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetIPAddressFilterResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetIPAddressFilterResponse(struct soap *soap, const char *tag, int id, const _tds__GetIPAddressFilterResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetIPAddressFilterResponse), type)) - return soap->error; - if (a->IPAddressFilter) - soap_element_result(soap, "tds:IPAddressFilter"); - if (!a->_tds__GetIPAddressFilterResponse::IPAddressFilter) - { if (soap_element_empty(soap, "tds:IPAddressFilter", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", -1, &a->_tds__GetIPAddressFilterResponse::IPAddressFilter, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetIPAddressFilterResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetIPAddressFilterResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__GetIPAddressFilterResponse(struct soap *soap, const char *tag, _tds__GetIPAddressFilterResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetIPAddressFilterResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetIPAddressFilterResponse, sizeof(_tds__GetIPAddressFilterResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetIPAddressFilterResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetIPAddressFilterResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_IPAddressFilter1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_IPAddressFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPAddressFilter(soap, "tds:IPAddressFilter", &a->_tds__GetIPAddressFilterResponse::IPAddressFilter, "tt:IPAddressFilter")) - { soap_flag_IPAddressFilter1--; - continue; - } - } - soap_check_result(soap, "tds:IPAddressFilter"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetIPAddressFilterResponse::IPAddressFilter)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetIPAddressFilterResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetIPAddressFilterResponse, SOAP_TYPE__tds__GetIPAddressFilterResponse, sizeof(_tds__GetIPAddressFilterResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__GetIPAddressFilterResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetIPAddressFilterResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetIPAddressFilterResponse *p; - size_t k = sizeof(_tds__GetIPAddressFilterResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetIPAddressFilterResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetIPAddressFilterResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetIPAddressFilterResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetIPAddressFilterResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetIPAddressFilterResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetIPAddressFilterResponse(soap, tag ? tag : "tds:GetIPAddressFilterResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetIPAddressFilterResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetIPAddressFilterResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__GetIPAddressFilterResponse(struct soap *soap, _tds__GetIPAddressFilterResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetIPAddressFilterResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetIPAddressFilter::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetIPAddressFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetIPAddressFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetIPAddressFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetIPAddressFilter(struct soap *soap, const char *tag, int id, const _tds__GetIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetIPAddressFilter), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetIPAddressFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetIPAddressFilter(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetIPAddressFilter * SOAP_FMAC4 soap_in__tds__GetIPAddressFilter(struct soap *soap, const char *tag, _tds__GetIPAddressFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetIPAddressFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetIPAddressFilter, sizeof(_tds__GetIPAddressFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetIPAddressFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetIPAddressFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetIPAddressFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetIPAddressFilter, SOAP_TYPE__tds__GetIPAddressFilter, sizeof(_tds__GetIPAddressFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__GetIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetIPAddressFilter *p; - size_t k = sizeof(_tds__GetIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetIPAddressFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetIPAddressFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetIPAddressFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetIPAddressFilter(soap, tag ? tag : "tds:GetIPAddressFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetIPAddressFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetIPAddressFilter(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetIPAddressFilter * SOAP_FMAC4 soap_get__tds__GetIPAddressFilter(struct soap *soap, _tds__GetIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetZeroConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetZeroConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetZeroConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetZeroConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetZeroConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__SetZeroConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetZeroConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetZeroConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetZeroConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetZeroConfigurationResponse * SOAP_FMAC4 soap_in__tds__SetZeroConfigurationResponse(struct soap *soap, const char *tag, _tds__SetZeroConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetZeroConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetZeroConfigurationResponse, sizeof(_tds__SetZeroConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetZeroConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetZeroConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetZeroConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetZeroConfigurationResponse, SOAP_TYPE__tds__SetZeroConfigurationResponse, sizeof(_tds__SetZeroConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetZeroConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__SetZeroConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetZeroConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetZeroConfigurationResponse *p; - size_t k = sizeof(_tds__SetZeroConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetZeroConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetZeroConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetZeroConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetZeroConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetZeroConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetZeroConfigurationResponse(soap, tag ? tag : "tds:SetZeroConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetZeroConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetZeroConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetZeroConfigurationResponse * SOAP_FMAC4 soap_get__tds__SetZeroConfigurationResponse(struct soap *soap, _tds__SetZeroConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetZeroConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetZeroConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__SetZeroConfiguration::InterfaceToken); - soap_default_bool(soap, &this->_tds__SetZeroConfiguration::Enabled); -} - -void _tds__SetZeroConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetZeroConfiguration::InterfaceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__SetZeroConfiguration::InterfaceToken); - soap_embedded(soap, &this->_tds__SetZeroConfiguration::Enabled, SOAP_TYPE_bool); -#endif -} - -int _tds__SetZeroConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetZeroConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetZeroConfiguration(struct soap *soap, const char *tag, int id, const _tds__SetZeroConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetZeroConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:InterfaceToken", -1, &a->_tds__SetZeroConfiguration::InterfaceToken, "")) - return soap->error; - if (soap_out_bool(soap, "tds:Enabled", -1, &a->_tds__SetZeroConfiguration::Enabled, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetZeroConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetZeroConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetZeroConfiguration * SOAP_FMAC4 soap_in__tds__SetZeroConfiguration(struct soap *soap, const char *tag, _tds__SetZeroConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetZeroConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetZeroConfiguration, sizeof(_tds__SetZeroConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetZeroConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetZeroConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_InterfaceToken1 = 1; - size_t soap_flag_Enabled1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InterfaceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:InterfaceToken", &a->_tds__SetZeroConfiguration::InterfaceToken, "tt:ReferenceToken")) - { soap_flag_InterfaceToken1--; - continue; - } - } - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:Enabled", &a->_tds__SetZeroConfiguration::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_InterfaceToken1 > 0 || soap_flag_Enabled1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetZeroConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetZeroConfiguration, SOAP_TYPE__tds__SetZeroConfiguration, sizeof(_tds__SetZeroConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetZeroConfiguration * SOAP_FMAC2 soap_instantiate__tds__SetZeroConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetZeroConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetZeroConfiguration *p; - size_t k = sizeof(_tds__SetZeroConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetZeroConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetZeroConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetZeroConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetZeroConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetZeroConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetZeroConfiguration(soap, tag ? tag : "tds:SetZeroConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetZeroConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetZeroConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetZeroConfiguration * SOAP_FMAC4 soap_get__tds__SetZeroConfiguration(struct soap *soap, _tds__SetZeroConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetZeroConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetZeroConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetZeroConfigurationResponse::ZeroConfiguration = NULL; -} - -void _tds__GetZeroConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__NetworkZeroConfiguration(soap, &this->_tds__GetZeroConfigurationResponse::ZeroConfiguration); -#endif -} - -int _tds__GetZeroConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetZeroConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetZeroConfigurationResponse(struct soap *soap, const char *tag, int id, const _tds__GetZeroConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetZeroConfigurationResponse), type)) - return soap->error; - if (a->ZeroConfiguration) - soap_element_result(soap, "tds:ZeroConfiguration"); - if (!a->_tds__GetZeroConfigurationResponse::ZeroConfiguration) - { if (soap_element_empty(soap, "tds:ZeroConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__NetworkZeroConfiguration(soap, "tds:ZeroConfiguration", -1, &a->_tds__GetZeroConfigurationResponse::ZeroConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetZeroConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetZeroConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetZeroConfigurationResponse * SOAP_FMAC4 soap_in__tds__GetZeroConfigurationResponse(struct soap *soap, const char *tag, _tds__GetZeroConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetZeroConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetZeroConfigurationResponse, sizeof(_tds__GetZeroConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetZeroConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetZeroConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ZeroConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ZeroConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkZeroConfiguration(soap, "tds:ZeroConfiguration", &a->_tds__GetZeroConfigurationResponse::ZeroConfiguration, "tt:NetworkZeroConfiguration")) - { soap_flag_ZeroConfiguration1--; - continue; - } - } - soap_check_result(soap, "tds:ZeroConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetZeroConfigurationResponse::ZeroConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetZeroConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetZeroConfigurationResponse, SOAP_TYPE__tds__GetZeroConfigurationResponse, sizeof(_tds__GetZeroConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetZeroConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__GetZeroConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetZeroConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetZeroConfigurationResponse *p; - size_t k = sizeof(_tds__GetZeroConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetZeroConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetZeroConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetZeroConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetZeroConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetZeroConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetZeroConfigurationResponse(soap, tag ? tag : "tds:GetZeroConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetZeroConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetZeroConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetZeroConfigurationResponse * SOAP_FMAC4 soap_get__tds__GetZeroConfigurationResponse(struct soap *soap, _tds__GetZeroConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetZeroConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetZeroConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetZeroConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetZeroConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetZeroConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetZeroConfiguration(struct soap *soap, const char *tag, int id, const _tds__GetZeroConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetZeroConfiguration), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetZeroConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetZeroConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetZeroConfiguration * SOAP_FMAC4 soap_in__tds__GetZeroConfiguration(struct soap *soap, const char *tag, _tds__GetZeroConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetZeroConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetZeroConfiguration, sizeof(_tds__GetZeroConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetZeroConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetZeroConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetZeroConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetZeroConfiguration, SOAP_TYPE__tds__GetZeroConfiguration, sizeof(_tds__GetZeroConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetZeroConfiguration * SOAP_FMAC2 soap_instantiate__tds__GetZeroConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetZeroConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetZeroConfiguration *p; - size_t k = sizeof(_tds__GetZeroConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetZeroConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetZeroConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetZeroConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetZeroConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetZeroConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetZeroConfiguration(soap, tag ? tag : "tds:GetZeroConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetZeroConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetZeroConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetZeroConfiguration * SOAP_FMAC4 soap_get__tds__GetZeroConfiguration(struct soap *soap, _tds__GetZeroConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetZeroConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNetworkDefaultGatewayResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetNetworkDefaultGatewayResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetNetworkDefaultGatewayResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNetworkDefaultGatewayResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, const char *tag, int id, const _tds__SetNetworkDefaultGatewayResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNetworkDefaultGatewayResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNetworkDefaultGatewayResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_in__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, const char *tag, _tds__SetNetworkDefaultGatewayResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNetworkDefaultGatewayResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse, sizeof(_tds__SetNetworkDefaultGatewayResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNetworkDefaultGatewayResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetNetworkDefaultGatewayResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse, SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse, sizeof(_tds__SetNetworkDefaultGatewayResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNetworkDefaultGatewayResponse * SOAP_FMAC2 soap_instantiate__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNetworkDefaultGatewayResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNetworkDefaultGatewayResponse *p; - size_t k = sizeof(_tds__SetNetworkDefaultGatewayResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNetworkDefaultGatewayResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNetworkDefaultGatewayResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNetworkDefaultGatewayResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNetworkDefaultGatewayResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNetworkDefaultGatewayResponse(soap, tag ? tag : "tds:SetNetworkDefaultGatewayResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNetworkDefaultGatewayResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNetworkDefaultGatewayResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_get__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, _tds__SetNetworkDefaultGatewayResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNetworkDefaultGatewayResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNetworkDefaultGateway::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__IPv4Address(soap, &this->_tds__SetNetworkDefaultGateway::IPv4Address); - soap_default_std__vectorTemplateOftt__IPv6Address(soap, &this->_tds__SetNetworkDefaultGateway::IPv6Address); -} - -void _tds__SetNetworkDefaultGateway::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__IPv4Address(soap, &this->_tds__SetNetworkDefaultGateway::IPv4Address); - soap_serialize_std__vectorTemplateOftt__IPv6Address(soap, &this->_tds__SetNetworkDefaultGateway::IPv6Address); -#endif -} - -int _tds__SetNetworkDefaultGateway::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNetworkDefaultGateway(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkDefaultGateway(struct soap *soap, const char *tag, int id, const _tds__SetNetworkDefaultGateway *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNetworkDefaultGateway), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__IPv4Address(soap, "tds:IPv4Address", -1, &a->_tds__SetNetworkDefaultGateway::IPv4Address, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__IPv6Address(soap, "tds:IPv6Address", -1, &a->_tds__SetNetworkDefaultGateway::IPv6Address, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNetworkDefaultGateway::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNetworkDefaultGateway(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_in__tds__SetNetworkDefaultGateway(struct soap *soap, const char *tag, _tds__SetNetworkDefaultGateway *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNetworkDefaultGateway*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNetworkDefaultGateway, sizeof(_tds__SetNetworkDefaultGateway), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNetworkDefaultGateway) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNetworkDefaultGateway *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__IPv4Address(soap, "tds:IPv4Address", &a->_tds__SetNetworkDefaultGateway::IPv4Address, "tt:IPv4Address")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__IPv6Address(soap, "tds:IPv6Address", &a->_tds__SetNetworkDefaultGateway::IPv6Address, "tt:IPv6Address")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetNetworkDefaultGateway *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNetworkDefaultGateway, SOAP_TYPE__tds__SetNetworkDefaultGateway, sizeof(_tds__SetNetworkDefaultGateway), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate__tds__SetNetworkDefaultGateway(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNetworkDefaultGateway(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNetworkDefaultGateway *p; - size_t k = sizeof(_tds__SetNetworkDefaultGateway); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNetworkDefaultGateway, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNetworkDefaultGateway); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNetworkDefaultGateway, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNetworkDefaultGateway location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNetworkDefaultGateway::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNetworkDefaultGateway(soap, tag ? tag : "tds:SetNetworkDefaultGateway", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNetworkDefaultGateway::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNetworkDefaultGateway(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_get__tds__SetNetworkDefaultGateway(struct soap *soap, _tds__SetNetworkDefaultGateway *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNetworkDefaultGateway(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNetworkDefaultGatewayResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway = NULL; -} - -void _tds__GetNetworkDefaultGatewayResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__NetworkGateway(soap, &this->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway); -#endif -} - -int _tds__GetNetworkDefaultGatewayResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNetworkDefaultGatewayResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, const char *tag, int id, const _tds__GetNetworkDefaultGatewayResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse), type)) - return soap->error; - if (a->NetworkGateway) - soap_element_result(soap, "tds:NetworkGateway"); - if (!a->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway) - { if (soap_element_empty(soap, "tds:NetworkGateway", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__NetworkGateway(soap, "tds:NetworkGateway", -1, &a->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNetworkDefaultGatewayResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNetworkDefaultGatewayResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_in__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, const char *tag, _tds__GetNetworkDefaultGatewayResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNetworkDefaultGatewayResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse, sizeof(_tds__GetNetworkDefaultGatewayResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNetworkDefaultGatewayResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_NetworkGateway1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_NetworkGateway1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkGateway(soap, "tds:NetworkGateway", &a->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway, "tt:NetworkGateway")) - { soap_flag_NetworkGateway1--; - continue; - } - } - soap_check_result(soap, "tds:NetworkGateway"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetNetworkDefaultGatewayResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse, SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse, sizeof(_tds__GetNetworkDefaultGatewayResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNetworkDefaultGatewayResponse * SOAP_FMAC2 soap_instantiate__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNetworkDefaultGatewayResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNetworkDefaultGatewayResponse *p; - size_t k = sizeof(_tds__GetNetworkDefaultGatewayResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNetworkDefaultGatewayResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNetworkDefaultGatewayResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNetworkDefaultGatewayResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNetworkDefaultGatewayResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNetworkDefaultGatewayResponse(soap, tag ? tag : "tds:GetNetworkDefaultGatewayResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNetworkDefaultGatewayResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNetworkDefaultGatewayResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_get__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, _tds__GetNetworkDefaultGatewayResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNetworkDefaultGatewayResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNetworkDefaultGateway::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetNetworkDefaultGateway::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetNetworkDefaultGateway::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNetworkDefaultGateway(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkDefaultGateway(struct soap *soap, const char *tag, int id, const _tds__GetNetworkDefaultGateway *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNetworkDefaultGateway), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNetworkDefaultGateway::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNetworkDefaultGateway(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_in__tds__GetNetworkDefaultGateway(struct soap *soap, const char *tag, _tds__GetNetworkDefaultGateway *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNetworkDefaultGateway*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNetworkDefaultGateway, sizeof(_tds__GetNetworkDefaultGateway), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNetworkDefaultGateway) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNetworkDefaultGateway *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetNetworkDefaultGateway *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNetworkDefaultGateway, SOAP_TYPE__tds__GetNetworkDefaultGateway, sizeof(_tds__GetNetworkDefaultGateway), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate__tds__GetNetworkDefaultGateway(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNetworkDefaultGateway(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNetworkDefaultGateway *p; - size_t k = sizeof(_tds__GetNetworkDefaultGateway); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNetworkDefaultGateway, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNetworkDefaultGateway); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNetworkDefaultGateway, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNetworkDefaultGateway location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNetworkDefaultGateway::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNetworkDefaultGateway(soap, tag ? tag : "tds:GetNetworkDefaultGateway", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNetworkDefaultGateway::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNetworkDefaultGateway(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_get__tds__GetNetworkDefaultGateway(struct soap *soap, _tds__GetNetworkDefaultGateway *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNetworkDefaultGateway(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNetworkProtocolsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetNetworkProtocolsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetNetworkProtocolsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNetworkProtocolsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkProtocolsResponse(struct soap *soap, const char *tag, int id, const _tds__SetNetworkProtocolsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNetworkProtocolsResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNetworkProtocolsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNetworkProtocolsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNetworkProtocolsResponse * SOAP_FMAC4 soap_in__tds__SetNetworkProtocolsResponse(struct soap *soap, const char *tag, _tds__SetNetworkProtocolsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNetworkProtocolsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNetworkProtocolsResponse, sizeof(_tds__SetNetworkProtocolsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNetworkProtocolsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNetworkProtocolsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetNetworkProtocolsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNetworkProtocolsResponse, SOAP_TYPE__tds__SetNetworkProtocolsResponse, sizeof(_tds__SetNetworkProtocolsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNetworkProtocolsResponse * SOAP_FMAC2 soap_instantiate__tds__SetNetworkProtocolsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNetworkProtocolsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNetworkProtocolsResponse *p; - size_t k = sizeof(_tds__SetNetworkProtocolsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNetworkProtocolsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNetworkProtocolsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNetworkProtocolsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNetworkProtocolsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNetworkProtocolsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNetworkProtocolsResponse(soap, tag ? tag : "tds:SetNetworkProtocolsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNetworkProtocolsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNetworkProtocolsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNetworkProtocolsResponse * SOAP_FMAC4 soap_get__tds__SetNetworkProtocolsResponse(struct soap *soap, _tds__SetNetworkProtocolsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNetworkProtocolsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNetworkProtocols::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, &this->_tds__SetNetworkProtocols::NetworkProtocols); -} - -void _tds__SetNetworkProtocols::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, &this->_tds__SetNetworkProtocols::NetworkProtocols); -#endif -} - -int _tds__SetNetworkProtocols::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNetworkProtocols(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkProtocols(struct soap *soap, const char *tag, int id, const _tds__SetNetworkProtocols *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNetworkProtocols), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, "tds:NetworkProtocols", -1, &a->_tds__SetNetworkProtocols::NetworkProtocols, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNetworkProtocols::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNetworkProtocols(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNetworkProtocols * SOAP_FMAC4 soap_in__tds__SetNetworkProtocols(struct soap *soap, const char *tag, _tds__SetNetworkProtocols *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNetworkProtocols*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNetworkProtocols, sizeof(_tds__SetNetworkProtocols), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNetworkProtocols) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNetworkProtocols *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, "tds:NetworkProtocols", &a->_tds__SetNetworkProtocols::NetworkProtocols, "tt:NetworkProtocol")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__SetNetworkProtocols::NetworkProtocols.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetNetworkProtocols *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNetworkProtocols, SOAP_TYPE__tds__SetNetworkProtocols, sizeof(_tds__SetNetworkProtocols), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNetworkProtocols * SOAP_FMAC2 soap_instantiate__tds__SetNetworkProtocols(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNetworkProtocols(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNetworkProtocols *p; - size_t k = sizeof(_tds__SetNetworkProtocols); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNetworkProtocols, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNetworkProtocols); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNetworkProtocols, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNetworkProtocols location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNetworkProtocols::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNetworkProtocols(soap, tag ? tag : "tds:SetNetworkProtocols", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNetworkProtocols::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNetworkProtocols(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNetworkProtocols * SOAP_FMAC4 soap_get__tds__SetNetworkProtocols(struct soap *soap, _tds__SetNetworkProtocols *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNetworkProtocols(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNetworkProtocolsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, &this->_tds__GetNetworkProtocolsResponse::NetworkProtocols); -} - -void _tds__GetNetworkProtocolsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, &this->_tds__GetNetworkProtocolsResponse::NetworkProtocols); -#endif -} - -int _tds__GetNetworkProtocolsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNetworkProtocolsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkProtocolsResponse(struct soap *soap, const char *tag, int id, const _tds__GetNetworkProtocolsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNetworkProtocolsResponse), type)) - return soap->error; - soap_element_result(soap, "tds:NetworkProtocols"); - if (soap_out_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, "tds:NetworkProtocols", -1, &a->_tds__GetNetworkProtocolsResponse::NetworkProtocols, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNetworkProtocolsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNetworkProtocolsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNetworkProtocolsResponse * SOAP_FMAC4 soap_in__tds__GetNetworkProtocolsResponse(struct soap *soap, const char *tag, _tds__GetNetworkProtocolsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNetworkProtocolsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNetworkProtocolsResponse, sizeof(_tds__GetNetworkProtocolsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNetworkProtocolsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNetworkProtocolsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, "tds:NetworkProtocols", &a->_tds__GetNetworkProtocolsResponse::NetworkProtocols, "tt:NetworkProtocol")) - continue; - } - soap_check_result(soap, "tds:NetworkProtocols"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetNetworkProtocolsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNetworkProtocolsResponse, SOAP_TYPE__tds__GetNetworkProtocolsResponse, sizeof(_tds__GetNetworkProtocolsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNetworkProtocolsResponse * SOAP_FMAC2 soap_instantiate__tds__GetNetworkProtocolsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNetworkProtocolsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNetworkProtocolsResponse *p; - size_t k = sizeof(_tds__GetNetworkProtocolsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNetworkProtocolsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNetworkProtocolsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNetworkProtocolsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNetworkProtocolsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNetworkProtocolsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNetworkProtocolsResponse(soap, tag ? tag : "tds:GetNetworkProtocolsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNetworkProtocolsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNetworkProtocolsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNetworkProtocolsResponse * SOAP_FMAC4 soap_get__tds__GetNetworkProtocolsResponse(struct soap *soap, _tds__GetNetworkProtocolsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNetworkProtocolsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNetworkProtocols::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetNetworkProtocols::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetNetworkProtocols::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNetworkProtocols(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkProtocols(struct soap *soap, const char *tag, int id, const _tds__GetNetworkProtocols *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNetworkProtocols), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNetworkProtocols::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNetworkProtocols(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNetworkProtocols * SOAP_FMAC4 soap_in__tds__GetNetworkProtocols(struct soap *soap, const char *tag, _tds__GetNetworkProtocols *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNetworkProtocols*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNetworkProtocols, sizeof(_tds__GetNetworkProtocols), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNetworkProtocols) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNetworkProtocols *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetNetworkProtocols *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNetworkProtocols, SOAP_TYPE__tds__GetNetworkProtocols, sizeof(_tds__GetNetworkProtocols), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNetworkProtocols * SOAP_FMAC2 soap_instantiate__tds__GetNetworkProtocols(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNetworkProtocols(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNetworkProtocols *p; - size_t k = sizeof(_tds__GetNetworkProtocols); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNetworkProtocols, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNetworkProtocols); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNetworkProtocols, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNetworkProtocols location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNetworkProtocols::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNetworkProtocols(soap, tag ? tag : "tds:GetNetworkProtocols", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNetworkProtocols::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNetworkProtocols(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNetworkProtocols * SOAP_FMAC4 soap_get__tds__GetNetworkProtocols(struct soap *soap, _tds__GetNetworkProtocols *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNetworkProtocols(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNetworkInterfacesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__SetNetworkInterfacesResponse::RebootNeeded); -} - -void _tds__SetNetworkInterfacesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetNetworkInterfacesResponse::RebootNeeded, SOAP_TYPE_bool); -#endif -} - -int _tds__SetNetworkInterfacesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNetworkInterfacesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkInterfacesResponse(struct soap *soap, const char *tag, int id, const _tds__SetNetworkInterfacesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNetworkInterfacesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:RebootNeeded"); - if (soap_out_bool(soap, "tds:RebootNeeded", -1, &a->_tds__SetNetworkInterfacesResponse::RebootNeeded, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNetworkInterfacesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNetworkInterfacesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNetworkInterfacesResponse * SOAP_FMAC4 soap_in__tds__SetNetworkInterfacesResponse(struct soap *soap, const char *tag, _tds__SetNetworkInterfacesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNetworkInterfacesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNetworkInterfacesResponse, sizeof(_tds__SetNetworkInterfacesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNetworkInterfacesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNetworkInterfacesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RebootNeeded1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RebootNeeded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:RebootNeeded", &a->_tds__SetNetworkInterfacesResponse::RebootNeeded, "xsd:boolean")) - { soap_flag_RebootNeeded1--; - continue; - } - } - soap_check_result(soap, "tds:RebootNeeded"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RebootNeeded1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetNetworkInterfacesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNetworkInterfacesResponse, SOAP_TYPE__tds__SetNetworkInterfacesResponse, sizeof(_tds__SetNetworkInterfacesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNetworkInterfacesResponse * SOAP_FMAC2 soap_instantiate__tds__SetNetworkInterfacesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNetworkInterfacesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNetworkInterfacesResponse *p; - size_t k = sizeof(_tds__SetNetworkInterfacesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNetworkInterfacesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNetworkInterfacesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNetworkInterfacesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNetworkInterfacesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNetworkInterfacesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNetworkInterfacesResponse(soap, tag ? tag : "tds:SetNetworkInterfacesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNetworkInterfacesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNetworkInterfacesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNetworkInterfacesResponse * SOAP_FMAC4 soap_get__tds__SetNetworkInterfacesResponse(struct soap *soap, _tds__SetNetworkInterfacesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNetworkInterfacesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNetworkInterfaces::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tds__SetNetworkInterfaces::InterfaceToken); - this->_tds__SetNetworkInterfaces::NetworkInterface = NULL; -} - -void _tds__SetNetworkInterfaces::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetNetworkInterfaces::InterfaceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tds__SetNetworkInterfaces::InterfaceToken); - soap_serialize_PointerTott__NetworkInterfaceSetConfiguration(soap, &this->_tds__SetNetworkInterfaces::NetworkInterface); -#endif -} - -int _tds__SetNetworkInterfaces::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNetworkInterfaces(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkInterfaces(struct soap *soap, const char *tag, int id, const _tds__SetNetworkInterfaces *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNetworkInterfaces), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tds:InterfaceToken", -1, &a->_tds__SetNetworkInterfaces::InterfaceToken, "")) - return soap->error; - if (!a->_tds__SetNetworkInterfaces::NetworkInterface) - { if (soap_element_empty(soap, "tds:NetworkInterface", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__NetworkInterfaceSetConfiguration(soap, "tds:NetworkInterface", -1, &a->_tds__SetNetworkInterfaces::NetworkInterface, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNetworkInterfaces::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNetworkInterfaces(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNetworkInterfaces * SOAP_FMAC4 soap_in__tds__SetNetworkInterfaces(struct soap *soap, const char *tag, _tds__SetNetworkInterfaces *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNetworkInterfaces*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNetworkInterfaces, sizeof(_tds__SetNetworkInterfaces), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNetworkInterfaces) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNetworkInterfaces *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_InterfaceToken1 = 1; - size_t soap_flag_NetworkInterface1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InterfaceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tds:InterfaceToken", &a->_tds__SetNetworkInterfaces::InterfaceToken, "tt:ReferenceToken")) - { soap_flag_InterfaceToken1--; - continue; - } - } - if (soap_flag_NetworkInterface1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceSetConfiguration(soap, "tds:NetworkInterface", &a->_tds__SetNetworkInterfaces::NetworkInterface, "tt:NetworkInterfaceSetConfiguration")) - { soap_flag_NetworkInterface1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_InterfaceToken1 > 0 || !a->_tds__SetNetworkInterfaces::NetworkInterface)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetNetworkInterfaces *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNetworkInterfaces, SOAP_TYPE__tds__SetNetworkInterfaces, sizeof(_tds__SetNetworkInterfaces), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNetworkInterfaces * SOAP_FMAC2 soap_instantiate__tds__SetNetworkInterfaces(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNetworkInterfaces(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNetworkInterfaces *p; - size_t k = sizeof(_tds__SetNetworkInterfaces); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNetworkInterfaces, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNetworkInterfaces); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNetworkInterfaces, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNetworkInterfaces location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNetworkInterfaces::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNetworkInterfaces(soap, tag ? tag : "tds:SetNetworkInterfaces", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNetworkInterfaces::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNetworkInterfaces(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNetworkInterfaces * SOAP_FMAC4 soap_get__tds__SetNetworkInterfaces(struct soap *soap, _tds__SetNetworkInterfaces *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNetworkInterfaces(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNetworkInterfacesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__NetworkInterface(soap, &this->_tds__GetNetworkInterfacesResponse::NetworkInterfaces); -} - -void _tds__GetNetworkInterfacesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__NetworkInterface(soap, &this->_tds__GetNetworkInterfacesResponse::NetworkInterfaces); -#endif -} - -int _tds__GetNetworkInterfacesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNetworkInterfacesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkInterfacesResponse(struct soap *soap, const char *tag, int id, const _tds__GetNetworkInterfacesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNetworkInterfacesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:NetworkInterfaces"); - if (soap_out_std__vectorTemplateOfPointerTott__NetworkInterface(soap, "tds:NetworkInterfaces", -1, &a->_tds__GetNetworkInterfacesResponse::NetworkInterfaces, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNetworkInterfacesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNetworkInterfacesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNetworkInterfacesResponse * SOAP_FMAC4 soap_in__tds__GetNetworkInterfacesResponse(struct soap *soap, const char *tag, _tds__GetNetworkInterfacesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNetworkInterfacesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNetworkInterfacesResponse, sizeof(_tds__GetNetworkInterfacesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNetworkInterfacesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNetworkInterfacesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkInterface(soap, "tds:NetworkInterfaces", &a->_tds__GetNetworkInterfacesResponse::NetworkInterfaces, "tt:NetworkInterface")) - continue; - } - soap_check_result(soap, "tds:NetworkInterfaces"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__GetNetworkInterfacesResponse::NetworkInterfaces.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetNetworkInterfacesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNetworkInterfacesResponse, SOAP_TYPE__tds__GetNetworkInterfacesResponse, sizeof(_tds__GetNetworkInterfacesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNetworkInterfacesResponse * SOAP_FMAC2 soap_instantiate__tds__GetNetworkInterfacesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNetworkInterfacesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNetworkInterfacesResponse *p; - size_t k = sizeof(_tds__GetNetworkInterfacesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNetworkInterfacesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNetworkInterfacesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNetworkInterfacesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNetworkInterfacesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNetworkInterfacesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNetworkInterfacesResponse(soap, tag ? tag : "tds:GetNetworkInterfacesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNetworkInterfacesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNetworkInterfacesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNetworkInterfacesResponse * SOAP_FMAC4 soap_get__tds__GetNetworkInterfacesResponse(struct soap *soap, _tds__GetNetworkInterfacesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNetworkInterfacesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNetworkInterfaces::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetNetworkInterfaces::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetNetworkInterfaces::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNetworkInterfaces(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkInterfaces(struct soap *soap, const char *tag, int id, const _tds__GetNetworkInterfaces *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNetworkInterfaces), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNetworkInterfaces::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNetworkInterfaces(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNetworkInterfaces * SOAP_FMAC4 soap_in__tds__GetNetworkInterfaces(struct soap *soap, const char *tag, _tds__GetNetworkInterfaces *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNetworkInterfaces*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNetworkInterfaces, sizeof(_tds__GetNetworkInterfaces), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNetworkInterfaces) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNetworkInterfaces *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetNetworkInterfaces *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNetworkInterfaces, SOAP_TYPE__tds__GetNetworkInterfaces, sizeof(_tds__GetNetworkInterfaces), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNetworkInterfaces * SOAP_FMAC2 soap_instantiate__tds__GetNetworkInterfaces(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNetworkInterfaces(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNetworkInterfaces *p; - size_t k = sizeof(_tds__GetNetworkInterfaces); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNetworkInterfaces, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNetworkInterfaces); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNetworkInterfaces, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNetworkInterfaces location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNetworkInterfaces::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNetworkInterfaces(soap, tag ? tag : "tds:GetNetworkInterfaces", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNetworkInterfaces::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNetworkInterfaces(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNetworkInterfaces * SOAP_FMAC4 soap_get__tds__GetNetworkInterfaces(struct soap *soap, _tds__GetNetworkInterfaces *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNetworkInterfaces(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDynamicDNSResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetDynamicDNSResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetDynamicDNSResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDynamicDNSResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDynamicDNSResponse(struct soap *soap, const char *tag, int id, const _tds__SetDynamicDNSResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDynamicDNSResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDynamicDNSResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDynamicDNSResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDynamicDNSResponse * SOAP_FMAC4 soap_in__tds__SetDynamicDNSResponse(struct soap *soap, const char *tag, _tds__SetDynamicDNSResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDynamicDNSResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDynamicDNSResponse, sizeof(_tds__SetDynamicDNSResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDynamicDNSResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDynamicDNSResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetDynamicDNSResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDynamicDNSResponse, SOAP_TYPE__tds__SetDynamicDNSResponse, sizeof(_tds__SetDynamicDNSResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDynamicDNSResponse * SOAP_FMAC2 soap_instantiate__tds__SetDynamicDNSResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDynamicDNSResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDynamicDNSResponse *p; - size_t k = sizeof(_tds__SetDynamicDNSResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDynamicDNSResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDynamicDNSResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDynamicDNSResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDynamicDNSResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDynamicDNSResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDynamicDNSResponse(soap, tag ? tag : "tds:SetDynamicDNSResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDynamicDNSResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDynamicDNSResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDynamicDNSResponse * SOAP_FMAC4 soap_get__tds__SetDynamicDNSResponse(struct soap *soap, _tds__SetDynamicDNSResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDynamicDNSResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDynamicDNS::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DynamicDNSType(soap, &this->_tds__SetDynamicDNS::Type); - this->_tds__SetDynamicDNS::Name = NULL; - this->_tds__SetDynamicDNS::TTL = NULL; -} - -void _tds__SetDynamicDNS::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__DNSName(soap, &this->_tds__SetDynamicDNS::Name); - soap_serialize_PointerToxsd__duration(soap, &this->_tds__SetDynamicDNS::TTL); -#endif -} - -int _tds__SetDynamicDNS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDynamicDNS(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDynamicDNS(struct soap *soap, const char *tag, int id, const _tds__SetDynamicDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDynamicDNS), type)) - return soap->error; - if (soap_out_tt__DynamicDNSType(soap, "tds:Type", -1, &a->_tds__SetDynamicDNS::Type, "")) - return soap->error; - if (soap_out_PointerTott__DNSName(soap, "tds:Name", -1, &a->_tds__SetDynamicDNS::Name, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tds:TTL", -1, &a->_tds__SetDynamicDNS::TTL, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDynamicDNS::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDynamicDNS(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDynamicDNS * SOAP_FMAC4 soap_in__tds__SetDynamicDNS(struct soap *soap, const char *tag, _tds__SetDynamicDNS *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDynamicDNS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDynamicDNS, sizeof(_tds__SetDynamicDNS), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDynamicDNS) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDynamicDNS *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Type1 = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_TTL1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__DynamicDNSType(soap, "tds:Type", &a->_tds__SetDynamicDNS::Type, "tt:DynamicDNSType")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__DNSName(soap, "tds:Name", &a->_tds__SetDynamicDNS::Name, "tt:DNSName")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_TTL1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tds:TTL", &a->_tds__SetDynamicDNS::TTL, "xsd:duration")) - { soap_flag_TTL1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetDynamicDNS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDynamicDNS, SOAP_TYPE__tds__SetDynamicDNS, sizeof(_tds__SetDynamicDNS), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDynamicDNS * SOAP_FMAC2 soap_instantiate__tds__SetDynamicDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDynamicDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDynamicDNS *p; - size_t k = sizeof(_tds__SetDynamicDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDynamicDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDynamicDNS); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDynamicDNS, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDynamicDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDynamicDNS::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDynamicDNS(soap, tag ? tag : "tds:SetDynamicDNS", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDynamicDNS::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDynamicDNS(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDynamicDNS * SOAP_FMAC4 soap_get__tds__SetDynamicDNS(struct soap *soap, _tds__SetDynamicDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDynamicDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDynamicDNSResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetDynamicDNSResponse::DynamicDNSInformation = NULL; -} - -void _tds__GetDynamicDNSResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__DynamicDNSInformation(soap, &this->_tds__GetDynamicDNSResponse::DynamicDNSInformation); -#endif -} - -int _tds__GetDynamicDNSResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDynamicDNSResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDynamicDNSResponse(struct soap *soap, const char *tag, int id, const _tds__GetDynamicDNSResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDynamicDNSResponse), type)) - return soap->error; - if (a->DynamicDNSInformation) - soap_element_result(soap, "tds:DynamicDNSInformation"); - if (!a->_tds__GetDynamicDNSResponse::DynamicDNSInformation) - { if (soap_element_empty(soap, "tds:DynamicDNSInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__DynamicDNSInformation(soap, "tds:DynamicDNSInformation", -1, &a->_tds__GetDynamicDNSResponse::DynamicDNSInformation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDynamicDNSResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDynamicDNSResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDynamicDNSResponse * SOAP_FMAC4 soap_in__tds__GetDynamicDNSResponse(struct soap *soap, const char *tag, _tds__GetDynamicDNSResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDynamicDNSResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDynamicDNSResponse, sizeof(_tds__GetDynamicDNSResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDynamicDNSResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDynamicDNSResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_DynamicDNSInformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DynamicDNSInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DynamicDNSInformation(soap, "tds:DynamicDNSInformation", &a->_tds__GetDynamicDNSResponse::DynamicDNSInformation, "tt:DynamicDNSInformation")) - { soap_flag_DynamicDNSInformation1--; - continue; - } - } - soap_check_result(soap, "tds:DynamicDNSInformation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetDynamicDNSResponse::DynamicDNSInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDynamicDNSResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDynamicDNSResponse, SOAP_TYPE__tds__GetDynamicDNSResponse, sizeof(_tds__GetDynamicDNSResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDynamicDNSResponse * SOAP_FMAC2 soap_instantiate__tds__GetDynamicDNSResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDynamicDNSResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDynamicDNSResponse *p; - size_t k = sizeof(_tds__GetDynamicDNSResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDynamicDNSResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDynamicDNSResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDynamicDNSResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDynamicDNSResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDynamicDNSResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDynamicDNSResponse(soap, tag ? tag : "tds:GetDynamicDNSResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDynamicDNSResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDynamicDNSResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDynamicDNSResponse * SOAP_FMAC4 soap_get__tds__GetDynamicDNSResponse(struct soap *soap, _tds__GetDynamicDNSResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDynamicDNSResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDynamicDNS::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetDynamicDNS::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetDynamicDNS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDynamicDNS(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDynamicDNS(struct soap *soap, const char *tag, int id, const _tds__GetDynamicDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDynamicDNS), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDynamicDNS::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDynamicDNS(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDynamicDNS * SOAP_FMAC4 soap_in__tds__GetDynamicDNS(struct soap *soap, const char *tag, _tds__GetDynamicDNS *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDynamicDNS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDynamicDNS, sizeof(_tds__GetDynamicDNS), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDynamicDNS) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDynamicDNS *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDynamicDNS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDynamicDNS, SOAP_TYPE__tds__GetDynamicDNS, sizeof(_tds__GetDynamicDNS), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDynamicDNS * SOAP_FMAC2 soap_instantiate__tds__GetDynamicDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDynamicDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDynamicDNS *p; - size_t k = sizeof(_tds__GetDynamicDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDynamicDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDynamicDNS); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDynamicDNS, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDynamicDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDynamicDNS::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDynamicDNS(soap, tag ? tag : "tds:GetDynamicDNS", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDynamicDNS::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDynamicDNS(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDynamicDNS * SOAP_FMAC4 soap_get__tds__GetDynamicDNS(struct soap *soap, _tds__GetDynamicDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDynamicDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNTPResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetNTPResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetNTPResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNTPResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNTPResponse(struct soap *soap, const char *tag, int id, const _tds__SetNTPResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNTPResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNTPResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNTPResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNTPResponse * SOAP_FMAC4 soap_in__tds__SetNTPResponse(struct soap *soap, const char *tag, _tds__SetNTPResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNTPResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNTPResponse, sizeof(_tds__SetNTPResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNTPResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNTPResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetNTPResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNTPResponse, SOAP_TYPE__tds__SetNTPResponse, sizeof(_tds__SetNTPResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNTPResponse * SOAP_FMAC2 soap_instantiate__tds__SetNTPResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNTPResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNTPResponse *p; - size_t k = sizeof(_tds__SetNTPResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNTPResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNTPResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNTPResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNTPResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNTPResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNTPResponse(soap, tag ? tag : "tds:SetNTPResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNTPResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNTPResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNTPResponse * SOAP_FMAC4 soap_get__tds__SetNTPResponse(struct soap *soap, _tds__SetNTPResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNTPResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetNTP::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__SetNTP::FromDHCP); - soap_default_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->_tds__SetNTP::NTPManual); -} - -void _tds__SetNTP::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetNTP::FromDHCP, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->_tds__SetNTP::NTPManual); -#endif -} - -int _tds__SetNTP::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetNTP(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNTP(struct soap *soap, const char *tag, int id, const _tds__SetNTP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetNTP), type)) - return soap->error; - if (soap_out_bool(soap, "tds:FromDHCP", -1, &a->_tds__SetNTP::FromDHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tds:NTPManual", -1, &a->_tds__SetNTP::NTPManual, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetNTP::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetNTP(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetNTP * SOAP_FMAC4 soap_in__tds__SetNTP(struct soap *soap, const char *tag, _tds__SetNTP *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetNTP*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetNTP, sizeof(_tds__SetNTP), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetNTP) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetNTP *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_FromDHCP1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FromDHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:FromDHCP", &a->_tds__SetNTP::FromDHCP, "xsd:boolean")) - { soap_flag_FromDHCP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tds:NTPManual", &a->_tds__SetNTP::NTPManual, "tt:NetworkHost")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FromDHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetNTP *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetNTP, SOAP_TYPE__tds__SetNTP, sizeof(_tds__SetNTP), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetNTP * SOAP_FMAC2 soap_instantiate__tds__SetNTP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetNTP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetNTP *p; - size_t k = sizeof(_tds__SetNTP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetNTP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetNTP); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetNTP, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetNTP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetNTP::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetNTP(soap, tag ? tag : "tds:SetNTP", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetNTP::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetNTP(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetNTP * SOAP_FMAC4 soap_get__tds__SetNTP(struct soap *soap, _tds__SetNTP *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetNTP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNTPResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetNTPResponse::NTPInformation = NULL; -} - -void _tds__GetNTPResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__NTPInformation(soap, &this->_tds__GetNTPResponse::NTPInformation); -#endif -} - -int _tds__GetNTPResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNTPResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNTPResponse(struct soap *soap, const char *tag, int id, const _tds__GetNTPResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNTPResponse), type)) - return soap->error; - if (a->NTPInformation) - soap_element_result(soap, "tds:NTPInformation"); - if (!a->_tds__GetNTPResponse::NTPInformation) - { if (soap_element_empty(soap, "tds:NTPInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__NTPInformation(soap, "tds:NTPInformation", -1, &a->_tds__GetNTPResponse::NTPInformation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNTPResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNTPResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNTPResponse * SOAP_FMAC4 soap_in__tds__GetNTPResponse(struct soap *soap, const char *tag, _tds__GetNTPResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNTPResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNTPResponse, sizeof(_tds__GetNTPResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNTPResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNTPResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_NTPInformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_NTPInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NTPInformation(soap, "tds:NTPInformation", &a->_tds__GetNTPResponse::NTPInformation, "tt:NTPInformation")) - { soap_flag_NTPInformation1--; - continue; - } - } - soap_check_result(soap, "tds:NTPInformation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetNTPResponse::NTPInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetNTPResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNTPResponse, SOAP_TYPE__tds__GetNTPResponse, sizeof(_tds__GetNTPResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNTPResponse * SOAP_FMAC2 soap_instantiate__tds__GetNTPResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNTPResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNTPResponse *p; - size_t k = sizeof(_tds__GetNTPResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNTPResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNTPResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNTPResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNTPResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNTPResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNTPResponse(soap, tag ? tag : "tds:GetNTPResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNTPResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNTPResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNTPResponse * SOAP_FMAC4 soap_get__tds__GetNTPResponse(struct soap *soap, _tds__GetNTPResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNTPResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetNTP::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetNTP::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetNTP::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetNTP(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNTP(struct soap *soap, const char *tag, int id, const _tds__GetNTP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetNTP), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetNTP::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetNTP(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetNTP * SOAP_FMAC4 soap_in__tds__GetNTP(struct soap *soap, const char *tag, _tds__GetNTP *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetNTP*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetNTP, sizeof(_tds__GetNTP), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetNTP) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetNTP *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetNTP *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetNTP, SOAP_TYPE__tds__GetNTP, sizeof(_tds__GetNTP), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetNTP * SOAP_FMAC2 soap_instantiate__tds__GetNTP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetNTP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetNTP *p; - size_t k = sizeof(_tds__GetNTP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetNTP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetNTP); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetNTP, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetNTP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetNTP::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetNTP(soap, tag ? tag : "tds:GetNTP", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetNTP::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetNTP(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetNTP * SOAP_FMAC4 soap_get__tds__GetNTP(struct soap *soap, _tds__GetNTP *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetNTP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDNSResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetDNSResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetDNSResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDNSResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDNSResponse(struct soap *soap, const char *tag, int id, const _tds__SetDNSResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDNSResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDNSResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDNSResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDNSResponse * SOAP_FMAC4 soap_in__tds__SetDNSResponse(struct soap *soap, const char *tag, _tds__SetDNSResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDNSResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDNSResponse, sizeof(_tds__SetDNSResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDNSResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDNSResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetDNSResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDNSResponse, SOAP_TYPE__tds__SetDNSResponse, sizeof(_tds__SetDNSResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDNSResponse * SOAP_FMAC2 soap_instantiate__tds__SetDNSResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDNSResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDNSResponse *p; - size_t k = sizeof(_tds__SetDNSResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDNSResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDNSResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDNSResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDNSResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDNSResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDNSResponse(soap, tag ? tag : "tds:SetDNSResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDNSResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDNSResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDNSResponse * SOAP_FMAC4 soap_get__tds__SetDNSResponse(struct soap *soap, _tds__SetDNSResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDNSResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDNS::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__SetDNS::FromDHCP); - soap_default_std__vectorTemplateOfxsd__token(soap, &this->_tds__SetDNS::SearchDomain); - soap_default_std__vectorTemplateOfPointerTott__IPAddress(soap, &this->_tds__SetDNS::DNSManual); -} - -void _tds__SetDNS::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetDNS::FromDHCP, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__token(soap, &this->_tds__SetDNS::SearchDomain); - soap_serialize_std__vectorTemplateOfPointerTott__IPAddress(soap, &this->_tds__SetDNS::DNSManual); -#endif -} - -int _tds__SetDNS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDNS(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDNS(struct soap *soap, const char *tag, int id, const _tds__SetDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDNS), type)) - return soap->error; - if (soap_out_bool(soap, "tds:FromDHCP", -1, &a->_tds__SetDNS::FromDHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__token(soap, "tds:SearchDomain", -1, &a->_tds__SetDNS::SearchDomain, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__IPAddress(soap, "tds:DNSManual", -1, &a->_tds__SetDNS::DNSManual, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDNS::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDNS(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDNS * SOAP_FMAC4 soap_in__tds__SetDNS(struct soap *soap, const char *tag, _tds__SetDNS *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDNS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDNS, sizeof(_tds__SetDNS), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDNS) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDNS *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_FromDHCP1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FromDHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:FromDHCP", &a->_tds__SetDNS::FromDHCP, "xsd:boolean")) - { soap_flag_FromDHCP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__token(soap, "tds:SearchDomain", &a->_tds__SetDNS::SearchDomain, "xsd:token")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__IPAddress(soap, "tds:DNSManual", &a->_tds__SetDNS::DNSManual, "tt:IPAddress")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FromDHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetDNS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDNS, SOAP_TYPE__tds__SetDNS, sizeof(_tds__SetDNS), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDNS * SOAP_FMAC2 soap_instantiate__tds__SetDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDNS *p; - size_t k = sizeof(_tds__SetDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDNS); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDNS, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDNS::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDNS(soap, tag ? tag : "tds:SetDNS", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDNS::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDNS(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDNS * SOAP_FMAC4 soap_get__tds__SetDNS(struct soap *soap, _tds__SetDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDNSResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetDNSResponse::DNSInformation = NULL; -} - -void _tds__GetDNSResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__DNSInformation(soap, &this->_tds__GetDNSResponse::DNSInformation); -#endif -} - -int _tds__GetDNSResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDNSResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDNSResponse(struct soap *soap, const char *tag, int id, const _tds__GetDNSResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDNSResponse), type)) - return soap->error; - if (a->DNSInformation) - soap_element_result(soap, "tds:DNSInformation"); - if (!a->_tds__GetDNSResponse::DNSInformation) - { if (soap_element_empty(soap, "tds:DNSInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__DNSInformation(soap, "tds:DNSInformation", -1, &a->_tds__GetDNSResponse::DNSInformation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDNSResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDNSResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDNSResponse * SOAP_FMAC4 soap_in__tds__GetDNSResponse(struct soap *soap, const char *tag, _tds__GetDNSResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDNSResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDNSResponse, sizeof(_tds__GetDNSResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDNSResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDNSResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_DNSInformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DNSInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DNSInformation(soap, "tds:DNSInformation", &a->_tds__GetDNSResponse::DNSInformation, "tt:DNSInformation")) - { soap_flag_DNSInformation1--; - continue; - } - } - soap_check_result(soap, "tds:DNSInformation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetDNSResponse::DNSInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDNSResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDNSResponse, SOAP_TYPE__tds__GetDNSResponse, sizeof(_tds__GetDNSResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDNSResponse * SOAP_FMAC2 soap_instantiate__tds__GetDNSResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDNSResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDNSResponse *p; - size_t k = sizeof(_tds__GetDNSResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDNSResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDNSResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDNSResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDNSResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDNSResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDNSResponse(soap, tag ? tag : "tds:GetDNSResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDNSResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDNSResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDNSResponse * SOAP_FMAC4 soap_get__tds__GetDNSResponse(struct soap *soap, _tds__GetDNSResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDNSResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDNS::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetDNS::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetDNS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDNS(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDNS(struct soap *soap, const char *tag, int id, const _tds__GetDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDNS), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDNS::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDNS(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDNS * SOAP_FMAC4 soap_in__tds__GetDNS(struct soap *soap, const char *tag, _tds__GetDNS *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDNS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDNS, sizeof(_tds__GetDNS), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDNS) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDNS *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDNS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDNS, SOAP_TYPE__tds__GetDNS, sizeof(_tds__GetDNS), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDNS * SOAP_FMAC2 soap_instantiate__tds__GetDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDNS *p; - size_t k = sizeof(_tds__GetDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDNS); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDNS, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDNS::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDNS(soap, tag ? tag : "tds:GetDNS", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDNS::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDNS(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDNS * SOAP_FMAC4 soap_get__tds__GetDNS(struct soap *soap, _tds__GetDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetHostnameFromDHCPResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__SetHostnameFromDHCPResponse::RebootNeeded); -} - -void _tds__SetHostnameFromDHCPResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetHostnameFromDHCPResponse::RebootNeeded, SOAP_TYPE_bool); -#endif -} - -int _tds__SetHostnameFromDHCPResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetHostnameFromDHCPResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostnameFromDHCPResponse(struct soap *soap, const char *tag, int id, const _tds__SetHostnameFromDHCPResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetHostnameFromDHCPResponse), type)) - return soap->error; - soap_element_result(soap, "tds:RebootNeeded"); - if (soap_out_bool(soap, "tds:RebootNeeded", -1, &a->_tds__SetHostnameFromDHCPResponse::RebootNeeded, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetHostnameFromDHCPResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetHostnameFromDHCPResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetHostnameFromDHCPResponse * SOAP_FMAC4 soap_in__tds__SetHostnameFromDHCPResponse(struct soap *soap, const char *tag, _tds__SetHostnameFromDHCPResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetHostnameFromDHCPResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetHostnameFromDHCPResponse, sizeof(_tds__SetHostnameFromDHCPResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetHostnameFromDHCPResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetHostnameFromDHCPResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RebootNeeded1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RebootNeeded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:RebootNeeded", &a->_tds__SetHostnameFromDHCPResponse::RebootNeeded, "xsd:boolean")) - { soap_flag_RebootNeeded1--; - continue; - } - } - soap_check_result(soap, "tds:RebootNeeded"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RebootNeeded1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetHostnameFromDHCPResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetHostnameFromDHCPResponse, SOAP_TYPE__tds__SetHostnameFromDHCPResponse, sizeof(_tds__SetHostnameFromDHCPResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetHostnameFromDHCPResponse * SOAP_FMAC2 soap_instantiate__tds__SetHostnameFromDHCPResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetHostnameFromDHCPResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetHostnameFromDHCPResponse *p; - size_t k = sizeof(_tds__SetHostnameFromDHCPResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetHostnameFromDHCPResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetHostnameFromDHCPResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetHostnameFromDHCPResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetHostnameFromDHCPResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetHostnameFromDHCPResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetHostnameFromDHCPResponse(soap, tag ? tag : "tds:SetHostnameFromDHCPResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetHostnameFromDHCPResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetHostnameFromDHCPResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetHostnameFromDHCPResponse * SOAP_FMAC4 soap_get__tds__SetHostnameFromDHCPResponse(struct soap *soap, _tds__SetHostnameFromDHCPResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetHostnameFromDHCPResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetHostnameFromDHCP::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__SetHostnameFromDHCP::FromDHCP); -} - -void _tds__SetHostnameFromDHCP::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetHostnameFromDHCP::FromDHCP, SOAP_TYPE_bool); -#endif -} - -int _tds__SetHostnameFromDHCP::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetHostnameFromDHCP(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostnameFromDHCP(struct soap *soap, const char *tag, int id, const _tds__SetHostnameFromDHCP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetHostnameFromDHCP), type)) - return soap->error; - if (soap_out_bool(soap, "tds:FromDHCP", -1, &a->_tds__SetHostnameFromDHCP::FromDHCP, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetHostnameFromDHCP::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetHostnameFromDHCP(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_in__tds__SetHostnameFromDHCP(struct soap *soap, const char *tag, _tds__SetHostnameFromDHCP *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetHostnameFromDHCP*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetHostnameFromDHCP, sizeof(_tds__SetHostnameFromDHCP), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetHostnameFromDHCP) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetHostnameFromDHCP *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_FromDHCP1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FromDHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:FromDHCP", &a->_tds__SetHostnameFromDHCP::FromDHCP, "xsd:boolean")) - { soap_flag_FromDHCP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FromDHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetHostnameFromDHCP *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetHostnameFromDHCP, SOAP_TYPE__tds__SetHostnameFromDHCP, sizeof(_tds__SetHostnameFromDHCP), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetHostnameFromDHCP * SOAP_FMAC2 soap_instantiate__tds__SetHostnameFromDHCP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetHostnameFromDHCP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetHostnameFromDHCP *p; - size_t k = sizeof(_tds__SetHostnameFromDHCP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetHostnameFromDHCP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetHostnameFromDHCP); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetHostnameFromDHCP, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetHostnameFromDHCP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetHostnameFromDHCP::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetHostnameFromDHCP(soap, tag ? tag : "tds:SetHostnameFromDHCP", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetHostnameFromDHCP::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetHostnameFromDHCP(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_get__tds__SetHostnameFromDHCP(struct soap *soap, _tds__SetHostnameFromDHCP *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetHostnameFromDHCP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetHostnameResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetHostnameResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetHostnameResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetHostnameResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostnameResponse(struct soap *soap, const char *tag, int id, const _tds__SetHostnameResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetHostnameResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetHostnameResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetHostnameResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetHostnameResponse * SOAP_FMAC4 soap_in__tds__SetHostnameResponse(struct soap *soap, const char *tag, _tds__SetHostnameResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetHostnameResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetHostnameResponse, sizeof(_tds__SetHostnameResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetHostnameResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetHostnameResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetHostnameResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetHostnameResponse, SOAP_TYPE__tds__SetHostnameResponse, sizeof(_tds__SetHostnameResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetHostnameResponse * SOAP_FMAC2 soap_instantiate__tds__SetHostnameResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetHostnameResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetHostnameResponse *p; - size_t k = sizeof(_tds__SetHostnameResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetHostnameResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetHostnameResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetHostnameResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetHostnameResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetHostnameResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetHostnameResponse(soap, tag ? tag : "tds:SetHostnameResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetHostnameResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetHostnameResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetHostnameResponse * SOAP_FMAC4 soap_get__tds__SetHostnameResponse(struct soap *soap, _tds__SetHostnameResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetHostnameResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetHostname::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->_tds__SetHostname::Name); -} - -void _tds__SetHostname::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetHostname::Name, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->_tds__SetHostname::Name); -#endif -} - -int _tds__SetHostname::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetHostname(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostname(struct soap *soap, const char *tag, int id, const _tds__SetHostname *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetHostname), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tds:Name", -1, &a->_tds__SetHostname::Name, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetHostname::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetHostname(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetHostname * SOAP_FMAC4 soap_in__tds__SetHostname(struct soap *soap, const char *tag, _tds__SetHostname *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetHostname*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetHostname, sizeof(_tds__SetHostname), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetHostname) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetHostname *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Name1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tds:Name", &a->_tds__SetHostname::Name, "xsd:token")) - { soap_flag_Name1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetHostname *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetHostname, SOAP_TYPE__tds__SetHostname, sizeof(_tds__SetHostname), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetHostname * SOAP_FMAC2 soap_instantiate__tds__SetHostname(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetHostname(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetHostname *p; - size_t k = sizeof(_tds__SetHostname); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetHostname, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetHostname); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetHostname, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetHostname location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetHostname::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetHostname(soap, tag ? tag : "tds:SetHostname", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetHostname::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetHostname(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetHostname * SOAP_FMAC4 soap_get__tds__SetHostname(struct soap *soap, _tds__SetHostname *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetHostname(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetHostnameResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetHostnameResponse::HostnameInformation = NULL; -} - -void _tds__GetHostnameResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__HostnameInformation(soap, &this->_tds__GetHostnameResponse::HostnameInformation); -#endif -} - -int _tds__GetHostnameResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetHostnameResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetHostnameResponse(struct soap *soap, const char *tag, int id, const _tds__GetHostnameResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetHostnameResponse), type)) - return soap->error; - if (a->HostnameInformation) - soap_element_result(soap, "tds:HostnameInformation"); - if (!a->_tds__GetHostnameResponse::HostnameInformation) - { if (soap_element_empty(soap, "tds:HostnameInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__HostnameInformation(soap, "tds:HostnameInformation", -1, &a->_tds__GetHostnameResponse::HostnameInformation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetHostnameResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetHostnameResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetHostnameResponse * SOAP_FMAC4 soap_in__tds__GetHostnameResponse(struct soap *soap, const char *tag, _tds__GetHostnameResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetHostnameResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetHostnameResponse, sizeof(_tds__GetHostnameResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetHostnameResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetHostnameResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_HostnameInformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_HostnameInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__HostnameInformation(soap, "tds:HostnameInformation", &a->_tds__GetHostnameResponse::HostnameInformation, "tt:HostnameInformation")) - { soap_flag_HostnameInformation1--; - continue; - } - } - soap_check_result(soap, "tds:HostnameInformation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetHostnameResponse::HostnameInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetHostnameResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetHostnameResponse, SOAP_TYPE__tds__GetHostnameResponse, sizeof(_tds__GetHostnameResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetHostnameResponse * SOAP_FMAC2 soap_instantiate__tds__GetHostnameResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetHostnameResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetHostnameResponse *p; - size_t k = sizeof(_tds__GetHostnameResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetHostnameResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetHostnameResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetHostnameResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetHostnameResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetHostnameResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetHostnameResponse(soap, tag ? tag : "tds:GetHostnameResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetHostnameResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetHostnameResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetHostnameResponse * SOAP_FMAC4 soap_get__tds__GetHostnameResponse(struct soap *soap, _tds__GetHostnameResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetHostnameResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetHostname::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetHostname::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetHostname::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetHostname(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetHostname(struct soap *soap, const char *tag, int id, const _tds__GetHostname *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetHostname), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetHostname::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetHostname(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetHostname * SOAP_FMAC4 soap_in__tds__GetHostname(struct soap *soap, const char *tag, _tds__GetHostname *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetHostname*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetHostname, sizeof(_tds__GetHostname), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetHostname) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetHostname *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetHostname *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetHostname, SOAP_TYPE__tds__GetHostname, sizeof(_tds__GetHostname), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetHostname * SOAP_FMAC2 soap_instantiate__tds__GetHostname(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetHostname(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetHostname *p; - size_t k = sizeof(_tds__GetHostname); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetHostname, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetHostname); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetHostname, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetHostname location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetHostname::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetHostname(soap, tag ? tag : "tds:GetHostname", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetHostname::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetHostname(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetHostname * SOAP_FMAC4 soap_get__tds__GetHostname(struct soap *soap, _tds__GetHostname *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetHostname(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetCapabilitiesResponse::Capabilities = NULL; -} - -void _tds__GetCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Capabilities(soap, &this->_tds__GetCapabilitiesResponse::Capabilities); -#endif -} - -int _tds__GetCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tds__GetCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tds:Capabilities"); - if (!a->_tds__GetCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tds:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Capabilities(soap, "tds:Capabilities", -1, &a->_tds__GetCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCapabilitiesResponse * SOAP_FMAC4 soap_in__tds__GetCapabilitiesResponse(struct soap *soap, const char *tag, _tds__GetCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCapabilitiesResponse, sizeof(_tds__GetCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Capabilities(soap, "tds:Capabilities", &a->_tds__GetCapabilitiesResponse::Capabilities, "tt:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tds:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCapabilitiesResponse, SOAP_TYPE__tds__GetCapabilitiesResponse, sizeof(_tds__GetCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tds__GetCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCapabilitiesResponse *p; - size_t k = sizeof(_tds__GetCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCapabilitiesResponse(soap, tag ? tag : "tds:GetCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCapabilitiesResponse * SOAP_FMAC4 soap_get__tds__GetCapabilitiesResponse(struct soap *soap, _tds__GetCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__CapabilityCategory(soap, &this->_tds__GetCapabilities::Category); -} - -void _tds__GetCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__CapabilityCategory(soap, &this->_tds__GetCapabilities::Category); -#endif -} - -int _tds__GetCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCapabilities(struct soap *soap, const char *tag, int id, const _tds__GetCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetCapabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__CapabilityCategory(soap, "tds:Category", -1, &a->_tds__GetCapabilities::Category, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetCapabilities * SOAP_FMAC4 soap_in__tds__GetCapabilities(struct soap *soap, const char *tag, _tds__GetCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetCapabilities, sizeof(_tds__GetCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__CapabilityCategory(soap, "tds:Category", &a->_tds__GetCapabilities::Category, "tt:CapabilityCategory")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetCapabilities, SOAP_TYPE__tds__GetCapabilities, sizeof(_tds__GetCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetCapabilities * SOAP_FMAC2 soap_instantiate__tds__GetCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetCapabilities *p; - size_t k = sizeof(_tds__GetCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetCapabilities(soap, tag ? tag : "tds:GetCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetCapabilities * SOAP_FMAC4 soap_get__tds__GetCapabilities(struct soap *soap, _tds__GetCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetWsdlUrlResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->_tds__GetWsdlUrlResponse::WsdlUrl); -} - -void _tds__GetWsdlUrlResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetWsdlUrlResponse::WsdlUrl, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->_tds__GetWsdlUrlResponse::WsdlUrl); -#endif -} - -int _tds__GetWsdlUrlResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetWsdlUrlResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetWsdlUrlResponse(struct soap *soap, const char *tag, int id, const _tds__GetWsdlUrlResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetWsdlUrlResponse), type)) - return soap->error; - soap_element_result(soap, "tds:WsdlUrl"); - if (soap_out_xsd__anyURI(soap, "tds:WsdlUrl", -1, &a->_tds__GetWsdlUrlResponse::WsdlUrl, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetWsdlUrlResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetWsdlUrlResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetWsdlUrlResponse * SOAP_FMAC4 soap_in__tds__GetWsdlUrlResponse(struct soap *soap, const char *tag, _tds__GetWsdlUrlResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetWsdlUrlResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetWsdlUrlResponse, sizeof(_tds__GetWsdlUrlResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetWsdlUrlResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetWsdlUrlResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_WsdlUrl1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_WsdlUrl1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tds:WsdlUrl", &a->_tds__GetWsdlUrlResponse::WsdlUrl, "xsd:anyURI")) - { soap_flag_WsdlUrl1--; - continue; - } - } - soap_check_result(soap, "tds:WsdlUrl"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_WsdlUrl1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetWsdlUrlResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetWsdlUrlResponse, SOAP_TYPE__tds__GetWsdlUrlResponse, sizeof(_tds__GetWsdlUrlResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetWsdlUrlResponse * SOAP_FMAC2 soap_instantiate__tds__GetWsdlUrlResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetWsdlUrlResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetWsdlUrlResponse *p; - size_t k = sizeof(_tds__GetWsdlUrlResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetWsdlUrlResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetWsdlUrlResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetWsdlUrlResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetWsdlUrlResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetWsdlUrlResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetWsdlUrlResponse(soap, tag ? tag : "tds:GetWsdlUrlResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetWsdlUrlResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetWsdlUrlResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetWsdlUrlResponse * SOAP_FMAC4 soap_get__tds__GetWsdlUrlResponse(struct soap *soap, _tds__GetWsdlUrlResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetWsdlUrlResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetWsdlUrl::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetWsdlUrl::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetWsdlUrl::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetWsdlUrl(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetWsdlUrl(struct soap *soap, const char *tag, int id, const _tds__GetWsdlUrl *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetWsdlUrl), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetWsdlUrl::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetWsdlUrl(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetWsdlUrl * SOAP_FMAC4 soap_in__tds__GetWsdlUrl(struct soap *soap, const char *tag, _tds__GetWsdlUrl *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetWsdlUrl*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetWsdlUrl, sizeof(_tds__GetWsdlUrl), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetWsdlUrl) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetWsdlUrl *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetWsdlUrl *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetWsdlUrl, SOAP_TYPE__tds__GetWsdlUrl, sizeof(_tds__GetWsdlUrl), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetWsdlUrl * SOAP_FMAC2 soap_instantiate__tds__GetWsdlUrl(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetWsdlUrl(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetWsdlUrl *p; - size_t k = sizeof(_tds__GetWsdlUrl); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetWsdlUrl, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetWsdlUrl); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetWsdlUrl, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetWsdlUrl location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetWsdlUrl::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetWsdlUrl(soap, tag ? tag : "tds:GetWsdlUrl", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetWsdlUrl::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetWsdlUrl(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetWsdlUrl * SOAP_FMAC4 soap_get__tds__GetWsdlUrl(struct soap *soap, _tds__GetWsdlUrl *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetWsdlUrl(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetUserResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetUserResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetUserResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetUserResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetUserResponse(struct soap *soap, const char *tag, int id, const _tds__SetUserResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetUserResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetUserResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetUserResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetUserResponse * SOAP_FMAC4 soap_in__tds__SetUserResponse(struct soap *soap, const char *tag, _tds__SetUserResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetUserResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetUserResponse, sizeof(_tds__SetUserResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetUserResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetUserResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetUserResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetUserResponse, SOAP_TYPE__tds__SetUserResponse, sizeof(_tds__SetUserResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetUserResponse * SOAP_FMAC2 soap_instantiate__tds__SetUserResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetUserResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetUserResponse *p; - size_t k = sizeof(_tds__SetUserResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetUserResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetUserResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetUserResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetUserResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetUserResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetUserResponse(soap, tag ? tag : "tds:SetUserResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetUserResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetUserResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetUserResponse * SOAP_FMAC4 soap_get__tds__SetUserResponse(struct soap *soap, _tds__SetUserResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetUserResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetUser::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__User(soap, &this->_tds__SetUser::User); -} - -void _tds__SetUser::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__User(soap, &this->_tds__SetUser::User); -#endif -} - -int _tds__SetUser::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetUser(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetUser(struct soap *soap, const char *tag, int id, const _tds__SetUser *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetUser), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__User(soap, "tds:User", -1, &a->_tds__SetUser::User, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetUser::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetUser(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetUser * SOAP_FMAC4 soap_in__tds__SetUser(struct soap *soap, const char *tag, _tds__SetUser *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetUser*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetUser, sizeof(_tds__SetUser), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetUser) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetUser *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__User(soap, "tds:User", &a->_tds__SetUser::User, "tt:User")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__SetUser::User.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetUser *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetUser, SOAP_TYPE__tds__SetUser, sizeof(_tds__SetUser), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetUser * SOAP_FMAC2 soap_instantiate__tds__SetUser(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetUser(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetUser *p; - size_t k = sizeof(_tds__SetUser); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetUser, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetUser); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetUser, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetUser location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetUser::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetUser(soap, tag ? tag : "tds:SetUser", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetUser::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetUser(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetUser * SOAP_FMAC4 soap_get__tds__SetUser(struct soap *soap, _tds__SetUser *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetUser(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteUsersResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__DeleteUsersResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__DeleteUsersResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteUsersResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteUsersResponse(struct soap *soap, const char *tag, int id, const _tds__DeleteUsersResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteUsersResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteUsersResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteUsersResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteUsersResponse * SOAP_FMAC4 soap_in__tds__DeleteUsersResponse(struct soap *soap, const char *tag, _tds__DeleteUsersResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteUsersResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteUsersResponse, sizeof(_tds__DeleteUsersResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteUsersResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteUsersResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__DeleteUsersResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteUsersResponse, SOAP_TYPE__tds__DeleteUsersResponse, sizeof(_tds__DeleteUsersResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteUsersResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteUsersResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteUsersResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteUsersResponse *p; - size_t k = sizeof(_tds__DeleteUsersResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteUsersResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteUsersResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteUsersResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteUsersResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteUsersResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteUsersResponse(soap, tag ? tag : "tds:DeleteUsersResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteUsersResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteUsersResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteUsersResponse * SOAP_FMAC4 soap_get__tds__DeleteUsersResponse(struct soap *soap, _tds__DeleteUsersResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteUsersResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__DeleteUsers::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfstd__string(soap, &this->_tds__DeleteUsers::Username); -} - -void _tds__DeleteUsers::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->_tds__DeleteUsers::Username); -#endif -} - -int _tds__DeleteUsers::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__DeleteUsers(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteUsers(struct soap *soap, const char *tag, int id, const _tds__DeleteUsers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__DeleteUsers), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tds:Username", -1, &a->_tds__DeleteUsers::Username, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__DeleteUsers::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__DeleteUsers(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__DeleteUsers * SOAP_FMAC4 soap_in__tds__DeleteUsers(struct soap *soap, const char *tag, _tds__DeleteUsers *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__DeleteUsers*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__DeleteUsers, sizeof(_tds__DeleteUsers), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__DeleteUsers) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__DeleteUsers *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tds:Username", &a->_tds__DeleteUsers::Username, "xsd:string")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__DeleteUsers::Username.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__DeleteUsers *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__DeleteUsers, SOAP_TYPE__tds__DeleteUsers, sizeof(_tds__DeleteUsers), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__DeleteUsers * SOAP_FMAC2 soap_instantiate__tds__DeleteUsers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__DeleteUsers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__DeleteUsers *p; - size_t k = sizeof(_tds__DeleteUsers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__DeleteUsers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__DeleteUsers); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__DeleteUsers, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__DeleteUsers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__DeleteUsers::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__DeleteUsers(soap, tag ? tag : "tds:DeleteUsers", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__DeleteUsers::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__DeleteUsers(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__DeleteUsers * SOAP_FMAC4 soap_get__tds__DeleteUsers(struct soap *soap, _tds__DeleteUsers *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__DeleteUsers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateUsersResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__CreateUsersResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__CreateUsersResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateUsersResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateUsersResponse(struct soap *soap, const char *tag, int id, const _tds__CreateUsersResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateUsersResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateUsersResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateUsersResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateUsersResponse * SOAP_FMAC4 soap_in__tds__CreateUsersResponse(struct soap *soap, const char *tag, _tds__CreateUsersResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateUsersResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateUsersResponse, sizeof(_tds__CreateUsersResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateUsersResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateUsersResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__CreateUsersResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateUsersResponse, SOAP_TYPE__tds__CreateUsersResponse, sizeof(_tds__CreateUsersResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateUsersResponse * SOAP_FMAC2 soap_instantiate__tds__CreateUsersResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateUsersResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateUsersResponse *p; - size_t k = sizeof(_tds__CreateUsersResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateUsersResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateUsersResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateUsersResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateUsersResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateUsersResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateUsersResponse(soap, tag ? tag : "tds:CreateUsersResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateUsersResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateUsersResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateUsersResponse * SOAP_FMAC4 soap_get__tds__CreateUsersResponse(struct soap *soap, _tds__CreateUsersResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateUsersResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__CreateUsers::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__User(soap, &this->_tds__CreateUsers::User); -} - -void _tds__CreateUsers::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__User(soap, &this->_tds__CreateUsers::User); -#endif -} - -int _tds__CreateUsers::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__CreateUsers(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateUsers(struct soap *soap, const char *tag, int id, const _tds__CreateUsers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__CreateUsers), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__User(soap, "tds:User", -1, &a->_tds__CreateUsers::User, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__CreateUsers::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__CreateUsers(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__CreateUsers * SOAP_FMAC4 soap_in__tds__CreateUsers(struct soap *soap, const char *tag, _tds__CreateUsers *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__CreateUsers*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__CreateUsers, sizeof(_tds__CreateUsers), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__CreateUsers) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__CreateUsers *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__User(soap, "tds:User", &a->_tds__CreateUsers::User, "tt:User")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__CreateUsers::User.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__CreateUsers *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__CreateUsers, SOAP_TYPE__tds__CreateUsers, sizeof(_tds__CreateUsers), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__CreateUsers * SOAP_FMAC2 soap_instantiate__tds__CreateUsers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__CreateUsers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__CreateUsers *p; - size_t k = sizeof(_tds__CreateUsers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__CreateUsers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__CreateUsers); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__CreateUsers, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__CreateUsers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__CreateUsers::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__CreateUsers(soap, tag ? tag : "tds:CreateUsers", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__CreateUsers::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__CreateUsers(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__CreateUsers * SOAP_FMAC4 soap_get__tds__CreateUsers(struct soap *soap, _tds__CreateUsers *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__CreateUsers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetUsersResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__User(soap, &this->_tds__GetUsersResponse::User); -} - -void _tds__GetUsersResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__User(soap, &this->_tds__GetUsersResponse::User); -#endif -} - -int _tds__GetUsersResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetUsersResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetUsersResponse(struct soap *soap, const char *tag, int id, const _tds__GetUsersResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetUsersResponse), type)) - return soap->error; - soap_element_result(soap, "tds:User"); - if (soap_out_std__vectorTemplateOfPointerTott__User(soap, "tds:User", -1, &a->_tds__GetUsersResponse::User, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetUsersResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetUsersResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetUsersResponse * SOAP_FMAC4 soap_in__tds__GetUsersResponse(struct soap *soap, const char *tag, _tds__GetUsersResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetUsersResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetUsersResponse, sizeof(_tds__GetUsersResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetUsersResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetUsersResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__User(soap, "tds:User", &a->_tds__GetUsersResponse::User, "tt:User")) - continue; - } - soap_check_result(soap, "tds:User"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetUsersResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetUsersResponse, SOAP_TYPE__tds__GetUsersResponse, sizeof(_tds__GetUsersResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetUsersResponse * SOAP_FMAC2 soap_instantiate__tds__GetUsersResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetUsersResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetUsersResponse *p; - size_t k = sizeof(_tds__GetUsersResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetUsersResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetUsersResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetUsersResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetUsersResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetUsersResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetUsersResponse(soap, tag ? tag : "tds:GetUsersResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetUsersResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetUsersResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetUsersResponse * SOAP_FMAC4 soap_get__tds__GetUsersResponse(struct soap *soap, _tds__GetUsersResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetUsersResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetUsers::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetUsers::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetUsers::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetUsers(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetUsers(struct soap *soap, const char *tag, int id, const _tds__GetUsers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetUsers), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetUsers::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetUsers(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetUsers * SOAP_FMAC4 soap_in__tds__GetUsers(struct soap *soap, const char *tag, _tds__GetUsers *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetUsers*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetUsers, sizeof(_tds__GetUsers), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetUsers) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetUsers *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetUsers *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetUsers, SOAP_TYPE__tds__GetUsers, sizeof(_tds__GetUsers), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetUsers * SOAP_FMAC2 soap_instantiate__tds__GetUsers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetUsers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetUsers *p; - size_t k = sizeof(_tds__GetUsers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetUsers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetUsers); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetUsers, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetUsers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetUsers::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetUsers(soap, tag ? tag : "tds:GetUsers", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetUsers::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetUsers(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetUsers * SOAP_FMAC4 soap_get__tds__GetUsers(struct soap *soap, _tds__GetUsers *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetUsers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRemoteUserResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetRemoteUserResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetRemoteUserResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRemoteUserResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteUserResponse(struct soap *soap, const char *tag, int id, const _tds__SetRemoteUserResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRemoteUserResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRemoteUserResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRemoteUserResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRemoteUserResponse * SOAP_FMAC4 soap_in__tds__SetRemoteUserResponse(struct soap *soap, const char *tag, _tds__SetRemoteUserResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRemoteUserResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRemoteUserResponse, sizeof(_tds__SetRemoteUserResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRemoteUserResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRemoteUserResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetRemoteUserResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRemoteUserResponse, SOAP_TYPE__tds__SetRemoteUserResponse, sizeof(_tds__SetRemoteUserResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRemoteUserResponse * SOAP_FMAC2 soap_instantiate__tds__SetRemoteUserResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRemoteUserResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRemoteUserResponse *p; - size_t k = sizeof(_tds__SetRemoteUserResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRemoteUserResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRemoteUserResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRemoteUserResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRemoteUserResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRemoteUserResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRemoteUserResponse(soap, tag ? tag : "tds:SetRemoteUserResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRemoteUserResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRemoteUserResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRemoteUserResponse * SOAP_FMAC4 soap_get__tds__SetRemoteUserResponse(struct soap *soap, _tds__SetRemoteUserResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRemoteUserResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRemoteUser::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__SetRemoteUser::RemoteUser = NULL; -} - -void _tds__SetRemoteUser::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RemoteUser(soap, &this->_tds__SetRemoteUser::RemoteUser); -#endif -} - -int _tds__SetRemoteUser::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRemoteUser(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteUser(struct soap *soap, const char *tag, int id, const _tds__SetRemoteUser *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRemoteUser), type)) - return soap->error; - if (soap_out_PointerTott__RemoteUser(soap, "tds:RemoteUser", -1, &a->_tds__SetRemoteUser::RemoteUser, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRemoteUser::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRemoteUser(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRemoteUser * SOAP_FMAC4 soap_in__tds__SetRemoteUser(struct soap *soap, const char *tag, _tds__SetRemoteUser *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRemoteUser*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRemoteUser, sizeof(_tds__SetRemoteUser), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRemoteUser) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRemoteUser *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RemoteUser1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RemoteUser1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RemoteUser(soap, "tds:RemoteUser", &a->_tds__SetRemoteUser::RemoteUser, "tt:RemoteUser")) - { soap_flag_RemoteUser1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetRemoteUser *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRemoteUser, SOAP_TYPE__tds__SetRemoteUser, sizeof(_tds__SetRemoteUser), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRemoteUser * SOAP_FMAC2 soap_instantiate__tds__SetRemoteUser(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRemoteUser(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRemoteUser *p; - size_t k = sizeof(_tds__SetRemoteUser); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRemoteUser, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRemoteUser); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRemoteUser, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRemoteUser location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRemoteUser::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRemoteUser(soap, tag ? tag : "tds:SetRemoteUser", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRemoteUser::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRemoteUser(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRemoteUser * SOAP_FMAC4 soap_get__tds__SetRemoteUser(struct soap *soap, _tds__SetRemoteUser *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRemoteUser(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetRemoteUserResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetRemoteUserResponse::RemoteUser = NULL; -} - -void _tds__GetRemoteUserResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RemoteUser(soap, &this->_tds__GetRemoteUserResponse::RemoteUser); -#endif -} - -int _tds__GetRemoteUserResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetRemoteUserResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteUserResponse(struct soap *soap, const char *tag, int id, const _tds__GetRemoteUserResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetRemoteUserResponse), type)) - return soap->error; - if (a->RemoteUser) - soap_element_result(soap, "tds:RemoteUser"); - if (soap_out_PointerTott__RemoteUser(soap, "tds:RemoteUser", -1, &a->_tds__GetRemoteUserResponse::RemoteUser, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetRemoteUserResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetRemoteUserResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetRemoteUserResponse * SOAP_FMAC4 soap_in__tds__GetRemoteUserResponse(struct soap *soap, const char *tag, _tds__GetRemoteUserResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetRemoteUserResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetRemoteUserResponse, sizeof(_tds__GetRemoteUserResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetRemoteUserResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetRemoteUserResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RemoteUser1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RemoteUser1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RemoteUser(soap, "tds:RemoteUser", &a->_tds__GetRemoteUserResponse::RemoteUser, "tt:RemoteUser")) - { soap_flag_RemoteUser1--; - continue; - } - } - soap_check_result(soap, "tds:RemoteUser"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetRemoteUserResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetRemoteUserResponse, SOAP_TYPE__tds__GetRemoteUserResponse, sizeof(_tds__GetRemoteUserResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetRemoteUserResponse * SOAP_FMAC2 soap_instantiate__tds__GetRemoteUserResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetRemoteUserResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetRemoteUserResponse *p; - size_t k = sizeof(_tds__GetRemoteUserResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetRemoteUserResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetRemoteUserResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetRemoteUserResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetRemoteUserResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetRemoteUserResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetRemoteUserResponse(soap, tag ? tag : "tds:GetRemoteUserResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetRemoteUserResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetRemoteUserResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetRemoteUserResponse * SOAP_FMAC4 soap_get__tds__GetRemoteUserResponse(struct soap *soap, _tds__GetRemoteUserResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetRemoteUserResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetRemoteUser::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetRemoteUser::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetRemoteUser::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetRemoteUser(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteUser(struct soap *soap, const char *tag, int id, const _tds__GetRemoteUser *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetRemoteUser), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetRemoteUser::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetRemoteUser(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetRemoteUser * SOAP_FMAC4 soap_in__tds__GetRemoteUser(struct soap *soap, const char *tag, _tds__GetRemoteUser *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetRemoteUser*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetRemoteUser, sizeof(_tds__GetRemoteUser), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetRemoteUser) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetRemoteUser *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetRemoteUser *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetRemoteUser, SOAP_TYPE__tds__GetRemoteUser, sizeof(_tds__GetRemoteUser), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetRemoteUser * SOAP_FMAC2 soap_instantiate__tds__GetRemoteUser(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetRemoteUser(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetRemoteUser *p; - size_t k = sizeof(_tds__GetRemoteUser); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetRemoteUser, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetRemoteUser); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetRemoteUser, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetRemoteUser location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetRemoteUser::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetRemoteUser(soap, tag ? tag : "tds:GetRemoteUser", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetRemoteUser::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetRemoteUser(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetRemoteUser * SOAP_FMAC4 soap_get__tds__GetRemoteUser(struct soap *soap, _tds__GetRemoteUser *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetRemoteUser(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetEndpointReferenceResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->_tds__GetEndpointReferenceResponse::GUID); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__GetEndpointReferenceResponse::__any); -} - -void _tds__GetEndpointReferenceResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetEndpointReferenceResponse::GUID, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tds__GetEndpointReferenceResponse::GUID); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tds__GetEndpointReferenceResponse::__any); -#endif -} - -int _tds__GetEndpointReferenceResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetEndpointReferenceResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetEndpointReferenceResponse(struct soap *soap, const char *tag, int id, const _tds__GetEndpointReferenceResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetEndpointReferenceResponse), type)) - return soap->error; - soap_element_result(soap, "tds:GUID"); - if (soap_out_std__string(soap, "tds:GUID", -1, &a->_tds__GetEndpointReferenceResponse::GUID, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tds__GetEndpointReferenceResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetEndpointReferenceResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetEndpointReferenceResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetEndpointReferenceResponse * SOAP_FMAC4 soap_in__tds__GetEndpointReferenceResponse(struct soap *soap, const char *tag, _tds__GetEndpointReferenceResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetEndpointReferenceResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetEndpointReferenceResponse, sizeof(_tds__GetEndpointReferenceResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetEndpointReferenceResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetEndpointReferenceResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_GUID1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_GUID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:GUID", &a->_tds__GetEndpointReferenceResponse::GUID, "xsd:string")) - { soap_flag_GUID1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tds__GetEndpointReferenceResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tds:GUID"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_GUID1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetEndpointReferenceResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetEndpointReferenceResponse, SOAP_TYPE__tds__GetEndpointReferenceResponse, sizeof(_tds__GetEndpointReferenceResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetEndpointReferenceResponse * SOAP_FMAC2 soap_instantiate__tds__GetEndpointReferenceResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetEndpointReferenceResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetEndpointReferenceResponse *p; - size_t k = sizeof(_tds__GetEndpointReferenceResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetEndpointReferenceResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetEndpointReferenceResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetEndpointReferenceResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetEndpointReferenceResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetEndpointReferenceResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetEndpointReferenceResponse(soap, tag ? tag : "tds:GetEndpointReferenceResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetEndpointReferenceResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetEndpointReferenceResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetEndpointReferenceResponse * SOAP_FMAC4 soap_get__tds__GetEndpointReferenceResponse(struct soap *soap, _tds__GetEndpointReferenceResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetEndpointReferenceResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetEndpointReference::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetEndpointReference::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetEndpointReference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetEndpointReference(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetEndpointReference(struct soap *soap, const char *tag, int id, const _tds__GetEndpointReference *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetEndpointReference), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetEndpointReference::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetEndpointReference(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetEndpointReference * SOAP_FMAC4 soap_in__tds__GetEndpointReference(struct soap *soap, const char *tag, _tds__GetEndpointReference *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetEndpointReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetEndpointReference, sizeof(_tds__GetEndpointReference), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetEndpointReference) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetEndpointReference *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetEndpointReference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetEndpointReference, SOAP_TYPE__tds__GetEndpointReference, sizeof(_tds__GetEndpointReference), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetEndpointReference * SOAP_FMAC2 soap_instantiate__tds__GetEndpointReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetEndpointReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetEndpointReference *p; - size_t k = sizeof(_tds__GetEndpointReference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetEndpointReference, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetEndpointReference); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetEndpointReference, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetEndpointReference location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetEndpointReference::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetEndpointReference(soap, tag ? tag : "tds:GetEndpointReference", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetEndpointReference::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetEndpointReference(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetEndpointReference * SOAP_FMAC4 soap_get__tds__GetEndpointReference(struct soap *soap, _tds__GetEndpointReference *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetEndpointReference(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDPAddressesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetDPAddressesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetDPAddressesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDPAddressesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDPAddressesResponse(struct soap *soap, const char *tag, int id, const _tds__SetDPAddressesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDPAddressesResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDPAddressesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDPAddressesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDPAddressesResponse * SOAP_FMAC4 soap_in__tds__SetDPAddressesResponse(struct soap *soap, const char *tag, _tds__SetDPAddressesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDPAddressesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDPAddressesResponse, sizeof(_tds__SetDPAddressesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDPAddressesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDPAddressesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetDPAddressesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDPAddressesResponse, SOAP_TYPE__tds__SetDPAddressesResponse, sizeof(_tds__SetDPAddressesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDPAddressesResponse * SOAP_FMAC2 soap_instantiate__tds__SetDPAddressesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDPAddressesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDPAddressesResponse *p; - size_t k = sizeof(_tds__SetDPAddressesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDPAddressesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDPAddressesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDPAddressesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDPAddressesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDPAddressesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDPAddressesResponse(soap, tag ? tag : "tds:SetDPAddressesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDPAddressesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDPAddressesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDPAddressesResponse * SOAP_FMAC4 soap_get__tds__SetDPAddressesResponse(struct soap *soap, _tds__SetDPAddressesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDPAddressesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDPAddresses::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->_tds__SetDPAddresses::DPAddress); -} - -void _tds__SetDPAddresses::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->_tds__SetDPAddresses::DPAddress); -#endif -} - -int _tds__SetDPAddresses::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDPAddresses(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDPAddresses(struct soap *soap, const char *tag, int id, const _tds__SetDPAddresses *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDPAddresses), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tds:DPAddress", -1, &a->_tds__SetDPAddresses::DPAddress, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDPAddresses::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDPAddresses(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDPAddresses * SOAP_FMAC4 soap_in__tds__SetDPAddresses(struct soap *soap, const char *tag, _tds__SetDPAddresses *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDPAddresses*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDPAddresses, sizeof(_tds__SetDPAddresses), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDPAddresses) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDPAddresses *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tds:DPAddress", &a->_tds__SetDPAddresses::DPAddress, "tt:NetworkHost")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetDPAddresses *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDPAddresses, SOAP_TYPE__tds__SetDPAddresses, sizeof(_tds__SetDPAddresses), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDPAddresses * SOAP_FMAC2 soap_instantiate__tds__SetDPAddresses(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDPAddresses(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDPAddresses *p; - size_t k = sizeof(_tds__SetDPAddresses); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDPAddresses, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDPAddresses); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDPAddresses, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDPAddresses location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDPAddresses::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDPAddresses(soap, tag ? tag : "tds:SetDPAddresses", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDPAddresses::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDPAddresses(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDPAddresses * SOAP_FMAC4 soap_get__tds__SetDPAddresses(struct soap *soap, _tds__SetDPAddresses *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDPAddresses(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDPAddressesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->_tds__GetDPAddressesResponse::DPAddress); -} - -void _tds__GetDPAddressesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->_tds__GetDPAddressesResponse::DPAddress); -#endif -} - -int _tds__GetDPAddressesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDPAddressesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDPAddressesResponse(struct soap *soap, const char *tag, int id, const _tds__GetDPAddressesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDPAddressesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:DPAddress"); - if (soap_out_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tds:DPAddress", -1, &a->_tds__GetDPAddressesResponse::DPAddress, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDPAddressesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDPAddressesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDPAddressesResponse * SOAP_FMAC4 soap_in__tds__GetDPAddressesResponse(struct soap *soap, const char *tag, _tds__GetDPAddressesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDPAddressesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDPAddressesResponse, sizeof(_tds__GetDPAddressesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDPAddressesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDPAddressesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tds:DPAddress", &a->_tds__GetDPAddressesResponse::DPAddress, "tt:NetworkHost")) - continue; - } - soap_check_result(soap, "tds:DPAddress"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDPAddressesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDPAddressesResponse, SOAP_TYPE__tds__GetDPAddressesResponse, sizeof(_tds__GetDPAddressesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDPAddressesResponse * SOAP_FMAC2 soap_instantiate__tds__GetDPAddressesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDPAddressesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDPAddressesResponse *p; - size_t k = sizeof(_tds__GetDPAddressesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDPAddressesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDPAddressesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDPAddressesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDPAddressesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDPAddressesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDPAddressesResponse(soap, tag ? tag : "tds:GetDPAddressesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDPAddressesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDPAddressesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDPAddressesResponse * SOAP_FMAC4 soap_get__tds__GetDPAddressesResponse(struct soap *soap, _tds__GetDPAddressesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDPAddressesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDPAddresses::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetDPAddresses::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetDPAddresses::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDPAddresses(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDPAddresses(struct soap *soap, const char *tag, int id, const _tds__GetDPAddresses *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDPAddresses), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDPAddresses::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDPAddresses(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDPAddresses * SOAP_FMAC4 soap_in__tds__GetDPAddresses(struct soap *soap, const char *tag, _tds__GetDPAddresses *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDPAddresses*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDPAddresses, sizeof(_tds__GetDPAddresses), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDPAddresses) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDPAddresses *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDPAddresses *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDPAddresses, SOAP_TYPE__tds__GetDPAddresses, sizeof(_tds__GetDPAddresses), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDPAddresses * SOAP_FMAC2 soap_instantiate__tds__GetDPAddresses(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDPAddresses(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDPAddresses *p; - size_t k = sizeof(_tds__GetDPAddresses); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDPAddresses, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDPAddresses); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDPAddresses, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDPAddresses location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDPAddresses::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDPAddresses(soap, tag ? tag : "tds:GetDPAddresses", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDPAddresses::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDPAddresses(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDPAddresses * SOAP_FMAC4 soap_get__tds__GetDPAddresses(struct soap *soap, _tds__GetDPAddresses *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDPAddresses(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRemoteDiscoveryModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetRemoteDiscoveryModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetRemoteDiscoveryModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRemoteDiscoveryModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, const char *tag, int id, const _tds__SetRemoteDiscoveryModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRemoteDiscoveryModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRemoteDiscoveryModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, const char *tag, _tds__SetRemoteDiscoveryModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRemoteDiscoveryModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse, sizeof(_tds__SetRemoteDiscoveryModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRemoteDiscoveryModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetRemoteDiscoveryModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse, SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse, sizeof(_tds__SetRemoteDiscoveryModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRemoteDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRemoteDiscoveryModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRemoteDiscoveryModeResponse *p; - size_t k = sizeof(_tds__SetRemoteDiscoveryModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRemoteDiscoveryModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRemoteDiscoveryModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRemoteDiscoveryModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRemoteDiscoveryModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRemoteDiscoveryModeResponse(soap, tag ? tag : "tds:SetRemoteDiscoveryModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRemoteDiscoveryModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRemoteDiscoveryModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, _tds__SetRemoteDiscoveryModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRemoteDiscoveryModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetRemoteDiscoveryMode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DiscoveryMode(soap, &this->_tds__SetRemoteDiscoveryMode::RemoteDiscoveryMode); -} - -void _tds__SetRemoteDiscoveryMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetRemoteDiscoveryMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetRemoteDiscoveryMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteDiscoveryMode(struct soap *soap, const char *tag, int id, const _tds__SetRemoteDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetRemoteDiscoveryMode), type)) - return soap->error; - if (soap_out_tt__DiscoveryMode(soap, "tds:RemoteDiscoveryMode", -1, &a->_tds__SetRemoteDiscoveryMode::RemoteDiscoveryMode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetRemoteDiscoveryMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetRemoteDiscoveryMode(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_in__tds__SetRemoteDiscoveryMode(struct soap *soap, const char *tag, _tds__SetRemoteDiscoveryMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetRemoteDiscoveryMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetRemoteDiscoveryMode, sizeof(_tds__SetRemoteDiscoveryMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetRemoteDiscoveryMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetRemoteDiscoveryMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RemoteDiscoveryMode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RemoteDiscoveryMode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__DiscoveryMode(soap, "tds:RemoteDiscoveryMode", &a->_tds__SetRemoteDiscoveryMode::RemoteDiscoveryMode, "tt:DiscoveryMode")) - { soap_flag_RemoteDiscoveryMode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RemoteDiscoveryMode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetRemoteDiscoveryMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetRemoteDiscoveryMode, SOAP_TYPE__tds__SetRemoteDiscoveryMode, sizeof(_tds__SetRemoteDiscoveryMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__SetRemoteDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetRemoteDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetRemoteDiscoveryMode *p; - size_t k = sizeof(_tds__SetRemoteDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetRemoteDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetRemoteDiscoveryMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetRemoteDiscoveryMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetRemoteDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetRemoteDiscoveryMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetRemoteDiscoveryMode(soap, tag ? tag : "tds:SetRemoteDiscoveryMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetRemoteDiscoveryMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetRemoteDiscoveryMode(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_get__tds__SetRemoteDiscoveryMode(struct soap *soap, _tds__SetRemoteDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetRemoteDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetRemoteDiscoveryModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DiscoveryMode(soap, &this->_tds__GetRemoteDiscoveryModeResponse::RemoteDiscoveryMode); -} - -void _tds__GetRemoteDiscoveryModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetRemoteDiscoveryModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetRemoteDiscoveryModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, const char *tag, int id, const _tds__GetRemoteDiscoveryModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse), type)) - return soap->error; - soap_element_result(soap, "tds:RemoteDiscoveryMode"); - if (soap_out_tt__DiscoveryMode(soap, "tds:RemoteDiscoveryMode", -1, &a->_tds__GetRemoteDiscoveryModeResponse::RemoteDiscoveryMode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetRemoteDiscoveryModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetRemoteDiscoveryModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, const char *tag, _tds__GetRemoteDiscoveryModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetRemoteDiscoveryModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse, sizeof(_tds__GetRemoteDiscoveryModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetRemoteDiscoveryModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RemoteDiscoveryMode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RemoteDiscoveryMode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__DiscoveryMode(soap, "tds:RemoteDiscoveryMode", &a->_tds__GetRemoteDiscoveryModeResponse::RemoteDiscoveryMode, "tt:DiscoveryMode")) - { soap_flag_RemoteDiscoveryMode1--; - continue; - } - } - soap_check_result(soap, "tds:RemoteDiscoveryMode"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RemoteDiscoveryMode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetRemoteDiscoveryModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse, SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse, sizeof(_tds__GetRemoteDiscoveryModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetRemoteDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetRemoteDiscoveryModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetRemoteDiscoveryModeResponse *p; - size_t k = sizeof(_tds__GetRemoteDiscoveryModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetRemoteDiscoveryModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetRemoteDiscoveryModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetRemoteDiscoveryModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetRemoteDiscoveryModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetRemoteDiscoveryModeResponse(soap, tag ? tag : "tds:GetRemoteDiscoveryModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetRemoteDiscoveryModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetRemoteDiscoveryModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, _tds__GetRemoteDiscoveryModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetRemoteDiscoveryModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetRemoteDiscoveryMode::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetRemoteDiscoveryMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetRemoteDiscoveryMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetRemoteDiscoveryMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteDiscoveryMode(struct soap *soap, const char *tag, int id, const _tds__GetRemoteDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetRemoteDiscoveryMode), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetRemoteDiscoveryMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetRemoteDiscoveryMode(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_in__tds__GetRemoteDiscoveryMode(struct soap *soap, const char *tag, _tds__GetRemoteDiscoveryMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetRemoteDiscoveryMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetRemoteDiscoveryMode, sizeof(_tds__GetRemoteDiscoveryMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetRemoteDiscoveryMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetRemoteDiscoveryMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetRemoteDiscoveryMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetRemoteDiscoveryMode, SOAP_TYPE__tds__GetRemoteDiscoveryMode, sizeof(_tds__GetRemoteDiscoveryMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__GetRemoteDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetRemoteDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetRemoteDiscoveryMode *p; - size_t k = sizeof(_tds__GetRemoteDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetRemoteDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetRemoteDiscoveryMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetRemoteDiscoveryMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetRemoteDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetRemoteDiscoveryMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetRemoteDiscoveryMode(soap, tag ? tag : "tds:GetRemoteDiscoveryMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetRemoteDiscoveryMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetRemoteDiscoveryMode(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_get__tds__GetRemoteDiscoveryMode(struct soap *soap, _tds__GetRemoteDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetRemoteDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDiscoveryModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetDiscoveryModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetDiscoveryModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDiscoveryModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDiscoveryModeResponse(struct soap *soap, const char *tag, int id, const _tds__SetDiscoveryModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDiscoveryModeResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDiscoveryModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDiscoveryModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__SetDiscoveryModeResponse(struct soap *soap, const char *tag, _tds__SetDiscoveryModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDiscoveryModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDiscoveryModeResponse, sizeof(_tds__SetDiscoveryModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDiscoveryModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDiscoveryModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetDiscoveryModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDiscoveryModeResponse, SOAP_TYPE__tds__SetDiscoveryModeResponse, sizeof(_tds__SetDiscoveryModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__SetDiscoveryModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDiscoveryModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDiscoveryModeResponse *p; - size_t k = sizeof(_tds__SetDiscoveryModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDiscoveryModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDiscoveryModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDiscoveryModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDiscoveryModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDiscoveryModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDiscoveryModeResponse(soap, tag ? tag : "tds:SetDiscoveryModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDiscoveryModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDiscoveryModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__SetDiscoveryModeResponse(struct soap *soap, _tds__SetDiscoveryModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDiscoveryModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetDiscoveryMode::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DiscoveryMode(soap, &this->_tds__SetDiscoveryMode::DiscoveryMode); -} - -void _tds__SetDiscoveryMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetDiscoveryMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetDiscoveryMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDiscoveryMode(struct soap *soap, const char *tag, int id, const _tds__SetDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetDiscoveryMode), type)) - return soap->error; - if (soap_out_tt__DiscoveryMode(soap, "tds:DiscoveryMode", -1, &a->_tds__SetDiscoveryMode::DiscoveryMode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetDiscoveryMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetDiscoveryMode(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetDiscoveryMode * SOAP_FMAC4 soap_in__tds__SetDiscoveryMode(struct soap *soap, const char *tag, _tds__SetDiscoveryMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetDiscoveryMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetDiscoveryMode, sizeof(_tds__SetDiscoveryMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetDiscoveryMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetDiscoveryMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_DiscoveryMode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DiscoveryMode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__DiscoveryMode(soap, "tds:DiscoveryMode", &a->_tds__SetDiscoveryMode::DiscoveryMode, "tt:DiscoveryMode")) - { soap_flag_DiscoveryMode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DiscoveryMode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetDiscoveryMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetDiscoveryMode, SOAP_TYPE__tds__SetDiscoveryMode, sizeof(_tds__SetDiscoveryMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__SetDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetDiscoveryMode *p; - size_t k = sizeof(_tds__SetDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetDiscoveryMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetDiscoveryMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetDiscoveryMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetDiscoveryMode(soap, tag ? tag : "tds:SetDiscoveryMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetDiscoveryMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetDiscoveryMode(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetDiscoveryMode * SOAP_FMAC4 soap_get__tds__SetDiscoveryMode(struct soap *soap, _tds__SetDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDiscoveryModeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DiscoveryMode(soap, &this->_tds__GetDiscoveryModeResponse::DiscoveryMode); -} - -void _tds__GetDiscoveryModeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetDiscoveryModeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDiscoveryModeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDiscoveryModeResponse(struct soap *soap, const char *tag, int id, const _tds__GetDiscoveryModeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDiscoveryModeResponse), type)) - return soap->error; - soap_element_result(soap, "tds:DiscoveryMode"); - if (soap_out_tt__DiscoveryMode(soap, "tds:DiscoveryMode", -1, &a->_tds__GetDiscoveryModeResponse::DiscoveryMode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDiscoveryModeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDiscoveryModeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__GetDiscoveryModeResponse(struct soap *soap, const char *tag, _tds__GetDiscoveryModeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDiscoveryModeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDiscoveryModeResponse, sizeof(_tds__GetDiscoveryModeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDiscoveryModeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDiscoveryModeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_DiscoveryMode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DiscoveryMode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__DiscoveryMode(soap, "tds:DiscoveryMode", &a->_tds__GetDiscoveryModeResponse::DiscoveryMode, "tt:DiscoveryMode")) - { soap_flag_DiscoveryMode1--; - continue; - } - } - soap_check_result(soap, "tds:DiscoveryMode"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DiscoveryMode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDiscoveryModeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDiscoveryModeResponse, SOAP_TYPE__tds__GetDiscoveryModeResponse, sizeof(_tds__GetDiscoveryModeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__GetDiscoveryModeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDiscoveryModeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDiscoveryModeResponse *p; - size_t k = sizeof(_tds__GetDiscoveryModeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDiscoveryModeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDiscoveryModeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDiscoveryModeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDiscoveryModeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDiscoveryModeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDiscoveryModeResponse(soap, tag ? tag : "tds:GetDiscoveryModeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDiscoveryModeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDiscoveryModeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__GetDiscoveryModeResponse(struct soap *soap, _tds__GetDiscoveryModeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDiscoveryModeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDiscoveryMode::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetDiscoveryMode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetDiscoveryMode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDiscoveryMode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDiscoveryMode(struct soap *soap, const char *tag, int id, const _tds__GetDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDiscoveryMode), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDiscoveryMode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDiscoveryMode(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDiscoveryMode * SOAP_FMAC4 soap_in__tds__GetDiscoveryMode(struct soap *soap, const char *tag, _tds__GetDiscoveryMode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDiscoveryMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDiscoveryMode, sizeof(_tds__GetDiscoveryMode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDiscoveryMode) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDiscoveryMode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDiscoveryMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDiscoveryMode, SOAP_TYPE__tds__GetDiscoveryMode, sizeof(_tds__GetDiscoveryMode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__GetDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDiscoveryMode *p; - size_t k = sizeof(_tds__GetDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDiscoveryMode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDiscoveryMode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDiscoveryMode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDiscoveryMode(soap, tag ? tag : "tds:GetDiscoveryMode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDiscoveryMode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDiscoveryMode(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDiscoveryMode * SOAP_FMAC4 soap_get__tds__GetDiscoveryMode(struct soap *soap, _tds__GetDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__RemoveScopesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__RemoveScopesResponse::ScopeItem); -} - -void _tds__RemoveScopesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__RemoveScopesResponse::ScopeItem); -#endif -} - -int _tds__RemoveScopesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__RemoveScopesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveScopesResponse(struct soap *soap, const char *tag, int id, const _tds__RemoveScopesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__RemoveScopesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:ScopeItem"); - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tds:ScopeItem", -1, &a->_tds__RemoveScopesResponse::ScopeItem, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__RemoveScopesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__RemoveScopesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__RemoveScopesResponse * SOAP_FMAC4 soap_in__tds__RemoveScopesResponse(struct soap *soap, const char *tag, _tds__RemoveScopesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__RemoveScopesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__RemoveScopesResponse, sizeof(_tds__RemoveScopesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__RemoveScopesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__RemoveScopesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tds:ScopeItem", &a->_tds__RemoveScopesResponse::ScopeItem, "xsd:anyURI")) - continue; - } - soap_check_result(soap, "tds:ScopeItem"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__RemoveScopesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__RemoveScopesResponse, SOAP_TYPE__tds__RemoveScopesResponse, sizeof(_tds__RemoveScopesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__RemoveScopesResponse * SOAP_FMAC2 soap_instantiate__tds__RemoveScopesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__RemoveScopesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__RemoveScopesResponse *p; - size_t k = sizeof(_tds__RemoveScopesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__RemoveScopesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__RemoveScopesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__RemoveScopesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__RemoveScopesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__RemoveScopesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__RemoveScopesResponse(soap, tag ? tag : "tds:RemoveScopesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__RemoveScopesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__RemoveScopesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__RemoveScopesResponse * SOAP_FMAC4 soap_get__tds__RemoveScopesResponse(struct soap *soap, _tds__RemoveScopesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__RemoveScopesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__RemoveScopes::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__RemoveScopes::ScopeItem); -} - -void _tds__RemoveScopes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__RemoveScopes::ScopeItem); -#endif -} - -int _tds__RemoveScopes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__RemoveScopes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveScopes(struct soap *soap, const char *tag, int id, const _tds__RemoveScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__RemoveScopes), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tds:ScopeItem", -1, &a->_tds__RemoveScopes::ScopeItem, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__RemoveScopes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__RemoveScopes(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__RemoveScopes * SOAP_FMAC4 soap_in__tds__RemoveScopes(struct soap *soap, const char *tag, _tds__RemoveScopes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__RemoveScopes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__RemoveScopes, sizeof(_tds__RemoveScopes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__RemoveScopes) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__RemoveScopes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tds:ScopeItem", &a->_tds__RemoveScopes::ScopeItem, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__RemoveScopes::ScopeItem.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__RemoveScopes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__RemoveScopes, SOAP_TYPE__tds__RemoveScopes, sizeof(_tds__RemoveScopes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__RemoveScopes * SOAP_FMAC2 soap_instantiate__tds__RemoveScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__RemoveScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__RemoveScopes *p; - size_t k = sizeof(_tds__RemoveScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__RemoveScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__RemoveScopes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__RemoveScopes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__RemoveScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__RemoveScopes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__RemoveScopes(soap, tag ? tag : "tds:RemoveScopes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__RemoveScopes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__RemoveScopes(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__RemoveScopes * SOAP_FMAC4 soap_get__tds__RemoveScopes(struct soap *soap, _tds__RemoveScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__RemoveScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__AddScopesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__AddScopesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__AddScopesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__AddScopesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddScopesResponse(struct soap *soap, const char *tag, int id, const _tds__AddScopesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__AddScopesResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__AddScopesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__AddScopesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__AddScopesResponse * SOAP_FMAC4 soap_in__tds__AddScopesResponse(struct soap *soap, const char *tag, _tds__AddScopesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__AddScopesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__AddScopesResponse, sizeof(_tds__AddScopesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__AddScopesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__AddScopesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__AddScopesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__AddScopesResponse, SOAP_TYPE__tds__AddScopesResponse, sizeof(_tds__AddScopesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__AddScopesResponse * SOAP_FMAC2 soap_instantiate__tds__AddScopesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__AddScopesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__AddScopesResponse *p; - size_t k = sizeof(_tds__AddScopesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__AddScopesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__AddScopesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__AddScopesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__AddScopesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__AddScopesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__AddScopesResponse(soap, tag ? tag : "tds:AddScopesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__AddScopesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__AddScopesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__AddScopesResponse * SOAP_FMAC4 soap_get__tds__AddScopesResponse(struct soap *soap, _tds__AddScopesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__AddScopesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__AddScopes::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__AddScopes::ScopeItem); -} - -void _tds__AddScopes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__AddScopes::ScopeItem); -#endif -} - -int _tds__AddScopes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__AddScopes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddScopes(struct soap *soap, const char *tag, int id, const _tds__AddScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__AddScopes), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tds:ScopeItem", -1, &a->_tds__AddScopes::ScopeItem, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__AddScopes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__AddScopes(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__AddScopes * SOAP_FMAC4 soap_in__tds__AddScopes(struct soap *soap, const char *tag, _tds__AddScopes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__AddScopes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__AddScopes, sizeof(_tds__AddScopes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__AddScopes) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__AddScopes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tds:ScopeItem", &a->_tds__AddScopes::ScopeItem, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__AddScopes::ScopeItem.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__AddScopes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__AddScopes, SOAP_TYPE__tds__AddScopes, sizeof(_tds__AddScopes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__AddScopes * SOAP_FMAC2 soap_instantiate__tds__AddScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__AddScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__AddScopes *p; - size_t k = sizeof(_tds__AddScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__AddScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__AddScopes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__AddScopes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__AddScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__AddScopes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__AddScopes(soap, tag ? tag : "tds:AddScopes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__AddScopes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__AddScopes(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__AddScopes * SOAP_FMAC4 soap_get__tds__AddScopes(struct soap *soap, _tds__AddScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__AddScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetScopesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetScopesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetScopesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetScopesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetScopesResponse(struct soap *soap, const char *tag, int id, const _tds__SetScopesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetScopesResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetScopesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetScopesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetScopesResponse * SOAP_FMAC4 soap_in__tds__SetScopesResponse(struct soap *soap, const char *tag, _tds__SetScopesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetScopesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetScopesResponse, sizeof(_tds__SetScopesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetScopesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetScopesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetScopesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetScopesResponse, SOAP_TYPE__tds__SetScopesResponse, sizeof(_tds__SetScopesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetScopesResponse * SOAP_FMAC2 soap_instantiate__tds__SetScopesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetScopesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetScopesResponse *p; - size_t k = sizeof(_tds__SetScopesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetScopesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetScopesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetScopesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetScopesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetScopesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetScopesResponse(soap, tag ? tag : "tds:SetScopesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetScopesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetScopesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetScopesResponse * SOAP_FMAC4 soap_get__tds__SetScopesResponse(struct soap *soap, _tds__SetScopesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetScopesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetScopes::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__SetScopes::Scopes); -} - -void _tds__SetScopes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tds__SetScopes::Scopes); -#endif -} - -int _tds__SetScopes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetScopes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetScopes(struct soap *soap, const char *tag, int id, const _tds__SetScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetScopes), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tds:Scopes", -1, &a->_tds__SetScopes::Scopes, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetScopes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetScopes(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetScopes * SOAP_FMAC4 soap_in__tds__SetScopes(struct soap *soap, const char *tag, _tds__SetScopes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetScopes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetScopes, sizeof(_tds__SetScopes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetScopes) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetScopes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tds:Scopes", &a->_tds__SetScopes::Scopes, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__SetScopes::Scopes.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetScopes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetScopes, SOAP_TYPE__tds__SetScopes, sizeof(_tds__SetScopes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetScopes * SOAP_FMAC2 soap_instantiate__tds__SetScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetScopes *p; - size_t k = sizeof(_tds__SetScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetScopes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetScopes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetScopes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetScopes(soap, tag ? tag : "tds:SetScopes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetScopes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetScopes(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetScopes * SOAP_FMAC4 soap_get__tds__SetScopes(struct soap *soap, _tds__SetScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetScopesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Scope(soap, &this->_tds__GetScopesResponse::Scopes); -} - -void _tds__GetScopesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Scope(soap, &this->_tds__GetScopesResponse::Scopes); -#endif -} - -int _tds__GetScopesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetScopesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetScopesResponse(struct soap *soap, const char *tag, int id, const _tds__GetScopesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetScopesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Scopes"); - if (soap_out_std__vectorTemplateOfPointerTott__Scope(soap, "tds:Scopes", -1, &a->_tds__GetScopesResponse::Scopes, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetScopesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetScopesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetScopesResponse * SOAP_FMAC4 soap_in__tds__GetScopesResponse(struct soap *soap, const char *tag, _tds__GetScopesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetScopesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetScopesResponse, sizeof(_tds__GetScopesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetScopesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetScopesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Scope(soap, "tds:Scopes", &a->_tds__GetScopesResponse::Scopes, "tt:Scope")) - continue; - } - soap_check_result(soap, "tds:Scopes"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__GetScopesResponse::Scopes.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetScopesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetScopesResponse, SOAP_TYPE__tds__GetScopesResponse, sizeof(_tds__GetScopesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetScopesResponse * SOAP_FMAC2 soap_instantiate__tds__GetScopesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetScopesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetScopesResponse *p; - size_t k = sizeof(_tds__GetScopesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetScopesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetScopesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetScopesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetScopesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetScopesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetScopesResponse(soap, tag ? tag : "tds:GetScopesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetScopesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetScopesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetScopesResponse * SOAP_FMAC4 soap_get__tds__GetScopesResponse(struct soap *soap, _tds__GetScopesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetScopesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetScopes::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetScopes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetScopes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetScopes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetScopes(struct soap *soap, const char *tag, int id, const _tds__GetScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetScopes), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetScopes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetScopes(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetScopes * SOAP_FMAC4 soap_in__tds__GetScopes(struct soap *soap, const char *tag, _tds__GetScopes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetScopes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetScopes, sizeof(_tds__GetScopes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetScopes) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetScopes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetScopes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetScopes, SOAP_TYPE__tds__GetScopes, sizeof(_tds__GetScopes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetScopes * SOAP_FMAC2 soap_instantiate__tds__GetScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetScopes *p; - size_t k = sizeof(_tds__GetScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetScopes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetScopes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetScopes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetScopes(soap, tag ? tag : "tds:GetScopes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetScopes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetScopes(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetScopes * SOAP_FMAC4 soap_get__tds__GetScopes(struct soap *soap, _tds__GetScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemLogResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetSystemLogResponse::SystemLog = NULL; -} - -void _tds__GetSystemLogResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SystemLog(soap, &this->_tds__GetSystemLogResponse::SystemLog); -#endif -} - -int _tds__GetSystemLogResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemLogResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemLogResponse(struct soap *soap, const char *tag, int id, const _tds__GetSystemLogResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemLogResponse), type)) - return soap->error; - if (a->SystemLog) - soap_element_result(soap, "tds:SystemLog"); - if (!a->_tds__GetSystemLogResponse::SystemLog) - { if (soap_element_empty(soap, "tds:SystemLog", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SystemLog(soap, "tds:SystemLog", -1, &a->_tds__GetSystemLogResponse::SystemLog, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemLogResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemLogResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemLogResponse * SOAP_FMAC4 soap_in__tds__GetSystemLogResponse(struct soap *soap, const char *tag, _tds__GetSystemLogResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemLogResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemLogResponse, sizeof(_tds__GetSystemLogResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemLogResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemLogResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SystemLog1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SystemLog1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SystemLog(soap, "tds:SystemLog", &a->_tds__GetSystemLogResponse::SystemLog, "tt:SystemLog")) - { soap_flag_SystemLog1--; - continue; - } - } - soap_check_result(soap, "tds:SystemLog"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetSystemLogResponse::SystemLog)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetSystemLogResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemLogResponse, SOAP_TYPE__tds__GetSystemLogResponse, sizeof(_tds__GetSystemLogResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemLogResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemLogResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemLogResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemLogResponse *p; - size_t k = sizeof(_tds__GetSystemLogResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemLogResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemLogResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemLogResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemLogResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemLogResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemLogResponse(soap, tag ? tag : "tds:GetSystemLogResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemLogResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemLogResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemLogResponse * SOAP_FMAC4 soap_get__tds__GetSystemLogResponse(struct soap *soap, _tds__GetSystemLogResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemLogResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemLog::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SystemLogType(soap, &this->_tds__GetSystemLog::LogType); -} - -void _tds__GetSystemLog::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetSystemLog::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemLog(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemLog(struct soap *soap, const char *tag, int id, const _tds__GetSystemLog *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemLog), type)) - return soap->error; - if (soap_out_tt__SystemLogType(soap, "tds:LogType", -1, &a->_tds__GetSystemLog::LogType, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemLog::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemLog(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemLog * SOAP_FMAC4 soap_in__tds__GetSystemLog(struct soap *soap, const char *tag, _tds__GetSystemLog *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemLog*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemLog, sizeof(_tds__GetSystemLog), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemLog) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemLog *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_LogType1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_LogType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SystemLogType(soap, "tds:LogType", &a->_tds__GetSystemLog::LogType, "tt:SystemLogType")) - { soap_flag_LogType1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_LogType1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetSystemLog *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemLog, SOAP_TYPE__tds__GetSystemLog, sizeof(_tds__GetSystemLog), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemLog * SOAP_FMAC2 soap_instantiate__tds__GetSystemLog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemLog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemLog *p; - size_t k = sizeof(_tds__GetSystemLog); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemLog, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemLog); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemLog, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemLog location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemLog::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemLog(soap, tag ? tag : "tds:GetSystemLog", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemLog::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemLog(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemLog * SOAP_FMAC4 soap_get__tds__GetSystemLog(struct soap *soap, _tds__GetSystemLog *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemLog(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemSupportInformationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetSystemSupportInformationResponse::SupportInformation = NULL; -} - -void _tds__GetSystemSupportInformationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SupportInformation(soap, &this->_tds__GetSystemSupportInformationResponse::SupportInformation); -#endif -} - -int _tds__GetSystemSupportInformationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemSupportInformationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemSupportInformationResponse(struct soap *soap, const char *tag, int id, const _tds__GetSystemSupportInformationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemSupportInformationResponse), type)) - return soap->error; - if (a->SupportInformation) - soap_element_result(soap, "tds:SupportInformation"); - if (!a->_tds__GetSystemSupportInformationResponse::SupportInformation) - { if (soap_element_empty(soap, "tds:SupportInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SupportInformation(soap, "tds:SupportInformation", -1, &a->_tds__GetSystemSupportInformationResponse::SupportInformation, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemSupportInformationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemSupportInformationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemSupportInformationResponse * SOAP_FMAC4 soap_in__tds__GetSystemSupportInformationResponse(struct soap *soap, const char *tag, _tds__GetSystemSupportInformationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemSupportInformationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemSupportInformationResponse, sizeof(_tds__GetSystemSupportInformationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemSupportInformationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemSupportInformationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SupportInformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SupportInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SupportInformation(soap, "tds:SupportInformation", &a->_tds__GetSystemSupportInformationResponse::SupportInformation, "tt:SupportInformation")) - { soap_flag_SupportInformation1--; - continue; - } - } - soap_check_result(soap, "tds:SupportInformation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetSystemSupportInformationResponse::SupportInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetSystemSupportInformationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemSupportInformationResponse, SOAP_TYPE__tds__GetSystemSupportInformationResponse, sizeof(_tds__GetSystemSupportInformationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemSupportInformationResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemSupportInformationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemSupportInformationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemSupportInformationResponse *p; - size_t k = sizeof(_tds__GetSystemSupportInformationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemSupportInformationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemSupportInformationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemSupportInformationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemSupportInformationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemSupportInformationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemSupportInformationResponse(soap, tag ? tag : "tds:GetSystemSupportInformationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemSupportInformationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemSupportInformationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemSupportInformationResponse * SOAP_FMAC4 soap_get__tds__GetSystemSupportInformationResponse(struct soap *soap, _tds__GetSystemSupportInformationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemSupportInformationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemSupportInformation::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetSystemSupportInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetSystemSupportInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemSupportInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemSupportInformation(struct soap *soap, const char *tag, int id, const _tds__GetSystemSupportInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemSupportInformation), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemSupportInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemSupportInformation(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemSupportInformation * SOAP_FMAC4 soap_in__tds__GetSystemSupportInformation(struct soap *soap, const char *tag, _tds__GetSystemSupportInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemSupportInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemSupportInformation, sizeof(_tds__GetSystemSupportInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemSupportInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemSupportInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetSystemSupportInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemSupportInformation, SOAP_TYPE__tds__GetSystemSupportInformation, sizeof(_tds__GetSystemSupportInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemSupportInformation * SOAP_FMAC2 soap_instantiate__tds__GetSystemSupportInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemSupportInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemSupportInformation *p; - size_t k = sizeof(_tds__GetSystemSupportInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemSupportInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemSupportInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemSupportInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemSupportInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemSupportInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemSupportInformation(soap, tag ? tag : "tds:GetSystemSupportInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemSupportInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemSupportInformation(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemSupportInformation * SOAP_FMAC4 soap_get__tds__GetSystemSupportInformation(struct soap *soap, _tds__GetSystemSupportInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemSupportInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemBackupResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__BackupFile(soap, &this->_tds__GetSystemBackupResponse::BackupFiles); -} - -void _tds__GetSystemBackupResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__BackupFile(soap, &this->_tds__GetSystemBackupResponse::BackupFiles); -#endif -} - -int _tds__GetSystemBackupResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemBackupResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemBackupResponse(struct soap *soap, const char *tag, int id, const _tds__GetSystemBackupResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemBackupResponse), type)) - return soap->error; - soap_element_result(soap, "tds:BackupFiles"); - if (soap_out_std__vectorTemplateOfPointerTott__BackupFile(soap, "tds:BackupFiles", -1, &a->_tds__GetSystemBackupResponse::BackupFiles, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemBackupResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemBackupResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemBackupResponse * SOAP_FMAC4 soap_in__tds__GetSystemBackupResponse(struct soap *soap, const char *tag, _tds__GetSystemBackupResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemBackupResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemBackupResponse, sizeof(_tds__GetSystemBackupResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemBackupResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemBackupResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__BackupFile(soap, "tds:BackupFiles", &a->_tds__GetSystemBackupResponse::BackupFiles, "tt:BackupFile")) - continue; - } - soap_check_result(soap, "tds:BackupFiles"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__GetSystemBackupResponse::BackupFiles.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetSystemBackupResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemBackupResponse, SOAP_TYPE__tds__GetSystemBackupResponse, sizeof(_tds__GetSystemBackupResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemBackupResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemBackupResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemBackupResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemBackupResponse *p; - size_t k = sizeof(_tds__GetSystemBackupResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemBackupResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemBackupResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemBackupResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemBackupResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemBackupResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemBackupResponse(soap, tag ? tag : "tds:GetSystemBackupResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemBackupResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemBackupResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemBackupResponse * SOAP_FMAC4 soap_get__tds__GetSystemBackupResponse(struct soap *soap, _tds__GetSystemBackupResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemBackupResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemBackup::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetSystemBackup::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetSystemBackup::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemBackup(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemBackup(struct soap *soap, const char *tag, int id, const _tds__GetSystemBackup *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemBackup), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemBackup::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemBackup(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemBackup * SOAP_FMAC4 soap_in__tds__GetSystemBackup(struct soap *soap, const char *tag, _tds__GetSystemBackup *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemBackup*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemBackup, sizeof(_tds__GetSystemBackup), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemBackup) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemBackup *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetSystemBackup *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemBackup, SOAP_TYPE__tds__GetSystemBackup, sizeof(_tds__GetSystemBackup), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemBackup * SOAP_FMAC2 soap_instantiate__tds__GetSystemBackup(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemBackup(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemBackup *p; - size_t k = sizeof(_tds__GetSystemBackup); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemBackup, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemBackup); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemBackup, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemBackup location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemBackup::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemBackup(soap, tag ? tag : "tds:GetSystemBackup", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemBackup::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemBackup(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemBackup * SOAP_FMAC4 soap_get__tds__GetSystemBackup(struct soap *soap, _tds__GetSystemBackup *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemBackup(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__RestoreSystemResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__RestoreSystemResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__RestoreSystemResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__RestoreSystemResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RestoreSystemResponse(struct soap *soap, const char *tag, int id, const _tds__RestoreSystemResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__RestoreSystemResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__RestoreSystemResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__RestoreSystemResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__RestoreSystemResponse * SOAP_FMAC4 soap_in__tds__RestoreSystemResponse(struct soap *soap, const char *tag, _tds__RestoreSystemResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__RestoreSystemResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__RestoreSystemResponse, sizeof(_tds__RestoreSystemResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__RestoreSystemResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__RestoreSystemResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__RestoreSystemResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__RestoreSystemResponse, SOAP_TYPE__tds__RestoreSystemResponse, sizeof(_tds__RestoreSystemResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__RestoreSystemResponse * SOAP_FMAC2 soap_instantiate__tds__RestoreSystemResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__RestoreSystemResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__RestoreSystemResponse *p; - size_t k = sizeof(_tds__RestoreSystemResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__RestoreSystemResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__RestoreSystemResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__RestoreSystemResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__RestoreSystemResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__RestoreSystemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__RestoreSystemResponse(soap, tag ? tag : "tds:RestoreSystemResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__RestoreSystemResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__RestoreSystemResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__RestoreSystemResponse * SOAP_FMAC4 soap_get__tds__RestoreSystemResponse(struct soap *soap, _tds__RestoreSystemResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__RestoreSystemResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__RestoreSystem::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__BackupFile(soap, &this->_tds__RestoreSystem::BackupFiles); -} - -void _tds__RestoreSystem::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__BackupFile(soap, &this->_tds__RestoreSystem::BackupFiles); -#endif -} - -int _tds__RestoreSystem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__RestoreSystem(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RestoreSystem(struct soap *soap, const char *tag, int id, const _tds__RestoreSystem *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__RestoreSystem), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__BackupFile(soap, "tds:BackupFiles", -1, &a->_tds__RestoreSystem::BackupFiles, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__RestoreSystem::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__RestoreSystem(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__RestoreSystem * SOAP_FMAC4 soap_in__tds__RestoreSystem(struct soap *soap, const char *tag, _tds__RestoreSystem *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__RestoreSystem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__RestoreSystem, sizeof(_tds__RestoreSystem), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__RestoreSystem) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__RestoreSystem *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__BackupFile(soap, "tds:BackupFiles", &a->_tds__RestoreSystem::BackupFiles, "tt:BackupFile")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__RestoreSystem::BackupFiles.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__RestoreSystem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__RestoreSystem, SOAP_TYPE__tds__RestoreSystem, sizeof(_tds__RestoreSystem), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__RestoreSystem * SOAP_FMAC2 soap_instantiate__tds__RestoreSystem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__RestoreSystem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__RestoreSystem *p; - size_t k = sizeof(_tds__RestoreSystem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__RestoreSystem, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__RestoreSystem); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__RestoreSystem, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__RestoreSystem location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__RestoreSystem::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__RestoreSystem(soap, tag ? tag : "tds:RestoreSystem", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__RestoreSystem::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__RestoreSystem(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__RestoreSystem * SOAP_FMAC4 soap_get__tds__RestoreSystem(struct soap *soap, _tds__RestoreSystem *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__RestoreSystem(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SystemRebootResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->_tds__SystemRebootResponse::Message); -} - -void _tds__SystemRebootResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SystemRebootResponse::Message, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tds__SystemRebootResponse::Message); -#endif -} - -int _tds__SystemRebootResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SystemRebootResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SystemRebootResponse(struct soap *soap, const char *tag, int id, const _tds__SystemRebootResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SystemRebootResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Message"); - if (soap_out_std__string(soap, "tds:Message", -1, &a->_tds__SystemRebootResponse::Message, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SystemRebootResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SystemRebootResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SystemRebootResponse * SOAP_FMAC4 soap_in__tds__SystemRebootResponse(struct soap *soap, const char *tag, _tds__SystemRebootResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SystemRebootResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SystemRebootResponse, sizeof(_tds__SystemRebootResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SystemRebootResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SystemRebootResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Message1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Message1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:Message", &a->_tds__SystemRebootResponse::Message, "xsd:string")) - { soap_flag_Message1--; - continue; - } - } - soap_check_result(soap, "tds:Message"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Message1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SystemRebootResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SystemRebootResponse, SOAP_TYPE__tds__SystemRebootResponse, sizeof(_tds__SystemRebootResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SystemRebootResponse * SOAP_FMAC2 soap_instantiate__tds__SystemRebootResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SystemRebootResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SystemRebootResponse *p; - size_t k = sizeof(_tds__SystemRebootResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SystemRebootResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SystemRebootResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SystemRebootResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SystemRebootResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SystemRebootResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SystemRebootResponse(soap, tag ? tag : "tds:SystemRebootResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SystemRebootResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SystemRebootResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SystemRebootResponse * SOAP_FMAC4 soap_get__tds__SystemRebootResponse(struct soap *soap, _tds__SystemRebootResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SystemRebootResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SystemReboot::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SystemReboot::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SystemReboot::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SystemReboot(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SystemReboot(struct soap *soap, const char *tag, int id, const _tds__SystemReboot *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SystemReboot), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SystemReboot::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SystemReboot(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SystemReboot * SOAP_FMAC4 soap_in__tds__SystemReboot(struct soap *soap, const char *tag, _tds__SystemReboot *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SystemReboot*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SystemReboot, sizeof(_tds__SystemReboot), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SystemReboot) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SystemReboot *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SystemReboot *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SystemReboot, SOAP_TYPE__tds__SystemReboot, sizeof(_tds__SystemReboot), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SystemReboot * SOAP_FMAC2 soap_instantiate__tds__SystemReboot(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SystemReboot(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SystemReboot *p; - size_t k = sizeof(_tds__SystemReboot); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SystemReboot, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SystemReboot); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SystemReboot, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SystemReboot location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SystemReboot::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SystemReboot(soap, tag ? tag : "tds:SystemReboot", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SystemReboot::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SystemReboot(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SystemReboot * SOAP_FMAC4 soap_get__tds__SystemReboot(struct soap *soap, _tds__SystemReboot *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SystemReboot(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__UpgradeSystemFirmwareResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__UpgradeSystemFirmwareResponse::Message = NULL; -} - -void _tds__UpgradeSystemFirmwareResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTostd__string(soap, &this->_tds__UpgradeSystemFirmwareResponse::Message); -#endif -} - -int _tds__UpgradeSystemFirmwareResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__UpgradeSystemFirmwareResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__UpgradeSystemFirmwareResponse(struct soap *soap, const char *tag, int id, const _tds__UpgradeSystemFirmwareResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__UpgradeSystemFirmwareResponse), type)) - return soap->error; - if (a->Message) - soap_element_result(soap, "tds:Message"); - if (soap_out_PointerTostd__string(soap, "tds:Message", -1, &a->_tds__UpgradeSystemFirmwareResponse::Message, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__UpgradeSystemFirmwareResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__UpgradeSystemFirmwareResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__UpgradeSystemFirmwareResponse * SOAP_FMAC4 soap_in__tds__UpgradeSystemFirmwareResponse(struct soap *soap, const char *tag, _tds__UpgradeSystemFirmwareResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__UpgradeSystemFirmwareResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__UpgradeSystemFirmwareResponse, sizeof(_tds__UpgradeSystemFirmwareResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__UpgradeSystemFirmwareResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__UpgradeSystemFirmwareResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Message1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Message1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tds:Message", &a->_tds__UpgradeSystemFirmwareResponse::Message, "xsd:string")) - { soap_flag_Message1--; - continue; - } - } - soap_check_result(soap, "tds:Message"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__UpgradeSystemFirmwareResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__UpgradeSystemFirmwareResponse, SOAP_TYPE__tds__UpgradeSystemFirmwareResponse, sizeof(_tds__UpgradeSystemFirmwareResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__UpgradeSystemFirmwareResponse * SOAP_FMAC2 soap_instantiate__tds__UpgradeSystemFirmwareResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__UpgradeSystemFirmwareResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__UpgradeSystemFirmwareResponse *p; - size_t k = sizeof(_tds__UpgradeSystemFirmwareResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__UpgradeSystemFirmwareResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__UpgradeSystemFirmwareResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__UpgradeSystemFirmwareResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__UpgradeSystemFirmwareResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__UpgradeSystemFirmwareResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__UpgradeSystemFirmwareResponse(soap, tag ? tag : "tds:UpgradeSystemFirmwareResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__UpgradeSystemFirmwareResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__UpgradeSystemFirmwareResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__UpgradeSystemFirmwareResponse * SOAP_FMAC4 soap_get__tds__UpgradeSystemFirmwareResponse(struct soap *soap, _tds__UpgradeSystemFirmwareResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__UpgradeSystemFirmwareResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__UpgradeSystemFirmware::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__UpgradeSystemFirmware::Firmware = NULL; -} - -void _tds__UpgradeSystemFirmware::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AttachmentData(soap, &this->_tds__UpgradeSystemFirmware::Firmware); -#endif -} - -int _tds__UpgradeSystemFirmware::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__UpgradeSystemFirmware(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__UpgradeSystemFirmware(struct soap *soap, const char *tag, int id, const _tds__UpgradeSystemFirmware *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__UpgradeSystemFirmware), type)) - return soap->error; - if (!a->_tds__UpgradeSystemFirmware::Firmware) - { if (soap_element_empty(soap, "tds:Firmware", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AttachmentData(soap, "tds:Firmware", -1, &a->_tds__UpgradeSystemFirmware::Firmware, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__UpgradeSystemFirmware::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__UpgradeSystemFirmware(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_in__tds__UpgradeSystemFirmware(struct soap *soap, const char *tag, _tds__UpgradeSystemFirmware *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__UpgradeSystemFirmware*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__UpgradeSystemFirmware, sizeof(_tds__UpgradeSystemFirmware), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__UpgradeSystemFirmware) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__UpgradeSystemFirmware *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Firmware1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Firmware1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AttachmentData(soap, "tds:Firmware", &a->_tds__UpgradeSystemFirmware::Firmware, "tt:AttachmentData")) - { soap_flag_Firmware1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__UpgradeSystemFirmware::Firmware)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__UpgradeSystemFirmware *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__UpgradeSystemFirmware, SOAP_TYPE__tds__UpgradeSystemFirmware, sizeof(_tds__UpgradeSystemFirmware), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__UpgradeSystemFirmware * SOAP_FMAC2 soap_instantiate__tds__UpgradeSystemFirmware(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__UpgradeSystemFirmware(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__UpgradeSystemFirmware *p; - size_t k = sizeof(_tds__UpgradeSystemFirmware); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__UpgradeSystemFirmware, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__UpgradeSystemFirmware); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__UpgradeSystemFirmware, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__UpgradeSystemFirmware location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__UpgradeSystemFirmware::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__UpgradeSystemFirmware(soap, tag ? tag : "tds:UpgradeSystemFirmware", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__UpgradeSystemFirmware::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__UpgradeSystemFirmware(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_get__tds__UpgradeSystemFirmware(struct soap *soap, _tds__UpgradeSystemFirmware *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__UpgradeSystemFirmware(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetSystemFactoryDefaultResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetSystemFactoryDefaultResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetSystemFactoryDefaultResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetSystemFactoryDefaultResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemFactoryDefaultResponse(struct soap *soap, const char *tag, int id, const _tds__SetSystemFactoryDefaultResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetSystemFactoryDefaultResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetSystemFactoryDefaultResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetSystemFactoryDefaultResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetSystemFactoryDefaultResponse * SOAP_FMAC4 soap_in__tds__SetSystemFactoryDefaultResponse(struct soap *soap, const char *tag, _tds__SetSystemFactoryDefaultResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetSystemFactoryDefaultResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetSystemFactoryDefaultResponse, sizeof(_tds__SetSystemFactoryDefaultResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetSystemFactoryDefaultResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetSystemFactoryDefaultResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetSystemFactoryDefaultResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetSystemFactoryDefaultResponse, SOAP_TYPE__tds__SetSystemFactoryDefaultResponse, sizeof(_tds__SetSystemFactoryDefaultResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetSystemFactoryDefaultResponse * SOAP_FMAC2 soap_instantiate__tds__SetSystemFactoryDefaultResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetSystemFactoryDefaultResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetSystemFactoryDefaultResponse *p; - size_t k = sizeof(_tds__SetSystemFactoryDefaultResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetSystemFactoryDefaultResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetSystemFactoryDefaultResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetSystemFactoryDefaultResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetSystemFactoryDefaultResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetSystemFactoryDefaultResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetSystemFactoryDefaultResponse(soap, tag ? tag : "tds:SetSystemFactoryDefaultResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetSystemFactoryDefaultResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetSystemFactoryDefaultResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetSystemFactoryDefaultResponse * SOAP_FMAC4 soap_get__tds__SetSystemFactoryDefaultResponse(struct soap *soap, _tds__SetSystemFactoryDefaultResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetSystemFactoryDefaultResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetSystemFactoryDefault::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__FactoryDefaultType(soap, &this->_tds__SetSystemFactoryDefault::FactoryDefault); -} - -void _tds__SetSystemFactoryDefault::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetSystemFactoryDefault::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetSystemFactoryDefault(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemFactoryDefault(struct soap *soap, const char *tag, int id, const _tds__SetSystemFactoryDefault *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetSystemFactoryDefault), type)) - return soap->error; - if (soap_out_tt__FactoryDefaultType(soap, "tds:FactoryDefault", -1, &a->_tds__SetSystemFactoryDefault::FactoryDefault, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetSystemFactoryDefault::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetSystemFactoryDefault(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_in__tds__SetSystemFactoryDefault(struct soap *soap, const char *tag, _tds__SetSystemFactoryDefault *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetSystemFactoryDefault*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetSystemFactoryDefault, sizeof(_tds__SetSystemFactoryDefault), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetSystemFactoryDefault) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetSystemFactoryDefault *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_FactoryDefault1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FactoryDefault1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__FactoryDefaultType(soap, "tds:FactoryDefault", &a->_tds__SetSystemFactoryDefault::FactoryDefault, "tt:FactoryDefaultType")) - { soap_flag_FactoryDefault1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FactoryDefault1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetSystemFactoryDefault *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetSystemFactoryDefault, SOAP_TYPE__tds__SetSystemFactoryDefault, sizeof(_tds__SetSystemFactoryDefault), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetSystemFactoryDefault * SOAP_FMAC2 soap_instantiate__tds__SetSystemFactoryDefault(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetSystemFactoryDefault(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetSystemFactoryDefault *p; - size_t k = sizeof(_tds__SetSystemFactoryDefault); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetSystemFactoryDefault, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetSystemFactoryDefault); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetSystemFactoryDefault, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetSystemFactoryDefault location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetSystemFactoryDefault::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetSystemFactoryDefault(soap, tag ? tag : "tds:SetSystemFactoryDefault", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetSystemFactoryDefault::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetSystemFactoryDefault(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_get__tds__SetSystemFactoryDefault(struct soap *soap, _tds__SetSystemFactoryDefault *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetSystemFactoryDefault(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemDateAndTimeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime = NULL; -} - -void _tds__GetSystemDateAndTimeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SystemDateTime(soap, &this->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime); -#endif -} - -int _tds__GetSystemDateAndTimeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemDateAndTimeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemDateAndTimeResponse(struct soap *soap, const char *tag, int id, const _tds__GetSystemDateAndTimeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemDateAndTimeResponse), type)) - return soap->error; - if (a->SystemDateAndTime) - soap_element_result(soap, "tds:SystemDateAndTime"); - if (!a->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime) - { if (soap_element_empty(soap, "tds:SystemDateAndTime", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SystemDateTime(soap, "tds:SystemDateAndTime", -1, &a->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemDateAndTimeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemDateAndTimeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemDateAndTimeResponse * SOAP_FMAC4 soap_in__tds__GetSystemDateAndTimeResponse(struct soap *soap, const char *tag, _tds__GetSystemDateAndTimeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemDateAndTimeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemDateAndTimeResponse, sizeof(_tds__GetSystemDateAndTimeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemDateAndTimeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemDateAndTimeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SystemDateAndTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SystemDateAndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SystemDateTime(soap, "tds:SystemDateAndTime", &a->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime, "tt:SystemDateTime")) - { soap_flag_SystemDateAndTime1--; - continue; - } - } - soap_check_result(soap, "tds:SystemDateAndTime"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetSystemDateAndTimeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemDateAndTimeResponse, SOAP_TYPE__tds__GetSystemDateAndTimeResponse, sizeof(_tds__GetSystemDateAndTimeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemDateAndTimeResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemDateAndTimeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemDateAndTimeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemDateAndTimeResponse *p; - size_t k = sizeof(_tds__GetSystemDateAndTimeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemDateAndTimeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemDateAndTimeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemDateAndTimeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemDateAndTimeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemDateAndTimeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemDateAndTimeResponse(soap, tag ? tag : "tds:GetSystemDateAndTimeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemDateAndTimeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemDateAndTimeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemDateAndTimeResponse * SOAP_FMAC4 soap_get__tds__GetSystemDateAndTimeResponse(struct soap *soap, _tds__GetSystemDateAndTimeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemDateAndTimeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetSystemDateAndTime::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetSystemDateAndTime::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetSystemDateAndTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetSystemDateAndTime(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemDateAndTime(struct soap *soap, const char *tag, int id, const _tds__GetSystemDateAndTime *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetSystemDateAndTime), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetSystemDateAndTime::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetSystemDateAndTime(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetSystemDateAndTime * SOAP_FMAC4 soap_in__tds__GetSystemDateAndTime(struct soap *soap, const char *tag, _tds__GetSystemDateAndTime *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetSystemDateAndTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetSystemDateAndTime, sizeof(_tds__GetSystemDateAndTime), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetSystemDateAndTime) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetSystemDateAndTime *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetSystemDateAndTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetSystemDateAndTime, SOAP_TYPE__tds__GetSystemDateAndTime, sizeof(_tds__GetSystemDateAndTime), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetSystemDateAndTime * SOAP_FMAC2 soap_instantiate__tds__GetSystemDateAndTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetSystemDateAndTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetSystemDateAndTime *p; - size_t k = sizeof(_tds__GetSystemDateAndTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetSystemDateAndTime, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetSystemDateAndTime); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetSystemDateAndTime, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetSystemDateAndTime location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetSystemDateAndTime::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetSystemDateAndTime(soap, tag ? tag : "tds:GetSystemDateAndTime", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetSystemDateAndTime::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetSystemDateAndTime(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetSystemDateAndTime * SOAP_FMAC4 soap_get__tds__GetSystemDateAndTime(struct soap *soap, _tds__GetSystemDateAndTime *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetSystemDateAndTime(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetSystemDateAndTimeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__SetSystemDateAndTimeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__SetSystemDateAndTimeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetSystemDateAndTimeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemDateAndTimeResponse(struct soap *soap, const char *tag, int id, const _tds__SetSystemDateAndTimeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetSystemDateAndTimeResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetSystemDateAndTimeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetSystemDateAndTimeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetSystemDateAndTimeResponse * SOAP_FMAC4 soap_in__tds__SetSystemDateAndTimeResponse(struct soap *soap, const char *tag, _tds__SetSystemDateAndTimeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetSystemDateAndTimeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetSystemDateAndTimeResponse, sizeof(_tds__SetSystemDateAndTimeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetSystemDateAndTimeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetSystemDateAndTimeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__SetSystemDateAndTimeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetSystemDateAndTimeResponse, SOAP_TYPE__tds__SetSystemDateAndTimeResponse, sizeof(_tds__SetSystemDateAndTimeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetSystemDateAndTimeResponse * SOAP_FMAC2 soap_instantiate__tds__SetSystemDateAndTimeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetSystemDateAndTimeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetSystemDateAndTimeResponse *p; - size_t k = sizeof(_tds__SetSystemDateAndTimeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetSystemDateAndTimeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetSystemDateAndTimeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetSystemDateAndTimeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetSystemDateAndTimeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetSystemDateAndTimeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetSystemDateAndTimeResponse(soap, tag ? tag : "tds:SetSystemDateAndTimeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetSystemDateAndTimeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetSystemDateAndTimeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetSystemDateAndTimeResponse * SOAP_FMAC4 soap_get__tds__SetSystemDateAndTimeResponse(struct soap *soap, _tds__SetSystemDateAndTimeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetSystemDateAndTimeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__SetSystemDateAndTime::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SetDateTimeType(soap, &this->_tds__SetSystemDateAndTime::DateTimeType); - soap_default_bool(soap, &this->_tds__SetSystemDateAndTime::DaylightSavings); - this->_tds__SetSystemDateAndTime::TimeZone = NULL; - this->_tds__SetSystemDateAndTime::UTCDateTime = NULL; -} - -void _tds__SetSystemDateAndTime::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__SetSystemDateAndTime::DaylightSavings, SOAP_TYPE_bool); - soap_serialize_PointerTott__TimeZone(soap, &this->_tds__SetSystemDateAndTime::TimeZone); - soap_serialize_PointerTott__DateTime(soap, &this->_tds__SetSystemDateAndTime::UTCDateTime); -#endif -} - -int _tds__SetSystemDateAndTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__SetSystemDateAndTime(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemDateAndTime(struct soap *soap, const char *tag, int id, const _tds__SetSystemDateAndTime *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__SetSystemDateAndTime), type)) - return soap->error; - if (soap_out_tt__SetDateTimeType(soap, "tds:DateTimeType", -1, &a->_tds__SetSystemDateAndTime::DateTimeType, "")) - return soap->error; - if (soap_out_bool(soap, "tds:DaylightSavings", -1, &a->_tds__SetSystemDateAndTime::DaylightSavings, "")) - return soap->error; - if (soap_out_PointerTott__TimeZone(soap, "tds:TimeZone", -1, &a->_tds__SetSystemDateAndTime::TimeZone, "")) - return soap->error; - if (soap_out_PointerTott__DateTime(soap, "tds:UTCDateTime", -1, &a->_tds__SetSystemDateAndTime::UTCDateTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__SetSystemDateAndTime::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__SetSystemDateAndTime(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__SetSystemDateAndTime * SOAP_FMAC4 soap_in__tds__SetSystemDateAndTime(struct soap *soap, const char *tag, _tds__SetSystemDateAndTime *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__SetSystemDateAndTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__SetSystemDateAndTime, sizeof(_tds__SetSystemDateAndTime), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__SetSystemDateAndTime) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__SetSystemDateAndTime *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_DateTimeType1 = 1; - size_t soap_flag_DaylightSavings1 = 1; - size_t soap_flag_TimeZone1 = 1; - size_t soap_flag_UTCDateTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DateTimeType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SetDateTimeType(soap, "tds:DateTimeType", &a->_tds__SetSystemDateAndTime::DateTimeType, "tt:SetDateTimeType")) - { soap_flag_DateTimeType1--; - continue; - } - } - if (soap_flag_DaylightSavings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:DaylightSavings", &a->_tds__SetSystemDateAndTime::DaylightSavings, "xsd:boolean")) - { soap_flag_DaylightSavings1--; - continue; - } - } - if (soap_flag_TimeZone1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TimeZone(soap, "tds:TimeZone", &a->_tds__SetSystemDateAndTime::TimeZone, "tt:TimeZone")) - { soap_flag_TimeZone1--; - continue; - } - } - if (soap_flag_UTCDateTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DateTime(soap, "tds:UTCDateTime", &a->_tds__SetSystemDateAndTime::UTCDateTime, "tt:DateTime")) - { soap_flag_UTCDateTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DateTimeType1 > 0 || soap_flag_DaylightSavings1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__SetSystemDateAndTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__SetSystemDateAndTime, SOAP_TYPE__tds__SetSystemDateAndTime, sizeof(_tds__SetSystemDateAndTime), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__SetSystemDateAndTime * SOAP_FMAC2 soap_instantiate__tds__SetSystemDateAndTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__SetSystemDateAndTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__SetSystemDateAndTime *p; - size_t k = sizeof(_tds__SetSystemDateAndTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__SetSystemDateAndTime, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__SetSystemDateAndTime); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__SetSystemDateAndTime, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__SetSystemDateAndTime location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__SetSystemDateAndTime::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__SetSystemDateAndTime(soap, tag ? tag : "tds:SetSystemDateAndTime", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__SetSystemDateAndTime::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__SetSystemDateAndTime(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__SetSystemDateAndTime * SOAP_FMAC4 soap_get__tds__SetSystemDateAndTime(struct soap *soap, _tds__SetSystemDateAndTime *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__SetSystemDateAndTime(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDeviceInformationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->_tds__GetDeviceInformationResponse::Manufacturer); - soap_default_std__string(soap, &this->_tds__GetDeviceInformationResponse::Model); - soap_default_std__string(soap, &this->_tds__GetDeviceInformationResponse::FirmwareVersion); - soap_default_std__string(soap, &this->_tds__GetDeviceInformationResponse::SerialNumber); - soap_default_std__string(soap, &this->_tds__GetDeviceInformationResponse::HardwareId); -} - -void _tds__GetDeviceInformationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetDeviceInformationResponse::Manufacturer, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tds__GetDeviceInformationResponse::Manufacturer); - soap_embedded(soap, &this->_tds__GetDeviceInformationResponse::Model, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tds__GetDeviceInformationResponse::Model); - soap_embedded(soap, &this->_tds__GetDeviceInformationResponse::FirmwareVersion, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tds__GetDeviceInformationResponse::FirmwareVersion); - soap_embedded(soap, &this->_tds__GetDeviceInformationResponse::SerialNumber, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tds__GetDeviceInformationResponse::SerialNumber); - soap_embedded(soap, &this->_tds__GetDeviceInformationResponse::HardwareId, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->_tds__GetDeviceInformationResponse::HardwareId); -#endif -} - -int _tds__GetDeviceInformationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDeviceInformationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDeviceInformationResponse(struct soap *soap, const char *tag, int id, const _tds__GetDeviceInformationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDeviceInformationResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Manufacturer"); - if (soap_out_std__string(soap, "tds:Manufacturer", -1, &a->_tds__GetDeviceInformationResponse::Manufacturer, "")) - return soap->error; - if (soap_out_std__string(soap, "tds:Model", -1, &a->_tds__GetDeviceInformationResponse::Model, "")) - return soap->error; - if (soap_out_std__string(soap, "tds:FirmwareVersion", -1, &a->_tds__GetDeviceInformationResponse::FirmwareVersion, "")) - return soap->error; - if (soap_out_std__string(soap, "tds:SerialNumber", -1, &a->_tds__GetDeviceInformationResponse::SerialNumber, "")) - return soap->error; - if (soap_out_std__string(soap, "tds:HardwareId", -1, &a->_tds__GetDeviceInformationResponse::HardwareId, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDeviceInformationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDeviceInformationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDeviceInformationResponse * SOAP_FMAC4 soap_in__tds__GetDeviceInformationResponse(struct soap *soap, const char *tag, _tds__GetDeviceInformationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDeviceInformationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDeviceInformationResponse, sizeof(_tds__GetDeviceInformationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDeviceInformationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDeviceInformationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Manufacturer1 = 1; - size_t soap_flag_Model1 = 1; - size_t soap_flag_FirmwareVersion1 = 1; - size_t soap_flag_SerialNumber1 = 1; - size_t soap_flag_HardwareId1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Manufacturer1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:Manufacturer", &a->_tds__GetDeviceInformationResponse::Manufacturer, "xsd:string")) - { soap_flag_Manufacturer1--; - continue; - } - } - if (soap_flag_Model1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:Model", &a->_tds__GetDeviceInformationResponse::Model, "xsd:string")) - { soap_flag_Model1--; - continue; - } - } - if (soap_flag_FirmwareVersion1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:FirmwareVersion", &a->_tds__GetDeviceInformationResponse::FirmwareVersion, "xsd:string")) - { soap_flag_FirmwareVersion1--; - continue; - } - } - if (soap_flag_SerialNumber1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:SerialNumber", &a->_tds__GetDeviceInformationResponse::SerialNumber, "xsd:string")) - { soap_flag_SerialNumber1--; - continue; - } - } - if (soap_flag_HardwareId1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:HardwareId", &a->_tds__GetDeviceInformationResponse::HardwareId, "xsd:string")) - { soap_flag_HardwareId1--; - continue; - } - } - soap_check_result(soap, "tds:Manufacturer"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Manufacturer1 > 0 || soap_flag_Model1 > 0 || soap_flag_FirmwareVersion1 > 0 || soap_flag_SerialNumber1 > 0 || soap_flag_HardwareId1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetDeviceInformationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDeviceInformationResponse, SOAP_TYPE__tds__GetDeviceInformationResponse, sizeof(_tds__GetDeviceInformationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDeviceInformationResponse * SOAP_FMAC2 soap_instantiate__tds__GetDeviceInformationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDeviceInformationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDeviceInformationResponse *p; - size_t k = sizeof(_tds__GetDeviceInformationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDeviceInformationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDeviceInformationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDeviceInformationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDeviceInformationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDeviceInformationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDeviceInformationResponse(soap, tag ? tag : "tds:GetDeviceInformationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDeviceInformationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDeviceInformationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDeviceInformationResponse * SOAP_FMAC4 soap_get__tds__GetDeviceInformationResponse(struct soap *soap, _tds__GetDeviceInformationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDeviceInformationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetDeviceInformation::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetDeviceInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetDeviceInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetDeviceInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDeviceInformation(struct soap *soap, const char *tag, int id, const _tds__GetDeviceInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetDeviceInformation), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetDeviceInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetDeviceInformation(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetDeviceInformation * SOAP_FMAC4 soap_in__tds__GetDeviceInformation(struct soap *soap, const char *tag, _tds__GetDeviceInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetDeviceInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetDeviceInformation, sizeof(_tds__GetDeviceInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetDeviceInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetDeviceInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetDeviceInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetDeviceInformation, SOAP_TYPE__tds__GetDeviceInformation, sizeof(_tds__GetDeviceInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetDeviceInformation * SOAP_FMAC2 soap_instantiate__tds__GetDeviceInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetDeviceInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetDeviceInformation *p; - size_t k = sizeof(_tds__GetDeviceInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetDeviceInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetDeviceInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetDeviceInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetDeviceInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetDeviceInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetDeviceInformation(soap, tag ? tag : "tds:GetDeviceInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetDeviceInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetDeviceInformation(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetDeviceInformation * SOAP_FMAC4 soap_get__tds__GetDeviceInformation(struct soap *soap, _tds__GetDeviceInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetDeviceInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tds__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _tds__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotds__DeviceServiceCapabilities(soap, &this->_tds__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _tds__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tds__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tds:Capabilities"); - if (!a->_tds__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tds:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__DeviceServiceCapabilities(soap, "tds:Capabilities", -1, &a->_tds__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tds__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _tds__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetServiceCapabilitiesResponse, sizeof(_tds__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__DeviceServiceCapabilities(soap, "tds:Capabilities", &a->_tds__GetServiceCapabilitiesResponse::Capabilities, "tds:DeviceServiceCapabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tds:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tds__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetServiceCapabilitiesResponse, SOAP_TYPE__tds__GetServiceCapabilitiesResponse, sizeof(_tds__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tds__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_tds__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetServiceCapabilitiesResponse(soap, tag ? tag : "tds:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tds__GetServiceCapabilitiesResponse(struct soap *soap, _tds__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tds__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tds__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _tds__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetServiceCapabilities * SOAP_FMAC4 soap_in__tds__GetServiceCapabilities(struct soap *soap, const char *tag, _tds__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetServiceCapabilities, sizeof(_tds__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tds__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetServiceCapabilities, SOAP_TYPE__tds__GetServiceCapabilities, sizeof(_tds__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tds__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetServiceCapabilities *p; - size_t k = sizeof(_tds__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetServiceCapabilities(soap, tag ? tag : "tds:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetServiceCapabilities * SOAP_FMAC4 soap_get__tds__GetServiceCapabilities(struct soap *soap, _tds__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetServicesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTotds__Service(soap, &this->_tds__GetServicesResponse::Service); -} - -void _tds__GetServicesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTotds__Service(soap, &this->_tds__GetServicesResponse::Service); -#endif -} - -int _tds__GetServicesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetServicesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServicesResponse(struct soap *soap, const char *tag, int id, const _tds__GetServicesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetServicesResponse), type)) - return soap->error; - soap_element_result(soap, "tds:Service"); - if (soap_out_std__vectorTemplateOfPointerTotds__Service(soap, "tds:Service", -1, &a->_tds__GetServicesResponse::Service, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetServicesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetServicesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetServicesResponse * SOAP_FMAC4 soap_in__tds__GetServicesResponse(struct soap *soap, const char *tag, _tds__GetServicesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetServicesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetServicesResponse, sizeof(_tds__GetServicesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetServicesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetServicesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTotds__Service(soap, "tds:Service", &a->_tds__GetServicesResponse::Service, "tds:Service")) - continue; - } - soap_check_result(soap, "tds:Service"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tds__GetServicesResponse::Service.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetServicesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetServicesResponse, SOAP_TYPE__tds__GetServicesResponse, sizeof(_tds__GetServicesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetServicesResponse * SOAP_FMAC2 soap_instantiate__tds__GetServicesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetServicesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetServicesResponse *p; - size_t k = sizeof(_tds__GetServicesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetServicesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetServicesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetServicesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetServicesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetServicesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetServicesResponse(soap, tag ? tag : "tds:GetServicesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetServicesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetServicesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetServicesResponse * SOAP_FMAC4 soap_get__tds__GetServicesResponse(struct soap *soap, _tds__GetServicesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetServicesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tds__GetServices::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->_tds__GetServices::IncludeCapability); -} - -void _tds__GetServices::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tds__GetServices::IncludeCapability, SOAP_TYPE_bool); -#endif -} - -int _tds__GetServices::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tds__GetServices(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServices(struct soap *soap, const char *tag, int id, const _tds__GetServices *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tds__GetServices), type)) - return soap->error; - if (soap_out_bool(soap, "tds:IncludeCapability", -1, &a->_tds__GetServices::IncludeCapability, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tds__GetServices::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tds__GetServices(soap, tag, this, type); -} - -SOAP_FMAC3 _tds__GetServices * SOAP_FMAC4 soap_in__tds__GetServices(struct soap *soap, const char *tag, _tds__GetServices *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tds__GetServices*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tds__GetServices, sizeof(_tds__GetServices), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tds__GetServices) - { soap_revert(soap); - *soap->id = '\0'; - return (_tds__GetServices *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_IncludeCapability1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_IncludeCapability1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tds:IncludeCapability", &a->_tds__GetServices::IncludeCapability, "xsd:boolean")) - { soap_flag_IncludeCapability1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_IncludeCapability1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tds__GetServices *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tds__GetServices, SOAP_TYPE__tds__GetServices, sizeof(_tds__GetServices), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tds__GetServices * SOAP_FMAC2 soap_instantiate__tds__GetServices(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tds__GetServices(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tds__GetServices *p; - size_t k = sizeof(_tds__GetServices); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tds__GetServices, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tds__GetServices); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tds__GetServices, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tds__GetServices location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tds__GetServices::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tds__GetServices(soap, tag ? tag : "tds:GetServices", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tds__GetServices::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tds__GetServices(soap, this, tag, type); -} - -SOAP_FMAC3 _tds__GetServices * SOAP_FMAC4 soap_get__tds__GetServices(struct soap *soap, _tds__GetServices *p, const char *tag, const char *type) -{ - if ((p = soap_in__tds__GetServices(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__StorageConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - this->tds__StorageConfiguration::Data = NULL; -} - -void tds__StorageConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotds__StorageConfigurationData(soap, &this->tds__StorageConfiguration::Data); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tds__StorageConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__StorageConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageConfiguration(struct soap *soap, const char *tag, int id, const tds__StorageConfiguration *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__StorageConfiguration), type ? type : "tds:StorageConfiguration")) - return soap->error; - if (!a->tds__StorageConfiguration::Data) - { if (soap_element_empty(soap, "tds:Data", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__StorageConfigurationData(soap, "tds:Data", -1, &a->tds__StorageConfiguration::Data, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__StorageConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__StorageConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tds__StorageConfiguration * SOAP_FMAC4 soap_in_tds__StorageConfiguration(struct soap *soap, const char *tag, tds__StorageConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__StorageConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__StorageConfiguration, sizeof(tds__StorageConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__StorageConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__StorageConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Data1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Data1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__StorageConfigurationData(soap, "tds:Data", &a->tds__StorageConfiguration::Data, "tds:StorageConfigurationData")) - { soap_flag_Data1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tds__StorageConfiguration::Data)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tds__StorageConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__StorageConfiguration, SOAP_TYPE_tds__StorageConfiguration, sizeof(tds__StorageConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__StorageConfiguration * SOAP_FMAC2 soap_instantiate_tds__StorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__StorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__StorageConfiguration *p; - size_t k = sizeof(tds__StorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__StorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__StorageConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__StorageConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__StorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__StorageConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__StorageConfiguration(soap, tag ? tag : "tds:StorageConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__StorageConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__StorageConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tds__StorageConfiguration * SOAP_FMAC4 soap_get_tds__StorageConfiguration(struct soap *soap, tds__StorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__StorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__StorageConfigurationData::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tds__StorageConfigurationData::LocalPath = NULL; - this->tds__StorageConfigurationData::StorageUri = NULL; - this->tds__StorageConfigurationData::User = NULL; - this->tds__StorageConfigurationData::Extension = NULL; - soap_default_std__string(soap, &this->tds__StorageConfigurationData::type); - soap_default_xsd__anyAttribute(soap, &this->tds__StorageConfigurationData::__anyAttribute); -} - -void tds__StorageConfigurationData::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__anyURI(soap, &this->tds__StorageConfigurationData::LocalPath); - soap_serialize_PointerToxsd__anyURI(soap, &this->tds__StorageConfigurationData::StorageUri); - soap_serialize_PointerTotds__UserCredential(soap, &this->tds__StorageConfigurationData::User); - soap_serialize_PointerTo_tds__StorageConfigurationData_Extension(soap, &this->tds__StorageConfigurationData::Extension); -#endif -} - -int tds__StorageConfigurationData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__StorageConfigurationData(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageConfigurationData(struct soap *soap, const char *tag, int id, const tds__StorageConfigurationData *a, const char *type) -{ - soap_set_attr(soap, "type", soap_std__string2s(soap, ((tds__StorageConfigurationData*)a)->type), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tds__StorageConfigurationData*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__StorageConfigurationData), type)) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tds:LocalPath", -1, &a->tds__StorageConfigurationData::LocalPath, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tds:StorageUri", -1, &a->tds__StorageConfigurationData::StorageUri, "")) - return soap->error; - if (soap_out_PointerTotds__UserCredential(soap, "tds:User", -1, &a->tds__StorageConfigurationData::User, "")) - return soap->error; - if (soap_out_PointerTo_tds__StorageConfigurationData_Extension(soap, "tds:Extension", -1, &a->tds__StorageConfigurationData::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__StorageConfigurationData::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__StorageConfigurationData(soap, tag, this, type); -} - -SOAP_FMAC3 tds__StorageConfigurationData * SOAP_FMAC4 soap_in_tds__StorageConfigurationData(struct soap *soap, const char *tag, tds__StorageConfigurationData *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__StorageConfigurationData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__StorageConfigurationData, sizeof(tds__StorageConfigurationData), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__StorageConfigurationData) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__StorageConfigurationData *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2std__string(soap, soap_attr_value(soap, "type", 1, 1), &((tds__StorageConfigurationData*)a)->type)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tds__StorageConfigurationData*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_LocalPath1 = 1; - size_t soap_flag_StorageUri1 = 1; - size_t soap_flag_User1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_LocalPath1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tds:LocalPath", &a->tds__StorageConfigurationData::LocalPath, "xsd:anyURI")) - { soap_flag_LocalPath1--; - continue; - } - } - if (soap_flag_StorageUri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tds:StorageUri", &a->tds__StorageConfigurationData::StorageUri, "xsd:anyURI")) - { soap_flag_StorageUri1--; - continue; - } - } - if (soap_flag_User1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__UserCredential(soap, "tds:User", &a->tds__StorageConfigurationData::User, "tds:UserCredential")) - { soap_flag_User1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__StorageConfigurationData_Extension(soap, "tds:Extension", &a->tds__StorageConfigurationData::Extension, "")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tds__StorageConfigurationData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__StorageConfigurationData, SOAP_TYPE_tds__StorageConfigurationData, sizeof(tds__StorageConfigurationData), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__StorageConfigurationData * SOAP_FMAC2 soap_instantiate_tds__StorageConfigurationData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__StorageConfigurationData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__StorageConfigurationData *p; - size_t k = sizeof(tds__StorageConfigurationData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__StorageConfigurationData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__StorageConfigurationData); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__StorageConfigurationData, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__StorageConfigurationData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__StorageConfigurationData::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__StorageConfigurationData(soap, tag ? tag : "tds:StorageConfigurationData", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__StorageConfigurationData::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__StorageConfigurationData(soap, this, tag, type); -} - -SOAP_FMAC3 tds__StorageConfigurationData * SOAP_FMAC4 soap_get_tds__StorageConfigurationData(struct soap *soap, tds__StorageConfigurationData *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__StorageConfigurationData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__UserCredential::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tds__UserCredential::UserName); - this->tds__UserCredential::Password = NULL; - this->tds__UserCredential::Extension = NULL; -} - -void tds__UserCredential::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tds__UserCredential::UserName, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tds__UserCredential::UserName); - soap_serialize_PointerTostd__string(soap, &this->tds__UserCredential::Password); - soap_serialize_PointerTo_tds__UserCredential_Extension(soap, &this->tds__UserCredential::Extension); -#endif -} - -int tds__UserCredential::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__UserCredential(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__UserCredential(struct soap *soap, const char *tag, int id, const tds__UserCredential *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__UserCredential), type)) - return soap->error; - if (soap_out_std__string(soap, "tds:UserName", -1, &a->tds__UserCredential::UserName, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tds:Password", -1, &a->tds__UserCredential::Password, "")) - return soap->error; - if (soap_out_PointerTo_tds__UserCredential_Extension(soap, "tds:Extension", -1, &a->tds__UserCredential::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__UserCredential::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__UserCredential(soap, tag, this, type); -} - -SOAP_FMAC3 tds__UserCredential * SOAP_FMAC4 soap_in_tds__UserCredential(struct soap *soap, const char *tag, tds__UserCredential *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__UserCredential*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__UserCredential, sizeof(tds__UserCredential), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__UserCredential) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__UserCredential *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_UserName1 = 1; - size_t soap_flag_Password1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_UserName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tds:UserName", &a->tds__UserCredential::UserName, "xsd:string")) - { soap_flag_UserName1--; - continue; - } - } - if (soap_flag_Password1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tds:Password", &a->tds__UserCredential::Password, "xsd:string")) - { soap_flag_Password1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__UserCredential_Extension(soap, "tds:Extension", &a->tds__UserCredential::Extension, "")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_UserName1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tds__UserCredential *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__UserCredential, SOAP_TYPE_tds__UserCredential, sizeof(tds__UserCredential), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__UserCredential * SOAP_FMAC2 soap_instantiate_tds__UserCredential(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__UserCredential(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__UserCredential *p; - size_t k = sizeof(tds__UserCredential); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__UserCredential, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__UserCredential); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__UserCredential, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__UserCredential location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__UserCredential::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__UserCredential(soap, tag ? tag : "tds:UserCredential", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__UserCredential::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__UserCredential(soap, this, tag, type); -} - -SOAP_FMAC3 tds__UserCredential * SOAP_FMAC4 soap_get_tds__UserCredential(struct soap *soap, tds__UserCredential *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__UserCredential(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__MiscCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tds__MiscCapabilities::AuxiliaryCommands = NULL; - soap_default_xsd__anyAttribute(soap, &this->tds__MiscCapabilities::__anyAttribute); -} - -void tds__MiscCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tds__MiscCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__MiscCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__MiscCapabilities(struct soap *soap, const char *tag, int id, const tds__MiscCapabilities *a, const char *type) -{ - if (((tds__MiscCapabilities*)a)->AuxiliaryCommands) - { soap_set_attr(soap, "AuxiliaryCommands", soap_tt__StringAttrList2s(soap, *((tds__MiscCapabilities*)a)->AuxiliaryCommands), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tds__MiscCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__MiscCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__MiscCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__MiscCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tds__MiscCapabilities * SOAP_FMAC4 soap_in_tds__MiscCapabilities(struct soap *soap, const char *tag, tds__MiscCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__MiscCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__MiscCapabilities, sizeof(tds__MiscCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__MiscCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__MiscCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "AuxiliaryCommands", 1, 0); - if (t) - { - if (!(((tds__MiscCapabilities*)a)->AuxiliaryCommands = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((tds__MiscCapabilities*)a)->AuxiliaryCommands)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tds__MiscCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tds__MiscCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__MiscCapabilities, SOAP_TYPE_tds__MiscCapabilities, sizeof(tds__MiscCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__MiscCapabilities * SOAP_FMAC2 soap_instantiate_tds__MiscCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__MiscCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__MiscCapabilities *p; - size_t k = sizeof(tds__MiscCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__MiscCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__MiscCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__MiscCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__MiscCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__MiscCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__MiscCapabilities(soap, tag ? tag : "tds:MiscCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__MiscCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__MiscCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tds__MiscCapabilities * SOAP_FMAC4 soap_get_tds__MiscCapabilities(struct soap *soap, tds__MiscCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__MiscCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__SystemCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tds__SystemCapabilities::DiscoveryResolve = NULL; - this->tds__SystemCapabilities::DiscoveryBye = NULL; - this->tds__SystemCapabilities::RemoteDiscovery = NULL; - this->tds__SystemCapabilities::SystemBackup = NULL; - this->tds__SystemCapabilities::SystemLogging = NULL; - this->tds__SystemCapabilities::FirmwareUpgrade = NULL; - this->tds__SystemCapabilities::HttpFirmwareUpgrade = NULL; - this->tds__SystemCapabilities::HttpSystemBackup = NULL; - this->tds__SystemCapabilities::HttpSystemLogging = NULL; - this->tds__SystemCapabilities::HttpSupportInformation = NULL; - this->tds__SystemCapabilities::StorageConfiguration = NULL; - this->tds__SystemCapabilities::MaxStorageConfigurations = NULL; - this->tds__SystemCapabilities::GeoLocationEntries = NULL; - this->tds__SystemCapabilities::AutoGeo = NULL; - this->tds__SystemCapabilities::StorageTypesSupported = NULL; - soap_default_xsd__anyAttribute(soap, &this->tds__SystemCapabilities::__anyAttribute); -} - -void tds__SystemCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tds__SystemCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__SystemCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__SystemCapabilities(struct soap *soap, const char *tag, int id, const tds__SystemCapabilities *a, const char *type) -{ - if (((tds__SystemCapabilities*)a)->DiscoveryResolve) - { soap_set_attr(soap, "DiscoveryResolve", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->DiscoveryResolve), 1); - } - if (((tds__SystemCapabilities*)a)->DiscoveryBye) - { soap_set_attr(soap, "DiscoveryBye", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->DiscoveryBye), 1); - } - if (((tds__SystemCapabilities*)a)->RemoteDiscovery) - { soap_set_attr(soap, "RemoteDiscovery", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->RemoteDiscovery), 1); - } - if (((tds__SystemCapabilities*)a)->SystemBackup) - { soap_set_attr(soap, "SystemBackup", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->SystemBackup), 1); - } - if (((tds__SystemCapabilities*)a)->SystemLogging) - { soap_set_attr(soap, "SystemLogging", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->SystemLogging), 1); - } - if (((tds__SystemCapabilities*)a)->FirmwareUpgrade) - { soap_set_attr(soap, "FirmwareUpgrade", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->FirmwareUpgrade), 1); - } - if (((tds__SystemCapabilities*)a)->HttpFirmwareUpgrade) - { soap_set_attr(soap, "HttpFirmwareUpgrade", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->HttpFirmwareUpgrade), 1); - } - if (((tds__SystemCapabilities*)a)->HttpSystemBackup) - { soap_set_attr(soap, "HttpSystemBackup", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->HttpSystemBackup), 1); - } - if (((tds__SystemCapabilities*)a)->HttpSystemLogging) - { soap_set_attr(soap, "HttpSystemLogging", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->HttpSystemLogging), 1); - } - if (((tds__SystemCapabilities*)a)->HttpSupportInformation) - { soap_set_attr(soap, "HttpSupportInformation", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->HttpSupportInformation), 1); - } - if (((tds__SystemCapabilities*)a)->StorageConfiguration) - { soap_set_attr(soap, "StorageConfiguration", soap_bool2s(soap, *((tds__SystemCapabilities*)a)->StorageConfiguration), 1); - } - if (((tds__SystemCapabilities*)a)->MaxStorageConfigurations) - { soap_set_attr(soap, "MaxStorageConfigurations", soap_int2s(soap, *((tds__SystemCapabilities*)a)->MaxStorageConfigurations), 1); - } - if (((tds__SystemCapabilities*)a)->GeoLocationEntries) - { soap_set_attr(soap, "GeoLocationEntries", soap_int2s(soap, *((tds__SystemCapabilities*)a)->GeoLocationEntries), 1); - } - if (((tds__SystemCapabilities*)a)->AutoGeo) - { soap_set_attr(soap, "AutoGeo", soap_tt__StringAttrList2s(soap, *((tds__SystemCapabilities*)a)->AutoGeo), 1); - } - if (((tds__SystemCapabilities*)a)->StorageTypesSupported) - { soap_set_attr(soap, "StorageTypesSupported", soap_tt__StringAttrList2s(soap, *((tds__SystemCapabilities*)a)->StorageTypesSupported), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tds__SystemCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__SystemCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__SystemCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__SystemCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tds__SystemCapabilities * SOAP_FMAC4 soap_in_tds__SystemCapabilities(struct soap *soap, const char *tag, tds__SystemCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__SystemCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__SystemCapabilities, sizeof(tds__SystemCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__SystemCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__SystemCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "DiscoveryResolve", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->DiscoveryResolve = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->DiscoveryResolve)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "DiscoveryBye", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->DiscoveryBye = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->DiscoveryBye)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RemoteDiscovery", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->RemoteDiscovery = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->RemoteDiscovery)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SystemBackup", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->SystemBackup = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->SystemBackup)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SystemLogging", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->SystemLogging = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->SystemLogging)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "FirmwareUpgrade", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->FirmwareUpgrade = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->FirmwareUpgrade)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "HttpFirmwareUpgrade", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->HttpFirmwareUpgrade = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->HttpFirmwareUpgrade)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "HttpSystemBackup", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->HttpSystemBackup = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->HttpSystemBackup)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "HttpSystemLogging", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->HttpSystemLogging = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->HttpSystemLogging)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "HttpSupportInformation", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->HttpSupportInformation = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->HttpSupportInformation)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "StorageConfiguration", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->StorageConfiguration = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SystemCapabilities*)a)->StorageConfiguration)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxStorageConfigurations", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->MaxStorageConfigurations = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tds__SystemCapabilities*)a)->MaxStorageConfigurations)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GeoLocationEntries", 5, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->GeoLocationEntries = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tds__SystemCapabilities*)a)->GeoLocationEntries)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "AutoGeo", 1, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->AutoGeo = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((tds__SystemCapabilities*)a)->AutoGeo)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "StorageTypesSupported", 1, 0); - if (t) - { - if (!(((tds__SystemCapabilities*)a)->StorageTypesSupported = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((tds__SystemCapabilities*)a)->StorageTypesSupported)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tds__SystemCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tds__SystemCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__SystemCapabilities, SOAP_TYPE_tds__SystemCapabilities, sizeof(tds__SystemCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__SystemCapabilities * SOAP_FMAC2 soap_instantiate_tds__SystemCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__SystemCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__SystemCapabilities *p; - size_t k = sizeof(tds__SystemCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__SystemCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__SystemCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__SystemCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__SystemCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__SystemCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__SystemCapabilities(soap, tag ? tag : "tds:SystemCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__SystemCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__SystemCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tds__SystemCapabilities * SOAP_FMAC4 soap_get_tds__SystemCapabilities(struct soap *soap, tds__SystemCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__SystemCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__SecurityCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tds__SecurityCapabilities::TLS1_x002e0 = NULL; - this->tds__SecurityCapabilities::TLS1_x002e1 = NULL; - this->tds__SecurityCapabilities::TLS1_x002e2 = NULL; - this->tds__SecurityCapabilities::OnboardKeyGeneration = NULL; - this->tds__SecurityCapabilities::AccessPolicyConfig = NULL; - this->tds__SecurityCapabilities::DefaultAccessPolicy = NULL; - this->tds__SecurityCapabilities::Dot1X = NULL; - this->tds__SecurityCapabilities::RemoteUserHandling = NULL; - this->tds__SecurityCapabilities::X_x002e509Token = NULL; - this->tds__SecurityCapabilities::SAMLToken = NULL; - this->tds__SecurityCapabilities::KerberosToken = NULL; - this->tds__SecurityCapabilities::UsernameToken = NULL; - this->tds__SecurityCapabilities::HttpDigest = NULL; - this->tds__SecurityCapabilities::RELToken = NULL; - this->tds__SecurityCapabilities::SupportedEAPMethods = NULL; - this->tds__SecurityCapabilities::MaxUsers = NULL; - this->tds__SecurityCapabilities::MaxUserNameLength = NULL; - this->tds__SecurityCapabilities::MaxPasswordLength = NULL; - soap_default_xsd__anyAttribute(soap, &this->tds__SecurityCapabilities::__anyAttribute); -} - -void tds__SecurityCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tds__SecurityCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__SecurityCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__SecurityCapabilities(struct soap *soap, const char *tag, int id, const tds__SecurityCapabilities *a, const char *type) -{ - if (((tds__SecurityCapabilities*)a)->TLS1_x002e0) - { soap_set_attr(soap, "TLS1.0", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->TLS1_x002e0), 1); - } - if (((tds__SecurityCapabilities*)a)->TLS1_x002e1) - { soap_set_attr(soap, "TLS1.1", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->TLS1_x002e1), 1); - } - if (((tds__SecurityCapabilities*)a)->TLS1_x002e2) - { soap_set_attr(soap, "TLS1.2", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->TLS1_x002e2), 1); - } - if (((tds__SecurityCapabilities*)a)->OnboardKeyGeneration) - { soap_set_attr(soap, "OnboardKeyGeneration", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->OnboardKeyGeneration), 1); - } - if (((tds__SecurityCapabilities*)a)->AccessPolicyConfig) - { soap_set_attr(soap, "AccessPolicyConfig", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->AccessPolicyConfig), 1); - } - if (((tds__SecurityCapabilities*)a)->DefaultAccessPolicy) - { soap_set_attr(soap, "DefaultAccessPolicy", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->DefaultAccessPolicy), 1); - } - if (((tds__SecurityCapabilities*)a)->Dot1X) - { soap_set_attr(soap, "Dot1X", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->Dot1X), 1); - } - if (((tds__SecurityCapabilities*)a)->RemoteUserHandling) - { soap_set_attr(soap, "RemoteUserHandling", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->RemoteUserHandling), 1); - } - if (((tds__SecurityCapabilities*)a)->X_x002e509Token) - { soap_set_attr(soap, "X.509Token", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->X_x002e509Token), 1); - } - if (((tds__SecurityCapabilities*)a)->SAMLToken) - { soap_set_attr(soap, "SAMLToken", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->SAMLToken), 1); - } - if (((tds__SecurityCapabilities*)a)->KerberosToken) - { soap_set_attr(soap, "KerberosToken", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->KerberosToken), 1); - } - if (((tds__SecurityCapabilities*)a)->UsernameToken) - { soap_set_attr(soap, "UsernameToken", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->UsernameToken), 1); - } - if (((tds__SecurityCapabilities*)a)->HttpDigest) - { soap_set_attr(soap, "HttpDigest", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->HttpDigest), 1); - } - if (((tds__SecurityCapabilities*)a)->RELToken) - { soap_set_attr(soap, "RELToken", soap_bool2s(soap, *((tds__SecurityCapabilities*)a)->RELToken), 1); - } - if (((tds__SecurityCapabilities*)a)->SupportedEAPMethods) - { soap_set_attr(soap, "SupportedEAPMethods", soap_tds__EAPMethodTypes2s(soap, *((tds__SecurityCapabilities*)a)->SupportedEAPMethods), 1); - } - if (((tds__SecurityCapabilities*)a)->MaxUsers) - { soap_set_attr(soap, "MaxUsers", soap_int2s(soap, *((tds__SecurityCapabilities*)a)->MaxUsers), 1); - } - if (((tds__SecurityCapabilities*)a)->MaxUserNameLength) - { soap_set_attr(soap, "MaxUserNameLength", soap_int2s(soap, *((tds__SecurityCapabilities*)a)->MaxUserNameLength), 1); - } - if (((tds__SecurityCapabilities*)a)->MaxPasswordLength) - { soap_set_attr(soap, "MaxPasswordLength", soap_int2s(soap, *((tds__SecurityCapabilities*)a)->MaxPasswordLength), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tds__SecurityCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__SecurityCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__SecurityCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__SecurityCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tds__SecurityCapabilities * SOAP_FMAC4 soap_in_tds__SecurityCapabilities(struct soap *soap, const char *tag, tds__SecurityCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__SecurityCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__SecurityCapabilities, sizeof(tds__SecurityCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__SecurityCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__SecurityCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "TLS1.0", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->TLS1_x002e0 = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->TLS1_x002e0)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "TLS1.1", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->TLS1_x002e1 = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->TLS1_x002e1)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "TLS1.2", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->TLS1_x002e2 = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->TLS1_x002e2)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "OnboardKeyGeneration", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->OnboardKeyGeneration = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->OnboardKeyGeneration)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "AccessPolicyConfig", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->AccessPolicyConfig = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->AccessPolicyConfig)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "DefaultAccessPolicy", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->DefaultAccessPolicy = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->DefaultAccessPolicy)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Dot1X", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->Dot1X = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->Dot1X)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RemoteUserHandling", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->RemoteUserHandling = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->RemoteUserHandling)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "X.509Token", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->X_x002e509Token = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->X_x002e509Token)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SAMLToken", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->SAMLToken = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->SAMLToken)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "KerberosToken", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->KerberosToken = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->KerberosToken)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "UsernameToken", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->UsernameToken = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->UsernameToken)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "HttpDigest", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->HttpDigest = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->HttpDigest)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "RELToken", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->RELToken = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__SecurityCapabilities*)a)->RELToken)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "SupportedEAPMethods", 1, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->SupportedEAPMethods = soap_new_tds__EAPMethodTypes(soap))) - return NULL; - if (soap_s2tds__EAPMethodTypes(soap, t, ((tds__SecurityCapabilities*)a)->SupportedEAPMethods)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxUsers", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->MaxUsers = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tds__SecurityCapabilities*)a)->MaxUsers)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxUserNameLength", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->MaxUserNameLength = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tds__SecurityCapabilities*)a)->MaxUserNameLength)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxPasswordLength", 5, 0); - if (t) - { - if (!(((tds__SecurityCapabilities*)a)->MaxPasswordLength = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tds__SecurityCapabilities*)a)->MaxPasswordLength)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tds__SecurityCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tds__SecurityCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__SecurityCapabilities, SOAP_TYPE_tds__SecurityCapabilities, sizeof(tds__SecurityCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__SecurityCapabilities * SOAP_FMAC2 soap_instantiate_tds__SecurityCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__SecurityCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__SecurityCapabilities *p; - size_t k = sizeof(tds__SecurityCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__SecurityCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__SecurityCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__SecurityCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__SecurityCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__SecurityCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__SecurityCapabilities(soap, tag ? tag : "tds:SecurityCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__SecurityCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__SecurityCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tds__SecurityCapabilities * SOAP_FMAC4 soap_get_tds__SecurityCapabilities(struct soap *soap, tds__SecurityCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__SecurityCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__NetworkCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tds__NetworkCapabilities::IPFilter = NULL; - this->tds__NetworkCapabilities::ZeroConfiguration = NULL; - this->tds__NetworkCapabilities::IPVersion6 = NULL; - this->tds__NetworkCapabilities::DynDNS = NULL; - this->tds__NetworkCapabilities::Dot11Configuration = NULL; - this->tds__NetworkCapabilities::Dot1XConfigurations = NULL; - this->tds__NetworkCapabilities::HostnameFromDHCP = NULL; - this->tds__NetworkCapabilities::NTP = NULL; - this->tds__NetworkCapabilities::DHCPv6 = NULL; - soap_default_xsd__anyAttribute(soap, &this->tds__NetworkCapabilities::__anyAttribute); -} - -void tds__NetworkCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tds__NetworkCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__NetworkCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__NetworkCapabilities(struct soap *soap, const char *tag, int id, const tds__NetworkCapabilities *a, const char *type) -{ - if (((tds__NetworkCapabilities*)a)->IPFilter) - { soap_set_attr(soap, "IPFilter", soap_bool2s(soap, *((tds__NetworkCapabilities*)a)->IPFilter), 1); - } - if (((tds__NetworkCapabilities*)a)->ZeroConfiguration) - { soap_set_attr(soap, "ZeroConfiguration", soap_bool2s(soap, *((tds__NetworkCapabilities*)a)->ZeroConfiguration), 1); - } - if (((tds__NetworkCapabilities*)a)->IPVersion6) - { soap_set_attr(soap, "IPVersion6", soap_bool2s(soap, *((tds__NetworkCapabilities*)a)->IPVersion6), 1); - } - if (((tds__NetworkCapabilities*)a)->DynDNS) - { soap_set_attr(soap, "DynDNS", soap_bool2s(soap, *((tds__NetworkCapabilities*)a)->DynDNS), 1); - } - if (((tds__NetworkCapabilities*)a)->Dot11Configuration) - { soap_set_attr(soap, "Dot11Configuration", soap_bool2s(soap, *((tds__NetworkCapabilities*)a)->Dot11Configuration), 1); - } - if (((tds__NetworkCapabilities*)a)->Dot1XConfigurations) - { soap_set_attr(soap, "Dot1XConfigurations", soap_int2s(soap, *((tds__NetworkCapabilities*)a)->Dot1XConfigurations), 1); - } - if (((tds__NetworkCapabilities*)a)->HostnameFromDHCP) - { soap_set_attr(soap, "HostnameFromDHCP", soap_bool2s(soap, *((tds__NetworkCapabilities*)a)->HostnameFromDHCP), 1); - } - if (((tds__NetworkCapabilities*)a)->NTP) - { soap_set_attr(soap, "NTP", soap_int2s(soap, *((tds__NetworkCapabilities*)a)->NTP), 1); - } - if (((tds__NetworkCapabilities*)a)->DHCPv6) - { soap_set_attr(soap, "DHCPv6", soap_bool2s(soap, *((tds__NetworkCapabilities*)a)->DHCPv6), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tds__NetworkCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__NetworkCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__NetworkCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__NetworkCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tds__NetworkCapabilities * SOAP_FMAC4 soap_in_tds__NetworkCapabilities(struct soap *soap, const char *tag, tds__NetworkCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__NetworkCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__NetworkCapabilities, sizeof(tds__NetworkCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__NetworkCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__NetworkCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "IPFilter", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->IPFilter = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__NetworkCapabilities*)a)->IPFilter)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "ZeroConfiguration", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->ZeroConfiguration = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__NetworkCapabilities*)a)->ZeroConfiguration)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "IPVersion6", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->IPVersion6 = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__NetworkCapabilities*)a)->IPVersion6)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "DynDNS", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->DynDNS = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__NetworkCapabilities*)a)->DynDNS)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Dot11Configuration", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->Dot11Configuration = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__NetworkCapabilities*)a)->Dot11Configuration)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Dot1XConfigurations", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->Dot1XConfigurations = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tds__NetworkCapabilities*)a)->Dot1XConfigurations)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "HostnameFromDHCP", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->HostnameFromDHCP = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__NetworkCapabilities*)a)->HostnameFromDHCP)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "NTP", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->NTP = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tds__NetworkCapabilities*)a)->NTP)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "DHCPv6", 5, 0); - if (t) - { - if (!(((tds__NetworkCapabilities*)a)->DHCPv6 = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tds__NetworkCapabilities*)a)->DHCPv6)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tds__NetworkCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tds__NetworkCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__NetworkCapabilities, SOAP_TYPE_tds__NetworkCapabilities, sizeof(tds__NetworkCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__NetworkCapabilities * SOAP_FMAC2 soap_instantiate_tds__NetworkCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__NetworkCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__NetworkCapabilities *p; - size_t k = sizeof(tds__NetworkCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__NetworkCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__NetworkCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__NetworkCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__NetworkCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__NetworkCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__NetworkCapabilities(soap, tag ? tag : "tds:NetworkCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__NetworkCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__NetworkCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tds__NetworkCapabilities * SOAP_FMAC4 soap_get_tds__NetworkCapabilities(struct soap *soap, tds__NetworkCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__NetworkCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__DeviceServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tds__DeviceServiceCapabilities::Network = NULL; - this->tds__DeviceServiceCapabilities::Security = NULL; - this->tds__DeviceServiceCapabilities::System = NULL; - this->tds__DeviceServiceCapabilities::Misc = NULL; -} - -void tds__DeviceServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotds__NetworkCapabilities(soap, &this->tds__DeviceServiceCapabilities::Network); - soap_serialize_PointerTotds__SecurityCapabilities(soap, &this->tds__DeviceServiceCapabilities::Security); - soap_serialize_PointerTotds__SystemCapabilities(soap, &this->tds__DeviceServiceCapabilities::System); - soap_serialize_PointerTotds__MiscCapabilities(soap, &this->tds__DeviceServiceCapabilities::Misc); -#endif -} - -int tds__DeviceServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__DeviceServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__DeviceServiceCapabilities(struct soap *soap, const char *tag, int id, const tds__DeviceServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__DeviceServiceCapabilities), type)) - return soap->error; - if (!a->tds__DeviceServiceCapabilities::Network) - { if (soap_element_empty(soap, "tds:Network", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__NetworkCapabilities(soap, "tds:Network", -1, &a->tds__DeviceServiceCapabilities::Network, "")) - return soap->error; - if (!a->tds__DeviceServiceCapabilities::Security) - { if (soap_element_empty(soap, "tds:Security", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__SecurityCapabilities(soap, "tds:Security", -1, &a->tds__DeviceServiceCapabilities::Security, "")) - return soap->error; - if (!a->tds__DeviceServiceCapabilities::System) - { if (soap_element_empty(soap, "tds:System", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotds__SystemCapabilities(soap, "tds:System", -1, &a->tds__DeviceServiceCapabilities::System, "")) - return soap->error; - if (soap_out_PointerTotds__MiscCapabilities(soap, "tds:Misc", -1, &a->tds__DeviceServiceCapabilities::Misc, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__DeviceServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__DeviceServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tds__DeviceServiceCapabilities * SOAP_FMAC4 soap_in_tds__DeviceServiceCapabilities(struct soap *soap, const char *tag, tds__DeviceServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__DeviceServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__DeviceServiceCapabilities, sizeof(tds__DeviceServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__DeviceServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__DeviceServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Network1 = 1; - size_t soap_flag_Security1 = 1; - size_t soap_flag_System1 = 1; - size_t soap_flag_Misc1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Network1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__NetworkCapabilities(soap, "tds:Network", &a->tds__DeviceServiceCapabilities::Network, "tds:NetworkCapabilities")) - { soap_flag_Network1--; - continue; - } - } - if (soap_flag_Security1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__SecurityCapabilities(soap, "tds:Security", &a->tds__DeviceServiceCapabilities::Security, "tds:SecurityCapabilities")) - { soap_flag_Security1--; - continue; - } - } - if (soap_flag_System1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__SystemCapabilities(soap, "tds:System", &a->tds__DeviceServiceCapabilities::System, "tds:SystemCapabilities")) - { soap_flag_System1--; - continue; - } - } - if (soap_flag_Misc1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotds__MiscCapabilities(soap, "tds:Misc", &a->tds__DeviceServiceCapabilities::Misc, "tds:MiscCapabilities")) - { soap_flag_Misc1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tds__DeviceServiceCapabilities::Network || !a->tds__DeviceServiceCapabilities::Security || !a->tds__DeviceServiceCapabilities::System)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tds__DeviceServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__DeviceServiceCapabilities, SOAP_TYPE_tds__DeviceServiceCapabilities, sizeof(tds__DeviceServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__DeviceServiceCapabilities * SOAP_FMAC2 soap_instantiate_tds__DeviceServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__DeviceServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__DeviceServiceCapabilities *p; - size_t k = sizeof(tds__DeviceServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__DeviceServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__DeviceServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__DeviceServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__DeviceServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__DeviceServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__DeviceServiceCapabilities(soap, tag ? tag : "tds:DeviceServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__DeviceServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__DeviceServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tds__DeviceServiceCapabilities * SOAP_FMAC4 soap_get_tds__DeviceServiceCapabilities(struct soap *soap, tds__DeviceServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__DeviceServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tds__Service::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tds__Service::Namespace); - soap_default_xsd__anyURI(soap, &this->tds__Service::XAddr); - this->tds__Service::Capabilities = NULL; - this->tds__Service::Version = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tds__Service::__any); - soap_default_xsd__anyAttribute(soap, &this->tds__Service::__anyAttribute); -} - -void tds__Service::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tds__Service::Namespace, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tds__Service::Namespace); - soap_embedded(soap, &this->tds__Service::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tds__Service::XAddr); - soap_serialize_PointerTo_tds__Service_Capabilities(soap, &this->tds__Service::Capabilities); - soap_serialize_PointerTott__OnvifVersion(soap, &this->tds__Service::Version); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tds__Service::__any); -#endif -} - -int tds__Service::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tds__Service(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__Service(struct soap *soap, const char *tag, int id, const tds__Service *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tds__Service*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tds__Service), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tds:Namespace", -1, &a->tds__Service::Namespace, "")) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tds:XAddr", -1, &a->tds__Service::XAddr, "")) - return soap->error; - if (soap_out_PointerTo_tds__Service_Capabilities(soap, "tds:Capabilities", -1, &a->tds__Service::Capabilities, "")) - return soap->error; - if (!a->tds__Service::Version) - { if (soap_element_empty(soap, "tds:Version", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__OnvifVersion(soap, "tds:Version", -1, &a->tds__Service::Version, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tds__Service::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tds__Service::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tds__Service(soap, tag, this, type); -} - -SOAP_FMAC3 tds__Service * SOAP_FMAC4 soap_in_tds__Service(struct soap *soap, const char *tag, tds__Service *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tds__Service*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tds__Service, sizeof(tds__Service), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tds__Service) - { soap_revert(soap); - *soap->id = '\0'; - return (tds__Service *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tds__Service*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Namespace1 = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_Capabilities1 = 1; - size_t soap_flag_Version1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Namespace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tds:Namespace", &a->tds__Service::Namespace, "xsd:anyURI")) - { soap_flag_Namespace1--; - continue; - } - } - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tds:XAddr", &a->tds__Service::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__Service_Capabilities(soap, "tds:Capabilities", &a->tds__Service::Capabilities, "")) - { soap_flag_Capabilities1--; - continue; - } - } - if (soap_flag_Version1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OnvifVersion(soap, "tds:Version", &a->tds__Service::Version, "tt:OnvifVersion")) - { soap_flag_Version1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tds__Service::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Namespace1 > 0 || soap_flag_XAddr1 > 0 || !a->tds__Service::Version)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tds__Service *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tds__Service, SOAP_TYPE_tds__Service, sizeof(tds__Service), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tds__Service * SOAP_FMAC2 soap_instantiate_tds__Service(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tds__Service(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tds__Service *p; - size_t k = sizeof(tds__Service); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tds__Service, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tds__Service); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tds__Service, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tds__Service location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tds__Service::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tds__Service(soap, tag ? tag : "tds:Service", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tds__Service::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tds__Service(soap, this, tag, type); -} - -SOAP_FMAC3 tds__Service * SOAP_FMAC4 soap_get_tds__Service(struct soap *soap, tds__Service *p, const char *tag, const char *type) -{ - if ((p = soap_in_tds__Service(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SendReceiveSerialCommandResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SendReceiveSerialCommandResponse::SerialData = NULL; -} - -void _tmd__SendReceiveSerialCommandResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__SerialData(soap, &this->_tmd__SendReceiveSerialCommandResponse::SerialData); -#endif -} - -int _tmd__SendReceiveSerialCommandResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SendReceiveSerialCommandResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SendReceiveSerialCommandResponse(struct soap *soap, const char *tag, int id, const _tmd__SendReceiveSerialCommandResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SendReceiveSerialCommandResponse), type)) - return soap->error; - if (a->SerialData) - soap_element_result(soap, "tmd:SerialData"); - if (soap_out_PointerTotmd__SerialData(soap, "tmd:SerialData", -1, &a->_tmd__SendReceiveSerialCommandResponse::SerialData, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SendReceiveSerialCommandResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SendReceiveSerialCommandResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SendReceiveSerialCommandResponse * SOAP_FMAC4 soap_in__tmd__SendReceiveSerialCommandResponse(struct soap *soap, const char *tag, _tmd__SendReceiveSerialCommandResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SendReceiveSerialCommandResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SendReceiveSerialCommandResponse, sizeof(_tmd__SendReceiveSerialCommandResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SendReceiveSerialCommandResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SendReceiveSerialCommandResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SerialData1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SerialData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__SerialData(soap, "tmd:SerialData", &a->_tmd__SendReceiveSerialCommandResponse::SerialData, "tmd:SerialData")) - { soap_flag_SerialData1--; - continue; - } - } - soap_check_result(soap, "tmd:SerialData"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SendReceiveSerialCommandResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SendReceiveSerialCommandResponse, SOAP_TYPE__tmd__SendReceiveSerialCommandResponse, sizeof(_tmd__SendReceiveSerialCommandResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SendReceiveSerialCommandResponse * SOAP_FMAC2 soap_instantiate__tmd__SendReceiveSerialCommandResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SendReceiveSerialCommandResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SendReceiveSerialCommandResponse *p; - size_t k = sizeof(_tmd__SendReceiveSerialCommandResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SendReceiveSerialCommandResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SendReceiveSerialCommandResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SendReceiveSerialCommandResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SendReceiveSerialCommandResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SendReceiveSerialCommandResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SendReceiveSerialCommandResponse(soap, tag ? tag : "tmd:SendReceiveSerialCommandResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SendReceiveSerialCommandResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SendReceiveSerialCommandResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SendReceiveSerialCommandResponse * SOAP_FMAC4 soap_get__tmd__SendReceiveSerialCommandResponse(struct soap *soap, _tmd__SendReceiveSerialCommandResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SendReceiveSerialCommandResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SendReceiveSerialCommand::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SendReceiveSerialCommand::SerialData = NULL; - this->_tmd__SendReceiveSerialCommand::TimeOut = NULL; - this->_tmd__SendReceiveSerialCommand::DataLength = NULL; - this->_tmd__SendReceiveSerialCommand::Delimiter = NULL; -} - -void _tmd__SendReceiveSerialCommand::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__SerialData(soap, &this->_tmd__SendReceiveSerialCommand::SerialData); - soap_serialize_PointerToxsd__duration(soap, &this->_tmd__SendReceiveSerialCommand::TimeOut); - soap_serialize_PointerToxsd__integer(soap, &this->_tmd__SendReceiveSerialCommand::DataLength); - soap_serialize_PointerTostd__string(soap, &this->_tmd__SendReceiveSerialCommand::Delimiter); -#endif -} - -int _tmd__SendReceiveSerialCommand::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SendReceiveSerialCommand(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SendReceiveSerialCommand(struct soap *soap, const char *tag, int id, const _tmd__SendReceiveSerialCommand *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SendReceiveSerialCommand), type)) - return soap->error; - if (soap_out_PointerTotmd__SerialData(soap, "tmd:SerialData", -1, &a->_tmd__SendReceiveSerialCommand::SerialData, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tmd:TimeOut", -1, &a->_tmd__SendReceiveSerialCommand::TimeOut, "")) - return soap->error; - if (soap_out_PointerToxsd__integer(soap, "tmd:DataLength", -1, &a->_tmd__SendReceiveSerialCommand::DataLength, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tmd:Delimiter", -1, &a->_tmd__SendReceiveSerialCommand::Delimiter, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SendReceiveSerialCommand::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SendReceiveSerialCommand(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_in__tmd__SendReceiveSerialCommand(struct soap *soap, const char *tag, _tmd__SendReceiveSerialCommand *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SendReceiveSerialCommand*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SendReceiveSerialCommand, sizeof(_tmd__SendReceiveSerialCommand), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SendReceiveSerialCommand) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SendReceiveSerialCommand *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SerialData1 = 1; - size_t soap_flag_TimeOut1 = 1; - size_t soap_flag_DataLength1 = 1; - size_t soap_flag_Delimiter1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SerialData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__SerialData(soap, "tmd:SerialData", &a->_tmd__SendReceiveSerialCommand::SerialData, "tmd:SerialData")) - { soap_flag_SerialData1--; - continue; - } - } - if (soap_flag_TimeOut1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tmd:TimeOut", &a->_tmd__SendReceiveSerialCommand::TimeOut, "xsd:duration")) - { soap_flag_TimeOut1--; - continue; - } - } - if (soap_flag_DataLength1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__integer(soap, "tmd:DataLength", &a->_tmd__SendReceiveSerialCommand::DataLength, "xsd:integer")) - { soap_flag_DataLength1--; - continue; - } - } - if (soap_flag_Delimiter1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tmd:Delimiter", &a->_tmd__SendReceiveSerialCommand::Delimiter, "xsd:string")) - { soap_flag_Delimiter1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SendReceiveSerialCommand *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SendReceiveSerialCommand, SOAP_TYPE__tmd__SendReceiveSerialCommand, sizeof(_tmd__SendReceiveSerialCommand), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SendReceiveSerialCommand * SOAP_FMAC2 soap_instantiate__tmd__SendReceiveSerialCommand(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SendReceiveSerialCommand(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SendReceiveSerialCommand *p; - size_t k = sizeof(_tmd__SendReceiveSerialCommand); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SendReceiveSerialCommand, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SendReceiveSerialCommand); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SendReceiveSerialCommand, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SendReceiveSerialCommand location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SendReceiveSerialCommand::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SendReceiveSerialCommand(soap, tag ? tag : "tmd:SendReceiveSerialCommand", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SendReceiveSerialCommand::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SendReceiveSerialCommand(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_get__tmd__SendReceiveSerialCommand(struct soap *soap, _tmd__SendReceiveSerialCommand *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SendReceiveSerialCommand(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetSerialPortConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions = NULL; -} - -void _tmd__GetSerialPortConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__SerialPortConfigurationOptions(soap, &this->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions); -#endif -} - -int _tmd__GetSerialPortConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetSerialPortConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetSerialPortConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse), type)) - return soap->error; - if (a->SerialPortOptions) - soap_element_result(soap, "tmd:SerialPortOptions"); - if (!a->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions) - { if (soap_element_empty(soap, "tmd:SerialPortOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotmd__SerialPortConfigurationOptions(soap, "tmd:SerialPortOptions", -1, &a->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetSerialPortConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetSerialPortConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, const char *tag, _tmd__GetSerialPortConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetSerialPortConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse, sizeof(_tmd__GetSerialPortConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetSerialPortConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SerialPortOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SerialPortOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__SerialPortConfigurationOptions(soap, "tmd:SerialPortOptions", &a->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions, "tmd:SerialPortConfigurationOptions")) - { soap_flag_SerialPortOptions1--; - continue; - } - } - soap_check_result(soap, "tmd:SerialPortOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetSerialPortConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse, SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse, sizeof(_tmd__GetSerialPortConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetSerialPortConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetSerialPortConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetSerialPortConfigurationOptionsResponse *p; - size_t k = sizeof(_tmd__GetSerialPortConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetSerialPortConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetSerialPortConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetSerialPortConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetSerialPortConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetSerialPortConfigurationOptionsResponse(soap, tag ? tag : "tmd:GetSerialPortConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetSerialPortConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetSerialPortConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, _tmd__GetSerialPortConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetSerialPortConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetSerialPortConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetSerialPortConfigurationOptions::SerialPortToken); -} - -void _tmd__GetSerialPortConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetSerialPortConfigurationOptions::SerialPortToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetSerialPortConfigurationOptions::SerialPortToken); -#endif -} - -int _tmd__GetSerialPortConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetSerialPortConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *tag, int id, const _tmd__GetSerialPortConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetSerialPortConfigurationOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:SerialPortToken", -1, &a->_tmd__GetSerialPortConfigurationOptions::SerialPortToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetSerialPortConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetSerialPortConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *tag, _tmd__GetSerialPortConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetSerialPortConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetSerialPortConfigurationOptions, sizeof(_tmd__GetSerialPortConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetSerialPortConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetSerialPortConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SerialPortToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SerialPortToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:SerialPortToken", &a->_tmd__GetSerialPortConfigurationOptions::SerialPortToken, "tt:ReferenceToken")) - { soap_flag_SerialPortToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SerialPortToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetSerialPortConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetSerialPortConfigurationOptions, SOAP_TYPE__tmd__GetSerialPortConfigurationOptions, sizeof(_tmd__GetSerialPortConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetSerialPortConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetSerialPortConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetSerialPortConfigurationOptions *p; - size_t k = sizeof(_tmd__GetSerialPortConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetSerialPortConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetSerialPortConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetSerialPortConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetSerialPortConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetSerialPortConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetSerialPortConfigurationOptions(soap, tag ? tag : "tmd:GetSerialPortConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetSerialPortConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetSerialPortConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfigurationOptions(struct soap *soap, _tmd__GetSerialPortConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetSerialPortConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetSerialPortConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tmd__SetSerialPortConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tmd__SetSerialPortConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetSerialPortConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetSerialPortConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__SetSerialPortConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetSerialPortConfigurationResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetSerialPortConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetSerialPortConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetSerialPortConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetSerialPortConfigurationResponse(struct soap *soap, const char *tag, _tmd__SetSerialPortConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetSerialPortConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetSerialPortConfigurationResponse, sizeof(_tmd__SetSerialPortConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetSerialPortConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetSerialPortConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SetSerialPortConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetSerialPortConfigurationResponse, SOAP_TYPE__tmd__SetSerialPortConfigurationResponse, sizeof(_tmd__SetSerialPortConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetSerialPortConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetSerialPortConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetSerialPortConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetSerialPortConfigurationResponse *p; - size_t k = sizeof(_tmd__SetSerialPortConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetSerialPortConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetSerialPortConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetSerialPortConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetSerialPortConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetSerialPortConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetSerialPortConfigurationResponse(soap, tag ? tag : "tmd:SetSerialPortConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetSerialPortConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetSerialPortConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetSerialPortConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetSerialPortConfigurationResponse(struct soap *soap, _tmd__SetSerialPortConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetSerialPortConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetSerialPortConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SetSerialPortConfiguration::SerialPortConfiguration = NULL; - soap_default_bool(soap, &this->_tmd__SetSerialPortConfiguration::ForcePersistance); -} - -void _tmd__SetSerialPortConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__SerialPortConfiguration(soap, &this->_tmd__SetSerialPortConfiguration::SerialPortConfiguration); - soap_embedded(soap, &this->_tmd__SetSerialPortConfiguration::ForcePersistance, SOAP_TYPE_bool); -#endif -} - -int _tmd__SetSerialPortConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetSerialPortConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetSerialPortConfiguration(struct soap *soap, const char *tag, int id, const _tmd__SetSerialPortConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetSerialPortConfiguration), type)) - return soap->error; - if (!a->_tmd__SetSerialPortConfiguration::SerialPortConfiguration) - { if (soap_element_empty(soap, "tmd:SerialPortConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotmd__SerialPortConfiguration(soap, "tmd:SerialPortConfiguration", -1, &a->_tmd__SetSerialPortConfiguration::SerialPortConfiguration, "")) - return soap->error; - if (soap_out_bool(soap, "tmd:ForcePersistance", -1, &a->_tmd__SetSerialPortConfiguration::ForcePersistance, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetSerialPortConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetSerialPortConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_in__tmd__SetSerialPortConfiguration(struct soap *soap, const char *tag, _tmd__SetSerialPortConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetSerialPortConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetSerialPortConfiguration, sizeof(_tmd__SetSerialPortConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetSerialPortConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetSerialPortConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SerialPortConfiguration1 = 1; - size_t soap_flag_ForcePersistance1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SerialPortConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__SerialPortConfiguration(soap, "tmd:SerialPortConfiguration", &a->_tmd__SetSerialPortConfiguration::SerialPortConfiguration, "tmd:SerialPortConfiguration")) - { soap_flag_SerialPortConfiguration1--; - continue; - } - } - if (soap_flag_ForcePersistance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tmd:ForcePersistance", &a->_tmd__SetSerialPortConfiguration::ForcePersistance, "xsd:boolean")) - { soap_flag_ForcePersistance1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__SetSerialPortConfiguration::SerialPortConfiguration || soap_flag_ForcePersistance1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__SetSerialPortConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetSerialPortConfiguration, SOAP_TYPE__tmd__SetSerialPortConfiguration, sizeof(_tmd__SetSerialPortConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetSerialPortConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetSerialPortConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetSerialPortConfiguration *p; - size_t k = sizeof(_tmd__SetSerialPortConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetSerialPortConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetSerialPortConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetSerialPortConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetSerialPortConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetSerialPortConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetSerialPortConfiguration(soap, tag ? tag : "tmd:SetSerialPortConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetSerialPortConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetSerialPortConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_get__tmd__SetSerialPortConfiguration(struct soap *soap, _tmd__SetSerialPortConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetSerialPortConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetSerialPortConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration = NULL; -} - -void _tmd__GetSerialPortConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__SerialPortConfiguration(soap, &this->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration); -#endif -} - -int _tmd__GetSerialPortConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetSerialPortConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__GetSerialPortConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetSerialPortConfigurationResponse), type)) - return soap->error; - if (a->SerialPortConfiguration) - soap_element_result(soap, "tmd:SerialPortConfiguration"); - if (!a->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration) - { if (soap_element_empty(soap, "tmd:SerialPortConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotmd__SerialPortConfiguration(soap, "tmd:SerialPortConfiguration", -1, &a->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetSerialPortConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetSerialPortConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfigurationResponse(struct soap *soap, const char *tag, _tmd__GetSerialPortConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetSerialPortConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetSerialPortConfigurationResponse, sizeof(_tmd__GetSerialPortConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetSerialPortConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetSerialPortConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SerialPortConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SerialPortConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__SerialPortConfiguration(soap, "tmd:SerialPortConfiguration", &a->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration, "tmd:SerialPortConfiguration")) - { soap_flag_SerialPortConfiguration1--; - continue; - } - } - soap_check_result(soap, "tmd:SerialPortConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetSerialPortConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetSerialPortConfigurationResponse, SOAP_TYPE__tmd__GetSerialPortConfigurationResponse, sizeof(_tmd__GetSerialPortConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetSerialPortConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetSerialPortConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetSerialPortConfigurationResponse *p; - size_t k = sizeof(_tmd__GetSerialPortConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetSerialPortConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetSerialPortConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetSerialPortConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetSerialPortConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetSerialPortConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetSerialPortConfigurationResponse(soap, tag ? tag : "tmd:GetSerialPortConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetSerialPortConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetSerialPortConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfigurationResponse(struct soap *soap, _tmd__GetSerialPortConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetSerialPortConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetSerialPortConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetSerialPortConfiguration::SerialPortToken); -} - -void _tmd__GetSerialPortConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetSerialPortConfiguration::SerialPortToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetSerialPortConfiguration::SerialPortToken); -#endif -} - -int _tmd__GetSerialPortConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetSerialPortConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfiguration(struct soap *soap, const char *tag, int id, const _tmd__GetSerialPortConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetSerialPortConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:SerialPortToken", -1, &a->_tmd__GetSerialPortConfiguration::SerialPortToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetSerialPortConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetSerialPortConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfiguration(struct soap *soap, const char *tag, _tmd__GetSerialPortConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetSerialPortConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetSerialPortConfiguration, sizeof(_tmd__GetSerialPortConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetSerialPortConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetSerialPortConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SerialPortToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SerialPortToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:SerialPortToken", &a->_tmd__GetSerialPortConfiguration::SerialPortToken, "tt:ReferenceToken")) - { soap_flag_SerialPortToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SerialPortToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetSerialPortConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetSerialPortConfiguration, SOAP_TYPE__tmd__GetSerialPortConfiguration, sizeof(_tmd__GetSerialPortConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetSerialPortConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetSerialPortConfiguration *p; - size_t k = sizeof(_tmd__GetSerialPortConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetSerialPortConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetSerialPortConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetSerialPortConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetSerialPortConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetSerialPortConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetSerialPortConfiguration(soap, tag ? tag : "tmd:GetSerialPortConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetSerialPortConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetSerialPortConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfiguration(struct soap *soap, _tmd__GetSerialPortConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetSerialPortConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetSerialPortsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTotmd__SerialPort(soap, &this->_tmd__GetSerialPortsResponse::SerialPort); -} - -void _tmd__GetSerialPortsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTotmd__SerialPort(soap, &this->_tmd__GetSerialPortsResponse::SerialPort); -#endif -} - -int _tmd__GetSerialPortsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetSerialPortsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetSerialPortsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetSerialPortsResponse), type)) - return soap->error; - soap_element_result(soap, "tmd:SerialPort"); - if (soap_out_std__vectorTemplateOfPointerTotmd__SerialPort(soap, "tmd:SerialPort", -1, &a->_tmd__GetSerialPortsResponse::SerialPort, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetSerialPortsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetSerialPortsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortsResponse * SOAP_FMAC4 soap_in__tmd__GetSerialPortsResponse(struct soap *soap, const char *tag, _tmd__GetSerialPortsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetSerialPortsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetSerialPortsResponse, sizeof(_tmd__GetSerialPortsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetSerialPortsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetSerialPortsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTotmd__SerialPort(soap, "tmd:SerialPort", &a->_tmd__GetSerialPortsResponse::SerialPort, "tmd:SerialPort")) - continue; - } - soap_check_result(soap, "tmd:SerialPort"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetSerialPortsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetSerialPortsResponse, SOAP_TYPE__tmd__GetSerialPortsResponse, sizeof(_tmd__GetSerialPortsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetSerialPortsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetSerialPortsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetSerialPortsResponse *p; - size_t k = sizeof(_tmd__GetSerialPortsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetSerialPortsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetSerialPortsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetSerialPortsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetSerialPortsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetSerialPortsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetSerialPortsResponse(soap, tag ? tag : "tmd:GetSerialPortsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetSerialPortsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetSerialPortsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetSerialPortsResponse * SOAP_FMAC4 soap_get__tmd__GetSerialPortsResponse(struct soap *soap, _tmd__GetSerialPortsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetSerialPortsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetSerialPorts::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tmd__GetSerialPorts::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tmd__GetSerialPorts::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetSerialPorts(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPorts(struct soap *soap, const char *tag, int id, const _tmd__GetSerialPorts *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetSerialPorts), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetSerialPorts::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetSerialPorts(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetSerialPorts * SOAP_FMAC4 soap_in__tmd__GetSerialPorts(struct soap *soap, const char *tag, _tmd__GetSerialPorts *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetSerialPorts*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetSerialPorts, sizeof(_tmd__GetSerialPorts), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetSerialPorts) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetSerialPorts *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetSerialPorts *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetSerialPorts, SOAP_TYPE__tmd__GetSerialPorts, sizeof(_tmd__GetSerialPorts), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetSerialPorts * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPorts(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetSerialPorts(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetSerialPorts *p; - size_t k = sizeof(_tmd__GetSerialPorts); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetSerialPorts, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetSerialPorts); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetSerialPorts, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetSerialPorts location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetSerialPorts::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetSerialPorts(soap, tag ? tag : "tmd:GetSerialPorts", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetSerialPorts::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetSerialPorts(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetSerialPorts * SOAP_FMAC4 soap_get__tmd__GetSerialPorts(struct soap *soap, _tmd__GetSerialPorts *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetSerialPorts(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetDigitalInputConfigurationsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tmd__SetDigitalInputConfigurationsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tmd__SetDigitalInputConfigurationsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetDigitalInputConfigurationsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, const char *tag, int id, const _tmd__SetDigitalInputConfigurationsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetDigitalInputConfigurationsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetDigitalInputConfigurationsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetDigitalInputConfigurationsResponse * SOAP_FMAC4 soap_in__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, const char *tag, _tmd__SetDigitalInputConfigurationsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetDigitalInputConfigurationsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse, sizeof(_tmd__SetDigitalInputConfigurationsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetDigitalInputConfigurationsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SetDigitalInputConfigurationsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse, SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse, sizeof(_tmd__SetDigitalInputConfigurationsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetDigitalInputConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetDigitalInputConfigurationsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetDigitalInputConfigurationsResponse *p; - size_t k = sizeof(_tmd__SetDigitalInputConfigurationsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetDigitalInputConfigurationsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetDigitalInputConfigurationsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetDigitalInputConfigurationsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetDigitalInputConfigurationsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetDigitalInputConfigurationsResponse(soap, tag ? tag : "tmd:SetDigitalInputConfigurationsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetDigitalInputConfigurationsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetDigitalInputConfigurationsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetDigitalInputConfigurationsResponse * SOAP_FMAC4 soap_get__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, _tmd__SetDigitalInputConfigurationsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetDigitalInputConfigurationsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetDigitalInputConfigurations::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__DigitalInput(soap, &this->_tmd__SetDigitalInputConfigurations::DigitalInputs); -} - -void _tmd__SetDigitalInputConfigurations::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__DigitalInput(soap, &this->_tmd__SetDigitalInputConfigurations::DigitalInputs); -#endif -} - -int _tmd__SetDigitalInputConfigurations::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetDigitalInputConfigurations(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetDigitalInputConfigurations(struct soap *soap, const char *tag, int id, const _tmd__SetDigitalInputConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetDigitalInputConfigurations), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__DigitalInput(soap, "tmd:DigitalInputs", -1, &a->_tmd__SetDigitalInputConfigurations::DigitalInputs, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetDigitalInputConfigurations::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetDigitalInputConfigurations(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_in__tmd__SetDigitalInputConfigurations(struct soap *soap, const char *tag, _tmd__SetDigitalInputConfigurations *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetDigitalInputConfigurations*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetDigitalInputConfigurations, sizeof(_tmd__SetDigitalInputConfigurations), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetDigitalInputConfigurations) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetDigitalInputConfigurations *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__DigitalInput(soap, "tmd:DigitalInputs", &a->_tmd__SetDigitalInputConfigurations::DigitalInputs, "tt:DigitalInput")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tmd__SetDigitalInputConfigurations::DigitalInputs.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__SetDigitalInputConfigurations *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetDigitalInputConfigurations, SOAP_TYPE__tmd__SetDigitalInputConfigurations, sizeof(_tmd__SetDigitalInputConfigurations), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetDigitalInputConfigurations * SOAP_FMAC2 soap_instantiate__tmd__SetDigitalInputConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetDigitalInputConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetDigitalInputConfigurations *p; - size_t k = sizeof(_tmd__SetDigitalInputConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetDigitalInputConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetDigitalInputConfigurations); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetDigitalInputConfigurations, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetDigitalInputConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetDigitalInputConfigurations::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetDigitalInputConfigurations(soap, tag ? tag : "tmd:SetDigitalInputConfigurations", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetDigitalInputConfigurations::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetDigitalInputConfigurations(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_get__tmd__SetDigitalInputConfigurations(struct soap *soap, _tmd__SetDigitalInputConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetDigitalInputConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetDigitalInputConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions = NULL; -} - -void _tmd__GetDigitalInputConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__DigitalInputConfigurationInputOptions(soap, &this->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions); -#endif -} - -int _tmd__GetDigitalInputConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetDigitalInputConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetDigitalInputConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse), type)) - return soap->error; - if (a->DigitalInputOptions) - soap_element_result(soap, "tmd:DigitalInputOptions"); - if (!a->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions) - { if (soap_element_empty(soap, "tmd:DigitalInputOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotmd__DigitalInputConfigurationInputOptions(soap, "tmd:DigitalInputOptions", -1, &a->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetDigitalInputConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetDigitalInputConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, const char *tag, _tmd__GetDigitalInputConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetDigitalInputConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse, sizeof(_tmd__GetDigitalInputConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetDigitalInputConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_DigitalInputOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DigitalInputOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__DigitalInputConfigurationInputOptions(soap, "tmd:DigitalInputOptions", &a->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions, "tmd:DigitalInputConfigurationInputOptions")) - { soap_flag_DigitalInputOptions1--; - continue; - } - } - soap_check_result(soap, "tmd:DigitalInputOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetDigitalInputConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse, sizeof(_tmd__GetDigitalInputConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetDigitalInputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetDigitalInputConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetDigitalInputConfigurationOptionsResponse *p; - size_t k = sizeof(_tmd__GetDigitalInputConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetDigitalInputConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetDigitalInputConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetDigitalInputConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetDigitalInputConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetDigitalInputConfigurationOptionsResponse(soap, tag ? tag : "tmd:GetDigitalInputConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetDigitalInputConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetDigitalInputConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, _tmd__GetDigitalInputConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetDigitalInputConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetDigitalInputConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetDigitalInputConfigurationOptions::Token = NULL; -} - -void _tmd__GetDigitalInputConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_tmd__GetDigitalInputConfigurationOptions::Token); -#endif -} - -int _tmd__GetDigitalInputConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetDigitalInputConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *tag, int id, const _tmd__GetDigitalInputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tmd:Token", -1, &a->_tmd__GetDigitalInputConfigurationOptions::Token, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetDigitalInputConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetDigitalInputConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *tag, _tmd__GetDigitalInputConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetDigitalInputConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions, sizeof(_tmd__GetDigitalInputConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetDigitalInputConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Token1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tmd:Token", &a->_tmd__GetDigitalInputConfigurationOptions::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetDigitalInputConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions, sizeof(_tmd__GetDigitalInputConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetDigitalInputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetDigitalInputConfigurationOptions *p; - size_t k = sizeof(_tmd__GetDigitalInputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetDigitalInputConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetDigitalInputConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetDigitalInputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetDigitalInputConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetDigitalInputConfigurationOptions(soap, tag ? tag : "tmd:GetDigitalInputConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetDigitalInputConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetDigitalInputConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, _tmd__GetDigitalInputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetDigitalInputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetDigitalInputsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__DigitalInput(soap, &this->_tmd__GetDigitalInputsResponse::DigitalInputs); -} - -void _tmd__GetDigitalInputsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__DigitalInput(soap, &this->_tmd__GetDigitalInputsResponse::DigitalInputs); -#endif -} - -int _tmd__GetDigitalInputsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetDigitalInputsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetDigitalInputsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetDigitalInputsResponse), type)) - return soap->error; - soap_element_result(soap, "tmd:DigitalInputs"); - if (soap_out_std__vectorTemplateOfPointerTott__DigitalInput(soap, "tmd:DigitalInputs", -1, &a->_tmd__GetDigitalInputsResponse::DigitalInputs, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetDigitalInputsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetDigitalInputsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputsResponse * SOAP_FMAC4 soap_in__tmd__GetDigitalInputsResponse(struct soap *soap, const char *tag, _tmd__GetDigitalInputsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetDigitalInputsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetDigitalInputsResponse, sizeof(_tmd__GetDigitalInputsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetDigitalInputsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetDigitalInputsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__DigitalInput(soap, "tmd:DigitalInputs", &a->_tmd__GetDigitalInputsResponse::DigitalInputs, "tt:DigitalInput")) - continue; - } - soap_check_result(soap, "tmd:DigitalInputs"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetDigitalInputsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetDigitalInputsResponse, SOAP_TYPE__tmd__GetDigitalInputsResponse, sizeof(_tmd__GetDigitalInputsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetDigitalInputsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetDigitalInputsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetDigitalInputsResponse *p; - size_t k = sizeof(_tmd__GetDigitalInputsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetDigitalInputsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetDigitalInputsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetDigitalInputsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetDigitalInputsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetDigitalInputsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetDigitalInputsResponse(soap, tag ? tag : "tmd:GetDigitalInputsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetDigitalInputsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetDigitalInputsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputsResponse * SOAP_FMAC4 soap_get__tmd__GetDigitalInputsResponse(struct soap *soap, _tmd__GetDigitalInputsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetDigitalInputsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetDigitalInputs::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tmd__GetDigitalInputs::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tmd__GetDigitalInputs::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetDigitalInputs(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputs(struct soap *soap, const char *tag, int id, const _tmd__GetDigitalInputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetDigitalInputs), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetDigitalInputs::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetDigitalInputs(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputs * SOAP_FMAC4 soap_in__tmd__GetDigitalInputs(struct soap *soap, const char *tag, _tmd__GetDigitalInputs *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetDigitalInputs*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetDigitalInputs, sizeof(_tmd__GetDigitalInputs), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetDigitalInputs) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetDigitalInputs *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetDigitalInputs *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetDigitalInputs, SOAP_TYPE__tmd__GetDigitalInputs, sizeof(_tmd__GetDigitalInputs), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetDigitalInputs * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetDigitalInputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetDigitalInputs *p; - size_t k = sizeof(_tmd__GetDigitalInputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetDigitalInputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetDigitalInputs); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetDigitalInputs, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetDigitalInputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetDigitalInputs::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetDigitalInputs(soap, tag ? tag : "tmd:GetDigitalInputs", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetDigitalInputs::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetDigitalInputs(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetDigitalInputs * SOAP_FMAC4 soap_get__tmd__GetDigitalInputs(struct soap *soap, _tmd__GetDigitalInputs *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetDigitalInputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetRelayOutputSettingsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tmd__SetRelayOutputSettingsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tmd__SetRelayOutputSettingsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetRelayOutputSettingsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetRelayOutputSettingsResponse(struct soap *soap, const char *tag, int id, const _tmd__SetRelayOutputSettingsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetRelayOutputSettingsResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetRelayOutputSettingsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetRelayOutputSettingsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_in__tmd__SetRelayOutputSettingsResponse(struct soap *soap, const char *tag, _tmd__SetRelayOutputSettingsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetRelayOutputSettingsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetRelayOutputSettingsResponse, sizeof(_tmd__SetRelayOutputSettingsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetRelayOutputSettingsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetRelayOutputSettingsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SetRelayOutputSettingsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetRelayOutputSettingsResponse, SOAP_TYPE__tmd__SetRelayOutputSettingsResponse, sizeof(_tmd__SetRelayOutputSettingsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetRelayOutputSettingsResponse * SOAP_FMAC2 soap_instantiate__tmd__SetRelayOutputSettingsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetRelayOutputSettingsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetRelayOutputSettingsResponse *p; - size_t k = sizeof(_tmd__SetRelayOutputSettingsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetRelayOutputSettingsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetRelayOutputSettingsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetRelayOutputSettingsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetRelayOutputSettingsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetRelayOutputSettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetRelayOutputSettingsResponse(soap, tag ? tag : "tmd:SetRelayOutputSettingsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetRelayOutputSettingsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetRelayOutputSettingsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_get__tmd__SetRelayOutputSettingsResponse(struct soap *soap, _tmd__SetRelayOutputSettingsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetRelayOutputSettingsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetRelayOutputSettings::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SetRelayOutputSettings::RelayOutput = NULL; -} - -void _tmd__SetRelayOutputSettings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RelayOutput(soap, &this->_tmd__SetRelayOutputSettings::RelayOutput); -#endif -} - -int _tmd__SetRelayOutputSettings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetRelayOutputSettings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetRelayOutputSettings(struct soap *soap, const char *tag, int id, const _tmd__SetRelayOutputSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetRelayOutputSettings), type)) - return soap->error; - if (!a->_tmd__SetRelayOutputSettings::RelayOutput) - { if (soap_element_empty(soap, "tmd:RelayOutput", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RelayOutput(soap, "tmd:RelayOutput", -1, &a->_tmd__SetRelayOutputSettings::RelayOutput, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetRelayOutputSettings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetRelayOutputSettings(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_in__tmd__SetRelayOutputSettings(struct soap *soap, const char *tag, _tmd__SetRelayOutputSettings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetRelayOutputSettings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetRelayOutputSettings, sizeof(_tmd__SetRelayOutputSettings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetRelayOutputSettings) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetRelayOutputSettings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RelayOutput1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RelayOutput1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RelayOutput(soap, "tmd:RelayOutput", &a->_tmd__SetRelayOutputSettings::RelayOutput, "tt:RelayOutput")) - { soap_flag_RelayOutput1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__SetRelayOutputSettings::RelayOutput)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__SetRelayOutputSettings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetRelayOutputSettings, SOAP_TYPE__tmd__SetRelayOutputSettings, sizeof(_tmd__SetRelayOutputSettings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate__tmd__SetRelayOutputSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetRelayOutputSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetRelayOutputSettings *p; - size_t k = sizeof(_tmd__SetRelayOutputSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetRelayOutputSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetRelayOutputSettings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetRelayOutputSettings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetRelayOutputSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetRelayOutputSettings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetRelayOutputSettings(soap, tag ? tag : "tmd:SetRelayOutputSettings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetRelayOutputSettings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetRelayOutputSettings(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_get__tmd__SetRelayOutputSettings(struct soap *soap, _tmd__SetRelayOutputSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetRelayOutputSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioOutputConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfigurationOptionsResponse::__any); -} - -void _tmd__GetAudioOutputConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioOutputConfigurationOptions(soap, &this->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfigurationOptionsResponse::__any); -#endif -} - -int _tmd__GetAudioOutputConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioOutputConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetAudioOutputConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse), type)) - return soap->error; - if (a->AudioOutputOptions) - soap_element_result(soap, "tmd:AudioOutputOptions"); - if (!a->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions) - { if (soap_element_empty(soap, "tmd:AudioOutputOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioOutputConfigurationOptions(soap, "tmd:AudioOutputOptions", -1, &a->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioOutputConfigurationOptionsResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioOutputConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioOutputConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *tag, _tmd__GetAudioOutputConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioOutputConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse, sizeof(_tmd__GetAudioOutputConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioOutputConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioOutputOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioOutputOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioOutputConfigurationOptions(soap, "tmd:AudioOutputOptions", &a->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions, "tt:AudioOutputConfigurationOptions")) - { soap_flag_AudioOutputOptions1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioOutputConfigurationOptionsResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:AudioOutputOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioOutputConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse, sizeof(_tmd__GetAudioOutputConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioOutputConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioOutputConfigurationOptionsResponse *p; - size_t k = sizeof(_tmd__GetAudioOutputConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioOutputConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioOutputConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioOutputConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioOutputConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioOutputConfigurationOptionsResponse(soap, tag ? tag : "tmd:GetAudioOutputConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioOutputConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioOutputConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioOutputConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioOutputConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetAudioOutputConfigurationOptions::AudioOutputToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfigurationOptions::__any); -} - -void _tmd__GetAudioOutputConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetAudioOutputConfigurationOptions::AudioOutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetAudioOutputConfigurationOptions::AudioOutputToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfigurationOptions::__any); -#endif -} - -int _tmd__GetAudioOutputConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioOutputConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const _tmd__GetAudioOutputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:AudioOutputToken", -1, &a->_tmd__GetAudioOutputConfigurationOptions::AudioOutputToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioOutputConfigurationOptions::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioOutputConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioOutputConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, _tmd__GetAudioOutputConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioOutputConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions, sizeof(_tmd__GetAudioOutputConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioOutputConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioOutputToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:AudioOutputToken", &a->_tmd__GetAudioOutputConfigurationOptions::AudioOutputToken, "tt:ReferenceToken")) - { soap_flag_AudioOutputToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioOutputConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AudioOutputToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioOutputConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions, sizeof(_tmd__GetAudioOutputConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioOutputConfigurationOptions *p; - size_t k = sizeof(_tmd__GetAudioOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioOutputConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioOutputConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioOutputConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioOutputConfigurationOptions(soap, tag ? tag : "tmd:GetAudioOutputConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioOutputConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioOutputConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, _tmd__GetAudioOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioSourceConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfigurationOptionsResponse::__any); -} - -void _tmd__GetAudioSourceConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioSourceConfigurationOptions(soap, &this->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfigurationOptionsResponse::__any); -#endif -} - -int _tmd__GetAudioSourceConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioSourceConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetAudioSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse), type)) - return soap->error; - if (a->AudioSourceOptions) - soap_element_result(soap, "tmd:AudioSourceOptions"); - if (!a->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions) - { if (soap_element_empty(soap, "tmd:AudioSourceOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioSourceConfigurationOptions(soap, "tmd:AudioSourceOptions", -1, &a->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioSourceConfigurationOptionsResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioSourceConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioSourceConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, _tmd__GetAudioSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioSourceConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse, sizeof(_tmd__GetAudioSourceConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioSourceConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioSourceOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioSourceOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceConfigurationOptions(soap, "tmd:AudioSourceOptions", &a->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions, "tt:AudioSourceConfigurationOptions")) - { soap_flag_AudioSourceOptions1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioSourceConfigurationOptionsResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:AudioSourceOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioSourceConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse, sizeof(_tmd__GetAudioSourceConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioSourceConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioSourceConfigurationOptionsResponse *p; - size_t k = sizeof(_tmd__GetAudioSourceConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioSourceConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioSourceConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioSourceConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioSourceConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioSourceConfigurationOptionsResponse(soap, tag ? tag : "tmd:GetAudioSourceConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioSourceConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioSourceConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioSourceConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioSourceConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetAudioSourceConfigurationOptions::AudioSourceToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfigurationOptions::__any); -} - -void _tmd__GetAudioSourceConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetAudioSourceConfigurationOptions::AudioSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetAudioSourceConfigurationOptions::AudioSourceToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfigurationOptions::__any); -#endif -} - -int _tmd__GetAudioSourceConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioSourceConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const _tmd__GetAudioSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:AudioSourceToken", -1, &a->_tmd__GetAudioSourceConfigurationOptions::AudioSourceToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioSourceConfigurationOptions::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioSourceConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioSourceConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, _tmd__GetAudioSourceConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioSourceConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions, sizeof(_tmd__GetAudioSourceConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioSourceConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:AudioSourceToken", &a->_tmd__GetAudioSourceConfigurationOptions::AudioSourceToken, "tt:ReferenceToken")) - { soap_flag_AudioSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioSourceConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AudioSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioSourceConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions, sizeof(_tmd__GetAudioSourceConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioSourceConfigurationOptions *p; - size_t k = sizeof(_tmd__GetAudioSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioSourceConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioSourceConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioSourceConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioSourceConfigurationOptions(soap, tag ? tag : "tmd:GetAudioSourceConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioSourceConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioSourceConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, _tmd__GetAudioSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoOutputConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfigurationOptionsResponse::__any); -} - -void _tmd__GetVideoOutputConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoOutputConfigurationOptions(soap, &this->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfigurationOptionsResponse::__any); -#endif -} - -int _tmd__GetVideoOutputConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoOutputConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetVideoOutputConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse), type)) - return soap->error; - if (a->VideoOutputConfigurationOptions) - soap_element_result(soap, "tmd:VideoOutputConfigurationOptions"); - if (!a->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions) - { if (soap_element_empty(soap, "tmd:VideoOutputConfigurationOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoOutputConfigurationOptions(soap, "tmd:VideoOutputConfigurationOptions", -1, &a->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoOutputConfigurationOptionsResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoOutputConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoOutputConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, const char *tag, _tmd__GetVideoOutputConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoOutputConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse, sizeof(_tmd__GetVideoOutputConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoOutputConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutputConfigurationOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutputConfigurationOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoOutputConfigurationOptions(soap, "tmd:VideoOutputConfigurationOptions", &a->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions, "tt:VideoOutputConfigurationOptions")) - { soap_flag_VideoOutputConfigurationOptions1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoOutputConfigurationOptionsResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:VideoOutputConfigurationOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoOutputConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse, sizeof(_tmd__GetVideoOutputConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoOutputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoOutputConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoOutputConfigurationOptionsResponse *p; - size_t k = sizeof(_tmd__GetVideoOutputConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoOutputConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoOutputConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoOutputConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoOutputConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoOutputConfigurationOptionsResponse(soap, tag ? tag : "tmd:GetVideoOutputConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoOutputConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoOutputConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoOutputConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoOutputConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetVideoOutputConfigurationOptions::VideoOutputToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfigurationOptions::__any); -} - -void _tmd__GetVideoOutputConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetVideoOutputConfigurationOptions::VideoOutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetVideoOutputConfigurationOptions::VideoOutputToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfigurationOptions::__any); -#endif -} - -int _tmd__GetVideoOutputConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoOutputConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const _tmd__GetVideoOutputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:VideoOutputToken", -1, &a->_tmd__GetVideoOutputConfigurationOptions::VideoOutputToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoOutputConfigurationOptions::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoOutputConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoOutputConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *tag, _tmd__GetVideoOutputConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoOutputConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions, sizeof(_tmd__GetVideoOutputConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoOutputConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutputToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:VideoOutputToken", &a->_tmd__GetVideoOutputConfigurationOptions::VideoOutputToken, "tt:ReferenceToken")) - { soap_flag_VideoOutputToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoOutputConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutputToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoOutputConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions, sizeof(_tmd__GetVideoOutputConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoOutputConfigurationOptions *p; - size_t k = sizeof(_tmd__GetVideoOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoOutputConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoOutputConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoOutputConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoOutputConfigurationOptions(soap, tag ? tag : "tmd:GetVideoOutputConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoOutputConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoOutputConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, _tmd__GetVideoOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoSourceConfigurationOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfigurationOptionsResponse::__any); -} - -void _tmd__GetVideoSourceConfigurationOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoSourceConfigurationOptions(soap, &this->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfigurationOptionsResponse::__any); -#endif -} - -int _tmd__GetVideoSourceConfigurationOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoSourceConfigurationOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetVideoSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse), type)) - return soap->error; - if (a->VideoSourceConfigurationOptions) - soap_element_result(soap, "tmd:VideoSourceConfigurationOptions"); - if (!a->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions) - { if (soap_element_empty(soap, "tmd:VideoSourceConfigurationOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoSourceConfigurationOptions(soap, "tmd:VideoSourceConfigurationOptions", -1, &a->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoSourceConfigurationOptionsResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoSourceConfigurationOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoSourceConfigurationOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *tag, _tmd__GetVideoSourceConfigurationOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoSourceConfigurationOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse, sizeof(_tmd__GetVideoSourceConfigurationOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoSourceConfigurationOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceConfigurationOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceConfigurationOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfigurationOptions(soap, "tmd:VideoSourceConfigurationOptions", &a->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions, "tt:VideoSourceConfigurationOptions")) - { soap_flag_VideoSourceConfigurationOptions1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoSourceConfigurationOptionsResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:VideoSourceConfigurationOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoSourceConfigurationOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse, sizeof(_tmd__GetVideoSourceConfigurationOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoSourceConfigurationOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoSourceConfigurationOptionsResponse *p; - size_t k = sizeof(_tmd__GetVideoSourceConfigurationOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoSourceConfigurationOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoSourceConfigurationOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoSourceConfigurationOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoSourceConfigurationOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoSourceConfigurationOptionsResponse(soap, tag ? tag : "tmd:GetVideoSourceConfigurationOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoSourceConfigurationOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoSourceConfigurationOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoSourceConfigurationOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoSourceConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetVideoSourceConfigurationOptions::VideoSourceToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfigurationOptions::__any); -} - -void _tmd__GetVideoSourceConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetVideoSourceConfigurationOptions::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetVideoSourceConfigurationOptions::VideoSourceToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfigurationOptions::__any); -#endif -} - -int _tmd__GetVideoSourceConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoSourceConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const _tmd__GetVideoSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:VideoSourceToken", -1, &a->_tmd__GetVideoSourceConfigurationOptions::VideoSourceToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoSourceConfigurationOptions::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoSourceConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoSourceConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, _tmd__GetVideoSourceConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoSourceConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions, sizeof(_tmd__GetVideoSourceConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoSourceConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:VideoSourceToken", &a->_tmd__GetVideoSourceConfigurationOptions::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoSourceConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoSourceConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions, sizeof(_tmd__GetVideoSourceConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoSourceConfigurationOptions *p; - size_t k = sizeof(_tmd__GetVideoSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoSourceConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoSourceConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoSourceConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoSourceConfigurationOptions(soap, tag ? tag : "tmd:GetVideoSourceConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoSourceConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoSourceConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, _tmd__GetVideoSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetVideoOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoOutputConfigurationResponse::__any); -} - -void _tmd__SetVideoOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoOutputConfigurationResponse::__any); -#endif -} - -int _tmd__SetVideoOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetVideoOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__SetVideoOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetVideoOutputConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetVideoOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetVideoOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, const char *tag, _tmd__SetVideoOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetVideoOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse, sizeof(_tmd__SetVideoOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetVideoOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetVideoOutputConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SetVideoOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse, SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse, sizeof(_tmd__SetVideoOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetVideoOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetVideoOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetVideoOutputConfigurationResponse *p; - size_t k = sizeof(_tmd__SetVideoOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetVideoOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetVideoOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetVideoOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetVideoOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetVideoOutputConfigurationResponse(soap, tag ? tag : "tmd:SetVideoOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetVideoOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetVideoOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, _tmd__SetVideoOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetVideoOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetVideoOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SetVideoOutputConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_tmd__SetVideoOutputConfiguration::ForcePersistence); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoOutputConfiguration::__any); -} - -void _tmd__SetVideoOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoOutputConfiguration(soap, &this->_tmd__SetVideoOutputConfiguration::Configuration); - soap_embedded(soap, &this->_tmd__SetVideoOutputConfiguration::ForcePersistence, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoOutputConfiguration::__any); -#endif -} - -int _tmd__SetVideoOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetVideoOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoOutputConfiguration(struct soap *soap, const char *tag, int id, const _tmd__SetVideoOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetVideoOutputConfiguration), type)) - return soap->error; - if (!a->_tmd__SetVideoOutputConfiguration::Configuration) - { if (soap_element_empty(soap, "tmd:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoOutputConfiguration(soap, "tmd:Configuration", -1, &a->_tmd__SetVideoOutputConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "tmd:ForcePersistence", -1, &a->_tmd__SetVideoOutputConfiguration::ForcePersistence, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetVideoOutputConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetVideoOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetVideoOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_in__tmd__SetVideoOutputConfiguration(struct soap *soap, const char *tag, _tmd__SetVideoOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetVideoOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetVideoOutputConfiguration, sizeof(_tmd__SetVideoOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetVideoOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetVideoOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoOutputConfiguration(soap, "tmd:Configuration", &a->_tmd__SetVideoOutputConfiguration::Configuration, "tt:VideoOutputConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tmd:ForcePersistence", &a->_tmd__SetVideoOutputConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetVideoOutputConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__SetVideoOutputConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__SetVideoOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetVideoOutputConfiguration, SOAP_TYPE__tmd__SetVideoOutputConfiguration, sizeof(_tmd__SetVideoOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetVideoOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetVideoOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetVideoOutputConfiguration *p; - size_t k = sizeof(_tmd__SetVideoOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetVideoOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetVideoOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetVideoOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetVideoOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetVideoOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetVideoOutputConfiguration(soap, tag ? tag : "tmd:SetVideoOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetVideoOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetVideoOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_get__tmd__SetVideoOutputConfiguration(struct soap *soap, _tmd__SetVideoOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetVideoOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetVideoSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoSourceConfigurationResponse::__any); -} - -void _tmd__SetVideoSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoSourceConfigurationResponse::__any); -#endif -} - -int _tmd__SetVideoSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetVideoSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__SetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetVideoSourceConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetVideoSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetVideoSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, _tmd__SetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetVideoSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse, sizeof(_tmd__SetVideoSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetVideoSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetVideoSourceConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SetVideoSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse, SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse, sizeof(_tmd__SetVideoSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetVideoSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetVideoSourceConfigurationResponse *p; - size_t k = sizeof(_tmd__SetVideoSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetVideoSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetVideoSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetVideoSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetVideoSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetVideoSourceConfigurationResponse(soap, tag ? tag : "tmd:SetVideoSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetVideoSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetVideoSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, _tmd__SetVideoSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetVideoSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetVideoSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SetVideoSourceConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_tmd__SetVideoSourceConfiguration::ForcePersistence); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoSourceConfiguration::__any); -} - -void _tmd__SetVideoSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoSourceConfiguration(soap, &this->_tmd__SetVideoSourceConfiguration::Configuration); - soap_embedded(soap, &this->_tmd__SetVideoSourceConfiguration::ForcePersistence, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetVideoSourceConfiguration::__any); -#endif -} - -int _tmd__SetVideoSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetVideoSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const _tmd__SetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetVideoSourceConfiguration), type)) - return soap->error; - if (!a->_tmd__SetVideoSourceConfiguration::Configuration) - { if (soap_element_empty(soap, "tmd:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoSourceConfiguration(soap, "tmd:Configuration", -1, &a->_tmd__SetVideoSourceConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "tmd:ForcePersistence", -1, &a->_tmd__SetVideoSourceConfiguration::ForcePersistence, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetVideoSourceConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetVideoSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetVideoSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in__tmd__SetVideoSourceConfiguration(struct soap *soap, const char *tag, _tmd__SetVideoSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetVideoSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetVideoSourceConfiguration, sizeof(_tmd__SetVideoSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetVideoSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetVideoSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfiguration(soap, "tmd:Configuration", &a->_tmd__SetVideoSourceConfiguration::Configuration, "tt:VideoSourceConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tmd:ForcePersistence", &a->_tmd__SetVideoSourceConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetVideoSourceConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__SetVideoSourceConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__SetVideoSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetVideoSourceConfiguration, SOAP_TYPE__tmd__SetVideoSourceConfiguration, sizeof(_tmd__SetVideoSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetVideoSourceConfiguration *p; - size_t k = sizeof(_tmd__SetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetVideoSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetVideoSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetVideoSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetVideoSourceConfiguration(soap, tag ? tag : "tmd:SetVideoSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetVideoSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetVideoSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get__tmd__SetVideoSourceConfiguration(struct soap *soap, _tmd__SetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetAudioOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioOutputConfigurationResponse::__any); -} - -void _tmd__SetAudioOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioOutputConfigurationResponse::__any); -#endif -} - -int _tmd__SetAudioOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetAudioOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__SetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetAudioOutputConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetAudioOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetAudioOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, _tmd__SetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetAudioOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse, sizeof(_tmd__SetAudioOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetAudioOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetAudioOutputConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SetAudioOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse, SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse, sizeof(_tmd__SetAudioOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetAudioOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetAudioOutputConfigurationResponse *p; - size_t k = sizeof(_tmd__SetAudioOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetAudioOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetAudioOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetAudioOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetAudioOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetAudioOutputConfigurationResponse(soap, tag ? tag : "tmd:SetAudioOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetAudioOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetAudioOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, _tmd__SetAudioOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetAudioOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetAudioOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SetAudioOutputConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_tmd__SetAudioOutputConfiguration::ForcePersistence); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioOutputConfiguration::__any); -} - -void _tmd__SetAudioOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioOutputConfiguration(soap, &this->_tmd__SetAudioOutputConfiguration::Configuration); - soap_embedded(soap, &this->_tmd__SetAudioOutputConfiguration::ForcePersistence, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioOutputConfiguration::__any); -#endif -} - -int _tmd__SetAudioOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetAudioOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const _tmd__SetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetAudioOutputConfiguration), type)) - return soap->error; - if (!a->_tmd__SetAudioOutputConfiguration::Configuration) - { if (soap_element_empty(soap, "tmd:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioOutputConfiguration(soap, "tmd:Configuration", -1, &a->_tmd__SetAudioOutputConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "tmd:ForcePersistence", -1, &a->_tmd__SetAudioOutputConfiguration::ForcePersistence, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetAudioOutputConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetAudioOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetAudioOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in__tmd__SetAudioOutputConfiguration(struct soap *soap, const char *tag, _tmd__SetAudioOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetAudioOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetAudioOutputConfiguration, sizeof(_tmd__SetAudioOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetAudioOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetAudioOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioOutputConfiguration(soap, "tmd:Configuration", &a->_tmd__SetAudioOutputConfiguration::Configuration, "tt:AudioOutputConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tmd:ForcePersistence", &a->_tmd__SetAudioOutputConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetAudioOutputConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__SetAudioOutputConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__SetAudioOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetAudioOutputConfiguration, SOAP_TYPE__tmd__SetAudioOutputConfiguration, sizeof(_tmd__SetAudioOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetAudioOutputConfiguration *p; - size_t k = sizeof(_tmd__SetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetAudioOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetAudioOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetAudioOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetAudioOutputConfiguration(soap, tag ? tag : "tmd:SetAudioOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetAudioOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetAudioOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get__tmd__SetAudioOutputConfiguration(struct soap *soap, _tmd__SetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetAudioSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioSourceConfigurationResponse::__any); -} - -void _tmd__SetAudioSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioSourceConfigurationResponse::__any); -#endif -} - -int _tmd__SetAudioSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetAudioSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__SetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetAudioSourceConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetAudioSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetAudioSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, _tmd__SetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetAudioSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse, sizeof(_tmd__SetAudioSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetAudioSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetAudioSourceConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__SetAudioSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse, SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse, sizeof(_tmd__SetAudioSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetAudioSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetAudioSourceConfigurationResponse *p; - size_t k = sizeof(_tmd__SetAudioSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetAudioSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetAudioSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetAudioSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetAudioSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetAudioSourceConfigurationResponse(soap, tag ? tag : "tmd:SetAudioSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetAudioSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetAudioSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, _tmd__SetAudioSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetAudioSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__SetAudioSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__SetAudioSourceConfiguration::Configuration = NULL; - soap_default_bool(soap, &this->_tmd__SetAudioSourceConfiguration::ForcePersistence); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioSourceConfiguration::__any); -} - -void _tmd__SetAudioSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioSourceConfiguration(soap, &this->_tmd__SetAudioSourceConfiguration::Configuration); - soap_embedded(soap, &this->_tmd__SetAudioSourceConfiguration::ForcePersistence, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__SetAudioSourceConfiguration::__any); -#endif -} - -int _tmd__SetAudioSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__SetAudioSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const _tmd__SetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__SetAudioSourceConfiguration), type)) - return soap->error; - if (!a->_tmd__SetAudioSourceConfiguration::Configuration) - { if (soap_element_empty(soap, "tmd:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioSourceConfiguration(soap, "tmd:Configuration", -1, &a->_tmd__SetAudioSourceConfiguration::Configuration, "")) - return soap->error; - if (soap_out_bool(soap, "tmd:ForcePersistence", -1, &a->_tmd__SetAudioSourceConfiguration::ForcePersistence, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__SetAudioSourceConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__SetAudioSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__SetAudioSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in__tmd__SetAudioSourceConfiguration(struct soap *soap, const char *tag, _tmd__SetAudioSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__SetAudioSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__SetAudioSourceConfiguration, sizeof(_tmd__SetAudioSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__SetAudioSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__SetAudioSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_ForcePersistence1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceConfiguration(soap, "tmd:Configuration", &a->_tmd__SetAudioSourceConfiguration::Configuration, "tt:AudioSourceConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_ForcePersistence1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tmd:ForcePersistence", &a->_tmd__SetAudioSourceConfiguration::ForcePersistence, "xsd:boolean")) - { soap_flag_ForcePersistence1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__SetAudioSourceConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__SetAudioSourceConfiguration::Configuration || soap_flag_ForcePersistence1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__SetAudioSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__SetAudioSourceConfiguration, SOAP_TYPE__tmd__SetAudioSourceConfiguration, sizeof(_tmd__SetAudioSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__SetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__SetAudioSourceConfiguration *p; - size_t k = sizeof(_tmd__SetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__SetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__SetAudioSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__SetAudioSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__SetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__SetAudioSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__SetAudioSourceConfiguration(soap, tag ? tag : "tmd:SetAudioSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__SetAudioSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__SetAudioSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get__tmd__SetAudioSourceConfiguration(struct soap *soap, _tmd__SetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__SetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfigurationResponse::__any); -} - -void _tmd__GetVideoOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoOutputConfiguration(soap, &this->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfigurationResponse::__any); -#endif -} - -int _tmd__GetVideoOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__GetVideoOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse), type)) - return soap->error; - if (a->VideoOutputConfiguration) - soap_element_result(soap, "tmd:VideoOutputConfiguration"); - if (!a->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration) - { if (soap_element_empty(soap, "tmd:VideoOutputConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoOutputConfiguration(soap, "tmd:VideoOutputConfiguration", -1, &a->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoOutputConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, const char *tag, _tmd__GetVideoOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse, sizeof(_tmd__GetVideoOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutputConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutputConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoOutputConfiguration(soap, "tmd:VideoOutputConfiguration", &a->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration, "tt:VideoOutputConfiguration")) - { soap_flag_VideoOutputConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoOutputConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:VideoOutputConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse, SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse, sizeof(_tmd__GetVideoOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoOutputConfigurationResponse *p; - size_t k = sizeof(_tmd__GetVideoOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoOutputConfigurationResponse(soap, tag ? tag : "tmd:GetVideoOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetVideoOutputConfiguration::VideoOutputToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfiguration::__any); -} - -void _tmd__GetVideoOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetVideoOutputConfiguration::VideoOutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetVideoOutputConfiguration::VideoOutputToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoOutputConfiguration::__any); -#endif -} - -int _tmd__GetVideoOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfiguration(struct soap *soap, const char *tag, int id, const _tmd__GetVideoOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoOutputConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:VideoOutputToken", -1, &a->_tmd__GetVideoOutputConfiguration::VideoOutputToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoOutputConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfiguration(struct soap *soap, const char *tag, _tmd__GetVideoOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoOutputConfiguration, sizeof(_tmd__GetVideoOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoOutputToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:VideoOutputToken", &a->_tmd__GetVideoOutputConfiguration::VideoOutputToken, "tt:ReferenceToken")) - { soap_flag_VideoOutputToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoOutputConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoOutputToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoOutputConfiguration, SOAP_TYPE__tmd__GetVideoOutputConfiguration, sizeof(_tmd__GetVideoOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoOutputConfiguration *p; - size_t k = sizeof(_tmd__GetVideoOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoOutputConfiguration(soap, tag ? tag : "tmd:GetVideoOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfiguration(struct soap *soap, _tmd__GetVideoOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfigurationResponse::__any); -} - -void _tmd__GetVideoSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoSourceConfiguration(soap, &this->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfigurationResponse::__any); -#endif -} - -int _tmd__GetVideoSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__GetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse), type)) - return soap->error; - if (a->VideoSourceConfiguration) - soap_element_result(soap, "tmd:VideoSourceConfiguration"); - if (!a->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration) - { if (soap_element_empty(soap, "tmd:VideoSourceConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoSourceConfiguration(soap, "tmd:VideoSourceConfiguration", -1, &a->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoSourceConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, const char *tag, _tmd__GetVideoSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse, sizeof(_tmd__GetVideoSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfiguration(soap, "tmd:VideoSourceConfiguration", &a->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration, "tt:VideoSourceConfiguration")) - { soap_flag_VideoSourceConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoSourceConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:VideoSourceConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse, SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse, sizeof(_tmd__GetVideoSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoSourceConfigurationResponse *p; - size_t k = sizeof(_tmd__GetVideoSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoSourceConfigurationResponse(soap, tag ? tag : "tmd:GetVideoSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetVideoSourceConfiguration::VideoSourceToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfiguration::__any); -} - -void _tmd__GetVideoSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetVideoSourceConfiguration::VideoSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetVideoSourceConfiguration::VideoSourceToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetVideoSourceConfiguration::__any); -#endif -} - -int _tmd__GetVideoSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const _tmd__GetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:VideoSourceToken", -1, &a->_tmd__GetVideoSourceConfiguration::VideoSourceToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetVideoSourceConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfiguration(struct soap *soap, const char *tag, _tmd__GetVideoSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoSourceConfiguration, sizeof(_tmd__GetVideoSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_VideoSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:VideoSourceToken", &a->_tmd__GetVideoSourceConfiguration::VideoSourceToken, "tt:ReferenceToken")) - { soap_flag_VideoSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetVideoSourceConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_VideoSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetVideoSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoSourceConfiguration, SOAP_TYPE__tmd__GetVideoSourceConfiguration, sizeof(_tmd__GetVideoSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoSourceConfiguration *p; - size_t k = sizeof(_tmd__GetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoSourceConfiguration(soap, tag ? tag : "tmd:GetVideoSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfiguration(struct soap *soap, _tmd__GetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioOutputConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfigurationResponse::__any); -} - -void _tmd__GetAudioOutputConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioOutputConfiguration(soap, &this->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfigurationResponse::__any); -#endif -} - -int _tmd__GetAudioOutputConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioOutputConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__GetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse), type)) - return soap->error; - if (a->AudioOutputConfiguration) - soap_element_result(soap, "tmd:AudioOutputConfiguration"); - if (!a->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration) - { if (soap_element_empty(soap, "tmd:AudioOutputConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioOutputConfiguration(soap, "tmd:AudioOutputConfiguration", -1, &a->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioOutputConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioOutputConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioOutputConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, const char *tag, _tmd__GetAudioOutputConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioOutputConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse, sizeof(_tmd__GetAudioOutputConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioOutputConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioOutputConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioOutputConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioOutputConfiguration(soap, "tmd:AudioOutputConfiguration", &a->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration, "tt:AudioOutputConfiguration")) - { soap_flag_AudioOutputConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioOutputConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:AudioOutputConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioOutputConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse, SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse, sizeof(_tmd__GetAudioOutputConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioOutputConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioOutputConfigurationResponse *p; - size_t k = sizeof(_tmd__GetAudioOutputConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioOutputConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioOutputConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioOutputConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioOutputConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioOutputConfigurationResponse(soap, tag ? tag : "tmd:GetAudioOutputConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioOutputConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioOutputConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioOutputConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetAudioOutputConfiguration::AudioOutputToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfiguration::__any); -} - -void _tmd__GetAudioOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetAudioOutputConfiguration::AudioOutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetAudioOutputConfiguration::AudioOutputToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioOutputConfiguration::__any); -#endif -} - -int _tmd__GetAudioOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const _tmd__GetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioOutputConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:AudioOutputToken", -1, &a->_tmd__GetAudioOutputConfiguration::AudioOutputToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioOutputConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfiguration(struct soap *soap, const char *tag, _tmd__GetAudioOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioOutputConfiguration, sizeof(_tmd__GetAudioOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioOutputToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:AudioOutputToken", &a->_tmd__GetAudioOutputConfiguration::AudioOutputToken, "tt:ReferenceToken")) - { soap_flag_AudioOutputToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioOutputConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AudioOutputToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioOutputConfiguration, SOAP_TYPE__tmd__GetAudioOutputConfiguration, sizeof(_tmd__GetAudioOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioOutputConfiguration *p; - size_t k = sizeof(_tmd__GetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioOutputConfiguration(soap, tag ? tag : "tmd:GetAudioOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfiguration(struct soap *soap, _tmd__GetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioSourceConfigurationResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfigurationResponse::__any); -} - -void _tmd__GetAudioSourceConfigurationResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioSourceConfiguration(soap, &this->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfigurationResponse::__any); -#endif -} - -int _tmd__GetAudioSourceConfigurationResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioSourceConfigurationResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, int id, const _tmd__GetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse), type)) - return soap->error; - if (a->AudioSourceConfiguration) - soap_element_result(soap, "tmd:AudioSourceConfiguration"); - if (!a->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration) - { if (soap_element_empty(soap, "tmd:AudioSourceConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AudioSourceConfiguration(soap, "tmd:AudioSourceConfiguration", -1, &a->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioSourceConfigurationResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioSourceConfigurationResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioSourceConfigurationResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, const char *tag, _tmd__GetAudioSourceConfigurationResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioSourceConfigurationResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse, sizeof(_tmd__GetAudioSourceConfigurationResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioSourceConfigurationResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioSourceConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioSourceConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceConfiguration(soap, "tmd:AudioSourceConfiguration", &a->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration, "tt:AudioSourceConfiguration")) - { soap_flag_AudioSourceConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioSourceConfigurationResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tmd:AudioSourceConfiguration"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioSourceConfigurationResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse, SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse, sizeof(_tmd__GetAudioSourceConfigurationResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioSourceConfigurationResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioSourceConfigurationResponse *p; - size_t k = sizeof(_tmd__GetAudioSourceConfigurationResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioSourceConfigurationResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioSourceConfigurationResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioSourceConfigurationResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioSourceConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioSourceConfigurationResponse(soap, tag ? tag : "tmd:GetAudioSourceConfigurationResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioSourceConfigurationResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioSourceConfigurationResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioSourceConfigurationResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetAudioSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->_tmd__GetAudioSourceConfiguration::AudioSourceToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfiguration::__any); -} - -void _tmd__GetAudioSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tmd__GetAudioSourceConfiguration::AudioSourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->_tmd__GetAudioSourceConfiguration::AudioSourceToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tmd__GetAudioSourceConfiguration::__any); -#endif -} - -int _tmd__GetAudioSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetAudioSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const _tmd__GetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetAudioSourceConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tmd:AudioSourceToken", -1, &a->_tmd__GetAudioSourceConfiguration::AudioSourceToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tmd__GetAudioSourceConfiguration::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetAudioSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetAudioSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfiguration(struct soap *soap, const char *tag, _tmd__GetAudioSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetAudioSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetAudioSourceConfiguration, sizeof(_tmd__GetAudioSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetAudioSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetAudioSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_AudioSourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tmd:AudioSourceToken", &a->_tmd__GetAudioSourceConfiguration::AudioSourceToken, "tt:ReferenceToken")) - { soap_flag_AudioSourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tmd__GetAudioSourceConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AudioSourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetAudioSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetAudioSourceConfiguration, SOAP_TYPE__tmd__GetAudioSourceConfiguration, sizeof(_tmd__GetAudioSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetAudioSourceConfiguration *p; - size_t k = sizeof(_tmd__GetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetAudioSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetAudioSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetAudioSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetAudioSourceConfiguration(soap, tag ? tag : "tmd:GetAudioSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetAudioSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetAudioSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfiguration(struct soap *soap, _tmd__GetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoOutputsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoOutput(soap, &this->_tmd__GetVideoOutputsResponse::VideoOutputs); -} - -void _tmd__GetVideoOutputsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoOutput(soap, &this->_tmd__GetVideoOutputsResponse::VideoOutputs); -#endif -} - -int _tmd__GetVideoOutputsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoOutputsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetVideoOutputsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoOutputsResponse), type)) - return soap->error; - soap_element_result(soap, "tmd:VideoOutputs"); - if (soap_out_std__vectorTemplateOfPointerTott__VideoOutput(soap, "tmd:VideoOutputs", -1, &a->_tmd__GetVideoOutputsResponse::VideoOutputs, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoOutputsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoOutputsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputsResponse * SOAP_FMAC4 soap_in__tmd__GetVideoOutputsResponse(struct soap *soap, const char *tag, _tmd__GetVideoOutputsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoOutputsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoOutputsResponse, sizeof(_tmd__GetVideoOutputsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoOutputsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoOutputsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoOutput(soap, "tmd:VideoOutputs", &a->_tmd__GetVideoOutputsResponse::VideoOutputs, "tt:VideoOutput")) - continue; - } - soap_check_result(soap, "tmd:VideoOutputs"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetVideoOutputsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoOutputsResponse, SOAP_TYPE__tmd__GetVideoOutputsResponse, sizeof(_tmd__GetVideoOutputsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoOutputsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoOutputsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoOutputsResponse *p; - size_t k = sizeof(_tmd__GetVideoOutputsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoOutputsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoOutputsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoOutputsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoOutputsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoOutputsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoOutputsResponse(soap, tag ? tag : "tmd:GetVideoOutputsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoOutputsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoOutputsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputsResponse * SOAP_FMAC4 soap_get__tmd__GetVideoOutputsResponse(struct soap *soap, _tmd__GetVideoOutputsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoOutputsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetVideoOutputs::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tmd__GetVideoOutputs::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tmd__GetVideoOutputs::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetVideoOutputs(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputs(struct soap *soap, const char *tag, int id, const _tmd__GetVideoOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetVideoOutputs), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetVideoOutputs::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetVideoOutputs(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputs * SOAP_FMAC4 soap_in__tmd__GetVideoOutputs(struct soap *soap, const char *tag, _tmd__GetVideoOutputs *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetVideoOutputs*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetVideoOutputs, sizeof(_tmd__GetVideoOutputs), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetVideoOutputs) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetVideoOutputs *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetVideoOutputs *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetVideoOutputs, SOAP_TYPE__tmd__GetVideoOutputs, sizeof(_tmd__GetVideoOutputs), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetVideoOutputs * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetVideoOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetVideoOutputs *p; - size_t k = sizeof(_tmd__GetVideoOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetVideoOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetVideoOutputs); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetVideoOutputs, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetVideoOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetVideoOutputs::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetVideoOutputs(soap, tag ? tag : "tmd:GetVideoOutputs", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetVideoOutputs::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetVideoOutputs(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetVideoOutputs * SOAP_FMAC4 soap_get__tmd__GetVideoOutputs(struct soap *soap, _tmd__GetVideoOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetVideoOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetRelayOutputOptionsResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(soap, &this->_tmd__GetRelayOutputOptionsResponse::RelayOutputOptions); -} - -void _tmd__GetRelayOutputOptionsResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(soap, &this->_tmd__GetRelayOutputOptionsResponse::RelayOutputOptions); -#endif -} - -int _tmd__GetRelayOutputOptionsResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetRelayOutputOptionsResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetRelayOutputOptionsResponse(struct soap *soap, const char *tag, int id, const _tmd__GetRelayOutputOptionsResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetRelayOutputOptionsResponse), type)) - return soap->error; - soap_element_result(soap, "tmd:RelayOutputOptions"); - if (soap_out_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(soap, "tmd:RelayOutputOptions", -1, &a->_tmd__GetRelayOutputOptionsResponse::RelayOutputOptions, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetRelayOutputOptionsResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetRelayOutputOptionsResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetRelayOutputOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetRelayOutputOptionsResponse(struct soap *soap, const char *tag, _tmd__GetRelayOutputOptionsResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetRelayOutputOptionsResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetRelayOutputOptionsResponse, sizeof(_tmd__GetRelayOutputOptionsResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetRelayOutputOptionsResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetRelayOutputOptionsResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(soap, "tmd:RelayOutputOptions", &a->_tmd__GetRelayOutputOptionsResponse::RelayOutputOptions, "tmd:RelayOutputOptions")) - continue; - } - soap_check_result(soap, "tmd:RelayOutputOptions"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetRelayOutputOptionsResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetRelayOutputOptionsResponse, SOAP_TYPE__tmd__GetRelayOutputOptionsResponse, sizeof(_tmd__GetRelayOutputOptionsResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetRelayOutputOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetRelayOutputOptionsResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetRelayOutputOptionsResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetRelayOutputOptionsResponse *p; - size_t k = sizeof(_tmd__GetRelayOutputOptionsResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetRelayOutputOptionsResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetRelayOutputOptionsResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetRelayOutputOptionsResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetRelayOutputOptionsResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetRelayOutputOptionsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetRelayOutputOptionsResponse(soap, tag ? tag : "tmd:GetRelayOutputOptionsResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetRelayOutputOptionsResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetRelayOutputOptionsResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetRelayOutputOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetRelayOutputOptionsResponse(struct soap *soap, _tmd__GetRelayOutputOptionsResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetRelayOutputOptionsResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetRelayOutputOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetRelayOutputOptions::RelayOutputToken = NULL; -} - -void _tmd__GetRelayOutputOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ReferenceToken(soap, &this->_tmd__GetRelayOutputOptions::RelayOutputToken); -#endif -} - -int _tmd__GetRelayOutputOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetRelayOutputOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetRelayOutputOptions(struct soap *soap, const char *tag, int id, const _tmd__GetRelayOutputOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetRelayOutputOptions), type)) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tmd:RelayOutputToken", -1, &a->_tmd__GetRelayOutputOptions::RelayOutputToken, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetRelayOutputOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetRelayOutputOptions(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_in__tmd__GetRelayOutputOptions(struct soap *soap, const char *tag, _tmd__GetRelayOutputOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetRelayOutputOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetRelayOutputOptions, sizeof(_tmd__GetRelayOutputOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetRelayOutputOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetRelayOutputOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_RelayOutputToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RelayOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tmd:RelayOutputToken", &a->_tmd__GetRelayOutputOptions::RelayOutputToken, "tt:ReferenceToken")) - { soap_flag_RelayOutputToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetRelayOutputOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetRelayOutputOptions, SOAP_TYPE__tmd__GetRelayOutputOptions, sizeof(_tmd__GetRelayOutputOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetRelayOutputOptions * SOAP_FMAC2 soap_instantiate__tmd__GetRelayOutputOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetRelayOutputOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetRelayOutputOptions *p; - size_t k = sizeof(_tmd__GetRelayOutputOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetRelayOutputOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetRelayOutputOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetRelayOutputOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetRelayOutputOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetRelayOutputOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetRelayOutputOptions(soap, tag ? tag : "tmd:GetRelayOutputOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetRelayOutputOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetRelayOutputOptions(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_get__tmd__GetRelayOutputOptions(struct soap *soap, _tmd__GetRelayOutputOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetRelayOutputOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tmd__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _tmd__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__Capabilities(soap, &this->_tmd__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _tmd__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tmd__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tmd:Capabilities"); - if (!a->_tmd__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tmd:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotmd__Capabilities(soap, "tmd:Capabilities", -1, &a->_tmd__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tmd__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _tmd__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetServiceCapabilitiesResponse, sizeof(_tmd__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__Capabilities(soap, "tmd:Capabilities", &a->_tmd__GetServiceCapabilitiesResponse::Capabilities, "tmd:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tmd:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tmd__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tmd__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetServiceCapabilitiesResponse, SOAP_TYPE__tmd__GetServiceCapabilitiesResponse, sizeof(_tmd__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tmd__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_tmd__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetServiceCapabilitiesResponse(soap, tag ? tag : "tmd:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tmd__GetServiceCapabilitiesResponse(struct soap *soap, _tmd__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tmd__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tmd__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tmd__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tmd__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _tmd__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tmd__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tmd__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tmd__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tmd__GetServiceCapabilities * SOAP_FMAC4 soap_in__tmd__GetServiceCapabilities(struct soap *soap, const char *tag, _tmd__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tmd__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tmd__GetServiceCapabilities, sizeof(_tmd__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tmd__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tmd__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tmd__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tmd__GetServiceCapabilities, SOAP_TYPE__tmd__GetServiceCapabilities, sizeof(_tmd__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tmd__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tmd__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tmd__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tmd__GetServiceCapabilities *p; - size_t k = sizeof(_tmd__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tmd__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tmd__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tmd__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tmd__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tmd__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tmd__GetServiceCapabilities(soap, tag ? tag : "tmd:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tmd__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tmd__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tmd__GetServiceCapabilities * SOAP_FMAC4 soap_get__tmd__GetServiceCapabilities(struct soap *soap, _tmd__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tmd__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__ParityBitList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftmd__ParityBit(soap, &this->tmd__ParityBitList::Items); -} - -void tmd__ParityBitList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftmd__ParityBit(soap, &this->tmd__ParityBitList::Items); -#endif -} - -int tmd__ParityBitList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__ParityBitList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__ParityBitList(struct soap *soap, const char *tag, int id, const tmd__ParityBitList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__ParityBitList), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftmd__ParityBit(soap, "tmd:Items", -1, &a->tmd__ParityBitList::Items, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__ParityBitList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__ParityBitList(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__ParityBitList * SOAP_FMAC4 soap_in_tmd__ParityBitList(struct soap *soap, const char *tag, tmd__ParityBitList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__ParityBitList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__ParityBitList, sizeof(tmd__ParityBitList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__ParityBitList) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__ParityBitList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftmd__ParityBit(soap, "tmd:Items", &a->tmd__ParityBitList::Items, "tmd:ParityBit")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tmd__ParityBitList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__ParityBitList, SOAP_TYPE_tmd__ParityBitList, sizeof(tmd__ParityBitList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__ParityBitList * SOAP_FMAC2 soap_instantiate_tmd__ParityBitList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__ParityBitList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__ParityBitList *p; - size_t k = sizeof(tmd__ParityBitList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__ParityBitList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__ParityBitList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__ParityBitList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__ParityBitList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__ParityBitList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__ParityBitList(soap, tag ? tag : "tmd:ParityBitList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__ParityBitList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__ParityBitList(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__ParityBitList * SOAP_FMAC4 soap_get_tmd__ParityBitList(struct soap *soap, tmd__ParityBitList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__ParityBitList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__SerialPortConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tmd__SerialPortConfigurationOptions::tt__IntList = 0; - soap_default_int(soap, &this->tmd__SerialPortConfigurationOptions::CharacterLengthList); - this->tmd__SerialPortConfigurationOptions::tt__FloatList = 2; - soap_default_int(soap, &this->tmd__SerialPortConfigurationOptions::__any); - soap_default_tt__ReferenceToken(soap, &this->tmd__SerialPortConfigurationOptions::token); - soap_default_xsd__anyAttribute(soap, &this->tmd__SerialPortConfigurationOptions::__anyAttribute); -} - -void tmd__SerialPortConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tmd__SerialPortConfigurationOptions::tt__IntList, SOAP_TYPE_int); - soap_embedded(soap, &this->tmd__SerialPortConfigurationOptions::CharacterLengthList, SOAP_TYPE_int); - soap_embedded(soap, &this->tmd__SerialPortConfigurationOptions::tt__FloatList, SOAP_TYPE_int); - soap_embedded(soap, &this->tmd__SerialPortConfigurationOptions::__any, SOAP_TYPE_int); -#endif -} - -int tmd__SerialPortConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__SerialPortConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortConfigurationOptions(struct soap *soap, const char *tag, int id, const tmd__SerialPortConfigurationOptions *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tmd__SerialPortConfigurationOptions*)a)->token), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tmd__SerialPortConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__SerialPortConfigurationOptions), type)) - return soap->error; - if (soap_out_int(soap, "tt:IntList", -1, &a->tmd__SerialPortConfigurationOptions::tt__IntList, "")) - return soap->error; - if (soap_out_int(soap, "tmd:CharacterLengthList", -1, &a->tmd__SerialPortConfigurationOptions::CharacterLengthList, "")) - return soap->error; - if (soap_out_int(soap, "tt:FloatList", -1, &a->tmd__SerialPortConfigurationOptions::tt__FloatList, "")) - return soap->error; - if (soap_out_int(soap, "-any", -1, &a->tmd__SerialPortConfigurationOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__SerialPortConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__SerialPortConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__SerialPortConfigurationOptions * SOAP_FMAC4 soap_in_tmd__SerialPortConfigurationOptions(struct soap *soap, const char *tag, tmd__SerialPortConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__SerialPortConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__SerialPortConfigurationOptions, sizeof(tmd__SerialPortConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__SerialPortConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__SerialPortConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tmd__SerialPortConfigurationOptions*)a)->token)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tmd__SerialPortConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_tt__IntList1 = 1; - size_t soap_flag_CharacterLengthList1 = 1; - size_t soap_flag_tt__FloatList1 = 1; - size_t soap_flag___any1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tt__IntList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:IntList", &a->tmd__SerialPortConfigurationOptions::tt__IntList, "xsd:int") || soap->error == SOAP_EMPTY) - { soap_flag_tt__IntList1--; - continue; - } - } - if (soap_flag_CharacterLengthList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tmd:CharacterLengthList", &a->tmd__SerialPortConfigurationOptions::CharacterLengthList, "xsd:int")) - { soap_flag_CharacterLengthList1--; - continue; - } - } - if (soap_flag_tt__FloatList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:FloatList", &a->tmd__SerialPortConfigurationOptions::tt__FloatList, "xsd:int") || soap->error == SOAP_EMPTY) - { soap_flag_tt__FloatList1--; - continue; - } - } - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "-any", &a->tmd__SerialPortConfigurationOptions::__any, "xsd:int")) - { soap_flag___any1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_tt__IntList1 > 0 || soap_flag_CharacterLengthList1 > 0 || soap_flag_tt__FloatList1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tmd__SerialPortConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__SerialPortConfigurationOptions, SOAP_TYPE_tmd__SerialPortConfigurationOptions, sizeof(tmd__SerialPortConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__SerialPortConfigurationOptions * SOAP_FMAC2 soap_instantiate_tmd__SerialPortConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__SerialPortConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__SerialPortConfigurationOptions *p; - size_t k = sizeof(tmd__SerialPortConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__SerialPortConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__SerialPortConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__SerialPortConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__SerialPortConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__SerialPortConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__SerialPortConfigurationOptions(soap, tag ? tag : "tmd:SerialPortConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__SerialPortConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__SerialPortConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__SerialPortConfigurationOptions * SOAP_FMAC4 soap_get_tmd__SerialPortConfigurationOptions(struct soap *soap, tmd__SerialPortConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__SerialPortConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__SerialPortConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tmd__SerialPortConfiguration::BaudRate); - soap_default_tmd__ParityBit(soap, &this->tmd__SerialPortConfiguration::ParityBit); - soap_default_int(soap, &this->tmd__SerialPortConfiguration::CharacterLength); - soap_default_float(soap, &this->tmd__SerialPortConfiguration::StopBit); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__SerialPortConfiguration::__any); - soap_default_tt__ReferenceToken(soap, &this->tmd__SerialPortConfiguration::token); - soap_default_tmd__SerialPortType(soap, &this->tmd__SerialPortConfiguration::type); - soap_default_xsd__anyAttribute(soap, &this->tmd__SerialPortConfiguration::__anyAttribute); -} - -void tmd__SerialPortConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tmd__SerialPortConfiguration::BaudRate, SOAP_TYPE_int); - soap_embedded(soap, &this->tmd__SerialPortConfiguration::CharacterLength, SOAP_TYPE_int); - soap_embedded(soap, &this->tmd__SerialPortConfiguration::StopBit, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__SerialPortConfiguration::__any); -#endif -} - -int tmd__SerialPortConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__SerialPortConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortConfiguration(struct soap *soap, const char *tag, int id, const tmd__SerialPortConfiguration *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tmd__SerialPortConfiguration*)a)->token), 1); - soap_set_attr(soap, "type", soap_tmd__SerialPortType2s(soap, ((tmd__SerialPortConfiguration*)a)->type), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tmd__SerialPortConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__SerialPortConfiguration), type)) - return soap->error; - if (soap_out_int(soap, "tmd:BaudRate", -1, &a->tmd__SerialPortConfiguration::BaudRate, "")) - return soap->error; - if (soap_out_tmd__ParityBit(soap, "tmd:ParityBit", -1, &a->tmd__SerialPortConfiguration::ParityBit, "")) - return soap->error; - if (soap_out_int(soap, "tmd:CharacterLength", -1, &a->tmd__SerialPortConfiguration::CharacterLength, "")) - return soap->error; - if (soap_out_float(soap, "tmd:StopBit", -1, &a->tmd__SerialPortConfiguration::StopBit, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tmd__SerialPortConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__SerialPortConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__SerialPortConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__SerialPortConfiguration * SOAP_FMAC4 soap_in_tmd__SerialPortConfiguration(struct soap *soap, const char *tag, tmd__SerialPortConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__SerialPortConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__SerialPortConfiguration, sizeof(tmd__SerialPortConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__SerialPortConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__SerialPortConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tmd__SerialPortConfiguration*)a)->token)) - return NULL; - if (soap_s2tmd__SerialPortType(soap, soap_attr_value(soap, "type", 5, 1), &((tmd__SerialPortConfiguration*)a)->type)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tmd__SerialPortConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BaudRate1 = 1; - size_t soap_flag_ParityBit1 = 1; - size_t soap_flag_CharacterLength1 = 1; - size_t soap_flag_StopBit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_BaudRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tmd:BaudRate", &a->tmd__SerialPortConfiguration::BaudRate, "xsd:int")) - { soap_flag_BaudRate1--; - continue; - } - } - if (soap_flag_ParityBit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tmd__ParityBit(soap, "tmd:ParityBit", &a->tmd__SerialPortConfiguration::ParityBit, "tmd:ParityBit")) - { soap_flag_ParityBit1--; - continue; - } - } - if (soap_flag_CharacterLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tmd:CharacterLength", &a->tmd__SerialPortConfiguration::CharacterLength, "xsd:int")) - { soap_flag_CharacterLength1--; - continue; - } - } - if (soap_flag_StopBit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tmd:StopBit", &a->tmd__SerialPortConfiguration::StopBit, "xsd:float")) - { soap_flag_StopBit1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tmd__SerialPortConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_BaudRate1 > 0 || soap_flag_ParityBit1 > 0 || soap_flag_CharacterLength1 > 0 || soap_flag_StopBit1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tmd__SerialPortConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__SerialPortConfiguration, SOAP_TYPE_tmd__SerialPortConfiguration, sizeof(tmd__SerialPortConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__SerialPortConfiguration * SOAP_FMAC2 soap_instantiate_tmd__SerialPortConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__SerialPortConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__SerialPortConfiguration *p; - size_t k = sizeof(tmd__SerialPortConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__SerialPortConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__SerialPortConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__SerialPortConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__SerialPortConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__SerialPortConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__SerialPortConfiguration(soap, tag ? tag : "tmd:SerialPortConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__SerialPortConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__SerialPortConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__SerialPortConfiguration * SOAP_FMAC4 soap_get_tmd__SerialPortConfiguration(struct soap *soap, tmd__SerialPortConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__SerialPortConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__SerialPort::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__SerialPort::__any); - soap_default_xsd__anyAttribute(soap, &this->tmd__SerialPort::__anyAttribute); -} - -void tmd__SerialPort::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__SerialPort::__any); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tmd__SerialPort::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__SerialPort(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPort(struct soap *soap, const char *tag, int id, const tmd__SerialPort *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tmd__SerialPort*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__SerialPort), type ? type : "tmd:SerialPort")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tmd__SerialPort::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__SerialPort::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__SerialPort(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__SerialPort * SOAP_FMAC4 soap_in_tmd__SerialPort(struct soap *soap, const char *tag, tmd__SerialPort *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__SerialPort*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__SerialPort, sizeof(tmd__SerialPort), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__SerialPort) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__SerialPort *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tmd__SerialPort*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tmd__SerialPort::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tmd__SerialPort *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__SerialPort, SOAP_TYPE_tmd__SerialPort, sizeof(tmd__SerialPort), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__SerialPort * SOAP_FMAC2 soap_instantiate_tmd__SerialPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__SerialPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__SerialPort *p; - size_t k = sizeof(tmd__SerialPort); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__SerialPort, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__SerialPort); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__SerialPort, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__SerialPort location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__SerialPort::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__SerialPort(soap, tag ? tag : "tmd:SerialPort", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__SerialPort::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__SerialPort(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__SerialPort * SOAP_FMAC4 soap_get_tmd__SerialPort(struct soap *soap, tmd__SerialPort *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__SerialPort(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__SerialData::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tmd__SerialData::__union_SerialData = 0; - soap_default_xsd__anyAttribute(soap, &this->tmd__SerialData::__anyAttribute); -} - -void tmd__SerialData::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__tmd__union_SerialData(soap, this->tmd__SerialData::__union_SerialData, &this->tmd__SerialData::union_SerialData); -#endif -} - -int tmd__SerialData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__SerialData(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialData(struct soap *soap, const char *tag, int id, const tmd__SerialData *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tmd__SerialData*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__SerialData), type)) - return soap->error; - if (soap_out__tmd__union_SerialData(soap, a->tmd__SerialData::__union_SerialData, &a->tmd__SerialData::union_SerialData)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__SerialData::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__SerialData(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__SerialData * SOAP_FMAC4 soap_in_tmd__SerialData(struct soap *soap, const char *tag, tmd__SerialData *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__SerialData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__SerialData, sizeof(tmd__SerialData), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__SerialData) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__SerialData *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tmd__SerialData*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_union_SerialData1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_union_SerialData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__tmd__union_SerialData(soap, &a->tmd__SerialData::__union_SerialData, &a->tmd__SerialData::union_SerialData)) - { soap_flag_union_SerialData1 = 0; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tmd__SerialData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__SerialData, SOAP_TYPE_tmd__SerialData, sizeof(tmd__SerialData), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__SerialData * SOAP_FMAC2 soap_instantiate_tmd__SerialData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__SerialData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__SerialData *p; - size_t k = sizeof(tmd__SerialData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__SerialData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__SerialData); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__SerialData, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__SerialData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__SerialData::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__SerialData(soap, tag ? tag : "tmd:SerialData", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__SerialData::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__SerialData(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__SerialData * SOAP_FMAC4 soap_get_tmd__SerialData(struct soap *soap, tmd__SerialData *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__SerialData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__DigitalInputConfigurationInputOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__DigitalIdleState(soap, &this->tmd__DigitalInputConfigurationInputOptions::IdleState); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__DigitalInputConfigurationInputOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tmd__DigitalInputConfigurationInputOptions::__anyAttribute); -} - -void tmd__DigitalInputConfigurationInputOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__DigitalIdleState(soap, &this->tmd__DigitalInputConfigurationInputOptions::IdleState); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__DigitalInputConfigurationInputOptions::__any); -#endif -} - -int tmd__DigitalInputConfigurationInputOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__DigitalInputConfigurationInputOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, const char *tag, int id, const tmd__DigitalInputConfigurationInputOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tmd__DigitalInputConfigurationInputOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__DigitalIdleState(soap, "tmd:IdleState", -1, &a->tmd__DigitalInputConfigurationInputOptions::IdleState, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tmd__DigitalInputConfigurationInputOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__DigitalInputConfigurationInputOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__DigitalInputConfigurationInputOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__DigitalInputConfigurationInputOptions * SOAP_FMAC4 soap_in_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, const char *tag, tmd__DigitalInputConfigurationInputOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__DigitalInputConfigurationInputOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions, sizeof(tmd__DigitalInputConfigurationInputOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__DigitalInputConfigurationInputOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tmd__DigitalInputConfigurationInputOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__DigitalIdleState(soap, "tmd:IdleState", &a->tmd__DigitalInputConfigurationInputOptions::IdleState, "tt:DigitalIdleState")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tmd__DigitalInputConfigurationInputOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tmd__DigitalInputConfigurationInputOptions::IdleState.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tmd__DigitalInputConfigurationInputOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions, SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions, sizeof(tmd__DigitalInputConfigurationInputOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__DigitalInputConfigurationInputOptions * SOAP_FMAC2 soap_instantiate_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__DigitalInputConfigurationInputOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__DigitalInputConfigurationInputOptions *p; - size_t k = sizeof(tmd__DigitalInputConfigurationInputOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__DigitalInputConfigurationInputOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__DigitalInputConfigurationInputOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__DigitalInputConfigurationInputOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__DigitalInputConfigurationInputOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__DigitalInputConfigurationInputOptions(soap, tag ? tag : "tmd:DigitalInputConfigurationInputOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__DigitalInputConfigurationInputOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__DigitalInputConfigurationInputOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__DigitalInputConfigurationInputOptions * SOAP_FMAC4 soap_get_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, tmd__DigitalInputConfigurationInputOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__DigitalInputConfigurationInputOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__GetResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tmd__GetResponse::Token); -} - -void tmd__GetResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tmd__GetResponse::Token); -#endif -} - -int tmd__GetResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__GetResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__GetResponse(struct soap *soap, const char *tag, int id, const tmd__GetResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__GetResponse), type)) - return soap->error; - soap_element_result(soap, "tmd:Token"); - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tmd:Token", -1, &a->tmd__GetResponse::Token, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__GetResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__GetResponse(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__GetResponse * SOAP_FMAC4 soap_in_tmd__GetResponse(struct soap *soap, const char *tag, tmd__GetResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__GetResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__GetResponse, sizeof(tmd__GetResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__GetResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__GetResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tmd:Token", &a->tmd__GetResponse::Token, "tt:ReferenceToken")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - soap_check_result(soap, "tmd:Token"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tmd__GetResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__GetResponse, SOAP_TYPE_tmd__GetResponse, sizeof(tmd__GetResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__GetResponse * SOAP_FMAC2 soap_instantiate_tmd__GetResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__GetResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__GetResponse *p; - size_t k = sizeof(tmd__GetResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__GetResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__GetResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__GetResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__GetResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__GetResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__GetResponse(soap, tag ? tag : "tmd:GetResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__GetResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__GetResponse(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__GetResponse * SOAP_FMAC4 soap_get_tmd__GetResponse(struct soap *soap, tmd__GetResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__GetResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__Get::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void tmd__Get::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tmd__Get::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__Get(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__Get(struct soap *soap, const char *tag, int id, const tmd__Get *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__Get), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__Get::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__Get(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__Get * SOAP_FMAC4 soap_in_tmd__Get(struct soap *soap, const char *tag, tmd__Get *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__Get*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__Get, sizeof(tmd__Get), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__Get) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__Get *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tmd__Get *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__Get, SOAP_TYPE_tmd__Get, sizeof(tmd__Get), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__Get * SOAP_FMAC2 soap_instantiate_tmd__Get(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__Get(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__Get *p; - size_t k = sizeof(tmd__Get); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__Get, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__Get); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__Get, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__Get location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__Get::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__Get(soap, tag ? tag : "tmd:Get", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__Get::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__Get(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__Get * SOAP_FMAC4 soap_get_tmd__Get(struct soap *soap, tmd__Get *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__Get(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__RelayOutputOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__RelayOutputOptionsExtension::__any); -} - -void tmd__RelayOutputOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__RelayOutputOptionsExtension::__any); -#endif -} - -int tmd__RelayOutputOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__RelayOutputOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__RelayOutputOptionsExtension(struct soap *soap, const char *tag, int id, const tmd__RelayOutputOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__RelayOutputOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tmd__RelayOutputOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__RelayOutputOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__RelayOutputOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__RelayOutputOptionsExtension * SOAP_FMAC4 soap_in_tmd__RelayOutputOptionsExtension(struct soap *soap, const char *tag, tmd__RelayOutputOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__RelayOutputOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__RelayOutputOptionsExtension, sizeof(tmd__RelayOutputOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__RelayOutputOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__RelayOutputOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tmd__RelayOutputOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tmd__RelayOutputOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__RelayOutputOptionsExtension, SOAP_TYPE_tmd__RelayOutputOptionsExtension, sizeof(tmd__RelayOutputOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__RelayOutputOptionsExtension * SOAP_FMAC2 soap_instantiate_tmd__RelayOutputOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__RelayOutputOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__RelayOutputOptionsExtension *p; - size_t k = sizeof(tmd__RelayOutputOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__RelayOutputOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__RelayOutputOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__RelayOutputOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__RelayOutputOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__RelayOutputOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__RelayOutputOptionsExtension(soap, tag ? tag : "tmd:RelayOutputOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__RelayOutputOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__RelayOutputOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__RelayOutputOptionsExtension * SOAP_FMAC4 soap_get_tmd__RelayOutputOptionsExtension(struct soap *soap, tmd__RelayOutputOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__RelayOutputOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__RelayOutputOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__RelayMode(soap, &this->tmd__RelayOutputOptions::Mode); - this->tmd__RelayOutputOptions::DelayTimes = NULL; - this->tmd__RelayOutputOptions::Discrete = NULL; - this->tmd__RelayOutputOptions::Extension = NULL; - soap_default_tt__ReferenceToken(soap, &this->tmd__RelayOutputOptions::token); - soap_default_xsd__anyAttribute(soap, &this->tmd__RelayOutputOptions::__anyAttribute); -} - -void tmd__RelayOutputOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__RelayMode(soap, &this->tmd__RelayOutputOptions::Mode); - soap_serialize_PointerTotmd__DelayTimes(soap, &this->tmd__RelayOutputOptions::DelayTimes); - soap_serialize_PointerTobool(soap, &this->tmd__RelayOutputOptions::Discrete); - soap_serialize_PointerTotmd__RelayOutputOptionsExtension(soap, &this->tmd__RelayOutputOptions::Extension); -#endif -} - -int tmd__RelayOutputOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__RelayOutputOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__RelayOutputOptions(struct soap *soap, const char *tag, int id, const tmd__RelayOutputOptions *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tmd__RelayOutputOptions*)a)->token), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tmd__RelayOutputOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__RelayOutputOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__RelayMode(soap, "tmd:Mode", -1, &a->tmd__RelayOutputOptions::Mode, "")) - return soap->error; - if (soap_out_PointerTotmd__DelayTimes(soap, "tmd:DelayTimes", -1, &a->tmd__RelayOutputOptions::DelayTimes, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tmd:Discrete", -1, &a->tmd__RelayOutputOptions::Discrete, "")) - return soap->error; - if (soap_out_PointerTotmd__RelayOutputOptionsExtension(soap, "tmd:Extension", -1, &a->tmd__RelayOutputOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__RelayOutputOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__RelayOutputOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__RelayOutputOptions * SOAP_FMAC4 soap_in_tmd__RelayOutputOptions(struct soap *soap, const char *tag, tmd__RelayOutputOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__RelayOutputOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__RelayOutputOptions, sizeof(tmd__RelayOutputOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__RelayOutputOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__RelayOutputOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tmd__RelayOutputOptions*)a)->token)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tmd__RelayOutputOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DelayTimes1 = 1; - size_t soap_flag_Discrete1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__RelayMode(soap, "tmd:Mode", &a->tmd__RelayOutputOptions::Mode, "tt:RelayMode")) - continue; - } - if (soap_flag_DelayTimes1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTotmd__DelayTimes(soap, "tmd:DelayTimes", &a->tmd__RelayOutputOptions::DelayTimes, "tmd:DelayTimes")) - { soap_flag_DelayTimes1--; - continue; - } - } - if (soap_flag_Discrete1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tmd:Discrete", &a->tmd__RelayOutputOptions::Discrete, "xsd:boolean")) - { soap_flag_Discrete1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__RelayOutputOptionsExtension(soap, "tmd:Extension", &a->tmd__RelayOutputOptions::Extension, "tmd:RelayOutputOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tmd__RelayOutputOptions::Mode.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tmd__RelayOutputOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__RelayOutputOptions, SOAP_TYPE_tmd__RelayOutputOptions, sizeof(tmd__RelayOutputOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__RelayOutputOptions * SOAP_FMAC2 soap_instantiate_tmd__RelayOutputOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__RelayOutputOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__RelayOutputOptions *p; - size_t k = sizeof(tmd__RelayOutputOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__RelayOutputOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__RelayOutputOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__RelayOutputOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__RelayOutputOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__RelayOutputOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__RelayOutputOptions(soap, tag ? tag : "tmd:RelayOutputOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__RelayOutputOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__RelayOutputOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__RelayOutputOptions * SOAP_FMAC4 soap_get_tmd__RelayOutputOptions(struct soap *soap, tmd__RelayOutputOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__RelayOutputOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tmd__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__Capabilities::__any); - this->tmd__Capabilities::VideoSources = 0; - this->tmd__Capabilities::VideoOutputs = 0; - this->tmd__Capabilities::AudioSources = 0; - this->tmd__Capabilities::AudioOutputs = 0; - this->tmd__Capabilities::RelayOutputs = 0; - this->tmd__Capabilities::SerialPorts = 0; - this->tmd__Capabilities::DigitalInputs = 0; - this->tmd__Capabilities::DigitalInputOptions = (bool)0; - soap_default_xsd__anyAttribute(soap, &this->tmd__Capabilities::__anyAttribute); -} - -void tmd__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tmd__Capabilities::__any); -#endif -} - -int tmd__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tmd__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__Capabilities(struct soap *soap, const char *tag, int id, const tmd__Capabilities *a, const char *type) -{ - if (((tmd__Capabilities*)a)->VideoSources != 0) - { soap_set_attr(soap, "VideoSources", soap_int2s(soap, ((tmd__Capabilities*)a)->VideoSources), 1); - } - if (((tmd__Capabilities*)a)->VideoOutputs != 0) - { soap_set_attr(soap, "VideoOutputs", soap_int2s(soap, ((tmd__Capabilities*)a)->VideoOutputs), 1); - } - if (((tmd__Capabilities*)a)->AudioSources != 0) - { soap_set_attr(soap, "AudioSources", soap_int2s(soap, ((tmd__Capabilities*)a)->AudioSources), 1); - } - if (((tmd__Capabilities*)a)->AudioOutputs != 0) - { soap_set_attr(soap, "AudioOutputs", soap_int2s(soap, ((tmd__Capabilities*)a)->AudioOutputs), 1); - } - if (((tmd__Capabilities*)a)->RelayOutputs != 0) - { soap_set_attr(soap, "RelayOutputs", soap_int2s(soap, ((tmd__Capabilities*)a)->RelayOutputs), 1); - } - if (((tmd__Capabilities*)a)->SerialPorts != 0) - { soap_set_attr(soap, "SerialPorts", soap_int2s(soap, ((tmd__Capabilities*)a)->SerialPorts), 1); - } - if (((tmd__Capabilities*)a)->DigitalInputs != 0) - { soap_set_attr(soap, "DigitalInputs", soap_int2s(soap, ((tmd__Capabilities*)a)->DigitalInputs), 1); - } - if (((tmd__Capabilities*)a)->DigitalInputOptions != (bool)0) - { soap_set_attr(soap, "DigitalInputOptions", soap_bool2s(soap, ((tmd__Capabilities*)a)->DigitalInputOptions), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tmd__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tmd__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tmd__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tmd__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tmd__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tmd__Capabilities * SOAP_FMAC4 soap_in_tmd__Capabilities(struct soap *soap, const char *tag, tmd__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tmd__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tmd__Capabilities, sizeof(tmd__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tmd__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tmd__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2int(soap, soap_attr_value(soap, "VideoSources", 5, 0), &((tmd__Capabilities*)a)->VideoSources)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "VideoOutputs", 5, 0), &((tmd__Capabilities*)a)->VideoOutputs)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "AudioSources", 5, 0), &((tmd__Capabilities*)a)->AudioSources)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "AudioOutputs", 5, 0), &((tmd__Capabilities*)a)->AudioOutputs)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "RelayOutputs", 5, 0), &((tmd__Capabilities*)a)->RelayOutputs)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "SerialPorts", 5, 0), &((tmd__Capabilities*)a)->SerialPorts)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "DigitalInputs", 5, 0), &((tmd__Capabilities*)a)->DigitalInputs)) - return NULL; - if (soap_s2bool(soap, soap_attr_value(soap, "DigitalInputOptions", 5, 0), &((tmd__Capabilities*)a)->DigitalInputOptions)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tmd__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tmd__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tmd__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tmd__Capabilities, SOAP_TYPE_tmd__Capabilities, sizeof(tmd__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tmd__Capabilities * SOAP_FMAC2 soap_instantiate_tmd__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tmd__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tmd__Capabilities *p; - size_t k = sizeof(tmd__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tmd__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tmd__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tmd__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tmd__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tmd__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tmd__Capabilities(soap, tag ? tag : "tmd:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tmd__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tmd__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tmd__Capabilities * SOAP_FMAC4 soap_get_tmd__Capabilities(struct soap *soap, tmd__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tmd__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__Message::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tt__Message::Source = NULL; - this->_tt__Message::Key = NULL; - this->_tt__Message::Data = NULL; - this->_tt__Message::Extension = NULL; - soap_default_xsd__dateTime(soap, &this->_tt__Message::UtcTime); - this->_tt__Message::PropertyOperation = NULL; - soap_default_xsd__anyAttribute(soap, &this->_tt__Message::__anyAttribute); -} - -void _tt__Message::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ItemList(soap, &this->_tt__Message::Source); - soap_serialize_PointerTott__ItemList(soap, &this->_tt__Message::Key); - soap_serialize_PointerTott__ItemList(soap, &this->_tt__Message::Data); - soap_serialize_PointerTott__MessageExtension(soap, &this->_tt__Message::Extension); -#endif -} - -int _tt__Message::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__Message(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__Message(struct soap *soap, const char *tag, int id, const _tt__Message *a, const char *type) -{ - soap_set_attr(soap, "UtcTime", soap_xsd__dateTime2s(soap, ((_tt__Message*)a)->UtcTime), 1); - if (((_tt__Message*)a)->PropertyOperation) - { soap_set_attr(soap, "PropertyOperation", soap_tt__PropertyOperation2s(soap, *((_tt__Message*)a)->PropertyOperation), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_tt__Message*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__Message), type)) - return soap->error; - if (soap_out_PointerTott__ItemList(soap, "tt:Source", -1, &a->_tt__Message::Source, "")) - return soap->error; - if (soap_out_PointerTott__ItemList(soap, "tt:Key", -1, &a->_tt__Message::Key, "")) - return soap->error; - if (soap_out_PointerTott__ItemList(soap, "tt:Data", -1, &a->_tt__Message::Data, "")) - return soap->error; - if (soap_out_PointerTott__MessageExtension(soap, "tt:Extension", -1, &a->_tt__Message::Extension, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__Message::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__Message(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__Message * SOAP_FMAC4 soap_in__tt__Message(struct soap *soap, const char *tag, _tt__Message *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__Message*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__Message, sizeof(_tt__Message), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__Message) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__Message *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__dateTime(soap, soap_attr_value(soap, "UtcTime", 5, 1), &((_tt__Message*)a)->UtcTime)) - return NULL; - { - const char *t = soap_attr_value(soap, "PropertyOperation", 5, 0); - if (t) - { - if (!(((_tt__Message*)a)->PropertyOperation = (enum tt__PropertyOperation *)soap_malloc(soap, sizeof(enum tt__PropertyOperation)))) - return NULL; - if (soap_s2tt__PropertyOperation(soap, t, ((_tt__Message*)a)->PropertyOperation)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_tt__Message*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_Source1 = 1; - size_t soap_flag_Key1 = 1; - size_t soap_flag_Data1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Source1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemList(soap, "tt:Source", &a->_tt__Message::Source, "tt:ItemList")) - { soap_flag_Source1--; - continue; - } - } - if (soap_flag_Key1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemList(soap, "tt:Key", &a->_tt__Message::Key, "tt:ItemList")) - { soap_flag_Key1--; - continue; - } - } - if (soap_flag_Data1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemList(soap, "tt:Data", &a->_tt__Message::Data, "tt:ItemList")) - { soap_flag_Data1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MessageExtension(soap, "tt:Extension", &a->_tt__Message::Extension, "tt:MessageExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tt__Message *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__Message, SOAP_TYPE__tt__Message, sizeof(_tt__Message), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__Message * SOAP_FMAC2 soap_instantiate__tt__Message(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__Message(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__Message *p; - size_t k = sizeof(_tt__Message); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__Message, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__Message); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__Message, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__Message location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__Message::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__Message(soap, tag ? tag : "tt:Message", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__Message::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__Message(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__Message * SOAP_FMAC4 soap_get__tt__Message(struct soap *soap, _tt__Message *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__Message(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tt__StringItems::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfstd__string(soap, &this->_tt__StringItems::Item); -} - -void _tt__StringItems::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->_tt__StringItems::Item); -#endif -} - -int _tt__StringItems::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tt__StringItems(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__StringItems(struct soap *soap, const char *tag, int id, const _tt__StringItems *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tt__StringItems), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:Item", -1, &a->_tt__StringItems::Item, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tt__StringItems::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tt__StringItems(soap, tag, this, type); -} - -SOAP_FMAC3 _tt__StringItems * SOAP_FMAC4 soap_in__tt__StringItems(struct soap *soap, const char *tag, _tt__StringItems *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tt__StringItems*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tt__StringItems, sizeof(_tt__StringItems), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tt__StringItems) - { soap_revert(soap); - *soap->id = '\0'; - return (_tt__StringItems *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:Item", &a->_tt__StringItems::Item, "xsd:string")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tt__StringItems::Item.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tt__StringItems *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tt__StringItems, SOAP_TYPE__tt__StringItems, sizeof(_tt__StringItems), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tt__StringItems * SOAP_FMAC2 soap_instantiate__tt__StringItems(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tt__StringItems(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tt__StringItems *p; - size_t k = sizeof(_tt__StringItems); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tt__StringItems, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tt__StringItems); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tt__StringItems, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tt__StringItems location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tt__StringItems::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tt__StringItems(soap, tag ? tag : "tt:StringItems", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tt__StringItems::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tt__StringItems(soap, this, tag, type); -} - -SOAP_FMAC3 _tt__StringItems * SOAP_FMAC4 soap_get__tt__StringItems(struct soap *soap, _tt__StringItems *p, const char *tag, const char *type) -{ - if ((p = soap_in__tt__StringItems(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PolygonOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PolygonOptions::RectangleOnly = NULL; - this->tt__PolygonOptions::VertexLimits = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PolygonOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PolygonOptions::__anyAttribute); -} - -void tt__PolygonOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->tt__PolygonOptions::RectangleOnly); - soap_serialize_PointerTott__IntRange(soap, &this->tt__PolygonOptions::VertexLimits); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PolygonOptions::__any); -#endif -} - -int tt__PolygonOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PolygonOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolygonOptions(struct soap *soap, const char *tag, int id, const tt__PolygonOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PolygonOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PolygonOptions), type)) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:RectangleOnly", -1, &a->tt__PolygonOptions::RectangleOnly, "")) - return soap->error; - if (soap_out_PointerTott__IntRange(soap, "tt:VertexLimits", -1, &a->tt__PolygonOptions::VertexLimits, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PolygonOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PolygonOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PolygonOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PolygonOptions * SOAP_FMAC4 soap_in_tt__PolygonOptions(struct soap *soap, const char *tag, tt__PolygonOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PolygonOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PolygonOptions, sizeof(tt__PolygonOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PolygonOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PolygonOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PolygonOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RectangleOnly1 = 1; - size_t soap_flag_VertexLimits1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RectangleOnly1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:RectangleOnly", &a->tt__PolygonOptions::RectangleOnly, "xsd:boolean")) - { soap_flag_RectangleOnly1--; - continue; - } - } - if (soap_flag_VertexLimits1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:VertexLimits", &a->tt__PolygonOptions::VertexLimits, "tt:IntRange")) - { soap_flag_VertexLimits1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PolygonOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PolygonOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PolygonOptions, SOAP_TYPE_tt__PolygonOptions, sizeof(tt__PolygonOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PolygonOptions * SOAP_FMAC2 soap_instantiate_tt__PolygonOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PolygonOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PolygonOptions *p; - size_t k = sizeof(tt__PolygonOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PolygonOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PolygonOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PolygonOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PolygonOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PolygonOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PolygonOptions(soap, tag ? tag : "tt:PolygonOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PolygonOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PolygonOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PolygonOptions * SOAP_FMAC4 soap_get_tt__PolygonOptions(struct soap *soap, tt__PolygonOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PolygonOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__StorageReferencePathExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__StorageReferencePathExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__StorageReferencePathExtension::__anyAttribute); -} - -void tt__StorageReferencePathExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__StorageReferencePathExtension::__any); -#endif -} - -int tt__StorageReferencePathExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__StorageReferencePathExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StorageReferencePathExtension(struct soap *soap, const char *tag, int id, const tt__StorageReferencePathExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__StorageReferencePathExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__StorageReferencePathExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__StorageReferencePathExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__StorageReferencePathExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__StorageReferencePathExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__StorageReferencePathExtension * SOAP_FMAC4 soap_in_tt__StorageReferencePathExtension(struct soap *soap, const char *tag, tt__StorageReferencePathExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__StorageReferencePathExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__StorageReferencePathExtension, sizeof(tt__StorageReferencePathExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__StorageReferencePathExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__StorageReferencePathExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__StorageReferencePathExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__StorageReferencePathExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__StorageReferencePathExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__StorageReferencePathExtension, SOAP_TYPE_tt__StorageReferencePathExtension, sizeof(tt__StorageReferencePathExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__StorageReferencePathExtension * SOAP_FMAC2 soap_instantiate_tt__StorageReferencePathExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__StorageReferencePathExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__StorageReferencePathExtension *p; - size_t k = sizeof(tt__StorageReferencePathExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__StorageReferencePathExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__StorageReferencePathExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__StorageReferencePathExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__StorageReferencePathExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__StorageReferencePathExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__StorageReferencePathExtension(soap, tag ? tag : "tt:StorageReferencePathExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__StorageReferencePathExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__StorageReferencePathExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__StorageReferencePathExtension * SOAP_FMAC4 soap_get_tt__StorageReferencePathExtension(struct soap *soap, tt__StorageReferencePathExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__StorageReferencePathExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__StorageReferencePath::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__StorageReferencePath::StorageToken); - this->tt__StorageReferencePath::RelativePath = NULL; - this->tt__StorageReferencePath::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__StorageReferencePath::__anyAttribute); -} - -void tt__StorageReferencePath::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__StorageReferencePath::StorageToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__StorageReferencePath::StorageToken); - soap_serialize_PointerTostd__string(soap, &this->tt__StorageReferencePath::RelativePath); - soap_serialize_PointerTott__StorageReferencePathExtension(soap, &this->tt__StorageReferencePath::Extension); -#endif -} - -int tt__StorageReferencePath::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__StorageReferencePath(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StorageReferencePath(struct soap *soap, const char *tag, int id, const tt__StorageReferencePath *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__StorageReferencePath*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__StorageReferencePath), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:StorageToken", -1, &a->tt__StorageReferencePath::StorageToken, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:RelativePath", -1, &a->tt__StorageReferencePath::RelativePath, "")) - return soap->error; - if (soap_out_PointerTott__StorageReferencePathExtension(soap, "tt:Extension", -1, &a->tt__StorageReferencePath::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__StorageReferencePath::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__StorageReferencePath(soap, tag, this, type); -} - -SOAP_FMAC3 tt__StorageReferencePath * SOAP_FMAC4 soap_in_tt__StorageReferencePath(struct soap *soap, const char *tag, tt__StorageReferencePath *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__StorageReferencePath*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__StorageReferencePath, sizeof(tt__StorageReferencePath), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__StorageReferencePath) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__StorageReferencePath *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__StorageReferencePath*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_StorageToken1 = 1; - size_t soap_flag_RelativePath1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_StorageToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:StorageToken", &a->tt__StorageReferencePath::StorageToken, "tt:ReferenceToken")) - { soap_flag_StorageToken1--; - continue; - } - } - if (soap_flag_RelativePath1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:RelativePath", &a->tt__StorageReferencePath::RelativePath, "xsd:string")) - { soap_flag_RelativePath1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__StorageReferencePathExtension(soap, "tt:Extension", &a->tt__StorageReferencePath::Extension, "tt:StorageReferencePathExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_StorageToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__StorageReferencePath *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__StorageReferencePath, SOAP_TYPE_tt__StorageReferencePath, sizeof(tt__StorageReferencePath), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__StorageReferencePath * SOAP_FMAC2 soap_instantiate_tt__StorageReferencePath(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__StorageReferencePath(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__StorageReferencePath *p; - size_t k = sizeof(tt__StorageReferencePath); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__StorageReferencePath, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__StorageReferencePath); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__StorageReferencePath, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__StorageReferencePath location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__StorageReferencePath::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__StorageReferencePath(soap, tag ? tag : "tt:StorageReferencePath", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__StorageReferencePath::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__StorageReferencePath(soap, this, tag, type); -} - -SOAP_FMAC3 tt__StorageReferencePath * SOAP_FMAC4 soap_get_tt__StorageReferencePath(struct soap *soap, tt__StorageReferencePath *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__StorageReferencePath(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ArrayOfFileProgressExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ArrayOfFileProgressExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ArrayOfFileProgressExtension::__anyAttribute); -} - -void tt__ArrayOfFileProgressExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ArrayOfFileProgressExtension::__any); -#endif -} - -int tt__ArrayOfFileProgressExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ArrayOfFileProgressExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ArrayOfFileProgressExtension(struct soap *soap, const char *tag, int id, const tt__ArrayOfFileProgressExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ArrayOfFileProgressExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ArrayOfFileProgressExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ArrayOfFileProgressExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ArrayOfFileProgressExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ArrayOfFileProgressExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ArrayOfFileProgressExtension * SOAP_FMAC4 soap_in_tt__ArrayOfFileProgressExtension(struct soap *soap, const char *tag, tt__ArrayOfFileProgressExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ArrayOfFileProgressExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ArrayOfFileProgressExtension, sizeof(tt__ArrayOfFileProgressExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ArrayOfFileProgressExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ArrayOfFileProgressExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ArrayOfFileProgressExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ArrayOfFileProgressExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ArrayOfFileProgressExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ArrayOfFileProgressExtension, SOAP_TYPE_tt__ArrayOfFileProgressExtension, sizeof(tt__ArrayOfFileProgressExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ArrayOfFileProgressExtension * SOAP_FMAC2 soap_instantiate_tt__ArrayOfFileProgressExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ArrayOfFileProgressExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ArrayOfFileProgressExtension *p; - size_t k = sizeof(tt__ArrayOfFileProgressExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ArrayOfFileProgressExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ArrayOfFileProgressExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ArrayOfFileProgressExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ArrayOfFileProgressExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ArrayOfFileProgressExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ArrayOfFileProgressExtension(soap, tag ? tag : "tt:ArrayOfFileProgressExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ArrayOfFileProgressExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ArrayOfFileProgressExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ArrayOfFileProgressExtension * SOAP_FMAC4 soap_get_tt__ArrayOfFileProgressExtension(struct soap *soap, tt__ArrayOfFileProgressExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ArrayOfFileProgressExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ArrayOfFileProgress::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__FileProgress(soap, &this->tt__ArrayOfFileProgress::FileProgress); - this->tt__ArrayOfFileProgress::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ArrayOfFileProgress::__anyAttribute); -} - -void tt__ArrayOfFileProgress::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__FileProgress(soap, &this->tt__ArrayOfFileProgress::FileProgress); - soap_serialize_PointerTott__ArrayOfFileProgressExtension(soap, &this->tt__ArrayOfFileProgress::Extension); -#endif -} - -int tt__ArrayOfFileProgress::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ArrayOfFileProgress(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ArrayOfFileProgress(struct soap *soap, const char *tag, int id, const tt__ArrayOfFileProgress *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ArrayOfFileProgress*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ArrayOfFileProgress), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__FileProgress(soap, "tt:FileProgress", -1, &a->tt__ArrayOfFileProgress::FileProgress, "")) - return soap->error; - if (soap_out_PointerTott__ArrayOfFileProgressExtension(soap, "tt:Extension", -1, &a->tt__ArrayOfFileProgress::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ArrayOfFileProgress::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ArrayOfFileProgress(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ArrayOfFileProgress * SOAP_FMAC4 soap_in_tt__ArrayOfFileProgress(struct soap *soap, const char *tag, tt__ArrayOfFileProgress *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ArrayOfFileProgress*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ArrayOfFileProgress, sizeof(tt__ArrayOfFileProgress), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ArrayOfFileProgress) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ArrayOfFileProgress *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ArrayOfFileProgress*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__FileProgress(soap, "tt:FileProgress", &a->tt__ArrayOfFileProgress::FileProgress, "tt:FileProgress")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ArrayOfFileProgressExtension(soap, "tt:Extension", &a->tt__ArrayOfFileProgress::Extension, "tt:ArrayOfFileProgressExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ArrayOfFileProgress *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ArrayOfFileProgress, SOAP_TYPE_tt__ArrayOfFileProgress, sizeof(tt__ArrayOfFileProgress), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ArrayOfFileProgress * SOAP_FMAC2 soap_instantiate_tt__ArrayOfFileProgress(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ArrayOfFileProgress(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ArrayOfFileProgress *p; - size_t k = sizeof(tt__ArrayOfFileProgress); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ArrayOfFileProgress, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ArrayOfFileProgress); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ArrayOfFileProgress, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ArrayOfFileProgress location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ArrayOfFileProgress::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ArrayOfFileProgress(soap, tag ? tag : "tt:ArrayOfFileProgress", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ArrayOfFileProgress::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ArrayOfFileProgress(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ArrayOfFileProgress * SOAP_FMAC4 soap_get_tt__ArrayOfFileProgress(struct soap *soap, tt__ArrayOfFileProgress *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ArrayOfFileProgress(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FileProgress::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__FileProgress::FileName); - soap_default_float(soap, &this->tt__FileProgress::Progress); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FileProgress::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__FileProgress::__anyAttribute); -} - -void tt__FileProgress::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__FileProgress::FileName, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__FileProgress::FileName); - soap_embedded(soap, &this->tt__FileProgress::Progress, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FileProgress::__any); -#endif -} - -int tt__FileProgress::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FileProgress(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FileProgress(struct soap *soap, const char *tag, int id, const tt__FileProgress *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FileProgress*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FileProgress), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:FileName", -1, &a->tt__FileProgress::FileName, "")) - return soap->error; - if (soap_out_float(soap, "tt:Progress", -1, &a->tt__FileProgress::Progress, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FileProgress::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FileProgress::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FileProgress(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FileProgress * SOAP_FMAC4 soap_in_tt__FileProgress(struct soap *soap, const char *tag, tt__FileProgress *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FileProgress*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FileProgress, sizeof(tt__FileProgress), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FileProgress) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FileProgress *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FileProgress*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FileName1 = 1; - size_t soap_flag_Progress1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FileName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:FileName", &a->tt__FileProgress::FileName, "xsd:string")) - { soap_flag_FileName1--; - continue; - } - } - if (soap_flag_Progress1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Progress", &a->tt__FileProgress::Progress, "xsd:float")) - { soap_flag_Progress1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FileProgress::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FileName1 > 0 || soap_flag_Progress1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FileProgress *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FileProgress, SOAP_TYPE_tt__FileProgress, sizeof(tt__FileProgress), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FileProgress * SOAP_FMAC2 soap_instantiate_tt__FileProgress(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FileProgress(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FileProgress *p; - size_t k = sizeof(tt__FileProgress); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FileProgress, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FileProgress); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FileProgress, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FileProgress location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FileProgress::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FileProgress(soap, tag ? tag : "tt:FileProgress", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FileProgress::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FileProgress(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FileProgress * SOAP_FMAC4 soap_get_tt__FileProgress(struct soap *soap, tt__FileProgress *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FileProgress(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDConfigurationOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDConfigurationOptionsExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDConfigurationOptionsExtension::__anyAttribute); -} - -void tt__OSDConfigurationOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDConfigurationOptionsExtension::__any); -#endif -} - -int tt__OSDConfigurationOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDConfigurationOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfigurationOptionsExtension(struct soap *soap, const char *tag, int id, const tt__OSDConfigurationOptionsExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDConfigurationOptionsExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDConfigurationOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDConfigurationOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDConfigurationOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDConfigurationOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDConfigurationOptionsExtension(struct soap *soap, const char *tag, tt__OSDConfigurationOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDConfigurationOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDConfigurationOptionsExtension, sizeof(tt__OSDConfigurationOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDConfigurationOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDConfigurationOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDConfigurationOptionsExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDConfigurationOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDConfigurationOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDConfigurationOptionsExtension, SOAP_TYPE_tt__OSDConfigurationOptionsExtension, sizeof(tt__OSDConfigurationOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDConfigurationOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDConfigurationOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDConfigurationOptionsExtension *p; - size_t k = sizeof(tt__OSDConfigurationOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDConfigurationOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDConfigurationOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDConfigurationOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDConfigurationOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDConfigurationOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDConfigurationOptionsExtension(soap, tag ? tag : "tt:OSDConfigurationOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDConfigurationOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDConfigurationOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDConfigurationOptionsExtension(struct soap *soap, tt__OSDConfigurationOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDConfigurationOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__OSDConfigurationOptions::MaximumNumberOfOSDs = NULL; - soap_default_std__vectorTemplateOftt__OSDType(soap, &this->tt__OSDConfigurationOptions::Type); - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__OSDConfigurationOptions::PositionOption); - this->tt__OSDConfigurationOptions::TextOption = NULL; - this->tt__OSDConfigurationOptions::ImageOption = NULL; - this->tt__OSDConfigurationOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDConfigurationOptions::__anyAttribute); -} - -void tt__OSDConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MaximumNumberOfOSDs(soap, &this->tt__OSDConfigurationOptions::MaximumNumberOfOSDs); - soap_serialize_std__vectorTemplateOftt__OSDType(soap, &this->tt__OSDConfigurationOptions::Type); - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__OSDConfigurationOptions::PositionOption); - soap_serialize_PointerTott__OSDTextOptions(soap, &this->tt__OSDConfigurationOptions::TextOption); - soap_serialize_PointerTott__OSDImgOptions(soap, &this->tt__OSDConfigurationOptions::ImageOption); - soap_serialize_PointerTott__OSDConfigurationOptionsExtension(soap, &this->tt__OSDConfigurationOptions::Extension); -#endif -} - -int tt__OSDConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__OSDConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDConfigurationOptions), type)) - return soap->error; - if (!a->tt__OSDConfigurationOptions::MaximumNumberOfOSDs) - { if (soap_element_empty(soap, "tt:MaximumNumberOfOSDs", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MaximumNumberOfOSDs(soap, "tt:MaximumNumberOfOSDs", -1, &a->tt__OSDConfigurationOptions::MaximumNumberOfOSDs, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__OSDType(soap, "tt:Type", -1, &a->tt__OSDConfigurationOptions::Type, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:PositionOption", -1, &a->tt__OSDConfigurationOptions::PositionOption, "")) - return soap->error; - if (soap_out_PointerTott__OSDTextOptions(soap, "tt:TextOption", -1, &a->tt__OSDConfigurationOptions::TextOption, "")) - return soap->error; - if (soap_out_PointerTott__OSDImgOptions(soap, "tt:ImageOption", -1, &a->tt__OSDConfigurationOptions::ImageOption, "")) - return soap->error; - if (soap_out_PointerTott__OSDConfigurationOptionsExtension(soap, "tt:Extension", -1, &a->tt__OSDConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDConfigurationOptions * SOAP_FMAC4 soap_in_tt__OSDConfigurationOptions(struct soap *soap, const char *tag, tt__OSDConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDConfigurationOptions, sizeof(tt__OSDConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MaximumNumberOfOSDs1 = 1; - size_t soap_flag_TextOption1 = 1; - size_t soap_flag_ImageOption1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MaximumNumberOfOSDs1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MaximumNumberOfOSDs(soap, "tt:MaximumNumberOfOSDs", &a->tt__OSDConfigurationOptions::MaximumNumberOfOSDs, "tt:MaximumNumberOfOSDs")) - { soap_flag_MaximumNumberOfOSDs1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__OSDType(soap, "tt:Type", &a->tt__OSDConfigurationOptions::Type, "tt:OSDType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:PositionOption", &a->tt__OSDConfigurationOptions::PositionOption, "xsd:string")) - continue; - } - if (soap_flag_TextOption1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDTextOptions(soap, "tt:TextOption", &a->tt__OSDConfigurationOptions::TextOption, "tt:OSDTextOptions")) - { soap_flag_TextOption1--; - continue; - } - } - if (soap_flag_ImageOption1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDImgOptions(soap, "tt:ImageOption", &a->tt__OSDConfigurationOptions::ImageOption, "tt:OSDImgOptions")) - { soap_flag_ImageOption1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDConfigurationOptionsExtension(soap, "tt:Extension", &a->tt__OSDConfigurationOptions::Extension, "tt:OSDConfigurationOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__OSDConfigurationOptions::MaximumNumberOfOSDs || a->tt__OSDConfigurationOptions::Type.size() < 1 || a->tt__OSDConfigurationOptions::PositionOption.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDConfigurationOptions, SOAP_TYPE_tt__OSDConfigurationOptions, sizeof(tt__OSDConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__OSDConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDConfigurationOptions *p; - size_t k = sizeof(tt__OSDConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDConfigurationOptions(soap, tag ? tag : "tt:OSDConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDConfigurationOptions * SOAP_FMAC4 soap_get_tt__OSDConfigurationOptions(struct soap *soap, tt__OSDConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MaximumNumberOfOSDs::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__MaximumNumberOfOSDs::Total); - this->tt__MaximumNumberOfOSDs::Image = NULL; - this->tt__MaximumNumberOfOSDs::PlainText = NULL; - this->tt__MaximumNumberOfOSDs::Date = NULL; - this->tt__MaximumNumberOfOSDs::Time = NULL; - this->tt__MaximumNumberOfOSDs::DateAndTime = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MaximumNumberOfOSDs::__anyAttribute); -} - -void tt__MaximumNumberOfOSDs::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__MaximumNumberOfOSDs::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MaximumNumberOfOSDs(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MaximumNumberOfOSDs(struct soap *soap, const char *tag, int id, const tt__MaximumNumberOfOSDs *a, const char *type) -{ - soap_set_attr(soap, "Total", soap_int2s(soap, ((tt__MaximumNumberOfOSDs*)a)->Total), 1); - if (((tt__MaximumNumberOfOSDs*)a)->Image) - { soap_set_attr(soap, "Image", soap_int2s(soap, *((tt__MaximumNumberOfOSDs*)a)->Image), 1); - } - if (((tt__MaximumNumberOfOSDs*)a)->PlainText) - { soap_set_attr(soap, "PlainText", soap_int2s(soap, *((tt__MaximumNumberOfOSDs*)a)->PlainText), 1); - } - if (((tt__MaximumNumberOfOSDs*)a)->Date) - { soap_set_attr(soap, "Date", soap_int2s(soap, *((tt__MaximumNumberOfOSDs*)a)->Date), 1); - } - if (((tt__MaximumNumberOfOSDs*)a)->Time) - { soap_set_attr(soap, "Time", soap_int2s(soap, *((tt__MaximumNumberOfOSDs*)a)->Time), 1); - } - if (((tt__MaximumNumberOfOSDs*)a)->DateAndTime) - { soap_set_attr(soap, "DateAndTime", soap_int2s(soap, *((tt__MaximumNumberOfOSDs*)a)->DateAndTime), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MaximumNumberOfOSDs*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MaximumNumberOfOSDs), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MaximumNumberOfOSDs::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MaximumNumberOfOSDs(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MaximumNumberOfOSDs * SOAP_FMAC4 soap_in_tt__MaximumNumberOfOSDs(struct soap *soap, const char *tag, tt__MaximumNumberOfOSDs *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MaximumNumberOfOSDs*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MaximumNumberOfOSDs, sizeof(tt__MaximumNumberOfOSDs), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MaximumNumberOfOSDs) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MaximumNumberOfOSDs *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2int(soap, soap_attr_value(soap, "Total", 5, 1), &((tt__MaximumNumberOfOSDs*)a)->Total)) - return NULL; - { - const char *t = soap_attr_value(soap, "Image", 5, 0); - if (t) - { - if (!(((tt__MaximumNumberOfOSDs*)a)->Image = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__MaximumNumberOfOSDs*)a)->Image)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "PlainText", 5, 0); - if (t) - { - if (!(((tt__MaximumNumberOfOSDs*)a)->PlainText = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__MaximumNumberOfOSDs*)a)->PlainText)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Date", 5, 0); - if (t) - { - if (!(((tt__MaximumNumberOfOSDs*)a)->Date = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__MaximumNumberOfOSDs*)a)->Date)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Time", 5, 0); - if (t) - { - if (!(((tt__MaximumNumberOfOSDs*)a)->Time = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__MaximumNumberOfOSDs*)a)->Time)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "DateAndTime", 5, 0); - if (t) - { - if (!(((tt__MaximumNumberOfOSDs*)a)->DateAndTime = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__MaximumNumberOfOSDs*)a)->DateAndTime)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MaximumNumberOfOSDs*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MaximumNumberOfOSDs *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MaximumNumberOfOSDs, SOAP_TYPE_tt__MaximumNumberOfOSDs, sizeof(tt__MaximumNumberOfOSDs), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MaximumNumberOfOSDs * SOAP_FMAC2 soap_instantiate_tt__MaximumNumberOfOSDs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MaximumNumberOfOSDs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MaximumNumberOfOSDs *p; - size_t k = sizeof(tt__MaximumNumberOfOSDs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MaximumNumberOfOSDs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MaximumNumberOfOSDs); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MaximumNumberOfOSDs, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MaximumNumberOfOSDs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MaximumNumberOfOSDs::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MaximumNumberOfOSDs(soap, tag ? tag : "tt:MaximumNumberOfOSDs", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MaximumNumberOfOSDs::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MaximumNumberOfOSDs(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MaximumNumberOfOSDs * SOAP_FMAC4 soap_get_tt__MaximumNumberOfOSDs(struct soap *soap, tt__MaximumNumberOfOSDs *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MaximumNumberOfOSDs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDConfigurationExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDConfigurationExtension::__anyAttribute); -} - -void tt__OSDConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDConfigurationExtension::__any); -#endif -} - -int tt__OSDConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__OSDConfigurationExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDConfigurationExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDConfigurationExtension(struct soap *soap, const char *tag, tt__OSDConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDConfigurationExtension, sizeof(tt__OSDConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDConfigurationExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDConfigurationExtension, SOAP_TYPE_tt__OSDConfigurationExtension, sizeof(tt__OSDConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDConfigurationExtension *p; - size_t k = sizeof(tt__OSDConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDConfigurationExtension(soap, tag ? tag : "tt:OSDConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDConfigurationExtension(struct soap *soap, tt__OSDConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - this->tt__OSDConfiguration::VideoSourceConfigurationToken = NULL; - soap_default_tt__OSDType(soap, &this->tt__OSDConfiguration::Type); - this->tt__OSDConfiguration::Position = NULL; - this->tt__OSDConfiguration::TextString = NULL; - this->tt__OSDConfiguration::Image = NULL; - this->tt__OSDConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDConfiguration::__anyAttribute); -} - -void tt__OSDConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__OSDReference(soap, &this->tt__OSDConfiguration::VideoSourceConfigurationToken); - soap_serialize_PointerTott__OSDPosConfiguration(soap, &this->tt__OSDConfiguration::Position); - soap_serialize_PointerTott__OSDTextConfiguration(soap, &this->tt__OSDConfiguration::TextString); - soap_serialize_PointerTott__OSDImgConfiguration(soap, &this->tt__OSDConfiguration::Image); - soap_serialize_PointerTott__OSDConfigurationExtension(soap, &this->tt__OSDConfiguration::Extension); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__OSDConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfiguration(struct soap *soap, const char *tag, int id, const tt__OSDConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDConfiguration), type ? type : "tt:OSDConfiguration")) - return soap->error; - if (!a->tt__OSDConfiguration::VideoSourceConfigurationToken) - { if (soap_element_empty(soap, "tt:VideoSourceConfigurationToken", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__OSDReference(soap, "tt:VideoSourceConfigurationToken", -1, &a->tt__OSDConfiguration::VideoSourceConfigurationToken, "")) - return soap->error; - if (soap_out_tt__OSDType(soap, "tt:Type", -1, &a->tt__OSDConfiguration::Type, "")) - return soap->error; - if (!a->tt__OSDConfiguration::Position) - { if (soap_element_empty(soap, "tt:Position", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__OSDPosConfiguration(soap, "tt:Position", -1, &a->tt__OSDConfiguration::Position, "")) - return soap->error; - if (soap_out_PointerTott__OSDTextConfiguration(soap, "tt:TextString", -1, &a->tt__OSDConfiguration::TextString, "")) - return soap->error; - if (soap_out_PointerTott__OSDImgConfiguration(soap, "tt:Image", -1, &a->tt__OSDConfiguration::Image, "")) - return soap->error; - if (soap_out_PointerTott__OSDConfigurationExtension(soap, "tt:Extension", -1, &a->tt__OSDConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDConfiguration * SOAP_FMAC4 soap_in_tt__OSDConfiguration(struct soap *soap, const char *tag, tt__OSDConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDConfiguration, sizeof(tt__OSDConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_VideoSourceConfigurationToken1 = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_Position1 = 1; - size_t soap_flag_TextString1 = 1; - size_t soap_flag_Image1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoSourceConfigurationToken1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDReference(soap, "tt:VideoSourceConfigurationToken", &a->tt__OSDConfiguration::VideoSourceConfigurationToken, "tt:OSDReference")) - { soap_flag_VideoSourceConfigurationToken1--; - continue; - } - } - if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__OSDType(soap, "tt:Type", &a->tt__OSDConfiguration::Type, "tt:OSDType")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDPosConfiguration(soap, "tt:Position", &a->tt__OSDConfiguration::Position, "tt:OSDPosConfiguration")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_TextString1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDTextConfiguration(soap, "tt:TextString", &a->tt__OSDConfiguration::TextString, "tt:OSDTextConfiguration")) - { soap_flag_TextString1--; - continue; - } - } - if (soap_flag_Image1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDImgConfiguration(soap, "tt:Image", &a->tt__OSDConfiguration::Image, "tt:OSDImgConfiguration")) - { soap_flag_Image1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDConfigurationExtension(soap, "tt:Extension", &a->tt__OSDConfiguration::Extension, "tt:OSDConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__OSDConfiguration::VideoSourceConfigurationToken || soap_flag_Type1 > 0 || !a->tt__OSDConfiguration::Position)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDConfiguration, SOAP_TYPE_tt__OSDConfiguration, sizeof(tt__OSDConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDConfiguration *p; - size_t k = sizeof(tt__OSDConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDConfiguration(soap, tag ? tag : "tt:OSDConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDConfiguration * SOAP_FMAC4 soap_get_tt__OSDConfiguration(struct soap *soap, tt__OSDConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDImgOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDImgOptionsExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDImgOptionsExtension::__anyAttribute); -} - -void tt__OSDImgOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDImgOptionsExtension::__any); -#endif -} - -int tt__OSDImgOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDImgOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgOptionsExtension(struct soap *soap, const char *tag, int id, const tt__OSDImgOptionsExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDImgOptionsExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDImgOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDImgOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDImgOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDImgOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDImgOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDImgOptionsExtension(struct soap *soap, const char *tag, tt__OSDImgOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDImgOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDImgOptionsExtension, sizeof(tt__OSDImgOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDImgOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDImgOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDImgOptionsExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDImgOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDImgOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDImgOptionsExtension, SOAP_TYPE_tt__OSDImgOptionsExtension, sizeof(tt__OSDImgOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDImgOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDImgOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDImgOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDImgOptionsExtension *p; - size_t k = sizeof(tt__OSDImgOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDImgOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDImgOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDImgOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDImgOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDImgOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDImgOptionsExtension(soap, tag ? tag : "tt:OSDImgOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDImgOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDImgOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDImgOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDImgOptionsExtension(struct soap *soap, tt__OSDImgOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDImgOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDImgOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__OSDImgOptions::ImagePath); - this->tt__OSDImgOptions::Extension = NULL; - this->tt__OSDImgOptions::FormatsSupported = NULL; - this->tt__OSDImgOptions::MaxSize = NULL; - this->tt__OSDImgOptions::MaxWidth = NULL; - this->tt__OSDImgOptions::MaxHeight = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDImgOptions::__anyAttribute); -} - -void tt__OSDImgOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__OSDImgOptions::ImagePath); - soap_serialize_PointerTott__OSDImgOptionsExtension(soap, &this->tt__OSDImgOptions::Extension); -#endif -} - -int tt__OSDImgOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDImgOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgOptions(struct soap *soap, const char *tag, int id, const tt__OSDImgOptions *a, const char *type) -{ - if (((tt__OSDImgOptions*)a)->FormatsSupported) - { soap_set_attr(soap, "FormatsSupported", soap_tt__StringAttrList2s(soap, *((tt__OSDImgOptions*)a)->FormatsSupported), 1); - } - if (((tt__OSDImgOptions*)a)->MaxSize) - { soap_set_attr(soap, "MaxSize", soap_int2s(soap, *((tt__OSDImgOptions*)a)->MaxSize), 1); - } - if (((tt__OSDImgOptions*)a)->MaxWidth) - { soap_set_attr(soap, "MaxWidth", soap_int2s(soap, *((tt__OSDImgOptions*)a)->MaxWidth), 1); - } - if (((tt__OSDImgOptions*)a)->MaxHeight) - { soap_set_attr(soap, "MaxHeight", soap_int2s(soap, *((tt__OSDImgOptions*)a)->MaxHeight), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDImgOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDImgOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tt:ImagePath", -1, &a->tt__OSDImgOptions::ImagePath, "")) - return soap->error; - if (soap_out_PointerTott__OSDImgOptionsExtension(soap, "tt:Extension", -1, &a->tt__OSDImgOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDImgOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDImgOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDImgOptions * SOAP_FMAC4 soap_in_tt__OSDImgOptions(struct soap *soap, const char *tag, tt__OSDImgOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDImgOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDImgOptions, sizeof(tt__OSDImgOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDImgOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDImgOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "FormatsSupported", 1, 0); - if (t) - { - if (!(((tt__OSDImgOptions*)a)->FormatsSupported = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((tt__OSDImgOptions*)a)->FormatsSupported)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxSize", 5, 0); - if (t) - { - if (!(((tt__OSDImgOptions*)a)->MaxSize = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__OSDImgOptions*)a)->MaxSize)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxWidth", 5, 0); - if (t) - { - if (!(((tt__OSDImgOptions*)a)->MaxWidth = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__OSDImgOptions*)a)->MaxWidth)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxHeight", 5, 0); - if (t) - { - if (!(((tt__OSDImgOptions*)a)->MaxHeight = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__OSDImgOptions*)a)->MaxHeight)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDImgOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tt:ImagePath", &a->tt__OSDImgOptions::ImagePath, "xsd:anyURI")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDImgOptionsExtension(soap, "tt:Extension", &a->tt__OSDImgOptions::Extension, "tt:OSDImgOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__OSDImgOptions::ImagePath.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDImgOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDImgOptions, SOAP_TYPE_tt__OSDImgOptions, sizeof(tt__OSDImgOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDImgOptions * SOAP_FMAC2 soap_instantiate_tt__OSDImgOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDImgOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDImgOptions *p; - size_t k = sizeof(tt__OSDImgOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDImgOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDImgOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDImgOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDImgOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDImgOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDImgOptions(soap, tag ? tag : "tt:OSDImgOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDImgOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDImgOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDImgOptions * SOAP_FMAC4 soap_get_tt__OSDImgOptions(struct soap *soap, tt__OSDImgOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDImgOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDTextOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDTextOptionsExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDTextOptionsExtension::__anyAttribute); -} - -void tt__OSDTextOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDTextOptionsExtension::__any); -#endif -} - -int tt__OSDTextOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDTextOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextOptionsExtension(struct soap *soap, const char *tag, int id, const tt__OSDTextOptionsExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDTextOptionsExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDTextOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDTextOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDTextOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDTextOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDTextOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDTextOptionsExtension(struct soap *soap, const char *tag, tt__OSDTextOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDTextOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDTextOptionsExtension, sizeof(tt__OSDTextOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDTextOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDTextOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDTextOptionsExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDTextOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDTextOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDTextOptionsExtension, SOAP_TYPE_tt__OSDTextOptionsExtension, sizeof(tt__OSDTextOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDTextOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDTextOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDTextOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDTextOptionsExtension *p; - size_t k = sizeof(tt__OSDTextOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDTextOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDTextOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDTextOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDTextOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDTextOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDTextOptionsExtension(soap, tag ? tag : "tt:OSDTextOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDTextOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDTextOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDTextOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDTextOptionsExtension(struct soap *soap, tt__OSDTextOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDTextOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDTextOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__OSDTextOptions::Type); - this->tt__OSDTextOptions::FontSizeRange = NULL; - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__OSDTextOptions::DateFormat); - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__OSDTextOptions::TimeFormat); - this->tt__OSDTextOptions::FontColor = NULL; - this->tt__OSDTextOptions::BackgroundColor = NULL; - this->tt__OSDTextOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDTextOptions::__anyAttribute); -} - -void tt__OSDTextOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__OSDTextOptions::Type); - soap_serialize_PointerTott__IntRange(soap, &this->tt__OSDTextOptions::FontSizeRange); - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__OSDTextOptions::DateFormat); - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__OSDTextOptions::TimeFormat); - soap_serialize_PointerTott__OSDColorOptions(soap, &this->tt__OSDTextOptions::FontColor); - soap_serialize_PointerTott__OSDColorOptions(soap, &this->tt__OSDTextOptions::BackgroundColor); - soap_serialize_PointerTott__OSDTextOptionsExtension(soap, &this->tt__OSDTextOptions::Extension); -#endif -} - -int tt__OSDTextOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDTextOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextOptions(struct soap *soap, const char *tag, int id, const tt__OSDTextOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDTextOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDTextOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:Type", -1, &a->tt__OSDTextOptions::Type, "")) - return soap->error; - if (soap_out_PointerTott__IntRange(soap, "tt:FontSizeRange", -1, &a->tt__OSDTextOptions::FontSizeRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:DateFormat", -1, &a->tt__OSDTextOptions::DateFormat, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:TimeFormat", -1, &a->tt__OSDTextOptions::TimeFormat, "")) - return soap->error; - if (soap_out_PointerTott__OSDColorOptions(soap, "tt:FontColor", -1, &a->tt__OSDTextOptions::FontColor, "")) - return soap->error; - if (soap_out_PointerTott__OSDColorOptions(soap, "tt:BackgroundColor", -1, &a->tt__OSDTextOptions::BackgroundColor, "")) - return soap->error; - if (soap_out_PointerTott__OSDTextOptionsExtension(soap, "tt:Extension", -1, &a->tt__OSDTextOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDTextOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDTextOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDTextOptions * SOAP_FMAC4 soap_in_tt__OSDTextOptions(struct soap *soap, const char *tag, tt__OSDTextOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDTextOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDTextOptions, sizeof(tt__OSDTextOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDTextOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDTextOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDTextOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FontSizeRange1 = 1; - size_t soap_flag_FontColor1 = 1; - size_t soap_flag_BackgroundColor1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:Type", &a->tt__OSDTextOptions::Type, "xsd:string")) - continue; - } - if (soap_flag_FontSizeRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:FontSizeRange", &a->tt__OSDTextOptions::FontSizeRange, "tt:IntRange")) - { soap_flag_FontSizeRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:DateFormat", &a->tt__OSDTextOptions::DateFormat, "xsd:string")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:TimeFormat", &a->tt__OSDTextOptions::TimeFormat, "xsd:string")) - continue; - } - if (soap_flag_FontColor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDColorOptions(soap, "tt:FontColor", &a->tt__OSDTextOptions::FontColor, "tt:OSDColorOptions")) - { soap_flag_FontColor1--; - continue; - } - } - if (soap_flag_BackgroundColor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDColorOptions(soap, "tt:BackgroundColor", &a->tt__OSDTextOptions::BackgroundColor, "tt:OSDColorOptions")) - { soap_flag_BackgroundColor1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDTextOptionsExtension(soap, "tt:Extension", &a->tt__OSDTextOptions::Extension, "tt:OSDTextOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__OSDTextOptions::Type.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDTextOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDTextOptions, SOAP_TYPE_tt__OSDTextOptions, sizeof(tt__OSDTextOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDTextOptions * SOAP_FMAC2 soap_instantiate_tt__OSDTextOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDTextOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDTextOptions *p; - size_t k = sizeof(tt__OSDTextOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDTextOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDTextOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDTextOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDTextOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDTextOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDTextOptions(soap, tag ? tag : "tt:OSDTextOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDTextOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDTextOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDTextOptions * SOAP_FMAC4 soap_get_tt__OSDTextOptions(struct soap *soap, tt__OSDTextOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDTextOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDColorOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDColorOptionsExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDColorOptionsExtension::__anyAttribute); -} - -void tt__OSDColorOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDColorOptionsExtension::__any); -#endif -} - -int tt__OSDColorOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDColorOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDColorOptionsExtension(struct soap *soap, const char *tag, int id, const tt__OSDColorOptionsExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDColorOptionsExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDColorOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDColorOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDColorOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDColorOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDColorOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDColorOptionsExtension(struct soap *soap, const char *tag, tt__OSDColorOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDColorOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDColorOptionsExtension, sizeof(tt__OSDColorOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDColorOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDColorOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDColorOptionsExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDColorOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDColorOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDColorOptionsExtension, SOAP_TYPE_tt__OSDColorOptionsExtension, sizeof(tt__OSDColorOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDColorOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDColorOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDColorOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDColorOptionsExtension *p; - size_t k = sizeof(tt__OSDColorOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDColorOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDColorOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDColorOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDColorOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDColorOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDColorOptionsExtension(soap, tag ? tag : "tt:OSDColorOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDColorOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDColorOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDColorOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDColorOptionsExtension(struct soap *soap, tt__OSDColorOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDColorOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDColorOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__OSDColorOptions::Color = NULL; - this->tt__OSDColorOptions::Transparent = NULL; - this->tt__OSDColorOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDColorOptions::__anyAttribute); -} - -void tt__OSDColorOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ColorOptions(soap, &this->tt__OSDColorOptions::Color); - soap_serialize_PointerTott__IntRange(soap, &this->tt__OSDColorOptions::Transparent); - soap_serialize_PointerTott__OSDColorOptionsExtension(soap, &this->tt__OSDColorOptions::Extension); -#endif -} - -int tt__OSDColorOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDColorOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDColorOptions(struct soap *soap, const char *tag, int id, const tt__OSDColorOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDColorOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDColorOptions), type)) - return soap->error; - if (soap_out_PointerTott__ColorOptions(soap, "tt:Color", -1, &a->tt__OSDColorOptions::Color, "")) - return soap->error; - if (soap_out_PointerTott__IntRange(soap, "tt:Transparent", -1, &a->tt__OSDColorOptions::Transparent, "")) - return soap->error; - if (soap_out_PointerTott__OSDColorOptionsExtension(soap, "tt:Extension", -1, &a->tt__OSDColorOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDColorOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDColorOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDColorOptions * SOAP_FMAC4 soap_in_tt__OSDColorOptions(struct soap *soap, const char *tag, tt__OSDColorOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDColorOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDColorOptions, sizeof(tt__OSDColorOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDColorOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDColorOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDColorOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Color1 = 1; - size_t soap_flag_Transparent1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Color1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ColorOptions(soap, "tt:Color", &a->tt__OSDColorOptions::Color, "tt:ColorOptions")) - { soap_flag_Color1--; - continue; - } - } - if (soap_flag_Transparent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:Transparent", &a->tt__OSDColorOptions::Transparent, "tt:IntRange")) - { soap_flag_Transparent1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDColorOptionsExtension(soap, "tt:Extension", &a->tt__OSDColorOptions::Extension, "tt:OSDColorOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDColorOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDColorOptions, SOAP_TYPE_tt__OSDColorOptions, sizeof(tt__OSDColorOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDColorOptions * SOAP_FMAC2 soap_instantiate_tt__OSDColorOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDColorOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDColorOptions *p; - size_t k = sizeof(tt__OSDColorOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDColorOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDColorOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDColorOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDColorOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDColorOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDColorOptions(soap, tag ? tag : "tt:OSDColorOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDColorOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDColorOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDColorOptions * SOAP_FMAC4 soap_get_tt__OSDColorOptions(struct soap *soap, tt__OSDColorOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDColorOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ColorOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ColorOptions::__union_ColorOptions = 0; - soap_default_xsd__anyAttribute(soap, &this->tt__ColorOptions::__anyAttribute); -} - -void tt__ColorOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__tt__union_ColorOptions(soap, this->tt__ColorOptions::__union_ColorOptions, &this->tt__ColorOptions::union_ColorOptions); -#endif -} - -int tt__ColorOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ColorOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorOptions(struct soap *soap, const char *tag, int id, const tt__ColorOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ColorOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ColorOptions), type)) - return soap->error; - if (soap_out__tt__union_ColorOptions(soap, a->tt__ColorOptions::__union_ColorOptions, &a->tt__ColorOptions::union_ColorOptions)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ColorOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ColorOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ColorOptions * SOAP_FMAC4 soap_in_tt__ColorOptions(struct soap *soap, const char *tag, tt__ColorOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ColorOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ColorOptions, sizeof(tt__ColorOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ColorOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ColorOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ColorOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_union_ColorOptions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_union_ColorOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__tt__union_ColorOptions(soap, &a->tt__ColorOptions::__union_ColorOptions, &a->tt__ColorOptions::union_ColorOptions)) - { soap_flag_union_ColorOptions1 = 0; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ColorOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ColorOptions, SOAP_TYPE_tt__ColorOptions, sizeof(tt__ColorOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ColorOptions * SOAP_FMAC2 soap_instantiate_tt__ColorOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ColorOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ColorOptions *p; - size_t k = sizeof(tt__ColorOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ColorOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ColorOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ColorOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ColorOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ColorOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ColorOptions(soap, tag ? tag : "tt:ColorOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ColorOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ColorOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ColorOptions * SOAP_FMAC4 soap_get_tt__ColorOptions(struct soap *soap, tt__ColorOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ColorOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ColorspaceRange::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ColorspaceRange::X = NULL; - this->tt__ColorspaceRange::Y = NULL; - this->tt__ColorspaceRange::Z = NULL; - soap_default_xsd__anyURI(soap, &this->tt__ColorspaceRange::Colorspace); - soap_default_xsd__anyAttribute(soap, &this->tt__ColorspaceRange::__anyAttribute); -} - -void tt__ColorspaceRange::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ColorspaceRange::X); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ColorspaceRange::Y); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ColorspaceRange::Z); - soap_embedded(soap, &this->tt__ColorspaceRange::Colorspace, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__ColorspaceRange::Colorspace); -#endif -} - -int tt__ColorspaceRange::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ColorspaceRange(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorspaceRange(struct soap *soap, const char *tag, int id, const tt__ColorspaceRange *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ColorspaceRange*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ColorspaceRange), type)) - return soap->error; - if (!a->tt__ColorspaceRange::X) - { if (soap_element_empty(soap, "tt:X", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:X", -1, &a->tt__ColorspaceRange::X, "")) - return soap->error; - if (!a->tt__ColorspaceRange::Y) - { if (soap_element_empty(soap, "tt:Y", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Y", -1, &a->tt__ColorspaceRange::Y, "")) - return soap->error; - if (!a->tt__ColorspaceRange::Z) - { if (soap_element_empty(soap, "tt:Z", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Z", -1, &a->tt__ColorspaceRange::Z, "")) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:Colorspace", -1, &a->tt__ColorspaceRange::Colorspace, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ColorspaceRange::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ColorspaceRange(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ColorspaceRange * SOAP_FMAC4 soap_in_tt__ColorspaceRange(struct soap *soap, const char *tag, tt__ColorspaceRange *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ColorspaceRange*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ColorspaceRange, sizeof(tt__ColorspaceRange), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ColorspaceRange) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ColorspaceRange *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ColorspaceRange*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_X1 = 1; - size_t soap_flag_Y1 = 1; - size_t soap_flag_Z1 = 1; - size_t soap_flag_Colorspace1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_X1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:X", &a->tt__ColorspaceRange::X, "tt:FloatRange")) - { soap_flag_X1--; - continue; - } - } - if (soap_flag_Y1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Y", &a->tt__ColorspaceRange::Y, "tt:FloatRange")) - { soap_flag_Y1--; - continue; - } - } - if (soap_flag_Z1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Z", &a->tt__ColorspaceRange::Z, "tt:FloatRange")) - { soap_flag_Z1--; - continue; - } - } - if (soap_flag_Colorspace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:Colorspace", &a->tt__ColorspaceRange::Colorspace, "xsd:anyURI")) - { soap_flag_Colorspace1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__ColorspaceRange::X || !a->tt__ColorspaceRange::Y || !a->tt__ColorspaceRange::Z || soap_flag_Colorspace1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ColorspaceRange *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ColorspaceRange, SOAP_TYPE_tt__ColorspaceRange, sizeof(tt__ColorspaceRange), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ColorspaceRange * SOAP_FMAC2 soap_instantiate_tt__ColorspaceRange(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ColorspaceRange(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ColorspaceRange *p; - size_t k = sizeof(tt__ColorspaceRange); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ColorspaceRange, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ColorspaceRange); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ColorspaceRange, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ColorspaceRange location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ColorspaceRange::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ColorspaceRange(soap, tag ? tag : "tt:ColorspaceRange", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ColorspaceRange::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ColorspaceRange(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ColorspaceRange * SOAP_FMAC4 soap_get_tt__ColorspaceRange(struct soap *soap, tt__ColorspaceRange *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ColorspaceRange(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDImgConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDImgConfigurationExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDImgConfigurationExtension::__anyAttribute); -} - -void tt__OSDImgConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDImgConfigurationExtension::__any); -#endif -} - -int tt__OSDImgConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDImgConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__OSDImgConfigurationExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDImgConfigurationExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDImgConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDImgConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDImgConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDImgConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDImgConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDImgConfigurationExtension(struct soap *soap, const char *tag, tt__OSDImgConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDImgConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDImgConfigurationExtension, sizeof(tt__OSDImgConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDImgConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDImgConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDImgConfigurationExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDImgConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDImgConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDImgConfigurationExtension, SOAP_TYPE_tt__OSDImgConfigurationExtension, sizeof(tt__OSDImgConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDImgConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDImgConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDImgConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDImgConfigurationExtension *p; - size_t k = sizeof(tt__OSDImgConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDImgConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDImgConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDImgConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDImgConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDImgConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDImgConfigurationExtension(soap, tag ? tag : "tt:OSDImgConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDImgConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDImgConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDImgConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDImgConfigurationExtension(struct soap *soap, tt__OSDImgConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDImgConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDImgConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__OSDImgConfiguration::ImgPath); - this->tt__OSDImgConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDImgConfiguration::__anyAttribute); -} - -void tt__OSDImgConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__OSDImgConfiguration::ImgPath, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__OSDImgConfiguration::ImgPath); - soap_serialize_PointerTott__OSDImgConfigurationExtension(soap, &this->tt__OSDImgConfiguration::Extension); -#endif -} - -int tt__OSDImgConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDImgConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgConfiguration(struct soap *soap, const char *tag, int id, const tt__OSDImgConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDImgConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDImgConfiguration), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:ImgPath", -1, &a->tt__OSDImgConfiguration::ImgPath, "")) - return soap->error; - if (soap_out_PointerTott__OSDImgConfigurationExtension(soap, "tt:Extension", -1, &a->tt__OSDImgConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDImgConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDImgConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDImgConfiguration * SOAP_FMAC4 soap_in_tt__OSDImgConfiguration(struct soap *soap, const char *tag, tt__OSDImgConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDImgConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDImgConfiguration, sizeof(tt__OSDImgConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDImgConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDImgConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDImgConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ImgPath1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ImgPath1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:ImgPath", &a->tt__OSDImgConfiguration::ImgPath, "xsd:anyURI")) - { soap_flag_ImgPath1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDImgConfigurationExtension(soap, "tt:Extension", &a->tt__OSDImgConfiguration::Extension, "tt:OSDImgConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ImgPath1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDImgConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDImgConfiguration, SOAP_TYPE_tt__OSDImgConfiguration, sizeof(tt__OSDImgConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDImgConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDImgConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDImgConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDImgConfiguration *p; - size_t k = sizeof(tt__OSDImgConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDImgConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDImgConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDImgConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDImgConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDImgConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDImgConfiguration(soap, tag ? tag : "tt:OSDImgConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDImgConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDImgConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDImgConfiguration * SOAP_FMAC4 soap_get_tt__OSDImgConfiguration(struct soap *soap, tt__OSDImgConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDImgConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDTextConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDTextConfigurationExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDTextConfigurationExtension::__anyAttribute); -} - -void tt__OSDTextConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDTextConfigurationExtension::__any); -#endif -} - -int tt__OSDTextConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDTextConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__OSDTextConfigurationExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDTextConfigurationExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDTextConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDTextConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDTextConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDTextConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDTextConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDTextConfigurationExtension(struct soap *soap, const char *tag, tt__OSDTextConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDTextConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDTextConfigurationExtension, sizeof(tt__OSDTextConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDTextConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDTextConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDTextConfigurationExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDTextConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDTextConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDTextConfigurationExtension, SOAP_TYPE_tt__OSDTextConfigurationExtension, sizeof(tt__OSDTextConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDTextConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDTextConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDTextConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDTextConfigurationExtension *p; - size_t k = sizeof(tt__OSDTextConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDTextConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDTextConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDTextConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDTextConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDTextConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDTextConfigurationExtension(soap, tag ? tag : "tt:OSDTextConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDTextConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDTextConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDTextConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDTextConfigurationExtension(struct soap *soap, tt__OSDTextConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDTextConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDTextConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__OSDTextConfiguration::Type); - this->tt__OSDTextConfiguration::DateFormat = NULL; - this->tt__OSDTextConfiguration::TimeFormat = NULL; - this->tt__OSDTextConfiguration::FontSize = NULL; - this->tt__OSDTextConfiguration::FontColor = NULL; - this->tt__OSDTextConfiguration::BackgroundColor = NULL; - this->tt__OSDTextConfiguration::PlainText = NULL; - this->tt__OSDTextConfiguration::Extension = NULL; - this->tt__OSDTextConfiguration::IsPersistentText = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDTextConfiguration::__anyAttribute); -} - -void tt__OSDTextConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__OSDTextConfiguration::Type, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__OSDTextConfiguration::Type); - soap_serialize_PointerTostd__string(soap, &this->tt__OSDTextConfiguration::DateFormat); - soap_serialize_PointerTostd__string(soap, &this->tt__OSDTextConfiguration::TimeFormat); - soap_serialize_PointerToint(soap, &this->tt__OSDTextConfiguration::FontSize); - soap_serialize_PointerTott__OSDColor(soap, &this->tt__OSDTextConfiguration::FontColor); - soap_serialize_PointerTott__OSDColor(soap, &this->tt__OSDTextConfiguration::BackgroundColor); - soap_serialize_PointerTostd__string(soap, &this->tt__OSDTextConfiguration::PlainText); - soap_serialize_PointerTott__OSDTextConfigurationExtension(soap, &this->tt__OSDTextConfiguration::Extension); -#endif -} - -int tt__OSDTextConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDTextConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextConfiguration(struct soap *soap, const char *tag, int id, const tt__OSDTextConfiguration *a, const char *type) -{ - if (((tt__OSDTextConfiguration*)a)->IsPersistentText) - { soap_set_attr(soap, "IsPersistentText", soap_bool2s(soap, *((tt__OSDTextConfiguration*)a)->IsPersistentText), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDTextConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDTextConfiguration), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Type", -1, &a->tt__OSDTextConfiguration::Type, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:DateFormat", -1, &a->tt__OSDTextConfiguration::DateFormat, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:TimeFormat", -1, &a->tt__OSDTextConfiguration::TimeFormat, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tt:FontSize", -1, &a->tt__OSDTextConfiguration::FontSize, "")) - return soap->error; - if (soap_out_PointerTott__OSDColor(soap, "tt:FontColor", -1, &a->tt__OSDTextConfiguration::FontColor, "")) - return soap->error; - if (soap_out_PointerTott__OSDColor(soap, "tt:BackgroundColor", -1, &a->tt__OSDTextConfiguration::BackgroundColor, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:PlainText", -1, &a->tt__OSDTextConfiguration::PlainText, "")) - return soap->error; - if (soap_out_PointerTott__OSDTextConfigurationExtension(soap, "tt:Extension", -1, &a->tt__OSDTextConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDTextConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDTextConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDTextConfiguration * SOAP_FMAC4 soap_in_tt__OSDTextConfiguration(struct soap *soap, const char *tag, tt__OSDTextConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDTextConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDTextConfiguration, sizeof(tt__OSDTextConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDTextConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDTextConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "IsPersistentText", 5, 0); - if (t) - { - if (!(((tt__OSDTextConfiguration*)a)->IsPersistentText = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__OSDTextConfiguration*)a)->IsPersistentText)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDTextConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_DateFormat1 = 1; - size_t soap_flag_TimeFormat1 = 1; - size_t soap_flag_FontSize1 = 1; - size_t soap_flag_FontColor1 = 1; - size_t soap_flag_BackgroundColor1 = 1; - size_t soap_flag_PlainText1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Type", &a->tt__OSDTextConfiguration::Type, "xsd:string")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_DateFormat1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:DateFormat", &a->tt__OSDTextConfiguration::DateFormat, "xsd:string")) - { soap_flag_DateFormat1--; - continue; - } - } - if (soap_flag_TimeFormat1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:TimeFormat", &a->tt__OSDTextConfiguration::TimeFormat, "xsd:string")) - { soap_flag_TimeFormat1--; - continue; - } - } - if (soap_flag_FontSize1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:FontSize", &a->tt__OSDTextConfiguration::FontSize, "xsd:int")) - { soap_flag_FontSize1--; - continue; - } - } - if (soap_flag_FontColor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDColor(soap, "tt:FontColor", &a->tt__OSDTextConfiguration::FontColor, "tt:OSDColor")) - { soap_flag_FontColor1--; - continue; - } - } - if (soap_flag_BackgroundColor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDColor(soap, "tt:BackgroundColor", &a->tt__OSDTextConfiguration::BackgroundColor, "tt:OSDColor")) - { soap_flag_BackgroundColor1--; - continue; - } - } - if (soap_flag_PlainText1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:PlainText", &a->tt__OSDTextConfiguration::PlainText, "xsd:string")) - { soap_flag_PlainText1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDTextConfigurationExtension(soap, "tt:Extension", &a->tt__OSDTextConfiguration::Extension, "tt:OSDTextConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDTextConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDTextConfiguration, SOAP_TYPE_tt__OSDTextConfiguration, sizeof(tt__OSDTextConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDTextConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDTextConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDTextConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDTextConfiguration *p; - size_t k = sizeof(tt__OSDTextConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDTextConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDTextConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDTextConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDTextConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDTextConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDTextConfiguration(soap, tag ? tag : "tt:OSDTextConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDTextConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDTextConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDTextConfiguration * SOAP_FMAC4 soap_get_tt__OSDTextConfiguration(struct soap *soap, tt__OSDTextConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDTextConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDColor::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__OSDColor::Color = NULL; - this->tt__OSDColor::Transparent = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDColor::__anyAttribute); -} - -void tt__OSDColor::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Color(soap, &this->tt__OSDColor::Color); -#endif -} - -int tt__OSDColor::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDColor(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDColor(struct soap *soap, const char *tag, int id, const tt__OSDColor *a, const char *type) -{ - if (((tt__OSDColor*)a)->Transparent) - { soap_set_attr(soap, "Transparent", soap_int2s(soap, *((tt__OSDColor*)a)->Transparent), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDColor*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDColor), type)) - return soap->error; - if (!a->tt__OSDColor::Color) - { if (soap_element_empty(soap, "tt:Color", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Color(soap, "tt:Color", -1, &a->tt__OSDColor::Color, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDColor::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDColor(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDColor * SOAP_FMAC4 soap_in_tt__OSDColor(struct soap *soap, const char *tag, tt__OSDColor *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDColor*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDColor, sizeof(tt__OSDColor), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDColor) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDColor *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "Transparent", 5, 0); - if (t) - { - if (!(((tt__OSDColor*)a)->Transparent = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__OSDColor*)a)->Transparent)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDColor*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Color1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Color1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Color(soap, "tt:Color", &a->tt__OSDColor::Color, "tt:Color")) - { soap_flag_Color1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__OSDColor::Color)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDColor *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDColor, SOAP_TYPE_tt__OSDColor, sizeof(tt__OSDColor), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDColor * SOAP_FMAC2 soap_instantiate_tt__OSDColor(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDColor(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDColor *p; - size_t k = sizeof(tt__OSDColor); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDColor, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDColor); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDColor, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDColor location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDColor::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDColor(soap, tag ? tag : "tt:OSDColor", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDColor::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDColor(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDColor * SOAP_FMAC4 soap_get_tt__OSDColor(struct soap *soap, tt__OSDColor *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDColor(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDPosConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDPosConfigurationExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDPosConfigurationExtension::__anyAttribute); -} - -void tt__OSDPosConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__OSDPosConfigurationExtension::__any); -#endif -} - -int tt__OSDPosConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDPosConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDPosConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__OSDPosConfigurationExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDPosConfigurationExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDPosConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__OSDPosConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDPosConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDPosConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDPosConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDPosConfigurationExtension(struct soap *soap, const char *tag, tt__OSDPosConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDPosConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDPosConfigurationExtension, sizeof(tt__OSDPosConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDPosConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDPosConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDPosConfigurationExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__OSDPosConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__OSDPosConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDPosConfigurationExtension, SOAP_TYPE_tt__OSDPosConfigurationExtension, sizeof(tt__OSDPosConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDPosConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDPosConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDPosConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDPosConfigurationExtension *p; - size_t k = sizeof(tt__OSDPosConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDPosConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDPosConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDPosConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDPosConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDPosConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDPosConfigurationExtension(soap, tag ? tag : "tt:OSDPosConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDPosConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDPosConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDPosConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDPosConfigurationExtension(struct soap *soap, tt__OSDPosConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDPosConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDPosConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__OSDPosConfiguration::Type); - this->tt__OSDPosConfiguration::Pos = NULL; - this->tt__OSDPosConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__OSDPosConfiguration::__anyAttribute); -} - -void tt__OSDPosConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__OSDPosConfiguration::Type, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__OSDPosConfiguration::Type); - soap_serialize_PointerTott__Vector(soap, &this->tt__OSDPosConfiguration::Pos); - soap_serialize_PointerTott__OSDPosConfigurationExtension(soap, &this->tt__OSDPosConfiguration::Extension); -#endif -} - -int tt__OSDPosConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDPosConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDPosConfiguration(struct soap *soap, const char *tag, int id, const tt__OSDPosConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDPosConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OSDPosConfiguration), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Type", -1, &a->tt__OSDPosConfiguration::Type, "")) - return soap->error; - if (soap_out_PointerTott__Vector(soap, "tt:Pos", -1, &a->tt__OSDPosConfiguration::Pos, "")) - return soap->error; - if (soap_out_PointerTott__OSDPosConfigurationExtension(soap, "tt:Extension", -1, &a->tt__OSDPosConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OSDPosConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDPosConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDPosConfiguration * SOAP_FMAC4 soap_in_tt__OSDPosConfiguration(struct soap *soap, const char *tag, tt__OSDPosConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OSDPosConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDPosConfiguration, sizeof(tt__OSDPosConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDPosConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OSDPosConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDPosConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_Pos1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Type", &a->tt__OSDPosConfiguration::Type, "xsd:string")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_Pos1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Vector(soap, "tt:Pos", &a->tt__OSDPosConfiguration::Pos, "tt:Vector")) - { soap_flag_Pos1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__OSDPosConfigurationExtension(soap, "tt:Extension", &a->tt__OSDPosConfiguration::Extension, "tt:OSDPosConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OSDPosConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OSDPosConfiguration, SOAP_TYPE_tt__OSDPosConfiguration, sizeof(tt__OSDPosConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OSDPosConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDPosConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDPosConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDPosConfiguration *p; - size_t k = sizeof(tt__OSDPosConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDPosConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDPosConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDPosConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDPosConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDPosConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDPosConfiguration(soap, tag ? tag : "tt:OSDPosConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDPosConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDPosConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDPosConfiguration * SOAP_FMAC4 soap_get_tt__OSDPosConfiguration(struct soap *soap, tt__OSDPosConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDPosConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OSDReference::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__OSDReference::__item); - soap_default_xsd__anyAttribute(soap, &this->tt__OSDReference::__anyAttribute); -} - -void tt__OSDReference::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__OSDReference::__item, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__OSDReference::__item); -#endif -} - -int tt__OSDReference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OSDReference(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDReference(struct soap *soap, const char *tag, int id, const tt__OSDReference *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__OSDReference*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_tt__ReferenceToken(soap, tag, id, &a->tt__OSDReference::__item, ""); -} - -void *tt__OSDReference::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OSDReference(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OSDReference * SOAP_FMAC4 soap_in_tt__OSDReference(struct soap *soap, const char *tag, tt__OSDReference *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__OSDReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OSDReference, sizeof(tt__OSDReference), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OSDReference) - return (tt__OSDReference *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__OSDReference*)a)->__anyAttribute, "xsd:anyAttribute"); - if (!soap_in_tt__ReferenceToken(soap, tag, &a->tt__OSDReference::__item, "tt:OSDReference")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__OSDReference * SOAP_FMAC2 soap_instantiate_tt__OSDReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OSDReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OSDReference *p; - size_t k = sizeof(tt__OSDReference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OSDReference, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OSDReference); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OSDReference, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OSDReference location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OSDReference::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OSDReference(soap, tag ? tag : "tt:OSDReference", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OSDReference::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OSDReference(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OSDReference * SOAP_FMAC4 soap_get_tt__OSDReference(struct soap *soap, tt__OSDReference *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OSDReference(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ProfileStatusExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileStatusExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ProfileStatusExtension::__anyAttribute); -} - -void tt__ProfileStatusExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileStatusExtension::__any); -#endif -} - -int tt__ProfileStatusExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ProfileStatusExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileStatusExtension(struct soap *soap, const char *tag, int id, const tt__ProfileStatusExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ProfileStatusExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ProfileStatusExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ProfileStatusExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ProfileStatusExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ProfileStatusExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ProfileStatusExtension * SOAP_FMAC4 soap_in_tt__ProfileStatusExtension(struct soap *soap, const char *tag, tt__ProfileStatusExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ProfileStatusExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ProfileStatusExtension, sizeof(tt__ProfileStatusExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ProfileStatusExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ProfileStatusExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ProfileStatusExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ProfileStatusExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ProfileStatusExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ProfileStatusExtension, SOAP_TYPE_tt__ProfileStatusExtension, sizeof(tt__ProfileStatusExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ProfileStatusExtension * SOAP_FMAC2 soap_instantiate_tt__ProfileStatusExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ProfileStatusExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ProfileStatusExtension *p; - size_t k = sizeof(tt__ProfileStatusExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ProfileStatusExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ProfileStatusExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ProfileStatusExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ProfileStatusExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ProfileStatusExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ProfileStatusExtension(soap, tag ? tag : "tt:ProfileStatusExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ProfileStatusExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ProfileStatusExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ProfileStatusExtension * SOAP_FMAC4 soap_get_tt__ProfileStatusExtension(struct soap *soap, tt__ProfileStatusExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ProfileStatusExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ProfileStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__ActiveConnection(soap, &this->tt__ProfileStatus::ActiveConnections); - this->tt__ProfileStatus::Extension = NULL; -} - -void tt__ProfileStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__ActiveConnection(soap, &this->tt__ProfileStatus::ActiveConnections); - soap_serialize_PointerTott__ProfileStatusExtension(soap, &this->tt__ProfileStatus::Extension); -#endif -} - -int tt__ProfileStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ProfileStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileStatus(struct soap *soap, const char *tag, int id, const tt__ProfileStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ProfileStatus), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__ActiveConnection(soap, "tt:ActiveConnections", -1, &a->tt__ProfileStatus::ActiveConnections, "")) - return soap->error; - if (soap_out_PointerTott__ProfileStatusExtension(soap, "tt:Extension", -1, &a->tt__ProfileStatus::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ProfileStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ProfileStatus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ProfileStatus * SOAP_FMAC4 soap_in_tt__ProfileStatus(struct soap *soap, const char *tag, tt__ProfileStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ProfileStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ProfileStatus, sizeof(tt__ProfileStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ProfileStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ProfileStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__ActiveConnection(soap, "tt:ActiveConnections", &a->tt__ProfileStatus::ActiveConnections, "tt:ActiveConnection")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ProfileStatusExtension(soap, "tt:Extension", &a->tt__ProfileStatus::Extension, "tt:ProfileStatusExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ProfileStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ProfileStatus, SOAP_TYPE_tt__ProfileStatus, sizeof(tt__ProfileStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ProfileStatus * SOAP_FMAC2 soap_instantiate_tt__ProfileStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ProfileStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ProfileStatus *p; - size_t k = sizeof(tt__ProfileStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ProfileStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ProfileStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ProfileStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ProfileStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ProfileStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ProfileStatus(soap, tag ? tag : "tt:ProfileStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ProfileStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ProfileStatus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ProfileStatus * SOAP_FMAC4 soap_get_tt__ProfileStatus(struct soap *soap, tt__ProfileStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ProfileStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ActiveConnection::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__ActiveConnection::CurrentBitrate); - soap_default_float(soap, &this->tt__ActiveConnection::CurrentFps); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ActiveConnection::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ActiveConnection::__anyAttribute); -} - -void tt__ActiveConnection::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ActiveConnection::CurrentBitrate, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__ActiveConnection::CurrentFps, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ActiveConnection::__any); -#endif -} - -int tt__ActiveConnection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ActiveConnection(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ActiveConnection(struct soap *soap, const char *tag, int id, const tt__ActiveConnection *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ActiveConnection*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ActiveConnection), type)) - return soap->error; - if (soap_out_float(soap, "tt:CurrentBitrate", -1, &a->tt__ActiveConnection::CurrentBitrate, "")) - return soap->error; - if (soap_out_float(soap, "tt:CurrentFps", -1, &a->tt__ActiveConnection::CurrentFps, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ActiveConnection::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ActiveConnection::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ActiveConnection(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ActiveConnection * SOAP_FMAC4 soap_in_tt__ActiveConnection(struct soap *soap, const char *tag, tt__ActiveConnection *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ActiveConnection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ActiveConnection, sizeof(tt__ActiveConnection), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ActiveConnection) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ActiveConnection *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ActiveConnection*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CurrentBitrate1 = 1; - size_t soap_flag_CurrentFps1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CurrentBitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:CurrentBitrate", &a->tt__ActiveConnection::CurrentBitrate, "xsd:float")) - { soap_flag_CurrentBitrate1--; - continue; - } - } - if (soap_flag_CurrentFps1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:CurrentFps", &a->tt__ActiveConnection::CurrentFps, "xsd:float")) - { soap_flag_CurrentFps1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ActiveConnection::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CurrentBitrate1 > 0 || soap_flag_CurrentFps1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ActiveConnection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ActiveConnection, SOAP_TYPE_tt__ActiveConnection, sizeof(tt__ActiveConnection), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ActiveConnection * SOAP_FMAC2 soap_instantiate_tt__ActiveConnection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ActiveConnection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ActiveConnection *p; - size_t k = sizeof(tt__ActiveConnection); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ActiveConnection, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ActiveConnection); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ActiveConnection, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ActiveConnection location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ActiveConnection::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ActiveConnection(soap, tag ? tag : "tt:ActiveConnection", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ActiveConnection::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ActiveConnection(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ActiveConnection * SOAP_FMAC4 soap_get_tt__ActiveConnection(struct soap *soap, tt__ActiveConnection *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ActiveConnection(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioClassDescriptorExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioClassDescriptorExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioClassDescriptorExtension::__anyAttribute); -} - -void tt__AudioClassDescriptorExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioClassDescriptorExtension::__any); -#endif -} - -int tt__AudioClassDescriptorExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioClassDescriptorExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassDescriptorExtension(struct soap *soap, const char *tag, int id, const tt__AudioClassDescriptorExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioClassDescriptorExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioClassDescriptorExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioClassDescriptorExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioClassDescriptorExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioClassDescriptorExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioClassDescriptorExtension * SOAP_FMAC4 soap_in_tt__AudioClassDescriptorExtension(struct soap *soap, const char *tag, tt__AudioClassDescriptorExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioClassDescriptorExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioClassDescriptorExtension, sizeof(tt__AudioClassDescriptorExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioClassDescriptorExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioClassDescriptorExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioClassDescriptorExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioClassDescriptorExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AudioClassDescriptorExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioClassDescriptorExtension, SOAP_TYPE_tt__AudioClassDescriptorExtension, sizeof(tt__AudioClassDescriptorExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioClassDescriptorExtension * SOAP_FMAC2 soap_instantiate_tt__AudioClassDescriptorExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioClassDescriptorExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioClassDescriptorExtension *p; - size_t k = sizeof(tt__AudioClassDescriptorExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioClassDescriptorExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioClassDescriptorExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioClassDescriptorExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioClassDescriptorExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioClassDescriptorExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioClassDescriptorExtension(soap, tag ? tag : "tt:AudioClassDescriptorExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioClassDescriptorExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioClassDescriptorExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioClassDescriptorExtension * SOAP_FMAC4 soap_get_tt__AudioClassDescriptorExtension(struct soap *soap, tt__AudioClassDescriptorExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioClassDescriptorExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioClassDescriptor::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioClassCandidate(soap, &this->tt__AudioClassDescriptor::ClassCandidate); - this->tt__AudioClassDescriptor::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__AudioClassDescriptor::__anyAttribute); -} - -void tt__AudioClassDescriptor::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioClassCandidate(soap, &this->tt__AudioClassDescriptor::ClassCandidate); - soap_serialize_PointerTott__AudioClassDescriptorExtension(soap, &this->tt__AudioClassDescriptor::Extension); -#endif -} - -int tt__AudioClassDescriptor::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioClassDescriptor(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassDescriptor(struct soap *soap, const char *tag, int id, const tt__AudioClassDescriptor *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioClassDescriptor*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioClassDescriptor), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__AudioClassCandidate(soap, "tt:ClassCandidate", -1, &a->tt__AudioClassDescriptor::ClassCandidate, "")) - return soap->error; - if (soap_out_PointerTott__AudioClassDescriptorExtension(soap, "tt:Extension", -1, &a->tt__AudioClassDescriptor::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioClassDescriptor::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioClassDescriptor(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioClassDescriptor * SOAP_FMAC4 soap_in_tt__AudioClassDescriptor(struct soap *soap, const char *tag, tt__AudioClassDescriptor *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioClassDescriptor*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioClassDescriptor, sizeof(tt__AudioClassDescriptor), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioClassDescriptor) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioClassDescriptor *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioClassDescriptor*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioClassCandidate(soap, "tt:ClassCandidate", &a->tt__AudioClassDescriptor::ClassCandidate, "tt:AudioClassCandidate")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioClassDescriptorExtension(soap, "tt:Extension", &a->tt__AudioClassDescriptor::Extension, "tt:AudioClassDescriptorExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AudioClassDescriptor *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioClassDescriptor, SOAP_TYPE_tt__AudioClassDescriptor, sizeof(tt__AudioClassDescriptor), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioClassDescriptor * SOAP_FMAC2 soap_instantiate_tt__AudioClassDescriptor(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioClassDescriptor(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioClassDescriptor *p; - size_t k = sizeof(tt__AudioClassDescriptor); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioClassDescriptor, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioClassDescriptor); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioClassDescriptor, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioClassDescriptor location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioClassDescriptor::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioClassDescriptor(soap, tag ? tag : "tt:AudioClassDescriptor", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioClassDescriptor::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioClassDescriptor(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioClassDescriptor * SOAP_FMAC4 soap_get_tt__AudioClassDescriptor(struct soap *soap, tt__AudioClassDescriptor *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioClassDescriptor(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioClassCandidate::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AudioClassType(soap, &this->tt__AudioClassCandidate::Type); - soap_default_float(soap, &this->tt__AudioClassCandidate::Likelihood); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioClassCandidate::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioClassCandidate::__anyAttribute); -} - -void tt__AudioClassCandidate::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__AudioClassType(soap, &this->tt__AudioClassCandidate::Type); - soap_embedded(soap, &this->tt__AudioClassCandidate::Likelihood, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioClassCandidate::__any); -#endif -} - -int tt__AudioClassCandidate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioClassCandidate(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassCandidate(struct soap *soap, const char *tag, int id, const tt__AudioClassCandidate *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioClassCandidate*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioClassCandidate), type)) - return soap->error; - if (soap_out_tt__AudioClassType(soap, "tt:Type", -1, &a->tt__AudioClassCandidate::Type, "")) - return soap->error; - if (soap_out_float(soap, "tt:Likelihood", -1, &a->tt__AudioClassCandidate::Likelihood, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioClassCandidate::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioClassCandidate::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioClassCandidate(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioClassCandidate * SOAP_FMAC4 soap_in_tt__AudioClassCandidate(struct soap *soap, const char *tag, tt__AudioClassCandidate *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioClassCandidate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioClassCandidate, sizeof(tt__AudioClassCandidate), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioClassCandidate) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioClassCandidate *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioClassCandidate*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_Likelihood1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__AudioClassType(soap, "tt:Type", &a->tt__AudioClassCandidate::Type, "tt:AudioClassType")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_Likelihood1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Likelihood", &a->tt__AudioClassCandidate::Likelihood, "xsd:float")) - { soap_flag_Likelihood1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioClassCandidate::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0 || soap_flag_Likelihood1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioClassCandidate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioClassCandidate, SOAP_TYPE_tt__AudioClassCandidate, sizeof(tt__AudioClassCandidate), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioClassCandidate * SOAP_FMAC2 soap_instantiate_tt__AudioClassCandidate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioClassCandidate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioClassCandidate *p; - size_t k = sizeof(tt__AudioClassCandidate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioClassCandidate, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioClassCandidate); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioClassCandidate, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioClassCandidate location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioClassCandidate::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioClassCandidate(soap, tag ? tag : "tt:AudioClassCandidate", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioClassCandidate::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioClassCandidate(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioClassCandidate * SOAP_FMAC4 soap_get_tt__AudioClassCandidate(struct soap *soap, tt__AudioClassCandidate *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioClassCandidate(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ActionEngineEventPayloadExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ActionEngineEventPayloadExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ActionEngineEventPayloadExtension::__anyAttribute); -} - -void tt__ActionEngineEventPayloadExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ActionEngineEventPayloadExtension::__any); -#endif -} - -int tt__ActionEngineEventPayloadExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ActionEngineEventPayloadExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ActionEngineEventPayloadExtension(struct soap *soap, const char *tag, int id, const tt__ActionEngineEventPayloadExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ActionEngineEventPayloadExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ActionEngineEventPayloadExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ActionEngineEventPayloadExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ActionEngineEventPayloadExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ActionEngineEventPayloadExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ActionEngineEventPayloadExtension * SOAP_FMAC4 soap_in_tt__ActionEngineEventPayloadExtension(struct soap *soap, const char *tag, tt__ActionEngineEventPayloadExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ActionEngineEventPayloadExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ActionEngineEventPayloadExtension, sizeof(tt__ActionEngineEventPayloadExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ActionEngineEventPayloadExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ActionEngineEventPayloadExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ActionEngineEventPayloadExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ActionEngineEventPayloadExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ActionEngineEventPayloadExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ActionEngineEventPayloadExtension, SOAP_TYPE_tt__ActionEngineEventPayloadExtension, sizeof(tt__ActionEngineEventPayloadExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ActionEngineEventPayloadExtension * SOAP_FMAC2 soap_instantiate_tt__ActionEngineEventPayloadExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ActionEngineEventPayloadExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ActionEngineEventPayloadExtension *p; - size_t k = sizeof(tt__ActionEngineEventPayloadExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ActionEngineEventPayloadExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ActionEngineEventPayloadExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ActionEngineEventPayloadExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ActionEngineEventPayloadExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ActionEngineEventPayloadExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ActionEngineEventPayloadExtension(soap, tag ? tag : "tt:ActionEngineEventPayloadExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ActionEngineEventPayloadExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ActionEngineEventPayloadExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ActionEngineEventPayloadExtension * SOAP_FMAC4 soap_get_tt__ActionEngineEventPayloadExtension(struct soap *soap, tt__ActionEngineEventPayloadExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ActionEngineEventPayloadExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ActionEngineEventPayload::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ActionEngineEventPayload::RequestInfo = NULL; - this->tt__ActionEngineEventPayload::ResponseInfo = NULL; - this->tt__ActionEngineEventPayload::Fault = NULL; - this->tt__ActionEngineEventPayload::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ActionEngineEventPayload::__anyAttribute); -} - -void tt__ActionEngineEventPayload::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToSOAP_ENV__Envelope(soap, &this->tt__ActionEngineEventPayload::RequestInfo); - soap_serialize_PointerToSOAP_ENV__Envelope(soap, &this->tt__ActionEngineEventPayload::ResponseInfo); - soap_serialize_PointerToSOAP_ENV__Fault(soap, &this->tt__ActionEngineEventPayload::Fault); - soap_serialize_PointerTott__ActionEngineEventPayloadExtension(soap, &this->tt__ActionEngineEventPayload::Extension); -#endif -} - -int tt__ActionEngineEventPayload::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ActionEngineEventPayload(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ActionEngineEventPayload(struct soap *soap, const char *tag, int id, const tt__ActionEngineEventPayload *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ActionEngineEventPayload*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ActionEngineEventPayload), type)) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Envelope(soap, "tt:RequestInfo", -1, &a->tt__ActionEngineEventPayload::RequestInfo, "")) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Envelope(soap, "tt:ResponseInfo", -1, &a->tt__ActionEngineEventPayload::ResponseInfo, "")) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Fault(soap, "tt:Fault", -1, &a->tt__ActionEngineEventPayload::Fault, "")) - return soap->error; - if (soap_out_PointerTott__ActionEngineEventPayloadExtension(soap, "tt:Extension", -1, &a->tt__ActionEngineEventPayload::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ActionEngineEventPayload::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ActionEngineEventPayload(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ActionEngineEventPayload * SOAP_FMAC4 soap_in_tt__ActionEngineEventPayload(struct soap *soap, const char *tag, tt__ActionEngineEventPayload *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ActionEngineEventPayload*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ActionEngineEventPayload, sizeof(tt__ActionEngineEventPayload), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ActionEngineEventPayload) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ActionEngineEventPayload *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ActionEngineEventPayload*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RequestInfo1 = 1; - size_t soap_flag_ResponseInfo1 = 1; - size_t soap_flag_Fault1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RequestInfo1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToSOAP_ENV__Envelope(soap, "tt:RequestInfo", &a->tt__ActionEngineEventPayload::RequestInfo, "")) - { soap_flag_RequestInfo1--; - continue; - } - } - if (soap_flag_ResponseInfo1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToSOAP_ENV__Envelope(soap, "tt:ResponseInfo", &a->tt__ActionEngineEventPayload::ResponseInfo, "")) - { soap_flag_ResponseInfo1--; - continue; - } - } - if (soap_flag_Fault1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToSOAP_ENV__Fault(soap, "tt:Fault", &a->tt__ActionEngineEventPayload::Fault, "")) - { soap_flag_Fault1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ActionEngineEventPayloadExtension(soap, "tt:Extension", &a->tt__ActionEngineEventPayload::Extension, "tt:ActionEngineEventPayloadExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ActionEngineEventPayload *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ActionEngineEventPayload, SOAP_TYPE_tt__ActionEngineEventPayload, sizeof(tt__ActionEngineEventPayload), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ActionEngineEventPayload * SOAP_FMAC2 soap_instantiate_tt__ActionEngineEventPayload(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ActionEngineEventPayload(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ActionEngineEventPayload *p; - size_t k = sizeof(tt__ActionEngineEventPayload); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ActionEngineEventPayload, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ActionEngineEventPayload); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ActionEngineEventPayload, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ActionEngineEventPayload location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ActionEngineEventPayload::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ActionEngineEventPayload(soap, tag ? tag : "tt:ActionEngineEventPayload", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ActionEngineEventPayload::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ActionEngineEventPayload(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ActionEngineEventPayload * SOAP_FMAC4 soap_get_tt__ActionEngineEventPayload(struct soap *soap, tt__ActionEngineEventPayload *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ActionEngineEventPayload(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsState::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__AnalyticsState::Error = NULL; - soap_default_std__string(soap, &this->tt__AnalyticsState::State); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsState::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsState::__anyAttribute); -} - -void tt__AnalyticsState::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTostd__string(soap, &this->tt__AnalyticsState::Error); - soap_embedded(soap, &this->tt__AnalyticsState::State, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__AnalyticsState::State); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsState::__any); -#endif -} - -int tt__AnalyticsState::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsState(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsState(struct soap *soap, const char *tag, int id, const tt__AnalyticsState *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsState*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsState), type)) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Error", -1, &a->tt__AnalyticsState::Error, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:State", -1, &a->tt__AnalyticsState::State, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsState::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsState::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsState(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsState * SOAP_FMAC4 soap_in_tt__AnalyticsState(struct soap *soap, const char *tag, tt__AnalyticsState *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsState, sizeof(tt__AnalyticsState), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsState) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsState *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsState*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Error1 = 1; - size_t soap_flag_State1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Error1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Error", &a->tt__AnalyticsState::Error, "xsd:string")) - { soap_flag_Error1--; - continue; - } - } - if (soap_flag_State1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:State", &a->tt__AnalyticsState::State, "xsd:string")) - { soap_flag_State1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsState::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_State1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsState, SOAP_TYPE_tt__AnalyticsState, sizeof(tt__AnalyticsState), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsState * SOAP_FMAC2 soap_instantiate_tt__AnalyticsState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsState *p; - size_t k = sizeof(tt__AnalyticsState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsState); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsState, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsState::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsState(soap, tag ? tag : "tt:AnalyticsState", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsState::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsState(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsState * SOAP_FMAC4 soap_get_tt__AnalyticsState(struct soap *soap, tt__AnalyticsState *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsStateInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__AnalyticsStateInformation::AnalyticsEngineControlToken); - this->tt__AnalyticsStateInformation::State = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsStateInformation::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsStateInformation::__anyAttribute); -} - -void tt__AnalyticsStateInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AnalyticsStateInformation::AnalyticsEngineControlToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__AnalyticsStateInformation::AnalyticsEngineControlToken); - soap_serialize_PointerTott__AnalyticsState(soap, &this->tt__AnalyticsStateInformation::State); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsStateInformation::__any); -#endif -} - -int tt__AnalyticsStateInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsStateInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsStateInformation(struct soap *soap, const char *tag, int id, const tt__AnalyticsStateInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsStateInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsStateInformation), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:AnalyticsEngineControlToken", -1, &a->tt__AnalyticsStateInformation::AnalyticsEngineControlToken, "")) - return soap->error; - if (!a->tt__AnalyticsStateInformation::State) - { if (soap_element_empty(soap, "tt:State", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AnalyticsState(soap, "tt:State", -1, &a->tt__AnalyticsStateInformation::State, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsStateInformation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsStateInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsStateInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsStateInformation * SOAP_FMAC4 soap_in_tt__AnalyticsStateInformation(struct soap *soap, const char *tag, tt__AnalyticsStateInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsStateInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsStateInformation, sizeof(tt__AnalyticsStateInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsStateInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsStateInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsStateInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AnalyticsEngineControlToken1 = 1; - size_t soap_flag_State1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AnalyticsEngineControlToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:AnalyticsEngineControlToken", &a->tt__AnalyticsStateInformation::AnalyticsEngineControlToken, "tt:ReferenceToken")) - { soap_flag_AnalyticsEngineControlToken1--; - continue; - } - } - if (soap_flag_State1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsState(soap, "tt:State", &a->tt__AnalyticsStateInformation::State, "tt:AnalyticsState")) - { soap_flag_State1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsStateInformation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AnalyticsEngineControlToken1 > 0 || !a->tt__AnalyticsStateInformation::State)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsStateInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsStateInformation, SOAP_TYPE_tt__AnalyticsStateInformation, sizeof(tt__AnalyticsStateInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsStateInformation * SOAP_FMAC2 soap_instantiate_tt__AnalyticsStateInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsStateInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsStateInformation *p; - size_t k = sizeof(tt__AnalyticsStateInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsStateInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsStateInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsStateInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsStateInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsStateInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsStateInformation(soap, tag ? tag : "tt:AnalyticsStateInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsStateInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsStateInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsStateInformation * SOAP_FMAC4 soap_get_tt__AnalyticsStateInformation(struct soap *soap, tt__AnalyticsStateInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsStateInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsEngineControl::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::EngineToken); - soap_default_tt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::EngineConfigToken); - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::InputToken); - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::ReceiverToken); - this->tt__AnalyticsEngineControl::Multicast = NULL; - this->tt__AnalyticsEngineControl::Subscription = NULL; - soap_default_tt__ModeOfOperation(soap, &this->tt__AnalyticsEngineControl::Mode); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineControl::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsEngineControl::__anyAttribute); -} - -void tt__AnalyticsEngineControl::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AnalyticsEngineControl::EngineToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::EngineToken); - soap_embedded(soap, &this->tt__AnalyticsEngineControl::EngineConfigToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::EngineConfigToken); - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::InputToken); - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AnalyticsEngineControl::ReceiverToken); - soap_serialize_PointerTott__MulticastConfiguration(soap, &this->tt__AnalyticsEngineControl::Multicast); - soap_serialize_PointerTott__Config(soap, &this->tt__AnalyticsEngineControl::Subscription); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineControl::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AnalyticsEngineControl::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsEngineControl(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineControl(struct soap *soap, const char *tag, int id, const tt__AnalyticsEngineControl *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsEngineControl*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsEngineControl), type ? type : "tt:AnalyticsEngineControl")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:EngineToken", -1, &a->tt__AnalyticsEngineControl::EngineToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:EngineConfigToken", -1, &a->tt__AnalyticsEngineControl::EngineConfigToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tt:InputToken", -1, &a->tt__AnalyticsEngineControl::InputToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tt:ReceiverToken", -1, &a->tt__AnalyticsEngineControl::ReceiverToken, "")) - return soap->error; - if (soap_out_PointerTott__MulticastConfiguration(soap, "tt:Multicast", -1, &a->tt__AnalyticsEngineControl::Multicast, "")) - return soap->error; - if (!a->tt__AnalyticsEngineControl::Subscription) - { if (soap_element_empty(soap, "tt:Subscription", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Config(soap, "tt:Subscription", -1, &a->tt__AnalyticsEngineControl::Subscription, "")) - return soap->error; - if (soap_out_tt__ModeOfOperation(soap, "tt:Mode", -1, &a->tt__AnalyticsEngineControl::Mode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsEngineControl::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsEngineControl::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsEngineControl(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineControl * SOAP_FMAC4 soap_in_tt__AnalyticsEngineControl(struct soap *soap, const char *tag, tt__AnalyticsEngineControl *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsEngineControl*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsEngineControl, sizeof(tt__AnalyticsEngineControl), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsEngineControl) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsEngineControl *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsEngineControl*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_EngineToken1 = 1; - size_t soap_flag_EngineConfigToken1 = 1; - size_t soap_flag_Multicast1 = 1; - size_t soap_flag_Subscription1 = 1; - size_t soap_flag_Mode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_EngineToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:EngineToken", &a->tt__AnalyticsEngineControl::EngineToken, "tt:ReferenceToken")) - { soap_flag_EngineToken1--; - continue; - } - } - if (soap_flag_EngineConfigToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:EngineConfigToken", &a->tt__AnalyticsEngineControl::EngineConfigToken, "tt:ReferenceToken")) - { soap_flag_EngineConfigToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tt:InputToken", &a->tt__AnalyticsEngineControl::InputToken, "tt:ReferenceToken")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tt:ReceiverToken", &a->tt__AnalyticsEngineControl::ReceiverToken, "tt:ReferenceToken")) - continue; - } - if (soap_flag_Multicast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MulticastConfiguration(soap, "tt:Multicast", &a->tt__AnalyticsEngineControl::Multicast, "tt:MulticastConfiguration")) - { soap_flag_Multicast1--; - continue; - } - } - if (soap_flag_Subscription1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Config(soap, "tt:Subscription", &a->tt__AnalyticsEngineControl::Subscription, "tt:Config")) - { soap_flag_Subscription1--; - continue; - } - } - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ModeOfOperation(soap, "tt:Mode", &a->tt__AnalyticsEngineControl::Mode, "tt:ModeOfOperation")) - { soap_flag_Mode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsEngineControl::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_EngineToken1 > 0 || soap_flag_EngineConfigToken1 > 0 || a->tt__AnalyticsEngineControl::InputToken.size() < 1 || a->tt__AnalyticsEngineControl::ReceiverToken.size() < 1 || !a->tt__AnalyticsEngineControl::Subscription || soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsEngineControl *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsEngineControl, SOAP_TYPE_tt__AnalyticsEngineControl, sizeof(tt__AnalyticsEngineControl), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsEngineControl * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineControl(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsEngineControl(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsEngineControl *p; - size_t k = sizeof(tt__AnalyticsEngineControl); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsEngineControl, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsEngineControl); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsEngineControl, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsEngineControl location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsEngineControl::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsEngineControl(soap, tag ? tag : "tt:AnalyticsEngineControl", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsEngineControl::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsEngineControl(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineControl * SOAP_FMAC4 soap_get_tt__AnalyticsEngineControl(struct soap *soap, tt__AnalyticsEngineControl *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsEngineControl(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataInputExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataInputExtension::__any); -} - -void tt__MetadataInputExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataInputExtension::__any); -#endif -} - -int tt__MetadataInputExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataInputExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataInputExtension(struct soap *soap, const char *tag, int id, const tt__MetadataInputExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataInputExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MetadataInputExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataInputExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataInputExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataInputExtension * SOAP_FMAC4 soap_in_tt__MetadataInputExtension(struct soap *soap, const char *tag, tt__MetadataInputExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataInputExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataInputExtension, sizeof(tt__MetadataInputExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataInputExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataInputExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MetadataInputExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MetadataInputExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataInputExtension, SOAP_TYPE_tt__MetadataInputExtension, sizeof(tt__MetadataInputExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataInputExtension * SOAP_FMAC2 soap_instantiate_tt__MetadataInputExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataInputExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataInputExtension *p; - size_t k = sizeof(tt__MetadataInputExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataInputExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataInputExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataInputExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataInputExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataInputExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataInputExtension(soap, tag ? tag : "tt:MetadataInputExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataInputExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataInputExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataInputExtension * SOAP_FMAC4 soap_get_tt__MetadataInputExtension(struct soap *soap, tt__MetadataInputExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataInputExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataInput::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Config(soap, &this->tt__MetadataInput::MetadataConfig); - this->tt__MetadataInput::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MetadataInput::__anyAttribute); -} - -void tt__MetadataInput::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Config(soap, &this->tt__MetadataInput::MetadataConfig); - soap_serialize_PointerTott__MetadataInputExtension(soap, &this->tt__MetadataInput::Extension); -#endif -} - -int tt__MetadataInput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataInput(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataInput(struct soap *soap, const char *tag, int id, const tt__MetadataInput *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MetadataInput*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataInput), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Config(soap, "tt:MetadataConfig", -1, &a->tt__MetadataInput::MetadataConfig, "")) - return soap->error; - if (soap_out_PointerTott__MetadataInputExtension(soap, "tt:Extension", -1, &a->tt__MetadataInput::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataInput::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataInput(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataInput * SOAP_FMAC4 soap_in_tt__MetadataInput(struct soap *soap, const char *tag, tt__MetadataInput *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataInput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataInput, sizeof(tt__MetadataInput), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataInput) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataInput *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MetadataInput*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Config(soap, "tt:MetadataConfig", &a->tt__MetadataInput::MetadataConfig, "tt:Config")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataInputExtension(soap, "tt:Extension", &a->tt__MetadataInput::Extension, "tt:MetadataInputExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MetadataInput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataInput, SOAP_TYPE_tt__MetadataInput, sizeof(tt__MetadataInput), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataInput * SOAP_FMAC2 soap_instantiate_tt__MetadataInput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataInput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataInput *p; - size_t k = sizeof(tt__MetadataInput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataInput, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataInput); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataInput, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataInput location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataInput::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataInput(soap, tag ? tag : "tt:MetadataInput", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataInput::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataInput(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataInput * SOAP_FMAC4 soap_get_tt__MetadataInput(struct soap *soap, tt__MetadataInput *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataInput(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SourceIdentificationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SourceIdentificationExtension::__any); -} - -void tt__SourceIdentificationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SourceIdentificationExtension::__any); -#endif -} - -int tt__SourceIdentificationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SourceIdentificationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SourceIdentificationExtension(struct soap *soap, const char *tag, int id, const tt__SourceIdentificationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SourceIdentificationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SourceIdentificationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SourceIdentificationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SourceIdentificationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SourceIdentificationExtension * SOAP_FMAC4 soap_in_tt__SourceIdentificationExtension(struct soap *soap, const char *tag, tt__SourceIdentificationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SourceIdentificationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SourceIdentificationExtension, sizeof(tt__SourceIdentificationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SourceIdentificationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SourceIdentificationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SourceIdentificationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SourceIdentificationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SourceIdentificationExtension, SOAP_TYPE_tt__SourceIdentificationExtension, sizeof(tt__SourceIdentificationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SourceIdentificationExtension * SOAP_FMAC2 soap_instantiate_tt__SourceIdentificationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SourceIdentificationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SourceIdentificationExtension *p; - size_t k = sizeof(tt__SourceIdentificationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SourceIdentificationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SourceIdentificationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SourceIdentificationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SourceIdentificationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SourceIdentificationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SourceIdentificationExtension(soap, tag ? tag : "tt:SourceIdentificationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SourceIdentificationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SourceIdentificationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SourceIdentificationExtension * SOAP_FMAC4 soap_get_tt__SourceIdentificationExtension(struct soap *soap, tt__SourceIdentificationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SourceIdentificationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SourceIdentification::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__SourceIdentification::Name); - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__SourceIdentification::Token); - this->tt__SourceIdentification::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__SourceIdentification::__anyAttribute); -} - -void tt__SourceIdentification::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SourceIdentification::Name, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__SourceIdentification::Name); - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__SourceIdentification::Token); - soap_serialize_PointerTott__SourceIdentificationExtension(soap, &this->tt__SourceIdentification::Extension); -#endif -} - -int tt__SourceIdentification::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SourceIdentification(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SourceIdentification(struct soap *soap, const char *tag, int id, const tt__SourceIdentification *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SourceIdentification*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SourceIdentification), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Name", -1, &a->tt__SourceIdentification::Name, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tt:Token", -1, &a->tt__SourceIdentification::Token, "")) - return soap->error; - if (soap_out_PointerTott__SourceIdentificationExtension(soap, "tt:Extension", -1, &a->tt__SourceIdentification::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SourceIdentification::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SourceIdentification(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SourceIdentification * SOAP_FMAC4 soap_in_tt__SourceIdentification(struct soap *soap, const char *tag, tt__SourceIdentification *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SourceIdentification*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SourceIdentification, sizeof(tt__SourceIdentification), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SourceIdentification) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SourceIdentification *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SourceIdentification*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Name", &a->tt__SourceIdentification::Name, "xsd:string")) - { soap_flag_Name1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tt:Token", &a->tt__SourceIdentification::Token, "tt:ReferenceToken")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SourceIdentificationExtension(soap, "tt:Extension", &a->tt__SourceIdentification::Extension, "tt:SourceIdentificationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0 || a->tt__SourceIdentification::Token.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SourceIdentification *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SourceIdentification, SOAP_TYPE_tt__SourceIdentification, sizeof(tt__SourceIdentification), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SourceIdentification * SOAP_FMAC2 soap_instantiate_tt__SourceIdentification(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SourceIdentification(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SourceIdentification *p; - size_t k = sizeof(tt__SourceIdentification); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SourceIdentification, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SourceIdentification); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SourceIdentification, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SourceIdentification location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SourceIdentification::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SourceIdentification(soap, tag ? tag : "tt:SourceIdentification", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SourceIdentification::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SourceIdentification(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SourceIdentification * SOAP_FMAC4 soap_get_tt__SourceIdentification(struct soap *soap, tt__SourceIdentification *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SourceIdentification(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsEngineInput::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - this->tt__AnalyticsEngineInput::SourceIdentification = NULL; - this->tt__AnalyticsEngineInput::VideoInput = NULL; - this->tt__AnalyticsEngineInput::MetadataInput = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineInput::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsEngineInput::__anyAttribute); -} - -void tt__AnalyticsEngineInput::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SourceIdentification(soap, &this->tt__AnalyticsEngineInput::SourceIdentification); - soap_serialize_PointerTott__VideoEncoderConfiguration(soap, &this->tt__AnalyticsEngineInput::VideoInput); - soap_serialize_PointerTott__MetadataInput(soap, &this->tt__AnalyticsEngineInput::MetadataInput); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineInput::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AnalyticsEngineInput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsEngineInput(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineInput(struct soap *soap, const char *tag, int id, const tt__AnalyticsEngineInput *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsEngineInput*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsEngineInput), type ? type : "tt:AnalyticsEngineInput")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (!a->tt__AnalyticsEngineInput::SourceIdentification) - { if (soap_element_empty(soap, "tt:SourceIdentification", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SourceIdentification(soap, "tt:SourceIdentification", -1, &a->tt__AnalyticsEngineInput::SourceIdentification, "")) - return soap->error; - if (!a->tt__AnalyticsEngineInput::VideoInput) - { if (soap_element_empty(soap, "tt:VideoInput", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoEncoderConfiguration(soap, "tt:VideoInput", -1, &a->tt__AnalyticsEngineInput::VideoInput, "")) - return soap->error; - if (!a->tt__AnalyticsEngineInput::MetadataInput) - { if (soap_element_empty(soap, "tt:MetadataInput", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MetadataInput(soap, "tt:MetadataInput", -1, &a->tt__AnalyticsEngineInput::MetadataInput, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsEngineInput::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsEngineInput::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsEngineInput(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineInput * SOAP_FMAC4 soap_in_tt__AnalyticsEngineInput(struct soap *soap, const char *tag, tt__AnalyticsEngineInput *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsEngineInput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsEngineInput, sizeof(tt__AnalyticsEngineInput), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsEngineInput) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsEngineInput *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsEngineInput*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_SourceIdentification1 = 1; - size_t soap_flag_VideoInput1 = 1; - size_t soap_flag_MetadataInput1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_SourceIdentification1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SourceIdentification(soap, "tt:SourceIdentification", &a->tt__AnalyticsEngineInput::SourceIdentification, "tt:SourceIdentification")) - { soap_flag_SourceIdentification1--; - continue; - } - } - if (soap_flag_VideoInput1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoEncoderConfiguration(soap, "tt:VideoInput", &a->tt__AnalyticsEngineInput::VideoInput, "tt:VideoEncoderConfiguration")) - { soap_flag_VideoInput1--; - continue; - } - } - if (soap_flag_MetadataInput1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataInput(soap, "tt:MetadataInput", &a->tt__AnalyticsEngineInput::MetadataInput, "tt:MetadataInput")) - { soap_flag_MetadataInput1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsEngineInput::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || !a->tt__AnalyticsEngineInput::SourceIdentification || !a->tt__AnalyticsEngineInput::VideoInput || !a->tt__AnalyticsEngineInput::MetadataInput)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsEngineInput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsEngineInput, SOAP_TYPE_tt__AnalyticsEngineInput, sizeof(tt__AnalyticsEngineInput), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsEngineInput * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineInput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsEngineInput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsEngineInput *p; - size_t k = sizeof(tt__AnalyticsEngineInput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsEngineInput, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsEngineInput); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsEngineInput, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsEngineInput location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsEngineInput::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsEngineInput(soap, tag ? tag : "tt:AnalyticsEngineInput", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsEngineInput::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsEngineInput(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineInput * SOAP_FMAC4 soap_get_tt__AnalyticsEngineInput(struct soap *soap, tt__AnalyticsEngineInput *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsEngineInput(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsEngineInputInfoExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineInputInfoExtension::__any); -} - -void tt__AnalyticsEngineInputInfoExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineInputInfoExtension::__any); -#endif -} - -int tt__AnalyticsEngineInputInfoExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsEngineInputInfoExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, const char *tag, int id, const tt__AnalyticsEngineInputInfoExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsEngineInputInfoExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsEngineInputInfoExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsEngineInputInfoExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineInputInfoExtension * SOAP_FMAC4 soap_in_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, const char *tag, tt__AnalyticsEngineInputInfoExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsEngineInputInfoExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension, sizeof(tt__AnalyticsEngineInputInfoExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsEngineInputInfoExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsEngineInputInfoExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AnalyticsEngineInputInfoExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension, SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension, sizeof(tt__AnalyticsEngineInputInfoExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsEngineInputInfoExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsEngineInputInfoExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsEngineInputInfoExtension *p; - size_t k = sizeof(tt__AnalyticsEngineInputInfoExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsEngineInputInfoExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsEngineInputInfoExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsEngineInputInfoExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsEngineInputInfoExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsEngineInputInfoExtension(soap, tag ? tag : "tt:AnalyticsEngineInputInfoExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsEngineInputInfoExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsEngineInputInfoExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineInputInfoExtension * SOAP_FMAC4 soap_get_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, tt__AnalyticsEngineInputInfoExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsEngineInputInfoExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsEngineInputInfo::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__AnalyticsEngineInputInfo::InputInfo = NULL; - this->tt__AnalyticsEngineInputInfo::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsEngineInputInfo::__anyAttribute); -} - -void tt__AnalyticsEngineInputInfo::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Config(soap, &this->tt__AnalyticsEngineInputInfo::InputInfo); - soap_serialize_PointerTott__AnalyticsEngineInputInfoExtension(soap, &this->tt__AnalyticsEngineInputInfo::Extension); -#endif -} - -int tt__AnalyticsEngineInputInfo::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsEngineInputInfo(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineInputInfo(struct soap *soap, const char *tag, int id, const tt__AnalyticsEngineInputInfo *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsEngineInputInfo*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsEngineInputInfo), type)) - return soap->error; - if (soap_out_PointerTott__Config(soap, "tt:InputInfo", -1, &a->tt__AnalyticsEngineInputInfo::InputInfo, "")) - return soap->error; - if (soap_out_PointerTott__AnalyticsEngineInputInfoExtension(soap, "tt:Extension", -1, &a->tt__AnalyticsEngineInputInfo::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsEngineInputInfo::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsEngineInputInfo(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineInputInfo * SOAP_FMAC4 soap_in_tt__AnalyticsEngineInputInfo(struct soap *soap, const char *tag, tt__AnalyticsEngineInputInfo *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsEngineInputInfo*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsEngineInputInfo, sizeof(tt__AnalyticsEngineInputInfo), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsEngineInputInfo) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsEngineInputInfo *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsEngineInputInfo*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_InputInfo1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InputInfo1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Config(soap, "tt:InputInfo", &a->tt__AnalyticsEngineInputInfo::InputInfo, "tt:Config")) - { soap_flag_InputInfo1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsEngineInputInfoExtension(soap, "tt:Extension", &a->tt__AnalyticsEngineInputInfo::Extension, "tt:AnalyticsEngineInputInfoExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AnalyticsEngineInputInfo *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsEngineInputInfo, SOAP_TYPE_tt__AnalyticsEngineInputInfo, sizeof(tt__AnalyticsEngineInputInfo), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsEngineInputInfo * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineInputInfo(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsEngineInputInfo(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsEngineInputInfo *p; - size_t k = sizeof(tt__AnalyticsEngineInputInfo); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsEngineInputInfo, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsEngineInputInfo); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsEngineInputInfo, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsEngineInputInfo location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsEngineInputInfo::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsEngineInputInfo(soap, tag ? tag : "tt:AnalyticsEngineInputInfo", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsEngineInputInfo::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsEngineInputInfo(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineInputInfo * SOAP_FMAC4 soap_get_tt__AnalyticsEngineInputInfo(struct soap *soap, tt__AnalyticsEngineInputInfo *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsEngineInputInfo(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EngineConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__EngineConfiguration::VideoAnalyticsConfiguration = NULL; - this->tt__EngineConfiguration::AnalyticsEngineInputInfo = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EngineConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__EngineConfiguration::__anyAttribute); -} - -void tt__EngineConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoAnalyticsConfiguration(soap, &this->tt__EngineConfiguration::VideoAnalyticsConfiguration); - soap_serialize_PointerTott__AnalyticsEngineInputInfo(soap, &this->tt__EngineConfiguration::AnalyticsEngineInputInfo); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EngineConfiguration::__any); -#endif -} - -int tt__EngineConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EngineConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EngineConfiguration(struct soap *soap, const char *tag, int id, const tt__EngineConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__EngineConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EngineConfiguration), type)) - return soap->error; - if (!a->tt__EngineConfiguration::VideoAnalyticsConfiguration) - { if (soap_element_empty(soap, "tt:VideoAnalyticsConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoAnalyticsConfiguration(soap, "tt:VideoAnalyticsConfiguration", -1, &a->tt__EngineConfiguration::VideoAnalyticsConfiguration, "")) - return soap->error; - if (!a->tt__EngineConfiguration::AnalyticsEngineInputInfo) - { if (soap_element_empty(soap, "tt:AnalyticsEngineInputInfo", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AnalyticsEngineInputInfo(soap, "tt:AnalyticsEngineInputInfo", -1, &a->tt__EngineConfiguration::AnalyticsEngineInputInfo, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__EngineConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EngineConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EngineConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EngineConfiguration * SOAP_FMAC4 soap_in_tt__EngineConfiguration(struct soap *soap, const char *tag, tt__EngineConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EngineConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EngineConfiguration, sizeof(tt__EngineConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EngineConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EngineConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__EngineConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_VideoAnalyticsConfiguration1 = 1; - size_t soap_flag_AnalyticsEngineInputInfo1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_VideoAnalyticsConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoAnalyticsConfiguration(soap, "tt:VideoAnalyticsConfiguration", &a->tt__EngineConfiguration::VideoAnalyticsConfiguration, "tt:VideoAnalyticsConfiguration")) - { soap_flag_VideoAnalyticsConfiguration1--; - continue; - } - } - if (soap_flag_AnalyticsEngineInputInfo1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsEngineInputInfo(soap, "tt:AnalyticsEngineInputInfo", &a->tt__EngineConfiguration::AnalyticsEngineInputInfo, "tt:AnalyticsEngineInputInfo")) - { soap_flag_AnalyticsEngineInputInfo1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__EngineConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__EngineConfiguration::VideoAnalyticsConfiguration || !a->tt__EngineConfiguration::AnalyticsEngineInputInfo)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__EngineConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EngineConfiguration, SOAP_TYPE_tt__EngineConfiguration, sizeof(tt__EngineConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__EngineConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EngineConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EngineConfiguration *p; - size_t k = sizeof(tt__EngineConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EngineConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EngineConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EngineConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EngineConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EngineConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EngineConfiguration(soap, tag ? tag : "tt:EngineConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EngineConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EngineConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EngineConfiguration * SOAP_FMAC4 soap_get_tt__EngineConfiguration(struct soap *soap, tt__EngineConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EngineConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsDeviceEngineConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsDeviceEngineConfigurationExtension::__any); -} - -void tt__AnalyticsDeviceEngineConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsDeviceEngineConfigurationExtension::__any); -#endif -} - -int tt__AnalyticsDeviceEngineConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsDeviceEngineConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__AnalyticsDeviceEngineConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsDeviceEngineConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsDeviceEngineConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsDeviceEngineConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfigurationExtension * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, const char *tag, tt__AnalyticsDeviceEngineConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsDeviceEngineConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension, sizeof(tt__AnalyticsDeviceEngineConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsDeviceEngineConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsDeviceEngineConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AnalyticsDeviceEngineConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension, SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension, sizeof(tt__AnalyticsDeviceEngineConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsDeviceEngineConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsDeviceEngineConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsDeviceEngineConfigurationExtension *p; - size_t k = sizeof(tt__AnalyticsDeviceEngineConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsDeviceEngineConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsDeviceEngineConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsDeviceEngineConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsDeviceEngineConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsDeviceEngineConfigurationExtension(soap, tag ? tag : "tt:AnalyticsDeviceEngineConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsDeviceEngineConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsDeviceEngineConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfigurationExtension * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, tt__AnalyticsDeviceEngineConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsDeviceEngineConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsDeviceEngineConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__EngineConfiguration(soap, &this->tt__AnalyticsDeviceEngineConfiguration::EngineConfiguration); - this->tt__AnalyticsDeviceEngineConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsDeviceEngineConfiguration::__anyAttribute); -} - -void tt__AnalyticsDeviceEngineConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__EngineConfiguration(soap, &this->tt__AnalyticsDeviceEngineConfiguration::EngineConfiguration); - soap_serialize_PointerTott__AnalyticsDeviceEngineConfigurationExtension(soap, &this->tt__AnalyticsDeviceEngineConfiguration::Extension); -#endif -} - -int tt__AnalyticsDeviceEngineConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsDeviceEngineConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, const char *tag, int id, const tt__AnalyticsDeviceEngineConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsDeviceEngineConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__EngineConfiguration(soap, "tt:EngineConfiguration", -1, &a->tt__AnalyticsDeviceEngineConfiguration::EngineConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__AnalyticsDeviceEngineConfigurationExtension(soap, "tt:Extension", -1, &a->tt__AnalyticsDeviceEngineConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsDeviceEngineConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsDeviceEngineConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfiguration * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, const char *tag, tt__AnalyticsDeviceEngineConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsDeviceEngineConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration, sizeof(tt__AnalyticsDeviceEngineConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsDeviceEngineConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsDeviceEngineConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__EngineConfiguration(soap, "tt:EngineConfiguration", &a->tt__AnalyticsDeviceEngineConfiguration::EngineConfiguration, "tt:EngineConfiguration")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsDeviceEngineConfigurationExtension(soap, "tt:Extension", &a->tt__AnalyticsDeviceEngineConfiguration::Extension, "tt:AnalyticsDeviceEngineConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__AnalyticsDeviceEngineConfiguration::EngineConfiguration.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsDeviceEngineConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration, SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration, sizeof(tt__AnalyticsDeviceEngineConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsDeviceEngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsDeviceEngineConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsDeviceEngineConfiguration *p; - size_t k = sizeof(tt__AnalyticsDeviceEngineConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsDeviceEngineConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsDeviceEngineConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsDeviceEngineConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsDeviceEngineConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsDeviceEngineConfiguration(soap, tag ? tag : "tt:AnalyticsDeviceEngineConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsDeviceEngineConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsDeviceEngineConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfiguration * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, tt__AnalyticsDeviceEngineConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsDeviceEngineConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsEngine::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - this->tt__AnalyticsEngine::AnalyticsEngineConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngine::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsEngine::__anyAttribute); -} - -void tt__AnalyticsEngine::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AnalyticsDeviceEngineConfiguration(soap, &this->tt__AnalyticsEngine::AnalyticsEngineConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngine::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AnalyticsEngine::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsEngine(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngine(struct soap *soap, const char *tag, int id, const tt__AnalyticsEngine *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsEngine*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsEngine), type ? type : "tt:AnalyticsEngine")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (!a->tt__AnalyticsEngine::AnalyticsEngineConfiguration) - { if (soap_element_empty(soap, "tt:AnalyticsEngineConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AnalyticsDeviceEngineConfiguration(soap, "tt:AnalyticsEngineConfiguration", -1, &a->tt__AnalyticsEngine::AnalyticsEngineConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsEngine::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsEngine::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsEngine(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsEngine * SOAP_FMAC4 soap_in_tt__AnalyticsEngine(struct soap *soap, const char *tag, tt__AnalyticsEngine *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsEngine*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsEngine, sizeof(tt__AnalyticsEngine), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsEngine) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsEngine *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsEngine*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_AnalyticsEngineConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_AnalyticsEngineConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsDeviceEngineConfiguration(soap, "tt:AnalyticsEngineConfiguration", &a->tt__AnalyticsEngine::AnalyticsEngineConfiguration, "tt:AnalyticsDeviceEngineConfiguration")) - { soap_flag_AnalyticsEngineConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsEngine::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || !a->tt__AnalyticsEngine::AnalyticsEngineConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsEngine *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsEngine, SOAP_TYPE_tt__AnalyticsEngine, sizeof(tt__AnalyticsEngine), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsEngine * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngine(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsEngine(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsEngine *p; - size_t k = sizeof(tt__AnalyticsEngine); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsEngine, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsEngine); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsEngine, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsEngine location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsEngine::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsEngine(soap, tag ? tag : "tt:AnalyticsEngine", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsEngine::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsEngine(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsEngine * SOAP_FMAC4 soap_get_tt__AnalyticsEngine(struct soap *soap, tt__AnalyticsEngine *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsEngine(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReplayConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__duration(soap, &this->tt__ReplayConfiguration::SessionTimeout); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReplayConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ReplayConfiguration::__anyAttribute); -} - -void tt__ReplayConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ReplayConfiguration::SessionTimeout, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__ReplayConfiguration::SessionTimeout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReplayConfiguration::__any); -#endif -} - -int tt__ReplayConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReplayConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReplayConfiguration(struct soap *soap, const char *tag, int id, const tt__ReplayConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ReplayConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReplayConfiguration), type)) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:SessionTimeout", -1, &a->tt__ReplayConfiguration::SessionTimeout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ReplayConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ReplayConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReplayConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReplayConfiguration * SOAP_FMAC4 soap_in_tt__ReplayConfiguration(struct soap *soap, const char *tag, tt__ReplayConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ReplayConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReplayConfiguration, sizeof(tt__ReplayConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReplayConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ReplayConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ReplayConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SessionTimeout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SessionTimeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:SessionTimeout", &a->tt__ReplayConfiguration::SessionTimeout, "xsd:duration")) - { soap_flag_SessionTimeout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ReplayConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SessionTimeout1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ReplayConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReplayConfiguration, SOAP_TYPE_tt__ReplayConfiguration, sizeof(tt__ReplayConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ReplayConfiguration * SOAP_FMAC2 soap_instantiate_tt__ReplayConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReplayConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReplayConfiguration *p; - size_t k = sizeof(tt__ReplayConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReplayConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReplayConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReplayConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReplayConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReplayConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReplayConfiguration(soap, tag ? tag : "tt:ReplayConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReplayConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReplayConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReplayConfiguration * SOAP_FMAC4 soap_get_tt__ReplayConfiguration(struct soap *soap, tt__ReplayConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReplayConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__GetRecordingJobsResponseItem::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingJobReference(soap, &this->tt__GetRecordingJobsResponseItem::JobToken); - this->tt__GetRecordingJobsResponseItem::JobConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GetRecordingJobsResponseItem::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__GetRecordingJobsResponseItem::__anyAttribute); -} - -void tt__GetRecordingJobsResponseItem::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingJobReference(soap, &this->tt__GetRecordingJobsResponseItem::JobToken); - soap_serialize_PointerTott__RecordingJobConfiguration(soap, &this->tt__GetRecordingJobsResponseItem::JobConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GetRecordingJobsResponseItem::__any); -#endif -} - -int tt__GetRecordingJobsResponseItem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__GetRecordingJobsResponseItem(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetRecordingJobsResponseItem(struct soap *soap, const char *tag, int id, const tt__GetRecordingJobsResponseItem *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__GetRecordingJobsResponseItem*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__GetRecordingJobsResponseItem), type)) - return soap->error; - if (soap_out_tt__RecordingJobReference(soap, "tt:JobToken", -1, &a->tt__GetRecordingJobsResponseItem::JobToken, "")) - return soap->error; - if (!a->tt__GetRecordingJobsResponseItem::JobConfiguration) - { if (soap_element_empty(soap, "tt:JobConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobConfiguration(soap, "tt:JobConfiguration", -1, &a->tt__GetRecordingJobsResponseItem::JobConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__GetRecordingJobsResponseItem::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__GetRecordingJobsResponseItem::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__GetRecordingJobsResponseItem(soap, tag, this, type); -} - -SOAP_FMAC3 tt__GetRecordingJobsResponseItem * SOAP_FMAC4 soap_in_tt__GetRecordingJobsResponseItem(struct soap *soap, const char *tag, tt__GetRecordingJobsResponseItem *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__GetRecordingJobsResponseItem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__GetRecordingJobsResponseItem, sizeof(tt__GetRecordingJobsResponseItem), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__GetRecordingJobsResponseItem) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__GetRecordingJobsResponseItem *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__GetRecordingJobsResponseItem*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_JobToken1 = 1; - size_t soap_flag_JobConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JobToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobReference(soap, "tt:JobToken", &a->tt__GetRecordingJobsResponseItem::JobToken, "tt:RecordingJobReference")) - { soap_flag_JobToken1--; - continue; - } - } - if (soap_flag_JobConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobConfiguration(soap, "tt:JobConfiguration", &a->tt__GetRecordingJobsResponseItem::JobConfiguration, "tt:RecordingJobConfiguration")) - { soap_flag_JobConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__GetRecordingJobsResponseItem::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_JobToken1 > 0 || !a->tt__GetRecordingJobsResponseItem::JobConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__GetRecordingJobsResponseItem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__GetRecordingJobsResponseItem, SOAP_TYPE_tt__GetRecordingJobsResponseItem, sizeof(tt__GetRecordingJobsResponseItem), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__GetRecordingJobsResponseItem * SOAP_FMAC2 soap_instantiate_tt__GetRecordingJobsResponseItem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__GetRecordingJobsResponseItem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__GetRecordingJobsResponseItem *p; - size_t k = sizeof(tt__GetRecordingJobsResponseItem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__GetRecordingJobsResponseItem, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__GetRecordingJobsResponseItem); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__GetRecordingJobsResponseItem, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__GetRecordingJobsResponseItem location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__GetRecordingJobsResponseItem::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__GetRecordingJobsResponseItem(soap, tag ? tag : "tt:GetRecordingJobsResponseItem", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__GetRecordingJobsResponseItem::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__GetRecordingJobsResponseItem(soap, this, tag, type); -} - -SOAP_FMAC3 tt__GetRecordingJobsResponseItem * SOAP_FMAC4 soap_get_tt__GetRecordingJobsResponseItem(struct soap *soap, tt__GetRecordingJobsResponseItem *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__GetRecordingJobsResponseItem(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobStateTrack::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__RecordingJobStateTrack::SourceTag); - soap_default_tt__TrackReference(soap, &this->tt__RecordingJobStateTrack::Destination); - this->tt__RecordingJobStateTrack::Error = NULL; - soap_default_tt__RecordingJobState(soap, &this->tt__RecordingJobStateTrack::State); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobStateTrack::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingJobStateTrack::__anyAttribute); -} - -void tt__RecordingJobStateTrack::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RecordingJobStateTrack::SourceTag, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__RecordingJobStateTrack::SourceTag); - soap_serialize_tt__TrackReference(soap, &this->tt__RecordingJobStateTrack::Destination); - soap_serialize_PointerTostd__string(soap, &this->tt__RecordingJobStateTrack::Error); - soap_serialize_tt__RecordingJobState(soap, &this->tt__RecordingJobStateTrack::State); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobStateTrack::__any); -#endif -} - -int tt__RecordingJobStateTrack::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobStateTrack(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateTrack(struct soap *soap, const char *tag, int id, const tt__RecordingJobStateTrack *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingJobStateTrack*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobStateTrack), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:SourceTag", -1, &a->tt__RecordingJobStateTrack::SourceTag, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "tt:Destination", -1, &a->tt__RecordingJobStateTrack::Destination, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Error", -1, &a->tt__RecordingJobStateTrack::Error, "")) - return soap->error; - if (soap_out_tt__RecordingJobState(soap, "tt:State", -1, &a->tt__RecordingJobStateTrack::State, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingJobStateTrack::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobStateTrack::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobStateTrack(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobStateTrack * SOAP_FMAC4 soap_in_tt__RecordingJobStateTrack(struct soap *soap, const char *tag, tt__RecordingJobStateTrack *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobStateTrack*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobStateTrack, sizeof(tt__RecordingJobStateTrack), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobStateTrack) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobStateTrack *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingJobStateTrack*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SourceTag1 = 1; - size_t soap_flag_Destination1 = 1; - size_t soap_flag_Error1 = 1; - size_t soap_flag_State1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SourceTag1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:SourceTag", &a->tt__RecordingJobStateTrack::SourceTag, "xsd:string")) - { soap_flag_SourceTag1--; - continue; - } - } - if (soap_flag_Destination1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "tt:Destination", &a->tt__RecordingJobStateTrack::Destination, "tt:TrackReference")) - { soap_flag_Destination1--; - continue; - } - } - if (soap_flag_Error1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Error", &a->tt__RecordingJobStateTrack::Error, "xsd:string")) - { soap_flag_Error1--; - continue; - } - } - if (soap_flag_State1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobState(soap, "tt:State", &a->tt__RecordingJobStateTrack::State, "tt:RecordingJobState")) - { soap_flag_State1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingJobStateTrack::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SourceTag1 > 0 || soap_flag_Destination1 > 0 || soap_flag_State1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingJobStateTrack *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobStateTrack, SOAP_TYPE_tt__RecordingJobStateTrack, sizeof(tt__RecordingJobStateTrack), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobStateTrack * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateTrack(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobStateTrack(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobStateTrack *p; - size_t k = sizeof(tt__RecordingJobStateTrack); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobStateTrack, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobStateTrack); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobStateTrack, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobStateTrack location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobStateTrack::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobStateTrack(soap, tag ? tag : "tt:RecordingJobStateTrack", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobStateTrack::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobStateTrack(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobStateTrack * SOAP_FMAC4 soap_get_tt__RecordingJobStateTrack(struct soap *soap, tt__RecordingJobStateTrack *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobStateTrack(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobStateTracks::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(soap, &this->tt__RecordingJobStateTracks::Track); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingJobStateTracks::__anyAttribute); -} - -void tt__RecordingJobStateTracks::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(soap, &this->tt__RecordingJobStateTracks::Track); -#endif -} - -int tt__RecordingJobStateTracks::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobStateTracks(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateTracks(struct soap *soap, const char *tag, int id, const tt__RecordingJobStateTracks *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingJobStateTracks*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobStateTracks), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(soap, "tt:Track", -1, &a->tt__RecordingJobStateTracks::Track, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobStateTracks::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobStateTracks(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobStateTracks * SOAP_FMAC4 soap_in_tt__RecordingJobStateTracks(struct soap *soap, const char *tag, tt__RecordingJobStateTracks *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobStateTracks*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobStateTracks, sizeof(tt__RecordingJobStateTracks), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobStateTracks) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobStateTracks *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingJobStateTracks*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(soap, "tt:Track", &a->tt__RecordingJobStateTracks::Track, "tt:RecordingJobStateTrack")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RecordingJobStateTracks *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobStateTracks, SOAP_TYPE_tt__RecordingJobStateTracks, sizeof(tt__RecordingJobStateTracks), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobStateTracks * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateTracks(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobStateTracks(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobStateTracks *p; - size_t k = sizeof(tt__RecordingJobStateTracks); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobStateTracks, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobStateTracks); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobStateTracks, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobStateTracks location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobStateTracks::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobStateTracks(soap, tag ? tag : "tt:RecordingJobStateTracks", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobStateTracks::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobStateTracks(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobStateTracks * SOAP_FMAC4 soap_get_tt__RecordingJobStateTracks(struct soap *soap, tt__RecordingJobStateTracks *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobStateTracks(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobStateSource::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__RecordingJobStateSource::SourceToken = NULL; - soap_default_tt__RecordingJobState(soap, &this->tt__RecordingJobStateSource::State); - this->tt__RecordingJobStateSource::Tracks = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobStateSource::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingJobStateSource::__anyAttribute); -} - -void tt__RecordingJobStateSource::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SourceReference(soap, &this->tt__RecordingJobStateSource::SourceToken); - soap_serialize_tt__RecordingJobState(soap, &this->tt__RecordingJobStateSource::State); - soap_serialize_PointerTott__RecordingJobStateTracks(soap, &this->tt__RecordingJobStateSource::Tracks); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobStateSource::__any); -#endif -} - -int tt__RecordingJobStateSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobStateSource(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateSource(struct soap *soap, const char *tag, int id, const tt__RecordingJobStateSource *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingJobStateSource*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobStateSource), type)) - return soap->error; - if (!a->tt__RecordingJobStateSource::SourceToken) - { if (soap_element_empty(soap, "tt:SourceToken", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__SourceReference(soap, "tt:SourceToken", -1, &a->tt__RecordingJobStateSource::SourceToken, "")) - return soap->error; - if (soap_out_tt__RecordingJobState(soap, "tt:State", -1, &a->tt__RecordingJobStateSource::State, "")) - return soap->error; - if (!a->tt__RecordingJobStateSource::Tracks) - { if (soap_element_empty(soap, "tt:Tracks", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingJobStateTracks(soap, "tt:Tracks", -1, &a->tt__RecordingJobStateSource::Tracks, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingJobStateSource::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobStateSource::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobStateSource(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobStateSource * SOAP_FMAC4 soap_in_tt__RecordingJobStateSource(struct soap *soap, const char *tag, tt__RecordingJobStateSource *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobStateSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobStateSource, sizeof(tt__RecordingJobStateSource), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobStateSource) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobStateSource *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingJobStateSource*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SourceToken1 = 1; - size_t soap_flag_State1 = 1; - size_t soap_flag_Tracks1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SourceToken1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SourceReference(soap, "tt:SourceToken", &a->tt__RecordingJobStateSource::SourceToken, "tt:SourceReference")) - { soap_flag_SourceToken1--; - continue; - } - } - if (soap_flag_State1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobState(soap, "tt:State", &a->tt__RecordingJobStateSource::State, "tt:RecordingJobState")) - { soap_flag_State1--; - continue; - } - } - if (soap_flag_Tracks1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobStateTracks(soap, "tt:Tracks", &a->tt__RecordingJobStateSource::Tracks, "tt:RecordingJobStateTracks")) - { soap_flag_Tracks1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingJobStateSource::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__RecordingJobStateSource::SourceToken || soap_flag_State1 > 0 || !a->tt__RecordingJobStateSource::Tracks)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingJobStateSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobStateSource, SOAP_TYPE_tt__RecordingJobStateSource, sizeof(tt__RecordingJobStateSource), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobStateSource * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobStateSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobStateSource *p; - size_t k = sizeof(tt__RecordingJobStateSource); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobStateSource, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobStateSource); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobStateSource, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobStateSource location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobStateSource::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobStateSource(soap, tag ? tag : "tt:RecordingJobStateSource", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobStateSource::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobStateSource(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobStateSource * SOAP_FMAC4 soap_get_tt__RecordingJobStateSource(struct soap *soap, tt__RecordingJobStateSource *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobStateSource(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobStateInformationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobStateInformationExtension::__any); -} - -void tt__RecordingJobStateInformationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobStateInformationExtension::__any); -#endif -} - -int tt__RecordingJobStateInformationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobStateInformationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateInformationExtension(struct soap *soap, const char *tag, int id, const tt__RecordingJobStateInformationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobStateInformationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingJobStateInformationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobStateInformationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobStateInformationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobStateInformationExtension * SOAP_FMAC4 soap_in_tt__RecordingJobStateInformationExtension(struct soap *soap, const char *tag, tt__RecordingJobStateInformationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobStateInformationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobStateInformationExtension, sizeof(tt__RecordingJobStateInformationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobStateInformationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobStateInformationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingJobStateInformationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RecordingJobStateInformationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobStateInformationExtension, SOAP_TYPE_tt__RecordingJobStateInformationExtension, sizeof(tt__RecordingJobStateInformationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobStateInformationExtension * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateInformationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobStateInformationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobStateInformationExtension *p; - size_t k = sizeof(tt__RecordingJobStateInformationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobStateInformationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobStateInformationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobStateInformationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobStateInformationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobStateInformationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobStateInformationExtension(soap, tag ? tag : "tt:RecordingJobStateInformationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobStateInformationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobStateInformationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobStateInformationExtension * SOAP_FMAC4 soap_get_tt__RecordingJobStateInformationExtension(struct soap *soap, tt__RecordingJobStateInformationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobStateInformationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobStateInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__RecordingJobStateInformation::RecordingToken); - soap_default_tt__RecordingJobState(soap, &this->tt__RecordingJobStateInformation::State); - soap_default_std__vectorTemplateOfPointerTott__RecordingJobStateSource(soap, &this->tt__RecordingJobStateInformation::Sources); - this->tt__RecordingJobStateInformation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingJobStateInformation::__anyAttribute); -} - -void tt__RecordingJobStateInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__RecordingJobStateInformation::RecordingToken); - soap_serialize_tt__RecordingJobState(soap, &this->tt__RecordingJobStateInformation::State); - soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobStateSource(soap, &this->tt__RecordingJobStateInformation::Sources); - soap_serialize_PointerTott__RecordingJobStateInformationExtension(soap, &this->tt__RecordingJobStateInformation::Extension); -#endif -} - -int tt__RecordingJobStateInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobStateInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateInformation(struct soap *soap, const char *tag, int id, const tt__RecordingJobStateInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingJobStateInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobStateInformation), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__RecordingJobStateInformation::RecordingToken, "")) - return soap->error; - if (soap_out_tt__RecordingJobState(soap, "tt:State", -1, &a->tt__RecordingJobStateInformation::State, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__RecordingJobStateSource(soap, "tt:Sources", -1, &a->tt__RecordingJobStateInformation::Sources, "")) - return soap->error; - if (soap_out_PointerTott__RecordingJobStateInformationExtension(soap, "tt:Extension", -1, &a->tt__RecordingJobStateInformation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobStateInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobStateInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobStateInformation * SOAP_FMAC4 soap_in_tt__RecordingJobStateInformation(struct soap *soap, const char *tag, tt__RecordingJobStateInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobStateInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobStateInformation, sizeof(tt__RecordingJobStateInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobStateInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobStateInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingJobStateInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_State1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__RecordingJobStateInformation::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_State1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobState(soap, "tt:State", &a->tt__RecordingJobStateInformation::State, "tt:RecordingJobState")) - { soap_flag_State1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__RecordingJobStateSource(soap, "tt:Sources", &a->tt__RecordingJobStateInformation::Sources, "tt:RecordingJobStateSource")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobStateInformationExtension(soap, "tt:Extension", &a->tt__RecordingJobStateInformation::Extension, "tt:RecordingJobStateInformationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_State1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingJobStateInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobStateInformation, SOAP_TYPE_tt__RecordingJobStateInformation, sizeof(tt__RecordingJobStateInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobStateInformation * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobStateInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobStateInformation *p; - size_t k = sizeof(tt__RecordingJobStateInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobStateInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobStateInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobStateInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobStateInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobStateInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobStateInformation(soap, tag ? tag : "tt:RecordingJobStateInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobStateInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobStateInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobStateInformation * SOAP_FMAC4 soap_get_tt__RecordingJobStateInformation(struct soap *soap, tt__RecordingJobStateInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobStateInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobTrack::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__RecordingJobTrack::SourceTag); - soap_default_tt__TrackReference(soap, &this->tt__RecordingJobTrack::Destination); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobTrack::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingJobTrack::__anyAttribute); -} - -void tt__RecordingJobTrack::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RecordingJobTrack::SourceTag, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__RecordingJobTrack::SourceTag); - soap_serialize_tt__TrackReference(soap, &this->tt__RecordingJobTrack::Destination); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobTrack::__any); -#endif -} - -int tt__RecordingJobTrack::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobTrack(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobTrack(struct soap *soap, const char *tag, int id, const tt__RecordingJobTrack *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingJobTrack*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobTrack), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:SourceTag", -1, &a->tt__RecordingJobTrack::SourceTag, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "tt:Destination", -1, &a->tt__RecordingJobTrack::Destination, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingJobTrack::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobTrack::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobTrack(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobTrack * SOAP_FMAC4 soap_in_tt__RecordingJobTrack(struct soap *soap, const char *tag, tt__RecordingJobTrack *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobTrack*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobTrack, sizeof(tt__RecordingJobTrack), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobTrack) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobTrack *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingJobTrack*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SourceTag1 = 1; - size_t soap_flag_Destination1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SourceTag1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:SourceTag", &a->tt__RecordingJobTrack::SourceTag, "xsd:string")) - { soap_flag_SourceTag1--; - continue; - } - } - if (soap_flag_Destination1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "tt:Destination", &a->tt__RecordingJobTrack::Destination, "tt:TrackReference")) - { soap_flag_Destination1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingJobTrack::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SourceTag1 > 0 || soap_flag_Destination1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingJobTrack *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobTrack, SOAP_TYPE_tt__RecordingJobTrack, sizeof(tt__RecordingJobTrack), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobTrack * SOAP_FMAC2 soap_instantiate_tt__RecordingJobTrack(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobTrack(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobTrack *p; - size_t k = sizeof(tt__RecordingJobTrack); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobTrack, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobTrack); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobTrack, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobTrack location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobTrack::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobTrack(soap, tag ? tag : "tt:RecordingJobTrack", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobTrack::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobTrack(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobTrack * SOAP_FMAC4 soap_get_tt__RecordingJobTrack(struct soap *soap, tt__RecordingJobTrack *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobTrack(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobSourceExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobSourceExtension::__any); -} - -void tt__RecordingJobSourceExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobSourceExtension::__any); -#endif -} - -int tt__RecordingJobSourceExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobSourceExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobSourceExtension(struct soap *soap, const char *tag, int id, const tt__RecordingJobSourceExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobSourceExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingJobSourceExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobSourceExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobSourceExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobSourceExtension * SOAP_FMAC4 soap_in_tt__RecordingJobSourceExtension(struct soap *soap, const char *tag, tt__RecordingJobSourceExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobSourceExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobSourceExtension, sizeof(tt__RecordingJobSourceExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobSourceExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobSourceExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingJobSourceExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RecordingJobSourceExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobSourceExtension, SOAP_TYPE_tt__RecordingJobSourceExtension, sizeof(tt__RecordingJobSourceExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobSourceExtension * SOAP_FMAC2 soap_instantiate_tt__RecordingJobSourceExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobSourceExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobSourceExtension *p; - size_t k = sizeof(tt__RecordingJobSourceExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobSourceExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobSourceExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobSourceExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobSourceExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobSourceExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobSourceExtension(soap, tag ? tag : "tt:RecordingJobSourceExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobSourceExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobSourceExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobSourceExtension * SOAP_FMAC4 soap_get_tt__RecordingJobSourceExtension(struct soap *soap, tt__RecordingJobSourceExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobSourceExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobSource::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__RecordingJobSource::SourceToken = NULL; - this->tt__RecordingJobSource::AutoCreateReceiver = NULL; - soap_default_std__vectorTemplateOfPointerTott__RecordingJobTrack(soap, &this->tt__RecordingJobSource::Tracks); - this->tt__RecordingJobSource::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingJobSource::__anyAttribute); -} - -void tt__RecordingJobSource::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__SourceReference(soap, &this->tt__RecordingJobSource::SourceToken); - soap_serialize_PointerTobool(soap, &this->tt__RecordingJobSource::AutoCreateReceiver); - soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobTrack(soap, &this->tt__RecordingJobSource::Tracks); - soap_serialize_PointerTott__RecordingJobSourceExtension(soap, &this->tt__RecordingJobSource::Extension); -#endif -} - -int tt__RecordingJobSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobSource(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobSource(struct soap *soap, const char *tag, int id, const tt__RecordingJobSource *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingJobSource*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobSource), type)) - return soap->error; - if (soap_out_PointerTott__SourceReference(soap, "tt:SourceToken", -1, &a->tt__RecordingJobSource::SourceToken, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:AutoCreateReceiver", -1, &a->tt__RecordingJobSource::AutoCreateReceiver, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__RecordingJobTrack(soap, "tt:Tracks", -1, &a->tt__RecordingJobSource::Tracks, "")) - return soap->error; - if (soap_out_PointerTott__RecordingJobSourceExtension(soap, "tt:Extension", -1, &a->tt__RecordingJobSource::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobSource::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobSource(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobSource * SOAP_FMAC4 soap_in_tt__RecordingJobSource(struct soap *soap, const char *tag, tt__RecordingJobSource *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobSource, sizeof(tt__RecordingJobSource), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobSource) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobSource *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingJobSource*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SourceToken1 = 1; - size_t soap_flag_AutoCreateReceiver1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SourceToken1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SourceReference(soap, "tt:SourceToken", &a->tt__RecordingJobSource::SourceToken, "tt:SourceReference")) - { soap_flag_SourceToken1--; - continue; - } - } - if (soap_flag_AutoCreateReceiver1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:AutoCreateReceiver", &a->tt__RecordingJobSource::AutoCreateReceiver, "xsd:boolean")) - { soap_flag_AutoCreateReceiver1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__RecordingJobTrack(soap, "tt:Tracks", &a->tt__RecordingJobSource::Tracks, "tt:RecordingJobTrack")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobSourceExtension(soap, "tt:Extension", &a->tt__RecordingJobSource::Extension, "tt:RecordingJobSourceExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RecordingJobSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobSource, SOAP_TYPE_tt__RecordingJobSource, sizeof(tt__RecordingJobSource), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobSource * SOAP_FMAC2 soap_instantiate_tt__RecordingJobSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobSource *p; - size_t k = sizeof(tt__RecordingJobSource); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobSource, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobSource); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobSource, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobSource location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobSource::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobSource(soap, tag ? tag : "tt:RecordingJobSource", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobSource::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobSource(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobSource * SOAP_FMAC4 soap_get_tt__RecordingJobSource(struct soap *soap, tt__RecordingJobSource *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobSource(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobConfigurationExtension::__any); -} - -void tt__RecordingJobConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingJobConfigurationExtension::__any); -#endif -} - -int tt__RecordingJobConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__RecordingJobConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingJobConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobConfigurationExtension * SOAP_FMAC4 soap_in_tt__RecordingJobConfigurationExtension(struct soap *soap, const char *tag, tt__RecordingJobConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobConfigurationExtension, sizeof(tt__RecordingJobConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingJobConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RecordingJobConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobConfigurationExtension, SOAP_TYPE_tt__RecordingJobConfigurationExtension, sizeof(tt__RecordingJobConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__RecordingJobConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobConfigurationExtension *p; - size_t k = sizeof(tt__RecordingJobConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobConfigurationExtension(soap, tag ? tag : "tt:RecordingJobConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobConfigurationExtension * SOAP_FMAC4 soap_get_tt__RecordingJobConfigurationExtension(struct soap *soap, tt__RecordingJobConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingJobConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__RecordingJobConfiguration::RecordingToken); - soap_default_tt__RecordingJobMode(soap, &this->tt__RecordingJobConfiguration::Mode); - soap_default_int(soap, &this->tt__RecordingJobConfiguration::Priority); - soap_default_std__vectorTemplateOfPointerTott__RecordingJobSource(soap, &this->tt__RecordingJobConfiguration::Source); - this->tt__RecordingJobConfiguration::Extension = NULL; - this->tt__RecordingJobConfiguration::ScheduleToken = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingJobConfiguration::__anyAttribute); -} - -void tt__RecordingJobConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__RecordingJobConfiguration::RecordingToken); - soap_serialize_tt__RecordingJobMode(soap, &this->tt__RecordingJobConfiguration::Mode); - soap_embedded(soap, &this->tt__RecordingJobConfiguration::Priority, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobSource(soap, &this->tt__RecordingJobConfiguration::Source); - soap_serialize_PointerTott__RecordingJobConfigurationExtension(soap, &this->tt__RecordingJobConfiguration::Extension); -#endif -} - -int tt__RecordingJobConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingJobConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobConfiguration(struct soap *soap, const char *tag, int id, const tt__RecordingJobConfiguration *a, const char *type) -{ - if (((tt__RecordingJobConfiguration*)a)->ScheduleToken) - { soap_set_attr(soap, "ScheduleToken", soap_std__string2s(soap, *((tt__RecordingJobConfiguration*)a)->ScheduleToken), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingJobConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingJobConfiguration), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__RecordingJobConfiguration::RecordingToken, "")) - return soap->error; - if (soap_out_tt__RecordingJobMode(soap, "tt:Mode", -1, &a->tt__RecordingJobConfiguration::Mode, "")) - return soap->error; - if (soap_out_int(soap, "tt:Priority", -1, &a->tt__RecordingJobConfiguration::Priority, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__RecordingJobSource(soap, "tt:Source", -1, &a->tt__RecordingJobConfiguration::Source, "")) - return soap->error; - if (soap_out_PointerTott__RecordingJobConfigurationExtension(soap, "tt:Extension", -1, &a->tt__RecordingJobConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingJobConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingJobConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingJobConfiguration * SOAP_FMAC4 soap_in_tt__RecordingJobConfiguration(struct soap *soap, const char *tag, tt__RecordingJobConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingJobConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingJobConfiguration, sizeof(tt__RecordingJobConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingJobConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingJobConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "ScheduleToken", 1, 0); - if (t) - { - if (!(((tt__RecordingJobConfiguration*)a)->ScheduleToken = soap_new_std__string(soap))) - return NULL; - if (soap_s2std__string(soap, t, ((tt__RecordingJobConfiguration*)a)->ScheduleToken)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingJobConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Priority1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__RecordingJobConfiguration::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_Mode1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingJobMode(soap, "tt:Mode", &a->tt__RecordingJobConfiguration::Mode, "tt:RecordingJobMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Priority1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Priority", &a->tt__RecordingJobConfiguration::Priority, "xsd:int")) - { soap_flag_Priority1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__RecordingJobSource(soap, "tt:Source", &a->tt__RecordingJobConfiguration::Source, "tt:RecordingJobSource")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingJobConfigurationExtension(soap, "tt:Extension", &a->tt__RecordingJobConfiguration::Extension, "tt:RecordingJobConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_Mode1 > 0 || soap_flag_Priority1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingJobConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingJobConfiguration, SOAP_TYPE_tt__RecordingJobConfiguration, sizeof(tt__RecordingJobConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingJobConfiguration * SOAP_FMAC2 soap_instantiate_tt__RecordingJobConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingJobConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingJobConfiguration *p; - size_t k = sizeof(tt__RecordingJobConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingJobConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingJobConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingJobConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingJobConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingJobConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingJobConfiguration(soap, tag ? tag : "tt:RecordingJobConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingJobConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingJobConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingJobConfiguration * SOAP_FMAC4 soap_get_tt__RecordingJobConfiguration(struct soap *soap, tt__RecordingJobConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingJobConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__GetTracksResponseItem::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TrackReference(soap, &this->tt__GetTracksResponseItem::TrackToken); - this->tt__GetTracksResponseItem::Configuration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GetTracksResponseItem::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__GetTracksResponseItem::__anyAttribute); -} - -void tt__GetTracksResponseItem::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__TrackReference(soap, &this->tt__GetTracksResponseItem::TrackToken); - soap_serialize_PointerTott__TrackConfiguration(soap, &this->tt__GetTracksResponseItem::Configuration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GetTracksResponseItem::__any); -#endif -} - -int tt__GetTracksResponseItem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__GetTracksResponseItem(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetTracksResponseItem(struct soap *soap, const char *tag, int id, const tt__GetTracksResponseItem *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__GetTracksResponseItem*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__GetTracksResponseItem), type)) - return soap->error; - if (soap_out_tt__TrackReference(soap, "tt:TrackToken", -1, &a->tt__GetTracksResponseItem::TrackToken, "")) - return soap->error; - if (!a->tt__GetTracksResponseItem::Configuration) - { if (soap_element_empty(soap, "tt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__TrackConfiguration(soap, "tt:Configuration", -1, &a->tt__GetTracksResponseItem::Configuration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__GetTracksResponseItem::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__GetTracksResponseItem::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__GetTracksResponseItem(soap, tag, this, type); -} - -SOAP_FMAC3 tt__GetTracksResponseItem * SOAP_FMAC4 soap_in_tt__GetTracksResponseItem(struct soap *soap, const char *tag, tt__GetTracksResponseItem *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__GetTracksResponseItem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__GetTracksResponseItem, sizeof(tt__GetTracksResponseItem), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__GetTracksResponseItem) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__GetTracksResponseItem *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__GetTracksResponseItem*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TrackToken1 = 1; - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "tt:TrackToken", &a->tt__GetTracksResponseItem::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TrackConfiguration(soap, "tt:Configuration", &a->tt__GetTracksResponseItem::Configuration, "tt:TrackConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__GetTracksResponseItem::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TrackToken1 > 0 || !a->tt__GetTracksResponseItem::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__GetTracksResponseItem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__GetTracksResponseItem, SOAP_TYPE_tt__GetTracksResponseItem, sizeof(tt__GetTracksResponseItem), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__GetTracksResponseItem * SOAP_FMAC2 soap_instantiate_tt__GetTracksResponseItem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__GetTracksResponseItem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__GetTracksResponseItem *p; - size_t k = sizeof(tt__GetTracksResponseItem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__GetTracksResponseItem, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__GetTracksResponseItem); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__GetTracksResponseItem, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__GetTracksResponseItem location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__GetTracksResponseItem::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__GetTracksResponseItem(soap, tag ? tag : "tt:GetTracksResponseItem", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__GetTracksResponseItem::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__GetTracksResponseItem(soap, this, tag, type); -} - -SOAP_FMAC3 tt__GetTracksResponseItem * SOAP_FMAC4 soap_get_tt__GetTracksResponseItem(struct soap *soap, tt__GetTracksResponseItem *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__GetTracksResponseItem(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__GetTracksResponseList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__GetTracksResponseItem(soap, &this->tt__GetTracksResponseList::Track); - soap_default_xsd__anyAttribute(soap, &this->tt__GetTracksResponseList::__anyAttribute); -} - -void tt__GetTracksResponseList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__GetTracksResponseItem(soap, &this->tt__GetTracksResponseList::Track); -#endif -} - -int tt__GetTracksResponseList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__GetTracksResponseList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetTracksResponseList(struct soap *soap, const char *tag, int id, const tt__GetTracksResponseList *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__GetTracksResponseList*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__GetTracksResponseList), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__GetTracksResponseItem(soap, "tt:Track", -1, &a->tt__GetTracksResponseList::Track, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__GetTracksResponseList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__GetTracksResponseList(soap, tag, this, type); -} - -SOAP_FMAC3 tt__GetTracksResponseList * SOAP_FMAC4 soap_in_tt__GetTracksResponseList(struct soap *soap, const char *tag, tt__GetTracksResponseList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__GetTracksResponseList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__GetTracksResponseList, sizeof(tt__GetTracksResponseList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__GetTracksResponseList) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__GetTracksResponseList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__GetTracksResponseList*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__GetTracksResponseItem(soap, "tt:Track", &a->tt__GetTracksResponseList::Track, "tt:GetTracksResponseItem")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__GetTracksResponseList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__GetTracksResponseList, SOAP_TYPE_tt__GetTracksResponseList, sizeof(tt__GetTracksResponseList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__GetTracksResponseList * SOAP_FMAC2 soap_instantiate_tt__GetTracksResponseList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__GetTracksResponseList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__GetTracksResponseList *p; - size_t k = sizeof(tt__GetTracksResponseList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__GetTracksResponseList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__GetTracksResponseList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__GetTracksResponseList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__GetTracksResponseList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__GetTracksResponseList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__GetTracksResponseList(soap, tag ? tag : "tt:GetTracksResponseList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__GetTracksResponseList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__GetTracksResponseList(soap, this, tag, type); -} - -SOAP_FMAC3 tt__GetTracksResponseList * SOAP_FMAC4 soap_get_tt__GetTracksResponseList(struct soap *soap, tt__GetTracksResponseList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__GetTracksResponseList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__GetRecordingsResponseItem::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__GetRecordingsResponseItem::RecordingToken); - this->tt__GetRecordingsResponseItem::Configuration = NULL; - this->tt__GetRecordingsResponseItem::Tracks = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GetRecordingsResponseItem::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__GetRecordingsResponseItem::__anyAttribute); -} - -void tt__GetRecordingsResponseItem::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__GetRecordingsResponseItem::RecordingToken); - soap_serialize_PointerTott__RecordingConfiguration(soap, &this->tt__GetRecordingsResponseItem::Configuration); - soap_serialize_PointerTott__GetTracksResponseList(soap, &this->tt__GetRecordingsResponseItem::Tracks); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GetRecordingsResponseItem::__any); -#endif -} - -int tt__GetRecordingsResponseItem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__GetRecordingsResponseItem(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetRecordingsResponseItem(struct soap *soap, const char *tag, int id, const tt__GetRecordingsResponseItem *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__GetRecordingsResponseItem*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__GetRecordingsResponseItem), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__GetRecordingsResponseItem::RecordingToken, "")) - return soap->error; - if (!a->tt__GetRecordingsResponseItem::Configuration) - { if (soap_element_empty(soap, "tt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingConfiguration(soap, "tt:Configuration", -1, &a->tt__GetRecordingsResponseItem::Configuration, "")) - return soap->error; - if (!a->tt__GetRecordingsResponseItem::Tracks) - { if (soap_element_empty(soap, "tt:Tracks", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__GetTracksResponseList(soap, "tt:Tracks", -1, &a->tt__GetRecordingsResponseItem::Tracks, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__GetRecordingsResponseItem::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__GetRecordingsResponseItem::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__GetRecordingsResponseItem(soap, tag, this, type); -} - -SOAP_FMAC3 tt__GetRecordingsResponseItem * SOAP_FMAC4 soap_in_tt__GetRecordingsResponseItem(struct soap *soap, const char *tag, tt__GetRecordingsResponseItem *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__GetRecordingsResponseItem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__GetRecordingsResponseItem, sizeof(tt__GetRecordingsResponseItem), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__GetRecordingsResponseItem) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__GetRecordingsResponseItem *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__GetRecordingsResponseItem*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_Configuration1 = 1; - size_t soap_flag_Tracks1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__GetRecordingsResponseItem::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingConfiguration(soap, "tt:Configuration", &a->tt__GetRecordingsResponseItem::Configuration, "tt:RecordingConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap_flag_Tracks1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__GetTracksResponseList(soap, "tt:Tracks", &a->tt__GetRecordingsResponseItem::Tracks, "tt:GetTracksResponseList")) - { soap_flag_Tracks1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__GetRecordingsResponseItem::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || !a->tt__GetRecordingsResponseItem::Configuration || !a->tt__GetRecordingsResponseItem::Tracks)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__GetRecordingsResponseItem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__GetRecordingsResponseItem, SOAP_TYPE_tt__GetRecordingsResponseItem, sizeof(tt__GetRecordingsResponseItem), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__GetRecordingsResponseItem * SOAP_FMAC2 soap_instantiate_tt__GetRecordingsResponseItem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__GetRecordingsResponseItem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__GetRecordingsResponseItem *p; - size_t k = sizeof(tt__GetRecordingsResponseItem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__GetRecordingsResponseItem, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__GetRecordingsResponseItem); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__GetRecordingsResponseItem, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__GetRecordingsResponseItem location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__GetRecordingsResponseItem::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__GetRecordingsResponseItem(soap, tag ? tag : "tt:GetRecordingsResponseItem", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__GetRecordingsResponseItem::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__GetRecordingsResponseItem(soap, this, tag, type); -} - -SOAP_FMAC3 tt__GetRecordingsResponseItem * SOAP_FMAC4 soap_get_tt__GetRecordingsResponseItem(struct soap *soap, tt__GetRecordingsResponseItem *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__GetRecordingsResponseItem(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TrackConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TrackType(soap, &this->tt__TrackConfiguration::TrackType); - soap_default_tt__Description(soap, &this->tt__TrackConfiguration::Description); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TrackConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__TrackConfiguration::__anyAttribute); -} - -void tt__TrackConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__TrackConfiguration::Description, SOAP_TYPE_tt__Description); - soap_serialize_tt__Description(soap, &this->tt__TrackConfiguration::Description); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TrackConfiguration::__any); -#endif -} - -int tt__TrackConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TrackConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackConfiguration(struct soap *soap, const char *tag, int id, const tt__TrackConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__TrackConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TrackConfiguration), type)) - return soap->error; - if (soap_out_tt__TrackType(soap, "tt:TrackType", -1, &a->tt__TrackConfiguration::TrackType, "")) - return soap->error; - if (soap_out_tt__Description(soap, "tt:Description", -1, &a->tt__TrackConfiguration::Description, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__TrackConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__TrackConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TrackConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TrackConfiguration * SOAP_FMAC4 soap_in_tt__TrackConfiguration(struct soap *soap, const char *tag, tt__TrackConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__TrackConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TrackConfiguration, sizeof(tt__TrackConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TrackConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__TrackConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__TrackConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TrackType1 = 1; - size_t soap_flag_Description1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TrackType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__TrackType(soap, "tt:TrackType", &a->tt__TrackConfiguration::TrackType, "tt:TrackType")) - { soap_flag_TrackType1--; - continue; - } - } - if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Description(soap, "tt:Description", &a->tt__TrackConfiguration::Description, "tt:Description")) - { soap_flag_Description1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__TrackConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TrackType1 > 0 || soap_flag_Description1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__TrackConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TrackConfiguration, SOAP_TYPE_tt__TrackConfiguration, sizeof(tt__TrackConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__TrackConfiguration * SOAP_FMAC2 soap_instantiate_tt__TrackConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TrackConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TrackConfiguration *p; - size_t k = sizeof(tt__TrackConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TrackConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TrackConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TrackConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TrackConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TrackConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TrackConfiguration(soap, tag ? tag : "tt:TrackConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TrackConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TrackConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TrackConfiguration * SOAP_FMAC4 soap_get_tt__TrackConfiguration(struct soap *soap, tt__TrackConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TrackConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__RecordingConfiguration::Source = NULL; - soap_default_tt__Description(soap, &this->tt__RecordingConfiguration::Content); - soap_default_xsd__duration(soap, &this->tt__RecordingConfiguration::MaximumRetentionTime); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingConfiguration::__anyAttribute); -} - -void tt__RecordingConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RecordingSourceInformation(soap, &this->tt__RecordingConfiguration::Source); - soap_embedded(soap, &this->tt__RecordingConfiguration::Content, SOAP_TYPE_tt__Description); - soap_serialize_tt__Description(soap, &this->tt__RecordingConfiguration::Content); - soap_embedded(soap, &this->tt__RecordingConfiguration::MaximumRetentionTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__RecordingConfiguration::MaximumRetentionTime); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingConfiguration::__any); -#endif -} - -int tt__RecordingConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingConfiguration(struct soap *soap, const char *tag, int id, const tt__RecordingConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingConfiguration), type)) - return soap->error; - if (!a->tt__RecordingConfiguration::Source) - { if (soap_element_empty(soap, "tt:Source", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingSourceInformation(soap, "tt:Source", -1, &a->tt__RecordingConfiguration::Source, "")) - return soap->error; - if (soap_out_tt__Description(soap, "tt:Content", -1, &a->tt__RecordingConfiguration::Content, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:MaximumRetentionTime", -1, &a->tt__RecordingConfiguration::MaximumRetentionTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingConfiguration * SOAP_FMAC4 soap_in_tt__RecordingConfiguration(struct soap *soap, const char *tag, tt__RecordingConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingConfiguration, sizeof(tt__RecordingConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Source1 = 1; - size_t soap_flag_Content1 = 1; - size_t soap_flag_MaximumRetentionTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Source1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingSourceInformation(soap, "tt:Source", &a->tt__RecordingConfiguration::Source, "tt:RecordingSourceInformation")) - { soap_flag_Source1--; - continue; - } - } - if (soap_flag_Content1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Description(soap, "tt:Content", &a->tt__RecordingConfiguration::Content, "tt:Description")) - { soap_flag_Content1--; - continue; - } - } - if (soap_flag_MaximumRetentionTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:MaximumRetentionTime", &a->tt__RecordingConfiguration::MaximumRetentionTime, "xsd:duration")) - { soap_flag_MaximumRetentionTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__RecordingConfiguration::Source || soap_flag_Content1 > 0 || soap_flag_MaximumRetentionTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingConfiguration, SOAP_TYPE_tt__RecordingConfiguration, sizeof(tt__RecordingConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingConfiguration * SOAP_FMAC2 soap_instantiate_tt__RecordingConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingConfiguration *p; - size_t k = sizeof(tt__RecordingConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingConfiguration(soap, tag ? tag : "tt:RecordingConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingConfiguration * SOAP_FMAC4 soap_get_tt__RecordingConfiguration(struct soap *soap, tt__RecordingConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataAttributes::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__MetadataAttributes::CanContainPTZ); - soap_default_bool(soap, &this->tt__MetadataAttributes::CanContainAnalytics); - soap_default_bool(soap, &this->tt__MetadataAttributes::CanContainNotifications); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataAttributes::__any); - this->tt__MetadataAttributes::PtzSpaces = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MetadataAttributes::__anyAttribute); -} - -void tt__MetadataAttributes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__MetadataAttributes::CanContainPTZ, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__MetadataAttributes::CanContainAnalytics, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__MetadataAttributes::CanContainNotifications, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataAttributes::__any); -#endif -} - -int tt__MetadataAttributes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataAttributes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataAttributes(struct soap *soap, const char *tag, int id, const tt__MetadataAttributes *a, const char *type) -{ - if (((tt__MetadataAttributes*)a)->PtzSpaces) - { soap_set_attr(soap, "PtzSpaces", soap_tt__StringAttrList2s(soap, *((tt__MetadataAttributes*)a)->PtzSpaces), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MetadataAttributes*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataAttributes), type)) - return soap->error; - if (soap_out_bool(soap, "tt:CanContainPTZ", -1, &a->tt__MetadataAttributes::CanContainPTZ, "")) - return soap->error; - if (soap_out_bool(soap, "tt:CanContainAnalytics", -1, &a->tt__MetadataAttributes::CanContainAnalytics, "")) - return soap->error; - if (soap_out_bool(soap, "tt:CanContainNotifications", -1, &a->tt__MetadataAttributes::CanContainNotifications, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MetadataAttributes::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataAttributes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataAttributes(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataAttributes * SOAP_FMAC4 soap_in_tt__MetadataAttributes(struct soap *soap, const char *tag, tt__MetadataAttributes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataAttributes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataAttributes, sizeof(tt__MetadataAttributes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataAttributes) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataAttributes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "PtzSpaces", 1, 0); - if (t) - { - if (!(((tt__MetadataAttributes*)a)->PtzSpaces = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((tt__MetadataAttributes*)a)->PtzSpaces)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MetadataAttributes*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CanContainPTZ1 = 1; - size_t soap_flag_CanContainAnalytics1 = 1; - size_t soap_flag_CanContainNotifications1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CanContainPTZ1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:CanContainPTZ", &a->tt__MetadataAttributes::CanContainPTZ, "xsd:boolean")) - { soap_flag_CanContainPTZ1--; - continue; - } - } - if (soap_flag_CanContainAnalytics1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:CanContainAnalytics", &a->tt__MetadataAttributes::CanContainAnalytics, "xsd:boolean")) - { soap_flag_CanContainAnalytics1--; - continue; - } - } - if (soap_flag_CanContainNotifications1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:CanContainNotifications", &a->tt__MetadataAttributes::CanContainNotifications, "xsd:boolean")) - { soap_flag_CanContainNotifications1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MetadataAttributes::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CanContainPTZ1 > 0 || soap_flag_CanContainAnalytics1 > 0 || soap_flag_CanContainNotifications1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MetadataAttributes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataAttributes, SOAP_TYPE_tt__MetadataAttributes, sizeof(tt__MetadataAttributes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataAttributes * SOAP_FMAC2 soap_instantiate_tt__MetadataAttributes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataAttributes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataAttributes *p; - size_t k = sizeof(tt__MetadataAttributes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataAttributes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataAttributes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataAttributes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataAttributes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataAttributes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataAttributes(soap, tag ? tag : "tt:MetadataAttributes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataAttributes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataAttributes(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataAttributes * SOAP_FMAC4 soap_get_tt__MetadataAttributes(struct soap *soap, tt__MetadataAttributes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioAttributes::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__AudioAttributes::Bitrate = NULL; - soap_default_std__string(soap, &this->tt__AudioAttributes::Encoding); - soap_default_int(soap, &this->tt__AudioAttributes::Samplerate); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioAttributes::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioAttributes::__anyAttribute); -} - -void tt__AudioAttributes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &this->tt__AudioAttributes::Bitrate); - soap_embedded(soap, &this->tt__AudioAttributes::Encoding, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__AudioAttributes::Encoding); - soap_embedded(soap, &this->tt__AudioAttributes::Samplerate, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioAttributes::__any); -#endif -} - -int tt__AudioAttributes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioAttributes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioAttributes(struct soap *soap, const char *tag, int id, const tt__AudioAttributes *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioAttributes*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioAttributes), type)) - return soap->error; - if (soap_out_PointerToint(soap, "tt:Bitrate", -1, &a->tt__AudioAttributes::Bitrate, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:Encoding", -1, &a->tt__AudioAttributes::Encoding, "")) - return soap->error; - if (soap_out_int(soap, "tt:Samplerate", -1, &a->tt__AudioAttributes::Samplerate, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioAttributes::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioAttributes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioAttributes(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioAttributes * SOAP_FMAC4 soap_in_tt__AudioAttributes(struct soap *soap, const char *tag, tt__AudioAttributes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioAttributes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioAttributes, sizeof(tt__AudioAttributes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioAttributes) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioAttributes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioAttributes*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Bitrate1 = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_Samplerate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Bitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:Bitrate", &a->tt__AudioAttributes::Bitrate, "xsd:int")) - { soap_flag_Bitrate1--; - continue; - } - } - if (soap_flag_Encoding1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Encoding", &a->tt__AudioAttributes::Encoding, "xsd:string")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_Samplerate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Samplerate", &a->tt__AudioAttributes::Samplerate, "xsd:int")) - { soap_flag_Samplerate1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioAttributes::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Encoding1 > 0 || soap_flag_Samplerate1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioAttributes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioAttributes, SOAP_TYPE_tt__AudioAttributes, sizeof(tt__AudioAttributes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioAttributes * SOAP_FMAC2 soap_instantiate_tt__AudioAttributes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioAttributes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioAttributes *p; - size_t k = sizeof(tt__AudioAttributes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioAttributes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioAttributes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioAttributes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioAttributes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioAttributes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioAttributes(soap, tag ? tag : "tt:AudioAttributes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioAttributes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioAttributes(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioAttributes * SOAP_FMAC4 soap_get_tt__AudioAttributes(struct soap *soap, tt__AudioAttributes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoAttributes::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__VideoAttributes::Bitrate = NULL; - soap_default_int(soap, &this->tt__VideoAttributes::Width); - soap_default_int(soap, &this->tt__VideoAttributes::Height); - soap_default_std__string(soap, &this->tt__VideoAttributes::Encoding); - soap_default_float(soap, &this->tt__VideoAttributes::Framerate); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoAttributes::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__VideoAttributes::__anyAttribute); -} - -void tt__VideoAttributes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &this->tt__VideoAttributes::Bitrate); - soap_embedded(soap, &this->tt__VideoAttributes::Width, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__VideoAttributes::Height, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__VideoAttributes::Encoding, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__VideoAttributes::Encoding); - soap_embedded(soap, &this->tt__VideoAttributes::Framerate, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoAttributes::__any); -#endif -} - -int tt__VideoAttributes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoAttributes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoAttributes(struct soap *soap, const char *tag, int id, const tt__VideoAttributes *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoAttributes*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoAttributes), type)) - return soap->error; - if (soap_out_PointerToint(soap, "tt:Bitrate", -1, &a->tt__VideoAttributes::Bitrate, "")) - return soap->error; - if (soap_out_int(soap, "tt:Width", -1, &a->tt__VideoAttributes::Width, "")) - return soap->error; - if (soap_out_int(soap, "tt:Height", -1, &a->tt__VideoAttributes::Height, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:Encoding", -1, &a->tt__VideoAttributes::Encoding, "")) - return soap->error; - if (soap_out_float(soap, "tt:Framerate", -1, &a->tt__VideoAttributes::Framerate, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoAttributes::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoAttributes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoAttributes(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoAttributes * SOAP_FMAC4 soap_in_tt__VideoAttributes(struct soap *soap, const char *tag, tt__VideoAttributes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoAttributes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoAttributes, sizeof(tt__VideoAttributes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoAttributes) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoAttributes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoAttributes*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Bitrate1 = 1; - size_t soap_flag_Width1 = 1; - size_t soap_flag_Height1 = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_Framerate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Bitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:Bitrate", &a->tt__VideoAttributes::Bitrate, "xsd:int")) - { soap_flag_Bitrate1--; - continue; - } - } - if (soap_flag_Width1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Width", &a->tt__VideoAttributes::Width, "xsd:int")) - { soap_flag_Width1--; - continue; - } - } - if (soap_flag_Height1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Height", &a->tt__VideoAttributes::Height, "xsd:int")) - { soap_flag_Height1--; - continue; - } - } - if (soap_flag_Encoding1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Encoding", &a->tt__VideoAttributes::Encoding, "xsd:string")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_Framerate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Framerate", &a->tt__VideoAttributes::Framerate, "xsd:float")) - { soap_flag_Framerate1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoAttributes::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Width1 > 0 || soap_flag_Height1 > 0 || soap_flag_Encoding1 > 0 || soap_flag_Framerate1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoAttributes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoAttributes, SOAP_TYPE_tt__VideoAttributes, sizeof(tt__VideoAttributes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoAttributes * SOAP_FMAC2 soap_instantiate_tt__VideoAttributes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoAttributes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoAttributes *p; - size_t k = sizeof(tt__VideoAttributes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoAttributes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoAttributes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoAttributes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoAttributes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoAttributes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoAttributes(soap, tag ? tag : "tt:VideoAttributes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoAttributes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoAttributes(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoAttributes * SOAP_FMAC4 soap_get_tt__VideoAttributes(struct soap *soap, tt__VideoAttributes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TrackAttributesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TrackAttributesExtension::__any); -} - -void tt__TrackAttributesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TrackAttributesExtension::__any); -#endif -} - -int tt__TrackAttributesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TrackAttributesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackAttributesExtension(struct soap *soap, const char *tag, int id, const tt__TrackAttributesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TrackAttributesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__TrackAttributesExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__TrackAttributesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TrackAttributesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TrackAttributesExtension * SOAP_FMAC4 soap_in_tt__TrackAttributesExtension(struct soap *soap, const char *tag, tt__TrackAttributesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__TrackAttributesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TrackAttributesExtension, sizeof(tt__TrackAttributesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TrackAttributesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__TrackAttributesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__TrackAttributesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__TrackAttributesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TrackAttributesExtension, SOAP_TYPE_tt__TrackAttributesExtension, sizeof(tt__TrackAttributesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__TrackAttributesExtension * SOAP_FMAC2 soap_instantiate_tt__TrackAttributesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TrackAttributesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TrackAttributesExtension *p; - size_t k = sizeof(tt__TrackAttributesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TrackAttributesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TrackAttributesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TrackAttributesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TrackAttributesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TrackAttributesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TrackAttributesExtension(soap, tag ? tag : "tt:TrackAttributesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TrackAttributesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TrackAttributesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TrackAttributesExtension * SOAP_FMAC4 soap_get_tt__TrackAttributesExtension(struct soap *soap, tt__TrackAttributesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TrackAttributesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TrackAttributes::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__TrackAttributes::TrackInformation = NULL; - this->tt__TrackAttributes::VideoAttributes = NULL; - this->tt__TrackAttributes::AudioAttributes = NULL; - this->tt__TrackAttributes::MetadataAttributes = NULL; - this->tt__TrackAttributes::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__TrackAttributes::__anyAttribute); -} - -void tt__TrackAttributes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__TrackInformation(soap, &this->tt__TrackAttributes::TrackInformation); - soap_serialize_PointerTott__VideoAttributes(soap, &this->tt__TrackAttributes::VideoAttributes); - soap_serialize_PointerTott__AudioAttributes(soap, &this->tt__TrackAttributes::AudioAttributes); - soap_serialize_PointerTott__MetadataAttributes(soap, &this->tt__TrackAttributes::MetadataAttributes); - soap_serialize_PointerTott__TrackAttributesExtension(soap, &this->tt__TrackAttributes::Extension); -#endif -} - -int tt__TrackAttributes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TrackAttributes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackAttributes(struct soap *soap, const char *tag, int id, const tt__TrackAttributes *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__TrackAttributes*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TrackAttributes), type)) - return soap->error; - if (!a->tt__TrackAttributes::TrackInformation) - { if (soap_element_empty(soap, "tt:TrackInformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__TrackInformation(soap, "tt:TrackInformation", -1, &a->tt__TrackAttributes::TrackInformation, "")) - return soap->error; - if (soap_out_PointerTott__VideoAttributes(soap, "tt:VideoAttributes", -1, &a->tt__TrackAttributes::VideoAttributes, "")) - return soap->error; - if (soap_out_PointerTott__AudioAttributes(soap, "tt:AudioAttributes", -1, &a->tt__TrackAttributes::AudioAttributes, "")) - return soap->error; - if (soap_out_PointerTott__MetadataAttributes(soap, "tt:MetadataAttributes", -1, &a->tt__TrackAttributes::MetadataAttributes, "")) - return soap->error; - if (soap_out_PointerTott__TrackAttributesExtension(soap, "tt:Extension", -1, &a->tt__TrackAttributes::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__TrackAttributes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TrackAttributes(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TrackAttributes * SOAP_FMAC4 soap_in_tt__TrackAttributes(struct soap *soap, const char *tag, tt__TrackAttributes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__TrackAttributes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TrackAttributes, sizeof(tt__TrackAttributes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TrackAttributes) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__TrackAttributes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__TrackAttributes*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TrackInformation1 = 1; - size_t soap_flag_VideoAttributes1 = 1; - size_t soap_flag_AudioAttributes1 = 1; - size_t soap_flag_MetadataAttributes1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TrackInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TrackInformation(soap, "tt:TrackInformation", &a->tt__TrackAttributes::TrackInformation, "tt:TrackInformation")) - { soap_flag_TrackInformation1--; - continue; - } - } - if (soap_flag_VideoAttributes1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoAttributes(soap, "tt:VideoAttributes", &a->tt__TrackAttributes::VideoAttributes, "tt:VideoAttributes")) - { soap_flag_VideoAttributes1--; - continue; - } - } - if (soap_flag_AudioAttributes1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioAttributes(soap, "tt:AudioAttributes", &a->tt__TrackAttributes::AudioAttributes, "tt:AudioAttributes")) - { soap_flag_AudioAttributes1--; - continue; - } - } - if (soap_flag_MetadataAttributes1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataAttributes(soap, "tt:MetadataAttributes", &a->tt__TrackAttributes::MetadataAttributes, "tt:MetadataAttributes")) - { soap_flag_MetadataAttributes1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TrackAttributesExtension(soap, "tt:Extension", &a->tt__TrackAttributes::Extension, "tt:TrackAttributesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__TrackAttributes::TrackInformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__TrackAttributes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TrackAttributes, SOAP_TYPE_tt__TrackAttributes, sizeof(tt__TrackAttributes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__TrackAttributes * SOAP_FMAC2 soap_instantiate_tt__TrackAttributes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TrackAttributes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TrackAttributes *p; - size_t k = sizeof(tt__TrackAttributes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TrackAttributes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TrackAttributes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TrackAttributes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TrackAttributes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TrackAttributes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TrackAttributes(soap, tag ? tag : "tt:TrackAttributes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TrackAttributes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TrackAttributes(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TrackAttributes * SOAP_FMAC4 soap_get_tt__TrackAttributes(struct soap *soap, tt__TrackAttributes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TrackAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MediaAttributes::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__MediaAttributes::RecordingToken); - soap_default_std__vectorTemplateOfPointerTott__TrackAttributes(soap, &this->tt__MediaAttributes::TrackAttributes); - soap_default_xsd__dateTime(soap, &this->tt__MediaAttributes::From); - soap_default_xsd__dateTime(soap, &this->tt__MediaAttributes::Until); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaAttributes::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__MediaAttributes::__anyAttribute); -} - -void tt__MediaAttributes::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__MediaAttributes::RecordingToken); - soap_serialize_std__vectorTemplateOfPointerTott__TrackAttributes(soap, &this->tt__MediaAttributes::TrackAttributes); - soap_embedded(soap, &this->tt__MediaAttributes::From, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__MediaAttributes::From); - soap_embedded(soap, &this->tt__MediaAttributes::Until, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__MediaAttributes::Until); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaAttributes::__any); -#endif -} - -int tt__MediaAttributes::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MediaAttributes(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaAttributes(struct soap *soap, const char *tag, int id, const tt__MediaAttributes *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MediaAttributes*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MediaAttributes), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__MediaAttributes::RecordingToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__TrackAttributes(soap, "tt:TrackAttributes", -1, &a->tt__MediaAttributes::TrackAttributes, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:From", -1, &a->tt__MediaAttributes::From, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:Until", -1, &a->tt__MediaAttributes::Until, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MediaAttributes::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MediaAttributes::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MediaAttributes(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MediaAttributes * SOAP_FMAC4 soap_in_tt__MediaAttributes(struct soap *soap, const char *tag, tt__MediaAttributes *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MediaAttributes*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MediaAttributes, sizeof(tt__MediaAttributes), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MediaAttributes) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MediaAttributes *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MediaAttributes*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_From1 = 1; - size_t soap_flag_Until1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__MediaAttributes::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__TrackAttributes(soap, "tt:TrackAttributes", &a->tt__MediaAttributes::TrackAttributes, "tt:TrackAttributes")) - continue; - } - if (soap_flag_From1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:From", &a->tt__MediaAttributes::From, "xsd:dateTime")) - { soap_flag_From1--; - continue; - } - } - if (soap_flag_Until1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:Until", &a->tt__MediaAttributes::Until, "xsd:dateTime")) - { soap_flag_Until1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MediaAttributes::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_From1 > 0 || soap_flag_Until1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MediaAttributes *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MediaAttributes, SOAP_TYPE_tt__MediaAttributes, sizeof(tt__MediaAttributes), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MediaAttributes * SOAP_FMAC2 soap_instantiate_tt__MediaAttributes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MediaAttributes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MediaAttributes *p; - size_t k = sizeof(tt__MediaAttributes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MediaAttributes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MediaAttributes); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MediaAttributes, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MediaAttributes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MediaAttributes::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MediaAttributes(soap, tag ? tag : "tt:MediaAttributes", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MediaAttributes::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MediaAttributes(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MediaAttributes * SOAP_FMAC4 soap_get_tt__MediaAttributes(struct soap *soap, tt__MediaAttributes *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MediaAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TrackInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TrackReference(soap, &this->tt__TrackInformation::TrackToken); - soap_default_tt__TrackType(soap, &this->tt__TrackInformation::TrackType); - soap_default_tt__Description(soap, &this->tt__TrackInformation::Description); - soap_default_xsd__dateTime(soap, &this->tt__TrackInformation::DataFrom); - soap_default_xsd__dateTime(soap, &this->tt__TrackInformation::DataTo); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TrackInformation::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__TrackInformation::__anyAttribute); -} - -void tt__TrackInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__TrackReference(soap, &this->tt__TrackInformation::TrackToken); - soap_embedded(soap, &this->tt__TrackInformation::Description, SOAP_TYPE_tt__Description); - soap_serialize_tt__Description(soap, &this->tt__TrackInformation::Description); - soap_embedded(soap, &this->tt__TrackInformation::DataFrom, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__TrackInformation::DataFrom); - soap_embedded(soap, &this->tt__TrackInformation::DataTo, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__TrackInformation::DataTo); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TrackInformation::__any); -#endif -} - -int tt__TrackInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TrackInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackInformation(struct soap *soap, const char *tag, int id, const tt__TrackInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__TrackInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TrackInformation), type)) - return soap->error; - if (soap_out_tt__TrackReference(soap, "tt:TrackToken", -1, &a->tt__TrackInformation::TrackToken, "")) - return soap->error; - if (soap_out_tt__TrackType(soap, "tt:TrackType", -1, &a->tt__TrackInformation::TrackType, "")) - return soap->error; - if (soap_out_tt__Description(soap, "tt:Description", -1, &a->tt__TrackInformation::Description, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:DataFrom", -1, &a->tt__TrackInformation::DataFrom, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:DataTo", -1, &a->tt__TrackInformation::DataTo, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__TrackInformation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__TrackInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TrackInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TrackInformation * SOAP_FMAC4 soap_in_tt__TrackInformation(struct soap *soap, const char *tag, tt__TrackInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__TrackInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TrackInformation, sizeof(tt__TrackInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TrackInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__TrackInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__TrackInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TrackToken1 = 1; - size_t soap_flag_TrackType1 = 1; - size_t soap_flag_Description1 = 1; - size_t soap_flag_DataFrom1 = 1; - size_t soap_flag_DataTo1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "tt:TrackToken", &a->tt__TrackInformation::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap_flag_TrackType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__TrackType(soap, "tt:TrackType", &a->tt__TrackInformation::TrackType, "tt:TrackType")) - { soap_flag_TrackType1--; - continue; - } - } - if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Description(soap, "tt:Description", &a->tt__TrackInformation::Description, "tt:Description")) - { soap_flag_Description1--; - continue; - } - } - if (soap_flag_DataFrom1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:DataFrom", &a->tt__TrackInformation::DataFrom, "xsd:dateTime")) - { soap_flag_DataFrom1--; - continue; - } - } - if (soap_flag_DataTo1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:DataTo", &a->tt__TrackInformation::DataTo, "xsd:dateTime")) - { soap_flag_DataTo1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__TrackInformation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TrackToken1 > 0 || soap_flag_TrackType1 > 0 || soap_flag_Description1 > 0 || soap_flag_DataFrom1 > 0 || soap_flag_DataTo1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__TrackInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TrackInformation, SOAP_TYPE_tt__TrackInformation, sizeof(tt__TrackInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__TrackInformation * SOAP_FMAC2 soap_instantiate_tt__TrackInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TrackInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TrackInformation *p; - size_t k = sizeof(tt__TrackInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TrackInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TrackInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TrackInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TrackInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TrackInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TrackInformation(soap, tag ? tag : "tt:TrackInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TrackInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TrackInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TrackInformation * SOAP_FMAC4 soap_get_tt__TrackInformation(struct soap *soap, tt__TrackInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TrackInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingSourceInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__RecordingSourceInformation::SourceId); - soap_default_tt__Name(soap, &this->tt__RecordingSourceInformation::Name); - soap_default_tt__Description(soap, &this->tt__RecordingSourceInformation::Location); - soap_default_tt__Description(soap, &this->tt__RecordingSourceInformation::Description); - soap_default_xsd__anyURI(soap, &this->tt__RecordingSourceInformation::Address); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingSourceInformation::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingSourceInformation::__anyAttribute); -} - -void tt__RecordingSourceInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RecordingSourceInformation::SourceId, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__RecordingSourceInformation::SourceId); - soap_embedded(soap, &this->tt__RecordingSourceInformation::Name, SOAP_TYPE_tt__Name); - soap_serialize_tt__Name(soap, &this->tt__RecordingSourceInformation::Name); - soap_embedded(soap, &this->tt__RecordingSourceInformation::Location, SOAP_TYPE_tt__Description); - soap_serialize_tt__Description(soap, &this->tt__RecordingSourceInformation::Location); - soap_embedded(soap, &this->tt__RecordingSourceInformation::Description, SOAP_TYPE_tt__Description); - soap_serialize_tt__Description(soap, &this->tt__RecordingSourceInformation::Description); - soap_embedded(soap, &this->tt__RecordingSourceInformation::Address, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__RecordingSourceInformation::Address); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingSourceInformation::__any); -#endif -} - -int tt__RecordingSourceInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingSourceInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingSourceInformation(struct soap *soap, const char *tag, int id, const tt__RecordingSourceInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingSourceInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingSourceInformation), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:SourceId", -1, &a->tt__RecordingSourceInformation::SourceId, "")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__RecordingSourceInformation::Name, "")) - return soap->error; - if (soap_out_tt__Description(soap, "tt:Location", -1, &a->tt__RecordingSourceInformation::Location, "")) - return soap->error; - if (soap_out_tt__Description(soap, "tt:Description", -1, &a->tt__RecordingSourceInformation::Description, "")) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:Address", -1, &a->tt__RecordingSourceInformation::Address, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingSourceInformation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingSourceInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingSourceInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingSourceInformation * SOAP_FMAC4 soap_in_tt__RecordingSourceInformation(struct soap *soap, const char *tag, tt__RecordingSourceInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingSourceInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingSourceInformation, sizeof(tt__RecordingSourceInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingSourceInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingSourceInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingSourceInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SourceId1 = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_Location1 = 1; - size_t soap_flag_Description1 = 1; - size_t soap_flag_Address1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SourceId1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:SourceId", &a->tt__RecordingSourceInformation::SourceId, "xsd:anyURI")) - { soap_flag_SourceId1--; - continue; - } - } - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__RecordingSourceInformation::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_Location1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Description(soap, "tt:Location", &a->tt__RecordingSourceInformation::Location, "tt:Description")) - { soap_flag_Location1--; - continue; - } - } - if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Description(soap, "tt:Description", &a->tt__RecordingSourceInformation::Description, "tt:Description")) - { soap_flag_Description1--; - continue; - } - } - if (soap_flag_Address1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:Address", &a->tt__RecordingSourceInformation::Address, "xsd:anyURI")) - { soap_flag_Address1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingSourceInformation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SourceId1 > 0 || soap_flag_Name1 > 0 || soap_flag_Location1 > 0 || soap_flag_Description1 > 0 || soap_flag_Address1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingSourceInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingSourceInformation, SOAP_TYPE_tt__RecordingSourceInformation, sizeof(tt__RecordingSourceInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingSourceInformation * SOAP_FMAC2 soap_instantiate_tt__RecordingSourceInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingSourceInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingSourceInformation *p; - size_t k = sizeof(tt__RecordingSourceInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingSourceInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingSourceInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingSourceInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingSourceInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingSourceInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingSourceInformation(soap, tag ? tag : "tt:RecordingSourceInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingSourceInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingSourceInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingSourceInformation * SOAP_FMAC4 soap_get_tt__RecordingSourceInformation(struct soap *soap, tt__RecordingSourceInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingSourceInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__RecordingInformation::RecordingToken); - this->tt__RecordingInformation::Source = NULL; - this->tt__RecordingInformation::EarliestRecording = NULL; - this->tt__RecordingInformation::LatestRecording = NULL; - soap_default_tt__Description(soap, &this->tt__RecordingInformation::Content); - soap_default_std__vectorTemplateOfPointerTott__TrackInformation(soap, &this->tt__RecordingInformation::Track); - soap_default_tt__RecordingStatus(soap, &this->tt__RecordingInformation::RecordingStatus); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingInformation::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingInformation::__anyAttribute); -} - -void tt__RecordingInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__RecordingInformation::RecordingToken); - soap_serialize_PointerTott__RecordingSourceInformation(soap, &this->tt__RecordingInformation::Source); - soap_serialize_PointerToxsd__dateTime(soap, &this->tt__RecordingInformation::EarliestRecording); - soap_serialize_PointerToxsd__dateTime(soap, &this->tt__RecordingInformation::LatestRecording); - soap_embedded(soap, &this->tt__RecordingInformation::Content, SOAP_TYPE_tt__Description); - soap_serialize_tt__Description(soap, &this->tt__RecordingInformation::Content); - soap_serialize_std__vectorTemplateOfPointerTott__TrackInformation(soap, &this->tt__RecordingInformation::Track); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingInformation::__any); -#endif -} - -int tt__RecordingInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingInformation(struct soap *soap, const char *tag, int id, const tt__RecordingInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingInformation), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__RecordingInformation::RecordingToken, "")) - return soap->error; - if (!a->tt__RecordingInformation::Source) - { if (soap_element_empty(soap, "tt:Source", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RecordingSourceInformation(soap, "tt:Source", -1, &a->tt__RecordingInformation::Source, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "tt:EarliestRecording", -1, &a->tt__RecordingInformation::EarliestRecording, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "tt:LatestRecording", -1, &a->tt__RecordingInformation::LatestRecording, "")) - return soap->error; - if (soap_out_tt__Description(soap, "tt:Content", -1, &a->tt__RecordingInformation::Content, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__TrackInformation(soap, "tt:Track", -1, &a->tt__RecordingInformation::Track, "")) - return soap->error; - if (soap_out_tt__RecordingStatus(soap, "tt:RecordingStatus", -1, &a->tt__RecordingInformation::RecordingStatus, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingInformation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingInformation * SOAP_FMAC4 soap_in_tt__RecordingInformation(struct soap *soap, const char *tag, tt__RecordingInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingInformation, sizeof(tt__RecordingInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_Source1 = 1; - size_t soap_flag_EarliestRecording1 = 1; - size_t soap_flag_LatestRecording1 = 1; - size_t soap_flag_Content1 = 1; - size_t soap_flag_RecordingStatus1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__RecordingInformation::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_Source1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingSourceInformation(soap, "tt:Source", &a->tt__RecordingInformation::Source, "tt:RecordingSourceInformation")) - { soap_flag_Source1--; - continue; - } - } - if (soap_flag_EarliestRecording1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "tt:EarliestRecording", &a->tt__RecordingInformation::EarliestRecording, "xsd:dateTime")) - { soap_flag_EarliestRecording1--; - continue; - } - } - if (soap_flag_LatestRecording1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "tt:LatestRecording", &a->tt__RecordingInformation::LatestRecording, "xsd:dateTime")) - { soap_flag_LatestRecording1--; - continue; - } - } - if (soap_flag_Content1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Description(soap, "tt:Content", &a->tt__RecordingInformation::Content, "tt:Description")) - { soap_flag_Content1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__TrackInformation(soap, "tt:Track", &a->tt__RecordingInformation::Track, "tt:TrackInformation")) - continue; - } - if (soap_flag_RecordingStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__RecordingStatus(soap, "tt:RecordingStatus", &a->tt__RecordingInformation::RecordingStatus, "tt:RecordingStatus")) - { soap_flag_RecordingStatus1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingInformation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || !a->tt__RecordingInformation::Source || soap_flag_Content1 > 0 || soap_flag_RecordingStatus1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingInformation, SOAP_TYPE_tt__RecordingInformation, sizeof(tt__RecordingInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingInformation * SOAP_FMAC2 soap_instantiate_tt__RecordingInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingInformation *p; - size_t k = sizeof(tt__RecordingInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingInformation(soap, tag ? tag : "tt:RecordingInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingInformation * SOAP_FMAC4 soap_get_tt__RecordingInformation(struct soap *soap, tt__RecordingInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FindMetadataResult::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__FindMetadataResult::RecordingToken); - soap_default_tt__TrackReference(soap, &this->tt__FindMetadataResult::TrackToken); - soap_default_xsd__dateTime(soap, &this->tt__FindMetadataResult::Time); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FindMetadataResult::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__FindMetadataResult::__anyAttribute); -} - -void tt__FindMetadataResult::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__FindMetadataResult::RecordingToken); - soap_serialize_tt__TrackReference(soap, &this->tt__FindMetadataResult::TrackToken); - soap_embedded(soap, &this->tt__FindMetadataResult::Time, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__FindMetadataResult::Time); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FindMetadataResult::__any); -#endif -} - -int tt__FindMetadataResult::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FindMetadataResult(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindMetadataResult(struct soap *soap, const char *tag, int id, const tt__FindMetadataResult *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FindMetadataResult*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FindMetadataResult), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__FindMetadataResult::RecordingToken, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "tt:TrackToken", -1, &a->tt__FindMetadataResult::TrackToken, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:Time", -1, &a->tt__FindMetadataResult::Time, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FindMetadataResult::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FindMetadataResult::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FindMetadataResult(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FindMetadataResult * SOAP_FMAC4 soap_in_tt__FindMetadataResult(struct soap *soap, const char *tag, tt__FindMetadataResult *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FindMetadataResult*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FindMetadataResult, sizeof(tt__FindMetadataResult), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FindMetadataResult) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FindMetadataResult *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FindMetadataResult*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_TrackToken1 = 1; - size_t soap_flag_Time1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__FindMetadataResult::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "tt:TrackToken", &a->tt__FindMetadataResult::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap_flag_Time1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:Time", &a->tt__FindMetadataResult::Time, "xsd:dateTime")) - { soap_flag_Time1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FindMetadataResult::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_TrackToken1 > 0 || soap_flag_Time1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FindMetadataResult *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FindMetadataResult, SOAP_TYPE_tt__FindMetadataResult, sizeof(tt__FindMetadataResult), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FindMetadataResult * SOAP_FMAC2 soap_instantiate_tt__FindMetadataResult(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FindMetadataResult(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FindMetadataResult *p; - size_t k = sizeof(tt__FindMetadataResult); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FindMetadataResult, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FindMetadataResult); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FindMetadataResult, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FindMetadataResult location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FindMetadataResult::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FindMetadataResult(soap, tag ? tag : "tt:FindMetadataResult", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FindMetadataResult::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FindMetadataResult(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FindMetadataResult * SOAP_FMAC4 soap_get_tt__FindMetadataResult(struct soap *soap, tt__FindMetadataResult *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FindMetadataResult(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FindMetadataResultList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SearchState(soap, &this->tt__FindMetadataResultList::SearchState); - soap_default_std__vectorTemplateOfPointerTott__FindMetadataResult(soap, &this->tt__FindMetadataResultList::Result); -} - -void tt__FindMetadataResultList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__FindMetadataResult(soap, &this->tt__FindMetadataResultList::Result); -#endif -} - -int tt__FindMetadataResultList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FindMetadataResultList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindMetadataResultList(struct soap *soap, const char *tag, int id, const tt__FindMetadataResultList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FindMetadataResultList), type)) - return soap->error; - if (soap_out_tt__SearchState(soap, "tt:SearchState", -1, &a->tt__FindMetadataResultList::SearchState, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__FindMetadataResult(soap, "tt:Result", -1, &a->tt__FindMetadataResultList::Result, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FindMetadataResultList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FindMetadataResultList(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FindMetadataResultList * SOAP_FMAC4 soap_in_tt__FindMetadataResultList(struct soap *soap, const char *tag, tt__FindMetadataResultList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FindMetadataResultList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FindMetadataResultList, sizeof(tt__FindMetadataResultList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FindMetadataResultList) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FindMetadataResultList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SearchState1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SearchState(soap, "tt:SearchState", &a->tt__FindMetadataResultList::SearchState, "tt:SearchState")) - { soap_flag_SearchState1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__FindMetadataResult(soap, "tt:Result", &a->tt__FindMetadataResultList::Result, "tt:FindMetadataResult")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchState1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FindMetadataResultList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FindMetadataResultList, SOAP_TYPE_tt__FindMetadataResultList, sizeof(tt__FindMetadataResultList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FindMetadataResultList * SOAP_FMAC2 soap_instantiate_tt__FindMetadataResultList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FindMetadataResultList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FindMetadataResultList *p; - size_t k = sizeof(tt__FindMetadataResultList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FindMetadataResultList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FindMetadataResultList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FindMetadataResultList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FindMetadataResultList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FindMetadataResultList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FindMetadataResultList(soap, tag ? tag : "tt:FindMetadataResultList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FindMetadataResultList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FindMetadataResultList(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FindMetadataResultList * SOAP_FMAC4 soap_get_tt__FindMetadataResultList(struct soap *soap, tt__FindMetadataResultList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FindMetadataResultList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FindPTZPositionResult::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__FindPTZPositionResult::RecordingToken); - soap_default_tt__TrackReference(soap, &this->tt__FindPTZPositionResult::TrackToken); - soap_default_xsd__dateTime(soap, &this->tt__FindPTZPositionResult::Time); - this->tt__FindPTZPositionResult::Position = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FindPTZPositionResult::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__FindPTZPositionResult::__anyAttribute); -} - -void tt__FindPTZPositionResult::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__FindPTZPositionResult::RecordingToken); - soap_serialize_tt__TrackReference(soap, &this->tt__FindPTZPositionResult::TrackToken); - soap_embedded(soap, &this->tt__FindPTZPositionResult::Time, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__FindPTZPositionResult::Time); - soap_serialize_PointerTott__PTZVector(soap, &this->tt__FindPTZPositionResult::Position); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FindPTZPositionResult::__any); -#endif -} - -int tt__FindPTZPositionResult::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FindPTZPositionResult(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindPTZPositionResult(struct soap *soap, const char *tag, int id, const tt__FindPTZPositionResult *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FindPTZPositionResult*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FindPTZPositionResult), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__FindPTZPositionResult::RecordingToken, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "tt:TrackToken", -1, &a->tt__FindPTZPositionResult::TrackToken, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:Time", -1, &a->tt__FindPTZPositionResult::Time, "")) - return soap->error; - if (!a->tt__FindPTZPositionResult::Position) - { if (soap_element_empty(soap, "tt:Position", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZVector(soap, "tt:Position", -1, &a->tt__FindPTZPositionResult::Position, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FindPTZPositionResult::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FindPTZPositionResult::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FindPTZPositionResult(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FindPTZPositionResult * SOAP_FMAC4 soap_in_tt__FindPTZPositionResult(struct soap *soap, const char *tag, tt__FindPTZPositionResult *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FindPTZPositionResult*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FindPTZPositionResult, sizeof(tt__FindPTZPositionResult), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FindPTZPositionResult) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FindPTZPositionResult *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FindPTZPositionResult*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_TrackToken1 = 1; - size_t soap_flag_Time1 = 1; - size_t soap_flag_Position1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__FindPTZPositionResult::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "tt:TrackToken", &a->tt__FindPTZPositionResult::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap_flag_Time1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:Time", &a->tt__FindPTZPositionResult::Time, "xsd:dateTime")) - { soap_flag_Time1--; - continue; - } - } - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZVector(soap, "tt:Position", &a->tt__FindPTZPositionResult::Position, "tt:PTZVector")) - { soap_flag_Position1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FindPTZPositionResult::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_TrackToken1 > 0 || soap_flag_Time1 > 0 || !a->tt__FindPTZPositionResult::Position)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FindPTZPositionResult *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FindPTZPositionResult, SOAP_TYPE_tt__FindPTZPositionResult, sizeof(tt__FindPTZPositionResult), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FindPTZPositionResult * SOAP_FMAC2 soap_instantiate_tt__FindPTZPositionResult(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FindPTZPositionResult(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FindPTZPositionResult *p; - size_t k = sizeof(tt__FindPTZPositionResult); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FindPTZPositionResult, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FindPTZPositionResult); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FindPTZPositionResult, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FindPTZPositionResult location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FindPTZPositionResult::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FindPTZPositionResult(soap, tag ? tag : "tt:FindPTZPositionResult", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FindPTZPositionResult::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FindPTZPositionResult(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FindPTZPositionResult * SOAP_FMAC4 soap_get_tt__FindPTZPositionResult(struct soap *soap, tt__FindPTZPositionResult *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FindPTZPositionResult(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FindPTZPositionResultList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SearchState(soap, &this->tt__FindPTZPositionResultList::SearchState); - soap_default_std__vectorTemplateOfPointerTott__FindPTZPositionResult(soap, &this->tt__FindPTZPositionResultList::Result); -} - -void tt__FindPTZPositionResultList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__FindPTZPositionResult(soap, &this->tt__FindPTZPositionResultList::Result); -#endif -} - -int tt__FindPTZPositionResultList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FindPTZPositionResultList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindPTZPositionResultList(struct soap *soap, const char *tag, int id, const tt__FindPTZPositionResultList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FindPTZPositionResultList), type)) - return soap->error; - if (soap_out_tt__SearchState(soap, "tt:SearchState", -1, &a->tt__FindPTZPositionResultList::SearchState, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__FindPTZPositionResult(soap, "tt:Result", -1, &a->tt__FindPTZPositionResultList::Result, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FindPTZPositionResultList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FindPTZPositionResultList(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FindPTZPositionResultList * SOAP_FMAC4 soap_in_tt__FindPTZPositionResultList(struct soap *soap, const char *tag, tt__FindPTZPositionResultList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FindPTZPositionResultList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FindPTZPositionResultList, sizeof(tt__FindPTZPositionResultList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FindPTZPositionResultList) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FindPTZPositionResultList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SearchState1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SearchState(soap, "tt:SearchState", &a->tt__FindPTZPositionResultList::SearchState, "tt:SearchState")) - { soap_flag_SearchState1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__FindPTZPositionResult(soap, "tt:Result", &a->tt__FindPTZPositionResultList::Result, "tt:FindPTZPositionResult")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchState1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FindPTZPositionResultList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FindPTZPositionResultList, SOAP_TYPE_tt__FindPTZPositionResultList, sizeof(tt__FindPTZPositionResultList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FindPTZPositionResultList * SOAP_FMAC2 soap_instantiate_tt__FindPTZPositionResultList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FindPTZPositionResultList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FindPTZPositionResultList *p; - size_t k = sizeof(tt__FindPTZPositionResultList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FindPTZPositionResultList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FindPTZPositionResultList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FindPTZPositionResultList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FindPTZPositionResultList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FindPTZPositionResultList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FindPTZPositionResultList(soap, tag ? tag : "tt:FindPTZPositionResultList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FindPTZPositionResultList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FindPTZPositionResultList(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FindPTZPositionResultList * SOAP_FMAC4 soap_get_tt__FindPTZPositionResultList(struct soap *soap, tt__FindPTZPositionResultList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FindPTZPositionResultList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FindEventResult::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RecordingReference(soap, &this->tt__FindEventResult::RecordingToken); - soap_default_tt__TrackReference(soap, &this->tt__FindEventResult::TrackToken); - soap_default_xsd__dateTime(soap, &this->tt__FindEventResult::Time); - this->tt__FindEventResult::Event = NULL; - soap_default_bool(soap, &this->tt__FindEventResult::StartStateEvent); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FindEventResult::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__FindEventResult::__anyAttribute); -} - -void tt__FindEventResult::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__RecordingReference(soap, &this->tt__FindEventResult::RecordingToken); - soap_serialize_tt__TrackReference(soap, &this->tt__FindEventResult::TrackToken); - soap_embedded(soap, &this->tt__FindEventResult::Time, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__FindEventResult::Time); - soap_serialize_PointerTowsnt__NotificationMessageHolderType(soap, &this->tt__FindEventResult::Event); - soap_embedded(soap, &this->tt__FindEventResult::StartStateEvent, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FindEventResult::__any); -#endif -} - -int tt__FindEventResult::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FindEventResult(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindEventResult(struct soap *soap, const char *tag, int id, const tt__FindEventResult *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FindEventResult*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FindEventResult), type)) - return soap->error; - if (soap_out_tt__RecordingReference(soap, "tt:RecordingToken", -1, &a->tt__FindEventResult::RecordingToken, "")) - return soap->error; - if (soap_out_tt__TrackReference(soap, "tt:TrackToken", -1, &a->tt__FindEventResult::TrackToken, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:Time", -1, &a->tt__FindEventResult::Time, "")) - return soap->error; - if (!a->tt__FindEventResult::Event) - { if (soap_element_empty(soap, "tt:Event", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTowsnt__NotificationMessageHolderType(soap, "tt:Event", -1, &a->tt__FindEventResult::Event, "")) - return soap->error; - if (soap_out_bool(soap, "tt:StartStateEvent", -1, &a->tt__FindEventResult::StartStateEvent, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FindEventResult::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FindEventResult::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FindEventResult(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FindEventResult * SOAP_FMAC4 soap_in_tt__FindEventResult(struct soap *soap, const char *tag, tt__FindEventResult *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FindEventResult*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FindEventResult, sizeof(tt__FindEventResult), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FindEventResult) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FindEventResult *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FindEventResult*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingToken1 = 1; - size_t soap_flag_TrackToken1 = 1; - size_t soap_flag_Time1 = 1; - size_t soap_flag_Event1 = 1; - size_t soap_flag_StartStateEvent1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecordingToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__RecordingReference(soap, "tt:RecordingToken", &a->tt__FindEventResult::RecordingToken, "tt:RecordingReference")) - { soap_flag_RecordingToken1--; - continue; - } - } - if (soap_flag_TrackToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__TrackReference(soap, "tt:TrackToken", &a->tt__FindEventResult::TrackToken, "tt:TrackReference")) - { soap_flag_TrackToken1--; - continue; - } - } - if (soap_flag_Time1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:Time", &a->tt__FindEventResult::Time, "xsd:dateTime")) - { soap_flag_Time1--; - continue; - } - } - if (soap_flag_Event1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__NotificationMessageHolderType(soap, "tt:Event", &a->tt__FindEventResult::Event, "wsnt:NotificationMessageHolderType")) - { soap_flag_Event1--; - continue; - } - } - if (soap_flag_StartStateEvent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:StartStateEvent", &a->tt__FindEventResult::StartStateEvent, "xsd:boolean")) - { soap_flag_StartStateEvent1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FindEventResult::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_RecordingToken1 > 0 || soap_flag_TrackToken1 > 0 || soap_flag_Time1 > 0 || !a->tt__FindEventResult::Event || soap_flag_StartStateEvent1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FindEventResult *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FindEventResult, SOAP_TYPE_tt__FindEventResult, sizeof(tt__FindEventResult), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FindEventResult * SOAP_FMAC2 soap_instantiate_tt__FindEventResult(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FindEventResult(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FindEventResult *p; - size_t k = sizeof(tt__FindEventResult); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FindEventResult, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FindEventResult); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FindEventResult, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FindEventResult location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FindEventResult::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FindEventResult(soap, tag ? tag : "tt:FindEventResult", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FindEventResult::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FindEventResult(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FindEventResult * SOAP_FMAC4 soap_get_tt__FindEventResult(struct soap *soap, tt__FindEventResult *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FindEventResult(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FindEventResultList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SearchState(soap, &this->tt__FindEventResultList::SearchState); - soap_default_std__vectorTemplateOfPointerTott__FindEventResult(soap, &this->tt__FindEventResultList::Result); -} - -void tt__FindEventResultList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__FindEventResult(soap, &this->tt__FindEventResultList::Result); -#endif -} - -int tt__FindEventResultList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FindEventResultList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindEventResultList(struct soap *soap, const char *tag, int id, const tt__FindEventResultList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FindEventResultList), type)) - return soap->error; - if (soap_out_tt__SearchState(soap, "tt:SearchState", -1, &a->tt__FindEventResultList::SearchState, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__FindEventResult(soap, "tt:Result", -1, &a->tt__FindEventResultList::Result, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FindEventResultList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FindEventResultList(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FindEventResultList * SOAP_FMAC4 soap_in_tt__FindEventResultList(struct soap *soap, const char *tag, tt__FindEventResultList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FindEventResultList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FindEventResultList, sizeof(tt__FindEventResultList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FindEventResultList) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FindEventResultList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SearchState1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SearchState(soap, "tt:SearchState", &a->tt__FindEventResultList::SearchState, "tt:SearchState")) - { soap_flag_SearchState1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__FindEventResult(soap, "tt:Result", &a->tt__FindEventResultList::Result, "tt:FindEventResult")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchState1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FindEventResultList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FindEventResultList, SOAP_TYPE_tt__FindEventResultList, sizeof(tt__FindEventResultList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FindEventResultList * SOAP_FMAC2 soap_instantiate_tt__FindEventResultList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FindEventResultList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FindEventResultList *p; - size_t k = sizeof(tt__FindEventResultList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FindEventResultList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FindEventResultList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FindEventResultList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FindEventResultList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FindEventResultList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FindEventResultList(soap, tag ? tag : "tt:FindEventResultList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FindEventResultList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FindEventResultList(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FindEventResultList * SOAP_FMAC4 soap_get_tt__FindEventResultList(struct soap *soap, tt__FindEventResultList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FindEventResultList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FindRecordingResultList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SearchState(soap, &this->tt__FindRecordingResultList::SearchState); - soap_default_std__vectorTemplateOfPointerTott__RecordingInformation(soap, &this->tt__FindRecordingResultList::RecordingInformation); -} - -void tt__FindRecordingResultList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__RecordingInformation(soap, &this->tt__FindRecordingResultList::RecordingInformation); -#endif -} - -int tt__FindRecordingResultList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FindRecordingResultList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindRecordingResultList(struct soap *soap, const char *tag, int id, const tt__FindRecordingResultList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FindRecordingResultList), type)) - return soap->error; - if (soap_out_tt__SearchState(soap, "tt:SearchState", -1, &a->tt__FindRecordingResultList::SearchState, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__RecordingInformation(soap, "tt:RecordingInformation", -1, &a->tt__FindRecordingResultList::RecordingInformation, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FindRecordingResultList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FindRecordingResultList(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FindRecordingResultList * SOAP_FMAC4 soap_in_tt__FindRecordingResultList(struct soap *soap, const char *tag, tt__FindRecordingResultList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FindRecordingResultList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FindRecordingResultList, sizeof(tt__FindRecordingResultList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FindRecordingResultList) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FindRecordingResultList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SearchState1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SearchState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SearchState(soap, "tt:SearchState", &a->tt__FindRecordingResultList::SearchState, "tt:SearchState")) - { soap_flag_SearchState1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__RecordingInformation(soap, "tt:RecordingInformation", &a->tt__FindRecordingResultList::RecordingInformation, "tt:RecordingInformation")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SearchState1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FindRecordingResultList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FindRecordingResultList, SOAP_TYPE_tt__FindRecordingResultList, sizeof(tt__FindRecordingResultList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FindRecordingResultList * SOAP_FMAC2 soap_instantiate_tt__FindRecordingResultList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FindRecordingResultList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FindRecordingResultList *p; - size_t k = sizeof(tt__FindRecordingResultList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FindRecordingResultList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FindRecordingResultList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FindRecordingResultList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FindRecordingResultList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FindRecordingResultList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FindRecordingResultList(soap, tag ? tag : "tt:FindRecordingResultList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FindRecordingResultList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FindRecordingResultList(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FindRecordingResultList * SOAP_FMAC4 soap_get_tt__FindRecordingResultList(struct soap *soap, tt__FindRecordingResultList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FindRecordingResultList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__XPathExpression(soap, &this->tt__MetadataFilter::MetadataStreamFilter); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataFilter::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__MetadataFilter::__anyAttribute); -} - -void tt__MetadataFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__MetadataFilter::MetadataStreamFilter, SOAP_TYPE_tt__XPathExpression); - soap_serialize_tt__XPathExpression(soap, &this->tt__MetadataFilter::MetadataStreamFilter); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataFilter::__any); -#endif -} - -int tt__MetadataFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataFilter(struct soap *soap, const char *tag, int id, const tt__MetadataFilter *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MetadataFilter*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataFilter), type)) - return soap->error; - if (soap_out_tt__XPathExpression(soap, "tt:MetadataStreamFilter", -1, &a->tt__MetadataFilter::MetadataStreamFilter, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MetadataFilter::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataFilter(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataFilter * SOAP_FMAC4 soap_in_tt__MetadataFilter(struct soap *soap, const char *tag, tt__MetadataFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataFilter, sizeof(tt__MetadataFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MetadataFilter*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MetadataStreamFilter1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MetadataStreamFilter1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__XPathExpression(soap, "tt:MetadataStreamFilter", &a->tt__MetadataFilter::MetadataStreamFilter, "tt:XPathExpression")) - { soap_flag_MetadataStreamFilter1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MetadataFilter::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_MetadataStreamFilter1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MetadataFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataFilter, SOAP_TYPE_tt__MetadataFilter, sizeof(tt__MetadataFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataFilter * SOAP_FMAC2 soap_instantiate_tt__MetadataFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataFilter *p; - size_t k = sizeof(tt__MetadataFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataFilter(soap, tag ? tag : "tt:MetadataFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataFilter(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataFilter * SOAP_FMAC4 soap_get_tt__MetadataFilter(struct soap *soap, tt__MetadataFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPositionFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZPositionFilter::MinPosition = NULL; - this->tt__PTZPositionFilter::MaxPosition = NULL; - soap_default_bool(soap, &this->tt__PTZPositionFilter::EnterOrExit); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPositionFilter::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPositionFilter::__anyAttribute); -} - -void tt__PTZPositionFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZVector(soap, &this->tt__PTZPositionFilter::MinPosition); - soap_serialize_PointerTott__PTZVector(soap, &this->tt__PTZPositionFilter::MaxPosition); - soap_embedded(soap, &this->tt__PTZPositionFilter::EnterOrExit, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPositionFilter::__any); -#endif -} - -int tt__PTZPositionFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPositionFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPositionFilter(struct soap *soap, const char *tag, int id, const tt__PTZPositionFilter *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPositionFilter*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPositionFilter), type)) - return soap->error; - if (!a->tt__PTZPositionFilter::MinPosition) - { if (soap_element_empty(soap, "tt:MinPosition", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZVector(soap, "tt:MinPosition", -1, &a->tt__PTZPositionFilter::MinPosition, "")) - return soap->error; - if (!a->tt__PTZPositionFilter::MaxPosition) - { if (soap_element_empty(soap, "tt:MaxPosition", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZVector(soap, "tt:MaxPosition", -1, &a->tt__PTZPositionFilter::MaxPosition, "")) - return soap->error; - if (soap_out_bool(soap, "tt:EnterOrExit", -1, &a->tt__PTZPositionFilter::EnterOrExit, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPositionFilter::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPositionFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPositionFilter(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPositionFilter * SOAP_FMAC4 soap_in_tt__PTZPositionFilter(struct soap *soap, const char *tag, tt__PTZPositionFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPositionFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPositionFilter, sizeof(tt__PTZPositionFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPositionFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPositionFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPositionFilter*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MinPosition1 = 1; - size_t soap_flag_MaxPosition1 = 1; - size_t soap_flag_EnterOrExit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MinPosition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZVector(soap, "tt:MinPosition", &a->tt__PTZPositionFilter::MinPosition, "tt:PTZVector")) - { soap_flag_MinPosition1--; - continue; - } - } - if (soap_flag_MaxPosition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZVector(soap, "tt:MaxPosition", &a->tt__PTZPositionFilter::MaxPosition, "tt:PTZVector")) - { soap_flag_MaxPosition1--; - continue; - } - } - if (soap_flag_EnterOrExit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:EnterOrExit", &a->tt__PTZPositionFilter::EnterOrExit, "xsd:boolean")) - { soap_flag_EnterOrExit1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPositionFilter::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PTZPositionFilter::MinPosition || !a->tt__PTZPositionFilter::MaxPosition || soap_flag_EnterOrExit1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZPositionFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPositionFilter, SOAP_TYPE_tt__PTZPositionFilter, sizeof(tt__PTZPositionFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPositionFilter * SOAP_FMAC2 soap_instantiate_tt__PTZPositionFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPositionFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPositionFilter *p; - size_t k = sizeof(tt__PTZPositionFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPositionFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPositionFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPositionFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPositionFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPositionFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPositionFilter(soap, tag ? tag : "tt:PTZPositionFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPositionFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPositionFilter(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPositionFilter * SOAP_FMAC4 soap_get_tt__PTZPositionFilter(struct soap *soap, tt__PTZPositionFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPositionFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EventFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsnt__FilterType::soap_default(soap); - soap_default_xsd__anyAttribute(soap, &this->tt__EventFilter::__anyAttribute); -} - -void tt__EventFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsnt__FilterType::soap_serialize(soap); -#endif -} - -int tt__EventFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EventFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EventFilter(struct soap *soap, const char *tag, int id, const tt__EventFilter *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__EventFilter*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EventFilter), type ? type : "tt:EventFilter")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsnt__FilterType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EventFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EventFilter(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EventFilter * SOAP_FMAC4 soap_in_tt__EventFilter(struct soap *soap, const char *tag, tt__EventFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EventFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EventFilter, sizeof(tt__EventFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EventFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EventFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__EventFilter*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsnt__FilterType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__EventFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EventFilter, SOAP_TYPE_tt__EventFilter, sizeof(tt__EventFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EventFilter * SOAP_FMAC2 soap_instantiate_tt__EventFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EventFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EventFilter *p; - size_t k = sizeof(tt__EventFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EventFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EventFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EventFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EventFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EventFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EventFilter(soap, tag ? tag : "tt:EventFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EventFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EventFilter(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EventFilter * SOAP_FMAC4 soap_get_tt__EventFilter(struct soap *soap, tt__EventFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EventFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SearchScopeExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SearchScopeExtension::__any); -} - -void tt__SearchScopeExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SearchScopeExtension::__any); -#endif -} - -int tt__SearchScopeExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SearchScopeExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchScopeExtension(struct soap *soap, const char *tag, int id, const tt__SearchScopeExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SearchScopeExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SearchScopeExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SearchScopeExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SearchScopeExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SearchScopeExtension * SOAP_FMAC4 soap_in_tt__SearchScopeExtension(struct soap *soap, const char *tag, tt__SearchScopeExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SearchScopeExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SearchScopeExtension, sizeof(tt__SearchScopeExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SearchScopeExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SearchScopeExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SearchScopeExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SearchScopeExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SearchScopeExtension, SOAP_TYPE_tt__SearchScopeExtension, sizeof(tt__SearchScopeExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SearchScopeExtension * SOAP_FMAC2 soap_instantiate_tt__SearchScopeExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SearchScopeExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SearchScopeExtension *p; - size_t k = sizeof(tt__SearchScopeExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SearchScopeExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SearchScopeExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SearchScopeExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SearchScopeExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SearchScopeExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SearchScopeExtension(soap, tag ? tag : "tt:SearchScopeExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SearchScopeExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SearchScopeExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SearchScopeExtension * SOAP_FMAC4 soap_get_tt__SearchScopeExtension(struct soap *soap, tt__SearchScopeExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SearchScopeExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SearchScope::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__SourceReference(soap, &this->tt__SearchScope::IncludedSources); - soap_default_std__vectorTemplateOftt__RecordingReference(soap, &this->tt__SearchScope::IncludedRecordings); - this->tt__SearchScope::RecordingInformationFilter = NULL; - this->tt__SearchScope::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__SearchScope::__anyAttribute); -} - -void tt__SearchScope::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__SourceReference(soap, &this->tt__SearchScope::IncludedSources); - soap_serialize_std__vectorTemplateOftt__RecordingReference(soap, &this->tt__SearchScope::IncludedRecordings); - soap_serialize_PointerTott__XPathExpression(soap, &this->tt__SearchScope::RecordingInformationFilter); - soap_serialize_PointerTott__SearchScopeExtension(soap, &this->tt__SearchScope::Extension); -#endif -} - -int tt__SearchScope::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SearchScope(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchScope(struct soap *soap, const char *tag, int id, const tt__SearchScope *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SearchScope*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SearchScope), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__SourceReference(soap, "tt:IncludedSources", -1, &a->tt__SearchScope::IncludedSources, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__RecordingReference(soap, "tt:IncludedRecordings", -1, &a->tt__SearchScope::IncludedRecordings, "")) - return soap->error; - if (soap_out_PointerTott__XPathExpression(soap, "tt:RecordingInformationFilter", -1, &a->tt__SearchScope::RecordingInformationFilter, "")) - return soap->error; - if (soap_out_PointerTott__SearchScopeExtension(soap, "tt:Extension", -1, &a->tt__SearchScope::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SearchScope::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SearchScope(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SearchScope * SOAP_FMAC4 soap_in_tt__SearchScope(struct soap *soap, const char *tag, tt__SearchScope *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SearchScope*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SearchScope, sizeof(tt__SearchScope), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SearchScope) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SearchScope *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SearchScope*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecordingInformationFilter1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__SourceReference(soap, "tt:IncludedSources", &a->tt__SearchScope::IncludedSources, "tt:SourceReference")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__RecordingReference(soap, "tt:IncludedRecordings", &a->tt__SearchScope::IncludedRecordings, "tt:RecordingReference")) - continue; - } - if (soap_flag_RecordingInformationFilter1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__XPathExpression(soap, "tt:RecordingInformationFilter", &a->tt__SearchScope::RecordingInformationFilter, "tt:XPathExpression")) - { soap_flag_RecordingInformationFilter1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SearchScopeExtension(soap, "tt:Extension", &a->tt__SearchScope::Extension, "tt:SearchScopeExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SearchScope *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SearchScope, SOAP_TYPE_tt__SearchScope, sizeof(tt__SearchScope), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SearchScope * SOAP_FMAC2 soap_instantiate_tt__SearchScope(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SearchScope(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SearchScope *p; - size_t k = sizeof(tt__SearchScope); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SearchScope, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SearchScope); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SearchScope, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SearchScope location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SearchScope::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SearchScope(soap, tag ? tag : "tt:SearchScope", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SearchScope::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SearchScope(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SearchScope * SOAP_FMAC4 soap_get_tt__SearchScope(struct soap *soap, tt__SearchScope *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SearchScope(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingSummary::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->tt__RecordingSummary::DataFrom); - soap_default_xsd__dateTime(soap, &this->tt__RecordingSummary::DataUntil); - soap_default_int(soap, &this->tt__RecordingSummary::NumberRecordings); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingSummary::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingSummary::__anyAttribute); -} - -void tt__RecordingSummary::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RecordingSummary::DataFrom, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__RecordingSummary::DataFrom); - soap_embedded(soap, &this->tt__RecordingSummary::DataUntil, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__RecordingSummary::DataUntil); - soap_embedded(soap, &this->tt__RecordingSummary::NumberRecordings, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingSummary::__any); -#endif -} - -int tt__RecordingSummary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingSummary(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingSummary(struct soap *soap, const char *tag, int id, const tt__RecordingSummary *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingSummary*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingSummary), type)) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:DataFrom", -1, &a->tt__RecordingSummary::DataFrom, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:DataUntil", -1, &a->tt__RecordingSummary::DataUntil, "")) - return soap->error; - if (soap_out_int(soap, "tt:NumberRecordings", -1, &a->tt__RecordingSummary::NumberRecordings, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingSummary::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingSummary::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingSummary(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingSummary * SOAP_FMAC4 soap_in_tt__RecordingSummary(struct soap *soap, const char *tag, tt__RecordingSummary *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingSummary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingSummary, sizeof(tt__RecordingSummary), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingSummary) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingSummary *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingSummary*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DataFrom1 = 1; - size_t soap_flag_DataUntil1 = 1; - size_t soap_flag_NumberRecordings1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DataFrom1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:DataFrom", &a->tt__RecordingSummary::DataFrom, "xsd:dateTime")) - { soap_flag_DataFrom1--; - continue; - } - } - if (soap_flag_DataUntil1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:DataUntil", &a->tt__RecordingSummary::DataUntil, "xsd:dateTime")) - { soap_flag_DataUntil1--; - continue; - } - } - if (soap_flag_NumberRecordings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:NumberRecordings", &a->tt__RecordingSummary::NumberRecordings, "xsd:int")) - { soap_flag_NumberRecordings1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingSummary::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DataFrom1 > 0 || soap_flag_DataUntil1 > 0 || soap_flag_NumberRecordings1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingSummary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingSummary, SOAP_TYPE_tt__RecordingSummary, sizeof(tt__RecordingSummary), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingSummary * SOAP_FMAC2 soap_instantiate_tt__RecordingSummary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingSummary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingSummary *p; - size_t k = sizeof(tt__RecordingSummary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingSummary, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingSummary); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingSummary, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingSummary location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingSummary::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingSummary(soap, tag ? tag : "tt:RecordingSummary", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingSummary::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingSummary(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingSummary * SOAP_FMAC4 soap_get_tt__RecordingSummary(struct soap *soap, tt__RecordingSummary *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingSummary(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DateTimeRange::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->tt__DateTimeRange::From); - soap_default_xsd__dateTime(soap, &this->tt__DateTimeRange::Until); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DateTimeRange::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__DateTimeRange::__anyAttribute); -} - -void tt__DateTimeRange::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DateTimeRange::From, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__DateTimeRange::From); - soap_embedded(soap, &this->tt__DateTimeRange::Until, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__DateTimeRange::Until); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DateTimeRange::__any); -#endif -} - -int tt__DateTimeRange::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DateTimeRange(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DateTimeRange(struct soap *soap, const char *tag, int id, const tt__DateTimeRange *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DateTimeRange*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DateTimeRange), type)) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:From", -1, &a->tt__DateTimeRange::From, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:Until", -1, &a->tt__DateTimeRange::Until, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DateTimeRange::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DateTimeRange::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DateTimeRange(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DateTimeRange * SOAP_FMAC4 soap_in_tt__DateTimeRange(struct soap *soap, const char *tag, tt__DateTimeRange *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DateTimeRange*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DateTimeRange, sizeof(tt__DateTimeRange), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DateTimeRange) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DateTimeRange *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DateTimeRange*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_From1 = 1; - size_t soap_flag_Until1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_From1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:From", &a->tt__DateTimeRange::From, "xsd:dateTime")) - { soap_flag_From1--; - continue; - } - } - if (soap_flag_Until1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:Until", &a->tt__DateTimeRange::Until, "xsd:dateTime")) - { soap_flag_Until1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DateTimeRange::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_From1 > 0 || soap_flag_Until1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DateTimeRange *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DateTimeRange, SOAP_TYPE_tt__DateTimeRange, sizeof(tt__DateTimeRange), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DateTimeRange * SOAP_FMAC2 soap_instantiate_tt__DateTimeRange(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DateTimeRange(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DateTimeRange *p; - size_t k = sizeof(tt__DateTimeRange); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DateTimeRange, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DateTimeRange); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DateTimeRange, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DateTimeRange location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DateTimeRange::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DateTimeRange(soap, tag ? tag : "tt:DateTimeRange", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DateTimeRange::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DateTimeRange(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DateTimeRange * SOAP_FMAC4 soap_get_tt__DateTimeRange(struct soap *soap, tt__DateTimeRange *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DateTimeRange(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SourceReference::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__SourceReference::Token); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SourceReference::__any); - this->tt__SourceReference::Type = "http://www.onvif.org/ver10/schema/Receiver"; - soap_default_xsd__anyAttribute(soap, &this->tt__SourceReference::__anyAttribute); -} - -void tt__SourceReference::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SourceReference::Token, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__SourceReference::Token); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SourceReference::__any); -#endif -} - -int tt__SourceReference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SourceReference(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SourceReference(struct soap *soap, const char *tag, int id, const tt__SourceReference *a, const char *type) -{ - if (((tt__SourceReference*)a)->Type != "http://www.onvif.org/ver10/schema/Receiver") - { soap_set_attr(soap, "Type", soap_xsd__anyURI2s(soap, ((tt__SourceReference*)a)->Type), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SourceReference*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SourceReference), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:Token", -1, &a->tt__SourceReference::Token, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SourceReference::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SourceReference::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SourceReference(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SourceReference * SOAP_FMAC4 soap_in_tt__SourceReference(struct soap *soap, const char *tag, tt__SourceReference *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SourceReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SourceReference, sizeof(tt__SourceReference), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SourceReference) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SourceReference *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__anyURI(soap, soap_attr_value(soap, "Type", 4, 0), &((tt__SourceReference*)a)->Type)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SourceReference*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Token1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:Token", &a->tt__SourceReference::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SourceReference::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Token1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SourceReference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SourceReference, SOAP_TYPE_tt__SourceReference, sizeof(tt__SourceReference), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SourceReference * SOAP_FMAC2 soap_instantiate_tt__SourceReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SourceReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SourceReference *p; - size_t k = sizeof(tt__SourceReference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SourceReference, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SourceReference); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SourceReference, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SourceReference location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SourceReference::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SourceReference(soap, tag ? tag : "tt:SourceReference", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SourceReference::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SourceReference(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SourceReference * SOAP_FMAC4 soap_get_tt__SourceReference(struct soap *soap, tt__SourceReference *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SourceReference(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReceiverStateInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReceiverState(soap, &this->tt__ReceiverStateInformation::State); - soap_default_bool(soap, &this->tt__ReceiverStateInformation::AutoCreated); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReceiverStateInformation::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ReceiverStateInformation::__anyAttribute); -} - -void tt__ReceiverStateInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ReceiverStateInformation::AutoCreated, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReceiverStateInformation::__any); -#endif -} - -int tt__ReceiverStateInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReceiverStateInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverStateInformation(struct soap *soap, const char *tag, int id, const tt__ReceiverStateInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ReceiverStateInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReceiverStateInformation), type)) - return soap->error; - if (soap_out_tt__ReceiverState(soap, "tt:State", -1, &a->tt__ReceiverStateInformation::State, "")) - return soap->error; - if (soap_out_bool(soap, "tt:AutoCreated", -1, &a->tt__ReceiverStateInformation::AutoCreated, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ReceiverStateInformation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ReceiverStateInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReceiverStateInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReceiverStateInformation * SOAP_FMAC4 soap_in_tt__ReceiverStateInformation(struct soap *soap, const char *tag, tt__ReceiverStateInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ReceiverStateInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverStateInformation, sizeof(tt__ReceiverStateInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReceiverStateInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ReceiverStateInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ReceiverStateInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_State1 = 1; - size_t soap_flag_AutoCreated1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_State1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ReceiverState(soap, "tt:State", &a->tt__ReceiverStateInformation::State, "tt:ReceiverState")) - { soap_flag_State1--; - continue; - } - } - if (soap_flag_AutoCreated1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AutoCreated", &a->tt__ReceiverStateInformation::AutoCreated, "xsd:boolean")) - { soap_flag_AutoCreated1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ReceiverStateInformation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_State1 > 0 || soap_flag_AutoCreated1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ReceiverStateInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReceiverStateInformation, SOAP_TYPE_tt__ReceiverStateInformation, sizeof(tt__ReceiverStateInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ReceiverStateInformation * SOAP_FMAC2 soap_instantiate_tt__ReceiverStateInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReceiverStateInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReceiverStateInformation *p; - size_t k = sizeof(tt__ReceiverStateInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReceiverStateInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReceiverStateInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReceiverStateInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReceiverStateInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReceiverStateInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReceiverStateInformation(soap, tag ? tag : "tt:ReceiverStateInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReceiverStateInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReceiverStateInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReceiverStateInformation * SOAP_FMAC4 soap_get_tt__ReceiverStateInformation(struct soap *soap, tt__ReceiverStateInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverStateInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReceiverConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReceiverMode(soap, &this->tt__ReceiverConfiguration::Mode); - soap_default_xsd__anyURI(soap, &this->tt__ReceiverConfiguration::MediaUri); - this->tt__ReceiverConfiguration::StreamSetup = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReceiverConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ReceiverConfiguration::__anyAttribute); -} - -void tt__ReceiverConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ReceiverConfiguration::MediaUri, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__ReceiverConfiguration::MediaUri); - soap_serialize_PointerTott__StreamSetup(soap, &this->tt__ReceiverConfiguration::StreamSetup); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReceiverConfiguration::__any); -#endif -} - -int tt__ReceiverConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReceiverConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverConfiguration(struct soap *soap, const char *tag, int id, const tt__ReceiverConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ReceiverConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReceiverConfiguration), type)) - return soap->error; - if (soap_out_tt__ReceiverMode(soap, "tt:Mode", -1, &a->tt__ReceiverConfiguration::Mode, "")) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:MediaUri", -1, &a->tt__ReceiverConfiguration::MediaUri, "")) - return soap->error; - if (!a->tt__ReceiverConfiguration::StreamSetup) - { if (soap_element_empty(soap, "tt:StreamSetup", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__StreamSetup(soap, "tt:StreamSetup", -1, &a->tt__ReceiverConfiguration::StreamSetup, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ReceiverConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ReceiverConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReceiverConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReceiverConfiguration * SOAP_FMAC4 soap_in_tt__ReceiverConfiguration(struct soap *soap, const char *tag, tt__ReceiverConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ReceiverConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverConfiguration, sizeof(tt__ReceiverConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReceiverConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ReceiverConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ReceiverConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_MediaUri1 = 1; - size_t soap_flag_StreamSetup1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ReceiverMode(soap, "tt:Mode", &a->tt__ReceiverConfiguration::Mode, "tt:ReceiverMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_MediaUri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:MediaUri", &a->tt__ReceiverConfiguration::MediaUri, "xsd:anyURI")) - { soap_flag_MediaUri1--; - continue; - } - } - if (soap_flag_StreamSetup1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__StreamSetup(soap, "tt:StreamSetup", &a->tt__ReceiverConfiguration::StreamSetup, "tt:StreamSetup")) - { soap_flag_StreamSetup1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ReceiverConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0 || soap_flag_MediaUri1 > 0 || !a->tt__ReceiverConfiguration::StreamSetup)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ReceiverConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReceiverConfiguration, SOAP_TYPE_tt__ReceiverConfiguration, sizeof(tt__ReceiverConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ReceiverConfiguration * SOAP_FMAC2 soap_instantiate_tt__ReceiverConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReceiverConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReceiverConfiguration *p; - size_t k = sizeof(tt__ReceiverConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReceiverConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReceiverConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReceiverConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReceiverConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReceiverConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReceiverConfiguration(soap, tag ? tag : "tt:ReceiverConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReceiverConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReceiverConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReceiverConfiguration * SOAP_FMAC4 soap_get_tt__ReceiverConfiguration(struct soap *soap, tt__ReceiverConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Receiver::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__Receiver::Token); - this->tt__Receiver::Configuration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Receiver::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Receiver::__anyAttribute); -} - -void tt__Receiver::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Receiver::Token, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__Receiver::Token); - soap_serialize_PointerTott__ReceiverConfiguration(soap, &this->tt__Receiver::Configuration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Receiver::__any); -#endif -} - -int tt__Receiver::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Receiver(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Receiver(struct soap *soap, const char *tag, int id, const tt__Receiver *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Receiver*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Receiver), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:Token", -1, &a->tt__Receiver::Token, "")) - return soap->error; - if (!a->tt__Receiver::Configuration) - { if (soap_element_empty(soap, "tt:Configuration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ReceiverConfiguration(soap, "tt:Configuration", -1, &a->tt__Receiver::Configuration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Receiver::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Receiver::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Receiver(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Receiver * SOAP_FMAC4 soap_in_tt__Receiver(struct soap *soap, const char *tag, tt__Receiver *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Receiver*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Receiver, sizeof(tt__Receiver), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Receiver) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Receiver *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Receiver*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Token1 = 1; - size_t soap_flag_Configuration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:Token", &a->tt__Receiver::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - if (soap_flag_Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReceiverConfiguration(soap, "tt:Configuration", &a->tt__Receiver::Configuration, "tt:ReceiverConfiguration")) - { soap_flag_Configuration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Receiver::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Token1 > 0 || !a->tt__Receiver::Configuration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Receiver *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Receiver, SOAP_TYPE_tt__Receiver, sizeof(tt__Receiver), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Receiver * SOAP_FMAC2 soap_instantiate_tt__Receiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Receiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Receiver *p; - size_t k = sizeof(tt__Receiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Receiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Receiver); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Receiver, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Receiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Receiver::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Receiver(soap, tag ? tag : "tt:Receiver", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Receiver::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Receiver(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Receiver * SOAP_FMAC4 soap_get_tt__Receiver(struct soap *soap, tt__Receiver *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Receiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PaneOptionExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PaneOptionExtension::__any); -} - -void tt__PaneOptionExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PaneOptionExtension::__any); -#endif -} - -int tt__PaneOptionExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PaneOptionExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneOptionExtension(struct soap *soap, const char *tag, int id, const tt__PaneOptionExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PaneOptionExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PaneOptionExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PaneOptionExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PaneOptionExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PaneOptionExtension * SOAP_FMAC4 soap_in_tt__PaneOptionExtension(struct soap *soap, const char *tag, tt__PaneOptionExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PaneOptionExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PaneOptionExtension, sizeof(tt__PaneOptionExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PaneOptionExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PaneOptionExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PaneOptionExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PaneOptionExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PaneOptionExtension, SOAP_TYPE_tt__PaneOptionExtension, sizeof(tt__PaneOptionExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PaneOptionExtension * SOAP_FMAC2 soap_instantiate_tt__PaneOptionExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PaneOptionExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PaneOptionExtension *p; - size_t k = sizeof(tt__PaneOptionExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PaneOptionExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PaneOptionExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PaneOptionExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PaneOptionExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PaneOptionExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PaneOptionExtension(soap, tag ? tag : "tt:PaneOptionExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PaneOptionExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PaneOptionExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PaneOptionExtension * SOAP_FMAC4 soap_get_tt__PaneOptionExtension(struct soap *soap, tt__PaneOptionExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PaneOptionExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PaneLayoutOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Rectangle(soap, &this->tt__PaneLayoutOptions::Area); - this->tt__PaneLayoutOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PaneLayoutOptions::__anyAttribute); -} - -void tt__PaneLayoutOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Rectangle(soap, &this->tt__PaneLayoutOptions::Area); - soap_serialize_PointerTott__PaneOptionExtension(soap, &this->tt__PaneLayoutOptions::Extension); -#endif -} - -int tt__PaneLayoutOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PaneLayoutOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneLayoutOptions(struct soap *soap, const char *tag, int id, const tt__PaneLayoutOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PaneLayoutOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PaneLayoutOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Rectangle(soap, "tt:Area", -1, &a->tt__PaneLayoutOptions::Area, "")) - return soap->error; - if (soap_out_PointerTott__PaneOptionExtension(soap, "tt:Extension", -1, &a->tt__PaneLayoutOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PaneLayoutOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PaneLayoutOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PaneLayoutOptions * SOAP_FMAC4 soap_in_tt__PaneLayoutOptions(struct soap *soap, const char *tag, tt__PaneLayoutOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PaneLayoutOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PaneLayoutOptions, sizeof(tt__PaneLayoutOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PaneLayoutOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PaneLayoutOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PaneLayoutOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Rectangle(soap, "tt:Area", &a->tt__PaneLayoutOptions::Area, "tt:Rectangle")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PaneOptionExtension(soap, "tt:Extension", &a->tt__PaneLayoutOptions::Extension, "tt:PaneOptionExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__PaneLayoutOptions::Area.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PaneLayoutOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PaneLayoutOptions, SOAP_TYPE_tt__PaneLayoutOptions, sizeof(tt__PaneLayoutOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PaneLayoutOptions * SOAP_FMAC2 soap_instantiate_tt__PaneLayoutOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PaneLayoutOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PaneLayoutOptions *p; - size_t k = sizeof(tt__PaneLayoutOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PaneLayoutOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PaneLayoutOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PaneLayoutOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PaneLayoutOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PaneLayoutOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PaneLayoutOptions(soap, tag ? tag : "tt:PaneLayoutOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PaneLayoutOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PaneLayoutOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PaneLayoutOptions * SOAP_FMAC4 soap_get_tt__PaneLayoutOptions(struct soap *soap, tt__PaneLayoutOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PaneLayoutOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LayoutOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LayoutOptionsExtension::__any); -} - -void tt__LayoutOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LayoutOptionsExtension::__any); -#endif -} - -int tt__LayoutOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LayoutOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LayoutOptionsExtension(struct soap *soap, const char *tag, int id, const tt__LayoutOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LayoutOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__LayoutOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LayoutOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LayoutOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LayoutOptionsExtension * SOAP_FMAC4 soap_in_tt__LayoutOptionsExtension(struct soap *soap, const char *tag, tt__LayoutOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LayoutOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LayoutOptionsExtension, sizeof(tt__LayoutOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LayoutOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LayoutOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__LayoutOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__LayoutOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LayoutOptionsExtension, SOAP_TYPE_tt__LayoutOptionsExtension, sizeof(tt__LayoutOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LayoutOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__LayoutOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LayoutOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LayoutOptionsExtension *p; - size_t k = sizeof(tt__LayoutOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LayoutOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LayoutOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LayoutOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LayoutOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LayoutOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LayoutOptionsExtension(soap, tag ? tag : "tt:LayoutOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LayoutOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LayoutOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LayoutOptionsExtension * SOAP_FMAC4 soap_get_tt__LayoutOptionsExtension(struct soap *soap, tt__LayoutOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LayoutOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LayoutOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PaneLayoutOptions(soap, &this->tt__LayoutOptions::PaneLayoutOptions); - this->tt__LayoutOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__LayoutOptions::__anyAttribute); -} - -void tt__LayoutOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PaneLayoutOptions(soap, &this->tt__LayoutOptions::PaneLayoutOptions); - soap_serialize_PointerTott__LayoutOptionsExtension(soap, &this->tt__LayoutOptions::Extension); -#endif -} - -int tt__LayoutOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LayoutOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LayoutOptions(struct soap *soap, const char *tag, int id, const tt__LayoutOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__LayoutOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LayoutOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PaneLayoutOptions(soap, "tt:PaneLayoutOptions", -1, &a->tt__LayoutOptions::PaneLayoutOptions, "")) - return soap->error; - if (soap_out_PointerTott__LayoutOptionsExtension(soap, "tt:Extension", -1, &a->tt__LayoutOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LayoutOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LayoutOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LayoutOptions * SOAP_FMAC4 soap_in_tt__LayoutOptions(struct soap *soap, const char *tag, tt__LayoutOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LayoutOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LayoutOptions, sizeof(tt__LayoutOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LayoutOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LayoutOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__LayoutOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PaneLayoutOptions(soap, "tt:PaneLayoutOptions", &a->tt__LayoutOptions::PaneLayoutOptions, "tt:PaneLayoutOptions")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__LayoutOptionsExtension(soap, "tt:Extension", &a->tt__LayoutOptions::Extension, "tt:LayoutOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__LayoutOptions::PaneLayoutOptions.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__LayoutOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LayoutOptions, SOAP_TYPE_tt__LayoutOptions, sizeof(tt__LayoutOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LayoutOptions * SOAP_FMAC2 soap_instantiate_tt__LayoutOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LayoutOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LayoutOptions *p; - size_t k = sizeof(tt__LayoutOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LayoutOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LayoutOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LayoutOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LayoutOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LayoutOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LayoutOptions(soap, tag ? tag : "tt:LayoutOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LayoutOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LayoutOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LayoutOptions * SOAP_FMAC4 soap_get_tt__LayoutOptions(struct soap *soap, tt__LayoutOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LayoutOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CodingCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__CodingCapabilities::AudioEncodingCapabilities = NULL; - this->tt__CodingCapabilities::AudioDecodingCapabilities = NULL; - this->tt__CodingCapabilities::VideoDecodingCapabilities = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CodingCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__CodingCapabilities::__anyAttribute); -} - -void tt__CodingCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AudioEncoderConfigurationOptions(soap, &this->tt__CodingCapabilities::AudioEncodingCapabilities); - soap_serialize_PointerTott__AudioDecoderConfigurationOptions(soap, &this->tt__CodingCapabilities::AudioDecodingCapabilities); - soap_serialize_PointerTott__VideoDecoderConfigurationOptions(soap, &this->tt__CodingCapabilities::VideoDecodingCapabilities); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CodingCapabilities::__any); -#endif -} - -int tt__CodingCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CodingCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CodingCapabilities(struct soap *soap, const char *tag, int id, const tt__CodingCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__CodingCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CodingCapabilities), type)) - return soap->error; - if (soap_out_PointerTott__AudioEncoderConfigurationOptions(soap, "tt:AudioEncodingCapabilities", -1, &a->tt__CodingCapabilities::AudioEncodingCapabilities, "")) - return soap->error; - if (soap_out_PointerTott__AudioDecoderConfigurationOptions(soap, "tt:AudioDecodingCapabilities", -1, &a->tt__CodingCapabilities::AudioDecodingCapabilities, "")) - return soap->error; - if (!a->tt__CodingCapabilities::VideoDecodingCapabilities) - { if (soap_element_empty(soap, "tt:VideoDecodingCapabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoDecoderConfigurationOptions(soap, "tt:VideoDecodingCapabilities", -1, &a->tt__CodingCapabilities::VideoDecodingCapabilities, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CodingCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CodingCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CodingCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CodingCapabilities * SOAP_FMAC4 soap_in_tt__CodingCapabilities(struct soap *soap, const char *tag, tt__CodingCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CodingCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CodingCapabilities, sizeof(tt__CodingCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CodingCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CodingCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__CodingCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AudioEncodingCapabilities1 = 1; - size_t soap_flag_AudioDecodingCapabilities1 = 1; - size_t soap_flag_VideoDecodingCapabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioEncodingCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioEncoderConfigurationOptions(soap, "tt:AudioEncodingCapabilities", &a->tt__CodingCapabilities::AudioEncodingCapabilities, "tt:AudioEncoderConfigurationOptions")) - { soap_flag_AudioEncodingCapabilities1--; - continue; - } - } - if (soap_flag_AudioDecodingCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioDecoderConfigurationOptions(soap, "tt:AudioDecodingCapabilities", &a->tt__CodingCapabilities::AudioDecodingCapabilities, "tt:AudioDecoderConfigurationOptions")) - { soap_flag_AudioDecodingCapabilities1--; - continue; - } - } - if (soap_flag_VideoDecodingCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoDecoderConfigurationOptions(soap, "tt:VideoDecodingCapabilities", &a->tt__CodingCapabilities::VideoDecodingCapabilities, "tt:VideoDecoderConfigurationOptions")) - { soap_flag_VideoDecodingCapabilities1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CodingCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__CodingCapabilities::VideoDecodingCapabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__CodingCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CodingCapabilities, SOAP_TYPE_tt__CodingCapabilities, sizeof(tt__CodingCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CodingCapabilities * SOAP_FMAC2 soap_instantiate_tt__CodingCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CodingCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CodingCapabilities *p; - size_t k = sizeof(tt__CodingCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CodingCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CodingCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CodingCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CodingCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CodingCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CodingCapabilities(soap, tag ? tag : "tt:CodingCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CodingCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CodingCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CodingCapabilities * SOAP_FMAC4 soap_get_tt__CodingCapabilities(struct soap *soap, tt__CodingCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CodingCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LayoutExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LayoutExtension::__any); -} - -void tt__LayoutExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LayoutExtension::__any); -#endif -} - -int tt__LayoutExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LayoutExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LayoutExtension(struct soap *soap, const char *tag, int id, const tt__LayoutExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LayoutExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__LayoutExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LayoutExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LayoutExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LayoutExtension * SOAP_FMAC4 soap_in_tt__LayoutExtension(struct soap *soap, const char *tag, tt__LayoutExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LayoutExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LayoutExtension, sizeof(tt__LayoutExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LayoutExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LayoutExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__LayoutExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__LayoutExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LayoutExtension, SOAP_TYPE_tt__LayoutExtension, sizeof(tt__LayoutExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LayoutExtension * SOAP_FMAC2 soap_instantiate_tt__LayoutExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LayoutExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LayoutExtension *p; - size_t k = sizeof(tt__LayoutExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LayoutExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LayoutExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LayoutExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LayoutExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LayoutExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LayoutExtension(soap, tag ? tag : "tt:LayoutExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LayoutExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LayoutExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LayoutExtension * SOAP_FMAC4 soap_get_tt__LayoutExtension(struct soap *soap, tt__LayoutExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LayoutExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Layout::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PaneLayout(soap, &this->tt__Layout::PaneLayout); - this->tt__Layout::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Layout::__anyAttribute); -} - -void tt__Layout::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PaneLayout(soap, &this->tt__Layout::PaneLayout); - soap_serialize_PointerTott__LayoutExtension(soap, &this->tt__Layout::Extension); -#endif -} - -int tt__Layout::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Layout(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Layout(struct soap *soap, const char *tag, int id, const tt__Layout *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Layout*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Layout), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PaneLayout(soap, "tt:PaneLayout", -1, &a->tt__Layout::PaneLayout, "")) - return soap->error; - if (soap_out_PointerTott__LayoutExtension(soap, "tt:Extension", -1, &a->tt__Layout::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Layout::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Layout(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Layout * SOAP_FMAC4 soap_in_tt__Layout(struct soap *soap, const char *tag, tt__Layout *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Layout*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Layout, sizeof(tt__Layout), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Layout) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Layout *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Layout*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PaneLayout(soap, "tt:PaneLayout", &a->tt__Layout::PaneLayout, "tt:PaneLayout")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__LayoutExtension(soap, "tt:Extension", &a->tt__Layout::Extension, "tt:LayoutExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__Layout::PaneLayout.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Layout *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Layout, SOAP_TYPE_tt__Layout, sizeof(tt__Layout), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Layout * SOAP_FMAC2 soap_instantiate_tt__Layout(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Layout(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Layout *p; - size_t k = sizeof(tt__Layout); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Layout, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Layout); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Layout, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Layout location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Layout::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Layout(soap, tag ? tag : "tt:Layout", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Layout::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Layout(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Layout * SOAP_FMAC4 soap_get_tt__Layout(struct soap *soap, tt__Layout *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Layout(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PaneLayout::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__PaneLayout::Pane); - this->tt__PaneLayout::Area = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PaneLayout::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PaneLayout::__anyAttribute); -} - -void tt__PaneLayout::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PaneLayout::Pane, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__PaneLayout::Pane); - soap_serialize_PointerTott__Rectangle(soap, &this->tt__PaneLayout::Area); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PaneLayout::__any); -#endif -} - -int tt__PaneLayout::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PaneLayout(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneLayout(struct soap *soap, const char *tag, int id, const tt__PaneLayout *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PaneLayout*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PaneLayout), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:Pane", -1, &a->tt__PaneLayout::Pane, "")) - return soap->error; - if (!a->tt__PaneLayout::Area) - { if (soap_element_empty(soap, "tt:Area", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Rectangle(soap, "tt:Area", -1, &a->tt__PaneLayout::Area, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PaneLayout::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PaneLayout::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PaneLayout(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PaneLayout * SOAP_FMAC4 soap_in_tt__PaneLayout(struct soap *soap, const char *tag, tt__PaneLayout *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PaneLayout*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PaneLayout, sizeof(tt__PaneLayout), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PaneLayout) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PaneLayout *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PaneLayout*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Pane1 = 1; - size_t soap_flag_Area1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Pane1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:Pane", &a->tt__PaneLayout::Pane, "tt:ReferenceToken")) - { soap_flag_Pane1--; - continue; - } - } - if (soap_flag_Area1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Rectangle(soap, "tt:Area", &a->tt__PaneLayout::Area, "tt:Rectangle")) - { soap_flag_Area1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PaneLayout::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Pane1 > 0 || !a->tt__PaneLayout::Area)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PaneLayout *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PaneLayout, SOAP_TYPE_tt__PaneLayout, sizeof(tt__PaneLayout), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PaneLayout * SOAP_FMAC2 soap_instantiate_tt__PaneLayout(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PaneLayout(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PaneLayout *p; - size_t k = sizeof(tt__PaneLayout); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PaneLayout, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PaneLayout); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PaneLayout, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PaneLayout location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PaneLayout::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PaneLayout(soap, tag ? tag : "tt:PaneLayout", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PaneLayout::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PaneLayout(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PaneLayout * SOAP_FMAC4 soap_get_tt__PaneLayout(struct soap *soap, tt__PaneLayout *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PaneLayout(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PaneConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PaneConfiguration::PaneName = NULL; - this->tt__PaneConfiguration::AudioOutputToken = NULL; - this->tt__PaneConfiguration::AudioSourceToken = NULL; - this->tt__PaneConfiguration::AudioEncoderConfiguration = NULL; - this->tt__PaneConfiguration::ReceiverToken = NULL; - soap_default_tt__ReferenceToken(soap, &this->tt__PaneConfiguration::Token); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PaneConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PaneConfiguration::__anyAttribute); -} - -void tt__PaneConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTostd__string(soap, &this->tt__PaneConfiguration::PaneName); - soap_serialize_PointerTott__ReferenceToken(soap, &this->tt__PaneConfiguration::AudioOutputToken); - soap_serialize_PointerTott__ReferenceToken(soap, &this->tt__PaneConfiguration::AudioSourceToken); - soap_serialize_PointerTott__AudioEncoderConfiguration(soap, &this->tt__PaneConfiguration::AudioEncoderConfiguration); - soap_serialize_PointerTott__ReferenceToken(soap, &this->tt__PaneConfiguration::ReceiverToken); - soap_embedded(soap, &this->tt__PaneConfiguration::Token, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__PaneConfiguration::Token); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PaneConfiguration::__any); -#endif -} - -int tt__PaneConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PaneConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneConfiguration(struct soap *soap, const char *tag, int id, const tt__PaneConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PaneConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PaneConfiguration), type)) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:PaneName", -1, &a->tt__PaneConfiguration::PaneName, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tt:AudioOutputToken", -1, &a->tt__PaneConfiguration::AudioOutputToken, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tt:AudioSourceToken", -1, &a->tt__PaneConfiguration::AudioSourceToken, "")) - return soap->error; - if (soap_out_PointerTott__AudioEncoderConfiguration(soap, "tt:AudioEncoderConfiguration", -1, &a->tt__PaneConfiguration::AudioEncoderConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tt:ReceiverToken", -1, &a->tt__PaneConfiguration::ReceiverToken, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:Token", -1, &a->tt__PaneConfiguration::Token, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PaneConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PaneConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PaneConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PaneConfiguration * SOAP_FMAC4 soap_in_tt__PaneConfiguration(struct soap *soap, const char *tag, tt__PaneConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PaneConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PaneConfiguration, sizeof(tt__PaneConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PaneConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PaneConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PaneConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PaneName1 = 1; - size_t soap_flag_AudioOutputToken1 = 1; - size_t soap_flag_AudioSourceToken1 = 1; - size_t soap_flag_AudioEncoderConfiguration1 = 1; - size_t soap_flag_ReceiverToken1 = 1; - size_t soap_flag_Token1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PaneName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:PaneName", &a->tt__PaneConfiguration::PaneName, "xsd:string")) - { soap_flag_PaneName1--; - continue; - } - } - if (soap_flag_AudioOutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tt:AudioOutputToken", &a->tt__PaneConfiguration::AudioOutputToken, "tt:ReferenceToken")) - { soap_flag_AudioOutputToken1--; - continue; - } - } - if (soap_flag_AudioSourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tt:AudioSourceToken", &a->tt__PaneConfiguration::AudioSourceToken, "tt:ReferenceToken")) - { soap_flag_AudioSourceToken1--; - continue; - } - } - if (soap_flag_AudioEncoderConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioEncoderConfiguration(soap, "tt:AudioEncoderConfiguration", &a->tt__PaneConfiguration::AudioEncoderConfiguration, "tt:AudioEncoderConfiguration")) - { soap_flag_AudioEncoderConfiguration1--; - continue; - } - } - if (soap_flag_ReceiverToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tt:ReceiverToken", &a->tt__PaneConfiguration::ReceiverToken, "tt:ReferenceToken")) - { soap_flag_ReceiverToken1--; - continue; - } - } - if (soap_flag_Token1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:Token", &a->tt__PaneConfiguration::Token, "tt:ReferenceToken")) - { soap_flag_Token1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PaneConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Token1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PaneConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PaneConfiguration, SOAP_TYPE_tt__PaneConfiguration, sizeof(tt__PaneConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PaneConfiguration * SOAP_FMAC2 soap_instantiate_tt__PaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PaneConfiguration *p; - size_t k = sizeof(tt__PaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PaneConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PaneConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PaneConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PaneConfiguration(soap, tag ? tag : "tt:PaneConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PaneConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PaneConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PaneConfiguration * SOAP_FMAC4 soap_get_tt__PaneConfiguration(struct soap *soap, tt__PaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CellLayout::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__CellLayout::Transformation = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CellLayout::__any); - soap_default_xsd__integer(soap, &this->tt__CellLayout::Columns); - soap_default_xsd__integer(soap, &this->tt__CellLayout::Rows); - soap_default_xsd__anyAttribute(soap, &this->tt__CellLayout::__anyAttribute); -} - -void tt__CellLayout::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Transformation(soap, &this->tt__CellLayout::Transformation); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CellLayout::__any); -#endif -} - -int tt__CellLayout::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CellLayout(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CellLayout(struct soap *soap, const char *tag, int id, const tt__CellLayout *a, const char *type) -{ - soap_set_attr(soap, "Columns", soap_xsd__integer2s(soap, ((tt__CellLayout*)a)->Columns), 1); - soap_set_attr(soap, "Rows", soap_xsd__integer2s(soap, ((tt__CellLayout*)a)->Rows), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__CellLayout*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CellLayout), type)) - return soap->error; - if (!a->tt__CellLayout::Transformation) - { if (soap_element_empty(soap, "tt:Transformation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Transformation(soap, "tt:Transformation", -1, &a->tt__CellLayout::Transformation, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CellLayout::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CellLayout::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CellLayout(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CellLayout * SOAP_FMAC4 soap_in_tt__CellLayout(struct soap *soap, const char *tag, tt__CellLayout *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CellLayout*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CellLayout, sizeof(tt__CellLayout), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CellLayout) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CellLayout *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__integer(soap, soap_attr_value(soap, "Columns", 5, 1), &((tt__CellLayout*)a)->Columns)) - return NULL; - if (soap_s2xsd__integer(soap, soap_attr_value(soap, "Rows", 5, 1), &((tt__CellLayout*)a)->Rows)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__CellLayout*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Transformation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Transformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Transformation(soap, "tt:Transformation", &a->tt__CellLayout::Transformation, "tt:Transformation")) - { soap_flag_Transformation1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CellLayout::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__CellLayout::Transformation)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__CellLayout *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CellLayout, SOAP_TYPE_tt__CellLayout, sizeof(tt__CellLayout), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CellLayout * SOAP_FMAC2 soap_instantiate_tt__CellLayout(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CellLayout(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CellLayout *p; - size_t k = sizeof(tt__CellLayout); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CellLayout, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CellLayout); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CellLayout, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CellLayout location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CellLayout::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CellLayout(soap, tag ? tag : "tt:CellLayout", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CellLayout::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CellLayout(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CellLayout * SOAP_FMAC4 soap_get_tt__CellLayout(struct soap *soap, tt__CellLayout *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CellLayout(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MotionExpressionConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__MotionExpressionConfiguration::MotionExpression = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MotionExpressionConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__MotionExpressionConfiguration::__anyAttribute); -} - -void tt__MotionExpressionConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MotionExpression(soap, &this->tt__MotionExpressionConfiguration::MotionExpression); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MotionExpressionConfiguration::__any); -#endif -} - -int tt__MotionExpressionConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MotionExpressionConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MotionExpressionConfiguration(struct soap *soap, const char *tag, int id, const tt__MotionExpressionConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MotionExpressionConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MotionExpressionConfiguration), type)) - return soap->error; - if (!a->tt__MotionExpressionConfiguration::MotionExpression) - { if (soap_element_empty(soap, "tt:MotionExpression", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MotionExpression(soap, "tt:MotionExpression", -1, &a->tt__MotionExpressionConfiguration::MotionExpression, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MotionExpressionConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MotionExpressionConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MotionExpressionConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MotionExpressionConfiguration * SOAP_FMAC4 soap_in_tt__MotionExpressionConfiguration(struct soap *soap, const char *tag, tt__MotionExpressionConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MotionExpressionConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MotionExpressionConfiguration, sizeof(tt__MotionExpressionConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MotionExpressionConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MotionExpressionConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MotionExpressionConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MotionExpression1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MotionExpression1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MotionExpression(soap, "tt:MotionExpression", &a->tt__MotionExpressionConfiguration::MotionExpression, "tt:MotionExpression")) - { soap_flag_MotionExpression1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MotionExpressionConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__MotionExpressionConfiguration::MotionExpression)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MotionExpressionConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MotionExpressionConfiguration, SOAP_TYPE_tt__MotionExpressionConfiguration, sizeof(tt__MotionExpressionConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MotionExpressionConfiguration * SOAP_FMAC2 soap_instantiate_tt__MotionExpressionConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MotionExpressionConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MotionExpressionConfiguration *p; - size_t k = sizeof(tt__MotionExpressionConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MotionExpressionConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MotionExpressionConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MotionExpressionConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MotionExpressionConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MotionExpressionConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MotionExpressionConfiguration(soap, tag ? tag : "tt:MotionExpressionConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MotionExpressionConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MotionExpressionConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MotionExpressionConfiguration * SOAP_FMAC4 soap_get_tt__MotionExpressionConfiguration(struct soap *soap, tt__MotionExpressionConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MotionExpressionConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MotionExpression::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__MotionExpression::Expression); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MotionExpression::__any); - this->tt__MotionExpression::Type = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MotionExpression::__anyAttribute); -} - -void tt__MotionExpression::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__MotionExpression::Expression, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__MotionExpression::Expression); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MotionExpression::__any); -#endif -} - -int tt__MotionExpression::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MotionExpression(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MotionExpression(struct soap *soap, const char *tag, int id, const tt__MotionExpression *a, const char *type) -{ - if (((tt__MotionExpression*)a)->Type) - { soap_set_attr(soap, "Type", soap_std__string2s(soap, *((tt__MotionExpression*)a)->Type), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MotionExpression*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MotionExpression), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Expression", -1, &a->tt__MotionExpression::Expression, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MotionExpression::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MotionExpression::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MotionExpression(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MotionExpression * SOAP_FMAC4 soap_in_tt__MotionExpression(struct soap *soap, const char *tag, tt__MotionExpression *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MotionExpression*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MotionExpression, sizeof(tt__MotionExpression), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MotionExpression) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MotionExpression *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "Type", 1, 0); - if (t) - { - if (!(((tt__MotionExpression*)a)->Type = soap_new_std__string(soap))) - return NULL; - if (soap_s2std__string(soap, t, ((tt__MotionExpression*)a)->Type)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MotionExpression*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Expression1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Expression1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Expression", &a->tt__MotionExpression::Expression, "xsd:string")) - { soap_flag_Expression1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MotionExpression::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Expression1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MotionExpression *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MotionExpression, SOAP_TYPE_tt__MotionExpression, sizeof(tt__MotionExpression), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MotionExpression * SOAP_FMAC2 soap_instantiate_tt__MotionExpression(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MotionExpression(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MotionExpression *p; - size_t k = sizeof(tt__MotionExpression); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MotionExpression, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MotionExpression); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MotionExpression, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MotionExpression location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MotionExpression::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MotionExpression(soap, tag ? tag : "tt:MotionExpression", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MotionExpression::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MotionExpression(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MotionExpression * SOAP_FMAC4 soap_get_tt__MotionExpression(struct soap *soap, tt__MotionExpression *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MotionExpression(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PolylineArrayConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PolylineArrayConfiguration::PolylineArray = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PolylineArrayConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PolylineArrayConfiguration::__anyAttribute); -} - -void tt__PolylineArrayConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PolylineArray(soap, &this->tt__PolylineArrayConfiguration::PolylineArray); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PolylineArrayConfiguration::__any); -#endif -} - -int tt__PolylineArrayConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PolylineArrayConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolylineArrayConfiguration(struct soap *soap, const char *tag, int id, const tt__PolylineArrayConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PolylineArrayConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PolylineArrayConfiguration), type)) - return soap->error; - if (!a->tt__PolylineArrayConfiguration::PolylineArray) - { if (soap_element_empty(soap, "tt:PolylineArray", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PolylineArray(soap, "tt:PolylineArray", -1, &a->tt__PolylineArrayConfiguration::PolylineArray, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PolylineArrayConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PolylineArrayConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PolylineArrayConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PolylineArrayConfiguration * SOAP_FMAC4 soap_in_tt__PolylineArrayConfiguration(struct soap *soap, const char *tag, tt__PolylineArrayConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PolylineArrayConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PolylineArrayConfiguration, sizeof(tt__PolylineArrayConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PolylineArrayConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PolylineArrayConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PolylineArrayConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PolylineArray1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PolylineArray1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PolylineArray(soap, "tt:PolylineArray", &a->tt__PolylineArrayConfiguration::PolylineArray, "tt:PolylineArray")) - { soap_flag_PolylineArray1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PolylineArrayConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PolylineArrayConfiguration::PolylineArray)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PolylineArrayConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PolylineArrayConfiguration, SOAP_TYPE_tt__PolylineArrayConfiguration, sizeof(tt__PolylineArrayConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PolylineArrayConfiguration * SOAP_FMAC2 soap_instantiate_tt__PolylineArrayConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PolylineArrayConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PolylineArrayConfiguration *p; - size_t k = sizeof(tt__PolylineArrayConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PolylineArrayConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PolylineArrayConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PolylineArrayConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PolylineArrayConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PolylineArrayConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PolylineArrayConfiguration(soap, tag ? tag : "tt:PolylineArrayConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PolylineArrayConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PolylineArrayConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PolylineArrayConfiguration * SOAP_FMAC4 soap_get_tt__PolylineArrayConfiguration(struct soap *soap, tt__PolylineArrayConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PolylineArrayConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PolylineArrayExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PolylineArrayExtension::__any); -} - -void tt__PolylineArrayExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PolylineArrayExtension::__any); -#endif -} - -int tt__PolylineArrayExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PolylineArrayExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolylineArrayExtension(struct soap *soap, const char *tag, int id, const tt__PolylineArrayExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PolylineArrayExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PolylineArrayExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PolylineArrayExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PolylineArrayExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PolylineArrayExtension * SOAP_FMAC4 soap_in_tt__PolylineArrayExtension(struct soap *soap, const char *tag, tt__PolylineArrayExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PolylineArrayExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PolylineArrayExtension, sizeof(tt__PolylineArrayExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PolylineArrayExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PolylineArrayExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PolylineArrayExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PolylineArrayExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PolylineArrayExtension, SOAP_TYPE_tt__PolylineArrayExtension, sizeof(tt__PolylineArrayExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PolylineArrayExtension * SOAP_FMAC2 soap_instantiate_tt__PolylineArrayExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PolylineArrayExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PolylineArrayExtension *p; - size_t k = sizeof(tt__PolylineArrayExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PolylineArrayExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PolylineArrayExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PolylineArrayExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PolylineArrayExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PolylineArrayExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PolylineArrayExtension(soap, tag ? tag : "tt:PolylineArrayExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PolylineArrayExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PolylineArrayExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PolylineArrayExtension * SOAP_FMAC4 soap_get_tt__PolylineArrayExtension(struct soap *soap, tt__PolylineArrayExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PolylineArrayExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PolylineArray::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Polyline(soap, &this->tt__PolylineArray::Segment); - this->tt__PolylineArray::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PolylineArray::__anyAttribute); -} - -void tt__PolylineArray::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Polyline(soap, &this->tt__PolylineArray::Segment); - soap_serialize_PointerTott__PolylineArrayExtension(soap, &this->tt__PolylineArray::Extension); -#endif -} - -int tt__PolylineArray::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PolylineArray(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolylineArray(struct soap *soap, const char *tag, int id, const tt__PolylineArray *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PolylineArray*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PolylineArray), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Polyline(soap, "tt:Segment", -1, &a->tt__PolylineArray::Segment, "")) - return soap->error; - if (soap_out_PointerTott__PolylineArrayExtension(soap, "tt:Extension", -1, &a->tt__PolylineArray::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PolylineArray::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PolylineArray(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PolylineArray * SOAP_FMAC4 soap_in_tt__PolylineArray(struct soap *soap, const char *tag, tt__PolylineArray *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PolylineArray*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PolylineArray, sizeof(tt__PolylineArray), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PolylineArray) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PolylineArray *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PolylineArray*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Polyline(soap, "tt:Segment", &a->tt__PolylineArray::Segment, "tt:Polyline")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PolylineArrayExtension(soap, "tt:Extension", &a->tt__PolylineArray::Extension, "tt:PolylineArrayExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__PolylineArray::Segment.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PolylineArray *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PolylineArray, SOAP_TYPE_tt__PolylineArray, sizeof(tt__PolylineArray), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PolylineArray * SOAP_FMAC2 soap_instantiate_tt__PolylineArray(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PolylineArray(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PolylineArray *p; - size_t k = sizeof(tt__PolylineArray); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PolylineArray, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PolylineArray); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PolylineArray, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PolylineArray location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PolylineArray::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PolylineArray(soap, tag ? tag : "tt:PolylineArray", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PolylineArray::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PolylineArray(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PolylineArray * SOAP_FMAC4 soap_get_tt__PolylineArray(struct soap *soap, tt__PolylineArray *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PolylineArray(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SupportedAnalyticsModulesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SupportedAnalyticsModulesExtension::__any); -} - -void tt__SupportedAnalyticsModulesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SupportedAnalyticsModulesExtension::__any); -#endif -} - -int tt__SupportedAnalyticsModulesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SupportedAnalyticsModulesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedAnalyticsModulesExtension(struct soap *soap, const char *tag, int id, const tt__SupportedAnalyticsModulesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SupportedAnalyticsModulesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SupportedAnalyticsModulesExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SupportedAnalyticsModulesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SupportedAnalyticsModulesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SupportedAnalyticsModulesExtension * SOAP_FMAC4 soap_in_tt__SupportedAnalyticsModulesExtension(struct soap *soap, const char *tag, tt__SupportedAnalyticsModulesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SupportedAnalyticsModulesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SupportedAnalyticsModulesExtension, sizeof(tt__SupportedAnalyticsModulesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SupportedAnalyticsModulesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SupportedAnalyticsModulesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SupportedAnalyticsModulesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SupportedAnalyticsModulesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SupportedAnalyticsModulesExtension, SOAP_TYPE_tt__SupportedAnalyticsModulesExtension, sizeof(tt__SupportedAnalyticsModulesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SupportedAnalyticsModulesExtension * SOAP_FMAC2 soap_instantiate_tt__SupportedAnalyticsModulesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SupportedAnalyticsModulesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SupportedAnalyticsModulesExtension *p; - size_t k = sizeof(tt__SupportedAnalyticsModulesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SupportedAnalyticsModulesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SupportedAnalyticsModulesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SupportedAnalyticsModulesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SupportedAnalyticsModulesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SupportedAnalyticsModulesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SupportedAnalyticsModulesExtension(soap, tag ? tag : "tt:SupportedAnalyticsModulesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SupportedAnalyticsModulesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SupportedAnalyticsModulesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SupportedAnalyticsModulesExtension * SOAP_FMAC4 soap_get_tt__SupportedAnalyticsModulesExtension(struct soap *soap, tt__SupportedAnalyticsModulesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SupportedAnalyticsModulesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SupportedAnalyticsModules::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__SupportedAnalyticsModules::AnalyticsModuleContentSchemaLocation); - soap_default_std__vectorTemplateOfPointerTott__ConfigDescription(soap, &this->tt__SupportedAnalyticsModules::AnalyticsModuleDescription); - this->tt__SupportedAnalyticsModules::Extension = NULL; - this->tt__SupportedAnalyticsModules::Limit = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__SupportedAnalyticsModules::__anyAttribute); -} - -void tt__SupportedAnalyticsModules::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__SupportedAnalyticsModules::AnalyticsModuleContentSchemaLocation); - soap_serialize_std__vectorTemplateOfPointerTott__ConfigDescription(soap, &this->tt__SupportedAnalyticsModules::AnalyticsModuleDescription); - soap_serialize_PointerTott__SupportedAnalyticsModulesExtension(soap, &this->tt__SupportedAnalyticsModules::Extension); -#endif -} - -int tt__SupportedAnalyticsModules::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SupportedAnalyticsModules(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedAnalyticsModules(struct soap *soap, const char *tag, int id, const tt__SupportedAnalyticsModules *a, const char *type) -{ - if (((tt__SupportedAnalyticsModules*)a)->Limit) - { soap_set_attr(soap, "Limit", soap_int2s(soap, *((tt__SupportedAnalyticsModules*)a)->Limit), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SupportedAnalyticsModules*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SupportedAnalyticsModules), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tt:AnalyticsModuleContentSchemaLocation", -1, &a->tt__SupportedAnalyticsModules::AnalyticsModuleContentSchemaLocation, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__ConfigDescription(soap, "tt:AnalyticsModuleDescription", -1, &a->tt__SupportedAnalyticsModules::AnalyticsModuleDescription, "")) - return soap->error; - if (soap_out_PointerTott__SupportedAnalyticsModulesExtension(soap, "tt:Extension", -1, &a->tt__SupportedAnalyticsModules::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SupportedAnalyticsModules::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SupportedAnalyticsModules(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SupportedAnalyticsModules * SOAP_FMAC4 soap_in_tt__SupportedAnalyticsModules(struct soap *soap, const char *tag, tt__SupportedAnalyticsModules *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SupportedAnalyticsModules*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SupportedAnalyticsModules, sizeof(tt__SupportedAnalyticsModules), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SupportedAnalyticsModules) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SupportedAnalyticsModules *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "Limit", 5, 0); - if (t) - { - if (!(((tt__SupportedAnalyticsModules*)a)->Limit = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__SupportedAnalyticsModules*)a)->Limit)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SupportedAnalyticsModules*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tt:AnalyticsModuleContentSchemaLocation", &a->tt__SupportedAnalyticsModules::AnalyticsModuleContentSchemaLocation, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__ConfigDescription(soap, "tt:AnalyticsModuleDescription", &a->tt__SupportedAnalyticsModules::AnalyticsModuleDescription, "tt:ConfigDescription")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SupportedAnalyticsModulesExtension(soap, "tt:Extension", &a->tt__SupportedAnalyticsModules::Extension, "tt:SupportedAnalyticsModulesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SupportedAnalyticsModules *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SupportedAnalyticsModules, SOAP_TYPE_tt__SupportedAnalyticsModules, sizeof(tt__SupportedAnalyticsModules), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SupportedAnalyticsModules * SOAP_FMAC2 soap_instantiate_tt__SupportedAnalyticsModules(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SupportedAnalyticsModules(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SupportedAnalyticsModules *p; - size_t k = sizeof(tt__SupportedAnalyticsModules); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SupportedAnalyticsModules, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SupportedAnalyticsModules); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SupportedAnalyticsModules, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SupportedAnalyticsModules location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SupportedAnalyticsModules::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SupportedAnalyticsModules(soap, tag ? tag : "tt:SupportedAnalyticsModules", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SupportedAnalyticsModules::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SupportedAnalyticsModules(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SupportedAnalyticsModules * SOAP_FMAC4 soap_get_tt__SupportedAnalyticsModules(struct soap *soap, tt__SupportedAnalyticsModules *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SupportedAnalyticsModules(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SupportedRulesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SupportedRulesExtension::__any); -} - -void tt__SupportedRulesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SupportedRulesExtension::__any); -#endif -} - -int tt__SupportedRulesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SupportedRulesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedRulesExtension(struct soap *soap, const char *tag, int id, const tt__SupportedRulesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SupportedRulesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SupportedRulesExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SupportedRulesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SupportedRulesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SupportedRulesExtension * SOAP_FMAC4 soap_in_tt__SupportedRulesExtension(struct soap *soap, const char *tag, tt__SupportedRulesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SupportedRulesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SupportedRulesExtension, sizeof(tt__SupportedRulesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SupportedRulesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SupportedRulesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SupportedRulesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SupportedRulesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SupportedRulesExtension, SOAP_TYPE_tt__SupportedRulesExtension, sizeof(tt__SupportedRulesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SupportedRulesExtension * SOAP_FMAC2 soap_instantiate_tt__SupportedRulesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SupportedRulesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SupportedRulesExtension *p; - size_t k = sizeof(tt__SupportedRulesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SupportedRulesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SupportedRulesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SupportedRulesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SupportedRulesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SupportedRulesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SupportedRulesExtension(soap, tag ? tag : "tt:SupportedRulesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SupportedRulesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SupportedRulesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SupportedRulesExtension * SOAP_FMAC4 soap_get_tt__SupportedRulesExtension(struct soap *soap, tt__SupportedRulesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SupportedRulesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SupportedRules::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__SupportedRules::RuleContentSchemaLocation); - soap_default_std__vectorTemplateOfPointerTott__ConfigDescription(soap, &this->tt__SupportedRules::RuleDescription); - this->tt__SupportedRules::Extension = NULL; - this->tt__SupportedRules::Limit = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__SupportedRules::__anyAttribute); -} - -void tt__SupportedRules::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__SupportedRules::RuleContentSchemaLocation); - soap_serialize_std__vectorTemplateOfPointerTott__ConfigDescription(soap, &this->tt__SupportedRules::RuleDescription); - soap_serialize_PointerTott__SupportedRulesExtension(soap, &this->tt__SupportedRules::Extension); -#endif -} - -int tt__SupportedRules::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SupportedRules(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedRules(struct soap *soap, const char *tag, int id, const tt__SupportedRules *a, const char *type) -{ - if (((tt__SupportedRules*)a)->Limit) - { soap_set_attr(soap, "Limit", soap_int2s(soap, *((tt__SupportedRules*)a)->Limit), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SupportedRules*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SupportedRules), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tt:RuleContentSchemaLocation", -1, &a->tt__SupportedRules::RuleContentSchemaLocation, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__ConfigDescription(soap, "tt:RuleDescription", -1, &a->tt__SupportedRules::RuleDescription, "")) - return soap->error; - if (soap_out_PointerTott__SupportedRulesExtension(soap, "tt:Extension", -1, &a->tt__SupportedRules::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SupportedRules::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SupportedRules(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SupportedRules * SOAP_FMAC4 soap_in_tt__SupportedRules(struct soap *soap, const char *tag, tt__SupportedRules *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SupportedRules*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SupportedRules, sizeof(tt__SupportedRules), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SupportedRules) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SupportedRules *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "Limit", 5, 0); - if (t) - { - if (!(((tt__SupportedRules*)a)->Limit = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__SupportedRules*)a)->Limit)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SupportedRules*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tt:RuleContentSchemaLocation", &a->tt__SupportedRules::RuleContentSchemaLocation, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__ConfigDescription(soap, "tt:RuleDescription", &a->tt__SupportedRules::RuleDescription, "tt:ConfigDescription")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SupportedRulesExtension(soap, "tt:Extension", &a->tt__SupportedRules::Extension, "tt:SupportedRulesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SupportedRules *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SupportedRules, SOAP_TYPE_tt__SupportedRules, sizeof(tt__SupportedRules), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SupportedRules * SOAP_FMAC2 soap_instantiate_tt__SupportedRules(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SupportedRules(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SupportedRules *p; - size_t k = sizeof(tt__SupportedRules); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SupportedRules, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SupportedRules); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SupportedRules, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SupportedRules location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SupportedRules::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SupportedRules(soap, tag ? tag : "tt:SupportedRules", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SupportedRules::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SupportedRules(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SupportedRules * SOAP_FMAC4 soap_get_tt__SupportedRules(struct soap *soap, tt__SupportedRules *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SupportedRules(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ConfigDescriptionExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ConfigDescriptionExtension::__any); -} - -void tt__ConfigDescriptionExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ConfigDescriptionExtension::__any); -#endif -} - -int tt__ConfigDescriptionExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ConfigDescriptionExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ConfigDescriptionExtension(struct soap *soap, const char *tag, int id, const tt__ConfigDescriptionExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ConfigDescriptionExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ConfigDescriptionExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ConfigDescriptionExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ConfigDescriptionExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ConfigDescriptionExtension * SOAP_FMAC4 soap_in_tt__ConfigDescriptionExtension(struct soap *soap, const char *tag, tt__ConfigDescriptionExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ConfigDescriptionExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ConfigDescriptionExtension, sizeof(tt__ConfigDescriptionExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ConfigDescriptionExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ConfigDescriptionExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ConfigDescriptionExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ConfigDescriptionExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ConfigDescriptionExtension, SOAP_TYPE_tt__ConfigDescriptionExtension, sizeof(tt__ConfigDescriptionExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ConfigDescriptionExtension * SOAP_FMAC2 soap_instantiate_tt__ConfigDescriptionExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ConfigDescriptionExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ConfigDescriptionExtension *p; - size_t k = sizeof(tt__ConfigDescriptionExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ConfigDescriptionExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ConfigDescriptionExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ConfigDescriptionExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ConfigDescriptionExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ConfigDescriptionExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ConfigDescriptionExtension(soap, tag ? tag : "tt:ConfigDescriptionExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ConfigDescriptionExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ConfigDescriptionExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ConfigDescriptionExtension * SOAP_FMAC4 soap_get_tt__ConfigDescriptionExtension(struct soap *soap, tt__ConfigDescriptionExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ConfigDescriptionExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ConfigDescription::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigDescription::Parameters = NULL; - soap_default_std__vectorTemplateOf_tt__ConfigDescription_Messages(soap, &this->tt__ConfigDescription::Messages); - this->tt__ConfigDescription::Extension = NULL; - soap_default_xsd__QName(soap, &this->tt__ConfigDescription::Name); - this->tt__ConfigDescription::fixed = NULL; - this->tt__ConfigDescription::maxInstances = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ConfigDescription::__anyAttribute); -} - -void tt__ConfigDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ItemListDescription(soap, &this->tt__ConfigDescription::Parameters); - soap_serialize_std__vectorTemplateOf_tt__ConfigDescription_Messages(soap, &this->tt__ConfigDescription::Messages); - soap_serialize_PointerTott__ConfigDescriptionExtension(soap, &this->tt__ConfigDescription::Extension); -#endif -} - -int tt__ConfigDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ConfigDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ConfigDescription(struct soap *soap, const char *tag, int id, const tt__ConfigDescription *a, const char *type) -{ - soap_set_attr(soap, "Name", soap_xsd__QName2s(soap, ((tt__ConfigDescription*)a)->Name), 1); - if (((tt__ConfigDescription*)a)->fixed) - { soap_set_attr(soap, "fixed", soap_bool2s(soap, *((tt__ConfigDescription*)a)->fixed), 1); - } - if (((tt__ConfigDescription*)a)->maxInstances) - { soap_set_attr(soap, "maxInstances", soap_xsd__integer2s(soap, *((tt__ConfigDescription*)a)->maxInstances), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ConfigDescription*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ConfigDescription), type)) - return soap->error; - if (!a->tt__ConfigDescription::Parameters) - { if (soap_element_empty(soap, "tt:Parameters", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ItemListDescription(soap, "tt:Parameters", -1, &a->tt__ConfigDescription::Parameters, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_tt__ConfigDescription_Messages(soap, "tt:Messages", -1, &a->tt__ConfigDescription::Messages, "")) - return soap->error; - if (soap_out_PointerTott__ConfigDescriptionExtension(soap, "tt:Extension", -1, &a->tt__ConfigDescription::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ConfigDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ConfigDescription(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ConfigDescription * SOAP_FMAC4 soap_in_tt__ConfigDescription(struct soap *soap, const char *tag, tt__ConfigDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ConfigDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ConfigDescription, sizeof(tt__ConfigDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ConfigDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ConfigDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__QName(soap, soap_attr_value(soap, "Name", 2, 1), &((tt__ConfigDescription*)a)->Name)) - return NULL; - { - const char *t = soap_attr_value(soap, "fixed", 5, 0); - if (t) - { - if (!(((tt__ConfigDescription*)a)->fixed = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__ConfigDescription*)a)->fixed)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "maxInstances", 5, 0); - if (t) - { - if (!(((tt__ConfigDescription*)a)->maxInstances = soap_new_xsd__integer(soap))) - return NULL; - if (soap_s2xsd__integer(soap, t, ((tt__ConfigDescription*)a)->maxInstances)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ConfigDescription*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Parameters1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Parameters1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescription(soap, "tt:Parameters", &a->tt__ConfigDescription::Parameters, "tt:ItemListDescription")) - { soap_flag_Parameters1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_tt__ConfigDescription_Messages(soap, "tt:Messages", &a->tt__ConfigDescription::Messages, "")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ConfigDescriptionExtension(soap, "tt:Extension", &a->tt__ConfigDescription::Extension, "tt:ConfigDescriptionExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__ConfigDescription::Parameters)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ConfigDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ConfigDescription, SOAP_TYPE_tt__ConfigDescription, sizeof(tt__ConfigDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ConfigDescription * SOAP_FMAC2 soap_instantiate_tt__ConfigDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ConfigDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ConfigDescription *p; - size_t k = sizeof(tt__ConfigDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ConfigDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ConfigDescription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ConfigDescription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ConfigDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ConfigDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ConfigDescription(soap, tag ? tag : "tt:ConfigDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ConfigDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ConfigDescription(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ConfigDescription * SOAP_FMAC4 soap_get_tt__ConfigDescription(struct soap *soap, tt__ConfigDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ConfigDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Config::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__Config::Parameters = NULL; - soap_default_std__string(soap, &this->tt__Config::Name); - soap_default_xsd__QName(soap, &this->tt__Config::Type); -} - -void tt__Config::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ItemList(soap, &this->tt__Config::Parameters); -#endif -} - -int tt__Config::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Config(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Config(struct soap *soap, const char *tag, int id, const tt__Config *a, const char *type) -{ - soap_set_attr(soap, "Name", soap_std__string2s(soap, ((tt__Config*)a)->Name), 1); - soap_set_attr(soap, "Type", soap_xsd__QName2s(soap, ((tt__Config*)a)->Type), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Config), type)) - return soap->error; - if (!a->tt__Config::Parameters) - { if (soap_element_empty(soap, "tt:Parameters", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ItemList(soap, "tt:Parameters", -1, &a->tt__Config::Parameters, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Config::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Config(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Config * SOAP_FMAC4 soap_in_tt__Config(struct soap *soap, const char *tag, tt__Config *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Config*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Config, sizeof(tt__Config), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Config) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Config *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2std__string(soap, soap_attr_value(soap, "Name", 1, 1), &((tt__Config*)a)->Name)) - return NULL; - if (soap_s2xsd__QName(soap, soap_attr_value(soap, "Type", 2, 1), &((tt__Config*)a)->Type)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Parameters1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Parameters1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemList(soap, "tt:Parameters", &a->tt__Config::Parameters, "tt:ItemList")) - { soap_flag_Parameters1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__Config::Parameters)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Config *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Config, SOAP_TYPE_tt__Config, sizeof(tt__Config), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Config * SOAP_FMAC2 soap_instantiate_tt__Config(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Config(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Config *p; - size_t k = sizeof(tt__Config); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Config, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Config); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Config, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Config location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Config::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Config(soap, tag ? tag : "tt:Config", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Config::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Config(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Config * SOAP_FMAC4 soap_get_tt__Config(struct soap *soap, tt__Config *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Config(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RuleEngineConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RuleEngineConfigurationExtension::__any); -} - -void tt__RuleEngineConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RuleEngineConfigurationExtension::__any); -#endif -} - -int tt__RuleEngineConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RuleEngineConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RuleEngineConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__RuleEngineConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RuleEngineConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RuleEngineConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RuleEngineConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RuleEngineConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RuleEngineConfigurationExtension * SOAP_FMAC4 soap_in_tt__RuleEngineConfigurationExtension(struct soap *soap, const char *tag, tt__RuleEngineConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RuleEngineConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RuleEngineConfigurationExtension, sizeof(tt__RuleEngineConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RuleEngineConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RuleEngineConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RuleEngineConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RuleEngineConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RuleEngineConfigurationExtension, SOAP_TYPE_tt__RuleEngineConfigurationExtension, sizeof(tt__RuleEngineConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RuleEngineConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__RuleEngineConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RuleEngineConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RuleEngineConfigurationExtension *p; - size_t k = sizeof(tt__RuleEngineConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RuleEngineConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RuleEngineConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RuleEngineConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RuleEngineConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RuleEngineConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RuleEngineConfigurationExtension(soap, tag ? tag : "tt:RuleEngineConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RuleEngineConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RuleEngineConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RuleEngineConfigurationExtension * SOAP_FMAC4 soap_get_tt__RuleEngineConfigurationExtension(struct soap *soap, tt__RuleEngineConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RuleEngineConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RuleEngineConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Config(soap, &this->tt__RuleEngineConfiguration::Rule); - this->tt__RuleEngineConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__RuleEngineConfiguration::__anyAttribute); -} - -void tt__RuleEngineConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Config(soap, &this->tt__RuleEngineConfiguration::Rule); - soap_serialize_PointerTott__RuleEngineConfigurationExtension(soap, &this->tt__RuleEngineConfiguration::Extension); -#endif -} - -int tt__RuleEngineConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RuleEngineConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RuleEngineConfiguration(struct soap *soap, const char *tag, int id, const tt__RuleEngineConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RuleEngineConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RuleEngineConfiguration), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Config(soap, "tt:Rule", -1, &a->tt__RuleEngineConfiguration::Rule, "")) - return soap->error; - if (soap_out_PointerTott__RuleEngineConfigurationExtension(soap, "tt:Extension", -1, &a->tt__RuleEngineConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RuleEngineConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RuleEngineConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RuleEngineConfiguration * SOAP_FMAC4 soap_in_tt__RuleEngineConfiguration(struct soap *soap, const char *tag, tt__RuleEngineConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RuleEngineConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RuleEngineConfiguration, sizeof(tt__RuleEngineConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RuleEngineConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RuleEngineConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RuleEngineConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Config(soap, "tt:Rule", &a->tt__RuleEngineConfiguration::Rule, "tt:Config")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RuleEngineConfigurationExtension(soap, "tt:Extension", &a->tt__RuleEngineConfiguration::Extension, "tt:RuleEngineConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RuleEngineConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RuleEngineConfiguration, SOAP_TYPE_tt__RuleEngineConfiguration, sizeof(tt__RuleEngineConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RuleEngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__RuleEngineConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RuleEngineConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RuleEngineConfiguration *p; - size_t k = sizeof(tt__RuleEngineConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RuleEngineConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RuleEngineConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RuleEngineConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RuleEngineConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RuleEngineConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RuleEngineConfiguration(soap, tag ? tag : "tt:RuleEngineConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RuleEngineConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RuleEngineConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RuleEngineConfiguration * SOAP_FMAC4 soap_get_tt__RuleEngineConfiguration(struct soap *soap, tt__RuleEngineConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RuleEngineConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsEngineConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineConfigurationExtension::__any); -} - -void tt__AnalyticsEngineConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsEngineConfigurationExtension::__any); -#endif -} - -int tt__AnalyticsEngineConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsEngineConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__AnalyticsEngineConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsEngineConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsEngineConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsEngineConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineConfigurationExtension * SOAP_FMAC4 soap_in_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, const char *tag, tt__AnalyticsEngineConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsEngineConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension, sizeof(tt__AnalyticsEngineConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsEngineConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsEngineConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AnalyticsEngineConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension, SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension, sizeof(tt__AnalyticsEngineConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsEngineConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsEngineConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsEngineConfigurationExtension *p; - size_t k = sizeof(tt__AnalyticsEngineConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsEngineConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsEngineConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsEngineConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsEngineConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsEngineConfigurationExtension(soap, tag ? tag : "tt:AnalyticsEngineConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsEngineConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsEngineConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineConfigurationExtension * SOAP_FMAC4 soap_get_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, tt__AnalyticsEngineConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsEngineConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsEngineConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Config(soap, &this->tt__AnalyticsEngineConfiguration::AnalyticsModule); - this->tt__AnalyticsEngineConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsEngineConfiguration::__anyAttribute); -} - -void tt__AnalyticsEngineConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Config(soap, &this->tt__AnalyticsEngineConfiguration::AnalyticsModule); - soap_serialize_PointerTott__AnalyticsEngineConfigurationExtension(soap, &this->tt__AnalyticsEngineConfiguration::Extension); -#endif -} - -int tt__AnalyticsEngineConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsEngineConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineConfiguration(struct soap *soap, const char *tag, int id, const tt__AnalyticsEngineConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsEngineConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsEngineConfiguration), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Config(soap, "tt:AnalyticsModule", -1, &a->tt__AnalyticsEngineConfiguration::AnalyticsModule, "")) - return soap->error; - if (soap_out_PointerTott__AnalyticsEngineConfigurationExtension(soap, "tt:Extension", -1, &a->tt__AnalyticsEngineConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsEngineConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsEngineConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineConfiguration * SOAP_FMAC4 soap_in_tt__AnalyticsEngineConfiguration(struct soap *soap, const char *tag, tt__AnalyticsEngineConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsEngineConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsEngineConfiguration, sizeof(tt__AnalyticsEngineConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsEngineConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsEngineConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsEngineConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Config(soap, "tt:AnalyticsModule", &a->tt__AnalyticsEngineConfiguration::AnalyticsModule, "tt:Config")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsEngineConfigurationExtension(soap, "tt:Extension", &a->tt__AnalyticsEngineConfiguration::Extension, "tt:AnalyticsEngineConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AnalyticsEngineConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsEngineConfiguration, SOAP_TYPE_tt__AnalyticsEngineConfiguration, sizeof(tt__AnalyticsEngineConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsEngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsEngineConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsEngineConfiguration *p; - size_t k = sizeof(tt__AnalyticsEngineConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsEngineConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsEngineConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsEngineConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsEngineConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsEngineConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsEngineConfiguration(soap, tag ? tag : "tt:AnalyticsEngineConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsEngineConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsEngineConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsEngineConfiguration * SOAP_FMAC4 soap_get_tt__AnalyticsEngineConfiguration(struct soap *soap, tt__AnalyticsEngineConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsEngineConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Polyline::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Vector(soap, &this->tt__Polyline::Point); -} - -void tt__Polyline::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Vector(soap, &this->tt__Polyline::Point); -#endif -} - -int tt__Polyline::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Polyline(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Polyline(struct soap *soap, const char *tag, int id, const tt__Polyline *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Polyline), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Vector(soap, "tt:Point", -1, &a->tt__Polyline::Point, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Polyline::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Polyline(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Polyline * SOAP_FMAC4 soap_in_tt__Polyline(struct soap *soap, const char *tag, tt__Polyline *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Polyline*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Polyline, sizeof(tt__Polyline), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Polyline) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Polyline *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Vector(soap, "tt:Point", &a->tt__Polyline::Point, "tt:Vector")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__Polyline::Point.size() < 2)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Polyline *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Polyline, SOAP_TYPE_tt__Polyline, sizeof(tt__Polyline), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Polyline * SOAP_FMAC2 soap_instantiate_tt__Polyline(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Polyline(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Polyline *p; - size_t k = sizeof(tt__Polyline); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Polyline, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Polyline); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Polyline, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Polyline location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Polyline::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Polyline(soap, tag ? tag : "tt:Polyline", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Polyline::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Polyline(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Polyline * SOAP_FMAC4 soap_get_tt__Polyline(struct soap *soap, tt__Polyline *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Polyline(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ItemListDescriptionExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ItemListDescriptionExtension::__any); -} - -void tt__ItemListDescriptionExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ItemListDescriptionExtension::__any); -#endif -} - -int tt__ItemListDescriptionExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ItemListDescriptionExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemListDescriptionExtension(struct soap *soap, const char *tag, int id, const tt__ItemListDescriptionExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ItemListDescriptionExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ItemListDescriptionExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ItemListDescriptionExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ItemListDescriptionExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ItemListDescriptionExtension * SOAP_FMAC4 soap_in_tt__ItemListDescriptionExtension(struct soap *soap, const char *tag, tt__ItemListDescriptionExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ItemListDescriptionExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ItemListDescriptionExtension, sizeof(tt__ItemListDescriptionExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ItemListDescriptionExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ItemListDescriptionExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ItemListDescriptionExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ItemListDescriptionExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ItemListDescriptionExtension, SOAP_TYPE_tt__ItemListDescriptionExtension, sizeof(tt__ItemListDescriptionExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ItemListDescriptionExtension * SOAP_FMAC2 soap_instantiate_tt__ItemListDescriptionExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ItemListDescriptionExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ItemListDescriptionExtension *p; - size_t k = sizeof(tt__ItemListDescriptionExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ItemListDescriptionExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ItemListDescriptionExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ItemListDescriptionExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ItemListDescriptionExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ItemListDescriptionExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ItemListDescriptionExtension(soap, tag ? tag : "tt:ItemListDescriptionExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ItemListDescriptionExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ItemListDescriptionExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ItemListDescriptionExtension * SOAP_FMAC4 soap_get_tt__ItemListDescriptionExtension(struct soap *soap, tt__ItemListDescriptionExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ItemListDescriptionExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ItemListDescription::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(soap, &this->tt__ItemListDescription::SimpleItemDescription); - soap_default_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(soap, &this->tt__ItemListDescription::ElementItemDescription); - this->tt__ItemListDescription::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ItemListDescription::__anyAttribute); -} - -void tt__ItemListDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(soap, &this->tt__ItemListDescription::SimpleItemDescription); - soap_serialize_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(soap, &this->tt__ItemListDescription::ElementItemDescription); - soap_serialize_PointerTott__ItemListDescriptionExtension(soap, &this->tt__ItemListDescription::Extension); -#endif -} - -int tt__ItemListDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ItemListDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemListDescription(struct soap *soap, const char *tag, int id, const tt__ItemListDescription *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ItemListDescription*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ItemListDescription), type)) - return soap->error; - if (soap_out_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(soap, "tt:SimpleItemDescription", -1, &a->tt__ItemListDescription::SimpleItemDescription, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(soap, "tt:ElementItemDescription", -1, &a->tt__ItemListDescription::ElementItemDescription, "")) - return soap->error; - if (soap_out_PointerTott__ItemListDescriptionExtension(soap, "tt:Extension", -1, &a->tt__ItemListDescription::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ItemListDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ItemListDescription(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ItemListDescription * SOAP_FMAC4 soap_in_tt__ItemListDescription(struct soap *soap, const char *tag, tt__ItemListDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ItemListDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ItemListDescription, sizeof(tt__ItemListDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ItemListDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ItemListDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ItemListDescription*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(soap, "tt:SimpleItemDescription", &a->tt__ItemListDescription::SimpleItemDescription, "")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(soap, "tt:ElementItemDescription", &a->tt__ItemListDescription::ElementItemDescription, "")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescriptionExtension(soap, "tt:Extension", &a->tt__ItemListDescription::Extension, "tt:ItemListDescriptionExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ItemListDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ItemListDescription, SOAP_TYPE_tt__ItemListDescription, sizeof(tt__ItemListDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ItemListDescription * SOAP_FMAC2 soap_instantiate_tt__ItemListDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ItemListDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ItemListDescription *p; - size_t k = sizeof(tt__ItemListDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ItemListDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ItemListDescription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ItemListDescription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ItemListDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ItemListDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ItemListDescription(soap, tag ? tag : "tt:ItemListDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ItemListDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ItemListDescription(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ItemListDescription * SOAP_FMAC4 soap_get_tt__ItemListDescription(struct soap *soap, tt__ItemListDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ItemListDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MessageDescriptionExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MessageDescriptionExtension::__any); -} - -void tt__MessageDescriptionExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MessageDescriptionExtension::__any); -#endif -} - -int tt__MessageDescriptionExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MessageDescriptionExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MessageDescriptionExtension(struct soap *soap, const char *tag, int id, const tt__MessageDescriptionExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MessageDescriptionExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MessageDescriptionExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MessageDescriptionExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MessageDescriptionExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MessageDescriptionExtension * SOAP_FMAC4 soap_in_tt__MessageDescriptionExtension(struct soap *soap, const char *tag, tt__MessageDescriptionExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MessageDescriptionExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MessageDescriptionExtension, sizeof(tt__MessageDescriptionExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MessageDescriptionExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MessageDescriptionExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MessageDescriptionExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MessageDescriptionExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MessageDescriptionExtension, SOAP_TYPE_tt__MessageDescriptionExtension, sizeof(tt__MessageDescriptionExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MessageDescriptionExtension * SOAP_FMAC2 soap_instantiate_tt__MessageDescriptionExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MessageDescriptionExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MessageDescriptionExtension *p; - size_t k = sizeof(tt__MessageDescriptionExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MessageDescriptionExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MessageDescriptionExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MessageDescriptionExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MessageDescriptionExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MessageDescriptionExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MessageDescriptionExtension(soap, tag ? tag : "tt:MessageDescriptionExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MessageDescriptionExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MessageDescriptionExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MessageDescriptionExtension * SOAP_FMAC4 soap_get_tt__MessageDescriptionExtension(struct soap *soap, tt__MessageDescriptionExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MessageDescriptionExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MessageDescription::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__MessageDescription::Source = NULL; - this->tt__MessageDescription::Key = NULL; - this->tt__MessageDescription::Data = NULL; - this->tt__MessageDescription::Extension = NULL; - this->tt__MessageDescription::IsProperty = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MessageDescription::__anyAttribute); -} - -void tt__MessageDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ItemListDescription(soap, &this->tt__MessageDescription::Source); - soap_serialize_PointerTott__ItemListDescription(soap, &this->tt__MessageDescription::Key); - soap_serialize_PointerTott__ItemListDescription(soap, &this->tt__MessageDescription::Data); - soap_serialize_PointerTott__MessageDescriptionExtension(soap, &this->tt__MessageDescription::Extension); -#endif -} - -int tt__MessageDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MessageDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MessageDescription(struct soap *soap, const char *tag, int id, const tt__MessageDescription *a, const char *type) -{ - if (((tt__MessageDescription*)a)->IsProperty) - { soap_set_attr(soap, "IsProperty", soap_bool2s(soap, *((tt__MessageDescription*)a)->IsProperty), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MessageDescription*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MessageDescription), type)) - return soap->error; - if (soap_out_PointerTott__ItemListDescription(soap, "tt:Source", -1, &a->tt__MessageDescription::Source, "")) - return soap->error; - if (soap_out_PointerTott__ItemListDescription(soap, "tt:Key", -1, &a->tt__MessageDescription::Key, "")) - return soap->error; - if (soap_out_PointerTott__ItemListDescription(soap, "tt:Data", -1, &a->tt__MessageDescription::Data, "")) - return soap->error; - if (soap_out_PointerTott__MessageDescriptionExtension(soap, "tt:Extension", -1, &a->tt__MessageDescription::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MessageDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MessageDescription(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MessageDescription * SOAP_FMAC4 soap_in_tt__MessageDescription(struct soap *soap, const char *tag, tt__MessageDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MessageDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MessageDescription, sizeof(tt__MessageDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MessageDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MessageDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "IsProperty", 5, 0); - if (t) - { - if (!(((tt__MessageDescription*)a)->IsProperty = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__MessageDescription*)a)->IsProperty)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MessageDescription*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Source1 = 1; - size_t soap_flag_Key1 = 1; - size_t soap_flag_Data1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Source1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescription(soap, "tt:Source", &a->tt__MessageDescription::Source, "tt:ItemListDescription")) - { soap_flag_Source1--; - continue; - } - } - if (soap_flag_Key1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescription(soap, "tt:Key", &a->tt__MessageDescription::Key, "tt:ItemListDescription")) - { soap_flag_Key1--; - continue; - } - } - if (soap_flag_Data1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListDescription(soap, "tt:Data", &a->tt__MessageDescription::Data, "tt:ItemListDescription")) - { soap_flag_Data1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MessageDescriptionExtension(soap, "tt:Extension", &a->tt__MessageDescription::Extension, "tt:MessageDescriptionExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MessageDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MessageDescription, SOAP_TYPE_tt__MessageDescription, sizeof(tt__MessageDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MessageDescription * SOAP_FMAC2 soap_instantiate_tt__MessageDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MessageDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MessageDescription *p; - size_t k = sizeof(tt__MessageDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MessageDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MessageDescription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MessageDescription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MessageDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MessageDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MessageDescription(soap, tag ? tag : "tt:MessageDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MessageDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MessageDescription(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MessageDescription * SOAP_FMAC4 soap_get_tt__MessageDescription(struct soap *soap, tt__MessageDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MessageDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ItemListExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ItemListExtension::__any); -} - -void tt__ItemListExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ItemListExtension::__any); -#endif -} - -int tt__ItemListExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ItemListExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemListExtension(struct soap *soap, const char *tag, int id, const tt__ItemListExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ItemListExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ItemListExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ItemListExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ItemListExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ItemListExtension * SOAP_FMAC4 soap_in_tt__ItemListExtension(struct soap *soap, const char *tag, tt__ItemListExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ItemListExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ItemListExtension, sizeof(tt__ItemListExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ItemListExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ItemListExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ItemListExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ItemListExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ItemListExtension, SOAP_TYPE_tt__ItemListExtension, sizeof(tt__ItemListExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ItemListExtension * SOAP_FMAC2 soap_instantiate_tt__ItemListExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ItemListExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ItemListExtension *p; - size_t k = sizeof(tt__ItemListExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ItemListExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ItemListExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ItemListExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ItemListExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ItemListExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ItemListExtension(soap, tag ? tag : "tt:ItemListExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ItemListExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ItemListExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ItemListExtension * SOAP_FMAC4 soap_get_tt__ItemListExtension(struct soap *soap, tt__ItemListExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ItemListExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ItemList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOf_tt__ItemList_SimpleItem(soap, &this->tt__ItemList::SimpleItem); - soap_default_std__vectorTemplateOf_tt__ItemList_ElementItem(soap, &this->tt__ItemList::ElementItem); - this->tt__ItemList::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ItemList::__anyAttribute); -} - -void tt__ItemList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOf_tt__ItemList_SimpleItem(soap, &this->tt__ItemList::SimpleItem); - soap_serialize_std__vectorTemplateOf_tt__ItemList_ElementItem(soap, &this->tt__ItemList::ElementItem); - soap_serialize_PointerTott__ItemListExtension(soap, &this->tt__ItemList::Extension); -#endif -} - -int tt__ItemList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ItemList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemList(struct soap *soap, const char *tag, int id, const tt__ItemList *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ItemList*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ItemList), type)) - return soap->error; - if (soap_out_std__vectorTemplateOf_tt__ItemList_SimpleItem(soap, "tt:SimpleItem", -1, &a->tt__ItemList::SimpleItem, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_tt__ItemList_ElementItem(soap, "tt:ElementItem", -1, &a->tt__ItemList::ElementItem, "")) - return soap->error; - if (soap_out_PointerTott__ItemListExtension(soap, "tt:Extension", -1, &a->tt__ItemList::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ItemList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ItemList(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ItemList * SOAP_FMAC4 soap_in_tt__ItemList(struct soap *soap, const char *tag, tt__ItemList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ItemList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ItemList, sizeof(tt__ItemList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ItemList) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ItemList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ItemList*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_tt__ItemList_SimpleItem(soap, "tt:SimpleItem", &a->tt__ItemList::SimpleItem, "")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_tt__ItemList_ElementItem(soap, "tt:ElementItem", &a->tt__ItemList::ElementItem, "")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ItemListExtension(soap, "tt:Extension", &a->tt__ItemList::Extension, "tt:ItemListExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ItemList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ItemList, SOAP_TYPE_tt__ItemList, sizeof(tt__ItemList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ItemList * SOAP_FMAC2 soap_instantiate_tt__ItemList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ItemList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ItemList *p; - size_t k = sizeof(tt__ItemList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ItemList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ItemList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ItemList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ItemList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ItemList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ItemList(soap, tag ? tag : "tt:ItemList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ItemList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ItemList(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ItemList * SOAP_FMAC4 soap_get_tt__ItemList(struct soap *soap, tt__ItemList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ItemList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MessageExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MessageExtension::__any); -} - -void tt__MessageExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MessageExtension::__any); -#endif -} - -int tt__MessageExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MessageExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MessageExtension(struct soap *soap, const char *tag, int id, const tt__MessageExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MessageExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MessageExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MessageExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MessageExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MessageExtension * SOAP_FMAC4 soap_in_tt__MessageExtension(struct soap *soap, const char *tag, tt__MessageExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MessageExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MessageExtension, sizeof(tt__MessageExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MessageExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MessageExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MessageExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MessageExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MessageExtension, SOAP_TYPE_tt__MessageExtension, sizeof(tt__MessageExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MessageExtension * SOAP_FMAC2 soap_instantiate_tt__MessageExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MessageExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MessageExtension *p; - size_t k = sizeof(tt__MessageExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MessageExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MessageExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MessageExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MessageExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MessageExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MessageExtension(soap, tag ? tag : "tt:MessageExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MessageExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MessageExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MessageExtension * SOAP_FMAC4 soap_get_tt__MessageExtension(struct soap *soap, tt__MessageExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MessageExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NoiseReductionOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__NoiseReductionOptions::Level); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NoiseReductionOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__NoiseReductionOptions::__anyAttribute); -} - -void tt__NoiseReductionOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__NoiseReductionOptions::Level, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NoiseReductionOptions::__any); -#endif -} - -int tt__NoiseReductionOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NoiseReductionOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NoiseReductionOptions(struct soap *soap, const char *tag, int id, const tt__NoiseReductionOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NoiseReductionOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NoiseReductionOptions), type)) - return soap->error; - if (soap_out_bool(soap, "tt:Level", -1, &a->tt__NoiseReductionOptions::Level, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NoiseReductionOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NoiseReductionOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NoiseReductionOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NoiseReductionOptions * SOAP_FMAC4 soap_in_tt__NoiseReductionOptions(struct soap *soap, const char *tag, tt__NoiseReductionOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NoiseReductionOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NoiseReductionOptions, sizeof(tt__NoiseReductionOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NoiseReductionOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NoiseReductionOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NoiseReductionOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Level", &a->tt__NoiseReductionOptions::Level, "xsd:boolean")) - { soap_flag_Level1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NoiseReductionOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Level1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NoiseReductionOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NoiseReductionOptions, SOAP_TYPE_tt__NoiseReductionOptions, sizeof(tt__NoiseReductionOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NoiseReductionOptions * SOAP_FMAC2 soap_instantiate_tt__NoiseReductionOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NoiseReductionOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NoiseReductionOptions *p; - size_t k = sizeof(tt__NoiseReductionOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NoiseReductionOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NoiseReductionOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NoiseReductionOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NoiseReductionOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NoiseReductionOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NoiseReductionOptions(soap, tag ? tag : "tt:NoiseReductionOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NoiseReductionOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NoiseReductionOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NoiseReductionOptions * SOAP_FMAC4 soap_get_tt__NoiseReductionOptions(struct soap *soap, tt__NoiseReductionOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NoiseReductionOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#if defined(__BORLANDC__) -#pragma option pop -#pragma option pop -#endif - -/* End of soapC_nnn.cpp */ diff --git a/gen/soapC_001.o b/gen/soapC_001.o deleted file mode 100644 index 1ed6146..0000000 Binary files a/gen/soapC_001.o and /dev/null differ diff --git a/gen/soapC_002.cpp b/gen/soapC_002.cpp deleted file mode 100644 index 018ba0d..0000000 --- a/gen/soapC_002.cpp +++ /dev/null @@ -1,119175 +0,0 @@ -/* soapC_nnn.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#if defined(__BORLANDC__) -#pragma option push -w-8060 -#pragma option push -w-8004 -#endif - -#include "soapH.h" - -SOAP_SOURCE_STAMP("@(#) soapC_nnn.cpp ver 2.8.138 2025-04-24 07:11:07 GMT") - - -void tt__DefoggingOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__DefoggingOptions::Mode); - soap_default_bool(soap, &this->tt__DefoggingOptions::Level); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DefoggingOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__DefoggingOptions::__anyAttribute); -} - -void tt__DefoggingOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__DefoggingOptions::Mode); - soap_embedded(soap, &this->tt__DefoggingOptions::Level, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DefoggingOptions::__any); -#endif -} - -int tt__DefoggingOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DefoggingOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingOptions(struct soap *soap, const char *tag, int id, const tt__DefoggingOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DefoggingOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DefoggingOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:Mode", -1, &a->tt__DefoggingOptions::Mode, "")) - return soap->error; - if (soap_out_bool(soap, "tt:Level", -1, &a->tt__DefoggingOptions::Level, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DefoggingOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DefoggingOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DefoggingOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DefoggingOptions * SOAP_FMAC4 soap_in_tt__DefoggingOptions(struct soap *soap, const char *tag, tt__DefoggingOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DefoggingOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DefoggingOptions, sizeof(tt__DefoggingOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DefoggingOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DefoggingOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DefoggingOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:Mode", &a->tt__DefoggingOptions::Mode, "xsd:string")) - continue; - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Level", &a->tt__DefoggingOptions::Level, "xsd:boolean")) - { soap_flag_Level1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DefoggingOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__DefoggingOptions::Mode.size() < 1 || soap_flag_Level1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DefoggingOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DefoggingOptions, SOAP_TYPE_tt__DefoggingOptions, sizeof(tt__DefoggingOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DefoggingOptions * SOAP_FMAC2 soap_instantiate_tt__DefoggingOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DefoggingOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DefoggingOptions *p; - size_t k = sizeof(tt__DefoggingOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DefoggingOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DefoggingOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DefoggingOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DefoggingOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DefoggingOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DefoggingOptions(soap, tag ? tag : "tt:DefoggingOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DefoggingOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DefoggingOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DefoggingOptions * SOAP_FMAC4 soap_get_tt__DefoggingOptions(struct soap *soap, tt__DefoggingOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DefoggingOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ToneCompensationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__ToneCompensationOptions::Mode); - soap_default_bool(soap, &this->tt__ToneCompensationOptions::Level); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ToneCompensationOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ToneCompensationOptions::__anyAttribute); -} - -void tt__ToneCompensationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__ToneCompensationOptions::Mode); - soap_embedded(soap, &this->tt__ToneCompensationOptions::Level, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ToneCompensationOptions::__any); -#endif -} - -int tt__ToneCompensationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ToneCompensationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationOptions(struct soap *soap, const char *tag, int id, const tt__ToneCompensationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ToneCompensationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ToneCompensationOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:Mode", -1, &a->tt__ToneCompensationOptions::Mode, "")) - return soap->error; - if (soap_out_bool(soap, "tt:Level", -1, &a->tt__ToneCompensationOptions::Level, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ToneCompensationOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ToneCompensationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ToneCompensationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ToneCompensationOptions * SOAP_FMAC4 soap_in_tt__ToneCompensationOptions(struct soap *soap, const char *tag, tt__ToneCompensationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ToneCompensationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ToneCompensationOptions, sizeof(tt__ToneCompensationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ToneCompensationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ToneCompensationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ToneCompensationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:Mode", &a->tt__ToneCompensationOptions::Mode, "xsd:string")) - continue; - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Level", &a->tt__ToneCompensationOptions::Level, "xsd:boolean")) - { soap_flag_Level1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ToneCompensationOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__ToneCompensationOptions::Mode.size() < 1 || soap_flag_Level1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ToneCompensationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ToneCompensationOptions, SOAP_TYPE_tt__ToneCompensationOptions, sizeof(tt__ToneCompensationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ToneCompensationOptions * SOAP_FMAC2 soap_instantiate_tt__ToneCompensationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ToneCompensationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ToneCompensationOptions *p; - size_t k = sizeof(tt__ToneCompensationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ToneCompensationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ToneCompensationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ToneCompensationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ToneCompensationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ToneCompensationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ToneCompensationOptions(soap, tag ? tag : "tt:ToneCompensationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ToneCompensationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ToneCompensationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ToneCompensationOptions * SOAP_FMAC4 soap_get_tt__ToneCompensationOptions(struct soap *soap, tt__ToneCompensationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ToneCompensationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusOptions20Extension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusOptions20Extension::__any); - this->tt__FocusOptions20Extension::AFModes = NULL; -} - -void tt__FocusOptions20Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusOptions20Extension::__any); - soap_serialize_PointerTott__StringAttrList(soap, &this->tt__FocusOptions20Extension::AFModes); -#endif -} - -int tt__FocusOptions20Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusOptions20Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusOptions20Extension(struct soap *soap, const char *tag, int id, const tt__FocusOptions20Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusOptions20Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FocusOptions20Extension::__any, "")) - return soap->error; - if (soap_out_PointerTott__StringAttrList(soap, "tt:AFModes", -1, &a->tt__FocusOptions20Extension::AFModes, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusOptions20Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusOptions20Extension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusOptions20Extension * SOAP_FMAC4 soap_in_tt__FocusOptions20Extension(struct soap *soap, const char *tag, tt__FocusOptions20Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusOptions20Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusOptions20Extension, sizeof(tt__FocusOptions20Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusOptions20Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusOptions20Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AFModes1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AFModes1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__StringAttrList(soap, "tt:AFModes", &a->tt__FocusOptions20Extension::AFModes, "tt:StringAttrList")) - { soap_flag_AFModes1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FocusOptions20Extension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__FocusOptions20Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusOptions20Extension, SOAP_TYPE_tt__FocusOptions20Extension, sizeof(tt__FocusOptions20Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusOptions20Extension * SOAP_FMAC2 soap_instantiate_tt__FocusOptions20Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusOptions20Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusOptions20Extension *p; - size_t k = sizeof(tt__FocusOptions20Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusOptions20Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusOptions20Extension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusOptions20Extension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusOptions20Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusOptions20Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusOptions20Extension(soap, tag ? tag : "tt:FocusOptions20Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusOptions20Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusOptions20Extension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusOptions20Extension * SOAP_FMAC4 soap_get_tt__FocusOptions20Extension(struct soap *soap, tt__FocusOptions20Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusOptions20Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__AutoFocusMode(soap, &this->tt__FocusOptions20::AutoFocusModes); - this->tt__FocusOptions20::DefaultSpeed = NULL; - this->tt__FocusOptions20::NearLimit = NULL; - this->tt__FocusOptions20::FarLimit = NULL; - this->tt__FocusOptions20::Extension = NULL; -} - -void tt__FocusOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__AutoFocusMode(soap, &this->tt__FocusOptions20::AutoFocusModes); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__FocusOptions20::DefaultSpeed); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__FocusOptions20::NearLimit); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__FocusOptions20::FarLimit); - soap_serialize_PointerTott__FocusOptions20Extension(soap, &this->tt__FocusOptions20::Extension); -#endif -} - -int tt__FocusOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusOptions20(struct soap *soap, const char *tag, int id, const tt__FocusOptions20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusOptions20), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__AutoFocusMode(soap, "tt:AutoFocusModes", -1, &a->tt__FocusOptions20::AutoFocusModes, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:DefaultSpeed", -1, &a->tt__FocusOptions20::DefaultSpeed, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:NearLimit", -1, &a->tt__FocusOptions20::NearLimit, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:FarLimit", -1, &a->tt__FocusOptions20::FarLimit, "")) - return soap->error; - if (soap_out_PointerTott__FocusOptions20Extension(soap, "tt:Extension", -1, &a->tt__FocusOptions20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusOptions20 * SOAP_FMAC4 soap_in_tt__FocusOptions20(struct soap *soap, const char *tag, tt__FocusOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusOptions20, sizeof(tt__FocusOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DefaultSpeed1 = 1; - size_t soap_flag_NearLimit1 = 1; - size_t soap_flag_FarLimit1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__AutoFocusMode(soap, "tt:AutoFocusModes", &a->tt__FocusOptions20::AutoFocusModes, "tt:AutoFocusMode")) - continue; - } - if (soap_flag_DefaultSpeed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:DefaultSpeed", &a->tt__FocusOptions20::DefaultSpeed, "tt:FloatRange")) - { soap_flag_DefaultSpeed1--; - continue; - } - } - if (soap_flag_NearLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:NearLimit", &a->tt__FocusOptions20::NearLimit, "tt:FloatRange")) - { soap_flag_NearLimit1--; - continue; - } - } - if (soap_flag_FarLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:FarLimit", &a->tt__FocusOptions20::FarLimit, "tt:FloatRange")) - { soap_flag_FarLimit1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusOptions20Extension(soap, "tt:Extension", &a->tt__FocusOptions20::Extension, "tt:FocusOptions20Extension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__FocusOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusOptions20, SOAP_TYPE_tt__FocusOptions20, sizeof(tt__FocusOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusOptions20 * SOAP_FMAC2 soap_instantiate_tt__FocusOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusOptions20 *p; - size_t k = sizeof(tt__FocusOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusOptions20(soap, tag ? tag : "tt:FocusOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusOptions20 * SOAP_FMAC4 soap_get_tt__FocusOptions20(struct soap *soap, tt__FocusOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WhiteBalanceOptions20Extension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__WhiteBalanceOptions20Extension::__any); -} - -void tt__WhiteBalanceOptions20Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__WhiteBalanceOptions20Extension::__any); -#endif -} - -int tt__WhiteBalanceOptions20Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WhiteBalanceOptions20Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceOptions20Extension(struct soap *soap, const char *tag, int id, const tt__WhiteBalanceOptions20Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WhiteBalanceOptions20Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__WhiteBalanceOptions20Extension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WhiteBalanceOptions20Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WhiteBalanceOptions20Extension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WhiteBalanceOptions20Extension * SOAP_FMAC4 soap_in_tt__WhiteBalanceOptions20Extension(struct soap *soap, const char *tag, tt__WhiteBalanceOptions20Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WhiteBalanceOptions20Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalanceOptions20Extension, sizeof(tt__WhiteBalanceOptions20Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WhiteBalanceOptions20Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WhiteBalanceOptions20Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__WhiteBalanceOptions20Extension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__WhiteBalanceOptions20Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WhiteBalanceOptions20Extension, SOAP_TYPE_tt__WhiteBalanceOptions20Extension, sizeof(tt__WhiteBalanceOptions20Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WhiteBalanceOptions20Extension * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceOptions20Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WhiteBalanceOptions20Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WhiteBalanceOptions20Extension *p; - size_t k = sizeof(tt__WhiteBalanceOptions20Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WhiteBalanceOptions20Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WhiteBalanceOptions20Extension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WhiteBalanceOptions20Extension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WhiteBalanceOptions20Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WhiteBalanceOptions20Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WhiteBalanceOptions20Extension(soap, tag ? tag : "tt:WhiteBalanceOptions20Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WhiteBalanceOptions20Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WhiteBalanceOptions20Extension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WhiteBalanceOptions20Extension * SOAP_FMAC4 soap_get_tt__WhiteBalanceOptions20Extension(struct soap *soap, tt__WhiteBalanceOptions20Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalanceOptions20Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WhiteBalanceOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__WhiteBalanceMode(soap, &this->tt__WhiteBalanceOptions20::Mode); - this->tt__WhiteBalanceOptions20::YrGain = NULL; - this->tt__WhiteBalanceOptions20::YbGain = NULL; - this->tt__WhiteBalanceOptions20::Extension = NULL; -} - -void tt__WhiteBalanceOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__WhiteBalanceMode(soap, &this->tt__WhiteBalanceOptions20::Mode); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__WhiteBalanceOptions20::YrGain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__WhiteBalanceOptions20::YbGain); - soap_serialize_PointerTott__WhiteBalanceOptions20Extension(soap, &this->tt__WhiteBalanceOptions20::Extension); -#endif -} - -int tt__WhiteBalanceOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WhiteBalanceOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceOptions20(struct soap *soap, const char *tag, int id, const tt__WhiteBalanceOptions20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WhiteBalanceOptions20), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__WhiteBalanceMode(soap, "tt:Mode", -1, &a->tt__WhiteBalanceOptions20::Mode, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:YrGain", -1, &a->tt__WhiteBalanceOptions20::YrGain, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:YbGain", -1, &a->tt__WhiteBalanceOptions20::YbGain, "")) - return soap->error; - if (soap_out_PointerTott__WhiteBalanceOptions20Extension(soap, "tt:Extension", -1, &a->tt__WhiteBalanceOptions20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WhiteBalanceOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WhiteBalanceOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WhiteBalanceOptions20 * SOAP_FMAC4 soap_in_tt__WhiteBalanceOptions20(struct soap *soap, const char *tag, tt__WhiteBalanceOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WhiteBalanceOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalanceOptions20, sizeof(tt__WhiteBalanceOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WhiteBalanceOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WhiteBalanceOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_YrGain1 = 1; - size_t soap_flag_YbGain1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__WhiteBalanceMode(soap, "tt:Mode", &a->tt__WhiteBalanceOptions20::Mode, "tt:WhiteBalanceMode")) - continue; - } - if (soap_flag_YrGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:YrGain", &a->tt__WhiteBalanceOptions20::YrGain, "tt:FloatRange")) - { soap_flag_YrGain1--; - continue; - } - } - if (soap_flag_YbGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:YbGain", &a->tt__WhiteBalanceOptions20::YbGain, "tt:FloatRange")) - { soap_flag_YbGain1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WhiteBalanceOptions20Extension(soap, "tt:Extension", &a->tt__WhiteBalanceOptions20::Extension, "tt:WhiteBalanceOptions20Extension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__WhiteBalanceOptions20::Mode.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WhiteBalanceOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WhiteBalanceOptions20, SOAP_TYPE_tt__WhiteBalanceOptions20, sizeof(tt__WhiteBalanceOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WhiteBalanceOptions20 * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WhiteBalanceOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WhiteBalanceOptions20 *p; - size_t k = sizeof(tt__WhiteBalanceOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WhiteBalanceOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WhiteBalanceOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WhiteBalanceOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WhiteBalanceOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WhiteBalanceOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WhiteBalanceOptions20(soap, tag ? tag : "tt:WhiteBalanceOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WhiteBalanceOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WhiteBalanceOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WhiteBalanceOptions20 * SOAP_FMAC4 soap_get_tt__WhiteBalanceOptions20(struct soap *soap, tt__WhiteBalanceOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalanceOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusConfiguration20Extension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusConfiguration20Extension::__any); -} - -void tt__FocusConfiguration20Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusConfiguration20Extension::__any); -#endif -} - -int tt__FocusConfiguration20Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusConfiguration20Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusConfiguration20Extension(struct soap *soap, const char *tag, int id, const tt__FocusConfiguration20Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusConfiguration20Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FocusConfiguration20Extension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusConfiguration20Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusConfiguration20Extension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusConfiguration20Extension * SOAP_FMAC4 soap_in_tt__FocusConfiguration20Extension(struct soap *soap, const char *tag, tt__FocusConfiguration20Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusConfiguration20Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusConfiguration20Extension, sizeof(tt__FocusConfiguration20Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusConfiguration20Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusConfiguration20Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FocusConfiguration20Extension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__FocusConfiguration20Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusConfiguration20Extension, SOAP_TYPE_tt__FocusConfiguration20Extension, sizeof(tt__FocusConfiguration20Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusConfiguration20Extension * SOAP_FMAC2 soap_instantiate_tt__FocusConfiguration20Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusConfiguration20Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusConfiguration20Extension *p; - size_t k = sizeof(tt__FocusConfiguration20Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusConfiguration20Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusConfiguration20Extension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusConfiguration20Extension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusConfiguration20Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusConfiguration20Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusConfiguration20Extension(soap, tag ? tag : "tt:FocusConfiguration20Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusConfiguration20Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusConfiguration20Extension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusConfiguration20Extension * SOAP_FMAC4 soap_get_tt__FocusConfiguration20Extension(struct soap *soap, tt__FocusConfiguration20Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusConfiguration20Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusConfiguration20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AutoFocusMode(soap, &this->tt__FocusConfiguration20::AutoFocusMode); - this->tt__FocusConfiguration20::DefaultSpeed = NULL; - this->tt__FocusConfiguration20::NearLimit = NULL; - this->tt__FocusConfiguration20::FarLimit = NULL; - this->tt__FocusConfiguration20::Extension = NULL; - this->tt__FocusConfiguration20::AFMode = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__FocusConfiguration20::__anyAttribute); -} - -void tt__FocusConfiguration20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTofloat(soap, &this->tt__FocusConfiguration20::DefaultSpeed); - soap_serialize_PointerTofloat(soap, &this->tt__FocusConfiguration20::NearLimit); - soap_serialize_PointerTofloat(soap, &this->tt__FocusConfiguration20::FarLimit); - soap_serialize_PointerTott__FocusConfiguration20Extension(soap, &this->tt__FocusConfiguration20::Extension); -#endif -} - -int tt__FocusConfiguration20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusConfiguration20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusConfiguration20(struct soap *soap, const char *tag, int id, const tt__FocusConfiguration20 *a, const char *type) -{ - if (((tt__FocusConfiguration20*)a)->AFMode) - { soap_set_attr(soap, "AFMode", soap_tt__StringAttrList2s(soap, *((tt__FocusConfiguration20*)a)->AFMode), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FocusConfiguration20*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusConfiguration20), type)) - return soap->error; - if (soap_out_tt__AutoFocusMode(soap, "tt:AutoFocusMode", -1, &a->tt__FocusConfiguration20::AutoFocusMode, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:DefaultSpeed", -1, &a->tt__FocusConfiguration20::DefaultSpeed, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:NearLimit", -1, &a->tt__FocusConfiguration20::NearLimit, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:FarLimit", -1, &a->tt__FocusConfiguration20::FarLimit, "")) - return soap->error; - if (soap_out_PointerTott__FocusConfiguration20Extension(soap, "tt:Extension", -1, &a->tt__FocusConfiguration20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusConfiguration20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusConfiguration20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusConfiguration20 * SOAP_FMAC4 soap_in_tt__FocusConfiguration20(struct soap *soap, const char *tag, tt__FocusConfiguration20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusConfiguration20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusConfiguration20, sizeof(tt__FocusConfiguration20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusConfiguration20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusConfiguration20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "AFMode", 1, 0); - if (t) - { - if (!(((tt__FocusConfiguration20*)a)->AFMode = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((tt__FocusConfiguration20*)a)->AFMode)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FocusConfiguration20*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AutoFocusMode1 = 1; - size_t soap_flag_DefaultSpeed1 = 1; - size_t soap_flag_NearLimit1 = 1; - size_t soap_flag_FarLimit1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AutoFocusMode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__AutoFocusMode(soap, "tt:AutoFocusMode", &a->tt__FocusConfiguration20::AutoFocusMode, "tt:AutoFocusMode")) - { soap_flag_AutoFocusMode1--; - continue; - } - } - if (soap_flag_DefaultSpeed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:DefaultSpeed", &a->tt__FocusConfiguration20::DefaultSpeed, "xsd:float")) - { soap_flag_DefaultSpeed1--; - continue; - } - } - if (soap_flag_NearLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:NearLimit", &a->tt__FocusConfiguration20::NearLimit, "xsd:float")) - { soap_flag_NearLimit1--; - continue; - } - } - if (soap_flag_FarLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:FarLimit", &a->tt__FocusConfiguration20::FarLimit, "xsd:float")) - { soap_flag_FarLimit1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusConfiguration20Extension(soap, "tt:Extension", &a->tt__FocusConfiguration20::Extension, "tt:FocusConfiguration20Extension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AutoFocusMode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FocusConfiguration20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusConfiguration20, SOAP_TYPE_tt__FocusConfiguration20, sizeof(tt__FocusConfiguration20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusConfiguration20 * SOAP_FMAC2 soap_instantiate_tt__FocusConfiguration20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusConfiguration20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusConfiguration20 *p; - size_t k = sizeof(tt__FocusConfiguration20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusConfiguration20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusConfiguration20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusConfiguration20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusConfiguration20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusConfiguration20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusConfiguration20(soap, tag ? tag : "tt:FocusConfiguration20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusConfiguration20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusConfiguration20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusConfiguration20 * SOAP_FMAC4 soap_get_tt__FocusConfiguration20(struct soap *soap, tt__FocusConfiguration20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusConfiguration20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WhiteBalance20Extension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__WhiteBalance20Extension::__any); -} - -void tt__WhiteBalance20Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__WhiteBalance20Extension::__any); -#endif -} - -int tt__WhiteBalance20Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WhiteBalance20Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalance20Extension(struct soap *soap, const char *tag, int id, const tt__WhiteBalance20Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WhiteBalance20Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__WhiteBalance20Extension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WhiteBalance20Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WhiteBalance20Extension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WhiteBalance20Extension * SOAP_FMAC4 soap_in_tt__WhiteBalance20Extension(struct soap *soap, const char *tag, tt__WhiteBalance20Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WhiteBalance20Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalance20Extension, sizeof(tt__WhiteBalance20Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WhiteBalance20Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WhiteBalance20Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__WhiteBalance20Extension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__WhiteBalance20Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WhiteBalance20Extension, SOAP_TYPE_tt__WhiteBalance20Extension, sizeof(tt__WhiteBalance20Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WhiteBalance20Extension * SOAP_FMAC2 soap_instantiate_tt__WhiteBalance20Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WhiteBalance20Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WhiteBalance20Extension *p; - size_t k = sizeof(tt__WhiteBalance20Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WhiteBalance20Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WhiteBalance20Extension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WhiteBalance20Extension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WhiteBalance20Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WhiteBalance20Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WhiteBalance20Extension(soap, tag ? tag : "tt:WhiteBalance20Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WhiteBalance20Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WhiteBalance20Extension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WhiteBalance20Extension * SOAP_FMAC4 soap_get_tt__WhiteBalance20Extension(struct soap *soap, tt__WhiteBalance20Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalance20Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WhiteBalance20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__WhiteBalanceMode(soap, &this->tt__WhiteBalance20::Mode); - this->tt__WhiteBalance20::CrGain = NULL; - this->tt__WhiteBalance20::CbGain = NULL; - this->tt__WhiteBalance20::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__WhiteBalance20::__anyAttribute); -} - -void tt__WhiteBalance20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTofloat(soap, &this->tt__WhiteBalance20::CrGain); - soap_serialize_PointerTofloat(soap, &this->tt__WhiteBalance20::CbGain); - soap_serialize_PointerTott__WhiteBalance20Extension(soap, &this->tt__WhiteBalance20::Extension); -#endif -} - -int tt__WhiteBalance20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WhiteBalance20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalance20(struct soap *soap, const char *tag, int id, const tt__WhiteBalance20 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__WhiteBalance20*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WhiteBalance20), type)) - return soap->error; - if (soap_out_tt__WhiteBalanceMode(soap, "tt:Mode", -1, &a->tt__WhiteBalance20::Mode, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:CrGain", -1, &a->tt__WhiteBalance20::CrGain, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:CbGain", -1, &a->tt__WhiteBalance20::CbGain, "")) - return soap->error; - if (soap_out_PointerTott__WhiteBalance20Extension(soap, "tt:Extension", -1, &a->tt__WhiteBalance20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WhiteBalance20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WhiteBalance20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WhiteBalance20 * SOAP_FMAC4 soap_in_tt__WhiteBalance20(struct soap *soap, const char *tag, tt__WhiteBalance20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WhiteBalance20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalance20, sizeof(tt__WhiteBalance20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WhiteBalance20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WhiteBalance20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__WhiteBalance20*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_CrGain1 = 1; - size_t soap_flag_CbGain1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__WhiteBalanceMode(soap, "tt:Mode", &a->tt__WhiteBalance20::Mode, "tt:WhiteBalanceMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_CrGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:CrGain", &a->tt__WhiteBalance20::CrGain, "xsd:float")) - { soap_flag_CrGain1--; - continue; - } - } - if (soap_flag_CbGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:CbGain", &a->tt__WhiteBalance20::CbGain, "xsd:float")) - { soap_flag_CbGain1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WhiteBalance20Extension(soap, "tt:Extension", &a->tt__WhiteBalance20::Extension, "tt:WhiteBalance20Extension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WhiteBalance20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WhiteBalance20, SOAP_TYPE_tt__WhiteBalance20, sizeof(tt__WhiteBalance20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WhiteBalance20 * SOAP_FMAC2 soap_instantiate_tt__WhiteBalance20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WhiteBalance20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WhiteBalance20 *p; - size_t k = sizeof(tt__WhiteBalance20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WhiteBalance20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WhiteBalance20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WhiteBalance20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WhiteBalance20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WhiteBalance20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WhiteBalance20(soap, tag ? tag : "tt:WhiteBalance20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WhiteBalance20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WhiteBalance20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WhiteBalance20 * SOAP_FMAC4 soap_get_tt__WhiteBalance20(struct soap *soap, tt__WhiteBalance20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalance20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelativeFocusOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__RelativeFocusOptions20::Distance = NULL; - this->tt__RelativeFocusOptions20::Speed = NULL; -} - -void tt__RelativeFocusOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FloatRange(soap, &this->tt__RelativeFocusOptions20::Distance); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__RelativeFocusOptions20::Speed); -#endif -} - -int tt__RelativeFocusOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelativeFocusOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelativeFocusOptions20(struct soap *soap, const char *tag, int id, const tt__RelativeFocusOptions20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelativeFocusOptions20), type)) - return soap->error; - if (!a->tt__RelativeFocusOptions20::Distance) - { if (soap_element_empty(soap, "tt:Distance", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Distance", -1, &a->tt__RelativeFocusOptions20::Distance, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Speed", -1, &a->tt__RelativeFocusOptions20::Speed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RelativeFocusOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelativeFocusOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelativeFocusOptions20 * SOAP_FMAC4 soap_in_tt__RelativeFocusOptions20(struct soap *soap, const char *tag, tt__RelativeFocusOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RelativeFocusOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelativeFocusOptions20, sizeof(tt__RelativeFocusOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelativeFocusOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RelativeFocusOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Distance1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Distance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Distance", &a->tt__RelativeFocusOptions20::Distance, "tt:FloatRange")) - { soap_flag_Distance1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Speed", &a->tt__RelativeFocusOptions20::Speed, "tt:FloatRange")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__RelativeFocusOptions20::Distance)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RelativeFocusOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelativeFocusOptions20, SOAP_TYPE_tt__RelativeFocusOptions20, sizeof(tt__RelativeFocusOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RelativeFocusOptions20 * SOAP_FMAC2 soap_instantiate_tt__RelativeFocusOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelativeFocusOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelativeFocusOptions20 *p; - size_t k = sizeof(tt__RelativeFocusOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelativeFocusOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelativeFocusOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelativeFocusOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelativeFocusOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelativeFocusOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelativeFocusOptions20(soap, tag ? tag : "tt:RelativeFocusOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelativeFocusOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelativeFocusOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelativeFocusOptions20 * SOAP_FMAC4 soap_get_tt__RelativeFocusOptions20(struct soap *soap, tt__RelativeFocusOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelativeFocusOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MoveOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__MoveOptions20::Absolute = NULL; - this->tt__MoveOptions20::Relative = NULL; - this->tt__MoveOptions20::Continuous = NULL; -} - -void tt__MoveOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AbsoluteFocusOptions(soap, &this->tt__MoveOptions20::Absolute); - soap_serialize_PointerTott__RelativeFocusOptions20(soap, &this->tt__MoveOptions20::Relative); - soap_serialize_PointerTott__ContinuousFocusOptions(soap, &this->tt__MoveOptions20::Continuous); -#endif -} - -int tt__MoveOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MoveOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveOptions20(struct soap *soap, const char *tag, int id, const tt__MoveOptions20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MoveOptions20), type)) - return soap->error; - if (soap_out_PointerTott__AbsoluteFocusOptions(soap, "tt:Absolute", -1, &a->tt__MoveOptions20::Absolute, "")) - return soap->error; - if (soap_out_PointerTott__RelativeFocusOptions20(soap, "tt:Relative", -1, &a->tt__MoveOptions20::Relative, "")) - return soap->error; - if (soap_out_PointerTott__ContinuousFocusOptions(soap, "tt:Continuous", -1, &a->tt__MoveOptions20::Continuous, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MoveOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MoveOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MoveOptions20 * SOAP_FMAC4 soap_in_tt__MoveOptions20(struct soap *soap, const char *tag, tt__MoveOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MoveOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MoveOptions20, sizeof(tt__MoveOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MoveOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MoveOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Absolute1 = 1; - size_t soap_flag_Relative1 = 1; - size_t soap_flag_Continuous1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Absolute1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AbsoluteFocusOptions(soap, "tt:Absolute", &a->tt__MoveOptions20::Absolute, "tt:AbsoluteFocusOptions")) - { soap_flag_Absolute1--; - continue; - } - } - if (soap_flag_Relative1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RelativeFocusOptions20(soap, "tt:Relative", &a->tt__MoveOptions20::Relative, "tt:RelativeFocusOptions20")) - { soap_flag_Relative1--; - continue; - } - } - if (soap_flag_Continuous1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ContinuousFocusOptions(soap, "tt:Continuous", &a->tt__MoveOptions20::Continuous, "tt:ContinuousFocusOptions")) - { soap_flag_Continuous1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MoveOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MoveOptions20, SOAP_TYPE_tt__MoveOptions20, sizeof(tt__MoveOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MoveOptions20 * SOAP_FMAC2 soap_instantiate_tt__MoveOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MoveOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MoveOptions20 *p; - size_t k = sizeof(tt__MoveOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MoveOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MoveOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MoveOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MoveOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MoveOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MoveOptions20(soap, tag ? tag : "tt:MoveOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MoveOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MoveOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MoveOptions20 * SOAP_FMAC4 soap_get_tt__MoveOptions20(struct soap *soap, tt__MoveOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MoveOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ExposureOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ExposureMode(soap, &this->tt__ExposureOptions20::Mode); - soap_default_std__vectorTemplateOftt__ExposurePriority(soap, &this->tt__ExposureOptions20::Priority); - this->tt__ExposureOptions20::MinExposureTime = NULL; - this->tt__ExposureOptions20::MaxExposureTime = NULL; - this->tt__ExposureOptions20::MinGain = NULL; - this->tt__ExposureOptions20::MaxGain = NULL; - this->tt__ExposureOptions20::MinIris = NULL; - this->tt__ExposureOptions20::MaxIris = NULL; - this->tt__ExposureOptions20::ExposureTime = NULL; - this->tt__ExposureOptions20::Gain = NULL; - this->tt__ExposureOptions20::Iris = NULL; -} - -void tt__ExposureOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ExposureMode(soap, &this->tt__ExposureOptions20::Mode); - soap_serialize_std__vectorTemplateOftt__ExposurePriority(soap, &this->tt__ExposureOptions20::Priority); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::MinExposureTime); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::MaxExposureTime); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::MinGain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::MaxGain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::MinIris); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::MaxIris); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::ExposureTime); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::Gain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions20::Iris); -#endif -} - -int tt__ExposureOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ExposureOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureOptions20(struct soap *soap, const char *tag, int id, const tt__ExposureOptions20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ExposureOptions20), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ExposureMode(soap, "tt:Mode", -1, &a->tt__ExposureOptions20::Mode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ExposurePriority(soap, "tt:Priority", -1, &a->tt__ExposureOptions20::Priority, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:MinExposureTime", -1, &a->tt__ExposureOptions20::MinExposureTime, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:MaxExposureTime", -1, &a->tt__ExposureOptions20::MaxExposureTime, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:MinGain", -1, &a->tt__ExposureOptions20::MinGain, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:MaxGain", -1, &a->tt__ExposureOptions20::MaxGain, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:MinIris", -1, &a->tt__ExposureOptions20::MinIris, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:MaxIris", -1, &a->tt__ExposureOptions20::MaxIris, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:ExposureTime", -1, &a->tt__ExposureOptions20::ExposureTime, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Gain", -1, &a->tt__ExposureOptions20::Gain, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Iris", -1, &a->tt__ExposureOptions20::Iris, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ExposureOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ExposureOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ExposureOptions20 * SOAP_FMAC4 soap_in_tt__ExposureOptions20(struct soap *soap, const char *tag, tt__ExposureOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ExposureOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ExposureOptions20, sizeof(tt__ExposureOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ExposureOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ExposureOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MinExposureTime1 = 1; - size_t soap_flag_MaxExposureTime1 = 1; - size_t soap_flag_MinGain1 = 1; - size_t soap_flag_MaxGain1 = 1; - size_t soap_flag_MinIris1 = 1; - size_t soap_flag_MaxIris1 = 1; - size_t soap_flag_ExposureTime1 = 1; - size_t soap_flag_Gain1 = 1; - size_t soap_flag_Iris1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ExposureMode(soap, "tt:Mode", &a->tt__ExposureOptions20::Mode, "tt:ExposureMode")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ExposurePriority(soap, "tt:Priority", &a->tt__ExposureOptions20::Priority, "tt:ExposurePriority")) - continue; - } - if (soap_flag_MinExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MinExposureTime", &a->tt__ExposureOptions20::MinExposureTime, "tt:FloatRange")) - { soap_flag_MinExposureTime1--; - continue; - } - } - if (soap_flag_MaxExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MaxExposureTime", &a->tt__ExposureOptions20::MaxExposureTime, "tt:FloatRange")) - { soap_flag_MaxExposureTime1--; - continue; - } - } - if (soap_flag_MinGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MinGain", &a->tt__ExposureOptions20::MinGain, "tt:FloatRange")) - { soap_flag_MinGain1--; - continue; - } - } - if (soap_flag_MaxGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MaxGain", &a->tt__ExposureOptions20::MaxGain, "tt:FloatRange")) - { soap_flag_MaxGain1--; - continue; - } - } - if (soap_flag_MinIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MinIris", &a->tt__ExposureOptions20::MinIris, "tt:FloatRange")) - { soap_flag_MinIris1--; - continue; - } - } - if (soap_flag_MaxIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MaxIris", &a->tt__ExposureOptions20::MaxIris, "tt:FloatRange")) - { soap_flag_MaxIris1--; - continue; - } - } - if (soap_flag_ExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:ExposureTime", &a->tt__ExposureOptions20::ExposureTime, "tt:FloatRange")) - { soap_flag_ExposureTime1--; - continue; - } - } - if (soap_flag_Gain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Gain", &a->tt__ExposureOptions20::Gain, "tt:FloatRange")) - { soap_flag_Gain1--; - continue; - } - } - if (soap_flag_Iris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Iris", &a->tt__ExposureOptions20::Iris, "tt:FloatRange")) - { soap_flag_Iris1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__ExposureOptions20::Mode.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ExposureOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ExposureOptions20, SOAP_TYPE_tt__ExposureOptions20, sizeof(tt__ExposureOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ExposureOptions20 * SOAP_FMAC2 soap_instantiate_tt__ExposureOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ExposureOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ExposureOptions20 *p; - size_t k = sizeof(tt__ExposureOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ExposureOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ExposureOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ExposureOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ExposureOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ExposureOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ExposureOptions20(soap, tag ? tag : "tt:ExposureOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ExposureOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ExposureOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ExposureOptions20 * SOAP_FMAC4 soap_get_tt__ExposureOptions20(struct soap *soap, tt__ExposureOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ExposureOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__BacklightCompensationOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__BacklightCompensationMode(soap, &this->tt__BacklightCompensationOptions20::Mode); - this->tt__BacklightCompensationOptions20::Level = NULL; -} - -void tt__BacklightCompensationOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__BacklightCompensationMode(soap, &this->tt__BacklightCompensationOptions20::Mode); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__BacklightCompensationOptions20::Level); -#endif -} - -int tt__BacklightCompensationOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__BacklightCompensationOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationOptions20(struct soap *soap, const char *tag, int id, const tt__BacklightCompensationOptions20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__BacklightCompensationOptions20), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__BacklightCompensationMode(soap, "tt:Mode", -1, &a->tt__BacklightCompensationOptions20::Mode, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Level", -1, &a->tt__BacklightCompensationOptions20::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__BacklightCompensationOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__BacklightCompensationOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__BacklightCompensationOptions20 * SOAP_FMAC4 soap_in_tt__BacklightCompensationOptions20(struct soap *soap, const char *tag, tt__BacklightCompensationOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__BacklightCompensationOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BacklightCompensationOptions20, sizeof(tt__BacklightCompensationOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__BacklightCompensationOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__BacklightCompensationOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__BacklightCompensationMode(soap, "tt:Mode", &a->tt__BacklightCompensationOptions20::Mode, "tt:BacklightCompensationMode")) - continue; - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Level", &a->tt__BacklightCompensationOptions20::Level, "tt:FloatRange")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__BacklightCompensationOptions20::Mode.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__BacklightCompensationOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__BacklightCompensationOptions20, SOAP_TYPE_tt__BacklightCompensationOptions20, sizeof(tt__BacklightCompensationOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__BacklightCompensationOptions20 * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensationOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__BacklightCompensationOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__BacklightCompensationOptions20 *p; - size_t k = sizeof(tt__BacklightCompensationOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__BacklightCompensationOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__BacklightCompensationOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__BacklightCompensationOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__BacklightCompensationOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__BacklightCompensationOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__BacklightCompensationOptions20(soap, tag ? tag : "tt:BacklightCompensationOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__BacklightCompensationOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__BacklightCompensationOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__BacklightCompensationOptions20 * SOAP_FMAC4 soap_get_tt__BacklightCompensationOptions20(struct soap *soap, tt__BacklightCompensationOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BacklightCompensationOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WideDynamicRangeOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__WideDynamicMode(soap, &this->tt__WideDynamicRangeOptions20::Mode); - this->tt__WideDynamicRangeOptions20::Level = NULL; -} - -void tt__WideDynamicRangeOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__WideDynamicMode(soap, &this->tt__WideDynamicRangeOptions20::Mode); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__WideDynamicRangeOptions20::Level); -#endif -} - -int tt__WideDynamicRangeOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WideDynamicRangeOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRangeOptions20(struct soap *soap, const char *tag, int id, const tt__WideDynamicRangeOptions20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WideDynamicRangeOptions20), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__WideDynamicMode(soap, "tt:Mode", -1, &a->tt__WideDynamicRangeOptions20::Mode, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Level", -1, &a->tt__WideDynamicRangeOptions20::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WideDynamicRangeOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WideDynamicRangeOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WideDynamicRangeOptions20 * SOAP_FMAC4 soap_in_tt__WideDynamicRangeOptions20(struct soap *soap, const char *tag, tt__WideDynamicRangeOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WideDynamicRangeOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WideDynamicRangeOptions20, sizeof(tt__WideDynamicRangeOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WideDynamicRangeOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WideDynamicRangeOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__WideDynamicMode(soap, "tt:Mode", &a->tt__WideDynamicRangeOptions20::Mode, "tt:WideDynamicMode")) - continue; - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Level", &a->tt__WideDynamicRangeOptions20::Level, "tt:FloatRange")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__WideDynamicRangeOptions20::Mode.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WideDynamicRangeOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WideDynamicRangeOptions20, SOAP_TYPE_tt__WideDynamicRangeOptions20, sizeof(tt__WideDynamicRangeOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WideDynamicRangeOptions20 * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRangeOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WideDynamicRangeOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WideDynamicRangeOptions20 *p; - size_t k = sizeof(tt__WideDynamicRangeOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WideDynamicRangeOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WideDynamicRangeOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WideDynamicRangeOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WideDynamicRangeOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WideDynamicRangeOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WideDynamicRangeOptions20(soap, tag ? tag : "tt:WideDynamicRangeOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WideDynamicRangeOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WideDynamicRangeOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WideDynamicRangeOptions20 * SOAP_FMAC4 soap_get_tt__WideDynamicRangeOptions20(struct soap *soap, tt__WideDynamicRangeOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WideDynamicRangeOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IrCutFilterAutoAdjustmentOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IrCutFilterAutoAdjustmentOptionsExtension::__any); -} - -void tt__IrCutFilterAutoAdjustmentOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IrCutFilterAutoAdjustmentOptionsExtension::__any); -#endif -} - -int tt__IrCutFilterAutoAdjustmentOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, const char *tag, int id, const tt__IrCutFilterAutoAdjustmentOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__IrCutFilterAutoAdjustmentOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IrCutFilterAutoAdjustmentOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptionsExtension * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, const char *tag, tt__IrCutFilterAutoAdjustmentOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IrCutFilterAutoAdjustmentOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension, sizeof(tt__IrCutFilterAutoAdjustmentOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IrCutFilterAutoAdjustmentOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__IrCutFilterAutoAdjustmentOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IrCutFilterAutoAdjustmentOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension, sizeof(tt__IrCutFilterAutoAdjustmentOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IrCutFilterAutoAdjustmentOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IrCutFilterAutoAdjustmentOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IrCutFilterAutoAdjustmentOptionsExtension *p; - size_t k = sizeof(tt__IrCutFilterAutoAdjustmentOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IrCutFilterAutoAdjustmentOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IrCutFilterAutoAdjustmentOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IrCutFilterAutoAdjustmentOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IrCutFilterAutoAdjustmentOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag ? tag : "tt:IrCutFilterAutoAdjustmentOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IrCutFilterAutoAdjustmentOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptionsExtension * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IrCutFilterAutoAdjustmentOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__IrCutFilterAutoAdjustmentOptions::BoundaryType); - this->tt__IrCutFilterAutoAdjustmentOptions::BoundaryOffset = NULL; - this->tt__IrCutFilterAutoAdjustmentOptions::ResponseTimeRange = NULL; - this->tt__IrCutFilterAutoAdjustmentOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__IrCutFilterAutoAdjustmentOptions::__anyAttribute); -} - -void tt__IrCutFilterAutoAdjustmentOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__IrCutFilterAutoAdjustmentOptions::BoundaryType); - soap_serialize_PointerTobool(soap, &this->tt__IrCutFilterAutoAdjustmentOptions::BoundaryOffset); - soap_serialize_PointerTott__DurationRange(soap, &this->tt__IrCutFilterAutoAdjustmentOptions::ResponseTimeRange); - soap_serialize_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(soap, &this->tt__IrCutFilterAutoAdjustmentOptions::Extension); -#endif -} - -int tt__IrCutFilterAutoAdjustmentOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IrCutFilterAutoAdjustmentOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, const char *tag, int id, const tt__IrCutFilterAutoAdjustmentOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__IrCutFilterAutoAdjustmentOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:BoundaryType", -1, &a->tt__IrCutFilterAutoAdjustmentOptions::BoundaryType, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:BoundaryOffset", -1, &a->tt__IrCutFilterAutoAdjustmentOptions::BoundaryOffset, "")) - return soap->error; - if (soap_out_PointerTott__DurationRange(soap, "tt:ResponseTimeRange", -1, &a->tt__IrCutFilterAutoAdjustmentOptions::ResponseTimeRange, "")) - return soap->error; - if (soap_out_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(soap, "tt:Extension", -1, &a->tt__IrCutFilterAutoAdjustmentOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IrCutFilterAutoAdjustmentOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IrCutFilterAutoAdjustmentOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptions * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, const char *tag, tt__IrCutFilterAutoAdjustmentOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IrCutFilterAutoAdjustmentOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions, sizeof(tt__IrCutFilterAutoAdjustmentOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IrCutFilterAutoAdjustmentOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__IrCutFilterAutoAdjustmentOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BoundaryOffset1 = 1; - size_t soap_flag_ResponseTimeRange1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:BoundaryType", &a->tt__IrCutFilterAutoAdjustmentOptions::BoundaryType, "xsd:string")) - continue; - } - if (soap_flag_BoundaryOffset1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:BoundaryOffset", &a->tt__IrCutFilterAutoAdjustmentOptions::BoundaryOffset, "xsd:boolean")) - { soap_flag_BoundaryOffset1--; - continue; - } - } - if (soap_flag_ResponseTimeRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DurationRange(soap, "tt:ResponseTimeRange", &a->tt__IrCutFilterAutoAdjustmentOptions::ResponseTimeRange, "tt:DurationRange")) - { soap_flag_ResponseTimeRange1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(soap, "tt:Extension", &a->tt__IrCutFilterAutoAdjustmentOptions::Extension, "tt:IrCutFilterAutoAdjustmentOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__IrCutFilterAutoAdjustmentOptions::BoundaryType.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IrCutFilterAutoAdjustmentOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions, sizeof(tt__IrCutFilterAutoAdjustmentOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IrCutFilterAutoAdjustmentOptions * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IrCutFilterAutoAdjustmentOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IrCutFilterAutoAdjustmentOptions *p; - size_t k = sizeof(tt__IrCutFilterAutoAdjustmentOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IrCutFilterAutoAdjustmentOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IrCutFilterAutoAdjustmentOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IrCutFilterAutoAdjustmentOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IrCutFilterAutoAdjustmentOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IrCutFilterAutoAdjustmentOptions(soap, tag ? tag : "tt:IrCutFilterAutoAdjustmentOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IrCutFilterAutoAdjustmentOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IrCutFilterAutoAdjustmentOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptions * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterAutoAdjustmentOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImageStabilizationOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImageStabilizationOptionsExtension::__any); -} - -void tt__ImageStabilizationOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImageStabilizationOptionsExtension::__any); -#endif -} - -int tt__ImageStabilizationOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImageStabilizationOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationOptionsExtension(struct soap *soap, const char *tag, int id, const tt__ImageStabilizationOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImageStabilizationOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImageStabilizationOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImageStabilizationOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImageStabilizationOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImageStabilizationOptionsExtension * SOAP_FMAC4 soap_in_tt__ImageStabilizationOptionsExtension(struct soap *soap, const char *tag, tt__ImageStabilizationOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImageStabilizationOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageStabilizationOptionsExtension, sizeof(tt__ImageStabilizationOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImageStabilizationOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImageStabilizationOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImageStabilizationOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImageStabilizationOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImageStabilizationOptionsExtension, SOAP_TYPE_tt__ImageStabilizationOptionsExtension, sizeof(tt__ImageStabilizationOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImageStabilizationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImageStabilizationOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImageStabilizationOptionsExtension *p; - size_t k = sizeof(tt__ImageStabilizationOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImageStabilizationOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImageStabilizationOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImageStabilizationOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImageStabilizationOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImageStabilizationOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImageStabilizationOptionsExtension(soap, tag ? tag : "tt:ImageStabilizationOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImageStabilizationOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImageStabilizationOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImageStabilizationOptionsExtension * SOAP_FMAC4 soap_get_tt__ImageStabilizationOptionsExtension(struct soap *soap, tt__ImageStabilizationOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageStabilizationOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImageStabilizationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ImageStabilizationMode(soap, &this->tt__ImageStabilizationOptions::Mode); - this->tt__ImageStabilizationOptions::Level = NULL; - this->tt__ImageStabilizationOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ImageStabilizationOptions::__anyAttribute); -} - -void tt__ImageStabilizationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ImageStabilizationMode(soap, &this->tt__ImageStabilizationOptions::Mode); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImageStabilizationOptions::Level); - soap_serialize_PointerTott__ImageStabilizationOptionsExtension(soap, &this->tt__ImageStabilizationOptions::Extension); -#endif -} - -int tt__ImageStabilizationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImageStabilizationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationOptions(struct soap *soap, const char *tag, int id, const tt__ImageStabilizationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImageStabilizationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImageStabilizationOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ImageStabilizationMode(soap, "tt:Mode", -1, &a->tt__ImageStabilizationOptions::Mode, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Level", -1, &a->tt__ImageStabilizationOptions::Level, "")) - return soap->error; - if (soap_out_PointerTott__ImageStabilizationOptionsExtension(soap, "tt:Extension", -1, &a->tt__ImageStabilizationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImageStabilizationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImageStabilizationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImageStabilizationOptions * SOAP_FMAC4 soap_in_tt__ImageStabilizationOptions(struct soap *soap, const char *tag, tt__ImageStabilizationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImageStabilizationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageStabilizationOptions, sizeof(tt__ImageStabilizationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImageStabilizationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImageStabilizationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImageStabilizationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ImageStabilizationMode(soap, "tt:Mode", &a->tt__ImageStabilizationOptions::Mode, "tt:ImageStabilizationMode")) - continue; - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Level", &a->tt__ImageStabilizationOptions::Level, "tt:FloatRange")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImageStabilizationOptionsExtension(soap, "tt:Extension", &a->tt__ImageStabilizationOptions::Extension, "tt:ImageStabilizationOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__ImageStabilizationOptions::Mode.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ImageStabilizationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImageStabilizationOptions, SOAP_TYPE_tt__ImageStabilizationOptions, sizeof(tt__ImageStabilizationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImageStabilizationOptions * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImageStabilizationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImageStabilizationOptions *p; - size_t k = sizeof(tt__ImageStabilizationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImageStabilizationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImageStabilizationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImageStabilizationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImageStabilizationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImageStabilizationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImageStabilizationOptions(soap, tag ? tag : "tt:ImageStabilizationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImageStabilizationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImageStabilizationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImageStabilizationOptions * SOAP_FMAC4 soap_get_tt__ImageStabilizationOptions(struct soap *soap, tt__ImageStabilizationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageStabilizationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingOptions20Extension4::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingOptions20Extension4::__any); -} - -void tt__ImagingOptions20Extension4::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingOptions20Extension4::__any); -#endif -} - -int tt__ImagingOptions20Extension4::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingOptions20Extension4(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension4(struct soap *soap, const char *tag, int id, const tt__ImagingOptions20Extension4 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingOptions20Extension4), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingOptions20Extension4::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingOptions20Extension4::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingOptions20Extension4(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension4 * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension4(struct soap *soap, const char *tag, tt__ImagingOptions20Extension4 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingOptions20Extension4*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingOptions20Extension4, sizeof(tt__ImagingOptions20Extension4), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingOptions20Extension4) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingOptions20Extension4 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingOptions20Extension4::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingOptions20Extension4 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingOptions20Extension4, SOAP_TYPE_tt__ImagingOptions20Extension4, sizeof(tt__ImagingOptions20Extension4), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingOptions20Extension4 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension4(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingOptions20Extension4(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingOptions20Extension4 *p; - size_t k = sizeof(tt__ImagingOptions20Extension4); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingOptions20Extension4, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingOptions20Extension4); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingOptions20Extension4, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingOptions20Extension4 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingOptions20Extension4::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingOptions20Extension4(soap, tag ? tag : "tt:ImagingOptions20Extension4", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingOptions20Extension4::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingOptions20Extension4(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension4 * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension4(struct soap *soap, tt__ImagingOptions20Extension4 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingOptions20Extension4(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingOptions20Extension3::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingOptions20Extension3::ToneCompensationOptions = NULL; - this->tt__ImagingOptions20Extension3::DefoggingOptions = NULL; - this->tt__ImagingOptions20Extension3::NoiseReductionOptions = NULL; - this->tt__ImagingOptions20Extension3::Extension = NULL; -} - -void tt__ImagingOptions20Extension3::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ToneCompensationOptions(soap, &this->tt__ImagingOptions20Extension3::ToneCompensationOptions); - soap_serialize_PointerTott__DefoggingOptions(soap, &this->tt__ImagingOptions20Extension3::DefoggingOptions); - soap_serialize_PointerTott__NoiseReductionOptions(soap, &this->tt__ImagingOptions20Extension3::NoiseReductionOptions); - soap_serialize_PointerTott__ImagingOptions20Extension4(soap, &this->tt__ImagingOptions20Extension3::Extension); -#endif -} - -int tt__ImagingOptions20Extension3::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingOptions20Extension3(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension3(struct soap *soap, const char *tag, int id, const tt__ImagingOptions20Extension3 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingOptions20Extension3), type)) - return soap->error; - if (soap_out_PointerTott__ToneCompensationOptions(soap, "tt:ToneCompensationOptions", -1, &a->tt__ImagingOptions20Extension3::ToneCompensationOptions, "")) - return soap->error; - if (soap_out_PointerTott__DefoggingOptions(soap, "tt:DefoggingOptions", -1, &a->tt__ImagingOptions20Extension3::DefoggingOptions, "")) - return soap->error; - if (soap_out_PointerTott__NoiseReductionOptions(soap, "tt:NoiseReductionOptions", -1, &a->tt__ImagingOptions20Extension3::NoiseReductionOptions, "")) - return soap->error; - if (soap_out_PointerTott__ImagingOptions20Extension4(soap, "tt:Extension", -1, &a->tt__ImagingOptions20Extension3::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingOptions20Extension3::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingOptions20Extension3(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension3 * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension3(struct soap *soap, const char *tag, tt__ImagingOptions20Extension3 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingOptions20Extension3*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingOptions20Extension3, sizeof(tt__ImagingOptions20Extension3), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingOptions20Extension3) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingOptions20Extension3 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ToneCompensationOptions1 = 1; - size_t soap_flag_DefoggingOptions1 = 1; - size_t soap_flag_NoiseReductionOptions1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ToneCompensationOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ToneCompensationOptions(soap, "tt:ToneCompensationOptions", &a->tt__ImagingOptions20Extension3::ToneCompensationOptions, "tt:ToneCompensationOptions")) - { soap_flag_ToneCompensationOptions1--; - continue; - } - } - if (soap_flag_DefoggingOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DefoggingOptions(soap, "tt:DefoggingOptions", &a->tt__ImagingOptions20Extension3::DefoggingOptions, "tt:DefoggingOptions")) - { soap_flag_DefoggingOptions1--; - continue; - } - } - if (soap_flag_NoiseReductionOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NoiseReductionOptions(soap, "tt:NoiseReductionOptions", &a->tt__ImagingOptions20Extension3::NoiseReductionOptions, "tt:NoiseReductionOptions")) - { soap_flag_NoiseReductionOptions1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingOptions20Extension4(soap, "tt:Extension", &a->tt__ImagingOptions20Extension3::Extension, "tt:ImagingOptions20Extension4")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingOptions20Extension3 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingOptions20Extension3, SOAP_TYPE_tt__ImagingOptions20Extension3, sizeof(tt__ImagingOptions20Extension3), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingOptions20Extension3 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension3(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingOptions20Extension3(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingOptions20Extension3 *p; - size_t k = sizeof(tt__ImagingOptions20Extension3); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingOptions20Extension3, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingOptions20Extension3); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingOptions20Extension3, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingOptions20Extension3 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingOptions20Extension3::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingOptions20Extension3(soap, tag ? tag : "tt:ImagingOptions20Extension3", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingOptions20Extension3::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingOptions20Extension3(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension3 * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension3(struct soap *soap, tt__ImagingOptions20Extension3 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingOptions20Extension3(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingOptions20Extension2::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingOptions20Extension2::IrCutFilterAutoAdjustment = NULL; - this->tt__ImagingOptions20Extension2::Extension = NULL; -} - -void tt__ImagingOptions20Extension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IrCutFilterAutoAdjustmentOptions(soap, &this->tt__ImagingOptions20Extension2::IrCutFilterAutoAdjustment); - soap_serialize_PointerTott__ImagingOptions20Extension3(soap, &this->tt__ImagingOptions20Extension2::Extension); -#endif -} - -int tt__ImagingOptions20Extension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingOptions20Extension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension2(struct soap *soap, const char *tag, int id, const tt__ImagingOptions20Extension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingOptions20Extension2), type)) - return soap->error; - if (soap_out_PointerTott__IrCutFilterAutoAdjustmentOptions(soap, "tt:IrCutFilterAutoAdjustment", -1, &a->tt__ImagingOptions20Extension2::IrCutFilterAutoAdjustment, "")) - return soap->error; - if (soap_out_PointerTott__ImagingOptions20Extension3(soap, "tt:Extension", -1, &a->tt__ImagingOptions20Extension2::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingOptions20Extension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingOptions20Extension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension2 * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension2(struct soap *soap, const char *tag, tt__ImagingOptions20Extension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingOptions20Extension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingOptions20Extension2, sizeof(tt__ImagingOptions20Extension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingOptions20Extension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingOptions20Extension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_IrCutFilterAutoAdjustment1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_IrCutFilterAutoAdjustment1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IrCutFilterAutoAdjustmentOptions(soap, "tt:IrCutFilterAutoAdjustment", &a->tt__ImagingOptions20Extension2::IrCutFilterAutoAdjustment, "tt:IrCutFilterAutoAdjustmentOptions")) - { soap_flag_IrCutFilterAutoAdjustment1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingOptions20Extension3(soap, "tt:Extension", &a->tt__ImagingOptions20Extension2::Extension, "tt:ImagingOptions20Extension3")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingOptions20Extension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingOptions20Extension2, SOAP_TYPE_tt__ImagingOptions20Extension2, sizeof(tt__ImagingOptions20Extension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingOptions20Extension2 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingOptions20Extension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingOptions20Extension2 *p; - size_t k = sizeof(tt__ImagingOptions20Extension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingOptions20Extension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingOptions20Extension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingOptions20Extension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingOptions20Extension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingOptions20Extension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingOptions20Extension2(soap, tag ? tag : "tt:ImagingOptions20Extension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingOptions20Extension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingOptions20Extension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension2 * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension2(struct soap *soap, tt__ImagingOptions20Extension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingOptions20Extension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingOptions20Extension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingOptions20Extension::__any); - this->tt__ImagingOptions20Extension::ImageStabilization = NULL; - this->tt__ImagingOptions20Extension::Extension = NULL; -} - -void tt__ImagingOptions20Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingOptions20Extension::__any); - soap_serialize_PointerTott__ImageStabilizationOptions(soap, &this->tt__ImagingOptions20Extension::ImageStabilization); - soap_serialize_PointerTott__ImagingOptions20Extension2(soap, &this->tt__ImagingOptions20Extension::Extension); -#endif -} - -int tt__ImagingOptions20Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingOptions20Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension(struct soap *soap, const char *tag, int id, const tt__ImagingOptions20Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingOptions20Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingOptions20Extension::__any, "")) - return soap->error; - if (soap_out_PointerTott__ImageStabilizationOptions(soap, "tt:ImageStabilization", -1, &a->tt__ImagingOptions20Extension::ImageStabilization, "")) - return soap->error; - if (soap_out_PointerTott__ImagingOptions20Extension2(soap, "tt:Extension", -1, &a->tt__ImagingOptions20Extension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingOptions20Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingOptions20Extension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension(struct soap *soap, const char *tag, tt__ImagingOptions20Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingOptions20Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingOptions20Extension, sizeof(tt__ImagingOptions20Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingOptions20Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingOptions20Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ImageStabilization1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ImageStabilization1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImageStabilizationOptions(soap, "tt:ImageStabilization", &a->tt__ImagingOptions20Extension::ImageStabilization, "tt:ImageStabilizationOptions")) - { soap_flag_ImageStabilization1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingOptions20Extension2(soap, "tt:Extension", &a->tt__ImagingOptions20Extension::Extension, "tt:ImagingOptions20Extension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingOptions20Extension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingOptions20Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingOptions20Extension, SOAP_TYPE_tt__ImagingOptions20Extension, sizeof(tt__ImagingOptions20Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingOptions20Extension * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingOptions20Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingOptions20Extension *p; - size_t k = sizeof(tt__ImagingOptions20Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingOptions20Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingOptions20Extension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingOptions20Extension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingOptions20Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingOptions20Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingOptions20Extension(soap, tag ? tag : "tt:ImagingOptions20Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingOptions20Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingOptions20Extension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingOptions20Extension * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension(struct soap *soap, tt__ImagingOptions20Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingOptions20Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingOptions20::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingOptions20::BacklightCompensation = NULL; - this->tt__ImagingOptions20::Brightness = NULL; - this->tt__ImagingOptions20::ColorSaturation = NULL; - this->tt__ImagingOptions20::Contrast = NULL; - this->tt__ImagingOptions20::Exposure = NULL; - this->tt__ImagingOptions20::Focus = NULL; - soap_default_std__vectorTemplateOftt__IrCutFilterMode(soap, &this->tt__ImagingOptions20::IrCutFilterModes); - this->tt__ImagingOptions20::Sharpness = NULL; - this->tt__ImagingOptions20::WideDynamicRange = NULL; - this->tt__ImagingOptions20::WhiteBalance = NULL; - this->tt__ImagingOptions20::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ImagingOptions20::__anyAttribute); -} - -void tt__ImagingOptions20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__BacklightCompensationOptions20(soap, &this->tt__ImagingOptions20::BacklightCompensation); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions20::Brightness); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions20::ColorSaturation); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions20::Contrast); - soap_serialize_PointerTott__ExposureOptions20(soap, &this->tt__ImagingOptions20::Exposure); - soap_serialize_PointerTott__FocusOptions20(soap, &this->tt__ImagingOptions20::Focus); - soap_serialize_std__vectorTemplateOftt__IrCutFilterMode(soap, &this->tt__ImagingOptions20::IrCutFilterModes); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions20::Sharpness); - soap_serialize_PointerTott__WideDynamicRangeOptions20(soap, &this->tt__ImagingOptions20::WideDynamicRange); - soap_serialize_PointerTott__WhiteBalanceOptions20(soap, &this->tt__ImagingOptions20::WhiteBalance); - soap_serialize_PointerTott__ImagingOptions20Extension(soap, &this->tt__ImagingOptions20::Extension); -#endif -} - -int tt__ImagingOptions20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingOptions20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20(struct soap *soap, const char *tag, int id, const tt__ImagingOptions20 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImagingOptions20*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingOptions20), type)) - return soap->error; - if (soap_out_PointerTott__BacklightCompensationOptions20(soap, "tt:BacklightCompensation", -1, &a->tt__ImagingOptions20::BacklightCompensation, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Brightness", -1, &a->tt__ImagingOptions20::Brightness, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:ColorSaturation", -1, &a->tt__ImagingOptions20::ColorSaturation, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Contrast", -1, &a->tt__ImagingOptions20::Contrast, "")) - return soap->error; - if (soap_out_PointerTott__ExposureOptions20(soap, "tt:Exposure", -1, &a->tt__ImagingOptions20::Exposure, "")) - return soap->error; - if (soap_out_PointerTott__FocusOptions20(soap, "tt:Focus", -1, &a->tt__ImagingOptions20::Focus, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__IrCutFilterMode(soap, "tt:IrCutFilterModes", -1, &a->tt__ImagingOptions20::IrCutFilterModes, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Sharpness", -1, &a->tt__ImagingOptions20::Sharpness, "")) - return soap->error; - if (soap_out_PointerTott__WideDynamicRangeOptions20(soap, "tt:WideDynamicRange", -1, &a->tt__ImagingOptions20::WideDynamicRange, "")) - return soap->error; - if (soap_out_PointerTott__WhiteBalanceOptions20(soap, "tt:WhiteBalance", -1, &a->tt__ImagingOptions20::WhiteBalance, "")) - return soap->error; - if (soap_out_PointerTott__ImagingOptions20Extension(soap, "tt:Extension", -1, &a->tt__ImagingOptions20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingOptions20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingOptions20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingOptions20 * SOAP_FMAC4 soap_in_tt__ImagingOptions20(struct soap *soap, const char *tag, tt__ImagingOptions20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingOptions20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingOptions20, sizeof(tt__ImagingOptions20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingOptions20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingOptions20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImagingOptions20*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BacklightCompensation1 = 1; - size_t soap_flag_Brightness1 = 1; - size_t soap_flag_ColorSaturation1 = 1; - size_t soap_flag_Contrast1 = 1; - size_t soap_flag_Exposure1 = 1; - size_t soap_flag_Focus1 = 1; - size_t soap_flag_Sharpness1 = 1; - size_t soap_flag_WideDynamicRange1 = 1; - size_t soap_flag_WhiteBalance1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_BacklightCompensation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BacklightCompensationOptions20(soap, "tt:BacklightCompensation", &a->tt__ImagingOptions20::BacklightCompensation, "tt:BacklightCompensationOptions20")) - { soap_flag_BacklightCompensation1--; - continue; - } - } - if (soap_flag_Brightness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Brightness", &a->tt__ImagingOptions20::Brightness, "tt:FloatRange")) - { soap_flag_Brightness1--; - continue; - } - } - if (soap_flag_ColorSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:ColorSaturation", &a->tt__ImagingOptions20::ColorSaturation, "tt:FloatRange")) - { soap_flag_ColorSaturation1--; - continue; - } - } - if (soap_flag_Contrast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Contrast", &a->tt__ImagingOptions20::Contrast, "tt:FloatRange")) - { soap_flag_Contrast1--; - continue; - } - } - if (soap_flag_Exposure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ExposureOptions20(soap, "tt:Exposure", &a->tt__ImagingOptions20::Exposure, "tt:ExposureOptions20")) - { soap_flag_Exposure1--; - continue; - } - } - if (soap_flag_Focus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusOptions20(soap, "tt:Focus", &a->tt__ImagingOptions20::Focus, "tt:FocusOptions20")) - { soap_flag_Focus1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__IrCutFilterMode(soap, "tt:IrCutFilterModes", &a->tt__ImagingOptions20::IrCutFilterModes, "tt:IrCutFilterMode")) - continue; - } - if (soap_flag_Sharpness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Sharpness", &a->tt__ImagingOptions20::Sharpness, "tt:FloatRange")) - { soap_flag_Sharpness1--; - continue; - } - } - if (soap_flag_WideDynamicRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WideDynamicRangeOptions20(soap, "tt:WideDynamicRange", &a->tt__ImagingOptions20::WideDynamicRange, "tt:WideDynamicRangeOptions20")) - { soap_flag_WideDynamicRange1--; - continue; - } - } - if (soap_flag_WhiteBalance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WhiteBalanceOptions20(soap, "tt:WhiteBalance", &a->tt__ImagingOptions20::WhiteBalance, "tt:WhiteBalanceOptions20")) - { soap_flag_WhiteBalance1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingOptions20Extension(soap, "tt:Extension", &a->tt__ImagingOptions20::Extension, "tt:ImagingOptions20Extension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingOptions20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingOptions20, SOAP_TYPE_tt__ImagingOptions20, sizeof(tt__ImagingOptions20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingOptions20 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingOptions20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingOptions20 *p; - size_t k = sizeof(tt__ImagingOptions20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingOptions20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingOptions20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingOptions20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingOptions20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingOptions20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingOptions20(soap, tag ? tag : "tt:ImagingOptions20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingOptions20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingOptions20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingOptions20 * SOAP_FMAC4 soap_get_tt__ImagingOptions20(struct soap *soap, tt__ImagingOptions20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingOptions20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NoiseReduction::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__NoiseReduction::Level); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NoiseReduction::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__NoiseReduction::__anyAttribute); -} - -void tt__NoiseReduction::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__NoiseReduction::Level, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NoiseReduction::__any); -#endif -} - -int tt__NoiseReduction::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NoiseReduction(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NoiseReduction(struct soap *soap, const char *tag, int id, const tt__NoiseReduction *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NoiseReduction*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NoiseReduction), type)) - return soap->error; - if (soap_out_float(soap, "tt:Level", -1, &a->tt__NoiseReduction::Level, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NoiseReduction::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NoiseReduction::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NoiseReduction(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NoiseReduction * SOAP_FMAC4 soap_in_tt__NoiseReduction(struct soap *soap, const char *tag, tt__NoiseReduction *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NoiseReduction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NoiseReduction, sizeof(tt__NoiseReduction), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NoiseReduction) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NoiseReduction *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NoiseReduction*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Level", &a->tt__NoiseReduction::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NoiseReduction::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Level1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NoiseReduction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NoiseReduction, SOAP_TYPE_tt__NoiseReduction, sizeof(tt__NoiseReduction), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NoiseReduction * SOAP_FMAC2 soap_instantiate_tt__NoiseReduction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NoiseReduction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NoiseReduction *p; - size_t k = sizeof(tt__NoiseReduction); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NoiseReduction, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NoiseReduction); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NoiseReduction, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NoiseReduction location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NoiseReduction::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NoiseReduction(soap, tag ? tag : "tt:NoiseReduction", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NoiseReduction::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NoiseReduction(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NoiseReduction * SOAP_FMAC4 soap_get_tt__NoiseReduction(struct soap *soap, tt__NoiseReduction *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NoiseReduction(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DefoggingExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DefoggingExtension::__any); -} - -void tt__DefoggingExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DefoggingExtension::__any); -#endif -} - -int tt__DefoggingExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DefoggingExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingExtension(struct soap *soap, const char *tag, int id, const tt__DefoggingExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DefoggingExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DefoggingExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DefoggingExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DefoggingExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DefoggingExtension * SOAP_FMAC4 soap_in_tt__DefoggingExtension(struct soap *soap, const char *tag, tt__DefoggingExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DefoggingExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DefoggingExtension, sizeof(tt__DefoggingExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DefoggingExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DefoggingExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DefoggingExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__DefoggingExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DefoggingExtension, SOAP_TYPE_tt__DefoggingExtension, sizeof(tt__DefoggingExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DefoggingExtension * SOAP_FMAC2 soap_instantiate_tt__DefoggingExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DefoggingExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DefoggingExtension *p; - size_t k = sizeof(tt__DefoggingExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DefoggingExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DefoggingExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DefoggingExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DefoggingExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DefoggingExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DefoggingExtension(soap, tag ? tag : "tt:DefoggingExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DefoggingExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DefoggingExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DefoggingExtension * SOAP_FMAC4 soap_get_tt__DefoggingExtension(struct soap *soap, tt__DefoggingExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DefoggingExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Defogging::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__Defogging::Mode); - this->tt__Defogging::Level = NULL; - this->tt__Defogging::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Defogging::__anyAttribute); -} - -void tt__Defogging::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Defogging::Mode, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__Defogging::Mode); - soap_serialize_PointerTofloat(soap, &this->tt__Defogging::Level); - soap_serialize_PointerTott__DefoggingExtension(soap, &this->tt__Defogging::Extension); -#endif -} - -int tt__Defogging::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Defogging(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Defogging(struct soap *soap, const char *tag, int id, const tt__Defogging *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Defogging*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Defogging), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Mode", -1, &a->tt__Defogging::Mode, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Level", -1, &a->tt__Defogging::Level, "")) - return soap->error; - if (soap_out_PointerTott__DefoggingExtension(soap, "tt:Extension", -1, &a->tt__Defogging::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Defogging::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Defogging(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Defogging * SOAP_FMAC4 soap_in_tt__Defogging(struct soap *soap, const char *tag, tt__Defogging *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Defogging*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Defogging, sizeof(tt__Defogging), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Defogging) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Defogging *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Defogging*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Level1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Mode", &a->tt__Defogging::Mode, "xsd:string")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Level", &a->tt__Defogging::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DefoggingExtension(soap, "tt:Extension", &a->tt__Defogging::Extension, "tt:DefoggingExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Defogging *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Defogging, SOAP_TYPE_tt__Defogging, sizeof(tt__Defogging), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Defogging * SOAP_FMAC2 soap_instantiate_tt__Defogging(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Defogging(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Defogging *p; - size_t k = sizeof(tt__Defogging); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Defogging, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Defogging); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Defogging, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Defogging location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Defogging::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Defogging(soap, tag ? tag : "tt:Defogging", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Defogging::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Defogging(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Defogging * SOAP_FMAC4 soap_get_tt__Defogging(struct soap *soap, tt__Defogging *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Defogging(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ToneCompensationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ToneCompensationExtension::__any); -} - -void tt__ToneCompensationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ToneCompensationExtension::__any); -#endif -} - -int tt__ToneCompensationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ToneCompensationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationExtension(struct soap *soap, const char *tag, int id, const tt__ToneCompensationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ToneCompensationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ToneCompensationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ToneCompensationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ToneCompensationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ToneCompensationExtension * SOAP_FMAC4 soap_in_tt__ToneCompensationExtension(struct soap *soap, const char *tag, tt__ToneCompensationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ToneCompensationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ToneCompensationExtension, sizeof(tt__ToneCompensationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ToneCompensationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ToneCompensationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ToneCompensationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ToneCompensationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ToneCompensationExtension, SOAP_TYPE_tt__ToneCompensationExtension, sizeof(tt__ToneCompensationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ToneCompensationExtension * SOAP_FMAC2 soap_instantiate_tt__ToneCompensationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ToneCompensationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ToneCompensationExtension *p; - size_t k = sizeof(tt__ToneCompensationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ToneCompensationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ToneCompensationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ToneCompensationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ToneCompensationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ToneCompensationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ToneCompensationExtension(soap, tag ? tag : "tt:ToneCompensationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ToneCompensationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ToneCompensationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ToneCompensationExtension * SOAP_FMAC4 soap_get_tt__ToneCompensationExtension(struct soap *soap, tt__ToneCompensationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ToneCompensationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ToneCompensation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__ToneCompensation::Mode); - this->tt__ToneCompensation::Level = NULL; - this->tt__ToneCompensation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ToneCompensation::__anyAttribute); -} - -void tt__ToneCompensation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ToneCompensation::Mode, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__ToneCompensation::Mode); - soap_serialize_PointerTofloat(soap, &this->tt__ToneCompensation::Level); - soap_serialize_PointerTott__ToneCompensationExtension(soap, &this->tt__ToneCompensation::Extension); -#endif -} - -int tt__ToneCompensation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ToneCompensation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensation(struct soap *soap, const char *tag, int id, const tt__ToneCompensation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ToneCompensation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ToneCompensation), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Mode", -1, &a->tt__ToneCompensation::Mode, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Level", -1, &a->tt__ToneCompensation::Level, "")) - return soap->error; - if (soap_out_PointerTott__ToneCompensationExtension(soap, "tt:Extension", -1, &a->tt__ToneCompensation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ToneCompensation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ToneCompensation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ToneCompensation * SOAP_FMAC4 soap_in_tt__ToneCompensation(struct soap *soap, const char *tag, tt__ToneCompensation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ToneCompensation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ToneCompensation, sizeof(tt__ToneCompensation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ToneCompensation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ToneCompensation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ToneCompensation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Level1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Mode", &a->tt__ToneCompensation::Mode, "xsd:string")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Level", &a->tt__ToneCompensation::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ToneCompensationExtension(soap, "tt:Extension", &a->tt__ToneCompensation::Extension, "tt:ToneCompensationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ToneCompensation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ToneCompensation, SOAP_TYPE_tt__ToneCompensation, sizeof(tt__ToneCompensation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ToneCompensation * SOAP_FMAC2 soap_instantiate_tt__ToneCompensation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ToneCompensation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ToneCompensation *p; - size_t k = sizeof(tt__ToneCompensation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ToneCompensation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ToneCompensation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ToneCompensation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ToneCompensation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ToneCompensation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ToneCompensation(soap, tag ? tag : "tt:ToneCompensation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ToneCompensation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ToneCompensation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ToneCompensation * SOAP_FMAC4 soap_get_tt__ToneCompensation(struct soap *soap, tt__ToneCompensation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ToneCompensation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Exposure20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ExposureMode(soap, &this->tt__Exposure20::Mode); - this->tt__Exposure20::Priority = NULL; - this->tt__Exposure20::Window = NULL; - this->tt__Exposure20::MinExposureTime = NULL; - this->tt__Exposure20::MaxExposureTime = NULL; - this->tt__Exposure20::MinGain = NULL; - this->tt__Exposure20::MaxGain = NULL; - this->tt__Exposure20::MinIris = NULL; - this->tt__Exposure20::MaxIris = NULL; - this->tt__Exposure20::ExposureTime = NULL; - this->tt__Exposure20::Gain = NULL; - this->tt__Exposure20::Iris = NULL; -} - -void tt__Exposure20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ExposurePriority(soap, &this->tt__Exposure20::Priority); - soap_serialize_PointerTott__Rectangle(soap, &this->tt__Exposure20::Window); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::MinExposureTime); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::MaxExposureTime); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::MinGain); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::MaxGain); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::MinIris); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::MaxIris); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::ExposureTime); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::Gain); - soap_serialize_PointerTofloat(soap, &this->tt__Exposure20::Iris); -#endif -} - -int tt__Exposure20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Exposure20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Exposure20(struct soap *soap, const char *tag, int id, const tt__Exposure20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Exposure20), type)) - return soap->error; - if (soap_out_tt__ExposureMode(soap, "tt:Mode", -1, &a->tt__Exposure20::Mode, "")) - return soap->error; - if (soap_out_PointerTott__ExposurePriority(soap, "tt:Priority", -1, &a->tt__Exposure20::Priority, "")) - return soap->error; - if (soap_out_PointerTott__Rectangle(soap, "tt:Window", -1, &a->tt__Exposure20::Window, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:MinExposureTime", -1, &a->tt__Exposure20::MinExposureTime, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:MaxExposureTime", -1, &a->tt__Exposure20::MaxExposureTime, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:MinGain", -1, &a->tt__Exposure20::MinGain, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:MaxGain", -1, &a->tt__Exposure20::MaxGain, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:MinIris", -1, &a->tt__Exposure20::MinIris, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:MaxIris", -1, &a->tt__Exposure20::MaxIris, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:ExposureTime", -1, &a->tt__Exposure20::ExposureTime, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Gain", -1, &a->tt__Exposure20::Gain, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Iris", -1, &a->tt__Exposure20::Iris, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Exposure20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Exposure20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Exposure20 * SOAP_FMAC4 soap_in_tt__Exposure20(struct soap *soap, const char *tag, tt__Exposure20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Exposure20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Exposure20, sizeof(tt__Exposure20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Exposure20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Exposure20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Priority1 = 1; - size_t soap_flag_Window1 = 1; - size_t soap_flag_MinExposureTime1 = 1; - size_t soap_flag_MaxExposureTime1 = 1; - size_t soap_flag_MinGain1 = 1; - size_t soap_flag_MaxGain1 = 1; - size_t soap_flag_MinIris1 = 1; - size_t soap_flag_MaxIris1 = 1; - size_t soap_flag_ExposureTime1 = 1; - size_t soap_flag_Gain1 = 1; - size_t soap_flag_Iris1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ExposureMode(soap, "tt:Mode", &a->tt__Exposure20::Mode, "tt:ExposureMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Priority1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ExposurePriority(soap, "tt:Priority", &a->tt__Exposure20::Priority, "tt:ExposurePriority")) - { soap_flag_Priority1--; - continue; - } - } - if (soap_flag_Window1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Rectangle(soap, "tt:Window", &a->tt__Exposure20::Window, "tt:Rectangle")) - { soap_flag_Window1--; - continue; - } - } - if (soap_flag_MinExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:MinExposureTime", &a->tt__Exposure20::MinExposureTime, "xsd:float")) - { soap_flag_MinExposureTime1--; - continue; - } - } - if (soap_flag_MaxExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:MaxExposureTime", &a->tt__Exposure20::MaxExposureTime, "xsd:float")) - { soap_flag_MaxExposureTime1--; - continue; - } - } - if (soap_flag_MinGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:MinGain", &a->tt__Exposure20::MinGain, "xsd:float")) - { soap_flag_MinGain1--; - continue; - } - } - if (soap_flag_MaxGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:MaxGain", &a->tt__Exposure20::MaxGain, "xsd:float")) - { soap_flag_MaxGain1--; - continue; - } - } - if (soap_flag_MinIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:MinIris", &a->tt__Exposure20::MinIris, "xsd:float")) - { soap_flag_MinIris1--; - continue; - } - } - if (soap_flag_MaxIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:MaxIris", &a->tt__Exposure20::MaxIris, "xsd:float")) - { soap_flag_MaxIris1--; - continue; - } - } - if (soap_flag_ExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:ExposureTime", &a->tt__Exposure20::ExposureTime, "xsd:float")) - { soap_flag_ExposureTime1--; - continue; - } - } - if (soap_flag_Gain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Gain", &a->tt__Exposure20::Gain, "xsd:float")) - { soap_flag_Gain1--; - continue; - } - } - if (soap_flag_Iris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Iris", &a->tt__Exposure20::Iris, "xsd:float")) - { soap_flag_Iris1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Exposure20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Exposure20, SOAP_TYPE_tt__Exposure20, sizeof(tt__Exposure20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Exposure20 * SOAP_FMAC2 soap_instantiate_tt__Exposure20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Exposure20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Exposure20 *p; - size_t k = sizeof(tt__Exposure20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Exposure20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Exposure20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Exposure20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Exposure20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Exposure20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Exposure20(soap, tag ? tag : "tt:Exposure20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Exposure20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Exposure20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Exposure20 * SOAP_FMAC4 soap_get_tt__Exposure20(struct soap *soap, tt__Exposure20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Exposure20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__BacklightCompensation20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__BacklightCompensationMode(soap, &this->tt__BacklightCompensation20::Mode); - this->tt__BacklightCompensation20::Level = NULL; -} - -void tt__BacklightCompensation20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTofloat(soap, &this->tt__BacklightCompensation20::Level); -#endif -} - -int tt__BacklightCompensation20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__BacklightCompensation20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensation20(struct soap *soap, const char *tag, int id, const tt__BacklightCompensation20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__BacklightCompensation20), type)) - return soap->error; - if (soap_out_tt__BacklightCompensationMode(soap, "tt:Mode", -1, &a->tt__BacklightCompensation20::Mode, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Level", -1, &a->tt__BacklightCompensation20::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__BacklightCompensation20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__BacklightCompensation20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__BacklightCompensation20 * SOAP_FMAC4 soap_in_tt__BacklightCompensation20(struct soap *soap, const char *tag, tt__BacklightCompensation20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__BacklightCompensation20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BacklightCompensation20, sizeof(tt__BacklightCompensation20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__BacklightCompensation20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__BacklightCompensation20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__BacklightCompensationMode(soap, "tt:Mode", &a->tt__BacklightCompensation20::Mode, "tt:BacklightCompensationMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Level", &a->tt__BacklightCompensation20::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__BacklightCompensation20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__BacklightCompensation20, SOAP_TYPE_tt__BacklightCompensation20, sizeof(tt__BacklightCompensation20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__BacklightCompensation20 * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensation20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__BacklightCompensation20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__BacklightCompensation20 *p; - size_t k = sizeof(tt__BacklightCompensation20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__BacklightCompensation20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__BacklightCompensation20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__BacklightCompensation20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__BacklightCompensation20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__BacklightCompensation20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__BacklightCompensation20(soap, tag ? tag : "tt:BacklightCompensation20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__BacklightCompensation20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__BacklightCompensation20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__BacklightCompensation20 * SOAP_FMAC4 soap_get_tt__BacklightCompensation20(struct soap *soap, tt__BacklightCompensation20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BacklightCompensation20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WideDynamicRange20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__WideDynamicMode(soap, &this->tt__WideDynamicRange20::Mode); - this->tt__WideDynamicRange20::Level = NULL; -} - -void tt__WideDynamicRange20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTofloat(soap, &this->tt__WideDynamicRange20::Level); -#endif -} - -int tt__WideDynamicRange20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WideDynamicRange20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRange20(struct soap *soap, const char *tag, int id, const tt__WideDynamicRange20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WideDynamicRange20), type)) - return soap->error; - if (soap_out_tt__WideDynamicMode(soap, "tt:Mode", -1, &a->tt__WideDynamicRange20::Mode, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Level", -1, &a->tt__WideDynamicRange20::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WideDynamicRange20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WideDynamicRange20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WideDynamicRange20 * SOAP_FMAC4 soap_in_tt__WideDynamicRange20(struct soap *soap, const char *tag, tt__WideDynamicRange20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WideDynamicRange20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WideDynamicRange20, sizeof(tt__WideDynamicRange20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WideDynamicRange20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WideDynamicRange20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__WideDynamicMode(soap, "tt:Mode", &a->tt__WideDynamicRange20::Mode, "tt:WideDynamicMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Level", &a->tt__WideDynamicRange20::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WideDynamicRange20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WideDynamicRange20, SOAP_TYPE_tt__WideDynamicRange20, sizeof(tt__WideDynamicRange20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WideDynamicRange20 * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRange20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WideDynamicRange20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WideDynamicRange20 *p; - size_t k = sizeof(tt__WideDynamicRange20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WideDynamicRange20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WideDynamicRange20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WideDynamicRange20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WideDynamicRange20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WideDynamicRange20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WideDynamicRange20(soap, tag ? tag : "tt:WideDynamicRange20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WideDynamicRange20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WideDynamicRange20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WideDynamicRange20 * SOAP_FMAC4 soap_get_tt__WideDynamicRange20(struct soap *soap, tt__WideDynamicRange20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WideDynamicRange20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IrCutFilterAutoAdjustmentExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IrCutFilterAutoAdjustmentExtension::__any); -} - -void tt__IrCutFilterAutoAdjustmentExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IrCutFilterAutoAdjustmentExtension::__any); -#endif -} - -int tt__IrCutFilterAutoAdjustmentExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IrCutFilterAutoAdjustmentExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, const char *tag, int id, const tt__IrCutFilterAutoAdjustmentExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__IrCutFilterAutoAdjustmentExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IrCutFilterAutoAdjustmentExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IrCutFilterAutoAdjustmentExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentExtension * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, const char *tag, tt__IrCutFilterAutoAdjustmentExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IrCutFilterAutoAdjustmentExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension, sizeof(tt__IrCutFilterAutoAdjustmentExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IrCutFilterAutoAdjustmentExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__IrCutFilterAutoAdjustmentExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IrCutFilterAutoAdjustmentExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension, sizeof(tt__IrCutFilterAutoAdjustmentExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IrCutFilterAutoAdjustmentExtension * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IrCutFilterAutoAdjustmentExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IrCutFilterAutoAdjustmentExtension *p; - size_t k = sizeof(tt__IrCutFilterAutoAdjustmentExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IrCutFilterAutoAdjustmentExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IrCutFilterAutoAdjustmentExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IrCutFilterAutoAdjustmentExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IrCutFilterAutoAdjustmentExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IrCutFilterAutoAdjustmentExtension(soap, tag ? tag : "tt:IrCutFilterAutoAdjustmentExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IrCutFilterAutoAdjustmentExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IrCutFilterAutoAdjustmentExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentExtension * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterAutoAdjustmentExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IrCutFilterAutoAdjustment::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__IrCutFilterAutoAdjustment::BoundaryType); - this->tt__IrCutFilterAutoAdjustment::BoundaryOffset = NULL; - this->tt__IrCutFilterAutoAdjustment::ResponseTime = NULL; - this->tt__IrCutFilterAutoAdjustment::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__IrCutFilterAutoAdjustment::__anyAttribute); -} - -void tt__IrCutFilterAutoAdjustment::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IrCutFilterAutoAdjustment::BoundaryType, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__IrCutFilterAutoAdjustment::BoundaryType); - soap_serialize_PointerTofloat(soap, &this->tt__IrCutFilterAutoAdjustment::BoundaryOffset); - soap_serialize_PointerToxsd__duration(soap, &this->tt__IrCutFilterAutoAdjustment::ResponseTime); - soap_serialize_PointerTott__IrCutFilterAutoAdjustmentExtension(soap, &this->tt__IrCutFilterAutoAdjustment::Extension); -#endif -} - -int tt__IrCutFilterAutoAdjustment::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IrCutFilterAutoAdjustment(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustment(struct soap *soap, const char *tag, int id, const tt__IrCutFilterAutoAdjustment *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__IrCutFilterAutoAdjustment*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustment), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:BoundaryType", -1, &a->tt__IrCutFilterAutoAdjustment::BoundaryType, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:BoundaryOffset", -1, &a->tt__IrCutFilterAutoAdjustment::BoundaryOffset, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tt:ResponseTime", -1, &a->tt__IrCutFilterAutoAdjustment::ResponseTime, "")) - return soap->error; - if (soap_out_PointerTott__IrCutFilterAutoAdjustmentExtension(soap, "tt:Extension", -1, &a->tt__IrCutFilterAutoAdjustment::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IrCutFilterAutoAdjustment::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IrCutFilterAutoAdjustment(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustment * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustment(struct soap *soap, const char *tag, tt__IrCutFilterAutoAdjustment *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IrCutFilterAutoAdjustment*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IrCutFilterAutoAdjustment, sizeof(tt__IrCutFilterAutoAdjustment), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IrCutFilterAutoAdjustment) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IrCutFilterAutoAdjustment *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__IrCutFilterAutoAdjustment*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BoundaryType1 = 1; - size_t soap_flag_BoundaryOffset1 = 1; - size_t soap_flag_ResponseTime1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_BoundaryType1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:BoundaryType", &a->tt__IrCutFilterAutoAdjustment::BoundaryType, "xsd:string")) - { soap_flag_BoundaryType1--; - continue; - } - } - if (soap_flag_BoundaryOffset1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:BoundaryOffset", &a->tt__IrCutFilterAutoAdjustment::BoundaryOffset, "xsd:float")) - { soap_flag_BoundaryOffset1--; - continue; - } - } - if (soap_flag_ResponseTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tt:ResponseTime", &a->tt__IrCutFilterAutoAdjustment::ResponseTime, "xsd:duration")) - { soap_flag_ResponseTime1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IrCutFilterAutoAdjustmentExtension(soap, "tt:Extension", &a->tt__IrCutFilterAutoAdjustment::Extension, "tt:IrCutFilterAutoAdjustmentExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_BoundaryType1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IrCutFilterAutoAdjustment *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IrCutFilterAutoAdjustment, SOAP_TYPE_tt__IrCutFilterAutoAdjustment, sizeof(tt__IrCutFilterAutoAdjustment), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IrCutFilterAutoAdjustment * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustment(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IrCutFilterAutoAdjustment(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IrCutFilterAutoAdjustment *p; - size_t k = sizeof(tt__IrCutFilterAutoAdjustment); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IrCutFilterAutoAdjustment, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IrCutFilterAutoAdjustment); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IrCutFilterAutoAdjustment, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IrCutFilterAutoAdjustment location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IrCutFilterAutoAdjustment::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IrCutFilterAutoAdjustment(soap, tag ? tag : "tt:IrCutFilterAutoAdjustment", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IrCutFilterAutoAdjustment::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IrCutFilterAutoAdjustment(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IrCutFilterAutoAdjustment * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustment(struct soap *soap, tt__IrCutFilterAutoAdjustment *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IrCutFilterAutoAdjustment(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImageStabilizationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImageStabilizationExtension::__any); -} - -void tt__ImageStabilizationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImageStabilizationExtension::__any); -#endif -} - -int tt__ImageStabilizationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImageStabilizationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationExtension(struct soap *soap, const char *tag, int id, const tt__ImageStabilizationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImageStabilizationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImageStabilizationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImageStabilizationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImageStabilizationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImageStabilizationExtension * SOAP_FMAC4 soap_in_tt__ImageStabilizationExtension(struct soap *soap, const char *tag, tt__ImageStabilizationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImageStabilizationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageStabilizationExtension, sizeof(tt__ImageStabilizationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImageStabilizationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImageStabilizationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImageStabilizationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImageStabilizationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImageStabilizationExtension, SOAP_TYPE_tt__ImageStabilizationExtension, sizeof(tt__ImageStabilizationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImageStabilizationExtension * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImageStabilizationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImageStabilizationExtension *p; - size_t k = sizeof(tt__ImageStabilizationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImageStabilizationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImageStabilizationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImageStabilizationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImageStabilizationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImageStabilizationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImageStabilizationExtension(soap, tag ? tag : "tt:ImageStabilizationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImageStabilizationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImageStabilizationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImageStabilizationExtension * SOAP_FMAC4 soap_get_tt__ImageStabilizationExtension(struct soap *soap, tt__ImageStabilizationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageStabilizationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImageStabilization::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ImageStabilizationMode(soap, &this->tt__ImageStabilization::Mode); - this->tt__ImageStabilization::Level = NULL; - this->tt__ImageStabilization::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ImageStabilization::__anyAttribute); -} - -void tt__ImageStabilization::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTofloat(soap, &this->tt__ImageStabilization::Level); - soap_serialize_PointerTott__ImageStabilizationExtension(soap, &this->tt__ImageStabilization::Extension); -#endif -} - -int tt__ImageStabilization::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImageStabilization(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilization(struct soap *soap, const char *tag, int id, const tt__ImageStabilization *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImageStabilization*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImageStabilization), type)) - return soap->error; - if (soap_out_tt__ImageStabilizationMode(soap, "tt:Mode", -1, &a->tt__ImageStabilization::Mode, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Level", -1, &a->tt__ImageStabilization::Level, "")) - return soap->error; - if (soap_out_PointerTott__ImageStabilizationExtension(soap, "tt:Extension", -1, &a->tt__ImageStabilization::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImageStabilization::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImageStabilization(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImageStabilization * SOAP_FMAC4 soap_in_tt__ImageStabilization(struct soap *soap, const char *tag, tt__ImageStabilization *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImageStabilization*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImageStabilization, sizeof(tt__ImageStabilization), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImageStabilization) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImageStabilization *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImageStabilization*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Level1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ImageStabilizationMode(soap, "tt:Mode", &a->tt__ImageStabilization::Mode, "tt:ImageStabilizationMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Level", &a->tt__ImageStabilization::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImageStabilizationExtension(soap, "tt:Extension", &a->tt__ImageStabilization::Extension, "tt:ImageStabilizationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ImageStabilization *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImageStabilization, SOAP_TYPE_tt__ImageStabilization, sizeof(tt__ImageStabilization), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImageStabilization * SOAP_FMAC2 soap_instantiate_tt__ImageStabilization(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImageStabilization(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImageStabilization *p; - size_t k = sizeof(tt__ImageStabilization); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImageStabilization, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImageStabilization); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImageStabilization, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImageStabilization location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImageStabilization::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImageStabilization(soap, tag ? tag : "tt:ImageStabilization", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImageStabilization::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImageStabilization(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImageStabilization * SOAP_FMAC4 soap_get_tt__ImageStabilization(struct soap *soap, tt__ImageStabilization *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImageStabilization(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingSettingsExtension204::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingSettingsExtension204::__any); -} - -void tt__ImagingSettingsExtension204::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingSettingsExtension204::__any); -#endif -} - -int tt__ImagingSettingsExtension204::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingSettingsExtension204(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension204(struct soap *soap, const char *tag, int id, const tt__ImagingSettingsExtension204 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingSettingsExtension204), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingSettingsExtension204::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingSettingsExtension204::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingSettingsExtension204(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension204 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension204(struct soap *soap, const char *tag, tt__ImagingSettingsExtension204 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingSettingsExtension204*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingSettingsExtension204, sizeof(tt__ImagingSettingsExtension204), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingSettingsExtension204) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingSettingsExtension204 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingSettingsExtension204::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingSettingsExtension204 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingSettingsExtension204, SOAP_TYPE_tt__ImagingSettingsExtension204, sizeof(tt__ImagingSettingsExtension204), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingSettingsExtension204 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension204(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingSettingsExtension204(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingSettingsExtension204 *p; - size_t k = sizeof(tt__ImagingSettingsExtension204); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingSettingsExtension204, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingSettingsExtension204); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingSettingsExtension204, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingSettingsExtension204 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingSettingsExtension204::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingSettingsExtension204(soap, tag ? tag : "tt:ImagingSettingsExtension204", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingSettingsExtension204::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingSettingsExtension204(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension204 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension204(struct soap *soap, tt__ImagingSettingsExtension204 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingSettingsExtension204(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingSettingsExtension203::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingSettingsExtension203::ToneCompensation = NULL; - this->tt__ImagingSettingsExtension203::Defogging = NULL; - this->tt__ImagingSettingsExtension203::NoiseReduction = NULL; - this->tt__ImagingSettingsExtension203::Extension = NULL; -} - -void tt__ImagingSettingsExtension203::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ToneCompensation(soap, &this->tt__ImagingSettingsExtension203::ToneCompensation); - soap_serialize_PointerTott__Defogging(soap, &this->tt__ImagingSettingsExtension203::Defogging); - soap_serialize_PointerTott__NoiseReduction(soap, &this->tt__ImagingSettingsExtension203::NoiseReduction); - soap_serialize_PointerTott__ImagingSettingsExtension204(soap, &this->tt__ImagingSettingsExtension203::Extension); -#endif -} - -int tt__ImagingSettingsExtension203::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingSettingsExtension203(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension203(struct soap *soap, const char *tag, int id, const tt__ImagingSettingsExtension203 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingSettingsExtension203), type)) - return soap->error; - if (soap_out_PointerTott__ToneCompensation(soap, "tt:ToneCompensation", -1, &a->tt__ImagingSettingsExtension203::ToneCompensation, "")) - return soap->error; - if (soap_out_PointerTott__Defogging(soap, "tt:Defogging", -1, &a->tt__ImagingSettingsExtension203::Defogging, "")) - return soap->error; - if (soap_out_PointerTott__NoiseReduction(soap, "tt:NoiseReduction", -1, &a->tt__ImagingSettingsExtension203::NoiseReduction, "")) - return soap->error; - if (soap_out_PointerTott__ImagingSettingsExtension204(soap, "tt:Extension", -1, &a->tt__ImagingSettingsExtension203::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingSettingsExtension203::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingSettingsExtension203(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension203 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension203(struct soap *soap, const char *tag, tt__ImagingSettingsExtension203 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingSettingsExtension203*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingSettingsExtension203, sizeof(tt__ImagingSettingsExtension203), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingSettingsExtension203) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingSettingsExtension203 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ToneCompensation1 = 1; - size_t soap_flag_Defogging1 = 1; - size_t soap_flag_NoiseReduction1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ToneCompensation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ToneCompensation(soap, "tt:ToneCompensation", &a->tt__ImagingSettingsExtension203::ToneCompensation, "tt:ToneCompensation")) - { soap_flag_ToneCompensation1--; - continue; - } - } - if (soap_flag_Defogging1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Defogging(soap, "tt:Defogging", &a->tt__ImagingSettingsExtension203::Defogging, "tt:Defogging")) - { soap_flag_Defogging1--; - continue; - } - } - if (soap_flag_NoiseReduction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NoiseReduction(soap, "tt:NoiseReduction", &a->tt__ImagingSettingsExtension203::NoiseReduction, "tt:NoiseReduction")) - { soap_flag_NoiseReduction1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettingsExtension204(soap, "tt:Extension", &a->tt__ImagingSettingsExtension203::Extension, "tt:ImagingSettingsExtension204")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingSettingsExtension203 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingSettingsExtension203, SOAP_TYPE_tt__ImagingSettingsExtension203, sizeof(tt__ImagingSettingsExtension203), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingSettingsExtension203 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension203(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingSettingsExtension203(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingSettingsExtension203 *p; - size_t k = sizeof(tt__ImagingSettingsExtension203); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingSettingsExtension203, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingSettingsExtension203); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingSettingsExtension203, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingSettingsExtension203 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingSettingsExtension203::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingSettingsExtension203(soap, tag ? tag : "tt:ImagingSettingsExtension203", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingSettingsExtension203::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingSettingsExtension203(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension203 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension203(struct soap *soap, tt__ImagingSettingsExtension203 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingSettingsExtension203(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingSettingsExtension202::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(soap, &this->tt__ImagingSettingsExtension202::IrCutFilterAutoAdjustment); - this->tt__ImagingSettingsExtension202::Extension = NULL; -} - -void tt__ImagingSettingsExtension202::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(soap, &this->tt__ImagingSettingsExtension202::IrCutFilterAutoAdjustment); - soap_serialize_PointerTott__ImagingSettingsExtension203(soap, &this->tt__ImagingSettingsExtension202::Extension); -#endif -} - -int tt__ImagingSettingsExtension202::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingSettingsExtension202(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension202(struct soap *soap, const char *tag, int id, const tt__ImagingSettingsExtension202 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingSettingsExtension202), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(soap, "tt:IrCutFilterAutoAdjustment", -1, &a->tt__ImagingSettingsExtension202::IrCutFilterAutoAdjustment, "")) - return soap->error; - if (soap_out_PointerTott__ImagingSettingsExtension203(soap, "tt:Extension", -1, &a->tt__ImagingSettingsExtension202::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingSettingsExtension202::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingSettingsExtension202(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension202 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension202(struct soap *soap, const char *tag, tt__ImagingSettingsExtension202 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingSettingsExtension202*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingSettingsExtension202, sizeof(tt__ImagingSettingsExtension202), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingSettingsExtension202) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingSettingsExtension202 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(soap, "tt:IrCutFilterAutoAdjustment", &a->tt__ImagingSettingsExtension202::IrCutFilterAutoAdjustment, "tt:IrCutFilterAutoAdjustment")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettingsExtension203(soap, "tt:Extension", &a->tt__ImagingSettingsExtension202::Extension, "tt:ImagingSettingsExtension203")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingSettingsExtension202 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingSettingsExtension202, SOAP_TYPE_tt__ImagingSettingsExtension202, sizeof(tt__ImagingSettingsExtension202), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingSettingsExtension202 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension202(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingSettingsExtension202(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingSettingsExtension202 *p; - size_t k = sizeof(tt__ImagingSettingsExtension202); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingSettingsExtension202, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingSettingsExtension202); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingSettingsExtension202, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingSettingsExtension202 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingSettingsExtension202::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingSettingsExtension202(soap, tag ? tag : "tt:ImagingSettingsExtension202", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingSettingsExtension202::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingSettingsExtension202(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension202 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension202(struct soap *soap, tt__ImagingSettingsExtension202 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingSettingsExtension202(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingSettingsExtension20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingSettingsExtension20::__any); - this->tt__ImagingSettingsExtension20::ImageStabilization = NULL; - this->tt__ImagingSettingsExtension20::Extension = NULL; -} - -void tt__ImagingSettingsExtension20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingSettingsExtension20::__any); - soap_serialize_PointerTott__ImageStabilization(soap, &this->tt__ImagingSettingsExtension20::ImageStabilization); - soap_serialize_PointerTott__ImagingSettingsExtension202(soap, &this->tt__ImagingSettingsExtension20::Extension); -#endif -} - -int tt__ImagingSettingsExtension20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingSettingsExtension20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension20(struct soap *soap, const char *tag, int id, const tt__ImagingSettingsExtension20 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingSettingsExtension20), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingSettingsExtension20::__any, "")) - return soap->error; - if (soap_out_PointerTott__ImageStabilization(soap, "tt:ImageStabilization", -1, &a->tt__ImagingSettingsExtension20::ImageStabilization, "")) - return soap->error; - if (soap_out_PointerTott__ImagingSettingsExtension202(soap, "tt:Extension", -1, &a->tt__ImagingSettingsExtension20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingSettingsExtension20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingSettingsExtension20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension20 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension20(struct soap *soap, const char *tag, tt__ImagingSettingsExtension20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingSettingsExtension20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingSettingsExtension20, sizeof(tt__ImagingSettingsExtension20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingSettingsExtension20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingSettingsExtension20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ImageStabilization1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ImageStabilization1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImageStabilization(soap, "tt:ImageStabilization", &a->tt__ImagingSettingsExtension20::ImageStabilization, "tt:ImageStabilization")) - { soap_flag_ImageStabilization1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettingsExtension202(soap, "tt:Extension", &a->tt__ImagingSettingsExtension20::Extension, "tt:ImagingSettingsExtension202")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingSettingsExtension20::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingSettingsExtension20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingSettingsExtension20, SOAP_TYPE_tt__ImagingSettingsExtension20, sizeof(tt__ImagingSettingsExtension20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingSettingsExtension20 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingSettingsExtension20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingSettingsExtension20 *p; - size_t k = sizeof(tt__ImagingSettingsExtension20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingSettingsExtension20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingSettingsExtension20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingSettingsExtension20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingSettingsExtension20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingSettingsExtension20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingSettingsExtension20(soap, tag ? tag : "tt:ImagingSettingsExtension20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingSettingsExtension20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingSettingsExtension20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension20 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension20(struct soap *soap, tt__ImagingSettingsExtension20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingSettingsExtension20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingSettings20::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingSettings20::BacklightCompensation = NULL; - this->tt__ImagingSettings20::Brightness = NULL; - this->tt__ImagingSettings20::ColorSaturation = NULL; - this->tt__ImagingSettings20::Contrast = NULL; - this->tt__ImagingSettings20::Exposure = NULL; - this->tt__ImagingSettings20::Focus = NULL; - this->tt__ImagingSettings20::IrCutFilter = NULL; - this->tt__ImagingSettings20::Sharpness = NULL; - this->tt__ImagingSettings20::WideDynamicRange = NULL; - this->tt__ImagingSettings20::WhiteBalance = NULL; - this->tt__ImagingSettings20::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ImagingSettings20::__anyAttribute); -} - -void tt__ImagingSettings20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__BacklightCompensation20(soap, &this->tt__ImagingSettings20::BacklightCompensation); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings20::Brightness); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings20::ColorSaturation); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings20::Contrast); - soap_serialize_PointerTott__Exposure20(soap, &this->tt__ImagingSettings20::Exposure); - soap_serialize_PointerTott__FocusConfiguration20(soap, &this->tt__ImagingSettings20::Focus); - soap_serialize_PointerTott__IrCutFilterMode(soap, &this->tt__ImagingSettings20::IrCutFilter); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings20::Sharpness); - soap_serialize_PointerTott__WideDynamicRange20(soap, &this->tt__ImagingSettings20::WideDynamicRange); - soap_serialize_PointerTott__WhiteBalance20(soap, &this->tt__ImagingSettings20::WhiteBalance); - soap_serialize_PointerTott__ImagingSettingsExtension20(soap, &this->tt__ImagingSettings20::Extension); -#endif -} - -int tt__ImagingSettings20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingSettings20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettings20(struct soap *soap, const char *tag, int id, const tt__ImagingSettings20 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImagingSettings20*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingSettings20), type)) - return soap->error; - if (soap_out_PointerTott__BacklightCompensation20(soap, "tt:BacklightCompensation", -1, &a->tt__ImagingSettings20::BacklightCompensation, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Brightness", -1, &a->tt__ImagingSettings20::Brightness, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:ColorSaturation", -1, &a->tt__ImagingSettings20::ColorSaturation, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Contrast", -1, &a->tt__ImagingSettings20::Contrast, "")) - return soap->error; - if (soap_out_PointerTott__Exposure20(soap, "tt:Exposure", -1, &a->tt__ImagingSettings20::Exposure, "")) - return soap->error; - if (soap_out_PointerTott__FocusConfiguration20(soap, "tt:Focus", -1, &a->tt__ImagingSettings20::Focus, "")) - return soap->error; - if (soap_out_PointerTott__IrCutFilterMode(soap, "tt:IrCutFilter", -1, &a->tt__ImagingSettings20::IrCutFilter, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Sharpness", -1, &a->tt__ImagingSettings20::Sharpness, "")) - return soap->error; - if (soap_out_PointerTott__WideDynamicRange20(soap, "tt:WideDynamicRange", -1, &a->tt__ImagingSettings20::WideDynamicRange, "")) - return soap->error; - if (soap_out_PointerTott__WhiteBalance20(soap, "tt:WhiteBalance", -1, &a->tt__ImagingSettings20::WhiteBalance, "")) - return soap->error; - if (soap_out_PointerTott__ImagingSettingsExtension20(soap, "tt:Extension", -1, &a->tt__ImagingSettings20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingSettings20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingSettings20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingSettings20 * SOAP_FMAC4 soap_in_tt__ImagingSettings20(struct soap *soap, const char *tag, tt__ImagingSettings20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingSettings20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingSettings20, sizeof(tt__ImagingSettings20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingSettings20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingSettings20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImagingSettings20*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BacklightCompensation1 = 1; - size_t soap_flag_Brightness1 = 1; - size_t soap_flag_ColorSaturation1 = 1; - size_t soap_flag_Contrast1 = 1; - size_t soap_flag_Exposure1 = 1; - size_t soap_flag_Focus1 = 1; - size_t soap_flag_IrCutFilter1 = 1; - size_t soap_flag_Sharpness1 = 1; - size_t soap_flag_WideDynamicRange1 = 1; - size_t soap_flag_WhiteBalance1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_BacklightCompensation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BacklightCompensation20(soap, "tt:BacklightCompensation", &a->tt__ImagingSettings20::BacklightCompensation, "tt:BacklightCompensation20")) - { soap_flag_BacklightCompensation1--; - continue; - } - } - if (soap_flag_Brightness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Brightness", &a->tt__ImagingSettings20::Brightness, "xsd:float")) - { soap_flag_Brightness1--; - continue; - } - } - if (soap_flag_ColorSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:ColorSaturation", &a->tt__ImagingSettings20::ColorSaturation, "xsd:float")) - { soap_flag_ColorSaturation1--; - continue; - } - } - if (soap_flag_Contrast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Contrast", &a->tt__ImagingSettings20::Contrast, "xsd:float")) - { soap_flag_Contrast1--; - continue; - } - } - if (soap_flag_Exposure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Exposure20(soap, "tt:Exposure", &a->tt__ImagingSettings20::Exposure, "tt:Exposure20")) - { soap_flag_Exposure1--; - continue; - } - } - if (soap_flag_Focus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusConfiguration20(soap, "tt:Focus", &a->tt__ImagingSettings20::Focus, "tt:FocusConfiguration20")) - { soap_flag_Focus1--; - continue; - } - } - if (soap_flag_IrCutFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IrCutFilterMode(soap, "tt:IrCutFilter", &a->tt__ImagingSettings20::IrCutFilter, "tt:IrCutFilterMode")) - { soap_flag_IrCutFilter1--; - continue; - } - } - if (soap_flag_Sharpness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Sharpness", &a->tt__ImagingSettings20::Sharpness, "xsd:float")) - { soap_flag_Sharpness1--; - continue; - } - } - if (soap_flag_WideDynamicRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WideDynamicRange20(soap, "tt:WideDynamicRange", &a->tt__ImagingSettings20::WideDynamicRange, "tt:WideDynamicRange20")) - { soap_flag_WideDynamicRange1--; - continue; - } - } - if (soap_flag_WhiteBalance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WhiteBalance20(soap, "tt:WhiteBalance", &a->tt__ImagingSettings20::WhiteBalance, "tt:WhiteBalance20")) - { soap_flag_WhiteBalance1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettingsExtension20(soap, "tt:Extension", &a->tt__ImagingSettings20::Extension, "tt:ImagingSettingsExtension20")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingSettings20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingSettings20, SOAP_TYPE_tt__ImagingSettings20, sizeof(tt__ImagingSettings20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingSettings20 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettings20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingSettings20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingSettings20 *p; - size_t k = sizeof(tt__ImagingSettings20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingSettings20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingSettings20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingSettings20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingSettings20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingSettings20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingSettings20(soap, tag ? tag : "tt:ImagingSettings20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingSettings20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingSettings20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingSettings20 * SOAP_FMAC4 soap_get_tt__ImagingSettings20(struct soap *soap, tt__ImagingSettings20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingSettings20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusStatus20Extension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusStatus20Extension::__any); -} - -void tt__FocusStatus20Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusStatus20Extension::__any); -#endif -} - -int tt__FocusStatus20Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusStatus20Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusStatus20Extension(struct soap *soap, const char *tag, int id, const tt__FocusStatus20Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusStatus20Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FocusStatus20Extension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusStatus20Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusStatus20Extension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusStatus20Extension * SOAP_FMAC4 soap_in_tt__FocusStatus20Extension(struct soap *soap, const char *tag, tt__FocusStatus20Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusStatus20Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusStatus20Extension, sizeof(tt__FocusStatus20Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusStatus20Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusStatus20Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FocusStatus20Extension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__FocusStatus20Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusStatus20Extension, SOAP_TYPE_tt__FocusStatus20Extension, sizeof(tt__FocusStatus20Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusStatus20Extension * SOAP_FMAC2 soap_instantiate_tt__FocusStatus20Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusStatus20Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusStatus20Extension *p; - size_t k = sizeof(tt__FocusStatus20Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusStatus20Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusStatus20Extension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusStatus20Extension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusStatus20Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusStatus20Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusStatus20Extension(soap, tag ? tag : "tt:FocusStatus20Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusStatus20Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusStatus20Extension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusStatus20Extension * SOAP_FMAC4 soap_get_tt__FocusStatus20Extension(struct soap *soap, tt__FocusStatus20Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusStatus20Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusStatus20::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__FocusStatus20::Position); - soap_default_tt__MoveStatus(soap, &this->tt__FocusStatus20::MoveStatus); - this->tt__FocusStatus20::Error = NULL; - this->tt__FocusStatus20::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__FocusStatus20::__anyAttribute); -} - -void tt__FocusStatus20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__FocusStatus20::Position, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__FocusStatus20::MoveStatus, SOAP_TYPE_tt__MoveStatus); - soap_serialize_PointerTostd__string(soap, &this->tt__FocusStatus20::Error); - soap_serialize_PointerTott__FocusStatus20Extension(soap, &this->tt__FocusStatus20::Extension); -#endif -} - -int tt__FocusStatus20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusStatus20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusStatus20(struct soap *soap, const char *tag, int id, const tt__FocusStatus20 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FocusStatus20*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusStatus20), type)) - return soap->error; - if (soap_out_float(soap, "tt:Position", -1, &a->tt__FocusStatus20::Position, "")) - return soap->error; - if (soap_out_tt__MoveStatus(soap, "tt:MoveStatus", -1, &a->tt__FocusStatus20::MoveStatus, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Error", -1, &a->tt__FocusStatus20::Error, "")) - return soap->error; - if (soap_out_PointerTott__FocusStatus20Extension(soap, "tt:Extension", -1, &a->tt__FocusStatus20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusStatus20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusStatus20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusStatus20 * SOAP_FMAC4 soap_in_tt__FocusStatus20(struct soap *soap, const char *tag, tt__FocusStatus20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusStatus20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusStatus20, sizeof(tt__FocusStatus20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusStatus20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusStatus20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FocusStatus20*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Position1 = 1; - size_t soap_flag_MoveStatus1 = 1; - size_t soap_flag_Error1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Position", &a->tt__FocusStatus20::Position, "xsd:float")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_MoveStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__MoveStatus(soap, "tt:MoveStatus", &a->tt__FocusStatus20::MoveStatus, "tt:MoveStatus")) - { soap_flag_MoveStatus1--; - continue; - } - } - if (soap_flag_Error1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Error", &a->tt__FocusStatus20::Error, "xsd:string")) - { soap_flag_Error1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusStatus20Extension(soap, "tt:Extension", &a->tt__FocusStatus20::Extension, "tt:FocusStatus20Extension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Position1 > 0 || soap_flag_MoveStatus1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FocusStatus20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusStatus20, SOAP_TYPE_tt__FocusStatus20, sizeof(tt__FocusStatus20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusStatus20 * SOAP_FMAC2 soap_instantiate_tt__FocusStatus20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusStatus20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusStatus20 *p; - size_t k = sizeof(tt__FocusStatus20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusStatus20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusStatus20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusStatus20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusStatus20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusStatus20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusStatus20(soap, tag ? tag : "tt:FocusStatus20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusStatus20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusStatus20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusStatus20 * SOAP_FMAC4 soap_get_tt__FocusStatus20(struct soap *soap, tt__FocusStatus20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusStatus20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingStatus20Extension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingStatus20Extension::__any); -} - -void tt__ImagingStatus20Extension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingStatus20Extension::__any); -#endif -} - -int tt__ImagingStatus20Extension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingStatus20Extension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingStatus20Extension(struct soap *soap, const char *tag, int id, const tt__ImagingStatus20Extension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingStatus20Extension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingStatus20Extension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingStatus20Extension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingStatus20Extension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingStatus20Extension * SOAP_FMAC4 soap_in_tt__ImagingStatus20Extension(struct soap *soap, const char *tag, tt__ImagingStatus20Extension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingStatus20Extension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingStatus20Extension, sizeof(tt__ImagingStatus20Extension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingStatus20Extension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingStatus20Extension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingStatus20Extension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingStatus20Extension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingStatus20Extension, SOAP_TYPE_tt__ImagingStatus20Extension, sizeof(tt__ImagingStatus20Extension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingStatus20Extension * SOAP_FMAC2 soap_instantiate_tt__ImagingStatus20Extension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingStatus20Extension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingStatus20Extension *p; - size_t k = sizeof(tt__ImagingStatus20Extension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingStatus20Extension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingStatus20Extension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingStatus20Extension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingStatus20Extension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingStatus20Extension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingStatus20Extension(soap, tag ? tag : "tt:ImagingStatus20Extension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingStatus20Extension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingStatus20Extension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingStatus20Extension * SOAP_FMAC4 soap_get_tt__ImagingStatus20Extension(struct soap *soap, tt__ImagingStatus20Extension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingStatus20Extension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingStatus20::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingStatus20::FocusStatus20 = NULL; - this->tt__ImagingStatus20::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ImagingStatus20::__anyAttribute); -} - -void tt__ImagingStatus20::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FocusStatus20(soap, &this->tt__ImagingStatus20::FocusStatus20); - soap_serialize_PointerTott__ImagingStatus20Extension(soap, &this->tt__ImagingStatus20::Extension); -#endif -} - -int tt__ImagingStatus20::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingStatus20(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingStatus20(struct soap *soap, const char *tag, int id, const tt__ImagingStatus20 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImagingStatus20*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingStatus20), type)) - return soap->error; - if (soap_out_PointerTott__FocusStatus20(soap, "tt:FocusStatus20", -1, &a->tt__ImagingStatus20::FocusStatus20, "")) - return soap->error; - if (soap_out_PointerTott__ImagingStatus20Extension(soap, "tt:Extension", -1, &a->tt__ImagingStatus20::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingStatus20::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingStatus20(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingStatus20 * SOAP_FMAC4 soap_in_tt__ImagingStatus20(struct soap *soap, const char *tag, tt__ImagingStatus20 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingStatus20*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingStatus20, sizeof(tt__ImagingStatus20), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingStatus20) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingStatus20 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImagingStatus20*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FocusStatus201 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FocusStatus201 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusStatus20(soap, "tt:FocusStatus20", &a->tt__ImagingStatus20::FocusStatus20, "tt:FocusStatus20")) - { soap_flag_FocusStatus201--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingStatus20Extension(soap, "tt:Extension", &a->tt__ImagingStatus20::Extension, "tt:ImagingStatus20Extension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingStatus20 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingStatus20, SOAP_TYPE_tt__ImagingStatus20, sizeof(tt__ImagingStatus20), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingStatus20 * SOAP_FMAC2 soap_instantiate_tt__ImagingStatus20(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingStatus20(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingStatus20 *p; - size_t k = sizeof(tt__ImagingStatus20); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingStatus20, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingStatus20); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingStatus20, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingStatus20 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingStatus20::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingStatus20(soap, tag ? tag : "tt:ImagingStatus20", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingStatus20::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingStatus20(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingStatus20 * SOAP_FMAC4 soap_get_tt__ImagingStatus20(struct soap *soap, tt__ImagingStatus20 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingStatus20(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WhiteBalance::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__WhiteBalanceMode(soap, &this->tt__WhiteBalance::Mode); - soap_default_float(soap, &this->tt__WhiteBalance::CrGain); - soap_default_float(soap, &this->tt__WhiteBalance::CbGain); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__WhiteBalance::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__WhiteBalance::__anyAttribute); -} - -void tt__WhiteBalance::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__WhiteBalance::CrGain, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__WhiteBalance::CbGain, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__WhiteBalance::__any); -#endif -} - -int tt__WhiteBalance::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WhiteBalance(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalance(struct soap *soap, const char *tag, int id, const tt__WhiteBalance *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__WhiteBalance*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WhiteBalance), type)) - return soap->error; - if (soap_out_tt__WhiteBalanceMode(soap, "tt:Mode", -1, &a->tt__WhiteBalance::Mode, "")) - return soap->error; - if (soap_out_float(soap, "tt:CrGain", -1, &a->tt__WhiteBalance::CrGain, "")) - return soap->error; - if (soap_out_float(soap, "tt:CbGain", -1, &a->tt__WhiteBalance::CbGain, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__WhiteBalance::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WhiteBalance::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WhiteBalance(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WhiteBalance * SOAP_FMAC4 soap_in_tt__WhiteBalance(struct soap *soap, const char *tag, tt__WhiteBalance *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WhiteBalance*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalance, sizeof(tt__WhiteBalance), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WhiteBalance) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WhiteBalance *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__WhiteBalance*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_CrGain1 = 1; - size_t soap_flag_CbGain1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__WhiteBalanceMode(soap, "tt:Mode", &a->tt__WhiteBalance::Mode, "tt:WhiteBalanceMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_CrGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:CrGain", &a->tt__WhiteBalance::CrGain, "xsd:float")) - { soap_flag_CrGain1--; - continue; - } - } - if (soap_flag_CbGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:CbGain", &a->tt__WhiteBalance::CbGain, "xsd:float")) - { soap_flag_CbGain1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__WhiteBalance::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0 || soap_flag_CrGain1 > 0 || soap_flag_CbGain1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WhiteBalance *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WhiteBalance, SOAP_TYPE_tt__WhiteBalance, sizeof(tt__WhiteBalance), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WhiteBalance * SOAP_FMAC2 soap_instantiate_tt__WhiteBalance(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WhiteBalance(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WhiteBalance *p; - size_t k = sizeof(tt__WhiteBalance); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WhiteBalance, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WhiteBalance); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WhiteBalance, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WhiteBalance location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WhiteBalance::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WhiteBalance(soap, tag ? tag : "tt:WhiteBalance", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WhiteBalance::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WhiteBalance(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WhiteBalance * SOAP_FMAC4 soap_get_tt__WhiteBalance(struct soap *soap, tt__WhiteBalance *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalance(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ContinuousFocusOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ContinuousFocusOptions::Speed = NULL; -} - -void tt__ContinuousFocusOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ContinuousFocusOptions::Speed); -#endif -} - -int tt__ContinuousFocusOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ContinuousFocusOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ContinuousFocusOptions(struct soap *soap, const char *tag, int id, const tt__ContinuousFocusOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ContinuousFocusOptions), type)) - return soap->error; - if (!a->tt__ContinuousFocusOptions::Speed) - { if (soap_element_empty(soap, "tt:Speed", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Speed", -1, &a->tt__ContinuousFocusOptions::Speed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ContinuousFocusOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ContinuousFocusOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ContinuousFocusOptions * SOAP_FMAC4 soap_in_tt__ContinuousFocusOptions(struct soap *soap, const char *tag, tt__ContinuousFocusOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ContinuousFocusOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ContinuousFocusOptions, sizeof(tt__ContinuousFocusOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ContinuousFocusOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ContinuousFocusOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Speed", &a->tt__ContinuousFocusOptions::Speed, "tt:FloatRange")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__ContinuousFocusOptions::Speed)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ContinuousFocusOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ContinuousFocusOptions, SOAP_TYPE_tt__ContinuousFocusOptions, sizeof(tt__ContinuousFocusOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ContinuousFocusOptions * SOAP_FMAC2 soap_instantiate_tt__ContinuousFocusOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ContinuousFocusOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ContinuousFocusOptions *p; - size_t k = sizeof(tt__ContinuousFocusOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ContinuousFocusOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ContinuousFocusOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ContinuousFocusOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ContinuousFocusOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ContinuousFocusOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ContinuousFocusOptions(soap, tag ? tag : "tt:ContinuousFocusOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ContinuousFocusOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ContinuousFocusOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ContinuousFocusOptions * SOAP_FMAC4 soap_get_tt__ContinuousFocusOptions(struct soap *soap, tt__ContinuousFocusOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ContinuousFocusOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelativeFocusOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__RelativeFocusOptions::Distance = NULL; - this->tt__RelativeFocusOptions::Speed = NULL; -} - -void tt__RelativeFocusOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FloatRange(soap, &this->tt__RelativeFocusOptions::Distance); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__RelativeFocusOptions::Speed); -#endif -} - -int tt__RelativeFocusOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelativeFocusOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelativeFocusOptions(struct soap *soap, const char *tag, int id, const tt__RelativeFocusOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelativeFocusOptions), type)) - return soap->error; - if (!a->tt__RelativeFocusOptions::Distance) - { if (soap_element_empty(soap, "tt:Distance", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Distance", -1, &a->tt__RelativeFocusOptions::Distance, "")) - return soap->error; - if (!a->tt__RelativeFocusOptions::Speed) - { if (soap_element_empty(soap, "tt:Speed", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Speed", -1, &a->tt__RelativeFocusOptions::Speed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RelativeFocusOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelativeFocusOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelativeFocusOptions * SOAP_FMAC4 soap_in_tt__RelativeFocusOptions(struct soap *soap, const char *tag, tt__RelativeFocusOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RelativeFocusOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelativeFocusOptions, sizeof(tt__RelativeFocusOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelativeFocusOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RelativeFocusOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Distance1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Distance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Distance", &a->tt__RelativeFocusOptions::Distance, "tt:FloatRange")) - { soap_flag_Distance1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Speed", &a->tt__RelativeFocusOptions::Speed, "tt:FloatRange")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__RelativeFocusOptions::Distance || !a->tt__RelativeFocusOptions::Speed)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RelativeFocusOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelativeFocusOptions, SOAP_TYPE_tt__RelativeFocusOptions, sizeof(tt__RelativeFocusOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RelativeFocusOptions * SOAP_FMAC2 soap_instantiate_tt__RelativeFocusOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelativeFocusOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelativeFocusOptions *p; - size_t k = sizeof(tt__RelativeFocusOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelativeFocusOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelativeFocusOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelativeFocusOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelativeFocusOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelativeFocusOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelativeFocusOptions(soap, tag ? tag : "tt:RelativeFocusOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelativeFocusOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelativeFocusOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelativeFocusOptions * SOAP_FMAC4 soap_get_tt__RelativeFocusOptions(struct soap *soap, tt__RelativeFocusOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelativeFocusOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AbsoluteFocusOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__AbsoluteFocusOptions::Position = NULL; - this->tt__AbsoluteFocusOptions::Speed = NULL; -} - -void tt__AbsoluteFocusOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FloatRange(soap, &this->tt__AbsoluteFocusOptions::Position); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__AbsoluteFocusOptions::Speed); -#endif -} - -int tt__AbsoluteFocusOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AbsoluteFocusOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AbsoluteFocusOptions(struct soap *soap, const char *tag, int id, const tt__AbsoluteFocusOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AbsoluteFocusOptions), type)) - return soap->error; - if (!a->tt__AbsoluteFocusOptions::Position) - { if (soap_element_empty(soap, "tt:Position", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Position", -1, &a->tt__AbsoluteFocusOptions::Position, "")) - return soap->error; - if (soap_out_PointerTott__FloatRange(soap, "tt:Speed", -1, &a->tt__AbsoluteFocusOptions::Speed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AbsoluteFocusOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AbsoluteFocusOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AbsoluteFocusOptions * SOAP_FMAC4 soap_in_tt__AbsoluteFocusOptions(struct soap *soap, const char *tag, tt__AbsoluteFocusOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AbsoluteFocusOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AbsoluteFocusOptions, sizeof(tt__AbsoluteFocusOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AbsoluteFocusOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AbsoluteFocusOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Position1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Position", &a->tt__AbsoluteFocusOptions::Position, "tt:FloatRange")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Speed", &a->tt__AbsoluteFocusOptions::Speed, "tt:FloatRange")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__AbsoluteFocusOptions::Position)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AbsoluteFocusOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AbsoluteFocusOptions, SOAP_TYPE_tt__AbsoluteFocusOptions, sizeof(tt__AbsoluteFocusOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AbsoluteFocusOptions * SOAP_FMAC2 soap_instantiate_tt__AbsoluteFocusOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AbsoluteFocusOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AbsoluteFocusOptions *p; - size_t k = sizeof(tt__AbsoluteFocusOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AbsoluteFocusOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AbsoluteFocusOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AbsoluteFocusOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AbsoluteFocusOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AbsoluteFocusOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AbsoluteFocusOptions(soap, tag ? tag : "tt:AbsoluteFocusOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AbsoluteFocusOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AbsoluteFocusOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AbsoluteFocusOptions * SOAP_FMAC4 soap_get_tt__AbsoluteFocusOptions(struct soap *soap, tt__AbsoluteFocusOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AbsoluteFocusOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MoveOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__MoveOptions::Absolute = NULL; - this->tt__MoveOptions::Relative = NULL; - this->tt__MoveOptions::Continuous = NULL; -} - -void tt__MoveOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AbsoluteFocusOptions(soap, &this->tt__MoveOptions::Absolute); - soap_serialize_PointerTott__RelativeFocusOptions(soap, &this->tt__MoveOptions::Relative); - soap_serialize_PointerTott__ContinuousFocusOptions(soap, &this->tt__MoveOptions::Continuous); -#endif -} - -int tt__MoveOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MoveOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveOptions(struct soap *soap, const char *tag, int id, const tt__MoveOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MoveOptions), type)) - return soap->error; - if (soap_out_PointerTott__AbsoluteFocusOptions(soap, "tt:Absolute", -1, &a->tt__MoveOptions::Absolute, "")) - return soap->error; - if (soap_out_PointerTott__RelativeFocusOptions(soap, "tt:Relative", -1, &a->tt__MoveOptions::Relative, "")) - return soap->error; - if (soap_out_PointerTott__ContinuousFocusOptions(soap, "tt:Continuous", -1, &a->tt__MoveOptions::Continuous, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MoveOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MoveOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MoveOptions * SOAP_FMAC4 soap_in_tt__MoveOptions(struct soap *soap, const char *tag, tt__MoveOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MoveOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MoveOptions, sizeof(tt__MoveOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MoveOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MoveOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Absolute1 = 1; - size_t soap_flag_Relative1 = 1; - size_t soap_flag_Continuous1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Absolute1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AbsoluteFocusOptions(soap, "tt:Absolute", &a->tt__MoveOptions::Absolute, "tt:AbsoluteFocusOptions")) - { soap_flag_Absolute1--; - continue; - } - } - if (soap_flag_Relative1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RelativeFocusOptions(soap, "tt:Relative", &a->tt__MoveOptions::Relative, "tt:RelativeFocusOptions")) - { soap_flag_Relative1--; - continue; - } - } - if (soap_flag_Continuous1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ContinuousFocusOptions(soap, "tt:Continuous", &a->tt__MoveOptions::Continuous, "tt:ContinuousFocusOptions")) - { soap_flag_Continuous1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MoveOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MoveOptions, SOAP_TYPE_tt__MoveOptions, sizeof(tt__MoveOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MoveOptions * SOAP_FMAC2 soap_instantiate_tt__MoveOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MoveOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MoveOptions *p; - size_t k = sizeof(tt__MoveOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MoveOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MoveOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MoveOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MoveOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MoveOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MoveOptions(soap, tag ? tag : "tt:MoveOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MoveOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MoveOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MoveOptions * SOAP_FMAC4 soap_get_tt__MoveOptions(struct soap *soap, tt__MoveOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MoveOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ContinuousFocus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__ContinuousFocus::Speed); -} - -void tt__ContinuousFocus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ContinuousFocus::Speed, SOAP_TYPE_float); -#endif -} - -int tt__ContinuousFocus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ContinuousFocus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ContinuousFocus(struct soap *soap, const char *tag, int id, const tt__ContinuousFocus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ContinuousFocus), type)) - return soap->error; - if (soap_out_float(soap, "tt:Speed", -1, &a->tt__ContinuousFocus::Speed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ContinuousFocus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ContinuousFocus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ContinuousFocus * SOAP_FMAC4 soap_in_tt__ContinuousFocus(struct soap *soap, const char *tag, tt__ContinuousFocus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ContinuousFocus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ContinuousFocus, sizeof(tt__ContinuousFocus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ContinuousFocus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ContinuousFocus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Speed", &a->tt__ContinuousFocus::Speed, "xsd:float")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Speed1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ContinuousFocus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ContinuousFocus, SOAP_TYPE_tt__ContinuousFocus, sizeof(tt__ContinuousFocus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ContinuousFocus * SOAP_FMAC2 soap_instantiate_tt__ContinuousFocus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ContinuousFocus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ContinuousFocus *p; - size_t k = sizeof(tt__ContinuousFocus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ContinuousFocus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ContinuousFocus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ContinuousFocus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ContinuousFocus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ContinuousFocus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ContinuousFocus(soap, tag ? tag : "tt:ContinuousFocus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ContinuousFocus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ContinuousFocus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ContinuousFocus * SOAP_FMAC4 soap_get_tt__ContinuousFocus(struct soap *soap, tt__ContinuousFocus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ContinuousFocus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelativeFocus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__RelativeFocus::Distance); - this->tt__RelativeFocus::Speed = NULL; -} - -void tt__RelativeFocus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RelativeFocus::Distance, SOAP_TYPE_float); - soap_serialize_PointerTofloat(soap, &this->tt__RelativeFocus::Speed); -#endif -} - -int tt__RelativeFocus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelativeFocus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelativeFocus(struct soap *soap, const char *tag, int id, const tt__RelativeFocus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelativeFocus), type)) - return soap->error; - if (soap_out_float(soap, "tt:Distance", -1, &a->tt__RelativeFocus::Distance, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Speed", -1, &a->tt__RelativeFocus::Speed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RelativeFocus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelativeFocus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelativeFocus * SOAP_FMAC4 soap_in_tt__RelativeFocus(struct soap *soap, const char *tag, tt__RelativeFocus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RelativeFocus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelativeFocus, sizeof(tt__RelativeFocus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelativeFocus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RelativeFocus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Distance1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Distance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Distance", &a->tt__RelativeFocus::Distance, "xsd:float")) - { soap_flag_Distance1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Speed", &a->tt__RelativeFocus::Speed, "xsd:float")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Distance1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RelativeFocus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelativeFocus, SOAP_TYPE_tt__RelativeFocus, sizeof(tt__RelativeFocus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RelativeFocus * SOAP_FMAC2 soap_instantiate_tt__RelativeFocus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelativeFocus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelativeFocus *p; - size_t k = sizeof(tt__RelativeFocus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelativeFocus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelativeFocus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelativeFocus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelativeFocus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelativeFocus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelativeFocus(soap, tag ? tag : "tt:RelativeFocus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelativeFocus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelativeFocus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelativeFocus * SOAP_FMAC4 soap_get_tt__RelativeFocus(struct soap *soap, tt__RelativeFocus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelativeFocus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AbsoluteFocus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__AbsoluteFocus::Position); - this->tt__AbsoluteFocus::Speed = NULL; -} - -void tt__AbsoluteFocus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AbsoluteFocus::Position, SOAP_TYPE_float); - soap_serialize_PointerTofloat(soap, &this->tt__AbsoluteFocus::Speed); -#endif -} - -int tt__AbsoluteFocus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AbsoluteFocus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AbsoluteFocus(struct soap *soap, const char *tag, int id, const tt__AbsoluteFocus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AbsoluteFocus), type)) - return soap->error; - if (soap_out_float(soap, "tt:Position", -1, &a->tt__AbsoluteFocus::Position, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Speed", -1, &a->tt__AbsoluteFocus::Speed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AbsoluteFocus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AbsoluteFocus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AbsoluteFocus * SOAP_FMAC4 soap_in_tt__AbsoluteFocus(struct soap *soap, const char *tag, tt__AbsoluteFocus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AbsoluteFocus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AbsoluteFocus, sizeof(tt__AbsoluteFocus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AbsoluteFocus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AbsoluteFocus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Position1 = 1; - size_t soap_flag_Speed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Position", &a->tt__AbsoluteFocus::Position, "xsd:float")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Speed", &a->tt__AbsoluteFocus::Speed, "xsd:float")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Position1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AbsoluteFocus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AbsoluteFocus, SOAP_TYPE_tt__AbsoluteFocus, sizeof(tt__AbsoluteFocus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AbsoluteFocus * SOAP_FMAC2 soap_instantiate_tt__AbsoluteFocus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AbsoluteFocus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AbsoluteFocus *p; - size_t k = sizeof(tt__AbsoluteFocus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AbsoluteFocus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AbsoluteFocus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AbsoluteFocus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AbsoluteFocus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AbsoluteFocus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AbsoluteFocus(soap, tag ? tag : "tt:AbsoluteFocus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AbsoluteFocus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AbsoluteFocus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AbsoluteFocus * SOAP_FMAC4 soap_get_tt__AbsoluteFocus(struct soap *soap, tt__AbsoluteFocus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AbsoluteFocus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusMove::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__FocusMove::Absolute = NULL; - this->tt__FocusMove::Relative = NULL; - this->tt__FocusMove::Continuous = NULL; -} - -void tt__FocusMove::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AbsoluteFocus(soap, &this->tt__FocusMove::Absolute); - soap_serialize_PointerTott__RelativeFocus(soap, &this->tt__FocusMove::Relative); - soap_serialize_PointerTott__ContinuousFocus(soap, &this->tt__FocusMove::Continuous); -#endif -} - -int tt__FocusMove::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusMove(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusMove(struct soap *soap, const char *tag, int id, const tt__FocusMove *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusMove), type)) - return soap->error; - if (soap_out_PointerTott__AbsoluteFocus(soap, "tt:Absolute", -1, &a->tt__FocusMove::Absolute, "")) - return soap->error; - if (soap_out_PointerTott__RelativeFocus(soap, "tt:Relative", -1, &a->tt__FocusMove::Relative, "")) - return soap->error; - if (soap_out_PointerTott__ContinuousFocus(soap, "tt:Continuous", -1, &a->tt__FocusMove::Continuous, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusMove::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusMove(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusMove * SOAP_FMAC4 soap_in_tt__FocusMove(struct soap *soap, const char *tag, tt__FocusMove *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusMove*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusMove, sizeof(tt__FocusMove), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusMove) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusMove *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Absolute1 = 1; - size_t soap_flag_Relative1 = 1; - size_t soap_flag_Continuous1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Absolute1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AbsoluteFocus(soap, "tt:Absolute", &a->tt__FocusMove::Absolute, "tt:AbsoluteFocus")) - { soap_flag_Absolute1--; - continue; - } - } - if (soap_flag_Relative1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RelativeFocus(soap, "tt:Relative", &a->tt__FocusMove::Relative, "tt:RelativeFocus")) - { soap_flag_Relative1--; - continue; - } - } - if (soap_flag_Continuous1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ContinuousFocus(soap, "tt:Continuous", &a->tt__FocusMove::Continuous, "tt:ContinuousFocus")) - { soap_flag_Continuous1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__FocusMove *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusMove, SOAP_TYPE_tt__FocusMove, sizeof(tt__FocusMove), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusMove * SOAP_FMAC2 soap_instantiate_tt__FocusMove(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusMove(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusMove *p; - size_t k = sizeof(tt__FocusMove); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusMove, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusMove); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusMove, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusMove location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusMove::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusMove(soap, tag ? tag : "tt:FocusMove", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusMove::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusMove(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusMove * SOAP_FMAC4 soap_get_tt__FocusMove(struct soap *soap, tt__FocusMove *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusMove(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WhiteBalanceOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__WhiteBalanceMode(soap, &this->tt__WhiteBalanceOptions::Mode); - this->tt__WhiteBalanceOptions::YrGain = NULL; - this->tt__WhiteBalanceOptions::YbGain = NULL; -} - -void tt__WhiteBalanceOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__WhiteBalanceMode(soap, &this->tt__WhiteBalanceOptions::Mode); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__WhiteBalanceOptions::YrGain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__WhiteBalanceOptions::YbGain); -#endif -} - -int tt__WhiteBalanceOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WhiteBalanceOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceOptions(struct soap *soap, const char *tag, int id, const tt__WhiteBalanceOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WhiteBalanceOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__WhiteBalanceMode(soap, "tt:Mode", -1, &a->tt__WhiteBalanceOptions::Mode, "")) - return soap->error; - if (!a->tt__WhiteBalanceOptions::YrGain) - { if (soap_element_empty(soap, "tt:YrGain", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:YrGain", -1, &a->tt__WhiteBalanceOptions::YrGain, "")) - return soap->error; - if (!a->tt__WhiteBalanceOptions::YbGain) - { if (soap_element_empty(soap, "tt:YbGain", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:YbGain", -1, &a->tt__WhiteBalanceOptions::YbGain, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WhiteBalanceOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WhiteBalanceOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WhiteBalanceOptions * SOAP_FMAC4 soap_in_tt__WhiteBalanceOptions(struct soap *soap, const char *tag, tt__WhiteBalanceOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WhiteBalanceOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WhiteBalanceOptions, sizeof(tt__WhiteBalanceOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WhiteBalanceOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WhiteBalanceOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_YrGain1 = 1; - size_t soap_flag_YbGain1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__WhiteBalanceMode(soap, "tt:Mode", &a->tt__WhiteBalanceOptions::Mode, "tt:WhiteBalanceMode")) - continue; - } - if (soap_flag_YrGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:YrGain", &a->tt__WhiteBalanceOptions::YrGain, "tt:FloatRange")) - { soap_flag_YrGain1--; - continue; - } - } - if (soap_flag_YbGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:YbGain", &a->tt__WhiteBalanceOptions::YbGain, "tt:FloatRange")) - { soap_flag_YbGain1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__WhiteBalanceOptions::Mode.size() < 1 || !a->tt__WhiteBalanceOptions::YrGain || !a->tt__WhiteBalanceOptions::YbGain)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WhiteBalanceOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WhiteBalanceOptions, SOAP_TYPE_tt__WhiteBalanceOptions, sizeof(tt__WhiteBalanceOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WhiteBalanceOptions * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WhiteBalanceOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WhiteBalanceOptions *p; - size_t k = sizeof(tt__WhiteBalanceOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WhiteBalanceOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WhiteBalanceOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WhiteBalanceOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WhiteBalanceOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WhiteBalanceOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WhiteBalanceOptions(soap, tag ? tag : "tt:WhiteBalanceOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WhiteBalanceOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WhiteBalanceOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WhiteBalanceOptions * SOAP_FMAC4 soap_get_tt__WhiteBalanceOptions(struct soap *soap, tt__WhiteBalanceOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WhiteBalanceOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ExposureOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ExposureMode(soap, &this->tt__ExposureOptions::Mode); - soap_default_std__vectorTemplateOftt__ExposurePriority(soap, &this->tt__ExposureOptions::Priority); - this->tt__ExposureOptions::MinExposureTime = NULL; - this->tt__ExposureOptions::MaxExposureTime = NULL; - this->tt__ExposureOptions::MinGain = NULL; - this->tt__ExposureOptions::MaxGain = NULL; - this->tt__ExposureOptions::MinIris = NULL; - this->tt__ExposureOptions::MaxIris = NULL; - this->tt__ExposureOptions::ExposureTime = NULL; - this->tt__ExposureOptions::Gain = NULL; - this->tt__ExposureOptions::Iris = NULL; -} - -void tt__ExposureOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ExposureMode(soap, &this->tt__ExposureOptions::Mode); - soap_serialize_std__vectorTemplateOftt__ExposurePriority(soap, &this->tt__ExposureOptions::Priority); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::MinExposureTime); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::MaxExposureTime); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::MinGain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::MaxGain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::MinIris); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::MaxIris); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::ExposureTime); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::Gain); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ExposureOptions::Iris); -#endif -} - -int tt__ExposureOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ExposureOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureOptions(struct soap *soap, const char *tag, int id, const tt__ExposureOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ExposureOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ExposureMode(soap, "tt:Mode", -1, &a->tt__ExposureOptions::Mode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ExposurePriority(soap, "tt:Priority", -1, &a->tt__ExposureOptions::Priority, "")) - return soap->error; - if (!a->tt__ExposureOptions::MinExposureTime) - { if (soap_element_empty(soap, "tt:MinExposureTime", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:MinExposureTime", -1, &a->tt__ExposureOptions::MinExposureTime, "")) - return soap->error; - if (!a->tt__ExposureOptions::MaxExposureTime) - { if (soap_element_empty(soap, "tt:MaxExposureTime", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:MaxExposureTime", -1, &a->tt__ExposureOptions::MaxExposureTime, "")) - return soap->error; - if (!a->tt__ExposureOptions::MinGain) - { if (soap_element_empty(soap, "tt:MinGain", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:MinGain", -1, &a->tt__ExposureOptions::MinGain, "")) - return soap->error; - if (!a->tt__ExposureOptions::MaxGain) - { if (soap_element_empty(soap, "tt:MaxGain", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:MaxGain", -1, &a->tt__ExposureOptions::MaxGain, "")) - return soap->error; - if (!a->tt__ExposureOptions::MinIris) - { if (soap_element_empty(soap, "tt:MinIris", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:MinIris", -1, &a->tt__ExposureOptions::MinIris, "")) - return soap->error; - if (!a->tt__ExposureOptions::MaxIris) - { if (soap_element_empty(soap, "tt:MaxIris", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:MaxIris", -1, &a->tt__ExposureOptions::MaxIris, "")) - return soap->error; - if (!a->tt__ExposureOptions::ExposureTime) - { if (soap_element_empty(soap, "tt:ExposureTime", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:ExposureTime", -1, &a->tt__ExposureOptions::ExposureTime, "")) - return soap->error; - if (!a->tt__ExposureOptions::Gain) - { if (soap_element_empty(soap, "tt:Gain", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Gain", -1, &a->tt__ExposureOptions::Gain, "")) - return soap->error; - if (!a->tt__ExposureOptions::Iris) - { if (soap_element_empty(soap, "tt:Iris", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Iris", -1, &a->tt__ExposureOptions::Iris, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ExposureOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ExposureOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ExposureOptions * SOAP_FMAC4 soap_in_tt__ExposureOptions(struct soap *soap, const char *tag, tt__ExposureOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ExposureOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ExposureOptions, sizeof(tt__ExposureOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ExposureOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ExposureOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MinExposureTime1 = 1; - size_t soap_flag_MaxExposureTime1 = 1; - size_t soap_flag_MinGain1 = 1; - size_t soap_flag_MaxGain1 = 1; - size_t soap_flag_MinIris1 = 1; - size_t soap_flag_MaxIris1 = 1; - size_t soap_flag_ExposureTime1 = 1; - size_t soap_flag_Gain1 = 1; - size_t soap_flag_Iris1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ExposureMode(soap, "tt:Mode", &a->tt__ExposureOptions::Mode, "tt:ExposureMode")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ExposurePriority(soap, "tt:Priority", &a->tt__ExposureOptions::Priority, "tt:ExposurePriority")) - continue; - } - if (soap_flag_MinExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MinExposureTime", &a->tt__ExposureOptions::MinExposureTime, "tt:FloatRange")) - { soap_flag_MinExposureTime1--; - continue; - } - } - if (soap_flag_MaxExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MaxExposureTime", &a->tt__ExposureOptions::MaxExposureTime, "tt:FloatRange")) - { soap_flag_MaxExposureTime1--; - continue; - } - } - if (soap_flag_MinGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MinGain", &a->tt__ExposureOptions::MinGain, "tt:FloatRange")) - { soap_flag_MinGain1--; - continue; - } - } - if (soap_flag_MaxGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MaxGain", &a->tt__ExposureOptions::MaxGain, "tt:FloatRange")) - { soap_flag_MaxGain1--; - continue; - } - } - if (soap_flag_MinIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MinIris", &a->tt__ExposureOptions::MinIris, "tt:FloatRange")) - { soap_flag_MinIris1--; - continue; - } - } - if (soap_flag_MaxIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:MaxIris", &a->tt__ExposureOptions::MaxIris, "tt:FloatRange")) - { soap_flag_MaxIris1--; - continue; - } - } - if (soap_flag_ExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:ExposureTime", &a->tt__ExposureOptions::ExposureTime, "tt:FloatRange")) - { soap_flag_ExposureTime1--; - continue; - } - } - if (soap_flag_Gain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Gain", &a->tt__ExposureOptions::Gain, "tt:FloatRange")) - { soap_flag_Gain1--; - continue; - } - } - if (soap_flag_Iris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Iris", &a->tt__ExposureOptions::Iris, "tt:FloatRange")) - { soap_flag_Iris1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__ExposureOptions::Mode.size() < 1 || a->tt__ExposureOptions::Priority.size() < 1 || !a->tt__ExposureOptions::MinExposureTime || !a->tt__ExposureOptions::MaxExposureTime || !a->tt__ExposureOptions::MinGain || !a->tt__ExposureOptions::MaxGain || !a->tt__ExposureOptions::MinIris || !a->tt__ExposureOptions::MaxIris || !a->tt__ExposureOptions::ExposureTime || !a->tt__ExposureOptions::Gain || !a->tt__ExposureOptions::Iris)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ExposureOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ExposureOptions, SOAP_TYPE_tt__ExposureOptions, sizeof(tt__ExposureOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ExposureOptions * SOAP_FMAC2 soap_instantiate_tt__ExposureOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ExposureOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ExposureOptions *p; - size_t k = sizeof(tt__ExposureOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ExposureOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ExposureOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ExposureOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ExposureOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ExposureOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ExposureOptions(soap, tag ? tag : "tt:ExposureOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ExposureOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ExposureOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ExposureOptions * SOAP_FMAC4 soap_get_tt__ExposureOptions(struct soap *soap, tt__ExposureOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ExposureOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__AutoFocusMode(soap, &this->tt__FocusOptions::AutoFocusModes); - this->tt__FocusOptions::DefaultSpeed = NULL; - this->tt__FocusOptions::NearLimit = NULL; - this->tt__FocusOptions::FarLimit = NULL; -} - -void tt__FocusOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__AutoFocusMode(soap, &this->tt__FocusOptions::AutoFocusModes); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__FocusOptions::DefaultSpeed); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__FocusOptions::NearLimit); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__FocusOptions::FarLimit); -#endif -} - -int tt__FocusOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusOptions(struct soap *soap, const char *tag, int id, const tt__FocusOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__AutoFocusMode(soap, "tt:AutoFocusModes", -1, &a->tt__FocusOptions::AutoFocusModes, "")) - return soap->error; - if (!a->tt__FocusOptions::DefaultSpeed) - { if (soap_element_empty(soap, "tt:DefaultSpeed", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:DefaultSpeed", -1, &a->tt__FocusOptions::DefaultSpeed, "")) - return soap->error; - if (!a->tt__FocusOptions::NearLimit) - { if (soap_element_empty(soap, "tt:NearLimit", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:NearLimit", -1, &a->tt__FocusOptions::NearLimit, "")) - return soap->error; - if (!a->tt__FocusOptions::FarLimit) - { if (soap_element_empty(soap, "tt:FarLimit", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:FarLimit", -1, &a->tt__FocusOptions::FarLimit, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusOptions * SOAP_FMAC4 soap_in_tt__FocusOptions(struct soap *soap, const char *tag, tt__FocusOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusOptions, sizeof(tt__FocusOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DefaultSpeed1 = 1; - size_t soap_flag_NearLimit1 = 1; - size_t soap_flag_FarLimit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__AutoFocusMode(soap, "tt:AutoFocusModes", &a->tt__FocusOptions::AutoFocusModes, "tt:AutoFocusMode")) - continue; - } - if (soap_flag_DefaultSpeed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:DefaultSpeed", &a->tt__FocusOptions::DefaultSpeed, "tt:FloatRange")) - { soap_flag_DefaultSpeed1--; - continue; - } - } - if (soap_flag_NearLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:NearLimit", &a->tt__FocusOptions::NearLimit, "tt:FloatRange")) - { soap_flag_NearLimit1--; - continue; - } - } - if (soap_flag_FarLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:FarLimit", &a->tt__FocusOptions::FarLimit, "tt:FloatRange")) - { soap_flag_FarLimit1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__FocusOptions::DefaultSpeed || !a->tt__FocusOptions::NearLimit || !a->tt__FocusOptions::FarLimit)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FocusOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusOptions, SOAP_TYPE_tt__FocusOptions, sizeof(tt__FocusOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusOptions * SOAP_FMAC2 soap_instantiate_tt__FocusOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusOptions *p; - size_t k = sizeof(tt__FocusOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusOptions(soap, tag ? tag : "tt:FocusOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusOptions * SOAP_FMAC4 soap_get_tt__FocusOptions(struct soap *soap, tt__FocusOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__BacklightCompensationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__WideDynamicMode(soap, &this->tt__BacklightCompensationOptions::Mode); - this->tt__BacklightCompensationOptions::Level = NULL; -} - -void tt__BacklightCompensationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__WideDynamicMode(soap, &this->tt__BacklightCompensationOptions::Mode); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__BacklightCompensationOptions::Level); -#endif -} - -int tt__BacklightCompensationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__BacklightCompensationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationOptions(struct soap *soap, const char *tag, int id, const tt__BacklightCompensationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__BacklightCompensationOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__WideDynamicMode(soap, "tt:Mode", -1, &a->tt__BacklightCompensationOptions::Mode, "")) - return soap->error; - if (!a->tt__BacklightCompensationOptions::Level) - { if (soap_element_empty(soap, "tt:Level", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Level", -1, &a->tt__BacklightCompensationOptions::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__BacklightCompensationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__BacklightCompensationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__BacklightCompensationOptions * SOAP_FMAC4 soap_in_tt__BacklightCompensationOptions(struct soap *soap, const char *tag, tt__BacklightCompensationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__BacklightCompensationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BacklightCompensationOptions, sizeof(tt__BacklightCompensationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__BacklightCompensationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__BacklightCompensationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__WideDynamicMode(soap, "tt:Mode", &a->tt__BacklightCompensationOptions::Mode, "tt:WideDynamicMode")) - continue; - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Level", &a->tt__BacklightCompensationOptions::Level, "tt:FloatRange")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__BacklightCompensationOptions::Mode.size() < 1 || !a->tt__BacklightCompensationOptions::Level)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__BacklightCompensationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__BacklightCompensationOptions, SOAP_TYPE_tt__BacklightCompensationOptions, sizeof(tt__BacklightCompensationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__BacklightCompensationOptions * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__BacklightCompensationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__BacklightCompensationOptions *p; - size_t k = sizeof(tt__BacklightCompensationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__BacklightCompensationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__BacklightCompensationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__BacklightCompensationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__BacklightCompensationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__BacklightCompensationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__BacklightCompensationOptions(soap, tag ? tag : "tt:BacklightCompensationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__BacklightCompensationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__BacklightCompensationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__BacklightCompensationOptions * SOAP_FMAC4 soap_get_tt__BacklightCompensationOptions(struct soap *soap, tt__BacklightCompensationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BacklightCompensationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WideDynamicRangeOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__WideDynamicMode(soap, &this->tt__WideDynamicRangeOptions::Mode); - this->tt__WideDynamicRangeOptions::Level = NULL; -} - -void tt__WideDynamicRangeOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__WideDynamicMode(soap, &this->tt__WideDynamicRangeOptions::Mode); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__WideDynamicRangeOptions::Level); -#endif -} - -int tt__WideDynamicRangeOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WideDynamicRangeOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRangeOptions(struct soap *soap, const char *tag, int id, const tt__WideDynamicRangeOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WideDynamicRangeOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__WideDynamicMode(soap, "tt:Mode", -1, &a->tt__WideDynamicRangeOptions::Mode, "")) - return soap->error; - if (!a->tt__WideDynamicRangeOptions::Level) - { if (soap_element_empty(soap, "tt:Level", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Level", -1, &a->tt__WideDynamicRangeOptions::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WideDynamicRangeOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WideDynamicRangeOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WideDynamicRangeOptions * SOAP_FMAC4 soap_in_tt__WideDynamicRangeOptions(struct soap *soap, const char *tag, tt__WideDynamicRangeOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WideDynamicRangeOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WideDynamicRangeOptions, sizeof(tt__WideDynamicRangeOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WideDynamicRangeOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WideDynamicRangeOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__WideDynamicMode(soap, "tt:Mode", &a->tt__WideDynamicRangeOptions::Mode, "tt:WideDynamicMode")) - continue; - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Level", &a->tt__WideDynamicRangeOptions::Level, "tt:FloatRange")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__WideDynamicRangeOptions::Mode.size() < 1 || !a->tt__WideDynamicRangeOptions::Level)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WideDynamicRangeOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WideDynamicRangeOptions, SOAP_TYPE_tt__WideDynamicRangeOptions, sizeof(tt__WideDynamicRangeOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WideDynamicRangeOptions * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRangeOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WideDynamicRangeOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WideDynamicRangeOptions *p; - size_t k = sizeof(tt__WideDynamicRangeOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WideDynamicRangeOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WideDynamicRangeOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WideDynamicRangeOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WideDynamicRangeOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WideDynamicRangeOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WideDynamicRangeOptions(soap, tag ? tag : "tt:WideDynamicRangeOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WideDynamicRangeOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WideDynamicRangeOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WideDynamicRangeOptions * SOAP_FMAC4 soap_get_tt__WideDynamicRangeOptions(struct soap *soap, tt__WideDynamicRangeOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WideDynamicRangeOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingOptions::BacklightCompensation = NULL; - this->tt__ImagingOptions::Brightness = NULL; - this->tt__ImagingOptions::ColorSaturation = NULL; - this->tt__ImagingOptions::Contrast = NULL; - this->tt__ImagingOptions::Exposure = NULL; - this->tt__ImagingOptions::Focus = NULL; - soap_default_std__vectorTemplateOftt__IrCutFilterMode(soap, &this->tt__ImagingOptions::IrCutFilterModes); - this->tt__ImagingOptions::Sharpness = NULL; - this->tt__ImagingOptions::WideDynamicRange = NULL; - this->tt__ImagingOptions::WhiteBalance = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ImagingOptions::__anyAttribute); -} - -void tt__ImagingOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__BacklightCompensationOptions(soap, &this->tt__ImagingOptions::BacklightCompensation); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions::Brightness); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions::ColorSaturation); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions::Contrast); - soap_serialize_PointerTott__ExposureOptions(soap, &this->tt__ImagingOptions::Exposure); - soap_serialize_PointerTott__FocusOptions(soap, &this->tt__ImagingOptions::Focus); - soap_serialize_std__vectorTemplateOftt__IrCutFilterMode(soap, &this->tt__ImagingOptions::IrCutFilterModes); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__ImagingOptions::Sharpness); - soap_serialize_PointerTott__WideDynamicRangeOptions(soap, &this->tt__ImagingOptions::WideDynamicRange); - soap_serialize_PointerTott__WhiteBalanceOptions(soap, &this->tt__ImagingOptions::WhiteBalance); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingOptions::__any); -#endif -} - -int tt__ImagingOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions(struct soap *soap, const char *tag, int id, const tt__ImagingOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImagingOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingOptions), type)) - return soap->error; - if (!a->tt__ImagingOptions::BacklightCompensation) - { if (soap_element_empty(soap, "tt:BacklightCompensation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__BacklightCompensationOptions(soap, "tt:BacklightCompensation", -1, &a->tt__ImagingOptions::BacklightCompensation, "")) - return soap->error; - if (!a->tt__ImagingOptions::Brightness) - { if (soap_element_empty(soap, "tt:Brightness", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Brightness", -1, &a->tt__ImagingOptions::Brightness, "")) - return soap->error; - if (!a->tt__ImagingOptions::ColorSaturation) - { if (soap_element_empty(soap, "tt:ColorSaturation", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:ColorSaturation", -1, &a->tt__ImagingOptions::ColorSaturation, "")) - return soap->error; - if (!a->tt__ImagingOptions::Contrast) - { if (soap_element_empty(soap, "tt:Contrast", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Contrast", -1, &a->tt__ImagingOptions::Contrast, "")) - return soap->error; - if (!a->tt__ImagingOptions::Exposure) - { if (soap_element_empty(soap, "tt:Exposure", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ExposureOptions(soap, "tt:Exposure", -1, &a->tt__ImagingOptions::Exposure, "")) - return soap->error; - if (!a->tt__ImagingOptions::Focus) - { if (soap_element_empty(soap, "tt:Focus", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FocusOptions(soap, "tt:Focus", -1, &a->tt__ImagingOptions::Focus, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__IrCutFilterMode(soap, "tt:IrCutFilterModes", -1, &a->tt__ImagingOptions::IrCutFilterModes, "")) - return soap->error; - if (!a->tt__ImagingOptions::Sharpness) - { if (soap_element_empty(soap, "tt:Sharpness", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:Sharpness", -1, &a->tt__ImagingOptions::Sharpness, "")) - return soap->error; - if (!a->tt__ImagingOptions::WideDynamicRange) - { if (soap_element_empty(soap, "tt:WideDynamicRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__WideDynamicRangeOptions(soap, "tt:WideDynamicRange", -1, &a->tt__ImagingOptions::WideDynamicRange, "")) - return soap->error; - if (!a->tt__ImagingOptions::WhiteBalance) - { if (soap_element_empty(soap, "tt:WhiteBalance", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__WhiteBalanceOptions(soap, "tt:WhiteBalance", -1, &a->tt__ImagingOptions::WhiteBalance, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingOptions * SOAP_FMAC4 soap_in_tt__ImagingOptions(struct soap *soap, const char *tag, tt__ImagingOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingOptions, sizeof(tt__ImagingOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImagingOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BacklightCompensation1 = 1; - size_t soap_flag_Brightness1 = 1; - size_t soap_flag_ColorSaturation1 = 1; - size_t soap_flag_Contrast1 = 1; - size_t soap_flag_Exposure1 = 1; - size_t soap_flag_Focus1 = 1; - size_t soap_flag_Sharpness1 = 1; - size_t soap_flag_WideDynamicRange1 = 1; - size_t soap_flag_WhiteBalance1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_BacklightCompensation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BacklightCompensationOptions(soap, "tt:BacklightCompensation", &a->tt__ImagingOptions::BacklightCompensation, "tt:BacklightCompensationOptions")) - { soap_flag_BacklightCompensation1--; - continue; - } - } - if (soap_flag_Brightness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Brightness", &a->tt__ImagingOptions::Brightness, "tt:FloatRange")) - { soap_flag_Brightness1--; - continue; - } - } - if (soap_flag_ColorSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:ColorSaturation", &a->tt__ImagingOptions::ColorSaturation, "tt:FloatRange")) - { soap_flag_ColorSaturation1--; - continue; - } - } - if (soap_flag_Contrast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Contrast", &a->tt__ImagingOptions::Contrast, "tt:FloatRange")) - { soap_flag_Contrast1--; - continue; - } - } - if (soap_flag_Exposure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ExposureOptions(soap, "tt:Exposure", &a->tt__ImagingOptions::Exposure, "tt:ExposureOptions")) - { soap_flag_Exposure1--; - continue; - } - } - if (soap_flag_Focus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusOptions(soap, "tt:Focus", &a->tt__ImagingOptions::Focus, "tt:FocusOptions")) - { soap_flag_Focus1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__IrCutFilterMode(soap, "tt:IrCutFilterModes", &a->tt__ImagingOptions::IrCutFilterModes, "tt:IrCutFilterMode")) - continue; - } - if (soap_flag_Sharpness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:Sharpness", &a->tt__ImagingOptions::Sharpness, "tt:FloatRange")) - { soap_flag_Sharpness1--; - continue; - } - } - if (soap_flag_WideDynamicRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WideDynamicRangeOptions(soap, "tt:WideDynamicRange", &a->tt__ImagingOptions::WideDynamicRange, "tt:WideDynamicRangeOptions")) - { soap_flag_WideDynamicRange1--; - continue; - } - } - if (soap_flag_WhiteBalance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WhiteBalanceOptions(soap, "tt:WhiteBalance", &a->tt__ImagingOptions::WhiteBalance, "tt:WhiteBalanceOptions")) - { soap_flag_WhiteBalance1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__ImagingOptions::BacklightCompensation || !a->tt__ImagingOptions::Brightness || !a->tt__ImagingOptions::ColorSaturation || !a->tt__ImagingOptions::Contrast || !a->tt__ImagingOptions::Exposure || !a->tt__ImagingOptions::Focus || a->tt__ImagingOptions::IrCutFilterModes.size() < 1 || !a->tt__ImagingOptions::Sharpness || !a->tt__ImagingOptions::WideDynamicRange || !a->tt__ImagingOptions::WhiteBalance)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ImagingOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingOptions, SOAP_TYPE_tt__ImagingOptions, sizeof(tt__ImagingOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingOptions * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingOptions *p; - size_t k = sizeof(tt__ImagingOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingOptions(soap, tag ? tag : "tt:ImagingOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingOptions * SOAP_FMAC4 soap_get_tt__ImagingOptions(struct soap *soap, tt__ImagingOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__BacklightCompensation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__BacklightCompensationMode(soap, &this->tt__BacklightCompensation::Mode); - soap_default_float(soap, &this->tt__BacklightCompensation::Level); -} - -void tt__BacklightCompensation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__BacklightCompensation::Level, SOAP_TYPE_float); -#endif -} - -int tt__BacklightCompensation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__BacklightCompensation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensation(struct soap *soap, const char *tag, int id, const tt__BacklightCompensation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__BacklightCompensation), type)) - return soap->error; - if (soap_out_tt__BacklightCompensationMode(soap, "tt:Mode", -1, &a->tt__BacklightCompensation::Mode, "")) - return soap->error; - if (soap_out_float(soap, "tt:Level", -1, &a->tt__BacklightCompensation::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__BacklightCompensation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__BacklightCompensation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__BacklightCompensation * SOAP_FMAC4 soap_in_tt__BacklightCompensation(struct soap *soap, const char *tag, tt__BacklightCompensation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__BacklightCompensation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BacklightCompensation, sizeof(tt__BacklightCompensation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__BacklightCompensation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__BacklightCompensation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__BacklightCompensationMode(soap, "tt:Mode", &a->tt__BacklightCompensation::Mode, "tt:BacklightCompensationMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Level", &a->tt__BacklightCompensation::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0 || soap_flag_Level1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__BacklightCompensation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__BacklightCompensation, SOAP_TYPE_tt__BacklightCompensation, sizeof(tt__BacklightCompensation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__BacklightCompensation * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__BacklightCompensation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__BacklightCompensation *p; - size_t k = sizeof(tt__BacklightCompensation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__BacklightCompensation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__BacklightCompensation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__BacklightCompensation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__BacklightCompensation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__BacklightCompensation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__BacklightCompensation(soap, tag ? tag : "tt:BacklightCompensation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__BacklightCompensation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__BacklightCompensation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__BacklightCompensation * SOAP_FMAC4 soap_get_tt__BacklightCompensation(struct soap *soap, tt__BacklightCompensation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BacklightCompensation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__WideDynamicRange::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__WideDynamicMode(soap, &this->tt__WideDynamicRange::Mode); - soap_default_float(soap, &this->tt__WideDynamicRange::Level); -} - -void tt__WideDynamicRange::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__WideDynamicRange::Level, SOAP_TYPE_float); -#endif -} - -int tt__WideDynamicRange::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__WideDynamicRange(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRange(struct soap *soap, const char *tag, int id, const tt__WideDynamicRange *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__WideDynamicRange), type)) - return soap->error; - if (soap_out_tt__WideDynamicMode(soap, "tt:Mode", -1, &a->tt__WideDynamicRange::Mode, "")) - return soap->error; - if (soap_out_float(soap, "tt:Level", -1, &a->tt__WideDynamicRange::Level, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__WideDynamicRange::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__WideDynamicRange(soap, tag, this, type); -} - -SOAP_FMAC3 tt__WideDynamicRange * SOAP_FMAC4 soap_in_tt__WideDynamicRange(struct soap *soap, const char *tag, tt__WideDynamicRange *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__WideDynamicRange*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__WideDynamicRange, sizeof(tt__WideDynamicRange), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__WideDynamicRange) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__WideDynamicRange *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Level1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__WideDynamicMode(soap, "tt:Mode", &a->tt__WideDynamicRange::Mode, "tt:WideDynamicMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Level1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Level", &a->tt__WideDynamicRange::Level, "xsd:float")) - { soap_flag_Level1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0 || soap_flag_Level1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__WideDynamicRange *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__WideDynamicRange, SOAP_TYPE_tt__WideDynamicRange, sizeof(tt__WideDynamicRange), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__WideDynamicRange * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRange(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__WideDynamicRange(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__WideDynamicRange *p; - size_t k = sizeof(tt__WideDynamicRange); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__WideDynamicRange, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__WideDynamicRange); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__WideDynamicRange, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__WideDynamicRange location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__WideDynamicRange::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__WideDynamicRange(soap, tag ? tag : "tt:WideDynamicRange", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__WideDynamicRange::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__WideDynamicRange(soap, this, tag, type); -} - -SOAP_FMAC3 tt__WideDynamicRange * SOAP_FMAC4 soap_get_tt__WideDynamicRange(struct soap *soap, tt__WideDynamicRange *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__WideDynamicRange(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Exposure::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ExposureMode(soap, &this->tt__Exposure::Mode); - soap_default_tt__ExposurePriority(soap, &this->tt__Exposure::Priority); - this->tt__Exposure::Window = NULL; - soap_default_float(soap, &this->tt__Exposure::MinExposureTime); - soap_default_float(soap, &this->tt__Exposure::MaxExposureTime); - soap_default_float(soap, &this->tt__Exposure::MinGain); - soap_default_float(soap, &this->tt__Exposure::MaxGain); - soap_default_float(soap, &this->tt__Exposure::MinIris); - soap_default_float(soap, &this->tt__Exposure::MaxIris); - soap_default_float(soap, &this->tt__Exposure::ExposureTime); - soap_default_float(soap, &this->tt__Exposure::Gain); - soap_default_float(soap, &this->tt__Exposure::Iris); -} - -void tt__Exposure::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Exposure::Priority, SOAP_TYPE_tt__ExposurePriority); - soap_serialize_PointerTott__Rectangle(soap, &this->tt__Exposure::Window); - soap_embedded(soap, &this->tt__Exposure::MinExposureTime, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::MaxExposureTime, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::MinGain, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::MaxGain, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::MinIris, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::MaxIris, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::ExposureTime, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::Gain, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__Exposure::Iris, SOAP_TYPE_float); -#endif -} - -int tt__Exposure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Exposure(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Exposure(struct soap *soap, const char *tag, int id, const tt__Exposure *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Exposure), type)) - return soap->error; - if (soap_out_tt__ExposureMode(soap, "tt:Mode", -1, &a->tt__Exposure::Mode, "")) - return soap->error; - if (soap_out_tt__ExposurePriority(soap, "tt:Priority", -1, &a->tt__Exposure::Priority, "")) - return soap->error; - if (!a->tt__Exposure::Window) - { if (soap_element_empty(soap, "tt:Window", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Rectangle(soap, "tt:Window", -1, &a->tt__Exposure::Window, "")) - return soap->error; - if (soap_out_float(soap, "tt:MinExposureTime", -1, &a->tt__Exposure::MinExposureTime, "")) - return soap->error; - if (soap_out_float(soap, "tt:MaxExposureTime", -1, &a->tt__Exposure::MaxExposureTime, "")) - return soap->error; - if (soap_out_float(soap, "tt:MinGain", -1, &a->tt__Exposure::MinGain, "")) - return soap->error; - if (soap_out_float(soap, "tt:MaxGain", -1, &a->tt__Exposure::MaxGain, "")) - return soap->error; - if (soap_out_float(soap, "tt:MinIris", -1, &a->tt__Exposure::MinIris, "")) - return soap->error; - if (soap_out_float(soap, "tt:MaxIris", -1, &a->tt__Exposure::MaxIris, "")) - return soap->error; - if (soap_out_float(soap, "tt:ExposureTime", -1, &a->tt__Exposure::ExposureTime, "")) - return soap->error; - if (soap_out_float(soap, "tt:Gain", -1, &a->tt__Exposure::Gain, "")) - return soap->error; - if (soap_out_float(soap, "tt:Iris", -1, &a->tt__Exposure::Iris, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Exposure::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Exposure(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Exposure * SOAP_FMAC4 soap_in_tt__Exposure(struct soap *soap, const char *tag, tt__Exposure *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Exposure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Exposure, sizeof(tt__Exposure), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Exposure) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Exposure *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Priority1 = 1; - size_t soap_flag_Window1 = 1; - size_t soap_flag_MinExposureTime1 = 1; - size_t soap_flag_MaxExposureTime1 = 1; - size_t soap_flag_MinGain1 = 1; - size_t soap_flag_MaxGain1 = 1; - size_t soap_flag_MinIris1 = 1; - size_t soap_flag_MaxIris1 = 1; - size_t soap_flag_ExposureTime1 = 1; - size_t soap_flag_Gain1 = 1; - size_t soap_flag_Iris1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ExposureMode(soap, "tt:Mode", &a->tt__Exposure::Mode, "tt:ExposureMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Priority1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ExposurePriority(soap, "tt:Priority", &a->tt__Exposure::Priority, "tt:ExposurePriority")) - { soap_flag_Priority1--; - continue; - } - } - if (soap_flag_Window1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Rectangle(soap, "tt:Window", &a->tt__Exposure::Window, "tt:Rectangle")) - { soap_flag_Window1--; - continue; - } - } - if (soap_flag_MinExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:MinExposureTime", &a->tt__Exposure::MinExposureTime, "xsd:float")) - { soap_flag_MinExposureTime1--; - continue; - } - } - if (soap_flag_MaxExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:MaxExposureTime", &a->tt__Exposure::MaxExposureTime, "xsd:float")) - { soap_flag_MaxExposureTime1--; - continue; - } - } - if (soap_flag_MinGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:MinGain", &a->tt__Exposure::MinGain, "xsd:float")) - { soap_flag_MinGain1--; - continue; - } - } - if (soap_flag_MaxGain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:MaxGain", &a->tt__Exposure::MaxGain, "xsd:float")) - { soap_flag_MaxGain1--; - continue; - } - } - if (soap_flag_MinIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:MinIris", &a->tt__Exposure::MinIris, "xsd:float")) - { soap_flag_MinIris1--; - continue; - } - } - if (soap_flag_MaxIris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:MaxIris", &a->tt__Exposure::MaxIris, "xsd:float")) - { soap_flag_MaxIris1--; - continue; - } - } - if (soap_flag_ExposureTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:ExposureTime", &a->tt__Exposure::ExposureTime, "xsd:float")) - { soap_flag_ExposureTime1--; - continue; - } - } - if (soap_flag_Gain1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Gain", &a->tt__Exposure::Gain, "xsd:float")) - { soap_flag_Gain1--; - continue; - } - } - if (soap_flag_Iris1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Iris", &a->tt__Exposure::Iris, "xsd:float")) - { soap_flag_Iris1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0 || soap_flag_Priority1 > 0 || !a->tt__Exposure::Window || soap_flag_MinExposureTime1 > 0 || soap_flag_MaxExposureTime1 > 0 || soap_flag_MinGain1 > 0 || soap_flag_MaxGain1 > 0 || soap_flag_MinIris1 > 0 || soap_flag_MaxIris1 > 0 || soap_flag_ExposureTime1 > 0 || soap_flag_Gain1 > 0 || soap_flag_Iris1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Exposure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Exposure, SOAP_TYPE_tt__Exposure, sizeof(tt__Exposure), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Exposure * SOAP_FMAC2 soap_instantiate_tt__Exposure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Exposure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Exposure *p; - size_t k = sizeof(tt__Exposure); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Exposure, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Exposure); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Exposure, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Exposure location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Exposure::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Exposure(soap, tag ? tag : "tt:Exposure", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Exposure::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Exposure(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Exposure * SOAP_FMAC4 soap_get_tt__Exposure(struct soap *soap, tt__Exposure *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Exposure(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingSettingsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingSettingsExtension::__any); -} - -void tt__ImagingSettingsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingSettingsExtension::__any); -#endif -} - -int tt__ImagingSettingsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingSettingsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension(struct soap *soap, const char *tag, int id, const tt__ImagingSettingsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingSettingsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingSettingsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingSettingsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingSettingsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension(struct soap *soap, const char *tag, tt__ImagingSettingsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingSettingsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingSettingsExtension, sizeof(tt__ImagingSettingsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingSettingsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingSettingsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingSettingsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingSettingsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingSettingsExtension, SOAP_TYPE_tt__ImagingSettingsExtension, sizeof(tt__ImagingSettingsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingSettingsExtension * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingSettingsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingSettingsExtension *p; - size_t k = sizeof(tt__ImagingSettingsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingSettingsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingSettingsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingSettingsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingSettingsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingSettingsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingSettingsExtension(soap, tag ? tag : "tt:ImagingSettingsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingSettingsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingSettingsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingSettingsExtension * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension(struct soap *soap, tt__ImagingSettingsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingSettingsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingSettings::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingSettings::BacklightCompensation = NULL; - this->tt__ImagingSettings::Brightness = NULL; - this->tt__ImagingSettings::ColorSaturation = NULL; - this->tt__ImagingSettings::Contrast = NULL; - this->tt__ImagingSettings::Exposure = NULL; - this->tt__ImagingSettings::Focus = NULL; - this->tt__ImagingSettings::IrCutFilter = NULL; - this->tt__ImagingSettings::Sharpness = NULL; - this->tt__ImagingSettings::WideDynamicRange = NULL; - this->tt__ImagingSettings::WhiteBalance = NULL; - this->tt__ImagingSettings::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ImagingSettings::__anyAttribute); -} - -void tt__ImagingSettings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__BacklightCompensation(soap, &this->tt__ImagingSettings::BacklightCompensation); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings::Brightness); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings::ColorSaturation); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings::Contrast); - soap_serialize_PointerTott__Exposure(soap, &this->tt__ImagingSettings::Exposure); - soap_serialize_PointerTott__FocusConfiguration(soap, &this->tt__ImagingSettings::Focus); - soap_serialize_PointerTott__IrCutFilterMode(soap, &this->tt__ImagingSettings::IrCutFilter); - soap_serialize_PointerTofloat(soap, &this->tt__ImagingSettings::Sharpness); - soap_serialize_PointerTott__WideDynamicRange(soap, &this->tt__ImagingSettings::WideDynamicRange); - soap_serialize_PointerTott__WhiteBalance(soap, &this->tt__ImagingSettings::WhiteBalance); - soap_serialize_PointerTott__ImagingSettingsExtension(soap, &this->tt__ImagingSettings::Extension); -#endif -} - -int tt__ImagingSettings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingSettings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettings(struct soap *soap, const char *tag, int id, const tt__ImagingSettings *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImagingSettings*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingSettings), type)) - return soap->error; - if (soap_out_PointerTott__BacklightCompensation(soap, "tt:BacklightCompensation", -1, &a->tt__ImagingSettings::BacklightCompensation, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Brightness", -1, &a->tt__ImagingSettings::Brightness, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:ColorSaturation", -1, &a->tt__ImagingSettings::ColorSaturation, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Contrast", -1, &a->tt__ImagingSettings::Contrast, "")) - return soap->error; - if (soap_out_PointerTott__Exposure(soap, "tt:Exposure", -1, &a->tt__ImagingSettings::Exposure, "")) - return soap->error; - if (soap_out_PointerTott__FocusConfiguration(soap, "tt:Focus", -1, &a->tt__ImagingSettings::Focus, "")) - return soap->error; - if (soap_out_PointerTott__IrCutFilterMode(soap, "tt:IrCutFilter", -1, &a->tt__ImagingSettings::IrCutFilter, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Sharpness", -1, &a->tt__ImagingSettings::Sharpness, "")) - return soap->error; - if (soap_out_PointerTott__WideDynamicRange(soap, "tt:WideDynamicRange", -1, &a->tt__ImagingSettings::WideDynamicRange, "")) - return soap->error; - if (soap_out_PointerTott__WhiteBalance(soap, "tt:WhiteBalance", -1, &a->tt__ImagingSettings::WhiteBalance, "")) - return soap->error; - if (soap_out_PointerTott__ImagingSettingsExtension(soap, "tt:Extension", -1, &a->tt__ImagingSettings::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingSettings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingSettings(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingSettings * SOAP_FMAC4 soap_in_tt__ImagingSettings(struct soap *soap, const char *tag, tt__ImagingSettings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingSettings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingSettings, sizeof(tt__ImagingSettings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingSettings) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingSettings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImagingSettings*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BacklightCompensation1 = 1; - size_t soap_flag_Brightness1 = 1; - size_t soap_flag_ColorSaturation1 = 1; - size_t soap_flag_Contrast1 = 1; - size_t soap_flag_Exposure1 = 1; - size_t soap_flag_Focus1 = 1; - size_t soap_flag_IrCutFilter1 = 1; - size_t soap_flag_Sharpness1 = 1; - size_t soap_flag_WideDynamicRange1 = 1; - size_t soap_flag_WhiteBalance1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_BacklightCompensation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BacklightCompensation(soap, "tt:BacklightCompensation", &a->tt__ImagingSettings::BacklightCompensation, "tt:BacklightCompensation")) - { soap_flag_BacklightCompensation1--; - continue; - } - } - if (soap_flag_Brightness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Brightness", &a->tt__ImagingSettings::Brightness, "xsd:float")) - { soap_flag_Brightness1--; - continue; - } - } - if (soap_flag_ColorSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:ColorSaturation", &a->tt__ImagingSettings::ColorSaturation, "xsd:float")) - { soap_flag_ColorSaturation1--; - continue; - } - } - if (soap_flag_Contrast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Contrast", &a->tt__ImagingSettings::Contrast, "xsd:float")) - { soap_flag_Contrast1--; - continue; - } - } - if (soap_flag_Exposure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Exposure(soap, "tt:Exposure", &a->tt__ImagingSettings::Exposure, "tt:Exposure")) - { soap_flag_Exposure1--; - continue; - } - } - if (soap_flag_Focus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusConfiguration(soap, "tt:Focus", &a->tt__ImagingSettings::Focus, "tt:FocusConfiguration")) - { soap_flag_Focus1--; - continue; - } - } - if (soap_flag_IrCutFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IrCutFilterMode(soap, "tt:IrCutFilter", &a->tt__ImagingSettings::IrCutFilter, "tt:IrCutFilterMode")) - { soap_flag_IrCutFilter1--; - continue; - } - } - if (soap_flag_Sharpness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Sharpness", &a->tt__ImagingSettings::Sharpness, "xsd:float")) - { soap_flag_Sharpness1--; - continue; - } - } - if (soap_flag_WideDynamicRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WideDynamicRange(soap, "tt:WideDynamicRange", &a->tt__ImagingSettings::WideDynamicRange, "tt:WideDynamicRange")) - { soap_flag_WideDynamicRange1--; - continue; - } - } - if (soap_flag_WhiteBalance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__WhiteBalance(soap, "tt:WhiteBalance", &a->tt__ImagingSettings::WhiteBalance, "tt:WhiteBalance")) - { soap_flag_WhiteBalance1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettingsExtension(soap, "tt:Extension", &a->tt__ImagingSettings::Extension, "tt:ImagingSettingsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ImagingSettings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingSettings, SOAP_TYPE_tt__ImagingSettings, sizeof(tt__ImagingSettings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingSettings * SOAP_FMAC2 soap_instantiate_tt__ImagingSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingSettings *p; - size_t k = sizeof(tt__ImagingSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingSettings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingSettings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingSettings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingSettings(soap, tag ? tag : "tt:ImagingSettings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingSettings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingSettings(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingSettings * SOAP_FMAC4 soap_get_tt__ImagingSettings(struct soap *soap, tt__ImagingSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AutoFocusMode(soap, &this->tt__FocusConfiguration::AutoFocusMode); - soap_default_float(soap, &this->tt__FocusConfiguration::DefaultSpeed); - soap_default_float(soap, &this->tt__FocusConfiguration::NearLimit); - soap_default_float(soap, &this->tt__FocusConfiguration::FarLimit); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__FocusConfiguration::__anyAttribute); -} - -void tt__FocusConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__FocusConfiguration::DefaultSpeed, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__FocusConfiguration::NearLimit, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__FocusConfiguration::FarLimit, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusConfiguration::__any); -#endif -} - -int tt__FocusConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusConfiguration(struct soap *soap, const char *tag, int id, const tt__FocusConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FocusConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusConfiguration), type)) - return soap->error; - if (soap_out_tt__AutoFocusMode(soap, "tt:AutoFocusMode", -1, &a->tt__FocusConfiguration::AutoFocusMode, "")) - return soap->error; - if (soap_out_float(soap, "tt:DefaultSpeed", -1, &a->tt__FocusConfiguration::DefaultSpeed, "")) - return soap->error; - if (soap_out_float(soap, "tt:NearLimit", -1, &a->tt__FocusConfiguration::NearLimit, "")) - return soap->error; - if (soap_out_float(soap, "tt:FarLimit", -1, &a->tt__FocusConfiguration::FarLimit, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FocusConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusConfiguration * SOAP_FMAC4 soap_in_tt__FocusConfiguration(struct soap *soap, const char *tag, tt__FocusConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusConfiguration, sizeof(tt__FocusConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FocusConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AutoFocusMode1 = 1; - size_t soap_flag_DefaultSpeed1 = 1; - size_t soap_flag_NearLimit1 = 1; - size_t soap_flag_FarLimit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AutoFocusMode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__AutoFocusMode(soap, "tt:AutoFocusMode", &a->tt__FocusConfiguration::AutoFocusMode, "tt:AutoFocusMode")) - { soap_flag_AutoFocusMode1--; - continue; - } - } - if (soap_flag_DefaultSpeed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:DefaultSpeed", &a->tt__FocusConfiguration::DefaultSpeed, "xsd:float")) - { soap_flag_DefaultSpeed1--; - continue; - } - } - if (soap_flag_NearLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:NearLimit", &a->tt__FocusConfiguration::NearLimit, "xsd:float")) - { soap_flag_NearLimit1--; - continue; - } - } - if (soap_flag_FarLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:FarLimit", &a->tt__FocusConfiguration::FarLimit, "xsd:float")) - { soap_flag_FarLimit1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FocusConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AutoFocusMode1 > 0 || soap_flag_DefaultSpeed1 > 0 || soap_flag_NearLimit1 > 0 || soap_flag_FarLimit1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FocusConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusConfiguration, SOAP_TYPE_tt__FocusConfiguration, sizeof(tt__FocusConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusConfiguration * SOAP_FMAC2 soap_instantiate_tt__FocusConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusConfiguration *p; - size_t k = sizeof(tt__FocusConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusConfiguration(soap, tag ? tag : "tt:FocusConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusConfiguration * SOAP_FMAC4 soap_get_tt__FocusConfiguration(struct soap *soap, tt__FocusConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FocusStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__FocusStatus::Position); - soap_default_tt__MoveStatus(soap, &this->tt__FocusStatus::MoveStatus); - soap_default_std__string(soap, &this->tt__FocusStatus::Error); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusStatus::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__FocusStatus::__anyAttribute); -} - -void tt__FocusStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__FocusStatus::Position, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__FocusStatus::MoveStatus, SOAP_TYPE_tt__MoveStatus); - soap_embedded(soap, &this->tt__FocusStatus::Error, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__FocusStatus::Error); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__FocusStatus::__any); -#endif -} - -int tt__FocusStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FocusStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusStatus(struct soap *soap, const char *tag, int id, const tt__FocusStatus *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__FocusStatus*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FocusStatus), type)) - return soap->error; - if (soap_out_float(soap, "tt:Position", -1, &a->tt__FocusStatus::Position, "")) - return soap->error; - if (soap_out_tt__MoveStatus(soap, "tt:MoveStatus", -1, &a->tt__FocusStatus::MoveStatus, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:Error", -1, &a->tt__FocusStatus::Error, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__FocusStatus::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FocusStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FocusStatus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FocusStatus * SOAP_FMAC4 soap_in_tt__FocusStatus(struct soap *soap, const char *tag, tt__FocusStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FocusStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FocusStatus, sizeof(tt__FocusStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FocusStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FocusStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__FocusStatus*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Position1 = 1; - size_t soap_flag_MoveStatus1 = 1; - size_t soap_flag_Error1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Position", &a->tt__FocusStatus::Position, "xsd:float")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_MoveStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__MoveStatus(soap, "tt:MoveStatus", &a->tt__FocusStatus::MoveStatus, "tt:MoveStatus")) - { soap_flag_MoveStatus1--; - continue; - } - } - if (soap_flag_Error1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Error", &a->tt__FocusStatus::Error, "xsd:string")) - { soap_flag_Error1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__FocusStatus::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Position1 > 0 || soap_flag_MoveStatus1 > 0 || soap_flag_Error1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FocusStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FocusStatus, SOAP_TYPE_tt__FocusStatus, sizeof(tt__FocusStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FocusStatus * SOAP_FMAC2 soap_instantiate_tt__FocusStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FocusStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FocusStatus *p; - size_t k = sizeof(tt__FocusStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FocusStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FocusStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FocusStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FocusStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FocusStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FocusStatus(soap, tag ? tag : "tt:FocusStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FocusStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FocusStatus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FocusStatus * SOAP_FMAC4 soap_get_tt__FocusStatus(struct soap *soap, tt__FocusStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FocusStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ImagingStatus::FocusStatus = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingStatus::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ImagingStatus::__anyAttribute); -} - -void tt__ImagingStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__FocusStatus(soap, &this->tt__ImagingStatus::FocusStatus); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ImagingStatus::__any); -#endif -} - -int tt__ImagingStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingStatus(struct soap *soap, const char *tag, int id, const tt__ImagingStatus *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImagingStatus*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingStatus), type)) - return soap->error; - if (!a->tt__ImagingStatus::FocusStatus) - { if (soap_element_empty(soap, "tt:FocusStatus", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FocusStatus(soap, "tt:FocusStatus", -1, &a->tt__ImagingStatus::FocusStatus, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ImagingStatus::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingStatus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingStatus * SOAP_FMAC4 soap_in_tt__ImagingStatus(struct soap *soap, const char *tag, tt__ImagingStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingStatus, sizeof(tt__ImagingStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImagingStatus*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FocusStatus1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FocusStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FocusStatus(soap, "tt:FocusStatus", &a->tt__ImagingStatus::FocusStatus, "tt:FocusStatus")) - { soap_flag_FocusStatus1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ImagingStatus::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__ImagingStatus::FocusStatus)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ImagingStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingStatus, SOAP_TYPE_tt__ImagingStatus, sizeof(tt__ImagingStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingStatus * SOAP_FMAC2 soap_instantiate_tt__ImagingStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingStatus *p; - size_t k = sizeof(tt__ImagingStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingStatus(soap, tag ? tag : "tt:ImagingStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingStatus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingStatus * SOAP_FMAC4 soap_get_tt__ImagingStatus(struct soap *soap, tt__ImagingStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourStartingConditionOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourStartingConditionOptionsExtension::__any); -} - -void tt__PTZPresetTourStartingConditionOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourStartingConditionOptionsExtension::__any); -#endif -} - -int tt__PTZPresetTourStartingConditionOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourStartingConditionOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourStartingConditionOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourStartingConditionOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourStartingConditionOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourStartingConditionOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptionsExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, const char *tag, tt__PTZPresetTourStartingConditionOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourStartingConditionOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension, sizeof(tt__PTZPresetTourStartingConditionOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourStartingConditionOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourStartingConditionOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourStartingConditionOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension, sizeof(tt__PTZPresetTourStartingConditionOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourStartingConditionOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourStartingConditionOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourStartingConditionOptionsExtension *p; - size_t k = sizeof(tt__PTZPresetTourStartingConditionOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourStartingConditionOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourStartingConditionOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourStartingConditionOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourStartingConditionOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourStartingConditionOptionsExtension(soap, tag ? tag : "tt:PTZPresetTourStartingConditionOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourStartingConditionOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourStartingConditionOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptionsExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, tt__PTZPresetTourStartingConditionOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourStartingConditionOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourStartingConditionOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZPresetTourStartingConditionOptions::RecurringTime = NULL; - this->tt__PTZPresetTourStartingConditionOptions::RecurringDuration = NULL; - soap_default_std__vectorTemplateOftt__PTZPresetTourDirection(soap, &this->tt__PTZPresetTourStartingConditionOptions::Direction); - this->tt__PTZPresetTourStartingConditionOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourStartingConditionOptions::__anyAttribute); -} - -void tt__PTZPresetTourStartingConditionOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntRange(soap, &this->tt__PTZPresetTourStartingConditionOptions::RecurringTime); - soap_serialize_PointerTott__DurationRange(soap, &this->tt__PTZPresetTourStartingConditionOptions::RecurringDuration); - soap_serialize_std__vectorTemplateOftt__PTZPresetTourDirection(soap, &this->tt__PTZPresetTourStartingConditionOptions::Direction); - soap_serialize_PointerTott__PTZPresetTourStartingConditionOptionsExtension(soap, &this->tt__PTZPresetTourStartingConditionOptions::Extension); -#endif -} - -int tt__PTZPresetTourStartingConditionOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourStartingConditionOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourStartingConditionOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourStartingConditionOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions), type)) - return soap->error; - if (soap_out_PointerTott__IntRange(soap, "tt:RecurringTime", -1, &a->tt__PTZPresetTourStartingConditionOptions::RecurringTime, "")) - return soap->error; - if (soap_out_PointerTott__DurationRange(soap, "tt:RecurringDuration", -1, &a->tt__PTZPresetTourStartingConditionOptions::RecurringDuration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__PTZPresetTourDirection(soap, "tt:Direction", -1, &a->tt__PTZPresetTourStartingConditionOptions::Direction, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourStartingConditionOptionsExtension(soap, "tt:Extension", -1, &a->tt__PTZPresetTourStartingConditionOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourStartingConditionOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourStartingConditionOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, const char *tag, tt__PTZPresetTourStartingConditionOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourStartingConditionOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions, sizeof(tt__PTZPresetTourStartingConditionOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourStartingConditionOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourStartingConditionOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecurringTime1 = 1; - size_t soap_flag_RecurringDuration1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecurringTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:RecurringTime", &a->tt__PTZPresetTourStartingConditionOptions::RecurringTime, "tt:IntRange")) - { soap_flag_RecurringTime1--; - continue; - } - } - if (soap_flag_RecurringDuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DurationRange(soap, "tt:RecurringDuration", &a->tt__PTZPresetTourStartingConditionOptions::RecurringDuration, "tt:DurationRange")) - { soap_flag_RecurringDuration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__PTZPresetTourDirection(soap, "tt:Direction", &a->tt__PTZPresetTourStartingConditionOptions::Direction, "tt:PTZPresetTourDirection")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourStartingConditionOptionsExtension(soap, "tt:Extension", &a->tt__PTZPresetTourStartingConditionOptions::Extension, "tt:PTZPresetTourStartingConditionOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourStartingConditionOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions, sizeof(tt__PTZPresetTourStartingConditionOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourStartingConditionOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourStartingConditionOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourStartingConditionOptions *p; - size_t k = sizeof(tt__PTZPresetTourStartingConditionOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourStartingConditionOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourStartingConditionOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourStartingConditionOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourStartingConditionOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourStartingConditionOptions(soap, tag ? tag : "tt:PTZPresetTourStartingConditionOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourStartingConditionOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourStartingConditionOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, tt__PTZPresetTourStartingConditionOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourStartingConditionOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourPresetDetailOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourPresetDetailOptionsExtension::__any); -} - -void tt__PTZPresetTourPresetDetailOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourPresetDetailOptionsExtension::__any); -#endif -} - -int tt__PTZPresetTourPresetDetailOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourPresetDetailOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourPresetDetailOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourPresetDetailOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourPresetDetailOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourPresetDetailOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptionsExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, const char *tag, tt__PTZPresetTourPresetDetailOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourPresetDetailOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension, sizeof(tt__PTZPresetTourPresetDetailOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourPresetDetailOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourPresetDetailOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourPresetDetailOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension, sizeof(tt__PTZPresetTourPresetDetailOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourPresetDetailOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourPresetDetailOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourPresetDetailOptionsExtension *p; - size_t k = sizeof(tt__PTZPresetTourPresetDetailOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourPresetDetailOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourPresetDetailOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourPresetDetailOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourPresetDetailOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourPresetDetailOptionsExtension(soap, tag ? tag : "tt:PTZPresetTourPresetDetailOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourPresetDetailOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourPresetDetailOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptionsExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, tt__PTZPresetTourPresetDetailOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourPresetDetailOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourPresetDetailOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__PTZPresetTourPresetDetailOptions::PresetToken); - this->tt__PTZPresetTourPresetDetailOptions::Home = NULL; - this->tt__PTZPresetTourPresetDetailOptions::PanTiltPositionSpace = NULL; - this->tt__PTZPresetTourPresetDetailOptions::ZoomPositionSpace = NULL; - this->tt__PTZPresetTourPresetDetailOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourPresetDetailOptions::__anyAttribute); -} - -void tt__PTZPresetTourPresetDetailOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__PTZPresetTourPresetDetailOptions::PresetToken); - soap_serialize_PointerTobool(soap, &this->tt__PTZPresetTourPresetDetailOptions::Home); - soap_serialize_PointerTott__Space2DDescription(soap, &this->tt__PTZPresetTourPresetDetailOptions::PanTiltPositionSpace); - soap_serialize_PointerTott__Space1DDescription(soap, &this->tt__PTZPresetTourPresetDetailOptions::ZoomPositionSpace); - soap_serialize_PointerTott__PTZPresetTourPresetDetailOptionsExtension(soap, &this->tt__PTZPresetTourPresetDetailOptions::Extension); -#endif -} - -int tt__PTZPresetTourPresetDetailOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourPresetDetailOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourPresetDetailOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourPresetDetailOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tt:PresetToken", -1, &a->tt__PTZPresetTourPresetDetailOptions::PresetToken, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:Home", -1, &a->tt__PTZPresetTourPresetDetailOptions::Home, "")) - return soap->error; - if (soap_out_PointerTott__Space2DDescription(soap, "tt:PanTiltPositionSpace", -1, &a->tt__PTZPresetTourPresetDetailOptions::PanTiltPositionSpace, "")) - return soap->error; - if (soap_out_PointerTott__Space1DDescription(soap, "tt:ZoomPositionSpace", -1, &a->tt__PTZPresetTourPresetDetailOptions::ZoomPositionSpace, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourPresetDetailOptionsExtension(soap, "tt:Extension", -1, &a->tt__PTZPresetTourPresetDetailOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourPresetDetailOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourPresetDetailOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, const char *tag, tt__PTZPresetTourPresetDetailOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourPresetDetailOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions, sizeof(tt__PTZPresetTourPresetDetailOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourPresetDetailOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourPresetDetailOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Home1 = 1; - size_t soap_flag_PanTiltPositionSpace1 = 1; - size_t soap_flag_ZoomPositionSpace1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tt:PresetToken", &a->tt__PTZPresetTourPresetDetailOptions::PresetToken, "tt:ReferenceToken")) - continue; - } - if (soap_flag_Home1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:Home", &a->tt__PTZPresetTourPresetDetailOptions::Home, "xsd:boolean")) - { soap_flag_Home1--; - continue; - } - } - if (soap_flag_PanTiltPositionSpace1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Space2DDescription(soap, "tt:PanTiltPositionSpace", &a->tt__PTZPresetTourPresetDetailOptions::PanTiltPositionSpace, "tt:Space2DDescription")) - { soap_flag_PanTiltPositionSpace1--; - continue; - } - } - if (soap_flag_ZoomPositionSpace1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Space1DDescription(soap, "tt:ZoomPositionSpace", &a->tt__PTZPresetTourPresetDetailOptions::ZoomPositionSpace, "tt:Space1DDescription")) - { soap_flag_ZoomPositionSpace1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourPresetDetailOptionsExtension(soap, "tt:Extension", &a->tt__PTZPresetTourPresetDetailOptions::Extension, "tt:PTZPresetTourPresetDetailOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourPresetDetailOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions, sizeof(tt__PTZPresetTourPresetDetailOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourPresetDetailOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourPresetDetailOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourPresetDetailOptions *p; - size_t k = sizeof(tt__PTZPresetTourPresetDetailOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourPresetDetailOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourPresetDetailOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourPresetDetailOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourPresetDetailOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourPresetDetailOptions(soap, tag ? tag : "tt:PTZPresetTourPresetDetailOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourPresetDetailOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourPresetDetailOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, tt__PTZPresetTourPresetDetailOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourPresetDetailOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourSpotOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZPresetTourSpotOptions::PresetDetail = NULL; - this->tt__PTZPresetTourSpotOptions::StayTime = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourSpotOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourSpotOptions::__anyAttribute); -} - -void tt__PTZPresetTourSpotOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZPresetTourPresetDetailOptions(soap, &this->tt__PTZPresetTourSpotOptions::PresetDetail); - soap_serialize_PointerTott__DurationRange(soap, &this->tt__PTZPresetTourSpotOptions::StayTime); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourSpotOptions::__any); -#endif -} - -int tt__PTZPresetTourSpotOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourSpotOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSpotOptions(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourSpotOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourSpotOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourSpotOptions), type)) - return soap->error; - if (!a->tt__PTZPresetTourSpotOptions::PresetDetail) - { if (soap_element_empty(soap, "tt:PresetDetail", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPresetTourPresetDetailOptions(soap, "tt:PresetDetail", -1, &a->tt__PTZPresetTourSpotOptions::PresetDetail, "")) - return soap->error; - if (!a->tt__PTZPresetTourSpotOptions::StayTime) - { if (soap_element_empty(soap, "tt:StayTime", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__DurationRange(soap, "tt:StayTime", -1, &a->tt__PTZPresetTourSpotOptions::StayTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourSpotOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourSpotOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourSpotOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSpotOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourSpotOptions(struct soap *soap, const char *tag, tt__PTZPresetTourSpotOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourSpotOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourSpotOptions, sizeof(tt__PTZPresetTourSpotOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourSpotOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourSpotOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourSpotOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PresetDetail1 = 1; - size_t soap_flag_StayTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PresetDetail1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourPresetDetailOptions(soap, "tt:PresetDetail", &a->tt__PTZPresetTourSpotOptions::PresetDetail, "tt:PTZPresetTourPresetDetailOptions")) - { soap_flag_PresetDetail1--; - continue; - } - } - if (soap_flag_StayTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DurationRange(soap, "tt:StayTime", &a->tt__PTZPresetTourSpotOptions::StayTime, "tt:DurationRange")) - { soap_flag_StayTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourSpotOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PTZPresetTourSpotOptions::PresetDetail || !a->tt__PTZPresetTourSpotOptions::StayTime)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZPresetTourSpotOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourSpotOptions, SOAP_TYPE_tt__PTZPresetTourSpotOptions, sizeof(tt__PTZPresetTourSpotOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourSpotOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSpotOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourSpotOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourSpotOptions *p; - size_t k = sizeof(tt__PTZPresetTourSpotOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourSpotOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourSpotOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourSpotOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourSpotOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourSpotOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourSpotOptions(soap, tag ? tag : "tt:PTZPresetTourSpotOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourSpotOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourSpotOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSpotOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourSpotOptions(struct soap *soap, tt__PTZPresetTourSpotOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourSpotOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__PTZPresetTourOptions::AutoStart); - this->tt__PTZPresetTourOptions::StartingCondition = NULL; - this->tt__PTZPresetTourOptions::TourSpot = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourOptions::__anyAttribute); -} - -void tt__PTZPresetTourOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PTZPresetTourOptions::AutoStart, SOAP_TYPE_bool); - soap_serialize_PointerTott__PTZPresetTourStartingConditionOptions(soap, &this->tt__PTZPresetTourOptions::StartingCondition); - soap_serialize_PointerTott__PTZPresetTourSpotOptions(soap, &this->tt__PTZPresetTourOptions::TourSpot); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourOptions::__any); -#endif -} - -int tt__PTZPresetTourOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourOptions(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourOptions), type)) - return soap->error; - if (soap_out_bool(soap, "tt:AutoStart", -1, &a->tt__PTZPresetTourOptions::AutoStart, "")) - return soap->error; - if (!a->tt__PTZPresetTourOptions::StartingCondition) - { if (soap_element_empty(soap, "tt:StartingCondition", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPresetTourStartingConditionOptions(soap, "tt:StartingCondition", -1, &a->tt__PTZPresetTourOptions::StartingCondition, "")) - return soap->error; - if (!a->tt__PTZPresetTourOptions::TourSpot) - { if (soap_element_empty(soap, "tt:TourSpot", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPresetTourSpotOptions(soap, "tt:TourSpot", -1, &a->tt__PTZPresetTourOptions::TourSpot, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourOptions(struct soap *soap, const char *tag, tt__PTZPresetTourOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourOptions, sizeof(tt__PTZPresetTourOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AutoStart1 = 1; - size_t soap_flag_StartingCondition1 = 1; - size_t soap_flag_TourSpot1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AutoStart1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AutoStart", &a->tt__PTZPresetTourOptions::AutoStart, "xsd:boolean")) - { soap_flag_AutoStart1--; - continue; - } - } - if (soap_flag_StartingCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourStartingConditionOptions(soap, "tt:StartingCondition", &a->tt__PTZPresetTourOptions::StartingCondition, "tt:PTZPresetTourStartingConditionOptions")) - { soap_flag_StartingCondition1--; - continue; - } - } - if (soap_flag_TourSpot1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourSpotOptions(soap, "tt:TourSpot", &a->tt__PTZPresetTourOptions::TourSpot, "tt:PTZPresetTourSpotOptions")) - { soap_flag_TourSpot1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AutoStart1 > 0 || !a->tt__PTZPresetTourOptions::StartingCondition || !a->tt__PTZPresetTourOptions::TourSpot)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZPresetTourOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourOptions, SOAP_TYPE_tt__PTZPresetTourOptions, sizeof(tt__PTZPresetTourOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourOptions *p; - size_t k = sizeof(tt__PTZPresetTourOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourOptions(soap, tag ? tag : "tt:PTZPresetTourOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourOptions(struct soap *soap, tt__PTZPresetTourOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourStartingConditionExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourStartingConditionExtension::__any); -} - -void tt__PTZPresetTourStartingConditionExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourStartingConditionExtension::__any); -#endif -} - -int tt__PTZPresetTourStartingConditionExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourStartingConditionExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourStartingConditionExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourStartingConditionExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourStartingConditionExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourStartingConditionExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingConditionExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, const char *tag, tt__PTZPresetTourStartingConditionExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourStartingConditionExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension, sizeof(tt__PTZPresetTourStartingConditionExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourStartingConditionExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourStartingConditionExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourStartingConditionExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension, SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension, sizeof(tt__PTZPresetTourStartingConditionExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourStartingConditionExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourStartingConditionExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourStartingConditionExtension *p; - size_t k = sizeof(tt__PTZPresetTourStartingConditionExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourStartingConditionExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourStartingConditionExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourStartingConditionExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourStartingConditionExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourStartingConditionExtension(soap, tag ? tag : "tt:PTZPresetTourStartingConditionExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourStartingConditionExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourStartingConditionExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingConditionExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, tt__PTZPresetTourStartingConditionExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourStartingConditionExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourStartingCondition::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZPresetTourStartingCondition::RecurringTime = NULL; - this->tt__PTZPresetTourStartingCondition::RecurringDuration = NULL; - this->tt__PTZPresetTourStartingCondition::Direction = NULL; - this->tt__PTZPresetTourStartingCondition::Extension = NULL; - this->tt__PTZPresetTourStartingCondition::RandomPresetOrder = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourStartingCondition::__anyAttribute); -} - -void tt__PTZPresetTourStartingCondition::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &this->tt__PTZPresetTourStartingCondition::RecurringTime); - soap_serialize_PointerToxsd__duration(soap, &this->tt__PTZPresetTourStartingCondition::RecurringDuration); - soap_serialize_PointerTott__PTZPresetTourDirection(soap, &this->tt__PTZPresetTourStartingCondition::Direction); - soap_serialize_PointerTott__PTZPresetTourStartingConditionExtension(soap, &this->tt__PTZPresetTourStartingCondition::Extension); -#endif -} - -int tt__PTZPresetTourStartingCondition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourStartingCondition(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingCondition(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourStartingCondition *a, const char *type) -{ - if (((tt__PTZPresetTourStartingCondition*)a)->RandomPresetOrder) - { soap_set_attr(soap, "RandomPresetOrder", soap_bool2s(soap, *((tt__PTZPresetTourStartingCondition*)a)->RandomPresetOrder), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourStartingCondition*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourStartingCondition), type)) - return soap->error; - if (soap_out_PointerToint(soap, "tt:RecurringTime", -1, &a->tt__PTZPresetTourStartingCondition::RecurringTime, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tt:RecurringDuration", -1, &a->tt__PTZPresetTourStartingCondition::RecurringDuration, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourDirection(soap, "tt:Direction", -1, &a->tt__PTZPresetTourStartingCondition::Direction, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourStartingConditionExtension(soap, "tt:Extension", -1, &a->tt__PTZPresetTourStartingCondition::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourStartingCondition::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourStartingCondition(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingCondition * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingCondition(struct soap *soap, const char *tag, tt__PTZPresetTourStartingCondition *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourStartingCondition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourStartingCondition, sizeof(tt__PTZPresetTourStartingCondition), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourStartingCondition) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourStartingCondition *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "RandomPresetOrder", 5, 0); - if (t) - { - if (!(((tt__PTZPresetTourStartingCondition*)a)->RandomPresetOrder = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__PTZPresetTourStartingCondition*)a)->RandomPresetOrder)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourStartingCondition*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RecurringTime1 = 1; - size_t soap_flag_RecurringDuration1 = 1; - size_t soap_flag_Direction1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RecurringTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:RecurringTime", &a->tt__PTZPresetTourStartingCondition::RecurringTime, "xsd:int")) - { soap_flag_RecurringTime1--; - continue; - } - } - if (soap_flag_RecurringDuration1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tt:RecurringDuration", &a->tt__PTZPresetTourStartingCondition::RecurringDuration, "xsd:duration")) - { soap_flag_RecurringDuration1--; - continue; - } - } - if (soap_flag_Direction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourDirection(soap, "tt:Direction", &a->tt__PTZPresetTourStartingCondition::Direction, "tt:PTZPresetTourDirection")) - { soap_flag_Direction1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourStartingConditionExtension(soap, "tt:Extension", &a->tt__PTZPresetTourStartingCondition::Extension, "tt:PTZPresetTourStartingConditionExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourStartingCondition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourStartingCondition, SOAP_TYPE_tt__PTZPresetTourStartingCondition, sizeof(tt__PTZPresetTourStartingCondition), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourStartingCondition * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingCondition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourStartingCondition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourStartingCondition *p; - size_t k = sizeof(tt__PTZPresetTourStartingCondition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourStartingCondition, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourStartingCondition); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourStartingCondition, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourStartingCondition location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourStartingCondition::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourStartingCondition(soap, tag ? tag : "tt:PTZPresetTourStartingCondition", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourStartingCondition::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourStartingCondition(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStartingCondition * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingCondition(struct soap *soap, tt__PTZPresetTourStartingCondition *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourStartingCondition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourStatusExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourStatusExtension::__any); -} - -void tt__PTZPresetTourStatusExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourStatusExtension::__any); -#endif -} - -int tt__PTZPresetTourStatusExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourStatusExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStatusExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourStatusExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourStatusExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourStatusExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourStatusExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourStatusExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStatusExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourStatusExtension(struct soap *soap, const char *tag, tt__PTZPresetTourStatusExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourStatusExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourStatusExtension, sizeof(tt__PTZPresetTourStatusExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourStatusExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourStatusExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourStatusExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourStatusExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourStatusExtension, SOAP_TYPE_tt__PTZPresetTourStatusExtension, sizeof(tt__PTZPresetTourStatusExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourStatusExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStatusExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourStatusExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourStatusExtension *p; - size_t k = sizeof(tt__PTZPresetTourStatusExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourStatusExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourStatusExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourStatusExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourStatusExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourStatusExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourStatusExtension(soap, tag ? tag : "tt:PTZPresetTourStatusExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourStatusExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourStatusExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStatusExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourStatusExtension(struct soap *soap, tt__PTZPresetTourStatusExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourStatusExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__PTZPresetTourState(soap, &this->tt__PTZPresetTourStatus::State); - this->tt__PTZPresetTourStatus::CurrentTourSpot = NULL; - this->tt__PTZPresetTourStatus::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourStatus::__anyAttribute); -} - -void tt__PTZPresetTourStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZPresetTourSpot(soap, &this->tt__PTZPresetTourStatus::CurrentTourSpot); - soap_serialize_PointerTott__PTZPresetTourStatusExtension(soap, &this->tt__PTZPresetTourStatus::Extension); -#endif -} - -int tt__PTZPresetTourStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStatus(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourStatus *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourStatus*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourStatus), type)) - return soap->error; - if (soap_out_tt__PTZPresetTourState(soap, "tt:State", -1, &a->tt__PTZPresetTourStatus::State, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourSpot(soap, "tt:CurrentTourSpot", -1, &a->tt__PTZPresetTourStatus::CurrentTourSpot, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourStatusExtension(soap, "tt:Extension", -1, &a->tt__PTZPresetTourStatus::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourStatus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStatus * SOAP_FMAC4 soap_in_tt__PTZPresetTourStatus(struct soap *soap, const char *tag, tt__PTZPresetTourStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourStatus, sizeof(tt__PTZPresetTourStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourStatus*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_State1 = 1; - size_t soap_flag_CurrentTourSpot1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_State1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__PTZPresetTourState(soap, "tt:State", &a->tt__PTZPresetTourStatus::State, "tt:PTZPresetTourState")) - { soap_flag_State1--; - continue; - } - } - if (soap_flag_CurrentTourSpot1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourSpot(soap, "tt:CurrentTourSpot", &a->tt__PTZPresetTourStatus::CurrentTourSpot, "tt:PTZPresetTourSpot")) - { soap_flag_CurrentTourSpot1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourStatusExtension(soap, "tt:Extension", &a->tt__PTZPresetTourStatus::Extension, "tt:PTZPresetTourStatusExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_State1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZPresetTourStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourStatus, SOAP_TYPE_tt__PTZPresetTourStatus, sizeof(tt__PTZPresetTourStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourStatus * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourStatus *p; - size_t k = sizeof(tt__PTZPresetTourStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourStatus(soap, tag ? tag : "tt:PTZPresetTourStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourStatus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourStatus * SOAP_FMAC4 soap_get_tt__PTZPresetTourStatus(struct soap *soap, tt__PTZPresetTourStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourTypeExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourTypeExtension::__any); -} - -void tt__PTZPresetTourTypeExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourTypeExtension::__any); -#endif -} - -int tt__PTZPresetTourTypeExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourTypeExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourTypeExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourTypeExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourTypeExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourTypeExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourTypeExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourTypeExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourTypeExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourTypeExtension(struct soap *soap, const char *tag, tt__PTZPresetTourTypeExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourTypeExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourTypeExtension, sizeof(tt__PTZPresetTourTypeExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourTypeExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourTypeExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourTypeExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourTypeExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourTypeExtension, SOAP_TYPE_tt__PTZPresetTourTypeExtension, sizeof(tt__PTZPresetTourTypeExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourTypeExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourTypeExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourTypeExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourTypeExtension *p; - size_t k = sizeof(tt__PTZPresetTourTypeExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourTypeExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourTypeExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourTypeExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourTypeExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourTypeExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourTypeExtension(soap, tag ? tag : "tt:PTZPresetTourTypeExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourTypeExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourTypeExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourTypeExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourTypeExtension(struct soap *soap, tt__PTZPresetTourTypeExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourTypeExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourPresetDetail::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZPresetTourPresetDetail::__union_PTZPresetTourPresetDetail = 0; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourPresetDetail::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourPresetDetail::__anyAttribute); -} - -void tt__PTZPresetTourPresetDetail::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__tt__union_PTZPresetTourPresetDetail(soap, this->tt__PTZPresetTourPresetDetail::__union_PTZPresetTourPresetDetail, &this->tt__PTZPresetTourPresetDetail::union_PTZPresetTourPresetDetail); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourPresetDetail::__any); -#endif -} - -int tt__PTZPresetTourPresetDetail::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourPresetDetail(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourPresetDetail(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourPresetDetail *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourPresetDetail*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourPresetDetail), type)) - return soap->error; - if (soap_out__tt__union_PTZPresetTourPresetDetail(soap, a->tt__PTZPresetTourPresetDetail::__union_PTZPresetTourPresetDetail, &a->tt__PTZPresetTourPresetDetail::union_PTZPresetTourPresetDetail)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourPresetDetail::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourPresetDetail::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourPresetDetail(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourPresetDetail * SOAP_FMAC4 soap_in_tt__PTZPresetTourPresetDetail(struct soap *soap, const char *tag, tt__PTZPresetTourPresetDetail *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourPresetDetail*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourPresetDetail, sizeof(tt__PTZPresetTourPresetDetail), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourPresetDetail) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourPresetDetail *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourPresetDetail*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_union_PTZPresetTourPresetDetail1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_union_PTZPresetTourPresetDetail1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__tt__union_PTZPresetTourPresetDetail(soap, &a->tt__PTZPresetTourPresetDetail::__union_PTZPresetTourPresetDetail, &a->tt__PTZPresetTourPresetDetail::union_PTZPresetTourPresetDetail)) - { soap_flag_union_PTZPresetTourPresetDetail1 = 0; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourPresetDetail::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourPresetDetail *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourPresetDetail, SOAP_TYPE_tt__PTZPresetTourPresetDetail, sizeof(tt__PTZPresetTourPresetDetail), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourPresetDetail * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourPresetDetail(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourPresetDetail(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourPresetDetail *p; - size_t k = sizeof(tt__PTZPresetTourPresetDetail); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourPresetDetail, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourPresetDetail); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourPresetDetail, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourPresetDetail location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourPresetDetail::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourPresetDetail(soap, tag ? tag : "tt:PTZPresetTourPresetDetail", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourPresetDetail::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourPresetDetail(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourPresetDetail * SOAP_FMAC4 soap_get_tt__PTZPresetTourPresetDetail(struct soap *soap, tt__PTZPresetTourPresetDetail *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourPresetDetail(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourSpotExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourSpotExtension::__any); -} - -void tt__PTZPresetTourSpotExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourSpotExtension::__any); -#endif -} - -int tt__PTZPresetTourSpotExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourSpotExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSpotExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourSpotExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourSpotExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourSpotExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourSpotExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourSpotExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSpotExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourSpotExtension(struct soap *soap, const char *tag, tt__PTZPresetTourSpotExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourSpotExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourSpotExtension, sizeof(tt__PTZPresetTourSpotExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourSpotExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourSpotExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourSpotExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourSpotExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourSpotExtension, SOAP_TYPE_tt__PTZPresetTourSpotExtension, sizeof(tt__PTZPresetTourSpotExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourSpotExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSpotExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourSpotExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourSpotExtension *p; - size_t k = sizeof(tt__PTZPresetTourSpotExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourSpotExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourSpotExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourSpotExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourSpotExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourSpotExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourSpotExtension(soap, tag ? tag : "tt:PTZPresetTourSpotExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourSpotExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourSpotExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSpotExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourSpotExtension(struct soap *soap, tt__PTZPresetTourSpotExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourSpotExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourSpot::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZPresetTourSpot::PresetDetail = NULL; - this->tt__PTZPresetTourSpot::Speed = NULL; - this->tt__PTZPresetTourSpot::StayTime = NULL; - this->tt__PTZPresetTourSpot::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourSpot::__anyAttribute); -} - -void tt__PTZPresetTourSpot::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZPresetTourPresetDetail(soap, &this->tt__PTZPresetTourSpot::PresetDetail); - soap_serialize_PointerTott__PTZSpeed(soap, &this->tt__PTZPresetTourSpot::Speed); - soap_serialize_PointerToxsd__duration(soap, &this->tt__PTZPresetTourSpot::StayTime); - soap_serialize_PointerTott__PTZPresetTourSpotExtension(soap, &this->tt__PTZPresetTourSpot::Extension); -#endif -} - -int tt__PTZPresetTourSpot::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourSpot(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSpot(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourSpot *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourSpot*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourSpot), type)) - return soap->error; - if (!a->tt__PTZPresetTourSpot::PresetDetail) - { if (soap_element_empty(soap, "tt:PresetDetail", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPresetTourPresetDetail(soap, "tt:PresetDetail", -1, &a->tt__PTZPresetTourSpot::PresetDetail, "")) - return soap->error; - if (soap_out_PointerTott__PTZSpeed(soap, "tt:Speed", -1, &a->tt__PTZPresetTourSpot::Speed, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tt:StayTime", -1, &a->tt__PTZPresetTourSpot::StayTime, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourSpotExtension(soap, "tt:Extension", -1, &a->tt__PTZPresetTourSpot::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourSpot::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourSpot(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSpot * SOAP_FMAC4 soap_in_tt__PTZPresetTourSpot(struct soap *soap, const char *tag, tt__PTZPresetTourSpot *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourSpot*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourSpot, sizeof(tt__PTZPresetTourSpot), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourSpot) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourSpot *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourSpot*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PresetDetail1 = 1; - size_t soap_flag_Speed1 = 1; - size_t soap_flag_StayTime1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PresetDetail1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourPresetDetail(soap, "tt:PresetDetail", &a->tt__PTZPresetTourSpot::PresetDetail, "tt:PTZPresetTourPresetDetail")) - { soap_flag_PresetDetail1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpeed(soap, "tt:Speed", &a->tt__PTZPresetTourSpot::Speed, "tt:PTZSpeed")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_StayTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tt:StayTime", &a->tt__PTZPresetTourSpot::StayTime, "xsd:duration")) - { soap_flag_StayTime1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourSpotExtension(soap, "tt:Extension", &a->tt__PTZPresetTourSpot::Extension, "tt:PTZPresetTourSpotExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PTZPresetTourSpot::PresetDetail)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZPresetTourSpot *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourSpot, SOAP_TYPE_tt__PTZPresetTourSpot, sizeof(tt__PTZPresetTourSpot), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourSpot * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSpot(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourSpot(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourSpot *p; - size_t k = sizeof(tt__PTZPresetTourSpot); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourSpot, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourSpot); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourSpot, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourSpot location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourSpot::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourSpot(soap, tag ? tag : "tt:PTZPresetTourSpot", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourSpot::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourSpot(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSpot * SOAP_FMAC4 soap_get_tt__PTZPresetTourSpot(struct soap *soap, tt__PTZPresetTourSpot *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourSpot(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourExtension::__any); -} - -void tt__PTZPresetTourExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourExtension::__any); -#endif -} - -int tt__PTZPresetTourExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourExtension(struct soap *soap, const char *tag, tt__PTZPresetTourExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourExtension, sizeof(tt__PTZPresetTourExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourExtension, SOAP_TYPE_tt__PTZPresetTourExtension, sizeof(tt__PTZPresetTourExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourExtension *p; - size_t k = sizeof(tt__PTZPresetTourExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourExtension(soap, tag ? tag : "tt:PTZPresetTourExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourExtension(struct soap *soap, tt__PTZPresetTourExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PresetTour::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PresetTour::Name = NULL; - this->tt__PresetTour::Status = NULL; - soap_default_bool(soap, &this->tt__PresetTour::AutoStart); - this->tt__PresetTour::StartingCondition = NULL; - soap_default_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(soap, &this->tt__PresetTour::TourSpot); - this->tt__PresetTour::Extension = NULL; - this->tt__PresetTour::token = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PresetTour::__anyAttribute); -} - -void tt__PresetTour::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Name(soap, &this->tt__PresetTour::Name); - soap_serialize_PointerTott__PTZPresetTourStatus(soap, &this->tt__PresetTour::Status); - soap_embedded(soap, &this->tt__PresetTour::AutoStart, SOAP_TYPE_bool); - soap_serialize_PointerTott__PTZPresetTourStartingCondition(soap, &this->tt__PresetTour::StartingCondition); - soap_serialize_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(soap, &this->tt__PresetTour::TourSpot); - soap_serialize_PointerTott__PTZPresetTourExtension(soap, &this->tt__PresetTour::Extension); -#endif -} - -int tt__PresetTour::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PresetTour(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PresetTour(struct soap *soap, const char *tag, int id, const tt__PresetTour *a, const char *type) -{ - if (((tt__PresetTour*)a)->token) - { soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, *((tt__PresetTour*)a)->token), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PresetTour*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PresetTour), type)) - return soap->error; - if (soap_out_PointerTott__Name(soap, "tt:Name", -1, &a->tt__PresetTour::Name, "")) - return soap->error; - if (!a->tt__PresetTour::Status) - { if (soap_element_empty(soap, "tt:Status", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPresetTourStatus(soap, "tt:Status", -1, &a->tt__PresetTour::Status, "")) - return soap->error; - if (soap_out_bool(soap, "tt:AutoStart", -1, &a->tt__PresetTour::AutoStart, "")) - return soap->error; - if (!a->tt__PresetTour::StartingCondition) - { if (soap_element_empty(soap, "tt:StartingCondition", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZPresetTourStartingCondition(soap, "tt:StartingCondition", -1, &a->tt__PresetTour::StartingCondition, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(soap, "tt:TourSpot", -1, &a->tt__PresetTour::TourSpot, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourExtension(soap, "tt:Extension", -1, &a->tt__PresetTour::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PresetTour::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PresetTour(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PresetTour * SOAP_FMAC4 soap_in_tt__PresetTour(struct soap *soap, const char *tag, tt__PresetTour *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PresetTour*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PresetTour, sizeof(tt__PresetTour), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PresetTour) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PresetTour *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "token", 1, 0); - if (t) - { - if (!(((tt__PresetTour*)a)->token = soap_new_tt__ReferenceToken(soap))) - return NULL; - if (soap_s2tt__ReferenceToken(soap, t, ((tt__PresetTour*)a)->token)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PresetTour*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_Status1 = 1; - size_t soap_flag_AutoStart1 = 1; - size_t soap_flag_StartingCondition1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__Name(soap, "tt:Name", &a->tt__PresetTour::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_Status1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourStatus(soap, "tt:Status", &a->tt__PresetTour::Status, "tt:PTZPresetTourStatus")) - { soap_flag_Status1--; - continue; - } - } - if (soap_flag_AutoStart1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AutoStart", &a->tt__PresetTour::AutoStart, "xsd:boolean")) - { soap_flag_AutoStart1--; - continue; - } - } - if (soap_flag_StartingCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourStartingCondition(soap, "tt:StartingCondition", &a->tt__PresetTour::StartingCondition, "tt:PTZPresetTourStartingCondition")) - { soap_flag_StartingCondition1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(soap, "tt:TourSpot", &a->tt__PresetTour::TourSpot, "tt:PTZPresetTourSpot")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourExtension(soap, "tt:Extension", &a->tt__PresetTour::Extension, "tt:PTZPresetTourExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PresetTour::Status || soap_flag_AutoStart1 > 0 || !a->tt__PresetTour::StartingCondition)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PresetTour *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PresetTour, SOAP_TYPE_tt__PresetTour, sizeof(tt__PresetTour), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PresetTour * SOAP_FMAC2 soap_instantiate_tt__PresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PresetTour *p; - size_t k = sizeof(tt__PresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PresetTour); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PresetTour, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PresetTour::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PresetTour(soap, tag ? tag : "tt:PresetTour", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PresetTour::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PresetTour(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PresetTour * SOAP_FMAC4 soap_get_tt__PresetTour(struct soap *soap, tt__PresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPreset::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZPreset::Name = NULL; - this->tt__PTZPreset::PTZPosition = NULL; - this->tt__PTZPreset::token = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPreset::__anyAttribute); -} - -void tt__PTZPreset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Name(soap, &this->tt__PTZPreset::Name); - soap_serialize_PointerTott__PTZVector(soap, &this->tt__PTZPreset::PTZPosition); -#endif -} - -int tt__PTZPreset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPreset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPreset(struct soap *soap, const char *tag, int id, const tt__PTZPreset *a, const char *type) -{ - if (((tt__PTZPreset*)a)->token) - { soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, *((tt__PTZPreset*)a)->token), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPreset*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPreset), type)) - return soap->error; - if (soap_out_PointerTott__Name(soap, "tt:Name", -1, &a->tt__PTZPreset::Name, "")) - return soap->error; - if (soap_out_PointerTott__PTZVector(soap, "tt:PTZPosition", -1, &a->tt__PTZPreset::PTZPosition, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPreset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPreset(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPreset * SOAP_FMAC4 soap_in_tt__PTZPreset(struct soap *soap, const char *tag, tt__PTZPreset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPreset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPreset, sizeof(tt__PTZPreset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPreset) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPreset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "token", 1, 0); - if (t) - { - if (!(((tt__PTZPreset*)a)->token = soap_new_tt__ReferenceToken(soap))) - return NULL; - if (soap_s2tt__ReferenceToken(soap, t, ((tt__PTZPreset*)a)->token)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPreset*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_PTZPosition1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__Name(soap, "tt:Name", &a->tt__PTZPreset::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_PTZPosition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZVector(soap, "tt:PTZPosition", &a->tt__PTZPreset::PTZPosition, "tt:PTZVector")) - { soap_flag_PTZPosition1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPreset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPreset, SOAP_TYPE_tt__PTZPreset, sizeof(tt__PTZPreset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPreset * SOAP_FMAC2 soap_instantiate_tt__PTZPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPreset *p; - size_t k = sizeof(tt__PTZPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPreset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPreset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPreset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPreset(soap, tag ? tag : "tt:PTZPreset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPreset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPreset(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPreset * SOAP_FMAC4 soap_get_tt__PTZPreset(struct soap *soap, tt__PTZPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZSpeed::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZSpeed::PanTilt = NULL; - this->tt__PTZSpeed::Zoom = NULL; -} - -void tt__PTZSpeed::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Vector2D(soap, &this->tt__PTZSpeed::PanTilt); - soap_serialize_PointerTott__Vector1D(soap, &this->tt__PTZSpeed::Zoom); -#endif -} - -int tt__PTZSpeed::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZSpeed(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZSpeed(struct soap *soap, const char *tag, int id, const tt__PTZSpeed *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZSpeed), type)) - return soap->error; - if (soap_out_PointerTott__Vector2D(soap, "tt:PanTilt", -1, &a->tt__PTZSpeed::PanTilt, "")) - return soap->error; - if (soap_out_PointerTott__Vector1D(soap, "tt:Zoom", -1, &a->tt__PTZSpeed::Zoom, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZSpeed::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZSpeed(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZSpeed * SOAP_FMAC4 soap_in_tt__PTZSpeed(struct soap *soap, const char *tag, tt__PTZSpeed *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZSpeed*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZSpeed, sizeof(tt__PTZSpeed), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZSpeed) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZSpeed *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PanTilt1 = 1; - size_t soap_flag_Zoom1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PanTilt1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Vector2D(soap, "tt:PanTilt", &a->tt__PTZSpeed::PanTilt, "tt:Vector2D")) - { soap_flag_PanTilt1--; - continue; - } - } - if (soap_flag_Zoom1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Vector1D(soap, "tt:Zoom", &a->tt__PTZSpeed::Zoom, "tt:Vector1D")) - { soap_flag_Zoom1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZSpeed *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZSpeed, SOAP_TYPE_tt__PTZSpeed, sizeof(tt__PTZSpeed), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZSpeed * SOAP_FMAC2 soap_instantiate_tt__PTZSpeed(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZSpeed(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZSpeed *p; - size_t k = sizeof(tt__PTZSpeed); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZSpeed, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZSpeed); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZSpeed, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZSpeed location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZSpeed::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZSpeed(soap, tag ? tag : "tt:PTZSpeed", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZSpeed::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZSpeed(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZSpeed * SOAP_FMAC4 soap_get_tt__PTZSpeed(struct soap *soap, tt__PTZSpeed *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZSpeed(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Space1DDescription::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__Space1DDescription::URI); - this->tt__Space1DDescription::XRange = NULL; -} - -void tt__Space1DDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Space1DDescription::URI, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__Space1DDescription::URI); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__Space1DDescription::XRange); -#endif -} - -int tt__Space1DDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Space1DDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Space1DDescription(struct soap *soap, const char *tag, int id, const tt__Space1DDescription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Space1DDescription), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:URI", -1, &a->tt__Space1DDescription::URI, "")) - return soap->error; - if (!a->tt__Space1DDescription::XRange) - { if (soap_element_empty(soap, "tt:XRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:XRange", -1, &a->tt__Space1DDescription::XRange, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Space1DDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Space1DDescription(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Space1DDescription * SOAP_FMAC4 soap_in_tt__Space1DDescription(struct soap *soap, const char *tag, tt__Space1DDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Space1DDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Space1DDescription, sizeof(tt__Space1DDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Space1DDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Space1DDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_URI1 = 1; - size_t soap_flag_XRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_URI1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:URI", &a->tt__Space1DDescription::URI, "xsd:anyURI")) - { soap_flag_URI1--; - continue; - } - } - if (soap_flag_XRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:XRange", &a->tt__Space1DDescription::XRange, "tt:FloatRange")) - { soap_flag_XRange1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_URI1 > 0 || !a->tt__Space1DDescription::XRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Space1DDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Space1DDescription, SOAP_TYPE_tt__Space1DDescription, sizeof(tt__Space1DDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Space1DDescription * SOAP_FMAC2 soap_instantiate_tt__Space1DDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Space1DDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Space1DDescription *p; - size_t k = sizeof(tt__Space1DDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Space1DDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Space1DDescription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Space1DDescription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Space1DDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Space1DDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Space1DDescription(soap, tag ? tag : "tt:Space1DDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Space1DDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Space1DDescription(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Space1DDescription * SOAP_FMAC4 soap_get_tt__Space1DDescription(struct soap *soap, tt__Space1DDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Space1DDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Space2DDescription::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__Space2DDescription::URI); - this->tt__Space2DDescription::XRange = NULL; - this->tt__Space2DDescription::YRange = NULL; -} - -void tt__Space2DDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Space2DDescription::URI, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__Space2DDescription::URI); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__Space2DDescription::XRange); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__Space2DDescription::YRange); -#endif -} - -int tt__Space2DDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Space2DDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Space2DDescription(struct soap *soap, const char *tag, int id, const tt__Space2DDescription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Space2DDescription), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:URI", -1, &a->tt__Space2DDescription::URI, "")) - return soap->error; - if (!a->tt__Space2DDescription::XRange) - { if (soap_element_empty(soap, "tt:XRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:XRange", -1, &a->tt__Space2DDescription::XRange, "")) - return soap->error; - if (!a->tt__Space2DDescription::YRange) - { if (soap_element_empty(soap, "tt:YRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:YRange", -1, &a->tt__Space2DDescription::YRange, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Space2DDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Space2DDescription(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Space2DDescription * SOAP_FMAC4 soap_in_tt__Space2DDescription(struct soap *soap, const char *tag, tt__Space2DDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Space2DDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Space2DDescription, sizeof(tt__Space2DDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Space2DDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Space2DDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_URI1 = 1; - size_t soap_flag_XRange1 = 1; - size_t soap_flag_YRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_URI1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:URI", &a->tt__Space2DDescription::URI, "xsd:anyURI")) - { soap_flag_URI1--; - continue; - } - } - if (soap_flag_XRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:XRange", &a->tt__Space2DDescription::XRange, "tt:FloatRange")) - { soap_flag_XRange1--; - continue; - } - } - if (soap_flag_YRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:YRange", &a->tt__Space2DDescription::YRange, "tt:FloatRange")) - { soap_flag_YRange1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_URI1 > 0 || !a->tt__Space2DDescription::XRange || !a->tt__Space2DDescription::YRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Space2DDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Space2DDescription, SOAP_TYPE_tt__Space2DDescription, sizeof(tt__Space2DDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Space2DDescription * SOAP_FMAC2 soap_instantiate_tt__Space2DDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Space2DDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Space2DDescription *p; - size_t k = sizeof(tt__Space2DDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Space2DDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Space2DDescription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Space2DDescription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Space2DDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Space2DDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Space2DDescription(soap, tag ? tag : "tt:Space2DDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Space2DDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Space2DDescription(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Space2DDescription * SOAP_FMAC4 soap_get_tt__Space2DDescription(struct soap *soap, tt__Space2DDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Space2DDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZSpacesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZSpacesExtension::__any); -} - -void tt__PTZSpacesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZSpacesExtension::__any); -#endif -} - -int tt__PTZSpacesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZSpacesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZSpacesExtension(struct soap *soap, const char *tag, int id, const tt__PTZSpacesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZSpacesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZSpacesExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZSpacesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZSpacesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZSpacesExtension * SOAP_FMAC4 soap_in_tt__PTZSpacesExtension(struct soap *soap, const char *tag, tt__PTZSpacesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZSpacesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZSpacesExtension, sizeof(tt__PTZSpacesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZSpacesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZSpacesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZSpacesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZSpacesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZSpacesExtension, SOAP_TYPE_tt__PTZSpacesExtension, sizeof(tt__PTZSpacesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZSpacesExtension * SOAP_FMAC2 soap_instantiate_tt__PTZSpacesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZSpacesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZSpacesExtension *p; - size_t k = sizeof(tt__PTZSpacesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZSpacesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZSpacesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZSpacesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZSpacesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZSpacesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZSpacesExtension(soap, tag ? tag : "tt:PTZSpacesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZSpacesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZSpacesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZSpacesExtension * SOAP_FMAC4 soap_get_tt__PTZSpacesExtension(struct soap *soap, tt__PTZSpacesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZSpacesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZSpaces::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Space2DDescription(soap, &this->tt__PTZSpaces::AbsolutePanTiltPositionSpace); - soap_default_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::AbsoluteZoomPositionSpace); - soap_default_std__vectorTemplateOfPointerTott__Space2DDescription(soap, &this->tt__PTZSpaces::RelativePanTiltTranslationSpace); - soap_default_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::RelativeZoomTranslationSpace); - soap_default_std__vectorTemplateOfPointerTott__Space2DDescription(soap, &this->tt__PTZSpaces::ContinuousPanTiltVelocitySpace); - soap_default_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::ContinuousZoomVelocitySpace); - soap_default_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::PanTiltSpeedSpace); - soap_default_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::ZoomSpeedSpace); - this->tt__PTZSpaces::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZSpaces::__anyAttribute); -} - -void tt__PTZSpaces::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Space2DDescription(soap, &this->tt__PTZSpaces::AbsolutePanTiltPositionSpace); - soap_serialize_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::AbsoluteZoomPositionSpace); - soap_serialize_std__vectorTemplateOfPointerTott__Space2DDescription(soap, &this->tt__PTZSpaces::RelativePanTiltTranslationSpace); - soap_serialize_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::RelativeZoomTranslationSpace); - soap_serialize_std__vectorTemplateOfPointerTott__Space2DDescription(soap, &this->tt__PTZSpaces::ContinuousPanTiltVelocitySpace); - soap_serialize_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::ContinuousZoomVelocitySpace); - soap_serialize_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::PanTiltSpeedSpace); - soap_serialize_std__vectorTemplateOfPointerTott__Space1DDescription(soap, &this->tt__PTZSpaces::ZoomSpeedSpace); - soap_serialize_PointerTott__PTZSpacesExtension(soap, &this->tt__PTZSpaces::Extension); -#endif -} - -int tt__PTZSpaces::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZSpaces(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZSpaces(struct soap *soap, const char *tag, int id, const tt__PTZSpaces *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZSpaces*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZSpaces), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space2DDescription(soap, "tt:AbsolutePanTiltPositionSpace", -1, &a->tt__PTZSpaces::AbsolutePanTiltPositionSpace, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:AbsoluteZoomPositionSpace", -1, &a->tt__PTZSpaces::AbsoluteZoomPositionSpace, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space2DDescription(soap, "tt:RelativePanTiltTranslationSpace", -1, &a->tt__PTZSpaces::RelativePanTiltTranslationSpace, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:RelativeZoomTranslationSpace", -1, &a->tt__PTZSpaces::RelativeZoomTranslationSpace, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space2DDescription(soap, "tt:ContinuousPanTiltVelocitySpace", -1, &a->tt__PTZSpaces::ContinuousPanTiltVelocitySpace, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:ContinuousZoomVelocitySpace", -1, &a->tt__PTZSpaces::ContinuousZoomVelocitySpace, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:PanTiltSpeedSpace", -1, &a->tt__PTZSpaces::PanTiltSpeedSpace, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:ZoomSpeedSpace", -1, &a->tt__PTZSpaces::ZoomSpeedSpace, "")) - return soap->error; - if (soap_out_PointerTott__PTZSpacesExtension(soap, "tt:Extension", -1, &a->tt__PTZSpaces::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZSpaces::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZSpaces(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZSpaces * SOAP_FMAC4 soap_in_tt__PTZSpaces(struct soap *soap, const char *tag, tt__PTZSpaces *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZSpaces*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZSpaces, sizeof(tt__PTZSpaces), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZSpaces) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZSpaces *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZSpaces*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space2DDescription(soap, "tt:AbsolutePanTiltPositionSpace", &a->tt__PTZSpaces::AbsolutePanTiltPositionSpace, "tt:Space2DDescription")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:AbsoluteZoomPositionSpace", &a->tt__PTZSpaces::AbsoluteZoomPositionSpace, "tt:Space1DDescription")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space2DDescription(soap, "tt:RelativePanTiltTranslationSpace", &a->tt__PTZSpaces::RelativePanTiltTranslationSpace, "tt:Space2DDescription")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:RelativeZoomTranslationSpace", &a->tt__PTZSpaces::RelativeZoomTranslationSpace, "tt:Space1DDescription")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space2DDescription(soap, "tt:ContinuousPanTiltVelocitySpace", &a->tt__PTZSpaces::ContinuousPanTiltVelocitySpace, "tt:Space2DDescription")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:ContinuousZoomVelocitySpace", &a->tt__PTZSpaces::ContinuousZoomVelocitySpace, "tt:Space1DDescription")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:PanTiltSpeedSpace", &a->tt__PTZSpaces::PanTiltSpeedSpace, "tt:Space1DDescription")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Space1DDescription(soap, "tt:ZoomSpeedSpace", &a->tt__PTZSpaces::ZoomSpeedSpace, "tt:Space1DDescription")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpacesExtension(soap, "tt:Extension", &a->tt__PTZSpaces::Extension, "tt:PTZSpacesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZSpaces *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZSpaces, SOAP_TYPE_tt__PTZSpaces, sizeof(tt__PTZSpaces), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZSpaces * SOAP_FMAC2 soap_instantiate_tt__PTZSpaces(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZSpaces(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZSpaces *p; - size_t k = sizeof(tt__PTZSpaces); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZSpaces, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZSpaces); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZSpaces, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZSpaces location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZSpaces::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZSpaces(soap, tag ? tag : "tt:PTZSpaces", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZSpaces::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZSpaces(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZSpaces * SOAP_FMAC4 soap_get_tt__PTZSpaces(struct soap *soap, tt__PTZSpaces *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZSpaces(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ZoomLimits::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ZoomLimits::Range = NULL; -} - -void tt__ZoomLimits::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Space1DDescription(soap, &this->tt__ZoomLimits::Range); -#endif -} - -int tt__ZoomLimits::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ZoomLimits(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ZoomLimits(struct soap *soap, const char *tag, int id, const tt__ZoomLimits *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ZoomLimits), type)) - return soap->error; - if (!a->tt__ZoomLimits::Range) - { if (soap_element_empty(soap, "tt:Range", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Space1DDescription(soap, "tt:Range", -1, &a->tt__ZoomLimits::Range, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ZoomLimits::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ZoomLimits(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ZoomLimits * SOAP_FMAC4 soap_in_tt__ZoomLimits(struct soap *soap, const char *tag, tt__ZoomLimits *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ZoomLimits*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ZoomLimits, sizeof(tt__ZoomLimits), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ZoomLimits) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ZoomLimits *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Range1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Range1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Space1DDescription(soap, "tt:Range", &a->tt__ZoomLimits::Range, "tt:Space1DDescription")) - { soap_flag_Range1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__ZoomLimits::Range)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ZoomLimits *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ZoomLimits, SOAP_TYPE_tt__ZoomLimits, sizeof(tt__ZoomLimits), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ZoomLimits * SOAP_FMAC2 soap_instantiate_tt__ZoomLimits(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ZoomLimits(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ZoomLimits *p; - size_t k = sizeof(tt__ZoomLimits); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ZoomLimits, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ZoomLimits); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ZoomLimits, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ZoomLimits location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ZoomLimits::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ZoomLimits(soap, tag ? tag : "tt:ZoomLimits", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ZoomLimits::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ZoomLimits(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ZoomLimits * SOAP_FMAC4 soap_get_tt__ZoomLimits(struct soap *soap, tt__ZoomLimits *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ZoomLimits(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PanTiltLimits::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PanTiltLimits::Range = NULL; -} - -void tt__PanTiltLimits::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Space2DDescription(soap, &this->tt__PanTiltLimits::Range); -#endif -} - -int tt__PanTiltLimits::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PanTiltLimits(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PanTiltLimits(struct soap *soap, const char *tag, int id, const tt__PanTiltLimits *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PanTiltLimits), type)) - return soap->error; - if (!a->tt__PanTiltLimits::Range) - { if (soap_element_empty(soap, "tt:Range", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Space2DDescription(soap, "tt:Range", -1, &a->tt__PanTiltLimits::Range, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PanTiltLimits::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PanTiltLimits(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PanTiltLimits * SOAP_FMAC4 soap_in_tt__PanTiltLimits(struct soap *soap, const char *tag, tt__PanTiltLimits *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PanTiltLimits*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PanTiltLimits, sizeof(tt__PanTiltLimits), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PanTiltLimits) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PanTiltLimits *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Range1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Range1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Space2DDescription(soap, "tt:Range", &a->tt__PanTiltLimits::Range, "tt:Space2DDescription")) - { soap_flag_Range1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PanTiltLimits::Range)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PanTiltLimits *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PanTiltLimits, SOAP_TYPE_tt__PanTiltLimits, sizeof(tt__PanTiltLimits), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PanTiltLimits * SOAP_FMAC2 soap_instantiate_tt__PanTiltLimits(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PanTiltLimits(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PanTiltLimits *p; - size_t k = sizeof(tt__PanTiltLimits); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PanTiltLimits, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PanTiltLimits); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PanTiltLimits, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PanTiltLimits location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PanTiltLimits::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PanTiltLimits(soap, tag ? tag : "tt:PanTiltLimits", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PanTiltLimits::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PanTiltLimits(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PanTiltLimits * SOAP_FMAC4 soap_get_tt__PanTiltLimits(struct soap *soap, tt__PanTiltLimits *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PanTiltLimits(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReverseOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReverseOptionsExtension::__any); -} - -void tt__ReverseOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReverseOptionsExtension::__any); -#endif -} - -int tt__ReverseOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReverseOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseOptionsExtension(struct soap *soap, const char *tag, int id, const tt__ReverseOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReverseOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ReverseOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ReverseOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReverseOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReverseOptionsExtension * SOAP_FMAC4 soap_in_tt__ReverseOptionsExtension(struct soap *soap, const char *tag, tt__ReverseOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ReverseOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReverseOptionsExtension, sizeof(tt__ReverseOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReverseOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ReverseOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ReverseOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ReverseOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReverseOptionsExtension, SOAP_TYPE_tt__ReverseOptionsExtension, sizeof(tt__ReverseOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ReverseOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__ReverseOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReverseOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReverseOptionsExtension *p; - size_t k = sizeof(tt__ReverseOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReverseOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReverseOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReverseOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReverseOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReverseOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReverseOptionsExtension(soap, tag ? tag : "tt:ReverseOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReverseOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReverseOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReverseOptionsExtension * SOAP_FMAC4 soap_get_tt__ReverseOptionsExtension(struct soap *soap, tt__ReverseOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReverseOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReverseOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ReverseMode(soap, &this->tt__ReverseOptions::Mode); - this->tt__ReverseOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ReverseOptions::__anyAttribute); -} - -void tt__ReverseOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ReverseMode(soap, &this->tt__ReverseOptions::Mode); - soap_serialize_PointerTott__ReverseOptionsExtension(soap, &this->tt__ReverseOptions::Extension); -#endif -} - -int tt__ReverseOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReverseOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseOptions(struct soap *soap, const char *tag, int id, const tt__ReverseOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ReverseOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReverseOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReverseMode(soap, "tt:Mode", -1, &a->tt__ReverseOptions::Mode, "")) - return soap->error; - if (soap_out_PointerTott__ReverseOptionsExtension(soap, "tt:Extension", -1, &a->tt__ReverseOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ReverseOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReverseOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReverseOptions * SOAP_FMAC4 soap_in_tt__ReverseOptions(struct soap *soap, const char *tag, tt__ReverseOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ReverseOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReverseOptions, sizeof(tt__ReverseOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReverseOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ReverseOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ReverseOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReverseMode(soap, "tt:Mode", &a->tt__ReverseOptions::Mode, "tt:ReverseMode")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReverseOptionsExtension(soap, "tt:Extension", &a->tt__ReverseOptions::Extension, "tt:ReverseOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ReverseOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReverseOptions, SOAP_TYPE_tt__ReverseOptions, sizeof(tt__ReverseOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ReverseOptions * SOAP_FMAC2 soap_instantiate_tt__ReverseOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReverseOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReverseOptions *p; - size_t k = sizeof(tt__ReverseOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReverseOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReverseOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReverseOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReverseOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReverseOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReverseOptions(soap, tag ? tag : "tt:ReverseOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReverseOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReverseOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReverseOptions * SOAP_FMAC4 soap_get_tt__ReverseOptions(struct soap *soap, tt__ReverseOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReverseOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EFlipOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EFlipOptionsExtension::__any); -} - -void tt__EFlipOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EFlipOptionsExtension::__any); -#endif -} - -int tt__EFlipOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EFlipOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipOptionsExtension(struct soap *soap, const char *tag, int id, const tt__EFlipOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EFlipOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__EFlipOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EFlipOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EFlipOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EFlipOptionsExtension * SOAP_FMAC4 soap_in_tt__EFlipOptionsExtension(struct soap *soap, const char *tag, tt__EFlipOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EFlipOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EFlipOptionsExtension, sizeof(tt__EFlipOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EFlipOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EFlipOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__EFlipOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__EFlipOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EFlipOptionsExtension, SOAP_TYPE_tt__EFlipOptionsExtension, sizeof(tt__EFlipOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EFlipOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__EFlipOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EFlipOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EFlipOptionsExtension *p; - size_t k = sizeof(tt__EFlipOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EFlipOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EFlipOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EFlipOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EFlipOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EFlipOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EFlipOptionsExtension(soap, tag ? tag : "tt:EFlipOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EFlipOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EFlipOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EFlipOptionsExtension * SOAP_FMAC4 soap_get_tt__EFlipOptionsExtension(struct soap *soap, tt__EFlipOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EFlipOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EFlipOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__EFlipMode(soap, &this->tt__EFlipOptions::Mode); - this->tt__EFlipOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__EFlipOptions::__anyAttribute); -} - -void tt__EFlipOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__EFlipMode(soap, &this->tt__EFlipOptions::Mode); - soap_serialize_PointerTott__EFlipOptionsExtension(soap, &this->tt__EFlipOptions::Extension); -#endif -} - -int tt__EFlipOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EFlipOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipOptions(struct soap *soap, const char *tag, int id, const tt__EFlipOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__EFlipOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EFlipOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__EFlipMode(soap, "tt:Mode", -1, &a->tt__EFlipOptions::Mode, "")) - return soap->error; - if (soap_out_PointerTott__EFlipOptionsExtension(soap, "tt:Extension", -1, &a->tt__EFlipOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EFlipOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EFlipOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EFlipOptions * SOAP_FMAC4 soap_in_tt__EFlipOptions(struct soap *soap, const char *tag, tt__EFlipOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EFlipOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EFlipOptions, sizeof(tt__EFlipOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EFlipOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EFlipOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__EFlipOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__EFlipMode(soap, "tt:Mode", &a->tt__EFlipOptions::Mode, "tt:EFlipMode")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EFlipOptionsExtension(soap, "tt:Extension", &a->tt__EFlipOptions::Extension, "tt:EFlipOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__EFlipOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EFlipOptions, SOAP_TYPE_tt__EFlipOptions, sizeof(tt__EFlipOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EFlipOptions * SOAP_FMAC2 soap_instantiate_tt__EFlipOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EFlipOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EFlipOptions *p; - size_t k = sizeof(tt__EFlipOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EFlipOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EFlipOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EFlipOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EFlipOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EFlipOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EFlipOptions(soap, tag ? tag : "tt:EFlipOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EFlipOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EFlipOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EFlipOptions * SOAP_FMAC4 soap_get_tt__EFlipOptions(struct soap *soap, tt__EFlipOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EFlipOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTControlDirectionOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTControlDirectionOptionsExtension::__any); -} - -void tt__PTControlDirectionOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTControlDirectionOptionsExtension::__any); -#endif -} - -int tt__PTControlDirectionOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTControlDirectionOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirectionOptionsExtension(struct soap *soap, const char *tag, int id, const tt__PTControlDirectionOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTControlDirectionOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTControlDirectionOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTControlDirectionOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTControlDirectionOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTControlDirectionOptionsExtension * SOAP_FMAC4 soap_in_tt__PTControlDirectionOptionsExtension(struct soap *soap, const char *tag, tt__PTControlDirectionOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTControlDirectionOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTControlDirectionOptionsExtension, sizeof(tt__PTControlDirectionOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTControlDirectionOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTControlDirectionOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTControlDirectionOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTControlDirectionOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTControlDirectionOptionsExtension, SOAP_TYPE_tt__PTControlDirectionOptionsExtension, sizeof(tt__PTControlDirectionOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTControlDirectionOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTControlDirectionOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTControlDirectionOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTControlDirectionOptionsExtension *p; - size_t k = sizeof(tt__PTControlDirectionOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTControlDirectionOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTControlDirectionOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTControlDirectionOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTControlDirectionOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTControlDirectionOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTControlDirectionOptionsExtension(soap, tag ? tag : "tt:PTControlDirectionOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTControlDirectionOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTControlDirectionOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTControlDirectionOptionsExtension * SOAP_FMAC4 soap_get_tt__PTControlDirectionOptionsExtension(struct soap *soap, tt__PTControlDirectionOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTControlDirectionOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTControlDirectionOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTControlDirectionOptions::EFlip = NULL; - this->tt__PTControlDirectionOptions::Reverse = NULL; - this->tt__PTControlDirectionOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTControlDirectionOptions::__anyAttribute); -} - -void tt__PTControlDirectionOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__EFlipOptions(soap, &this->tt__PTControlDirectionOptions::EFlip); - soap_serialize_PointerTott__ReverseOptions(soap, &this->tt__PTControlDirectionOptions::Reverse); - soap_serialize_PointerTott__PTControlDirectionOptionsExtension(soap, &this->tt__PTControlDirectionOptions::Extension); -#endif -} - -int tt__PTControlDirectionOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTControlDirectionOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirectionOptions(struct soap *soap, const char *tag, int id, const tt__PTControlDirectionOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTControlDirectionOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTControlDirectionOptions), type)) - return soap->error; - if (soap_out_PointerTott__EFlipOptions(soap, "tt:EFlip", -1, &a->tt__PTControlDirectionOptions::EFlip, "")) - return soap->error; - if (soap_out_PointerTott__ReverseOptions(soap, "tt:Reverse", -1, &a->tt__PTControlDirectionOptions::Reverse, "")) - return soap->error; - if (soap_out_PointerTott__PTControlDirectionOptionsExtension(soap, "tt:Extension", -1, &a->tt__PTControlDirectionOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTControlDirectionOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTControlDirectionOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTControlDirectionOptions * SOAP_FMAC4 soap_in_tt__PTControlDirectionOptions(struct soap *soap, const char *tag, tt__PTControlDirectionOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTControlDirectionOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTControlDirectionOptions, sizeof(tt__PTControlDirectionOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTControlDirectionOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTControlDirectionOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTControlDirectionOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_EFlip1 = 1; - size_t soap_flag_Reverse1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_EFlip1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EFlipOptions(soap, "tt:EFlip", &a->tt__PTControlDirectionOptions::EFlip, "tt:EFlipOptions")) - { soap_flag_EFlip1--; - continue; - } - } - if (soap_flag_Reverse1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReverseOptions(soap, "tt:Reverse", &a->tt__PTControlDirectionOptions::Reverse, "tt:ReverseOptions")) - { soap_flag_Reverse1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTControlDirectionOptionsExtension(soap, "tt:Extension", &a->tt__PTControlDirectionOptions::Extension, "tt:PTControlDirectionOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTControlDirectionOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTControlDirectionOptions, SOAP_TYPE_tt__PTControlDirectionOptions, sizeof(tt__PTControlDirectionOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTControlDirectionOptions * SOAP_FMAC2 soap_instantiate_tt__PTControlDirectionOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTControlDirectionOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTControlDirectionOptions *p; - size_t k = sizeof(tt__PTControlDirectionOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTControlDirectionOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTControlDirectionOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTControlDirectionOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTControlDirectionOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTControlDirectionOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTControlDirectionOptions(soap, tag ? tag : "tt:PTControlDirectionOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTControlDirectionOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTControlDirectionOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTControlDirectionOptions * SOAP_FMAC4 soap_get_tt__PTControlDirectionOptions(struct soap *soap, tt__PTControlDirectionOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTControlDirectionOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZConfigurationOptions2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationOptions2::__any); -} - -void tt__PTZConfigurationOptions2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationOptions2::__any); -#endif -} - -int tt__PTZConfigurationOptions2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZConfigurationOptions2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationOptions2(struct soap *soap, const char *tag, int id, const tt__PTZConfigurationOptions2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZConfigurationOptions2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZConfigurationOptions2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZConfigurationOptions2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZConfigurationOptions2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZConfigurationOptions2 * SOAP_FMAC4 soap_in_tt__PTZConfigurationOptions2(struct soap *soap, const char *tag, tt__PTZConfigurationOptions2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZConfigurationOptions2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZConfigurationOptions2, sizeof(tt__PTZConfigurationOptions2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZConfigurationOptions2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZConfigurationOptions2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZConfigurationOptions2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZConfigurationOptions2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZConfigurationOptions2, SOAP_TYPE_tt__PTZConfigurationOptions2, sizeof(tt__PTZConfigurationOptions2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZConfigurationOptions2 * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationOptions2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZConfigurationOptions2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZConfigurationOptions2 *p; - size_t k = sizeof(tt__PTZConfigurationOptions2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZConfigurationOptions2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZConfigurationOptions2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZConfigurationOptions2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZConfigurationOptions2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZConfigurationOptions2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZConfigurationOptions2(soap, tag ? tag : "tt:PTZConfigurationOptions2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZConfigurationOptions2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZConfigurationOptions2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZConfigurationOptions2 * SOAP_FMAC4 soap_get_tt__PTZConfigurationOptions2(struct soap *soap, tt__PTZConfigurationOptions2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZConfigurationOptions2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZConfigurationOptions::Spaces = NULL; - this->tt__PTZConfigurationOptions::PTZTimeout = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationOptions::__any); - this->tt__PTZConfigurationOptions::PTControlDirection = NULL; - this->tt__PTZConfigurationOptions::Extension = NULL; - this->tt__PTZConfigurationOptions::PTZRamps = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZConfigurationOptions::__anyAttribute); -} - -void tt__PTZConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZSpaces(soap, &this->tt__PTZConfigurationOptions::Spaces); - soap_serialize_PointerTott__DurationRange(soap, &this->tt__PTZConfigurationOptions::PTZTimeout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationOptions::__any); - soap_serialize_PointerTott__PTControlDirectionOptions(soap, &this->tt__PTZConfigurationOptions::PTControlDirection); - soap_serialize_PointerTott__PTZConfigurationOptions2(soap, &this->tt__PTZConfigurationOptions::Extension); -#endif -} - -int tt__PTZConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__PTZConfigurationOptions *a, const char *type) -{ - if (((tt__PTZConfigurationOptions*)a)->PTZRamps) - { soap_set_attr(soap, "PTZRamps", soap_tt__IntAttrList2s(soap, *((tt__PTZConfigurationOptions*)a)->PTZRamps), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZConfigurationOptions), type)) - return soap->error; - if (!a->tt__PTZConfigurationOptions::Spaces) - { if (soap_element_empty(soap, "tt:Spaces", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZSpaces(soap, "tt:Spaces", -1, &a->tt__PTZConfigurationOptions::Spaces, "")) - return soap->error; - if (!a->tt__PTZConfigurationOptions::PTZTimeout) - { if (soap_element_empty(soap, "tt:PTZTimeout", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__DurationRange(soap, "tt:PTZTimeout", -1, &a->tt__PTZConfigurationOptions::PTZTimeout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZConfigurationOptions::__any, "")) - return soap->error; - if (soap_out_PointerTott__PTControlDirectionOptions(soap, "tt:PTControlDirection", -1, &a->tt__PTZConfigurationOptions::PTControlDirection, "")) - return soap->error; - if (soap_out_PointerTott__PTZConfigurationOptions2(soap, "tt:Extension", -1, &a->tt__PTZConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZConfigurationOptions * SOAP_FMAC4 soap_in_tt__PTZConfigurationOptions(struct soap *soap, const char *tag, tt__PTZConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZConfigurationOptions, sizeof(tt__PTZConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "PTZRamps", 1, 0); - if (t) - { - if (!(((tt__PTZConfigurationOptions*)a)->PTZRamps = soap_new_tt__IntAttrList(soap))) - return NULL; - if (soap_s2tt__IntAttrList(soap, t, ((tt__PTZConfigurationOptions*)a)->PTZRamps)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Spaces1 = 1; - size_t soap_flag_PTZTimeout1 = 1; - size_t soap_flag_PTControlDirection1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Spaces1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpaces(soap, "tt:Spaces", &a->tt__PTZConfigurationOptions::Spaces, "tt:PTZSpaces")) - { soap_flag_Spaces1--; - continue; - } - } - if (soap_flag_PTZTimeout1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DurationRange(soap, "tt:PTZTimeout", &a->tt__PTZConfigurationOptions::PTZTimeout, "tt:DurationRange")) - { soap_flag_PTZTimeout1--; - continue; - } - } - if (soap_flag_PTControlDirection1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTControlDirectionOptions(soap, "tt:PTControlDirection", &a->tt__PTZConfigurationOptions::PTControlDirection, "tt:PTControlDirectionOptions")) - { soap_flag_PTControlDirection1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZConfigurationOptions2(soap, "tt:Extension", &a->tt__PTZConfigurationOptions::Extension, "tt:PTZConfigurationOptions2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PTZConfigurationOptions::Spaces || !a->tt__PTZConfigurationOptions::PTZTimeout)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZConfigurationOptions, SOAP_TYPE_tt__PTZConfigurationOptions, sizeof(tt__PTZConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZConfigurationOptions *p; - size_t k = sizeof(tt__PTZConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZConfigurationOptions(soap, tag ? tag : "tt:PTZConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZConfigurationOptions * SOAP_FMAC4 soap_get_tt__PTZConfigurationOptions(struct soap *soap, tt__PTZConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Reverse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReverseMode(soap, &this->tt__Reverse::Mode); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Reverse::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Reverse::__anyAttribute); -} - -void tt__Reverse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Reverse::__any); -#endif -} - -int tt__Reverse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Reverse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Reverse(struct soap *soap, const char *tag, int id, const tt__Reverse *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Reverse*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Reverse), type)) - return soap->error; - if (soap_out_tt__ReverseMode(soap, "tt:Mode", -1, &a->tt__Reverse::Mode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Reverse::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Reverse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Reverse(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Reverse * SOAP_FMAC4 soap_in_tt__Reverse(struct soap *soap, const char *tag, tt__Reverse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Reverse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Reverse, sizeof(tt__Reverse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Reverse) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Reverse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Reverse*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ReverseMode(soap, "tt:Mode", &a->tt__Reverse::Mode, "tt:ReverseMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Reverse::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Reverse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Reverse, SOAP_TYPE_tt__Reverse, sizeof(tt__Reverse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Reverse * SOAP_FMAC2 soap_instantiate_tt__Reverse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Reverse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Reverse *p; - size_t k = sizeof(tt__Reverse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Reverse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Reverse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Reverse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Reverse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Reverse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Reverse(soap, tag ? tag : "tt:Reverse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Reverse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Reverse(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Reverse * SOAP_FMAC4 soap_get_tt__Reverse(struct soap *soap, tt__Reverse *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Reverse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EFlip::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__EFlipMode(soap, &this->tt__EFlip::Mode); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EFlip::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__EFlip::__anyAttribute); -} - -void tt__EFlip::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EFlip::__any); -#endif -} - -int tt__EFlip::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EFlip(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlip(struct soap *soap, const char *tag, int id, const tt__EFlip *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__EFlip*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EFlip), type)) - return soap->error; - if (soap_out_tt__EFlipMode(soap, "tt:Mode", -1, &a->tt__EFlip::Mode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__EFlip::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EFlip::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EFlip(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EFlip * SOAP_FMAC4 soap_in_tt__EFlip(struct soap *soap, const char *tag, tt__EFlip *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EFlip*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EFlip, sizeof(tt__EFlip), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EFlip) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EFlip *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__EFlip*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__EFlipMode(soap, "tt:Mode", &a->tt__EFlip::Mode, "tt:EFlipMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__EFlip::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__EFlip *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EFlip, SOAP_TYPE_tt__EFlip, sizeof(tt__EFlip), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EFlip * SOAP_FMAC2 soap_instantiate_tt__EFlip(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EFlip(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EFlip *p; - size_t k = sizeof(tt__EFlip); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EFlip, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EFlip); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EFlip, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EFlip location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EFlip::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EFlip(soap, tag ? tag : "tt:EFlip", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EFlip::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EFlip(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EFlip * SOAP_FMAC4 soap_get_tt__EFlip(struct soap *soap, tt__EFlip *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EFlip(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTControlDirectionExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTControlDirectionExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PTControlDirectionExtension::__anyAttribute); -} - -void tt__PTControlDirectionExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTControlDirectionExtension::__any); -#endif -} - -int tt__PTControlDirectionExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTControlDirectionExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirectionExtension(struct soap *soap, const char *tag, int id, const tt__PTControlDirectionExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTControlDirectionExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTControlDirectionExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTControlDirectionExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTControlDirectionExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTControlDirectionExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTControlDirectionExtension * SOAP_FMAC4 soap_in_tt__PTControlDirectionExtension(struct soap *soap, const char *tag, tt__PTControlDirectionExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTControlDirectionExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTControlDirectionExtension, sizeof(tt__PTControlDirectionExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTControlDirectionExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTControlDirectionExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTControlDirectionExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTControlDirectionExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTControlDirectionExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTControlDirectionExtension, SOAP_TYPE_tt__PTControlDirectionExtension, sizeof(tt__PTControlDirectionExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTControlDirectionExtension * SOAP_FMAC2 soap_instantiate_tt__PTControlDirectionExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTControlDirectionExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTControlDirectionExtension *p; - size_t k = sizeof(tt__PTControlDirectionExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTControlDirectionExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTControlDirectionExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTControlDirectionExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTControlDirectionExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTControlDirectionExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTControlDirectionExtension(soap, tag ? tag : "tt:PTControlDirectionExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTControlDirectionExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTControlDirectionExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTControlDirectionExtension * SOAP_FMAC4 soap_get_tt__PTControlDirectionExtension(struct soap *soap, tt__PTControlDirectionExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTControlDirectionExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTControlDirection::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTControlDirection::EFlip = NULL; - this->tt__PTControlDirection::Reverse = NULL; - this->tt__PTControlDirection::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTControlDirection::__anyAttribute); -} - -void tt__PTControlDirection::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__EFlip(soap, &this->tt__PTControlDirection::EFlip); - soap_serialize_PointerTott__Reverse(soap, &this->tt__PTControlDirection::Reverse); - soap_serialize_PointerTott__PTControlDirectionExtension(soap, &this->tt__PTControlDirection::Extension); -#endif -} - -int tt__PTControlDirection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTControlDirection(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirection(struct soap *soap, const char *tag, int id, const tt__PTControlDirection *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTControlDirection*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTControlDirection), type)) - return soap->error; - if (soap_out_PointerTott__EFlip(soap, "tt:EFlip", -1, &a->tt__PTControlDirection::EFlip, "")) - return soap->error; - if (soap_out_PointerTott__Reverse(soap, "tt:Reverse", -1, &a->tt__PTControlDirection::Reverse, "")) - return soap->error; - if (soap_out_PointerTott__PTControlDirectionExtension(soap, "tt:Extension", -1, &a->tt__PTControlDirection::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTControlDirection::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTControlDirection(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTControlDirection * SOAP_FMAC4 soap_in_tt__PTControlDirection(struct soap *soap, const char *tag, tt__PTControlDirection *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTControlDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTControlDirection, sizeof(tt__PTControlDirection), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTControlDirection) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTControlDirection *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTControlDirection*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_EFlip1 = 1; - size_t soap_flag_Reverse1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_EFlip1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EFlip(soap, "tt:EFlip", &a->tt__PTControlDirection::EFlip, "tt:EFlip")) - { soap_flag_EFlip1--; - continue; - } - } - if (soap_flag_Reverse1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Reverse(soap, "tt:Reverse", &a->tt__PTControlDirection::Reverse, "tt:Reverse")) - { soap_flag_Reverse1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTControlDirectionExtension(soap, "tt:Extension", &a->tt__PTControlDirection::Extension, "tt:PTControlDirectionExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTControlDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTControlDirection, SOAP_TYPE_tt__PTControlDirection, sizeof(tt__PTControlDirection), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTControlDirection * SOAP_FMAC2 soap_instantiate_tt__PTControlDirection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTControlDirection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTControlDirection *p; - size_t k = sizeof(tt__PTControlDirection); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTControlDirection, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTControlDirection); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTControlDirection, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTControlDirection location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTControlDirection::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTControlDirection(soap, tag ? tag : "tt:PTControlDirection", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTControlDirection::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTControlDirection(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTControlDirection * SOAP_FMAC4 soap_get_tt__PTControlDirection(struct soap *soap, tt__PTControlDirection *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTControlDirection(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZConfigurationExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationExtension2::__any); -} - -void tt__PTZConfigurationExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationExtension2::__any); -#endif -} - -int tt__PTZConfigurationExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZConfigurationExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationExtension2(struct soap *soap, const char *tag, int id, const tt__PTZConfigurationExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZConfigurationExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZConfigurationExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZConfigurationExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZConfigurationExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__PTZConfigurationExtension2(struct soap *soap, const char *tag, tt__PTZConfigurationExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZConfigurationExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZConfigurationExtension2, sizeof(tt__PTZConfigurationExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZConfigurationExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZConfigurationExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZConfigurationExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZConfigurationExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZConfigurationExtension2, SOAP_TYPE_tt__PTZConfigurationExtension2, sizeof(tt__PTZConfigurationExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZConfigurationExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZConfigurationExtension2 *p; - size_t k = sizeof(tt__PTZConfigurationExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZConfigurationExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZConfigurationExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZConfigurationExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZConfigurationExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZConfigurationExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZConfigurationExtension2(soap, tag ? tag : "tt:PTZConfigurationExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZConfigurationExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZConfigurationExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__PTZConfigurationExtension2(struct soap *soap, tt__PTZConfigurationExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZConfigurationExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationExtension::__any); - this->tt__PTZConfigurationExtension::PTControlDirection = NULL; - this->tt__PTZConfigurationExtension::Extension = NULL; -} - -void tt__PTZConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZConfigurationExtension::__any); - soap_serialize_PointerTott__PTControlDirection(soap, &this->tt__PTZConfigurationExtension::PTControlDirection); - soap_serialize_PointerTott__PTZConfigurationExtension2(soap, &this->tt__PTZConfigurationExtension::Extension); -#endif -} - -int tt__PTZConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__PTZConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_PointerTott__PTControlDirection(soap, "tt:PTControlDirection", -1, &a->tt__PTZConfigurationExtension::PTControlDirection, "")) - return soap->error; - if (soap_out_PointerTott__PTZConfigurationExtension2(soap, "tt:Extension", -1, &a->tt__PTZConfigurationExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZConfigurationExtension * SOAP_FMAC4 soap_in_tt__PTZConfigurationExtension(struct soap *soap, const char *tag, tt__PTZConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZConfigurationExtension, sizeof(tt__PTZConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PTControlDirection1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTControlDirection1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTControlDirection(soap, "tt:PTControlDirection", &a->tt__PTZConfigurationExtension::PTControlDirection, "tt:PTControlDirection")) - { soap_flag_PTControlDirection1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZConfigurationExtension2(soap, "tt:Extension", &a->tt__PTZConfigurationExtension::Extension, "tt:PTZConfigurationExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZConfigurationExtension, SOAP_TYPE_tt__PTZConfigurationExtension, sizeof(tt__PTZConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZConfigurationExtension *p; - size_t k = sizeof(tt__PTZConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZConfigurationExtension(soap, tag ? tag : "tt:PTZConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZConfigurationExtension * SOAP_FMAC4 soap_get_tt__PTZConfigurationExtension(struct soap *soap, tt__PTZConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__ReferenceToken(soap, &this->tt__PTZConfiguration::NodeToken); - this->tt__PTZConfiguration::DefaultAbsolutePantTiltPositionSpace = NULL; - this->tt__PTZConfiguration::DefaultAbsoluteZoomPositionSpace = NULL; - this->tt__PTZConfiguration::DefaultRelativePanTiltTranslationSpace = NULL; - this->tt__PTZConfiguration::DefaultRelativeZoomTranslationSpace = NULL; - this->tt__PTZConfiguration::DefaultContinuousPanTiltVelocitySpace = NULL; - this->tt__PTZConfiguration::DefaultContinuousZoomVelocitySpace = NULL; - this->tt__PTZConfiguration::DefaultPTZSpeed = NULL; - this->tt__PTZConfiguration::DefaultPTZTimeout = NULL; - this->tt__PTZConfiguration::PanTiltLimits = NULL; - this->tt__PTZConfiguration::ZoomLimits = NULL; - this->tt__PTZConfiguration::Extension = NULL; - this->tt__PTZConfiguration::MoveRamp = NULL; - this->tt__PTZConfiguration::PresetRamp = NULL; - this->tt__PTZConfiguration::PresetTourRamp = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZConfiguration::__anyAttribute); -} - -void tt__PTZConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PTZConfiguration::NodeToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__PTZConfiguration::NodeToken); - soap_serialize_PointerToxsd__anyURI(soap, &this->tt__PTZConfiguration::DefaultAbsolutePantTiltPositionSpace); - soap_serialize_PointerToxsd__anyURI(soap, &this->tt__PTZConfiguration::DefaultAbsoluteZoomPositionSpace); - soap_serialize_PointerToxsd__anyURI(soap, &this->tt__PTZConfiguration::DefaultRelativePanTiltTranslationSpace); - soap_serialize_PointerToxsd__anyURI(soap, &this->tt__PTZConfiguration::DefaultRelativeZoomTranslationSpace); - soap_serialize_PointerToxsd__anyURI(soap, &this->tt__PTZConfiguration::DefaultContinuousPanTiltVelocitySpace); - soap_serialize_PointerToxsd__anyURI(soap, &this->tt__PTZConfiguration::DefaultContinuousZoomVelocitySpace); - soap_serialize_PointerTott__PTZSpeed(soap, &this->tt__PTZConfiguration::DefaultPTZSpeed); - soap_serialize_PointerToxsd__duration(soap, &this->tt__PTZConfiguration::DefaultPTZTimeout); - soap_serialize_PointerTott__PanTiltLimits(soap, &this->tt__PTZConfiguration::PanTiltLimits); - soap_serialize_PointerTott__ZoomLimits(soap, &this->tt__PTZConfiguration::ZoomLimits); - soap_serialize_PointerTott__PTZConfigurationExtension(soap, &this->tt__PTZConfiguration::Extension); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__PTZConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfiguration(struct soap *soap, const char *tag, int id, const tt__PTZConfiguration *a, const char *type) -{ - if (((tt__PTZConfiguration*)a)->MoveRamp) - { soap_set_attr(soap, "MoveRamp", soap_int2s(soap, *((tt__PTZConfiguration*)a)->MoveRamp), 1); - } - if (((tt__PTZConfiguration*)a)->PresetRamp) - { soap_set_attr(soap, "PresetRamp", soap_int2s(soap, *((tt__PTZConfiguration*)a)->PresetRamp), 1); - } - if (((tt__PTZConfiguration*)a)->PresetTourRamp) - { soap_set_attr(soap, "PresetTourRamp", soap_int2s(soap, *((tt__PTZConfiguration*)a)->PresetTourRamp), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZConfiguration), type ? type : "tt:PTZConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:NodeToken", -1, &a->tt__PTZConfiguration::NodeToken, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tt:DefaultAbsolutePantTiltPositionSpace", -1, &a->tt__PTZConfiguration::DefaultAbsolutePantTiltPositionSpace, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tt:DefaultAbsoluteZoomPositionSpace", -1, &a->tt__PTZConfiguration::DefaultAbsoluteZoomPositionSpace, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tt:DefaultRelativePanTiltTranslationSpace", -1, &a->tt__PTZConfiguration::DefaultRelativePanTiltTranslationSpace, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tt:DefaultRelativeZoomTranslationSpace", -1, &a->tt__PTZConfiguration::DefaultRelativeZoomTranslationSpace, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tt:DefaultContinuousPanTiltVelocitySpace", -1, &a->tt__PTZConfiguration::DefaultContinuousPanTiltVelocitySpace, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tt:DefaultContinuousZoomVelocitySpace", -1, &a->tt__PTZConfiguration::DefaultContinuousZoomVelocitySpace, "")) - return soap->error; - if (soap_out_PointerTott__PTZSpeed(soap, "tt:DefaultPTZSpeed", -1, &a->tt__PTZConfiguration::DefaultPTZSpeed, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tt:DefaultPTZTimeout", -1, &a->tt__PTZConfiguration::DefaultPTZTimeout, "")) - return soap->error; - if (soap_out_PointerTott__PanTiltLimits(soap, "tt:PanTiltLimits", -1, &a->tt__PTZConfiguration::PanTiltLimits, "")) - return soap->error; - if (soap_out_PointerTott__ZoomLimits(soap, "tt:ZoomLimits", -1, &a->tt__PTZConfiguration::ZoomLimits, "")) - return soap->error; - if (soap_out_PointerTott__PTZConfigurationExtension(soap, "tt:Extension", -1, &a->tt__PTZConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZConfiguration * SOAP_FMAC4 soap_in_tt__PTZConfiguration(struct soap *soap, const char *tag, tt__PTZConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZConfiguration, sizeof(tt__PTZConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "MoveRamp", 5, 0); - if (t) - { - if (!(((tt__PTZConfiguration*)a)->MoveRamp = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__PTZConfiguration*)a)->MoveRamp)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "PresetRamp", 5, 0); - if (t) - { - if (!(((tt__PTZConfiguration*)a)->PresetRamp = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__PTZConfiguration*)a)->PresetRamp)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "PresetTourRamp", 5, 0); - if (t) - { - if (!(((tt__PTZConfiguration*)a)->PresetTourRamp = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__PTZConfiguration*)a)->PresetTourRamp)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_NodeToken1 = 1; - size_t soap_flag_DefaultAbsolutePantTiltPositionSpace1 = 1; - size_t soap_flag_DefaultAbsoluteZoomPositionSpace1 = 1; - size_t soap_flag_DefaultRelativePanTiltTranslationSpace1 = 1; - size_t soap_flag_DefaultRelativeZoomTranslationSpace1 = 1; - size_t soap_flag_DefaultContinuousPanTiltVelocitySpace1 = 1; - size_t soap_flag_DefaultContinuousZoomVelocitySpace1 = 1; - size_t soap_flag_DefaultPTZSpeed1 = 1; - size_t soap_flag_DefaultPTZTimeout1 = 1; - size_t soap_flag_PanTiltLimits1 = 1; - size_t soap_flag_ZoomLimits1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_NodeToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:NodeToken", &a->tt__PTZConfiguration::NodeToken, "tt:ReferenceToken")) - { soap_flag_NodeToken1--; - continue; - } - } - if (soap_flag_DefaultAbsolutePantTiltPositionSpace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tt:DefaultAbsolutePantTiltPositionSpace", &a->tt__PTZConfiguration::DefaultAbsolutePantTiltPositionSpace, "xsd:anyURI")) - { soap_flag_DefaultAbsolutePantTiltPositionSpace1--; - continue; - } - } - if (soap_flag_DefaultAbsoluteZoomPositionSpace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tt:DefaultAbsoluteZoomPositionSpace", &a->tt__PTZConfiguration::DefaultAbsoluteZoomPositionSpace, "xsd:anyURI")) - { soap_flag_DefaultAbsoluteZoomPositionSpace1--; - continue; - } - } - if (soap_flag_DefaultRelativePanTiltTranslationSpace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tt:DefaultRelativePanTiltTranslationSpace", &a->tt__PTZConfiguration::DefaultRelativePanTiltTranslationSpace, "xsd:anyURI")) - { soap_flag_DefaultRelativePanTiltTranslationSpace1--; - continue; - } - } - if (soap_flag_DefaultRelativeZoomTranslationSpace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tt:DefaultRelativeZoomTranslationSpace", &a->tt__PTZConfiguration::DefaultRelativeZoomTranslationSpace, "xsd:anyURI")) - { soap_flag_DefaultRelativeZoomTranslationSpace1--; - continue; - } - } - if (soap_flag_DefaultContinuousPanTiltVelocitySpace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tt:DefaultContinuousPanTiltVelocitySpace", &a->tt__PTZConfiguration::DefaultContinuousPanTiltVelocitySpace, "xsd:anyURI")) - { soap_flag_DefaultContinuousPanTiltVelocitySpace1--; - continue; - } - } - if (soap_flag_DefaultContinuousZoomVelocitySpace1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tt:DefaultContinuousZoomVelocitySpace", &a->tt__PTZConfiguration::DefaultContinuousZoomVelocitySpace, "xsd:anyURI")) - { soap_flag_DefaultContinuousZoomVelocitySpace1--; - continue; - } - } - if (soap_flag_DefaultPTZSpeed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpeed(soap, "tt:DefaultPTZSpeed", &a->tt__PTZConfiguration::DefaultPTZSpeed, "tt:PTZSpeed")) - { soap_flag_DefaultPTZSpeed1--; - continue; - } - } - if (soap_flag_DefaultPTZTimeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tt:DefaultPTZTimeout", &a->tt__PTZConfiguration::DefaultPTZTimeout, "xsd:duration")) - { soap_flag_DefaultPTZTimeout1--; - continue; - } - } - if (soap_flag_PanTiltLimits1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PanTiltLimits(soap, "tt:PanTiltLimits", &a->tt__PTZConfiguration::PanTiltLimits, "tt:PanTiltLimits")) - { soap_flag_PanTiltLimits1--; - continue; - } - } - if (soap_flag_ZoomLimits1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ZoomLimits(soap, "tt:ZoomLimits", &a->tt__PTZConfiguration::ZoomLimits, "tt:ZoomLimits")) - { soap_flag_ZoomLimits1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZConfigurationExtension(soap, "tt:Extension", &a->tt__PTZConfiguration::Extension, "tt:PTZConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_NodeToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZConfiguration, SOAP_TYPE_tt__PTZConfiguration, sizeof(tt__PTZConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZConfiguration * SOAP_FMAC2 soap_instantiate_tt__PTZConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZConfiguration *p; - size_t k = sizeof(tt__PTZConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZConfiguration(soap, tag ? tag : "tt:PTZConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZConfiguration * SOAP_FMAC4 soap_get_tt__PTZConfiguration(struct soap *soap, tt__PTZConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourSupportedExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourSupportedExtension::__any); -} - -void tt__PTZPresetTourSupportedExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZPresetTourSupportedExtension::__any); -#endif -} - -int tt__PTZPresetTourSupportedExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourSupportedExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSupportedExtension(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourSupportedExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourSupportedExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZPresetTourSupportedExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourSupportedExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourSupportedExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSupportedExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourSupportedExtension(struct soap *soap, const char *tag, tt__PTZPresetTourSupportedExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourSupportedExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourSupportedExtension, sizeof(tt__PTZPresetTourSupportedExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourSupportedExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourSupportedExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZPresetTourSupportedExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZPresetTourSupportedExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourSupportedExtension, SOAP_TYPE_tt__PTZPresetTourSupportedExtension, sizeof(tt__PTZPresetTourSupportedExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourSupportedExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSupportedExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourSupportedExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourSupportedExtension *p; - size_t k = sizeof(tt__PTZPresetTourSupportedExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourSupportedExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourSupportedExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourSupportedExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourSupportedExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourSupportedExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourSupportedExtension(soap, tag ? tag : "tt:PTZPresetTourSupportedExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourSupportedExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourSupportedExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSupportedExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourSupportedExtension(struct soap *soap, tt__PTZPresetTourSupportedExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourSupportedExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZPresetTourSupported::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__PTZPresetTourSupported::MaximumNumberOfPresetTours); - soap_default_std__vectorTemplateOftt__PTZPresetTourOperation(soap, &this->tt__PTZPresetTourSupported::PTZPresetTourOperation); - this->tt__PTZPresetTourSupported::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZPresetTourSupported::__anyAttribute); -} - -void tt__PTZPresetTourSupported::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PTZPresetTourSupported::MaximumNumberOfPresetTours, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOftt__PTZPresetTourOperation(soap, &this->tt__PTZPresetTourSupported::PTZPresetTourOperation); - soap_serialize_PointerTott__PTZPresetTourSupportedExtension(soap, &this->tt__PTZPresetTourSupported::Extension); -#endif -} - -int tt__PTZPresetTourSupported::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZPresetTourSupported(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSupported(struct soap *soap, const char *tag, int id, const tt__PTZPresetTourSupported *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZPresetTourSupported*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZPresetTourSupported), type)) - return soap->error; - if (soap_out_int(soap, "tt:MaximumNumberOfPresetTours", -1, &a->tt__PTZPresetTourSupported::MaximumNumberOfPresetTours, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__PTZPresetTourOperation(soap, "tt:PTZPresetTourOperation", -1, &a->tt__PTZPresetTourSupported::PTZPresetTourOperation, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourSupportedExtension(soap, "tt:Extension", -1, &a->tt__PTZPresetTourSupported::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZPresetTourSupported::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZPresetTourSupported(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSupported * SOAP_FMAC4 soap_in_tt__PTZPresetTourSupported(struct soap *soap, const char *tag, tt__PTZPresetTourSupported *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZPresetTourSupported*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZPresetTourSupported, sizeof(tt__PTZPresetTourSupported), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZPresetTourSupported) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZPresetTourSupported *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZPresetTourSupported*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MaximumNumberOfPresetTours1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MaximumNumberOfPresetTours1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:MaximumNumberOfPresetTours", &a->tt__PTZPresetTourSupported::MaximumNumberOfPresetTours, "xsd:int")) - { soap_flag_MaximumNumberOfPresetTours1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__PTZPresetTourOperation(soap, "tt:PTZPresetTourOperation", &a->tt__PTZPresetTourSupported::PTZPresetTourOperation, "tt:PTZPresetTourOperation")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourSupportedExtension(soap, "tt:Extension", &a->tt__PTZPresetTourSupported::Extension, "tt:PTZPresetTourSupportedExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_MaximumNumberOfPresetTours1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZPresetTourSupported *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZPresetTourSupported, SOAP_TYPE_tt__PTZPresetTourSupported, sizeof(tt__PTZPresetTourSupported), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZPresetTourSupported * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSupported(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZPresetTourSupported(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZPresetTourSupported *p; - size_t k = sizeof(tt__PTZPresetTourSupported); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZPresetTourSupported, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZPresetTourSupported); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZPresetTourSupported, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZPresetTourSupported location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZPresetTourSupported::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZPresetTourSupported(soap, tag ? tag : "tt:PTZPresetTourSupported", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZPresetTourSupported::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZPresetTourSupported(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZPresetTourSupported * SOAP_FMAC4 soap_get_tt__PTZPresetTourSupported(struct soap *soap, tt__PTZPresetTourSupported *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZPresetTourSupported(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZNodeExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZNodeExtension2::__any); -} - -void tt__PTZNodeExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZNodeExtension2::__any); -#endif -} - -int tt__PTZNodeExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZNodeExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZNodeExtension2(struct soap *soap, const char *tag, int id, const tt__PTZNodeExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZNodeExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZNodeExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZNodeExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZNodeExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZNodeExtension2 * SOAP_FMAC4 soap_in_tt__PTZNodeExtension2(struct soap *soap, const char *tag, tt__PTZNodeExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZNodeExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZNodeExtension2, sizeof(tt__PTZNodeExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZNodeExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZNodeExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZNodeExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZNodeExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZNodeExtension2, SOAP_TYPE_tt__PTZNodeExtension2, sizeof(tt__PTZNodeExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZNodeExtension2 * SOAP_FMAC2 soap_instantiate_tt__PTZNodeExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZNodeExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZNodeExtension2 *p; - size_t k = sizeof(tt__PTZNodeExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZNodeExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZNodeExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZNodeExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZNodeExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZNodeExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZNodeExtension2(soap, tag ? tag : "tt:PTZNodeExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZNodeExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZNodeExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZNodeExtension2 * SOAP_FMAC4 soap_get_tt__PTZNodeExtension2(struct soap *soap, tt__PTZNodeExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZNodeExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZNodeExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZNodeExtension::__any); - this->tt__PTZNodeExtension::SupportedPresetTour = NULL; - this->tt__PTZNodeExtension::Extension = NULL; -} - -void tt__PTZNodeExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZNodeExtension::__any); - soap_serialize_PointerTott__PTZPresetTourSupported(soap, &this->tt__PTZNodeExtension::SupportedPresetTour); - soap_serialize_PointerTott__PTZNodeExtension2(soap, &this->tt__PTZNodeExtension::Extension); -#endif -} - -int tt__PTZNodeExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZNodeExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZNodeExtension(struct soap *soap, const char *tag, int id, const tt__PTZNodeExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZNodeExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZNodeExtension::__any, "")) - return soap->error; - if (soap_out_PointerTott__PTZPresetTourSupported(soap, "tt:SupportedPresetTour", -1, &a->tt__PTZNodeExtension::SupportedPresetTour, "")) - return soap->error; - if (soap_out_PointerTott__PTZNodeExtension2(soap, "tt:Extension", -1, &a->tt__PTZNodeExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZNodeExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZNodeExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZNodeExtension * SOAP_FMAC4 soap_in_tt__PTZNodeExtension(struct soap *soap, const char *tag, tt__PTZNodeExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZNodeExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZNodeExtension, sizeof(tt__PTZNodeExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZNodeExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZNodeExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SupportedPresetTour1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SupportedPresetTour1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZPresetTourSupported(soap, "tt:SupportedPresetTour", &a->tt__PTZNodeExtension::SupportedPresetTour, "tt:PTZPresetTourSupported")) - { soap_flag_SupportedPresetTour1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZNodeExtension2(soap, "tt:Extension", &a->tt__PTZNodeExtension::Extension, "tt:PTZNodeExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZNodeExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZNodeExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZNodeExtension, SOAP_TYPE_tt__PTZNodeExtension, sizeof(tt__PTZNodeExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZNodeExtension * SOAP_FMAC2 soap_instantiate_tt__PTZNodeExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZNodeExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZNodeExtension *p; - size_t k = sizeof(tt__PTZNodeExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZNodeExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZNodeExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZNodeExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZNodeExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZNodeExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZNodeExtension(soap, tag ? tag : "tt:PTZNodeExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZNodeExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZNodeExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZNodeExtension * SOAP_FMAC4 soap_get_tt__PTZNodeExtension(struct soap *soap, tt__PTZNodeExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZNodeExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZNode::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - this->tt__PTZNode::Name = NULL; - this->tt__PTZNode::SupportedPTZSpaces = NULL; - soap_default_int(soap, &this->tt__PTZNode::MaximumNumberOfPresets); - soap_default_bool(soap, &this->tt__PTZNode::HomeSupported); - soap_default_std__vectorTemplateOftt__AuxiliaryData(soap, &this->tt__PTZNode::AuxiliaryCommands); - this->tt__PTZNode::Extension = NULL; - this->tt__PTZNode::FixedHomePosition = NULL; - this->tt__PTZNode::GeoMove = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZNode::__anyAttribute); -} - -void tt__PTZNode::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Name(soap, &this->tt__PTZNode::Name); - soap_serialize_PointerTott__PTZSpaces(soap, &this->tt__PTZNode::SupportedPTZSpaces); - soap_embedded(soap, &this->tt__PTZNode::MaximumNumberOfPresets, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__PTZNode::HomeSupported, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOftt__AuxiliaryData(soap, &this->tt__PTZNode::AuxiliaryCommands); - soap_serialize_PointerTott__PTZNodeExtension(soap, &this->tt__PTZNode::Extension); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__PTZNode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZNode(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZNode(struct soap *soap, const char *tag, int id, const tt__PTZNode *a, const char *type) -{ - if (((tt__PTZNode*)a)->FixedHomePosition) - { soap_set_attr(soap, "FixedHomePosition", soap_bool2s(soap, *((tt__PTZNode*)a)->FixedHomePosition), 1); - } - if (((tt__PTZNode*)a)->GeoMove) - { soap_set_attr(soap, "GeoMove", soap_bool2s(soap, *((tt__PTZNode*)a)->GeoMove), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZNode*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZNode), type ? type : "tt:PTZNode")) - return soap->error; - if (soap_out_PointerTott__Name(soap, "tt:Name", -1, &a->tt__PTZNode::Name, "")) - return soap->error; - if (!a->tt__PTZNode::SupportedPTZSpaces) - { if (soap_element_empty(soap, "tt:SupportedPTZSpaces", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZSpaces(soap, "tt:SupportedPTZSpaces", -1, &a->tt__PTZNode::SupportedPTZSpaces, "")) - return soap->error; - if (soap_out_int(soap, "tt:MaximumNumberOfPresets", -1, &a->tt__PTZNode::MaximumNumberOfPresets, "")) - return soap->error; - if (soap_out_bool(soap, "tt:HomeSupported", -1, &a->tt__PTZNode::HomeSupported, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__AuxiliaryData(soap, "tt:AuxiliaryCommands", -1, &a->tt__PTZNode::AuxiliaryCommands, "")) - return soap->error; - if (soap_out_PointerTott__PTZNodeExtension(soap, "tt:Extension", -1, &a->tt__PTZNode::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZNode::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZNode(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZNode * SOAP_FMAC4 soap_in_tt__PTZNode(struct soap *soap, const char *tag, tt__PTZNode *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZNode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZNode, sizeof(tt__PTZNode), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZNode) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZNode *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "FixedHomePosition", 5, 0); - if (t) - { - if (!(((tt__PTZNode*)a)->FixedHomePosition = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__PTZNode*)a)->FixedHomePosition)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GeoMove", 5, 0); - if (t) - { - if (!(((tt__PTZNode*)a)->GeoMove = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__PTZNode*)a)->GeoMove)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZNode*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_SupportedPTZSpaces1 = 1; - size_t soap_flag_MaximumNumberOfPresets1 = 1; - size_t soap_flag_HomeSupported1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__Name(soap, "tt:Name", &a->tt__PTZNode::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_SupportedPTZSpaces1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZSpaces(soap, "tt:SupportedPTZSpaces", &a->tt__PTZNode::SupportedPTZSpaces, "tt:PTZSpaces")) - { soap_flag_SupportedPTZSpaces1--; - continue; - } - } - if (soap_flag_MaximumNumberOfPresets1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:MaximumNumberOfPresets", &a->tt__PTZNode::MaximumNumberOfPresets, "xsd:int")) - { soap_flag_MaximumNumberOfPresets1--; - continue; - } - } - if (soap_flag_HomeSupported1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:HomeSupported", &a->tt__PTZNode::HomeSupported, "xsd:boolean")) - { soap_flag_HomeSupported1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__AuxiliaryData(soap, "tt:AuxiliaryCommands", &a->tt__PTZNode::AuxiliaryCommands, "tt:AuxiliaryData")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZNodeExtension(soap, "tt:Extension", &a->tt__PTZNode::Extension, "tt:PTZNodeExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__PTZNode::SupportedPTZSpaces || soap_flag_MaximumNumberOfPresets1 > 0 || soap_flag_HomeSupported1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZNode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZNode, SOAP_TYPE_tt__PTZNode, sizeof(tt__PTZNode), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZNode * SOAP_FMAC2 soap_instantiate_tt__PTZNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZNode *p; - size_t k = sizeof(tt__PTZNode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZNode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZNode); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZNode, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZNode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZNode::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZNode(soap, tag ? tag : "tt:PTZNode", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZNode::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZNode(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZNode * SOAP_FMAC4 soap_get_tt__PTZNode(struct soap *soap, tt__PTZNode *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZNode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DigitalInput::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DigitalInput::__any); - this->tt__DigitalInput::IdleState = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__DigitalInput::__anyAttribute); -} - -void tt__DigitalInput::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DigitalInput::__any); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__DigitalInput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DigitalInput(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DigitalInput(struct soap *soap, const char *tag, int id, const tt__DigitalInput *a, const char *type) -{ - if (((tt__DigitalInput*)a)->IdleState) - { soap_set_attr(soap, "IdleState", soap_tt__DigitalIdleState2s(soap, *((tt__DigitalInput*)a)->IdleState), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DigitalInput*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DigitalInput), type ? type : "tt:DigitalInput")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DigitalInput::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DigitalInput::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DigitalInput(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DigitalInput * SOAP_FMAC4 soap_in_tt__DigitalInput(struct soap *soap, const char *tag, tt__DigitalInput *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DigitalInput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DigitalInput, sizeof(tt__DigitalInput), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DigitalInput) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DigitalInput *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "IdleState", 5, 0); - if (t) - { - if (!(((tt__DigitalInput*)a)->IdleState = (enum tt__DigitalIdleState *)soap_malloc(soap, sizeof(enum tt__DigitalIdleState)))) - return NULL; - if (soap_s2tt__DigitalIdleState(soap, t, ((tt__DigitalInput*)a)->IdleState)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DigitalInput*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DigitalInput::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__DigitalInput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DigitalInput, SOAP_TYPE_tt__DigitalInput, sizeof(tt__DigitalInput), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DigitalInput * SOAP_FMAC2 soap_instantiate_tt__DigitalInput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DigitalInput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DigitalInput *p; - size_t k = sizeof(tt__DigitalInput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DigitalInput, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DigitalInput); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DigitalInput, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DigitalInput location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DigitalInput::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DigitalInput(soap, tag ? tag : "tt:DigitalInput", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DigitalInput::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DigitalInput(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DigitalInput * SOAP_FMAC4 soap_get_tt__DigitalInput(struct soap *soap, tt__DigitalInput *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DigitalInput(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelayOutput::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - this->tt__RelayOutput::Properties = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RelayOutput::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RelayOutput::__anyAttribute); -} - -void tt__RelayOutput::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__RelayOutputSettings(soap, &this->tt__RelayOutput::Properties); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RelayOutput::__any); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__RelayOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelayOutput(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayOutput(struct soap *soap, const char *tag, int id, const tt__RelayOutput *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RelayOutput*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelayOutput), type ? type : "tt:RelayOutput")) - return soap->error; - if (!a->tt__RelayOutput::Properties) - { if (soap_element_empty(soap, "tt:Properties", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RelayOutputSettings(soap, "tt:Properties", -1, &a->tt__RelayOutput::Properties, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RelayOutput::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RelayOutput::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelayOutput(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelayOutput * SOAP_FMAC4 soap_in_tt__RelayOutput(struct soap *soap, const char *tag, tt__RelayOutput *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RelayOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayOutput, sizeof(tt__RelayOutput), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelayOutput) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RelayOutput *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RelayOutput*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Properties1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Properties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RelayOutputSettings(soap, "tt:Properties", &a->tt__RelayOutput::Properties, "tt:RelayOutputSettings")) - { soap_flag_Properties1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RelayOutput::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__RelayOutput::Properties)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RelayOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelayOutput, SOAP_TYPE_tt__RelayOutput, sizeof(tt__RelayOutput), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RelayOutput * SOAP_FMAC2 soap_instantiate_tt__RelayOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelayOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelayOutput *p; - size_t k = sizeof(tt__RelayOutput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelayOutput, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelayOutput); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelayOutput, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelayOutput location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelayOutput::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelayOutput(soap, tag ? tag : "tt:RelayOutput", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelayOutput::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelayOutput(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelayOutput * SOAP_FMAC4 soap_get_tt__RelayOutput(struct soap *soap, tt__RelayOutput *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayOutput(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RelayOutputSettings::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RelayMode(soap, &this->tt__RelayOutputSettings::Mode); - soap_default_xsd__duration(soap, &this->tt__RelayOutputSettings::DelayTime); - soap_default_tt__RelayIdleState(soap, &this->tt__RelayOutputSettings::IdleState); -} - -void tt__RelayOutputSettings::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RelayOutputSettings::DelayTime, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__RelayOutputSettings::DelayTime); -#endif -} - -int tt__RelayOutputSettings::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RelayOutputSettings(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayOutputSettings(struct soap *soap, const char *tag, int id, const tt__RelayOutputSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RelayOutputSettings), type)) - return soap->error; - if (soap_out_tt__RelayMode(soap, "tt:Mode", -1, &a->tt__RelayOutputSettings::Mode, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:DelayTime", -1, &a->tt__RelayOutputSettings::DelayTime, "")) - return soap->error; - if (soap_out_tt__RelayIdleState(soap, "tt:IdleState", -1, &a->tt__RelayOutputSettings::IdleState, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RelayOutputSettings::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RelayOutputSettings(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RelayOutputSettings * SOAP_FMAC4 soap_in_tt__RelayOutputSettings(struct soap *soap, const char *tag, tt__RelayOutputSettings *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RelayOutputSettings*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RelayOutputSettings, sizeof(tt__RelayOutputSettings), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RelayOutputSettings) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RelayOutputSettings *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_DelayTime1 = 1; - size_t soap_flag_IdleState1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__RelayMode(soap, "tt:Mode", &a->tt__RelayOutputSettings::Mode, "tt:RelayMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_DelayTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:DelayTime", &a->tt__RelayOutputSettings::DelayTime, "xsd:duration")) - { soap_flag_DelayTime1--; - continue; - } - } - if (soap_flag_IdleState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__RelayIdleState(soap, "tt:IdleState", &a->tt__RelayOutputSettings::IdleState, "tt:RelayIdleState")) - { soap_flag_IdleState1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0 || soap_flag_DelayTime1 > 0 || soap_flag_IdleState1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RelayOutputSettings *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RelayOutputSettings, SOAP_TYPE_tt__RelayOutputSettings, sizeof(tt__RelayOutputSettings), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RelayOutputSettings * SOAP_FMAC2 soap_instantiate_tt__RelayOutputSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RelayOutputSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RelayOutputSettings *p; - size_t k = sizeof(tt__RelayOutputSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RelayOutputSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RelayOutputSettings); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RelayOutputSettings, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RelayOutputSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RelayOutputSettings::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RelayOutputSettings(soap, tag ? tag : "tt:RelayOutputSettings", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RelayOutputSettings::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RelayOutputSettings(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RelayOutputSettings * SOAP_FMAC4 soap_get_tt__RelayOutputSettings(struct soap *soap, tt__RelayOutputSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RelayOutputSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__GenericEapPwdConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GenericEapPwdConfigurationExtension::__any); -} - -void tt__GenericEapPwdConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GenericEapPwdConfigurationExtension::__any); -#endif -} - -int tt__GenericEapPwdConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__GenericEapPwdConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GenericEapPwdConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__GenericEapPwdConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__GenericEapPwdConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__GenericEapPwdConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__GenericEapPwdConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__GenericEapPwdConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__GenericEapPwdConfigurationExtension * SOAP_FMAC4 soap_in_tt__GenericEapPwdConfigurationExtension(struct soap *soap, const char *tag, tt__GenericEapPwdConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__GenericEapPwdConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__GenericEapPwdConfigurationExtension, sizeof(tt__GenericEapPwdConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__GenericEapPwdConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__GenericEapPwdConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__GenericEapPwdConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__GenericEapPwdConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__GenericEapPwdConfigurationExtension, SOAP_TYPE_tt__GenericEapPwdConfigurationExtension, sizeof(tt__GenericEapPwdConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__GenericEapPwdConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__GenericEapPwdConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__GenericEapPwdConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__GenericEapPwdConfigurationExtension *p; - size_t k = sizeof(tt__GenericEapPwdConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__GenericEapPwdConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__GenericEapPwdConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__GenericEapPwdConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__GenericEapPwdConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__GenericEapPwdConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__GenericEapPwdConfigurationExtension(soap, tag ? tag : "tt:GenericEapPwdConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__GenericEapPwdConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__GenericEapPwdConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__GenericEapPwdConfigurationExtension * SOAP_FMAC4 soap_get_tt__GenericEapPwdConfigurationExtension(struct soap *soap, tt__GenericEapPwdConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__GenericEapPwdConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TLSConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->tt__TLSConfiguration::CertificateID); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TLSConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__TLSConfiguration::__anyAttribute); -} - -void tt__TLSConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__TLSConfiguration::CertificateID, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->tt__TLSConfiguration::CertificateID); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TLSConfiguration::__any); -#endif -} - -int tt__TLSConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TLSConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TLSConfiguration(struct soap *soap, const char *tag, int id, const tt__TLSConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__TLSConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TLSConfiguration), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tt:CertificateID", -1, &a->tt__TLSConfiguration::CertificateID, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__TLSConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__TLSConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TLSConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TLSConfiguration * SOAP_FMAC4 soap_in_tt__TLSConfiguration(struct soap *soap, const char *tag, tt__TLSConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__TLSConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TLSConfiguration, sizeof(tt__TLSConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TLSConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__TLSConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__TLSConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CertificateID1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tt:CertificateID", &a->tt__TLSConfiguration::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__TLSConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CertificateID1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__TLSConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TLSConfiguration, SOAP_TYPE_tt__TLSConfiguration, sizeof(tt__TLSConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__TLSConfiguration * SOAP_FMAC2 soap_instantiate_tt__TLSConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TLSConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TLSConfiguration *p; - size_t k = sizeof(tt__TLSConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TLSConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TLSConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TLSConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TLSConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TLSConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TLSConfiguration(soap, tag ? tag : "tt:TLSConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TLSConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TLSConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TLSConfiguration * SOAP_FMAC4 soap_get_tt__TLSConfiguration(struct soap *soap, tt__TLSConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TLSConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EapMethodExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EapMethodExtension::__any); -} - -void tt__EapMethodExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EapMethodExtension::__any); -#endif -} - -int tt__EapMethodExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EapMethodExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EapMethodExtension(struct soap *soap, const char *tag, int id, const tt__EapMethodExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EapMethodExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__EapMethodExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EapMethodExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EapMethodExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EapMethodExtension * SOAP_FMAC4 soap_in_tt__EapMethodExtension(struct soap *soap, const char *tag, tt__EapMethodExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EapMethodExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EapMethodExtension, sizeof(tt__EapMethodExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EapMethodExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EapMethodExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__EapMethodExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__EapMethodExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EapMethodExtension, SOAP_TYPE_tt__EapMethodExtension, sizeof(tt__EapMethodExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EapMethodExtension * SOAP_FMAC2 soap_instantiate_tt__EapMethodExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EapMethodExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EapMethodExtension *p; - size_t k = sizeof(tt__EapMethodExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EapMethodExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EapMethodExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EapMethodExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EapMethodExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EapMethodExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EapMethodExtension(soap, tag ? tag : "tt:EapMethodExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EapMethodExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EapMethodExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EapMethodExtension * SOAP_FMAC4 soap_get_tt__EapMethodExtension(struct soap *soap, tt__EapMethodExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EapMethodExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EAPMethodConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__EAPMethodConfiguration::TLSConfiguration = NULL; - this->tt__EAPMethodConfiguration::Password = NULL; - this->tt__EAPMethodConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__EAPMethodConfiguration::__anyAttribute); -} - -void tt__EAPMethodConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__TLSConfiguration(soap, &this->tt__EAPMethodConfiguration::TLSConfiguration); - soap_serialize_PointerTostd__string(soap, &this->tt__EAPMethodConfiguration::Password); - soap_serialize_PointerTott__EapMethodExtension(soap, &this->tt__EAPMethodConfiguration::Extension); -#endif -} - -int tt__EAPMethodConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EAPMethodConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EAPMethodConfiguration(struct soap *soap, const char *tag, int id, const tt__EAPMethodConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__EAPMethodConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EAPMethodConfiguration), type)) - return soap->error; - if (soap_out_PointerTott__TLSConfiguration(soap, "tt:TLSConfiguration", -1, &a->tt__EAPMethodConfiguration::TLSConfiguration, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Password", -1, &a->tt__EAPMethodConfiguration::Password, "")) - return soap->error; - if (soap_out_PointerTott__EapMethodExtension(soap, "tt:Extension", -1, &a->tt__EAPMethodConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EAPMethodConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EAPMethodConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EAPMethodConfiguration * SOAP_FMAC4 soap_in_tt__EAPMethodConfiguration(struct soap *soap, const char *tag, tt__EAPMethodConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EAPMethodConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EAPMethodConfiguration, sizeof(tt__EAPMethodConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EAPMethodConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EAPMethodConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__EAPMethodConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TLSConfiguration1 = 1; - size_t soap_flag_Password1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TLSConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TLSConfiguration(soap, "tt:TLSConfiguration", &a->tt__EAPMethodConfiguration::TLSConfiguration, "tt:TLSConfiguration")) - { soap_flag_TLSConfiguration1--; - continue; - } - } - if (soap_flag_Password1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Password", &a->tt__EAPMethodConfiguration::Password, "xsd:string")) - { soap_flag_Password1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EapMethodExtension(soap, "tt:Extension", &a->tt__EAPMethodConfiguration::Extension, "tt:EapMethodExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__EAPMethodConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EAPMethodConfiguration, SOAP_TYPE_tt__EAPMethodConfiguration, sizeof(tt__EAPMethodConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EAPMethodConfiguration * SOAP_FMAC2 soap_instantiate_tt__EAPMethodConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EAPMethodConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EAPMethodConfiguration *p; - size_t k = sizeof(tt__EAPMethodConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EAPMethodConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EAPMethodConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EAPMethodConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EAPMethodConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EAPMethodConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EAPMethodConfiguration(soap, tag ? tag : "tt:EAPMethodConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EAPMethodConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EAPMethodConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EAPMethodConfiguration * SOAP_FMAC4 soap_get_tt__EAPMethodConfiguration(struct soap *soap, tt__EAPMethodConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EAPMethodConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot1XConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot1XConfigurationExtension::__any); -} - -void tt__Dot1XConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot1XConfigurationExtension::__any); -#endif -} - -int tt__Dot1XConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot1XConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot1XConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__Dot1XConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot1XConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot1XConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot1XConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot1XConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot1XConfigurationExtension * SOAP_FMAC4 soap_in_tt__Dot1XConfigurationExtension(struct soap *soap, const char *tag, tt__Dot1XConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot1XConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot1XConfigurationExtension, sizeof(tt__Dot1XConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot1XConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot1XConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot1XConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Dot1XConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot1XConfigurationExtension, SOAP_TYPE_tt__Dot1XConfigurationExtension, sizeof(tt__Dot1XConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot1XConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__Dot1XConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot1XConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot1XConfigurationExtension *p; - size_t k = sizeof(tt__Dot1XConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot1XConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot1XConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot1XConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot1XConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot1XConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot1XConfigurationExtension(soap, tag ? tag : "tt:Dot1XConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot1XConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot1XConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot1XConfigurationExtension * SOAP_FMAC4 soap_get_tt__Dot1XConfigurationExtension(struct soap *soap, tt__Dot1XConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot1XConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot1XConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__Dot1XConfiguration::Dot1XConfigurationToken); - soap_default_std__string(soap, &this->tt__Dot1XConfiguration::Identity); - this->tt__Dot1XConfiguration::AnonymousID = NULL; - soap_default_int(soap, &this->tt__Dot1XConfiguration::EAPMethod); - soap_default_std__vectorTemplateOfxsd__token(soap, &this->tt__Dot1XConfiguration::CACertificateID); - this->tt__Dot1XConfiguration::EAPMethodConfiguration = NULL; - this->tt__Dot1XConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Dot1XConfiguration::__anyAttribute); -} - -void tt__Dot1XConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Dot1XConfiguration::Dot1XConfigurationToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__Dot1XConfiguration::Dot1XConfigurationToken); - soap_embedded(soap, &this->tt__Dot1XConfiguration::Identity, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__Dot1XConfiguration::Identity); - soap_serialize_PointerTostd__string(soap, &this->tt__Dot1XConfiguration::AnonymousID); - soap_embedded(soap, &this->tt__Dot1XConfiguration::EAPMethod, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__token(soap, &this->tt__Dot1XConfiguration::CACertificateID); - soap_serialize_PointerTott__EAPMethodConfiguration(soap, &this->tt__Dot1XConfiguration::EAPMethodConfiguration); - soap_serialize_PointerTott__Dot1XConfigurationExtension(soap, &this->tt__Dot1XConfiguration::Extension); -#endif -} - -int tt__Dot1XConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot1XConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot1XConfiguration(struct soap *soap, const char *tag, int id, const tt__Dot1XConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot1XConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot1XConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:Dot1XConfigurationToken", -1, &a->tt__Dot1XConfiguration::Dot1XConfigurationToken, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:Identity", -1, &a->tt__Dot1XConfiguration::Identity, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:AnonymousID", -1, &a->tt__Dot1XConfiguration::AnonymousID, "")) - return soap->error; - if (soap_out_int(soap, "tt:EAPMethod", -1, &a->tt__Dot1XConfiguration::EAPMethod, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__token(soap, "tt:CACertificateID", -1, &a->tt__Dot1XConfiguration::CACertificateID, "")) - return soap->error; - if (soap_out_PointerTott__EAPMethodConfiguration(soap, "tt:EAPMethodConfiguration", -1, &a->tt__Dot1XConfiguration::EAPMethodConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__Dot1XConfigurationExtension(soap, "tt:Extension", -1, &a->tt__Dot1XConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot1XConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot1XConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot1XConfiguration * SOAP_FMAC4 soap_in_tt__Dot1XConfiguration(struct soap *soap, const char *tag, tt__Dot1XConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot1XConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot1XConfiguration, sizeof(tt__Dot1XConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot1XConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot1XConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot1XConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Dot1XConfigurationToken1 = 1; - size_t soap_flag_Identity1 = 1; - size_t soap_flag_AnonymousID1 = 1; - size_t soap_flag_EAPMethod1 = 1; - size_t soap_flag_EAPMethodConfiguration1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Dot1XConfigurationToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:Dot1XConfigurationToken", &a->tt__Dot1XConfiguration::Dot1XConfigurationToken, "tt:ReferenceToken")) - { soap_flag_Dot1XConfigurationToken1--; - continue; - } - } - if (soap_flag_Identity1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Identity", &a->tt__Dot1XConfiguration::Identity, "xsd:string")) - { soap_flag_Identity1--; - continue; - } - } - if (soap_flag_AnonymousID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:AnonymousID", &a->tt__Dot1XConfiguration::AnonymousID, "xsd:string")) - { soap_flag_AnonymousID1--; - continue; - } - } - if (soap_flag_EAPMethod1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:EAPMethod", &a->tt__Dot1XConfiguration::EAPMethod, "xsd:int")) - { soap_flag_EAPMethod1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__token(soap, "tt:CACertificateID", &a->tt__Dot1XConfiguration::CACertificateID, "xsd:token")) - continue; - } - if (soap_flag_EAPMethodConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EAPMethodConfiguration(soap, "tt:EAPMethodConfiguration", &a->tt__Dot1XConfiguration::EAPMethodConfiguration, "tt:EAPMethodConfiguration")) - { soap_flag_EAPMethodConfiguration1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot1XConfigurationExtension(soap, "tt:Extension", &a->tt__Dot1XConfiguration::Extension, "tt:Dot1XConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Dot1XConfigurationToken1 > 0 || soap_flag_Identity1 > 0 || soap_flag_EAPMethod1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Dot1XConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot1XConfiguration, SOAP_TYPE_tt__Dot1XConfiguration, sizeof(tt__Dot1XConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot1XConfiguration * SOAP_FMAC2 soap_instantiate_tt__Dot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot1XConfiguration *p; - size_t k = sizeof(tt__Dot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot1XConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot1XConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot1XConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot1XConfiguration(soap, tag ? tag : "tt:Dot1XConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot1XConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot1XConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot1XConfiguration * SOAP_FMAC4 soap_get_tt__Dot1XConfiguration(struct soap *soap, tt__Dot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CertificateInformationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateInformationExtension::__any); -} - -void tt__CertificateInformationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateInformationExtension::__any); -#endif -} - -int tt__CertificateInformationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CertificateInformationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateInformationExtension(struct soap *soap, const char *tag, int id, const tt__CertificateInformationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CertificateInformationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CertificateInformationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CertificateInformationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CertificateInformationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CertificateInformationExtension * SOAP_FMAC4 soap_in_tt__CertificateInformationExtension(struct soap *soap, const char *tag, tt__CertificateInformationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CertificateInformationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CertificateInformationExtension, sizeof(tt__CertificateInformationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CertificateInformationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CertificateInformationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CertificateInformationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__CertificateInformationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CertificateInformationExtension, SOAP_TYPE_tt__CertificateInformationExtension, sizeof(tt__CertificateInformationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CertificateInformationExtension * SOAP_FMAC2 soap_instantiate_tt__CertificateInformationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CertificateInformationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CertificateInformationExtension *p; - size_t k = sizeof(tt__CertificateInformationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CertificateInformationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CertificateInformationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CertificateInformationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CertificateInformationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CertificateInformationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CertificateInformationExtension(soap, tag ? tag : "tt:CertificateInformationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CertificateInformationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CertificateInformationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CertificateInformationExtension * SOAP_FMAC4 soap_get_tt__CertificateInformationExtension(struct soap *soap, tt__CertificateInformationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CertificateInformationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CertificateUsage::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__CertificateUsage::__item); - soap_default_bool(soap, &this->tt__CertificateUsage::Critical); -} - -void tt__CertificateUsage::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__CertificateUsage::__item, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__CertificateUsage::__item); -#endif -} - -int tt__CertificateUsage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CertificateUsage(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateUsage(struct soap *soap, const char *tag, int id, const tt__CertificateUsage *a, const char *type) -{ - soap_set_attr(soap, "Critical", soap_bool2s(soap, ((tt__CertificateUsage*)a)->Critical), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_std__string(soap, tag, id, &a->tt__CertificateUsage::__item, ""); -} - -void *tt__CertificateUsage::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CertificateUsage(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CertificateUsage * SOAP_FMAC4 soap_in_tt__CertificateUsage(struct soap *soap, const char *tag, tt__CertificateUsage *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (tt__CertificateUsage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CertificateUsage, sizeof(tt__CertificateUsage), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CertificateUsage) - return (tt__CertificateUsage *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (soap_s2bool(soap, soap_attr_value(soap, "Critical", 5, 1), &((tt__CertificateUsage*)a)->Critical)) - return NULL; - if (!soap_in_std__string(soap, tag, &a->tt__CertificateUsage::__item, "tt:CertificateUsage")) - return NULL; - return a; -} - -SOAP_FMAC1 tt__CertificateUsage * SOAP_FMAC2 soap_instantiate_tt__CertificateUsage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CertificateUsage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CertificateUsage *p; - size_t k = sizeof(tt__CertificateUsage); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CertificateUsage, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CertificateUsage); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CertificateUsage, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CertificateUsage location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CertificateUsage::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CertificateUsage(soap, tag ? tag : "tt:CertificateUsage", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CertificateUsage::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CertificateUsage(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CertificateUsage * SOAP_FMAC4 soap_get_tt__CertificateUsage(struct soap *soap, tt__CertificateUsage *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CertificateUsage(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CertificateInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->tt__CertificateInformation::CertificateID); - this->tt__CertificateInformation::IssuerDN = NULL; - this->tt__CertificateInformation::SubjectDN = NULL; - this->tt__CertificateInformation::KeyUsage = NULL; - this->tt__CertificateInformation::ExtendedKeyUsage = NULL; - this->tt__CertificateInformation::KeyLength = NULL; - this->tt__CertificateInformation::Version = NULL; - this->tt__CertificateInformation::SerialNum = NULL; - this->tt__CertificateInformation::SignatureAlgorithm = NULL; - this->tt__CertificateInformation::Validity = NULL; - this->tt__CertificateInformation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__CertificateInformation::__anyAttribute); -} - -void tt__CertificateInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__CertificateInformation::CertificateID, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->tt__CertificateInformation::CertificateID); - soap_serialize_PointerTostd__string(soap, &this->tt__CertificateInformation::IssuerDN); - soap_serialize_PointerTostd__string(soap, &this->tt__CertificateInformation::SubjectDN); - soap_serialize_PointerTott__CertificateUsage(soap, &this->tt__CertificateInformation::KeyUsage); - soap_serialize_PointerTott__CertificateUsage(soap, &this->tt__CertificateInformation::ExtendedKeyUsage); - soap_serialize_PointerToint(soap, &this->tt__CertificateInformation::KeyLength); - soap_serialize_PointerTostd__string(soap, &this->tt__CertificateInformation::Version); - soap_serialize_PointerTostd__string(soap, &this->tt__CertificateInformation::SerialNum); - soap_serialize_PointerTostd__string(soap, &this->tt__CertificateInformation::SignatureAlgorithm); - soap_serialize_PointerTott__DateTimeRange(soap, &this->tt__CertificateInformation::Validity); - soap_serialize_PointerTott__CertificateInformationExtension(soap, &this->tt__CertificateInformation::Extension); -#endif -} - -int tt__CertificateInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CertificateInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateInformation(struct soap *soap, const char *tag, int id, const tt__CertificateInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__CertificateInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CertificateInformation), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tt:CertificateID", -1, &a->tt__CertificateInformation::CertificateID, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:IssuerDN", -1, &a->tt__CertificateInformation::IssuerDN, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:SubjectDN", -1, &a->tt__CertificateInformation::SubjectDN, "")) - return soap->error; - if (soap_out_PointerTott__CertificateUsage(soap, "tt:KeyUsage", -1, &a->tt__CertificateInformation::KeyUsage, "")) - return soap->error; - if (soap_out_PointerTott__CertificateUsage(soap, "tt:ExtendedKeyUsage", -1, &a->tt__CertificateInformation::ExtendedKeyUsage, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tt:KeyLength", -1, &a->tt__CertificateInformation::KeyLength, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Version", -1, &a->tt__CertificateInformation::Version, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:SerialNum", -1, &a->tt__CertificateInformation::SerialNum, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:SignatureAlgorithm", -1, &a->tt__CertificateInformation::SignatureAlgorithm, "")) - return soap->error; - if (soap_out_PointerTott__DateTimeRange(soap, "tt:Validity", -1, &a->tt__CertificateInformation::Validity, "")) - return soap->error; - if (soap_out_PointerTott__CertificateInformationExtension(soap, "tt:Extension", -1, &a->tt__CertificateInformation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CertificateInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CertificateInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CertificateInformation * SOAP_FMAC4 soap_in_tt__CertificateInformation(struct soap *soap, const char *tag, tt__CertificateInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CertificateInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CertificateInformation, sizeof(tt__CertificateInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CertificateInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CertificateInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__CertificateInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CertificateID1 = 1; - size_t soap_flag_IssuerDN1 = 1; - size_t soap_flag_SubjectDN1 = 1; - size_t soap_flag_KeyUsage1 = 1; - size_t soap_flag_ExtendedKeyUsage1 = 1; - size_t soap_flag_KeyLength1 = 1; - size_t soap_flag_Version1 = 1; - size_t soap_flag_SerialNum1 = 1; - size_t soap_flag_SignatureAlgorithm1 = 1; - size_t soap_flag_Validity1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tt:CertificateID", &a->tt__CertificateInformation::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap_flag_IssuerDN1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:IssuerDN", &a->tt__CertificateInformation::IssuerDN, "xsd:string")) - { soap_flag_IssuerDN1--; - continue; - } - } - if (soap_flag_SubjectDN1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:SubjectDN", &a->tt__CertificateInformation::SubjectDN, "xsd:string")) - { soap_flag_SubjectDN1--; - continue; - } - } - if (soap_flag_KeyUsage1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CertificateUsage(soap, "tt:KeyUsage", &a->tt__CertificateInformation::KeyUsage, "tt:CertificateUsage")) - { soap_flag_KeyUsage1--; - continue; - } - } - if (soap_flag_ExtendedKeyUsage1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CertificateUsage(soap, "tt:ExtendedKeyUsage", &a->tt__CertificateInformation::ExtendedKeyUsage, "tt:CertificateUsage")) - { soap_flag_ExtendedKeyUsage1--; - continue; - } - } - if (soap_flag_KeyLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:KeyLength", &a->tt__CertificateInformation::KeyLength, "xsd:int")) - { soap_flag_KeyLength1--; - continue; - } - } - if (soap_flag_Version1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Version", &a->tt__CertificateInformation::Version, "xsd:string")) - { soap_flag_Version1--; - continue; - } - } - if (soap_flag_SerialNum1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:SerialNum", &a->tt__CertificateInformation::SerialNum, "xsd:string")) - { soap_flag_SerialNum1--; - continue; - } - } - if (soap_flag_SignatureAlgorithm1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:SignatureAlgorithm", &a->tt__CertificateInformation::SignatureAlgorithm, "xsd:string")) - { soap_flag_SignatureAlgorithm1--; - continue; - } - } - if (soap_flag_Validity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DateTimeRange(soap, "tt:Validity", &a->tt__CertificateInformation::Validity, "tt:DateTimeRange")) - { soap_flag_Validity1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CertificateInformationExtension(soap, "tt:Extension", &a->tt__CertificateInformation::Extension, "tt:CertificateInformationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CertificateID1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__CertificateInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CertificateInformation, SOAP_TYPE_tt__CertificateInformation, sizeof(tt__CertificateInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CertificateInformation * SOAP_FMAC2 soap_instantiate_tt__CertificateInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CertificateInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CertificateInformation *p; - size_t k = sizeof(tt__CertificateInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CertificateInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CertificateInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CertificateInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CertificateInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CertificateInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CertificateInformation(soap, tag ? tag : "tt:CertificateInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CertificateInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CertificateInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CertificateInformation * SOAP_FMAC4 soap_get_tt__CertificateInformation(struct soap *soap, tt__CertificateInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CertificateInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CertificateWithPrivateKey::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__CertificateWithPrivateKey::CertificateID = NULL; - this->tt__CertificateWithPrivateKey::Certificate = NULL; - this->tt__CertificateWithPrivateKey::PrivateKey = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateWithPrivateKey::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__CertificateWithPrivateKey::__anyAttribute); -} - -void tt__CertificateWithPrivateKey::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__token(soap, &this->tt__CertificateWithPrivateKey::CertificateID); - soap_serialize_PointerTott__BinaryData(soap, &this->tt__CertificateWithPrivateKey::Certificate); - soap_serialize_PointerTott__BinaryData(soap, &this->tt__CertificateWithPrivateKey::PrivateKey); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateWithPrivateKey::__any); -#endif -} - -int tt__CertificateWithPrivateKey::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CertificateWithPrivateKey(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateWithPrivateKey(struct soap *soap, const char *tag, int id, const tt__CertificateWithPrivateKey *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__CertificateWithPrivateKey*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CertificateWithPrivateKey), type)) - return soap->error; - if (soap_out_PointerToxsd__token(soap, "tt:CertificateID", -1, &a->tt__CertificateWithPrivateKey::CertificateID, "")) - return soap->error; - if (!a->tt__CertificateWithPrivateKey::Certificate) - { if (soap_element_empty(soap, "tt:Certificate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__BinaryData(soap, "tt:Certificate", -1, &a->tt__CertificateWithPrivateKey::Certificate, "")) - return soap->error; - if (!a->tt__CertificateWithPrivateKey::PrivateKey) - { if (soap_element_empty(soap, "tt:PrivateKey", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__BinaryData(soap, "tt:PrivateKey", -1, &a->tt__CertificateWithPrivateKey::PrivateKey, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CertificateWithPrivateKey::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CertificateWithPrivateKey::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CertificateWithPrivateKey(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CertificateWithPrivateKey * SOAP_FMAC4 soap_in_tt__CertificateWithPrivateKey(struct soap *soap, const char *tag, tt__CertificateWithPrivateKey *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CertificateWithPrivateKey*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CertificateWithPrivateKey, sizeof(tt__CertificateWithPrivateKey), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CertificateWithPrivateKey) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CertificateWithPrivateKey *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__CertificateWithPrivateKey*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CertificateID1 = 1; - size_t soap_flag_Certificate1 = 1; - size_t soap_flag_PrivateKey1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__token(soap, "tt:CertificateID", &a->tt__CertificateWithPrivateKey::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap_flag_Certificate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BinaryData(soap, "tt:Certificate", &a->tt__CertificateWithPrivateKey::Certificate, "tt:BinaryData")) - { soap_flag_Certificate1--; - continue; - } - } - if (soap_flag_PrivateKey1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BinaryData(soap, "tt:PrivateKey", &a->tt__CertificateWithPrivateKey::PrivateKey, "tt:BinaryData")) - { soap_flag_PrivateKey1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CertificateWithPrivateKey::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__CertificateWithPrivateKey::Certificate || !a->tt__CertificateWithPrivateKey::PrivateKey)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__CertificateWithPrivateKey *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CertificateWithPrivateKey, SOAP_TYPE_tt__CertificateWithPrivateKey, sizeof(tt__CertificateWithPrivateKey), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CertificateWithPrivateKey * SOAP_FMAC2 soap_instantiate_tt__CertificateWithPrivateKey(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CertificateWithPrivateKey(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CertificateWithPrivateKey *p; - size_t k = sizeof(tt__CertificateWithPrivateKey); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CertificateWithPrivateKey, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CertificateWithPrivateKey); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CertificateWithPrivateKey, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CertificateWithPrivateKey location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CertificateWithPrivateKey::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CertificateWithPrivateKey(soap, tag ? tag : "tt:CertificateWithPrivateKey", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CertificateWithPrivateKey::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CertificateWithPrivateKey(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CertificateWithPrivateKey * SOAP_FMAC4 soap_get_tt__CertificateWithPrivateKey(struct soap *soap, tt__CertificateWithPrivateKey *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CertificateWithPrivateKey(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CertificateStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->tt__CertificateStatus::CertificateID); - soap_default_bool(soap, &this->tt__CertificateStatus::Status); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateStatus::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__CertificateStatus::__anyAttribute); -} - -void tt__CertificateStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__CertificateStatus::CertificateID, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->tt__CertificateStatus::CertificateID); - soap_embedded(soap, &this->tt__CertificateStatus::Status, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateStatus::__any); -#endif -} - -int tt__CertificateStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CertificateStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateStatus(struct soap *soap, const char *tag, int id, const tt__CertificateStatus *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__CertificateStatus*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CertificateStatus), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tt:CertificateID", -1, &a->tt__CertificateStatus::CertificateID, "")) - return soap->error; - if (soap_out_bool(soap, "tt:Status", -1, &a->tt__CertificateStatus::Status, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CertificateStatus::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CertificateStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CertificateStatus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CertificateStatus * SOAP_FMAC4 soap_in_tt__CertificateStatus(struct soap *soap, const char *tag, tt__CertificateStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CertificateStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CertificateStatus, sizeof(tt__CertificateStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CertificateStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CertificateStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__CertificateStatus*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CertificateID1 = 1; - size_t soap_flag_Status1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tt:CertificateID", &a->tt__CertificateStatus::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap_flag_Status1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Status", &a->tt__CertificateStatus::Status, "xsd:boolean")) - { soap_flag_Status1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CertificateStatus::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CertificateID1 > 0 || soap_flag_Status1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__CertificateStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CertificateStatus, SOAP_TYPE_tt__CertificateStatus, sizeof(tt__CertificateStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CertificateStatus * SOAP_FMAC2 soap_instantiate_tt__CertificateStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CertificateStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CertificateStatus *p; - size_t k = sizeof(tt__CertificateStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CertificateStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CertificateStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CertificateStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CertificateStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CertificateStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CertificateStatus(soap, tag ? tag : "tt:CertificateStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CertificateStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CertificateStatus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CertificateStatus * SOAP_FMAC4 soap_get_tt__CertificateStatus(struct soap *soap, tt__CertificateStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CertificateStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Certificate::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->tt__Certificate::CertificateID); - this->tt__Certificate::Certificate = NULL; -} - -void tt__Certificate::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Certificate::CertificateID, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->tt__Certificate::CertificateID); - soap_serialize_PointerTott__BinaryData(soap, &this->tt__Certificate::Certificate); -#endif -} - -int tt__Certificate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Certificate(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Certificate(struct soap *soap, const char *tag, int id, const tt__Certificate *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Certificate), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tt:CertificateID", -1, &a->tt__Certificate::CertificateID, "")) - return soap->error; - if (!a->tt__Certificate::Certificate) - { if (soap_element_empty(soap, "tt:Certificate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__BinaryData(soap, "tt:Certificate", -1, &a->tt__Certificate::Certificate, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Certificate::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Certificate(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Certificate * SOAP_FMAC4 soap_in_tt__Certificate(struct soap *soap, const char *tag, tt__Certificate *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Certificate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Certificate, sizeof(tt__Certificate), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Certificate) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Certificate *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CertificateID1 = 1; - size_t soap_flag_Certificate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tt:CertificateID", &a->tt__Certificate::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap_flag_Certificate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__BinaryData(soap, "tt:Certificate", &a->tt__Certificate::Certificate, "tt:BinaryData")) - { soap_flag_Certificate1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CertificateID1 > 0 || !a->tt__Certificate::Certificate)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Certificate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Certificate, SOAP_TYPE_tt__Certificate, sizeof(tt__Certificate), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Certificate * SOAP_FMAC2 soap_instantiate_tt__Certificate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Certificate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Certificate *p; - size_t k = sizeof(tt__Certificate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Certificate, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Certificate); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Certificate, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Certificate location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Certificate::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Certificate(soap, tag ? tag : "tt:Certificate", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Certificate::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Certificate(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Certificate * SOAP_FMAC4 soap_get_tt__Certificate(struct soap *soap, tt__Certificate *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Certificate(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CertificateGenerationParametersExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateGenerationParametersExtension::__any); -} - -void tt__CertificateGenerationParametersExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CertificateGenerationParametersExtension::__any); -#endif -} - -int tt__CertificateGenerationParametersExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CertificateGenerationParametersExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateGenerationParametersExtension(struct soap *soap, const char *tag, int id, const tt__CertificateGenerationParametersExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CertificateGenerationParametersExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CertificateGenerationParametersExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CertificateGenerationParametersExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CertificateGenerationParametersExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CertificateGenerationParametersExtension * SOAP_FMAC4 soap_in_tt__CertificateGenerationParametersExtension(struct soap *soap, const char *tag, tt__CertificateGenerationParametersExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CertificateGenerationParametersExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CertificateGenerationParametersExtension, sizeof(tt__CertificateGenerationParametersExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CertificateGenerationParametersExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CertificateGenerationParametersExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CertificateGenerationParametersExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__CertificateGenerationParametersExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CertificateGenerationParametersExtension, SOAP_TYPE_tt__CertificateGenerationParametersExtension, sizeof(tt__CertificateGenerationParametersExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CertificateGenerationParametersExtension * SOAP_FMAC2 soap_instantiate_tt__CertificateGenerationParametersExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CertificateGenerationParametersExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CertificateGenerationParametersExtension *p; - size_t k = sizeof(tt__CertificateGenerationParametersExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CertificateGenerationParametersExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CertificateGenerationParametersExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CertificateGenerationParametersExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CertificateGenerationParametersExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CertificateGenerationParametersExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CertificateGenerationParametersExtension(soap, tag ? tag : "tt:CertificateGenerationParametersExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CertificateGenerationParametersExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CertificateGenerationParametersExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CertificateGenerationParametersExtension * SOAP_FMAC4 soap_get_tt__CertificateGenerationParametersExtension(struct soap *soap, tt__CertificateGenerationParametersExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CertificateGenerationParametersExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CertificateGenerationParameters::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__CertificateGenerationParameters::CertificateID = NULL; - this->tt__CertificateGenerationParameters::Subject = NULL; - this->tt__CertificateGenerationParameters::ValidNotBefore = NULL; - this->tt__CertificateGenerationParameters::ValidNotAfter = NULL; - this->tt__CertificateGenerationParameters::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__CertificateGenerationParameters::__anyAttribute); -} - -void tt__CertificateGenerationParameters::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__token(soap, &this->tt__CertificateGenerationParameters::CertificateID); - soap_serialize_PointerTostd__string(soap, &this->tt__CertificateGenerationParameters::Subject); - soap_serialize_PointerToxsd__token(soap, &this->tt__CertificateGenerationParameters::ValidNotBefore); - soap_serialize_PointerToxsd__token(soap, &this->tt__CertificateGenerationParameters::ValidNotAfter); - soap_serialize_PointerTott__CertificateGenerationParametersExtension(soap, &this->tt__CertificateGenerationParameters::Extension); -#endif -} - -int tt__CertificateGenerationParameters::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CertificateGenerationParameters(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateGenerationParameters(struct soap *soap, const char *tag, int id, const tt__CertificateGenerationParameters *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__CertificateGenerationParameters*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CertificateGenerationParameters), type)) - return soap->error; - if (soap_out_PointerToxsd__token(soap, "tt:CertificateID", -1, &a->tt__CertificateGenerationParameters::CertificateID, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Subject", -1, &a->tt__CertificateGenerationParameters::Subject, "")) - return soap->error; - if (soap_out_PointerToxsd__token(soap, "tt:ValidNotBefore", -1, &a->tt__CertificateGenerationParameters::ValidNotBefore, "")) - return soap->error; - if (soap_out_PointerToxsd__token(soap, "tt:ValidNotAfter", -1, &a->tt__CertificateGenerationParameters::ValidNotAfter, "")) - return soap->error; - if (soap_out_PointerTott__CertificateGenerationParametersExtension(soap, "tt:Extension", -1, &a->tt__CertificateGenerationParameters::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CertificateGenerationParameters::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CertificateGenerationParameters(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CertificateGenerationParameters * SOAP_FMAC4 soap_in_tt__CertificateGenerationParameters(struct soap *soap, const char *tag, tt__CertificateGenerationParameters *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CertificateGenerationParameters*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CertificateGenerationParameters, sizeof(tt__CertificateGenerationParameters), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CertificateGenerationParameters) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CertificateGenerationParameters *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__CertificateGenerationParameters*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_CertificateID1 = 1; - size_t soap_flag_Subject1 = 1; - size_t soap_flag_ValidNotBefore1 = 1; - size_t soap_flag_ValidNotAfter1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CertificateID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__token(soap, "tt:CertificateID", &a->tt__CertificateGenerationParameters::CertificateID, "xsd:token")) - { soap_flag_CertificateID1--; - continue; - } - } - if (soap_flag_Subject1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Subject", &a->tt__CertificateGenerationParameters::Subject, "xsd:string")) - { soap_flag_Subject1--; - continue; - } - } - if (soap_flag_ValidNotBefore1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__token(soap, "tt:ValidNotBefore", &a->tt__CertificateGenerationParameters::ValidNotBefore, "xsd:token")) - { soap_flag_ValidNotBefore1--; - continue; - } - } - if (soap_flag_ValidNotAfter1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__token(soap, "tt:ValidNotAfter", &a->tt__CertificateGenerationParameters::ValidNotAfter, "xsd:token")) - { soap_flag_ValidNotAfter1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CertificateGenerationParametersExtension(soap, "tt:Extension", &a->tt__CertificateGenerationParameters::Extension, "tt:CertificateGenerationParametersExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__CertificateGenerationParameters *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CertificateGenerationParameters, SOAP_TYPE_tt__CertificateGenerationParameters, sizeof(tt__CertificateGenerationParameters), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CertificateGenerationParameters * SOAP_FMAC2 soap_instantiate_tt__CertificateGenerationParameters(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CertificateGenerationParameters(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CertificateGenerationParameters *p; - size_t k = sizeof(tt__CertificateGenerationParameters); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CertificateGenerationParameters, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CertificateGenerationParameters); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CertificateGenerationParameters, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CertificateGenerationParameters location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CertificateGenerationParameters::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CertificateGenerationParameters(soap, tag ? tag : "tt:CertificateGenerationParameters", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CertificateGenerationParameters::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CertificateGenerationParameters(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CertificateGenerationParameters * SOAP_FMAC4 soap_get_tt__CertificateGenerationParameters(struct soap *soap, tt__CertificateGenerationParameters *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CertificateGenerationParameters(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__UserExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__UserExtension::__any); -} - -void tt__UserExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__UserExtension::__any); -#endif -} - -int tt__UserExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__UserExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__UserExtension(struct soap *soap, const char *tag, int id, const tt__UserExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__UserExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__UserExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__UserExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__UserExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__UserExtension * SOAP_FMAC4 soap_in_tt__UserExtension(struct soap *soap, const char *tag, tt__UserExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__UserExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__UserExtension, sizeof(tt__UserExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__UserExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__UserExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__UserExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__UserExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__UserExtension, SOAP_TYPE_tt__UserExtension, sizeof(tt__UserExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__UserExtension * SOAP_FMAC2 soap_instantiate_tt__UserExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__UserExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__UserExtension *p; - size_t k = sizeof(tt__UserExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__UserExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__UserExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__UserExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__UserExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__UserExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__UserExtension(soap, tag ? tag : "tt:UserExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__UserExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__UserExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__UserExtension * SOAP_FMAC4 soap_get_tt__UserExtension(struct soap *soap, tt__UserExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__UserExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__User::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__User::Username); - this->tt__User::Password = NULL; - soap_default_tt__UserLevel(soap, &this->tt__User::UserLevel); - this->tt__User::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__User::__anyAttribute); -} - -void tt__User::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__User::Username, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__User::Username); - soap_serialize_PointerTostd__string(soap, &this->tt__User::Password); - soap_serialize_PointerTott__UserExtension(soap, &this->tt__User::Extension); -#endif -} - -int tt__User::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__User(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__User(struct soap *soap, const char *tag, int id, const tt__User *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__User*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__User), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Username", -1, &a->tt__User::Username, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Password", -1, &a->tt__User::Password, "")) - return soap->error; - if (soap_out_tt__UserLevel(soap, "tt:UserLevel", -1, &a->tt__User::UserLevel, "")) - return soap->error; - if (soap_out_PointerTott__UserExtension(soap, "tt:Extension", -1, &a->tt__User::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__User::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__User(soap, tag, this, type); -} - -SOAP_FMAC3 tt__User * SOAP_FMAC4 soap_in_tt__User(struct soap *soap, const char *tag, tt__User *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__User*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__User, sizeof(tt__User), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__User) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__User *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__User*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Username1 = 1; - size_t soap_flag_Password1 = 1; - size_t soap_flag_UserLevel1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Username1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Username", &a->tt__User::Username, "xsd:string")) - { soap_flag_Username1--; - continue; - } - } - if (soap_flag_Password1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Password", &a->tt__User::Password, "xsd:string")) - { soap_flag_Password1--; - continue; - } - } - if (soap_flag_UserLevel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__UserLevel(soap, "tt:UserLevel", &a->tt__User::UserLevel, "tt:UserLevel")) - { soap_flag_UserLevel1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__UserExtension(soap, "tt:Extension", &a->tt__User::Extension, "tt:UserExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Username1 > 0 || soap_flag_UserLevel1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__User *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__User, SOAP_TYPE_tt__User, sizeof(tt__User), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__User * SOAP_FMAC2 soap_instantiate_tt__User(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__User(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__User *p; - size_t k = sizeof(tt__User); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__User, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__User); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__User, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__User location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__User::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__User(soap, tag ? tag : "tt:User", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__User::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__User(soap, this, tag, type); -} - -SOAP_FMAC3 tt__User * SOAP_FMAC4 soap_get_tt__User(struct soap *soap, tt__User *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__User(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RemoteUser::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__RemoteUser::Username); - this->tt__RemoteUser::Password = NULL; - soap_default_bool(soap, &this->tt__RemoteUser::UseDerivedPassword); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RemoteUser::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RemoteUser::__anyAttribute); -} - -void tt__RemoteUser::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RemoteUser::Username, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__RemoteUser::Username); - soap_serialize_PointerTostd__string(soap, &this->tt__RemoteUser::Password); - soap_embedded(soap, &this->tt__RemoteUser::UseDerivedPassword, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RemoteUser::__any); -#endif -} - -int tt__RemoteUser::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RemoteUser(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RemoteUser(struct soap *soap, const char *tag, int id, const tt__RemoteUser *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RemoteUser*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RemoteUser), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Username", -1, &a->tt__RemoteUser::Username, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Password", -1, &a->tt__RemoteUser::Password, "")) - return soap->error; - if (soap_out_bool(soap, "tt:UseDerivedPassword", -1, &a->tt__RemoteUser::UseDerivedPassword, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RemoteUser::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RemoteUser::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RemoteUser(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RemoteUser * SOAP_FMAC4 soap_in_tt__RemoteUser(struct soap *soap, const char *tag, tt__RemoteUser *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RemoteUser*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RemoteUser, sizeof(tt__RemoteUser), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RemoteUser) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RemoteUser *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RemoteUser*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Username1 = 1; - size_t soap_flag_Password1 = 1; - size_t soap_flag_UseDerivedPassword1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Username1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Username", &a->tt__RemoteUser::Username, "xsd:string")) - { soap_flag_Username1--; - continue; - } - } - if (soap_flag_Password1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Password", &a->tt__RemoteUser::Password, "xsd:string")) - { soap_flag_Password1--; - continue; - } - } - if (soap_flag_UseDerivedPassword1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:UseDerivedPassword", &a->tt__RemoteUser::UseDerivedPassword, "xsd:boolean")) - { soap_flag_UseDerivedPassword1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RemoteUser::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Username1 > 0 || soap_flag_UseDerivedPassword1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RemoteUser *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RemoteUser, SOAP_TYPE_tt__RemoteUser, sizeof(tt__RemoteUser), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RemoteUser * SOAP_FMAC2 soap_instantiate_tt__RemoteUser(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RemoteUser(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RemoteUser *p; - size_t k = sizeof(tt__RemoteUser); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RemoteUser, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RemoteUser); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RemoteUser, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RemoteUser location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RemoteUser::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RemoteUser(soap, tag ? tag : "tt:RemoteUser", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RemoteUser::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RemoteUser(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RemoteUser * SOAP_FMAC4 soap_get_tt__RemoteUser(struct soap *soap, tt__RemoteUser *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RemoteUser(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TimeZone::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->tt__TimeZone::TZ); -} - -void tt__TimeZone::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__TimeZone::TZ, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->tt__TimeZone::TZ); -#endif -} - -int tt__TimeZone::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TimeZone(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TimeZone(struct soap *soap, const char *tag, int id, const tt__TimeZone *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TimeZone), type)) - return soap->error; - if (soap_out_xsd__token(soap, "tt:TZ", -1, &a->tt__TimeZone::TZ, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__TimeZone::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TimeZone(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TimeZone * SOAP_FMAC4 soap_in_tt__TimeZone(struct soap *soap, const char *tag, tt__TimeZone *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__TimeZone*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TimeZone, sizeof(tt__TimeZone), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TimeZone) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__TimeZone *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TZ1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TZ1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__token(soap, "tt:TZ", &a->tt__TimeZone::TZ, "xsd:token")) - { soap_flag_TZ1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TZ1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__TimeZone *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TimeZone, SOAP_TYPE_tt__TimeZone, sizeof(tt__TimeZone), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__TimeZone * SOAP_FMAC2 soap_instantiate_tt__TimeZone(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TimeZone(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TimeZone *p; - size_t k = sizeof(tt__TimeZone); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TimeZone, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TimeZone); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TimeZone, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TimeZone location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TimeZone::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TimeZone(soap, tag ? tag : "tt:TimeZone", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TimeZone::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TimeZone(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TimeZone * SOAP_FMAC4 soap_get_tt__TimeZone(struct soap *soap, tt__TimeZone *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TimeZone(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Time::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__Time::Hour); - soap_default_int(soap, &this->tt__Time::Minute); - soap_default_int(soap, &this->tt__Time::Second); -} - -void tt__Time::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Time::Hour, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__Time::Minute, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__Time::Second, SOAP_TYPE_int); -#endif -} - -int tt__Time::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Time(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Time(struct soap *soap, const char *tag, int id, const tt__Time *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Time), type)) - return soap->error; - if (soap_out_int(soap, "tt:Hour", -1, &a->tt__Time::Hour, "")) - return soap->error; - if (soap_out_int(soap, "tt:Minute", -1, &a->tt__Time::Minute, "")) - return soap->error; - if (soap_out_int(soap, "tt:Second", -1, &a->tt__Time::Second, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Time::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Time(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Time * SOAP_FMAC4 soap_in_tt__Time(struct soap *soap, const char *tag, tt__Time *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Time*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Time, sizeof(tt__Time), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Time) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Time *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Hour1 = 1; - size_t soap_flag_Minute1 = 1; - size_t soap_flag_Second1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Hour1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Hour", &a->tt__Time::Hour, "xsd:int")) - { soap_flag_Hour1--; - continue; - } - } - if (soap_flag_Minute1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Minute", &a->tt__Time::Minute, "xsd:int")) - { soap_flag_Minute1--; - continue; - } - } - if (soap_flag_Second1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Second", &a->tt__Time::Second, "xsd:int")) - { soap_flag_Second1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Hour1 > 0 || soap_flag_Minute1 > 0 || soap_flag_Second1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Time *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Time, SOAP_TYPE_tt__Time, sizeof(tt__Time), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Time * SOAP_FMAC2 soap_instantiate_tt__Time(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Time(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Time *p; - size_t k = sizeof(tt__Time); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Time, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Time); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Time, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Time location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Time::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Time(soap, tag ? tag : "tt:Time", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Time::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Time(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Time * SOAP_FMAC4 soap_get_tt__Time(struct soap *soap, tt__Time *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Time(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Date::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__Date::Year); - soap_default_int(soap, &this->tt__Date::Month); - soap_default_int(soap, &this->tt__Date::Day); -} - -void tt__Date::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Date::Year, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__Date::Month, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__Date::Day, SOAP_TYPE_int); -#endif -} - -int tt__Date::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Date(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Date(struct soap *soap, const char *tag, int id, const tt__Date *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Date), type)) - return soap->error; - if (soap_out_int(soap, "tt:Year", -1, &a->tt__Date::Year, "")) - return soap->error; - if (soap_out_int(soap, "tt:Month", -1, &a->tt__Date::Month, "")) - return soap->error; - if (soap_out_int(soap, "tt:Day", -1, &a->tt__Date::Day, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Date::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Date(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Date * SOAP_FMAC4 soap_in_tt__Date(struct soap *soap, const char *tag, tt__Date *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Date*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Date, sizeof(tt__Date), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Date) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Date *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Year1 = 1; - size_t soap_flag_Month1 = 1; - size_t soap_flag_Day1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Year1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Year", &a->tt__Date::Year, "xsd:int")) - { soap_flag_Year1--; - continue; - } - } - if (soap_flag_Month1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Month", &a->tt__Date::Month, "xsd:int")) - { soap_flag_Month1--; - continue; - } - } - if (soap_flag_Day1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Day", &a->tt__Date::Day, "xsd:int")) - { soap_flag_Day1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Year1 > 0 || soap_flag_Month1 > 0 || soap_flag_Day1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Date *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Date, SOAP_TYPE_tt__Date, sizeof(tt__Date), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Date * SOAP_FMAC2 soap_instantiate_tt__Date(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Date(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Date *p; - size_t k = sizeof(tt__Date); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Date, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Date); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Date, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Date location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Date::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Date(soap, tag ? tag : "tt:Date", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Date::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Date(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Date * SOAP_FMAC4 soap_get_tt__Date(struct soap *soap, tt__Date *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Date(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DateTime::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DateTime::Time = NULL; - this->tt__DateTime::Date = NULL; -} - -void tt__DateTime::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Time(soap, &this->tt__DateTime::Time); - soap_serialize_PointerTott__Date(soap, &this->tt__DateTime::Date); -#endif -} - -int tt__DateTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DateTime(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DateTime(struct soap *soap, const char *tag, int id, const tt__DateTime *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DateTime), type)) - return soap->error; - if (!a->tt__DateTime::Time) - { if (soap_element_empty(soap, "tt:Time", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Time(soap, "tt:Time", -1, &a->tt__DateTime::Time, "")) - return soap->error; - if (!a->tt__DateTime::Date) - { if (soap_element_empty(soap, "tt:Date", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Date(soap, "tt:Date", -1, &a->tt__DateTime::Date, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DateTime::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DateTime(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DateTime * SOAP_FMAC4 soap_in_tt__DateTime(struct soap *soap, const char *tag, tt__DateTime *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DateTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DateTime, sizeof(tt__DateTime), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DateTime) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DateTime *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Time1 = 1; - size_t soap_flag_Date1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Time1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Time(soap, "tt:Time", &a->tt__DateTime::Time, "tt:Time")) - { soap_flag_Time1--; - continue; - } - } - if (soap_flag_Date1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Date(soap, "tt:Date", &a->tt__DateTime::Date, "tt:Date")) - { soap_flag_Date1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__DateTime::Time || !a->tt__DateTime::Date)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DateTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DateTime, SOAP_TYPE_tt__DateTime, sizeof(tt__DateTime), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DateTime * SOAP_FMAC2 soap_instantiate_tt__DateTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DateTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DateTime *p; - size_t k = sizeof(tt__DateTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DateTime, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DateTime); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DateTime, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DateTime location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DateTime::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DateTime(soap, tag ? tag : "tt:DateTime", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DateTime::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DateTime(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DateTime * SOAP_FMAC4 soap_get_tt__DateTime(struct soap *soap, tt__DateTime *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DateTime(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemDateTimeExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemDateTimeExtension::__any); -} - -void tt__SystemDateTimeExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemDateTimeExtension::__any); -#endif -} - -int tt__SystemDateTimeExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemDateTimeExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemDateTimeExtension(struct soap *soap, const char *tag, int id, const tt__SystemDateTimeExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemDateTimeExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SystemDateTimeExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemDateTimeExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemDateTimeExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemDateTimeExtension * SOAP_FMAC4 soap_in_tt__SystemDateTimeExtension(struct soap *soap, const char *tag, tt__SystemDateTimeExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemDateTimeExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemDateTimeExtension, sizeof(tt__SystemDateTimeExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemDateTimeExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemDateTimeExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SystemDateTimeExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SystemDateTimeExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemDateTimeExtension, SOAP_TYPE_tt__SystemDateTimeExtension, sizeof(tt__SystemDateTimeExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemDateTimeExtension * SOAP_FMAC2 soap_instantiate_tt__SystemDateTimeExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemDateTimeExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemDateTimeExtension *p; - size_t k = sizeof(tt__SystemDateTimeExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemDateTimeExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemDateTimeExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemDateTimeExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemDateTimeExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemDateTimeExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemDateTimeExtension(soap, tag ? tag : "tt:SystemDateTimeExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemDateTimeExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemDateTimeExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemDateTimeExtension * SOAP_FMAC4 soap_get_tt__SystemDateTimeExtension(struct soap *soap, tt__SystemDateTimeExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemDateTimeExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemDateTime::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SetDateTimeType(soap, &this->tt__SystemDateTime::DateTimeType); - soap_default_bool(soap, &this->tt__SystemDateTime::DaylightSavings); - this->tt__SystemDateTime::TimeZone = NULL; - this->tt__SystemDateTime::UTCDateTime = NULL; - this->tt__SystemDateTime::LocalDateTime = NULL; - this->tt__SystemDateTime::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__SystemDateTime::__anyAttribute); -} - -void tt__SystemDateTime::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SystemDateTime::DaylightSavings, SOAP_TYPE_bool); - soap_serialize_PointerTott__TimeZone(soap, &this->tt__SystemDateTime::TimeZone); - soap_serialize_PointerTott__DateTime(soap, &this->tt__SystemDateTime::UTCDateTime); - soap_serialize_PointerTott__DateTime(soap, &this->tt__SystemDateTime::LocalDateTime); - soap_serialize_PointerTott__SystemDateTimeExtension(soap, &this->tt__SystemDateTime::Extension); -#endif -} - -int tt__SystemDateTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemDateTime(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemDateTime(struct soap *soap, const char *tag, int id, const tt__SystemDateTime *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SystemDateTime*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemDateTime), type)) - return soap->error; - if (soap_out_tt__SetDateTimeType(soap, "tt:DateTimeType", -1, &a->tt__SystemDateTime::DateTimeType, "")) - return soap->error; - if (soap_out_bool(soap, "tt:DaylightSavings", -1, &a->tt__SystemDateTime::DaylightSavings, "")) - return soap->error; - if (soap_out_PointerTott__TimeZone(soap, "tt:TimeZone", -1, &a->tt__SystemDateTime::TimeZone, "")) - return soap->error; - if (soap_out_PointerTott__DateTime(soap, "tt:UTCDateTime", -1, &a->tt__SystemDateTime::UTCDateTime, "")) - return soap->error; - if (soap_out_PointerTott__DateTime(soap, "tt:LocalDateTime", -1, &a->tt__SystemDateTime::LocalDateTime, "")) - return soap->error; - if (soap_out_PointerTott__SystemDateTimeExtension(soap, "tt:Extension", -1, &a->tt__SystemDateTime::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemDateTime::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemDateTime(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemDateTime * SOAP_FMAC4 soap_in_tt__SystemDateTime(struct soap *soap, const char *tag, tt__SystemDateTime *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemDateTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemDateTime, sizeof(tt__SystemDateTime), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemDateTime) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemDateTime *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SystemDateTime*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DateTimeType1 = 1; - size_t soap_flag_DaylightSavings1 = 1; - size_t soap_flag_TimeZone1 = 1; - size_t soap_flag_UTCDateTime1 = 1; - size_t soap_flag_LocalDateTime1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DateTimeType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SetDateTimeType(soap, "tt:DateTimeType", &a->tt__SystemDateTime::DateTimeType, "tt:SetDateTimeType")) - { soap_flag_DateTimeType1--; - continue; - } - } - if (soap_flag_DaylightSavings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:DaylightSavings", &a->tt__SystemDateTime::DaylightSavings, "xsd:boolean")) - { soap_flag_DaylightSavings1--; - continue; - } - } - if (soap_flag_TimeZone1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TimeZone(soap, "tt:TimeZone", &a->tt__SystemDateTime::TimeZone, "tt:TimeZone")) - { soap_flag_TimeZone1--; - continue; - } - } - if (soap_flag_UTCDateTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DateTime(soap, "tt:UTCDateTime", &a->tt__SystemDateTime::UTCDateTime, "tt:DateTime")) - { soap_flag_UTCDateTime1--; - continue; - } - } - if (soap_flag_LocalDateTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DateTime(soap, "tt:LocalDateTime", &a->tt__SystemDateTime::LocalDateTime, "tt:DateTime")) - { soap_flag_LocalDateTime1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SystemDateTimeExtension(soap, "tt:Extension", &a->tt__SystemDateTime::Extension, "tt:SystemDateTimeExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DateTimeType1 > 0 || soap_flag_DaylightSavings1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SystemDateTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemDateTime, SOAP_TYPE_tt__SystemDateTime, sizeof(tt__SystemDateTime), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemDateTime * SOAP_FMAC2 soap_instantiate_tt__SystemDateTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemDateTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemDateTime *p; - size_t k = sizeof(tt__SystemDateTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemDateTime, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemDateTime); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemDateTime, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemDateTime location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemDateTime::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemDateTime(soap, tag ? tag : "tt:SystemDateTime", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemDateTime::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemDateTime(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemDateTime * SOAP_FMAC4 soap_get_tt__SystemDateTime(struct soap *soap, tt__SystemDateTime *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemDateTime(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemLogUri::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SystemLogType(soap, &this->tt__SystemLogUri::Type); - soap_default_xsd__anyURI(soap, &this->tt__SystemLogUri::Uri); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemLogUri::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__SystemLogUri::__anyAttribute); -} - -void tt__SystemLogUri::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SystemLogUri::Uri, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__SystemLogUri::Uri); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemLogUri::__any); -#endif -} - -int tt__SystemLogUri::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemLogUri(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogUri(struct soap *soap, const char *tag, int id, const tt__SystemLogUri *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SystemLogUri*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemLogUri), type)) - return soap->error; - if (soap_out_tt__SystemLogType(soap, "tt:Type", -1, &a->tt__SystemLogUri::Type, "")) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:Uri", -1, &a->tt__SystemLogUri::Uri, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SystemLogUri::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemLogUri::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemLogUri(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemLogUri * SOAP_FMAC4 soap_in_tt__SystemLogUri(struct soap *soap, const char *tag, tt__SystemLogUri *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemLogUri*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemLogUri, sizeof(tt__SystemLogUri), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemLogUri) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemLogUri *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SystemLogUri*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_Uri1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SystemLogType(soap, "tt:Type", &a->tt__SystemLogUri::Type, "tt:SystemLogType")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_Uri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:Uri", &a->tt__SystemLogUri::Uri, "xsd:anyURI")) - { soap_flag_Uri1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SystemLogUri::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0 || soap_flag_Uri1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SystemLogUri *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemLogUri, SOAP_TYPE_tt__SystemLogUri, sizeof(tt__SystemLogUri), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemLogUri * SOAP_FMAC2 soap_instantiate_tt__SystemLogUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemLogUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemLogUri *p; - size_t k = sizeof(tt__SystemLogUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemLogUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemLogUri); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemLogUri, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemLogUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemLogUri::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemLogUri(soap, tag ? tag : "tt:SystemLogUri", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemLogUri::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemLogUri(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemLogUri * SOAP_FMAC4 soap_get_tt__SystemLogUri(struct soap *soap, tt__SystemLogUri *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemLogUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemLogUriList::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__SystemLogUri(soap, &this->tt__SystemLogUriList::SystemLog); -} - -void tt__SystemLogUriList::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__SystemLogUri(soap, &this->tt__SystemLogUriList::SystemLog); -#endif -} - -int tt__SystemLogUriList::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemLogUriList(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogUriList(struct soap *soap, const char *tag, int id, const tt__SystemLogUriList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemLogUriList), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__SystemLogUri(soap, "tt:SystemLog", -1, &a->tt__SystemLogUriList::SystemLog, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemLogUriList::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemLogUriList(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemLogUriList * SOAP_FMAC4 soap_in_tt__SystemLogUriList(struct soap *soap, const char *tag, tt__SystemLogUriList *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemLogUriList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemLogUriList, sizeof(tt__SystemLogUriList), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemLogUriList) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemLogUriList *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__SystemLogUri(soap, "tt:SystemLog", &a->tt__SystemLogUriList::SystemLog, "tt:SystemLogUri")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SystemLogUriList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemLogUriList, SOAP_TYPE_tt__SystemLogUriList, sizeof(tt__SystemLogUriList), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemLogUriList * SOAP_FMAC2 soap_instantiate_tt__SystemLogUriList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemLogUriList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemLogUriList *p; - size_t k = sizeof(tt__SystemLogUriList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemLogUriList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemLogUriList); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemLogUriList, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemLogUriList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemLogUriList::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemLogUriList(soap, tag ? tag : "tt:SystemLogUriList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemLogUriList::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemLogUriList(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemLogUriList * SOAP_FMAC4 soap_get_tt__SystemLogUriList(struct soap *soap, tt__SystemLogUriList *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemLogUriList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__BackupFile::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__BackupFile::Name); - this->tt__BackupFile::Data = NULL; -} - -void tt__BackupFile::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__BackupFile::Name, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__BackupFile::Name); - soap_serialize_PointerTott__AttachmentData(soap, &this->tt__BackupFile::Data); -#endif -} - -int tt__BackupFile::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__BackupFile(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BackupFile(struct soap *soap, const char *tag, int id, const tt__BackupFile *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__BackupFile), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Name", -1, &a->tt__BackupFile::Name, "")) - return soap->error; - if (!a->tt__BackupFile::Data) - { if (soap_element_empty(soap, "tt:Data", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AttachmentData(soap, "tt:Data", -1, &a->tt__BackupFile::Data, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__BackupFile::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__BackupFile(soap, tag, this, type); -} - -SOAP_FMAC3 tt__BackupFile * SOAP_FMAC4 soap_in_tt__BackupFile(struct soap *soap, const char *tag, tt__BackupFile *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__BackupFile*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BackupFile, sizeof(tt__BackupFile), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__BackupFile) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__BackupFile *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_Data1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Name", &a->tt__BackupFile::Name, "xsd:string")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_Data1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AttachmentData(soap, "tt:Data", &a->tt__BackupFile::Data, "tt:AttachmentData")) - { soap_flag_Data1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0 || !a->tt__BackupFile::Data)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__BackupFile *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__BackupFile, SOAP_TYPE_tt__BackupFile, sizeof(tt__BackupFile), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__BackupFile * SOAP_FMAC2 soap_instantiate_tt__BackupFile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__BackupFile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__BackupFile *p; - size_t k = sizeof(tt__BackupFile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__BackupFile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__BackupFile); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__BackupFile, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__BackupFile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__BackupFile::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__BackupFile(soap, tag ? tag : "tt:BackupFile", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__BackupFile::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__BackupFile(soap, this, tag, type); -} - -SOAP_FMAC3 tt__BackupFile * SOAP_FMAC4 soap_get_tt__BackupFile(struct soap *soap, tt__BackupFile *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BackupFile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AttachmentData::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__AttachmentData::xop__Include_ = NULL; - this->tt__AttachmentData::xmime__contentType = NULL; -} - -void tt__AttachmentData::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxop__Include(soap, &this->tt__AttachmentData::xop__Include_); -#endif -} - -int tt__AttachmentData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AttachmentData(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AttachmentData(struct soap *soap, const char *tag, int id, const tt__AttachmentData *a, const char *type) -{ - if (((tt__AttachmentData*)a)->xmime__contentType) - { soap_set_attr(soap, "xmime:contentType", soap__xmime__contentType2s(soap, *((tt__AttachmentData*)a)->xmime__contentType), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AttachmentData), type)) - return soap->error; - if (!a->tt__AttachmentData::xop__Include_) - { if (soap_element_empty(soap, "xop:Include", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerToxop__Include(soap, "xop:Include", -1, &a->tt__AttachmentData::xop__Include_, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AttachmentData::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AttachmentData(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AttachmentData * SOAP_FMAC4 soap_in_tt__AttachmentData(struct soap *soap, const char *tag, tt__AttachmentData *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AttachmentData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AttachmentData, sizeof(tt__AttachmentData), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AttachmentData) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AttachmentData *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "xmime:contentType", 1, 0); - if (t) - { - if (!(((tt__AttachmentData*)a)->xmime__contentType = soap_new__xmime__contentType(soap))) - return NULL; - if (soap_s2_xmime__contentType(soap, t, ((tt__AttachmentData*)a)->xmime__contentType)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_xop__Include_1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_xop__Include_1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxop__Include(soap, "xop:Include", &a->tt__AttachmentData::xop__Include_, "xop:Include")) - { soap_flag_xop__Include_1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__AttachmentData::xop__Include_)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AttachmentData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AttachmentData, SOAP_TYPE_tt__AttachmentData, sizeof(tt__AttachmentData), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AttachmentData * SOAP_FMAC2 soap_instantiate_tt__AttachmentData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AttachmentData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AttachmentData *p; - size_t k = sizeof(tt__AttachmentData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AttachmentData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AttachmentData); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AttachmentData, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AttachmentData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AttachmentData::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AttachmentData(soap, tag ? tag : "tt:AttachmentData", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AttachmentData::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AttachmentData(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AttachmentData * SOAP_FMAC4 soap_get_tt__AttachmentData(struct soap *soap, tt__AttachmentData *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AttachmentData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__BinaryData::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__BinaryData::Data.xsd__base64Binary::soap_default(soap); - this->tt__BinaryData::xmime__contentType = NULL; -} - -void tt__BinaryData::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__BinaryData::Data, SOAP_TYPE_xsd__base64Binary); - this->tt__BinaryData::Data.soap_serialize(soap); -#endif -} - -int tt__BinaryData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__BinaryData(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BinaryData(struct soap *soap, const char *tag, int id, const tt__BinaryData *a, const char *type) -{ - if (((tt__BinaryData*)a)->xmime__contentType) - { soap_set_attr(soap, "xmime:contentType", soap__xmime__contentType2s(soap, *((tt__BinaryData*)a)->xmime__contentType), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__BinaryData), type)) - return soap->error; - if ((a->tt__BinaryData::Data).soap_out(soap, "tt:Data", -1, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__BinaryData::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__BinaryData(soap, tag, this, type); -} - -SOAP_FMAC3 tt__BinaryData * SOAP_FMAC4 soap_in_tt__BinaryData(struct soap *soap, const char *tag, tt__BinaryData *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__BinaryData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__BinaryData, sizeof(tt__BinaryData), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__BinaryData) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__BinaryData *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "xmime:contentType", 1, 0); - if (t) - { - if (!(((tt__BinaryData*)a)->xmime__contentType = soap_new__xmime__contentType(soap))) - return NULL; - if (soap_s2_xmime__contentType(soap, t, ((tt__BinaryData*)a)->xmime__contentType)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Data1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Data1 && soap->error == SOAP_TAG_MISMATCH) - { if ((a->tt__BinaryData::Data).soap_in(soap, "tt:Data", "xsd:base64Binary")) - { soap_flag_Data1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Data1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__BinaryData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__BinaryData, SOAP_TYPE_tt__BinaryData, sizeof(tt__BinaryData), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__BinaryData * SOAP_FMAC2 soap_instantiate_tt__BinaryData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__BinaryData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__BinaryData *p; - size_t k = sizeof(tt__BinaryData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__BinaryData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__BinaryData); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__BinaryData, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__BinaryData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__BinaryData::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__BinaryData(soap, tag ? tag : "tt:BinaryData", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__BinaryData::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__BinaryData(soap, this, tag, type); -} - -SOAP_FMAC3 tt__BinaryData * SOAP_FMAC4 soap_get_tt__BinaryData(struct soap *soap, tt__BinaryData *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__BinaryData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SupportInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__SupportInformation::Binary = NULL; - this->tt__SupportInformation::String = NULL; -} - -void tt__SupportInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AttachmentData(soap, &this->tt__SupportInformation::Binary); - soap_serialize_PointerTostd__string(soap, &this->tt__SupportInformation::String); -#endif -} - -int tt__SupportInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SupportInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportInformation(struct soap *soap, const char *tag, int id, const tt__SupportInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SupportInformation), type)) - return soap->error; - if (soap_out_PointerTott__AttachmentData(soap, "tt:Binary", -1, &a->tt__SupportInformation::Binary, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:String", -1, &a->tt__SupportInformation::String, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SupportInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SupportInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SupportInformation * SOAP_FMAC4 soap_in_tt__SupportInformation(struct soap *soap, const char *tag, tt__SupportInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SupportInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SupportInformation, sizeof(tt__SupportInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SupportInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SupportInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Binary1 = 1; - size_t soap_flag_String1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Binary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AttachmentData(soap, "tt:Binary", &a->tt__SupportInformation::Binary, "tt:AttachmentData")) - { soap_flag_Binary1--; - continue; - } - } - if (soap_flag_String1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:String", &a->tt__SupportInformation::String, "xsd:string")) - { soap_flag_String1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SupportInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SupportInformation, SOAP_TYPE_tt__SupportInformation, sizeof(tt__SupportInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SupportInformation * SOAP_FMAC2 soap_instantiate_tt__SupportInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SupportInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SupportInformation *p; - size_t k = sizeof(tt__SupportInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SupportInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SupportInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SupportInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SupportInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SupportInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SupportInformation(soap, tag ? tag : "tt:SupportInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SupportInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SupportInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SupportInformation * SOAP_FMAC4 soap_get_tt__SupportInformation(struct soap *soap, tt__SupportInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SupportInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemLog::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__SystemLog::Binary = NULL; - this->tt__SystemLog::String = NULL; -} - -void tt__SystemLog::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AttachmentData(soap, &this->tt__SystemLog::Binary); - soap_serialize_PointerTostd__string(soap, &this->tt__SystemLog::String); -#endif -} - -int tt__SystemLog::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemLog(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLog(struct soap *soap, const char *tag, int id, const tt__SystemLog *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemLog), type)) - return soap->error; - if (soap_out_PointerTott__AttachmentData(soap, "tt:Binary", -1, &a->tt__SystemLog::Binary, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:String", -1, &a->tt__SystemLog::String, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemLog::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemLog(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemLog * SOAP_FMAC4 soap_in_tt__SystemLog(struct soap *soap, const char *tag, tt__SystemLog *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemLog*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemLog, sizeof(tt__SystemLog), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemLog) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemLog *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Binary1 = 1; - size_t soap_flag_String1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Binary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AttachmentData(soap, "tt:Binary", &a->tt__SystemLog::Binary, "tt:AttachmentData")) - { soap_flag_Binary1--; - continue; - } - } - if (soap_flag_String1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:String", &a->tt__SystemLog::String, "xsd:string")) - { soap_flag_String1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SystemLog *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemLog, SOAP_TYPE_tt__SystemLog, sizeof(tt__SystemLog), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemLog * SOAP_FMAC2 soap_instantiate_tt__SystemLog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemLog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemLog *p; - size_t k = sizeof(tt__SystemLog); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemLog, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemLog); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemLog, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemLog location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemLog::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemLog(soap, tag ? tag : "tt:SystemLog", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemLog::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemLog(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemLog * SOAP_FMAC4 soap_get_tt__SystemLog(struct soap *soap, tt__SystemLog *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemLog(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsDeviceExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsDeviceExtension::__any); -} - -void tt__AnalyticsDeviceExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsDeviceExtension::__any); -#endif -} - -int tt__AnalyticsDeviceExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsDeviceExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceExtension(struct soap *soap, const char *tag, int id, const tt__AnalyticsDeviceExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsDeviceExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsDeviceExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsDeviceExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsDeviceExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceExtension * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceExtension(struct soap *soap, const char *tag, tt__AnalyticsDeviceExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsDeviceExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsDeviceExtension, sizeof(tt__AnalyticsDeviceExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsDeviceExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsDeviceExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsDeviceExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AnalyticsDeviceExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsDeviceExtension, SOAP_TYPE_tt__AnalyticsDeviceExtension, sizeof(tt__AnalyticsDeviceExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsDeviceExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsDeviceExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsDeviceExtension *p; - size_t k = sizeof(tt__AnalyticsDeviceExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsDeviceExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsDeviceExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsDeviceExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsDeviceExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsDeviceExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsDeviceExtension(soap, tag ? tag : "tt:AnalyticsDeviceExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsDeviceExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsDeviceExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceExtension * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceExtension(struct soap *soap, tt__AnalyticsDeviceExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsDeviceExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsDeviceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__AnalyticsDeviceCapabilities::XAddr); - this->tt__AnalyticsDeviceCapabilities::RuleSupport = NULL; - this->tt__AnalyticsDeviceCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsDeviceCapabilities::__anyAttribute); -} - -void tt__AnalyticsDeviceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AnalyticsDeviceCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__AnalyticsDeviceCapabilities::XAddr); - soap_serialize_PointerTobool(soap, &this->tt__AnalyticsDeviceCapabilities::RuleSupport); - soap_serialize_PointerTott__AnalyticsDeviceExtension(soap, &this->tt__AnalyticsDeviceCapabilities::Extension); -#endif -} - -int tt__AnalyticsDeviceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsDeviceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceCapabilities(struct soap *soap, const char *tag, int id, const tt__AnalyticsDeviceCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsDeviceCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsDeviceCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__AnalyticsDeviceCapabilities::XAddr, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:RuleSupport", -1, &a->tt__AnalyticsDeviceCapabilities::RuleSupport, "")) - return soap->error; - if (soap_out_PointerTott__AnalyticsDeviceExtension(soap, "tt:Extension", -1, &a->tt__AnalyticsDeviceCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsDeviceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsDeviceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceCapabilities * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceCapabilities(struct soap *soap, const char *tag, tt__AnalyticsDeviceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsDeviceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsDeviceCapabilities, sizeof(tt__AnalyticsDeviceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsDeviceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsDeviceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsDeviceCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_RuleSupport1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__AnalyticsDeviceCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_RuleSupport1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:RuleSupport", &a->tt__AnalyticsDeviceCapabilities::RuleSupport, "xsd:boolean")) - { soap_flag_RuleSupport1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsDeviceExtension(soap, "tt:Extension", &a->tt__AnalyticsDeviceCapabilities::Extension, "tt:AnalyticsDeviceExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsDeviceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsDeviceCapabilities, SOAP_TYPE_tt__AnalyticsDeviceCapabilities, sizeof(tt__AnalyticsDeviceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsDeviceCapabilities * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsDeviceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsDeviceCapabilities *p; - size_t k = sizeof(tt__AnalyticsDeviceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsDeviceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsDeviceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsDeviceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsDeviceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsDeviceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsDeviceCapabilities(soap, tag ? tag : "tt:AnalyticsDeviceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsDeviceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsDeviceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsDeviceCapabilities * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceCapabilities(struct soap *soap, tt__AnalyticsDeviceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsDeviceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReceiverCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__ReceiverCapabilities::XAddr); - soap_default_bool(soap, &this->tt__ReceiverCapabilities::RTP_USCOREMulticast); - soap_default_bool(soap, &this->tt__ReceiverCapabilities::RTP_USCORETCP); - soap_default_bool(soap, &this->tt__ReceiverCapabilities::RTP_USCORERTSP_USCORETCP); - soap_default_int(soap, &this->tt__ReceiverCapabilities::SupportedReceivers); - soap_default_int(soap, &this->tt__ReceiverCapabilities::MaximumRTSPURILength); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReceiverCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ReceiverCapabilities::__anyAttribute); -} - -void tt__ReceiverCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ReceiverCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__ReceiverCapabilities::XAddr); - soap_embedded(soap, &this->tt__ReceiverCapabilities::RTP_USCOREMulticast, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__ReceiverCapabilities::RTP_USCORETCP, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__ReceiverCapabilities::RTP_USCORERTSP_USCORETCP, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__ReceiverCapabilities::SupportedReceivers, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__ReceiverCapabilities::MaximumRTSPURILength, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReceiverCapabilities::__any); -#endif -} - -int tt__ReceiverCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReceiverCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverCapabilities(struct soap *soap, const char *tag, int id, const tt__ReceiverCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ReceiverCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReceiverCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__ReceiverCapabilities::XAddr, "")) - return soap->error; - if (soap_out_bool(soap, "tt:RTP_Multicast", -1, &a->tt__ReceiverCapabilities::RTP_USCOREMulticast, "")) - return soap->error; - if (soap_out_bool(soap, "tt:RTP_TCP", -1, &a->tt__ReceiverCapabilities::RTP_USCORETCP, "")) - return soap->error; - if (soap_out_bool(soap, "tt:RTP_RTSP_TCP", -1, &a->tt__ReceiverCapabilities::RTP_USCORERTSP_USCORETCP, "")) - return soap->error; - if (soap_out_int(soap, "tt:SupportedReceivers", -1, &a->tt__ReceiverCapabilities::SupportedReceivers, "")) - return soap->error; - if (soap_out_int(soap, "tt:MaximumRTSPURILength", -1, &a->tt__ReceiverCapabilities::MaximumRTSPURILength, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ReceiverCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ReceiverCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReceiverCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReceiverCapabilities * SOAP_FMAC4 soap_in_tt__ReceiverCapabilities(struct soap *soap, const char *tag, tt__ReceiverCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ReceiverCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReceiverCapabilities, sizeof(tt__ReceiverCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReceiverCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ReceiverCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ReceiverCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_RTP_USCOREMulticast1 = 1; - size_t soap_flag_RTP_USCORETCP1 = 1; - size_t soap_flag_RTP_USCORERTSP_USCORETCP1 = 1; - size_t soap_flag_SupportedReceivers1 = 1; - size_t soap_flag_MaximumRTSPURILength1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__ReceiverCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_RTP_USCOREMulticast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:RTP_Multicast", &a->tt__ReceiverCapabilities::RTP_USCOREMulticast, "xsd:boolean")) - { soap_flag_RTP_USCOREMulticast1--; - continue; - } - } - if (soap_flag_RTP_USCORETCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:RTP_TCP", &a->tt__ReceiverCapabilities::RTP_USCORETCP, "xsd:boolean")) - { soap_flag_RTP_USCORETCP1--; - continue; - } - } - if (soap_flag_RTP_USCORERTSP_USCORETCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:RTP_RTSP_TCP", &a->tt__ReceiverCapabilities::RTP_USCORERTSP_USCORETCP, "xsd:boolean")) - { soap_flag_RTP_USCORERTSP_USCORETCP1--; - continue; - } - } - if (soap_flag_SupportedReceivers1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:SupportedReceivers", &a->tt__ReceiverCapabilities::SupportedReceivers, "xsd:int")) - { soap_flag_SupportedReceivers1--; - continue; - } - } - if (soap_flag_MaximumRTSPURILength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:MaximumRTSPURILength", &a->tt__ReceiverCapabilities::MaximumRTSPURILength, "xsd:int")) - { soap_flag_MaximumRTSPURILength1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ReceiverCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || soap_flag_RTP_USCOREMulticast1 > 0 || soap_flag_RTP_USCORETCP1 > 0 || soap_flag_RTP_USCORERTSP_USCORETCP1 > 0 || soap_flag_SupportedReceivers1 > 0 || soap_flag_MaximumRTSPURILength1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ReceiverCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReceiverCapabilities, SOAP_TYPE_tt__ReceiverCapabilities, sizeof(tt__ReceiverCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ReceiverCapabilities * SOAP_FMAC2 soap_instantiate_tt__ReceiverCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReceiverCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReceiverCapabilities *p; - size_t k = sizeof(tt__ReceiverCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReceiverCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReceiverCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReceiverCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReceiverCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReceiverCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReceiverCapabilities(soap, tag ? tag : "tt:ReceiverCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReceiverCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReceiverCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReceiverCapabilities * SOAP_FMAC4 soap_get_tt__ReceiverCapabilities(struct soap *soap, tt__ReceiverCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReceiverCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ReplayCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__ReplayCapabilities::XAddr); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReplayCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ReplayCapabilities::__anyAttribute); -} - -void tt__ReplayCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ReplayCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__ReplayCapabilities::XAddr); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ReplayCapabilities::__any); -#endif -} - -int tt__ReplayCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ReplayCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReplayCapabilities(struct soap *soap, const char *tag, int id, const tt__ReplayCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ReplayCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ReplayCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__ReplayCapabilities::XAddr, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ReplayCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ReplayCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ReplayCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ReplayCapabilities * SOAP_FMAC4 soap_in_tt__ReplayCapabilities(struct soap *soap, const char *tag, tt__ReplayCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ReplayCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ReplayCapabilities, sizeof(tt__ReplayCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ReplayCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ReplayCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ReplayCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__ReplayCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ReplayCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ReplayCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ReplayCapabilities, SOAP_TYPE_tt__ReplayCapabilities, sizeof(tt__ReplayCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ReplayCapabilities * SOAP_FMAC2 soap_instantiate_tt__ReplayCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ReplayCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ReplayCapabilities *p; - size_t k = sizeof(tt__ReplayCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ReplayCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ReplayCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ReplayCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ReplayCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ReplayCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ReplayCapabilities(soap, tag ? tag : "tt:ReplayCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ReplayCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ReplayCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ReplayCapabilities * SOAP_FMAC4 soap_get_tt__ReplayCapabilities(struct soap *soap, tt__ReplayCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ReplayCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SearchCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__SearchCapabilities::XAddr); - soap_default_bool(soap, &this->tt__SearchCapabilities::MetadataSearch); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SearchCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__SearchCapabilities::__anyAttribute); -} - -void tt__SearchCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SearchCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__SearchCapabilities::XAddr); - soap_embedded(soap, &this->tt__SearchCapabilities::MetadataSearch, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SearchCapabilities::__any); -#endif -} - -int tt__SearchCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SearchCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchCapabilities(struct soap *soap, const char *tag, int id, const tt__SearchCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SearchCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SearchCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__SearchCapabilities::XAddr, "")) - return soap->error; - if (soap_out_bool(soap, "tt:MetadataSearch", -1, &a->tt__SearchCapabilities::MetadataSearch, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SearchCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SearchCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SearchCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SearchCapabilities * SOAP_FMAC4 soap_in_tt__SearchCapabilities(struct soap *soap, const char *tag, tt__SearchCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SearchCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SearchCapabilities, sizeof(tt__SearchCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SearchCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SearchCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SearchCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_MetadataSearch1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__SearchCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_MetadataSearch1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:MetadataSearch", &a->tt__SearchCapabilities::MetadataSearch, "xsd:boolean")) - { soap_flag_MetadataSearch1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SearchCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || soap_flag_MetadataSearch1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SearchCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SearchCapabilities, SOAP_TYPE_tt__SearchCapabilities, sizeof(tt__SearchCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SearchCapabilities * SOAP_FMAC2 soap_instantiate_tt__SearchCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SearchCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SearchCapabilities *p; - size_t k = sizeof(tt__SearchCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SearchCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SearchCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SearchCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SearchCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SearchCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SearchCapabilities(soap, tag ? tag : "tt:SearchCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SearchCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SearchCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SearchCapabilities * SOAP_FMAC4 soap_get_tt__SearchCapabilities(struct soap *soap, tt__SearchCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SearchCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RecordingCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__RecordingCapabilities::XAddr); - soap_default_bool(soap, &this->tt__RecordingCapabilities::ReceiverSource); - soap_default_bool(soap, &this->tt__RecordingCapabilities::MediaProfileSource); - soap_default_bool(soap, &this->tt__RecordingCapabilities::DynamicRecordings); - soap_default_bool(soap, &this->tt__RecordingCapabilities::DynamicTracks); - soap_default_int(soap, &this->tt__RecordingCapabilities::MaxStringLength); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__RecordingCapabilities::__anyAttribute); -} - -void tt__RecordingCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__RecordingCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__RecordingCapabilities::XAddr); - soap_embedded(soap, &this->tt__RecordingCapabilities::ReceiverSource, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__RecordingCapabilities::MediaProfileSource, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__RecordingCapabilities::DynamicRecordings, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__RecordingCapabilities::DynamicTracks, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__RecordingCapabilities::MaxStringLength, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RecordingCapabilities::__any); -#endif -} - -int tt__RecordingCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RecordingCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingCapabilities(struct soap *soap, const char *tag, int id, const tt__RecordingCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RecordingCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RecordingCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__RecordingCapabilities::XAddr, "")) - return soap->error; - if (soap_out_bool(soap, "tt:ReceiverSource", -1, &a->tt__RecordingCapabilities::ReceiverSource, "")) - return soap->error; - if (soap_out_bool(soap, "tt:MediaProfileSource", -1, &a->tt__RecordingCapabilities::MediaProfileSource, "")) - return soap->error; - if (soap_out_bool(soap, "tt:DynamicRecordings", -1, &a->tt__RecordingCapabilities::DynamicRecordings, "")) - return soap->error; - if (soap_out_bool(soap, "tt:DynamicTracks", -1, &a->tt__RecordingCapabilities::DynamicTracks, "")) - return soap->error; - if (soap_out_int(soap, "tt:MaxStringLength", -1, &a->tt__RecordingCapabilities::MaxStringLength, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RecordingCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RecordingCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RecordingCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RecordingCapabilities * SOAP_FMAC4 soap_in_tt__RecordingCapabilities(struct soap *soap, const char *tag, tt__RecordingCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RecordingCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RecordingCapabilities, sizeof(tt__RecordingCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RecordingCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RecordingCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RecordingCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_ReceiverSource1 = 1; - size_t soap_flag_MediaProfileSource1 = 1; - size_t soap_flag_DynamicRecordings1 = 1; - size_t soap_flag_DynamicTracks1 = 1; - size_t soap_flag_MaxStringLength1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__RecordingCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_ReceiverSource1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:ReceiverSource", &a->tt__RecordingCapabilities::ReceiverSource, "xsd:boolean")) - { soap_flag_ReceiverSource1--; - continue; - } - } - if (soap_flag_MediaProfileSource1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:MediaProfileSource", &a->tt__RecordingCapabilities::MediaProfileSource, "xsd:boolean")) - { soap_flag_MediaProfileSource1--; - continue; - } - } - if (soap_flag_DynamicRecordings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:DynamicRecordings", &a->tt__RecordingCapabilities::DynamicRecordings, "xsd:boolean")) - { soap_flag_DynamicRecordings1--; - continue; - } - } - if (soap_flag_DynamicTracks1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:DynamicTracks", &a->tt__RecordingCapabilities::DynamicTracks, "xsd:boolean")) - { soap_flag_DynamicTracks1--; - continue; - } - } - if (soap_flag_MaxStringLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:MaxStringLength", &a->tt__RecordingCapabilities::MaxStringLength, "xsd:int")) - { soap_flag_MaxStringLength1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RecordingCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || soap_flag_ReceiverSource1 > 0 || soap_flag_MediaProfileSource1 > 0 || soap_flag_DynamicRecordings1 > 0 || soap_flag_DynamicTracks1 > 0 || soap_flag_MaxStringLength1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RecordingCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RecordingCapabilities, SOAP_TYPE_tt__RecordingCapabilities, sizeof(tt__RecordingCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RecordingCapabilities * SOAP_FMAC2 soap_instantiate_tt__RecordingCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RecordingCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RecordingCapabilities *p; - size_t k = sizeof(tt__RecordingCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RecordingCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RecordingCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RecordingCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RecordingCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RecordingCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RecordingCapabilities(soap, tag ? tag : "tt:RecordingCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RecordingCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RecordingCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RecordingCapabilities * SOAP_FMAC4 soap_get_tt__RecordingCapabilities(struct soap *soap, tt__RecordingCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RecordingCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DisplayCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__DisplayCapabilities::XAddr); - soap_default_bool(soap, &this->tt__DisplayCapabilities::FixedLayout); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DisplayCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__DisplayCapabilities::__anyAttribute); -} - -void tt__DisplayCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DisplayCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__DisplayCapabilities::XAddr); - soap_embedded(soap, &this->tt__DisplayCapabilities::FixedLayout, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DisplayCapabilities::__any); -#endif -} - -int tt__DisplayCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DisplayCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DisplayCapabilities(struct soap *soap, const char *tag, int id, const tt__DisplayCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DisplayCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DisplayCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__DisplayCapabilities::XAddr, "")) - return soap->error; - if (soap_out_bool(soap, "tt:FixedLayout", -1, &a->tt__DisplayCapabilities::FixedLayout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DisplayCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DisplayCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DisplayCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DisplayCapabilities * SOAP_FMAC4 soap_in_tt__DisplayCapabilities(struct soap *soap, const char *tag, tt__DisplayCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DisplayCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DisplayCapabilities, sizeof(tt__DisplayCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DisplayCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DisplayCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DisplayCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_FixedLayout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__DisplayCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_FixedLayout1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:FixedLayout", &a->tt__DisplayCapabilities::FixedLayout, "xsd:boolean")) - { soap_flag_FixedLayout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DisplayCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || soap_flag_FixedLayout1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DisplayCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DisplayCapabilities, SOAP_TYPE_tt__DisplayCapabilities, sizeof(tt__DisplayCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DisplayCapabilities * SOAP_FMAC2 soap_instantiate_tt__DisplayCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DisplayCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DisplayCapabilities *p; - size_t k = sizeof(tt__DisplayCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DisplayCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DisplayCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DisplayCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DisplayCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DisplayCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DisplayCapabilities(soap, tag ? tag : "tt:DisplayCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DisplayCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DisplayCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DisplayCapabilities * SOAP_FMAC4 soap_get_tt__DisplayCapabilities(struct soap *soap, tt__DisplayCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DisplayCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DeviceIOCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__DeviceIOCapabilities::XAddr); - soap_default_int(soap, &this->tt__DeviceIOCapabilities::VideoSources); - soap_default_int(soap, &this->tt__DeviceIOCapabilities::VideoOutputs); - soap_default_int(soap, &this->tt__DeviceIOCapabilities::AudioSources); - soap_default_int(soap, &this->tt__DeviceIOCapabilities::AudioOutputs); - soap_default_int(soap, &this->tt__DeviceIOCapabilities::RelayOutputs); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DeviceIOCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__DeviceIOCapabilities::__anyAttribute); -} - -void tt__DeviceIOCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DeviceIOCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__DeviceIOCapabilities::XAddr); - soap_embedded(soap, &this->tt__DeviceIOCapabilities::VideoSources, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__DeviceIOCapabilities::VideoOutputs, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__DeviceIOCapabilities::AudioSources, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__DeviceIOCapabilities::AudioOutputs, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__DeviceIOCapabilities::RelayOutputs, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DeviceIOCapabilities::__any); -#endif -} - -int tt__DeviceIOCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DeviceIOCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceIOCapabilities(struct soap *soap, const char *tag, int id, const tt__DeviceIOCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DeviceIOCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DeviceIOCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__DeviceIOCapabilities::XAddr, "")) - return soap->error; - if (soap_out_int(soap, "tt:VideoSources", -1, &a->tt__DeviceIOCapabilities::VideoSources, "")) - return soap->error; - if (soap_out_int(soap, "tt:VideoOutputs", -1, &a->tt__DeviceIOCapabilities::VideoOutputs, "")) - return soap->error; - if (soap_out_int(soap, "tt:AudioSources", -1, &a->tt__DeviceIOCapabilities::AudioSources, "")) - return soap->error; - if (soap_out_int(soap, "tt:AudioOutputs", -1, &a->tt__DeviceIOCapabilities::AudioOutputs, "")) - return soap->error; - if (soap_out_int(soap, "tt:RelayOutputs", -1, &a->tt__DeviceIOCapabilities::RelayOutputs, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DeviceIOCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DeviceIOCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DeviceIOCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DeviceIOCapabilities * SOAP_FMAC4 soap_in_tt__DeviceIOCapabilities(struct soap *soap, const char *tag, tt__DeviceIOCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DeviceIOCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DeviceIOCapabilities, sizeof(tt__DeviceIOCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DeviceIOCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DeviceIOCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DeviceIOCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_VideoSources1 = 1; - size_t soap_flag_VideoOutputs1 = 1; - size_t soap_flag_AudioSources1 = 1; - size_t soap_flag_AudioOutputs1 = 1; - size_t soap_flag_RelayOutputs1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__DeviceIOCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_VideoSources1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:VideoSources", &a->tt__DeviceIOCapabilities::VideoSources, "xsd:int")) - { soap_flag_VideoSources1--; - continue; - } - } - if (soap_flag_VideoOutputs1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:VideoOutputs", &a->tt__DeviceIOCapabilities::VideoOutputs, "xsd:int")) - { soap_flag_VideoOutputs1--; - continue; - } - } - if (soap_flag_AudioSources1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:AudioSources", &a->tt__DeviceIOCapabilities::AudioSources, "xsd:int")) - { soap_flag_AudioSources1--; - continue; - } - } - if (soap_flag_AudioOutputs1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:AudioOutputs", &a->tt__DeviceIOCapabilities::AudioOutputs, "xsd:int")) - { soap_flag_AudioOutputs1--; - continue; - } - } - if (soap_flag_RelayOutputs1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:RelayOutputs", &a->tt__DeviceIOCapabilities::RelayOutputs, "xsd:int")) - { soap_flag_RelayOutputs1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DeviceIOCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || soap_flag_VideoSources1 > 0 || soap_flag_VideoOutputs1 > 0 || soap_flag_AudioSources1 > 0 || soap_flag_AudioOutputs1 > 0 || soap_flag_RelayOutputs1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DeviceIOCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DeviceIOCapabilities, SOAP_TYPE_tt__DeviceIOCapabilities, sizeof(tt__DeviceIOCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DeviceIOCapabilities * SOAP_FMAC2 soap_instantiate_tt__DeviceIOCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DeviceIOCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DeviceIOCapabilities *p; - size_t k = sizeof(tt__DeviceIOCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DeviceIOCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DeviceIOCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DeviceIOCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DeviceIOCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DeviceIOCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DeviceIOCapabilities(soap, tag ? tag : "tt:DeviceIOCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DeviceIOCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DeviceIOCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DeviceIOCapabilities * SOAP_FMAC4 soap_get_tt__DeviceIOCapabilities(struct soap *soap, tt__DeviceIOCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DeviceIOCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__PTZCapabilities::XAddr); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PTZCapabilities::__anyAttribute); -} - -void tt__PTZCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PTZCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__PTZCapabilities::XAddr); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZCapabilities::__any); -#endif -} - -int tt__PTZCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZCapabilities(struct soap *soap, const char *tag, int id, const tt__PTZCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__PTZCapabilities::XAddr, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZCapabilities * SOAP_FMAC4 soap_in_tt__PTZCapabilities(struct soap *soap, const char *tag, tt__PTZCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZCapabilities, sizeof(tt__PTZCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__PTZCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZCapabilities, SOAP_TYPE_tt__PTZCapabilities, sizeof(tt__PTZCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZCapabilities * SOAP_FMAC2 soap_instantiate_tt__PTZCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZCapabilities *p; - size_t k = sizeof(tt__PTZCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZCapabilities(soap, tag ? tag : "tt:PTZCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZCapabilities * SOAP_FMAC4 soap_get_tt__PTZCapabilities(struct soap *soap, tt__PTZCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ImagingCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__ImagingCapabilities::XAddr); - soap_default_xsd__anyAttribute(soap, &this->tt__ImagingCapabilities::__anyAttribute); -} - -void tt__ImagingCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ImagingCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__ImagingCapabilities::XAddr); -#endif -} - -int tt__ImagingCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ImagingCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingCapabilities(struct soap *soap, const char *tag, int id, const tt__ImagingCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ImagingCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ImagingCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__ImagingCapabilities::XAddr, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ImagingCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ImagingCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ImagingCapabilities * SOAP_FMAC4 soap_in_tt__ImagingCapabilities(struct soap *soap, const char *tag, tt__ImagingCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ImagingCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ImagingCapabilities, sizeof(tt__ImagingCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ImagingCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ImagingCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ImagingCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__ImagingCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ImagingCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ImagingCapabilities, SOAP_TYPE_tt__ImagingCapabilities, sizeof(tt__ImagingCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ImagingCapabilities * SOAP_FMAC2 soap_instantiate_tt__ImagingCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ImagingCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ImagingCapabilities *p; - size_t k = sizeof(tt__ImagingCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ImagingCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ImagingCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ImagingCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ImagingCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ImagingCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ImagingCapabilities(soap, tag ? tag : "tt:ImagingCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ImagingCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ImagingCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ImagingCapabilities * SOAP_FMAC4 soap_get_tt__ImagingCapabilities(struct soap *soap, tt__ImagingCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ImagingCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__OnvifVersion::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__OnvifVersion::Major); - soap_default_int(soap, &this->tt__OnvifVersion::Minor); -} - -void tt__OnvifVersion::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__OnvifVersion::Major, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__OnvifVersion::Minor, SOAP_TYPE_int); -#endif -} - -int tt__OnvifVersion::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__OnvifVersion(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OnvifVersion(struct soap *soap, const char *tag, int id, const tt__OnvifVersion *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__OnvifVersion), type)) - return soap->error; - if (soap_out_int(soap, "tt:Major", -1, &a->tt__OnvifVersion::Major, "")) - return soap->error; - if (soap_out_int(soap, "tt:Minor", -1, &a->tt__OnvifVersion::Minor, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__OnvifVersion::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__OnvifVersion(soap, tag, this, type); -} - -SOAP_FMAC3 tt__OnvifVersion * SOAP_FMAC4 soap_in_tt__OnvifVersion(struct soap *soap, const char *tag, tt__OnvifVersion *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__OnvifVersion*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__OnvifVersion, sizeof(tt__OnvifVersion), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__OnvifVersion) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__OnvifVersion *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Major1 = 1; - size_t soap_flag_Minor1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Major1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Major", &a->tt__OnvifVersion::Major, "xsd:int")) - { soap_flag_Major1--; - continue; - } - } - if (soap_flag_Minor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Minor", &a->tt__OnvifVersion::Minor, "xsd:int")) - { soap_flag_Minor1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Major1 > 0 || soap_flag_Minor1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__OnvifVersion *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__OnvifVersion, SOAP_TYPE_tt__OnvifVersion, sizeof(tt__OnvifVersion), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__OnvifVersion * SOAP_FMAC2 soap_instantiate_tt__OnvifVersion(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__OnvifVersion(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__OnvifVersion *p; - size_t k = sizeof(tt__OnvifVersion); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__OnvifVersion, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__OnvifVersion); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__OnvifVersion, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__OnvifVersion location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__OnvifVersion::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__OnvifVersion(soap, tag ? tag : "tt:OnvifVersion", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__OnvifVersion::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__OnvifVersion(soap, this, tag, type); -} - -SOAP_FMAC3 tt__OnvifVersion * SOAP_FMAC4 soap_get_tt__OnvifVersion(struct soap *soap, tt__OnvifVersion *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__OnvifVersion(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemCapabilitiesExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemCapabilitiesExtension2::__any); -} - -void tt__SystemCapabilitiesExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemCapabilitiesExtension2::__any); -#endif -} - -int tt__SystemCapabilitiesExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemCapabilitiesExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemCapabilitiesExtension2(struct soap *soap, const char *tag, int id, const tt__SystemCapabilitiesExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemCapabilitiesExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SystemCapabilitiesExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemCapabilitiesExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemCapabilitiesExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__SystemCapabilitiesExtension2(struct soap *soap, const char *tag, tt__SystemCapabilitiesExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemCapabilitiesExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemCapabilitiesExtension2, sizeof(tt__SystemCapabilitiesExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemCapabilitiesExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemCapabilitiesExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SystemCapabilitiesExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SystemCapabilitiesExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemCapabilitiesExtension2, SOAP_TYPE_tt__SystemCapabilitiesExtension2, sizeof(tt__SystemCapabilitiesExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__SystemCapabilitiesExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemCapabilitiesExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemCapabilitiesExtension2 *p; - size_t k = sizeof(tt__SystemCapabilitiesExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemCapabilitiesExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemCapabilitiesExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemCapabilitiesExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemCapabilitiesExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemCapabilitiesExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemCapabilitiesExtension2(soap, tag ? tag : "tt:SystemCapabilitiesExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemCapabilitiesExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemCapabilitiesExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__SystemCapabilitiesExtension2(struct soap *soap, tt__SystemCapabilitiesExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemCapabilitiesExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemCapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemCapabilitiesExtension::__any); - this->tt__SystemCapabilitiesExtension::HttpFirmwareUpgrade = NULL; - this->tt__SystemCapabilitiesExtension::HttpSystemBackup = NULL; - this->tt__SystemCapabilitiesExtension::HttpSystemLogging = NULL; - this->tt__SystemCapabilitiesExtension::HttpSupportInformation = NULL; - this->tt__SystemCapabilitiesExtension::Extension = NULL; -} - -void tt__SystemCapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SystemCapabilitiesExtension::__any); - soap_serialize_PointerTobool(soap, &this->tt__SystemCapabilitiesExtension::HttpFirmwareUpgrade); - soap_serialize_PointerTobool(soap, &this->tt__SystemCapabilitiesExtension::HttpSystemBackup); - soap_serialize_PointerTobool(soap, &this->tt__SystemCapabilitiesExtension::HttpSystemLogging); - soap_serialize_PointerTobool(soap, &this->tt__SystemCapabilitiesExtension::HttpSupportInformation); - soap_serialize_PointerTott__SystemCapabilitiesExtension2(soap, &this->tt__SystemCapabilitiesExtension::Extension); -#endif -} - -int tt__SystemCapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemCapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemCapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__SystemCapabilitiesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemCapabilitiesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SystemCapabilitiesExtension::__any, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:HttpFirmwareUpgrade", -1, &a->tt__SystemCapabilitiesExtension::HttpFirmwareUpgrade, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:HttpSystemBackup", -1, &a->tt__SystemCapabilitiesExtension::HttpSystemBackup, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:HttpSystemLogging", -1, &a->tt__SystemCapabilitiesExtension::HttpSystemLogging, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:HttpSupportInformation", -1, &a->tt__SystemCapabilitiesExtension::HttpSupportInformation, "")) - return soap->error; - if (soap_out_PointerTott__SystemCapabilitiesExtension2(soap, "tt:Extension", -1, &a->tt__SystemCapabilitiesExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemCapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemCapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__SystemCapabilitiesExtension(struct soap *soap, const char *tag, tt__SystemCapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemCapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemCapabilitiesExtension, sizeof(tt__SystemCapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemCapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemCapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_HttpFirmwareUpgrade1 = 1; - size_t soap_flag_HttpSystemBackup1 = 1; - size_t soap_flag_HttpSystemLogging1 = 1; - size_t soap_flag_HttpSupportInformation1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_HttpFirmwareUpgrade1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:HttpFirmwareUpgrade", &a->tt__SystemCapabilitiesExtension::HttpFirmwareUpgrade, "xsd:boolean")) - { soap_flag_HttpFirmwareUpgrade1--; - continue; - } - } - if (soap_flag_HttpSystemBackup1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:HttpSystemBackup", &a->tt__SystemCapabilitiesExtension::HttpSystemBackup, "xsd:boolean")) - { soap_flag_HttpSystemBackup1--; - continue; - } - } - if (soap_flag_HttpSystemLogging1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:HttpSystemLogging", &a->tt__SystemCapabilitiesExtension::HttpSystemLogging, "xsd:boolean")) - { soap_flag_HttpSystemLogging1--; - continue; - } - } - if (soap_flag_HttpSupportInformation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:HttpSupportInformation", &a->tt__SystemCapabilitiesExtension::HttpSupportInformation, "xsd:boolean")) - { soap_flag_HttpSupportInformation1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SystemCapabilitiesExtension2(soap, "tt:Extension", &a->tt__SystemCapabilitiesExtension::Extension, "tt:SystemCapabilitiesExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SystemCapabilitiesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__SystemCapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemCapabilitiesExtension, SOAP_TYPE_tt__SystemCapabilitiesExtension, sizeof(tt__SystemCapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__SystemCapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemCapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemCapabilitiesExtension *p; - size_t k = sizeof(tt__SystemCapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemCapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemCapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemCapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemCapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemCapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemCapabilitiesExtension(soap, tag ? tag : "tt:SystemCapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemCapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemCapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__SystemCapabilitiesExtension(struct soap *soap, tt__SystemCapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemCapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SystemCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__SystemCapabilities::DiscoveryResolve); - soap_default_bool(soap, &this->tt__SystemCapabilities::DiscoveryBye); - soap_default_bool(soap, &this->tt__SystemCapabilities::RemoteDiscovery); - soap_default_bool(soap, &this->tt__SystemCapabilities::SystemBackup); - soap_default_bool(soap, &this->tt__SystemCapabilities::SystemLogging); - soap_default_bool(soap, &this->tt__SystemCapabilities::FirmwareUpgrade); - soap_default_std__vectorTemplateOfPointerTott__OnvifVersion(soap, &this->tt__SystemCapabilities::SupportedVersions); - this->tt__SystemCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__SystemCapabilities::__anyAttribute); -} - -void tt__SystemCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SystemCapabilities::DiscoveryResolve, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SystemCapabilities::DiscoveryBye, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SystemCapabilities::RemoteDiscovery, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SystemCapabilities::SystemBackup, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SystemCapabilities::SystemLogging, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SystemCapabilities::FirmwareUpgrade, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfPointerTott__OnvifVersion(soap, &this->tt__SystemCapabilities::SupportedVersions); - soap_serialize_PointerTott__SystemCapabilitiesExtension(soap, &this->tt__SystemCapabilities::Extension); -#endif -} - -int tt__SystemCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SystemCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemCapabilities(struct soap *soap, const char *tag, int id, const tt__SystemCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SystemCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SystemCapabilities), type)) - return soap->error; - if (soap_out_bool(soap, "tt:DiscoveryResolve", -1, &a->tt__SystemCapabilities::DiscoveryResolve, "")) - return soap->error; - if (soap_out_bool(soap, "tt:DiscoveryBye", -1, &a->tt__SystemCapabilities::DiscoveryBye, "")) - return soap->error; - if (soap_out_bool(soap, "tt:RemoteDiscovery", -1, &a->tt__SystemCapabilities::RemoteDiscovery, "")) - return soap->error; - if (soap_out_bool(soap, "tt:SystemBackup", -1, &a->tt__SystemCapabilities::SystemBackup, "")) - return soap->error; - if (soap_out_bool(soap, "tt:SystemLogging", -1, &a->tt__SystemCapabilities::SystemLogging, "")) - return soap->error; - if (soap_out_bool(soap, "tt:FirmwareUpgrade", -1, &a->tt__SystemCapabilities::FirmwareUpgrade, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__OnvifVersion(soap, "tt:SupportedVersions", -1, &a->tt__SystemCapabilities::SupportedVersions, "")) - return soap->error; - if (soap_out_PointerTott__SystemCapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__SystemCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SystemCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SystemCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SystemCapabilities * SOAP_FMAC4 soap_in_tt__SystemCapabilities(struct soap *soap, const char *tag, tt__SystemCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SystemCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SystemCapabilities, sizeof(tt__SystemCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SystemCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SystemCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SystemCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DiscoveryResolve1 = 1; - size_t soap_flag_DiscoveryBye1 = 1; - size_t soap_flag_RemoteDiscovery1 = 1; - size_t soap_flag_SystemBackup1 = 1; - size_t soap_flag_SystemLogging1 = 1; - size_t soap_flag_FirmwareUpgrade1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DiscoveryResolve1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:DiscoveryResolve", &a->tt__SystemCapabilities::DiscoveryResolve, "xsd:boolean")) - { soap_flag_DiscoveryResolve1--; - continue; - } - } - if (soap_flag_DiscoveryBye1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:DiscoveryBye", &a->tt__SystemCapabilities::DiscoveryBye, "xsd:boolean")) - { soap_flag_DiscoveryBye1--; - continue; - } - } - if (soap_flag_RemoteDiscovery1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:RemoteDiscovery", &a->tt__SystemCapabilities::RemoteDiscovery, "xsd:boolean")) - { soap_flag_RemoteDiscovery1--; - continue; - } - } - if (soap_flag_SystemBackup1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:SystemBackup", &a->tt__SystemCapabilities::SystemBackup, "xsd:boolean")) - { soap_flag_SystemBackup1--; - continue; - } - } - if (soap_flag_SystemLogging1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:SystemLogging", &a->tt__SystemCapabilities::SystemLogging, "xsd:boolean")) - { soap_flag_SystemLogging1--; - continue; - } - } - if (soap_flag_FirmwareUpgrade1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:FirmwareUpgrade", &a->tt__SystemCapabilities::FirmwareUpgrade, "xsd:boolean")) - { soap_flag_FirmwareUpgrade1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__OnvifVersion(soap, "tt:SupportedVersions", &a->tt__SystemCapabilities::SupportedVersions, "tt:OnvifVersion")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SystemCapabilitiesExtension(soap, "tt:Extension", &a->tt__SystemCapabilities::Extension, "tt:SystemCapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DiscoveryResolve1 > 0 || soap_flag_DiscoveryBye1 > 0 || soap_flag_RemoteDiscovery1 > 0 || soap_flag_SystemBackup1 > 0 || soap_flag_SystemLogging1 > 0 || soap_flag_FirmwareUpgrade1 > 0 || a->tt__SystemCapabilities::SupportedVersions.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SystemCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SystemCapabilities, SOAP_TYPE_tt__SystemCapabilities, sizeof(tt__SystemCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SystemCapabilities * SOAP_FMAC2 soap_instantiate_tt__SystemCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SystemCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SystemCapabilities *p; - size_t k = sizeof(tt__SystemCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SystemCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SystemCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SystemCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SystemCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SystemCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SystemCapabilities(soap, tag ? tag : "tt:SystemCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SystemCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SystemCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SystemCapabilities * SOAP_FMAC4 soap_get_tt__SystemCapabilities(struct soap *soap, tt__SystemCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SystemCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SecurityCapabilitiesExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__SecurityCapabilitiesExtension2::Dot1X); - soap_default_std__vectorTemplateOfint(soap, &this->tt__SecurityCapabilitiesExtension2::SupportedEAPMethod); - soap_default_bool(soap, &this->tt__SecurityCapabilitiesExtension2::RemoteUserHandling); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SecurityCapabilitiesExtension2::__any); -} - -void tt__SecurityCapabilitiesExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SecurityCapabilitiesExtension2::Dot1X, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfint(soap, &this->tt__SecurityCapabilitiesExtension2::SupportedEAPMethod); - soap_embedded(soap, &this->tt__SecurityCapabilitiesExtension2::RemoteUserHandling, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SecurityCapabilitiesExtension2::__any); -#endif -} - -int tt__SecurityCapabilitiesExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SecurityCapabilitiesExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SecurityCapabilitiesExtension2(struct soap *soap, const char *tag, int id, const tt__SecurityCapabilitiesExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SecurityCapabilitiesExtension2), type)) - return soap->error; - if (soap_out_bool(soap, "tt:Dot1X", -1, &a->tt__SecurityCapabilitiesExtension2::Dot1X, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfint(soap, "tt:SupportedEAPMethod", -1, &a->tt__SecurityCapabilitiesExtension2::SupportedEAPMethod, "")) - return soap->error; - if (soap_out_bool(soap, "tt:RemoteUserHandling", -1, &a->tt__SecurityCapabilitiesExtension2::RemoteUserHandling, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SecurityCapabilitiesExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SecurityCapabilitiesExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SecurityCapabilitiesExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SecurityCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__SecurityCapabilitiesExtension2(struct soap *soap, const char *tag, tt__SecurityCapabilitiesExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SecurityCapabilitiesExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SecurityCapabilitiesExtension2, sizeof(tt__SecurityCapabilitiesExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SecurityCapabilitiesExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SecurityCapabilitiesExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Dot1X1 = 1; - size_t soap_flag_RemoteUserHandling1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Dot1X1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Dot1X", &a->tt__SecurityCapabilitiesExtension2::Dot1X, "xsd:boolean")) - { soap_flag_Dot1X1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfint(soap, "tt:SupportedEAPMethod", &a->tt__SecurityCapabilitiesExtension2::SupportedEAPMethod, "xsd:int")) - continue; - } - if (soap_flag_RemoteUserHandling1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:RemoteUserHandling", &a->tt__SecurityCapabilitiesExtension2::RemoteUserHandling, "xsd:boolean")) - { soap_flag_RemoteUserHandling1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SecurityCapabilitiesExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Dot1X1 > 0 || soap_flag_RemoteUserHandling1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SecurityCapabilitiesExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SecurityCapabilitiesExtension2, SOAP_TYPE_tt__SecurityCapabilitiesExtension2, sizeof(tt__SecurityCapabilitiesExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SecurityCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__SecurityCapabilitiesExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SecurityCapabilitiesExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SecurityCapabilitiesExtension2 *p; - size_t k = sizeof(tt__SecurityCapabilitiesExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SecurityCapabilitiesExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SecurityCapabilitiesExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SecurityCapabilitiesExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SecurityCapabilitiesExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SecurityCapabilitiesExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SecurityCapabilitiesExtension2(soap, tag ? tag : "tt:SecurityCapabilitiesExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SecurityCapabilitiesExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SecurityCapabilitiesExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SecurityCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__SecurityCapabilitiesExtension2(struct soap *soap, tt__SecurityCapabilitiesExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SecurityCapabilitiesExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SecurityCapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__SecurityCapabilitiesExtension::TLS1_x002e0); - this->tt__SecurityCapabilitiesExtension::Extension = NULL; -} - -void tt__SecurityCapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SecurityCapabilitiesExtension::TLS1_x002e0, SOAP_TYPE_bool); - soap_serialize_PointerTott__SecurityCapabilitiesExtension2(soap, &this->tt__SecurityCapabilitiesExtension::Extension); -#endif -} - -int tt__SecurityCapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SecurityCapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SecurityCapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__SecurityCapabilitiesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SecurityCapabilitiesExtension), type)) - return soap->error; - if (soap_out_bool(soap, "tt:TLS1.0", -1, &a->tt__SecurityCapabilitiesExtension::TLS1_x002e0, "")) - return soap->error; - if (soap_out_PointerTott__SecurityCapabilitiesExtension2(soap, "tt:Extension", -1, &a->tt__SecurityCapabilitiesExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SecurityCapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SecurityCapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SecurityCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__SecurityCapabilitiesExtension(struct soap *soap, const char *tag, tt__SecurityCapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SecurityCapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SecurityCapabilitiesExtension, sizeof(tt__SecurityCapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SecurityCapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SecurityCapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TLS1_x002e01 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TLS1_x002e01 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:TLS1.0", &a->tt__SecurityCapabilitiesExtension::TLS1_x002e0, "xsd:boolean")) - { soap_flag_TLS1_x002e01--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SecurityCapabilitiesExtension2(soap, "tt:Extension", &a->tt__SecurityCapabilitiesExtension::Extension, "tt:SecurityCapabilitiesExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TLS1_x002e01 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SecurityCapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SecurityCapabilitiesExtension, SOAP_TYPE_tt__SecurityCapabilitiesExtension, sizeof(tt__SecurityCapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SecurityCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__SecurityCapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SecurityCapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SecurityCapabilitiesExtension *p; - size_t k = sizeof(tt__SecurityCapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SecurityCapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SecurityCapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SecurityCapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SecurityCapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SecurityCapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SecurityCapabilitiesExtension(soap, tag ? tag : "tt:SecurityCapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SecurityCapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SecurityCapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SecurityCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__SecurityCapabilitiesExtension(struct soap *soap, tt__SecurityCapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SecurityCapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SecurityCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__SecurityCapabilities::TLS1_x002e1); - soap_default_bool(soap, &this->tt__SecurityCapabilities::TLS1_x002e2); - soap_default_bool(soap, &this->tt__SecurityCapabilities::OnboardKeyGeneration); - soap_default_bool(soap, &this->tt__SecurityCapabilities::AccessPolicyConfig); - soap_default_bool(soap, &this->tt__SecurityCapabilities::X_x002e509Token); - soap_default_bool(soap, &this->tt__SecurityCapabilities::SAMLToken); - soap_default_bool(soap, &this->tt__SecurityCapabilities::KerberosToken); - soap_default_bool(soap, &this->tt__SecurityCapabilities::RELToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SecurityCapabilities::__any); - this->tt__SecurityCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__SecurityCapabilities::__anyAttribute); -} - -void tt__SecurityCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__SecurityCapabilities::TLS1_x002e1, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SecurityCapabilities::TLS1_x002e2, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SecurityCapabilities::OnboardKeyGeneration, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SecurityCapabilities::AccessPolicyConfig, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SecurityCapabilities::X_x002e509Token, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SecurityCapabilities::SAMLToken, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SecurityCapabilities::KerberosToken, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__SecurityCapabilities::RELToken, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__SecurityCapabilities::__any); - soap_serialize_PointerTott__SecurityCapabilitiesExtension(soap, &this->tt__SecurityCapabilities::Extension); -#endif -} - -int tt__SecurityCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SecurityCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SecurityCapabilities(struct soap *soap, const char *tag, int id, const tt__SecurityCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__SecurityCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SecurityCapabilities), type)) - return soap->error; - if (soap_out_bool(soap, "tt:TLS1.1", -1, &a->tt__SecurityCapabilities::TLS1_x002e1, "")) - return soap->error; - if (soap_out_bool(soap, "tt:TLS1.2", -1, &a->tt__SecurityCapabilities::TLS1_x002e2, "")) - return soap->error; - if (soap_out_bool(soap, "tt:OnboardKeyGeneration", -1, &a->tt__SecurityCapabilities::OnboardKeyGeneration, "")) - return soap->error; - if (soap_out_bool(soap, "tt:AccessPolicyConfig", -1, &a->tt__SecurityCapabilities::AccessPolicyConfig, "")) - return soap->error; - if (soap_out_bool(soap, "tt:X.509Token", -1, &a->tt__SecurityCapabilities::X_x002e509Token, "")) - return soap->error; - if (soap_out_bool(soap, "tt:SAMLToken", -1, &a->tt__SecurityCapabilities::SAMLToken, "")) - return soap->error; - if (soap_out_bool(soap, "tt:KerberosToken", -1, &a->tt__SecurityCapabilities::KerberosToken, "")) - return soap->error; - if (soap_out_bool(soap, "tt:RELToken", -1, &a->tt__SecurityCapabilities::RELToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__SecurityCapabilities::__any, "")) - return soap->error; - if (soap_out_PointerTott__SecurityCapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__SecurityCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SecurityCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SecurityCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SecurityCapabilities * SOAP_FMAC4 soap_in_tt__SecurityCapabilities(struct soap *soap, const char *tag, tt__SecurityCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SecurityCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SecurityCapabilities, sizeof(tt__SecurityCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SecurityCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SecurityCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__SecurityCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TLS1_x002e11 = 1; - size_t soap_flag_TLS1_x002e21 = 1; - size_t soap_flag_OnboardKeyGeneration1 = 1; - size_t soap_flag_AccessPolicyConfig1 = 1; - size_t soap_flag_X_x002e509Token1 = 1; - size_t soap_flag_SAMLToken1 = 1; - size_t soap_flag_KerberosToken1 = 1; - size_t soap_flag_RELToken1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TLS1_x002e11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:TLS1.1", &a->tt__SecurityCapabilities::TLS1_x002e1, "xsd:boolean")) - { soap_flag_TLS1_x002e11--; - continue; - } - } - if (soap_flag_TLS1_x002e21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:TLS1.2", &a->tt__SecurityCapabilities::TLS1_x002e2, "xsd:boolean")) - { soap_flag_TLS1_x002e21--; - continue; - } - } - if (soap_flag_OnboardKeyGeneration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:OnboardKeyGeneration", &a->tt__SecurityCapabilities::OnboardKeyGeneration, "xsd:boolean")) - { soap_flag_OnboardKeyGeneration1--; - continue; - } - } - if (soap_flag_AccessPolicyConfig1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AccessPolicyConfig", &a->tt__SecurityCapabilities::AccessPolicyConfig, "xsd:boolean")) - { soap_flag_AccessPolicyConfig1--; - continue; - } - } - if (soap_flag_X_x002e509Token1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:X.509Token", &a->tt__SecurityCapabilities::X_x002e509Token, "xsd:boolean")) - { soap_flag_X_x002e509Token1--; - continue; - } - } - if (soap_flag_SAMLToken1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:SAMLToken", &a->tt__SecurityCapabilities::SAMLToken, "xsd:boolean")) - { soap_flag_SAMLToken1--; - continue; - } - } - if (soap_flag_KerberosToken1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:KerberosToken", &a->tt__SecurityCapabilities::KerberosToken, "xsd:boolean")) - { soap_flag_KerberosToken1--; - continue; - } - } - if (soap_flag_RELToken1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:RELToken", &a->tt__SecurityCapabilities::RELToken, "xsd:boolean")) - { soap_flag_RELToken1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SecurityCapabilitiesExtension(soap, "tt:Extension", &a->tt__SecurityCapabilities::Extension, "tt:SecurityCapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__SecurityCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TLS1_x002e11 > 0 || soap_flag_TLS1_x002e21 > 0 || soap_flag_OnboardKeyGeneration1 > 0 || soap_flag_AccessPolicyConfig1 > 0 || soap_flag_X_x002e509Token1 > 0 || soap_flag_SAMLToken1 > 0 || soap_flag_KerberosToken1 > 0 || soap_flag_RELToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SecurityCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SecurityCapabilities, SOAP_TYPE_tt__SecurityCapabilities, sizeof(tt__SecurityCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SecurityCapabilities * SOAP_FMAC2 soap_instantiate_tt__SecurityCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SecurityCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SecurityCapabilities *p; - size_t k = sizeof(tt__SecurityCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SecurityCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SecurityCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SecurityCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SecurityCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SecurityCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SecurityCapabilities(soap, tag ? tag : "tt:SecurityCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SecurityCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SecurityCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SecurityCapabilities * SOAP_FMAC4 soap_get_tt__SecurityCapabilities(struct soap *soap, tt__SecurityCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SecurityCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkCapabilitiesExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkCapabilitiesExtension2::__any); -} - -void tt__NetworkCapabilitiesExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkCapabilitiesExtension2::__any); -#endif -} - -int tt__NetworkCapabilitiesExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkCapabilitiesExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkCapabilitiesExtension2(struct soap *soap, const char *tag, int id, const tt__NetworkCapabilitiesExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkCapabilitiesExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkCapabilitiesExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkCapabilitiesExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkCapabilitiesExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__NetworkCapabilitiesExtension2(struct soap *soap, const char *tag, tt__NetworkCapabilitiesExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkCapabilitiesExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkCapabilitiesExtension2, sizeof(tt__NetworkCapabilitiesExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkCapabilitiesExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkCapabilitiesExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkCapabilitiesExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkCapabilitiesExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkCapabilitiesExtension2, SOAP_TYPE_tt__NetworkCapabilitiesExtension2, sizeof(tt__NetworkCapabilitiesExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkCapabilitiesExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkCapabilitiesExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkCapabilitiesExtension2 *p; - size_t k = sizeof(tt__NetworkCapabilitiesExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkCapabilitiesExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkCapabilitiesExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkCapabilitiesExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkCapabilitiesExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkCapabilitiesExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkCapabilitiesExtension2(soap, tag ? tag : "tt:NetworkCapabilitiesExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkCapabilitiesExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkCapabilitiesExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__NetworkCapabilitiesExtension2(struct soap *soap, tt__NetworkCapabilitiesExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkCapabilitiesExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkCapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkCapabilitiesExtension::__any); - this->tt__NetworkCapabilitiesExtension::Dot11Configuration = NULL; - this->tt__NetworkCapabilitiesExtension::Extension = NULL; -} - -void tt__NetworkCapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkCapabilitiesExtension::__any); - soap_serialize_PointerTobool(soap, &this->tt__NetworkCapabilitiesExtension::Dot11Configuration); - soap_serialize_PointerTott__NetworkCapabilitiesExtension2(soap, &this->tt__NetworkCapabilitiesExtension::Extension); -#endif -} - -int tt__NetworkCapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkCapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkCapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__NetworkCapabilitiesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkCapabilitiesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkCapabilitiesExtension::__any, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:Dot11Configuration", -1, &a->tt__NetworkCapabilitiesExtension::Dot11Configuration, "")) - return soap->error; - if (soap_out_PointerTott__NetworkCapabilitiesExtension2(soap, "tt:Extension", -1, &a->tt__NetworkCapabilitiesExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkCapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkCapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__NetworkCapabilitiesExtension(struct soap *soap, const char *tag, tt__NetworkCapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkCapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkCapabilitiesExtension, sizeof(tt__NetworkCapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkCapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkCapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Dot11Configuration1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Dot11Configuration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:Dot11Configuration", &a->tt__NetworkCapabilitiesExtension::Dot11Configuration, "xsd:boolean")) - { soap_flag_Dot11Configuration1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkCapabilitiesExtension2(soap, "tt:Extension", &a->tt__NetworkCapabilitiesExtension::Extension, "tt:NetworkCapabilitiesExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkCapabilitiesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkCapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkCapabilitiesExtension, SOAP_TYPE_tt__NetworkCapabilitiesExtension, sizeof(tt__NetworkCapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkCapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkCapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkCapabilitiesExtension *p; - size_t k = sizeof(tt__NetworkCapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkCapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkCapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkCapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkCapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkCapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkCapabilitiesExtension(soap, tag ? tag : "tt:NetworkCapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkCapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkCapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__NetworkCapabilitiesExtension(struct soap *soap, tt__NetworkCapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkCapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__NetworkCapabilities::IPFilter = NULL; - this->tt__NetworkCapabilities::ZeroConfiguration = NULL; - this->tt__NetworkCapabilities::IPVersion6 = NULL; - this->tt__NetworkCapabilities::DynDNS = NULL; - this->tt__NetworkCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__NetworkCapabilities::__anyAttribute); -} - -void tt__NetworkCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->tt__NetworkCapabilities::IPFilter); - soap_serialize_PointerTobool(soap, &this->tt__NetworkCapabilities::ZeroConfiguration); - soap_serialize_PointerTobool(soap, &this->tt__NetworkCapabilities::IPVersion6); - soap_serialize_PointerTobool(soap, &this->tt__NetworkCapabilities::DynDNS); - soap_serialize_PointerTott__NetworkCapabilitiesExtension(soap, &this->tt__NetworkCapabilities::Extension); -#endif -} - -int tt__NetworkCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkCapabilities(struct soap *soap, const char *tag, int id, const tt__NetworkCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NetworkCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkCapabilities), type)) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:IPFilter", -1, &a->tt__NetworkCapabilities::IPFilter, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:ZeroConfiguration", -1, &a->tt__NetworkCapabilities::ZeroConfiguration, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:IPVersion6", -1, &a->tt__NetworkCapabilities::IPVersion6, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:DynDNS", -1, &a->tt__NetworkCapabilities::DynDNS, "")) - return soap->error; - if (soap_out_PointerTott__NetworkCapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__NetworkCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkCapabilities * SOAP_FMAC4 soap_in_tt__NetworkCapabilities(struct soap *soap, const char *tag, tt__NetworkCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkCapabilities, sizeof(tt__NetworkCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NetworkCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_IPFilter1 = 1; - size_t soap_flag_ZeroConfiguration1 = 1; - size_t soap_flag_IPVersion61 = 1; - size_t soap_flag_DynDNS1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_IPFilter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:IPFilter", &a->tt__NetworkCapabilities::IPFilter, "xsd:boolean")) - { soap_flag_IPFilter1--; - continue; - } - } - if (soap_flag_ZeroConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:ZeroConfiguration", &a->tt__NetworkCapabilities::ZeroConfiguration, "xsd:boolean")) - { soap_flag_ZeroConfiguration1--; - continue; - } - } - if (soap_flag_IPVersion61 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:IPVersion6", &a->tt__NetworkCapabilities::IPVersion6, "xsd:boolean")) - { soap_flag_IPVersion61--; - continue; - } - } - if (soap_flag_DynDNS1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:DynDNS", &a->tt__NetworkCapabilities::DynDNS, "xsd:boolean")) - { soap_flag_DynDNS1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkCapabilitiesExtension(soap, "tt:Extension", &a->tt__NetworkCapabilities::Extension, "tt:NetworkCapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkCapabilities, SOAP_TYPE_tt__NetworkCapabilities, sizeof(tt__NetworkCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkCapabilities * SOAP_FMAC2 soap_instantiate_tt__NetworkCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkCapabilities *p; - size_t k = sizeof(tt__NetworkCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkCapabilities(soap, tag ? tag : "tt:NetworkCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkCapabilities * SOAP_FMAC4 soap_get_tt__NetworkCapabilities(struct soap *soap, tt__NetworkCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ProfileCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__ProfileCapabilities::MaximumNumberOfProfiles); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ProfileCapabilities::__anyAttribute); -} - -void tt__ProfileCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ProfileCapabilities::MaximumNumberOfProfiles, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileCapabilities::__any); -#endif -} - -int tt__ProfileCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ProfileCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileCapabilities(struct soap *soap, const char *tag, int id, const tt__ProfileCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ProfileCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ProfileCapabilities), type)) - return soap->error; - if (soap_out_int(soap, "tt:MaximumNumberOfProfiles", -1, &a->tt__ProfileCapabilities::MaximumNumberOfProfiles, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ProfileCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ProfileCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ProfileCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ProfileCapabilities * SOAP_FMAC4 soap_in_tt__ProfileCapabilities(struct soap *soap, const char *tag, tt__ProfileCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ProfileCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ProfileCapabilities, sizeof(tt__ProfileCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ProfileCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ProfileCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ProfileCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_MaximumNumberOfProfiles1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MaximumNumberOfProfiles1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:MaximumNumberOfProfiles", &a->tt__ProfileCapabilities::MaximumNumberOfProfiles, "xsd:int")) - { soap_flag_MaximumNumberOfProfiles1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ProfileCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_MaximumNumberOfProfiles1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ProfileCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ProfileCapabilities, SOAP_TYPE_tt__ProfileCapabilities, sizeof(tt__ProfileCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ProfileCapabilities * SOAP_FMAC2 soap_instantiate_tt__ProfileCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ProfileCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ProfileCapabilities *p; - size_t k = sizeof(tt__ProfileCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ProfileCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ProfileCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ProfileCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ProfileCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ProfileCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ProfileCapabilities(soap, tag ? tag : "tt:ProfileCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ProfileCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ProfileCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ProfileCapabilities * SOAP_FMAC4 soap_get_tt__ProfileCapabilities(struct soap *soap, tt__ProfileCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ProfileCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RealTimeStreamingCapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RealTimeStreamingCapabilitiesExtension::__any); -} - -void tt__RealTimeStreamingCapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RealTimeStreamingCapabilitiesExtension::__any); -#endif -} - -int tt__RealTimeStreamingCapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RealTimeStreamingCapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__RealTimeStreamingCapabilitiesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RealTimeStreamingCapabilitiesExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RealTimeStreamingCapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RealTimeStreamingCapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RealTimeStreamingCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, const char *tag, tt__RealTimeStreamingCapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RealTimeStreamingCapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension, sizeof(tt__RealTimeStreamingCapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RealTimeStreamingCapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RealTimeStreamingCapabilitiesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RealTimeStreamingCapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension, SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension, sizeof(tt__RealTimeStreamingCapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RealTimeStreamingCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RealTimeStreamingCapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RealTimeStreamingCapabilitiesExtension *p; - size_t k = sizeof(tt__RealTimeStreamingCapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RealTimeStreamingCapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RealTimeStreamingCapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RealTimeStreamingCapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RealTimeStreamingCapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RealTimeStreamingCapabilitiesExtension(soap, tag ? tag : "tt:RealTimeStreamingCapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RealTimeStreamingCapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RealTimeStreamingCapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RealTimeStreamingCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, tt__RealTimeStreamingCapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RealTimeStreamingCapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RealTimeStreamingCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__RealTimeStreamingCapabilities::RTPMulticast = NULL; - this->tt__RealTimeStreamingCapabilities::RTP_USCORETCP = NULL; - this->tt__RealTimeStreamingCapabilities::RTP_USCORERTSP_USCORETCP = NULL; - this->tt__RealTimeStreamingCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__RealTimeStreamingCapabilities::__anyAttribute); -} - -void tt__RealTimeStreamingCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->tt__RealTimeStreamingCapabilities::RTPMulticast); - soap_serialize_PointerTobool(soap, &this->tt__RealTimeStreamingCapabilities::RTP_USCORETCP); - soap_serialize_PointerTobool(soap, &this->tt__RealTimeStreamingCapabilities::RTP_USCORERTSP_USCORETCP); - soap_serialize_PointerTott__RealTimeStreamingCapabilitiesExtension(soap, &this->tt__RealTimeStreamingCapabilities::Extension); -#endif -} - -int tt__RealTimeStreamingCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RealTimeStreamingCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RealTimeStreamingCapabilities(struct soap *soap, const char *tag, int id, const tt__RealTimeStreamingCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RealTimeStreamingCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RealTimeStreamingCapabilities), type)) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:RTPMulticast", -1, &a->tt__RealTimeStreamingCapabilities::RTPMulticast, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:RTP_TCP", -1, &a->tt__RealTimeStreamingCapabilities::RTP_USCORETCP, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:RTP_RTSP_TCP", -1, &a->tt__RealTimeStreamingCapabilities::RTP_USCORERTSP_USCORETCP, "")) - return soap->error; - if (soap_out_PointerTott__RealTimeStreamingCapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__RealTimeStreamingCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RealTimeStreamingCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RealTimeStreamingCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RealTimeStreamingCapabilities * SOAP_FMAC4 soap_in_tt__RealTimeStreamingCapabilities(struct soap *soap, const char *tag, tt__RealTimeStreamingCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RealTimeStreamingCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RealTimeStreamingCapabilities, sizeof(tt__RealTimeStreamingCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RealTimeStreamingCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RealTimeStreamingCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RealTimeStreamingCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_RTPMulticast1 = 1; - size_t soap_flag_RTP_USCORETCP1 = 1; - size_t soap_flag_RTP_USCORERTSP_USCORETCP1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_RTPMulticast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:RTPMulticast", &a->tt__RealTimeStreamingCapabilities::RTPMulticast, "xsd:boolean")) - { soap_flag_RTPMulticast1--; - continue; - } - } - if (soap_flag_RTP_USCORETCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:RTP_TCP", &a->tt__RealTimeStreamingCapabilities::RTP_USCORETCP, "xsd:boolean")) - { soap_flag_RTP_USCORETCP1--; - continue; - } - } - if (soap_flag_RTP_USCORERTSP_USCORETCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:RTP_RTSP_TCP", &a->tt__RealTimeStreamingCapabilities::RTP_USCORERTSP_USCORETCP, "xsd:boolean")) - { soap_flag_RTP_USCORERTSP_USCORETCP1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RealTimeStreamingCapabilitiesExtension(soap, "tt:Extension", &a->tt__RealTimeStreamingCapabilities::Extension, "tt:RealTimeStreamingCapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RealTimeStreamingCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RealTimeStreamingCapabilities, SOAP_TYPE_tt__RealTimeStreamingCapabilities, sizeof(tt__RealTimeStreamingCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RealTimeStreamingCapabilities * SOAP_FMAC2 soap_instantiate_tt__RealTimeStreamingCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RealTimeStreamingCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RealTimeStreamingCapabilities *p; - size_t k = sizeof(tt__RealTimeStreamingCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RealTimeStreamingCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RealTimeStreamingCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RealTimeStreamingCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RealTimeStreamingCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RealTimeStreamingCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RealTimeStreamingCapabilities(soap, tag ? tag : "tt:RealTimeStreamingCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RealTimeStreamingCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RealTimeStreamingCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RealTimeStreamingCapabilities * SOAP_FMAC4 soap_get_tt__RealTimeStreamingCapabilities(struct soap *soap, tt__RealTimeStreamingCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RealTimeStreamingCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MediaCapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__MediaCapabilitiesExtension::ProfileCapabilities = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaCapabilitiesExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__MediaCapabilitiesExtension::__anyAttribute); -} - -void tt__MediaCapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__ProfileCapabilities(soap, &this->tt__MediaCapabilitiesExtension::ProfileCapabilities); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaCapabilitiesExtension::__any); -#endif -} - -int tt__MediaCapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MediaCapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaCapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__MediaCapabilitiesExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MediaCapabilitiesExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MediaCapabilitiesExtension), type)) - return soap->error; - if (!a->tt__MediaCapabilitiesExtension::ProfileCapabilities) - { if (soap_element_empty(soap, "tt:ProfileCapabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__ProfileCapabilities(soap, "tt:ProfileCapabilities", -1, &a->tt__MediaCapabilitiesExtension::ProfileCapabilities, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MediaCapabilitiesExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MediaCapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MediaCapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MediaCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__MediaCapabilitiesExtension(struct soap *soap, const char *tag, tt__MediaCapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MediaCapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MediaCapabilitiesExtension, sizeof(tt__MediaCapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MediaCapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MediaCapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MediaCapabilitiesExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ProfileCapabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ProfileCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ProfileCapabilities(soap, "tt:ProfileCapabilities", &a->tt__MediaCapabilitiesExtension::ProfileCapabilities, "tt:ProfileCapabilities")) - { soap_flag_ProfileCapabilities1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MediaCapabilitiesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__MediaCapabilitiesExtension::ProfileCapabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MediaCapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MediaCapabilitiesExtension, SOAP_TYPE_tt__MediaCapabilitiesExtension, sizeof(tt__MediaCapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MediaCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__MediaCapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MediaCapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MediaCapabilitiesExtension *p; - size_t k = sizeof(tt__MediaCapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MediaCapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MediaCapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MediaCapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MediaCapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MediaCapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MediaCapabilitiesExtension(soap, tag ? tag : "tt:MediaCapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MediaCapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MediaCapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MediaCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__MediaCapabilitiesExtension(struct soap *soap, tt__MediaCapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MediaCapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MediaCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__MediaCapabilities::XAddr); - this->tt__MediaCapabilities::StreamingCapabilities = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaCapabilities::__any); - this->tt__MediaCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MediaCapabilities::__anyAttribute); -} - -void tt__MediaCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__MediaCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__MediaCapabilities::XAddr); - soap_serialize_PointerTott__RealTimeStreamingCapabilities(soap, &this->tt__MediaCapabilities::StreamingCapabilities); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaCapabilities::__any); - soap_serialize_PointerTott__MediaCapabilitiesExtension(soap, &this->tt__MediaCapabilities::Extension); -#endif -} - -int tt__MediaCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MediaCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaCapabilities(struct soap *soap, const char *tag, int id, const tt__MediaCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MediaCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MediaCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__MediaCapabilities::XAddr, "")) - return soap->error; - if (!a->tt__MediaCapabilities::StreamingCapabilities) - { if (soap_element_empty(soap, "tt:StreamingCapabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RealTimeStreamingCapabilities(soap, "tt:StreamingCapabilities", -1, &a->tt__MediaCapabilities::StreamingCapabilities, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MediaCapabilities::__any, "")) - return soap->error; - if (soap_out_PointerTott__MediaCapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__MediaCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MediaCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MediaCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MediaCapabilities * SOAP_FMAC4 soap_in_tt__MediaCapabilities(struct soap *soap, const char *tag, tt__MediaCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MediaCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MediaCapabilities, sizeof(tt__MediaCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MediaCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MediaCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MediaCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_StreamingCapabilities1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__MediaCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_StreamingCapabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RealTimeStreamingCapabilities(soap, "tt:StreamingCapabilities", &a->tt__MediaCapabilities::StreamingCapabilities, "tt:RealTimeStreamingCapabilities")) - { soap_flag_StreamingCapabilities1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MediaCapabilitiesExtension(soap, "tt:Extension", &a->tt__MediaCapabilities::Extension, "tt:MediaCapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MediaCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || !a->tt__MediaCapabilities::StreamingCapabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MediaCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MediaCapabilities, SOAP_TYPE_tt__MediaCapabilities, sizeof(tt__MediaCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MediaCapabilities * SOAP_FMAC2 soap_instantiate_tt__MediaCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MediaCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MediaCapabilities *p; - size_t k = sizeof(tt__MediaCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MediaCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MediaCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MediaCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MediaCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MediaCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MediaCapabilities(soap, tag ? tag : "tt:MediaCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MediaCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MediaCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MediaCapabilities * SOAP_FMAC4 soap_get_tt__MediaCapabilities(struct soap *soap, tt__MediaCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MediaCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IOCapabilitiesExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IOCapabilitiesExtension2::__any); -} - -void tt__IOCapabilitiesExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IOCapabilitiesExtension2::__any); -#endif -} - -int tt__IOCapabilitiesExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IOCapabilitiesExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IOCapabilitiesExtension2(struct soap *soap, const char *tag, int id, const tt__IOCapabilitiesExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IOCapabilitiesExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__IOCapabilitiesExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IOCapabilitiesExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IOCapabilitiesExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IOCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__IOCapabilitiesExtension2(struct soap *soap, const char *tag, tt__IOCapabilitiesExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IOCapabilitiesExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IOCapabilitiesExtension2, sizeof(tt__IOCapabilitiesExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IOCapabilitiesExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IOCapabilitiesExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__IOCapabilitiesExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IOCapabilitiesExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IOCapabilitiesExtension2, SOAP_TYPE_tt__IOCapabilitiesExtension2, sizeof(tt__IOCapabilitiesExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IOCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__IOCapabilitiesExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IOCapabilitiesExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IOCapabilitiesExtension2 *p; - size_t k = sizeof(tt__IOCapabilitiesExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IOCapabilitiesExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IOCapabilitiesExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IOCapabilitiesExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IOCapabilitiesExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IOCapabilitiesExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IOCapabilitiesExtension2(soap, tag ? tag : "tt:IOCapabilitiesExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IOCapabilitiesExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IOCapabilitiesExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IOCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__IOCapabilitiesExtension2(struct soap *soap, tt__IOCapabilitiesExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IOCapabilitiesExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IOCapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IOCapabilitiesExtension::__any); - this->tt__IOCapabilitiesExtension::Auxiliary = NULL; - soap_default_std__vectorTemplateOftt__AuxiliaryData(soap, &this->tt__IOCapabilitiesExtension::AuxiliaryCommands); - this->tt__IOCapabilitiesExtension::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__IOCapabilitiesExtension::__anyAttribute); -} - -void tt__IOCapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IOCapabilitiesExtension::__any); - soap_serialize_PointerTobool(soap, &this->tt__IOCapabilitiesExtension::Auxiliary); - soap_serialize_std__vectorTemplateOftt__AuxiliaryData(soap, &this->tt__IOCapabilitiesExtension::AuxiliaryCommands); - soap_serialize_PointerTott__IOCapabilitiesExtension2(soap, &this->tt__IOCapabilitiesExtension::Extension); -#endif -} - -int tt__IOCapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IOCapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IOCapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__IOCapabilitiesExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__IOCapabilitiesExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IOCapabilitiesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__IOCapabilitiesExtension::__any, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:Auxiliary", -1, &a->tt__IOCapabilitiesExtension::Auxiliary, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__AuxiliaryData(soap, "tt:AuxiliaryCommands", -1, &a->tt__IOCapabilitiesExtension::AuxiliaryCommands, "")) - return soap->error; - if (!a->tt__IOCapabilitiesExtension::Extension) - { if (soap_element_empty(soap, "tt:Extension", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IOCapabilitiesExtension2(soap, "tt:Extension", -1, &a->tt__IOCapabilitiesExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IOCapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IOCapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IOCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__IOCapabilitiesExtension(struct soap *soap, const char *tag, tt__IOCapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IOCapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IOCapabilitiesExtension, sizeof(tt__IOCapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IOCapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IOCapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__IOCapabilitiesExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Auxiliary1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Auxiliary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:Auxiliary", &a->tt__IOCapabilitiesExtension::Auxiliary, "xsd:boolean")) - { soap_flag_Auxiliary1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__AuxiliaryData(soap, "tt:AuxiliaryCommands", &a->tt__IOCapabilitiesExtension::AuxiliaryCommands, "tt:AuxiliaryData")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IOCapabilitiesExtension2(soap, "tt:Extension", &a->tt__IOCapabilitiesExtension::Extension, "tt:IOCapabilitiesExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__IOCapabilitiesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__IOCapabilitiesExtension::Extension)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IOCapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IOCapabilitiesExtension, SOAP_TYPE_tt__IOCapabilitiesExtension, sizeof(tt__IOCapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IOCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__IOCapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IOCapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IOCapabilitiesExtension *p; - size_t k = sizeof(tt__IOCapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IOCapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IOCapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IOCapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IOCapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IOCapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IOCapabilitiesExtension(soap, tag ? tag : "tt:IOCapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IOCapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IOCapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IOCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__IOCapabilitiesExtension(struct soap *soap, tt__IOCapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IOCapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IOCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__IOCapabilities::InputConnectors = NULL; - this->tt__IOCapabilities::RelayOutputs = NULL; - this->tt__IOCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__IOCapabilities::__anyAttribute); -} - -void tt__IOCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &this->tt__IOCapabilities::InputConnectors); - soap_serialize_PointerToint(soap, &this->tt__IOCapabilities::RelayOutputs); - soap_serialize_PointerTott__IOCapabilitiesExtension(soap, &this->tt__IOCapabilities::Extension); -#endif -} - -int tt__IOCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IOCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IOCapabilities(struct soap *soap, const char *tag, int id, const tt__IOCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__IOCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IOCapabilities), type)) - return soap->error; - if (soap_out_PointerToint(soap, "tt:InputConnectors", -1, &a->tt__IOCapabilities::InputConnectors, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tt:RelayOutputs", -1, &a->tt__IOCapabilities::RelayOutputs, "")) - return soap->error; - if (soap_out_PointerTott__IOCapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__IOCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IOCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IOCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IOCapabilities * SOAP_FMAC4 soap_in_tt__IOCapabilities(struct soap *soap, const char *tag, tt__IOCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IOCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IOCapabilities, sizeof(tt__IOCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IOCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IOCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__IOCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_InputConnectors1 = 1; - size_t soap_flag_RelayOutputs1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InputConnectors1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:InputConnectors", &a->tt__IOCapabilities::InputConnectors, "xsd:int")) - { soap_flag_InputConnectors1--; - continue; - } - } - if (soap_flag_RelayOutputs1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:RelayOutputs", &a->tt__IOCapabilities::RelayOutputs, "xsd:int")) - { soap_flag_RelayOutputs1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IOCapabilitiesExtension(soap, "tt:Extension", &a->tt__IOCapabilities::Extension, "tt:IOCapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IOCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IOCapabilities, SOAP_TYPE_tt__IOCapabilities, sizeof(tt__IOCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IOCapabilities * SOAP_FMAC2 soap_instantiate_tt__IOCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IOCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IOCapabilities *p; - size_t k = sizeof(tt__IOCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IOCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IOCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IOCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IOCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IOCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IOCapabilities(soap, tag ? tag : "tt:IOCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IOCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IOCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IOCapabilities * SOAP_FMAC4 soap_get_tt__IOCapabilities(struct soap *soap, tt__IOCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IOCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EventCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__EventCapabilities::XAddr); - soap_default_bool(soap, &this->tt__EventCapabilities::WSSubscriptionPolicySupport); - soap_default_bool(soap, &this->tt__EventCapabilities::WSPullPointSupport); - soap_default_bool(soap, &this->tt__EventCapabilities::WSPausableSubscriptionManagerInterfaceSupport); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EventCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__EventCapabilities::__anyAttribute); -} - -void tt__EventCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__EventCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__EventCapabilities::XAddr); - soap_embedded(soap, &this->tt__EventCapabilities::WSSubscriptionPolicySupport, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__EventCapabilities::WSPullPointSupport, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__EventCapabilities::WSPausableSubscriptionManagerInterfaceSupport, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EventCapabilities::__any); -#endif -} - -int tt__EventCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EventCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EventCapabilities(struct soap *soap, const char *tag, int id, const tt__EventCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__EventCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EventCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__EventCapabilities::XAddr, "")) - return soap->error; - if (soap_out_bool(soap, "tt:WSSubscriptionPolicySupport", -1, &a->tt__EventCapabilities::WSSubscriptionPolicySupport, "")) - return soap->error; - if (soap_out_bool(soap, "tt:WSPullPointSupport", -1, &a->tt__EventCapabilities::WSPullPointSupport, "")) - return soap->error; - if (soap_out_bool(soap, "tt:WSPausableSubscriptionManagerInterfaceSupport", -1, &a->tt__EventCapabilities::WSPausableSubscriptionManagerInterfaceSupport, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__EventCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EventCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EventCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EventCapabilities * SOAP_FMAC4 soap_in_tt__EventCapabilities(struct soap *soap, const char *tag, tt__EventCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EventCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EventCapabilities, sizeof(tt__EventCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EventCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EventCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__EventCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_WSSubscriptionPolicySupport1 = 1; - size_t soap_flag_WSPullPointSupport1 = 1; - size_t soap_flag_WSPausableSubscriptionManagerInterfaceSupport1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__EventCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_WSSubscriptionPolicySupport1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:WSSubscriptionPolicySupport", &a->tt__EventCapabilities::WSSubscriptionPolicySupport, "xsd:boolean")) - { soap_flag_WSSubscriptionPolicySupport1--; - continue; - } - } - if (soap_flag_WSPullPointSupport1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:WSPullPointSupport", &a->tt__EventCapabilities::WSPullPointSupport, "xsd:boolean")) - { soap_flag_WSPullPointSupport1--; - continue; - } - } - if (soap_flag_WSPausableSubscriptionManagerInterfaceSupport1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:WSPausableSubscriptionManagerInterfaceSupport", &a->tt__EventCapabilities::WSPausableSubscriptionManagerInterfaceSupport, "xsd:boolean")) - { soap_flag_WSPausableSubscriptionManagerInterfaceSupport1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__EventCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || soap_flag_WSSubscriptionPolicySupport1 > 0 || soap_flag_WSPullPointSupport1 > 0 || soap_flag_WSPausableSubscriptionManagerInterfaceSupport1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__EventCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EventCapabilities, SOAP_TYPE_tt__EventCapabilities, sizeof(tt__EventCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EventCapabilities * SOAP_FMAC2 soap_instantiate_tt__EventCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EventCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EventCapabilities *p; - size_t k = sizeof(tt__EventCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EventCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EventCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EventCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EventCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EventCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EventCapabilities(soap, tag ? tag : "tt:EventCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EventCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EventCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EventCapabilities * SOAP_FMAC4 soap_get_tt__EventCapabilities(struct soap *soap, tt__EventCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EventCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DeviceCapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DeviceCapabilitiesExtension::__any); -} - -void tt__DeviceCapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DeviceCapabilitiesExtension::__any); -#endif -} - -int tt__DeviceCapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DeviceCapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceCapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__DeviceCapabilitiesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DeviceCapabilitiesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DeviceCapabilitiesExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DeviceCapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DeviceCapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DeviceCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__DeviceCapabilitiesExtension(struct soap *soap, const char *tag, tt__DeviceCapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DeviceCapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DeviceCapabilitiesExtension, sizeof(tt__DeviceCapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DeviceCapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DeviceCapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DeviceCapabilitiesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__DeviceCapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DeviceCapabilitiesExtension, SOAP_TYPE_tt__DeviceCapabilitiesExtension, sizeof(tt__DeviceCapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DeviceCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__DeviceCapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DeviceCapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DeviceCapabilitiesExtension *p; - size_t k = sizeof(tt__DeviceCapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DeviceCapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DeviceCapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DeviceCapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DeviceCapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DeviceCapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DeviceCapabilitiesExtension(soap, tag ? tag : "tt:DeviceCapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DeviceCapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DeviceCapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DeviceCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__DeviceCapabilitiesExtension(struct soap *soap, tt__DeviceCapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DeviceCapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DeviceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__DeviceCapabilities::XAddr); - this->tt__DeviceCapabilities::Network = NULL; - this->tt__DeviceCapabilities::System = NULL; - this->tt__DeviceCapabilities::IO = NULL; - this->tt__DeviceCapabilities::Security = NULL; - this->tt__DeviceCapabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__DeviceCapabilities::__anyAttribute); -} - -void tt__DeviceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DeviceCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__DeviceCapabilities::XAddr); - soap_serialize_PointerTott__NetworkCapabilities(soap, &this->tt__DeviceCapabilities::Network); - soap_serialize_PointerTott__SystemCapabilities(soap, &this->tt__DeviceCapabilities::System); - soap_serialize_PointerTott__IOCapabilities(soap, &this->tt__DeviceCapabilities::IO); - soap_serialize_PointerTott__SecurityCapabilities(soap, &this->tt__DeviceCapabilities::Security); - soap_serialize_PointerTott__DeviceCapabilitiesExtension(soap, &this->tt__DeviceCapabilities::Extension); -#endif -} - -int tt__DeviceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DeviceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceCapabilities(struct soap *soap, const char *tag, int id, const tt__DeviceCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DeviceCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DeviceCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__DeviceCapabilities::XAddr, "")) - return soap->error; - if (soap_out_PointerTott__NetworkCapabilities(soap, "tt:Network", -1, &a->tt__DeviceCapabilities::Network, "")) - return soap->error; - if (soap_out_PointerTott__SystemCapabilities(soap, "tt:System", -1, &a->tt__DeviceCapabilities::System, "")) - return soap->error; - if (soap_out_PointerTott__IOCapabilities(soap, "tt:IO", -1, &a->tt__DeviceCapabilities::IO, "")) - return soap->error; - if (soap_out_PointerTott__SecurityCapabilities(soap, "tt:Security", -1, &a->tt__DeviceCapabilities::Security, "")) - return soap->error; - if (soap_out_PointerTott__DeviceCapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__DeviceCapabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DeviceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DeviceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DeviceCapabilities * SOAP_FMAC4 soap_in_tt__DeviceCapabilities(struct soap *soap, const char *tag, tt__DeviceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DeviceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DeviceCapabilities, sizeof(tt__DeviceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DeviceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DeviceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DeviceCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_Network1 = 1; - size_t soap_flag_System1 = 1; - size_t soap_flag_IO1 = 1; - size_t soap_flag_Security1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__DeviceCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_Network1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkCapabilities(soap, "tt:Network", &a->tt__DeviceCapabilities::Network, "tt:NetworkCapabilities")) - { soap_flag_Network1--; - continue; - } - } - if (soap_flag_System1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SystemCapabilities(soap, "tt:System", &a->tt__DeviceCapabilities::System, "tt:SystemCapabilities")) - { soap_flag_System1--; - continue; - } - } - if (soap_flag_IO1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IOCapabilities(soap, "tt:IO", &a->tt__DeviceCapabilities::IO, "tt:IOCapabilities")) - { soap_flag_IO1--; - continue; - } - } - if (soap_flag_Security1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SecurityCapabilities(soap, "tt:Security", &a->tt__DeviceCapabilities::Security, "tt:SecurityCapabilities")) - { soap_flag_Security1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DeviceCapabilitiesExtension(soap, "tt:Extension", &a->tt__DeviceCapabilities::Extension, "tt:DeviceCapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DeviceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DeviceCapabilities, SOAP_TYPE_tt__DeviceCapabilities, sizeof(tt__DeviceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DeviceCapabilities * SOAP_FMAC2 soap_instantiate_tt__DeviceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DeviceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DeviceCapabilities *p; - size_t k = sizeof(tt__DeviceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DeviceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DeviceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DeviceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DeviceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DeviceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DeviceCapabilities(soap, tag ? tag : "tt:DeviceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DeviceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DeviceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DeviceCapabilities * SOAP_FMAC4 soap_get_tt__DeviceCapabilities(struct soap *soap, tt__DeviceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DeviceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnalyticsCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__AnalyticsCapabilities::XAddr); - soap_default_bool(soap, &this->tt__AnalyticsCapabilities::RuleSupport); - soap_default_bool(soap, &this->tt__AnalyticsCapabilities::AnalyticsModuleSupport); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsCapabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AnalyticsCapabilities::__anyAttribute); -} - -void tt__AnalyticsCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AnalyticsCapabilities::XAddr, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__AnalyticsCapabilities::XAddr); - soap_embedded(soap, &this->tt__AnalyticsCapabilities::RuleSupport, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__AnalyticsCapabilities::AnalyticsModuleSupport, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnalyticsCapabilities::__any); -#endif -} - -int tt__AnalyticsCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnalyticsCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsCapabilities(struct soap *soap, const char *tag, int id, const tt__AnalyticsCapabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnalyticsCapabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnalyticsCapabilities), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:XAddr", -1, &a->tt__AnalyticsCapabilities::XAddr, "")) - return soap->error; - if (soap_out_bool(soap, "tt:RuleSupport", -1, &a->tt__AnalyticsCapabilities::RuleSupport, "")) - return soap->error; - if (soap_out_bool(soap, "tt:AnalyticsModuleSupport", -1, &a->tt__AnalyticsCapabilities::AnalyticsModuleSupport, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnalyticsCapabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnalyticsCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnalyticsCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnalyticsCapabilities * SOAP_FMAC4 soap_in_tt__AnalyticsCapabilities(struct soap *soap, const char *tag, tt__AnalyticsCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnalyticsCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnalyticsCapabilities, sizeof(tt__AnalyticsCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnalyticsCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnalyticsCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnalyticsCapabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XAddr1 = 1; - size_t soap_flag_RuleSupport1 = 1; - size_t soap_flag_AnalyticsModuleSupport1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XAddr1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:XAddr", &a->tt__AnalyticsCapabilities::XAddr, "xsd:anyURI")) - { soap_flag_XAddr1--; - continue; - } - } - if (soap_flag_RuleSupport1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:RuleSupport", &a->tt__AnalyticsCapabilities::RuleSupport, "xsd:boolean")) - { soap_flag_RuleSupport1--; - continue; - } - } - if (soap_flag_AnalyticsModuleSupport1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AnalyticsModuleSupport", &a->tt__AnalyticsCapabilities::AnalyticsModuleSupport, "xsd:boolean")) - { soap_flag_AnalyticsModuleSupport1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnalyticsCapabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_XAddr1 > 0 || soap_flag_RuleSupport1 > 0 || soap_flag_AnalyticsModuleSupport1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AnalyticsCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnalyticsCapabilities, SOAP_TYPE_tt__AnalyticsCapabilities, sizeof(tt__AnalyticsCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnalyticsCapabilities * SOAP_FMAC2 soap_instantiate_tt__AnalyticsCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnalyticsCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnalyticsCapabilities *p; - size_t k = sizeof(tt__AnalyticsCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnalyticsCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnalyticsCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnalyticsCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnalyticsCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnalyticsCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnalyticsCapabilities(soap, tag ? tag : "tt:AnalyticsCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnalyticsCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnalyticsCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnalyticsCapabilities * SOAP_FMAC4 soap_get_tt__AnalyticsCapabilities(struct soap *soap, tt__AnalyticsCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnalyticsCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CapabilitiesExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CapabilitiesExtension2::__any); -} - -void tt__CapabilitiesExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CapabilitiesExtension2::__any); -#endif -} - -int tt__CapabilitiesExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CapabilitiesExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilitiesExtension2(struct soap *soap, const char *tag, int id, const tt__CapabilitiesExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CapabilitiesExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CapabilitiesExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CapabilitiesExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CapabilitiesExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__CapabilitiesExtension2(struct soap *soap, const char *tag, tt__CapabilitiesExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CapabilitiesExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CapabilitiesExtension2, sizeof(tt__CapabilitiesExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CapabilitiesExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CapabilitiesExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CapabilitiesExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__CapabilitiesExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CapabilitiesExtension2, SOAP_TYPE_tt__CapabilitiesExtension2, sizeof(tt__CapabilitiesExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__CapabilitiesExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CapabilitiesExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CapabilitiesExtension2 *p; - size_t k = sizeof(tt__CapabilitiesExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CapabilitiesExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CapabilitiesExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CapabilitiesExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CapabilitiesExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CapabilitiesExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CapabilitiesExtension2(soap, tag ? tag : "tt:CapabilitiesExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CapabilitiesExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CapabilitiesExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__CapabilitiesExtension2(struct soap *soap, tt__CapabilitiesExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CapabilitiesExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__CapabilitiesExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CapabilitiesExtension::__any); - this->tt__CapabilitiesExtension::DeviceIO = NULL; - this->tt__CapabilitiesExtension::Display = NULL; - this->tt__CapabilitiesExtension::Recording = NULL; - this->tt__CapabilitiesExtension::Search = NULL; - this->tt__CapabilitiesExtension::Replay = NULL; - this->tt__CapabilitiesExtension::Receiver = NULL; - this->tt__CapabilitiesExtension::AnalyticsDevice = NULL; - this->tt__CapabilitiesExtension::Extensions = NULL; -} - -void tt__CapabilitiesExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__CapabilitiesExtension::__any); - soap_serialize_PointerTott__DeviceIOCapabilities(soap, &this->tt__CapabilitiesExtension::DeviceIO); - soap_serialize_PointerTott__DisplayCapabilities(soap, &this->tt__CapabilitiesExtension::Display); - soap_serialize_PointerTott__RecordingCapabilities(soap, &this->tt__CapabilitiesExtension::Recording); - soap_serialize_PointerTott__SearchCapabilities(soap, &this->tt__CapabilitiesExtension::Search); - soap_serialize_PointerTott__ReplayCapabilities(soap, &this->tt__CapabilitiesExtension::Replay); - soap_serialize_PointerTott__ReceiverCapabilities(soap, &this->tt__CapabilitiesExtension::Receiver); - soap_serialize_PointerTott__AnalyticsDeviceCapabilities(soap, &this->tt__CapabilitiesExtension::AnalyticsDevice); - soap_serialize_PointerTott__CapabilitiesExtension2(soap, &this->tt__CapabilitiesExtension::Extensions); -#endif -} - -int tt__CapabilitiesExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__CapabilitiesExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilitiesExtension(struct soap *soap, const char *tag, int id, const tt__CapabilitiesExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__CapabilitiesExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__CapabilitiesExtension::__any, "")) - return soap->error; - if (soap_out_PointerTott__DeviceIOCapabilities(soap, "tt:DeviceIO", -1, &a->tt__CapabilitiesExtension::DeviceIO, "")) - return soap->error; - if (soap_out_PointerTott__DisplayCapabilities(soap, "tt:Display", -1, &a->tt__CapabilitiesExtension::Display, "")) - return soap->error; - if (soap_out_PointerTott__RecordingCapabilities(soap, "tt:Recording", -1, &a->tt__CapabilitiesExtension::Recording, "")) - return soap->error; - if (soap_out_PointerTott__SearchCapabilities(soap, "tt:Search", -1, &a->tt__CapabilitiesExtension::Search, "")) - return soap->error; - if (soap_out_PointerTott__ReplayCapabilities(soap, "tt:Replay", -1, &a->tt__CapabilitiesExtension::Replay, "")) - return soap->error; - if (soap_out_PointerTott__ReceiverCapabilities(soap, "tt:Receiver", -1, &a->tt__CapabilitiesExtension::Receiver, "")) - return soap->error; - if (soap_out_PointerTott__AnalyticsDeviceCapabilities(soap, "tt:AnalyticsDevice", -1, &a->tt__CapabilitiesExtension::AnalyticsDevice, "")) - return soap->error; - if (soap_out_PointerTott__CapabilitiesExtension2(soap, "tt:Extensions", -1, &a->tt__CapabilitiesExtension::Extensions, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__CapabilitiesExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__CapabilitiesExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__CapabilitiesExtension * SOAP_FMAC4 soap_in_tt__CapabilitiesExtension(struct soap *soap, const char *tag, tt__CapabilitiesExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__CapabilitiesExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__CapabilitiesExtension, sizeof(tt__CapabilitiesExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__CapabilitiesExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__CapabilitiesExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DeviceIO1 = 1; - size_t soap_flag_Display1 = 1; - size_t soap_flag_Recording1 = 1; - size_t soap_flag_Search1 = 1; - size_t soap_flag_Replay1 = 1; - size_t soap_flag_Receiver1 = 1; - size_t soap_flag_AnalyticsDevice1 = 1; - size_t soap_flag_Extensions1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DeviceIO1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DeviceIOCapabilities(soap, "tt:DeviceIO", &a->tt__CapabilitiesExtension::DeviceIO, "tt:DeviceIOCapabilities")) - { soap_flag_DeviceIO1--; - continue; - } - } - if (soap_flag_Display1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DisplayCapabilities(soap, "tt:Display", &a->tt__CapabilitiesExtension::Display, "tt:DisplayCapabilities")) - { soap_flag_Display1--; - continue; - } - } - if (soap_flag_Recording1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RecordingCapabilities(soap, "tt:Recording", &a->tt__CapabilitiesExtension::Recording, "tt:RecordingCapabilities")) - { soap_flag_Recording1--; - continue; - } - } - if (soap_flag_Search1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SearchCapabilities(soap, "tt:Search", &a->tt__CapabilitiesExtension::Search, "tt:SearchCapabilities")) - { soap_flag_Search1--; - continue; - } - } - if (soap_flag_Replay1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReplayCapabilities(soap, "tt:Replay", &a->tt__CapabilitiesExtension::Replay, "tt:ReplayCapabilities")) - { soap_flag_Replay1--; - continue; - } - } - if (soap_flag_Receiver1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ReceiverCapabilities(soap, "tt:Receiver", &a->tt__CapabilitiesExtension::Receiver, "tt:ReceiverCapabilities")) - { soap_flag_Receiver1--; - continue; - } - } - if (soap_flag_AnalyticsDevice1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsDeviceCapabilities(soap, "tt:AnalyticsDevice", &a->tt__CapabilitiesExtension::AnalyticsDevice, "tt:AnalyticsDeviceCapabilities")) - { soap_flag_AnalyticsDevice1--; - continue; - } - } - if (soap_flag_Extensions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CapabilitiesExtension2(soap, "tt:Extensions", &a->tt__CapabilitiesExtension::Extensions, "tt:CapabilitiesExtension2")) - { soap_flag_Extensions1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__CapabilitiesExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__CapabilitiesExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__CapabilitiesExtension, SOAP_TYPE_tt__CapabilitiesExtension, sizeof(tt__CapabilitiesExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__CapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__CapabilitiesExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__CapabilitiesExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__CapabilitiesExtension *p; - size_t k = sizeof(tt__CapabilitiesExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__CapabilitiesExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__CapabilitiesExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__CapabilitiesExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__CapabilitiesExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__CapabilitiesExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__CapabilitiesExtension(soap, tag ? tag : "tt:CapabilitiesExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__CapabilitiesExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__CapabilitiesExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__CapabilitiesExtension * SOAP_FMAC4 soap_get_tt__CapabilitiesExtension(struct soap *soap, tt__CapabilitiesExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__CapabilitiesExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__Capabilities::Analytics = NULL; - this->tt__Capabilities::Device = NULL; - this->tt__Capabilities::Events = NULL; - this->tt__Capabilities::Imaging = NULL; - this->tt__Capabilities::Media = NULL; - this->tt__Capabilities::PTZ = NULL; - this->tt__Capabilities::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Capabilities::__anyAttribute); -} - -void tt__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AnalyticsCapabilities(soap, &this->tt__Capabilities::Analytics); - soap_serialize_PointerTott__DeviceCapabilities(soap, &this->tt__Capabilities::Device); - soap_serialize_PointerTott__EventCapabilities(soap, &this->tt__Capabilities::Events); - soap_serialize_PointerTott__ImagingCapabilities(soap, &this->tt__Capabilities::Imaging); - soap_serialize_PointerTott__MediaCapabilities(soap, &this->tt__Capabilities::Media); - soap_serialize_PointerTott__PTZCapabilities(soap, &this->tt__Capabilities::PTZ); - soap_serialize_PointerTott__CapabilitiesExtension(soap, &this->tt__Capabilities::Extension); -#endif -} - -int tt__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Capabilities(struct soap *soap, const char *tag, int id, const tt__Capabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Capabilities), type)) - return soap->error; - if (soap_out_PointerTott__AnalyticsCapabilities(soap, "tt:Analytics", -1, &a->tt__Capabilities::Analytics, "")) - return soap->error; - if (soap_out_PointerTott__DeviceCapabilities(soap, "tt:Device", -1, &a->tt__Capabilities::Device, "")) - return soap->error; - if (soap_out_PointerTott__EventCapabilities(soap, "tt:Events", -1, &a->tt__Capabilities::Events, "")) - return soap->error; - if (soap_out_PointerTott__ImagingCapabilities(soap, "tt:Imaging", -1, &a->tt__Capabilities::Imaging, "")) - return soap->error; - if (soap_out_PointerTott__MediaCapabilities(soap, "tt:Media", -1, &a->tt__Capabilities::Media, "")) - return soap->error; - if (soap_out_PointerTott__PTZCapabilities(soap, "tt:PTZ", -1, &a->tt__Capabilities::PTZ, "")) - return soap->error; - if (soap_out_PointerTott__CapabilitiesExtension(soap, "tt:Extension", -1, &a->tt__Capabilities::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Capabilities * SOAP_FMAC4 soap_in_tt__Capabilities(struct soap *soap, const char *tag, tt__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Capabilities, sizeof(tt__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Analytics1 = 1; - size_t soap_flag_Device1 = 1; - size_t soap_flag_Events1 = 1; - size_t soap_flag_Imaging1 = 1; - size_t soap_flag_Media1 = 1; - size_t soap_flag_PTZ1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Analytics1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsCapabilities(soap, "tt:Analytics", &a->tt__Capabilities::Analytics, "tt:AnalyticsCapabilities")) - { soap_flag_Analytics1--; - continue; - } - } - if (soap_flag_Device1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DeviceCapabilities(soap, "tt:Device", &a->tt__Capabilities::Device, "tt:DeviceCapabilities")) - { soap_flag_Device1--; - continue; - } - } - if (soap_flag_Events1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EventCapabilities(soap, "tt:Events", &a->tt__Capabilities::Events, "tt:EventCapabilities")) - { soap_flag_Events1--; - continue; - } - } - if (soap_flag_Imaging1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingCapabilities(soap, "tt:Imaging", &a->tt__Capabilities::Imaging, "tt:ImagingCapabilities")) - { soap_flag_Imaging1--; - continue; - } - } - if (soap_flag_Media1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MediaCapabilities(soap, "tt:Media", &a->tt__Capabilities::Media, "tt:MediaCapabilities")) - { soap_flag_Media1--; - continue; - } - } - if (soap_flag_PTZ1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZCapabilities(soap, "tt:PTZ", &a->tt__Capabilities::PTZ, "tt:PTZCapabilities")) - { soap_flag_PTZ1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__CapabilitiesExtension(soap, "tt:Extension", &a->tt__Capabilities::Extension, "tt:CapabilitiesExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Capabilities, SOAP_TYPE_tt__Capabilities, sizeof(tt__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Capabilities * SOAP_FMAC2 soap_instantiate_tt__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Capabilities *p; - size_t k = sizeof(tt__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Capabilities(soap, tag ? tag : "tt:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Capabilities * SOAP_FMAC4 soap_get_tt__Capabilities(struct soap *soap, tt__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11AvailableNetworksExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11AvailableNetworksExtension::__any); -} - -void tt__Dot11AvailableNetworksExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11AvailableNetworksExtension::__any); -#endif -} - -int tt__Dot11AvailableNetworksExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11AvailableNetworksExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AvailableNetworksExtension(struct soap *soap, const char *tag, int id, const tt__Dot11AvailableNetworksExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11AvailableNetworksExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot11AvailableNetworksExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11AvailableNetworksExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11AvailableNetworksExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11AvailableNetworksExtension * SOAP_FMAC4 soap_in_tt__Dot11AvailableNetworksExtension(struct soap *soap, const char *tag, tt__Dot11AvailableNetworksExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11AvailableNetworksExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11AvailableNetworksExtension, sizeof(tt__Dot11AvailableNetworksExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11AvailableNetworksExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11AvailableNetworksExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot11AvailableNetworksExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Dot11AvailableNetworksExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11AvailableNetworksExtension, SOAP_TYPE_tt__Dot11AvailableNetworksExtension, sizeof(tt__Dot11AvailableNetworksExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11AvailableNetworksExtension * SOAP_FMAC2 soap_instantiate_tt__Dot11AvailableNetworksExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11AvailableNetworksExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11AvailableNetworksExtension *p; - size_t k = sizeof(tt__Dot11AvailableNetworksExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11AvailableNetworksExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11AvailableNetworksExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11AvailableNetworksExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11AvailableNetworksExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11AvailableNetworksExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11AvailableNetworksExtension(soap, tag ? tag : "tt:Dot11AvailableNetworksExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11AvailableNetworksExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11AvailableNetworksExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11AvailableNetworksExtension * SOAP_FMAC4 soap_get_tt__Dot11AvailableNetworksExtension(struct soap *soap, tt__Dot11AvailableNetworksExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11AvailableNetworksExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11AvailableNetworks::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11SSIDType(soap, &this->tt__Dot11AvailableNetworks::SSID); - this->tt__Dot11AvailableNetworks::BSSID = NULL; - soap_default_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(soap, &this->tt__Dot11AvailableNetworks::AuthAndMangementSuite); - soap_default_std__vectorTemplateOftt__Dot11Cipher(soap, &this->tt__Dot11AvailableNetworks::PairCipher); - soap_default_std__vectorTemplateOftt__Dot11Cipher(soap, &this->tt__Dot11AvailableNetworks::GroupCipher); - this->tt__Dot11AvailableNetworks::SignalStrength = NULL; - this->tt__Dot11AvailableNetworks::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Dot11AvailableNetworks::__anyAttribute); -} - -void tt__Dot11AvailableNetworks::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__Dot11SSIDType(soap, &this->tt__Dot11AvailableNetworks::SSID); - soap_serialize_PointerTostd__string(soap, &this->tt__Dot11AvailableNetworks::BSSID); - soap_serialize_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(soap, &this->tt__Dot11AvailableNetworks::AuthAndMangementSuite); - soap_serialize_std__vectorTemplateOftt__Dot11Cipher(soap, &this->tt__Dot11AvailableNetworks::PairCipher); - soap_serialize_std__vectorTemplateOftt__Dot11Cipher(soap, &this->tt__Dot11AvailableNetworks::GroupCipher); - soap_serialize_PointerTott__Dot11SignalStrength(soap, &this->tt__Dot11AvailableNetworks::SignalStrength); - soap_serialize_PointerTott__Dot11AvailableNetworksExtension(soap, &this->tt__Dot11AvailableNetworks::Extension); -#endif -} - -int tt__Dot11AvailableNetworks::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11AvailableNetworks(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AvailableNetworks(struct soap *soap, const char *tag, int id, const tt__Dot11AvailableNetworks *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot11AvailableNetworks*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11AvailableNetworks), type)) - return soap->error; - if (soap_out_tt__Dot11SSIDType(soap, "tt:SSID", -1, &a->tt__Dot11AvailableNetworks::SSID, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:BSSID", -1, &a->tt__Dot11AvailableNetworks::BSSID, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(soap, "tt:AuthAndMangementSuite", -1, &a->tt__Dot11AvailableNetworks::AuthAndMangementSuite, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__Dot11Cipher(soap, "tt:PairCipher", -1, &a->tt__Dot11AvailableNetworks::PairCipher, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__Dot11Cipher(soap, "tt:GroupCipher", -1, &a->tt__Dot11AvailableNetworks::GroupCipher, "")) - return soap->error; - if (soap_out_PointerTott__Dot11SignalStrength(soap, "tt:SignalStrength", -1, &a->tt__Dot11AvailableNetworks::SignalStrength, "")) - return soap->error; - if (soap_out_PointerTott__Dot11AvailableNetworksExtension(soap, "tt:Extension", -1, &a->tt__Dot11AvailableNetworks::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11AvailableNetworks::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11AvailableNetworks(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11AvailableNetworks * SOAP_FMAC4 soap_in_tt__Dot11AvailableNetworks(struct soap *soap, const char *tag, tt__Dot11AvailableNetworks *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11AvailableNetworks*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11AvailableNetworks, sizeof(tt__Dot11AvailableNetworks), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11AvailableNetworks) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11AvailableNetworks *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot11AvailableNetworks*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SSID1 = 1; - size_t soap_flag_BSSID1 = 1; - size_t soap_flag_SignalStrength1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SSID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__Dot11SSIDType(soap, "tt:SSID", &a->tt__Dot11AvailableNetworks::SSID, "tt:Dot11SSIDType")) - { soap_flag_SSID1--; - continue; - } - } - if (soap_flag_BSSID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:BSSID", &a->tt__Dot11AvailableNetworks::BSSID, "xsd:string")) - { soap_flag_BSSID1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(soap, "tt:AuthAndMangementSuite", &a->tt__Dot11AvailableNetworks::AuthAndMangementSuite, "tt:Dot11AuthAndMangementSuite")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__Dot11Cipher(soap, "tt:PairCipher", &a->tt__Dot11AvailableNetworks::PairCipher, "tt:Dot11Cipher")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__Dot11Cipher(soap, "tt:GroupCipher", &a->tt__Dot11AvailableNetworks::GroupCipher, "tt:Dot11Cipher")) - continue; - } - if (soap_flag_SignalStrength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11SignalStrength(soap, "tt:SignalStrength", &a->tt__Dot11AvailableNetworks::SignalStrength, "tt:Dot11SignalStrength")) - { soap_flag_SignalStrength1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11AvailableNetworksExtension(soap, "tt:Extension", &a->tt__Dot11AvailableNetworks::Extension, "tt:Dot11AvailableNetworksExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SSID1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Dot11AvailableNetworks *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11AvailableNetworks, SOAP_TYPE_tt__Dot11AvailableNetworks, sizeof(tt__Dot11AvailableNetworks), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11AvailableNetworks * SOAP_FMAC2 soap_instantiate_tt__Dot11AvailableNetworks(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11AvailableNetworks(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11AvailableNetworks *p; - size_t k = sizeof(tt__Dot11AvailableNetworks); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11AvailableNetworks, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11AvailableNetworks); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11AvailableNetworks, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11AvailableNetworks location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11AvailableNetworks::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11AvailableNetworks(soap, tag ? tag : "tt:Dot11AvailableNetworks", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11AvailableNetworks::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11AvailableNetworks(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11AvailableNetworks * SOAP_FMAC4 soap_get_tt__Dot11AvailableNetworks(struct soap *soap, tt__Dot11AvailableNetworks *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11AvailableNetworks(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11Status::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11SSIDType(soap, &this->tt__Dot11Status::SSID); - this->tt__Dot11Status::BSSID = NULL; - this->tt__Dot11Status::PairCipher = NULL; - this->tt__Dot11Status::GroupCipher = NULL; - this->tt__Dot11Status::SignalStrength = NULL; - soap_default_tt__ReferenceToken(soap, &this->tt__Dot11Status::ActiveConfigAlias); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11Status::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Dot11Status::__anyAttribute); -} - -void tt__Dot11Status::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__Dot11SSIDType(soap, &this->tt__Dot11Status::SSID); - soap_serialize_PointerTostd__string(soap, &this->tt__Dot11Status::BSSID); - soap_serialize_PointerTott__Dot11Cipher(soap, &this->tt__Dot11Status::PairCipher); - soap_serialize_PointerTott__Dot11Cipher(soap, &this->tt__Dot11Status::GroupCipher); - soap_serialize_PointerTott__Dot11SignalStrength(soap, &this->tt__Dot11Status::SignalStrength); - soap_embedded(soap, &this->tt__Dot11Status::ActiveConfigAlias, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__Dot11Status::ActiveConfigAlias); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11Status::__any); -#endif -} - -int tt__Dot11Status::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11Status(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Status(struct soap *soap, const char *tag, int id, const tt__Dot11Status *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot11Status*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11Status), type)) - return soap->error; - if (soap_out_tt__Dot11SSIDType(soap, "tt:SSID", -1, &a->tt__Dot11Status::SSID, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:BSSID", -1, &a->tt__Dot11Status::BSSID, "")) - return soap->error; - if (soap_out_PointerTott__Dot11Cipher(soap, "tt:PairCipher", -1, &a->tt__Dot11Status::PairCipher, "")) - return soap->error; - if (soap_out_PointerTott__Dot11Cipher(soap, "tt:GroupCipher", -1, &a->tt__Dot11Status::GroupCipher, "")) - return soap->error; - if (soap_out_PointerTott__Dot11SignalStrength(soap, "tt:SignalStrength", -1, &a->tt__Dot11Status::SignalStrength, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:ActiveConfigAlias", -1, &a->tt__Dot11Status::ActiveConfigAlias, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot11Status::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11Status::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11Status(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11Status * SOAP_FMAC4 soap_in_tt__Dot11Status(struct soap *soap, const char *tag, tt__Dot11Status *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11Status*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11Status, sizeof(tt__Dot11Status), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11Status) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11Status *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot11Status*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SSID1 = 1; - size_t soap_flag_BSSID1 = 1; - size_t soap_flag_PairCipher1 = 1; - size_t soap_flag_GroupCipher1 = 1; - size_t soap_flag_SignalStrength1 = 1; - size_t soap_flag_ActiveConfigAlias1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SSID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__Dot11SSIDType(soap, "tt:SSID", &a->tt__Dot11Status::SSID, "tt:Dot11SSIDType")) - { soap_flag_SSID1--; - continue; - } - } - if (soap_flag_BSSID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:BSSID", &a->tt__Dot11Status::BSSID, "xsd:string")) - { soap_flag_BSSID1--; - continue; - } - } - if (soap_flag_PairCipher1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11Cipher(soap, "tt:PairCipher", &a->tt__Dot11Status::PairCipher, "tt:Dot11Cipher")) - { soap_flag_PairCipher1--; - continue; - } - } - if (soap_flag_GroupCipher1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11Cipher(soap, "tt:GroupCipher", &a->tt__Dot11Status::GroupCipher, "tt:Dot11Cipher")) - { soap_flag_GroupCipher1--; - continue; - } - } - if (soap_flag_SignalStrength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11SignalStrength(soap, "tt:SignalStrength", &a->tt__Dot11Status::SignalStrength, "tt:Dot11SignalStrength")) - { soap_flag_SignalStrength1--; - continue; - } - } - if (soap_flag_ActiveConfigAlias1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:ActiveConfigAlias", &a->tt__Dot11Status::ActiveConfigAlias, "tt:ReferenceToken")) - { soap_flag_ActiveConfigAlias1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot11Status::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SSID1 > 0 || soap_flag_ActiveConfigAlias1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Dot11Status *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11Status, SOAP_TYPE_tt__Dot11Status, sizeof(tt__Dot11Status), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11Status * SOAP_FMAC2 soap_instantiate_tt__Dot11Status(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11Status(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11Status *p; - size_t k = sizeof(tt__Dot11Status); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11Status, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11Status); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11Status, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11Status location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11Status::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11Status(soap, tag ? tag : "tt:Dot11Status", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11Status::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11Status(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11Status * SOAP_FMAC4 soap_get_tt__Dot11Status(struct soap *soap, tt__Dot11Status *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11Status(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__Dot11Capabilities::TKIP); - soap_default_bool(soap, &this->tt__Dot11Capabilities::ScanAvailableNetworks); - soap_default_bool(soap, &this->tt__Dot11Capabilities::MultipleConfiguration); - soap_default_bool(soap, &this->tt__Dot11Capabilities::AdHocStationMode); - soap_default_bool(soap, &this->tt__Dot11Capabilities::WEP); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11Capabilities::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Dot11Capabilities::__anyAttribute); -} - -void tt__Dot11Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Dot11Capabilities::TKIP, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__Dot11Capabilities::ScanAvailableNetworks, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__Dot11Capabilities::MultipleConfiguration, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__Dot11Capabilities::AdHocStationMode, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__Dot11Capabilities::WEP, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11Capabilities::__any); -#endif -} - -int tt__Dot11Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Capabilities(struct soap *soap, const char *tag, int id, const tt__Dot11Capabilities *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot11Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11Capabilities), type)) - return soap->error; - if (soap_out_bool(soap, "tt:TKIP", -1, &a->tt__Dot11Capabilities::TKIP, "")) - return soap->error; - if (soap_out_bool(soap, "tt:ScanAvailableNetworks", -1, &a->tt__Dot11Capabilities::ScanAvailableNetworks, "")) - return soap->error; - if (soap_out_bool(soap, "tt:MultipleConfiguration", -1, &a->tt__Dot11Capabilities::MultipleConfiguration, "")) - return soap->error; - if (soap_out_bool(soap, "tt:AdHocStationMode", -1, &a->tt__Dot11Capabilities::AdHocStationMode, "")) - return soap->error; - if (soap_out_bool(soap, "tt:WEP", -1, &a->tt__Dot11Capabilities::WEP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot11Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11Capabilities * SOAP_FMAC4 soap_in_tt__Dot11Capabilities(struct soap *soap, const char *tag, tt__Dot11Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11Capabilities, sizeof(tt__Dot11Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot11Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_TKIP1 = 1; - size_t soap_flag_ScanAvailableNetworks1 = 1; - size_t soap_flag_MultipleConfiguration1 = 1; - size_t soap_flag_AdHocStationMode1 = 1; - size_t soap_flag_WEP1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TKIP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:TKIP", &a->tt__Dot11Capabilities::TKIP, "xsd:boolean")) - { soap_flag_TKIP1--; - continue; - } - } - if (soap_flag_ScanAvailableNetworks1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:ScanAvailableNetworks", &a->tt__Dot11Capabilities::ScanAvailableNetworks, "xsd:boolean")) - { soap_flag_ScanAvailableNetworks1--; - continue; - } - } - if (soap_flag_MultipleConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:MultipleConfiguration", &a->tt__Dot11Capabilities::MultipleConfiguration, "xsd:boolean")) - { soap_flag_MultipleConfiguration1--; - continue; - } - } - if (soap_flag_AdHocStationMode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AdHocStationMode", &a->tt__Dot11Capabilities::AdHocStationMode, "xsd:boolean")) - { soap_flag_AdHocStationMode1--; - continue; - } - } - if (soap_flag_WEP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:WEP", &a->tt__Dot11Capabilities::WEP, "xsd:boolean")) - { soap_flag_WEP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot11Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TKIP1 > 0 || soap_flag_ScanAvailableNetworks1 > 0 || soap_flag_MultipleConfiguration1 > 0 || soap_flag_AdHocStationMode1 > 0 || soap_flag_WEP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Dot11Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11Capabilities, SOAP_TYPE_tt__Dot11Capabilities, sizeof(tt__Dot11Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11Capabilities * SOAP_FMAC2 soap_instantiate_tt__Dot11Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11Capabilities *p; - size_t k = sizeof(tt__Dot11Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11Capabilities(soap, tag ? tag : "tt:Dot11Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11Capabilities * SOAP_FMAC4 soap_get_tt__Dot11Capabilities(struct soap *soap, tt__Dot11Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceSetConfigurationExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceSetConfigurationExtension2::__any); -} - -void tt__NetworkInterfaceSetConfigurationExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceSetConfigurationExtension2::__any); -#endif -} - -int tt__NetworkInterfaceSetConfigurationExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceSetConfigurationExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceSetConfigurationExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkInterfaceSetConfigurationExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceSetConfigurationExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceSetConfigurationExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, const char *tag, tt__NetworkInterfaceSetConfigurationExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceSetConfigurationExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2, sizeof(tt__NetworkInterfaceSetConfigurationExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceSetConfigurationExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkInterfaceSetConfigurationExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkInterfaceSetConfigurationExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2, sizeof(tt__NetworkInterfaceSetConfigurationExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceSetConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceSetConfigurationExtension2 *p; - size_t k = sizeof(tt__NetworkInterfaceSetConfigurationExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceSetConfigurationExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceSetConfigurationExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceSetConfigurationExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceSetConfigurationExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceSetConfigurationExtension2(soap, tag ? tag : "tt:NetworkInterfaceSetConfigurationExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceSetConfigurationExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceSetConfigurationExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceSetConfigurationExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11PSKSetExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11PSKSetExtension::__any); -} - -void tt__Dot11PSKSetExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11PSKSetExtension::__any); -#endif -} - -int tt__Dot11PSKSetExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11PSKSetExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKSetExtension(struct soap *soap, const char *tag, int id, const tt__Dot11PSKSetExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11PSKSetExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot11PSKSetExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11PSKSetExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11PSKSetExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11PSKSetExtension * SOAP_FMAC4 soap_in_tt__Dot11PSKSetExtension(struct soap *soap, const char *tag, tt__Dot11PSKSetExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11PSKSetExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11PSKSetExtension, sizeof(tt__Dot11PSKSetExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11PSKSetExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11PSKSetExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot11PSKSetExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Dot11PSKSetExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11PSKSetExtension, SOAP_TYPE_tt__Dot11PSKSetExtension, sizeof(tt__Dot11PSKSetExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11PSKSetExtension * SOAP_FMAC2 soap_instantiate_tt__Dot11PSKSetExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11PSKSetExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11PSKSetExtension *p; - size_t k = sizeof(tt__Dot11PSKSetExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11PSKSetExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11PSKSetExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11PSKSetExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11PSKSetExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11PSKSetExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11PSKSetExtension(soap, tag ? tag : "tt:Dot11PSKSetExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11PSKSetExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11PSKSetExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11PSKSetExtension * SOAP_FMAC4 soap_get_tt__Dot11PSKSetExtension(struct soap *soap, tt__Dot11PSKSetExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11PSKSetExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11PSKSet::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__Dot11PSKSet::Key = NULL; - this->tt__Dot11PSKSet::Passphrase = NULL; - this->tt__Dot11PSKSet::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Dot11PSKSet::__anyAttribute); -} - -void tt__Dot11PSKSet::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Dot11PSK(soap, &this->tt__Dot11PSKSet::Key); - soap_serialize_PointerTott__Dot11PSKPassphrase(soap, &this->tt__Dot11PSKSet::Passphrase); - soap_serialize_PointerTott__Dot11PSKSetExtension(soap, &this->tt__Dot11PSKSet::Extension); -#endif -} - -int tt__Dot11PSKSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11PSKSet(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKSet(struct soap *soap, const char *tag, int id, const tt__Dot11PSKSet *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot11PSKSet*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11PSKSet), type)) - return soap->error; - if (soap_out_PointerTott__Dot11PSK(soap, "tt:Key", -1, &a->tt__Dot11PSKSet::Key, "")) - return soap->error; - if (soap_out_PointerTott__Dot11PSKPassphrase(soap, "tt:Passphrase", -1, &a->tt__Dot11PSKSet::Passphrase, "")) - return soap->error; - if (soap_out_PointerTott__Dot11PSKSetExtension(soap, "tt:Extension", -1, &a->tt__Dot11PSKSet::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11PSKSet::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11PSKSet(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11PSKSet * SOAP_FMAC4 soap_in_tt__Dot11PSKSet(struct soap *soap, const char *tag, tt__Dot11PSKSet *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11PSKSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11PSKSet, sizeof(tt__Dot11PSKSet), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11PSKSet) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11PSKSet *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot11PSKSet*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Key1 = 1; - size_t soap_flag_Passphrase1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Key1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11PSK(soap, "tt:Key", &a->tt__Dot11PSKSet::Key, "tt:Dot11PSK")) - { soap_flag_Key1--; - continue; - } - } - if (soap_flag_Passphrase1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__Dot11PSKPassphrase(soap, "tt:Passphrase", &a->tt__Dot11PSKSet::Passphrase, "tt:Dot11PSKPassphrase")) - { soap_flag_Passphrase1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11PSKSetExtension(soap, "tt:Extension", &a->tt__Dot11PSKSet::Extension, "tt:Dot11PSKSetExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Dot11PSKSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11PSKSet, SOAP_TYPE_tt__Dot11PSKSet, sizeof(tt__Dot11PSKSet), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11PSKSet * SOAP_FMAC2 soap_instantiate_tt__Dot11PSKSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11PSKSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11PSKSet *p; - size_t k = sizeof(tt__Dot11PSKSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11PSKSet, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11PSKSet); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11PSKSet, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11PSKSet location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11PSKSet::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11PSKSet(soap, tag ? tag : "tt:Dot11PSKSet", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11PSKSet::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11PSKSet(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11PSKSet * SOAP_FMAC4 soap_get_tt__Dot11PSKSet(struct soap *soap, tt__Dot11PSKSet *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11PSKSet(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11SecurityConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11SecurityConfigurationExtension::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Dot11SecurityConfigurationExtension::__anyAttribute); -} - -void tt__Dot11SecurityConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11SecurityConfigurationExtension::__any); -#endif -} - -int tt__Dot11SecurityConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11SecurityConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__Dot11SecurityConfigurationExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot11SecurityConfigurationExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11SecurityConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot11SecurityConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11SecurityConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11SecurityConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11SecurityConfigurationExtension * SOAP_FMAC4 soap_in_tt__Dot11SecurityConfigurationExtension(struct soap *soap, const char *tag, tt__Dot11SecurityConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11SecurityConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SecurityConfigurationExtension, sizeof(tt__Dot11SecurityConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11SecurityConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11SecurityConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot11SecurityConfigurationExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot11SecurityConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Dot11SecurityConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11SecurityConfigurationExtension, SOAP_TYPE_tt__Dot11SecurityConfigurationExtension, sizeof(tt__Dot11SecurityConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11SecurityConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__Dot11SecurityConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11SecurityConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11SecurityConfigurationExtension *p; - size_t k = sizeof(tt__Dot11SecurityConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11SecurityConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11SecurityConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11SecurityConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11SecurityConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11SecurityConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11SecurityConfigurationExtension(soap, tag ? tag : "tt:Dot11SecurityConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11SecurityConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11SecurityConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11SecurityConfigurationExtension * SOAP_FMAC4 soap_get_tt__Dot11SecurityConfigurationExtension(struct soap *soap, tt__Dot11SecurityConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SecurityConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11SecurityConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11SecurityMode(soap, &this->tt__Dot11SecurityConfiguration::Mode); - this->tt__Dot11SecurityConfiguration::Algorithm = NULL; - this->tt__Dot11SecurityConfiguration::PSK = NULL; - this->tt__Dot11SecurityConfiguration::Dot1X = NULL; - this->tt__Dot11SecurityConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Dot11SecurityConfiguration::__anyAttribute); -} - -void tt__Dot11SecurityConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Dot11Cipher(soap, &this->tt__Dot11SecurityConfiguration::Algorithm); - soap_serialize_PointerTott__Dot11PSKSet(soap, &this->tt__Dot11SecurityConfiguration::PSK); - soap_serialize_PointerTott__ReferenceToken(soap, &this->tt__Dot11SecurityConfiguration::Dot1X); - soap_serialize_PointerTott__Dot11SecurityConfigurationExtension(soap, &this->tt__Dot11SecurityConfiguration::Extension); -#endif -} - -int tt__Dot11SecurityConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11SecurityConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityConfiguration(struct soap *soap, const char *tag, int id, const tt__Dot11SecurityConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot11SecurityConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11SecurityConfiguration), type)) - return soap->error; - if (soap_out_tt__Dot11SecurityMode(soap, "tt:Mode", -1, &a->tt__Dot11SecurityConfiguration::Mode, "")) - return soap->error; - if (soap_out_PointerTott__Dot11Cipher(soap, "tt:Algorithm", -1, &a->tt__Dot11SecurityConfiguration::Algorithm, "")) - return soap->error; - if (soap_out_PointerTott__Dot11PSKSet(soap, "tt:PSK", -1, &a->tt__Dot11SecurityConfiguration::PSK, "")) - return soap->error; - if (soap_out_PointerTott__ReferenceToken(soap, "tt:Dot1X", -1, &a->tt__Dot11SecurityConfiguration::Dot1X, "")) - return soap->error; - if (soap_out_PointerTott__Dot11SecurityConfigurationExtension(soap, "tt:Extension", -1, &a->tt__Dot11SecurityConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11SecurityConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11SecurityConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11SecurityConfiguration * SOAP_FMAC4 soap_in_tt__Dot11SecurityConfiguration(struct soap *soap, const char *tag, tt__Dot11SecurityConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11SecurityConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11SecurityConfiguration, sizeof(tt__Dot11SecurityConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11SecurityConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11SecurityConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot11SecurityConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Algorithm1 = 1; - size_t soap_flag_PSK1 = 1; - size_t soap_flag_Dot1X1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__Dot11SecurityMode(soap, "tt:Mode", &a->tt__Dot11SecurityConfiguration::Mode, "tt:Dot11SecurityMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Algorithm1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11Cipher(soap, "tt:Algorithm", &a->tt__Dot11SecurityConfiguration::Algorithm, "tt:Dot11Cipher")) - { soap_flag_Algorithm1--; - continue; - } - } - if (soap_flag_PSK1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11PSKSet(soap, "tt:PSK", &a->tt__Dot11SecurityConfiguration::PSK, "tt:Dot11PSKSet")) - { soap_flag_PSK1--; - continue; - } - } - if (soap_flag_Dot1X1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__ReferenceToken(soap, "tt:Dot1X", &a->tt__Dot11SecurityConfiguration::Dot1X, "tt:ReferenceToken")) - { soap_flag_Dot1X1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11SecurityConfigurationExtension(soap, "tt:Extension", &a->tt__Dot11SecurityConfiguration::Extension, "tt:Dot11SecurityConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Dot11SecurityConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11SecurityConfiguration, SOAP_TYPE_tt__Dot11SecurityConfiguration, sizeof(tt__Dot11SecurityConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11SecurityConfiguration * SOAP_FMAC2 soap_instantiate_tt__Dot11SecurityConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11SecurityConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11SecurityConfiguration *p; - size_t k = sizeof(tt__Dot11SecurityConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11SecurityConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11SecurityConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11SecurityConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11SecurityConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11SecurityConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11SecurityConfiguration(soap, tag ? tag : "tt:Dot11SecurityConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11SecurityConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11SecurityConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11SecurityConfiguration * SOAP_FMAC4 soap_get_tt__Dot11SecurityConfiguration(struct soap *soap, tt__Dot11SecurityConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11SecurityConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot11Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Dot11SSIDType(soap, &this->tt__Dot11Configuration::SSID); - soap_default_tt__Dot11StationMode(soap, &this->tt__Dot11Configuration::Mode); - soap_default_tt__Name(soap, &this->tt__Dot11Configuration::Alias); - soap_default_tt__NetworkInterfaceConfigPriority(soap, &this->tt__Dot11Configuration::Priority); - this->tt__Dot11Configuration::Security = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11Configuration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Dot11Configuration::__anyAttribute); -} - -void tt__Dot11Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_tt__Dot11SSIDType(soap, &this->tt__Dot11Configuration::SSID); - soap_embedded(soap, &this->tt__Dot11Configuration::Alias, SOAP_TYPE_tt__Name); - soap_serialize_tt__Name(soap, &this->tt__Dot11Configuration::Alias); - soap_serialize_tt__NetworkInterfaceConfigPriority(soap, &this->tt__Dot11Configuration::Priority); - soap_serialize_PointerTott__Dot11SecurityConfiguration(soap, &this->tt__Dot11Configuration::Security); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot11Configuration::__any); -#endif -} - -int tt__Dot11Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot11Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Configuration(struct soap *soap, const char *tag, int id, const tt__Dot11Configuration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot11Configuration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot11Configuration), type)) - return soap->error; - if (soap_out_tt__Dot11SSIDType(soap, "tt:SSID", -1, &a->tt__Dot11Configuration::SSID, "")) - return soap->error; - if (soap_out_tt__Dot11StationMode(soap, "tt:Mode", -1, &a->tt__Dot11Configuration::Mode, "")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Alias", -1, &a->tt__Dot11Configuration::Alias, "")) - return soap->error; - if (soap_out_tt__NetworkInterfaceConfigPriority(soap, "tt:Priority", -1, &a->tt__Dot11Configuration::Priority, "")) - return soap->error; - if (!a->tt__Dot11Configuration::Security) - { if (soap_element_empty(soap, "tt:Security", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Dot11SecurityConfiguration(soap, "tt:Security", -1, &a->tt__Dot11Configuration::Security, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot11Configuration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot11Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot11Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot11Configuration * SOAP_FMAC4 soap_in_tt__Dot11Configuration(struct soap *soap, const char *tag, tt__Dot11Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot11Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot11Configuration, sizeof(tt__Dot11Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot11Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot11Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot11Configuration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SSID1 = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Alias1 = 1; - size_t soap_flag_Priority1 = 1; - size_t soap_flag_Security1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SSID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__Dot11SSIDType(soap, "tt:SSID", &a->tt__Dot11Configuration::SSID, "tt:Dot11SSIDType")) - { soap_flag_SSID1--; - continue; - } - } - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__Dot11StationMode(soap, "tt:Mode", &a->tt__Dot11Configuration::Mode, "tt:Dot11StationMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Alias1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Alias", &a->tt__Dot11Configuration::Alias, "tt:Name")) - { soap_flag_Alias1--; - continue; - } - } - if (soap_flag_Priority1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__NetworkInterfaceConfigPriority(soap, "tt:Priority", &a->tt__Dot11Configuration::Priority, "tt:NetworkInterfaceConfigPriority")) - { soap_flag_Priority1--; - continue; - } - } - if (soap_flag_Security1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Dot11SecurityConfiguration(soap, "tt:Security", &a->tt__Dot11Configuration::Security, "tt:Dot11SecurityConfiguration")) - { soap_flag_Security1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot11Configuration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SSID1 > 0 || soap_flag_Mode1 > 0 || soap_flag_Alias1 > 0 || soap_flag_Priority1 > 0 || !a->tt__Dot11Configuration::Security)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Dot11Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot11Configuration, SOAP_TYPE_tt__Dot11Configuration, sizeof(tt__Dot11Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot11Configuration * SOAP_FMAC2 soap_instantiate_tt__Dot11Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot11Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot11Configuration *p; - size_t k = sizeof(tt__Dot11Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot11Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot11Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot11Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot11Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot11Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot11Configuration(soap, tag ? tag : "tt:Dot11Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot11Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot11Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot11Configuration * SOAP_FMAC4 soap_get_tt__Dot11Configuration(struct soap *soap, tt__Dot11Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot11Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPAddressFilterExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IPAddressFilterExtension::__any); -} - -void tt__IPAddressFilterExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IPAddressFilterExtension::__any); -#endif -} - -int tt__IPAddressFilterExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPAddressFilterExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilterExtension(struct soap *soap, const char *tag, int id, const tt__IPAddressFilterExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPAddressFilterExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__IPAddressFilterExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPAddressFilterExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPAddressFilterExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPAddressFilterExtension * SOAP_FMAC4 soap_in_tt__IPAddressFilterExtension(struct soap *soap, const char *tag, tt__IPAddressFilterExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPAddressFilterExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPAddressFilterExtension, sizeof(tt__IPAddressFilterExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPAddressFilterExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPAddressFilterExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__IPAddressFilterExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IPAddressFilterExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPAddressFilterExtension, SOAP_TYPE_tt__IPAddressFilterExtension, sizeof(tt__IPAddressFilterExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPAddressFilterExtension * SOAP_FMAC2 soap_instantiate_tt__IPAddressFilterExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPAddressFilterExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPAddressFilterExtension *p; - size_t k = sizeof(tt__IPAddressFilterExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPAddressFilterExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPAddressFilterExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPAddressFilterExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPAddressFilterExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPAddressFilterExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPAddressFilterExtension(soap, tag ? tag : "tt:IPAddressFilterExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPAddressFilterExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPAddressFilterExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPAddressFilterExtension * SOAP_FMAC4 soap_get_tt__IPAddressFilterExtension(struct soap *soap, tt__IPAddressFilterExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPAddressFilterExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPAddressFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPAddressFilterType(soap, &this->tt__IPAddressFilter::Type); - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, &this->tt__IPAddressFilter::IPv4Address); - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPAddressFilter::IPv6Address); - this->tt__IPAddressFilter::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__IPAddressFilter::__anyAttribute); -} - -void tt__IPAddressFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, &this->tt__IPAddressFilter::IPv4Address); - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPAddressFilter::IPv6Address); - soap_serialize_PointerTott__IPAddressFilterExtension(soap, &this->tt__IPAddressFilter::Extension); -#endif -} - -int tt__IPAddressFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPAddressFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilter(struct soap *soap, const char *tag, int id, const tt__IPAddressFilter *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__IPAddressFilter*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPAddressFilter), type)) - return soap->error; - if (soap_out_tt__IPAddressFilterType(soap, "tt:Type", -1, &a->tt__IPAddressFilter::Type, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, "tt:IPv4Address", -1, &a->tt__IPAddressFilter::IPv4Address, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:IPv6Address", -1, &a->tt__IPAddressFilter::IPv6Address, "")) - return soap->error; - if (soap_out_PointerTott__IPAddressFilterExtension(soap, "tt:Extension", -1, &a->tt__IPAddressFilter::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPAddressFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPAddressFilter(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPAddressFilter * SOAP_FMAC4 soap_in_tt__IPAddressFilter(struct soap *soap, const char *tag, tt__IPAddressFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPAddressFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPAddressFilter, sizeof(tt__IPAddressFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPAddressFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPAddressFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__IPAddressFilter*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__IPAddressFilterType(soap, "tt:Type", &a->tt__IPAddressFilter::Type, "tt:IPAddressFilterType")) - { soap_flag_Type1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, "tt:IPv4Address", &a->tt__IPAddressFilter::IPv4Address, "tt:PrefixedIPv4Address")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:IPv6Address", &a->tt__IPAddressFilter::IPv6Address, "tt:PrefixedIPv6Address")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPAddressFilterExtension(soap, "tt:Extension", &a->tt__IPAddressFilter::Extension, "tt:IPAddressFilterExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IPAddressFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPAddressFilter, SOAP_TYPE_tt__IPAddressFilter, sizeof(tt__IPAddressFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPAddressFilter * SOAP_FMAC2 soap_instantiate_tt__IPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPAddressFilter *p; - size_t k = sizeof(tt__IPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPAddressFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPAddressFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPAddressFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPAddressFilter(soap, tag ? tag : "tt:IPAddressFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPAddressFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPAddressFilter(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPAddressFilter * SOAP_FMAC4 soap_get_tt__IPAddressFilter(struct soap *soap, tt__IPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkZeroConfigurationExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkZeroConfigurationExtension2::__any); -} - -void tt__NetworkZeroConfigurationExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkZeroConfigurationExtension2::__any); -#endif -} - -int tt__NetworkZeroConfigurationExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkZeroConfigurationExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkZeroConfigurationExtension2(struct soap *soap, const char *tag, int id, const tt__NetworkZeroConfigurationExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkZeroConfigurationExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkZeroConfigurationExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkZeroConfigurationExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkZeroConfigurationExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__NetworkZeroConfigurationExtension2(struct soap *soap, const char *tag, tt__NetworkZeroConfigurationExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkZeroConfigurationExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkZeroConfigurationExtension2, sizeof(tt__NetworkZeroConfigurationExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkZeroConfigurationExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkZeroConfigurationExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkZeroConfigurationExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkZeroConfigurationExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkZeroConfigurationExtension2, SOAP_TYPE_tt__NetworkZeroConfigurationExtension2, sizeof(tt__NetworkZeroConfigurationExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkZeroConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkZeroConfigurationExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkZeroConfigurationExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkZeroConfigurationExtension2 *p; - size_t k = sizeof(tt__NetworkZeroConfigurationExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkZeroConfigurationExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkZeroConfigurationExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkZeroConfigurationExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkZeroConfigurationExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkZeroConfigurationExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkZeroConfigurationExtension2(soap, tag ? tag : "tt:NetworkZeroConfigurationExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkZeroConfigurationExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkZeroConfigurationExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__NetworkZeroConfigurationExtension2(struct soap *soap, tt__NetworkZeroConfigurationExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkZeroConfigurationExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkZeroConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkZeroConfigurationExtension::__any); - soap_default_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(soap, &this->tt__NetworkZeroConfigurationExtension::Additional); - this->tt__NetworkZeroConfigurationExtension::Extension = NULL; -} - -void tt__NetworkZeroConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkZeroConfigurationExtension::__any); - soap_serialize_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(soap, &this->tt__NetworkZeroConfigurationExtension::Additional); - soap_serialize_PointerTott__NetworkZeroConfigurationExtension2(soap, &this->tt__NetworkZeroConfigurationExtension::Extension); -#endif -} - -int tt__NetworkZeroConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkZeroConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkZeroConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__NetworkZeroConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkZeroConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkZeroConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(soap, "tt:Additional", -1, &a->tt__NetworkZeroConfigurationExtension::Additional, "")) - return soap->error; - if (soap_out_PointerTott__NetworkZeroConfigurationExtension2(soap, "tt:Extension", -1, &a->tt__NetworkZeroConfigurationExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkZeroConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkZeroConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension * SOAP_FMAC4 soap_in_tt__NetworkZeroConfigurationExtension(struct soap *soap, const char *tag, tt__NetworkZeroConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkZeroConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkZeroConfigurationExtension, sizeof(tt__NetworkZeroConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkZeroConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkZeroConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(soap, "tt:Additional", &a->tt__NetworkZeroConfigurationExtension::Additional, "tt:NetworkZeroConfiguration")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkZeroConfigurationExtension2(soap, "tt:Extension", &a->tt__NetworkZeroConfigurationExtension::Extension, "tt:NetworkZeroConfigurationExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkZeroConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkZeroConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkZeroConfigurationExtension, SOAP_TYPE_tt__NetworkZeroConfigurationExtension, sizeof(tt__NetworkZeroConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkZeroConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkZeroConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkZeroConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkZeroConfigurationExtension *p; - size_t k = sizeof(tt__NetworkZeroConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkZeroConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkZeroConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkZeroConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkZeroConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkZeroConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkZeroConfigurationExtension(soap, tag ? tag : "tt:NetworkZeroConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkZeroConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkZeroConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension * SOAP_FMAC4 soap_get_tt__NetworkZeroConfigurationExtension(struct soap *soap, tt__NetworkZeroConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkZeroConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkZeroConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__NetworkZeroConfiguration::InterfaceToken); - soap_default_bool(soap, &this->tt__NetworkZeroConfiguration::Enabled); - soap_default_std__vectorTemplateOftt__IPv4Address(soap, &this->tt__NetworkZeroConfiguration::Addresses); - this->tt__NetworkZeroConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__NetworkZeroConfiguration::__anyAttribute); -} - -void tt__NetworkZeroConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__NetworkZeroConfiguration::InterfaceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__NetworkZeroConfiguration::InterfaceToken); - soap_embedded(soap, &this->tt__NetworkZeroConfiguration::Enabled, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOftt__IPv4Address(soap, &this->tt__NetworkZeroConfiguration::Addresses); - soap_serialize_PointerTott__NetworkZeroConfigurationExtension(soap, &this->tt__NetworkZeroConfiguration::Extension); -#endif -} - -int tt__NetworkZeroConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkZeroConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkZeroConfiguration(struct soap *soap, const char *tag, int id, const tt__NetworkZeroConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NetworkZeroConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkZeroConfiguration), type)) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:InterfaceToken", -1, &a->tt__NetworkZeroConfiguration::InterfaceToken, "")) - return soap->error; - if (soap_out_bool(soap, "tt:Enabled", -1, &a->tt__NetworkZeroConfiguration::Enabled, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__IPv4Address(soap, "tt:Addresses", -1, &a->tt__NetworkZeroConfiguration::Addresses, "")) - return soap->error; - if (soap_out_PointerTott__NetworkZeroConfigurationExtension(soap, "tt:Extension", -1, &a->tt__NetworkZeroConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkZeroConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkZeroConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkZeroConfiguration * SOAP_FMAC4 soap_in_tt__NetworkZeroConfiguration(struct soap *soap, const char *tag, tt__NetworkZeroConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkZeroConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkZeroConfiguration, sizeof(tt__NetworkZeroConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkZeroConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkZeroConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NetworkZeroConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_InterfaceToken1 = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InterfaceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:InterfaceToken", &a->tt__NetworkZeroConfiguration::InterfaceToken, "tt:ReferenceToken")) - { soap_flag_InterfaceToken1--; - continue; - } - } - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Enabled", &a->tt__NetworkZeroConfiguration::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__IPv4Address(soap, "tt:Addresses", &a->tt__NetworkZeroConfiguration::Addresses, "tt:IPv4Address")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkZeroConfigurationExtension(soap, "tt:Extension", &a->tt__NetworkZeroConfiguration::Extension, "tt:NetworkZeroConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_InterfaceToken1 > 0 || soap_flag_Enabled1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkZeroConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkZeroConfiguration, SOAP_TYPE_tt__NetworkZeroConfiguration, sizeof(tt__NetworkZeroConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkZeroConfiguration * SOAP_FMAC2 soap_instantiate_tt__NetworkZeroConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkZeroConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkZeroConfiguration *p; - size_t k = sizeof(tt__NetworkZeroConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkZeroConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkZeroConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkZeroConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkZeroConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkZeroConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkZeroConfiguration(soap, tag ? tag : "tt:NetworkZeroConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkZeroConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkZeroConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkZeroConfiguration * SOAP_FMAC4 soap_get_tt__NetworkZeroConfiguration(struct soap *soap, tt__NetworkZeroConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkZeroConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkGateway::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__IPv4Address(soap, &this->tt__NetworkGateway::IPv4Address); - soap_default_std__vectorTemplateOftt__IPv6Address(soap, &this->tt__NetworkGateway::IPv6Address); -} - -void tt__NetworkGateway::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__IPv4Address(soap, &this->tt__NetworkGateway::IPv4Address); - soap_serialize_std__vectorTemplateOftt__IPv6Address(soap, &this->tt__NetworkGateway::IPv6Address); -#endif -} - -int tt__NetworkGateway::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkGateway(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkGateway(struct soap *soap, const char *tag, int id, const tt__NetworkGateway *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkGateway), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__IPv4Address(soap, "tt:IPv4Address", -1, &a->tt__NetworkGateway::IPv4Address, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__IPv6Address(soap, "tt:IPv6Address", -1, &a->tt__NetworkGateway::IPv6Address, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkGateway::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkGateway(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkGateway * SOAP_FMAC4 soap_in_tt__NetworkGateway(struct soap *soap, const char *tag, tt__NetworkGateway *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkGateway*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkGateway, sizeof(tt__NetworkGateway), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkGateway) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkGateway *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__IPv4Address(soap, "tt:IPv4Address", &a->tt__NetworkGateway::IPv4Address, "tt:IPv4Address")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__IPv6Address(soap, "tt:IPv6Address", &a->tt__NetworkGateway::IPv6Address, "tt:IPv6Address")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkGateway *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkGateway, SOAP_TYPE_tt__NetworkGateway, sizeof(tt__NetworkGateway), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkGateway * SOAP_FMAC2 soap_instantiate_tt__NetworkGateway(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkGateway(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkGateway *p; - size_t k = sizeof(tt__NetworkGateway); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkGateway, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkGateway); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkGateway, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkGateway location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkGateway::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkGateway(soap, tag ? tag : "tt:NetworkGateway", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkGateway::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkGateway(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkGateway * SOAP_FMAC4 soap_get_tt__NetworkGateway(struct soap *soap, tt__NetworkGateway *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkGateway(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv4NetworkInterfaceSetConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__IPv4NetworkInterfaceSetConfiguration::Enabled = NULL; - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, &this->tt__IPv4NetworkInterfaceSetConfiguration::Manual); - this->tt__IPv4NetworkInterfaceSetConfiguration::DHCP = NULL; -} - -void tt__IPv4NetworkInterfaceSetConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->tt__IPv4NetworkInterfaceSetConfiguration::Enabled); - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, &this->tt__IPv4NetworkInterfaceSetConfiguration::Manual); - soap_serialize_PointerTobool(soap, &this->tt__IPv4NetworkInterfaceSetConfiguration::DHCP); -#endif -} - -int tt__IPv4NetworkInterfaceSetConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv4NetworkInterfaceSetConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, const char *tag, int id, const tt__IPv4NetworkInterfaceSetConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration), type)) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:Enabled", -1, &a->tt__IPv4NetworkInterfaceSetConfiguration::Enabled, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, "tt:Manual", -1, &a->tt__IPv4NetworkInterfaceSetConfiguration::Manual, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:DHCP", -1, &a->tt__IPv4NetworkInterfaceSetConfiguration::DHCP, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPv4NetworkInterfaceSetConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv4NetworkInterfaceSetConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv4NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_in_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, const char *tag, tt__IPv4NetworkInterfaceSetConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPv4NetworkInterfaceSetConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration, sizeof(tt__IPv4NetworkInterfaceSetConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPv4NetworkInterfaceSetConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_DHCP1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:Enabled", &a->tt__IPv4NetworkInterfaceSetConfiguration::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, "tt:Manual", &a->tt__IPv4NetworkInterfaceSetConfiguration::Manual, "tt:PrefixedIPv4Address")) - continue; - } - if (soap_flag_DHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:DHCP", &a->tt__IPv4NetworkInterfaceSetConfiguration::DHCP, "xsd:boolean")) - { soap_flag_DHCP1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IPv4NetworkInterfaceSetConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration, SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration, sizeof(tt__IPv4NetworkInterfaceSetConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPv4NetworkInterfaceSetConfiguration * SOAP_FMAC2 soap_instantiate_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv4NetworkInterfaceSetConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv4NetworkInterfaceSetConfiguration *p; - size_t k = sizeof(tt__IPv4NetworkInterfaceSetConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv4NetworkInterfaceSetConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv4NetworkInterfaceSetConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv4NetworkInterfaceSetConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv4NetworkInterfaceSetConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv4NetworkInterfaceSetConfiguration(soap, tag ? tag : "tt:IPv4NetworkInterfaceSetConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv4NetworkInterfaceSetConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv4NetworkInterfaceSetConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv4NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_get_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv4NetworkInterfaceSetConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv4NetworkInterfaceSetConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv6NetworkInterfaceSetConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__IPv6NetworkInterfaceSetConfiguration::Enabled = NULL; - this->tt__IPv6NetworkInterfaceSetConfiguration::AcceptRouterAdvert = NULL; - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6NetworkInterfaceSetConfiguration::Manual); - this->tt__IPv6NetworkInterfaceSetConfiguration::DHCP = NULL; -} - -void tt__IPv6NetworkInterfaceSetConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->tt__IPv6NetworkInterfaceSetConfiguration::Enabled); - soap_serialize_PointerTobool(soap, &this->tt__IPv6NetworkInterfaceSetConfiguration::AcceptRouterAdvert); - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6NetworkInterfaceSetConfiguration::Manual); - soap_serialize_PointerTott__IPv6DHCPConfiguration(soap, &this->tt__IPv6NetworkInterfaceSetConfiguration::DHCP); -#endif -} - -int tt__IPv6NetworkInterfaceSetConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv6NetworkInterfaceSetConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, const char *tag, int id, const tt__IPv6NetworkInterfaceSetConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration), type)) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:Enabled", -1, &a->tt__IPv6NetworkInterfaceSetConfiguration::Enabled, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:AcceptRouterAdvert", -1, &a->tt__IPv6NetworkInterfaceSetConfiguration::AcceptRouterAdvert, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:Manual", -1, &a->tt__IPv6NetworkInterfaceSetConfiguration::Manual, "")) - return soap->error; - if (soap_out_PointerTott__IPv6DHCPConfiguration(soap, "tt:DHCP", -1, &a->tt__IPv6NetworkInterfaceSetConfiguration::DHCP, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPv6NetworkInterfaceSetConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv6NetworkInterfaceSetConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv6NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_in_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, const char *tag, tt__IPv6NetworkInterfaceSetConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPv6NetworkInterfaceSetConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration, sizeof(tt__IPv6NetworkInterfaceSetConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPv6NetworkInterfaceSetConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_AcceptRouterAdvert1 = 1; - size_t soap_flag_DHCP1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:Enabled", &a->tt__IPv6NetworkInterfaceSetConfiguration::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap_flag_AcceptRouterAdvert1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:AcceptRouterAdvert", &a->tt__IPv6NetworkInterfaceSetConfiguration::AcceptRouterAdvert, "xsd:boolean")) - { soap_flag_AcceptRouterAdvert1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:Manual", &a->tt__IPv6NetworkInterfaceSetConfiguration::Manual, "tt:PrefixedIPv6Address")) - continue; - } - if (soap_flag_DHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv6DHCPConfiguration(soap, "tt:DHCP", &a->tt__IPv6NetworkInterfaceSetConfiguration::DHCP, "tt:IPv6DHCPConfiguration")) - { soap_flag_DHCP1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IPv6NetworkInterfaceSetConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration, SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration, sizeof(tt__IPv6NetworkInterfaceSetConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPv6NetworkInterfaceSetConfiguration * SOAP_FMAC2 soap_instantiate_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv6NetworkInterfaceSetConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv6NetworkInterfaceSetConfiguration *p; - size_t k = sizeof(tt__IPv6NetworkInterfaceSetConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv6NetworkInterfaceSetConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv6NetworkInterfaceSetConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv6NetworkInterfaceSetConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv6NetworkInterfaceSetConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv6NetworkInterfaceSetConfiguration(soap, tag ? tag : "tt:IPv6NetworkInterfaceSetConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv6NetworkInterfaceSetConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv6NetworkInterfaceSetConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv6NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_get_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv6NetworkInterfaceSetConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv6NetworkInterfaceSetConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceSetConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceSetConfigurationExtension::__any); - soap_default_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, &this->tt__NetworkInterfaceSetConfigurationExtension::Dot3); - soap_default_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, &this->tt__NetworkInterfaceSetConfigurationExtension::Dot11); - this->tt__NetworkInterfaceSetConfigurationExtension::Extension = NULL; -} - -void tt__NetworkInterfaceSetConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceSetConfigurationExtension::__any); - soap_serialize_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, &this->tt__NetworkInterfaceSetConfigurationExtension::Dot3); - soap_serialize_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, &this->tt__NetworkInterfaceSetConfigurationExtension::Dot11); - soap_serialize_PointerTott__NetworkInterfaceSetConfigurationExtension2(soap, &this->tt__NetworkInterfaceSetConfigurationExtension::Extension); -#endif -} - -int tt__NetworkInterfaceSetConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceSetConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceSetConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkInterfaceSetConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, "tt:Dot3", -1, &a->tt__NetworkInterfaceSetConfigurationExtension::Dot3, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, "tt:Dot11", -1, &a->tt__NetworkInterfaceSetConfigurationExtension::Dot11, "")) - return soap->error; - if (soap_out_PointerTott__NetworkInterfaceSetConfigurationExtension2(soap, "tt:Extension", -1, &a->tt__NetworkInterfaceSetConfigurationExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceSetConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceSetConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension * SOAP_FMAC4 soap_in_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, const char *tag, tt__NetworkInterfaceSetConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceSetConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension, sizeof(tt__NetworkInterfaceSetConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceSetConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, "tt:Dot3", &a->tt__NetworkInterfaceSetConfigurationExtension::Dot3, "tt:Dot3Configuration")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, "tt:Dot11", &a->tt__NetworkInterfaceSetConfigurationExtension::Dot11, "tt:Dot11Configuration")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceSetConfigurationExtension2(soap, "tt:Extension", &a->tt__NetworkInterfaceSetConfigurationExtension::Extension, "tt:NetworkInterfaceSetConfigurationExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkInterfaceSetConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkInterfaceSetConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension, sizeof(tt__NetworkInterfaceSetConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceSetConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceSetConfigurationExtension *p; - size_t k = sizeof(tt__NetworkInterfaceSetConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceSetConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceSetConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceSetConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceSetConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceSetConfigurationExtension(soap, tag ? tag : "tt:NetworkInterfaceSetConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceSetConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceSetConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension * SOAP_FMAC4 soap_get_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceSetConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceSetConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__NetworkInterfaceSetConfiguration::Enabled = NULL; - this->tt__NetworkInterfaceSetConfiguration::Link = NULL; - this->tt__NetworkInterfaceSetConfiguration::MTU = NULL; - this->tt__NetworkInterfaceSetConfiguration::IPv4 = NULL; - this->tt__NetworkInterfaceSetConfiguration::IPv6 = NULL; - this->tt__NetworkInterfaceSetConfiguration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__NetworkInterfaceSetConfiguration::__anyAttribute); -} - -void tt__NetworkInterfaceSetConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->tt__NetworkInterfaceSetConfiguration::Enabled); - soap_serialize_PointerTott__NetworkInterfaceConnectionSetting(soap, &this->tt__NetworkInterfaceSetConfiguration::Link); - soap_serialize_PointerToint(soap, &this->tt__NetworkInterfaceSetConfiguration::MTU); - soap_serialize_PointerTott__IPv4NetworkInterfaceSetConfiguration(soap, &this->tt__NetworkInterfaceSetConfiguration::IPv4); - soap_serialize_PointerTott__IPv6NetworkInterfaceSetConfiguration(soap, &this->tt__NetworkInterfaceSetConfiguration::IPv6); - soap_serialize_PointerTott__NetworkInterfaceSetConfigurationExtension(soap, &this->tt__NetworkInterfaceSetConfiguration::Extension); -#endif -} - -int tt__NetworkInterfaceSetConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceSetConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceSetConfiguration(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceSetConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NetworkInterfaceSetConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceSetConfiguration), type)) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:Enabled", -1, &a->tt__NetworkInterfaceSetConfiguration::Enabled, "")) - return soap->error; - if (soap_out_PointerTott__NetworkInterfaceConnectionSetting(soap, "tt:Link", -1, &a->tt__NetworkInterfaceSetConfiguration::Link, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tt:MTU", -1, &a->tt__NetworkInterfaceSetConfiguration::MTU, "")) - return soap->error; - if (soap_out_PointerTott__IPv4NetworkInterfaceSetConfiguration(soap, "tt:IPv4", -1, &a->tt__NetworkInterfaceSetConfiguration::IPv4, "")) - return soap->error; - if (soap_out_PointerTott__IPv6NetworkInterfaceSetConfiguration(soap, "tt:IPv6", -1, &a->tt__NetworkInterfaceSetConfiguration::IPv6, "")) - return soap->error; - if (soap_out_PointerTott__NetworkInterfaceSetConfigurationExtension(soap, "tt:Extension", -1, &a->tt__NetworkInterfaceSetConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceSetConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceSetConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_in_tt__NetworkInterfaceSetConfiguration(struct soap *soap, const char *tag, tt__NetworkInterfaceSetConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceSetConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceSetConfiguration, sizeof(tt__NetworkInterfaceSetConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceSetConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceSetConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NetworkInterfaceSetConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_Link1 = 1; - size_t soap_flag_MTU1 = 1; - size_t soap_flag_IPv41 = 1; - size_t soap_flag_IPv61 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:Enabled", &a->tt__NetworkInterfaceSetConfiguration::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap_flag_Link1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceConnectionSetting(soap, "tt:Link", &a->tt__NetworkInterfaceSetConfiguration::Link, "tt:NetworkInterfaceConnectionSetting")) - { soap_flag_Link1--; - continue; - } - } - if (soap_flag_MTU1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:MTU", &a->tt__NetworkInterfaceSetConfiguration::MTU, "xsd:int")) - { soap_flag_MTU1--; - continue; - } - } - if (soap_flag_IPv41 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv4NetworkInterfaceSetConfiguration(soap, "tt:IPv4", &a->tt__NetworkInterfaceSetConfiguration::IPv4, "tt:IPv4NetworkInterfaceSetConfiguration")) - { soap_flag_IPv41--; - continue; - } - } - if (soap_flag_IPv61 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv6NetworkInterfaceSetConfiguration(soap, "tt:IPv6", &a->tt__NetworkInterfaceSetConfiguration::IPv6, "tt:IPv6NetworkInterfaceSetConfiguration")) - { soap_flag_IPv61--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceSetConfigurationExtension(soap, "tt:Extension", &a->tt__NetworkInterfaceSetConfiguration::Extension, "tt:NetworkInterfaceSetConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkInterfaceSetConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceSetConfiguration, SOAP_TYPE_tt__NetworkInterfaceSetConfiguration, sizeof(tt__NetworkInterfaceSetConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceSetConfiguration * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceSetConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceSetConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceSetConfiguration *p; - size_t k = sizeof(tt__NetworkInterfaceSetConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceSetConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceSetConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceSetConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceSetConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceSetConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceSetConfiguration(soap, tag ? tag : "tt:NetworkInterfaceSetConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceSetConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceSetConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_get_tt__NetworkInterfaceSetConfiguration(struct soap *soap, tt__NetworkInterfaceSetConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceSetConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DynamicDNSInformationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DynamicDNSInformationExtension::__any); -} - -void tt__DynamicDNSInformationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DynamicDNSInformationExtension::__any); -#endif -} - -int tt__DynamicDNSInformationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DynamicDNSInformationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSInformationExtension(struct soap *soap, const char *tag, int id, const tt__DynamicDNSInformationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DynamicDNSInformationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DynamicDNSInformationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DynamicDNSInformationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DynamicDNSInformationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DynamicDNSInformationExtension * SOAP_FMAC4 soap_in_tt__DynamicDNSInformationExtension(struct soap *soap, const char *tag, tt__DynamicDNSInformationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DynamicDNSInformationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DynamicDNSInformationExtension, sizeof(tt__DynamicDNSInformationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DynamicDNSInformationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DynamicDNSInformationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DynamicDNSInformationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__DynamicDNSInformationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DynamicDNSInformationExtension, SOAP_TYPE_tt__DynamicDNSInformationExtension, sizeof(tt__DynamicDNSInformationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DynamicDNSInformationExtension * SOAP_FMAC2 soap_instantiate_tt__DynamicDNSInformationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DynamicDNSInformationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DynamicDNSInformationExtension *p; - size_t k = sizeof(tt__DynamicDNSInformationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DynamicDNSInformationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DynamicDNSInformationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DynamicDNSInformationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DynamicDNSInformationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DynamicDNSInformationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DynamicDNSInformationExtension(soap, tag ? tag : "tt:DynamicDNSInformationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DynamicDNSInformationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DynamicDNSInformationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DynamicDNSInformationExtension * SOAP_FMAC4 soap_get_tt__DynamicDNSInformationExtension(struct soap *soap, tt__DynamicDNSInformationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DynamicDNSInformationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DynamicDNSInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__DynamicDNSType(soap, &this->tt__DynamicDNSInformation::Type); - this->tt__DynamicDNSInformation::Name = NULL; - this->tt__DynamicDNSInformation::TTL = NULL; - this->tt__DynamicDNSInformation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__DynamicDNSInformation::__anyAttribute); -} - -void tt__DynamicDNSInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__DNSName(soap, &this->tt__DynamicDNSInformation::Name); - soap_serialize_PointerToxsd__duration(soap, &this->tt__DynamicDNSInformation::TTL); - soap_serialize_PointerTott__DynamicDNSInformationExtension(soap, &this->tt__DynamicDNSInformation::Extension); -#endif -} - -int tt__DynamicDNSInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DynamicDNSInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSInformation(struct soap *soap, const char *tag, int id, const tt__DynamicDNSInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DynamicDNSInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DynamicDNSInformation), type)) - return soap->error; - if (soap_out_tt__DynamicDNSType(soap, "tt:Type", -1, &a->tt__DynamicDNSInformation::Type, "")) - return soap->error; - if (soap_out_PointerTott__DNSName(soap, "tt:Name", -1, &a->tt__DynamicDNSInformation::Name, "")) - return soap->error; - if (soap_out_PointerToxsd__duration(soap, "tt:TTL", -1, &a->tt__DynamicDNSInformation::TTL, "")) - return soap->error; - if (soap_out_PointerTott__DynamicDNSInformationExtension(soap, "tt:Extension", -1, &a->tt__DynamicDNSInformation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DynamicDNSInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DynamicDNSInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DynamicDNSInformation * SOAP_FMAC4 soap_in_tt__DynamicDNSInformation(struct soap *soap, const char *tag, tt__DynamicDNSInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DynamicDNSInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DynamicDNSInformation, sizeof(tt__DynamicDNSInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DynamicDNSInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DynamicDNSInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DynamicDNSInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_TTL1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__DynamicDNSType(soap, "tt:Type", &a->tt__DynamicDNSInformation::Type, "tt:DynamicDNSType")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__DNSName(soap, "tt:Name", &a->tt__DynamicDNSInformation::Name, "tt:DNSName")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_TTL1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__duration(soap, "tt:TTL", &a->tt__DynamicDNSInformation::TTL, "xsd:duration")) - { soap_flag_TTL1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DynamicDNSInformationExtension(soap, "tt:Extension", &a->tt__DynamicDNSInformation::Extension, "tt:DynamicDNSInformationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DynamicDNSInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DynamicDNSInformation, SOAP_TYPE_tt__DynamicDNSInformation, sizeof(tt__DynamicDNSInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DynamicDNSInformation * SOAP_FMAC2 soap_instantiate_tt__DynamicDNSInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DynamicDNSInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DynamicDNSInformation *p; - size_t k = sizeof(tt__DynamicDNSInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DynamicDNSInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DynamicDNSInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DynamicDNSInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DynamicDNSInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DynamicDNSInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DynamicDNSInformation(soap, tag ? tag : "tt:DynamicDNSInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DynamicDNSInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DynamicDNSInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DynamicDNSInformation * SOAP_FMAC4 soap_get_tt__DynamicDNSInformation(struct soap *soap, tt__DynamicDNSInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DynamicDNSInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NTPInformationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NTPInformationExtension::__any); -} - -void tt__NTPInformationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NTPInformationExtension::__any); -#endif -} - -int tt__NTPInformationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NTPInformationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NTPInformationExtension(struct soap *soap, const char *tag, int id, const tt__NTPInformationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NTPInformationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NTPInformationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NTPInformationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NTPInformationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NTPInformationExtension * SOAP_FMAC4 soap_in_tt__NTPInformationExtension(struct soap *soap, const char *tag, tt__NTPInformationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NTPInformationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NTPInformationExtension, sizeof(tt__NTPInformationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NTPInformationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NTPInformationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NTPInformationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NTPInformationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NTPInformationExtension, SOAP_TYPE_tt__NTPInformationExtension, sizeof(tt__NTPInformationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NTPInformationExtension * SOAP_FMAC2 soap_instantiate_tt__NTPInformationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NTPInformationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NTPInformationExtension *p; - size_t k = sizeof(tt__NTPInformationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NTPInformationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NTPInformationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NTPInformationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NTPInformationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NTPInformationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NTPInformationExtension(soap, tag ? tag : "tt:NTPInformationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NTPInformationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NTPInformationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NTPInformationExtension * SOAP_FMAC4 soap_get_tt__NTPInformationExtension(struct soap *soap, tt__NTPInformationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NTPInformationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NTPInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__NTPInformation::FromDHCP); - soap_default_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->tt__NTPInformation::NTPFromDHCP); - soap_default_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->tt__NTPInformation::NTPManual); - this->tt__NTPInformation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__NTPInformation::__anyAttribute); -} - -void tt__NTPInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__NTPInformation::FromDHCP, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->tt__NTPInformation::NTPFromDHCP); - soap_serialize_std__vectorTemplateOfPointerTott__NetworkHost(soap, &this->tt__NTPInformation::NTPManual); - soap_serialize_PointerTott__NTPInformationExtension(soap, &this->tt__NTPInformation::Extension); -#endif -} - -int tt__NTPInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NTPInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NTPInformation(struct soap *soap, const char *tag, int id, const tt__NTPInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NTPInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NTPInformation), type)) - return soap->error; - if (soap_out_bool(soap, "tt:FromDHCP", -1, &a->tt__NTPInformation::FromDHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tt:NTPFromDHCP", -1, &a->tt__NTPInformation::NTPFromDHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tt:NTPManual", -1, &a->tt__NTPInformation::NTPManual, "")) - return soap->error; - if (soap_out_PointerTott__NTPInformationExtension(soap, "tt:Extension", -1, &a->tt__NTPInformation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NTPInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NTPInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NTPInformation * SOAP_FMAC4 soap_in_tt__NTPInformation(struct soap *soap, const char *tag, tt__NTPInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NTPInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NTPInformation, sizeof(tt__NTPInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NTPInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NTPInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NTPInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FromDHCP1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FromDHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:FromDHCP", &a->tt__NTPInformation::FromDHCP, "xsd:boolean")) - { soap_flag_FromDHCP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tt:NTPFromDHCP", &a->tt__NTPInformation::NTPFromDHCP, "tt:NetworkHost")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__NetworkHost(soap, "tt:NTPManual", &a->tt__NTPInformation::NTPManual, "tt:NetworkHost")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NTPInformationExtension(soap, "tt:Extension", &a->tt__NTPInformation::Extension, "tt:NTPInformationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FromDHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NTPInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NTPInformation, SOAP_TYPE_tt__NTPInformation, sizeof(tt__NTPInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NTPInformation * SOAP_FMAC2 soap_instantiate_tt__NTPInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NTPInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NTPInformation *p; - size_t k = sizeof(tt__NTPInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NTPInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NTPInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NTPInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NTPInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NTPInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NTPInformation(soap, tag ? tag : "tt:NTPInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NTPInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NTPInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NTPInformation * SOAP_FMAC4 soap_get_tt__NTPInformation(struct soap *soap, tt__NTPInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NTPInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DNSInformationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DNSInformationExtension::__any); -} - -void tt__DNSInformationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__DNSInformationExtension::__any); -#endif -} - -int tt__DNSInformationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DNSInformationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DNSInformationExtension(struct soap *soap, const char *tag, int id, const tt__DNSInformationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DNSInformationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__DNSInformationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DNSInformationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DNSInformationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DNSInformationExtension * SOAP_FMAC4 soap_in_tt__DNSInformationExtension(struct soap *soap, const char *tag, tt__DNSInformationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DNSInformationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DNSInformationExtension, sizeof(tt__DNSInformationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DNSInformationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DNSInformationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__DNSInformationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__DNSInformationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DNSInformationExtension, SOAP_TYPE_tt__DNSInformationExtension, sizeof(tt__DNSInformationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DNSInformationExtension * SOAP_FMAC2 soap_instantiate_tt__DNSInformationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DNSInformationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DNSInformationExtension *p; - size_t k = sizeof(tt__DNSInformationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DNSInformationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DNSInformationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DNSInformationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DNSInformationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DNSInformationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DNSInformationExtension(soap, tag ? tag : "tt:DNSInformationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DNSInformationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DNSInformationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DNSInformationExtension * SOAP_FMAC4 soap_get_tt__DNSInformationExtension(struct soap *soap, tt__DNSInformationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DNSInformationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DNSInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__DNSInformation::FromDHCP); - soap_default_std__vectorTemplateOfxsd__token(soap, &this->tt__DNSInformation::SearchDomain); - soap_default_std__vectorTemplateOfPointerTott__IPAddress(soap, &this->tt__DNSInformation::DNSFromDHCP); - soap_default_std__vectorTemplateOfPointerTott__IPAddress(soap, &this->tt__DNSInformation::DNSManual); - this->tt__DNSInformation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__DNSInformation::__anyAttribute); -} - -void tt__DNSInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DNSInformation::FromDHCP, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__token(soap, &this->tt__DNSInformation::SearchDomain); - soap_serialize_std__vectorTemplateOfPointerTott__IPAddress(soap, &this->tt__DNSInformation::DNSFromDHCP); - soap_serialize_std__vectorTemplateOfPointerTott__IPAddress(soap, &this->tt__DNSInformation::DNSManual); - soap_serialize_PointerTott__DNSInformationExtension(soap, &this->tt__DNSInformation::Extension); -#endif -} - -int tt__DNSInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DNSInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DNSInformation(struct soap *soap, const char *tag, int id, const tt__DNSInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__DNSInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DNSInformation), type)) - return soap->error; - if (soap_out_bool(soap, "tt:FromDHCP", -1, &a->tt__DNSInformation::FromDHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__token(soap, "tt:SearchDomain", -1, &a->tt__DNSInformation::SearchDomain, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__IPAddress(soap, "tt:DNSFromDHCP", -1, &a->tt__DNSInformation::DNSFromDHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__IPAddress(soap, "tt:DNSManual", -1, &a->tt__DNSInformation::DNSManual, "")) - return soap->error; - if (soap_out_PointerTott__DNSInformationExtension(soap, "tt:Extension", -1, &a->tt__DNSInformation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DNSInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DNSInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DNSInformation * SOAP_FMAC4 soap_in_tt__DNSInformation(struct soap *soap, const char *tag, tt__DNSInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DNSInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DNSInformation, sizeof(tt__DNSInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DNSInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DNSInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__DNSInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FromDHCP1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FromDHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:FromDHCP", &a->tt__DNSInformation::FromDHCP, "xsd:boolean")) - { soap_flag_FromDHCP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__token(soap, "tt:SearchDomain", &a->tt__DNSInformation::SearchDomain, "xsd:token")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__IPAddress(soap, "tt:DNSFromDHCP", &a->tt__DNSInformation::DNSFromDHCP, "tt:IPAddress")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__IPAddress(soap, "tt:DNSManual", &a->tt__DNSInformation::DNSManual, "tt:IPAddress")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__DNSInformationExtension(soap, "tt:Extension", &a->tt__DNSInformation::Extension, "tt:DNSInformationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FromDHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DNSInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DNSInformation, SOAP_TYPE_tt__DNSInformation, sizeof(tt__DNSInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DNSInformation * SOAP_FMAC2 soap_instantiate_tt__DNSInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DNSInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DNSInformation *p; - size_t k = sizeof(tt__DNSInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DNSInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DNSInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DNSInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DNSInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DNSInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DNSInformation(soap, tag ? tag : "tt:DNSInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DNSInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DNSInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DNSInformation * SOAP_FMAC4 soap_get_tt__DNSInformation(struct soap *soap, tt__DNSInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DNSInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__HostnameInformationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__HostnameInformationExtension::__any); -} - -void tt__HostnameInformationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__HostnameInformationExtension::__any); -#endif -} - -int tt__HostnameInformationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__HostnameInformationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__HostnameInformationExtension(struct soap *soap, const char *tag, int id, const tt__HostnameInformationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__HostnameInformationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__HostnameInformationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__HostnameInformationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__HostnameInformationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__HostnameInformationExtension * SOAP_FMAC4 soap_in_tt__HostnameInformationExtension(struct soap *soap, const char *tag, tt__HostnameInformationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__HostnameInformationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__HostnameInformationExtension, sizeof(tt__HostnameInformationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__HostnameInformationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__HostnameInformationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__HostnameInformationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__HostnameInformationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__HostnameInformationExtension, SOAP_TYPE_tt__HostnameInformationExtension, sizeof(tt__HostnameInformationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__HostnameInformationExtension * SOAP_FMAC2 soap_instantiate_tt__HostnameInformationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__HostnameInformationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__HostnameInformationExtension *p; - size_t k = sizeof(tt__HostnameInformationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__HostnameInformationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__HostnameInformationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__HostnameInformationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__HostnameInformationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__HostnameInformationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__HostnameInformationExtension(soap, tag ? tag : "tt:HostnameInformationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__HostnameInformationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__HostnameInformationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__HostnameInformationExtension * SOAP_FMAC4 soap_get_tt__HostnameInformationExtension(struct soap *soap, tt__HostnameInformationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__HostnameInformationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__HostnameInformation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__HostnameInformation::FromDHCP); - this->tt__HostnameInformation::Name = NULL; - this->tt__HostnameInformation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__HostnameInformation::__anyAttribute); -} - -void tt__HostnameInformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__HostnameInformation::FromDHCP, SOAP_TYPE_bool); - soap_serialize_PointerToxsd__token(soap, &this->tt__HostnameInformation::Name); - soap_serialize_PointerTott__HostnameInformationExtension(soap, &this->tt__HostnameInformation::Extension); -#endif -} - -int tt__HostnameInformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__HostnameInformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__HostnameInformation(struct soap *soap, const char *tag, int id, const tt__HostnameInformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__HostnameInformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__HostnameInformation), type)) - return soap->error; - if (soap_out_bool(soap, "tt:FromDHCP", -1, &a->tt__HostnameInformation::FromDHCP, "")) - return soap->error; - if (soap_out_PointerToxsd__token(soap, "tt:Name", -1, &a->tt__HostnameInformation::Name, "")) - return soap->error; - if (soap_out_PointerTott__HostnameInformationExtension(soap, "tt:Extension", -1, &a->tt__HostnameInformation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__HostnameInformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__HostnameInformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__HostnameInformation * SOAP_FMAC4 soap_in_tt__HostnameInformation(struct soap *soap, const char *tag, tt__HostnameInformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__HostnameInformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__HostnameInformation, sizeof(tt__HostnameInformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__HostnameInformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__HostnameInformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__HostnameInformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FromDHCP1 = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FromDHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:FromDHCP", &a->tt__HostnameInformation::FromDHCP, "xsd:boolean")) - { soap_flag_FromDHCP1--; - continue; - } - } - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__token(soap, "tt:Name", &a->tt__HostnameInformation::Name, "xsd:token")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__HostnameInformationExtension(soap, "tt:Extension", &a->tt__HostnameInformation::Extension, "tt:HostnameInformationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FromDHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__HostnameInformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__HostnameInformation, SOAP_TYPE_tt__HostnameInformation, sizeof(tt__HostnameInformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__HostnameInformation * SOAP_FMAC2 soap_instantiate_tt__HostnameInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__HostnameInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__HostnameInformation *p; - size_t k = sizeof(tt__HostnameInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__HostnameInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__HostnameInformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__HostnameInformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__HostnameInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__HostnameInformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__HostnameInformation(soap, tag ? tag : "tt:HostnameInformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__HostnameInformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__HostnameInformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__HostnameInformation * SOAP_FMAC4 soap_get_tt__HostnameInformation(struct soap *soap, tt__HostnameInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__HostnameInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PrefixedIPv6Address::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPv6Address(soap, &this->tt__PrefixedIPv6Address::Address); - soap_default_int(soap, &this->tt__PrefixedIPv6Address::PrefixLength); -} - -void tt__PrefixedIPv6Address::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PrefixedIPv6Address::Address, SOAP_TYPE_tt__IPv6Address); - soap_serialize_tt__IPv6Address(soap, &this->tt__PrefixedIPv6Address::Address); - soap_embedded(soap, &this->tt__PrefixedIPv6Address::PrefixLength, SOAP_TYPE_int); -#endif -} - -int tt__PrefixedIPv6Address::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PrefixedIPv6Address(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PrefixedIPv6Address(struct soap *soap, const char *tag, int id, const tt__PrefixedIPv6Address *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PrefixedIPv6Address), type)) - return soap->error; - if (soap_out_tt__IPv6Address(soap, "tt:Address", -1, &a->tt__PrefixedIPv6Address::Address, "")) - return soap->error; - if (soap_out_int(soap, "tt:PrefixLength", -1, &a->tt__PrefixedIPv6Address::PrefixLength, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PrefixedIPv6Address::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PrefixedIPv6Address(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PrefixedIPv6Address * SOAP_FMAC4 soap_in_tt__PrefixedIPv6Address(struct soap *soap, const char *tag, tt__PrefixedIPv6Address *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PrefixedIPv6Address*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PrefixedIPv6Address, sizeof(tt__PrefixedIPv6Address), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PrefixedIPv6Address) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PrefixedIPv6Address *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Address1 = 1; - size_t soap_flag_PrefixLength1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Address1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__IPv6Address(soap, "tt:Address", &a->tt__PrefixedIPv6Address::Address, "tt:IPv6Address")) - { soap_flag_Address1--; - continue; - } - } - if (soap_flag_PrefixLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:PrefixLength", &a->tt__PrefixedIPv6Address::PrefixLength, "xsd:int")) - { soap_flag_PrefixLength1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Address1 > 0 || soap_flag_PrefixLength1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PrefixedIPv6Address *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PrefixedIPv6Address, SOAP_TYPE_tt__PrefixedIPv6Address, sizeof(tt__PrefixedIPv6Address), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PrefixedIPv6Address * SOAP_FMAC2 soap_instantiate_tt__PrefixedIPv6Address(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PrefixedIPv6Address(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PrefixedIPv6Address *p; - size_t k = sizeof(tt__PrefixedIPv6Address); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PrefixedIPv6Address, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PrefixedIPv6Address); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PrefixedIPv6Address, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PrefixedIPv6Address location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PrefixedIPv6Address::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PrefixedIPv6Address(soap, tag ? tag : "tt:PrefixedIPv6Address", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PrefixedIPv6Address::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PrefixedIPv6Address(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PrefixedIPv6Address * SOAP_FMAC4 soap_get_tt__PrefixedIPv6Address(struct soap *soap, tt__PrefixedIPv6Address *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PrefixedIPv6Address(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PrefixedIPv4Address::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPv4Address(soap, &this->tt__PrefixedIPv4Address::Address); - soap_default_int(soap, &this->tt__PrefixedIPv4Address::PrefixLength); -} - -void tt__PrefixedIPv4Address::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PrefixedIPv4Address::Address, SOAP_TYPE_tt__IPv4Address); - soap_serialize_tt__IPv4Address(soap, &this->tt__PrefixedIPv4Address::Address); - soap_embedded(soap, &this->tt__PrefixedIPv4Address::PrefixLength, SOAP_TYPE_int); -#endif -} - -int tt__PrefixedIPv4Address::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PrefixedIPv4Address(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PrefixedIPv4Address(struct soap *soap, const char *tag, int id, const tt__PrefixedIPv4Address *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PrefixedIPv4Address), type)) - return soap->error; - if (soap_out_tt__IPv4Address(soap, "tt:Address", -1, &a->tt__PrefixedIPv4Address::Address, "")) - return soap->error; - if (soap_out_int(soap, "tt:PrefixLength", -1, &a->tt__PrefixedIPv4Address::PrefixLength, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PrefixedIPv4Address::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PrefixedIPv4Address(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PrefixedIPv4Address * SOAP_FMAC4 soap_in_tt__PrefixedIPv4Address(struct soap *soap, const char *tag, tt__PrefixedIPv4Address *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PrefixedIPv4Address*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PrefixedIPv4Address, sizeof(tt__PrefixedIPv4Address), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PrefixedIPv4Address) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PrefixedIPv4Address *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Address1 = 1; - size_t soap_flag_PrefixLength1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Address1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__IPv4Address(soap, "tt:Address", &a->tt__PrefixedIPv4Address::Address, "tt:IPv4Address")) - { soap_flag_Address1--; - continue; - } - } - if (soap_flag_PrefixLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:PrefixLength", &a->tt__PrefixedIPv4Address::PrefixLength, "xsd:int")) - { soap_flag_PrefixLength1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Address1 > 0 || soap_flag_PrefixLength1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PrefixedIPv4Address *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PrefixedIPv4Address, SOAP_TYPE_tt__PrefixedIPv4Address, sizeof(tt__PrefixedIPv4Address), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PrefixedIPv4Address * SOAP_FMAC2 soap_instantiate_tt__PrefixedIPv4Address(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PrefixedIPv4Address(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PrefixedIPv4Address *p; - size_t k = sizeof(tt__PrefixedIPv4Address); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PrefixedIPv4Address, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PrefixedIPv4Address); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PrefixedIPv4Address, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PrefixedIPv4Address location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PrefixedIPv4Address::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PrefixedIPv4Address(soap, tag ? tag : "tt:PrefixedIPv4Address", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PrefixedIPv4Address::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PrefixedIPv4Address(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PrefixedIPv4Address * SOAP_FMAC4 soap_get_tt__PrefixedIPv4Address(struct soap *soap, tt__PrefixedIPv4Address *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PrefixedIPv4Address(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPAddress::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__IPType(soap, &this->tt__IPAddress::Type); - this->tt__IPAddress::IPv4Address = NULL; - this->tt__IPAddress::IPv6Address = NULL; -} - -void tt__IPAddress::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IPv4Address(soap, &this->tt__IPAddress::IPv4Address); - soap_serialize_PointerTott__IPv6Address(soap, &this->tt__IPAddress::IPv6Address); -#endif -} - -int tt__IPAddress::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPAddress(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddress(struct soap *soap, const char *tag, int id, const tt__IPAddress *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPAddress), type)) - return soap->error; - if (soap_out_tt__IPType(soap, "tt:Type", -1, &a->tt__IPAddress::Type, "")) - return soap->error; - if (soap_out_PointerTott__IPv4Address(soap, "tt:IPv4Address", -1, &a->tt__IPAddress::IPv4Address, "")) - return soap->error; - if (soap_out_PointerTott__IPv6Address(soap, "tt:IPv6Address", -1, &a->tt__IPAddress::IPv6Address, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPAddress::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPAddress(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPAddress * SOAP_FMAC4 soap_in_tt__IPAddress(struct soap *soap, const char *tag, tt__IPAddress *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPAddress*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPAddress, sizeof(tt__IPAddress), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPAddress) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPAddress *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_IPv4Address1 = 1; - size_t soap_flag_IPv6Address1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__IPType(soap, "tt:Type", &a->tt__IPAddress::Type, "tt:IPType")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_IPv4Address1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__IPv4Address(soap, "tt:IPv4Address", &a->tt__IPAddress::IPv4Address, "tt:IPv4Address")) - { soap_flag_IPv4Address1--; - continue; - } - } - if (soap_flag_IPv6Address1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__IPv6Address(soap, "tt:IPv6Address", &a->tt__IPAddress::IPv6Address, "tt:IPv6Address")) - { soap_flag_IPv6Address1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IPAddress *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPAddress, SOAP_TYPE_tt__IPAddress, sizeof(tt__IPAddress), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPAddress * SOAP_FMAC2 soap_instantiate_tt__IPAddress(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPAddress(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPAddress *p; - size_t k = sizeof(tt__IPAddress); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPAddress, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPAddress); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPAddress, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPAddress location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPAddress::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPAddress(soap, tag ? tag : "tt:IPAddress", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPAddress::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPAddress(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPAddress * SOAP_FMAC4 soap_get_tt__IPAddress(struct soap *soap, tt__IPAddress *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPAddress(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkHostExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkHostExtension::__any); -} - -void tt__NetworkHostExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkHostExtension::__any); -#endif -} - -int tt__NetworkHostExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkHostExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHostExtension(struct soap *soap, const char *tag, int id, const tt__NetworkHostExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkHostExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkHostExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkHostExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkHostExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkHostExtension * SOAP_FMAC4 soap_in_tt__NetworkHostExtension(struct soap *soap, const char *tag, tt__NetworkHostExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkHostExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkHostExtension, sizeof(tt__NetworkHostExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkHostExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkHostExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkHostExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkHostExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkHostExtension, SOAP_TYPE_tt__NetworkHostExtension, sizeof(tt__NetworkHostExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkHostExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkHostExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkHostExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkHostExtension *p; - size_t k = sizeof(tt__NetworkHostExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkHostExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkHostExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkHostExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkHostExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkHostExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkHostExtension(soap, tag ? tag : "tt:NetworkHostExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkHostExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkHostExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkHostExtension * SOAP_FMAC4 soap_get_tt__NetworkHostExtension(struct soap *soap, tt__NetworkHostExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkHostExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkHost::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__NetworkHostType(soap, &this->tt__NetworkHost::Type); - this->tt__NetworkHost::IPv4Address = NULL; - this->tt__NetworkHost::IPv6Address = NULL; - this->tt__NetworkHost::DNSname = NULL; - this->tt__NetworkHost::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__NetworkHost::__anyAttribute); -} - -void tt__NetworkHost::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IPv4Address(soap, &this->tt__NetworkHost::IPv4Address); - soap_serialize_PointerTott__IPv6Address(soap, &this->tt__NetworkHost::IPv6Address); - soap_serialize_PointerTott__DNSName(soap, &this->tt__NetworkHost::DNSname); - soap_serialize_PointerTott__NetworkHostExtension(soap, &this->tt__NetworkHost::Extension); -#endif -} - -int tt__NetworkHost::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkHost(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHost(struct soap *soap, const char *tag, int id, const tt__NetworkHost *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NetworkHost*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkHost), type)) - return soap->error; - if (soap_out_tt__NetworkHostType(soap, "tt:Type", -1, &a->tt__NetworkHost::Type, "")) - return soap->error; - if (soap_out_PointerTott__IPv4Address(soap, "tt:IPv4Address", -1, &a->tt__NetworkHost::IPv4Address, "")) - return soap->error; - if (soap_out_PointerTott__IPv6Address(soap, "tt:IPv6Address", -1, &a->tt__NetworkHost::IPv6Address, "")) - return soap->error; - if (soap_out_PointerTott__DNSName(soap, "tt:DNSname", -1, &a->tt__NetworkHost::DNSname, "")) - return soap->error; - if (soap_out_PointerTott__NetworkHostExtension(soap, "tt:Extension", -1, &a->tt__NetworkHost::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkHost::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkHost(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkHost * SOAP_FMAC4 soap_in_tt__NetworkHost(struct soap *soap, const char *tag, tt__NetworkHost *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkHost*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkHost, sizeof(tt__NetworkHost), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkHost) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkHost *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NetworkHost*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Type1 = 1; - size_t soap_flag_IPv4Address1 = 1; - size_t soap_flag_IPv6Address1 = 1; - size_t soap_flag_DNSname1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__NetworkHostType(soap, "tt:Type", &a->tt__NetworkHost::Type, "tt:NetworkHostType")) - { soap_flag_Type1--; - continue; - } - } - if (soap_flag_IPv4Address1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__IPv4Address(soap, "tt:IPv4Address", &a->tt__NetworkHost::IPv4Address, "tt:IPv4Address")) - { soap_flag_IPv4Address1--; - continue; - } - } - if (soap_flag_IPv6Address1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__IPv6Address(soap, "tt:IPv6Address", &a->tt__NetworkHost::IPv6Address, "tt:IPv6Address")) - { soap_flag_IPv6Address1--; - continue; - } - } - if (soap_flag_DNSname1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTott__DNSName(soap, "tt:DNSname", &a->tt__NetworkHost::DNSname, "tt:DNSName")) - { soap_flag_DNSname1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkHostExtension(soap, "tt:Extension", &a->tt__NetworkHost::Extension, "tt:NetworkHostExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Type1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkHost *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkHost, SOAP_TYPE_tt__NetworkHost, sizeof(tt__NetworkHost), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkHost * SOAP_FMAC2 soap_instantiate_tt__NetworkHost(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkHost(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkHost *p; - size_t k = sizeof(tt__NetworkHost); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkHost, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkHost); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkHost, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkHost location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkHost::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkHost(soap, tag ? tag : "tt:NetworkHost", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkHost::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkHost(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkHost * SOAP_FMAC4 soap_get_tt__NetworkHost(struct soap *soap, tt__NetworkHost *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkHost(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkProtocolExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkProtocolExtension::__any); -} - -void tt__NetworkProtocolExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkProtocolExtension::__any); -#endif -} - -int tt__NetworkProtocolExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkProtocolExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocolExtension(struct soap *soap, const char *tag, int id, const tt__NetworkProtocolExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkProtocolExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkProtocolExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkProtocolExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkProtocolExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkProtocolExtension * SOAP_FMAC4 soap_in_tt__NetworkProtocolExtension(struct soap *soap, const char *tag, tt__NetworkProtocolExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkProtocolExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkProtocolExtension, sizeof(tt__NetworkProtocolExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkProtocolExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkProtocolExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkProtocolExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkProtocolExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkProtocolExtension, SOAP_TYPE_tt__NetworkProtocolExtension, sizeof(tt__NetworkProtocolExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkProtocolExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkProtocolExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkProtocolExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkProtocolExtension *p; - size_t k = sizeof(tt__NetworkProtocolExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkProtocolExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkProtocolExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkProtocolExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkProtocolExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkProtocolExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkProtocolExtension(soap, tag ? tag : "tt:NetworkProtocolExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkProtocolExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkProtocolExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkProtocolExtension * SOAP_FMAC4 soap_get_tt__NetworkProtocolExtension(struct soap *soap, tt__NetworkProtocolExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkProtocolExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkProtocol::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__NetworkProtocolType(soap, &this->tt__NetworkProtocol::Name); - soap_default_bool(soap, &this->tt__NetworkProtocol::Enabled); - soap_default_std__vectorTemplateOfint(soap, &this->tt__NetworkProtocol::Port); - this->tt__NetworkProtocol::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__NetworkProtocol::__anyAttribute); -} - -void tt__NetworkProtocol::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__NetworkProtocol::Enabled, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfint(soap, &this->tt__NetworkProtocol::Port); - soap_serialize_PointerTott__NetworkProtocolExtension(soap, &this->tt__NetworkProtocol::Extension); -#endif -} - -int tt__NetworkProtocol::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkProtocol(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocol(struct soap *soap, const char *tag, int id, const tt__NetworkProtocol *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NetworkProtocol*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkProtocol), type)) - return soap->error; - if (soap_out_tt__NetworkProtocolType(soap, "tt:Name", -1, &a->tt__NetworkProtocol::Name, "")) - return soap->error; - if (soap_out_bool(soap, "tt:Enabled", -1, &a->tt__NetworkProtocol::Enabled, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfint(soap, "tt:Port", -1, &a->tt__NetworkProtocol::Port, "")) - return soap->error; - if (soap_out_PointerTott__NetworkProtocolExtension(soap, "tt:Extension", -1, &a->tt__NetworkProtocol::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkProtocol::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkProtocol(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkProtocol * SOAP_FMAC4 soap_in_tt__NetworkProtocol(struct soap *soap, const char *tag, tt__NetworkProtocol *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkProtocol*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkProtocol, sizeof(tt__NetworkProtocol), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkProtocol) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkProtocol *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NetworkProtocol*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__NetworkProtocolType(soap, "tt:Name", &a->tt__NetworkProtocol::Name, "tt:NetworkProtocolType")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Enabled", &a->tt__NetworkProtocol::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfint(soap, "tt:Port", &a->tt__NetworkProtocol::Port, "xsd:int")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkProtocolExtension(soap, "tt:Extension", &a->tt__NetworkProtocol::Extension, "tt:NetworkProtocolExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0 || soap_flag_Enabled1 > 0 || a->tt__NetworkProtocol::Port.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkProtocol *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkProtocol, SOAP_TYPE_tt__NetworkProtocol, sizeof(tt__NetworkProtocol), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkProtocol * SOAP_FMAC2 soap_instantiate_tt__NetworkProtocol(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkProtocol(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkProtocol *p; - size_t k = sizeof(tt__NetworkProtocol); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkProtocol, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkProtocol); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkProtocol, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkProtocol location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkProtocol::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkProtocol(soap, tag ? tag : "tt:NetworkProtocol", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkProtocol::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkProtocol(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkProtocol * SOAP_FMAC4 soap_get_tt__NetworkProtocol(struct soap *soap, tt__NetworkProtocol *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkProtocol(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv6ConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IPv6ConfigurationExtension::__any); -} - -void tt__IPv6ConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IPv6ConfigurationExtension::__any); -#endif -} - -int tt__IPv6ConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv6ConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6ConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__IPv6ConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv6ConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__IPv6ConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPv6ConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv6ConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv6ConfigurationExtension * SOAP_FMAC4 soap_in_tt__IPv6ConfigurationExtension(struct soap *soap, const char *tag, tt__IPv6ConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPv6ConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv6ConfigurationExtension, sizeof(tt__IPv6ConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv6ConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPv6ConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__IPv6ConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IPv6ConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv6ConfigurationExtension, SOAP_TYPE_tt__IPv6ConfigurationExtension, sizeof(tt__IPv6ConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPv6ConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__IPv6ConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv6ConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv6ConfigurationExtension *p; - size_t k = sizeof(tt__IPv6ConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv6ConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv6ConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv6ConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv6ConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv6ConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv6ConfigurationExtension(soap, tag ? tag : "tt:IPv6ConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv6ConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv6ConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv6ConfigurationExtension * SOAP_FMAC4 soap_get_tt__IPv6ConfigurationExtension(struct soap *soap, tt__IPv6ConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv6ConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv6Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__IPv6Configuration::AcceptRouterAdvert = NULL; - soap_default_tt__IPv6DHCPConfiguration(soap, &this->tt__IPv6Configuration::DHCP); - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::Manual); - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::LinkLocal); - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::FromDHCP); - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::FromRA); - this->tt__IPv6Configuration::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__IPv6Configuration::__anyAttribute); -} - -void tt__IPv6Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->tt__IPv6Configuration::AcceptRouterAdvert); - soap_embedded(soap, &this->tt__IPv6Configuration::DHCP, SOAP_TYPE_tt__IPv6DHCPConfiguration); - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::Manual); - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::LinkLocal); - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::FromDHCP); - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, &this->tt__IPv6Configuration::FromRA); - soap_serialize_PointerTott__IPv6ConfigurationExtension(soap, &this->tt__IPv6Configuration::Extension); -#endif -} - -int tt__IPv6Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv6Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6Configuration(struct soap *soap, const char *tag, int id, const tt__IPv6Configuration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__IPv6Configuration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv6Configuration), type)) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:AcceptRouterAdvert", -1, &a->tt__IPv6Configuration::AcceptRouterAdvert, "")) - return soap->error; - if (soap_out_tt__IPv6DHCPConfiguration(soap, "tt:DHCP", -1, &a->tt__IPv6Configuration::DHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:Manual", -1, &a->tt__IPv6Configuration::Manual, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:LinkLocal", -1, &a->tt__IPv6Configuration::LinkLocal, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:FromDHCP", -1, &a->tt__IPv6Configuration::FromDHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:FromRA", -1, &a->tt__IPv6Configuration::FromRA, "")) - return soap->error; - if (soap_out_PointerTott__IPv6ConfigurationExtension(soap, "tt:Extension", -1, &a->tt__IPv6Configuration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPv6Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv6Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv6Configuration * SOAP_FMAC4 soap_in_tt__IPv6Configuration(struct soap *soap, const char *tag, tt__IPv6Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPv6Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv6Configuration, sizeof(tt__IPv6Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv6Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPv6Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__IPv6Configuration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AcceptRouterAdvert1 = 1; - size_t soap_flag_DHCP1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AcceptRouterAdvert1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:AcceptRouterAdvert", &a->tt__IPv6Configuration::AcceptRouterAdvert, "xsd:boolean")) - { soap_flag_AcceptRouterAdvert1--; - continue; - } - } - if (soap_flag_DHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__IPv6DHCPConfiguration(soap, "tt:DHCP", &a->tt__IPv6Configuration::DHCP, "tt:IPv6DHCPConfiguration")) - { soap_flag_DHCP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:Manual", &a->tt__IPv6Configuration::Manual, "tt:PrefixedIPv6Address")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:LinkLocal", &a->tt__IPv6Configuration::LinkLocal, "tt:PrefixedIPv6Address")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:FromDHCP", &a->tt__IPv6Configuration::FromDHCP, "tt:PrefixedIPv6Address")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, "tt:FromRA", &a->tt__IPv6Configuration::FromRA, "tt:PrefixedIPv6Address")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv6ConfigurationExtension(soap, "tt:Extension", &a->tt__IPv6Configuration::Extension, "tt:IPv6ConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IPv6Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv6Configuration, SOAP_TYPE_tt__IPv6Configuration, sizeof(tt__IPv6Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPv6Configuration * SOAP_FMAC2 soap_instantiate_tt__IPv6Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv6Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv6Configuration *p; - size_t k = sizeof(tt__IPv6Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv6Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv6Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv6Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv6Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv6Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv6Configuration(soap, tag ? tag : "tt:IPv6Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv6Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv6Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv6Configuration * SOAP_FMAC4 soap_get_tt__IPv6Configuration(struct soap *soap, tt__IPv6Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv6Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv4Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, &this->tt__IPv4Configuration::Manual); - this->tt__IPv4Configuration::LinkLocal = NULL; - this->tt__IPv4Configuration::FromDHCP = NULL; - soap_default_bool(soap, &this->tt__IPv4Configuration::DHCP); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IPv4Configuration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__IPv4Configuration::__anyAttribute); -} - -void tt__IPv4Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, &this->tt__IPv4Configuration::Manual); - soap_serialize_PointerTott__PrefixedIPv4Address(soap, &this->tt__IPv4Configuration::LinkLocal); - soap_serialize_PointerTott__PrefixedIPv4Address(soap, &this->tt__IPv4Configuration::FromDHCP); - soap_embedded(soap, &this->tt__IPv4Configuration::DHCP, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__IPv4Configuration::__any); -#endif -} - -int tt__IPv4Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv4Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4Configuration(struct soap *soap, const char *tag, int id, const tt__IPv4Configuration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__IPv4Configuration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv4Configuration), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, "tt:Manual", -1, &a->tt__IPv4Configuration::Manual, "")) - return soap->error; - if (soap_out_PointerTott__PrefixedIPv4Address(soap, "tt:LinkLocal", -1, &a->tt__IPv4Configuration::LinkLocal, "")) - return soap->error; - if (soap_out_PointerTott__PrefixedIPv4Address(soap, "tt:FromDHCP", -1, &a->tt__IPv4Configuration::FromDHCP, "")) - return soap->error; - if (soap_out_bool(soap, "tt:DHCP", -1, &a->tt__IPv4Configuration::DHCP, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__IPv4Configuration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPv4Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv4Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv4Configuration * SOAP_FMAC4 soap_in_tt__IPv4Configuration(struct soap *soap, const char *tag, tt__IPv4Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPv4Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv4Configuration, sizeof(tt__IPv4Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv4Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPv4Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__IPv4Configuration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_LinkLocal1 = 1; - size_t soap_flag_FromDHCP1 = 1; - size_t soap_flag_DHCP1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, "tt:Manual", &a->tt__IPv4Configuration::Manual, "tt:PrefixedIPv4Address")) - continue; - } - if (soap_flag_LinkLocal1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PrefixedIPv4Address(soap, "tt:LinkLocal", &a->tt__IPv4Configuration::LinkLocal, "tt:PrefixedIPv4Address")) - { soap_flag_LinkLocal1--; - continue; - } - } - if (soap_flag_FromDHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PrefixedIPv4Address(soap, "tt:FromDHCP", &a->tt__IPv4Configuration::FromDHCP, "tt:PrefixedIPv4Address")) - { soap_flag_FromDHCP1--; - continue; - } - } - if (soap_flag_DHCP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:DHCP", &a->tt__IPv4Configuration::DHCP, "xsd:boolean")) - { soap_flag_DHCP1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__IPv4Configuration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_DHCP1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IPv4Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv4Configuration, SOAP_TYPE_tt__IPv4Configuration, sizeof(tt__IPv4Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPv4Configuration * SOAP_FMAC2 soap_instantiate_tt__IPv4Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv4Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv4Configuration *p; - size_t k = sizeof(tt__IPv4Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv4Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv4Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv4Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv4Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv4Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv4Configuration(soap, tag ? tag : "tt:IPv4Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv4Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv4Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv4Configuration * SOAP_FMAC4 soap_get_tt__IPv4Configuration(struct soap *soap, tt__IPv4Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv4Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv4NetworkInterface::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__IPv4NetworkInterface::Enabled); - this->tt__IPv4NetworkInterface::Config = NULL; -} - -void tt__IPv4NetworkInterface::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IPv4NetworkInterface::Enabled, SOAP_TYPE_bool); - soap_serialize_PointerTott__IPv4Configuration(soap, &this->tt__IPv4NetworkInterface::Config); -#endif -} - -int tt__IPv4NetworkInterface::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv4NetworkInterface(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4NetworkInterface(struct soap *soap, const char *tag, int id, const tt__IPv4NetworkInterface *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv4NetworkInterface), type)) - return soap->error; - if (soap_out_bool(soap, "tt:Enabled", -1, &a->tt__IPv4NetworkInterface::Enabled, "")) - return soap->error; - if (!a->tt__IPv4NetworkInterface::Config) - { if (soap_element_empty(soap, "tt:Config", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IPv4Configuration(soap, "tt:Config", -1, &a->tt__IPv4NetworkInterface::Config, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPv4NetworkInterface::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv4NetworkInterface(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv4NetworkInterface * SOAP_FMAC4 soap_in_tt__IPv4NetworkInterface(struct soap *soap, const char *tag, tt__IPv4NetworkInterface *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPv4NetworkInterface*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv4NetworkInterface, sizeof(tt__IPv4NetworkInterface), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv4NetworkInterface) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPv4NetworkInterface *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_Config1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Enabled", &a->tt__IPv4NetworkInterface::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap_flag_Config1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv4Configuration(soap, "tt:Config", &a->tt__IPv4NetworkInterface::Config, "tt:IPv4Configuration")) - { soap_flag_Config1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Enabled1 > 0 || !a->tt__IPv4NetworkInterface::Config)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IPv4NetworkInterface *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv4NetworkInterface, SOAP_TYPE_tt__IPv4NetworkInterface, sizeof(tt__IPv4NetworkInterface), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPv4NetworkInterface * SOAP_FMAC2 soap_instantiate_tt__IPv4NetworkInterface(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv4NetworkInterface(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv4NetworkInterface *p; - size_t k = sizeof(tt__IPv4NetworkInterface); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv4NetworkInterface, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv4NetworkInterface); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv4NetworkInterface, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv4NetworkInterface location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv4NetworkInterface::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv4NetworkInterface(soap, tag ? tag : "tt:IPv4NetworkInterface", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv4NetworkInterface::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv4NetworkInterface(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv4NetworkInterface * SOAP_FMAC4 soap_get_tt__IPv4NetworkInterface(struct soap *soap, tt__IPv4NetworkInterface *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv4NetworkInterface(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IPv6NetworkInterface::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__IPv6NetworkInterface::Enabled); - this->tt__IPv6NetworkInterface::Config = NULL; -} - -void tt__IPv6NetworkInterface::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IPv6NetworkInterface::Enabled, SOAP_TYPE_bool); - soap_serialize_PointerTott__IPv6Configuration(soap, &this->tt__IPv6NetworkInterface::Config); -#endif -} - -int tt__IPv6NetworkInterface::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IPv6NetworkInterface(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6NetworkInterface(struct soap *soap, const char *tag, int id, const tt__IPv6NetworkInterface *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IPv6NetworkInterface), type)) - return soap->error; - if (soap_out_bool(soap, "tt:Enabled", -1, &a->tt__IPv6NetworkInterface::Enabled, "")) - return soap->error; - if (soap_out_PointerTott__IPv6Configuration(soap, "tt:Config", -1, &a->tt__IPv6NetworkInterface::Config, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IPv6NetworkInterface::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IPv6NetworkInterface(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IPv6NetworkInterface * SOAP_FMAC4 soap_in_tt__IPv6NetworkInterface(struct soap *soap, const char *tag, tt__IPv6NetworkInterface *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IPv6NetworkInterface*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IPv6NetworkInterface, sizeof(tt__IPv6NetworkInterface), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IPv6NetworkInterface) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IPv6NetworkInterface *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_Config1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Enabled", &a->tt__IPv6NetworkInterface::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap_flag_Config1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv6Configuration(soap, "tt:Config", &a->tt__IPv6NetworkInterface::Config, "tt:IPv6Configuration")) - { soap_flag_Config1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Enabled1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IPv6NetworkInterface *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IPv6NetworkInterface, SOAP_TYPE_tt__IPv6NetworkInterface, sizeof(tt__IPv6NetworkInterface), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IPv6NetworkInterface * SOAP_FMAC2 soap_instantiate_tt__IPv6NetworkInterface(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IPv6NetworkInterface(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IPv6NetworkInterface *p; - size_t k = sizeof(tt__IPv6NetworkInterface); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IPv6NetworkInterface, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IPv6NetworkInterface); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IPv6NetworkInterface, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IPv6NetworkInterface location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IPv6NetworkInterface::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IPv6NetworkInterface(soap, tag ? tag : "tt:IPv6NetworkInterface", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IPv6NetworkInterface::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IPv6NetworkInterface(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IPv6NetworkInterface * SOAP_FMAC4 soap_get_tt__IPv6NetworkInterface(struct soap *soap, tt__IPv6NetworkInterface *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IPv6NetworkInterface(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceInfo::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__NetworkInterfaceInfo::Name = NULL; - soap_default_tt__HwAddress(soap, &this->tt__NetworkInterfaceInfo::HwAddress); - this->tt__NetworkInterfaceInfo::MTU = NULL; -} - -void tt__NetworkInterfaceInfo::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTostd__string(soap, &this->tt__NetworkInterfaceInfo::Name); - soap_serialize_tt__HwAddress(soap, &this->tt__NetworkInterfaceInfo::HwAddress); - soap_serialize_PointerToint(soap, &this->tt__NetworkInterfaceInfo::MTU); -#endif -} - -int tt__NetworkInterfaceInfo::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceInfo(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceInfo(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceInfo *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceInfo), type)) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Name", -1, &a->tt__NetworkInterfaceInfo::Name, "")) - return soap->error; - if (soap_out_tt__HwAddress(soap, "tt:HwAddress", -1, &a->tt__NetworkInterfaceInfo::HwAddress, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tt:MTU", -1, &a->tt__NetworkInterfaceInfo::MTU, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceInfo::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceInfo(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceInfo * SOAP_FMAC4 soap_in_tt__NetworkInterfaceInfo(struct soap *soap, const char *tag, tt__NetworkInterfaceInfo *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceInfo*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceInfo, sizeof(tt__NetworkInterfaceInfo), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceInfo) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceInfo *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_HwAddress1 = 1; - size_t soap_flag_MTU1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Name", &a->tt__NetworkInterfaceInfo::Name, "xsd:string")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_HwAddress1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__HwAddress(soap, "tt:HwAddress", &a->tt__NetworkInterfaceInfo::HwAddress, "tt:HwAddress")) - { soap_flag_HwAddress1--; - continue; - } - } - if (soap_flag_MTU1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:MTU", &a->tt__NetworkInterfaceInfo::MTU, "xsd:int")) - { soap_flag_MTU1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_HwAddress1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkInterfaceInfo *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceInfo, SOAP_TYPE_tt__NetworkInterfaceInfo, sizeof(tt__NetworkInterfaceInfo), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceInfo * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceInfo(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceInfo(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceInfo *p; - size_t k = sizeof(tt__NetworkInterfaceInfo); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceInfo, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceInfo); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceInfo, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceInfo location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceInfo::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceInfo(soap, tag ? tag : "tt:NetworkInterfaceInfo", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceInfo::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceInfo(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceInfo * SOAP_FMAC4 soap_get_tt__NetworkInterfaceInfo(struct soap *soap, tt__NetworkInterfaceInfo *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceInfo(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceConnectionSetting::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__NetworkInterfaceConnectionSetting::AutoNegotiation); - soap_default_int(soap, &this->tt__NetworkInterfaceConnectionSetting::Speed); - soap_default_tt__Duplex(soap, &this->tt__NetworkInterfaceConnectionSetting::Duplex); -} - -void tt__NetworkInterfaceConnectionSetting::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__NetworkInterfaceConnectionSetting::AutoNegotiation, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__NetworkInterfaceConnectionSetting::Speed, SOAP_TYPE_int); -#endif -} - -int tt__NetworkInterfaceConnectionSetting::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceConnectionSetting(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceConnectionSetting(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceConnectionSetting *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceConnectionSetting), type)) - return soap->error; - if (soap_out_bool(soap, "tt:AutoNegotiation", -1, &a->tt__NetworkInterfaceConnectionSetting::AutoNegotiation, "")) - return soap->error; - if (soap_out_int(soap, "tt:Speed", -1, &a->tt__NetworkInterfaceConnectionSetting::Speed, "")) - return soap->error; - if (soap_out_tt__Duplex(soap, "tt:Duplex", -1, &a->tt__NetworkInterfaceConnectionSetting::Duplex, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceConnectionSetting::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceConnectionSetting(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceConnectionSetting * SOAP_FMAC4 soap_in_tt__NetworkInterfaceConnectionSetting(struct soap *soap, const char *tag, tt__NetworkInterfaceConnectionSetting *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceConnectionSetting*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceConnectionSetting, sizeof(tt__NetworkInterfaceConnectionSetting), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceConnectionSetting) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceConnectionSetting *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AutoNegotiation1 = 1; - size_t soap_flag_Speed1 = 1; - size_t soap_flag_Duplex1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AutoNegotiation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AutoNegotiation", &a->tt__NetworkInterfaceConnectionSetting::AutoNegotiation, "xsd:boolean")) - { soap_flag_AutoNegotiation1--; - continue; - } - } - if (soap_flag_Speed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Speed", &a->tt__NetworkInterfaceConnectionSetting::Speed, "xsd:int")) - { soap_flag_Speed1--; - continue; - } - } - if (soap_flag_Duplex1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__Duplex(soap, "tt:Duplex", &a->tt__NetworkInterfaceConnectionSetting::Duplex, "tt:Duplex")) - { soap_flag_Duplex1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_AutoNegotiation1 > 0 || soap_flag_Speed1 > 0 || soap_flag_Duplex1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkInterfaceConnectionSetting *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceConnectionSetting, SOAP_TYPE_tt__NetworkInterfaceConnectionSetting, sizeof(tt__NetworkInterfaceConnectionSetting), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceConnectionSetting * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceConnectionSetting(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceConnectionSetting(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceConnectionSetting *p; - size_t k = sizeof(tt__NetworkInterfaceConnectionSetting); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceConnectionSetting, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceConnectionSetting); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceConnectionSetting, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceConnectionSetting location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceConnectionSetting::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceConnectionSetting(soap, tag ? tag : "tt:NetworkInterfaceConnectionSetting", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceConnectionSetting::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceConnectionSetting(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceConnectionSetting * SOAP_FMAC4 soap_get_tt__NetworkInterfaceConnectionSetting(struct soap *soap, tt__NetworkInterfaceConnectionSetting *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceConnectionSetting(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceLink::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__NetworkInterfaceLink::AdminSettings = NULL; - this->tt__NetworkInterfaceLink::OperSettings = NULL; - soap_default_tt__IANA_IfTypes(soap, &this->tt__NetworkInterfaceLink::InterfaceType); -} - -void tt__NetworkInterfaceLink::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__NetworkInterfaceConnectionSetting(soap, &this->tt__NetworkInterfaceLink::AdminSettings); - soap_serialize_PointerTott__NetworkInterfaceConnectionSetting(soap, &this->tt__NetworkInterfaceLink::OperSettings); -#endif -} - -int tt__NetworkInterfaceLink::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceLink(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceLink(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceLink *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceLink), type)) - return soap->error; - if (!a->tt__NetworkInterfaceLink::AdminSettings) - { if (soap_element_empty(soap, "tt:AdminSettings", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__NetworkInterfaceConnectionSetting(soap, "tt:AdminSettings", -1, &a->tt__NetworkInterfaceLink::AdminSettings, "")) - return soap->error; - if (!a->tt__NetworkInterfaceLink::OperSettings) - { if (soap_element_empty(soap, "tt:OperSettings", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__NetworkInterfaceConnectionSetting(soap, "tt:OperSettings", -1, &a->tt__NetworkInterfaceLink::OperSettings, "")) - return soap->error; - if (soap_out_tt__IANA_IfTypes(soap, "tt:InterfaceType", -1, &a->tt__NetworkInterfaceLink::InterfaceType, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceLink::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceLink(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceLink * SOAP_FMAC4 soap_in_tt__NetworkInterfaceLink(struct soap *soap, const char *tag, tt__NetworkInterfaceLink *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceLink*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceLink, sizeof(tt__NetworkInterfaceLink), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceLink) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceLink *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AdminSettings1 = 1; - size_t soap_flag_OperSettings1 = 1; - size_t soap_flag_InterfaceType1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AdminSettings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceConnectionSetting(soap, "tt:AdminSettings", &a->tt__NetworkInterfaceLink::AdminSettings, "tt:NetworkInterfaceConnectionSetting")) - { soap_flag_AdminSettings1--; - continue; - } - } - if (soap_flag_OperSettings1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceConnectionSetting(soap, "tt:OperSettings", &a->tt__NetworkInterfaceLink::OperSettings, "tt:NetworkInterfaceConnectionSetting")) - { soap_flag_OperSettings1--; - continue; - } - } - if (soap_flag_InterfaceType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__IANA_IfTypes(soap, "tt:InterfaceType", &a->tt__NetworkInterfaceLink::InterfaceType, "tt:IANA-IfTypes")) - { soap_flag_InterfaceType1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__NetworkInterfaceLink::AdminSettings || !a->tt__NetworkInterfaceLink::OperSettings || soap_flag_InterfaceType1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkInterfaceLink *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceLink, SOAP_TYPE_tt__NetworkInterfaceLink, sizeof(tt__NetworkInterfaceLink), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceLink * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceLink(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceLink(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceLink *p; - size_t k = sizeof(tt__NetworkInterfaceLink); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceLink, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceLink); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceLink, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceLink location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceLink::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceLink(soap, tag ? tag : "tt:NetworkInterfaceLink", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceLink::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceLink(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceLink * SOAP_FMAC4 soap_get_tt__NetworkInterfaceLink(struct soap *soap, tt__NetworkInterfaceLink *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceLink(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceExtension2::__any); -} - -void tt__NetworkInterfaceExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceExtension2::__any); -#endif -} - -int tt__NetworkInterfaceExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceExtension2(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkInterfaceExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceExtension2 * SOAP_FMAC4 soap_in_tt__NetworkInterfaceExtension2(struct soap *soap, const char *tag, tt__NetworkInterfaceExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceExtension2, sizeof(tt__NetworkInterfaceExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkInterfaceExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__NetworkInterfaceExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceExtension2, SOAP_TYPE_tt__NetworkInterfaceExtension2, sizeof(tt__NetworkInterfaceExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceExtension2 *p; - size_t k = sizeof(tt__NetworkInterfaceExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceExtension2(soap, tag ? tag : "tt:NetworkInterfaceExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceExtension2 * SOAP_FMAC4 soap_get_tt__NetworkInterfaceExtension2(struct soap *soap, tt__NetworkInterfaceExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Dot3Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot3Configuration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Dot3Configuration::__anyAttribute); -} - -void tt__Dot3Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Dot3Configuration::__any); -#endif -} - -int tt__Dot3Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Dot3Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot3Configuration(struct soap *soap, const char *tag, int id, const tt__Dot3Configuration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Dot3Configuration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Dot3Configuration), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Dot3Configuration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Dot3Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Dot3Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Dot3Configuration * SOAP_FMAC4 soap_in_tt__Dot3Configuration(struct soap *soap, const char *tag, tt__Dot3Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Dot3Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Dot3Configuration, sizeof(tt__Dot3Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Dot3Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Dot3Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Dot3Configuration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Dot3Configuration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Dot3Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Dot3Configuration, SOAP_TYPE_tt__Dot3Configuration, sizeof(tt__Dot3Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Dot3Configuration * SOAP_FMAC2 soap_instantiate_tt__Dot3Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Dot3Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Dot3Configuration *p; - size_t k = sizeof(tt__Dot3Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Dot3Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Dot3Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Dot3Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Dot3Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Dot3Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Dot3Configuration(soap, tag ? tag : "tt:Dot3Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Dot3Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Dot3Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Dot3Configuration * SOAP_FMAC4 soap_get_tt__Dot3Configuration(struct soap *soap, tt__Dot3Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Dot3Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterfaceExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceExtension::__any); - soap_default_tt__IANA_IfTypes(soap, &this->tt__NetworkInterfaceExtension::InterfaceType); - soap_default_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, &this->tt__NetworkInterfaceExtension::Dot3); - soap_default_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, &this->tt__NetworkInterfaceExtension::Dot11); - this->tt__NetworkInterfaceExtension::Extension = NULL; -} - -void tt__NetworkInterfaceExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__NetworkInterfaceExtension::__any); - soap_serialize_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, &this->tt__NetworkInterfaceExtension::Dot3); - soap_serialize_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, &this->tt__NetworkInterfaceExtension::Dot11); - soap_serialize_PointerTott__NetworkInterfaceExtension2(soap, &this->tt__NetworkInterfaceExtension::Extension); -#endif -} - -int tt__NetworkInterfaceExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterfaceExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceExtension(struct soap *soap, const char *tag, int id, const tt__NetworkInterfaceExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterfaceExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__NetworkInterfaceExtension::__any, "")) - return soap->error; - if (soap_out_tt__IANA_IfTypes(soap, "tt:InterfaceType", -1, &a->tt__NetworkInterfaceExtension::InterfaceType, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, "tt:Dot3", -1, &a->tt__NetworkInterfaceExtension::Dot3, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, "tt:Dot11", -1, &a->tt__NetworkInterfaceExtension::Dot11, "")) - return soap->error; - if (soap_out_PointerTott__NetworkInterfaceExtension2(soap, "tt:Extension", -1, &a->tt__NetworkInterfaceExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterfaceExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterfaceExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceExtension * SOAP_FMAC4 soap_in_tt__NetworkInterfaceExtension(struct soap *soap, const char *tag, tt__NetworkInterfaceExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterfaceExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterfaceExtension, sizeof(tt__NetworkInterfaceExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterfaceExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterfaceExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_InterfaceType1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_InterfaceType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__IANA_IfTypes(soap, "tt:InterfaceType", &a->tt__NetworkInterfaceExtension::InterfaceType, "tt:IANA-IfTypes")) - { soap_flag_InterfaceType1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, "tt:Dot3", &a->tt__NetworkInterfaceExtension::Dot3, "tt:Dot3Configuration")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, "tt:Dot11", &a->tt__NetworkInterfaceExtension::Dot11, "tt:Dot11Configuration")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceExtension2(soap, "tt:Extension", &a->tt__NetworkInterfaceExtension::Extension, "tt:NetworkInterfaceExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__NetworkInterfaceExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_InterfaceType1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkInterfaceExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterfaceExtension, SOAP_TYPE_tt__NetworkInterfaceExtension, sizeof(tt__NetworkInterfaceExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterfaceExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterfaceExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterfaceExtension *p; - size_t k = sizeof(tt__NetworkInterfaceExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterfaceExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterfaceExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterfaceExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterfaceExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterfaceExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterfaceExtension(soap, tag ? tag : "tt:NetworkInterfaceExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterfaceExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterfaceExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterfaceExtension * SOAP_FMAC4 soap_get_tt__NetworkInterfaceExtension(struct soap *soap, tt__NetworkInterfaceExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterfaceExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__NetworkInterface::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - soap_default_bool(soap, &this->tt__NetworkInterface::Enabled); - this->tt__NetworkInterface::Info = NULL; - this->tt__NetworkInterface::Link = NULL; - this->tt__NetworkInterface::IPv4 = NULL; - this->tt__NetworkInterface::IPv6 = NULL; - this->tt__NetworkInterface::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__NetworkInterface::__anyAttribute); -} - -void tt__NetworkInterface::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__NetworkInterface::Enabled, SOAP_TYPE_bool); - soap_serialize_PointerTott__NetworkInterfaceInfo(soap, &this->tt__NetworkInterface::Info); - soap_serialize_PointerTott__NetworkInterfaceLink(soap, &this->tt__NetworkInterface::Link); - soap_serialize_PointerTott__IPv4NetworkInterface(soap, &this->tt__NetworkInterface::IPv4); - soap_serialize_PointerTott__IPv6NetworkInterface(soap, &this->tt__NetworkInterface::IPv6); - soap_serialize_PointerTott__NetworkInterfaceExtension(soap, &this->tt__NetworkInterface::Extension); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__NetworkInterface::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__NetworkInterface(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterface(struct soap *soap, const char *tag, int id, const tt__NetworkInterface *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__NetworkInterface*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__NetworkInterface), type ? type : "tt:NetworkInterface")) - return soap->error; - if (soap_out_bool(soap, "tt:Enabled", -1, &a->tt__NetworkInterface::Enabled, "")) - return soap->error; - if (soap_out_PointerTott__NetworkInterfaceInfo(soap, "tt:Info", -1, &a->tt__NetworkInterface::Info, "")) - return soap->error; - if (soap_out_PointerTott__NetworkInterfaceLink(soap, "tt:Link", -1, &a->tt__NetworkInterface::Link, "")) - return soap->error; - if (soap_out_PointerTott__IPv4NetworkInterface(soap, "tt:IPv4", -1, &a->tt__NetworkInterface::IPv4, "")) - return soap->error; - if (soap_out_PointerTott__IPv6NetworkInterface(soap, "tt:IPv6", -1, &a->tt__NetworkInterface::IPv6, "")) - return soap->error; - if (soap_out_PointerTott__NetworkInterfaceExtension(soap, "tt:Extension", -1, &a->tt__NetworkInterface::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__NetworkInterface::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__NetworkInterface(soap, tag, this, type); -} - -SOAP_FMAC3 tt__NetworkInterface * SOAP_FMAC4 soap_in_tt__NetworkInterface(struct soap *soap, const char *tag, tt__NetworkInterface *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__NetworkInterface*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__NetworkInterface, sizeof(tt__NetworkInterface), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__NetworkInterface) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__NetworkInterface *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__NetworkInterface*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Enabled1 = 1; - size_t soap_flag_Info1 = 1; - size_t soap_flag_Link1 = 1; - size_t soap_flag_IPv41 = 1; - size_t soap_flag_IPv61 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Enabled1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Enabled", &a->tt__NetworkInterface::Enabled, "xsd:boolean")) - { soap_flag_Enabled1--; - continue; - } - } - if (soap_flag_Info1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceInfo(soap, "tt:Info", &a->tt__NetworkInterface::Info, "tt:NetworkInterfaceInfo")) - { soap_flag_Info1--; - continue; - } - } - if (soap_flag_Link1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceLink(soap, "tt:Link", &a->tt__NetworkInterface::Link, "tt:NetworkInterfaceLink")) - { soap_flag_Link1--; - continue; - } - } - if (soap_flag_IPv41 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv4NetworkInterface(soap, "tt:IPv4", &a->tt__NetworkInterface::IPv4, "tt:IPv4NetworkInterface")) - { soap_flag_IPv41--; - continue; - } - } - if (soap_flag_IPv61 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPv6NetworkInterface(soap, "tt:IPv6", &a->tt__NetworkInterface::IPv6, "tt:IPv6NetworkInterface")) - { soap_flag_IPv61--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__NetworkInterfaceExtension(soap, "tt:Extension", &a->tt__NetworkInterface::Extension, "tt:NetworkInterfaceExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Enabled1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__NetworkInterface *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__NetworkInterface, SOAP_TYPE_tt__NetworkInterface, sizeof(tt__NetworkInterface), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__NetworkInterface * SOAP_FMAC2 soap_instantiate_tt__NetworkInterface(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__NetworkInterface(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__NetworkInterface *p; - size_t k = sizeof(tt__NetworkInterface); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__NetworkInterface, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__NetworkInterface); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__NetworkInterface, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__NetworkInterface location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__NetworkInterface::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__NetworkInterface(soap, tag ? tag : "tt:NetworkInterface", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__NetworkInterface::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__NetworkInterface(soap, this, tag, type); -} - -SOAP_FMAC3 tt__NetworkInterface * SOAP_FMAC4 soap_get_tt__NetworkInterface(struct soap *soap, tt__NetworkInterface *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__NetworkInterface(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Scope::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ScopeDefinition(soap, &this->tt__Scope::ScopeDef); - soap_default_xsd__anyURI(soap, &this->tt__Scope::ScopeItem); -} - -void tt__Scope::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Scope::ScopeItem, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__Scope::ScopeItem); -#endif -} - -int tt__Scope::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Scope(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Scope(struct soap *soap, const char *tag, int id, const tt__Scope *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Scope), type)) - return soap->error; - if (soap_out_tt__ScopeDefinition(soap, "tt:ScopeDef", -1, &a->tt__Scope::ScopeDef, "")) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:ScopeItem", -1, &a->tt__Scope::ScopeItem, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Scope::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Scope(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Scope * SOAP_FMAC4 soap_in_tt__Scope(struct soap *soap, const char *tag, tt__Scope *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Scope*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Scope, sizeof(tt__Scope), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Scope) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Scope *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_ScopeDef1 = 1; - size_t soap_flag_ScopeItem1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ScopeDef1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__ScopeDefinition(soap, "tt:ScopeDef", &a->tt__Scope::ScopeDef, "tt:ScopeDefinition")) - { soap_flag_ScopeDef1--; - continue; - } - } - if (soap_flag_ScopeItem1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:ScopeItem", &a->tt__Scope::ScopeItem, "xsd:anyURI")) - { soap_flag_ScopeItem1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ScopeDef1 > 0 || soap_flag_ScopeItem1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Scope *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Scope, SOAP_TYPE_tt__Scope, sizeof(tt__Scope), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Scope * SOAP_FMAC2 soap_instantiate_tt__Scope(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Scope(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Scope *p; - size_t k = sizeof(tt__Scope); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Scope, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Scope); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Scope, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Scope location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Scope::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Scope(soap, tag ? tag : "tt:Scope", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Scope::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Scope(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Scope * SOAP_FMAC4 soap_get_tt__Scope(struct soap *soap, tt__Scope *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Scope(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MediaUri::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->tt__MediaUri::Uri); - soap_default_bool(soap, &this->tt__MediaUri::InvalidAfterConnect); - soap_default_bool(soap, &this->tt__MediaUri::InvalidAfterReboot); - soap_default_xsd__duration(soap, &this->tt__MediaUri::Timeout); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaUri::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__MediaUri::__anyAttribute); -} - -void tt__MediaUri::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__MediaUri::Uri, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->tt__MediaUri::Uri); - soap_embedded(soap, &this->tt__MediaUri::InvalidAfterConnect, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__MediaUri::InvalidAfterReboot, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__MediaUri::Timeout, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__MediaUri::Timeout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MediaUri::__any); -#endif -} - -int tt__MediaUri::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MediaUri(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaUri(struct soap *soap, const char *tag, int id, const tt__MediaUri *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MediaUri*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MediaUri), type)) - return soap->error; - if (soap_out_xsd__anyURI(soap, "tt:Uri", -1, &a->tt__MediaUri::Uri, "")) - return soap->error; - if (soap_out_bool(soap, "tt:InvalidAfterConnect", -1, &a->tt__MediaUri::InvalidAfterConnect, "")) - return soap->error; - if (soap_out_bool(soap, "tt:InvalidAfterReboot", -1, &a->tt__MediaUri::InvalidAfterReboot, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:Timeout", -1, &a->tt__MediaUri::Timeout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MediaUri::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MediaUri::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MediaUri(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MediaUri * SOAP_FMAC4 soap_in_tt__MediaUri(struct soap *soap, const char *tag, tt__MediaUri *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MediaUri*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MediaUri, sizeof(tt__MediaUri), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MediaUri) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MediaUri *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MediaUri*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Uri1 = 1; - size_t soap_flag_InvalidAfterConnect1 = 1; - size_t soap_flag_InvalidAfterReboot1 = 1; - size_t soap_flag_Timeout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Uri1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__anyURI(soap, "tt:Uri", &a->tt__MediaUri::Uri, "xsd:anyURI")) - { soap_flag_Uri1--; - continue; - } - } - if (soap_flag_InvalidAfterConnect1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:InvalidAfterConnect", &a->tt__MediaUri::InvalidAfterConnect, "xsd:boolean")) - { soap_flag_InvalidAfterConnect1--; - continue; - } - } - if (soap_flag_InvalidAfterReboot1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:InvalidAfterReboot", &a->tt__MediaUri::InvalidAfterReboot, "xsd:boolean")) - { soap_flag_InvalidAfterReboot1--; - continue; - } - } - if (soap_flag_Timeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:Timeout", &a->tt__MediaUri::Timeout, "xsd:duration")) - { soap_flag_Timeout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MediaUri::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Uri1 > 0 || soap_flag_InvalidAfterConnect1 > 0 || soap_flag_InvalidAfterReboot1 > 0 || soap_flag_Timeout1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MediaUri *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MediaUri, SOAP_TYPE_tt__MediaUri, sizeof(tt__MediaUri), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MediaUri * SOAP_FMAC2 soap_instantiate_tt__MediaUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MediaUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MediaUri *p; - size_t k = sizeof(tt__MediaUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MediaUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MediaUri); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MediaUri, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MediaUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MediaUri::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MediaUri(soap, tag ? tag : "tt:MediaUri", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MediaUri::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MediaUri(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MediaUri * SOAP_FMAC4 soap_get_tt__MediaUri(struct soap *soap, tt__MediaUri *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MediaUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Transport::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__TransportProtocol(soap, &this->tt__Transport::Protocol); - this->tt__Transport::Tunnel = NULL; -} - -void tt__Transport::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Transport(soap, &this->tt__Transport::Tunnel); -#endif -} - -int tt__Transport::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Transport(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Transport(struct soap *soap, const char *tag, int id, const tt__Transport *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Transport), type)) - return soap->error; - if (soap_out_tt__TransportProtocol(soap, "tt:Protocol", -1, &a->tt__Transport::Protocol, "")) - return soap->error; - if (soap_out_PointerTott__Transport(soap, "tt:Tunnel", -1, &a->tt__Transport::Tunnel, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Transport::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Transport(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Transport * SOAP_FMAC4 soap_in_tt__Transport(struct soap *soap, const char *tag, tt__Transport *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Transport*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Transport, sizeof(tt__Transport), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Transport) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Transport *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Protocol1 = 1; - size_t soap_flag_Tunnel1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Protocol1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__TransportProtocol(soap, "tt:Protocol", &a->tt__Transport::Protocol, "tt:TransportProtocol")) - { soap_flag_Protocol1--; - continue; - } - } - if (soap_flag_Tunnel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Transport(soap, "tt:Tunnel", &a->tt__Transport::Tunnel, "tt:Transport")) - { soap_flag_Tunnel1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Protocol1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Transport *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Transport, SOAP_TYPE_tt__Transport, sizeof(tt__Transport), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Transport * SOAP_FMAC2 soap_instantiate_tt__Transport(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Transport(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Transport *p; - size_t k = sizeof(tt__Transport); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Transport, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Transport); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Transport, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Transport location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Transport::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Transport(soap, tag ? tag : "tt:Transport", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Transport::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Transport(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Transport * SOAP_FMAC4 soap_get_tt__Transport(struct soap *soap, tt__Transport *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Transport(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__StreamSetup::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__StreamType(soap, &this->tt__StreamSetup::Stream); - this->tt__StreamSetup::Transport = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__StreamSetup::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__StreamSetup::__anyAttribute); -} - -void tt__StreamSetup::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Transport(soap, &this->tt__StreamSetup::Transport); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__StreamSetup::__any); -#endif -} - -int tt__StreamSetup::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__StreamSetup(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StreamSetup(struct soap *soap, const char *tag, int id, const tt__StreamSetup *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__StreamSetup*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__StreamSetup), type)) - return soap->error; - if (soap_out_tt__StreamType(soap, "tt:Stream", -1, &a->tt__StreamSetup::Stream, "")) - return soap->error; - if (!a->tt__StreamSetup::Transport) - { if (soap_element_empty(soap, "tt:Transport", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Transport(soap, "tt:Transport", -1, &a->tt__StreamSetup::Transport, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__StreamSetup::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__StreamSetup::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__StreamSetup(soap, tag, this, type); -} - -SOAP_FMAC3 tt__StreamSetup * SOAP_FMAC4 soap_in_tt__StreamSetup(struct soap *soap, const char *tag, tt__StreamSetup *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__StreamSetup*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__StreamSetup, sizeof(tt__StreamSetup), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__StreamSetup) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__StreamSetup *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__StreamSetup*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Stream1 = 1; - size_t soap_flag_Transport1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Stream1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__StreamType(soap, "tt:Stream", &a->tt__StreamSetup::Stream, "tt:StreamType")) - { soap_flag_Stream1--; - continue; - } - } - if (soap_flag_Transport1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Transport(soap, "tt:Transport", &a->tt__StreamSetup::Transport, "tt:Transport")) - { soap_flag_Transport1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__StreamSetup::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Stream1 > 0 || !a->tt__StreamSetup::Transport)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__StreamSetup *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__StreamSetup, SOAP_TYPE_tt__StreamSetup, sizeof(tt__StreamSetup), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__StreamSetup * SOAP_FMAC2 soap_instantiate_tt__StreamSetup(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__StreamSetup(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__StreamSetup *p; - size_t k = sizeof(tt__StreamSetup); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__StreamSetup, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__StreamSetup); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__StreamSetup, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__StreamSetup location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__StreamSetup::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__StreamSetup(soap, tag ? tag : "tt:StreamSetup", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__StreamSetup::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__StreamSetup(soap, this, tag, type); -} - -SOAP_FMAC3 tt__StreamSetup * SOAP_FMAC4 soap_get_tt__StreamSetup(struct soap *soap, tt__StreamSetup *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__StreamSetup(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MulticastConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__MulticastConfiguration::Address = NULL; - soap_default_int(soap, &this->tt__MulticastConfiguration::Port); - soap_default_int(soap, &this->tt__MulticastConfiguration::TTL); - soap_default_bool(soap, &this->tt__MulticastConfiguration::AutoStart); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MulticastConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__MulticastConfiguration::__anyAttribute); -} - -void tt__MulticastConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IPAddress(soap, &this->tt__MulticastConfiguration::Address); - soap_embedded(soap, &this->tt__MulticastConfiguration::Port, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__MulticastConfiguration::TTL, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__MulticastConfiguration::AutoStart, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MulticastConfiguration::__any); -#endif -} - -int tt__MulticastConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MulticastConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MulticastConfiguration(struct soap *soap, const char *tag, int id, const tt__MulticastConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MulticastConfiguration*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MulticastConfiguration), type)) - return soap->error; - if (!a->tt__MulticastConfiguration::Address) - { if (soap_element_empty(soap, "tt:Address", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IPAddress(soap, "tt:Address", -1, &a->tt__MulticastConfiguration::Address, "")) - return soap->error; - if (soap_out_int(soap, "tt:Port", -1, &a->tt__MulticastConfiguration::Port, "")) - return soap->error; - if (soap_out_int(soap, "tt:TTL", -1, &a->tt__MulticastConfiguration::TTL, "")) - return soap->error; - if (soap_out_bool(soap, "tt:AutoStart", -1, &a->tt__MulticastConfiguration::AutoStart, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MulticastConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MulticastConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MulticastConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MulticastConfiguration * SOAP_FMAC4 soap_in_tt__MulticastConfiguration(struct soap *soap, const char *tag, tt__MulticastConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MulticastConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MulticastConfiguration, sizeof(tt__MulticastConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MulticastConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MulticastConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MulticastConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Address1 = 1; - size_t soap_flag_Port1 = 1; - size_t soap_flag_TTL1 = 1; - size_t soap_flag_AutoStart1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Address1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IPAddress(soap, "tt:Address", &a->tt__MulticastConfiguration::Address, "tt:IPAddress")) - { soap_flag_Address1--; - continue; - } - } - if (soap_flag_Port1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Port", &a->tt__MulticastConfiguration::Port, "xsd:int")) - { soap_flag_Port1--; - continue; - } - } - if (soap_flag_TTL1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:TTL", &a->tt__MulticastConfiguration::TTL, "xsd:int")) - { soap_flag_TTL1--; - continue; - } - } - if (soap_flag_AutoStart1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:AutoStart", &a->tt__MulticastConfiguration::AutoStart, "xsd:boolean")) - { soap_flag_AutoStart1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MulticastConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__MulticastConfiguration::Address || soap_flag_Port1 > 0 || soap_flag_TTL1 > 0 || soap_flag_AutoStart1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MulticastConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MulticastConfiguration, SOAP_TYPE_tt__MulticastConfiguration, sizeof(tt__MulticastConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MulticastConfiguration * SOAP_FMAC2 soap_instantiate_tt__MulticastConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MulticastConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MulticastConfiguration *p; - size_t k = sizeof(tt__MulticastConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MulticastConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MulticastConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MulticastConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MulticastConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MulticastConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MulticastConfiguration(soap, tag ? tag : "tt:MulticastConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MulticastConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MulticastConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MulticastConfiguration * SOAP_FMAC4 soap_get_tt__MulticastConfiguration(struct soap *soap, tt__MulticastConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MulticastConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioDecoderConfigurationOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioDecoderConfigurationOptionsExtension::__any); -} - -void tt__AudioDecoderConfigurationOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioDecoderConfigurationOptionsExtension::__any); -#endif -} - -int tt__AudioDecoderConfigurationOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioDecoderConfigurationOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, const char *tag, int id, const tt__AudioDecoderConfigurationOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioDecoderConfigurationOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioDecoderConfigurationOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioDecoderConfigurationOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, const char *tag, tt__AudioDecoderConfigurationOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioDecoderConfigurationOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension, sizeof(tt__AudioDecoderConfigurationOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioDecoderConfigurationOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioDecoderConfigurationOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AudioDecoderConfigurationOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension, SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension, sizeof(tt__AudioDecoderConfigurationOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioDecoderConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioDecoderConfigurationOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioDecoderConfigurationOptionsExtension *p; - size_t k = sizeof(tt__AudioDecoderConfigurationOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioDecoderConfigurationOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioDecoderConfigurationOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioDecoderConfigurationOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioDecoderConfigurationOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioDecoderConfigurationOptionsExtension(soap, tag ? tag : "tt:AudioDecoderConfigurationOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioDecoderConfigurationOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioDecoderConfigurationOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, tt__AudioDecoderConfigurationOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioDecoderConfigurationOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__G726DecOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__G726DecOptions::Bitrate = NULL; - this->tt__G726DecOptions::SampleRateRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__G726DecOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__G726DecOptions::__anyAttribute); -} - -void tt__G726DecOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntItems(soap, &this->tt__G726DecOptions::Bitrate); - soap_serialize_PointerTott__IntItems(soap, &this->tt__G726DecOptions::SampleRateRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__G726DecOptions::__any); -#endif -} - -int tt__G726DecOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__G726DecOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__G726DecOptions(struct soap *soap, const char *tag, int id, const tt__G726DecOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__G726DecOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__G726DecOptions), type)) - return soap->error; - if (!a->tt__G726DecOptions::Bitrate) - { if (soap_element_empty(soap, "tt:Bitrate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:Bitrate", -1, &a->tt__G726DecOptions::Bitrate, "")) - return soap->error; - if (!a->tt__G726DecOptions::SampleRateRange) - { if (soap_element_empty(soap, "tt:SampleRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:SampleRateRange", -1, &a->tt__G726DecOptions::SampleRateRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__G726DecOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__G726DecOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__G726DecOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__G726DecOptions * SOAP_FMAC4 soap_in_tt__G726DecOptions(struct soap *soap, const char *tag, tt__G726DecOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__G726DecOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__G726DecOptions, sizeof(tt__G726DecOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__G726DecOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__G726DecOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__G726DecOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Bitrate1 = 1; - size_t soap_flag_SampleRateRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Bitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:Bitrate", &a->tt__G726DecOptions::Bitrate, "tt:IntItems")) - { soap_flag_Bitrate1--; - continue; - } - } - if (soap_flag_SampleRateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:SampleRateRange", &a->tt__G726DecOptions::SampleRateRange, "tt:IntItems")) - { soap_flag_SampleRateRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__G726DecOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__G726DecOptions::Bitrate || !a->tt__G726DecOptions::SampleRateRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__G726DecOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__G726DecOptions, SOAP_TYPE_tt__G726DecOptions, sizeof(tt__G726DecOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__G726DecOptions * SOAP_FMAC2 soap_instantiate_tt__G726DecOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__G726DecOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__G726DecOptions *p; - size_t k = sizeof(tt__G726DecOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__G726DecOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__G726DecOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__G726DecOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__G726DecOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__G726DecOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__G726DecOptions(soap, tag ? tag : "tt:G726DecOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__G726DecOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__G726DecOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__G726DecOptions * SOAP_FMAC4 soap_get_tt__G726DecOptions(struct soap *soap, tt__G726DecOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__G726DecOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AACDecOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__AACDecOptions::Bitrate = NULL; - this->tt__AACDecOptions::SampleRateRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AACDecOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AACDecOptions::__anyAttribute); -} - -void tt__AACDecOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntItems(soap, &this->tt__AACDecOptions::Bitrate); - soap_serialize_PointerTott__IntItems(soap, &this->tt__AACDecOptions::SampleRateRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AACDecOptions::__any); -#endif -} - -int tt__AACDecOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AACDecOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AACDecOptions(struct soap *soap, const char *tag, int id, const tt__AACDecOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AACDecOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AACDecOptions), type)) - return soap->error; - if (!a->tt__AACDecOptions::Bitrate) - { if (soap_element_empty(soap, "tt:Bitrate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:Bitrate", -1, &a->tt__AACDecOptions::Bitrate, "")) - return soap->error; - if (!a->tt__AACDecOptions::SampleRateRange) - { if (soap_element_empty(soap, "tt:SampleRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:SampleRateRange", -1, &a->tt__AACDecOptions::SampleRateRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AACDecOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AACDecOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AACDecOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AACDecOptions * SOAP_FMAC4 soap_in_tt__AACDecOptions(struct soap *soap, const char *tag, tt__AACDecOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AACDecOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AACDecOptions, sizeof(tt__AACDecOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AACDecOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AACDecOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AACDecOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Bitrate1 = 1; - size_t soap_flag_SampleRateRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Bitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:Bitrate", &a->tt__AACDecOptions::Bitrate, "tt:IntItems")) - { soap_flag_Bitrate1--; - continue; - } - } - if (soap_flag_SampleRateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:SampleRateRange", &a->tt__AACDecOptions::SampleRateRange, "tt:IntItems")) - { soap_flag_SampleRateRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AACDecOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__AACDecOptions::Bitrate || !a->tt__AACDecOptions::SampleRateRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AACDecOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AACDecOptions, SOAP_TYPE_tt__AACDecOptions, sizeof(tt__AACDecOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AACDecOptions * SOAP_FMAC2 soap_instantiate_tt__AACDecOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AACDecOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AACDecOptions *p; - size_t k = sizeof(tt__AACDecOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AACDecOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AACDecOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AACDecOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AACDecOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AACDecOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AACDecOptions(soap, tag ? tag : "tt:AACDecOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AACDecOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AACDecOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AACDecOptions * SOAP_FMAC4 soap_get_tt__AACDecOptions(struct soap *soap, tt__AACDecOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AACDecOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__G711DecOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__G711DecOptions::Bitrate = NULL; - this->tt__G711DecOptions::SampleRateRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__G711DecOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__G711DecOptions::__anyAttribute); -} - -void tt__G711DecOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntItems(soap, &this->tt__G711DecOptions::Bitrate); - soap_serialize_PointerTott__IntItems(soap, &this->tt__G711DecOptions::SampleRateRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__G711DecOptions::__any); -#endif -} - -int tt__G711DecOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__G711DecOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__G711DecOptions(struct soap *soap, const char *tag, int id, const tt__G711DecOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__G711DecOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__G711DecOptions), type)) - return soap->error; - if (!a->tt__G711DecOptions::Bitrate) - { if (soap_element_empty(soap, "tt:Bitrate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:Bitrate", -1, &a->tt__G711DecOptions::Bitrate, "")) - return soap->error; - if (!a->tt__G711DecOptions::SampleRateRange) - { if (soap_element_empty(soap, "tt:SampleRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:SampleRateRange", -1, &a->tt__G711DecOptions::SampleRateRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__G711DecOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__G711DecOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__G711DecOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__G711DecOptions * SOAP_FMAC4 soap_in_tt__G711DecOptions(struct soap *soap, const char *tag, tt__G711DecOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__G711DecOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__G711DecOptions, sizeof(tt__G711DecOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__G711DecOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__G711DecOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__G711DecOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Bitrate1 = 1; - size_t soap_flag_SampleRateRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Bitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:Bitrate", &a->tt__G711DecOptions::Bitrate, "tt:IntItems")) - { soap_flag_Bitrate1--; - continue; - } - } - if (soap_flag_SampleRateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:SampleRateRange", &a->tt__G711DecOptions::SampleRateRange, "tt:IntItems")) - { soap_flag_SampleRateRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__G711DecOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__G711DecOptions::Bitrate || !a->tt__G711DecOptions::SampleRateRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__G711DecOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__G711DecOptions, SOAP_TYPE_tt__G711DecOptions, sizeof(tt__G711DecOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__G711DecOptions * SOAP_FMAC2 soap_instantiate_tt__G711DecOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__G711DecOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__G711DecOptions *p; - size_t k = sizeof(tt__G711DecOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__G711DecOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__G711DecOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__G711DecOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__G711DecOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__G711DecOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__G711DecOptions(soap, tag ? tag : "tt:G711DecOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__G711DecOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__G711DecOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__G711DecOptions * SOAP_FMAC4 soap_get_tt__G711DecOptions(struct soap *soap, tt__G711DecOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__G711DecOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioDecoderConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__AudioDecoderConfigurationOptions::AACDecOptions = NULL; - this->tt__AudioDecoderConfigurationOptions::G711DecOptions = NULL; - this->tt__AudioDecoderConfigurationOptions::G726DecOptions = NULL; - this->tt__AudioDecoderConfigurationOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__AudioDecoderConfigurationOptions::__anyAttribute); -} - -void tt__AudioDecoderConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AACDecOptions(soap, &this->tt__AudioDecoderConfigurationOptions::AACDecOptions); - soap_serialize_PointerTott__G711DecOptions(soap, &this->tt__AudioDecoderConfigurationOptions::G711DecOptions); - soap_serialize_PointerTott__G726DecOptions(soap, &this->tt__AudioDecoderConfigurationOptions::G726DecOptions); - soap_serialize_PointerTott__AudioDecoderConfigurationOptionsExtension(soap, &this->tt__AudioDecoderConfigurationOptions::Extension); -#endif -} - -int tt__AudioDecoderConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioDecoderConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioDecoderConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__AudioDecoderConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioDecoderConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioDecoderConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__AACDecOptions(soap, "tt:AACDecOptions", -1, &a->tt__AudioDecoderConfigurationOptions::AACDecOptions, "")) - return soap->error; - if (soap_out_PointerTott__G711DecOptions(soap, "tt:G711DecOptions", -1, &a->tt__AudioDecoderConfigurationOptions::G711DecOptions, "")) - return soap->error; - if (soap_out_PointerTott__G726DecOptions(soap, "tt:G726DecOptions", -1, &a->tt__AudioDecoderConfigurationOptions::G726DecOptions, "")) - return soap->error; - if (soap_out_PointerTott__AudioDecoderConfigurationOptionsExtension(soap, "tt:Extension", -1, &a->tt__AudioDecoderConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioDecoderConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioDecoderConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioDecoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioDecoderConfigurationOptions(struct soap *soap, const char *tag, tt__AudioDecoderConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioDecoderConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioDecoderConfigurationOptions, sizeof(tt__AudioDecoderConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioDecoderConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioDecoderConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioDecoderConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AACDecOptions1 = 1; - size_t soap_flag_G711DecOptions1 = 1; - size_t soap_flag_G726DecOptions1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AACDecOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AACDecOptions(soap, "tt:AACDecOptions", &a->tt__AudioDecoderConfigurationOptions::AACDecOptions, "tt:AACDecOptions")) - { soap_flag_AACDecOptions1--; - continue; - } - } - if (soap_flag_G711DecOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__G711DecOptions(soap, "tt:G711DecOptions", &a->tt__AudioDecoderConfigurationOptions::G711DecOptions, "tt:G711DecOptions")) - { soap_flag_G711DecOptions1--; - continue; - } - } - if (soap_flag_G726DecOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__G726DecOptions(soap, "tt:G726DecOptions", &a->tt__AudioDecoderConfigurationOptions::G726DecOptions, "tt:G726DecOptions")) - { soap_flag_G726DecOptions1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioDecoderConfigurationOptionsExtension(soap, "tt:Extension", &a->tt__AudioDecoderConfigurationOptions::Extension, "tt:AudioDecoderConfigurationOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AudioDecoderConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioDecoderConfigurationOptions, SOAP_TYPE_tt__AudioDecoderConfigurationOptions, sizeof(tt__AudioDecoderConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioDecoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioDecoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioDecoderConfigurationOptions *p; - size_t k = sizeof(tt__AudioDecoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioDecoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioDecoderConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioDecoderConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioDecoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioDecoderConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioDecoderConfigurationOptions(soap, tag ? tag : "tt:AudioDecoderConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioDecoderConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioDecoderConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioDecoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioDecoderConfigurationOptions(struct soap *soap, tt__AudioDecoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioDecoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioDecoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioDecoderConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioDecoderConfiguration::__anyAttribute); -} - -void tt__AudioDecoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioDecoderConfiguration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AudioDecoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioDecoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const tt__AudioDecoderConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioDecoderConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioDecoderConfiguration), type ? type : "tt:AudioDecoderConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioDecoderConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioDecoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioDecoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioDecoderConfiguration * SOAP_FMAC4 soap_in_tt__AudioDecoderConfiguration(struct soap *soap, const char *tag, tt__AudioDecoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioDecoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioDecoderConfiguration, sizeof(tt__AudioDecoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioDecoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioDecoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioDecoderConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioDecoderConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioDecoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioDecoderConfiguration, SOAP_TYPE_tt__AudioDecoderConfiguration, sizeof(tt__AudioDecoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioDecoderConfiguration *p; - size_t k = sizeof(tt__AudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioDecoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioDecoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioDecoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioDecoderConfiguration(soap, tag ? tag : "tt:AudioDecoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioDecoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioDecoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioDecoderConfiguration * SOAP_FMAC4 soap_get_tt__AudioDecoderConfiguration(struct soap *soap, tt__AudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioOutputConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AudioOutputConfigurationOptions::OutputTokensAvailable); - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__AudioOutputConfigurationOptions::SendPrimacyOptions); - this->tt__AudioOutputConfigurationOptions::OutputLevelRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioOutputConfigurationOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioOutputConfigurationOptions::__anyAttribute); -} - -void tt__AudioOutputConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AudioOutputConfigurationOptions::OutputTokensAvailable); - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->tt__AudioOutputConfigurationOptions::SendPrimacyOptions); - soap_serialize_PointerTott__IntRange(soap, &this->tt__AudioOutputConfigurationOptions::OutputLevelRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioOutputConfigurationOptions::__any); -#endif -} - -int tt__AudioOutputConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioOutputConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__AudioOutputConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioOutputConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioOutputConfigurationOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tt:OutputTokensAvailable", -1, &a->tt__AudioOutputConfigurationOptions::OutputTokensAvailable, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tt:SendPrimacyOptions", -1, &a->tt__AudioOutputConfigurationOptions::SendPrimacyOptions, "")) - return soap->error; - if (!a->tt__AudioOutputConfigurationOptions::OutputLevelRange) - { if (soap_element_empty(soap, "tt:OutputLevelRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:OutputLevelRange", -1, &a->tt__AudioOutputConfigurationOptions::OutputLevelRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioOutputConfigurationOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioOutputConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioOutputConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioOutputConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioOutputConfigurationOptions(struct soap *soap, const char *tag, tt__AudioOutputConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioOutputConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioOutputConfigurationOptions, sizeof(tt__AudioOutputConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioOutputConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioOutputConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioOutputConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_OutputLevelRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tt:OutputTokensAvailable", &a->tt__AudioOutputConfigurationOptions::OutputTokensAvailable, "tt:ReferenceToken")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tt:SendPrimacyOptions", &a->tt__AudioOutputConfigurationOptions::SendPrimacyOptions, "xsd:anyURI")) - continue; - } - if (soap_flag_OutputLevelRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:OutputLevelRange", &a->tt__AudioOutputConfigurationOptions::OutputLevelRange, "tt:IntRange")) - { soap_flag_OutputLevelRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioOutputConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__AudioOutputConfigurationOptions::OutputTokensAvailable.size() < 1 || !a->tt__AudioOutputConfigurationOptions::OutputLevelRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioOutputConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioOutputConfigurationOptions, SOAP_TYPE_tt__AudioOutputConfigurationOptions, sizeof(tt__AudioOutputConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioOutputConfigurationOptions *p; - size_t k = sizeof(tt__AudioOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioOutputConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioOutputConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioOutputConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioOutputConfigurationOptions(soap, tag ? tag : "tt:AudioOutputConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioOutputConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioOutputConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioOutputConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioOutputConfigurationOptions(struct soap *soap, tt__AudioOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__ReferenceToken(soap, &this->tt__AudioOutputConfiguration::OutputToken); - this->tt__AudioOutputConfiguration::SendPrimacy = NULL; - soap_default_int(soap, &this->tt__AudioOutputConfiguration::OutputLevel); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioOutputConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioOutputConfiguration::__anyAttribute); -} - -void tt__AudioOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AudioOutputConfiguration::OutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__AudioOutputConfiguration::OutputToken); - soap_serialize_PointerToxsd__anyURI(soap, &this->tt__AudioOutputConfiguration::SendPrimacy); - soap_embedded(soap, &this->tt__AudioOutputConfiguration::OutputLevel, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioOutputConfiguration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AudioOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioOutputConfiguration(struct soap *soap, const char *tag, int id, const tt__AudioOutputConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioOutputConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioOutputConfiguration), type ? type : "tt:AudioOutputConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:OutputToken", -1, &a->tt__AudioOutputConfiguration::OutputToken, "")) - return soap->error; - if (soap_out_PointerToxsd__anyURI(soap, "tt:SendPrimacy", -1, &a->tt__AudioOutputConfiguration::SendPrimacy, "")) - return soap->error; - if (soap_out_int(soap, "tt:OutputLevel", -1, &a->tt__AudioOutputConfiguration::OutputLevel, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioOutputConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioOutputConfiguration * SOAP_FMAC4 soap_in_tt__AudioOutputConfiguration(struct soap *soap, const char *tag, tt__AudioOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioOutputConfiguration, sizeof(tt__AudioOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioOutputConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_OutputToken1 = 1; - size_t soap_flag_SendPrimacy1 = 1; - size_t soap_flag_OutputLevel1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_OutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:OutputToken", &a->tt__AudioOutputConfiguration::OutputToken, "tt:ReferenceToken")) - { soap_flag_OutputToken1--; - continue; - } - } - if (soap_flag_SendPrimacy1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__anyURI(soap, "tt:SendPrimacy", &a->tt__AudioOutputConfiguration::SendPrimacy, "xsd:anyURI")) - { soap_flag_SendPrimacy1--; - continue; - } - } - if (soap_flag_OutputLevel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:OutputLevel", &a->tt__AudioOutputConfiguration::OutputLevel, "xsd:int")) - { soap_flag_OutputLevel1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioOutputConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_OutputToken1 > 0 || soap_flag_OutputLevel1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioOutputConfiguration, SOAP_TYPE_tt__AudioOutputConfiguration, sizeof(tt__AudioOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioOutputConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioOutputConfiguration *p; - size_t k = sizeof(tt__AudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioOutputConfiguration(soap, tag ? tag : "tt:AudioOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioOutputConfiguration * SOAP_FMAC4 soap_get_tt__AudioOutputConfiguration(struct soap *soap, tt__AudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioOutput::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioOutput::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioOutput::__anyAttribute); -} - -void tt__AudioOutput::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioOutput::__any); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__AudioOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioOutput(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioOutput(struct soap *soap, const char *tag, int id, const tt__AudioOutput *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioOutput*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioOutput), type ? type : "tt:AudioOutput")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioOutput::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioOutput::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioOutput(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioOutput * SOAP_FMAC4 soap_in_tt__AudioOutput(struct soap *soap, const char *tag, tt__AudioOutput *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioOutput, sizeof(tt__AudioOutput), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioOutput) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioOutput *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioOutput*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioOutput::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AudioOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioOutput, SOAP_TYPE_tt__AudioOutput, sizeof(tt__AudioOutput), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioOutput * SOAP_FMAC2 soap_instantiate_tt__AudioOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioOutput *p; - size_t k = sizeof(tt__AudioOutput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioOutput, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioOutput); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioOutput, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioOutput location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioOutput::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioOutput(soap, tag ? tag : "tt:AudioOutput", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioOutput::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioOutput(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioOutput * SOAP_FMAC4 soap_get_tt__AudioOutput(struct soap *soap, tt__AudioOutput *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioOutput(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoDecoderConfigurationOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoDecoderConfigurationOptionsExtension::__any); -} - -void tt__VideoDecoderConfigurationOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoDecoderConfigurationOptionsExtension::__any); -#endif -} - -int tt__VideoDecoderConfigurationOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoDecoderConfigurationOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, const char *tag, int id, const tt__VideoDecoderConfigurationOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoDecoderConfigurationOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoDecoderConfigurationOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoDecoderConfigurationOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, const char *tag, tt__VideoDecoderConfigurationOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoDecoderConfigurationOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension, sizeof(tt__VideoDecoderConfigurationOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoDecoderConfigurationOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoDecoderConfigurationOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoDecoderConfigurationOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension, SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension, sizeof(tt__VideoDecoderConfigurationOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoDecoderConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoDecoderConfigurationOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoDecoderConfigurationOptionsExtension *p; - size_t k = sizeof(tt__VideoDecoderConfigurationOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoDecoderConfigurationOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoDecoderConfigurationOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoDecoderConfigurationOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoDecoderConfigurationOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoDecoderConfigurationOptionsExtension(soap, tag ? tag : "tt:VideoDecoderConfigurationOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoDecoderConfigurationOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoDecoderConfigurationOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, tt__VideoDecoderConfigurationOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoDecoderConfigurationOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Mpeg4DecOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__Mpeg4DecOptions::ResolutionsAvailable); - soap_default_std__vectorTemplateOftt__Mpeg4Profile(soap, &this->tt__Mpeg4DecOptions::SupportedMpeg4Profiles); - this->tt__Mpeg4DecOptions::SupportedInputBitrate = NULL; - this->tt__Mpeg4DecOptions::SupportedFrameRate = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Mpeg4DecOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Mpeg4DecOptions::__anyAttribute); -} - -void tt__Mpeg4DecOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__Mpeg4DecOptions::ResolutionsAvailable); - soap_serialize_std__vectorTemplateOftt__Mpeg4Profile(soap, &this->tt__Mpeg4DecOptions::SupportedMpeg4Profiles); - soap_serialize_PointerTott__IntRange(soap, &this->tt__Mpeg4DecOptions::SupportedInputBitrate); - soap_serialize_PointerTott__IntRange(soap, &this->tt__Mpeg4DecOptions::SupportedFrameRate); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Mpeg4DecOptions::__any); -#endif -} - -int tt__Mpeg4DecOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Mpeg4DecOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4DecOptions(struct soap *soap, const char *tag, int id, const tt__Mpeg4DecOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Mpeg4DecOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Mpeg4DecOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__Mpeg4DecOptions::ResolutionsAvailable, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__Mpeg4Profile(soap, "tt:SupportedMpeg4Profiles", -1, &a->tt__Mpeg4DecOptions::SupportedMpeg4Profiles, "")) - return soap->error; - if (!a->tt__Mpeg4DecOptions::SupportedInputBitrate) - { if (soap_element_empty(soap, "tt:SupportedInputBitrate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:SupportedInputBitrate", -1, &a->tt__Mpeg4DecOptions::SupportedInputBitrate, "")) - return soap->error; - if (!a->tt__Mpeg4DecOptions::SupportedFrameRate) - { if (soap_element_empty(soap, "tt:SupportedFrameRate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:SupportedFrameRate", -1, &a->tt__Mpeg4DecOptions::SupportedFrameRate, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Mpeg4DecOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Mpeg4DecOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Mpeg4DecOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Mpeg4DecOptions * SOAP_FMAC4 soap_in_tt__Mpeg4DecOptions(struct soap *soap, const char *tag, tt__Mpeg4DecOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Mpeg4DecOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Mpeg4DecOptions, sizeof(tt__Mpeg4DecOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Mpeg4DecOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Mpeg4DecOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Mpeg4DecOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SupportedInputBitrate1 = 1; - size_t soap_flag_SupportedFrameRate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__Mpeg4DecOptions::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__Mpeg4Profile(soap, "tt:SupportedMpeg4Profiles", &a->tt__Mpeg4DecOptions::SupportedMpeg4Profiles, "tt:Mpeg4Profile")) - continue; - } - if (soap_flag_SupportedInputBitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:SupportedInputBitrate", &a->tt__Mpeg4DecOptions::SupportedInputBitrate, "tt:IntRange")) - { soap_flag_SupportedInputBitrate1--; - continue; - } - } - if (soap_flag_SupportedFrameRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:SupportedFrameRate", &a->tt__Mpeg4DecOptions::SupportedFrameRate, "tt:IntRange")) - { soap_flag_SupportedFrameRate1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Mpeg4DecOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__Mpeg4DecOptions::ResolutionsAvailable.size() < 1 || a->tt__Mpeg4DecOptions::SupportedMpeg4Profiles.size() < 1 || !a->tt__Mpeg4DecOptions::SupportedInputBitrate || !a->tt__Mpeg4DecOptions::SupportedFrameRate)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Mpeg4DecOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Mpeg4DecOptions, SOAP_TYPE_tt__Mpeg4DecOptions, sizeof(tt__Mpeg4DecOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Mpeg4DecOptions * SOAP_FMAC2 soap_instantiate_tt__Mpeg4DecOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Mpeg4DecOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Mpeg4DecOptions *p; - size_t k = sizeof(tt__Mpeg4DecOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Mpeg4DecOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Mpeg4DecOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Mpeg4DecOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Mpeg4DecOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Mpeg4DecOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Mpeg4DecOptions(soap, tag ? tag : "tt:Mpeg4DecOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Mpeg4DecOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Mpeg4DecOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Mpeg4DecOptions * SOAP_FMAC4 soap_get_tt__Mpeg4DecOptions(struct soap *soap, tt__Mpeg4DecOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Mpeg4DecOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__JpegDecOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__JpegDecOptions::ResolutionsAvailable); - this->tt__JpegDecOptions::SupportedInputBitrate = NULL; - this->tt__JpegDecOptions::SupportedFrameRate = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__JpegDecOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__JpegDecOptions::__anyAttribute); -} - -void tt__JpegDecOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__JpegDecOptions::ResolutionsAvailable); - soap_serialize_PointerTott__IntRange(soap, &this->tt__JpegDecOptions::SupportedInputBitrate); - soap_serialize_PointerTott__IntRange(soap, &this->tt__JpegDecOptions::SupportedFrameRate); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__JpegDecOptions::__any); -#endif -} - -int tt__JpegDecOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__JpegDecOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JpegDecOptions(struct soap *soap, const char *tag, int id, const tt__JpegDecOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__JpegDecOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__JpegDecOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__JpegDecOptions::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__JpegDecOptions::SupportedInputBitrate) - { if (soap_element_empty(soap, "tt:SupportedInputBitrate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:SupportedInputBitrate", -1, &a->tt__JpegDecOptions::SupportedInputBitrate, "")) - return soap->error; - if (!a->tt__JpegDecOptions::SupportedFrameRate) - { if (soap_element_empty(soap, "tt:SupportedFrameRate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:SupportedFrameRate", -1, &a->tt__JpegDecOptions::SupportedFrameRate, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__JpegDecOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__JpegDecOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__JpegDecOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__JpegDecOptions * SOAP_FMAC4 soap_in_tt__JpegDecOptions(struct soap *soap, const char *tag, tt__JpegDecOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__JpegDecOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__JpegDecOptions, sizeof(tt__JpegDecOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__JpegDecOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__JpegDecOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__JpegDecOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SupportedInputBitrate1 = 1; - size_t soap_flag_SupportedFrameRate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__JpegDecOptions::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap_flag_SupportedInputBitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:SupportedInputBitrate", &a->tt__JpegDecOptions::SupportedInputBitrate, "tt:IntRange")) - { soap_flag_SupportedInputBitrate1--; - continue; - } - } - if (soap_flag_SupportedFrameRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:SupportedFrameRate", &a->tt__JpegDecOptions::SupportedFrameRate, "tt:IntRange")) - { soap_flag_SupportedFrameRate1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__JpegDecOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__JpegDecOptions::ResolutionsAvailable.size() < 1 || !a->tt__JpegDecOptions::SupportedInputBitrate || !a->tt__JpegDecOptions::SupportedFrameRate)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__JpegDecOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__JpegDecOptions, SOAP_TYPE_tt__JpegDecOptions, sizeof(tt__JpegDecOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__JpegDecOptions * SOAP_FMAC2 soap_instantiate_tt__JpegDecOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__JpegDecOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__JpegDecOptions *p; - size_t k = sizeof(tt__JpegDecOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__JpegDecOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__JpegDecOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__JpegDecOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__JpegDecOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__JpegDecOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__JpegDecOptions(soap, tag ? tag : "tt:JpegDecOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__JpegDecOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__JpegDecOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__JpegDecOptions * SOAP_FMAC4 soap_get_tt__JpegDecOptions(struct soap *soap, tt__JpegDecOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__JpegDecOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__H264DecOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__H264DecOptions::ResolutionsAvailable); - soap_default_std__vectorTemplateOftt__H264Profile(soap, &this->tt__H264DecOptions::SupportedH264Profiles); - this->tt__H264DecOptions::SupportedInputBitrate = NULL; - this->tt__H264DecOptions::SupportedFrameRate = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__H264DecOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__H264DecOptions::__anyAttribute); -} - -void tt__H264DecOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__H264DecOptions::ResolutionsAvailable); - soap_serialize_std__vectorTemplateOftt__H264Profile(soap, &this->tt__H264DecOptions::SupportedH264Profiles); - soap_serialize_PointerTott__IntRange(soap, &this->tt__H264DecOptions::SupportedInputBitrate); - soap_serialize_PointerTott__IntRange(soap, &this->tt__H264DecOptions::SupportedFrameRate); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__H264DecOptions::__any); -#endif -} - -int tt__H264DecOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__H264DecOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264DecOptions(struct soap *soap, const char *tag, int id, const tt__H264DecOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__H264DecOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__H264DecOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__H264DecOptions::ResolutionsAvailable, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__H264Profile(soap, "tt:SupportedH264Profiles", -1, &a->tt__H264DecOptions::SupportedH264Profiles, "")) - return soap->error; - if (!a->tt__H264DecOptions::SupportedInputBitrate) - { if (soap_element_empty(soap, "tt:SupportedInputBitrate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:SupportedInputBitrate", -1, &a->tt__H264DecOptions::SupportedInputBitrate, "")) - return soap->error; - if (!a->tt__H264DecOptions::SupportedFrameRate) - { if (soap_element_empty(soap, "tt:SupportedFrameRate", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:SupportedFrameRate", -1, &a->tt__H264DecOptions::SupportedFrameRate, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__H264DecOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__H264DecOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__H264DecOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__H264DecOptions * SOAP_FMAC4 soap_in_tt__H264DecOptions(struct soap *soap, const char *tag, tt__H264DecOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__H264DecOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__H264DecOptions, sizeof(tt__H264DecOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__H264DecOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__H264DecOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__H264DecOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SupportedInputBitrate1 = 1; - size_t soap_flag_SupportedFrameRate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__H264DecOptions::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__H264Profile(soap, "tt:SupportedH264Profiles", &a->tt__H264DecOptions::SupportedH264Profiles, "tt:H264Profile")) - continue; - } - if (soap_flag_SupportedInputBitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:SupportedInputBitrate", &a->tt__H264DecOptions::SupportedInputBitrate, "tt:IntRange")) - { soap_flag_SupportedInputBitrate1--; - continue; - } - } - if (soap_flag_SupportedFrameRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:SupportedFrameRate", &a->tt__H264DecOptions::SupportedFrameRate, "tt:IntRange")) - { soap_flag_SupportedFrameRate1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__H264DecOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__H264DecOptions::ResolutionsAvailable.size() < 1 || a->tt__H264DecOptions::SupportedH264Profiles.size() < 1 || !a->tt__H264DecOptions::SupportedInputBitrate || !a->tt__H264DecOptions::SupportedFrameRate)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__H264DecOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__H264DecOptions, SOAP_TYPE_tt__H264DecOptions, sizeof(tt__H264DecOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__H264DecOptions * SOAP_FMAC2 soap_instantiate_tt__H264DecOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__H264DecOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__H264DecOptions *p; - size_t k = sizeof(tt__H264DecOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__H264DecOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__H264DecOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__H264DecOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__H264DecOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__H264DecOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__H264DecOptions(soap, tag ? tag : "tt:H264DecOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__H264DecOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__H264DecOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__H264DecOptions * SOAP_FMAC4 soap_get_tt__H264DecOptions(struct soap *soap, tt__H264DecOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__H264DecOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoDecoderConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__VideoDecoderConfigurationOptions::JpegDecOptions = NULL; - this->tt__VideoDecoderConfigurationOptions::H264DecOptions = NULL; - this->tt__VideoDecoderConfigurationOptions::Mpeg4DecOptions = NULL; - this->tt__VideoDecoderConfigurationOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoDecoderConfigurationOptions::__anyAttribute); -} - -void tt__VideoDecoderConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__JpegDecOptions(soap, &this->tt__VideoDecoderConfigurationOptions::JpegDecOptions); - soap_serialize_PointerTott__H264DecOptions(soap, &this->tt__VideoDecoderConfigurationOptions::H264DecOptions); - soap_serialize_PointerTott__Mpeg4DecOptions(soap, &this->tt__VideoDecoderConfigurationOptions::Mpeg4DecOptions); - soap_serialize_PointerTott__VideoDecoderConfigurationOptionsExtension(soap, &this->tt__VideoDecoderConfigurationOptions::Extension); -#endif -} - -int tt__VideoDecoderConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoDecoderConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoDecoderConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__VideoDecoderConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoDecoderConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoDecoderConfigurationOptions), type)) - return soap->error; - if (soap_out_PointerTott__JpegDecOptions(soap, "tt:JpegDecOptions", -1, &a->tt__VideoDecoderConfigurationOptions::JpegDecOptions, "")) - return soap->error; - if (soap_out_PointerTott__H264DecOptions(soap, "tt:H264DecOptions", -1, &a->tt__VideoDecoderConfigurationOptions::H264DecOptions, "")) - return soap->error; - if (soap_out_PointerTott__Mpeg4DecOptions(soap, "tt:Mpeg4DecOptions", -1, &a->tt__VideoDecoderConfigurationOptions::Mpeg4DecOptions, "")) - return soap->error; - if (soap_out_PointerTott__VideoDecoderConfigurationOptionsExtension(soap, "tt:Extension", -1, &a->tt__VideoDecoderConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoDecoderConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoDecoderConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoDecoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoDecoderConfigurationOptions(struct soap *soap, const char *tag, tt__VideoDecoderConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoDecoderConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoDecoderConfigurationOptions, sizeof(tt__VideoDecoderConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoDecoderConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoDecoderConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoDecoderConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_JpegDecOptions1 = 1; - size_t soap_flag_H264DecOptions1 = 1; - size_t soap_flag_Mpeg4DecOptions1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JpegDecOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__JpegDecOptions(soap, "tt:JpegDecOptions", &a->tt__VideoDecoderConfigurationOptions::JpegDecOptions, "tt:JpegDecOptions")) - { soap_flag_JpegDecOptions1--; - continue; - } - } - if (soap_flag_H264DecOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__H264DecOptions(soap, "tt:H264DecOptions", &a->tt__VideoDecoderConfigurationOptions::H264DecOptions, "tt:H264DecOptions")) - { soap_flag_H264DecOptions1--; - continue; - } - } - if (soap_flag_Mpeg4DecOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Mpeg4DecOptions(soap, "tt:Mpeg4DecOptions", &a->tt__VideoDecoderConfigurationOptions::Mpeg4DecOptions, "tt:Mpeg4DecOptions")) - { soap_flag_Mpeg4DecOptions1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoDecoderConfigurationOptionsExtension(soap, "tt:Extension", &a->tt__VideoDecoderConfigurationOptions::Extension, "tt:VideoDecoderConfigurationOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoDecoderConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoDecoderConfigurationOptions, SOAP_TYPE_tt__VideoDecoderConfigurationOptions, sizeof(tt__VideoDecoderConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoDecoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoDecoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoDecoderConfigurationOptions *p; - size_t k = sizeof(tt__VideoDecoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoDecoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoDecoderConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoDecoderConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoDecoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoDecoderConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoDecoderConfigurationOptions(soap, tag ? tag : "tt:VideoDecoderConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoDecoderConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoDecoderConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoDecoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoDecoderConfigurationOptions(struct soap *soap, tt__VideoDecoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoDecoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoOutputConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoOutputConfigurationOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__VideoOutputConfigurationOptions::__anyAttribute); -} - -void tt__VideoOutputConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoOutputConfigurationOptions::__any); -#endif -} - -int tt__VideoOutputConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoOutputConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__VideoOutputConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoOutputConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoOutputConfigurationOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoOutputConfigurationOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoOutputConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoOutputConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoOutputConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoOutputConfigurationOptions(struct soap *soap, const char *tag, tt__VideoOutputConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoOutputConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoOutputConfigurationOptions, sizeof(tt__VideoOutputConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoOutputConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoOutputConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoOutputConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoOutputConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoOutputConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoOutputConfigurationOptions, SOAP_TYPE_tt__VideoOutputConfigurationOptions, sizeof(tt__VideoOutputConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoOutputConfigurationOptions *p; - size_t k = sizeof(tt__VideoOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoOutputConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoOutputConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoOutputConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoOutputConfigurationOptions(soap, tag ? tag : "tt:VideoOutputConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoOutputConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoOutputConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoOutputConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoOutputConfigurationOptions(struct soap *soap, tt__VideoOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoOutputConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__ReferenceToken(soap, &this->tt__VideoOutputConfiguration::OutputToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoOutputConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__VideoOutputConfiguration::__anyAttribute); -} - -void tt__VideoOutputConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoOutputConfiguration::OutputToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__VideoOutputConfiguration::OutputToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoOutputConfiguration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__VideoOutputConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoOutputConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutputConfiguration(struct soap *soap, const char *tag, int id, const tt__VideoOutputConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoOutputConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoOutputConfiguration), type ? type : "tt:VideoOutputConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:OutputToken", -1, &a->tt__VideoOutputConfiguration::OutputToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoOutputConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoOutputConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoOutputConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoOutputConfiguration * SOAP_FMAC4 soap_in_tt__VideoOutputConfiguration(struct soap *soap, const char *tag, tt__VideoOutputConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoOutputConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoOutputConfiguration, sizeof(tt__VideoOutputConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoOutputConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoOutputConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoOutputConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_OutputToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_OutputToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:OutputToken", &a->tt__VideoOutputConfiguration::OutputToken, "tt:ReferenceToken")) - { soap_flag_OutputToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoOutputConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_OutputToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoOutputConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoOutputConfiguration, SOAP_TYPE_tt__VideoOutputConfiguration, sizeof(tt__VideoOutputConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoOutputConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoOutputConfiguration *p; - size_t k = sizeof(tt__VideoOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoOutputConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoOutputConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoOutputConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoOutputConfiguration(soap, tag ? tag : "tt:VideoOutputConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoOutputConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoOutputConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoOutputConfiguration * SOAP_FMAC4 soap_get_tt__VideoOutputConfiguration(struct soap *soap, tt__VideoOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoOutputExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoOutputExtension::__any); -} - -void tt__VideoOutputExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoOutputExtension::__any); -#endif -} - -int tt__VideoOutputExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoOutputExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutputExtension(struct soap *soap, const char *tag, int id, const tt__VideoOutputExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoOutputExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoOutputExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoOutputExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoOutputExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoOutputExtension * SOAP_FMAC4 soap_in_tt__VideoOutputExtension(struct soap *soap, const char *tag, tt__VideoOutputExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoOutputExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoOutputExtension, sizeof(tt__VideoOutputExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoOutputExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoOutputExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoOutputExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoOutputExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoOutputExtension, SOAP_TYPE_tt__VideoOutputExtension, sizeof(tt__VideoOutputExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoOutputExtension * SOAP_FMAC2 soap_instantiate_tt__VideoOutputExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoOutputExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoOutputExtension *p; - size_t k = sizeof(tt__VideoOutputExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoOutputExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoOutputExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoOutputExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoOutputExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoOutputExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoOutputExtension(soap, tag ? tag : "tt:VideoOutputExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoOutputExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoOutputExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoOutputExtension * SOAP_FMAC4 soap_get_tt__VideoOutputExtension(struct soap *soap, tt__VideoOutputExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoOutputExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoOutput::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - this->tt__VideoOutput::Layout = NULL; - this->tt__VideoOutput::Resolution = NULL; - this->tt__VideoOutput::RefreshRate = NULL; - this->tt__VideoOutput::AspectRatio = NULL; - this->tt__VideoOutput::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoOutput::__anyAttribute); -} - -void tt__VideoOutput::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Layout(soap, &this->tt__VideoOutput::Layout); - soap_serialize_PointerTott__VideoResolution(soap, &this->tt__VideoOutput::Resolution); - soap_serialize_PointerTofloat(soap, &this->tt__VideoOutput::RefreshRate); - soap_serialize_PointerTofloat(soap, &this->tt__VideoOutput::AspectRatio); - soap_serialize_PointerTott__VideoOutputExtension(soap, &this->tt__VideoOutput::Extension); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__VideoOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoOutput(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutput(struct soap *soap, const char *tag, int id, const tt__VideoOutput *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoOutput*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoOutput), type ? type : "tt:VideoOutput")) - return soap->error; - if (!a->tt__VideoOutput::Layout) - { if (soap_element_empty(soap, "tt:Layout", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__Layout(soap, "tt:Layout", -1, &a->tt__VideoOutput::Layout, "")) - return soap->error; - if (soap_out_PointerTott__VideoResolution(soap, "tt:Resolution", -1, &a->tt__VideoOutput::Resolution, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:RefreshRate", -1, &a->tt__VideoOutput::RefreshRate, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:AspectRatio", -1, &a->tt__VideoOutput::AspectRatio, "")) - return soap->error; - if (soap_out_PointerTott__VideoOutputExtension(soap, "tt:Extension", -1, &a->tt__VideoOutput::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoOutput::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoOutput(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoOutput * SOAP_FMAC4 soap_in_tt__VideoOutput(struct soap *soap, const char *tag, tt__VideoOutput *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoOutput, sizeof(tt__VideoOutput), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoOutput) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoOutput *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoOutput*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Layout1 = 1; - size_t soap_flag_Resolution1 = 1; - size_t soap_flag_RefreshRate1 = 1; - size_t soap_flag_AspectRatio1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Layout1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Layout(soap, "tt:Layout", &a->tt__VideoOutput::Layout, "tt:Layout")) - { soap_flag_Layout1--; - continue; - } - } - if (soap_flag_Resolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoResolution(soap, "tt:Resolution", &a->tt__VideoOutput::Resolution, "tt:VideoResolution")) - { soap_flag_Resolution1--; - continue; - } - } - if (soap_flag_RefreshRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:RefreshRate", &a->tt__VideoOutput::RefreshRate, "xsd:float")) - { soap_flag_RefreshRate1--; - continue; - } - } - if (soap_flag_AspectRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:AspectRatio", &a->tt__VideoOutput::AspectRatio, "xsd:float")) - { soap_flag_AspectRatio1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoOutputExtension(soap, "tt:Extension", &a->tt__VideoOutput::Extension, "tt:VideoOutputExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__VideoOutput::Layout)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoOutput, SOAP_TYPE_tt__VideoOutput, sizeof(tt__VideoOutput), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoOutput * SOAP_FMAC2 soap_instantiate_tt__VideoOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoOutput *p; - size_t k = sizeof(tt__VideoOutput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoOutput, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoOutput); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoOutput, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoOutput location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoOutput::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoOutput(soap, tag ? tag : "tt:VideoOutput", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoOutput::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoOutput(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoOutput * SOAP_FMAC4 soap_get_tt__VideoOutput(struct soap *soap, tt__VideoOutput *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoOutput(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZStatusFilterOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZStatusFilterOptionsExtension::__any); -} - -void tt__PTZStatusFilterOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZStatusFilterOptionsExtension::__any); -#endif -} - -int tt__PTZStatusFilterOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZStatusFilterOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZStatusFilterOptionsExtension(struct soap *soap, const char *tag, int id, const tt__PTZStatusFilterOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZStatusFilterOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZStatusFilterOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZStatusFilterOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZStatusFilterOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZStatusFilterOptionsExtension * SOAP_FMAC4 soap_in_tt__PTZStatusFilterOptionsExtension(struct soap *soap, const char *tag, tt__PTZStatusFilterOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZStatusFilterOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZStatusFilterOptionsExtension, sizeof(tt__PTZStatusFilterOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZStatusFilterOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZStatusFilterOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZStatusFilterOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZStatusFilterOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZStatusFilterOptionsExtension, SOAP_TYPE_tt__PTZStatusFilterOptionsExtension, sizeof(tt__PTZStatusFilterOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZStatusFilterOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTZStatusFilterOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZStatusFilterOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZStatusFilterOptionsExtension *p; - size_t k = sizeof(tt__PTZStatusFilterOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZStatusFilterOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZStatusFilterOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZStatusFilterOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZStatusFilterOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZStatusFilterOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZStatusFilterOptionsExtension(soap, tag ? tag : "tt:PTZStatusFilterOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZStatusFilterOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZStatusFilterOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZStatusFilterOptionsExtension * SOAP_FMAC4 soap_get_tt__PTZStatusFilterOptionsExtension(struct soap *soap, tt__PTZStatusFilterOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZStatusFilterOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZStatusFilterOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__PTZStatusFilterOptions::PanTiltStatusSupported); - soap_default_bool(soap, &this->tt__PTZStatusFilterOptions::ZoomStatusSupported); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZStatusFilterOptions::__any); - this->tt__PTZStatusFilterOptions::PanTiltPositionSupported = NULL; - this->tt__PTZStatusFilterOptions::ZoomPositionSupported = NULL; - this->tt__PTZStatusFilterOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__PTZStatusFilterOptions::__anyAttribute); -} - -void tt__PTZStatusFilterOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PTZStatusFilterOptions::PanTiltStatusSupported, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__PTZStatusFilterOptions::ZoomStatusSupported, SOAP_TYPE_bool); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZStatusFilterOptions::__any); - soap_serialize_PointerTobool(soap, &this->tt__PTZStatusFilterOptions::PanTiltPositionSupported); - soap_serialize_PointerTobool(soap, &this->tt__PTZStatusFilterOptions::ZoomPositionSupported); - soap_serialize_PointerTott__PTZStatusFilterOptionsExtension(soap, &this->tt__PTZStatusFilterOptions::Extension); -#endif -} - -int tt__PTZStatusFilterOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZStatusFilterOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZStatusFilterOptions(struct soap *soap, const char *tag, int id, const tt__PTZStatusFilterOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZStatusFilterOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZStatusFilterOptions), type)) - return soap->error; - if (soap_out_bool(soap, "tt:PanTiltStatusSupported", -1, &a->tt__PTZStatusFilterOptions::PanTiltStatusSupported, "")) - return soap->error; - if (soap_out_bool(soap, "tt:ZoomStatusSupported", -1, &a->tt__PTZStatusFilterOptions::ZoomStatusSupported, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZStatusFilterOptions::__any, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:PanTiltPositionSupported", -1, &a->tt__PTZStatusFilterOptions::PanTiltPositionSupported, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:ZoomPositionSupported", -1, &a->tt__PTZStatusFilterOptions::ZoomPositionSupported, "")) - return soap->error; - if (soap_out_PointerTott__PTZStatusFilterOptionsExtension(soap, "tt:Extension", -1, &a->tt__PTZStatusFilterOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZStatusFilterOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZStatusFilterOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZStatusFilterOptions * SOAP_FMAC4 soap_in_tt__PTZStatusFilterOptions(struct soap *soap, const char *tag, tt__PTZStatusFilterOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZStatusFilterOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZStatusFilterOptions, sizeof(tt__PTZStatusFilterOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZStatusFilterOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZStatusFilterOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZStatusFilterOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PanTiltStatusSupported1 = 1; - size_t soap_flag_ZoomStatusSupported1 = 1; - size_t soap_flag_PanTiltPositionSupported1 = 1; - size_t soap_flag_ZoomPositionSupported1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PanTiltStatusSupported1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:PanTiltStatusSupported", &a->tt__PTZStatusFilterOptions::PanTiltStatusSupported, "xsd:boolean")) - { soap_flag_PanTiltStatusSupported1--; - continue; - } - } - if (soap_flag_ZoomStatusSupported1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:ZoomStatusSupported", &a->tt__PTZStatusFilterOptions::ZoomStatusSupported, "xsd:boolean")) - { soap_flag_ZoomStatusSupported1--; - continue; - } - } - if (soap_flag_PanTiltPositionSupported1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:PanTiltPositionSupported", &a->tt__PTZStatusFilterOptions::PanTiltPositionSupported, "xsd:boolean")) - { soap_flag_PanTiltPositionSupported1--; - continue; - } - } - if (soap_flag_ZoomPositionSupported1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:ZoomPositionSupported", &a->tt__PTZStatusFilterOptions::ZoomPositionSupported, "xsd:boolean")) - { soap_flag_ZoomPositionSupported1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZStatusFilterOptionsExtension(soap, "tt:Extension", &a->tt__PTZStatusFilterOptions::Extension, "tt:PTZStatusFilterOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZStatusFilterOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_PanTiltStatusSupported1 > 0 || soap_flag_ZoomStatusSupported1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZStatusFilterOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZStatusFilterOptions, SOAP_TYPE_tt__PTZStatusFilterOptions, sizeof(tt__PTZStatusFilterOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZStatusFilterOptions * SOAP_FMAC2 soap_instantiate_tt__PTZStatusFilterOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZStatusFilterOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZStatusFilterOptions *p; - size_t k = sizeof(tt__PTZStatusFilterOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZStatusFilterOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZStatusFilterOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZStatusFilterOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZStatusFilterOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZStatusFilterOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZStatusFilterOptions(soap, tag ? tag : "tt:PTZStatusFilterOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZStatusFilterOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZStatusFilterOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZStatusFilterOptions * SOAP_FMAC4 soap_get_tt__PTZStatusFilterOptions(struct soap *soap, tt__PTZStatusFilterOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZStatusFilterOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataConfigurationOptionsExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfigurationOptionsExtension2::__any); -} - -void tt__MetadataConfigurationOptionsExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfigurationOptionsExtension2::__any); -#endif -} - -int tt__MetadataConfigurationOptionsExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataConfigurationOptionsExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, const char *tag, int id, const tt__MetadataConfigurationOptionsExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MetadataConfigurationOptionsExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataConfigurationOptionsExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataConfigurationOptionsExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension2 * SOAP_FMAC4 soap_in_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, const char *tag, tt__MetadataConfigurationOptionsExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataConfigurationOptionsExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2, sizeof(tt__MetadataConfigurationOptionsExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataConfigurationOptionsExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MetadataConfigurationOptionsExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MetadataConfigurationOptionsExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2, sizeof(tt__MetadataConfigurationOptionsExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataConfigurationOptionsExtension2 * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataConfigurationOptionsExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataConfigurationOptionsExtension2 *p; - size_t k = sizeof(tt__MetadataConfigurationOptionsExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataConfigurationOptionsExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataConfigurationOptionsExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataConfigurationOptionsExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataConfigurationOptionsExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataConfigurationOptionsExtension2(soap, tag ? tag : "tt:MetadataConfigurationOptionsExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataConfigurationOptionsExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataConfigurationOptionsExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension2 * SOAP_FMAC4 soap_get_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, tt__MetadataConfigurationOptionsExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataConfigurationOptionsExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataConfigurationOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfstd__string(soap, &this->tt__MetadataConfigurationOptionsExtension::CompressionType); - this->tt__MetadataConfigurationOptionsExtension::Extension = NULL; -} - -void tt__MetadataConfigurationOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->tt__MetadataConfigurationOptionsExtension::CompressionType); - soap_serialize_PointerTott__MetadataConfigurationOptionsExtension2(soap, &this->tt__MetadataConfigurationOptionsExtension::Extension); -#endif -} - -int tt__MetadataConfigurationOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataConfigurationOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationOptionsExtension(struct soap *soap, const char *tag, int id, const tt__MetadataConfigurationOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "tt:CompressionType", -1, &a->tt__MetadataConfigurationOptionsExtension::CompressionType, "")) - return soap->error; - if (soap_out_PointerTott__MetadataConfigurationOptionsExtension2(soap, "tt:Extension", -1, &a->tt__MetadataConfigurationOptionsExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataConfigurationOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataConfigurationOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__MetadataConfigurationOptionsExtension(struct soap *soap, const char *tag, tt__MetadataConfigurationOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataConfigurationOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension, sizeof(tt__MetadataConfigurationOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataConfigurationOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataConfigurationOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "tt:CompressionType", &a->tt__MetadataConfigurationOptionsExtension::CompressionType, "xsd:string")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataConfigurationOptionsExtension2(soap, "tt:Extension", &a->tt__MetadataConfigurationOptionsExtension::Extension, "tt:MetadataConfigurationOptionsExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MetadataConfigurationOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension, sizeof(tt__MetadataConfigurationOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataConfigurationOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataConfigurationOptionsExtension *p; - size_t k = sizeof(tt__MetadataConfigurationOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataConfigurationOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataConfigurationOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataConfigurationOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataConfigurationOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataConfigurationOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataConfigurationOptionsExtension(soap, tag ? tag : "tt:MetadataConfigurationOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataConfigurationOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataConfigurationOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__MetadataConfigurationOptionsExtension(struct soap *soap, tt__MetadataConfigurationOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataConfigurationOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__MetadataConfigurationOptions::PTZStatusFilterOptions = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfigurationOptions::__any); - this->tt__MetadataConfigurationOptions::Extension = NULL; - this->tt__MetadataConfigurationOptions::GeoLocation = NULL; - this->tt__MetadataConfigurationOptions::MaxContentFilterSize = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MetadataConfigurationOptions::__anyAttribute); -} - -void tt__MetadataConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZStatusFilterOptions(soap, &this->tt__MetadataConfigurationOptions::PTZStatusFilterOptions); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfigurationOptions::__any); - soap_serialize_PointerTott__MetadataConfigurationOptionsExtension(soap, &this->tt__MetadataConfigurationOptions::Extension); -#endif -} - -int tt__MetadataConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__MetadataConfigurationOptions *a, const char *type) -{ - if (((tt__MetadataConfigurationOptions*)a)->GeoLocation) - { soap_set_attr(soap, "GeoLocation", soap_bool2s(soap, *((tt__MetadataConfigurationOptions*)a)->GeoLocation), 1); - } - if (((tt__MetadataConfigurationOptions*)a)->MaxContentFilterSize) - { soap_set_attr(soap, "MaxContentFilterSize", soap_int2s(soap, *((tt__MetadataConfigurationOptions*)a)->MaxContentFilterSize), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MetadataConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataConfigurationOptions), type)) - return soap->error; - if (!a->tt__MetadataConfigurationOptions::PTZStatusFilterOptions) - { if (soap_element_empty(soap, "tt:PTZStatusFilterOptions", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__PTZStatusFilterOptions(soap, "tt:PTZStatusFilterOptions", -1, &a->tt__MetadataConfigurationOptions::PTZStatusFilterOptions, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MetadataConfigurationOptions::__any, "")) - return soap->error; - if (soap_out_PointerTott__MetadataConfigurationOptionsExtension(soap, "tt:Extension", -1, &a->tt__MetadataConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationOptions * SOAP_FMAC4 soap_in_tt__MetadataConfigurationOptions(struct soap *soap, const char *tag, tt__MetadataConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataConfigurationOptions, sizeof(tt__MetadataConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "GeoLocation", 5, 0); - if (t) - { - if (!(((tt__MetadataConfigurationOptions*)a)->GeoLocation = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__MetadataConfigurationOptions*)a)->GeoLocation)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxContentFilterSize", 5, 0); - if (t) - { - if (!(((tt__MetadataConfigurationOptions*)a)->MaxContentFilterSize = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__MetadataConfigurationOptions*)a)->MaxContentFilterSize)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MetadataConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PTZStatusFilterOptions1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PTZStatusFilterOptions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZStatusFilterOptions(soap, "tt:PTZStatusFilterOptions", &a->tt__MetadataConfigurationOptions::PTZStatusFilterOptions, "tt:PTZStatusFilterOptions")) - { soap_flag_PTZStatusFilterOptions1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataConfigurationOptionsExtension(soap, "tt:Extension", &a->tt__MetadataConfigurationOptions::Extension, "tt:MetadataConfigurationOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MetadataConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__MetadataConfigurationOptions::PTZStatusFilterOptions)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MetadataConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataConfigurationOptions, SOAP_TYPE_tt__MetadataConfigurationOptions, sizeof(tt__MetadataConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataConfigurationOptions *p; - size_t k = sizeof(tt__MetadataConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataConfigurationOptions(soap, tag ? tag : "tt:MetadataConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationOptions * SOAP_FMAC4 soap_get_tt__MetadataConfigurationOptions(struct soap *soap, tt__MetadataConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__EventSubscription::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__EventSubscription::Filter = NULL; - this->tt__EventSubscription::SubscriptionPolicy = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EventSubscription::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__EventSubscription::__anyAttribute); -} - -void tt__EventSubscription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsnt__FilterType(soap, &this->tt__EventSubscription::Filter); - soap_serialize_PointerTo_tt__EventSubscription_SubscriptionPolicy(soap, &this->tt__EventSubscription::SubscriptionPolicy); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__EventSubscription::__any); -#endif -} - -int tt__EventSubscription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__EventSubscription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EventSubscription(struct soap *soap, const char *tag, int id, const tt__EventSubscription *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__EventSubscription*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__EventSubscription), type)) - return soap->error; - if (soap_out_PointerTowsnt__FilterType(soap, "tt:Filter", -1, &a->tt__EventSubscription::Filter, "")) - return soap->error; - if (soap_out_PointerTo_tt__EventSubscription_SubscriptionPolicy(soap, "tt:SubscriptionPolicy", -1, &a->tt__EventSubscription::SubscriptionPolicy, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__EventSubscription::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__EventSubscription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__EventSubscription(soap, tag, this, type); -} - -SOAP_FMAC3 tt__EventSubscription * SOAP_FMAC4 soap_in_tt__EventSubscription(struct soap *soap, const char *tag, tt__EventSubscription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__EventSubscription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__EventSubscription, sizeof(tt__EventSubscription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__EventSubscription) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__EventSubscription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__EventSubscription*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Filter1 = 1; - size_t soap_flag_SubscriptionPolicy1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Filter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__FilterType(soap, "tt:Filter", &a->tt__EventSubscription::Filter, "wsnt:FilterType")) - { soap_flag_Filter1--; - continue; - } - } - if (soap_flag_SubscriptionPolicy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tt__EventSubscription_SubscriptionPolicy(soap, "tt:SubscriptionPolicy", &a->tt__EventSubscription::SubscriptionPolicy, "")) - { soap_flag_SubscriptionPolicy1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__EventSubscription::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__EventSubscription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__EventSubscription, SOAP_TYPE_tt__EventSubscription, sizeof(tt__EventSubscription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__EventSubscription * SOAP_FMAC2 soap_instantiate_tt__EventSubscription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__EventSubscription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__EventSubscription *p; - size_t k = sizeof(tt__EventSubscription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__EventSubscription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__EventSubscription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__EventSubscription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__EventSubscription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__EventSubscription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__EventSubscription(soap, tag ? tag : "tt:EventSubscription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__EventSubscription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__EventSubscription(soap, this, tag, type); -} - -SOAP_FMAC3 tt__EventSubscription * SOAP_FMAC4 soap_get_tt__EventSubscription(struct soap *soap, tt__EventSubscription *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__EventSubscription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZFilter::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->tt__PTZFilter::Status); - soap_default_bool(soap, &this->tt__PTZFilter::Position); - soap_default_xsd__anyAttribute(soap, &this->tt__PTZFilter::__anyAttribute); -} - -void tt__PTZFilter::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__PTZFilter::Status, SOAP_TYPE_bool); - soap_embedded(soap, &this->tt__PTZFilter::Position, SOAP_TYPE_bool); -#endif -} - -int tt__PTZFilter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZFilter(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZFilter(struct soap *soap, const char *tag, int id, const tt__PTZFilter *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZFilter*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZFilter), type)) - return soap->error; - if (soap_out_bool(soap, "tt:Status", -1, &a->tt__PTZFilter::Status, "")) - return soap->error; - if (soap_out_bool(soap, "tt:Position", -1, &a->tt__PTZFilter::Position, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZFilter::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZFilter(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZFilter * SOAP_FMAC4 soap_in_tt__PTZFilter(struct soap *soap, const char *tag, tt__PTZFilter *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZFilter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZFilter, sizeof(tt__PTZFilter), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZFilter) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZFilter *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZFilter*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Status1 = 1; - size_t soap_flag_Position1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Status1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Status", &a->tt__PTZFilter::Status, "xsd:boolean")) - { soap_flag_Status1--; - continue; - } - } - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "tt:Position", &a->tt__PTZFilter::Position, "xsd:boolean")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Status1 > 0 || soap_flag_Position1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZFilter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZFilter, SOAP_TYPE_tt__PTZFilter, sizeof(tt__PTZFilter), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZFilter * SOAP_FMAC2 soap_instantiate_tt__PTZFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZFilter *p; - size_t k = sizeof(tt__PTZFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZFilter); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZFilter, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZFilter::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZFilter(soap, tag ? tag : "tt:PTZFilter", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZFilter::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZFilter(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZFilter * SOAP_FMAC4 soap_get_tt__PTZFilter(struct soap *soap, tt__PTZFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfigurationExtension::__any); -} - -void tt__MetadataConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfigurationExtension::__any); -#endif -} - -int tt__MetadataConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__MetadataConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataConfigurationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MetadataConfigurationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationExtension * SOAP_FMAC4 soap_in_tt__MetadataConfigurationExtension(struct soap *soap, const char *tag, tt__MetadataConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataConfigurationExtension, sizeof(tt__MetadataConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MetadataConfigurationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__MetadataConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataConfigurationExtension, SOAP_TYPE_tt__MetadataConfigurationExtension, sizeof(tt__MetadataConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataConfigurationExtension *p; - size_t k = sizeof(tt__MetadataConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataConfigurationExtension(soap, tag ? tag : "tt:MetadataConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataConfigurationExtension * SOAP_FMAC4 soap_get_tt__MetadataConfigurationExtension(struct soap *soap, tt__MetadataConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__MetadataConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - this->tt__MetadataConfiguration::PTZStatus = NULL; - this->tt__MetadataConfiguration::Events = NULL; - this->tt__MetadataConfiguration::Analytics = NULL; - this->tt__MetadataConfiguration::Multicast = NULL; - soap_default_xsd__duration(soap, &this->tt__MetadataConfiguration::SessionTimeout); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfiguration::__any); - this->tt__MetadataConfiguration::AnalyticsEngineConfiguration = NULL; - this->tt__MetadataConfiguration::Extension = NULL; - this->tt__MetadataConfiguration::CompressionType = NULL; - this->tt__MetadataConfiguration::GeoLocation = NULL; - this->tt__MetadataConfiguration::ShapePolygon = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__MetadataConfiguration::__anyAttribute); -} - -void tt__MetadataConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZFilter(soap, &this->tt__MetadataConfiguration::PTZStatus); - soap_serialize_PointerTott__EventSubscription(soap, &this->tt__MetadataConfiguration::Events); - soap_serialize_PointerTobool(soap, &this->tt__MetadataConfiguration::Analytics); - soap_serialize_PointerTott__MulticastConfiguration(soap, &this->tt__MetadataConfiguration::Multicast); - soap_embedded(soap, &this->tt__MetadataConfiguration::SessionTimeout, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__MetadataConfiguration::SessionTimeout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__MetadataConfiguration::__any); - soap_serialize_PointerTott__AnalyticsEngineConfiguration(soap, &this->tt__MetadataConfiguration::AnalyticsEngineConfiguration); - soap_serialize_PointerTott__MetadataConfigurationExtension(soap, &this->tt__MetadataConfiguration::Extension); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__MetadataConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__MetadataConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfiguration(struct soap *soap, const char *tag, int id, const tt__MetadataConfiguration *a, const char *type) -{ - if (((tt__MetadataConfiguration*)a)->CompressionType) - { soap_set_attr(soap, "CompressionType", soap_std__string2s(soap, *((tt__MetadataConfiguration*)a)->CompressionType), 1); - } - if (((tt__MetadataConfiguration*)a)->GeoLocation) - { soap_set_attr(soap, "GeoLocation", soap_bool2s(soap, *((tt__MetadataConfiguration*)a)->GeoLocation), 1); - } - if (((tt__MetadataConfiguration*)a)->ShapePolygon) - { soap_set_attr(soap, "ShapePolygon", soap_bool2s(soap, *((tt__MetadataConfiguration*)a)->ShapePolygon), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__MetadataConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__MetadataConfiguration), type ? type : "tt:MetadataConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_PointerTott__PTZFilter(soap, "tt:PTZStatus", -1, &a->tt__MetadataConfiguration::PTZStatus, "")) - return soap->error; - if (soap_out_PointerTott__EventSubscription(soap, "tt:Events", -1, &a->tt__MetadataConfiguration::Events, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tt:Analytics", -1, &a->tt__MetadataConfiguration::Analytics, "")) - return soap->error; - if (!a->tt__MetadataConfiguration::Multicast) - { if (soap_element_empty(soap, "tt:Multicast", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MulticastConfiguration(soap, "tt:Multicast", -1, &a->tt__MetadataConfiguration::Multicast, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:SessionTimeout", -1, &a->tt__MetadataConfiguration::SessionTimeout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__MetadataConfiguration::__any, "")) - return soap->error; - if (soap_out_PointerTott__AnalyticsEngineConfiguration(soap, "tt:AnalyticsEngineConfiguration", -1, &a->tt__MetadataConfiguration::AnalyticsEngineConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__MetadataConfigurationExtension(soap, "tt:Extension", -1, &a->tt__MetadataConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__MetadataConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__MetadataConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__MetadataConfiguration * SOAP_FMAC4 soap_in_tt__MetadataConfiguration(struct soap *soap, const char *tag, tt__MetadataConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__MetadataConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__MetadataConfiguration, sizeof(tt__MetadataConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__MetadataConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__MetadataConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "CompressionType", 1, 0); - if (t) - { - if (!(((tt__MetadataConfiguration*)a)->CompressionType = soap_new_std__string(soap))) - return NULL; - if (soap_s2std__string(soap, t, ((tt__MetadataConfiguration*)a)->CompressionType)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GeoLocation", 5, 0); - if (t) - { - if (!(((tt__MetadataConfiguration*)a)->GeoLocation = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__MetadataConfiguration*)a)->GeoLocation)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "ShapePolygon", 5, 0); - if (t) - { - if (!(((tt__MetadataConfiguration*)a)->ShapePolygon = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__MetadataConfiguration*)a)->ShapePolygon)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__MetadataConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_PTZStatus1 = 1; - size_t soap_flag_Events1 = 1; - size_t soap_flag_Analytics1 = 1; - size_t soap_flag_Multicast1 = 1; - size_t soap_flag_SessionTimeout1 = 1; - size_t soap_flag_AnalyticsEngineConfiguration1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_PTZStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZFilter(soap, "tt:PTZStatus", &a->tt__MetadataConfiguration::PTZStatus, "tt:PTZFilter")) - { soap_flag_PTZStatus1--; - continue; - } - } - if (soap_flag_Events1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__EventSubscription(soap, "tt:Events", &a->tt__MetadataConfiguration::Events, "tt:EventSubscription")) - { soap_flag_Events1--; - continue; - } - } - if (soap_flag_Analytics1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tt:Analytics", &a->tt__MetadataConfiguration::Analytics, "xsd:boolean")) - { soap_flag_Analytics1--; - continue; - } - } - if (soap_flag_Multicast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MulticastConfiguration(soap, "tt:Multicast", &a->tt__MetadataConfiguration::Multicast, "tt:MulticastConfiguration")) - { soap_flag_Multicast1--; - continue; - } - } - if (soap_flag_SessionTimeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:SessionTimeout", &a->tt__MetadataConfiguration::SessionTimeout, "xsd:duration")) - { soap_flag_SessionTimeout1--; - continue; - } - } - if (soap_flag_AnalyticsEngineConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsEngineConfiguration(soap, "tt:AnalyticsEngineConfiguration", &a->tt__MetadataConfiguration::AnalyticsEngineConfiguration, "tt:AnalyticsEngineConfiguration")) - { soap_flag_AnalyticsEngineConfiguration1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataConfigurationExtension(soap, "tt:Extension", &a->tt__MetadataConfiguration::Extension, "tt:MetadataConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__MetadataConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || !a->tt__MetadataConfiguration::Multicast || soap_flag_SessionTimeout1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__MetadataConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__MetadataConfiguration, SOAP_TYPE_tt__MetadataConfiguration, sizeof(tt__MetadataConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__MetadataConfiguration * SOAP_FMAC2 soap_instantiate_tt__MetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__MetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__MetadataConfiguration *p; - size_t k = sizeof(tt__MetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__MetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__MetadataConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__MetadataConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__MetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__MetadataConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__MetadataConfiguration(soap, tag ? tag : "tt:MetadataConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__MetadataConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__MetadataConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__MetadataConfiguration * SOAP_FMAC4 soap_get_tt__MetadataConfiguration(struct soap *soap, tt__MetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__MetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoAnalyticsConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - this->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration = NULL; - this->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoAnalyticsConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__VideoAnalyticsConfiguration::__anyAttribute); -} - -void tt__VideoAnalyticsConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__AnalyticsEngineConfiguration(soap, &this->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration); - soap_serialize_PointerTott__RuleEngineConfiguration(soap, &this->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoAnalyticsConfiguration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__VideoAnalyticsConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoAnalyticsConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const tt__VideoAnalyticsConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoAnalyticsConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoAnalyticsConfiguration), type ? type : "tt:VideoAnalyticsConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (!a->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration) - { if (soap_element_empty(soap, "tt:AnalyticsEngineConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__AnalyticsEngineConfiguration(soap, "tt:AnalyticsEngineConfiguration", -1, &a->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration, "")) - return soap->error; - if (!a->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration) - { if (soap_element_empty(soap, "tt:RuleEngineConfiguration", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__RuleEngineConfiguration(soap, "tt:RuleEngineConfiguration", -1, &a->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoAnalyticsConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoAnalyticsConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoAnalyticsConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoAnalyticsConfiguration * SOAP_FMAC4 soap_in_tt__VideoAnalyticsConfiguration(struct soap *soap, const char *tag, tt__VideoAnalyticsConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoAnalyticsConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoAnalyticsConfiguration, sizeof(tt__VideoAnalyticsConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoAnalyticsConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoAnalyticsConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoAnalyticsConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_AnalyticsEngineConfiguration1 = 1; - size_t soap_flag_RuleEngineConfiguration1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_AnalyticsEngineConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AnalyticsEngineConfiguration(soap, "tt:AnalyticsEngineConfiguration", &a->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration, "tt:AnalyticsEngineConfiguration")) - { soap_flag_AnalyticsEngineConfiguration1--; - continue; - } - } - if (soap_flag_RuleEngineConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RuleEngineConfiguration(soap, "tt:RuleEngineConfiguration", &a->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration, "tt:RuleEngineConfiguration")) - { soap_flag_RuleEngineConfiguration1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoAnalyticsConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || !a->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration || !a->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoAnalyticsConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoAnalyticsConfiguration, SOAP_TYPE_tt__VideoAnalyticsConfiguration, sizeof(tt__VideoAnalyticsConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoAnalyticsConfiguration *p; - size_t k = sizeof(tt__VideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoAnalyticsConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoAnalyticsConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoAnalyticsConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoAnalyticsConfiguration(soap, tag ? tag : "tt:VideoAnalyticsConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoAnalyticsConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoAnalyticsConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoAnalyticsConfiguration * SOAP_FMAC4 soap_get_tt__VideoAnalyticsConfiguration(struct soap *soap, tt__VideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioEncoder2ConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__AudioEncoder2ConfigurationOptions::Encoding); - this->tt__AudioEncoder2ConfigurationOptions::BitrateList = NULL; - this->tt__AudioEncoder2ConfigurationOptions::SampleRateList = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoder2ConfigurationOptions::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioEncoder2ConfigurationOptions::__anyAttribute); -} - -void tt__AudioEncoder2ConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AudioEncoder2ConfigurationOptions::Encoding, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__AudioEncoder2ConfigurationOptions::Encoding); - soap_serialize_PointerTott__IntItems(soap, &this->tt__AudioEncoder2ConfigurationOptions::BitrateList); - soap_serialize_PointerTott__IntItems(soap, &this->tt__AudioEncoder2ConfigurationOptions::SampleRateList); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoder2ConfigurationOptions::__any); -#endif -} - -int tt__AudioEncoder2ConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioEncoder2ConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__AudioEncoder2ConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioEncoder2ConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Encoding", -1, &a->tt__AudioEncoder2ConfigurationOptions::Encoding, "")) - return soap->error; - if (!a->tt__AudioEncoder2ConfigurationOptions::BitrateList) - { if (soap_element_empty(soap, "tt:BitrateList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:BitrateList", -1, &a->tt__AudioEncoder2ConfigurationOptions::BitrateList, "")) - return soap->error; - if (!a->tt__AudioEncoder2ConfigurationOptions::SampleRateList) - { if (soap_element_empty(soap, "tt:SampleRateList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:SampleRateList", -1, &a->tt__AudioEncoder2ConfigurationOptions::SampleRateList, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioEncoder2ConfigurationOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioEncoder2ConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioEncoder2ConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioEncoder2ConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, const char *tag, tt__AudioEncoder2ConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioEncoder2ConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions, sizeof(tt__AudioEncoder2ConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioEncoder2ConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioEncoder2ConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_BitrateList1 = 1; - size_t soap_flag_SampleRateList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Encoding1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Encoding", &a->tt__AudioEncoder2ConfigurationOptions::Encoding, "xsd:string")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_BitrateList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:BitrateList", &a->tt__AudioEncoder2ConfigurationOptions::BitrateList, "tt:IntItems")) - { soap_flag_BitrateList1--; - continue; - } - } - if (soap_flag_SampleRateList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:SampleRateList", &a->tt__AudioEncoder2ConfigurationOptions::SampleRateList, "tt:IntItems")) - { soap_flag_SampleRateList1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioEncoder2ConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Encoding1 > 0 || !a->tt__AudioEncoder2ConfigurationOptions::BitrateList || !a->tt__AudioEncoder2ConfigurationOptions::SampleRateList)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioEncoder2ConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions, SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions, sizeof(tt__AudioEncoder2ConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioEncoder2ConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioEncoder2ConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioEncoder2ConfigurationOptions *p; - size_t k = sizeof(tt__AudioEncoder2ConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioEncoder2ConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioEncoder2ConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioEncoder2ConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioEncoder2ConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioEncoder2ConfigurationOptions(soap, tag ? tag : "tt:AudioEncoder2ConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioEncoder2ConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioEncoder2ConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioEncoder2ConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, tt__AudioEncoder2ConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncoder2ConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioEncoder2Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_std__string(soap, &this->tt__AudioEncoder2Configuration::Encoding); - this->tt__AudioEncoder2Configuration::Multicast = NULL; - soap_default_int(soap, &this->tt__AudioEncoder2Configuration::Bitrate); - soap_default_int(soap, &this->tt__AudioEncoder2Configuration::SampleRate); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoder2Configuration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioEncoder2Configuration::__anyAttribute); -} - -void tt__AudioEncoder2Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AudioEncoder2Configuration::Encoding, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__AudioEncoder2Configuration::Encoding); - soap_serialize_PointerTott__MulticastConfiguration(soap, &this->tt__AudioEncoder2Configuration::Multicast); - soap_embedded(soap, &this->tt__AudioEncoder2Configuration::Bitrate, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__AudioEncoder2Configuration::SampleRate, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoder2Configuration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AudioEncoder2Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioEncoder2Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoder2Configuration(struct soap *soap, const char *tag, int id, const tt__AudioEncoder2Configuration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioEncoder2Configuration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioEncoder2Configuration), type ? type : "tt:AudioEncoder2Configuration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:Encoding", -1, &a->tt__AudioEncoder2Configuration::Encoding, "")) - return soap->error; - if (soap_out_PointerTott__MulticastConfiguration(soap, "tt:Multicast", -1, &a->tt__AudioEncoder2Configuration::Multicast, "")) - return soap->error; - if (soap_out_int(soap, "tt:Bitrate", -1, &a->tt__AudioEncoder2Configuration::Bitrate, "")) - return soap->error; - if (soap_out_int(soap, "tt:SampleRate", -1, &a->tt__AudioEncoder2Configuration::SampleRate, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioEncoder2Configuration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioEncoder2Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioEncoder2Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioEncoder2Configuration * SOAP_FMAC4 soap_in_tt__AudioEncoder2Configuration(struct soap *soap, const char *tag, tt__AudioEncoder2Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioEncoder2Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncoder2Configuration, sizeof(tt__AudioEncoder2Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioEncoder2Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioEncoder2Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioEncoder2Configuration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_Multicast1 = 1; - size_t soap_flag_Bitrate1 = 1; - size_t soap_flag_SampleRate1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_Encoding1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Encoding", &a->tt__AudioEncoder2Configuration::Encoding, "xsd:string")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_Multicast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MulticastConfiguration(soap, "tt:Multicast", &a->tt__AudioEncoder2Configuration::Multicast, "tt:MulticastConfiguration")) - { soap_flag_Multicast1--; - continue; - } - } - if (soap_flag_Bitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Bitrate", &a->tt__AudioEncoder2Configuration::Bitrate, "xsd:int")) - { soap_flag_Bitrate1--; - continue; - } - } - if (soap_flag_SampleRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:SampleRate", &a->tt__AudioEncoder2Configuration::SampleRate, "xsd:int")) - { soap_flag_SampleRate1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioEncoder2Configuration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_Encoding1 > 0 || soap_flag_Bitrate1 > 0 || soap_flag_SampleRate1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioEncoder2Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioEncoder2Configuration, SOAP_TYPE_tt__AudioEncoder2Configuration, sizeof(tt__AudioEncoder2Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioEncoder2Configuration * SOAP_FMAC2 soap_instantiate_tt__AudioEncoder2Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioEncoder2Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioEncoder2Configuration *p; - size_t k = sizeof(tt__AudioEncoder2Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioEncoder2Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioEncoder2Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioEncoder2Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioEncoder2Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioEncoder2Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioEncoder2Configuration(soap, tag ? tag : "tt:AudioEncoder2Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioEncoder2Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioEncoder2Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioEncoder2Configuration * SOAP_FMAC4 soap_get_tt__AudioEncoder2Configuration(struct soap *soap, tt__AudioEncoder2Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncoder2Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioEncoderConfigurationOption::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__AudioEncoding(soap, &this->tt__AudioEncoderConfigurationOption::Encoding); - this->tt__AudioEncoderConfigurationOption::BitrateList = NULL; - this->tt__AudioEncoderConfigurationOption::SampleRateList = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoderConfigurationOption::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioEncoderConfigurationOption::__anyAttribute); -} - -void tt__AudioEncoderConfigurationOption::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntItems(soap, &this->tt__AudioEncoderConfigurationOption::BitrateList); - soap_serialize_PointerTott__IntItems(soap, &this->tt__AudioEncoderConfigurationOption::SampleRateList); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoderConfigurationOption::__any); -#endif -} - -int tt__AudioEncoderConfigurationOption::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioEncoderConfigurationOption(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoderConfigurationOption(struct soap *soap, const char *tag, int id, const tt__AudioEncoderConfigurationOption *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioEncoderConfigurationOption*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioEncoderConfigurationOption), type)) - return soap->error; - if (soap_out_tt__AudioEncoding(soap, "tt:Encoding", -1, &a->tt__AudioEncoderConfigurationOption::Encoding, "")) - return soap->error; - if (!a->tt__AudioEncoderConfigurationOption::BitrateList) - { if (soap_element_empty(soap, "tt:BitrateList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:BitrateList", -1, &a->tt__AudioEncoderConfigurationOption::BitrateList, "")) - return soap->error; - if (!a->tt__AudioEncoderConfigurationOption::SampleRateList) - { if (soap_element_empty(soap, "tt:SampleRateList", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntItems(soap, "tt:SampleRateList", -1, &a->tt__AudioEncoderConfigurationOption::SampleRateList, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioEncoderConfigurationOption::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioEncoderConfigurationOption::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioEncoderConfigurationOption(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioEncoderConfigurationOption * SOAP_FMAC4 soap_in_tt__AudioEncoderConfigurationOption(struct soap *soap, const char *tag, tt__AudioEncoderConfigurationOption *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioEncoderConfigurationOption*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncoderConfigurationOption, sizeof(tt__AudioEncoderConfigurationOption), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioEncoderConfigurationOption) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioEncoderConfigurationOption *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioEncoderConfigurationOption*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_BitrateList1 = 1; - size_t soap_flag_SampleRateList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Encoding1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__AudioEncoding(soap, "tt:Encoding", &a->tt__AudioEncoderConfigurationOption::Encoding, "tt:AudioEncoding")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_BitrateList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:BitrateList", &a->tt__AudioEncoderConfigurationOption::BitrateList, "tt:IntItems")) - { soap_flag_BitrateList1--; - continue; - } - } - if (soap_flag_SampleRateList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:SampleRateList", &a->tt__AudioEncoderConfigurationOption::SampleRateList, "tt:IntItems")) - { soap_flag_SampleRateList1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioEncoderConfigurationOption::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Encoding1 > 0 || !a->tt__AudioEncoderConfigurationOption::BitrateList || !a->tt__AudioEncoderConfigurationOption::SampleRateList)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioEncoderConfigurationOption *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioEncoderConfigurationOption, SOAP_TYPE_tt__AudioEncoderConfigurationOption, sizeof(tt__AudioEncoderConfigurationOption), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioEncoderConfigurationOption * SOAP_FMAC2 soap_instantiate_tt__AudioEncoderConfigurationOption(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioEncoderConfigurationOption(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioEncoderConfigurationOption *p; - size_t k = sizeof(tt__AudioEncoderConfigurationOption); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioEncoderConfigurationOption, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioEncoderConfigurationOption); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioEncoderConfigurationOption, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioEncoderConfigurationOption location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioEncoderConfigurationOption::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioEncoderConfigurationOption(soap, tag ? tag : "tt:AudioEncoderConfigurationOption", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioEncoderConfigurationOption::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioEncoderConfigurationOption(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioEncoderConfigurationOption * SOAP_FMAC4 soap_get_tt__AudioEncoderConfigurationOption(struct soap *soap, tt__AudioEncoderConfigurationOption *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncoderConfigurationOption(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioEncoderConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(soap, &this->tt__AudioEncoderConfigurationOptions::Options); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioEncoderConfigurationOptions::__anyAttribute); -} - -void tt__AudioEncoderConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(soap, &this->tt__AudioEncoderConfigurationOptions::Options); -#endif -} - -int tt__AudioEncoderConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioEncoderConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__AudioEncoderConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioEncoderConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioEncoderConfigurationOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(soap, "tt:Options", -1, &a->tt__AudioEncoderConfigurationOptions::Options, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioEncoderConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioEncoderConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioEncoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioEncoderConfigurationOptions(struct soap *soap, const char *tag, tt__AudioEncoderConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioEncoderConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncoderConfigurationOptions, sizeof(tt__AudioEncoderConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioEncoderConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioEncoderConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioEncoderConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(soap, "tt:Options", &a->tt__AudioEncoderConfigurationOptions::Options, "tt:AudioEncoderConfigurationOption")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AudioEncoderConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioEncoderConfigurationOptions, SOAP_TYPE_tt__AudioEncoderConfigurationOptions, sizeof(tt__AudioEncoderConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioEncoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioEncoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioEncoderConfigurationOptions *p; - size_t k = sizeof(tt__AudioEncoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioEncoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioEncoderConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioEncoderConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioEncoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioEncoderConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioEncoderConfigurationOptions(soap, tag ? tag : "tt:AudioEncoderConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioEncoderConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioEncoderConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioEncoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioEncoderConfigurationOptions(struct soap *soap, tt__AudioEncoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__AudioEncoding(soap, &this->tt__AudioEncoderConfiguration::Encoding); - soap_default_int(soap, &this->tt__AudioEncoderConfiguration::Bitrate); - soap_default_int(soap, &this->tt__AudioEncoderConfiguration::SampleRate); - this->tt__AudioEncoderConfiguration::Multicast = NULL; - soap_default_xsd__duration(soap, &this->tt__AudioEncoderConfiguration::SessionTimeout); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoderConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioEncoderConfiguration::__anyAttribute); -} - -void tt__AudioEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AudioEncoderConfiguration::Bitrate, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__AudioEncoderConfiguration::SampleRate, SOAP_TYPE_int); - soap_serialize_PointerTott__MulticastConfiguration(soap, &this->tt__AudioEncoderConfiguration::Multicast); - soap_embedded(soap, &this->tt__AudioEncoderConfiguration::SessionTimeout, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__AudioEncoderConfiguration::SessionTimeout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioEncoderConfiguration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AudioEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const tt__AudioEncoderConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioEncoderConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioEncoderConfiguration), type ? type : "tt:AudioEncoderConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__AudioEncoding(soap, "tt:Encoding", -1, &a->tt__AudioEncoderConfiguration::Encoding, "")) - return soap->error; - if (soap_out_int(soap, "tt:Bitrate", -1, &a->tt__AudioEncoderConfiguration::Bitrate, "")) - return soap->error; - if (soap_out_int(soap, "tt:SampleRate", -1, &a->tt__AudioEncoderConfiguration::SampleRate, "")) - return soap->error; - if (!a->tt__AudioEncoderConfiguration::Multicast) - { if (soap_element_empty(soap, "tt:Multicast", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MulticastConfiguration(soap, "tt:Multicast", -1, &a->tt__AudioEncoderConfiguration::Multicast, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:SessionTimeout", -1, &a->tt__AudioEncoderConfiguration::SessionTimeout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioEncoderConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioEncoderConfiguration * SOAP_FMAC4 soap_in_tt__AudioEncoderConfiguration(struct soap *soap, const char *tag, tt__AudioEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioEncoderConfiguration, sizeof(tt__AudioEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioEncoderConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_Bitrate1 = 1; - size_t soap_flag_SampleRate1 = 1; - size_t soap_flag_Multicast1 = 1; - size_t soap_flag_SessionTimeout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_Encoding1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__AudioEncoding(soap, "tt:Encoding", &a->tt__AudioEncoderConfiguration::Encoding, "tt:AudioEncoding")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_Bitrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Bitrate", &a->tt__AudioEncoderConfiguration::Bitrate, "xsd:int")) - { soap_flag_Bitrate1--; - continue; - } - } - if (soap_flag_SampleRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:SampleRate", &a->tt__AudioEncoderConfiguration::SampleRate, "xsd:int")) - { soap_flag_SampleRate1--; - continue; - } - } - if (soap_flag_Multicast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MulticastConfiguration(soap, "tt:Multicast", &a->tt__AudioEncoderConfiguration::Multicast, "tt:MulticastConfiguration")) - { soap_flag_Multicast1--; - continue; - } - } - if (soap_flag_SessionTimeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:SessionTimeout", &a->tt__AudioEncoderConfiguration::SessionTimeout, "xsd:duration")) - { soap_flag_SessionTimeout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioEncoderConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_Encoding1 > 0 || soap_flag_Bitrate1 > 0 || soap_flag_SampleRate1 > 0 || !a->tt__AudioEncoderConfiguration::Multicast || soap_flag_SessionTimeout1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioEncoderConfiguration, SOAP_TYPE_tt__AudioEncoderConfiguration, sizeof(tt__AudioEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioEncoderConfiguration *p; - size_t k = sizeof(tt__AudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioEncoderConfiguration(soap, tag ? tag : "tt:AudioEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioEncoderConfiguration * SOAP_FMAC4 soap_get_tt__AudioEncoderConfiguration(struct soap *soap, tt__AudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioSourceOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioSourceOptionsExtension::__any); -} - -void tt__AudioSourceOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioSourceOptionsExtension::__any); -#endif -} - -int tt__AudioSourceOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioSourceOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSourceOptionsExtension(struct soap *soap, const char *tag, int id, const tt__AudioSourceOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioSourceOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioSourceOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioSourceOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioSourceOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioSourceOptionsExtension * SOAP_FMAC4 soap_in_tt__AudioSourceOptionsExtension(struct soap *soap, const char *tag, tt__AudioSourceOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioSourceOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioSourceOptionsExtension, sizeof(tt__AudioSourceOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioSourceOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioSourceOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioSourceOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AudioSourceOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioSourceOptionsExtension, SOAP_TYPE_tt__AudioSourceOptionsExtension, sizeof(tt__AudioSourceOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioSourceOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__AudioSourceOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioSourceOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioSourceOptionsExtension *p; - size_t k = sizeof(tt__AudioSourceOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioSourceOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioSourceOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioSourceOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioSourceOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioSourceOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioSourceOptionsExtension(soap, tag ? tag : "tt:AudioSourceOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioSourceOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioSourceOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioSourceOptionsExtension * SOAP_FMAC4 soap_get_tt__AudioSourceOptionsExtension(struct soap *soap, tt__AudioSourceOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioSourceOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioSourceConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AudioSourceConfigurationOptions::InputTokensAvailable); - this->tt__AudioSourceConfigurationOptions::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__AudioSourceConfigurationOptions::__anyAttribute); -} - -void tt__AudioSourceConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__AudioSourceConfigurationOptions::InputTokensAvailable); - soap_serialize_PointerTott__AudioSourceOptionsExtension(soap, &this->tt__AudioSourceConfigurationOptions::Extension); -#endif -} - -int tt__AudioSourceConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioSourceConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__AudioSourceConfigurationOptions *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioSourceConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioSourceConfigurationOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tt:InputTokensAvailable", -1, &a->tt__AudioSourceConfigurationOptions::InputTokensAvailable, "")) - return soap->error; - if (soap_out_PointerTott__AudioSourceOptionsExtension(soap, "tt:Extension", -1, &a->tt__AudioSourceConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioSourceConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioSourceConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioSourceConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioSourceConfigurationOptions(struct soap *soap, const char *tag, tt__AudioSourceConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioSourceConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioSourceConfigurationOptions, sizeof(tt__AudioSourceConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioSourceConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioSourceConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioSourceConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tt:InputTokensAvailable", &a->tt__AudioSourceConfigurationOptions::InputTokensAvailable, "tt:ReferenceToken")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceOptionsExtension(soap, "tt:Extension", &a->tt__AudioSourceConfigurationOptions::Extension, "tt:AudioSourceOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__AudioSourceConfigurationOptions::InputTokensAvailable.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioSourceConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioSourceConfigurationOptions, SOAP_TYPE_tt__AudioSourceConfigurationOptions, sizeof(tt__AudioSourceConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioSourceConfigurationOptions *p; - size_t k = sizeof(tt__AudioSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioSourceConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioSourceConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioSourceConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioSourceConfigurationOptions(soap, tag ? tag : "tt:AudioSourceConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioSourceConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioSourceConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioSourceConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioSourceConfigurationOptions(struct soap *soap, tt__AudioSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__ReferenceToken(soap, &this->tt__AudioSourceConfiguration::SourceToken); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioSourceConfiguration::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioSourceConfiguration::__anyAttribute); -} - -void tt__AudioSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AudioSourceConfiguration::SourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__AudioSourceConfiguration::SourceToken); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioSourceConfiguration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__AudioSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSourceConfiguration(struct soap *soap, const char *tag, int id, const tt__AudioSourceConfiguration *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioSourceConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioSourceConfiguration), type ? type : "tt:AudioSourceConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:SourceToken", -1, &a->tt__AudioSourceConfiguration::SourceToken, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioSourceConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioSourceConfiguration * SOAP_FMAC4 soap_in_tt__AudioSourceConfiguration(struct soap *soap, const char *tag, tt__AudioSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioSourceConfiguration, sizeof(tt__AudioSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioSourceConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_SourceToken1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_SourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:SourceToken", &a->tt__AudioSourceConfiguration::SourceToken, "tt:ReferenceToken")) - { soap_flag_SourceToken1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioSourceConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_SourceToken1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioSourceConfiguration, SOAP_TYPE_tt__AudioSourceConfiguration, sizeof(tt__AudioSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioSourceConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioSourceConfiguration *p; - size_t k = sizeof(tt__AudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioSourceConfiguration(soap, tag ? tag : "tt:AudioSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioSourceConfiguration * SOAP_FMAC4 soap_get_tt__AudioSourceConfiguration(struct soap *soap, tt__AudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncoder2ConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->tt__VideoEncoder2ConfigurationOptions::Encoding); - this->tt__VideoEncoder2ConfigurationOptions::QualityRange = NULL; - soap_default_std__vectorTemplateOfPointerTott__VideoResolution2(soap, &this->tt__VideoEncoder2ConfigurationOptions::ResolutionsAvailable); - this->tt__VideoEncoder2ConfigurationOptions::BitrateRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoder2ConfigurationOptions::__any); - this->tt__VideoEncoder2ConfigurationOptions::GovLengthRange = NULL; - this->tt__VideoEncoder2ConfigurationOptions::FrameRatesSupported = NULL; - this->tt__VideoEncoder2ConfigurationOptions::ProfilesSupported = NULL; - this->tt__VideoEncoder2ConfigurationOptions::ConstantBitRateSupported = NULL; - this->tt__VideoEncoder2ConfigurationOptions::GuaranteedFrameRateSupported = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoEncoder2ConfigurationOptions::__anyAttribute); -} - -void tt__VideoEncoder2ConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoEncoder2ConfigurationOptions::Encoding, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__VideoEncoder2ConfigurationOptions::Encoding); - soap_serialize_PointerTott__FloatRange(soap, &this->tt__VideoEncoder2ConfigurationOptions::QualityRange); - soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution2(soap, &this->tt__VideoEncoder2ConfigurationOptions::ResolutionsAvailable); - soap_serialize_PointerTott__IntRange(soap, &this->tt__VideoEncoder2ConfigurationOptions::BitrateRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoder2ConfigurationOptions::__any); -#endif -} - -int tt__VideoEncoder2ConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncoder2ConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__VideoEncoder2ConfigurationOptions *a, const char *type) -{ - if (((tt__VideoEncoder2ConfigurationOptions*)a)->GovLengthRange) - { soap_set_attr(soap, "GovLengthRange", soap_tt__IntAttrList2s(soap, *((tt__VideoEncoder2ConfigurationOptions*)a)->GovLengthRange), 1); - } - if (((tt__VideoEncoder2ConfigurationOptions*)a)->FrameRatesSupported) - { soap_set_attr(soap, "FrameRatesSupported", soap_tt__FloatAttrList2s(soap, *((tt__VideoEncoder2ConfigurationOptions*)a)->FrameRatesSupported), 1); - } - if (((tt__VideoEncoder2ConfigurationOptions*)a)->ProfilesSupported) - { soap_set_attr(soap, "ProfilesSupported", soap_tt__StringAttrList2s(soap, *((tt__VideoEncoder2ConfigurationOptions*)a)->ProfilesSupported), 1); - } - if (((tt__VideoEncoder2ConfigurationOptions*)a)->ConstantBitRateSupported) - { soap_set_attr(soap, "ConstantBitRateSupported", soap_bool2s(soap, *((tt__VideoEncoder2ConfigurationOptions*)a)->ConstantBitRateSupported), 1); - } - if (((tt__VideoEncoder2ConfigurationOptions*)a)->GuaranteedFrameRateSupported) - { soap_set_attr(soap, "GuaranteedFrameRateSupported", soap_bool2s(soap, *((tt__VideoEncoder2ConfigurationOptions*)a)->GuaranteedFrameRateSupported), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoEncoder2ConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions), type)) - return soap->error; - if (soap_out_std__string(soap, "tt:Encoding", -1, &a->tt__VideoEncoder2ConfigurationOptions::Encoding, "")) - return soap->error; - if (!a->tt__VideoEncoder2ConfigurationOptions::QualityRange) - { if (soap_element_empty(soap, "tt:QualityRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__FloatRange(soap, "tt:QualityRange", -1, &a->tt__VideoEncoder2ConfigurationOptions::QualityRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution2(soap, "tt:ResolutionsAvailable", -1, &a->tt__VideoEncoder2ConfigurationOptions::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__VideoEncoder2ConfigurationOptions::BitrateRange) - { if (soap_element_empty(soap, "tt:BitrateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:BitrateRange", -1, &a->tt__VideoEncoder2ConfigurationOptions::BitrateRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoEncoder2ConfigurationOptions::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoEncoder2ConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncoder2ConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncoder2ConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, const char *tag, tt__VideoEncoder2ConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoEncoder2ConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions, sizeof(tt__VideoEncoder2ConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoEncoder2ConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "GovLengthRange", 1, 0); - if (t) - { - if (!(((tt__VideoEncoder2ConfigurationOptions*)a)->GovLengthRange = soap_new_tt__IntAttrList(soap))) - return NULL; - if (soap_s2tt__IntAttrList(soap, t, ((tt__VideoEncoder2ConfigurationOptions*)a)->GovLengthRange)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "FrameRatesSupported", 1, 0); - if (t) - { - if (!(((tt__VideoEncoder2ConfigurationOptions*)a)->FrameRatesSupported = soap_new_tt__FloatAttrList(soap))) - return NULL; - if (soap_s2tt__FloatAttrList(soap, t, ((tt__VideoEncoder2ConfigurationOptions*)a)->FrameRatesSupported)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "ProfilesSupported", 1, 0); - if (t) - { - if (!(((tt__VideoEncoder2ConfigurationOptions*)a)->ProfilesSupported = soap_new_tt__StringAttrList(soap))) - return NULL; - if (soap_s2tt__StringAttrList(soap, t, ((tt__VideoEncoder2ConfigurationOptions*)a)->ProfilesSupported)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "ConstantBitRateSupported", 5, 0); - if (t) - { - if (!(((tt__VideoEncoder2ConfigurationOptions*)a)->ConstantBitRateSupported = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__VideoEncoder2ConfigurationOptions*)a)->ConstantBitRateSupported)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GuaranteedFrameRateSupported", 5, 0); - if (t) - { - if (!(((tt__VideoEncoder2ConfigurationOptions*)a)->GuaranteedFrameRateSupported = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__VideoEncoder2ConfigurationOptions*)a)->GuaranteedFrameRateSupported)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoEncoder2ConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_QualityRange1 = 1; - size_t soap_flag_BitrateRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Encoding1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Encoding", &a->tt__VideoEncoder2ConfigurationOptions::Encoding, "xsd:string")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_QualityRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__FloatRange(soap, "tt:QualityRange", &a->tt__VideoEncoder2ConfigurationOptions::QualityRange, "tt:FloatRange")) - { soap_flag_QualityRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution2(soap, "tt:ResolutionsAvailable", &a->tt__VideoEncoder2ConfigurationOptions::ResolutionsAvailable, "tt:VideoResolution2")) - continue; - } - if (soap_flag_BitrateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:BitrateRange", &a->tt__VideoEncoder2ConfigurationOptions::BitrateRange, "tt:IntRange")) - { soap_flag_BitrateRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoEncoder2ConfigurationOptions::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Encoding1 > 0 || !a->tt__VideoEncoder2ConfigurationOptions::QualityRange || a->tt__VideoEncoder2ConfigurationOptions::ResolutionsAvailable.size() < 1 || !a->tt__VideoEncoder2ConfigurationOptions::BitrateRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoEncoder2ConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions, SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions, sizeof(tt__VideoEncoder2ConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoEncoder2ConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncoder2ConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncoder2ConfigurationOptions *p; - size_t k = sizeof(tt__VideoEncoder2ConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncoder2ConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncoder2ConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncoder2ConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncoder2ConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncoder2ConfigurationOptions(soap, tag ? tag : "tt:VideoEncoder2ConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncoder2ConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncoder2ConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncoder2ConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, tt__VideoEncoder2ConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoder2ConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoRateControl2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__VideoRateControl2::FrameRateLimit); - soap_default_int(soap, &this->tt__VideoRateControl2::BitrateLimit); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoRateControl2::__any); - this->tt__VideoRateControl2::ConstantBitRate = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoRateControl2::__anyAttribute); -} - -void tt__VideoRateControl2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoRateControl2::FrameRateLimit, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__VideoRateControl2::BitrateLimit, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoRateControl2::__any); -#endif -} - -int tt__VideoRateControl2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoRateControl2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoRateControl2(struct soap *soap, const char *tag, int id, const tt__VideoRateControl2 *a, const char *type) -{ - if (((tt__VideoRateControl2*)a)->ConstantBitRate) - { soap_set_attr(soap, "ConstantBitRate", soap_bool2s(soap, *((tt__VideoRateControl2*)a)->ConstantBitRate), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoRateControl2*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoRateControl2), type)) - return soap->error; - if (soap_out_float(soap, "tt:FrameRateLimit", -1, &a->tt__VideoRateControl2::FrameRateLimit, "")) - return soap->error; - if (soap_out_int(soap, "tt:BitrateLimit", -1, &a->tt__VideoRateControl2::BitrateLimit, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoRateControl2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoRateControl2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoRateControl2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoRateControl2 * SOAP_FMAC4 soap_in_tt__VideoRateControl2(struct soap *soap, const char *tag, tt__VideoRateControl2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoRateControl2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoRateControl2, sizeof(tt__VideoRateControl2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoRateControl2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoRateControl2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "ConstantBitRate", 5, 0); - if (t) - { - if (!(((tt__VideoRateControl2*)a)->ConstantBitRate = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__VideoRateControl2*)a)->ConstantBitRate)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoRateControl2*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FrameRateLimit1 = 1; - size_t soap_flag_BitrateLimit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FrameRateLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:FrameRateLimit", &a->tt__VideoRateControl2::FrameRateLimit, "xsd:float")) - { soap_flag_FrameRateLimit1--; - continue; - } - } - if (soap_flag_BitrateLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:BitrateLimit", &a->tt__VideoRateControl2::BitrateLimit, "xsd:int")) - { soap_flag_BitrateLimit1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoRateControl2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FrameRateLimit1 > 0 || soap_flag_BitrateLimit1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoRateControl2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoRateControl2, SOAP_TYPE_tt__VideoRateControl2, sizeof(tt__VideoRateControl2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoRateControl2 * SOAP_FMAC2 soap_instantiate_tt__VideoRateControl2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoRateControl2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoRateControl2 *p; - size_t k = sizeof(tt__VideoRateControl2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoRateControl2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoRateControl2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoRateControl2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoRateControl2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoRateControl2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoRateControl2(soap, tag ? tag : "tt:VideoRateControl2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoRateControl2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoRateControl2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoRateControl2 * SOAP_FMAC4 soap_get_tt__VideoRateControl2(struct soap *soap, tt__VideoRateControl2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoRateControl2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoResolution2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__VideoResolution2::Width); - soap_default_int(soap, &this->tt__VideoResolution2::Height); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoResolution2::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__VideoResolution2::__anyAttribute); -} - -void tt__VideoResolution2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoResolution2::Width, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__VideoResolution2::Height, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoResolution2::__any); -#endif -} - -int tt__VideoResolution2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoResolution2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoResolution2(struct soap *soap, const char *tag, int id, const tt__VideoResolution2 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoResolution2*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoResolution2), type)) - return soap->error; - if (soap_out_int(soap, "tt:Width", -1, &a->tt__VideoResolution2::Width, "")) - return soap->error; - if (soap_out_int(soap, "tt:Height", -1, &a->tt__VideoResolution2::Height, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoResolution2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoResolution2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoResolution2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoResolution2 * SOAP_FMAC4 soap_in_tt__VideoResolution2(struct soap *soap, const char *tag, tt__VideoResolution2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoResolution2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoResolution2, sizeof(tt__VideoResolution2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoResolution2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoResolution2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoResolution2*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Width1 = 1; - size_t soap_flag_Height1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Width1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Width", &a->tt__VideoResolution2::Width, "xsd:int")) - { soap_flag_Width1--; - continue; - } - } - if (soap_flag_Height1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Height", &a->tt__VideoResolution2::Height, "xsd:int")) - { soap_flag_Height1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoResolution2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Width1 > 0 || soap_flag_Height1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoResolution2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoResolution2, SOAP_TYPE_tt__VideoResolution2, sizeof(tt__VideoResolution2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoResolution2 * SOAP_FMAC2 soap_instantiate_tt__VideoResolution2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoResolution2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoResolution2 *p; - size_t k = sizeof(tt__VideoResolution2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoResolution2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoResolution2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoResolution2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoResolution2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoResolution2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoResolution2(soap, tag ? tag : "tt:VideoResolution2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoResolution2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoResolution2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoResolution2 * SOAP_FMAC4 soap_get_tt__VideoResolution2(struct soap *soap, tt__VideoResolution2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoResolution2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncoder2Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_std__string(soap, &this->tt__VideoEncoder2Configuration::Encoding); - this->tt__VideoEncoder2Configuration::Resolution = NULL; - this->tt__VideoEncoder2Configuration::RateControl = NULL; - this->tt__VideoEncoder2Configuration::Multicast = NULL; - soap_default_float(soap, &this->tt__VideoEncoder2Configuration::Quality); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoder2Configuration::__any); - this->tt__VideoEncoder2Configuration::GovLength = NULL; - this->tt__VideoEncoder2Configuration::Profile = NULL; - this->tt__VideoEncoder2Configuration::GuaranteedFrameRate = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoEncoder2Configuration::__anyAttribute); -} - -void tt__VideoEncoder2Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoEncoder2Configuration::Encoding, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->tt__VideoEncoder2Configuration::Encoding); - soap_serialize_PointerTott__VideoResolution2(soap, &this->tt__VideoEncoder2Configuration::Resolution); - soap_serialize_PointerTott__VideoRateControl2(soap, &this->tt__VideoEncoder2Configuration::RateControl); - soap_serialize_PointerTott__MulticastConfiguration(soap, &this->tt__VideoEncoder2Configuration::Multicast); - soap_embedded(soap, &this->tt__VideoEncoder2Configuration::Quality, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoder2Configuration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__VideoEncoder2Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncoder2Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoder2Configuration(struct soap *soap, const char *tag, int id, const tt__VideoEncoder2Configuration *a, const char *type) -{ - if (((tt__VideoEncoder2Configuration*)a)->GovLength) - { soap_set_attr(soap, "GovLength", soap_int2s(soap, *((tt__VideoEncoder2Configuration*)a)->GovLength), 1); - } - if (((tt__VideoEncoder2Configuration*)a)->Profile) - { soap_set_attr(soap, "Profile", soap_std__string2s(soap, *((tt__VideoEncoder2Configuration*)a)->Profile), 1); - } - if (((tt__VideoEncoder2Configuration*)a)->GuaranteedFrameRate) - { soap_set_attr(soap, "GuaranteedFrameRate", soap_bool2s(soap, *((tt__VideoEncoder2Configuration*)a)->GuaranteedFrameRate), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoEncoder2Configuration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncoder2Configuration), type ? type : "tt:VideoEncoder2Configuration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_std__string(soap, "tt:Encoding", -1, &a->tt__VideoEncoder2Configuration::Encoding, "")) - return soap->error; - if (!a->tt__VideoEncoder2Configuration::Resolution) - { if (soap_element_empty(soap, "tt:Resolution", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoResolution2(soap, "tt:Resolution", -1, &a->tt__VideoEncoder2Configuration::Resolution, "")) - return soap->error; - if (soap_out_PointerTott__VideoRateControl2(soap, "tt:RateControl", -1, &a->tt__VideoEncoder2Configuration::RateControl, "")) - return soap->error; - if (soap_out_PointerTott__MulticastConfiguration(soap, "tt:Multicast", -1, &a->tt__VideoEncoder2Configuration::Multicast, "")) - return soap->error; - if (soap_out_float(soap, "tt:Quality", -1, &a->tt__VideoEncoder2Configuration::Quality, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoEncoder2Configuration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoEncoder2Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncoder2Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncoder2Configuration * SOAP_FMAC4 soap_in_tt__VideoEncoder2Configuration(struct soap *soap, const char *tag, tt__VideoEncoder2Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoEncoder2Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoder2Configuration, sizeof(tt__VideoEncoder2Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncoder2Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoEncoder2Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "GovLength", 5, 0); - if (t) - { - if (!(((tt__VideoEncoder2Configuration*)a)->GovLength = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__VideoEncoder2Configuration*)a)->GovLength)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Profile", 1, 0); - if (t) - { - if (!(((tt__VideoEncoder2Configuration*)a)->Profile = soap_new_std__string(soap))) - return NULL; - if (soap_s2std__string(soap, t, ((tt__VideoEncoder2Configuration*)a)->Profile)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GuaranteedFrameRate", 5, 0); - if (t) - { - if (!(((tt__VideoEncoder2Configuration*)a)->GuaranteedFrameRate = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__VideoEncoder2Configuration*)a)->GuaranteedFrameRate)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoEncoder2Configuration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_Resolution1 = 1; - size_t soap_flag_RateControl1 = 1; - size_t soap_flag_Multicast1 = 1; - size_t soap_flag_Quality1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_Encoding1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "tt:Encoding", &a->tt__VideoEncoder2Configuration::Encoding, "xsd:string")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_Resolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoResolution2(soap, "tt:Resolution", &a->tt__VideoEncoder2Configuration::Resolution, "tt:VideoResolution2")) - { soap_flag_Resolution1--; - continue; - } - } - if (soap_flag_RateControl1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoRateControl2(soap, "tt:RateControl", &a->tt__VideoEncoder2Configuration::RateControl, "tt:VideoRateControl2")) - { soap_flag_RateControl1--; - continue; - } - } - if (soap_flag_Multicast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MulticastConfiguration(soap, "tt:Multicast", &a->tt__VideoEncoder2Configuration::Multicast, "tt:MulticastConfiguration")) - { soap_flag_Multicast1--; - continue; - } - } - if (soap_flag_Quality1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Quality", &a->tt__VideoEncoder2Configuration::Quality, "xsd:float")) - { soap_flag_Quality1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoEncoder2Configuration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_Encoding1 > 0 || !a->tt__VideoEncoder2Configuration::Resolution || soap_flag_Quality1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoEncoder2Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncoder2Configuration, SOAP_TYPE_tt__VideoEncoder2Configuration, sizeof(tt__VideoEncoder2Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoEncoder2Configuration * SOAP_FMAC2 soap_instantiate_tt__VideoEncoder2Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncoder2Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncoder2Configuration *p; - size_t k = sizeof(tt__VideoEncoder2Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncoder2Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncoder2Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncoder2Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncoder2Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncoder2Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncoder2Configuration(soap, tag ? tag : "tt:VideoEncoder2Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncoder2Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncoder2Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncoder2Configuration * SOAP_FMAC4 soap_get_tt__VideoEncoder2Configuration(struct soap *soap, tt__VideoEncoder2Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoder2Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__H264Options2::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__H264Options::soap_default(soap); - this->tt__H264Options2::BitrateRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__H264Options2::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__H264Options2::__anyAttribute); -} - -void tt__H264Options2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntRange(soap, &this->tt__H264Options2::BitrateRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__H264Options2::__any); - this->tt__H264Options::soap_serialize(soap); -#endif -} - -int tt__H264Options2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__H264Options2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Options2(struct soap *soap, const char *tag, int id, const tt__H264Options2 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__H264Options2*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__H264Options2), type ? type : "tt:H264Options2")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__H264Options::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__H264Options::GovLengthRange) - { if (soap_element_empty(soap, "tt:GovLengthRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:GovLengthRange", -1, &a->tt__H264Options::GovLengthRange, "")) - return soap->error; - if (!a->tt__H264Options::FrameRateRange) - { if (soap_element_empty(soap, "tt:FrameRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:FrameRateRange", -1, &a->tt__H264Options::FrameRateRange, "")) - return soap->error; - if (!a->tt__H264Options::EncodingIntervalRange) - { if (soap_element_empty(soap, "tt:EncodingIntervalRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", -1, &a->tt__H264Options::EncodingIntervalRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__H264Profile(soap, "tt:H264ProfilesSupported", -1, &a->tt__H264Options::H264ProfilesSupported, "")) - return soap->error; - if (!a->tt__H264Options2::BitrateRange) - { if (soap_element_empty(soap, "tt:BitrateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:BitrateRange", -1, &a->tt__H264Options2::BitrateRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__H264Options2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__H264Options2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__H264Options2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__H264Options2 * SOAP_FMAC4 soap_in_tt__H264Options2(struct soap *soap, const char *tag, tt__H264Options2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__H264Options2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__H264Options2, sizeof(tt__H264Options2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__H264Options2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__H264Options2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__H264Options2*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_GovLengthRange2 = 1; - size_t soap_flag_FrameRateRange2 = 1; - size_t soap_flag_EncodingIntervalRange2 = 1; - size_t soap_flag_BitrateRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__H264Options::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap_flag_GovLengthRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:GovLengthRange", &a->tt__H264Options::GovLengthRange, "tt:IntRange")) - { soap_flag_GovLengthRange2--; - continue; - } - } - if (soap_flag_FrameRateRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:FrameRateRange", &a->tt__H264Options::FrameRateRange, "tt:IntRange")) - { soap_flag_FrameRateRange2--; - continue; - } - } - if (soap_flag_EncodingIntervalRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", &a->tt__H264Options::EncodingIntervalRange, "tt:IntRange")) - { soap_flag_EncodingIntervalRange2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__H264Profile(soap, "tt:H264ProfilesSupported", &a->tt__H264Options::H264ProfilesSupported, "tt:H264Profile")) - continue; - } - if (soap_flag_BitrateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:BitrateRange", &a->tt__H264Options2::BitrateRange, "tt:IntRange")) - { soap_flag_BitrateRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__H264Options2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__H264Options::ResolutionsAvailable.size() < 1 || !a->tt__H264Options::GovLengthRange || !a->tt__H264Options::FrameRateRange || !a->tt__H264Options::EncodingIntervalRange || a->tt__H264Options::H264ProfilesSupported.size() < 1 || !a->tt__H264Options2::BitrateRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__H264Options2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__H264Options2, SOAP_TYPE_tt__H264Options2, sizeof(tt__H264Options2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__H264Options2 * SOAP_FMAC2 soap_instantiate_tt__H264Options2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__H264Options2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__H264Options2 *p; - size_t k = sizeof(tt__H264Options2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__H264Options2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__H264Options2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__H264Options2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__H264Options2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__H264Options2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__H264Options2(soap, tag ? tag : "tt:H264Options2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__H264Options2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__H264Options2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__H264Options2 * SOAP_FMAC4 soap_get_tt__H264Options2(struct soap *soap, tt__H264Options2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__H264Options2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__H264Options::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__H264Options::ResolutionsAvailable); - this->tt__H264Options::GovLengthRange = NULL; - this->tt__H264Options::FrameRateRange = NULL; - this->tt__H264Options::EncodingIntervalRange = NULL; - soap_default_std__vectorTemplateOftt__H264Profile(soap, &this->tt__H264Options::H264ProfilesSupported); -} - -void tt__H264Options::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__H264Options::ResolutionsAvailable); - soap_serialize_PointerTott__IntRange(soap, &this->tt__H264Options::GovLengthRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__H264Options::FrameRateRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__H264Options::EncodingIntervalRange); - soap_serialize_std__vectorTemplateOftt__H264Profile(soap, &this->tt__H264Options::H264ProfilesSupported); -#endif -} - -int tt__H264Options::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__H264Options(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Options(struct soap *soap, const char *tag, int id, const tt__H264Options *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__H264Options), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__H264Options::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__H264Options::GovLengthRange) - { if (soap_element_empty(soap, "tt:GovLengthRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:GovLengthRange", -1, &a->tt__H264Options::GovLengthRange, "")) - return soap->error; - if (!a->tt__H264Options::FrameRateRange) - { if (soap_element_empty(soap, "tt:FrameRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:FrameRateRange", -1, &a->tt__H264Options::FrameRateRange, "")) - return soap->error; - if (!a->tt__H264Options::EncodingIntervalRange) - { if (soap_element_empty(soap, "tt:EncodingIntervalRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", -1, &a->tt__H264Options::EncodingIntervalRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__H264Profile(soap, "tt:H264ProfilesSupported", -1, &a->tt__H264Options::H264ProfilesSupported, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__H264Options::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__H264Options(soap, tag, this, type); -} - -SOAP_FMAC3 tt__H264Options * SOAP_FMAC4 soap_in_tt__H264Options(struct soap *soap, const char *tag, tt__H264Options *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__H264Options*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__H264Options, sizeof(tt__H264Options), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__H264Options) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__H264Options *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_GovLengthRange1 = 1; - size_t soap_flag_FrameRateRange1 = 1; - size_t soap_flag_EncodingIntervalRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__H264Options::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap_flag_GovLengthRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:GovLengthRange", &a->tt__H264Options::GovLengthRange, "tt:IntRange")) - { soap_flag_GovLengthRange1--; - continue; - } - } - if (soap_flag_FrameRateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:FrameRateRange", &a->tt__H264Options::FrameRateRange, "tt:IntRange")) - { soap_flag_FrameRateRange1--; - continue; - } - } - if (soap_flag_EncodingIntervalRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", &a->tt__H264Options::EncodingIntervalRange, "tt:IntRange")) - { soap_flag_EncodingIntervalRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__H264Profile(soap, "tt:H264ProfilesSupported", &a->tt__H264Options::H264ProfilesSupported, "tt:H264Profile")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__H264Options::ResolutionsAvailable.size() < 1 || !a->tt__H264Options::GovLengthRange || !a->tt__H264Options::FrameRateRange || !a->tt__H264Options::EncodingIntervalRange || a->tt__H264Options::H264ProfilesSupported.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__H264Options *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__H264Options, SOAP_TYPE_tt__H264Options, sizeof(tt__H264Options), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__H264Options * SOAP_FMAC2 soap_instantiate_tt__H264Options(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__H264Options(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "tt:H264Options2")) - return soap_instantiate_tt__H264Options2(soap, n, NULL, NULL, size); - tt__H264Options *p; - size_t k = sizeof(tt__H264Options); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__H264Options, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__H264Options); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__H264Options, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__H264Options location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__H264Options::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__H264Options(soap, tag ? tag : "tt:H264Options", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__H264Options::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__H264Options(soap, this, tag, type); -} - -SOAP_FMAC3 tt__H264Options * SOAP_FMAC4 soap_get_tt__H264Options(struct soap *soap, tt__H264Options *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__H264Options(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Mpeg4Options2::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__Mpeg4Options::soap_default(soap); - this->tt__Mpeg4Options2::BitrateRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Mpeg4Options2::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__Mpeg4Options2::__anyAttribute); -} - -void tt__Mpeg4Options2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntRange(soap, &this->tt__Mpeg4Options2::BitrateRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__Mpeg4Options2::__any); - this->tt__Mpeg4Options::soap_serialize(soap); -#endif -} - -int tt__Mpeg4Options2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Mpeg4Options2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Options2(struct soap *soap, const char *tag, int id, const tt__Mpeg4Options2 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Mpeg4Options2*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Mpeg4Options2), type ? type : "tt:Mpeg4Options2")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__Mpeg4Options::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__Mpeg4Options::GovLengthRange) - { if (soap_element_empty(soap, "tt:GovLengthRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:GovLengthRange", -1, &a->tt__Mpeg4Options::GovLengthRange, "")) - return soap->error; - if (!a->tt__Mpeg4Options::FrameRateRange) - { if (soap_element_empty(soap, "tt:FrameRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:FrameRateRange", -1, &a->tt__Mpeg4Options::FrameRateRange, "")) - return soap->error; - if (!a->tt__Mpeg4Options::EncodingIntervalRange) - { if (soap_element_empty(soap, "tt:EncodingIntervalRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", -1, &a->tt__Mpeg4Options::EncodingIntervalRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__Mpeg4Profile(soap, "tt:Mpeg4ProfilesSupported", -1, &a->tt__Mpeg4Options::Mpeg4ProfilesSupported, "")) - return soap->error; - if (!a->tt__Mpeg4Options2::BitrateRange) - { if (soap_element_empty(soap, "tt:BitrateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:BitrateRange", -1, &a->tt__Mpeg4Options2::BitrateRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__Mpeg4Options2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Mpeg4Options2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Mpeg4Options2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Mpeg4Options2 * SOAP_FMAC4 soap_in_tt__Mpeg4Options2(struct soap *soap, const char *tag, tt__Mpeg4Options2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Mpeg4Options2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Mpeg4Options2, sizeof(tt__Mpeg4Options2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Mpeg4Options2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Mpeg4Options2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Mpeg4Options2*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_GovLengthRange2 = 1; - size_t soap_flag_FrameRateRange2 = 1; - size_t soap_flag_EncodingIntervalRange2 = 1; - size_t soap_flag_BitrateRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__Mpeg4Options::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap_flag_GovLengthRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:GovLengthRange", &a->tt__Mpeg4Options::GovLengthRange, "tt:IntRange")) - { soap_flag_GovLengthRange2--; - continue; - } - } - if (soap_flag_FrameRateRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:FrameRateRange", &a->tt__Mpeg4Options::FrameRateRange, "tt:IntRange")) - { soap_flag_FrameRateRange2--; - continue; - } - } - if (soap_flag_EncodingIntervalRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", &a->tt__Mpeg4Options::EncodingIntervalRange, "tt:IntRange")) - { soap_flag_EncodingIntervalRange2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__Mpeg4Profile(soap, "tt:Mpeg4ProfilesSupported", &a->tt__Mpeg4Options::Mpeg4ProfilesSupported, "tt:Mpeg4Profile")) - continue; - } - if (soap_flag_BitrateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:BitrateRange", &a->tt__Mpeg4Options2::BitrateRange, "tt:IntRange")) - { soap_flag_BitrateRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__Mpeg4Options2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__Mpeg4Options::ResolutionsAvailable.size() < 1 || !a->tt__Mpeg4Options::GovLengthRange || !a->tt__Mpeg4Options::FrameRateRange || !a->tt__Mpeg4Options::EncodingIntervalRange || a->tt__Mpeg4Options::Mpeg4ProfilesSupported.size() < 1 || !a->tt__Mpeg4Options2::BitrateRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Mpeg4Options2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Mpeg4Options2, SOAP_TYPE_tt__Mpeg4Options2, sizeof(tt__Mpeg4Options2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Mpeg4Options2 * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Options2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Mpeg4Options2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Mpeg4Options2 *p; - size_t k = sizeof(tt__Mpeg4Options2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Mpeg4Options2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Mpeg4Options2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Mpeg4Options2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Mpeg4Options2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Mpeg4Options2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Mpeg4Options2(soap, tag ? tag : "tt:Mpeg4Options2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Mpeg4Options2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Mpeg4Options2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Mpeg4Options2 * SOAP_FMAC4 soap_get_tt__Mpeg4Options2(struct soap *soap, tt__Mpeg4Options2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Mpeg4Options2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Mpeg4Options::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__Mpeg4Options::ResolutionsAvailable); - this->tt__Mpeg4Options::GovLengthRange = NULL; - this->tt__Mpeg4Options::FrameRateRange = NULL; - this->tt__Mpeg4Options::EncodingIntervalRange = NULL; - soap_default_std__vectorTemplateOftt__Mpeg4Profile(soap, &this->tt__Mpeg4Options::Mpeg4ProfilesSupported); -} - -void tt__Mpeg4Options::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__Mpeg4Options::ResolutionsAvailable); - soap_serialize_PointerTott__IntRange(soap, &this->tt__Mpeg4Options::GovLengthRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__Mpeg4Options::FrameRateRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__Mpeg4Options::EncodingIntervalRange); - soap_serialize_std__vectorTemplateOftt__Mpeg4Profile(soap, &this->tt__Mpeg4Options::Mpeg4ProfilesSupported); -#endif -} - -int tt__Mpeg4Options::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Mpeg4Options(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Options(struct soap *soap, const char *tag, int id, const tt__Mpeg4Options *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Mpeg4Options), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__Mpeg4Options::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__Mpeg4Options::GovLengthRange) - { if (soap_element_empty(soap, "tt:GovLengthRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:GovLengthRange", -1, &a->tt__Mpeg4Options::GovLengthRange, "")) - return soap->error; - if (!a->tt__Mpeg4Options::FrameRateRange) - { if (soap_element_empty(soap, "tt:FrameRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:FrameRateRange", -1, &a->tt__Mpeg4Options::FrameRateRange, "")) - return soap->error; - if (!a->tt__Mpeg4Options::EncodingIntervalRange) - { if (soap_element_empty(soap, "tt:EncodingIntervalRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", -1, &a->tt__Mpeg4Options::EncodingIntervalRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__Mpeg4Profile(soap, "tt:Mpeg4ProfilesSupported", -1, &a->tt__Mpeg4Options::Mpeg4ProfilesSupported, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Mpeg4Options::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Mpeg4Options(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Mpeg4Options * SOAP_FMAC4 soap_in_tt__Mpeg4Options(struct soap *soap, const char *tag, tt__Mpeg4Options *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Mpeg4Options*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Mpeg4Options, sizeof(tt__Mpeg4Options), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Mpeg4Options) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Mpeg4Options *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_GovLengthRange1 = 1; - size_t soap_flag_FrameRateRange1 = 1; - size_t soap_flag_EncodingIntervalRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__Mpeg4Options::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap_flag_GovLengthRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:GovLengthRange", &a->tt__Mpeg4Options::GovLengthRange, "tt:IntRange")) - { soap_flag_GovLengthRange1--; - continue; - } - } - if (soap_flag_FrameRateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:FrameRateRange", &a->tt__Mpeg4Options::FrameRateRange, "tt:IntRange")) - { soap_flag_FrameRateRange1--; - continue; - } - } - if (soap_flag_EncodingIntervalRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", &a->tt__Mpeg4Options::EncodingIntervalRange, "tt:IntRange")) - { soap_flag_EncodingIntervalRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__Mpeg4Profile(soap, "tt:Mpeg4ProfilesSupported", &a->tt__Mpeg4Options::Mpeg4ProfilesSupported, "tt:Mpeg4Profile")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__Mpeg4Options::ResolutionsAvailable.size() < 1 || !a->tt__Mpeg4Options::GovLengthRange || !a->tt__Mpeg4Options::FrameRateRange || !a->tt__Mpeg4Options::EncodingIntervalRange || a->tt__Mpeg4Options::Mpeg4ProfilesSupported.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Mpeg4Options *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Mpeg4Options, SOAP_TYPE_tt__Mpeg4Options, sizeof(tt__Mpeg4Options), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Mpeg4Options * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Options(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Mpeg4Options(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "tt:Mpeg4Options2")) - return soap_instantiate_tt__Mpeg4Options2(soap, n, NULL, NULL, size); - tt__Mpeg4Options *p; - size_t k = sizeof(tt__Mpeg4Options); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Mpeg4Options, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Mpeg4Options); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Mpeg4Options, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Mpeg4Options location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Mpeg4Options::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Mpeg4Options(soap, tag ? tag : "tt:Mpeg4Options", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Mpeg4Options::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Mpeg4Options(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Mpeg4Options * SOAP_FMAC4 soap_get_tt__Mpeg4Options(struct soap *soap, tt__Mpeg4Options *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Mpeg4Options(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__JpegOptions2::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__JpegOptions::soap_default(soap); - this->tt__JpegOptions2::BitrateRange = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__JpegOptions2::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__JpegOptions2::__anyAttribute); -} - -void tt__JpegOptions2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntRange(soap, &this->tt__JpegOptions2::BitrateRange); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__JpegOptions2::__any); - this->tt__JpegOptions::soap_serialize(soap); -#endif -} - -int tt__JpegOptions2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__JpegOptions2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JpegOptions2(struct soap *soap, const char *tag, int id, const tt__JpegOptions2 *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__JpegOptions2*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__JpegOptions2), type ? type : "tt:JpegOptions2")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__JpegOptions::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__JpegOptions::FrameRateRange) - { if (soap_element_empty(soap, "tt:FrameRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:FrameRateRange", -1, &a->tt__JpegOptions::FrameRateRange, "")) - return soap->error; - if (!a->tt__JpegOptions::EncodingIntervalRange) - { if (soap_element_empty(soap, "tt:EncodingIntervalRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", -1, &a->tt__JpegOptions::EncodingIntervalRange, "")) - return soap->error; - if (!a->tt__JpegOptions2::BitrateRange) - { if (soap_element_empty(soap, "tt:BitrateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:BitrateRange", -1, &a->tt__JpegOptions2::BitrateRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__JpegOptions2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__JpegOptions2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__JpegOptions2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__JpegOptions2 * SOAP_FMAC4 soap_in_tt__JpegOptions2(struct soap *soap, const char *tag, tt__JpegOptions2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__JpegOptions2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__JpegOptions2, sizeof(tt__JpegOptions2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__JpegOptions2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__JpegOptions2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__JpegOptions2*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FrameRateRange2 = 1; - size_t soap_flag_EncodingIntervalRange2 = 1; - size_t soap_flag_BitrateRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__JpegOptions::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap_flag_FrameRateRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:FrameRateRange", &a->tt__JpegOptions::FrameRateRange, "tt:IntRange")) - { soap_flag_FrameRateRange2--; - continue; - } - } - if (soap_flag_EncodingIntervalRange2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", &a->tt__JpegOptions::EncodingIntervalRange, "tt:IntRange")) - { soap_flag_EncodingIntervalRange2--; - continue; - } - } - if (soap_flag_BitrateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:BitrateRange", &a->tt__JpegOptions2::BitrateRange, "tt:IntRange")) - { soap_flag_BitrateRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__JpegOptions2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__JpegOptions::ResolutionsAvailable.size() < 1 || !a->tt__JpegOptions::FrameRateRange || !a->tt__JpegOptions::EncodingIntervalRange || !a->tt__JpegOptions2::BitrateRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__JpegOptions2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__JpegOptions2, SOAP_TYPE_tt__JpegOptions2, sizeof(tt__JpegOptions2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__JpegOptions2 * SOAP_FMAC2 soap_instantiate_tt__JpegOptions2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__JpegOptions2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__JpegOptions2 *p; - size_t k = sizeof(tt__JpegOptions2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__JpegOptions2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__JpegOptions2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__JpegOptions2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__JpegOptions2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__JpegOptions2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__JpegOptions2(soap, tag ? tag : "tt:JpegOptions2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__JpegOptions2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__JpegOptions2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__JpegOptions2 * SOAP_FMAC4 soap_get_tt__JpegOptions2(struct soap *soap, tt__JpegOptions2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__JpegOptions2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__JpegOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__JpegOptions::ResolutionsAvailable); - this->tt__JpegOptions::FrameRateRange = NULL; - this->tt__JpegOptions::EncodingIntervalRange = NULL; -} - -void tt__JpegOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution(soap, &this->tt__JpegOptions::ResolutionsAvailable); - soap_serialize_PointerTott__IntRange(soap, &this->tt__JpegOptions::FrameRateRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__JpegOptions::EncodingIntervalRange); -#endif -} - -int tt__JpegOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__JpegOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JpegOptions(struct soap *soap, const char *tag, int id, const tt__JpegOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__JpegOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", -1, &a->tt__JpegOptions::ResolutionsAvailable, "")) - return soap->error; - if (!a->tt__JpegOptions::FrameRateRange) - { if (soap_element_empty(soap, "tt:FrameRateRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:FrameRateRange", -1, &a->tt__JpegOptions::FrameRateRange, "")) - return soap->error; - if (!a->tt__JpegOptions::EncodingIntervalRange) - { if (soap_element_empty(soap, "tt:EncodingIntervalRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", -1, &a->tt__JpegOptions::EncodingIntervalRange, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__JpegOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__JpegOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__JpegOptions * SOAP_FMAC4 soap_in_tt__JpegOptions(struct soap *soap, const char *tag, tt__JpegOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__JpegOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__JpegOptions, sizeof(tt__JpegOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__JpegOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__JpegOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FrameRateRange1 = 1; - size_t soap_flag_EncodingIntervalRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__VideoResolution(soap, "tt:ResolutionsAvailable", &a->tt__JpegOptions::ResolutionsAvailable, "tt:VideoResolution")) - continue; - } - if (soap_flag_FrameRateRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:FrameRateRange", &a->tt__JpegOptions::FrameRateRange, "tt:IntRange")) - { soap_flag_FrameRateRange1--; - continue; - } - } - if (soap_flag_EncodingIntervalRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:EncodingIntervalRange", &a->tt__JpegOptions::EncodingIntervalRange, "tt:IntRange")) - { soap_flag_EncodingIntervalRange1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__JpegOptions::ResolutionsAvailable.size() < 1 || !a->tt__JpegOptions::FrameRateRange || !a->tt__JpegOptions::EncodingIntervalRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__JpegOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__JpegOptions, SOAP_TYPE_tt__JpegOptions, sizeof(tt__JpegOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__JpegOptions * SOAP_FMAC2 soap_instantiate_tt__JpegOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__JpegOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "tt:JpegOptions2")) - return soap_instantiate_tt__JpegOptions2(soap, n, NULL, NULL, size); - tt__JpegOptions *p; - size_t k = sizeof(tt__JpegOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__JpegOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__JpegOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__JpegOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__JpegOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__JpegOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__JpegOptions(soap, tag ? tag : "tt:JpegOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__JpegOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__JpegOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__JpegOptions * SOAP_FMAC4 soap_get_tt__JpegOptions(struct soap *soap, tt__JpegOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__JpegOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncoderOptionsExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoderOptionsExtension2::__any); -} - -void tt__VideoEncoderOptionsExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoderOptionsExtension2::__any); -#endif -} - -int tt__VideoEncoderOptionsExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncoderOptionsExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderOptionsExtension2(struct soap *soap, const char *tag, int id, const tt__VideoEncoderOptionsExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncoderOptionsExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoEncoderOptionsExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoEncoderOptionsExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncoderOptionsExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncoderOptionsExtension2 * SOAP_FMAC4 soap_in_tt__VideoEncoderOptionsExtension2(struct soap *soap, const char *tag, tt__VideoEncoderOptionsExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoEncoderOptionsExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoderOptionsExtension2, sizeof(tt__VideoEncoderOptionsExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncoderOptionsExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoEncoderOptionsExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoEncoderOptionsExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoEncoderOptionsExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncoderOptionsExtension2, SOAP_TYPE_tt__VideoEncoderOptionsExtension2, sizeof(tt__VideoEncoderOptionsExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoEncoderOptionsExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderOptionsExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncoderOptionsExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncoderOptionsExtension2 *p; - size_t k = sizeof(tt__VideoEncoderOptionsExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncoderOptionsExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncoderOptionsExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncoderOptionsExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncoderOptionsExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncoderOptionsExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncoderOptionsExtension2(soap, tag ? tag : "tt:VideoEncoderOptionsExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncoderOptionsExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncoderOptionsExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncoderOptionsExtension2 * SOAP_FMAC4 soap_get_tt__VideoEncoderOptionsExtension2(struct soap *soap, tt__VideoEncoderOptionsExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoderOptionsExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncoderOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoderOptionsExtension::__any); - this->tt__VideoEncoderOptionsExtension::JPEG = NULL; - this->tt__VideoEncoderOptionsExtension::MPEG4 = NULL; - this->tt__VideoEncoderOptionsExtension::H264 = NULL; - this->tt__VideoEncoderOptionsExtension::Extension = NULL; -} - -void tt__VideoEncoderOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoderOptionsExtension::__any); - soap_serialize_PointerTott__JpegOptions2(soap, &this->tt__VideoEncoderOptionsExtension::JPEG); - soap_serialize_PointerTott__Mpeg4Options2(soap, &this->tt__VideoEncoderOptionsExtension::MPEG4); - soap_serialize_PointerTott__H264Options2(soap, &this->tt__VideoEncoderOptionsExtension::H264); - soap_serialize_PointerTott__VideoEncoderOptionsExtension2(soap, &this->tt__VideoEncoderOptionsExtension::Extension); -#endif -} - -int tt__VideoEncoderOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncoderOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderOptionsExtension(struct soap *soap, const char *tag, int id, const tt__VideoEncoderOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncoderOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoEncoderOptionsExtension::__any, "")) - return soap->error; - if (soap_out_PointerTott__JpegOptions2(soap, "tt:JPEG", -1, &a->tt__VideoEncoderOptionsExtension::JPEG, "")) - return soap->error; - if (soap_out_PointerTott__Mpeg4Options2(soap, "tt:MPEG4", -1, &a->tt__VideoEncoderOptionsExtension::MPEG4, "")) - return soap->error; - if (soap_out_PointerTott__H264Options2(soap, "tt:H264", -1, &a->tt__VideoEncoderOptionsExtension::H264, "")) - return soap->error; - if (soap_out_PointerTott__VideoEncoderOptionsExtension2(soap, "tt:Extension", -1, &a->tt__VideoEncoderOptionsExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoEncoderOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncoderOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncoderOptionsExtension * SOAP_FMAC4 soap_in_tt__VideoEncoderOptionsExtension(struct soap *soap, const char *tag, tt__VideoEncoderOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoEncoderOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoderOptionsExtension, sizeof(tt__VideoEncoderOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncoderOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoEncoderOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_JPEG1 = 1; - size_t soap_flag_MPEG41 = 1; - size_t soap_flag_H2641 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_JPEG1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__JpegOptions2(soap, "tt:JPEG", &a->tt__VideoEncoderOptionsExtension::JPEG, "tt:JpegOptions2")) - { soap_flag_JPEG1--; - continue; - } - } - if (soap_flag_MPEG41 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Mpeg4Options2(soap, "tt:MPEG4", &a->tt__VideoEncoderOptionsExtension::MPEG4, "tt:Mpeg4Options2")) - { soap_flag_MPEG41--; - continue; - } - } - if (soap_flag_H2641 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__H264Options2(soap, "tt:H264", &a->tt__VideoEncoderOptionsExtension::H264, "tt:H264Options2")) - { soap_flag_H2641--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoEncoderOptionsExtension2(soap, "tt:Extension", &a->tt__VideoEncoderOptionsExtension::Extension, "tt:VideoEncoderOptionsExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoEncoderOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoEncoderOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncoderOptionsExtension, SOAP_TYPE_tt__VideoEncoderOptionsExtension, sizeof(tt__VideoEncoderOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoEncoderOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncoderOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncoderOptionsExtension *p; - size_t k = sizeof(tt__VideoEncoderOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncoderOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncoderOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncoderOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncoderOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncoderOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncoderOptionsExtension(soap, tag ? tag : "tt:VideoEncoderOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncoderOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncoderOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncoderOptionsExtension * SOAP_FMAC4 soap_get_tt__VideoEncoderOptionsExtension(struct soap *soap, tt__VideoEncoderOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoderOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncoderConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__VideoEncoderConfigurationOptions::QualityRange = NULL; - this->tt__VideoEncoderConfigurationOptions::JPEG = NULL; - this->tt__VideoEncoderConfigurationOptions::MPEG4 = NULL; - this->tt__VideoEncoderConfigurationOptions::H264 = NULL; - this->tt__VideoEncoderConfigurationOptions::Extension = NULL; - this->tt__VideoEncoderConfigurationOptions::GuaranteedFrameRateSupported = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoEncoderConfigurationOptions::__anyAttribute); -} - -void tt__VideoEncoderConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntRange(soap, &this->tt__VideoEncoderConfigurationOptions::QualityRange); - soap_serialize_PointerTott__JpegOptions(soap, &this->tt__VideoEncoderConfigurationOptions::JPEG); - soap_serialize_PointerTott__Mpeg4Options(soap, &this->tt__VideoEncoderConfigurationOptions::MPEG4); - soap_serialize_PointerTott__H264Options(soap, &this->tt__VideoEncoderConfigurationOptions::H264); - soap_serialize_PointerTott__VideoEncoderOptionsExtension(soap, &this->tt__VideoEncoderConfigurationOptions::Extension); -#endif -} - -int tt__VideoEncoderConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncoderConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__VideoEncoderConfigurationOptions *a, const char *type) -{ - if (((tt__VideoEncoderConfigurationOptions*)a)->GuaranteedFrameRateSupported) - { soap_set_attr(soap, "GuaranteedFrameRateSupported", soap_bool2s(soap, *((tt__VideoEncoderConfigurationOptions*)a)->GuaranteedFrameRateSupported), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoEncoderConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncoderConfigurationOptions), type)) - return soap->error; - if (!a->tt__VideoEncoderConfigurationOptions::QualityRange) - { if (soap_element_empty(soap, "tt:QualityRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:QualityRange", -1, &a->tt__VideoEncoderConfigurationOptions::QualityRange, "")) - return soap->error; - if (soap_out_PointerTott__JpegOptions(soap, "tt:JPEG", -1, &a->tt__VideoEncoderConfigurationOptions::JPEG, "")) - return soap->error; - if (soap_out_PointerTott__Mpeg4Options(soap, "tt:MPEG4", -1, &a->tt__VideoEncoderConfigurationOptions::MPEG4, "")) - return soap->error; - if (soap_out_PointerTott__H264Options(soap, "tt:H264", -1, &a->tt__VideoEncoderConfigurationOptions::H264, "")) - return soap->error; - if (soap_out_PointerTott__VideoEncoderOptionsExtension(soap, "tt:Extension", -1, &a->tt__VideoEncoderConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoEncoderConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncoderConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoEncoderConfigurationOptions(struct soap *soap, const char *tag, tt__VideoEncoderConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoEncoderConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoderConfigurationOptions, sizeof(tt__VideoEncoderConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncoderConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoEncoderConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "GuaranteedFrameRateSupported", 5, 0); - if (t) - { - if (!(((tt__VideoEncoderConfigurationOptions*)a)->GuaranteedFrameRateSupported = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__VideoEncoderConfigurationOptions*)a)->GuaranteedFrameRateSupported)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoEncoderConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_QualityRange1 = 1; - size_t soap_flag_JPEG1 = 1; - size_t soap_flag_MPEG41 = 1; - size_t soap_flag_H2641 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_QualityRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:QualityRange", &a->tt__VideoEncoderConfigurationOptions::QualityRange, "tt:IntRange")) - { soap_flag_QualityRange1--; - continue; - } - } - if (soap_flag_JPEG1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__JpegOptions(soap, "tt:JPEG", &a->tt__VideoEncoderConfigurationOptions::JPEG, "tt:JpegOptions")) - { soap_flag_JPEG1--; - continue; - } - } - if (soap_flag_MPEG41 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Mpeg4Options(soap, "tt:MPEG4", &a->tt__VideoEncoderConfigurationOptions::MPEG4, "tt:Mpeg4Options")) - { soap_flag_MPEG41--; - continue; - } - } - if (soap_flag_H2641 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__H264Options(soap, "tt:H264", &a->tt__VideoEncoderConfigurationOptions::H264, "tt:H264Options")) - { soap_flag_H2641--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoEncoderOptionsExtension(soap, "tt:Extension", &a->tt__VideoEncoderConfigurationOptions::Extension, "tt:VideoEncoderOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__VideoEncoderConfigurationOptions::QualityRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoEncoderConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncoderConfigurationOptions, SOAP_TYPE_tt__VideoEncoderConfigurationOptions, sizeof(tt__VideoEncoderConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncoderConfigurationOptions *p; - size_t k = sizeof(tt__VideoEncoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncoderConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncoderConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncoderConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncoderConfigurationOptions(soap, tag ? tag : "tt:VideoEncoderConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncoderConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncoderConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoEncoderConfigurationOptions(struct soap *soap, tt__VideoEncoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__H264Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__H264Configuration::GovLength); - soap_default_tt__H264Profile(soap, &this->tt__H264Configuration::H264Profile); -} - -void tt__H264Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__H264Configuration::GovLength, SOAP_TYPE_int); -#endif -} - -int tt__H264Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__H264Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Configuration(struct soap *soap, const char *tag, int id, const tt__H264Configuration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__H264Configuration), type)) - return soap->error; - if (soap_out_int(soap, "tt:GovLength", -1, &a->tt__H264Configuration::GovLength, "")) - return soap->error; - if (soap_out_tt__H264Profile(soap, "tt:H264Profile", -1, &a->tt__H264Configuration::H264Profile, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__H264Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__H264Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__H264Configuration * SOAP_FMAC4 soap_in_tt__H264Configuration(struct soap *soap, const char *tag, tt__H264Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__H264Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__H264Configuration, sizeof(tt__H264Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__H264Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__H264Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_GovLength1 = 1; - size_t soap_flag_H264Profile1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_GovLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:GovLength", &a->tt__H264Configuration::GovLength, "xsd:int")) - { soap_flag_GovLength1--; - continue; - } - } - if (soap_flag_H264Profile1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__H264Profile(soap, "tt:H264Profile", &a->tt__H264Configuration::H264Profile, "tt:H264Profile")) - { soap_flag_H264Profile1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_GovLength1 > 0 || soap_flag_H264Profile1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__H264Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__H264Configuration, SOAP_TYPE_tt__H264Configuration, sizeof(tt__H264Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__H264Configuration * SOAP_FMAC2 soap_instantiate_tt__H264Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__H264Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__H264Configuration *p; - size_t k = sizeof(tt__H264Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__H264Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__H264Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__H264Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__H264Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__H264Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__H264Configuration(soap, tag ? tag : "tt:H264Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__H264Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__H264Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__H264Configuration * SOAP_FMAC4 soap_get_tt__H264Configuration(struct soap *soap, tt__H264Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__H264Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Mpeg4Configuration::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__Mpeg4Configuration::GovLength); - soap_default_tt__Mpeg4Profile(soap, &this->tt__Mpeg4Configuration::Mpeg4Profile); -} - -void tt__Mpeg4Configuration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Mpeg4Configuration::GovLength, SOAP_TYPE_int); -#endif -} - -int tt__Mpeg4Configuration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Mpeg4Configuration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Configuration(struct soap *soap, const char *tag, int id, const tt__Mpeg4Configuration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Mpeg4Configuration), type)) - return soap->error; - if (soap_out_int(soap, "tt:GovLength", -1, &a->tt__Mpeg4Configuration::GovLength, "")) - return soap->error; - if (soap_out_tt__Mpeg4Profile(soap, "tt:Mpeg4Profile", -1, &a->tt__Mpeg4Configuration::Mpeg4Profile, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Mpeg4Configuration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Mpeg4Configuration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Mpeg4Configuration * SOAP_FMAC4 soap_in_tt__Mpeg4Configuration(struct soap *soap, const char *tag, tt__Mpeg4Configuration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Mpeg4Configuration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Mpeg4Configuration, sizeof(tt__Mpeg4Configuration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Mpeg4Configuration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Mpeg4Configuration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_GovLength1 = 1; - size_t soap_flag_Mpeg4Profile1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_GovLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:GovLength", &a->tt__Mpeg4Configuration::GovLength, "xsd:int")) - { soap_flag_GovLength1--; - continue; - } - } - if (soap_flag_Mpeg4Profile1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__Mpeg4Profile(soap, "tt:Mpeg4Profile", &a->tt__Mpeg4Configuration::Mpeg4Profile, "tt:Mpeg4Profile")) - { soap_flag_Mpeg4Profile1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_GovLength1 > 0 || soap_flag_Mpeg4Profile1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Mpeg4Configuration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Mpeg4Configuration, SOAP_TYPE_tt__Mpeg4Configuration, sizeof(tt__Mpeg4Configuration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Mpeg4Configuration * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Configuration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Mpeg4Configuration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Mpeg4Configuration *p; - size_t k = sizeof(tt__Mpeg4Configuration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Mpeg4Configuration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Mpeg4Configuration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Mpeg4Configuration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Mpeg4Configuration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Mpeg4Configuration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Mpeg4Configuration(soap, tag ? tag : "tt:Mpeg4Configuration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Mpeg4Configuration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Mpeg4Configuration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Mpeg4Configuration * SOAP_FMAC4 soap_get_tt__Mpeg4Configuration(struct soap *soap, tt__Mpeg4Configuration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Mpeg4Configuration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoRateControl::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__VideoRateControl::FrameRateLimit); - soap_default_int(soap, &this->tt__VideoRateControl::EncodingInterval); - soap_default_int(soap, &this->tt__VideoRateControl::BitrateLimit); -} - -void tt__VideoRateControl::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoRateControl::FrameRateLimit, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__VideoRateControl::EncodingInterval, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__VideoRateControl::BitrateLimit, SOAP_TYPE_int); -#endif -} - -int tt__VideoRateControl::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoRateControl(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoRateControl(struct soap *soap, const char *tag, int id, const tt__VideoRateControl *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoRateControl), type)) - return soap->error; - if (soap_out_int(soap, "tt:FrameRateLimit", -1, &a->tt__VideoRateControl::FrameRateLimit, "")) - return soap->error; - if (soap_out_int(soap, "tt:EncodingInterval", -1, &a->tt__VideoRateControl::EncodingInterval, "")) - return soap->error; - if (soap_out_int(soap, "tt:BitrateLimit", -1, &a->tt__VideoRateControl::BitrateLimit, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoRateControl::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoRateControl(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoRateControl * SOAP_FMAC4 soap_in_tt__VideoRateControl(struct soap *soap, const char *tag, tt__VideoRateControl *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoRateControl*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoRateControl, sizeof(tt__VideoRateControl), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoRateControl) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoRateControl *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_FrameRateLimit1 = 1; - size_t soap_flag_EncodingInterval1 = 1; - size_t soap_flag_BitrateLimit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_FrameRateLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:FrameRateLimit", &a->tt__VideoRateControl::FrameRateLimit, "xsd:int")) - { soap_flag_FrameRateLimit1--; - continue; - } - } - if (soap_flag_EncodingInterval1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:EncodingInterval", &a->tt__VideoRateControl::EncodingInterval, "xsd:int")) - { soap_flag_EncodingInterval1--; - continue; - } - } - if (soap_flag_BitrateLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:BitrateLimit", &a->tt__VideoRateControl::BitrateLimit, "xsd:int")) - { soap_flag_BitrateLimit1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_FrameRateLimit1 > 0 || soap_flag_EncodingInterval1 > 0 || soap_flag_BitrateLimit1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoRateControl *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoRateControl, SOAP_TYPE_tt__VideoRateControl, sizeof(tt__VideoRateControl), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoRateControl * SOAP_FMAC2 soap_instantiate_tt__VideoRateControl(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoRateControl(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoRateControl *p; - size_t k = sizeof(tt__VideoRateControl); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoRateControl, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoRateControl); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoRateControl, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoRateControl location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoRateControl::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoRateControl(soap, tag ? tag : "tt:VideoRateControl", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoRateControl::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoRateControl(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoRateControl * SOAP_FMAC4 soap_get_tt__VideoRateControl(struct soap *soap, tt__VideoRateControl *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoRateControl(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoResolution::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__VideoResolution::Width); - soap_default_int(soap, &this->tt__VideoResolution::Height); -} - -void tt__VideoResolution::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoResolution::Width, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__VideoResolution::Height, SOAP_TYPE_int); -#endif -} - -int tt__VideoResolution::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoResolution(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoResolution(struct soap *soap, const char *tag, int id, const tt__VideoResolution *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoResolution), type)) - return soap->error; - if (soap_out_int(soap, "tt:Width", -1, &a->tt__VideoResolution::Width, "")) - return soap->error; - if (soap_out_int(soap, "tt:Height", -1, &a->tt__VideoResolution::Height, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoResolution::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoResolution(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoResolution * SOAP_FMAC4 soap_in_tt__VideoResolution(struct soap *soap, const char *tag, tt__VideoResolution *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoResolution*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoResolution, sizeof(tt__VideoResolution), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoResolution) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoResolution *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Width1 = 1; - size_t soap_flag_Height1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Width1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Width", &a->tt__VideoResolution::Width, "xsd:int")) - { soap_flag_Width1--; - continue; - } - } - if (soap_flag_Height1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Height", &a->tt__VideoResolution::Height, "xsd:int")) - { soap_flag_Height1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Width1 > 0 || soap_flag_Height1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoResolution *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoResolution, SOAP_TYPE_tt__VideoResolution, sizeof(tt__VideoResolution), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoResolution * SOAP_FMAC2 soap_instantiate_tt__VideoResolution(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoResolution(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoResolution *p; - size_t k = sizeof(tt__VideoResolution); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoResolution, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoResolution); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoResolution, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoResolution location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoResolution::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoResolution(soap, tag ? tag : "tt:VideoResolution", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoResolution::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoResolution(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoResolution * SOAP_FMAC4 soap_get_tt__VideoResolution(struct soap *soap, tt__VideoResolution *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoResolution(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoEncoderConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__VideoEncoding(soap, &this->tt__VideoEncoderConfiguration::Encoding); - this->tt__VideoEncoderConfiguration::Resolution = NULL; - soap_default_float(soap, &this->tt__VideoEncoderConfiguration::Quality); - this->tt__VideoEncoderConfiguration::RateControl = NULL; - this->tt__VideoEncoderConfiguration::MPEG4 = NULL; - this->tt__VideoEncoderConfiguration::H264 = NULL; - this->tt__VideoEncoderConfiguration::Multicast = NULL; - soap_default_xsd__duration(soap, &this->tt__VideoEncoderConfiguration::SessionTimeout); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoderConfiguration::__any); - this->tt__VideoEncoderConfiguration::GuaranteedFrameRate = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoEncoderConfiguration::__anyAttribute); -} - -void tt__VideoEncoderConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__VideoResolution(soap, &this->tt__VideoEncoderConfiguration::Resolution); - soap_embedded(soap, &this->tt__VideoEncoderConfiguration::Quality, SOAP_TYPE_float); - soap_serialize_PointerTott__VideoRateControl(soap, &this->tt__VideoEncoderConfiguration::RateControl); - soap_serialize_PointerTott__Mpeg4Configuration(soap, &this->tt__VideoEncoderConfiguration::MPEG4); - soap_serialize_PointerTott__H264Configuration(soap, &this->tt__VideoEncoderConfiguration::H264); - soap_serialize_PointerTott__MulticastConfiguration(soap, &this->tt__VideoEncoderConfiguration::Multicast); - soap_embedded(soap, &this->tt__VideoEncoderConfiguration::SessionTimeout, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__VideoEncoderConfiguration::SessionTimeout); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoEncoderConfiguration::__any); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__VideoEncoderConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoEncoderConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const tt__VideoEncoderConfiguration *a, const char *type) -{ - if (((tt__VideoEncoderConfiguration*)a)->GuaranteedFrameRate) - { soap_set_attr(soap, "GuaranteedFrameRate", soap_bool2s(soap, *((tt__VideoEncoderConfiguration*)a)->GuaranteedFrameRate), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoEncoderConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoEncoderConfiguration), type ? type : "tt:VideoEncoderConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__VideoEncoding(soap, "tt:Encoding", -1, &a->tt__VideoEncoderConfiguration::Encoding, "")) - return soap->error; - if (!a->tt__VideoEncoderConfiguration::Resolution) - { if (soap_element_empty(soap, "tt:Resolution", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoResolution(soap, "tt:Resolution", -1, &a->tt__VideoEncoderConfiguration::Resolution, "")) - return soap->error; - if (soap_out_float(soap, "tt:Quality", -1, &a->tt__VideoEncoderConfiguration::Quality, "")) - return soap->error; - if (soap_out_PointerTott__VideoRateControl(soap, "tt:RateControl", -1, &a->tt__VideoEncoderConfiguration::RateControl, "")) - return soap->error; - if (soap_out_PointerTott__Mpeg4Configuration(soap, "tt:MPEG4", -1, &a->tt__VideoEncoderConfiguration::MPEG4, "")) - return soap->error; - if (soap_out_PointerTott__H264Configuration(soap, "tt:H264", -1, &a->tt__VideoEncoderConfiguration::H264, "")) - return soap->error; - if (!a->tt__VideoEncoderConfiguration::Multicast) - { if (soap_element_empty(soap, "tt:Multicast", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__MulticastConfiguration(soap, "tt:Multicast", -1, &a->tt__VideoEncoderConfiguration::Multicast, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:SessionTimeout", -1, &a->tt__VideoEncoderConfiguration::SessionTimeout, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoEncoderConfiguration::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoEncoderConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoEncoderConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoEncoderConfiguration * SOAP_FMAC4 soap_in_tt__VideoEncoderConfiguration(struct soap *soap, const char *tag, tt__VideoEncoderConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoEncoderConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoEncoderConfiguration, sizeof(tt__VideoEncoderConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoEncoderConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoEncoderConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "GuaranteedFrameRate", 5, 0); - if (t) - { - if (!(((tt__VideoEncoderConfiguration*)a)->GuaranteedFrameRate = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__VideoEncoderConfiguration*)a)->GuaranteedFrameRate)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoEncoderConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_Encoding1 = 1; - size_t soap_flag_Resolution1 = 1; - size_t soap_flag_Quality1 = 1; - size_t soap_flag_RateControl1 = 1; - size_t soap_flag_MPEG41 = 1; - size_t soap_flag_H2641 = 1; - size_t soap_flag_Multicast1 = 1; - size_t soap_flag_SessionTimeout1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_Encoding1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__VideoEncoding(soap, "tt:Encoding", &a->tt__VideoEncoderConfiguration::Encoding, "tt:VideoEncoding")) - { soap_flag_Encoding1--; - continue; - } - } - if (soap_flag_Resolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoResolution(soap, "tt:Resolution", &a->tt__VideoEncoderConfiguration::Resolution, "tt:VideoResolution")) - { soap_flag_Resolution1--; - continue; - } - } - if (soap_flag_Quality1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Quality", &a->tt__VideoEncoderConfiguration::Quality, "xsd:float")) - { soap_flag_Quality1--; - continue; - } - } - if (soap_flag_RateControl1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoRateControl(soap, "tt:RateControl", &a->tt__VideoEncoderConfiguration::RateControl, "tt:VideoRateControl")) - { soap_flag_RateControl1--; - continue; - } - } - if (soap_flag_MPEG41 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Mpeg4Configuration(soap, "tt:MPEG4", &a->tt__VideoEncoderConfiguration::MPEG4, "tt:Mpeg4Configuration")) - { soap_flag_MPEG41--; - continue; - } - } - if (soap_flag_H2641 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__H264Configuration(soap, "tt:H264", &a->tt__VideoEncoderConfiguration::H264, "tt:H264Configuration")) - { soap_flag_H2641--; - continue; - } - } - if (soap_flag_Multicast1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MulticastConfiguration(soap, "tt:Multicast", &a->tt__VideoEncoderConfiguration::Multicast, "tt:MulticastConfiguration")) - { soap_flag_Multicast1--; - continue; - } - } - if (soap_flag_SessionTimeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:SessionTimeout", &a->tt__VideoEncoderConfiguration::SessionTimeout, "xsd:duration")) - { soap_flag_SessionTimeout1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoEncoderConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_Encoding1 > 0 || !a->tt__VideoEncoderConfiguration::Resolution || soap_flag_Quality1 > 0 || !a->tt__VideoEncoderConfiguration::Multicast || soap_flag_SessionTimeout1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoEncoderConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoEncoderConfiguration, SOAP_TYPE_tt__VideoEncoderConfiguration, sizeof(tt__VideoEncoderConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoEncoderConfiguration *p; - size_t k = sizeof(tt__VideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoEncoderConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoEncoderConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoEncoderConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoEncoderConfiguration(soap, tag ? tag : "tt:VideoEncoderConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoEncoderConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoEncoderConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoEncoderConfiguration * SOAP_FMAC4 soap_get_tt__VideoEncoderConfiguration(struct soap *soap, tt__VideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__SceneOrientation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__SceneOrientationMode(soap, &this->tt__SceneOrientation::Mode); - this->tt__SceneOrientation::Orientation = NULL; -} - -void tt__SceneOrientation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTostd__string(soap, &this->tt__SceneOrientation::Orientation); -#endif -} - -int tt__SceneOrientation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__SceneOrientation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientation(struct soap *soap, const char *tag, int id, const tt__SceneOrientation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__SceneOrientation), type)) - return soap->error; - if (soap_out_tt__SceneOrientationMode(soap, "tt:Mode", -1, &a->tt__SceneOrientation::Mode, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Orientation", -1, &a->tt__SceneOrientation::Orientation, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__SceneOrientation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__SceneOrientation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__SceneOrientation * SOAP_FMAC4 soap_in_tt__SceneOrientation(struct soap *soap, const char *tag, tt__SceneOrientation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__SceneOrientation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__SceneOrientation, sizeof(tt__SceneOrientation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__SceneOrientation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__SceneOrientation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Orientation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__SceneOrientationMode(soap, "tt:Mode", &a->tt__SceneOrientation::Mode, "tt:SceneOrientationMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Orientation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Orientation", &a->tt__SceneOrientation::Orientation, "xsd:string")) - { soap_flag_Orientation1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__SceneOrientation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__SceneOrientation, SOAP_TYPE_tt__SceneOrientation, sizeof(tt__SceneOrientation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__SceneOrientation * SOAP_FMAC2 soap_instantiate_tt__SceneOrientation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__SceneOrientation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__SceneOrientation *p; - size_t k = sizeof(tt__SceneOrientation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__SceneOrientation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__SceneOrientation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__SceneOrientation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__SceneOrientation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__SceneOrientation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__SceneOrientation(soap, tag ? tag : "tt:SceneOrientation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__SceneOrientation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__SceneOrientation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__SceneOrientation * SOAP_FMAC4 soap_get_tt__SceneOrientation(struct soap *soap, tt__SceneOrientation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__SceneOrientation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RotateOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RotateOptionsExtension::__any); -} - -void tt__RotateOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RotateOptionsExtension::__any); -#endif -} - -int tt__RotateOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RotateOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateOptionsExtension(struct soap *soap, const char *tag, int id, const tt__RotateOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RotateOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RotateOptionsExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RotateOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RotateOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RotateOptionsExtension * SOAP_FMAC4 soap_in_tt__RotateOptionsExtension(struct soap *soap, const char *tag, tt__RotateOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RotateOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RotateOptionsExtension, sizeof(tt__RotateOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RotateOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RotateOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RotateOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RotateOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RotateOptionsExtension, SOAP_TYPE_tt__RotateOptionsExtension, sizeof(tt__RotateOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RotateOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__RotateOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RotateOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RotateOptionsExtension *p; - size_t k = sizeof(tt__RotateOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RotateOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RotateOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RotateOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RotateOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RotateOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RotateOptionsExtension(soap, tag ? tag : "tt:RotateOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RotateOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RotateOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RotateOptionsExtension * SOAP_FMAC4 soap_get_tt__RotateOptionsExtension(struct soap *soap, tt__RotateOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RotateOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RotateOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__RotateMode(soap, &this->tt__RotateOptions::Mode); - this->tt__RotateOptions::DegreeList = NULL; - this->tt__RotateOptions::Extension = NULL; - this->tt__RotateOptions::Reboot = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__RotateOptions::__anyAttribute); -} - -void tt__RotateOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__RotateMode(soap, &this->tt__RotateOptions::Mode); - soap_serialize_PointerTott__IntItems(soap, &this->tt__RotateOptions::DegreeList); - soap_serialize_PointerTott__RotateOptionsExtension(soap, &this->tt__RotateOptions::Extension); -#endif -} - -int tt__RotateOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RotateOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateOptions(struct soap *soap, const char *tag, int id, const tt__RotateOptions *a, const char *type) -{ - if (((tt__RotateOptions*)a)->Reboot) - { soap_set_attr(soap, "Reboot", soap_bool2s(soap, *((tt__RotateOptions*)a)->Reboot), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__RotateOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RotateOptions), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__RotateMode(soap, "tt:Mode", -1, &a->tt__RotateOptions::Mode, "")) - return soap->error; - if (soap_out_PointerTott__IntItems(soap, "tt:DegreeList", -1, &a->tt__RotateOptions::DegreeList, "")) - return soap->error; - if (soap_out_PointerTott__RotateOptionsExtension(soap, "tt:Extension", -1, &a->tt__RotateOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RotateOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RotateOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RotateOptions * SOAP_FMAC4 soap_in_tt__RotateOptions(struct soap *soap, const char *tag, tt__RotateOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RotateOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RotateOptions, sizeof(tt__RotateOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RotateOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RotateOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "Reboot", 5, 0); - if (t) - { - if (!(((tt__RotateOptions*)a)->Reboot = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__RotateOptions*)a)->Reboot)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__RotateOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_DegreeList1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__RotateMode(soap, "tt:Mode", &a->tt__RotateOptions::Mode, "tt:RotateMode")) - continue; - } - if (soap_flag_DegreeList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntItems(soap, "tt:DegreeList", &a->tt__RotateOptions::DegreeList, "tt:IntItems")) - { soap_flag_DegreeList1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RotateOptionsExtension(soap, "tt:Extension", &a->tt__RotateOptions::Extension, "tt:RotateOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__RotateOptions::Mode.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__RotateOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RotateOptions, SOAP_TYPE_tt__RotateOptions, sizeof(tt__RotateOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RotateOptions * SOAP_FMAC2 soap_instantiate_tt__RotateOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RotateOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RotateOptions *p; - size_t k = sizeof(tt__RotateOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RotateOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RotateOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RotateOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RotateOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RotateOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RotateOptions(soap, tag ? tag : "tt:RotateOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RotateOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RotateOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RotateOptions * SOAP_FMAC4 soap_get_tt__RotateOptions(struct soap *soap, tt__RotateOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RotateOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceConfigurationOptionsExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOftt__SceneOrientationMode(soap, &this->tt__VideoSourceConfigurationOptionsExtension2::SceneOrientationMode); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfigurationOptionsExtension2::__any); -} - -void tt__VideoSourceConfigurationOptionsExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOftt__SceneOrientationMode(soap, &this->tt__VideoSourceConfigurationOptionsExtension2::SceneOrientationMode); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfigurationOptionsExtension2::__any); -#endif -} - -int tt__VideoSourceConfigurationOptionsExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceConfigurationOptionsExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, const char *tag, int id, const tt__VideoSourceConfigurationOptionsExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOftt__SceneOrientationMode(soap, "tt:SceneOrientationMode", -1, &a->tt__VideoSourceConfigurationOptionsExtension2::SceneOrientationMode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoSourceConfigurationOptionsExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceConfigurationOptionsExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceConfigurationOptionsExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension2 * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, const char *tag, tt__VideoSourceConfigurationOptionsExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceConfigurationOptionsExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2, sizeof(tt__VideoSourceConfigurationOptionsExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceConfigurationOptionsExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__SceneOrientationMode(soap, "tt:SceneOrientationMode", &a->tt__VideoSourceConfigurationOptionsExtension2::SceneOrientationMode, "tt:SceneOrientationMode")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoSourceConfigurationOptionsExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoSourceConfigurationOptionsExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2, sizeof(tt__VideoSourceConfigurationOptionsExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceConfigurationOptionsExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceConfigurationOptionsExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceConfigurationOptionsExtension2 *p; - size_t k = sizeof(tt__VideoSourceConfigurationOptionsExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceConfigurationOptionsExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceConfigurationOptionsExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceConfigurationOptionsExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceConfigurationOptionsExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceConfigurationOptionsExtension2(soap, tag ? tag : "tt:VideoSourceConfigurationOptionsExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceConfigurationOptionsExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceConfigurationOptionsExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension2 * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceConfigurationOptionsExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceConfigurationOptionsExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfigurationOptionsExtension::__any); - this->tt__VideoSourceConfigurationOptionsExtension::Rotate = NULL; - this->tt__VideoSourceConfigurationOptionsExtension::Extension = NULL; -} - -void tt__VideoSourceConfigurationOptionsExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfigurationOptionsExtension::__any); - soap_serialize_PointerTott__RotateOptions(soap, &this->tt__VideoSourceConfigurationOptionsExtension::Rotate); - soap_serialize_PointerTott__VideoSourceConfigurationOptionsExtension2(soap, &this->tt__VideoSourceConfigurationOptionsExtension::Extension); -#endif -} - -int tt__VideoSourceConfigurationOptionsExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceConfigurationOptionsExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, const char *tag, int id, const tt__VideoSourceConfigurationOptionsExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoSourceConfigurationOptionsExtension::__any, "")) - return soap->error; - if (soap_out_PointerTott__RotateOptions(soap, "tt:Rotate", -1, &a->tt__VideoSourceConfigurationOptionsExtension::Rotate, "")) - return soap->error; - if (soap_out_PointerTott__VideoSourceConfigurationOptionsExtension2(soap, "tt:Extension", -1, &a->tt__VideoSourceConfigurationOptionsExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceConfigurationOptionsExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceConfigurationOptionsExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, const char *tag, tt__VideoSourceConfigurationOptionsExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceConfigurationOptionsExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension, sizeof(tt__VideoSourceConfigurationOptionsExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceConfigurationOptionsExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Rotate1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Rotate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RotateOptions(soap, "tt:Rotate", &a->tt__VideoSourceConfigurationOptionsExtension::Rotate, "tt:RotateOptions")) - { soap_flag_Rotate1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfigurationOptionsExtension2(soap, "tt:Extension", &a->tt__VideoSourceConfigurationOptionsExtension::Extension, "tt:VideoSourceConfigurationOptionsExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoSourceConfigurationOptionsExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoSourceConfigurationOptionsExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension, sizeof(tt__VideoSourceConfigurationOptionsExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceConfigurationOptionsExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceConfigurationOptionsExtension *p; - size_t k = sizeof(tt__VideoSourceConfigurationOptionsExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceConfigurationOptionsExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceConfigurationOptionsExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceConfigurationOptionsExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceConfigurationOptionsExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceConfigurationOptionsExtension(soap, tag ? tag : "tt:VideoSourceConfigurationOptionsExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceConfigurationOptionsExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceConfigurationOptionsExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceConfigurationOptionsExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceConfigurationOptions::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__VideoSourceConfigurationOptions::BoundsRange = NULL; - soap_default_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__VideoSourceConfigurationOptions::VideoSourceTokensAvailable); - this->tt__VideoSourceConfigurationOptions::Extension = NULL; - this->tt__VideoSourceConfigurationOptions::MaximumNumberOfProfiles = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoSourceConfigurationOptions::__anyAttribute); -} - -void tt__VideoSourceConfigurationOptions::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntRectangleRange(soap, &this->tt__VideoSourceConfigurationOptions::BoundsRange); - soap_serialize_std__vectorTemplateOftt__ReferenceToken(soap, &this->tt__VideoSourceConfigurationOptions::VideoSourceTokensAvailable); - soap_serialize_PointerTott__VideoSourceConfigurationOptionsExtension(soap, &this->tt__VideoSourceConfigurationOptions::Extension); -#endif -} - -int tt__VideoSourceConfigurationOptions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceConfigurationOptions(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const tt__VideoSourceConfigurationOptions *a, const char *type) -{ - if (((tt__VideoSourceConfigurationOptions*)a)->MaximumNumberOfProfiles) - { soap_set_attr(soap, "MaximumNumberOfProfiles", soap_int2s(soap, *((tt__VideoSourceConfigurationOptions*)a)->MaximumNumberOfProfiles), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoSourceConfigurationOptions*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceConfigurationOptions), type)) - return soap->error; - if (!a->tt__VideoSourceConfigurationOptions::BoundsRange) - { if (soap_element_empty(soap, "tt:BoundsRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRectangleRange(soap, "tt:BoundsRange", -1, &a->tt__VideoSourceConfigurationOptions::BoundsRange, "")) - return soap->error; - if (soap_out_std__vectorTemplateOftt__ReferenceToken(soap, "tt:VideoSourceTokensAvailable", -1, &a->tt__VideoSourceConfigurationOptions::VideoSourceTokensAvailable, "")) - return soap->error; - if (soap_out_PointerTott__VideoSourceConfigurationOptionsExtension(soap, "tt:Extension", -1, &a->tt__VideoSourceConfigurationOptions::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceConfigurationOptions::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceConfigurationOptions(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationOptions(struct soap *soap, const char *tag, tt__VideoSourceConfigurationOptions *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceConfigurationOptions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceConfigurationOptions, sizeof(tt__VideoSourceConfigurationOptions), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceConfigurationOptions) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceConfigurationOptions *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "MaximumNumberOfProfiles", 5, 0); - if (t) - { - if (!(((tt__VideoSourceConfigurationOptions*)a)->MaximumNumberOfProfiles = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tt__VideoSourceConfigurationOptions*)a)->MaximumNumberOfProfiles)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoSourceConfigurationOptions*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_BoundsRange1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_BoundsRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRectangleRange(soap, "tt:BoundsRange", &a->tt__VideoSourceConfigurationOptions::BoundsRange, "tt:IntRectangleRange")) - { soap_flag_BoundsRange1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOftt__ReferenceToken(soap, "tt:VideoSourceTokensAvailable", &a->tt__VideoSourceConfigurationOptions::VideoSourceTokensAvailable, "tt:ReferenceToken")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfigurationOptionsExtension(soap, "tt:Extension", &a->tt__VideoSourceConfigurationOptions::Extension, "tt:VideoSourceConfigurationOptionsExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__VideoSourceConfigurationOptions::BoundsRange || a->tt__VideoSourceConfigurationOptions::VideoSourceTokensAvailable.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoSourceConfigurationOptions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceConfigurationOptions, SOAP_TYPE_tt__VideoSourceConfigurationOptions, sizeof(tt__VideoSourceConfigurationOptions), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceConfigurationOptions *p; - size_t k = sizeof(tt__VideoSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceConfigurationOptions); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceConfigurationOptions, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceConfigurationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceConfigurationOptions(soap, tag ? tag : "tt:VideoSourceConfigurationOptions", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceConfigurationOptions::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceConfigurationOptions(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationOptions(struct soap *soap, tt__VideoSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LensDescription::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__LensDescription::Offset = NULL; - soap_default_std__vectorTemplateOfPointerTott__LensProjection(soap, &this->tt__LensDescription::Projection); - soap_default_float(soap, &this->tt__LensDescription::XFactor); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LensDescription::__any); - this->tt__LensDescription::FocalLength = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__LensDescription::__anyAttribute); -} - -void tt__LensDescription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__LensOffset(soap, &this->tt__LensDescription::Offset); - soap_serialize_std__vectorTemplateOfPointerTott__LensProjection(soap, &this->tt__LensDescription::Projection); - soap_embedded(soap, &this->tt__LensDescription::XFactor, SOAP_TYPE_float); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LensDescription::__any); -#endif -} - -int tt__LensDescription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LensDescription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LensDescription(struct soap *soap, const char *tag, int id, const tt__LensDescription *a, const char *type) -{ - if (((tt__LensDescription*)a)->FocalLength) - { soap_set_attr(soap, "FocalLength", soap_float2s(soap, *((tt__LensDescription*)a)->FocalLength), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__LensDescription*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LensDescription), type)) - return soap->error; - if (!a->tt__LensDescription::Offset) - { if (soap_element_empty(soap, "tt:Offset", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__LensOffset(soap, "tt:Offset", -1, &a->tt__LensDescription::Offset, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__LensProjection(soap, "tt:Projection", -1, &a->tt__LensDescription::Projection, "")) - return soap->error; - if (soap_out_float(soap, "tt:XFactor", -1, &a->tt__LensDescription::XFactor, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__LensDescription::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LensDescription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LensDescription(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LensDescription * SOAP_FMAC4 soap_in_tt__LensDescription(struct soap *soap, const char *tag, tt__LensDescription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LensDescription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LensDescription, sizeof(tt__LensDescription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LensDescription) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LensDescription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "FocalLength", 5, 0); - if (t) - { - if (!(((tt__LensDescription*)a)->FocalLength = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LensDescription*)a)->FocalLength)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__LensDescription*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Offset1 = 1; - size_t soap_flag_XFactor1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Offset1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__LensOffset(soap, "tt:Offset", &a->tt__LensDescription::Offset, "tt:LensOffset")) - { soap_flag_Offset1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__LensProjection(soap, "tt:Projection", &a->tt__LensDescription::Projection, "tt:LensProjection")) - continue; - } - if (soap_flag_XFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:XFactor", &a->tt__LensDescription::XFactor, "xsd:float")) - { soap_flag_XFactor1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__LensDescription::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__LensDescription::Offset || a->tt__LensDescription::Projection.size() < 1 || soap_flag_XFactor1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__LensDescription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LensDescription, SOAP_TYPE_tt__LensDescription, sizeof(tt__LensDescription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LensDescription * SOAP_FMAC2 soap_instantiate_tt__LensDescription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LensDescription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LensDescription *p; - size_t k = sizeof(tt__LensDescription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LensDescription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LensDescription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LensDescription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LensDescription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LensDescription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LensDescription(soap, tag ? tag : "tt:LensDescription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LensDescription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LensDescription(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LensDescription * SOAP_FMAC4 soap_get_tt__LensDescription(struct soap *soap, tt__LensDescription *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LensDescription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LensOffset::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__LensOffset::x = NULL; - this->tt__LensOffset::y = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__LensOffset::__anyAttribute); -} - -void tt__LensOffset::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__LensOffset::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LensOffset(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LensOffset(struct soap *soap, const char *tag, int id, const tt__LensOffset *a, const char *type) -{ - if (((tt__LensOffset*)a)->x) - { soap_set_attr(soap, "x", soap_float2s(soap, *((tt__LensOffset*)a)->x), 1); - } - if (((tt__LensOffset*)a)->y) - { soap_set_attr(soap, "y", soap_float2s(soap, *((tt__LensOffset*)a)->y), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__LensOffset*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LensOffset), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LensOffset::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LensOffset(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LensOffset * SOAP_FMAC4 soap_in_tt__LensOffset(struct soap *soap, const char *tag, tt__LensOffset *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LensOffset*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LensOffset, sizeof(tt__LensOffset), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LensOffset) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LensOffset *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "x", 5, 0); - if (t) - { - if (!(((tt__LensOffset*)a)->x = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LensOffset*)a)->x)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "y", 5, 0); - if (t) - { - if (!(((tt__LensOffset*)a)->y = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LensOffset*)a)->y)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__LensOffset*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__LensOffset *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LensOffset, SOAP_TYPE_tt__LensOffset, sizeof(tt__LensOffset), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LensOffset * SOAP_FMAC2 soap_instantiate_tt__LensOffset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LensOffset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LensOffset *p; - size_t k = sizeof(tt__LensOffset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LensOffset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LensOffset); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LensOffset, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LensOffset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LensOffset::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LensOffset(soap, tag ? tag : "tt:LensOffset", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LensOffset::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LensOffset(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LensOffset * SOAP_FMAC4 soap_get_tt__LensOffset(struct soap *soap, tt__LensOffset *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LensOffset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LensProjection::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__LensProjection::Angle); - soap_default_float(soap, &this->tt__LensProjection::Radius); - this->tt__LensProjection::Transmittance = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LensProjection::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__LensProjection::__anyAttribute); -} - -void tt__LensProjection::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__LensProjection::Angle, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__LensProjection::Radius, SOAP_TYPE_float); - soap_serialize_PointerTofloat(soap, &this->tt__LensProjection::Transmittance); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LensProjection::__any); -#endif -} - -int tt__LensProjection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LensProjection(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LensProjection(struct soap *soap, const char *tag, int id, const tt__LensProjection *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__LensProjection*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LensProjection), type)) - return soap->error; - if (soap_out_float(soap, "tt:Angle", -1, &a->tt__LensProjection::Angle, "")) - return soap->error; - if (soap_out_float(soap, "tt:Radius", -1, &a->tt__LensProjection::Radius, "")) - return soap->error; - if (soap_out_PointerTofloat(soap, "tt:Transmittance", -1, &a->tt__LensProjection::Transmittance, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__LensProjection::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LensProjection::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LensProjection(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LensProjection * SOAP_FMAC4 soap_in_tt__LensProjection(struct soap *soap, const char *tag, tt__LensProjection *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LensProjection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LensProjection, sizeof(tt__LensProjection), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LensProjection) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LensProjection *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__LensProjection*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Angle1 = 1; - size_t soap_flag_Radius1 = 1; - size_t soap_flag_Transmittance1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Angle", &a->tt__LensProjection::Angle, "xsd:float")) - { soap_flag_Angle1--; - continue; - } - } - if (soap_flag_Radius1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Radius", &a->tt__LensProjection::Radius, "xsd:float")) - { soap_flag_Radius1--; - continue; - } - } - if (soap_flag_Transmittance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTofloat(soap, "tt:Transmittance", &a->tt__LensProjection::Transmittance, "xsd:float")) - { soap_flag_Transmittance1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__LensProjection::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Angle1 > 0 || soap_flag_Radius1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__LensProjection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LensProjection, SOAP_TYPE_tt__LensProjection, sizeof(tt__LensProjection), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LensProjection * SOAP_FMAC2 soap_instantiate_tt__LensProjection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LensProjection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LensProjection *p; - size_t k = sizeof(tt__LensProjection); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LensProjection, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LensProjection); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LensProjection, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LensProjection location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LensProjection::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LensProjection(soap, tag ? tag : "tt:LensProjection", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LensProjection::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LensProjection(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LensProjection * SOAP_FMAC4 soap_get_tt__LensProjection(struct soap *soap, tt__LensProjection *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LensProjection(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__RotateExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RotateExtension::__any); -} - -void tt__RotateExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__RotateExtension::__any); -#endif -} - -int tt__RotateExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__RotateExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateExtension(struct soap *soap, const char *tag, int id, const tt__RotateExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__RotateExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__RotateExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__RotateExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__RotateExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__RotateExtension * SOAP_FMAC4 soap_in_tt__RotateExtension(struct soap *soap, const char *tag, tt__RotateExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__RotateExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__RotateExtension, sizeof(tt__RotateExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__RotateExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__RotateExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__RotateExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__RotateExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__RotateExtension, SOAP_TYPE_tt__RotateExtension, sizeof(tt__RotateExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__RotateExtension * SOAP_FMAC2 soap_instantiate_tt__RotateExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__RotateExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__RotateExtension *p; - size_t k = sizeof(tt__RotateExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__RotateExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__RotateExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__RotateExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__RotateExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__RotateExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__RotateExtension(soap, tag ? tag : "tt:RotateExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__RotateExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__RotateExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__RotateExtension * SOAP_FMAC4 soap_get_tt__RotateExtension(struct soap *soap, tt__RotateExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__RotateExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Rotate::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__RotateMode(soap, &this->tt__Rotate::Mode); - this->tt__Rotate::Degree = NULL; - this->tt__Rotate::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Rotate::__anyAttribute); -} - -void tt__Rotate::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &this->tt__Rotate::Degree); - soap_serialize_PointerTott__RotateExtension(soap, &this->tt__Rotate::Extension); -#endif -} - -int tt__Rotate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Rotate(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Rotate(struct soap *soap, const char *tag, int id, const tt__Rotate *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Rotate*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Rotate), type)) - return soap->error; - if (soap_out_tt__RotateMode(soap, "tt:Mode", -1, &a->tt__Rotate::Mode, "")) - return soap->error; - if (soap_out_PointerToint(soap, "tt:Degree", -1, &a->tt__Rotate::Degree, "")) - return soap->error; - if (soap_out_PointerTott__RotateExtension(soap, "tt:Extension", -1, &a->tt__Rotate::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Rotate::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Rotate(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Rotate * SOAP_FMAC4 soap_in_tt__Rotate(struct soap *soap, const char *tag, tt__Rotate *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Rotate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Rotate, sizeof(tt__Rotate), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Rotate) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Rotate *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Rotate*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Mode1 = 1; - size_t soap_flag_Degree1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Mode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_tt__RotateMode(soap, "tt:Mode", &a->tt__Rotate::Mode, "tt:RotateMode")) - { soap_flag_Mode1--; - continue; - } - } - if (soap_flag_Degree1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "tt:Degree", &a->tt__Rotate::Degree, "xsd:int")) - { soap_flag_Degree1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__RotateExtension(soap, "tt:Extension", &a->tt__Rotate::Extension, "tt:RotateExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Mode1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Rotate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Rotate, SOAP_TYPE_tt__Rotate, sizeof(tt__Rotate), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Rotate * SOAP_FMAC2 soap_instantiate_tt__Rotate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Rotate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Rotate *p; - size_t k = sizeof(tt__Rotate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Rotate, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Rotate); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Rotate, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Rotate location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Rotate::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Rotate(soap, tag ? tag : "tt:Rotate", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Rotate::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Rotate(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Rotate * SOAP_FMAC4 soap_get_tt__Rotate(struct soap *soap, tt__Rotate *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Rotate(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceConfigurationExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__LensDescription(soap, &this->tt__VideoSourceConfigurationExtension2::LensDescription); - this->tt__VideoSourceConfigurationExtension2::SceneOrientation = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfigurationExtension2::__any); -} - -void tt__VideoSourceConfigurationExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__LensDescription(soap, &this->tt__VideoSourceConfigurationExtension2::LensDescription); - soap_serialize_PointerTott__SceneOrientation(soap, &this->tt__VideoSourceConfigurationExtension2::SceneOrientation); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfigurationExtension2::__any); -#endif -} - -int tt__VideoSourceConfigurationExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceConfigurationExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationExtension2(struct soap *soap, const char *tag, int id, const tt__VideoSourceConfigurationExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceConfigurationExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__LensDescription(soap, "tt:LensDescription", -1, &a->tt__VideoSourceConfigurationExtension2::LensDescription, "")) - return soap->error; - if (soap_out_PointerTott__SceneOrientation(soap, "tt:SceneOrientation", -1, &a->tt__VideoSourceConfigurationExtension2::SceneOrientation, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoSourceConfigurationExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceConfigurationExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceConfigurationExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationExtension2(struct soap *soap, const char *tag, tt__VideoSourceConfigurationExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceConfigurationExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceConfigurationExtension2, sizeof(tt__VideoSourceConfigurationExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceConfigurationExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceConfigurationExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SceneOrientation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__LensDescription(soap, "tt:LensDescription", &a->tt__VideoSourceConfigurationExtension2::LensDescription, "tt:LensDescription")) - continue; - } - if (soap_flag_SceneOrientation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__SceneOrientation(soap, "tt:SceneOrientation", &a->tt__VideoSourceConfigurationExtension2::SceneOrientation, "tt:SceneOrientation")) - { soap_flag_SceneOrientation1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoSourceConfigurationExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoSourceConfigurationExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceConfigurationExtension2, SOAP_TYPE_tt__VideoSourceConfigurationExtension2, sizeof(tt__VideoSourceConfigurationExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceConfigurationExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceConfigurationExtension2 *p; - size_t k = sizeof(tt__VideoSourceConfigurationExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceConfigurationExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceConfigurationExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceConfigurationExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceConfigurationExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceConfigurationExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceConfigurationExtension2(soap, tag ? tag : "tt:VideoSourceConfigurationExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceConfigurationExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceConfigurationExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationExtension2(struct soap *soap, tt__VideoSourceConfigurationExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceConfigurationExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceConfigurationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__VideoSourceConfigurationExtension::Rotate = NULL; - this->tt__VideoSourceConfigurationExtension::Extension = NULL; -} - -void tt__VideoSourceConfigurationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Rotate(soap, &this->tt__VideoSourceConfigurationExtension::Rotate); - soap_serialize_PointerTott__VideoSourceConfigurationExtension2(soap, &this->tt__VideoSourceConfigurationExtension::Extension); -#endif -} - -int tt__VideoSourceConfigurationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceConfigurationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationExtension(struct soap *soap, const char *tag, int id, const tt__VideoSourceConfigurationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceConfigurationExtension), type)) - return soap->error; - if (soap_out_PointerTott__Rotate(soap, "tt:Rotate", -1, &a->tt__VideoSourceConfigurationExtension::Rotate, "")) - return soap->error; - if (soap_out_PointerTott__VideoSourceConfigurationExtension2(soap, "tt:Extension", -1, &a->tt__VideoSourceConfigurationExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceConfigurationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceConfigurationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationExtension * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationExtension(struct soap *soap, const char *tag, tt__VideoSourceConfigurationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceConfigurationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceConfigurationExtension, sizeof(tt__VideoSourceConfigurationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceConfigurationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceConfigurationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Rotate1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Rotate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Rotate(soap, "tt:Rotate", &a->tt__VideoSourceConfigurationExtension::Rotate, "tt:Rotate")) - { soap_flag_Rotate1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfigurationExtension2(soap, "tt:Extension", &a->tt__VideoSourceConfigurationExtension::Extension, "tt:VideoSourceConfigurationExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoSourceConfigurationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceConfigurationExtension, SOAP_TYPE_tt__VideoSourceConfigurationExtension, sizeof(tt__VideoSourceConfigurationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceConfigurationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceConfigurationExtension *p; - size_t k = sizeof(tt__VideoSourceConfigurationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceConfigurationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceConfigurationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceConfigurationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceConfigurationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceConfigurationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceConfigurationExtension(soap, tag ? tag : "tt:VideoSourceConfigurationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceConfigurationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceConfigurationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceConfigurationExtension * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationExtension(struct soap *soap, tt__VideoSourceConfigurationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceConfigurationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceConfiguration::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__ConfigurationEntity::soap_default(soap); - soap_default_tt__ReferenceToken(soap, &this->tt__VideoSourceConfiguration::SourceToken); - this->tt__VideoSourceConfiguration::Bounds = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfiguration::__any); - this->tt__VideoSourceConfiguration::Extension = NULL; - this->tt__VideoSourceConfiguration::ViewMode = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoSourceConfiguration::__anyAttribute); -} - -void tt__VideoSourceConfiguration::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoSourceConfiguration::SourceToken, SOAP_TYPE_tt__ReferenceToken); - soap_serialize_tt__ReferenceToken(soap, &this->tt__VideoSourceConfiguration::SourceToken); - soap_serialize_PointerTott__IntRectangle(soap, &this->tt__VideoSourceConfiguration::Bounds); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceConfiguration::__any); - soap_serialize_PointerTott__VideoSourceConfigurationExtension(soap, &this->tt__VideoSourceConfiguration::Extension); - this->tt__ConfigurationEntity::soap_serialize(soap); -#endif -} - -int tt__VideoSourceConfiguration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceConfiguration(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfiguration(struct soap *soap, const char *tag, int id, const tt__VideoSourceConfiguration *a, const char *type) -{ - if (((tt__VideoSourceConfiguration*)a)->ViewMode) - { soap_set_attr(soap, "ViewMode", soap_std__string2s(soap, *((tt__VideoSourceConfiguration*)a)->ViewMode), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoSourceConfiguration*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceConfiguration), type ? type : "tt:VideoSourceConfiguration")) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_tt__ReferenceToken(soap, "tt:SourceToken", -1, &a->tt__VideoSourceConfiguration::SourceToken, "")) - return soap->error; - if (!a->tt__VideoSourceConfiguration::Bounds) - { if (soap_element_empty(soap, "tt:Bounds", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRectangle(soap, "tt:Bounds", -1, &a->tt__VideoSourceConfiguration::Bounds, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoSourceConfiguration::__any, "")) - return soap->error; - if (soap_out_PointerTott__VideoSourceConfigurationExtension(soap, "tt:Extension", -1, &a->tt__VideoSourceConfiguration::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceConfiguration::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceConfiguration(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceConfiguration * SOAP_FMAC4 soap_in_tt__VideoSourceConfiguration(struct soap *soap, const char *tag, tt__VideoSourceConfiguration *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceConfiguration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceConfiguration, sizeof(tt__VideoSourceConfiguration), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceConfiguration) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceConfiguration *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "ViewMode", 1, 0); - if (t) - { - if (!(((tt__VideoSourceConfiguration*)a)->ViewMode = soap_new_std__string(soap))) - return NULL; - if (soap_s2std__string(soap, t, ((tt__VideoSourceConfiguration*)a)->ViewMode)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoSourceConfiguration*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name2 = 1; - size_t soap_flag_UseCount2 = 1; - size_t soap_flag_SourceToken1 = 1; - size_t soap_flag_Bounds1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name2--; - continue; - } - } - if (soap_flag_UseCount2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount2--; - continue; - } - } - if (soap_flag_SourceToken1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__ReferenceToken(soap, "tt:SourceToken", &a->tt__VideoSourceConfiguration::SourceToken, "tt:ReferenceToken")) - { soap_flag_SourceToken1--; - continue; - } - } - if (soap_flag_Bounds1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRectangle(soap, "tt:Bounds", &a->tt__VideoSourceConfiguration::Bounds, "tt:IntRectangle")) - { soap_flag_Bounds1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfigurationExtension(soap, "tt:Extension", &a->tt__VideoSourceConfiguration::Extension, "tt:VideoSourceConfigurationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoSourceConfiguration::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name2 > 0 || soap_flag_UseCount2 > 0 || soap_flag_SourceToken1 > 0 || !a->tt__VideoSourceConfiguration::Bounds)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoSourceConfiguration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceConfiguration, SOAP_TYPE_tt__VideoSourceConfiguration, sizeof(tt__VideoSourceConfiguration), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceConfiguration *p; - size_t k = sizeof(tt__VideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceConfiguration); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceConfiguration, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceConfiguration::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceConfiguration(soap, tag ? tag : "tt:VideoSourceConfiguration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceConfiguration::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceConfiguration(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceConfiguration * SOAP_FMAC4 soap_get_tt__VideoSourceConfiguration(struct soap *soap, tt__VideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ConfigurationEntity::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Name(soap, &this->tt__ConfigurationEntity::Name); - soap_default_int(soap, &this->tt__ConfigurationEntity::UseCount); - soap_default_tt__ReferenceToken(soap, &this->tt__ConfigurationEntity::token); -} - -void tt__ConfigurationEntity::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__ConfigurationEntity::Name, SOAP_TYPE_tt__Name); - soap_serialize_tt__Name(soap, &this->tt__ConfigurationEntity::Name); - soap_embedded(soap, &this->tt__ConfigurationEntity::UseCount, SOAP_TYPE_int); -#endif -} - -int tt__ConfigurationEntity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ConfigurationEntity(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ConfigurationEntity(struct soap *soap, const char *tag, int id, const tt__ConfigurationEntity *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__ConfigurationEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ConfigurationEntity), type)) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__ConfigurationEntity::Name, "")) - return soap->error; - if (soap_out_int(soap, "tt:UseCount", -1, &a->tt__ConfigurationEntity::UseCount, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ConfigurationEntity::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ConfigurationEntity(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ConfigurationEntity * SOAP_FMAC4 soap_in_tt__ConfigurationEntity(struct soap *soap, const char *tag, tt__ConfigurationEntity *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ConfigurationEntity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ConfigurationEntity, sizeof(tt__ConfigurationEntity), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ConfigurationEntity) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ConfigurationEntity *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__ConfigurationEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_UseCount1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__ConfigurationEntity::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_UseCount1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:UseCount", &a->tt__ConfigurationEntity::UseCount, "xsd:int")) - { soap_flag_UseCount1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0 || soap_flag_UseCount1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__ConfigurationEntity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ConfigurationEntity, SOAP_TYPE_tt__ConfigurationEntity, sizeof(tt__ConfigurationEntity), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ConfigurationEntity * SOAP_FMAC2 soap_instantiate_tt__ConfigurationEntity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ConfigurationEntity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "tt:VideoSourceConfiguration")) - return soap_instantiate_tt__VideoSourceConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:VideoEncoderConfiguration")) - return soap_instantiate_tt__VideoEncoderConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:VideoEncoder2Configuration")) - return soap_instantiate_tt__VideoEncoder2Configuration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AudioSourceConfiguration")) - return soap_instantiate_tt__AudioSourceConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AudioEncoderConfiguration")) - return soap_instantiate_tt__AudioEncoderConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AudioEncoder2Configuration")) - return soap_instantiate_tt__AudioEncoder2Configuration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:VideoAnalyticsConfiguration")) - return soap_instantiate_tt__VideoAnalyticsConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:MetadataConfiguration")) - return soap_instantiate_tt__MetadataConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:VideoOutputConfiguration")) - return soap_instantiate_tt__VideoOutputConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AudioOutputConfiguration")) - return soap_instantiate_tt__AudioOutputConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AudioDecoderConfiguration")) - return soap_instantiate_tt__AudioDecoderConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:PTZConfiguration")) - return soap_instantiate_tt__PTZConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AnalyticsEngine")) - return soap_instantiate_tt__AnalyticsEngine(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AnalyticsEngineInput")) - return soap_instantiate_tt__AnalyticsEngineInput(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AnalyticsEngineControl")) - return soap_instantiate_tt__AnalyticsEngineControl(soap, n, NULL, NULL, size); - tt__ConfigurationEntity *p; - size_t k = sizeof(tt__ConfigurationEntity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ConfigurationEntity, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ConfigurationEntity); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ConfigurationEntity, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ConfigurationEntity location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ConfigurationEntity::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ConfigurationEntity(soap, tag ? tag : "tt:ConfigurationEntity", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ConfigurationEntity::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ConfigurationEntity(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ConfigurationEntity * SOAP_FMAC4 soap_get_tt__ConfigurationEntity(struct soap *soap, tt__ConfigurationEntity *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ConfigurationEntity(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ProfileExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileExtension2::__any); -} - -void tt__ProfileExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileExtension2::__any); -#endif -} - -int tt__ProfileExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ProfileExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileExtension2(struct soap *soap, const char *tag, int id, const tt__ProfileExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ProfileExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ProfileExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ProfileExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ProfileExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ProfileExtension2 * SOAP_FMAC4 soap_in_tt__ProfileExtension2(struct soap *soap, const char *tag, tt__ProfileExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ProfileExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ProfileExtension2, sizeof(tt__ProfileExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ProfileExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ProfileExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ProfileExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ProfileExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ProfileExtension2, SOAP_TYPE_tt__ProfileExtension2, sizeof(tt__ProfileExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ProfileExtension2 * SOAP_FMAC2 soap_instantiate_tt__ProfileExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ProfileExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ProfileExtension2 *p; - size_t k = sizeof(tt__ProfileExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ProfileExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ProfileExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ProfileExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ProfileExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ProfileExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ProfileExtension2(soap, tag ? tag : "tt:ProfileExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ProfileExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ProfileExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ProfileExtension2 * SOAP_FMAC4 soap_get_tt__ProfileExtension2(struct soap *soap, tt__ProfileExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ProfileExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ProfileExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileExtension::__any); - this->tt__ProfileExtension::AudioOutputConfiguration = NULL; - this->tt__ProfileExtension::AudioDecoderConfiguration = NULL; - this->tt__ProfileExtension::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__ProfileExtension::__anyAttribute); -} - -void tt__ProfileExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ProfileExtension::__any); - soap_serialize_PointerTott__AudioOutputConfiguration(soap, &this->tt__ProfileExtension::AudioOutputConfiguration); - soap_serialize_PointerTott__AudioDecoderConfiguration(soap, &this->tt__ProfileExtension::AudioDecoderConfiguration); - soap_serialize_PointerTott__ProfileExtension2(soap, &this->tt__ProfileExtension::Extension); -#endif -} - -int tt__ProfileExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ProfileExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileExtension(struct soap *soap, const char *tag, int id, const tt__ProfileExtension *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ProfileExtension*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ProfileExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ProfileExtension::__any, "")) - return soap->error; - if (soap_out_PointerTott__AudioOutputConfiguration(soap, "tt:AudioOutputConfiguration", -1, &a->tt__ProfileExtension::AudioOutputConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__AudioDecoderConfiguration(soap, "tt:AudioDecoderConfiguration", -1, &a->tt__ProfileExtension::AudioDecoderConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__ProfileExtension2(soap, "tt:Extension", -1, &a->tt__ProfileExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ProfileExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ProfileExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ProfileExtension * SOAP_FMAC4 soap_in_tt__ProfileExtension(struct soap *soap, const char *tag, tt__ProfileExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ProfileExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ProfileExtension, sizeof(tt__ProfileExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ProfileExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ProfileExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ProfileExtension*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_AudioOutputConfiguration1 = 1; - size_t soap_flag_AudioDecoderConfiguration1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_AudioOutputConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioOutputConfiguration(soap, "tt:AudioOutputConfiguration", &a->tt__ProfileExtension::AudioOutputConfiguration, "tt:AudioOutputConfiguration")) - { soap_flag_AudioOutputConfiguration1--; - continue; - } - } - if (soap_flag_AudioDecoderConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioDecoderConfiguration(soap, "tt:AudioDecoderConfiguration", &a->tt__ProfileExtension::AudioDecoderConfiguration, "tt:AudioDecoderConfiguration")) - { soap_flag_AudioDecoderConfiguration1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ProfileExtension2(soap, "tt:Extension", &a->tt__ProfileExtension::Extension, "tt:ProfileExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ProfileExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ProfileExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ProfileExtension, SOAP_TYPE_tt__ProfileExtension, sizeof(tt__ProfileExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ProfileExtension * SOAP_FMAC2 soap_instantiate_tt__ProfileExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ProfileExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ProfileExtension *p; - size_t k = sizeof(tt__ProfileExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ProfileExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ProfileExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ProfileExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ProfileExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ProfileExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ProfileExtension(soap, tag ? tag : "tt:ProfileExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ProfileExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ProfileExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ProfileExtension * SOAP_FMAC4 soap_get_tt__ProfileExtension(struct soap *soap, tt__ProfileExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ProfileExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Profile::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__Name(soap, &this->tt__Profile::Name); - this->tt__Profile::VideoSourceConfiguration = NULL; - this->tt__Profile::AudioSourceConfiguration = NULL; - this->tt__Profile::VideoEncoderConfiguration = NULL; - this->tt__Profile::AudioEncoderConfiguration = NULL; - this->tt__Profile::VideoAnalyticsConfiguration = NULL; - this->tt__Profile::PTZConfiguration = NULL; - this->tt__Profile::MetadataConfiguration = NULL; - this->tt__Profile::Extension = NULL; - soap_default_tt__ReferenceToken(soap, &this->tt__Profile::token); - this->tt__Profile::fixed = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Profile::__anyAttribute); -} - -void tt__Profile::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__Profile::Name, SOAP_TYPE_tt__Name); - soap_serialize_tt__Name(soap, &this->tt__Profile::Name); - soap_serialize_PointerTott__VideoSourceConfiguration(soap, &this->tt__Profile::VideoSourceConfiguration); - soap_serialize_PointerTott__AudioSourceConfiguration(soap, &this->tt__Profile::AudioSourceConfiguration); - soap_serialize_PointerTott__VideoEncoderConfiguration(soap, &this->tt__Profile::VideoEncoderConfiguration); - soap_serialize_PointerTott__AudioEncoderConfiguration(soap, &this->tt__Profile::AudioEncoderConfiguration); - soap_serialize_PointerTott__VideoAnalyticsConfiguration(soap, &this->tt__Profile::VideoAnalyticsConfiguration); - soap_serialize_PointerTott__PTZConfiguration(soap, &this->tt__Profile::PTZConfiguration); - soap_serialize_PointerTott__MetadataConfiguration(soap, &this->tt__Profile::MetadataConfiguration); - soap_serialize_PointerTott__ProfileExtension(soap, &this->tt__Profile::Extension); -#endif -} - -int tt__Profile::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Profile(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Profile(struct soap *soap, const char *tag, int id, const tt__Profile *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__Profile*)a)->token), 1); - if (((tt__Profile*)a)->fixed) - { soap_set_attr(soap, "fixed", soap_bool2s(soap, *((tt__Profile*)a)->fixed), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Profile*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Profile), type)) - return soap->error; - if (soap_out_tt__Name(soap, "tt:Name", -1, &a->tt__Profile::Name, "")) - return soap->error; - if (soap_out_PointerTott__VideoSourceConfiguration(soap, "tt:VideoSourceConfiguration", -1, &a->tt__Profile::VideoSourceConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__AudioSourceConfiguration(soap, "tt:AudioSourceConfiguration", -1, &a->tt__Profile::AudioSourceConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__VideoEncoderConfiguration(soap, "tt:VideoEncoderConfiguration", -1, &a->tt__Profile::VideoEncoderConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__AudioEncoderConfiguration(soap, "tt:AudioEncoderConfiguration", -1, &a->tt__Profile::AudioEncoderConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__VideoAnalyticsConfiguration(soap, "tt:VideoAnalyticsConfiguration", -1, &a->tt__Profile::VideoAnalyticsConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__PTZConfiguration(soap, "tt:PTZConfiguration", -1, &a->tt__Profile::PTZConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__MetadataConfiguration(soap, "tt:MetadataConfiguration", -1, &a->tt__Profile::MetadataConfiguration, "")) - return soap->error; - if (soap_out_PointerTott__ProfileExtension(soap, "tt:Extension", -1, &a->tt__Profile::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Profile::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Profile(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Profile * SOAP_FMAC4 soap_in_tt__Profile(struct soap *soap, const char *tag, tt__Profile *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Profile*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Profile, sizeof(tt__Profile), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Profile) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Profile *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__Profile*)a)->token)) - return NULL; - { - const char *t = soap_attr_value(soap, "fixed", 5, 0); - if (t) - { - if (!(((tt__Profile*)a)->fixed = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__Profile*)a)->fixed)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Profile*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Name1 = 1; - size_t soap_flag_VideoSourceConfiguration1 = 1; - size_t soap_flag_AudioSourceConfiguration1 = 1; - size_t soap_flag_VideoEncoderConfiguration1 = 1; - size_t soap_flag_AudioEncoderConfiguration1 = 1; - size_t soap_flag_VideoAnalyticsConfiguration1 = 1; - size_t soap_flag_PTZConfiguration1 = 1; - size_t soap_flag_MetadataConfiguration1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_tt__Name(soap, "tt:Name", &a->tt__Profile::Name, "tt:Name")) - { soap_flag_Name1--; - continue; - } - } - if (soap_flag_VideoSourceConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceConfiguration(soap, "tt:VideoSourceConfiguration", &a->tt__Profile::VideoSourceConfiguration, "tt:VideoSourceConfiguration")) - { soap_flag_VideoSourceConfiguration1--; - continue; - } - } - if (soap_flag_AudioSourceConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioSourceConfiguration(soap, "tt:AudioSourceConfiguration", &a->tt__Profile::AudioSourceConfiguration, "tt:AudioSourceConfiguration")) - { soap_flag_AudioSourceConfiguration1--; - continue; - } - } - if (soap_flag_VideoEncoderConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoEncoderConfiguration(soap, "tt:VideoEncoderConfiguration", &a->tt__Profile::VideoEncoderConfiguration, "tt:VideoEncoderConfiguration")) - { soap_flag_VideoEncoderConfiguration1--; - continue; - } - } - if (soap_flag_AudioEncoderConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__AudioEncoderConfiguration(soap, "tt:AudioEncoderConfiguration", &a->tt__Profile::AudioEncoderConfiguration, "tt:AudioEncoderConfiguration")) - { soap_flag_AudioEncoderConfiguration1--; - continue; - } - } - if (soap_flag_VideoAnalyticsConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoAnalyticsConfiguration(soap, "tt:VideoAnalyticsConfiguration", &a->tt__Profile::VideoAnalyticsConfiguration, "tt:VideoAnalyticsConfiguration")) - { soap_flag_VideoAnalyticsConfiguration1--; - continue; - } - } - if (soap_flag_PTZConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZConfiguration(soap, "tt:PTZConfiguration", &a->tt__Profile::PTZConfiguration, "tt:PTZConfiguration")) - { soap_flag_PTZConfiguration1--; - continue; - } - } - if (soap_flag_MetadataConfiguration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MetadataConfiguration(soap, "tt:MetadataConfiguration", &a->tt__Profile::MetadataConfiguration, "tt:MetadataConfiguration")) - { soap_flag_MetadataConfiguration1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ProfileExtension(soap, "tt:Extension", &a->tt__Profile::Extension, "tt:ProfileExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Name1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Profile *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Profile, SOAP_TYPE_tt__Profile, sizeof(tt__Profile), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Profile * SOAP_FMAC2 soap_instantiate_tt__Profile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Profile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Profile *p; - size_t k = sizeof(tt__Profile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Profile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Profile); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Profile, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Profile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Profile::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Profile(soap, tag ? tag : "tt:Profile", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Profile::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Profile(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Profile * SOAP_FMAC4 soap_get_tt__Profile(struct soap *soap, tt__Profile *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Profile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AudioSource::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - soap_default_int(soap, &this->tt__AudioSource::Channels); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioSource::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AudioSource::__anyAttribute); -} - -void tt__AudioSource::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__AudioSource::Channels, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AudioSource::__any); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__AudioSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AudioSource(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSource(struct soap *soap, const char *tag, int id, const tt__AudioSource *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AudioSource*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AudioSource), type ? type : "tt:AudioSource")) - return soap->error; - if (soap_out_int(soap, "tt:Channels", -1, &a->tt__AudioSource::Channels, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AudioSource::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AudioSource::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AudioSource(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AudioSource * SOAP_FMAC4 soap_in_tt__AudioSource(struct soap *soap, const char *tag, tt__AudioSource *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AudioSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AudioSource, sizeof(tt__AudioSource), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AudioSource) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AudioSource *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AudioSource*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Channels1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Channels1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Channels", &a->tt__AudioSource::Channels, "xsd:int")) - { soap_flag_Channels1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AudioSource::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Channels1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__AudioSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AudioSource, SOAP_TYPE_tt__AudioSource, sizeof(tt__AudioSource), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AudioSource * SOAP_FMAC2 soap_instantiate_tt__AudioSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AudioSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AudioSource *p; - size_t k = sizeof(tt__AudioSource); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AudioSource, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AudioSource); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AudioSource, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AudioSource location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AudioSource::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AudioSource(soap, tag ? tag : "tt:AudioSource", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AudioSource::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AudioSource(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AudioSource * SOAP_FMAC4 soap_get_tt__AudioSource(struct soap *soap, tt__AudioSource *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AudioSource(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceExtension2::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceExtension2::__any); -} - -void tt__VideoSourceExtension2::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceExtension2::__any); -#endif -} - -int tt__VideoSourceExtension2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceExtension2(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceExtension2(struct soap *soap, const char *tag, int id, const tt__VideoSourceExtension2 *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceExtension2), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoSourceExtension2::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceExtension2::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceExtension2(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceExtension2 * SOAP_FMAC4 soap_in_tt__VideoSourceExtension2(struct soap *soap, const char *tag, tt__VideoSourceExtension2 *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceExtension2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceExtension2, sizeof(tt__VideoSourceExtension2), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceExtension2) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceExtension2 *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoSourceExtension2::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoSourceExtension2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceExtension2, SOAP_TYPE_tt__VideoSourceExtension2, sizeof(tt__VideoSourceExtension2), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoSourceExtension2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceExtension2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceExtension2 *p; - size_t k = sizeof(tt__VideoSourceExtension2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceExtension2, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceExtension2); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceExtension2, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceExtension2 location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceExtension2::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceExtension2(soap, tag ? tag : "tt:VideoSourceExtension2", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceExtension2::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceExtension2(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceExtension2 * SOAP_FMAC4 soap_get_tt__VideoSourceExtension2(struct soap *soap, tt__VideoSourceExtension2 *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceExtension2(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSourceExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceExtension::__any); - this->tt__VideoSourceExtension::Imaging = NULL; - this->tt__VideoSourceExtension::Extension = NULL; -} - -void tt__VideoSourceExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__VideoSourceExtension::__any); - soap_serialize_PointerTott__ImagingSettings20(soap, &this->tt__VideoSourceExtension::Imaging); - soap_serialize_PointerTott__VideoSourceExtension2(soap, &this->tt__VideoSourceExtension::Extension); -#endif -} - -int tt__VideoSourceExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSourceExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceExtension(struct soap *soap, const char *tag, int id, const tt__VideoSourceExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSourceExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__VideoSourceExtension::__any, "")) - return soap->error; - if (soap_out_PointerTott__ImagingSettings20(soap, "tt:Imaging", -1, &a->tt__VideoSourceExtension::Imaging, "")) - return soap->error; - if (soap_out_PointerTott__VideoSourceExtension2(soap, "tt:Extension", -1, &a->tt__VideoSourceExtension::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSourceExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSourceExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSourceExtension * SOAP_FMAC4 soap_in_tt__VideoSourceExtension(struct soap *soap, const char *tag, tt__VideoSourceExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSourceExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSourceExtension, sizeof(tt__VideoSourceExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSourceExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSourceExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Imaging1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Imaging1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettings20(soap, "tt:Imaging", &a->tt__VideoSourceExtension::Imaging, "tt:ImagingSettings20")) - { soap_flag_Imaging1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceExtension2(soap, "tt:Extension", &a->tt__VideoSourceExtension::Extension, "tt:VideoSourceExtension2")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__VideoSourceExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__VideoSourceExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSourceExtension, SOAP_TYPE_tt__VideoSourceExtension, sizeof(tt__VideoSourceExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSourceExtension * SOAP_FMAC2 soap_instantiate_tt__VideoSourceExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSourceExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSourceExtension *p; - size_t k = sizeof(tt__VideoSourceExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSourceExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSourceExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSourceExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSourceExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSourceExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSourceExtension(soap, tag ? tag : "tt:VideoSourceExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSourceExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSourceExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSourceExtension * SOAP_FMAC4 soap_get_tt__VideoSourceExtension(struct soap *soap, tt__VideoSourceExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSourceExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__VideoSource::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__DeviceEntity::soap_default(soap); - soap_default_float(soap, &this->tt__VideoSource::Framerate); - this->tt__VideoSource::Resolution = NULL; - this->tt__VideoSource::Imaging = NULL; - this->tt__VideoSource::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__VideoSource::__anyAttribute); -} - -void tt__VideoSource::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__VideoSource::Framerate, SOAP_TYPE_float); - soap_serialize_PointerTott__VideoResolution(soap, &this->tt__VideoSource::Resolution); - soap_serialize_PointerTott__ImagingSettings(soap, &this->tt__VideoSource::Imaging); - soap_serialize_PointerTott__VideoSourceExtension(soap, &this->tt__VideoSource::Extension); - this->tt__DeviceEntity::soap_serialize(soap); -#endif -} - -int tt__VideoSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__VideoSource(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSource(struct soap *soap, const char *tag, int id, const tt__VideoSource *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__VideoSource*)a)->__anyAttribute, "")) - return soap->error; - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__VideoSource), type ? type : "tt:VideoSource")) - return soap->error; - if (soap_out_float(soap, "tt:Framerate", -1, &a->tt__VideoSource::Framerate, "")) - return soap->error; - if (!a->tt__VideoSource::Resolution) - { if (soap_element_empty(soap, "tt:Resolution", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__VideoResolution(soap, "tt:Resolution", -1, &a->tt__VideoSource::Resolution, "")) - return soap->error; - if (soap_out_PointerTott__ImagingSettings(soap, "tt:Imaging", -1, &a->tt__VideoSource::Imaging, "")) - return soap->error; - if (soap_out_PointerTott__VideoSourceExtension(soap, "tt:Extension", -1, &a->tt__VideoSource::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__VideoSource::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__VideoSource(soap, tag, this, type); -} - -SOAP_FMAC3 tt__VideoSource * SOAP_FMAC4 soap_in_tt__VideoSource(struct soap *soap, const char *tag, tt__VideoSource *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__VideoSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__VideoSource, sizeof(tt__VideoSource), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__VideoSource) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__VideoSource *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__VideoSource*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Framerate1 = 1; - size_t soap_flag_Resolution1 = 1; - size_t soap_flag_Imaging1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Framerate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Framerate", &a->tt__VideoSource::Framerate, "xsd:float")) - { soap_flag_Framerate1--; - continue; - } - } - if (soap_flag_Resolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoResolution(soap, "tt:Resolution", &a->tt__VideoSource::Resolution, "tt:VideoResolution")) - { soap_flag_Resolution1--; - continue; - } - } - if (soap_flag_Imaging1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__ImagingSettings(soap, "tt:Imaging", &a->tt__VideoSource::Imaging, "tt:ImagingSettings")) - { soap_flag_Imaging1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__VideoSourceExtension(soap, "tt:Extension", &a->tt__VideoSource::Extension, "tt:VideoSourceExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Framerate1 > 0 || !a->tt__VideoSource::Resolution)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__VideoSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__VideoSource, SOAP_TYPE_tt__VideoSource, sizeof(tt__VideoSource), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__VideoSource * SOAP_FMAC2 soap_instantiate_tt__VideoSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__VideoSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__VideoSource *p; - size_t k = sizeof(tt__VideoSource); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__VideoSource, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__VideoSource); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__VideoSource, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__VideoSource location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__VideoSource::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__VideoSource(soap, tag ? tag : "tt:VideoSource", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__VideoSource::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__VideoSource(soap, this, tag, type); -} - -SOAP_FMAC3 tt__VideoSource * SOAP_FMAC4 soap_get_tt__VideoSource(struct soap *soap, tt__VideoSource *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__VideoSource(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__AnyHolder::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnyHolder::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__AnyHolder::__anyAttribute); -} - -void tt__AnyHolder::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__AnyHolder::__any); -#endif -} - -int tt__AnyHolder::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__AnyHolder(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnyHolder(struct soap *soap, const char *tag, int id, const tt__AnyHolder *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__AnyHolder*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__AnyHolder), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__AnyHolder::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__AnyHolder::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__AnyHolder(soap, tag, this, type); -} - -SOAP_FMAC3 tt__AnyHolder * SOAP_FMAC4 soap_in_tt__AnyHolder(struct soap *soap, const char *tag, tt__AnyHolder *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__AnyHolder*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__AnyHolder, sizeof(tt__AnyHolder), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__AnyHolder) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__AnyHolder *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__AnyHolder*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__AnyHolder::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__AnyHolder *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__AnyHolder, SOAP_TYPE_tt__AnyHolder, sizeof(tt__AnyHolder), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__AnyHolder * SOAP_FMAC2 soap_instantiate_tt__AnyHolder(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__AnyHolder(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__AnyHolder *p; - size_t k = sizeof(tt__AnyHolder); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__AnyHolder, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__AnyHolder); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__AnyHolder, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__AnyHolder location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__AnyHolder::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__AnyHolder(soap, tag ? tag : "tt:AnyHolder", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__AnyHolder::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__AnyHolder(soap, this, tag, type); -} - -SOAP_FMAC3 tt__AnyHolder * SOAP_FMAC4 soap_get_tt__AnyHolder(struct soap *soap, tt__AnyHolder *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__AnyHolder(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FloatItems::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOffloat(soap, &this->tt__FloatItems::Items); -} - -void tt__FloatItems::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOffloat(soap, &this->tt__FloatItems::Items); -#endif -} - -int tt__FloatItems::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FloatItems(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatItems(struct soap *soap, const char *tag, int id, const tt__FloatItems *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FloatItems), type)) - return soap->error; - if (soap_out_std__vectorTemplateOffloat(soap, "tt:Items", -1, &a->tt__FloatItems::Items, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FloatItems::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FloatItems(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FloatItems * SOAP_FMAC4 soap_in_tt__FloatItems(struct soap *soap, const char *tag, tt__FloatItems *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FloatItems*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FloatItems, sizeof(tt__FloatItems), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FloatItems) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FloatItems *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOffloat(soap, "tt:Items", &a->tt__FloatItems::Items, "xsd:float")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__FloatItems *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FloatItems, SOAP_TYPE_tt__FloatItems, sizeof(tt__FloatItems), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FloatItems * SOAP_FMAC2 soap_instantiate_tt__FloatItems(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FloatItems(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FloatItems *p; - size_t k = sizeof(tt__FloatItems); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FloatItems, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FloatItems); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FloatItems, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FloatItems location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FloatItems::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FloatItems(soap, tag ? tag : "tt:FloatItems", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FloatItems::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FloatItems(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FloatItems * SOAP_FMAC4 soap_get_tt__FloatItems(struct soap *soap, tt__FloatItems *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FloatItems(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IntItems::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfint(soap, &this->tt__IntItems::Items); -} - -void tt__IntItems::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfint(soap, &this->tt__IntItems::Items); -#endif -} - -int tt__IntItems::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IntItems(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntItems(struct soap *soap, const char *tag, int id, const tt__IntItems *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IntItems), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfint(soap, "tt:Items", -1, &a->tt__IntItems::Items, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IntItems::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IntItems(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IntItems * SOAP_FMAC4 soap_in_tt__IntItems(struct soap *soap, const char *tag, tt__IntItems *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IntItems*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IntItems, sizeof(tt__IntItems), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IntItems) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IntItems *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfint(soap, "tt:Items", &a->tt__IntItems::Items, "xsd:int")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IntItems *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IntItems, SOAP_TYPE_tt__IntItems, sizeof(tt__IntItems), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IntItems * SOAP_FMAC2 soap_instantiate_tt__IntItems(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IntItems(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IntItems *p; - size_t k = sizeof(tt__IntItems); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IntItems, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IntItems); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IntItems, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IntItems location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IntItems::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IntItems(soap, tag ? tag : "tt:IntItems", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IntItems::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IntItems(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IntItems * SOAP_FMAC4 soap_get_tt__IntItems(struct soap *soap, tt__IntItems *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IntItems(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DurationRange::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__duration(soap, &this->tt__DurationRange::Min); - soap_default_xsd__duration(soap, &this->tt__DurationRange::Max); -} - -void tt__DurationRange::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__DurationRange::Min, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__DurationRange::Min); - soap_embedded(soap, &this->tt__DurationRange::Max, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->tt__DurationRange::Max); -#endif -} - -int tt__DurationRange::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DurationRange(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DurationRange(struct soap *soap, const char *tag, int id, const tt__DurationRange *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DurationRange), type)) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:Min", -1, &a->tt__DurationRange::Min, "")) - return soap->error; - if (soap_out_xsd__duration(soap, "tt:Max", -1, &a->tt__DurationRange::Max, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DurationRange::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DurationRange(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DurationRange * SOAP_FMAC4 soap_in_tt__DurationRange(struct soap *soap, const char *tag, tt__DurationRange *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DurationRange*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DurationRange, sizeof(tt__DurationRange), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DurationRange) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DurationRange *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Min1 = 1; - size_t soap_flag_Max1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Min1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:Min", &a->tt__DurationRange::Min, "xsd:duration")) - { soap_flag_Min1--; - continue; - } - } - if (soap_flag_Max1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tt:Max", &a->tt__DurationRange::Max, "xsd:duration")) - { soap_flag_Max1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Min1 > 0 || soap_flag_Max1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__DurationRange *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DurationRange, SOAP_TYPE_tt__DurationRange, sizeof(tt__DurationRange), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DurationRange * SOAP_FMAC2 soap_instantiate_tt__DurationRange(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DurationRange(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__DurationRange *p; - size_t k = sizeof(tt__DurationRange); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DurationRange, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DurationRange); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DurationRange, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DurationRange location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DurationRange::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DurationRange(soap, tag ? tag : "tt:DurationRange", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DurationRange::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DurationRange(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DurationRange * SOAP_FMAC4 soap_get_tt__DurationRange(struct soap *soap, tt__DurationRange *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DurationRange(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FloatRange::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__FloatRange::Min); - soap_default_float(soap, &this->tt__FloatRange::Max); -} - -void tt__FloatRange::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__FloatRange::Min, SOAP_TYPE_float); - soap_embedded(soap, &this->tt__FloatRange::Max, SOAP_TYPE_float); -#endif -} - -int tt__FloatRange::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FloatRange(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatRange(struct soap *soap, const char *tag, int id, const tt__FloatRange *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FloatRange), type)) - return soap->error; - if (soap_out_float(soap, "tt:Min", -1, &a->tt__FloatRange::Min, "")) - return soap->error; - if (soap_out_float(soap, "tt:Max", -1, &a->tt__FloatRange::Max, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FloatRange::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FloatRange(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FloatRange * SOAP_FMAC4 soap_in_tt__FloatRange(struct soap *soap, const char *tag, tt__FloatRange *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FloatRange*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FloatRange, sizeof(tt__FloatRange), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FloatRange) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FloatRange *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Min1 = 1; - size_t soap_flag_Max1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Min1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Min", &a->tt__FloatRange::Min, "xsd:float")) - { soap_flag_Min1--; - continue; - } - } - if (soap_flag_Max1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_float(soap, "tt:Max", &a->tt__FloatRange::Max, "xsd:float")) - { soap_flag_Max1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Min1 > 0 || soap_flag_Max1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FloatRange *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FloatRange, SOAP_TYPE_tt__FloatRange, sizeof(tt__FloatRange), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FloatRange * SOAP_FMAC2 soap_instantiate_tt__FloatRange(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FloatRange(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FloatRange *p; - size_t k = sizeof(tt__FloatRange); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FloatRange, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FloatRange); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FloatRange, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FloatRange location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FloatRange::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FloatRange(soap, tag ? tag : "tt:FloatRange", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FloatRange::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FloatRange(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FloatRange * SOAP_FMAC4 soap_get_tt__FloatRange(struct soap *soap, tt__FloatRange *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FloatRange(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IntRectangleRange::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__IntRectangleRange::XRange = NULL; - this->tt__IntRectangleRange::YRange = NULL; - this->tt__IntRectangleRange::WidthRange = NULL; - this->tt__IntRectangleRange::HeightRange = NULL; -} - -void tt__IntRectangleRange::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__IntRange(soap, &this->tt__IntRectangleRange::XRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__IntRectangleRange::YRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__IntRectangleRange::WidthRange); - soap_serialize_PointerTott__IntRange(soap, &this->tt__IntRectangleRange::HeightRange); -#endif -} - -int tt__IntRectangleRange::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IntRectangleRange(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntRectangleRange(struct soap *soap, const char *tag, int id, const tt__IntRectangleRange *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IntRectangleRange), type)) - return soap->error; - if (!a->tt__IntRectangleRange::XRange) - { if (soap_element_empty(soap, "tt:XRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:XRange", -1, &a->tt__IntRectangleRange::XRange, "")) - return soap->error; - if (!a->tt__IntRectangleRange::YRange) - { if (soap_element_empty(soap, "tt:YRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:YRange", -1, &a->tt__IntRectangleRange::YRange, "")) - return soap->error; - if (!a->tt__IntRectangleRange::WidthRange) - { if (soap_element_empty(soap, "tt:WidthRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:WidthRange", -1, &a->tt__IntRectangleRange::WidthRange, "")) - return soap->error; - if (!a->tt__IntRectangleRange::HeightRange) - { if (soap_element_empty(soap, "tt:HeightRange", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTott__IntRange(soap, "tt:HeightRange", -1, &a->tt__IntRectangleRange::HeightRange, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IntRectangleRange::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IntRectangleRange(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IntRectangleRange * SOAP_FMAC4 soap_in_tt__IntRectangleRange(struct soap *soap, const char *tag, tt__IntRectangleRange *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IntRectangleRange*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IntRectangleRange, sizeof(tt__IntRectangleRange), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IntRectangleRange) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IntRectangleRange *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_XRange1 = 1; - size_t soap_flag_YRange1 = 1; - size_t soap_flag_WidthRange1 = 1; - size_t soap_flag_HeightRange1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_XRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:XRange", &a->tt__IntRectangleRange::XRange, "tt:IntRange")) - { soap_flag_XRange1--; - continue; - } - } - if (soap_flag_YRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:YRange", &a->tt__IntRectangleRange::YRange, "tt:IntRange")) - { soap_flag_YRange1--; - continue; - } - } - if (soap_flag_WidthRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:WidthRange", &a->tt__IntRectangleRange::WidthRange, "tt:IntRange")) - { soap_flag_WidthRange1--; - continue; - } - } - if (soap_flag_HeightRange1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__IntRange(soap, "tt:HeightRange", &a->tt__IntRectangleRange::HeightRange, "tt:IntRange")) - { soap_flag_HeightRange1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->tt__IntRectangleRange::XRange || !a->tt__IntRectangleRange::YRange || !a->tt__IntRectangleRange::WidthRange || !a->tt__IntRectangleRange::HeightRange)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IntRectangleRange *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IntRectangleRange, SOAP_TYPE_tt__IntRectangleRange, sizeof(tt__IntRectangleRange), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IntRectangleRange * SOAP_FMAC2 soap_instantiate_tt__IntRectangleRange(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IntRectangleRange(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IntRectangleRange *p; - size_t k = sizeof(tt__IntRectangleRange); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IntRectangleRange, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IntRectangleRange); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IntRectangleRange, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IntRectangleRange location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IntRectangleRange::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IntRectangleRange(soap, tag ? tag : "tt:IntRectangleRange", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IntRectangleRange::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IntRectangleRange(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IntRectangleRange * SOAP_FMAC4 soap_get_tt__IntRectangleRange(struct soap *soap, tt__IntRectangleRange *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IntRectangleRange(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IntRectangle::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__IntRectangle::x); - soap_default_int(soap, &this->tt__IntRectangle::y); - soap_default_int(soap, &this->tt__IntRectangle::width); - soap_default_int(soap, &this->tt__IntRectangle::height); -} - -void tt__IntRectangle::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__IntRectangle::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IntRectangle(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntRectangle(struct soap *soap, const char *tag, int id, const tt__IntRectangle *a, const char *type) -{ - soap_set_attr(soap, "x", soap_int2s(soap, ((tt__IntRectangle*)a)->x), 1); - soap_set_attr(soap, "y", soap_int2s(soap, ((tt__IntRectangle*)a)->y), 1); - soap_set_attr(soap, "width", soap_int2s(soap, ((tt__IntRectangle*)a)->width), 1); - soap_set_attr(soap, "height", soap_int2s(soap, ((tt__IntRectangle*)a)->height), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IntRectangle), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IntRectangle::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IntRectangle(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IntRectangle * SOAP_FMAC4 soap_in_tt__IntRectangle(struct soap *soap, const char *tag, tt__IntRectangle *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IntRectangle*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IntRectangle, sizeof(tt__IntRectangle), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IntRectangle) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IntRectangle *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2int(soap, soap_attr_value(soap, "x", 5, 1), &((tt__IntRectangle*)a)->x)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "y", 5, 1), &((tt__IntRectangle*)a)->y)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "width", 5, 1), &((tt__IntRectangle*)a)->width)) - return NULL; - if (soap_s2int(soap, soap_attr_value(soap, "height", 5, 1), &((tt__IntRectangle*)a)->height)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__IntRectangle *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IntRectangle, SOAP_TYPE_tt__IntRectangle, sizeof(tt__IntRectangle), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IntRectangle * SOAP_FMAC2 soap_instantiate_tt__IntRectangle(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IntRectangle(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IntRectangle *p; - size_t k = sizeof(tt__IntRectangle); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IntRectangle, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IntRectangle); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IntRectangle, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IntRectangle location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IntRectangle::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IntRectangle(soap, tag ? tag : "tt:IntRectangle", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IntRectangle::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IntRectangle(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IntRectangle * SOAP_FMAC4 soap_get_tt__IntRectangle(struct soap *soap, tt__IntRectangle *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IntRectangle(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__DeviceEntity::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_tt__ReferenceToken(soap, &this->tt__DeviceEntity::token); -} - -void tt__DeviceEntity::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__DeviceEntity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__DeviceEntity(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceEntity(struct soap *soap, const char *tag, int id, const tt__DeviceEntity *a, const char *type) -{ - soap_set_attr(soap, "token", soap_tt__ReferenceToken2s(soap, ((tt__DeviceEntity*)a)->token), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__DeviceEntity), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__DeviceEntity::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__DeviceEntity(soap, tag, this, type); -} - -SOAP_FMAC3 tt__DeviceEntity * SOAP_FMAC4 soap_in_tt__DeviceEntity(struct soap *soap, const char *tag, tt__DeviceEntity *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__DeviceEntity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__DeviceEntity, sizeof(tt__DeviceEntity), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__DeviceEntity) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__DeviceEntity *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2tt__ReferenceToken(soap, soap_attr_value(soap, "token", 1, 1), &((tt__DeviceEntity*)a)->token)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__DeviceEntity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__DeviceEntity, SOAP_TYPE_tt__DeviceEntity, sizeof(tt__DeviceEntity), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__DeviceEntity * SOAP_FMAC2 soap_instantiate_tt__DeviceEntity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__DeviceEntity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "tt:VideoSource")) - return soap_instantiate_tt__VideoSource(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AudioSource")) - return soap_instantiate_tt__AudioSource(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:VideoOutput")) - return soap_instantiate_tt__VideoOutput(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:AudioOutput")) - return soap_instantiate_tt__AudioOutput(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:NetworkInterface")) - return soap_instantiate_tt__NetworkInterface(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:RelayOutput")) - return soap_instantiate_tt__RelayOutput(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:DigitalInput")) - return soap_instantiate_tt__DigitalInput(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:PTZNode")) - return soap_instantiate_tt__PTZNode(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tt:OSDConfiguration")) - return soap_instantiate_tt__OSDConfiguration(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tmd:SerialPort")) - return soap_instantiate_tmd__SerialPort(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "tds:StorageConfiguration")) - return soap_instantiate_tds__StorageConfiguration(soap, n, NULL, NULL, size); - tt__DeviceEntity *p; - size_t k = sizeof(tt__DeviceEntity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__DeviceEntity, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__DeviceEntity); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__DeviceEntity, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__DeviceEntity location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__DeviceEntity::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__DeviceEntity(soap, tag ? tag : "tt:DeviceEntity", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__DeviceEntity::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__DeviceEntity(soap, this, tag, type); -} - -SOAP_FMAC3 tt__DeviceEntity * SOAP_FMAC4 soap_get_tt__DeviceEntity(struct soap *soap, tt__DeviceEntity *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__DeviceEntity(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LocationEntity::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__LocationEntity::GeoLocation = NULL; - this->tt__LocationEntity::GeoOrientation = NULL; - this->tt__LocationEntity::LocalLocation = NULL; - this->tt__LocationEntity::LocalOrientation = NULL; - this->tt__LocationEntity::Entity = NULL; - this->tt__LocationEntity::Token = NULL; - this->tt__LocationEntity::Fixed = NULL; - this->tt__LocationEntity::GeoSource = NULL; - this->tt__LocationEntity::AutoGeo = NULL; -} - -void tt__LocationEntity::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__GeoLocation(soap, &this->tt__LocationEntity::GeoLocation); - soap_serialize_PointerTott__GeoOrientation(soap, &this->tt__LocationEntity::GeoOrientation); - soap_serialize_PointerTott__LocalLocation(soap, &this->tt__LocationEntity::LocalLocation); - soap_serialize_PointerTott__LocalOrientation(soap, &this->tt__LocationEntity::LocalOrientation); -#endif -} - -int tt__LocationEntity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LocationEntity(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LocationEntity(struct soap *soap, const char *tag, int id, const tt__LocationEntity *a, const char *type) -{ - if (((tt__LocationEntity*)a)->Entity) - { soap_set_attr(soap, "Entity", soap_std__string2s(soap, *((tt__LocationEntity*)a)->Entity), 1); - } - if (((tt__LocationEntity*)a)->Token) - { soap_set_attr(soap, "Token", soap_tt__ReferenceToken2s(soap, *((tt__LocationEntity*)a)->Token), 1); - } - if (((tt__LocationEntity*)a)->Fixed) - { soap_set_attr(soap, "Fixed", soap_bool2s(soap, *((tt__LocationEntity*)a)->Fixed), 1); - } - if (((tt__LocationEntity*)a)->GeoSource) - { soap_set_attr(soap, "GeoSource", soap_xsd__anyURI2s(soap, *((tt__LocationEntity*)a)->GeoSource), 1); - } - if (((tt__LocationEntity*)a)->AutoGeo) - { soap_set_attr(soap, "AutoGeo", soap_bool2s(soap, *((tt__LocationEntity*)a)->AutoGeo), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LocationEntity), type)) - return soap->error; - if (soap_out_PointerTott__GeoLocation(soap, "tt:GeoLocation", -1, &a->tt__LocationEntity::GeoLocation, "")) - return soap->error; - if (soap_out_PointerTott__GeoOrientation(soap, "tt:GeoOrientation", -1, &a->tt__LocationEntity::GeoOrientation, "")) - return soap->error; - if (soap_out_PointerTott__LocalLocation(soap, "tt:LocalLocation", -1, &a->tt__LocationEntity::LocalLocation, "")) - return soap->error; - if (soap_out_PointerTott__LocalOrientation(soap, "tt:LocalOrientation", -1, &a->tt__LocationEntity::LocalOrientation, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LocationEntity::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LocationEntity(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LocationEntity * SOAP_FMAC4 soap_in_tt__LocationEntity(struct soap *soap, const char *tag, tt__LocationEntity *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LocationEntity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LocationEntity, sizeof(tt__LocationEntity), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LocationEntity) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LocationEntity *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "Entity", 1, 0); - if (t) - { - if (!(((tt__LocationEntity*)a)->Entity = soap_new_std__string(soap))) - return NULL; - if (soap_s2std__string(soap, t, ((tt__LocationEntity*)a)->Entity)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Token", 1, 0); - if (t) - { - if (!(((tt__LocationEntity*)a)->Token = soap_new_tt__ReferenceToken(soap))) - return NULL; - if (soap_s2tt__ReferenceToken(soap, t, ((tt__LocationEntity*)a)->Token)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Fixed", 5, 0); - if (t) - { - if (!(((tt__LocationEntity*)a)->Fixed = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__LocationEntity*)a)->Fixed)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "GeoSource", 4, 0); - if (t) - { - if (!(((tt__LocationEntity*)a)->GeoSource = soap_new_xsd__anyURI(soap))) - return NULL; - if (soap_s2xsd__anyURI(soap, t, ((tt__LocationEntity*)a)->GeoSource)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "AutoGeo", 5, 0); - if (t) - { - if (!(((tt__LocationEntity*)a)->AutoGeo = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tt__LocationEntity*)a)->AutoGeo)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_GeoLocation1 = 1; - size_t soap_flag_GeoOrientation1 = 1; - size_t soap_flag_LocalLocation1 = 1; - size_t soap_flag_LocalOrientation1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_GeoLocation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__GeoLocation(soap, "tt:GeoLocation", &a->tt__LocationEntity::GeoLocation, "tt:GeoLocation")) - { soap_flag_GeoLocation1--; - continue; - } - } - if (soap_flag_GeoOrientation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__GeoOrientation(soap, "tt:GeoOrientation", &a->tt__LocationEntity::GeoOrientation, "tt:GeoOrientation")) - { soap_flag_GeoOrientation1--; - continue; - } - } - if (soap_flag_LocalLocation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__LocalLocation(soap, "tt:LocalLocation", &a->tt__LocationEntity::LocalLocation, "tt:LocalLocation")) - { soap_flag_LocalLocation1--; - continue; - } - } - if (soap_flag_LocalOrientation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__LocalOrientation(soap, "tt:LocalOrientation", &a->tt__LocationEntity::LocalOrientation, "tt:LocalOrientation")) - { soap_flag_LocalOrientation1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__LocationEntity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LocationEntity, SOAP_TYPE_tt__LocationEntity, sizeof(tt__LocationEntity), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LocationEntity * SOAP_FMAC2 soap_instantiate_tt__LocationEntity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LocationEntity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LocationEntity *p; - size_t k = sizeof(tt__LocationEntity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LocationEntity, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LocationEntity); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LocationEntity, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LocationEntity location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LocationEntity::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LocationEntity(soap, tag ? tag : "tt:LocationEntity", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LocationEntity::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LocationEntity(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LocationEntity * SOAP_FMAC4 soap_get_tt__LocationEntity(struct soap *soap, tt__LocationEntity *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LocationEntity(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LocalOrientation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LocalOrientation::__any); - this->tt__LocalOrientation::pan = NULL; - this->tt__LocalOrientation::tilt = NULL; - this->tt__LocalOrientation::roll = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__LocalOrientation::__anyAttribute); -} - -void tt__LocalOrientation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LocalOrientation::__any); -#endif -} - -int tt__LocalOrientation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LocalOrientation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LocalOrientation(struct soap *soap, const char *tag, int id, const tt__LocalOrientation *a, const char *type) -{ - if (((tt__LocalOrientation*)a)->pan) - { soap_set_attr(soap, "pan", soap_float2s(soap, *((tt__LocalOrientation*)a)->pan), 1); - } - if (((tt__LocalOrientation*)a)->tilt) - { soap_set_attr(soap, "tilt", soap_float2s(soap, *((tt__LocalOrientation*)a)->tilt), 1); - } - if (((tt__LocalOrientation*)a)->roll) - { soap_set_attr(soap, "roll", soap_float2s(soap, *((tt__LocalOrientation*)a)->roll), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__LocalOrientation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LocalOrientation), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__LocalOrientation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LocalOrientation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LocalOrientation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LocalOrientation * SOAP_FMAC4 soap_in_tt__LocalOrientation(struct soap *soap, const char *tag, tt__LocalOrientation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LocalOrientation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LocalOrientation, sizeof(tt__LocalOrientation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LocalOrientation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LocalOrientation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "pan", 5, 0); - if (t) - { - if (!(((tt__LocalOrientation*)a)->pan = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LocalOrientation*)a)->pan)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "tilt", 5, 0); - if (t) - { - if (!(((tt__LocalOrientation*)a)->tilt = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LocalOrientation*)a)->tilt)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "roll", 5, 0); - if (t) - { - if (!(((tt__LocalOrientation*)a)->roll = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LocalOrientation*)a)->roll)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__LocalOrientation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__LocalOrientation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__LocalOrientation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LocalOrientation, SOAP_TYPE_tt__LocalOrientation, sizeof(tt__LocalOrientation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LocalOrientation * SOAP_FMAC2 soap_instantiate_tt__LocalOrientation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LocalOrientation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LocalOrientation *p; - size_t k = sizeof(tt__LocalOrientation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LocalOrientation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LocalOrientation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LocalOrientation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LocalOrientation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LocalOrientation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LocalOrientation(soap, tag ? tag : "tt:LocalOrientation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LocalOrientation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LocalOrientation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LocalOrientation * SOAP_FMAC4 soap_get_tt__LocalOrientation(struct soap *soap, tt__LocalOrientation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LocalOrientation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__LocalLocation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LocalLocation::__any); - this->tt__LocalLocation::x = NULL; - this->tt__LocalLocation::y = NULL; - this->tt__LocalLocation::z = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__LocalLocation::__anyAttribute); -} - -void tt__LocalLocation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__LocalLocation::__any); -#endif -} - -int tt__LocalLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__LocalLocation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LocalLocation(struct soap *soap, const char *tag, int id, const tt__LocalLocation *a, const char *type) -{ - if (((tt__LocalLocation*)a)->x) - { soap_set_attr(soap, "x", soap_float2s(soap, *((tt__LocalLocation*)a)->x), 1); - } - if (((tt__LocalLocation*)a)->y) - { soap_set_attr(soap, "y", soap_float2s(soap, *((tt__LocalLocation*)a)->y), 1); - } - if (((tt__LocalLocation*)a)->z) - { soap_set_attr(soap, "z", soap_float2s(soap, *((tt__LocalLocation*)a)->z), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__LocalLocation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__LocalLocation), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__LocalLocation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__LocalLocation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__LocalLocation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__LocalLocation * SOAP_FMAC4 soap_in_tt__LocalLocation(struct soap *soap, const char *tag, tt__LocalLocation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__LocalLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__LocalLocation, sizeof(tt__LocalLocation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__LocalLocation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__LocalLocation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "x", 5, 0); - if (t) - { - if (!(((tt__LocalLocation*)a)->x = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LocalLocation*)a)->x)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "y", 5, 0); - if (t) - { - if (!(((tt__LocalLocation*)a)->y = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LocalLocation*)a)->y)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "z", 5, 0); - if (t) - { - if (!(((tt__LocalLocation*)a)->z = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__LocalLocation*)a)->z)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__LocalLocation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__LocalLocation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__LocalLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__LocalLocation, SOAP_TYPE_tt__LocalLocation, sizeof(tt__LocalLocation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__LocalLocation * SOAP_FMAC2 soap_instantiate_tt__LocalLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__LocalLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__LocalLocation *p; - size_t k = sizeof(tt__LocalLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__LocalLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__LocalLocation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__LocalLocation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__LocalLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__LocalLocation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__LocalLocation(soap, tag ? tag : "tt:LocalLocation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__LocalLocation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__LocalLocation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__LocalLocation * SOAP_FMAC4 soap_get_tt__LocalLocation(struct soap *soap, tt__LocalLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__LocalLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__GeoOrientation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GeoOrientation::__any); - this->tt__GeoOrientation::roll = NULL; - this->tt__GeoOrientation::pitch = NULL; - this->tt__GeoOrientation::yaw = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__GeoOrientation::__anyAttribute); -} - -void tt__GeoOrientation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GeoOrientation::__any); -#endif -} - -int tt__GeoOrientation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__GeoOrientation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GeoOrientation(struct soap *soap, const char *tag, int id, const tt__GeoOrientation *a, const char *type) -{ - if (((tt__GeoOrientation*)a)->roll) - { soap_set_attr(soap, "roll", soap_float2s(soap, *((tt__GeoOrientation*)a)->roll), 1); - } - if (((tt__GeoOrientation*)a)->pitch) - { soap_set_attr(soap, "pitch", soap_float2s(soap, *((tt__GeoOrientation*)a)->pitch), 1); - } - if (((tt__GeoOrientation*)a)->yaw) - { soap_set_attr(soap, "yaw", soap_float2s(soap, *((tt__GeoOrientation*)a)->yaw), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__GeoOrientation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__GeoOrientation), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__GeoOrientation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__GeoOrientation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__GeoOrientation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__GeoOrientation * SOAP_FMAC4 soap_in_tt__GeoOrientation(struct soap *soap, const char *tag, tt__GeoOrientation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__GeoOrientation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__GeoOrientation, sizeof(tt__GeoOrientation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__GeoOrientation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__GeoOrientation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "roll", 5, 0); - if (t) - { - if (!(((tt__GeoOrientation*)a)->roll = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__GeoOrientation*)a)->roll)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "pitch", 5, 0); - if (t) - { - if (!(((tt__GeoOrientation*)a)->pitch = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__GeoOrientation*)a)->pitch)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "yaw", 5, 0); - if (t) - { - if (!(((tt__GeoOrientation*)a)->yaw = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__GeoOrientation*)a)->yaw)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__GeoOrientation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__GeoOrientation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__GeoOrientation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__GeoOrientation, SOAP_TYPE_tt__GeoOrientation, sizeof(tt__GeoOrientation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__GeoOrientation * SOAP_FMAC2 soap_instantiate_tt__GeoOrientation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__GeoOrientation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__GeoOrientation *p; - size_t k = sizeof(tt__GeoOrientation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__GeoOrientation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__GeoOrientation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__GeoOrientation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__GeoOrientation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__GeoOrientation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__GeoOrientation(soap, tag ? tag : "tt:GeoOrientation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__GeoOrientation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__GeoOrientation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__GeoOrientation * SOAP_FMAC4 soap_get_tt__GeoOrientation(struct soap *soap, tt__GeoOrientation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__GeoOrientation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__GeoLocation::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GeoLocation::__any); - this->tt__GeoLocation::lon = NULL; - this->tt__GeoLocation::lat = NULL; - this->tt__GeoLocation::elevation = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__GeoLocation::__anyAttribute); -} - -void tt__GeoLocation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__GeoLocation::__any); -#endif -} - -int tt__GeoLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__GeoLocation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GeoLocation(struct soap *soap, const char *tag, int id, const tt__GeoLocation *a, const char *type) -{ - if (((tt__GeoLocation*)a)->lon) - { soap_set_attr(soap, "lon", soap_double2s(soap, *((tt__GeoLocation*)a)->lon), 1); - } - if (((tt__GeoLocation*)a)->lat) - { soap_set_attr(soap, "lat", soap_double2s(soap, *((tt__GeoLocation*)a)->lat), 1); - } - if (((tt__GeoLocation*)a)->elevation) - { soap_set_attr(soap, "elevation", soap_float2s(soap, *((tt__GeoLocation*)a)->elevation), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__GeoLocation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__GeoLocation), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__GeoLocation::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__GeoLocation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__GeoLocation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__GeoLocation * SOAP_FMAC4 soap_in_tt__GeoLocation(struct soap *soap, const char *tag, tt__GeoLocation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__GeoLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__GeoLocation, sizeof(tt__GeoLocation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__GeoLocation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__GeoLocation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "lon", 5, 0); - if (t) - { - if (!(((tt__GeoLocation*)a)->lon = (double *)soap_malloc(soap, sizeof(double)))) - return NULL; - if (soap_s2double(soap, t, ((tt__GeoLocation*)a)->lon)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "lat", 5, 0); - if (t) - { - if (!(((tt__GeoLocation*)a)->lat = (double *)soap_malloc(soap, sizeof(double)))) - return NULL; - if (soap_s2double(soap, t, ((tt__GeoLocation*)a)->lat)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "elevation", 5, 0); - if (t) - { - if (!(((tt__GeoLocation*)a)->elevation = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__GeoLocation*)a)->elevation)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__GeoLocation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__GeoLocation::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__GeoLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__GeoLocation, SOAP_TYPE_tt__GeoLocation, sizeof(tt__GeoLocation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__GeoLocation * SOAP_FMAC2 soap_instantiate_tt__GeoLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__GeoLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__GeoLocation *p; - size_t k = sizeof(tt__GeoLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__GeoLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__GeoLocation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__GeoLocation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__GeoLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__GeoLocation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__GeoLocation(soap, tag ? tag : "tt:GeoLocation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__GeoLocation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__GeoLocation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__GeoLocation * SOAP_FMAC4 soap_get_tt__GeoLocation(struct soap *soap, tt__GeoLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__GeoLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__TransformationExtension::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TransformationExtension::__any); -} - -void tt__TransformationExtension::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__TransformationExtension::__any); -#endif -} - -int tt__TransformationExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__TransformationExtension(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TransformationExtension(struct soap *soap, const char *tag, int id, const tt__TransformationExtension *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__TransformationExtension), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__TransformationExtension::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__TransformationExtension::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__TransformationExtension(soap, tag, this, type); -} - -SOAP_FMAC3 tt__TransformationExtension * SOAP_FMAC4 soap_in_tt__TransformationExtension(struct soap *soap, const char *tag, tt__TransformationExtension *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__TransformationExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__TransformationExtension, sizeof(tt__TransformationExtension), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__TransformationExtension) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__TransformationExtension *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__TransformationExtension::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__TransformationExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__TransformationExtension, SOAP_TYPE_tt__TransformationExtension, sizeof(tt__TransformationExtension), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__TransformationExtension * SOAP_FMAC2 soap_instantiate_tt__TransformationExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__TransformationExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__TransformationExtension *p; - size_t k = sizeof(tt__TransformationExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__TransformationExtension, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__TransformationExtension); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__TransformationExtension, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__TransformationExtension location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__TransformationExtension::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__TransformationExtension(soap, tag ? tag : "tt:TransformationExtension", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__TransformationExtension::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__TransformationExtension(soap, this, tag, type); -} - -SOAP_FMAC3 tt__TransformationExtension * SOAP_FMAC4 soap_get_tt__TransformationExtension(struct soap *soap, tt__TransformationExtension *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__TransformationExtension(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Transformation::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__Transformation::Translate = NULL; - this->tt__Transformation::Scale = NULL; - this->tt__Transformation::Extension = NULL; - soap_default_xsd__anyAttribute(soap, &this->tt__Transformation::__anyAttribute); -} - -void tt__Transformation::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Vector(soap, &this->tt__Transformation::Translate); - soap_serialize_PointerTott__Vector(soap, &this->tt__Transformation::Scale); - soap_serialize_PointerTott__TransformationExtension(soap, &this->tt__Transformation::Extension); -#endif -} - -int tt__Transformation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Transformation(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Transformation(struct soap *soap, const char *tag, int id, const tt__Transformation *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__Transformation*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Transformation), type)) - return soap->error; - if (soap_out_PointerTott__Vector(soap, "tt:Translate", -1, &a->tt__Transformation::Translate, "")) - return soap->error; - if (soap_out_PointerTott__Vector(soap, "tt:Scale", -1, &a->tt__Transformation::Scale, "")) - return soap->error; - if (soap_out_PointerTott__TransformationExtension(soap, "tt:Extension", -1, &a->tt__Transformation::Extension, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Transformation::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Transformation(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Transformation * SOAP_FMAC4 soap_in_tt__Transformation(struct soap *soap, const char *tag, tt__Transformation *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Transformation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Transformation, sizeof(tt__Transformation), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Transformation) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Transformation *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__Transformation*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Translate1 = 1; - size_t soap_flag_Scale1 = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Translate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Vector(soap, "tt:Translate", &a->tt__Transformation::Translate, "tt:Vector")) - { soap_flag_Translate1--; - continue; - } - } - if (soap_flag_Scale1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Vector(soap, "tt:Scale", &a->tt__Transformation::Scale, "tt:Vector")) - { soap_flag_Scale1--; - continue; - } - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__TransformationExtension(soap, "tt:Extension", &a->tt__Transformation::Extension, "tt:TransformationExtension")) - { soap_flag_Extension1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Transformation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Transformation, SOAP_TYPE_tt__Transformation, sizeof(tt__Transformation), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Transformation * SOAP_FMAC2 soap_instantiate_tt__Transformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Transformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Transformation *p; - size_t k = sizeof(tt__Transformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Transformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Transformation); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Transformation, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Transformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Transformation::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Transformation(soap, tag ? tag : "tt:Transformation", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Transformation::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Transformation(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Transformation * SOAP_FMAC4 soap_get_tt__Transformation(struct soap *soap, tt__Transformation *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Transformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ColorDescriptor::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(soap, &this->tt__ColorDescriptor::ColorCluster); - this->tt__ColorDescriptor::Extension = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ColorDescriptor::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__ColorDescriptor::__anyAttribute); -} - -void tt__ColorDescriptor::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(soap, &this->tt__ColorDescriptor::ColorCluster); - soap_serialize_PointerToxsd__anyType(soap, &this->tt__ColorDescriptor::Extension); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__ColorDescriptor::__any); -#endif -} - -int tt__ColorDescriptor::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ColorDescriptor(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorDescriptor(struct soap *soap, const char *tag, int id, const tt__ColorDescriptor *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__ColorDescriptor*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ColorDescriptor), type)) - return soap->error; - if (soap_out_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(soap, "tt:ColorCluster", -1, &a->tt__ColorDescriptor::ColorCluster, "")) - return soap->error; - if (soap_out_PointerToxsd__anyType(soap, "tt:Extension", -1, &a->tt__ColorDescriptor::Extension, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__ColorDescriptor::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ColorDescriptor::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ColorDescriptor(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ColorDescriptor * SOAP_FMAC4 soap_in_tt__ColorDescriptor(struct soap *soap, const char *tag, tt__ColorDescriptor *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ColorDescriptor*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ColorDescriptor, sizeof(tt__ColorDescriptor), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ColorDescriptor) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ColorDescriptor *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__ColorDescriptor*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Extension1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(soap, "tt:ColorCluster", &a->tt__ColorDescriptor::ColorCluster, "")) - continue; - } - if (soap_flag_Extension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__anyType(soap, "tt:Extension", &a->tt__ColorDescriptor::Extension, "xsd:anyType")) - { soap_flag_Extension1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__ColorDescriptor::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ColorDescriptor *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ColorDescriptor, SOAP_TYPE_tt__ColorDescriptor, sizeof(tt__ColorDescriptor), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ColorDescriptor * SOAP_FMAC2 soap_instantiate_tt__ColorDescriptor(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ColorDescriptor(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ColorDescriptor *p; - size_t k = sizeof(tt__ColorDescriptor); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ColorDescriptor, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ColorDescriptor); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ColorDescriptor, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ColorDescriptor location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ColorDescriptor::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ColorDescriptor(soap, tag ? tag : "tt:ColorDescriptor", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ColorDescriptor::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ColorDescriptor(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ColorDescriptor * SOAP_FMAC4 soap_get_tt__ColorDescriptor(struct soap *soap, tt__ColorDescriptor *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ColorDescriptor(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__ColorCovariance::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__ColorCovariance::XX); - soap_default_float(soap, &this->tt__ColorCovariance::YY); - soap_default_float(soap, &this->tt__ColorCovariance::ZZ); - this->tt__ColorCovariance::XY = NULL; - this->tt__ColorCovariance::XZ = NULL; - this->tt__ColorCovariance::YZ = NULL; - this->tt__ColorCovariance::Colorspace = NULL; -} - -void tt__ColorCovariance::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__ColorCovariance::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__ColorCovariance(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorCovariance(struct soap *soap, const char *tag, int id, const tt__ColorCovariance *a, const char *type) -{ - soap_set_attr(soap, "XX", soap_float2s(soap, ((tt__ColorCovariance*)a)->XX), 1); - soap_set_attr(soap, "YY", soap_float2s(soap, ((tt__ColorCovariance*)a)->YY), 1); - soap_set_attr(soap, "ZZ", soap_float2s(soap, ((tt__ColorCovariance*)a)->ZZ), 1); - if (((tt__ColorCovariance*)a)->XY) - { soap_set_attr(soap, "XY", soap_float2s(soap, *((tt__ColorCovariance*)a)->XY), 1); - } - if (((tt__ColorCovariance*)a)->XZ) - { soap_set_attr(soap, "XZ", soap_float2s(soap, *((tt__ColorCovariance*)a)->XZ), 1); - } - if (((tt__ColorCovariance*)a)->YZ) - { soap_set_attr(soap, "YZ", soap_float2s(soap, *((tt__ColorCovariance*)a)->YZ), 1); - } - if (((tt__ColorCovariance*)a)->Colorspace) - { soap_set_attr(soap, "Colorspace", soap_xsd__anyURI2s(soap, *((tt__ColorCovariance*)a)->Colorspace), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__ColorCovariance), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__ColorCovariance::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__ColorCovariance(soap, tag, this, type); -} - -SOAP_FMAC3 tt__ColorCovariance * SOAP_FMAC4 soap_in_tt__ColorCovariance(struct soap *soap, const char *tag, tt__ColorCovariance *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__ColorCovariance*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__ColorCovariance, sizeof(tt__ColorCovariance), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__ColorCovariance) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__ColorCovariance *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2float(soap, soap_attr_value(soap, "XX", 5, 1), &((tt__ColorCovariance*)a)->XX)) - return NULL; - if (soap_s2float(soap, soap_attr_value(soap, "YY", 5, 1), &((tt__ColorCovariance*)a)->YY)) - return NULL; - if (soap_s2float(soap, soap_attr_value(soap, "ZZ", 5, 1), &((tt__ColorCovariance*)a)->ZZ)) - return NULL; - { - const char *t = soap_attr_value(soap, "XY", 5, 0); - if (t) - { - if (!(((tt__ColorCovariance*)a)->XY = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__ColorCovariance*)a)->XY)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "XZ", 5, 0); - if (t) - { - if (!(((tt__ColorCovariance*)a)->XZ = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__ColorCovariance*)a)->XZ)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "YZ", 5, 0); - if (t) - { - if (!(((tt__ColorCovariance*)a)->YZ = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__ColorCovariance*)a)->YZ)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "Colorspace", 4, 0); - if (t) - { - if (!(((tt__ColorCovariance*)a)->Colorspace = soap_new_xsd__anyURI(soap))) - return NULL; - if (soap_s2xsd__anyURI(soap, t, ((tt__ColorCovariance*)a)->Colorspace)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__ColorCovariance *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__ColorCovariance, SOAP_TYPE_tt__ColorCovariance, sizeof(tt__ColorCovariance), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__ColorCovariance * SOAP_FMAC2 soap_instantiate_tt__ColorCovariance(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__ColorCovariance(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__ColorCovariance *p; - size_t k = sizeof(tt__ColorCovariance); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__ColorCovariance, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__ColorCovariance); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__ColorCovariance, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__ColorCovariance location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__ColorCovariance::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__ColorCovariance(soap, tag ? tag : "tt:ColorCovariance", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__ColorCovariance::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__ColorCovariance(soap, this, tag, type); -} - -SOAP_FMAC3 tt__ColorCovariance * SOAP_FMAC4 soap_get_tt__ColorCovariance(struct soap *soap, tt__ColorCovariance *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__ColorCovariance(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Color::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__Color::X); - soap_default_float(soap, &this->tt__Color::Y); - soap_default_float(soap, &this->tt__Color::Z); - this->tt__Color::Colorspace = NULL; -} - -void tt__Color::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Color::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Color(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Color(struct soap *soap, const char *tag, int id, const tt__Color *a, const char *type) -{ - soap_set_attr(soap, "X", soap_float2s(soap, ((tt__Color*)a)->X), 1); - soap_set_attr(soap, "Y", soap_float2s(soap, ((tt__Color*)a)->Y), 1); - soap_set_attr(soap, "Z", soap_float2s(soap, ((tt__Color*)a)->Z), 1); - if (((tt__Color*)a)->Colorspace) - { soap_set_attr(soap, "Colorspace", soap_xsd__anyURI2s(soap, *((tt__Color*)a)->Colorspace), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Color), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Color::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Color(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Color * SOAP_FMAC4 soap_in_tt__Color(struct soap *soap, const char *tag, tt__Color *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Color*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Color, sizeof(tt__Color), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Color) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Color *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2float(soap, soap_attr_value(soap, "X", 5, 1), &((tt__Color*)a)->X)) - return NULL; - if (soap_s2float(soap, soap_attr_value(soap, "Y", 5, 1), &((tt__Color*)a)->Y)) - return NULL; - if (soap_s2float(soap, soap_attr_value(soap, "Z", 5, 1), &((tt__Color*)a)->Z)) - return NULL; - { - const char *t = soap_attr_value(soap, "Colorspace", 4, 0); - if (t) - { - if (!(((tt__Color*)a)->Colorspace = soap_new_xsd__anyURI(soap))) - return NULL; - if (soap_s2xsd__anyURI(soap, t, ((tt__Color*)a)->Colorspace)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Color *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Color, SOAP_TYPE_tt__Color, sizeof(tt__Color), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Color * SOAP_FMAC2 soap_instantiate_tt__Color(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Color(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Color *p; - size_t k = sizeof(tt__Color); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Color, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Color); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Color, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Color location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Color::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Color(soap, tag ? tag : "tt:Color", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Color::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Color(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Color * SOAP_FMAC4 soap_get_tt__Color(struct soap *soap, tt__Color *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Color(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Polygon::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTott__Vector(soap, &this->tt__Polygon::Point); -} - -void tt__Polygon::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTott__Vector(soap, &this->tt__Polygon::Point); -#endif -} - -int tt__Polygon::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Polygon(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Polygon(struct soap *soap, const char *tag, int id, const tt__Polygon *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Polygon), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTott__Vector(soap, "tt:Point", -1, &a->tt__Polygon::Point, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Polygon::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Polygon(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Polygon * SOAP_FMAC4 soap_in_tt__Polygon(struct soap *soap, const char *tag, tt__Polygon *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Polygon*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Polygon, sizeof(tt__Polygon), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Polygon) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Polygon *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTott__Vector(soap, "tt:Point", &a->tt__Polygon::Point, "tt:Vector")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->tt__Polygon::Point.size() < 3)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__Polygon *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Polygon, SOAP_TYPE_tt__Polygon, sizeof(tt__Polygon), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Polygon * SOAP_FMAC2 soap_instantiate_tt__Polygon(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Polygon(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Polygon *p; - size_t k = sizeof(tt__Polygon); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Polygon, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Polygon); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Polygon, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Polygon location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Polygon::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Polygon(soap, tag ? tag : "tt:Polygon", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Polygon::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Polygon(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Polygon * SOAP_FMAC4 soap_get_tt__Polygon(struct soap *soap, tt__Polygon *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Polygon(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Rectangle::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__Rectangle::bottom = NULL; - this->tt__Rectangle::top = NULL; - this->tt__Rectangle::right = NULL; - this->tt__Rectangle::left = NULL; -} - -void tt__Rectangle::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Rectangle::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Rectangle(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Rectangle(struct soap *soap, const char *tag, int id, const tt__Rectangle *a, const char *type) -{ - if (((tt__Rectangle*)a)->bottom) - { soap_set_attr(soap, "bottom", soap_float2s(soap, *((tt__Rectangle*)a)->bottom), 1); - } - if (((tt__Rectangle*)a)->top) - { soap_set_attr(soap, "top", soap_float2s(soap, *((tt__Rectangle*)a)->top), 1); - } - if (((tt__Rectangle*)a)->right) - { soap_set_attr(soap, "right", soap_float2s(soap, *((tt__Rectangle*)a)->right), 1); - } - if (((tt__Rectangle*)a)->left) - { soap_set_attr(soap, "left", soap_float2s(soap, *((tt__Rectangle*)a)->left), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Rectangle), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Rectangle::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Rectangle(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Rectangle * SOAP_FMAC4 soap_in_tt__Rectangle(struct soap *soap, const char *tag, tt__Rectangle *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Rectangle*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Rectangle, sizeof(tt__Rectangle), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Rectangle) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Rectangle *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "bottom", 5, 0); - if (t) - { - if (!(((tt__Rectangle*)a)->bottom = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__Rectangle*)a)->bottom)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "top", 5, 0); - if (t) - { - if (!(((tt__Rectangle*)a)->top = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__Rectangle*)a)->top)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "right", 5, 0); - if (t) - { - if (!(((tt__Rectangle*)a)->right = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__Rectangle*)a)->right)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "left", 5, 0); - if (t) - { - if (!(((tt__Rectangle*)a)->left = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__Rectangle*)a)->left)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Rectangle *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Rectangle, SOAP_TYPE_tt__Rectangle, sizeof(tt__Rectangle), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Rectangle * SOAP_FMAC2 soap_instantiate_tt__Rectangle(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Rectangle(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Rectangle *p; - size_t k = sizeof(tt__Rectangle); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Rectangle, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Rectangle); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Rectangle, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Rectangle location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Rectangle::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Rectangle(soap, tag ? tag : "tt:Rectangle", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Rectangle::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Rectangle(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Rectangle * SOAP_FMAC4 soap_get_tt__Rectangle(struct soap *soap, tt__Rectangle *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Rectangle(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Vector::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__Vector::x = NULL; - this->tt__Vector::y = NULL; -} - -void tt__Vector::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Vector::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Vector(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Vector(struct soap *soap, const char *tag, int id, const tt__Vector *a, const char *type) -{ - if (((tt__Vector*)a)->x) - { soap_set_attr(soap, "x", soap_float2s(soap, *((tt__Vector*)a)->x), 1); - } - if (((tt__Vector*)a)->y) - { soap_set_attr(soap, "y", soap_float2s(soap, *((tt__Vector*)a)->y), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Vector), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Vector::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Vector(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Vector * SOAP_FMAC4 soap_in_tt__Vector(struct soap *soap, const char *tag, tt__Vector *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Vector*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Vector, sizeof(tt__Vector), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Vector) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Vector *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "x", 5, 0); - if (t) - { - if (!(((tt__Vector*)a)->x = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__Vector*)a)->x)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "y", 5, 0); - if (t) - { - if (!(((tt__Vector*)a)->y = (float *)soap_malloc(soap, sizeof(float)))) - return NULL; - if (soap_s2float(soap, t, ((tt__Vector*)a)->y)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Vector *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Vector, SOAP_TYPE_tt__Vector, sizeof(tt__Vector), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Vector * SOAP_FMAC2 soap_instantiate_tt__Vector(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Vector(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Vector *p; - size_t k = sizeof(tt__Vector); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Vector, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Vector); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Vector, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Vector location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Vector::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Vector(soap, tag ? tag : "tt:Vector", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Vector::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Vector(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Vector * SOAP_FMAC4 soap_get_tt__Vector(struct soap *soap, tt__Vector *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Vector(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZMoveStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZMoveStatus::PanTilt = NULL; - this->tt__PTZMoveStatus::Zoom = NULL; -} - -void tt__PTZMoveStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__MoveStatus(soap, &this->tt__PTZMoveStatus::PanTilt); - soap_serialize_PointerTott__MoveStatus(soap, &this->tt__PTZMoveStatus::Zoom); -#endif -} - -int tt__PTZMoveStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZMoveStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZMoveStatus(struct soap *soap, const char *tag, int id, const tt__PTZMoveStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZMoveStatus), type)) - return soap->error; - if (soap_out_PointerTott__MoveStatus(soap, "tt:PanTilt", -1, &a->tt__PTZMoveStatus::PanTilt, "")) - return soap->error; - if (soap_out_PointerTott__MoveStatus(soap, "tt:Zoom", -1, &a->tt__PTZMoveStatus::Zoom, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZMoveStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZMoveStatus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZMoveStatus * SOAP_FMAC4 soap_in_tt__PTZMoveStatus(struct soap *soap, const char *tag, tt__PTZMoveStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZMoveStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZMoveStatus, sizeof(tt__PTZMoveStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZMoveStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZMoveStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PanTilt1 = 1; - size_t soap_flag_Zoom1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PanTilt1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MoveStatus(soap, "tt:PanTilt", &a->tt__PTZMoveStatus::PanTilt, "tt:MoveStatus")) - { soap_flag_PanTilt1--; - continue; - } - } - if (soap_flag_Zoom1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__MoveStatus(soap, "tt:Zoom", &a->tt__PTZMoveStatus::Zoom, "tt:MoveStatus")) - { soap_flag_Zoom1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZMoveStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZMoveStatus, SOAP_TYPE_tt__PTZMoveStatus, sizeof(tt__PTZMoveStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZMoveStatus * SOAP_FMAC2 soap_instantiate_tt__PTZMoveStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZMoveStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZMoveStatus *p; - size_t k = sizeof(tt__PTZMoveStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZMoveStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZMoveStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZMoveStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZMoveStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZMoveStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZMoveStatus(soap, tag ? tag : "tt:PTZMoveStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZMoveStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZMoveStatus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZMoveStatus * SOAP_FMAC4 soap_get_tt__PTZMoveStatus(struct soap *soap, tt__PTZMoveStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZMoveStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZStatus::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZStatus::Position = NULL; - this->tt__PTZStatus::MoveStatus = NULL; - this->tt__PTZStatus::Error = NULL; - soap_default_xsd__dateTime(soap, &this->tt__PTZStatus::UtcTime); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZStatus::__any); - soap_default_xsd__anyAttribute(soap, &this->tt__PTZStatus::__anyAttribute); -} - -void tt__PTZStatus::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__PTZVector(soap, &this->tt__PTZStatus::Position); - soap_serialize_PointerTott__PTZMoveStatus(soap, &this->tt__PTZStatus::MoveStatus); - soap_serialize_PointerTostd__string(soap, &this->tt__PTZStatus::Error); - soap_embedded(soap, &this->tt__PTZStatus::UtcTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->tt__PTZStatus::UtcTime); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tt__PTZStatus::__any); -#endif -} - -int tt__PTZStatus::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZStatus(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZStatus(struct soap *soap, const char *tag, int id, const tt__PTZStatus *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tt__PTZStatus*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZStatus), type)) - return soap->error; - if (soap_out_PointerTott__PTZVector(soap, "tt:Position", -1, &a->tt__PTZStatus::Position, "")) - return soap->error; - if (soap_out_PointerTott__PTZMoveStatus(soap, "tt:MoveStatus", -1, &a->tt__PTZStatus::MoveStatus, "")) - return soap->error; - if (soap_out_PointerTostd__string(soap, "tt:Error", -1, &a->tt__PTZStatus::Error, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tt:UtcTime", -1, &a->tt__PTZStatus::UtcTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tt__PTZStatus::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZStatus::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZStatus(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZStatus * SOAP_FMAC4 soap_in_tt__PTZStatus(struct soap *soap, const char *tag, tt__PTZStatus *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZStatus, sizeof(tt__PTZStatus), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZStatus) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZStatus *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tt__PTZStatus*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Position1 = 1; - size_t soap_flag_MoveStatus1 = 1; - size_t soap_flag_Error1 = 1; - size_t soap_flag_UtcTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Position1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZVector(soap, "tt:Position", &a->tt__PTZStatus::Position, "tt:PTZVector")) - { soap_flag_Position1--; - continue; - } - } - if (soap_flag_MoveStatus1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__PTZMoveStatus(soap, "tt:MoveStatus", &a->tt__PTZStatus::MoveStatus, "tt:PTZMoveStatus")) - { soap_flag_MoveStatus1--; - continue; - } - } - if (soap_flag_Error1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTostd__string(soap, "tt:Error", &a->tt__PTZStatus::Error, "xsd:string")) - { soap_flag_Error1--; - continue; - } - } - if (soap_flag_UtcTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tt:UtcTime", &a->tt__PTZStatus::UtcTime, "xsd:dateTime")) - { soap_flag_UtcTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tt__PTZStatus::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_UtcTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__PTZStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZStatus, SOAP_TYPE_tt__PTZStatus, sizeof(tt__PTZStatus), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZStatus * SOAP_FMAC2 soap_instantiate_tt__PTZStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZStatus *p; - size_t k = sizeof(tt__PTZStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZStatus); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZStatus, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZStatus::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZStatus(soap, tag ? tag : "tt:PTZStatus", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZStatus::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZStatus(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZStatus * SOAP_FMAC4 soap_get_tt__PTZStatus(struct soap *soap, tt__PTZStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__PTZVector::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__PTZVector::PanTilt = NULL; - this->tt__PTZVector::Zoom = NULL; -} - -void tt__PTZVector::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTott__Vector2D(soap, &this->tt__PTZVector::PanTilt); - soap_serialize_PointerTott__Vector1D(soap, &this->tt__PTZVector::Zoom); -#endif -} - -int tt__PTZVector::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__PTZVector(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZVector(struct soap *soap, const char *tag, int id, const tt__PTZVector *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__PTZVector), type)) - return soap->error; - if (soap_out_PointerTott__Vector2D(soap, "tt:PanTilt", -1, &a->tt__PTZVector::PanTilt, "")) - return soap->error; - if (soap_out_PointerTott__Vector1D(soap, "tt:Zoom", -1, &a->tt__PTZVector::Zoom, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__PTZVector::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__PTZVector(soap, tag, this, type); -} - -SOAP_FMAC3 tt__PTZVector * SOAP_FMAC4 soap_in_tt__PTZVector(struct soap *soap, const char *tag, tt__PTZVector *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__PTZVector*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__PTZVector, sizeof(tt__PTZVector), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__PTZVector) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__PTZVector *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_PanTilt1 = 1; - size_t soap_flag_Zoom1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PanTilt1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Vector2D(soap, "tt:PanTilt", &a->tt__PTZVector::PanTilt, "tt:Vector2D")) - { soap_flag_PanTilt1--; - continue; - } - } - if (soap_flag_Zoom1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTott__Vector1D(soap, "tt:Zoom", &a->tt__PTZVector::Zoom, "tt:Vector1D")) - { soap_flag_Zoom1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__PTZVector *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__PTZVector, SOAP_TYPE_tt__PTZVector, sizeof(tt__PTZVector), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__PTZVector * SOAP_FMAC2 soap_instantiate_tt__PTZVector(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__PTZVector(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__PTZVector *p; - size_t k = sizeof(tt__PTZVector); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__PTZVector, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__PTZVector); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__PTZVector, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__PTZVector location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__PTZVector::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__PTZVector(soap, tag ? tag : "tt:PTZVector", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__PTZVector::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__PTZVector(soap, this, tag, type); -} - -SOAP_FMAC3 tt__PTZVector * SOAP_FMAC4 soap_get_tt__PTZVector(struct soap *soap, tt__PTZVector *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__PTZVector(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Vector1D::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__Vector1D::x); - this->tt__Vector1D::space = NULL; -} - -void tt__Vector1D::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Vector1D::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Vector1D(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Vector1D(struct soap *soap, const char *tag, int id, const tt__Vector1D *a, const char *type) -{ - soap_set_attr(soap, "x", soap_float2s(soap, ((tt__Vector1D*)a)->x), 1); - if (((tt__Vector1D*)a)->space) - { soap_set_attr(soap, "space", soap_xsd__anyURI2s(soap, *((tt__Vector1D*)a)->space), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Vector1D), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Vector1D::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Vector1D(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Vector1D * SOAP_FMAC4 soap_in_tt__Vector1D(struct soap *soap, const char *tag, tt__Vector1D *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Vector1D*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Vector1D, sizeof(tt__Vector1D), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Vector1D) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Vector1D *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2float(soap, soap_attr_value(soap, "x", 5, 1), &((tt__Vector1D*)a)->x)) - return NULL; - { - const char *t = soap_attr_value(soap, "space", 4, 0); - if (t) - { - if (!(((tt__Vector1D*)a)->space = soap_new_xsd__anyURI(soap))) - return NULL; - if (soap_s2xsd__anyURI(soap, t, ((tt__Vector1D*)a)->space)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Vector1D *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Vector1D, SOAP_TYPE_tt__Vector1D, sizeof(tt__Vector1D), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Vector1D * SOAP_FMAC2 soap_instantiate_tt__Vector1D(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Vector1D(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Vector1D *p; - size_t k = sizeof(tt__Vector1D); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Vector1D, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Vector1D); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Vector1D, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Vector1D location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Vector1D::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Vector1D(soap, tag ? tag : "tt:Vector1D", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Vector1D::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Vector1D(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Vector1D * SOAP_FMAC4 soap_get_tt__Vector1D(struct soap *soap, tt__Vector1D *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Vector1D(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__Vector2D::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->tt__Vector2D::x); - soap_default_float(soap, &this->tt__Vector2D::y); - this->tt__Vector2D::space = NULL; -} - -void tt__Vector2D::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int tt__Vector2D::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__Vector2D(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Vector2D(struct soap *soap, const char *tag, int id, const tt__Vector2D *a, const char *type) -{ - soap_set_attr(soap, "x", soap_float2s(soap, ((tt__Vector2D*)a)->x), 1); - soap_set_attr(soap, "y", soap_float2s(soap, ((tt__Vector2D*)a)->y), 1); - if (((tt__Vector2D*)a)->space) - { soap_set_attr(soap, "space", soap_xsd__anyURI2s(soap, *((tt__Vector2D*)a)->space), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__Vector2D), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__Vector2D::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__Vector2D(soap, tag, this, type); -} - -SOAP_FMAC3 tt__Vector2D * SOAP_FMAC4 soap_in_tt__Vector2D(struct soap *soap, const char *tag, tt__Vector2D *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__Vector2D*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__Vector2D, sizeof(tt__Vector2D), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__Vector2D) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__Vector2D *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2float(soap, soap_attr_value(soap, "x", 5, 1), &((tt__Vector2D*)a)->x)) - return NULL; - if (soap_s2float(soap, soap_attr_value(soap, "y", 5, 1), &((tt__Vector2D*)a)->y)) - return NULL; - { - const char *t = soap_attr_value(soap, "space", 4, 0); - if (t) - { - if (!(((tt__Vector2D*)a)->space = soap_new_xsd__anyURI(soap))) - return NULL; - if (soap_s2xsd__anyURI(soap, t, ((tt__Vector2D*)a)->space)) - return NULL; - } - else if (soap->error) - return NULL; - } - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tt__Vector2D *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__Vector2D, SOAP_TYPE_tt__Vector2D, sizeof(tt__Vector2D), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__Vector2D * SOAP_FMAC2 soap_instantiate_tt__Vector2D(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__Vector2D(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__Vector2D *p; - size_t k = sizeof(tt__Vector2D); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__Vector2D, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__Vector2D); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__Vector2D, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__Vector2D location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__Vector2D::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__Vector2D(soap, tag ? tag : "tt:Vector2D", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__Vector2D::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__Vector2D(soap, this, tag, type); -} - -SOAP_FMAC3 tt__Vector2D * SOAP_FMAC4 soap_get_tt__Vector2D(struct soap *soap, tt__Vector2D *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__Vector2D(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IntRange::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->tt__IntRange::Min); - soap_default_int(soap, &this->tt__IntRange::Max); -} - -void tt__IntRange::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IntRange::Min, SOAP_TYPE_int); - soap_embedded(soap, &this->tt__IntRange::Max, SOAP_TYPE_int); -#endif -} - -int tt__IntRange::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IntRange(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntRange(struct soap *soap, const char *tag, int id, const tt__IntRange *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IntRange), type)) - return soap->error; - if (soap_out_int(soap, "tt:Min", -1, &a->tt__IntRange::Min, "")) - return soap->error; - if (soap_out_int(soap, "tt:Max", -1, &a->tt__IntRange::Max, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IntRange::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IntRange(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IntRange * SOAP_FMAC4 soap_in_tt__IntRange(struct soap *soap, const char *tag, tt__IntRange *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IntRange*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IntRange, sizeof(tt__IntRange), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IntRange) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IntRange *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Min1 = 1; - size_t soap_flag_Max1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Min1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Min", &a->tt__IntRange::Min, "xsd:int")) - { soap_flag_Min1--; - continue; - } - } - if (soap_flag_Max1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:Max", &a->tt__IntRange::Max, "xsd:int")) - { soap_flag_Max1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Min1 > 0 || soap_flag_Max1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IntRange *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IntRange, SOAP_TYPE_tt__IntRange, sizeof(tt__IntRange), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IntRange * SOAP_FMAC2 soap_instantiate_tt__IntRange(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IntRange(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IntRange *p; - size_t k = sizeof(tt__IntRange); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IntRange, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IntRange); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IntRange, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IntRange location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IntRange::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IntRange(soap, tag ? tag : "tt:IntRange", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IntRange::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IntRange(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IntRange * SOAP_FMAC4 soap_get_tt__IntRange(struct soap *soap, tt__IntRange *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IntRange(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__GetEventPropertiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::TopicNamespaceLocation); - this->_tev__GetEventPropertiesResponse::wsnt__FixedTopicSet = (bool)1; - this->_tev__GetEventPropertiesResponse::wstop__TopicSet = NULL; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::wsnt__TopicExpressionDialect); - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::MessageContentFilterDialect); - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::ProducerPropertiesFilterDialect); - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::MessageContentSchemaLocation); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__GetEventPropertiesResponse::__any); -} - -void _tev__GetEventPropertiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::TopicNamespaceLocation); - soap_embedded(soap, &this->_tev__GetEventPropertiesResponse::wsnt__FixedTopicSet, SOAP_TYPE_bool); - soap_serialize_PointerTowstop__TopicSetType(soap, &this->_tev__GetEventPropertiesResponse::wstop__TopicSet); - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::wsnt__TopicExpressionDialect); - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::MessageContentFilterDialect); - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::ProducerPropertiesFilterDialect); - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_tev__GetEventPropertiesResponse::MessageContentSchemaLocation); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__GetEventPropertiesResponse::__any); -#endif -} - -int _tev__GetEventPropertiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__GetEventPropertiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetEventPropertiesResponse(struct soap *soap, const char *tag, int id, const _tev__GetEventPropertiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__GetEventPropertiesResponse), type)) - return soap->error; - soap_element_result(soap, "tev:TopicNamespaceLocation"); - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tev:TopicNamespaceLocation", -1, &a->_tev__GetEventPropertiesResponse::TopicNamespaceLocation, "")) - return soap->error; - if (soap_out_bool(soap, "wsnt:FixedTopicSet", -1, &a->_tev__GetEventPropertiesResponse::wsnt__FixedTopicSet, "")) - return soap->error; - if (!a->_tev__GetEventPropertiesResponse::wstop__TopicSet) - { if (soap_element_empty(soap, "wstop:TopicSet", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTowstop__TopicSetType(soap, "wstop:TopicSet", -1, &a->_tev__GetEventPropertiesResponse::wstop__TopicSet, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "wsnt:TopicExpressionDialect", -1, &a->_tev__GetEventPropertiesResponse::wsnt__TopicExpressionDialect, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tev:MessageContentFilterDialect", -1, &a->_tev__GetEventPropertiesResponse::MessageContentFilterDialect, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tev:ProducerPropertiesFilterDialect", -1, &a->_tev__GetEventPropertiesResponse::ProducerPropertiesFilterDialect, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "tev:MessageContentSchemaLocation", -1, &a->_tev__GetEventPropertiesResponse::MessageContentSchemaLocation, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tev__GetEventPropertiesResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__GetEventPropertiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__GetEventPropertiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__GetEventPropertiesResponse * SOAP_FMAC4 soap_in__tev__GetEventPropertiesResponse(struct soap *soap, const char *tag, _tev__GetEventPropertiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__GetEventPropertiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__GetEventPropertiesResponse, sizeof(_tev__GetEventPropertiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__GetEventPropertiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__GetEventPropertiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_wsnt__FixedTopicSet1 = 1; - size_t soap_flag_wstop__TopicSet1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tev:TopicNamespaceLocation", &a->_tev__GetEventPropertiesResponse::TopicNamespaceLocation, "xsd:anyURI")) - continue; - } - if (soap_flag_wsnt__FixedTopicSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "wsnt:FixedTopicSet", &a->_tev__GetEventPropertiesResponse::wsnt__FixedTopicSet, "xsd:boolean") || soap->error == SOAP_EMPTY) - { soap_flag_wsnt__FixedTopicSet1--; - continue; - } - } - if (soap_flag_wstop__TopicSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__TopicSetType(soap, "wstop:TopicSet", &a->_tev__GetEventPropertiesResponse::wstop__TopicSet, "wstop:TopicSetType")) - { soap_flag_wstop__TopicSet1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "wsnt:TopicExpressionDialect", &a->_tev__GetEventPropertiesResponse::wsnt__TopicExpressionDialect, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tev:MessageContentFilterDialect", &a->_tev__GetEventPropertiesResponse::MessageContentFilterDialect, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tev:ProducerPropertiesFilterDialect", &a->_tev__GetEventPropertiesResponse::ProducerPropertiesFilterDialect, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "tev:MessageContentSchemaLocation", &a->_tev__GetEventPropertiesResponse::MessageContentSchemaLocation, "xsd:anyURI")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tev__GetEventPropertiesResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tev:TopicNamespaceLocation"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_tev__GetEventPropertiesResponse::TopicNamespaceLocation.size() < 1 || soap_flag_wsnt__FixedTopicSet1 > 0 || !a->_tev__GetEventPropertiesResponse::wstop__TopicSet || a->_tev__GetEventPropertiesResponse::wsnt__TopicExpressionDialect.size() < 1 || a->_tev__GetEventPropertiesResponse::MessageContentFilterDialect.size() < 1 || a->_tev__GetEventPropertiesResponse::MessageContentSchemaLocation.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tev__GetEventPropertiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__GetEventPropertiesResponse, SOAP_TYPE__tev__GetEventPropertiesResponse, sizeof(_tev__GetEventPropertiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__GetEventPropertiesResponse * SOAP_FMAC2 soap_instantiate__tev__GetEventPropertiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__GetEventPropertiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__GetEventPropertiesResponse *p; - size_t k = sizeof(_tev__GetEventPropertiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__GetEventPropertiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__GetEventPropertiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__GetEventPropertiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__GetEventPropertiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__GetEventPropertiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__GetEventPropertiesResponse(soap, tag ? tag : "tev:GetEventPropertiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__GetEventPropertiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__GetEventPropertiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__GetEventPropertiesResponse * SOAP_FMAC4 soap_get__tev__GetEventPropertiesResponse(struct soap *soap, _tev__GetEventPropertiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__GetEventPropertiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__GetEventProperties::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tev__GetEventProperties::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tev__GetEventProperties::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__GetEventProperties(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetEventProperties(struct soap *soap, const char *tag, int id, const _tev__GetEventProperties *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__GetEventProperties), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__GetEventProperties::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__GetEventProperties(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__GetEventProperties * SOAP_FMAC4 soap_in__tev__GetEventProperties(struct soap *soap, const char *tag, _tev__GetEventProperties *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__GetEventProperties*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__GetEventProperties, sizeof(_tev__GetEventProperties), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__GetEventProperties) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__GetEventProperties *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tev__GetEventProperties *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__GetEventProperties, SOAP_TYPE__tev__GetEventProperties, sizeof(_tev__GetEventProperties), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__GetEventProperties * SOAP_FMAC2 soap_instantiate__tev__GetEventProperties(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__GetEventProperties(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__GetEventProperties *p; - size_t k = sizeof(_tev__GetEventProperties); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__GetEventProperties, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__GetEventProperties); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__GetEventProperties, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__GetEventProperties location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__GetEventProperties::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__GetEventProperties(soap, tag ? tag : "tev:GetEventProperties", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__GetEventProperties::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__GetEventProperties(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__GetEventProperties * SOAP_FMAC4 soap_get__tev__GetEventProperties(struct soap *soap, _tev__GetEventProperties *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__GetEventProperties(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__SetSynchronizationPointResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tev__SetSynchronizationPointResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tev__SetSynchronizationPointResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__SetSynchronizationPointResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__SetSynchronizationPointResponse(struct soap *soap, const char *tag, int id, const _tev__SetSynchronizationPointResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__SetSynchronizationPointResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__SetSynchronizationPointResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__SetSynchronizationPointResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__SetSynchronizationPointResponse * SOAP_FMAC4 soap_in__tev__SetSynchronizationPointResponse(struct soap *soap, const char *tag, _tev__SetSynchronizationPointResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__SetSynchronizationPointResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__SetSynchronizationPointResponse, sizeof(_tev__SetSynchronizationPointResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__SetSynchronizationPointResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__SetSynchronizationPointResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tev__SetSynchronizationPointResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__SetSynchronizationPointResponse, SOAP_TYPE__tev__SetSynchronizationPointResponse, sizeof(_tev__SetSynchronizationPointResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__SetSynchronizationPointResponse * SOAP_FMAC2 soap_instantiate__tev__SetSynchronizationPointResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__SetSynchronizationPointResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__SetSynchronizationPointResponse *p; - size_t k = sizeof(_tev__SetSynchronizationPointResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__SetSynchronizationPointResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__SetSynchronizationPointResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__SetSynchronizationPointResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__SetSynchronizationPointResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__SetSynchronizationPointResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__SetSynchronizationPointResponse(soap, tag ? tag : "tev:SetSynchronizationPointResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__SetSynchronizationPointResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__SetSynchronizationPointResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__SetSynchronizationPointResponse * SOAP_FMAC4 soap_get__tev__SetSynchronizationPointResponse(struct soap *soap, _tev__SetSynchronizationPointResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__SetSynchronizationPointResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__SetSynchronizationPoint::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tev__SetSynchronizationPoint::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tev__SetSynchronizationPoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__SetSynchronizationPoint(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__SetSynchronizationPoint(struct soap *soap, const char *tag, int id, const _tev__SetSynchronizationPoint *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__SetSynchronizationPoint), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__SetSynchronizationPoint::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__SetSynchronizationPoint(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__SetSynchronizationPoint * SOAP_FMAC4 soap_in__tev__SetSynchronizationPoint(struct soap *soap, const char *tag, _tev__SetSynchronizationPoint *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__SetSynchronizationPoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__SetSynchronizationPoint, sizeof(_tev__SetSynchronizationPoint), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__SetSynchronizationPoint) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__SetSynchronizationPoint *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tev__SetSynchronizationPoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__SetSynchronizationPoint, SOAP_TYPE__tev__SetSynchronizationPoint, sizeof(_tev__SetSynchronizationPoint), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate__tev__SetSynchronizationPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__SetSynchronizationPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__SetSynchronizationPoint *p; - size_t k = sizeof(_tev__SetSynchronizationPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__SetSynchronizationPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__SetSynchronizationPoint); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__SetSynchronizationPoint, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__SetSynchronizationPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__SetSynchronizationPoint::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__SetSynchronizationPoint(soap, tag ? tag : "tev:SetSynchronizationPoint", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__SetSynchronizationPoint::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__SetSynchronizationPoint(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__SetSynchronizationPoint * SOAP_FMAC4 soap_get__tev__SetSynchronizationPoint(struct soap *soap, _tev__SetSynchronizationPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__SetSynchronizationPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__SeekResponse::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tev__SeekResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tev__SeekResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__SeekResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__SeekResponse(struct soap *soap, const char *tag, int id, const _tev__SeekResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__SeekResponse), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__SeekResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__SeekResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__SeekResponse * SOAP_FMAC4 soap_in__tev__SeekResponse(struct soap *soap, const char *tag, _tev__SeekResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__SeekResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__SeekResponse, sizeof(_tev__SeekResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__SeekResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__SeekResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tev__SeekResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__SeekResponse, SOAP_TYPE__tev__SeekResponse, sizeof(_tev__SeekResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__SeekResponse * SOAP_FMAC2 soap_instantiate__tev__SeekResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__SeekResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__SeekResponse *p; - size_t k = sizeof(_tev__SeekResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__SeekResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__SeekResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__SeekResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__SeekResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__SeekResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__SeekResponse(soap, tag ? tag : "tev:SeekResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__SeekResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__SeekResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__SeekResponse * SOAP_FMAC4 soap_get__tev__SeekResponse(struct soap *soap, _tev__SeekResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__SeekResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__Seek::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->_tev__Seek::UtcTime); - this->_tev__Seek::Reverse = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__Seek::__any); -} - -void _tev__Seek::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tev__Seek::UtcTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tev__Seek::UtcTime); - soap_serialize_PointerTobool(soap, &this->_tev__Seek::Reverse); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__Seek::__any); -#endif -} - -int _tev__Seek::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__Seek(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__Seek(struct soap *soap, const char *tag, int id, const _tev__Seek *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__Seek), type)) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tev:UtcTime", -1, &a->_tev__Seek::UtcTime, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "tev:Reverse", -1, &a->_tev__Seek::Reverse, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tev__Seek::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__Seek::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__Seek(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__Seek * SOAP_FMAC4 soap_in__tev__Seek(struct soap *soap, const char *tag, _tev__Seek *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__Seek*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__Seek, sizeof(_tev__Seek), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__Seek) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__Seek *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_UtcTime1 = 1; - size_t soap_flag_Reverse1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_UtcTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tev:UtcTime", &a->_tev__Seek::UtcTime, "xsd:dateTime")) - { soap_flag_UtcTime1--; - continue; - } - } - if (soap_flag_Reverse1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "tev:Reverse", &a->_tev__Seek::Reverse, "xsd:boolean")) - { soap_flag_Reverse1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tev__Seek::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_UtcTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tev__Seek *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__Seek, SOAP_TYPE__tev__Seek, sizeof(_tev__Seek), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__Seek * SOAP_FMAC2 soap_instantiate__tev__Seek(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__Seek(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__Seek *p; - size_t k = sizeof(_tev__Seek); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__Seek, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__Seek); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__Seek, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__Seek location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__Seek::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__Seek(soap, tag ? tag : "tev:Seek", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__Seek::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__Seek(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__Seek * SOAP_FMAC4 soap_get__tev__Seek(struct soap *soap, _tev__Seek *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__Seek(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__PullMessagesFaultResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__duration(soap, &this->_tev__PullMessagesFaultResponse::MaxTimeout); - soap_default_int(soap, &this->_tev__PullMessagesFaultResponse::MaxMessageLimit); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__PullMessagesFaultResponse::__any); -} - -void _tev__PullMessagesFaultResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tev__PullMessagesFaultResponse::MaxTimeout, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tev__PullMessagesFaultResponse::MaxTimeout); - soap_embedded(soap, &this->_tev__PullMessagesFaultResponse::MaxMessageLimit, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__PullMessagesFaultResponse::__any); -#endif -} - -int _tev__PullMessagesFaultResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__PullMessagesFaultResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__PullMessagesFaultResponse(struct soap *soap, const char *tag, int id, const _tev__PullMessagesFaultResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__PullMessagesFaultResponse), type)) - return soap->error; - if (soap_out_xsd__duration(soap, "tev:MaxTimeout", -1, &a->_tev__PullMessagesFaultResponse::MaxTimeout, "")) - return soap->error; - if (soap_out_int(soap, "tev:MaxMessageLimit", -1, &a->_tev__PullMessagesFaultResponse::MaxMessageLimit, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tev__PullMessagesFaultResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__PullMessagesFaultResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__PullMessagesFaultResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__PullMessagesFaultResponse * SOAP_FMAC4 soap_in__tev__PullMessagesFaultResponse(struct soap *soap, const char *tag, _tev__PullMessagesFaultResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__PullMessagesFaultResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__PullMessagesFaultResponse, sizeof(_tev__PullMessagesFaultResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__PullMessagesFaultResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__PullMessagesFaultResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_MaxTimeout1 = 1; - size_t soap_flag_MaxMessageLimit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MaxTimeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tev:MaxTimeout", &a->_tev__PullMessagesFaultResponse::MaxTimeout, "xsd:duration")) - { soap_flag_MaxTimeout1--; - continue; - } - } - if (soap_flag_MaxMessageLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tev:MaxMessageLimit", &a->_tev__PullMessagesFaultResponse::MaxMessageLimit, "xsd:int")) - { soap_flag_MaxMessageLimit1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tev__PullMessagesFaultResponse::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_MaxTimeout1 > 0 || soap_flag_MaxMessageLimit1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tev__PullMessagesFaultResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__PullMessagesFaultResponse, SOAP_TYPE__tev__PullMessagesFaultResponse, sizeof(_tev__PullMessagesFaultResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__PullMessagesFaultResponse * SOAP_FMAC2 soap_instantiate__tev__PullMessagesFaultResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__PullMessagesFaultResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__PullMessagesFaultResponse *p; - size_t k = sizeof(_tev__PullMessagesFaultResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__PullMessagesFaultResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__PullMessagesFaultResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__PullMessagesFaultResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__PullMessagesFaultResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__PullMessagesFaultResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__PullMessagesFaultResponse(soap, tag ? tag : "tev:PullMessagesFaultResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__PullMessagesFaultResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__PullMessagesFaultResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__PullMessagesFaultResponse * SOAP_FMAC4 soap_get__tev__PullMessagesFaultResponse(struct soap *soap, _tev__PullMessagesFaultResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__PullMessagesFaultResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__PullMessagesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->_tev__PullMessagesResponse::CurrentTime); - soap_default_xsd__dateTime(soap, &this->_tev__PullMessagesResponse::TerminationTime); - soap_default_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, &this->_tev__PullMessagesResponse::wsnt__NotificationMessage); -} - -void _tev__PullMessagesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tev__PullMessagesResponse::CurrentTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tev__PullMessagesResponse::CurrentTime); - soap_embedded(soap, &this->_tev__PullMessagesResponse::TerminationTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tev__PullMessagesResponse::TerminationTime); - soap_serialize_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, &this->_tev__PullMessagesResponse::wsnt__NotificationMessage); -#endif -} - -int _tev__PullMessagesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__PullMessagesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__PullMessagesResponse(struct soap *soap, const char *tag, int id, const _tev__PullMessagesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__PullMessagesResponse), type)) - return soap->error; - soap_element_result(soap, "tev:CurrentTime"); - if (soap_out_xsd__dateTime(soap, "tev:CurrentTime", -1, &a->_tev__PullMessagesResponse::CurrentTime, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "tev:TerminationTime", -1, &a->_tev__PullMessagesResponse::TerminationTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, "wsnt:NotificationMessage", -1, &a->_tev__PullMessagesResponse::wsnt__NotificationMessage, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__PullMessagesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__PullMessagesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__PullMessagesResponse * SOAP_FMAC4 soap_in__tev__PullMessagesResponse(struct soap *soap, const char *tag, _tev__PullMessagesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__PullMessagesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__PullMessagesResponse, sizeof(_tev__PullMessagesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__PullMessagesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__PullMessagesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_CurrentTime1 = 1; - size_t soap_flag_TerminationTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CurrentTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tev:CurrentTime", &a->_tev__PullMessagesResponse::CurrentTime, "xsd:dateTime")) - { soap_flag_CurrentTime1--; - continue; - } - } - if (soap_flag_TerminationTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "tev:TerminationTime", &a->_tev__PullMessagesResponse::TerminationTime, "xsd:dateTime")) - { soap_flag_TerminationTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, "wsnt:NotificationMessage", &a->_tev__PullMessagesResponse::wsnt__NotificationMessage, "wsnt:NotificationMessageHolderType")) - continue; - } - soap_check_result(soap, "tev:CurrentTime"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_CurrentTime1 > 0 || soap_flag_TerminationTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tev__PullMessagesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__PullMessagesResponse, SOAP_TYPE__tev__PullMessagesResponse, sizeof(_tev__PullMessagesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__PullMessagesResponse * SOAP_FMAC2 soap_instantiate__tev__PullMessagesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__PullMessagesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__PullMessagesResponse *p; - size_t k = sizeof(_tev__PullMessagesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__PullMessagesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__PullMessagesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__PullMessagesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__PullMessagesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__PullMessagesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__PullMessagesResponse(soap, tag ? tag : "tev:PullMessagesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__PullMessagesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__PullMessagesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__PullMessagesResponse * SOAP_FMAC4 soap_get__tev__PullMessagesResponse(struct soap *soap, _tev__PullMessagesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__PullMessagesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__PullMessages::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__duration(soap, &this->_tev__PullMessages::Timeout); - soap_default_int(soap, &this->_tev__PullMessages::MessageLimit); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__PullMessages::__any); -} - -void _tev__PullMessages::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tev__PullMessages::Timeout, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->_tev__PullMessages::Timeout); - soap_embedded(soap, &this->_tev__PullMessages::MessageLimit, SOAP_TYPE_int); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__PullMessages::__any); -#endif -} - -int _tev__PullMessages::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__PullMessages(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__PullMessages(struct soap *soap, const char *tag, int id, const _tev__PullMessages *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__PullMessages), type)) - return soap->error; - if (soap_out_xsd__duration(soap, "tev:Timeout", -1, &a->_tev__PullMessages::Timeout, "")) - return soap->error; - if (soap_out_int(soap, "tev:MessageLimit", -1, &a->_tev__PullMessages::MessageLimit, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tev__PullMessages::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__PullMessages::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__PullMessages(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__PullMessages * SOAP_FMAC4 soap_in__tev__PullMessages(struct soap *soap, const char *tag, _tev__PullMessages *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__PullMessages*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__PullMessages, sizeof(_tev__PullMessages), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__PullMessages) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__PullMessages *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Timeout1 = 1; - size_t soap_flag_MessageLimit1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timeout1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__duration(soap, "tev:Timeout", &a->_tev__PullMessages::Timeout, "xsd:duration")) - { soap_flag_Timeout1--; - continue; - } - } - if (soap_flag_MessageLimit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tev:MessageLimit", &a->_tev__PullMessages::MessageLimit, "xsd:int")) - { soap_flag_MessageLimit1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tev__PullMessages::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timeout1 > 0 || soap_flag_MessageLimit1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tev__PullMessages *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__PullMessages, SOAP_TYPE__tev__PullMessages, sizeof(_tev__PullMessages), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__PullMessages * SOAP_FMAC2 soap_instantiate__tev__PullMessages(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__PullMessages(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__PullMessages *p; - size_t k = sizeof(_tev__PullMessages); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__PullMessages, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__PullMessages); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__PullMessages, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__PullMessages location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__PullMessages::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__PullMessages(soap, tag ? tag : "tev:PullMessages", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__PullMessages::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__PullMessages(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__PullMessages * SOAP_FMAC4 soap_get__tev__PullMessages(struct soap *soap, _tev__PullMessages *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__PullMessages(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__CreatePullPointSubscriptionResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wsa5__EndpointReferenceType(soap, &this->_tev__CreatePullPointSubscriptionResponse::SubscriptionReference); - soap_default_xsd__dateTime(soap, &this->_tev__CreatePullPointSubscriptionResponse::wsnt__CurrentTime); - soap_default_xsd__dateTime(soap, &this->_tev__CreatePullPointSubscriptionResponse::wsnt__TerminationTime); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__CreatePullPointSubscriptionResponse::__any); -} - -void _tev__CreatePullPointSubscriptionResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_tev__CreatePullPointSubscriptionResponse::SubscriptionReference, SOAP_TYPE_wsa5__EndpointReferenceType); - soap_serialize_wsa5__EndpointReferenceType(soap, &this->_tev__CreatePullPointSubscriptionResponse::SubscriptionReference); - soap_embedded(soap, &this->_tev__CreatePullPointSubscriptionResponse::wsnt__CurrentTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tev__CreatePullPointSubscriptionResponse::wsnt__CurrentTime); - soap_embedded(soap, &this->_tev__CreatePullPointSubscriptionResponse::wsnt__TerminationTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_tev__CreatePullPointSubscriptionResponse::wsnt__TerminationTime); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__CreatePullPointSubscriptionResponse::__any); -#endif -} - -int _tev__CreatePullPointSubscriptionResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__CreatePullPointSubscriptionResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__CreatePullPointSubscriptionResponse(struct soap *soap, const char *tag, int id, const _tev__CreatePullPointSubscriptionResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__CreatePullPointSubscriptionResponse), type)) - return soap->error; - soap_element_result(soap, "tev:SubscriptionReference"); - if (soap_out_wsa5__EndpointReferenceType(soap, "tev:SubscriptionReference", -1, &a->_tev__CreatePullPointSubscriptionResponse::SubscriptionReference, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsnt:CurrentTime", -1, &a->_tev__CreatePullPointSubscriptionResponse::wsnt__CurrentTime, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsnt:TerminationTime", -1, &a->_tev__CreatePullPointSubscriptionResponse::wsnt__TerminationTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tev__CreatePullPointSubscriptionResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__CreatePullPointSubscriptionResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__CreatePullPointSubscriptionResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__CreatePullPointSubscriptionResponse * SOAP_FMAC4 soap_in__tev__CreatePullPointSubscriptionResponse(struct soap *soap, const char *tag, _tev__CreatePullPointSubscriptionResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__CreatePullPointSubscriptionResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__CreatePullPointSubscriptionResponse, sizeof(_tev__CreatePullPointSubscriptionResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__CreatePullPointSubscriptionResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__CreatePullPointSubscriptionResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SubscriptionReference1 = 1; - size_t soap_flag_wsnt__CurrentTime1 = 1; - size_t soap_flag_wsnt__TerminationTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SubscriptionReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_wsa5__EndpointReferenceType(soap, "tev:SubscriptionReference", &a->_tev__CreatePullPointSubscriptionResponse::SubscriptionReference, "wsa5:EndpointReferenceType")) - { soap_flag_SubscriptionReference1--; - continue; - } - } - if (soap_flag_wsnt__CurrentTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsnt:CurrentTime", &a->_tev__CreatePullPointSubscriptionResponse::wsnt__CurrentTime, "xsd:dateTime")) - { soap_flag_wsnt__CurrentTime1--; - continue; - } - } - if (soap_flag_wsnt__TerminationTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsnt:TerminationTime", &a->_tev__CreatePullPointSubscriptionResponse::wsnt__TerminationTime, "xsd:dateTime")) - { soap_flag_wsnt__TerminationTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tev__CreatePullPointSubscriptionResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "tev:SubscriptionReference"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SubscriptionReference1 > 0 || soap_flag_wsnt__CurrentTime1 > 0 || soap_flag_wsnt__TerminationTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tev__CreatePullPointSubscriptionResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__CreatePullPointSubscriptionResponse, SOAP_TYPE__tev__CreatePullPointSubscriptionResponse, sizeof(_tev__CreatePullPointSubscriptionResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__CreatePullPointSubscriptionResponse * SOAP_FMAC2 soap_instantiate__tev__CreatePullPointSubscriptionResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__CreatePullPointSubscriptionResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__CreatePullPointSubscriptionResponse *p; - size_t k = sizeof(_tev__CreatePullPointSubscriptionResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__CreatePullPointSubscriptionResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__CreatePullPointSubscriptionResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__CreatePullPointSubscriptionResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__CreatePullPointSubscriptionResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__CreatePullPointSubscriptionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__CreatePullPointSubscriptionResponse(soap, tag ? tag : "tev:CreatePullPointSubscriptionResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__CreatePullPointSubscriptionResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__CreatePullPointSubscriptionResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__CreatePullPointSubscriptionResponse * SOAP_FMAC4 soap_get__tev__CreatePullPointSubscriptionResponse(struct soap *soap, _tev__CreatePullPointSubscriptionResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__CreatePullPointSubscriptionResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__CreatePullPointSubscription::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tev__CreatePullPointSubscription::Filter = NULL; - this->_tev__CreatePullPointSubscription::InitialTerminationTime = NULL; - this->_tev__CreatePullPointSubscription::SubscriptionPolicy = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__CreatePullPointSubscription::__any); -} - -void _tev__CreatePullPointSubscription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsnt__FilterType(soap, &this->_tev__CreatePullPointSubscription::Filter); - soap_serialize_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, &this->_tev__CreatePullPointSubscription::InitialTerminationTime); - soap_serialize_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(soap, &this->_tev__CreatePullPointSubscription::SubscriptionPolicy); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_tev__CreatePullPointSubscription::__any); -#endif -} - -int _tev__CreatePullPointSubscription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__CreatePullPointSubscription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__CreatePullPointSubscription(struct soap *soap, const char *tag, int id, const _tev__CreatePullPointSubscription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__CreatePullPointSubscription), type)) - return soap->error; - if (soap_out_PointerTowsnt__FilterType(soap, "tev:Filter", -1, &a->_tev__CreatePullPointSubscription::Filter, "")) - return soap->error; - if (soap_out_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, "tev:InitialTerminationTime", -1, &a->_tev__CreatePullPointSubscription::InitialTerminationTime, "")) - return soap->error; - if (soap_out_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(soap, "tev:SubscriptionPolicy", -1, &a->_tev__CreatePullPointSubscription::SubscriptionPolicy, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_tev__CreatePullPointSubscription::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__CreatePullPointSubscription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__CreatePullPointSubscription(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__CreatePullPointSubscription * SOAP_FMAC4 soap_in__tev__CreatePullPointSubscription(struct soap *soap, const char *tag, _tev__CreatePullPointSubscription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__CreatePullPointSubscription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__CreatePullPointSubscription, sizeof(_tev__CreatePullPointSubscription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__CreatePullPointSubscription) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__CreatePullPointSubscription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Filter1 = 1; - size_t soap_flag_InitialTerminationTime1 = 1; - size_t soap_flag_SubscriptionPolicy1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Filter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__FilterType(soap, "tev:Filter", &a->_tev__CreatePullPointSubscription::Filter, "wsnt:FilterType")) - { soap_flag_Filter1--; - continue; - } - } - if (soap_flag_InitialTerminationTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, "tev:InitialTerminationTime", &a->_tev__CreatePullPointSubscription::InitialTerminationTime, "wsnt:AbsoluteOrRelativeTimeType")) - { soap_flag_InitialTerminationTime1--; - continue; - } - } - if (soap_flag_SubscriptionPolicy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(soap, "tev:SubscriptionPolicy", &a->_tev__CreatePullPointSubscription::SubscriptionPolicy, "")) - { soap_flag_SubscriptionPolicy1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_tev__CreatePullPointSubscription::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tev__CreatePullPointSubscription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__CreatePullPointSubscription, SOAP_TYPE__tev__CreatePullPointSubscription, sizeof(_tev__CreatePullPointSubscription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__CreatePullPointSubscription * SOAP_FMAC2 soap_instantiate__tev__CreatePullPointSubscription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__CreatePullPointSubscription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__CreatePullPointSubscription *p; - size_t k = sizeof(_tev__CreatePullPointSubscription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__CreatePullPointSubscription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__CreatePullPointSubscription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__CreatePullPointSubscription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__CreatePullPointSubscription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__CreatePullPointSubscription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__CreatePullPointSubscription(soap, tag ? tag : "tev:CreatePullPointSubscription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__CreatePullPointSubscription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__CreatePullPointSubscription(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__CreatePullPointSubscription * SOAP_FMAC4 soap_get__tev__CreatePullPointSubscription(struct soap *soap, _tev__CreatePullPointSubscription *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__CreatePullPointSubscription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__GetServiceCapabilitiesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_tev__GetServiceCapabilitiesResponse::Capabilities = NULL; -} - -void _tev__GetServiceCapabilitiesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotev__Capabilities(soap, &this->_tev__GetServiceCapabilitiesResponse::Capabilities); -#endif -} - -int _tev__GetServiceCapabilitiesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__GetServiceCapabilitiesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, int id, const _tev__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__GetServiceCapabilitiesResponse), type)) - return soap->error; - if (a->Capabilities) - soap_element_result(soap, "tev:Capabilities"); - if (!a->_tev__GetServiceCapabilitiesResponse::Capabilities) - { if (soap_element_empty(soap, "tev:Capabilities", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTotev__Capabilities(soap, "tev:Capabilities", -1, &a->_tev__GetServiceCapabilitiesResponse::Capabilities, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__GetServiceCapabilitiesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__GetServiceCapabilitiesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tev__GetServiceCapabilitiesResponse(struct soap *soap, const char *tag, _tev__GetServiceCapabilitiesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__GetServiceCapabilitiesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__GetServiceCapabilitiesResponse, sizeof(_tev__GetServiceCapabilitiesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__GetServiceCapabilitiesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__GetServiceCapabilitiesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Capabilities1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Capabilities1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotev__Capabilities(soap, "tev:Capabilities", &a->_tev__GetServiceCapabilitiesResponse::Capabilities, "tev:Capabilities")) - { soap_flag_Capabilities1--; - continue; - } - } - soap_check_result(soap, "tev:Capabilities"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_tev__GetServiceCapabilitiesResponse::Capabilities)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_tev__GetServiceCapabilitiesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__GetServiceCapabilitiesResponse, SOAP_TYPE__tev__GetServiceCapabilitiesResponse, sizeof(_tev__GetServiceCapabilitiesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tev__GetServiceCapabilitiesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__GetServiceCapabilitiesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__GetServiceCapabilitiesResponse *p; - size_t k = sizeof(_tev__GetServiceCapabilitiesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__GetServiceCapabilitiesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__GetServiceCapabilitiesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__GetServiceCapabilitiesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__GetServiceCapabilitiesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__GetServiceCapabilitiesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__GetServiceCapabilitiesResponse(soap, tag ? tag : "tev:GetServiceCapabilitiesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__GetServiceCapabilitiesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__GetServiceCapabilitiesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tev__GetServiceCapabilitiesResponse(struct soap *soap, _tev__GetServiceCapabilitiesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__GetServiceCapabilitiesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _tev__GetServiceCapabilities::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _tev__GetServiceCapabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _tev__GetServiceCapabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__tev__GetServiceCapabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const _tev__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__tev__GetServiceCapabilities), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_tev__GetServiceCapabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__tev__GetServiceCapabilities(soap, tag, this, type); -} - -SOAP_FMAC3 _tev__GetServiceCapabilities * SOAP_FMAC4 soap_in__tev__GetServiceCapabilities(struct soap *soap, const char *tag, _tev__GetServiceCapabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_tev__GetServiceCapabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__tev__GetServiceCapabilities, sizeof(_tev__GetServiceCapabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__tev__GetServiceCapabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (_tev__GetServiceCapabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_tev__GetServiceCapabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__tev__GetServiceCapabilities, SOAP_TYPE__tev__GetServiceCapabilities, sizeof(_tev__GetServiceCapabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _tev__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tev__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__tev__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _tev__GetServiceCapabilities *p; - size_t k = sizeof(_tev__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__tev__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _tev__GetServiceCapabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _tev__GetServiceCapabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _tev__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _tev__GetServiceCapabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__tev__GetServiceCapabilities(soap, tag ? tag : "tev:GetServiceCapabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_tev__GetServiceCapabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__tev__GetServiceCapabilities(soap, this, tag, type); -} - -SOAP_FMAC3 _tev__GetServiceCapabilities * SOAP_FMAC4 soap_get__tev__GetServiceCapabilities(struct soap *soap, _tev__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in__tev__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tev__SubscriptionPolicy::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tev__SubscriptionPolicy::__any); - this->tev__SubscriptionPolicy::ChangedOnly = NULL; - soap_default_xsd__anyAttribute(soap, &this->tev__SubscriptionPolicy::__anyAttribute); -} - -void tev__SubscriptionPolicy::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tev__SubscriptionPolicy::__any); -#endif -} - -int tev__SubscriptionPolicy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tev__SubscriptionPolicy(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tev__SubscriptionPolicy(struct soap *soap, const char *tag, int id, const tev__SubscriptionPolicy *a, const char *type) -{ - if (((tev__SubscriptionPolicy*)a)->ChangedOnly) - { soap_set_attr(soap, "ChangedOnly", soap_bool2s(soap, *((tev__SubscriptionPolicy*)a)->ChangedOnly), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tev__SubscriptionPolicy*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tev__SubscriptionPolicy), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tev__SubscriptionPolicy::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tev__SubscriptionPolicy::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tev__SubscriptionPolicy(soap, tag, this, type); -} - -SOAP_FMAC3 tev__SubscriptionPolicy * SOAP_FMAC4 soap_in_tev__SubscriptionPolicy(struct soap *soap, const char *tag, tev__SubscriptionPolicy *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tev__SubscriptionPolicy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tev__SubscriptionPolicy, sizeof(tev__SubscriptionPolicy), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tev__SubscriptionPolicy) - { soap_revert(soap); - *soap->id = '\0'; - return (tev__SubscriptionPolicy *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "ChangedOnly", 5, 0); - if (t) - { - if (!(((tev__SubscriptionPolicy*)a)->ChangedOnly = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tev__SubscriptionPolicy*)a)->ChangedOnly)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tev__SubscriptionPolicy*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tev__SubscriptionPolicy::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tev__SubscriptionPolicy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tev__SubscriptionPolicy, SOAP_TYPE_tev__SubscriptionPolicy, sizeof(tev__SubscriptionPolicy), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tev__SubscriptionPolicy * SOAP_FMAC2 soap_instantiate_tev__SubscriptionPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tev__SubscriptionPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tev__SubscriptionPolicy *p; - size_t k = sizeof(tev__SubscriptionPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tev__SubscriptionPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tev__SubscriptionPolicy); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tev__SubscriptionPolicy, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tev__SubscriptionPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tev__SubscriptionPolicy::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tev__SubscriptionPolicy(soap, tag ? tag : "tev:SubscriptionPolicy", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tev__SubscriptionPolicy::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tev__SubscriptionPolicy(soap, this, tag, type); -} - -SOAP_FMAC3 tev__SubscriptionPolicy * SOAP_FMAC4 soap_get_tev__SubscriptionPolicy(struct soap *soap, tev__SubscriptionPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in_tev__SubscriptionPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tev__Capabilities::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->tev__Capabilities::__any); - this->tev__Capabilities::WSSubscriptionPolicySupport = NULL; - this->tev__Capabilities::WSPullPointSupport = NULL; - this->tev__Capabilities::WSPausableSubscriptionManagerInterfaceSupport = NULL; - this->tev__Capabilities::MaxNotificationProducers = NULL; - this->tev__Capabilities::MaxPullPoints = NULL; - this->tev__Capabilities::PersistentNotificationStorage = NULL; - soap_default_xsd__anyAttribute(soap, &this->tev__Capabilities::__anyAttribute); -} - -void tev__Capabilities::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->tev__Capabilities::__any); -#endif -} - -int tev__Capabilities::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tev__Capabilities(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tev__Capabilities(struct soap *soap, const char *tag, int id, const tev__Capabilities *a, const char *type) -{ - if (((tev__Capabilities*)a)->WSSubscriptionPolicySupport) - { soap_set_attr(soap, "WSSubscriptionPolicySupport", soap_bool2s(soap, *((tev__Capabilities*)a)->WSSubscriptionPolicySupport), 1); - } - if (((tev__Capabilities*)a)->WSPullPointSupport) - { soap_set_attr(soap, "WSPullPointSupport", soap_bool2s(soap, *((tev__Capabilities*)a)->WSPullPointSupport), 1); - } - if (((tev__Capabilities*)a)->WSPausableSubscriptionManagerInterfaceSupport) - { soap_set_attr(soap, "WSPausableSubscriptionManagerInterfaceSupport", soap_bool2s(soap, *((tev__Capabilities*)a)->WSPausableSubscriptionManagerInterfaceSupport), 1); - } - if (((tev__Capabilities*)a)->MaxNotificationProducers) - { soap_set_attr(soap, "MaxNotificationProducers", soap_int2s(soap, *((tev__Capabilities*)a)->MaxNotificationProducers), 1); - } - if (((tev__Capabilities*)a)->MaxPullPoints) - { soap_set_attr(soap, "MaxPullPoints", soap_int2s(soap, *((tev__Capabilities*)a)->MaxPullPoints), 1); - } - if (((tev__Capabilities*)a)->PersistentNotificationStorage) - { soap_set_attr(soap, "PersistentNotificationStorage", soap_bool2s(soap, *((tev__Capabilities*)a)->PersistentNotificationStorage), 1); - } - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((tev__Capabilities*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tev__Capabilities), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->tev__Capabilities::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tev__Capabilities::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tev__Capabilities(soap, tag, this, type); -} - -SOAP_FMAC3 tev__Capabilities * SOAP_FMAC4 soap_in_tev__Capabilities(struct soap *soap, const char *tag, tev__Capabilities *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tev__Capabilities*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tev__Capabilities, sizeof(tev__Capabilities), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tev__Capabilities) - { soap_revert(soap); - *soap->id = '\0'; - return (tev__Capabilities *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - { - const char *t = soap_attr_value(soap, "WSSubscriptionPolicySupport", 5, 0); - if (t) - { - if (!(((tev__Capabilities*)a)->WSSubscriptionPolicySupport = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tev__Capabilities*)a)->WSSubscriptionPolicySupport)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "WSPullPointSupport", 5, 0); - if (t) - { - if (!(((tev__Capabilities*)a)->WSPullPointSupport = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tev__Capabilities*)a)->WSPullPointSupport)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "WSPausableSubscriptionManagerInterfaceSupport", 5, 0); - if (t) - { - if (!(((tev__Capabilities*)a)->WSPausableSubscriptionManagerInterfaceSupport = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tev__Capabilities*)a)->WSPausableSubscriptionManagerInterfaceSupport)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxNotificationProducers", 5, 0); - if (t) - { - if (!(((tev__Capabilities*)a)->MaxNotificationProducers = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tev__Capabilities*)a)->MaxNotificationProducers)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "MaxPullPoints", 5, 0); - if (t) - { - if (!(((tev__Capabilities*)a)->MaxPullPoints = (int *)soap_malloc(soap, sizeof(int)))) - return NULL; - if (soap_s2int(soap, t, ((tev__Capabilities*)a)->MaxPullPoints)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "PersistentNotificationStorage", 5, 0); - if (t) - { - if (!(((tev__Capabilities*)a)->PersistentNotificationStorage = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (soap_s2bool(soap, t, ((tev__Capabilities*)a)->PersistentNotificationStorage)) - return NULL; - } - else if (soap->error) - return NULL; - } - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((tev__Capabilities*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->tev__Capabilities::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (tev__Capabilities *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tev__Capabilities, SOAP_TYPE_tev__Capabilities, sizeof(tev__Capabilities), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tev__Capabilities * SOAP_FMAC2 soap_instantiate_tev__Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tev__Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tev__Capabilities *p; - size_t k = sizeof(tev__Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tev__Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tev__Capabilities); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tev__Capabilities, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tev__Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tev__Capabilities::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tev__Capabilities(soap, tag ? tag : "tev:Capabilities", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tev__Capabilities::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tev__Capabilities(soap, this, tag, type); -} - -SOAP_FMAC3 tev__Capabilities * SOAP_FMAC4 soap_get_tev__Capabilities(struct soap *soap, tev__Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in_tev__Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsrfbf__BaseFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->wsrfbf__BaseFaultType::__any); - soap_default_xsd__dateTime(soap, &this->wsrfbf__BaseFaultType::Timestamp); - this->wsrfbf__BaseFaultType::Originator = NULL; - this->wsrfbf__BaseFaultType::ErrorCode = NULL; - soap_default_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, &this->wsrfbf__BaseFaultType::Description); - this->wsrfbf__BaseFaultType::FaultCause = NULL; - soap_default_xsd__anyAttribute(soap, &this->wsrfbf__BaseFaultType::__anyAttribute); -} - -void wsrfbf__BaseFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->wsrfbf__BaseFaultType::__any); - soap_embedded(soap, &this->wsrfbf__BaseFaultType::Timestamp, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->wsrfbf__BaseFaultType::Timestamp); - soap_serialize_PointerTowsa5__EndpointReferenceType(soap, &this->wsrfbf__BaseFaultType::Originator); - soap_serialize_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, &this->wsrfbf__BaseFaultType::ErrorCode); - soap_serialize_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, &this->wsrfbf__BaseFaultType::Description); - soap_serialize_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, &this->wsrfbf__BaseFaultType::FaultCause); -#endif -} - -int wsrfbf__BaseFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsrfbf__BaseFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsrfbf__BaseFaultType(struct soap *soap, const char *tag, int id, const wsrfbf__BaseFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsrfbf__BaseFaultType), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsrfbf__BaseFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsrfbf__BaseFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsrfbf__BaseFaultType * SOAP_FMAC4 soap_in_wsrfbf__BaseFaultType(struct soap *soap, const char *tag, wsrfbf__BaseFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsrfbf__BaseFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsrfbf__BaseFaultType, sizeof(wsrfbf__BaseFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsrfbf__BaseFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsrfbf__BaseFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp1 = 1; - size_t soap_flag_Originator1 = 1; - size_t soap_flag_ErrorCode1 = 1; - size_t soap_flag_FaultCause1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp1--; - continue; - } - } - if (soap_flag_Originator1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator1--; - continue; - } - } - if (soap_flag_ErrorCode1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsrfbf__BaseFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsrfbf__BaseFaultType, SOAP_TYPE_wsrfbf__BaseFaultType, sizeof(wsrfbf__BaseFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsrfbf__BaseFaultType * SOAP_FMAC2 soap_instantiate_wsrfbf__BaseFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsrfbf__BaseFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "wsnt:SubscribeCreationFailedFaultType")) - return soap_instantiate_wsnt__SubscribeCreationFailedFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:InvalidFilterFaultType")) - return soap_instantiate_wsnt__InvalidFilterFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:TopicExpressionDialectUnknownFaultType")) - return soap_instantiate_wsnt__TopicExpressionDialectUnknownFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:InvalidTopicExpressionFaultType")) - return soap_instantiate_wsnt__InvalidTopicExpressionFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:TopicNotSupportedFaultType")) - return soap_instantiate_wsnt__TopicNotSupportedFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:MultipleTopicsSpecifiedFaultType")) - return soap_instantiate_wsnt__MultipleTopicsSpecifiedFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:InvalidProducerPropertiesExpressionFaultType")) - return soap_instantiate_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:InvalidMessageContentExpressionFaultType")) - return soap_instantiate_wsnt__InvalidMessageContentExpressionFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnrecognizedPolicyRequestFaultType")) - return soap_instantiate_wsnt__UnrecognizedPolicyRequestFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnsupportedPolicyRequestFaultType")) - return soap_instantiate_wsnt__UnsupportedPolicyRequestFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:NotifyMessageNotSupportedFaultType")) - return soap_instantiate_wsnt__NotifyMessageNotSupportedFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnacceptableInitialTerminationTimeFaultType")) - return soap_instantiate_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:NoCurrentMessageOnTopicFaultType")) - return soap_instantiate_wsnt__NoCurrentMessageOnTopicFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnableToGetMessagesFaultType")) - return soap_instantiate_wsnt__UnableToGetMessagesFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnableToDestroyPullPointFaultType")) - return soap_instantiate_wsnt__UnableToDestroyPullPointFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnableToCreatePullPointFaultType")) - return soap_instantiate_wsnt__UnableToCreatePullPointFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnacceptableTerminationTimeFaultType")) - return soap_instantiate_wsnt__UnacceptableTerminationTimeFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:UnableToDestroySubscriptionFaultType")) - return soap_instantiate_wsnt__UnableToDestroySubscriptionFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:PauseFailedFaultType")) - return soap_instantiate_wsnt__PauseFailedFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsnt:ResumeFailedFaultType")) - return soap_instantiate_wsnt__ResumeFailedFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsrfr:ResourceUnknownFaultType")) - return soap_instantiate_wsrfr__ResourceUnknownFaultType(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "wsrfr:ResourceUnavailableFaultType")) - return soap_instantiate_wsrfr__ResourceUnavailableFaultType(soap, n, NULL, NULL, size); - wsrfbf__BaseFaultType *p; - size_t k = sizeof(wsrfbf__BaseFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsrfbf__BaseFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsrfbf__BaseFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsrfbf__BaseFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsrfbf__BaseFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsrfbf__BaseFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsrfbf__BaseFaultType(soap, tag ? tag : "wsrfbf:BaseFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsrfbf__BaseFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsrfbf__BaseFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsrfbf__BaseFaultType * SOAP_FMAC4 soap_get_wsrfbf__BaseFaultType(struct soap *soap, wsrfbf__BaseFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsrfbf__BaseFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__ResumeSubscriptionResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__ResumeSubscriptionResponse::__any); -} - -void _wsnt__ResumeSubscriptionResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__ResumeSubscriptionResponse::__any); -#endif -} - -int _wsnt__ResumeSubscriptionResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__ResumeSubscriptionResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__ResumeSubscriptionResponse(struct soap *soap, const char *tag, int id, const _wsnt__ResumeSubscriptionResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__ResumeSubscriptionResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__ResumeSubscriptionResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__ResumeSubscriptionResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__ResumeSubscriptionResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__ResumeSubscriptionResponse * SOAP_FMAC4 soap_in__wsnt__ResumeSubscriptionResponse(struct soap *soap, const char *tag, _wsnt__ResumeSubscriptionResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__ResumeSubscriptionResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__ResumeSubscriptionResponse, sizeof(_wsnt__ResumeSubscriptionResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__ResumeSubscriptionResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__ResumeSubscriptionResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__ResumeSubscriptionResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__ResumeSubscriptionResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__ResumeSubscriptionResponse, SOAP_TYPE__wsnt__ResumeSubscriptionResponse, sizeof(_wsnt__ResumeSubscriptionResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__ResumeSubscriptionResponse * SOAP_FMAC2 soap_instantiate__wsnt__ResumeSubscriptionResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__ResumeSubscriptionResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__ResumeSubscriptionResponse *p; - size_t k = sizeof(_wsnt__ResumeSubscriptionResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__ResumeSubscriptionResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__ResumeSubscriptionResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__ResumeSubscriptionResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__ResumeSubscriptionResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__ResumeSubscriptionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__ResumeSubscriptionResponse(soap, tag ? tag : "wsnt:ResumeSubscriptionResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__ResumeSubscriptionResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__ResumeSubscriptionResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__ResumeSubscriptionResponse * SOAP_FMAC4 soap_get__wsnt__ResumeSubscriptionResponse(struct soap *soap, _wsnt__ResumeSubscriptionResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__ResumeSubscriptionResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__ResumeSubscription::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__ResumeSubscription::__any); -} - -void _wsnt__ResumeSubscription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__ResumeSubscription::__any); -#endif -} - -int _wsnt__ResumeSubscription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__ResumeSubscription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__ResumeSubscription(struct soap *soap, const char *tag, int id, const _wsnt__ResumeSubscription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__ResumeSubscription), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__ResumeSubscription::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__ResumeSubscription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__ResumeSubscription(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__ResumeSubscription * SOAP_FMAC4 soap_in__wsnt__ResumeSubscription(struct soap *soap, const char *tag, _wsnt__ResumeSubscription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__ResumeSubscription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__ResumeSubscription, sizeof(_wsnt__ResumeSubscription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__ResumeSubscription) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__ResumeSubscription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__ResumeSubscription::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__ResumeSubscription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__ResumeSubscription, SOAP_TYPE__wsnt__ResumeSubscription, sizeof(_wsnt__ResumeSubscription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__ResumeSubscription * SOAP_FMAC2 soap_instantiate__wsnt__ResumeSubscription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__ResumeSubscription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__ResumeSubscription *p; - size_t k = sizeof(_wsnt__ResumeSubscription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__ResumeSubscription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__ResumeSubscription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__ResumeSubscription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__ResumeSubscription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__ResumeSubscription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__ResumeSubscription(soap, tag ? tag : "wsnt:ResumeSubscription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__ResumeSubscription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__ResumeSubscription(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__ResumeSubscription * SOAP_FMAC4 soap_get__wsnt__ResumeSubscription(struct soap *soap, _wsnt__ResumeSubscription *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__ResumeSubscription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__PauseSubscriptionResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__PauseSubscriptionResponse::__any); -} - -void _wsnt__PauseSubscriptionResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__PauseSubscriptionResponse::__any); -#endif -} - -int _wsnt__PauseSubscriptionResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__PauseSubscriptionResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__PauseSubscriptionResponse(struct soap *soap, const char *tag, int id, const _wsnt__PauseSubscriptionResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__PauseSubscriptionResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__PauseSubscriptionResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__PauseSubscriptionResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__PauseSubscriptionResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__PauseSubscriptionResponse * SOAP_FMAC4 soap_in__wsnt__PauseSubscriptionResponse(struct soap *soap, const char *tag, _wsnt__PauseSubscriptionResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__PauseSubscriptionResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__PauseSubscriptionResponse, sizeof(_wsnt__PauseSubscriptionResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__PauseSubscriptionResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__PauseSubscriptionResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__PauseSubscriptionResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__PauseSubscriptionResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__PauseSubscriptionResponse, SOAP_TYPE__wsnt__PauseSubscriptionResponse, sizeof(_wsnt__PauseSubscriptionResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__PauseSubscriptionResponse * SOAP_FMAC2 soap_instantiate__wsnt__PauseSubscriptionResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__PauseSubscriptionResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__PauseSubscriptionResponse *p; - size_t k = sizeof(_wsnt__PauseSubscriptionResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__PauseSubscriptionResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__PauseSubscriptionResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__PauseSubscriptionResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__PauseSubscriptionResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__PauseSubscriptionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__PauseSubscriptionResponse(soap, tag ? tag : "wsnt:PauseSubscriptionResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__PauseSubscriptionResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__PauseSubscriptionResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__PauseSubscriptionResponse * SOAP_FMAC4 soap_get__wsnt__PauseSubscriptionResponse(struct soap *soap, _wsnt__PauseSubscriptionResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__PauseSubscriptionResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__PauseSubscription::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__PauseSubscription::__any); -} - -void _wsnt__PauseSubscription::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__PauseSubscription::__any); -#endif -} - -int _wsnt__PauseSubscription::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__PauseSubscription(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__PauseSubscription(struct soap *soap, const char *tag, int id, const _wsnt__PauseSubscription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__PauseSubscription), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__PauseSubscription::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__PauseSubscription::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__PauseSubscription(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__PauseSubscription * SOAP_FMAC4 soap_in__wsnt__PauseSubscription(struct soap *soap, const char *tag, _wsnt__PauseSubscription *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__PauseSubscription*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__PauseSubscription, sizeof(_wsnt__PauseSubscription), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__PauseSubscription) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__PauseSubscription *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__PauseSubscription::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__PauseSubscription *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__PauseSubscription, SOAP_TYPE__wsnt__PauseSubscription, sizeof(_wsnt__PauseSubscription), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__PauseSubscription * SOAP_FMAC2 soap_instantiate__wsnt__PauseSubscription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__PauseSubscription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__PauseSubscription *p; - size_t k = sizeof(_wsnt__PauseSubscription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__PauseSubscription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__PauseSubscription); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__PauseSubscription, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__PauseSubscription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__PauseSubscription::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__PauseSubscription(soap, tag ? tag : "wsnt:PauseSubscription", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__PauseSubscription::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__PauseSubscription(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__PauseSubscription * SOAP_FMAC4 soap_get__wsnt__PauseSubscription(struct soap *soap, _wsnt__PauseSubscription *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__PauseSubscription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__UnsubscribeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__UnsubscribeResponse::__any); -} - -void _wsnt__UnsubscribeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__UnsubscribeResponse::__any); -#endif -} - -int _wsnt__UnsubscribeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__UnsubscribeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__UnsubscribeResponse(struct soap *soap, const char *tag, int id, const _wsnt__UnsubscribeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__UnsubscribeResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__UnsubscribeResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__UnsubscribeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__UnsubscribeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__UnsubscribeResponse * SOAP_FMAC4 soap_in__wsnt__UnsubscribeResponse(struct soap *soap, const char *tag, _wsnt__UnsubscribeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__UnsubscribeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__UnsubscribeResponse, sizeof(_wsnt__UnsubscribeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__UnsubscribeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__UnsubscribeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__UnsubscribeResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__UnsubscribeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__UnsubscribeResponse, SOAP_TYPE__wsnt__UnsubscribeResponse, sizeof(_wsnt__UnsubscribeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__UnsubscribeResponse * SOAP_FMAC2 soap_instantiate__wsnt__UnsubscribeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__UnsubscribeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__UnsubscribeResponse *p; - size_t k = sizeof(_wsnt__UnsubscribeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__UnsubscribeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__UnsubscribeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__UnsubscribeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__UnsubscribeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__UnsubscribeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__UnsubscribeResponse(soap, tag ? tag : "wsnt:UnsubscribeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__UnsubscribeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__UnsubscribeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__UnsubscribeResponse * SOAP_FMAC4 soap_get__wsnt__UnsubscribeResponse(struct soap *soap, _wsnt__UnsubscribeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__UnsubscribeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__Unsubscribe::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Unsubscribe::__any); -} - -void _wsnt__Unsubscribe::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Unsubscribe::__any); -#endif -} - -int _wsnt__Unsubscribe::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__Unsubscribe(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Unsubscribe(struct soap *soap, const char *tag, int id, const _wsnt__Unsubscribe *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__Unsubscribe), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__Unsubscribe::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__Unsubscribe::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__Unsubscribe(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__Unsubscribe * SOAP_FMAC4 soap_in__wsnt__Unsubscribe(struct soap *soap, const char *tag, _wsnt__Unsubscribe *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__Unsubscribe*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__Unsubscribe, sizeof(_wsnt__Unsubscribe), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__Unsubscribe) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__Unsubscribe *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__Unsubscribe::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__Unsubscribe *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__Unsubscribe, SOAP_TYPE__wsnt__Unsubscribe, sizeof(_wsnt__Unsubscribe), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__Unsubscribe * SOAP_FMAC2 soap_instantiate__wsnt__Unsubscribe(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__Unsubscribe(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__Unsubscribe *p; - size_t k = sizeof(_wsnt__Unsubscribe); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__Unsubscribe, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__Unsubscribe); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__Unsubscribe, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__Unsubscribe location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__Unsubscribe::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__Unsubscribe(soap, tag ? tag : "wsnt:Unsubscribe", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__Unsubscribe::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__Unsubscribe(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__Unsubscribe * SOAP_FMAC4 soap_get__wsnt__Unsubscribe(struct soap *soap, _wsnt__Unsubscribe *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__Unsubscribe(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__RenewResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->_wsnt__RenewResponse::TerminationTime); - this->_wsnt__RenewResponse::CurrentTime = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__RenewResponse::__any); -} - -void _wsnt__RenewResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsnt__RenewResponse::TerminationTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->_wsnt__RenewResponse::TerminationTime); - soap_serialize_PointerToxsd__dateTime(soap, &this->_wsnt__RenewResponse::CurrentTime); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__RenewResponse::__any); -#endif -} - -int _wsnt__RenewResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__RenewResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__RenewResponse(struct soap *soap, const char *tag, int id, const _wsnt__RenewResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__RenewResponse), type)) - return soap->error; - soap_element_result(soap, "wsnt:TerminationTime"); - if (soap_out_xsd__dateTime(soap, "wsnt:TerminationTime", -1, &a->_wsnt__RenewResponse::TerminationTime, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "wsnt:CurrentTime", -1, &a->_wsnt__RenewResponse::CurrentTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__RenewResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__RenewResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__RenewResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__RenewResponse * SOAP_FMAC4 soap_in__wsnt__RenewResponse(struct soap *soap, const char *tag, _wsnt__RenewResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__RenewResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__RenewResponse, sizeof(_wsnt__RenewResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__RenewResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__RenewResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_TerminationTime1 = 1; - size_t soap_flag_CurrentTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TerminationTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsnt:TerminationTime", &a->_wsnt__RenewResponse::TerminationTime, "xsd:dateTime")) - { soap_flag_TerminationTime1--; - continue; - } - } - if (soap_flag_CurrentTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "wsnt:CurrentTime", &a->_wsnt__RenewResponse::CurrentTime, "xsd:dateTime")) - { soap_flag_CurrentTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__RenewResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "wsnt:TerminationTime"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TerminationTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__RenewResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__RenewResponse, SOAP_TYPE__wsnt__RenewResponse, sizeof(_wsnt__RenewResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__RenewResponse * SOAP_FMAC2 soap_instantiate__wsnt__RenewResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__RenewResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__RenewResponse *p; - size_t k = sizeof(_wsnt__RenewResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__RenewResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__RenewResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__RenewResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__RenewResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__RenewResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__RenewResponse(soap, tag ? tag : "wsnt:RenewResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__RenewResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__RenewResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__RenewResponse * SOAP_FMAC4 soap_get__wsnt__RenewResponse(struct soap *soap, _wsnt__RenewResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__RenewResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__Renew::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_wsnt__Renew::TerminationTime = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Renew::__any); -} - -void _wsnt__Renew::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, &this->_wsnt__Renew::TerminationTime); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Renew::__any); -#endif -} - -int _wsnt__Renew::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__Renew(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Renew(struct soap *soap, const char *tag, int id, const _wsnt__Renew *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__Renew), type)) - return soap->error; - if (!a->_wsnt__Renew::TerminationTime) - { if (soap_element_nil(soap, "wsnt:TerminationTime")) - return soap->error; - } - else if (soap_out_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, "wsnt:TerminationTime", -1, &a->_wsnt__Renew::TerminationTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__Renew::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__Renew::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__Renew(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__Renew * SOAP_FMAC4 soap_in__wsnt__Renew(struct soap *soap, const char *tag, _wsnt__Renew *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__Renew*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__Renew, sizeof(_wsnt__Renew), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__Renew) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__Renew *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_TerminationTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_TerminationTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, "wsnt:TerminationTime", &a->_wsnt__Renew::TerminationTime, "wsnt:AbsoluteOrRelativeTimeType")) - { soap_flag_TerminationTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__Renew::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_TerminationTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__Renew *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__Renew, SOAP_TYPE__wsnt__Renew, sizeof(_wsnt__Renew), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__Renew * SOAP_FMAC2 soap_instantiate__wsnt__Renew(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__Renew(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__Renew *p; - size_t k = sizeof(_wsnt__Renew); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__Renew, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__Renew); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__Renew, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__Renew location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__Renew::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__Renew(soap, tag ? tag : "wsnt:Renew", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__Renew::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__Renew(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__Renew * SOAP_FMAC4 soap_get__wsnt__Renew(struct soap *soap, _wsnt__Renew *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__Renew(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__CreatePullPointResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wsa5__EndpointReferenceType(soap, &this->_wsnt__CreatePullPointResponse::PullPoint); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__CreatePullPointResponse::__any); - soap_default_xsd__anyAttribute(soap, &this->_wsnt__CreatePullPointResponse::__anyAttribute); -} - -void _wsnt__CreatePullPointResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsnt__CreatePullPointResponse::PullPoint, SOAP_TYPE_wsa5__EndpointReferenceType); - soap_serialize_wsa5__EndpointReferenceType(soap, &this->_wsnt__CreatePullPointResponse::PullPoint); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__CreatePullPointResponse::__any); -#endif -} - -int _wsnt__CreatePullPointResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__CreatePullPointResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__CreatePullPointResponse(struct soap *soap, const char *tag, int id, const _wsnt__CreatePullPointResponse *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_wsnt__CreatePullPointResponse*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__CreatePullPointResponse), type)) - return soap->error; - soap_element_result(soap, "wsnt:PullPoint"); - if (soap_out_wsa5__EndpointReferenceType(soap, "wsnt:PullPoint", -1, &a->_wsnt__CreatePullPointResponse::PullPoint, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__CreatePullPointResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__CreatePullPointResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__CreatePullPointResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__CreatePullPointResponse * SOAP_FMAC4 soap_in__wsnt__CreatePullPointResponse(struct soap *soap, const char *tag, _wsnt__CreatePullPointResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__CreatePullPointResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__CreatePullPointResponse, sizeof(_wsnt__CreatePullPointResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__CreatePullPointResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__CreatePullPointResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_wsnt__CreatePullPointResponse*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_PullPoint1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_PullPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_wsa5__EndpointReferenceType(soap, "wsnt:PullPoint", &a->_wsnt__CreatePullPointResponse::PullPoint, "wsa5:EndpointReferenceType")) - { soap_flag_PullPoint1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__CreatePullPointResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "wsnt:PullPoint"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_PullPoint1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__CreatePullPointResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__CreatePullPointResponse, SOAP_TYPE__wsnt__CreatePullPointResponse, sizeof(_wsnt__CreatePullPointResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__CreatePullPointResponse * SOAP_FMAC2 soap_instantiate__wsnt__CreatePullPointResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__CreatePullPointResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__CreatePullPointResponse *p; - size_t k = sizeof(_wsnt__CreatePullPointResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__CreatePullPointResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__CreatePullPointResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__CreatePullPointResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__CreatePullPointResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__CreatePullPointResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__CreatePullPointResponse(soap, tag ? tag : "wsnt:CreatePullPointResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__CreatePullPointResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__CreatePullPointResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__CreatePullPointResponse * SOAP_FMAC4 soap_get__wsnt__CreatePullPointResponse(struct soap *soap, _wsnt__CreatePullPointResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__CreatePullPointResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__CreatePullPoint::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__CreatePullPoint::__any); - soap_default_xsd__anyAttribute(soap, &this->_wsnt__CreatePullPoint::__anyAttribute); -} - -void _wsnt__CreatePullPoint::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__CreatePullPoint::__any); -#endif -} - -int _wsnt__CreatePullPoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__CreatePullPoint(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__CreatePullPoint(struct soap *soap, const char *tag, int id, const _wsnt__CreatePullPoint *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_wsnt__CreatePullPoint*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__CreatePullPoint), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__CreatePullPoint::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__CreatePullPoint::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__CreatePullPoint(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__CreatePullPoint * SOAP_FMAC4 soap_in__wsnt__CreatePullPoint(struct soap *soap, const char *tag, _wsnt__CreatePullPoint *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__CreatePullPoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__CreatePullPoint, sizeof(_wsnt__CreatePullPoint), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__CreatePullPoint) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__CreatePullPoint *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_wsnt__CreatePullPoint*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__CreatePullPoint::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__CreatePullPoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__CreatePullPoint, SOAP_TYPE__wsnt__CreatePullPoint, sizeof(_wsnt__CreatePullPoint), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__CreatePullPoint * SOAP_FMAC2 soap_instantiate__wsnt__CreatePullPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__CreatePullPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__CreatePullPoint *p; - size_t k = sizeof(_wsnt__CreatePullPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__CreatePullPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__CreatePullPoint); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__CreatePullPoint, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__CreatePullPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__CreatePullPoint::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__CreatePullPoint(soap, tag ? tag : "wsnt:CreatePullPoint", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__CreatePullPoint::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__CreatePullPoint(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__CreatePullPoint * SOAP_FMAC4 soap_get__wsnt__CreatePullPoint(struct soap *soap, _wsnt__CreatePullPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__CreatePullPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__DestroyPullPointResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__DestroyPullPointResponse::__any); - soap_default_xsd__anyAttribute(soap, &this->_wsnt__DestroyPullPointResponse::__anyAttribute); -} - -void _wsnt__DestroyPullPointResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__DestroyPullPointResponse::__any); -#endif -} - -int _wsnt__DestroyPullPointResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__DestroyPullPointResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__DestroyPullPointResponse(struct soap *soap, const char *tag, int id, const _wsnt__DestroyPullPointResponse *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_wsnt__DestroyPullPointResponse*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__DestroyPullPointResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__DestroyPullPointResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__DestroyPullPointResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__DestroyPullPointResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__DestroyPullPointResponse * SOAP_FMAC4 soap_in__wsnt__DestroyPullPointResponse(struct soap *soap, const char *tag, _wsnt__DestroyPullPointResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__DestroyPullPointResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__DestroyPullPointResponse, sizeof(_wsnt__DestroyPullPointResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__DestroyPullPointResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__DestroyPullPointResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_wsnt__DestroyPullPointResponse*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__DestroyPullPointResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__DestroyPullPointResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__DestroyPullPointResponse, SOAP_TYPE__wsnt__DestroyPullPointResponse, sizeof(_wsnt__DestroyPullPointResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__DestroyPullPointResponse * SOAP_FMAC2 soap_instantiate__wsnt__DestroyPullPointResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__DestroyPullPointResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__DestroyPullPointResponse *p; - size_t k = sizeof(_wsnt__DestroyPullPointResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__DestroyPullPointResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__DestroyPullPointResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__DestroyPullPointResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__DestroyPullPointResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__DestroyPullPointResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__DestroyPullPointResponse(soap, tag ? tag : "wsnt:DestroyPullPointResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__DestroyPullPointResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__DestroyPullPointResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__DestroyPullPointResponse * SOAP_FMAC4 soap_get__wsnt__DestroyPullPointResponse(struct soap *soap, _wsnt__DestroyPullPointResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__DestroyPullPointResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__DestroyPullPoint::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__DestroyPullPoint::__any); - soap_default_xsd__anyAttribute(soap, &this->_wsnt__DestroyPullPoint::__anyAttribute); -} - -void _wsnt__DestroyPullPoint::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__DestroyPullPoint::__any); -#endif -} - -int _wsnt__DestroyPullPoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__DestroyPullPoint(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__DestroyPullPoint(struct soap *soap, const char *tag, int id, const _wsnt__DestroyPullPoint *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_wsnt__DestroyPullPoint*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__DestroyPullPoint), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__DestroyPullPoint::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__DestroyPullPoint::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__DestroyPullPoint(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__DestroyPullPoint * SOAP_FMAC4 soap_in__wsnt__DestroyPullPoint(struct soap *soap, const char *tag, _wsnt__DestroyPullPoint *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__DestroyPullPoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__DestroyPullPoint, sizeof(_wsnt__DestroyPullPoint), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__DestroyPullPoint) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__DestroyPullPoint *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_wsnt__DestroyPullPoint*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__DestroyPullPoint::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__DestroyPullPoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__DestroyPullPoint, SOAP_TYPE__wsnt__DestroyPullPoint, sizeof(_wsnt__DestroyPullPoint), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__DestroyPullPoint * SOAP_FMAC2 soap_instantiate__wsnt__DestroyPullPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__DestroyPullPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__DestroyPullPoint *p; - size_t k = sizeof(_wsnt__DestroyPullPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__DestroyPullPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__DestroyPullPoint); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__DestroyPullPoint, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__DestroyPullPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__DestroyPullPoint::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__DestroyPullPoint(soap, tag ? tag : "wsnt:DestroyPullPoint", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__DestroyPullPoint::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__DestroyPullPoint(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__DestroyPullPoint * SOAP_FMAC4 soap_get__wsnt__DestroyPullPoint(struct soap *soap, _wsnt__DestroyPullPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__DestroyPullPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__GetMessagesResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, &this->_wsnt__GetMessagesResponse::NotificationMessage); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetMessagesResponse::__any); - soap_default_xsd__anyAttribute(soap, &this->_wsnt__GetMessagesResponse::__anyAttribute); -} - -void _wsnt__GetMessagesResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, &this->_wsnt__GetMessagesResponse::NotificationMessage); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetMessagesResponse::__any); -#endif -} - -int _wsnt__GetMessagesResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__GetMessagesResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetMessagesResponse(struct soap *soap, const char *tag, int id, const _wsnt__GetMessagesResponse *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_wsnt__GetMessagesResponse*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__GetMessagesResponse), type)) - return soap->error; - soap_element_result(soap, "wsnt:NotificationMessage"); - if (soap_out_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, "wsnt:NotificationMessage", -1, &a->_wsnt__GetMessagesResponse::NotificationMessage, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__GetMessagesResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__GetMessagesResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__GetMessagesResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__GetMessagesResponse * SOAP_FMAC4 soap_in__wsnt__GetMessagesResponse(struct soap *soap, const char *tag, _wsnt__GetMessagesResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__GetMessagesResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__GetMessagesResponse, sizeof(_wsnt__GetMessagesResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__GetMessagesResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__GetMessagesResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_wsnt__GetMessagesResponse*)a)->__anyAttribute, "xsd:anyAttribute"); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, "wsnt:NotificationMessage", &a->_wsnt__GetMessagesResponse::NotificationMessage, "wsnt:NotificationMessageHolderType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__GetMessagesResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "wsnt:NotificationMessage"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__GetMessagesResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__GetMessagesResponse, SOAP_TYPE__wsnt__GetMessagesResponse, sizeof(_wsnt__GetMessagesResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__GetMessagesResponse * SOAP_FMAC2 soap_instantiate__wsnt__GetMessagesResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__GetMessagesResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__GetMessagesResponse *p; - size_t k = sizeof(_wsnt__GetMessagesResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__GetMessagesResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__GetMessagesResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__GetMessagesResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__GetMessagesResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__GetMessagesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__GetMessagesResponse(soap, tag ? tag : "wsnt:GetMessagesResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__GetMessagesResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__GetMessagesResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__GetMessagesResponse * SOAP_FMAC4 soap_get__wsnt__GetMessagesResponse(struct soap *soap, _wsnt__GetMessagesResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__GetMessagesResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__GetMessages::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_wsnt__GetMessages::MaximumNumber = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetMessages::__any); - soap_default_xsd__anyAttribute(soap, &this->_wsnt__GetMessages::__anyAttribute); -} - -void _wsnt__GetMessages::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__nonNegativeInteger(soap, &this->_wsnt__GetMessages::MaximumNumber); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetMessages::__any); -#endif -} - -int _wsnt__GetMessages::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__GetMessages(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetMessages(struct soap *soap, const char *tag, int id, const _wsnt__GetMessages *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((_wsnt__GetMessages*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__GetMessages), type)) - return soap->error; - if (soap_out_PointerToxsd__nonNegativeInteger(soap, "wsnt:MaximumNumber", -1, &a->_wsnt__GetMessages::MaximumNumber, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__GetMessages::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__GetMessages::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__GetMessages(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__GetMessages * SOAP_FMAC4 soap_in__wsnt__GetMessages(struct soap *soap, const char *tag, _wsnt__GetMessages *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__GetMessages*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__GetMessages, sizeof(_wsnt__GetMessages), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__GetMessages) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__GetMessages *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((_wsnt__GetMessages*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_MaximumNumber1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_MaximumNumber1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__nonNegativeInteger(soap, "wsnt:MaximumNumber", &a->_wsnt__GetMessages::MaximumNumber, "xsd:nonNegativeInteger")) - { soap_flag_MaximumNumber1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__GetMessages::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__GetMessages *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__GetMessages, SOAP_TYPE__wsnt__GetMessages, sizeof(_wsnt__GetMessages), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__GetMessages * SOAP_FMAC2 soap_instantiate__wsnt__GetMessages(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__GetMessages(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__GetMessages *p; - size_t k = sizeof(_wsnt__GetMessages); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__GetMessages, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__GetMessages); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__GetMessages, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__GetMessages location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__GetMessages::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__GetMessages(soap, tag ? tag : "wsnt:GetMessages", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__GetMessages::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__GetMessages(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__GetMessages * SOAP_FMAC4 soap_get__wsnt__GetMessages(struct soap *soap, _wsnt__GetMessages *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__GetMessages(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__GetCurrentMessageResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetCurrentMessageResponse::__any); -} - -void _wsnt__GetCurrentMessageResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetCurrentMessageResponse::__any); -#endif -} - -int _wsnt__GetCurrentMessageResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__GetCurrentMessageResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetCurrentMessageResponse(struct soap *soap, const char *tag, int id, const _wsnt__GetCurrentMessageResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__GetCurrentMessageResponse), type)) - return soap->error; - soap_element_result(soap, "-any"); - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__GetCurrentMessageResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__GetCurrentMessageResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__GetCurrentMessageResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__GetCurrentMessageResponse * SOAP_FMAC4 soap_in__wsnt__GetCurrentMessageResponse(struct soap *soap, const char *tag, _wsnt__GetCurrentMessageResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__GetCurrentMessageResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__GetCurrentMessageResponse, sizeof(_wsnt__GetCurrentMessageResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__GetCurrentMessageResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__GetCurrentMessageResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__GetCurrentMessageResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "-any"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__GetCurrentMessageResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__GetCurrentMessageResponse, SOAP_TYPE__wsnt__GetCurrentMessageResponse, sizeof(_wsnt__GetCurrentMessageResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__GetCurrentMessageResponse * SOAP_FMAC2 soap_instantiate__wsnt__GetCurrentMessageResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__GetCurrentMessageResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__GetCurrentMessageResponse *p; - size_t k = sizeof(_wsnt__GetCurrentMessageResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__GetCurrentMessageResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__GetCurrentMessageResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__GetCurrentMessageResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__GetCurrentMessageResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__GetCurrentMessageResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__GetCurrentMessageResponse(soap, tag ? tag : "wsnt:GetCurrentMessageResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__GetCurrentMessageResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__GetCurrentMessageResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__GetCurrentMessageResponse * SOAP_FMAC4 soap_get__wsnt__GetCurrentMessageResponse(struct soap *soap, _wsnt__GetCurrentMessageResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__GetCurrentMessageResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__GetCurrentMessage::soap_default(struct soap *soap) -{ - this->soap = soap; - this->_wsnt__GetCurrentMessage::Topic = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetCurrentMessage::__any); -} - -void _wsnt__GetCurrentMessage::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsnt__TopicExpressionType(soap, &this->_wsnt__GetCurrentMessage::Topic); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__GetCurrentMessage::__any); -#endif -} - -int _wsnt__GetCurrentMessage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__GetCurrentMessage(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetCurrentMessage(struct soap *soap, const char *tag, int id, const _wsnt__GetCurrentMessage *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__GetCurrentMessage), type)) - return soap->error; - if (!a->_wsnt__GetCurrentMessage::Topic) - { if (soap_element_empty(soap, "wsnt:Topic", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTowsnt__TopicExpressionType(soap, "wsnt:Topic", -1, &a->_wsnt__GetCurrentMessage::Topic, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__GetCurrentMessage::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__GetCurrentMessage::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__GetCurrentMessage(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__GetCurrentMessage * SOAP_FMAC4 soap_in__wsnt__GetCurrentMessage(struct soap *soap, const char *tag, _wsnt__GetCurrentMessage *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__GetCurrentMessage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__GetCurrentMessage, sizeof(_wsnt__GetCurrentMessage), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__GetCurrentMessage) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__GetCurrentMessage *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_Topic1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Topic1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__TopicExpressionType(soap, "wsnt:Topic", &a->_wsnt__GetCurrentMessage::Topic, "wsnt:TopicExpressionType")) - { soap_flag_Topic1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__GetCurrentMessage::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->_wsnt__GetCurrentMessage::Topic)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__GetCurrentMessage *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__GetCurrentMessage, SOAP_TYPE__wsnt__GetCurrentMessage, sizeof(_wsnt__GetCurrentMessage), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__GetCurrentMessage * SOAP_FMAC2 soap_instantiate__wsnt__GetCurrentMessage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__GetCurrentMessage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__GetCurrentMessage *p; - size_t k = sizeof(_wsnt__GetCurrentMessage); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__GetCurrentMessage, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__GetCurrentMessage); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__GetCurrentMessage, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__GetCurrentMessage location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__GetCurrentMessage::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__GetCurrentMessage(soap, tag ? tag : "wsnt:GetCurrentMessage", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__GetCurrentMessage::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__GetCurrentMessage(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__GetCurrentMessage * SOAP_FMAC4 soap_get__wsnt__GetCurrentMessage(struct soap *soap, _wsnt__GetCurrentMessage *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__GetCurrentMessage(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__SubscribeResponse::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wsa5__EndpointReferenceType(soap, &this->_wsnt__SubscribeResponse::SubscriptionReference); - this->_wsnt__SubscribeResponse::CurrentTime = NULL; - this->_wsnt__SubscribeResponse::TerminationTime = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__SubscribeResponse::__any); -} - -void _wsnt__SubscribeResponse::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsnt__SubscribeResponse::SubscriptionReference, SOAP_TYPE_wsa5__EndpointReferenceType); - soap_serialize_wsa5__EndpointReferenceType(soap, &this->_wsnt__SubscribeResponse::SubscriptionReference); - soap_serialize_PointerToxsd__dateTime(soap, &this->_wsnt__SubscribeResponse::CurrentTime); - soap_serialize_PointerToxsd__dateTime(soap, &this->_wsnt__SubscribeResponse::TerminationTime); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__SubscribeResponse::__any); -#endif -} - -int _wsnt__SubscribeResponse::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__SubscribeResponse(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__SubscribeResponse(struct soap *soap, const char *tag, int id, const _wsnt__SubscribeResponse *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__SubscribeResponse), type)) - return soap->error; - soap_element_result(soap, "wsnt:SubscriptionReference"); - if (soap_out_wsa5__EndpointReferenceType(soap, "wsnt:SubscriptionReference", -1, &a->_wsnt__SubscribeResponse::SubscriptionReference, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "wsnt:CurrentTime", -1, &a->_wsnt__SubscribeResponse::CurrentTime, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "wsnt:TerminationTime", -1, &a->_wsnt__SubscribeResponse::TerminationTime, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__SubscribeResponse::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__SubscribeResponse::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__SubscribeResponse(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__SubscribeResponse * SOAP_FMAC4 soap_in__wsnt__SubscribeResponse(struct soap *soap, const char *tag, _wsnt__SubscribeResponse *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__SubscribeResponse*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__SubscribeResponse, sizeof(_wsnt__SubscribeResponse), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__SubscribeResponse) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__SubscribeResponse *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_SubscriptionReference1 = 1; - size_t soap_flag_CurrentTime1 = 1; - size_t soap_flag_TerminationTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SubscriptionReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_wsa5__EndpointReferenceType(soap, "wsnt:SubscriptionReference", &a->_wsnt__SubscribeResponse::SubscriptionReference, "wsa5:EndpointReferenceType")) - { soap_flag_SubscriptionReference1--; - continue; - } - } - if (soap_flag_CurrentTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "wsnt:CurrentTime", &a->_wsnt__SubscribeResponse::CurrentTime, "xsd:dateTime")) - { soap_flag_CurrentTime1--; - continue; - } - } - if (soap_flag_TerminationTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "wsnt:TerminationTime", &a->_wsnt__SubscribeResponse::TerminationTime, "xsd:dateTime")) - { soap_flag_TerminationTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__SubscribeResponse::__any, "xsd:anyType")) - continue; - } - soap_check_result(soap, "wsnt:SubscriptionReference"); - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_SubscriptionReference1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__SubscribeResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__SubscribeResponse, SOAP_TYPE__wsnt__SubscribeResponse, sizeof(_wsnt__SubscribeResponse), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__SubscribeResponse * SOAP_FMAC2 soap_instantiate__wsnt__SubscribeResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__SubscribeResponse(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__SubscribeResponse *p; - size_t k = sizeof(_wsnt__SubscribeResponse); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__SubscribeResponse, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__SubscribeResponse); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__SubscribeResponse, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__SubscribeResponse location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__SubscribeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__SubscribeResponse(soap, tag ? tag : "wsnt:SubscribeResponse", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__SubscribeResponse::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__SubscribeResponse(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__SubscribeResponse * SOAP_FMAC4 soap_get__wsnt__SubscribeResponse(struct soap *soap, _wsnt__SubscribeResponse *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__SubscribeResponse(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__Subscribe::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wsa5__EndpointReferenceType(soap, &this->_wsnt__Subscribe::ConsumerReference); - this->_wsnt__Subscribe::Filter = NULL; - this->_wsnt__Subscribe::InitialTerminationTime = NULL; - this->_wsnt__Subscribe::SubscriptionPolicy = NULL; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Subscribe::__any); -} - -void _wsnt__Subscribe::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsnt__Subscribe::ConsumerReference, SOAP_TYPE_wsa5__EndpointReferenceType); - soap_serialize_wsa5__EndpointReferenceType(soap, &this->_wsnt__Subscribe::ConsumerReference); - soap_serialize_PointerTowsnt__FilterType(soap, &this->_wsnt__Subscribe::Filter); - soap_serialize_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, &this->_wsnt__Subscribe::InitialTerminationTime); - soap_serialize_PointerTo_wsnt__Subscribe_SubscriptionPolicy(soap, &this->_wsnt__Subscribe::SubscriptionPolicy); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Subscribe::__any); -#endif -} - -int _wsnt__Subscribe::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__Subscribe(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Subscribe(struct soap *soap, const char *tag, int id, const _wsnt__Subscribe *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__Subscribe), type)) - return soap->error; - if (soap_out_wsa5__EndpointReferenceType(soap, "wsnt:ConsumerReference", -1, &a->_wsnt__Subscribe::ConsumerReference, "")) - return soap->error; - if (soap_out_PointerTowsnt__FilterType(soap, "wsnt:Filter", -1, &a->_wsnt__Subscribe::Filter, "")) - return soap->error; - if (soap_out_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, "wsnt:InitialTerminationTime", -1, &a->_wsnt__Subscribe::InitialTerminationTime, "")) - return soap->error; - if (soap_out_PointerTo_wsnt__Subscribe_SubscriptionPolicy(soap, "wsnt:SubscriptionPolicy", -1, &a->_wsnt__Subscribe::SubscriptionPolicy, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__Subscribe::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__Subscribe::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__Subscribe(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__Subscribe * SOAP_FMAC4 soap_in__wsnt__Subscribe(struct soap *soap, const char *tag, _wsnt__Subscribe *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__Subscribe*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__Subscribe, sizeof(_wsnt__Subscribe), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__Subscribe) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__Subscribe *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConsumerReference1 = 1; - size_t soap_flag_Filter1 = 1; - size_t soap_flag_InitialTerminationTime1 = 1; - size_t soap_flag_SubscriptionPolicy1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConsumerReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_wsa5__EndpointReferenceType(soap, "wsnt:ConsumerReference", &a->_wsnt__Subscribe::ConsumerReference, "wsa5:EndpointReferenceType")) - { soap_flag_ConsumerReference1--; - continue; - } - } - if (soap_flag_Filter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__FilterType(soap, "wsnt:Filter", &a->_wsnt__Subscribe::Filter, "wsnt:FilterType")) - { soap_flag_Filter1--; - continue; - } - } - if (soap_flag_InitialTerminationTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerTowsnt__AbsoluteOrRelativeTimeType(soap, "wsnt:InitialTerminationTime", &a->_wsnt__Subscribe::InitialTerminationTime, "wsnt:AbsoluteOrRelativeTimeType")) - { soap_flag_InitialTerminationTime1--; - continue; - } - } - if (soap_flag_SubscriptionPolicy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Subscribe_SubscriptionPolicy(soap, "wsnt:SubscriptionPolicy", &a->_wsnt__Subscribe::SubscriptionPolicy, "")) - { soap_flag_SubscriptionPolicy1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__Subscribe::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConsumerReference1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__Subscribe *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__Subscribe, SOAP_TYPE__wsnt__Subscribe, sizeof(_wsnt__Subscribe), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__Subscribe * SOAP_FMAC2 soap_instantiate__wsnt__Subscribe(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__Subscribe(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__Subscribe *p; - size_t k = sizeof(_wsnt__Subscribe); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__Subscribe, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__Subscribe); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__Subscribe, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__Subscribe location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__Subscribe::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__Subscribe(soap, tag ? tag : "wsnt:Subscribe", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__Subscribe::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__Subscribe(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__Subscribe * SOAP_FMAC4 soap_get__wsnt__Subscribe(struct soap *soap, _wsnt__Subscribe *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__Subscribe(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__UseRaw::soap_default(struct soap *soap) -{ - this->soap = soap; -} - -void _wsnt__UseRaw::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -int _wsnt__UseRaw::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__UseRaw(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__UseRaw(struct soap *soap, const char *tag, int id, const _wsnt__UseRaw *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__UseRaw), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__UseRaw::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__UseRaw(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__UseRaw * SOAP_FMAC4 soap_in__wsnt__UseRaw(struct soap *soap, const char *tag, _wsnt__UseRaw *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__UseRaw*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__UseRaw, sizeof(_wsnt__UseRaw), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__UseRaw) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__UseRaw *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__UseRaw *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__UseRaw, SOAP_TYPE__wsnt__UseRaw, sizeof(_wsnt__UseRaw), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__UseRaw * SOAP_FMAC2 soap_instantiate__wsnt__UseRaw(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__UseRaw(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__UseRaw *p; - size_t k = sizeof(_wsnt__UseRaw); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__UseRaw, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__UseRaw); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__UseRaw, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__UseRaw location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__UseRaw::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__UseRaw(soap, tag ? tag : "wsnt:UseRaw", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__UseRaw::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__UseRaw(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__UseRaw * SOAP_FMAC4 soap_get__wsnt__UseRaw(struct soap *soap, _wsnt__UseRaw *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__UseRaw(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__Notify::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, &this->_wsnt__Notify::NotificationMessage); - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Notify::__any); -} - -void _wsnt__Notify::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, &this->_wsnt__Notify::NotificationMessage); - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->_wsnt__Notify::__any); -#endif -} - -int _wsnt__Notify::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__Notify(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Notify(struct soap *soap, const char *tag, int id, const _wsnt__Notify *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__Notify), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, "wsnt:NotificationMessage", -1, &a->_wsnt__Notify::NotificationMessage, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->_wsnt__Notify::__any, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__Notify::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__Notify(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__Notify * SOAP_FMAC4 soap_in__wsnt__Notify(struct soap *soap, const char *tag, _wsnt__Notify *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__Notify*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__Notify, sizeof(_wsnt__Notify), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__Notify) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__Notify *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, "wsnt:NotificationMessage", &a->_wsnt__Notify::NotificationMessage, "wsnt:NotificationMessageHolderType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->_wsnt__Notify::__any, "xsd:anyType")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->_wsnt__Notify::NotificationMessage.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__Notify *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__Notify, SOAP_TYPE__wsnt__Notify, sizeof(_wsnt__Notify), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__Notify * SOAP_FMAC2 soap_instantiate__wsnt__Notify(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__Notify(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__Notify *p; - size_t k = sizeof(_wsnt__Notify); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__Notify, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__Notify); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__Notify, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__Notify location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__Notify::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__Notify(soap, tag ? tag : "wsnt:Notify", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__Notify::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__Notify(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__Notify * SOAP_FMAC4 soap_get__wsnt__Notify(struct soap *soap, _wsnt__Notify *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__Notify(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__SubscriptionManagerRP::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wsa5__EndpointReferenceType(soap, &this->_wsnt__SubscriptionManagerRP::ConsumerReference); - this->_wsnt__SubscriptionManagerRP::Filter = NULL; - this->_wsnt__SubscriptionManagerRP::SubscriptionPolicy = NULL; - this->_wsnt__SubscriptionManagerRP::CreationTime = NULL; -} - -void _wsnt__SubscriptionManagerRP::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->_wsnt__SubscriptionManagerRP::ConsumerReference, SOAP_TYPE_wsa5__EndpointReferenceType); - soap_serialize_wsa5__EndpointReferenceType(soap, &this->_wsnt__SubscriptionManagerRP::ConsumerReference); - soap_serialize_PointerTowsnt__FilterType(soap, &this->_wsnt__SubscriptionManagerRP::Filter); - soap_serialize_PointerTowsnt__SubscriptionPolicyType(soap, &this->_wsnt__SubscriptionManagerRP::SubscriptionPolicy); - soap_serialize_PointerToxsd__dateTime(soap, &this->_wsnt__SubscriptionManagerRP::CreationTime); -#endif -} - -int _wsnt__SubscriptionManagerRP::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__SubscriptionManagerRP(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__SubscriptionManagerRP(struct soap *soap, const char *tag, int id, const _wsnt__SubscriptionManagerRP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__SubscriptionManagerRP), type)) - return soap->error; - if (soap_out_wsa5__EndpointReferenceType(soap, "wsnt:ConsumerReference", -1, &a->_wsnt__SubscriptionManagerRP::ConsumerReference, "")) - return soap->error; - if (soap_out_PointerTowsnt__FilterType(soap, "wsnt:Filter", -1, &a->_wsnt__SubscriptionManagerRP::Filter, "")) - return soap->error; - if (soap_out_PointerTowsnt__SubscriptionPolicyType(soap, "wsnt:SubscriptionPolicy", -1, &a->_wsnt__SubscriptionManagerRP::SubscriptionPolicy, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "wsnt:CreationTime", -1, &a->_wsnt__SubscriptionManagerRP::CreationTime, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__SubscriptionManagerRP::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__SubscriptionManagerRP(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__SubscriptionManagerRP * SOAP_FMAC4 soap_in__wsnt__SubscriptionManagerRP(struct soap *soap, const char *tag, _wsnt__SubscriptionManagerRP *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__SubscriptionManagerRP*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__SubscriptionManagerRP, sizeof(_wsnt__SubscriptionManagerRP), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__SubscriptionManagerRP) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__SubscriptionManagerRP *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_ConsumerReference1 = 1; - size_t soap_flag_Filter1 = 1; - size_t soap_flag_SubscriptionPolicy1 = 1; - size_t soap_flag_CreationTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ConsumerReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_wsa5__EndpointReferenceType(soap, "wsnt:ConsumerReference", &a->_wsnt__SubscriptionManagerRP::ConsumerReference, "wsa5:EndpointReferenceType")) - { soap_flag_ConsumerReference1--; - continue; - } - } - if (soap_flag_Filter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__FilterType(soap, "wsnt:Filter", &a->_wsnt__SubscriptionManagerRP::Filter, "wsnt:FilterType")) - { soap_flag_Filter1--; - continue; - } - } - if (soap_flag_SubscriptionPolicy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__SubscriptionPolicyType(soap, "wsnt:SubscriptionPolicy", &a->_wsnt__SubscriptionManagerRP::SubscriptionPolicy, "wsnt:SubscriptionPolicyType")) - { soap_flag_SubscriptionPolicy1--; - continue; - } - } - if (soap_flag_CreationTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "wsnt:CreationTime", &a->_wsnt__SubscriptionManagerRP::CreationTime, "xsd:dateTime")) - { soap_flag_CreationTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ConsumerReference1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (_wsnt__SubscriptionManagerRP *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__SubscriptionManagerRP, SOAP_TYPE__wsnt__SubscriptionManagerRP, sizeof(_wsnt__SubscriptionManagerRP), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__SubscriptionManagerRP * SOAP_FMAC2 soap_instantiate__wsnt__SubscriptionManagerRP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__SubscriptionManagerRP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__SubscriptionManagerRP *p; - size_t k = sizeof(_wsnt__SubscriptionManagerRP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__SubscriptionManagerRP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__SubscriptionManagerRP); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__SubscriptionManagerRP, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__SubscriptionManagerRP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__SubscriptionManagerRP::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__SubscriptionManagerRP(soap, tag ? tag : "wsnt:SubscriptionManagerRP", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__SubscriptionManagerRP::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__SubscriptionManagerRP(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__SubscriptionManagerRP * SOAP_FMAC4 soap_get__wsnt__SubscriptionManagerRP(struct soap *soap, _wsnt__SubscriptionManagerRP *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__SubscriptionManagerRP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void _wsnt__NotificationProducerRP::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(soap, &this->_wsnt__NotificationProducerRP::TopicExpression); - this->_wsnt__NotificationProducerRP::FixedTopicSet = NULL; - soap_default_std__vectorTemplateOfxsd__anyURI(soap, &this->_wsnt__NotificationProducerRP::TopicExpressionDialect); - this->_wsnt__NotificationProducerRP::wstop__TopicSet = NULL; -} - -void _wsnt__NotificationProducerRP::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(soap, &this->_wsnt__NotificationProducerRP::TopicExpression); - soap_serialize_PointerTobool(soap, &this->_wsnt__NotificationProducerRP::FixedTopicSet); - soap_serialize_std__vectorTemplateOfxsd__anyURI(soap, &this->_wsnt__NotificationProducerRP::TopicExpressionDialect); - soap_serialize_PointerTowstop__TopicSetType(soap, &this->_wsnt__NotificationProducerRP::wstop__TopicSet); -#endif -} - -int _wsnt__NotificationProducerRP::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out__wsnt__NotificationProducerRP(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__NotificationProducerRP(struct soap *soap, const char *tag, int id, const _wsnt__NotificationProducerRP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsnt__NotificationProducerRP), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(soap, "wsnt:TopicExpression", -1, &a->_wsnt__NotificationProducerRP::TopicExpression, "")) - return soap->error; - if (soap_out_PointerTobool(soap, "wsnt:FixedTopicSet", -1, &a->_wsnt__NotificationProducerRP::FixedTopicSet, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyURI(soap, "wsnt:TopicExpressionDialect", -1, &a->_wsnt__NotificationProducerRP::TopicExpressionDialect, "")) - return soap->error; - if (soap_out_PointerTowstop__TopicSetType(soap, "wstop:TopicSet", -1, &a->_wsnt__NotificationProducerRP::wstop__TopicSet, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *_wsnt__NotificationProducerRP::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in__wsnt__NotificationProducerRP(soap, tag, this, type); -} - -SOAP_FMAC3 _wsnt__NotificationProducerRP * SOAP_FMAC4 soap_in__wsnt__NotificationProducerRP(struct soap *soap, const char *tag, _wsnt__NotificationProducerRP *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (_wsnt__NotificationProducerRP*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsnt__NotificationProducerRP, sizeof(_wsnt__NotificationProducerRP), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE__wsnt__NotificationProducerRP) - { soap_revert(soap); - *soap->id = '\0'; - return (_wsnt__NotificationProducerRP *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_FixedTopicSet1 = 1; - size_t soap_flag_wstop__TopicSet1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(soap, "wsnt:TopicExpression", &a->_wsnt__NotificationProducerRP::TopicExpression, "wsnt:TopicExpressionType")) - continue; - } - if (soap_flag_FixedTopicSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "wsnt:FixedTopicSet", &a->_wsnt__NotificationProducerRP::FixedTopicSet, "xsd:boolean")) - { soap_flag_FixedTopicSet1--; - continue; - } - if (soap->error == SOAP_EMPTY) - { if (!(a->_wsnt__NotificationProducerRP::FixedTopicSet = (bool *)soap_malloc(soap, sizeof(bool)))) - return NULL; - if (a->_wsnt__NotificationProducerRP::FixedTopicSet) - *a->_wsnt__NotificationProducerRP::FixedTopicSet = (bool)1; - soap->error = SOAP_OK; - soap_flag_FixedTopicSet1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyURI(soap, "wsnt:TopicExpressionDialect", &a->_wsnt__NotificationProducerRP::TopicExpressionDialect, "xsd:anyURI")) - continue; - } - if (soap_flag_wstop__TopicSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowstop__TopicSetType(soap, "wstop:TopicSet", &a->_wsnt__NotificationProducerRP::wstop__TopicSet, "wstop:TopicSetType")) - { soap_flag_wstop__TopicSet1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (_wsnt__NotificationProducerRP *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsnt__NotificationProducerRP, SOAP_TYPE__wsnt__NotificationProducerRP, sizeof(_wsnt__NotificationProducerRP), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 _wsnt__NotificationProducerRP * SOAP_FMAC2 soap_instantiate__wsnt__NotificationProducerRP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsnt__NotificationProducerRP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - _wsnt__NotificationProducerRP *p; - size_t k = sizeof(_wsnt__NotificationProducerRP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsnt__NotificationProducerRP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, _wsnt__NotificationProducerRP); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, _wsnt__NotificationProducerRP, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated _wsnt__NotificationProducerRP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int _wsnt__NotificationProducerRP::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out__wsnt__NotificationProducerRP(soap, tag ? tag : "wsnt:NotificationProducerRP", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *_wsnt__NotificationProducerRP::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get__wsnt__NotificationProducerRP(soap, this, tag, type); -} - -SOAP_FMAC3 _wsnt__NotificationProducerRP * SOAP_FMAC4 soap_get__wsnt__NotificationProducerRP(struct soap *soap, _wsnt__NotificationProducerRP *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsnt__NotificationProducerRP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__ResumeFailedFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__ResumeFailedFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__ResumeFailedFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__ResumeFailedFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__ResumeFailedFaultType(struct soap *soap, const char *tag, int id, const wsnt__ResumeFailedFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__ResumeFailedFaultType), type ? type : "wsnt:ResumeFailedFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__ResumeFailedFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__ResumeFailedFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__ResumeFailedFaultType * SOAP_FMAC4 soap_in_wsnt__ResumeFailedFaultType(struct soap *soap, const char *tag, wsnt__ResumeFailedFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__ResumeFailedFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__ResumeFailedFaultType, sizeof(wsnt__ResumeFailedFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__ResumeFailedFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__ResumeFailedFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__ResumeFailedFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__ResumeFailedFaultType, SOAP_TYPE_wsnt__ResumeFailedFaultType, sizeof(wsnt__ResumeFailedFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__ResumeFailedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__ResumeFailedFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__ResumeFailedFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__ResumeFailedFaultType *p; - size_t k = sizeof(wsnt__ResumeFailedFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__ResumeFailedFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__ResumeFailedFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__ResumeFailedFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__ResumeFailedFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__ResumeFailedFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__ResumeFailedFaultType(soap, tag ? tag : "wsnt:ResumeFailedFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__ResumeFailedFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__ResumeFailedFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__ResumeFailedFaultType * SOAP_FMAC4 soap_get_wsnt__ResumeFailedFaultType(struct soap *soap, wsnt__ResumeFailedFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__ResumeFailedFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__PauseFailedFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__PauseFailedFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__PauseFailedFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__PauseFailedFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__PauseFailedFaultType(struct soap *soap, const char *tag, int id, const wsnt__PauseFailedFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__PauseFailedFaultType), type ? type : "wsnt:PauseFailedFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__PauseFailedFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__PauseFailedFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__PauseFailedFaultType * SOAP_FMAC4 soap_in_wsnt__PauseFailedFaultType(struct soap *soap, const char *tag, wsnt__PauseFailedFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__PauseFailedFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__PauseFailedFaultType, sizeof(wsnt__PauseFailedFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__PauseFailedFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__PauseFailedFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__PauseFailedFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__PauseFailedFaultType, SOAP_TYPE_wsnt__PauseFailedFaultType, sizeof(wsnt__PauseFailedFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__PauseFailedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__PauseFailedFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__PauseFailedFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__PauseFailedFaultType *p; - size_t k = sizeof(wsnt__PauseFailedFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__PauseFailedFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__PauseFailedFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__PauseFailedFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__PauseFailedFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__PauseFailedFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__PauseFailedFaultType(soap, tag ? tag : "wsnt:PauseFailedFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__PauseFailedFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__PauseFailedFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__PauseFailedFaultType * SOAP_FMAC4 soap_get_wsnt__PauseFailedFaultType(struct soap *soap, wsnt__PauseFailedFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__PauseFailedFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnableToDestroySubscriptionFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__UnableToDestroySubscriptionFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnableToDestroySubscriptionFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnableToDestroySubscriptionFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnableToDestroySubscriptionFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType), type ? type : "wsnt:UnableToDestroySubscriptionFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnableToDestroySubscriptionFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnableToDestroySubscriptionFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnableToDestroySubscriptionFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, const char *tag, wsnt__UnableToDestroySubscriptionFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnableToDestroySubscriptionFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType, sizeof(wsnt__UnableToDestroySubscriptionFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnableToDestroySubscriptionFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnableToDestroySubscriptionFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType, SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType, sizeof(wsnt__UnableToDestroySubscriptionFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnableToDestroySubscriptionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnableToDestroySubscriptionFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnableToDestroySubscriptionFaultType *p; - size_t k = sizeof(wsnt__UnableToDestroySubscriptionFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnableToDestroySubscriptionFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnableToDestroySubscriptionFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnableToDestroySubscriptionFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnableToDestroySubscriptionFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnableToDestroySubscriptionFaultType(soap, tag ? tag : "wsnt:UnableToDestroySubscriptionFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnableToDestroySubscriptionFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnableToDestroySubscriptionFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnableToDestroySubscriptionFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, wsnt__UnableToDestroySubscriptionFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnableToDestroySubscriptionFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnacceptableTerminationTimeFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); - soap_default_xsd__dateTime(soap, &this->wsnt__UnacceptableTerminationTimeFaultType::MinimumTime); - this->wsnt__UnacceptableTerminationTimeFaultType::MaximumTime = NULL; -} - -void wsnt__UnacceptableTerminationTimeFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->wsnt__UnacceptableTerminationTimeFaultType::MinimumTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->wsnt__UnacceptableTerminationTimeFaultType::MinimumTime); - soap_serialize_PointerToxsd__dateTime(soap, &this->wsnt__UnacceptableTerminationTimeFaultType::MaximumTime); - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnacceptableTerminationTimeFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnacceptableTerminationTimeFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnacceptableTerminationTimeFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType), type ? type : "wsnt:UnacceptableTerminationTimeFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsnt:MinimumTime", -1, &a->wsnt__UnacceptableTerminationTimeFaultType::MinimumTime, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "wsnt:MaximumTime", -1, &a->wsnt__UnacceptableTerminationTimeFaultType::MaximumTime, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnacceptableTerminationTimeFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnacceptableTerminationTimeFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnacceptableTerminationTimeFaultType * SOAP_FMAC4 soap_in_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, const char *tag, wsnt__UnacceptableTerminationTimeFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnacceptableTerminationTimeFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType, sizeof(wsnt__UnacceptableTerminationTimeFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnacceptableTerminationTimeFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - size_t soap_flag_MinimumTime1 = 1; - size_t soap_flag_MaximumTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap_flag_MinimumTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsnt:MinimumTime", &a->wsnt__UnacceptableTerminationTimeFaultType::MinimumTime, "xsd:dateTime")) - { soap_flag_MinimumTime1--; - continue; - } - } - if (soap_flag_MaximumTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "wsnt:MaximumTime", &a->wsnt__UnacceptableTerminationTimeFaultType::MaximumTime, "xsd:dateTime")) - { soap_flag_MaximumTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0 || soap_flag_MinimumTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnacceptableTerminationTimeFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType, SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType, sizeof(wsnt__UnacceptableTerminationTimeFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnacceptableTerminationTimeFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnacceptableTerminationTimeFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnacceptableTerminationTimeFaultType *p; - size_t k = sizeof(wsnt__UnacceptableTerminationTimeFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnacceptableTerminationTimeFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnacceptableTerminationTimeFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnacceptableTerminationTimeFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnacceptableTerminationTimeFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnacceptableTerminationTimeFaultType(soap, tag ? tag : "wsnt:UnacceptableTerminationTimeFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnacceptableTerminationTimeFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnacceptableTerminationTimeFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnacceptableTerminationTimeFaultType * SOAP_FMAC4 soap_get_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableTerminationTimeFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnacceptableTerminationTimeFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnableToCreatePullPointFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__UnableToCreatePullPointFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnableToCreatePullPointFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnableToCreatePullPointFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnableToCreatePullPointFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType), type ? type : "wsnt:UnableToCreatePullPointFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnableToCreatePullPointFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnableToCreatePullPointFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnableToCreatePullPointFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, const char *tag, wsnt__UnableToCreatePullPointFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnableToCreatePullPointFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType, sizeof(wsnt__UnableToCreatePullPointFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnableToCreatePullPointFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnableToCreatePullPointFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType, SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType, sizeof(wsnt__UnableToCreatePullPointFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnableToCreatePullPointFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnableToCreatePullPointFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnableToCreatePullPointFaultType *p; - size_t k = sizeof(wsnt__UnableToCreatePullPointFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnableToCreatePullPointFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnableToCreatePullPointFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnableToCreatePullPointFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnableToCreatePullPointFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnableToCreatePullPointFaultType(soap, tag ? tag : "wsnt:UnableToCreatePullPointFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnableToCreatePullPointFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnableToCreatePullPointFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnableToCreatePullPointFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, wsnt__UnableToCreatePullPointFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnableToCreatePullPointFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnableToDestroyPullPointFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__UnableToDestroyPullPointFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnableToDestroyPullPointFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnableToDestroyPullPointFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnableToDestroyPullPointFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType), type ? type : "wsnt:UnableToDestroyPullPointFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnableToDestroyPullPointFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnableToDestroyPullPointFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnableToDestroyPullPointFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, const char *tag, wsnt__UnableToDestroyPullPointFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnableToDestroyPullPointFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType, sizeof(wsnt__UnableToDestroyPullPointFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnableToDestroyPullPointFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnableToDestroyPullPointFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType, SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType, sizeof(wsnt__UnableToDestroyPullPointFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnableToDestroyPullPointFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnableToDestroyPullPointFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnableToDestroyPullPointFaultType *p; - size_t k = sizeof(wsnt__UnableToDestroyPullPointFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnableToDestroyPullPointFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnableToDestroyPullPointFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnableToDestroyPullPointFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnableToDestroyPullPointFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnableToDestroyPullPointFaultType(soap, tag ? tag : "wsnt:UnableToDestroyPullPointFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnableToDestroyPullPointFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnableToDestroyPullPointFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnableToDestroyPullPointFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, wsnt__UnableToDestroyPullPointFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnableToDestroyPullPointFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnableToGetMessagesFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__UnableToGetMessagesFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnableToGetMessagesFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnableToGetMessagesFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToGetMessagesFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnableToGetMessagesFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnableToGetMessagesFaultType), type ? type : "wsnt:UnableToGetMessagesFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnableToGetMessagesFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnableToGetMessagesFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnableToGetMessagesFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToGetMessagesFaultType(struct soap *soap, const char *tag, wsnt__UnableToGetMessagesFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnableToGetMessagesFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnableToGetMessagesFaultType, sizeof(wsnt__UnableToGetMessagesFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnableToGetMessagesFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnableToGetMessagesFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnableToGetMessagesFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnableToGetMessagesFaultType, SOAP_TYPE_wsnt__UnableToGetMessagesFaultType, sizeof(wsnt__UnableToGetMessagesFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnableToGetMessagesFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToGetMessagesFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnableToGetMessagesFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnableToGetMessagesFaultType *p; - size_t k = sizeof(wsnt__UnableToGetMessagesFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnableToGetMessagesFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnableToGetMessagesFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnableToGetMessagesFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnableToGetMessagesFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnableToGetMessagesFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnableToGetMessagesFaultType(soap, tag ? tag : "wsnt:UnableToGetMessagesFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnableToGetMessagesFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnableToGetMessagesFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnableToGetMessagesFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToGetMessagesFaultType(struct soap *soap, wsnt__UnableToGetMessagesFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnableToGetMessagesFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__NoCurrentMessageOnTopicFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__NoCurrentMessageOnTopicFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__NoCurrentMessageOnTopicFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__NoCurrentMessageOnTopicFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, const char *tag, int id, const wsnt__NoCurrentMessageOnTopicFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType), type ? type : "wsnt:NoCurrentMessageOnTopicFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__NoCurrentMessageOnTopicFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__NoCurrentMessageOnTopicFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__NoCurrentMessageOnTopicFaultType * SOAP_FMAC4 soap_in_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, const char *tag, wsnt__NoCurrentMessageOnTopicFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__NoCurrentMessageOnTopicFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType, sizeof(wsnt__NoCurrentMessageOnTopicFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__NoCurrentMessageOnTopicFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__NoCurrentMessageOnTopicFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType, SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType, sizeof(wsnt__NoCurrentMessageOnTopicFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__NoCurrentMessageOnTopicFaultType * SOAP_FMAC2 soap_instantiate_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__NoCurrentMessageOnTopicFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__NoCurrentMessageOnTopicFaultType *p; - size_t k = sizeof(wsnt__NoCurrentMessageOnTopicFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__NoCurrentMessageOnTopicFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__NoCurrentMessageOnTopicFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__NoCurrentMessageOnTopicFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__NoCurrentMessageOnTopicFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__NoCurrentMessageOnTopicFaultType(soap, tag ? tag : "wsnt:NoCurrentMessageOnTopicFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__NoCurrentMessageOnTopicFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__NoCurrentMessageOnTopicFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__NoCurrentMessageOnTopicFaultType * SOAP_FMAC4 soap_get_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, wsnt__NoCurrentMessageOnTopicFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__NoCurrentMessageOnTopicFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnacceptableInitialTerminationTimeFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); - soap_default_xsd__dateTime(soap, &this->wsnt__UnacceptableInitialTerminationTimeFaultType::MinimumTime); - this->wsnt__UnacceptableInitialTerminationTimeFaultType::MaximumTime = NULL; -} - -void wsnt__UnacceptableInitialTerminationTimeFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->wsnt__UnacceptableInitialTerminationTimeFaultType::MinimumTime, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->wsnt__UnacceptableInitialTerminationTimeFaultType::MinimumTime); - soap_serialize_PointerToxsd__dateTime(soap, &this->wsnt__UnacceptableInitialTerminationTimeFaultType::MaximumTime); - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnacceptableInitialTerminationTimeFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnacceptableInitialTerminationTimeFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType), type ? type : "wsnt:UnacceptableInitialTerminationTimeFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsnt:MinimumTime", -1, &a->wsnt__UnacceptableInitialTerminationTimeFaultType::MinimumTime, "")) - return soap->error; - if (soap_out_PointerToxsd__dateTime(soap, "wsnt:MaximumTime", -1, &a->wsnt__UnacceptableInitialTerminationTimeFaultType::MaximumTime, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnacceptableInitialTerminationTimeFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnacceptableInitialTerminationTimeFaultType * SOAP_FMAC4 soap_in_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, const char *tag, wsnt__UnacceptableInitialTerminationTimeFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnacceptableInitialTerminationTimeFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType, sizeof(wsnt__UnacceptableInitialTerminationTimeFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnacceptableInitialTerminationTimeFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - size_t soap_flag_MinimumTime1 = 1; - size_t soap_flag_MaximumTime1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap_flag_MinimumTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsnt:MinimumTime", &a->wsnt__UnacceptableInitialTerminationTimeFaultType::MinimumTime, "xsd:dateTime")) - { soap_flag_MinimumTime1--; - continue; - } - } - if (soap_flag_MaximumTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__dateTime(soap, "wsnt:MaximumTime", &a->wsnt__UnacceptableInitialTerminationTimeFaultType::MaximumTime, "xsd:dateTime")) - { soap_flag_MaximumTime1--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0 || soap_flag_MinimumTime1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnacceptableInitialTerminationTimeFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType, SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType, sizeof(wsnt__UnacceptableInitialTerminationTimeFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnacceptableInitialTerminationTimeFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnacceptableInitialTerminationTimeFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnacceptableInitialTerminationTimeFaultType *p; - size_t k = sizeof(wsnt__UnacceptableInitialTerminationTimeFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnacceptableInitialTerminationTimeFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnacceptableInitialTerminationTimeFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnacceptableInitialTerminationTimeFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnacceptableInitialTerminationTimeFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag ? tag : "wsnt:UnacceptableInitialTerminationTimeFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnacceptableInitialTerminationTimeFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnacceptableInitialTerminationTimeFaultType * SOAP_FMAC4 soap_get_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableInitialTerminationTimeFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__NotifyMessageNotSupportedFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__NotifyMessageNotSupportedFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__NotifyMessageNotSupportedFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__NotifyMessageNotSupportedFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, const char *tag, int id, const wsnt__NotifyMessageNotSupportedFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType), type ? type : "wsnt:NotifyMessageNotSupportedFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__NotifyMessageNotSupportedFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__NotifyMessageNotSupportedFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__NotifyMessageNotSupportedFaultType * SOAP_FMAC4 soap_in_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, const char *tag, wsnt__NotifyMessageNotSupportedFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__NotifyMessageNotSupportedFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType, sizeof(wsnt__NotifyMessageNotSupportedFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__NotifyMessageNotSupportedFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__NotifyMessageNotSupportedFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType, SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType, sizeof(wsnt__NotifyMessageNotSupportedFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__NotifyMessageNotSupportedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__NotifyMessageNotSupportedFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__NotifyMessageNotSupportedFaultType *p; - size_t k = sizeof(wsnt__NotifyMessageNotSupportedFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__NotifyMessageNotSupportedFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__NotifyMessageNotSupportedFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__NotifyMessageNotSupportedFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__NotifyMessageNotSupportedFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__NotifyMessageNotSupportedFaultType(soap, tag ? tag : "wsnt:NotifyMessageNotSupportedFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__NotifyMessageNotSupportedFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__NotifyMessageNotSupportedFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__NotifyMessageNotSupportedFaultType * SOAP_FMAC4 soap_get_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, wsnt__NotifyMessageNotSupportedFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__NotifyMessageNotSupportedFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnsupportedPolicyRequestFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__QName(soap, &this->wsnt__UnsupportedPolicyRequestFaultType::UnsupportedPolicy); -} - -void wsnt__UnsupportedPolicyRequestFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__QName(soap, &this->wsnt__UnsupportedPolicyRequestFaultType::UnsupportedPolicy); - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnsupportedPolicyRequestFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnsupportedPolicyRequestFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnsupportedPolicyRequestFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType), type ? type : "wsnt:UnsupportedPolicyRequestFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__QName(soap, "wsnt:UnsupportedPolicy", -1, &a->wsnt__UnsupportedPolicyRequestFaultType::UnsupportedPolicy, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnsupportedPolicyRequestFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnsupportedPolicyRequestFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnsupportedPolicyRequestFaultType * SOAP_FMAC4 soap_in_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, const char *tag, wsnt__UnsupportedPolicyRequestFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnsupportedPolicyRequestFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType, sizeof(wsnt__UnsupportedPolicyRequestFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnsupportedPolicyRequestFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__QName(soap, "wsnt:UnsupportedPolicy", &a->wsnt__UnsupportedPolicyRequestFaultType::UnsupportedPolicy, "xsd:QName")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnsupportedPolicyRequestFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType, SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType, sizeof(wsnt__UnsupportedPolicyRequestFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnsupportedPolicyRequestFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnsupportedPolicyRequestFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnsupportedPolicyRequestFaultType *p; - size_t k = sizeof(wsnt__UnsupportedPolicyRequestFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnsupportedPolicyRequestFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnsupportedPolicyRequestFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnsupportedPolicyRequestFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnsupportedPolicyRequestFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnsupportedPolicyRequestFaultType(soap, tag ? tag : "wsnt:UnsupportedPolicyRequestFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnsupportedPolicyRequestFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnsupportedPolicyRequestFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnsupportedPolicyRequestFaultType * SOAP_FMAC4 soap_get_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, wsnt__UnsupportedPolicyRequestFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnsupportedPolicyRequestFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__UnrecognizedPolicyRequestFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__QName(soap, &this->wsnt__UnrecognizedPolicyRequestFaultType::UnrecognizedPolicy); -} - -void wsnt__UnrecognizedPolicyRequestFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__QName(soap, &this->wsnt__UnrecognizedPolicyRequestFaultType::UnrecognizedPolicy); - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__UnrecognizedPolicyRequestFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__UnrecognizedPolicyRequestFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, const char *tag, int id, const wsnt__UnrecognizedPolicyRequestFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType), type ? type : "wsnt:UnrecognizedPolicyRequestFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__QName(soap, "wsnt:UnrecognizedPolicy", -1, &a->wsnt__UnrecognizedPolicyRequestFaultType::UnrecognizedPolicy, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__UnrecognizedPolicyRequestFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__UnrecognizedPolicyRequestFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__UnrecognizedPolicyRequestFaultType * SOAP_FMAC4 soap_in_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, const char *tag, wsnt__UnrecognizedPolicyRequestFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__UnrecognizedPolicyRequestFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType, sizeof(wsnt__UnrecognizedPolicyRequestFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__UnrecognizedPolicyRequestFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__QName(soap, "wsnt:UnrecognizedPolicy", &a->wsnt__UnrecognizedPolicyRequestFaultType::UnrecognizedPolicy, "xsd:QName")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__UnrecognizedPolicyRequestFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType, SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType, sizeof(wsnt__UnrecognizedPolicyRequestFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__UnrecognizedPolicyRequestFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__UnrecognizedPolicyRequestFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__UnrecognizedPolicyRequestFaultType *p; - size_t k = sizeof(wsnt__UnrecognizedPolicyRequestFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__UnrecognizedPolicyRequestFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__UnrecognizedPolicyRequestFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__UnrecognizedPolicyRequestFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__UnrecognizedPolicyRequestFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__UnrecognizedPolicyRequestFaultType(soap, tag ? tag : "wsnt:UnrecognizedPolicyRequestFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__UnrecognizedPolicyRequestFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__UnrecognizedPolicyRequestFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__UnrecognizedPolicyRequestFaultType * SOAP_FMAC4 soap_get_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, wsnt__UnrecognizedPolicyRequestFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__UnrecognizedPolicyRequestFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__InvalidMessageContentExpressionFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__InvalidMessageContentExpressionFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__InvalidMessageContentExpressionFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__InvalidMessageContentExpressionFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, const char *tag, int id, const wsnt__InvalidMessageContentExpressionFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType), type ? type : "wsnt:InvalidMessageContentExpressionFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__InvalidMessageContentExpressionFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__InvalidMessageContentExpressionFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__InvalidMessageContentExpressionFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, const char *tag, wsnt__InvalidMessageContentExpressionFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__InvalidMessageContentExpressionFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType, sizeof(wsnt__InvalidMessageContentExpressionFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__InvalidMessageContentExpressionFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__InvalidMessageContentExpressionFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType, SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType, sizeof(wsnt__InvalidMessageContentExpressionFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__InvalidMessageContentExpressionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__InvalidMessageContentExpressionFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__InvalidMessageContentExpressionFaultType *p; - size_t k = sizeof(wsnt__InvalidMessageContentExpressionFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__InvalidMessageContentExpressionFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__InvalidMessageContentExpressionFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__InvalidMessageContentExpressionFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__InvalidMessageContentExpressionFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__InvalidMessageContentExpressionFaultType(soap, tag ? tag : "wsnt:InvalidMessageContentExpressionFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__InvalidMessageContentExpressionFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__InvalidMessageContentExpressionFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__InvalidMessageContentExpressionFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, wsnt__InvalidMessageContentExpressionFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__InvalidMessageContentExpressionFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__InvalidProducerPropertiesExpressionFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__InvalidProducerPropertiesExpressionFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__InvalidProducerPropertiesExpressionFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, const char *tag, int id, const wsnt__InvalidProducerPropertiesExpressionFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType), type ? type : "wsnt:InvalidProducerPropertiesExpressionFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__InvalidProducerPropertiesExpressionFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__InvalidProducerPropertiesExpressionFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, const char *tag, wsnt__InvalidProducerPropertiesExpressionFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__InvalidProducerPropertiesExpressionFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType, sizeof(wsnt__InvalidProducerPropertiesExpressionFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__InvalidProducerPropertiesExpressionFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__InvalidProducerPropertiesExpressionFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType, SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType, sizeof(wsnt__InvalidProducerPropertiesExpressionFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__InvalidProducerPropertiesExpressionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__InvalidProducerPropertiesExpressionFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__InvalidProducerPropertiesExpressionFaultType *p; - size_t k = sizeof(wsnt__InvalidProducerPropertiesExpressionFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__InvalidProducerPropertiesExpressionFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__InvalidProducerPropertiesExpressionFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__InvalidProducerPropertiesExpressionFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__InvalidProducerPropertiesExpressionFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag ? tag : "wsnt:InvalidProducerPropertiesExpressionFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__InvalidProducerPropertiesExpressionFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__InvalidProducerPropertiesExpressionFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, wsnt__InvalidProducerPropertiesExpressionFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__MultipleTopicsSpecifiedFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__MultipleTopicsSpecifiedFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__MultipleTopicsSpecifiedFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__MultipleTopicsSpecifiedFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, const char *tag, int id, const wsnt__MultipleTopicsSpecifiedFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType), type ? type : "wsnt:MultipleTopicsSpecifiedFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__MultipleTopicsSpecifiedFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__MultipleTopicsSpecifiedFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__MultipleTopicsSpecifiedFaultType * SOAP_FMAC4 soap_in_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, const char *tag, wsnt__MultipleTopicsSpecifiedFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__MultipleTopicsSpecifiedFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType, sizeof(wsnt__MultipleTopicsSpecifiedFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__MultipleTopicsSpecifiedFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__MultipleTopicsSpecifiedFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType, SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType, sizeof(wsnt__MultipleTopicsSpecifiedFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__MultipleTopicsSpecifiedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__MultipleTopicsSpecifiedFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__MultipleTopicsSpecifiedFaultType *p; - size_t k = sizeof(wsnt__MultipleTopicsSpecifiedFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__MultipleTopicsSpecifiedFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__MultipleTopicsSpecifiedFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__MultipleTopicsSpecifiedFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__MultipleTopicsSpecifiedFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__MultipleTopicsSpecifiedFaultType(soap, tag ? tag : "wsnt:MultipleTopicsSpecifiedFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__MultipleTopicsSpecifiedFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__MultipleTopicsSpecifiedFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__MultipleTopicsSpecifiedFaultType * SOAP_FMAC4 soap_get_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, wsnt__MultipleTopicsSpecifiedFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__MultipleTopicsSpecifiedFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__TopicNotSupportedFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__TopicNotSupportedFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__TopicNotSupportedFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__TopicNotSupportedFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__TopicNotSupportedFaultType(struct soap *soap, const char *tag, int id, const wsnt__TopicNotSupportedFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__TopicNotSupportedFaultType), type ? type : "wsnt:TopicNotSupportedFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__TopicNotSupportedFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__TopicNotSupportedFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__TopicNotSupportedFaultType * SOAP_FMAC4 soap_in_wsnt__TopicNotSupportedFaultType(struct soap *soap, const char *tag, wsnt__TopicNotSupportedFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__TopicNotSupportedFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__TopicNotSupportedFaultType, sizeof(wsnt__TopicNotSupportedFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__TopicNotSupportedFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__TopicNotSupportedFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__TopicNotSupportedFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__TopicNotSupportedFaultType, SOAP_TYPE_wsnt__TopicNotSupportedFaultType, sizeof(wsnt__TopicNotSupportedFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__TopicNotSupportedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__TopicNotSupportedFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__TopicNotSupportedFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__TopicNotSupportedFaultType *p; - size_t k = sizeof(wsnt__TopicNotSupportedFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__TopicNotSupportedFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__TopicNotSupportedFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__TopicNotSupportedFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__TopicNotSupportedFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__TopicNotSupportedFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__TopicNotSupportedFaultType(soap, tag ? tag : "wsnt:TopicNotSupportedFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__TopicNotSupportedFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__TopicNotSupportedFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__TopicNotSupportedFaultType * SOAP_FMAC4 soap_get_wsnt__TopicNotSupportedFaultType(struct soap *soap, wsnt__TopicNotSupportedFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__TopicNotSupportedFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__InvalidTopicExpressionFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__InvalidTopicExpressionFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__InvalidTopicExpressionFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__InvalidTopicExpressionFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, const char *tag, int id, const wsnt__InvalidTopicExpressionFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType), type ? type : "wsnt:InvalidTopicExpressionFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__InvalidTopicExpressionFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__InvalidTopicExpressionFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__InvalidTopicExpressionFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, const char *tag, wsnt__InvalidTopicExpressionFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__InvalidTopicExpressionFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType, sizeof(wsnt__InvalidTopicExpressionFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__InvalidTopicExpressionFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__InvalidTopicExpressionFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType, SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType, sizeof(wsnt__InvalidTopicExpressionFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__InvalidTopicExpressionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__InvalidTopicExpressionFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__InvalidTopicExpressionFaultType *p; - size_t k = sizeof(wsnt__InvalidTopicExpressionFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__InvalidTopicExpressionFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__InvalidTopicExpressionFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__InvalidTopicExpressionFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__InvalidTopicExpressionFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__InvalidTopicExpressionFaultType(soap, tag ? tag : "wsnt:InvalidTopicExpressionFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__InvalidTopicExpressionFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__InvalidTopicExpressionFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__InvalidTopicExpressionFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, wsnt__InvalidTopicExpressionFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__InvalidTopicExpressionFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__TopicExpressionDialectUnknownFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__TopicExpressionDialectUnknownFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__TopicExpressionDialectUnknownFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__TopicExpressionDialectUnknownFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, const char *tag, int id, const wsnt__TopicExpressionDialectUnknownFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType), type ? type : "wsnt:TopicExpressionDialectUnknownFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__TopicExpressionDialectUnknownFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__TopicExpressionDialectUnknownFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__TopicExpressionDialectUnknownFaultType * SOAP_FMAC4 soap_in_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, const char *tag, wsnt__TopicExpressionDialectUnknownFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__TopicExpressionDialectUnknownFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType, sizeof(wsnt__TopicExpressionDialectUnknownFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__TopicExpressionDialectUnknownFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__TopicExpressionDialectUnknownFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType, SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType, sizeof(wsnt__TopicExpressionDialectUnknownFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__TopicExpressionDialectUnknownFaultType * SOAP_FMAC2 soap_instantiate_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__TopicExpressionDialectUnknownFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__TopicExpressionDialectUnknownFaultType *p; - size_t k = sizeof(wsnt__TopicExpressionDialectUnknownFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__TopicExpressionDialectUnknownFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__TopicExpressionDialectUnknownFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__TopicExpressionDialectUnknownFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__TopicExpressionDialectUnknownFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__TopicExpressionDialectUnknownFaultType(soap, tag ? tag : "wsnt:TopicExpressionDialectUnknownFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__TopicExpressionDialectUnknownFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__TopicExpressionDialectUnknownFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__TopicExpressionDialectUnknownFaultType * SOAP_FMAC4 soap_get_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, wsnt__TopicExpressionDialectUnknownFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__TopicExpressionDialectUnknownFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__InvalidFilterFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); - soap_default_std__vectorTemplateOfxsd__QName(soap, &this->wsnt__InvalidFilterFaultType::UnknownFilter); -} - -void wsnt__InvalidFilterFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__QName(soap, &this->wsnt__InvalidFilterFaultType::UnknownFilter); - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__InvalidFilterFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__InvalidFilterFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidFilterFaultType(struct soap *soap, const char *tag, int id, const wsnt__InvalidFilterFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__InvalidFilterFaultType), type ? type : "wsnt:InvalidFilterFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__QName(soap, "wsnt:UnknownFilter", -1, &a->wsnt__InvalidFilterFaultType::UnknownFilter, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__InvalidFilterFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__InvalidFilterFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__InvalidFilterFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidFilterFaultType(struct soap *soap, const char *tag, wsnt__InvalidFilterFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__InvalidFilterFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__InvalidFilterFaultType, sizeof(wsnt__InvalidFilterFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__InvalidFilterFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__InvalidFilterFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__QName(soap, "wsnt:UnknownFilter", &a->wsnt__InvalidFilterFaultType::UnknownFilter, "xsd:QName")) - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0 || a->wsnt__InvalidFilterFaultType::UnknownFilter.size() < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__InvalidFilterFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__InvalidFilterFaultType, SOAP_TYPE_wsnt__InvalidFilterFaultType, sizeof(wsnt__InvalidFilterFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__InvalidFilterFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidFilterFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__InvalidFilterFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__InvalidFilterFaultType *p; - size_t k = sizeof(wsnt__InvalidFilterFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__InvalidFilterFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__InvalidFilterFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__InvalidFilterFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__InvalidFilterFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__InvalidFilterFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__InvalidFilterFaultType(soap, tag ? tag : "wsnt:InvalidFilterFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__InvalidFilterFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__InvalidFilterFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__InvalidFilterFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidFilterFaultType(struct soap *soap, wsnt__InvalidFilterFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__InvalidFilterFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__SubscribeCreationFailedFaultType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsrfbf__BaseFaultType::soap_default(soap); -} - -void wsnt__SubscribeCreationFailedFaultType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->wsrfbf__BaseFaultType::soap_serialize(soap); -#endif -} - -int wsnt__SubscribeCreationFailedFaultType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__SubscribeCreationFailedFaultType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, const char *tag, int id, const wsnt__SubscribeCreationFailedFaultType *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType), type ? type : "wsnt:SubscribeCreationFailedFaultType")) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsrfbf__BaseFaultType::__any, "")) - return soap->error; - if (soap_out_xsd__dateTime(soap, "wsrfbf:Timestamp", -1, &a->wsrfbf__BaseFaultType::Timestamp, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", -1, &a->wsrfbf__BaseFaultType::Originator, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", -1, &a->wsrfbf__BaseFaultType::ErrorCode, "")) - return soap->error; - if (soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", -1, &a->wsrfbf__BaseFaultType::Description, "")) - return soap->error; - if (soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", -1, &a->wsrfbf__BaseFaultType::FaultCause, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__SubscribeCreationFailedFaultType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__SubscribeCreationFailedFaultType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__SubscribeCreationFailedFaultType * SOAP_FMAC4 soap_in_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, const char *tag, wsnt__SubscribeCreationFailedFaultType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__SubscribeCreationFailedFaultType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType, sizeof(wsnt__SubscribeCreationFailedFaultType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__SubscribeCreationFailedFaultType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsrfbf__BaseFaultType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_Timestamp2 = 1; - size_t soap_flag_Originator2 = 1; - size_t soap_flag_ErrorCode2 = 1; - size_t soap_flag_FaultCause2 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Timestamp2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__dateTime(soap, "wsrfbf:Timestamp", &a->wsrfbf__BaseFaultType::Timestamp, "xsd:dateTime")) - { soap_flag_Timestamp2--; - continue; - } - } - if (soap_flag_Originator2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsrfbf:Originator", &a->wsrfbf__BaseFaultType::Originator, "wsa5:EndpointReferenceType")) - { soap_flag_Originator2--; - continue; - } - } - if (soap_flag_ErrorCode2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(soap, "wsrfbf:ErrorCode", &a->wsrfbf__BaseFaultType::ErrorCode, "")) - { soap_flag_ErrorCode2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, "wsrfbf:Description", &a->wsrfbf__BaseFaultType::Description, "")) - continue; - } - if (soap_flag_FaultCause2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(soap, "wsrfbf:FaultCause", &a->wsrfbf__BaseFaultType::FaultCause, "")) - { soap_flag_FaultCause2--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsrfbf__BaseFaultType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Timestamp2 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__SubscribeCreationFailedFaultType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType, SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType, sizeof(wsnt__SubscribeCreationFailedFaultType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__SubscribeCreationFailedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__SubscribeCreationFailedFaultType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__SubscribeCreationFailedFaultType *p; - size_t k = sizeof(wsnt__SubscribeCreationFailedFaultType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__SubscribeCreationFailedFaultType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__SubscribeCreationFailedFaultType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__SubscribeCreationFailedFaultType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__SubscribeCreationFailedFaultType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__SubscribeCreationFailedFaultType(soap, tag ? tag : "wsnt:SubscribeCreationFailedFaultType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__SubscribeCreationFailedFaultType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__SubscribeCreationFailedFaultType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__SubscribeCreationFailedFaultType * SOAP_FMAC4 soap_get_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, wsnt__SubscribeCreationFailedFaultType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__SubscribeCreationFailedFaultType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__NotificationMessageHolderType::soap_default(struct soap *soap) -{ - this->soap = soap; - this->wsnt__NotificationMessageHolderType::SubscriptionReference = NULL; - this->wsnt__NotificationMessageHolderType::Topic = NULL; - this->wsnt__NotificationMessageHolderType::ProducerReference = NULL; - this->wsnt__NotificationMessageHolderType::Message._wsnt__NotificationMessageHolderType_Message::soap_default(soap); -} - -void wsnt__NotificationMessageHolderType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsa5__EndpointReferenceType(soap, &this->wsnt__NotificationMessageHolderType::SubscriptionReference); - soap_serialize_PointerTowsnt__TopicExpressionType(soap, &this->wsnt__NotificationMessageHolderType::Topic); - soap_serialize_PointerTowsa5__EndpointReferenceType(soap, &this->wsnt__NotificationMessageHolderType::ProducerReference); - this->wsnt__NotificationMessageHolderType::Message.soap_serialize(soap); -#endif -} - -int wsnt__NotificationMessageHolderType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__NotificationMessageHolderType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__NotificationMessageHolderType(struct soap *soap, const char *tag, int id, const wsnt__NotificationMessageHolderType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__NotificationMessageHolderType), type)) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsnt:SubscriptionReference", -1, &a->wsnt__NotificationMessageHolderType::SubscriptionReference, "")) - return soap->error; - if (soap_out_PointerTowsnt__TopicExpressionType(soap, "wsnt:Topic", -1, &a->wsnt__NotificationMessageHolderType::Topic, "")) - return soap->error; - if (soap_out_PointerTowsa5__EndpointReferenceType(soap, "wsnt:ProducerReference", -1, &a->wsnt__NotificationMessageHolderType::ProducerReference, "")) - return soap->error; - if ((a->wsnt__NotificationMessageHolderType::Message).soap_out(soap, "wsnt:Message", -1, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__NotificationMessageHolderType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__NotificationMessageHolderType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__NotificationMessageHolderType * SOAP_FMAC4 soap_in_wsnt__NotificationMessageHolderType(struct soap *soap, const char *tag, wsnt__NotificationMessageHolderType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__NotificationMessageHolderType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__NotificationMessageHolderType, sizeof(wsnt__NotificationMessageHolderType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__NotificationMessageHolderType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__NotificationMessageHolderType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_SubscriptionReference1 = 1; - size_t soap_flag_Topic1 = 1; - size_t soap_flag_ProducerReference1 = 1; - size_t soap_flag_Message1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SubscriptionReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsnt:SubscriptionReference", &a->wsnt__NotificationMessageHolderType::SubscriptionReference, "wsa5:EndpointReferenceType")) - { soap_flag_SubscriptionReference1--; - continue; - } - } - if (soap_flag_Topic1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__TopicExpressionType(soap, "wsnt:Topic", &a->wsnt__NotificationMessageHolderType::Topic, "wsnt:TopicExpressionType")) - { soap_flag_Topic1--; - continue; - } - } - if (soap_flag_ProducerReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__EndpointReferenceType(soap, "wsnt:ProducerReference", &a->wsnt__NotificationMessageHolderType::ProducerReference, "wsa5:EndpointReferenceType")) - { soap_flag_ProducerReference1--; - continue; - } - } - if (soap_flag_Message1 && soap->error == SOAP_TAG_MISMATCH) - { if ((a->wsnt__NotificationMessageHolderType::Message).soap_in(soap, "wsnt:Message", "")) - { soap_flag_Message1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_Message1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (wsnt__NotificationMessageHolderType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__NotificationMessageHolderType, SOAP_TYPE_wsnt__NotificationMessageHolderType, sizeof(wsnt__NotificationMessageHolderType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__NotificationMessageHolderType * SOAP_FMAC2 soap_instantiate_wsnt__NotificationMessageHolderType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__NotificationMessageHolderType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__NotificationMessageHolderType *p; - size_t k = sizeof(wsnt__NotificationMessageHolderType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__NotificationMessageHolderType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__NotificationMessageHolderType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__NotificationMessageHolderType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__NotificationMessageHolderType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__NotificationMessageHolderType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__NotificationMessageHolderType(soap, tag ? tag : "wsnt:NotificationMessageHolderType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__NotificationMessageHolderType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__NotificationMessageHolderType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__NotificationMessageHolderType * SOAP_FMAC4 soap_get_wsnt__NotificationMessageHolderType(struct soap *soap, wsnt__NotificationMessageHolderType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__NotificationMessageHolderType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__SubscriptionPolicyType::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->wsnt__SubscriptionPolicyType::__any); -} - -void wsnt__SubscriptionPolicyType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->wsnt__SubscriptionPolicyType::__any); -#endif -} - -int wsnt__SubscriptionPolicyType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__SubscriptionPolicyType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__SubscriptionPolicyType(struct soap *soap, const char *tag, int id, const wsnt__SubscriptionPolicyType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__SubscriptionPolicyType), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsnt__SubscriptionPolicyType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__SubscriptionPolicyType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__SubscriptionPolicyType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__SubscriptionPolicyType * SOAP_FMAC4 soap_in_wsnt__SubscriptionPolicyType(struct soap *soap, const char *tag, wsnt__SubscriptionPolicyType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__SubscriptionPolicyType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__SubscriptionPolicyType, sizeof(wsnt__SubscriptionPolicyType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__SubscriptionPolicyType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__SubscriptionPolicyType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsnt__SubscriptionPolicyType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wsnt__SubscriptionPolicyType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__SubscriptionPolicyType, SOAP_TYPE_wsnt__SubscriptionPolicyType, sizeof(wsnt__SubscriptionPolicyType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__SubscriptionPolicyType * SOAP_FMAC2 soap_instantiate_wsnt__SubscriptionPolicyType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__SubscriptionPolicyType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__SubscriptionPolicyType *p; - size_t k = sizeof(wsnt__SubscriptionPolicyType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__SubscriptionPolicyType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__SubscriptionPolicyType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__SubscriptionPolicyType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__SubscriptionPolicyType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__SubscriptionPolicyType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__SubscriptionPolicyType(soap, tag ? tag : "wsnt:SubscriptionPolicyType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__SubscriptionPolicyType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__SubscriptionPolicyType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__SubscriptionPolicyType * SOAP_FMAC4 soap_get_wsnt__SubscriptionPolicyType(struct soap *soap, wsnt__SubscriptionPolicyType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__SubscriptionPolicyType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__FilterType::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__vectorTemplateOfxsd__anyType(soap, &this->wsnt__FilterType::__any); -} - -void wsnt__FilterType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfxsd__anyType(soap, &this->wsnt__FilterType::__any); -#endif -} - -int wsnt__FilterType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__FilterType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__FilterType(struct soap *soap, const char *tag, int id, const wsnt__FilterType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__FilterType), type)) - return soap->error; - if (soap_out_std__vectorTemplateOfxsd__anyType(soap, "-any", -1, &a->wsnt__FilterType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__FilterType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__FilterType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__FilterType * SOAP_FMAC4 soap_in_wsnt__FilterType(struct soap *soap, const char *tag, wsnt__FilterType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__FilterType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__FilterType, sizeof(wsnt__FilterType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__FilterType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__FilterType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfxsd__anyType(soap, "-any", &a->wsnt__FilterType::__any, "xsd:anyType")) - continue; - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wsnt__FilterType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__FilterType, SOAP_TYPE_wsnt__FilterType, sizeof(wsnt__FilterType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__FilterType * SOAP_FMAC2 soap_instantiate_wsnt__FilterType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__FilterType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - if (soap && type && !soap_match_tag(soap, type, "tt:EventFilter")) - return soap_instantiate_tt__EventFilter(soap, n, NULL, NULL, size); - wsnt__FilterType *p; - size_t k = sizeof(wsnt__FilterType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__FilterType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__FilterType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__FilterType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__FilterType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__FilterType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__FilterType(soap, tag ? tag : "wsnt:FilterType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__FilterType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__FilterType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__FilterType * SOAP_FMAC4 soap_get_wsnt__FilterType(struct soap *soap, wsnt__FilterType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__FilterType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__TopicExpressionType::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyType(soap, &this->wsnt__TopicExpressionType::__any); - soap_default_xsd__anyURI(soap, &this->wsnt__TopicExpressionType::Dialect); - soap_default_xsd__anyAttribute(soap, &this->wsnt__TopicExpressionType::__anyAttribute); - soap_default_xsd__anyType(soap, &this->wsnt__TopicExpressionType::__mixed); -} - -void wsnt__TopicExpressionType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->wsnt__TopicExpressionType::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->wsnt__TopicExpressionType::__any); - soap_embedded(soap, &this->wsnt__TopicExpressionType::__mixed, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->wsnt__TopicExpressionType::__mixed); -#endif -} - -int wsnt__TopicExpressionType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__TopicExpressionType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__TopicExpressionType(struct soap *soap, const char *tag, int id, const wsnt__TopicExpressionType *a, const char *type) -{ - soap_set_attr(soap, "Dialect", soap_xsd__anyURI2s(soap, ((wsnt__TopicExpressionType*)a)->Dialect), 1); - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &((wsnt__TopicExpressionType*)a)->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__TopicExpressionType), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->wsnt__TopicExpressionType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, "-mixed", -1, &a->wsnt__TopicExpressionType::__mixed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__TopicExpressionType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__TopicExpressionType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__TopicExpressionType * SOAP_FMAC4 soap_in_wsnt__TopicExpressionType(struct soap *soap, const char *tag, wsnt__TopicExpressionType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__TopicExpressionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__TopicExpressionType, sizeof(wsnt__TopicExpressionType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__TopicExpressionType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__TopicExpressionType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__anyURI(soap, soap_attr_value(soap, "Dialect", 4, 1), &((wsnt__TopicExpressionType*)a)->Dialect)) - return NULL; - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &((wsnt__TopicExpressionType*)a)->__anyAttribute, "xsd:anyAttribute"); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag___any1 = 1; - size_t soap_flag___mixed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->wsnt__TopicExpressionType::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap_flag___mixed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-mixed", &a->wsnt__TopicExpressionType::__mixed, "xsd:anyType")) - { soap_flag___mixed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wsnt__TopicExpressionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__TopicExpressionType, SOAP_TYPE_wsnt__TopicExpressionType, sizeof(wsnt__TopicExpressionType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__TopicExpressionType * SOAP_FMAC2 soap_instantiate_wsnt__TopicExpressionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__TopicExpressionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__TopicExpressionType *p; - size_t k = sizeof(wsnt__TopicExpressionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__TopicExpressionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__TopicExpressionType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__TopicExpressionType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__TopicExpressionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__TopicExpressionType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__TopicExpressionType(soap, tag ? tag : "wsnt:TopicExpressionType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__TopicExpressionType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__TopicExpressionType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__TopicExpressionType * SOAP_FMAC4 soap_get_wsnt__TopicExpressionType(struct soap *soap, wsnt__TopicExpressionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__TopicExpressionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsnt__QueryExpressionType::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyType(soap, &this->wsnt__QueryExpressionType::__any); - soap_default_xsd__anyURI(soap, &this->wsnt__QueryExpressionType::Dialect); - soap_default_xsd__anyType(soap, &this->wsnt__QueryExpressionType::__mixed); -} - -void wsnt__QueryExpressionType::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->wsnt__QueryExpressionType::__any, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->wsnt__QueryExpressionType::__any); - soap_embedded(soap, &this->wsnt__QueryExpressionType::__mixed, SOAP_TYPE_xsd__anyType); - soap_serialize_xsd__anyType(soap, &this->wsnt__QueryExpressionType::__mixed); -#endif -} - -int wsnt__QueryExpressionType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsnt__QueryExpressionType(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__QueryExpressionType(struct soap *soap, const char *tag, int id, const wsnt__QueryExpressionType *a, const char *type) -{ - soap_set_attr(soap, "Dialect", soap_xsd__anyURI2s(soap, ((wsnt__QueryExpressionType*)a)->Dialect), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsnt__QueryExpressionType), type)) - return soap->error; - if (soap_out_xsd__anyType(soap, "-any", -1, &a->wsnt__QueryExpressionType::__any, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, "-mixed", -1, &a->wsnt__QueryExpressionType::__mixed, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *wsnt__QueryExpressionType::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsnt__QueryExpressionType(soap, tag, this, type); -} - -SOAP_FMAC3 wsnt__QueryExpressionType * SOAP_FMAC4 soap_in_wsnt__QueryExpressionType(struct soap *soap, const char *tag, wsnt__QueryExpressionType *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (wsnt__QueryExpressionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsnt__QueryExpressionType, sizeof(wsnt__QueryExpressionType), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsnt__QueryExpressionType) - { soap_revert(soap); - *soap->id = '\0'; - return (wsnt__QueryExpressionType *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - if (soap_s2xsd__anyURI(soap, soap_attr_value(soap, "Dialect", 4, 1), &((wsnt__QueryExpressionType*)a)->Dialect)) - return NULL; - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag___any1 = 1; - size_t soap_flag___mixed1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___any1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-any", &a->wsnt__QueryExpressionType::__any, "xsd:anyType")) - { soap_flag___any1--; - continue; - } - } - if (soap_flag___mixed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__anyType(soap, "-mixed", &a->wsnt__QueryExpressionType::__mixed, "xsd:anyType")) - { soap_flag___mixed1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (wsnt__QueryExpressionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsnt__QueryExpressionType, SOAP_TYPE_wsnt__QueryExpressionType, sizeof(wsnt__QueryExpressionType), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 wsnt__QueryExpressionType * SOAP_FMAC2 soap_instantiate_wsnt__QueryExpressionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsnt__QueryExpressionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsnt__QueryExpressionType *p; - size_t k = sizeof(wsnt__QueryExpressionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsnt__QueryExpressionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsnt__QueryExpressionType); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsnt__QueryExpressionType, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsnt__QueryExpressionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsnt__QueryExpressionType::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsnt__QueryExpressionType(soap, tag ? tag : "wsnt:QueryExpressionType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsnt__QueryExpressionType::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsnt__QueryExpressionType(soap, this, tag, type); -} - -SOAP_FMAC3 wsnt__QueryExpressionType * SOAP_FMAC4 soap_get_wsnt__QueryExpressionType(struct soap *soap, wsnt__QueryExpressionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsnt__QueryExpressionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__xml__lang(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out__xml__lang(soap, tag ? tag : "xml:lang", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__xmime__contentType(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out__xmime__contentType(soap, tag ? tag : "xmime:contentType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -void xsd__token__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__token(soap, &this->xsd__token__::__item); -} - -void xsd__token__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__token__::__item, SOAP_TYPE_xsd__token); - soap_serialize_xsd__token(soap, &this->xsd__token__::__item); -#endif -} - -int xsd__token__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__token__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__token__(struct soap *soap, const char *tag, int id, const xsd__token__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__token(soap, tag, id, &a->xsd__token__::__item, ""); -} - -void *xsd__token__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__token__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__token__ * SOAP_FMAC4 soap_in_xsd__token__(struct soap *soap, const char *tag, xsd__token__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__token__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__token__, sizeof(xsd__token__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__token__) - return (xsd__token__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__token(soap, tag, &a->xsd__token__::__item, "xsd:token")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__token__ * SOAP_FMAC2 soap_instantiate_xsd__token__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__token__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__token__ *p; - size_t k = sizeof(xsd__token__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__token__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__token__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__token__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__token__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__token__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__token__(soap, tag ? tag : "xsd:token", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__token__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__token__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__token__ * SOAP_FMAC4 soap_get_xsd__token__(struct soap *soap, xsd__token__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__token__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__token(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__token(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__token), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__token(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__token, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 5, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__token, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__token, SOAP_TYPE_xsd__token, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__token(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__token(soap, tag ? tag : "xsd:token", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__token(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__token(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__string_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_std__string(soap, &this->xsd__string_::__item); -} - -void xsd__string_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__string_::__item, SOAP_TYPE_std__string); - soap_serialize_std__string(soap, &this->xsd__string_::__item); -#endif -} - -int xsd__string_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__string_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__string_(struct soap *soap, const char *tag, int id, const xsd__string_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_std__string(soap, tag, id, &a->xsd__string_::__item, ""); -} - -void *xsd__string_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__string_(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__string_ * SOAP_FMAC4 soap_in_xsd__string_(struct soap *soap, const char *tag, xsd__string_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__string_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__string_, sizeof(xsd__string_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__string_) - return (xsd__string_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_std__string(soap, tag, &a->xsd__string_::__item, "xsd:string")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__string_ * SOAP_FMAC2 soap_instantiate_xsd__string_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__string_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__string_ *p; - size_t k = sizeof(xsd__string_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__string_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__string_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__string_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__string_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__string_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__string_(soap, tag ? tag : "xsd:string", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__string_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__string_(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__string_ * SOAP_FMAC4 soap_get_xsd__string_(struct soap *soap, xsd__string_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__string_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__nonNegativeInteger__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__nonNegativeInteger(soap, &this->xsd__nonNegativeInteger__::__item); -} - -void xsd__nonNegativeInteger__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__nonNegativeInteger__::__item, SOAP_TYPE_xsd__nonNegativeInteger); - soap_serialize_xsd__nonNegativeInteger(soap, &this->xsd__nonNegativeInteger__::__item); -#endif -} - -int xsd__nonNegativeInteger__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__nonNegativeInteger__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__nonNegativeInteger__(struct soap *soap, const char *tag, int id, const xsd__nonNegativeInteger__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__nonNegativeInteger(soap, tag, id, &a->xsd__nonNegativeInteger__::__item, ""); -} - -void *xsd__nonNegativeInteger__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__nonNegativeInteger__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__nonNegativeInteger__ * SOAP_FMAC4 soap_in_xsd__nonNegativeInteger__(struct soap *soap, const char *tag, xsd__nonNegativeInteger__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__nonNegativeInteger__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__nonNegativeInteger__, sizeof(xsd__nonNegativeInteger__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__nonNegativeInteger__) - return (xsd__nonNegativeInteger__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__nonNegativeInteger(soap, tag, &a->xsd__nonNegativeInteger__::__item, "xsd:nonNegativeInteger")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__nonNegativeInteger__ * SOAP_FMAC2 soap_instantiate_xsd__nonNegativeInteger__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__nonNegativeInteger__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__nonNegativeInteger__ *p; - size_t k = sizeof(xsd__nonNegativeInteger__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__nonNegativeInteger__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__nonNegativeInteger__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__nonNegativeInteger__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__nonNegativeInteger__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__nonNegativeInteger__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__nonNegativeInteger__(soap, tag ? tag : "xsd:nonNegativeInteger", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__nonNegativeInteger__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__nonNegativeInteger__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__nonNegativeInteger__ * SOAP_FMAC4 soap_get_xsd__nonNegativeInteger__(struct soap *soap, xsd__nonNegativeInteger__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__nonNegativeInteger__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__nonNegativeInteger(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__nonNegativeInteger(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__nonNegativeInteger), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__nonNegativeInteger(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__nonNegativeInteger, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 5, 0, -1, "\\+?\\d+"))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__nonNegativeInteger, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__nonNegativeInteger, SOAP_TYPE_xsd__nonNegativeInteger, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__nonNegativeInteger(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__nonNegativeInteger(soap, tag ? tag : "xsd:nonNegativeInteger", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__nonNegativeInteger(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__nonNegativeInteger(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__integer__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__integer(soap, &this->xsd__integer__::__item); -} - -void xsd__integer__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__integer__::__item, SOAP_TYPE_xsd__integer); - soap_serialize_xsd__integer(soap, &this->xsd__integer__::__item); -#endif -} - -int xsd__integer__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__integer__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__integer__(struct soap *soap, const char *tag, int id, const xsd__integer__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__integer(soap, tag, id, &a->xsd__integer__::__item, ""); -} - -void *xsd__integer__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__integer__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__integer__ * SOAP_FMAC4 soap_in_xsd__integer__(struct soap *soap, const char *tag, xsd__integer__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__integer__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__integer__, sizeof(xsd__integer__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__integer__) - return (xsd__integer__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__integer(soap, tag, &a->xsd__integer__::__item, "xsd:integer")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__integer__ * SOAP_FMAC2 soap_instantiate_xsd__integer__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__integer__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__integer__ *p; - size_t k = sizeof(xsd__integer__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__integer__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__integer__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__integer__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__integer__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__integer__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__integer__(soap, tag ? tag : "xsd:integer", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__integer__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__integer__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__integer__ * SOAP_FMAC4 soap_get_xsd__integer__(struct soap *soap, xsd__integer__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__integer__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__integer(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__integer(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__integer), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__integer(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__integer, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 5, 0, -1, "[-+]?\\d+"))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__integer, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__integer, SOAP_TYPE_xsd__integer, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__integer(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__integer(soap, tag ? tag : "xsd:integer", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__integer(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__integer(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__int_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_int(soap, &this->xsd__int_::__item); -} - -void xsd__int_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__int_::__item, SOAP_TYPE_int); -#endif -} - -int xsd__int_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__int_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__int_(struct soap *soap, const char *tag, int id, const xsd__int_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_int(soap, tag, id, &a->xsd__int_::__item, ""); -} - -void *xsd__int_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__int_(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__int_ * SOAP_FMAC4 soap_in_xsd__int_(struct soap *soap, const char *tag, xsd__int_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__int_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__int_, sizeof(xsd__int_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__int_) - return (xsd__int_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_int(soap, tag, &a->xsd__int_::__item, "xsd:int")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__int_ * SOAP_FMAC2 soap_instantiate_xsd__int_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__int_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__int_ *p; - size_t k = sizeof(xsd__int_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__int_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__int_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__int_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__int_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__int_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__int_(soap, tag ? tag : "xsd:int", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__int_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__int_(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__int_ * SOAP_FMAC4 soap_get_xsd__int_(struct soap *soap, xsd__int_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__int_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__hexBinary__::soap_default(struct soap *soap) -{ - this->soap = soap; - this->xsd__hexBinary__::__item.xsd__hexBinary::soap_default(soap); -} - -void xsd__hexBinary__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - this->xsd__hexBinary__::__item.soap_serialize(soap); -#endif -} - -int xsd__hexBinary__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__hexBinary__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__hexBinary__(struct soap *soap, const char *tag, int id, const xsd__hexBinary__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return (a->xsd__hexBinary__::__item).soap_out(soap, tag, id, ""); -} - -void *xsd__hexBinary__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__hexBinary__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__hexBinary__ * SOAP_FMAC4 soap_in_xsd__hexBinary__(struct soap *soap, const char *tag, xsd__hexBinary__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__hexBinary__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__hexBinary__, sizeof(xsd__hexBinary__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__hexBinary__) - return (xsd__hexBinary__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!(a->xsd__hexBinary__::__item).soap_in(soap, tag, "xsd:hexBinary")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__hexBinary__ * SOAP_FMAC2 soap_instantiate_xsd__hexBinary__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__hexBinary__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__hexBinary__ *p; - size_t k = sizeof(xsd__hexBinary__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__hexBinary__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__hexBinary__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__hexBinary__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__hexBinary__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__hexBinary__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__hexBinary__(soap, tag ? tag : "xsd:hexBinary", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__hexBinary__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__hexBinary__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__hexBinary__ * SOAP_FMAC4 soap_get_xsd__hexBinary__(struct soap *soap, xsd__hexBinary__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__hexBinary__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__float_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_float(soap, &this->xsd__float_::__item); -} - -void xsd__float_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__float_::__item, SOAP_TYPE_float); -#endif -} - -int xsd__float_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__float_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__float_(struct soap *soap, const char *tag, int id, const xsd__float_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_float(soap, tag, id, &a->xsd__float_::__item, ""); -} - -void *xsd__float_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__float_(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__float_ * SOAP_FMAC4 soap_in_xsd__float_(struct soap *soap, const char *tag, xsd__float_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__float_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__float_, sizeof(xsd__float_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__float_) - return (xsd__float_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_float(soap, tag, &a->xsd__float_::__item, "xsd:float")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__float_ * SOAP_FMAC2 soap_instantiate_xsd__float_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__float_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__float_ *p; - size_t k = sizeof(xsd__float_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__float_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__float_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__float_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__float_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__float_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__float_(soap, tag ? tag : "xsd:float", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__float_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__float_(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__float_ * SOAP_FMAC4 soap_get_xsd__float_(struct soap *soap, xsd__float_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__float_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__duration__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__duration(soap, &this->xsd__duration__::__item); -} - -void xsd__duration__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__duration__::__item, SOAP_TYPE_xsd__duration); - soap_serialize_xsd__duration(soap, &this->xsd__duration__::__item); -#endif -} - -int xsd__duration__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__duration__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__duration__(struct soap *soap, const char *tag, int id, const xsd__duration__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__duration(soap, tag, id, &a->xsd__duration__::__item, ""); -} - -void *xsd__duration__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__duration__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__duration__ * SOAP_FMAC4 soap_in_xsd__duration__(struct soap *soap, const char *tag, xsd__duration__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__duration__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__duration__, sizeof(xsd__duration__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__duration__) - return (xsd__duration__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__duration(soap, tag, &a->xsd__duration__::__item, "xsd:duration")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__duration__ * SOAP_FMAC2 soap_instantiate_xsd__duration__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__duration__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__duration__ *p; - size_t k = sizeof(xsd__duration__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__duration__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__duration__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__duration__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__duration__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__duration__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__duration__(soap, tag ? tag : "xsd:duration", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__duration__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__duration__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__duration__ * SOAP_FMAC4 soap_get_xsd__duration__(struct soap *soap, xsd__duration__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__duration__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__duration(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__duration(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__duration), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__duration(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__duration, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 5, 0, -1, "[-+]?P(\\d+Y)?(\\d+M)?(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(\\.\\d*)?S)?)?"))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__duration, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__duration, SOAP_TYPE_xsd__duration, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__duration(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__duration(soap, tag ? tag : "xsd:duration", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__duration(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__duration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__double_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_double(soap, &this->xsd__double_::__item); -} - -void xsd__double_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__double_::__item, SOAP_TYPE_double); -#endif -} - -int xsd__double_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__double_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__double_(struct soap *soap, const char *tag, int id, const xsd__double_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_double(soap, tag, id, &a->xsd__double_::__item, ""); -} - -void *xsd__double_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__double_(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__double_ * SOAP_FMAC4 soap_in_xsd__double_(struct soap *soap, const char *tag, xsd__double_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__double_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__double_, sizeof(xsd__double_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__double_) - return (xsd__double_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_double(soap, tag, &a->xsd__double_::__item, "xsd:double")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__double_ * SOAP_FMAC2 soap_instantiate_xsd__double_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__double_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__double_ *p; - size_t k = sizeof(xsd__double_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__double_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__double_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__double_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__double_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__double_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__double_(soap, tag ? tag : "xsd:double", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__double_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__double_(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__double_ * SOAP_FMAC4 soap_get_xsd__double_(struct soap *soap, xsd__double_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__double_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__dateTime__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__dateTime(soap, &this->xsd__dateTime__::__item); -} - -void xsd__dateTime__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__dateTime__::__item, SOAP_TYPE_xsd__dateTime); - soap_serialize_xsd__dateTime(soap, &this->xsd__dateTime__::__item); -#endif -} - -int xsd__dateTime__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__dateTime__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__dateTime__(struct soap *soap, const char *tag, int id, const xsd__dateTime__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__dateTime(soap, tag, id, &a->xsd__dateTime__::__item, ""); -} - -void *xsd__dateTime__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__dateTime__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__dateTime__ * SOAP_FMAC4 soap_in_xsd__dateTime__(struct soap *soap, const char *tag, xsd__dateTime__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__dateTime__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__dateTime__, sizeof(xsd__dateTime__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__dateTime__) - return (xsd__dateTime__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__dateTime(soap, tag, &a->xsd__dateTime__::__item, "xsd:dateTime")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__dateTime__ * SOAP_FMAC2 soap_instantiate_xsd__dateTime__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__dateTime__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__dateTime__ *p; - size_t k = sizeof(xsd__dateTime__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__dateTime__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__dateTime__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__dateTime__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__dateTime__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__dateTime__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__dateTime__(soap, tag ? tag : "xsd:dateTime", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__dateTime__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__dateTime__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__dateTime__ * SOAP_FMAC4 soap_get_xsd__dateTime__(struct soap *soap, xsd__dateTime__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__dateTime__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__boolean_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_bool(soap, &this->xsd__boolean_::__item); -} - -void xsd__boolean_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__boolean_::__item, SOAP_TYPE_bool); -#endif -} - -int xsd__boolean_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__boolean_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__boolean_(struct soap *soap, const char *tag, int id, const xsd__boolean_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_bool(soap, tag, id, &a->xsd__boolean_::__item, ""); -} - -void *xsd__boolean_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__boolean_(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__boolean_ * SOAP_FMAC4 soap_in_xsd__boolean_(struct soap *soap, const char *tag, xsd__boolean_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__boolean_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__boolean_, sizeof(xsd__boolean_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__boolean_) - return (xsd__boolean_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_bool(soap, tag, &a->xsd__boolean_::__item, "xsd:boolean")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__boolean_ * SOAP_FMAC2 soap_instantiate_xsd__boolean_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__boolean_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__boolean_ *p; - size_t k = sizeof(xsd__boolean_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__boolean_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__boolean_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__boolean_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__boolean_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__boolean_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__boolean_(soap, tag ? tag : "xsd:boolean", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__boolean_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__boolean_(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__boolean_ * SOAP_FMAC4 soap_get_xsd__boolean_(struct soap *soap, xsd__boolean_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__boolean_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__base64Binary__::soap_default(struct soap *soap) -{ - this->soap = soap; - this->xsd__base64Binary__::__item.xsd__base64Binary::soap_default(soap); -} - -void xsd__base64Binary__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__base64Binary__::__item, SOAP_TYPE_xsd__base64Binary); - this->xsd__base64Binary__::__item.soap_serialize(soap); -#endif -} - -int xsd__base64Binary__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__base64Binary__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__base64Binary__(struct soap *soap, const char *tag, int id, const xsd__base64Binary__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return (a->xsd__base64Binary__::__item).soap_out(soap, tag, id, ""); -} - -void *xsd__base64Binary__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__base64Binary__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__base64Binary__ * SOAP_FMAC4 soap_in_xsd__base64Binary__(struct soap *soap, const char *tag, xsd__base64Binary__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__base64Binary__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__base64Binary__, sizeof(xsd__base64Binary__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__base64Binary__) - return (xsd__base64Binary__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!(a->xsd__base64Binary__::__item).soap_in(soap, tag, "xsd:base64Binary")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__base64Binary__ * SOAP_FMAC2 soap_instantiate_xsd__base64Binary__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__base64Binary__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__base64Binary__ *p; - size_t k = sizeof(xsd__base64Binary__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__base64Binary__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__base64Binary__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__base64Binary__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__base64Binary__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__base64Binary__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__base64Binary__(soap, tag ? tag : "xsd:base64Binary", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__base64Binary__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__base64Binary__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__base64Binary__ * SOAP_FMAC4 soap_get_xsd__base64Binary__(struct soap *soap, xsd__base64Binary__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__base64Binary__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__anyURI__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anyURI(soap, &this->xsd__anyURI__::__item); -} - -void xsd__anyURI__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__anyURI__::__item, SOAP_TYPE_xsd__anyURI); - soap_serialize_xsd__anyURI(soap, &this->xsd__anyURI__::__item); -#endif -} - -int xsd__anyURI__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__anyURI__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anyURI__(struct soap *soap, const char *tag, int id, const xsd__anyURI__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__anyURI(soap, tag, id, &a->xsd__anyURI__::__item, ""); -} - -void *xsd__anyURI__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__anyURI__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__anyURI__ * SOAP_FMAC4 soap_in_xsd__anyURI__(struct soap *soap, const char *tag, xsd__anyURI__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__anyURI__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__anyURI__, sizeof(xsd__anyURI__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__anyURI__) - return (xsd__anyURI__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__anyURI(soap, tag, &a->xsd__anyURI__::__item, "xsd:anyURI")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__anyURI__ * SOAP_FMAC2 soap_instantiate_xsd__anyURI__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__anyURI__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__anyURI__ *p; - size_t k = sizeof(xsd__anyURI__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__anyURI__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__anyURI__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__anyURI__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__anyURI__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__anyURI__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__anyURI__(soap, tag ? tag : "xsd:anyURI", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__anyURI__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__anyURI__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__anyURI__ * SOAP_FMAC4 soap_get_xsd__anyURI__(struct soap *soap, xsd__anyURI__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__anyURI__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__anyURI(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anyURI(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__anyURI), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__anyURI(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__anyURI, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 4, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__anyURI, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__anyURI, SOAP_TYPE_xsd__anyURI, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anyURI(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__anyURI(soap, tag ? tag : "xsd:anyURI", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__anyURI(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__anyURI(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__anySimpleType__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__anySimpleType(soap, &this->xsd__anySimpleType__::__item); -} - -void xsd__anySimpleType__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_xsd__anySimpleType(soap, &this->xsd__anySimpleType__::__item); -#endif -} - -int xsd__anySimpleType__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__anySimpleType__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anySimpleType__(struct soap *soap, const char *tag, int id, const xsd__anySimpleType__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__anySimpleType(soap, tag, id, &a->xsd__anySimpleType__::__item, ""); -} - -void *xsd__anySimpleType__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__anySimpleType__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__anySimpleType__ * SOAP_FMAC4 soap_in_xsd__anySimpleType__(struct soap *soap, const char *tag, xsd__anySimpleType__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__anySimpleType__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__anySimpleType__, sizeof(xsd__anySimpleType__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__anySimpleType__) - return (xsd__anySimpleType__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__anySimpleType(soap, tag, &a->xsd__anySimpleType__::__item, "xsd:anySimpleType")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__anySimpleType__ * SOAP_FMAC2 soap_instantiate_xsd__anySimpleType__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__anySimpleType__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__anySimpleType__ *p; - size_t k = sizeof(xsd__anySimpleType__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__anySimpleType__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__anySimpleType__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__anySimpleType__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__anySimpleType__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__anySimpleType__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__anySimpleType__(soap, tag ? tag : "xsd:anySimpleType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__anySimpleType__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__anySimpleType__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__anySimpleType__ * SOAP_FMAC4 soap_get_xsd__anySimpleType__(struct soap *soap, xsd__anySimpleType__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__anySimpleType__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__anySimpleType(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anySimpleType(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__anySimpleType), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__anySimpleType(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__anySimpleType, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__anySimpleType, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__anySimpleType, SOAP_TYPE_xsd__anySimpleType, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anySimpleType(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__anySimpleType(soap, tag ? tag : "xsd:anySimpleType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__anySimpleType(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__anySimpleType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__QName__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__QName(soap, &this->xsd__QName__::__item); -} - -void xsd__QName__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__QName__::__item, SOAP_TYPE_xsd__QName); - soap_serialize_xsd__QName(soap, &this->xsd__QName__::__item); -#endif -} - -int xsd__QName__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__QName__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__QName__(struct soap *soap, const char *tag, int id, const xsd__QName__ *a, const char *type) -{ - std::string soap_tmp___item(soap_QName2s(soap, a->__item.c_str())); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__QName(soap, tag, id, &soap_tmp___item, ""); -} - -void *xsd__QName__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__QName__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__QName__ * SOAP_FMAC4 soap_in_xsd__QName__(struct soap *soap, const char *tag, xsd__QName__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__QName__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__QName__, sizeof(xsd__QName__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__QName__) - return (xsd__QName__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__QName(soap, tag, &a->xsd__QName__::__item, "xsd:QName")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__QName__ * SOAP_FMAC2 soap_instantiate_xsd__QName__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__QName__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__QName__ *p; - size_t k = sizeof(xsd__QName__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__QName__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__QName__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__QName__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__QName__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__QName__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__QName__(soap, tag ? tag : "xsd:QName", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__QName__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__QName__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__QName__ * SOAP_FMAC4 soap_get_xsd__QName__(struct soap *soap, xsd__QName__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__QName__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__NCName__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_xsd__NCName(soap, &this->xsd__NCName__::__item); -} - -void xsd__NCName__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->xsd__NCName__::__item, SOAP_TYPE_xsd__NCName); - soap_serialize_xsd__NCName(soap, &this->xsd__NCName__::__item); -#endif -} - -int xsd__NCName__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__NCName__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__NCName__(struct soap *soap, const char *tag, int id, const xsd__NCName__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_xsd__NCName(soap, tag, id, &a->xsd__NCName__::__item, ""); -} - -void *xsd__NCName__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__NCName__(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__NCName__ * SOAP_FMAC4 soap_in_xsd__NCName__(struct soap *soap, const char *tag, xsd__NCName__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (xsd__NCName__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__NCName__, sizeof(xsd__NCName__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_xsd__NCName__) - return (xsd__NCName__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_xsd__NCName(soap, tag, &a->xsd__NCName__::__item, "xsd:NCName")) - return NULL; - return a; -} - -SOAP_FMAC1 xsd__NCName__ * SOAP_FMAC2 soap_instantiate_xsd__NCName__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__NCName__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__NCName__ *p; - size_t k = sizeof(xsd__NCName__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__NCName__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__NCName__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__NCName__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__NCName__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__NCName__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__NCName__(soap, tag ? tag : "xsd:NCName", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__NCName__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__NCName__(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__NCName__ * SOAP_FMAC4 soap_get_xsd__NCName__(struct soap *soap, xsd__NCName__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__NCName__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__NCName(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__NCName(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__NCName), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__NCName(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__NCName, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 5, 0, -1, "[\\i-[:]][\\c-[:]]*"))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__NCName, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__NCName, SOAP_TYPE_xsd__NCName, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__NCName(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__NCName(soap, tag ? tag : "xsd:NCName", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__NCName(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__NCName(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void SOAP_ENV__Fault_::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_SOAP_ENV__Fault(soap, &this->SOAP_ENV__Fault_::__item); -} - -void SOAP_ENV__Fault_::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->SOAP_ENV__Fault_::__item, SOAP_TYPE_SOAP_ENV__Fault); - soap_serialize_SOAP_ENV__Fault(soap, &this->SOAP_ENV__Fault_::__item); -#endif -} - -int SOAP_ENV__Fault_::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_SOAP_ENV__Fault_(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Fault_(struct soap *soap, const char *tag, int id, const SOAP_ENV__Fault_ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_SOAP_ENV__Fault(soap, tag, id, &a->SOAP_ENV__Fault_::__item, ""); -} - -void *SOAP_ENV__Fault_::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_SOAP_ENV__Fault_(soap, tag, this, type); -} - -SOAP_FMAC3 SOAP_ENV__Fault_ * SOAP_FMAC4 soap_in_SOAP_ENV__Fault_(struct soap *soap, const char *tag, SOAP_ENV__Fault_ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (SOAP_ENV__Fault_*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_SOAP_ENV__Fault_, sizeof(SOAP_ENV__Fault_), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_SOAP_ENV__Fault_) - return (SOAP_ENV__Fault_ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_SOAP_ENV__Fault(soap, tag, &a->SOAP_ENV__Fault_::__item, "")) - return NULL; - return a; -} - -SOAP_FMAC1 SOAP_ENV__Fault_ * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Fault_(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_SOAP_ENV__Fault_(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - SOAP_ENV__Fault_ *p; - size_t k = sizeof(SOAP_ENV__Fault_); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_SOAP_ENV__Fault_, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, SOAP_ENV__Fault_); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, SOAP_ENV__Fault_, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated SOAP_ENV__Fault_ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int SOAP_ENV__Fault_::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_SOAP_ENV__Fault_(soap, tag ? tag : "SOAP-ENV:Fault", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *SOAP_ENV__Fault_::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_SOAP_ENV__Fault_(soap, this, tag, type); -} - -SOAP_FMAC3 SOAP_ENV__Fault_ * SOAP_FMAC4 soap_get_SOAP_ENV__Fault_(struct soap *soap, SOAP_ENV__Fault_ *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Fault_(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void SOAP_ENV__Envelope__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_SOAP_ENV__Envelope(soap, &this->SOAP_ENV__Envelope__::__item); -} - -void SOAP_ENV__Envelope__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->SOAP_ENV__Envelope__::__item, SOAP_TYPE_SOAP_ENV__Envelope); - soap_serialize_SOAP_ENV__Envelope(soap, &this->SOAP_ENV__Envelope__::__item); -#endif -} - -int SOAP_ENV__Envelope__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_SOAP_ENV__Envelope__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Envelope__(struct soap *soap, const char *tag, int id, const SOAP_ENV__Envelope__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_SOAP_ENV__Envelope(soap, tag, id, &a->SOAP_ENV__Envelope__::__item, ""); -} - -void *SOAP_ENV__Envelope__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_SOAP_ENV__Envelope__(soap, tag, this, type); -} - -SOAP_FMAC3 SOAP_ENV__Envelope__ * SOAP_FMAC4 soap_in_SOAP_ENV__Envelope__(struct soap *soap, const char *tag, SOAP_ENV__Envelope__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (SOAP_ENV__Envelope__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_SOAP_ENV__Envelope__, sizeof(SOAP_ENV__Envelope__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_SOAP_ENV__Envelope__) - return (SOAP_ENV__Envelope__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_SOAP_ENV__Envelope(soap, tag, &a->SOAP_ENV__Envelope__::__item, "")) - return NULL; - return a; -} - -SOAP_FMAC1 SOAP_ENV__Envelope__ * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Envelope__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_SOAP_ENV__Envelope__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - SOAP_ENV__Envelope__ *p; - size_t k = sizeof(SOAP_ENV__Envelope__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_SOAP_ENV__Envelope__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, SOAP_ENV__Envelope__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, SOAP_ENV__Envelope__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated SOAP_ENV__Envelope__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int SOAP_ENV__Envelope__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_SOAP_ENV__Envelope__(soap, tag ? tag : "SOAP-ENV:Envelope", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *SOAP_ENV__Envelope__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_SOAP_ENV__Envelope__(soap, this, tag, type); -} - -SOAP_FMAC3 SOAP_ENV__Envelope__ * SOAP_FMAC4 soap_get_SOAP_ENV__Envelope__(struct soap *soap, SOAP_ENV__Envelope__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Envelope__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Envelope(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Envelope(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_SOAP_ENV__Envelope), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_SOAP_ENV__Envelope(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_SOAP_ENV__Envelope, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_SOAP_ENV__Envelope, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_SOAP_ENV__Envelope, SOAP_TYPE_SOAP_ENV__Envelope, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Envelope(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_SOAP_ENV__Envelope(soap, tag ? tag : "SOAP-ENV:Envelope", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_SOAP_ENV__Envelope(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Envelope(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void wsa5__EndpointReferenceType__::soap_default(struct soap *soap) -{ - this->soap = soap; - soap_default_wsa5__EndpointReferenceType(soap, &this->wsa5__EndpointReferenceType__::__item); -} - -void wsa5__EndpointReferenceType__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->wsa5__EndpointReferenceType__::__item, SOAP_TYPE_wsa5__EndpointReferenceType); - soap_serialize_wsa5__EndpointReferenceType(soap, &this->wsa5__EndpointReferenceType__::__item); -#endif -} - -int wsa5__EndpointReferenceType__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_wsa5__EndpointReferenceType__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__EndpointReferenceType__(struct soap *soap, const char *tag, int id, const wsa5__EndpointReferenceType__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_wsa5__EndpointReferenceType(soap, tag, id, &a->wsa5__EndpointReferenceType__::__item, ""); -} - -void *wsa5__EndpointReferenceType__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_wsa5__EndpointReferenceType__(soap, tag, this, type); -} - -SOAP_FMAC3 wsa5__EndpointReferenceType__ * SOAP_FMAC4 soap_in_wsa5__EndpointReferenceType__(struct soap *soap, const char *tag, wsa5__EndpointReferenceType__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!(a = (wsa5__EndpointReferenceType__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__EndpointReferenceType__, sizeof(wsa5__EndpointReferenceType__), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - { soap->error = SOAP_TAG_MISMATCH; - return NULL; - } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_wsa5__EndpointReferenceType__) - return (wsa5__EndpointReferenceType__ *)a->soap_in(soap, tag, type); - if (soap->alloced) - a->soap_default(soap); - if (!soap_in_wsa5__EndpointReferenceType(soap, tag, &a->wsa5__EndpointReferenceType__::__item, "wsa5:EndpointReferenceType")) - return NULL; - return a; -} - -SOAP_FMAC1 wsa5__EndpointReferenceType__ * SOAP_FMAC2 soap_instantiate_wsa5__EndpointReferenceType__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa5__EndpointReferenceType__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - wsa5__EndpointReferenceType__ *p; - size_t k = sizeof(wsa5__EndpointReferenceType__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa5__EndpointReferenceType__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, wsa5__EndpointReferenceType__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, wsa5__EndpointReferenceType__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated wsa5__EndpointReferenceType__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int wsa5__EndpointReferenceType__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_wsa5__EndpointReferenceType__(soap, tag ? tag : "wsa5:EndpointReferenceType", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *wsa5__EndpointReferenceType__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_wsa5__EndpointReferenceType__(soap, this, tag, type); -} - -SOAP_FMAC3 wsa5__EndpointReferenceType__ * SOAP_FMAC4 soap_get_wsa5__EndpointReferenceType__(struct soap *soap, wsa5__EndpointReferenceType__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__EndpointReferenceType__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__IntList__::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__IntList__::tt__IntList = 0; -} - -void tt__IntList__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__IntList__::tt__IntList, SOAP_TYPE_int); -#endif -} - -int tt__IntList__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__IntList__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntList__(struct soap *soap, const char *tag, int id, const tt__IntList__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__IntList__), type)) - return soap->error; - if (soap_out_int(soap, "tt:IntList", -1, &a->tt__IntList__::tt__IntList, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__IntList__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__IntList__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__IntList__ * SOAP_FMAC4 soap_in_tt__IntList__(struct soap *soap, const char *tag, tt__IntList__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__IntList__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__IntList__, sizeof(tt__IntList__), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__IntList__) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__IntList__ *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_tt__IntList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tt__IntList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:IntList", &a->tt__IntList__::tt__IntList, "xsd:int") || soap->error == SOAP_EMPTY) - { soap_flag_tt__IntList1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_tt__IntList1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__IntList__ *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__IntList__, SOAP_TYPE_tt__IntList__, sizeof(tt__IntList__), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__IntList__ * SOAP_FMAC2 soap_instantiate_tt__IntList__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__IntList__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__IntList__ *p; - size_t k = sizeof(tt__IntList__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__IntList__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__IntList__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__IntList__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__IntList__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__IntList__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__IntList__(soap, tag ? tag : "tt:IntList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__IntList__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__IntList__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__IntList__ * SOAP_FMAC4 soap_get_tt__IntList__(struct soap *soap, tt__IntList__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__IntList__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void tt__FloatList__::soap_default(struct soap *soap) -{ - this->soap = soap; - this->tt__FloatList__::tt__FloatList = 0; -} - -void tt__FloatList__::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->tt__FloatList__::tt__FloatList, SOAP_TYPE_int); -#endif -} - -int tt__FloatList__::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_tt__FloatList__(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatList__(struct soap *soap, const char *tag, int id, const tt__FloatList__ *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_tt__FloatList__), type)) - return soap->error; - if (soap_out_int(soap, "tt:FloatList", -1, &a->tt__FloatList__::tt__FloatList, "")) - return soap->error; - if (soap_out_xsd__anyType(soap, NULL, -1, static_cast(a), NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -void *tt__FloatList__::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_tt__FloatList__(soap, tag, this, type); -} - -SOAP_FMAC3 tt__FloatList__ * SOAP_FMAC4 soap_in_tt__FloatList__(struct soap *soap, const char *tag, tt__FloatList__ *a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - a = (tt__FloatList__*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_tt__FloatList__, sizeof(tt__FloatList__), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_tt__FloatList__) - { soap_revert(soap); - *soap->id = '\0'; - return (tt__FloatList__ *)a->soap_in(soap, tag, type); - } - if (soap->alloced) - a->soap_default(soap); - size_t soap_flag_soap_dom_element = 1; - size_t soap_flag_tt__FloatList1 = 1; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tt__FloatList1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_int(soap, "tt:FloatList", &a->tt__FloatList__::tt__FloatList, "xsd:int") || soap->error == SOAP_EMPTY) - { soap_flag_tt__FloatList1--; - continue; - } - } - if (soap_flag_soap_dom_element && soap->error == SOAP_TAG_MISMATCH) - if (soap_in_xsd__anyType(soap, NULL, static_cast(a), NULL)) - { soap_flag_soap_dom_element = 0; - continue; - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_tt__FloatList1 > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (tt__FloatList__ *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_tt__FloatList__, SOAP_TYPE_tt__FloatList__, sizeof(tt__FloatList__), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 tt__FloatList__ * SOAP_FMAC2 soap_instantiate_tt__FloatList__(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_tt__FloatList__(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - tt__FloatList__ *p; - size_t k = sizeof(tt__FloatList__); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_tt__FloatList__, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, tt__FloatList__); - if (p) - p->soap = soap; - } - else - { p = SOAP_NEW_ARRAY(soap, tt__FloatList__, n); - k *= n; - if (p) - for (int i = 0; i < n; i++) - p[i].soap = soap; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated tt__FloatList__ location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int tt__FloatList__::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_tt__FloatList__(soap, tag ? tag : "tt:FloatList", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *tt__FloatList__::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_tt__FloatList__(soap, this, tag, type); -} - -SOAP_FMAC3 tt__FloatList__ * SOAP_FMAC4 soap_get_tt__FloatList__(struct soap *soap, tt__FloatList__ *p, const char *tag, const char *type) -{ - if ((p = soap_in_tt__FloatList__(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__hexBinary::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - this->__ptr = NULL; - this->__size = 0; -} - -void xsd__hexBinary::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (this->__ptr) - (void)soap_array_reference(soap, this, this->__ptr, this->__size, SOAP_TYPE_xsd__hexBinary); -#endif -} - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_xsd__hexBinary2s(struct soap *soap, xsd__hexBinary a) -{ - return soap_s2hex(soap, a.__ptr, NULL, a.__size); -} - -int xsd__hexBinary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__hexBinary(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__hexBinary(struct soap *soap, const char *tag, int id, const xsd__hexBinary *a, const char *type) -{ - id = soap_element_id(soap, tag, id, a, a->__ptr, a->__size, type, SOAP_TYPE_xsd__hexBinary, NULL); - if (id < 0) - return soap->error; - if (soap_element_begin_out(soap, tag, id, type)) - return soap->error; - if (soap_puthex(soap, a->__ptr, a->__size)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2xsd__hexBinary(struct soap *soap, const char *s, xsd__hexBinary *a) -{ - a->__ptr = (unsigned char*)soap_hex2s(soap, s, NULL, 0, &a->__size); - if (!a->__ptr) - return soap->error; - return SOAP_OK; -} - -void *xsd__hexBinary::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__hexBinary(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_in_xsd__hexBinary(struct soap *soap, const char *tag, xsd__hexBinary *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (*soap->type && soap_match_tag(soap, soap->type, type) && soap_match_tag(soap, soap->type, ":hexBinary")) - { soap->error = SOAP_TYPE; - return NULL; - } - a = (xsd__hexBinary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__hexBinary, sizeof(xsd__hexBinary), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - a->soap_default(soap); - if (soap->body && *soap->href != '#') - { - a->__ptr = soap_gethex(soap, &a->__size); - if ((!a->__ptr && soap->error) || soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (xsd__hexBinary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xsd__hexBinary, SOAP_TYPE_xsd__hexBinary, sizeof(xsd__hexBinary), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 xsd__hexBinary * SOAP_FMAC2 soap_instantiate_xsd__hexBinary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__hexBinary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__hexBinary *p; - size_t k = sizeof(xsd__hexBinary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__hexBinary, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__hexBinary); - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__hexBinary, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__hexBinary location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__hexBinary::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__hexBinary(soap, tag ? tag : "xsd:hexBinary", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__hexBinary::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__hexBinary(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_get_xsd__hexBinary(struct soap *soap, xsd__hexBinary *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__hexBinary(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -void xsd__base64Binary::soap_default(struct soap *soap) -{ - (void)soap; /* appease -Wall -Werror */ - this->__ptr = NULL; - this->__size = 0; - this->id = NULL; - this->type = NULL; - this->options = NULL; -} - -void xsd__base64Binary::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (this->__ptr) - (void)soap_attachment_reference(soap, this, this->__ptr, this->__size, SOAP_TYPE_xsd__base64Binary, this->id, this->type); -#endif -} - -SOAP_FMAC3S const char* SOAP_FMAC4S soap_xsd__base64Binary2s(struct soap *soap, xsd__base64Binary a) -{ - return soap_s2base64(soap, a.__ptr, NULL, a.__size); -} - -int xsd__base64Binary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const -{ - return soap_out_xsd__base64Binary(soap, tag, id, this, type); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__base64Binary(struct soap *soap, const char *tag, int id, const xsd__base64Binary *a, const char *type) -{ -#ifndef WITH_LEANER - id = soap_attachment(soap, tag, id, a, a->__ptr, a->__size, a->id, a->type, a->options, type, SOAP_TYPE_xsd__base64Binary); -#else - id = soap_element_id(soap, tag, id, a, a->__ptr, a->__size, type, SOAP_TYPE_xsd__base64Binary, NULL); -#endif - if (id < 0) - return soap->error; - if (soap_element_begin_out(soap, tag, id, type)) - return soap->error; - if (soap_putbase64(soap, a->__ptr, a->__size)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3S int SOAP_FMAC4S soap_s2xsd__base64Binary(struct soap *soap, const char *s, xsd__base64Binary *a) -{ - a->__ptr = (unsigned char*)soap_base642s(soap, s, NULL, 0, &a->__size); - if (!a->__ptr) - return soap->error; - return SOAP_OK; -} - -void *xsd__base64Binary::soap_in(struct soap *soap, const char *tag, const char *type) -{ - return soap_in_xsd__base64Binary(soap, tag, this, type); -} - -SOAP_FMAC3 xsd__base64Binary * SOAP_FMAC4 soap_in_xsd__base64Binary(struct soap *soap, const char *tag, xsd__base64Binary *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (*soap->type && soap_match_tag(soap, soap->type, type) && soap_match_tag(soap, soap->type, ":base64Binary") && soap_match_tag(soap, soap->type, ":base64")) - { soap->error = SOAP_TYPE; - return NULL; - } - a = (xsd__base64Binary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xsd__base64Binary, sizeof(xsd__base64Binary), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (!a) - return NULL; - a->soap_default(soap); - if (soap->body && !*soap->href) - { - a->__ptr = soap_getbase64(soap, &a->__size, 0); -#ifndef WITH_LEANER - if (soap_xop_forward(soap, &a->__ptr, &a->__size, &a->id, &a->type, &a->options)) - return NULL; -#endif - if ((!a->__ptr && soap->error) || soap_element_end_in(soap, tag)) - return NULL; - } - else - { -#ifndef WITH_LEANER - if (*soap->href != '#') - { if (soap_attachment_forward(soap, &a->__ptr, &a->__size, &a->id, &a->type, &a->options)) - return NULL; - } - else -#endif - a = (xsd__base64Binary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xsd__base64Binary, SOAP_TYPE_xsd__base64Binary, sizeof(xsd__base64Binary), 0, soap_finsert, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 xsd__base64Binary * SOAP_FMAC2 soap_instantiate_xsd__base64Binary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__base64Binary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - xsd__base64Binary *p; - size_t k = sizeof(xsd__base64Binary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__base64Binary, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, xsd__base64Binary); - } - else - { p = SOAP_NEW_ARRAY(soap, xsd__base64Binary, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated xsd__base64Binary location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -int xsd__base64Binary::soap_put(struct soap *soap, const char *tag, const char *type) const -{ - if (soap_out_xsd__base64Binary(soap, tag ? tag : "xsd:base64Binary", -2, this, type)) - return soap->error; - return soap_putindependent(soap); -} - -void *xsd__base64Binary::soap_get(struct soap *soap, const char *tag, const char *type) -{ - return soap_get_xsd__base64Binary(soap, this, tag, type); -} - -SOAP_FMAC3 xsd__base64Binary * SOAP_FMAC4 soap_get_xsd__base64Binary(struct soap *soap, xsd__base64Binary *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__base64Binary(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__QName(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__QName(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_xsd__QName), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__QName(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__QName, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 2, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_xsd__QName, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_xsd__QName, SOAP_TYPE_xsd__QName, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC1 std::string * SOAP_FMAC2 soap_instantiate_xsd__QName(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__QName(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::string *p; - size_t k = sizeof(std::string); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__QName, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, std::string); - } - else - { p = SOAP_NEW_ARRAY(soap, std::string, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::string location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__QName(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_xsd__QName(soap, tag ? tag : "xsd:QName", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__QName(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__QName(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__string(struct soap *soap, const std::string *a) -{ (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__string(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) -{ - if (s->empty()) - return (soap->mode & SOAP_C_NILSTRING) ? soap_element_null(soap, tag, id, type) : soap_element_empty(soap, tag, id, type); - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_std__string), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_std__string(struct soap *soap, const char *tag, std::string *s, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!s) - s = soap_new_std__string(soap, -1); - if (soap->null) - if (s) - s->erase(); - if (soap->body && *soap->href != '#') - { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_std__string, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase); - if (s) - { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) - return NULL; - s->assign(t); - } - } - else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_std__string, sizeof(std::string), soap->type, soap->arrayType, soap_instantiate, soap_fbase), 0, SOAP_TYPE_std__string, SOAP_TYPE_std__string, sizeof(std::string), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - return s; -} - -SOAP_FMAC1 std::string * SOAP_FMAC2 soap_instantiate_std__string(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__string(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::string *p; - size_t k = sizeof(std::string); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_std__string, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, std::string); - } - else - { p = SOAP_NEW_ARRAY(soap, std::string, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::string location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__string(struct soap *soap, const std::string *a, const char *tag, const char *type) -{ - if (soap_out_std__string(soap, tag ? tag : "string", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_std__string(struct soap *soap, std::string *p, const char *tag, const char *type) -{ - if ((p = soap_in_std__string(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetMetadataSearchResults(struct soap *soap, struct __tse__GetMetadataSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetMetadataSearchResults = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetMetadataSearchResults(struct soap *soap, const struct __tse__GetMetadataSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetMetadataSearchResults(soap, &a->tse__GetMetadataSearchResults); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetMetadataSearchResults(struct soap *soap, const char *tag, int id, const struct __tse__GetMetadataSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetMetadataSearchResults(soap, "tse:GetMetadataSearchResults", -1, &a->tse__GetMetadataSearchResults, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetMetadataSearchResults * SOAP_FMAC4 soap_in___tse__GetMetadataSearchResults(struct soap *soap, const char *tag, struct __tse__GetMetadataSearchResults *a, const char *type) -{ - size_t soap_flag_tse__GetMetadataSearchResults = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetMetadataSearchResults*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetMetadataSearchResults, sizeof(struct __tse__GetMetadataSearchResults), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetMetadataSearchResults(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetMetadataSearchResults && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetMetadataSearchResults(soap, "tse:GetMetadataSearchResults", &a->tse__GetMetadataSearchResults, "")) - { soap_flag_tse__GetMetadataSearchResults--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetMetadataSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetMetadataSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetMetadataSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetMetadataSearchResults *p; - size_t k = sizeof(struct __tse__GetMetadataSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetMetadataSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetMetadataSearchResults); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetMetadataSearchResults, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetMetadataSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetMetadataSearchResults(struct soap *soap, const struct __tse__GetMetadataSearchResults *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetMetadataSearchResults(soap, tag ? tag : "-tse:GetMetadataSearchResults", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetMetadataSearchResults * SOAP_FMAC4 soap_get___tse__GetMetadataSearchResults(struct soap *soap, struct __tse__GetMetadataSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetMetadataSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindMetadata(struct soap *soap, struct __tse__FindMetadata *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__FindMetadata = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindMetadata(struct soap *soap, const struct __tse__FindMetadata *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__FindMetadata(soap, &a->tse__FindMetadata); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindMetadata(struct soap *soap, const char *tag, int id, const struct __tse__FindMetadata *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__FindMetadata(soap, "tse:FindMetadata", -1, &a->tse__FindMetadata, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindMetadata * SOAP_FMAC4 soap_in___tse__FindMetadata(struct soap *soap, const char *tag, struct __tse__FindMetadata *a, const char *type) -{ - size_t soap_flag_tse__FindMetadata = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__FindMetadata*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__FindMetadata, sizeof(struct __tse__FindMetadata), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__FindMetadata(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__FindMetadata && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__FindMetadata(soap, "tse:FindMetadata", &a->tse__FindMetadata, "")) - { soap_flag_tse__FindMetadata--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__FindMetadata * SOAP_FMAC2 soap_instantiate___tse__FindMetadata(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__FindMetadata(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__FindMetadata *p; - size_t k = sizeof(struct __tse__FindMetadata); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__FindMetadata, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__FindMetadata); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__FindMetadata, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__FindMetadata location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindMetadata(struct soap *soap, const struct __tse__FindMetadata *a, const char *tag, const char *type) -{ - if (soap_out___tse__FindMetadata(soap, tag ? tag : "-tse:FindMetadata", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindMetadata * SOAP_FMAC4 soap_get___tse__FindMetadata(struct soap *soap, struct __tse__FindMetadata *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__FindMetadata(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__EndSearch(struct soap *soap, struct __tse__EndSearch *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__EndSearch = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__EndSearch(struct soap *soap, const struct __tse__EndSearch *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__EndSearch(soap, &a->tse__EndSearch); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__EndSearch(struct soap *soap, const char *tag, int id, const struct __tse__EndSearch *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__EndSearch(soap, "tse:EndSearch", -1, &a->tse__EndSearch, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__EndSearch * SOAP_FMAC4 soap_in___tse__EndSearch(struct soap *soap, const char *tag, struct __tse__EndSearch *a, const char *type) -{ - size_t soap_flag_tse__EndSearch = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__EndSearch*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__EndSearch, sizeof(struct __tse__EndSearch), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__EndSearch(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__EndSearch && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__EndSearch(soap, "tse:EndSearch", &a->tse__EndSearch, "")) - { soap_flag_tse__EndSearch--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__EndSearch * SOAP_FMAC2 soap_instantiate___tse__EndSearch(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__EndSearch(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__EndSearch *p; - size_t k = sizeof(struct __tse__EndSearch); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__EndSearch, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__EndSearch); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__EndSearch, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__EndSearch location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__EndSearch(struct soap *soap, const struct __tse__EndSearch *a, const char *tag, const char *type) -{ - if (soap_out___tse__EndSearch(soap, tag ? tag : "-tse:EndSearch", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__EndSearch * SOAP_FMAC4 soap_get___tse__EndSearch(struct soap *soap, struct __tse__EndSearch *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__EndSearch(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetSearchState(struct soap *soap, struct __tse__GetSearchState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetSearchState = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetSearchState(struct soap *soap, const struct __tse__GetSearchState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetSearchState(soap, &a->tse__GetSearchState); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetSearchState(struct soap *soap, const char *tag, int id, const struct __tse__GetSearchState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetSearchState(soap, "tse:GetSearchState", -1, &a->tse__GetSearchState, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetSearchState * SOAP_FMAC4 soap_in___tse__GetSearchState(struct soap *soap, const char *tag, struct __tse__GetSearchState *a, const char *type) -{ - size_t soap_flag_tse__GetSearchState = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetSearchState*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetSearchState, sizeof(struct __tse__GetSearchState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetSearchState(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetSearchState && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetSearchState(soap, "tse:GetSearchState", &a->tse__GetSearchState, "")) - { soap_flag_tse__GetSearchState--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetSearchState * SOAP_FMAC2 soap_instantiate___tse__GetSearchState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetSearchState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetSearchState *p; - size_t k = sizeof(struct __tse__GetSearchState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetSearchState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetSearchState); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetSearchState, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetSearchState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetSearchState(struct soap *soap, const struct __tse__GetSearchState *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetSearchState(soap, tag ? tag : "-tse:GetSearchState", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetSearchState * SOAP_FMAC4 soap_get___tse__GetSearchState(struct soap *soap, struct __tse__GetSearchState *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetSearchState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetPTZPositionSearchResults(struct soap *soap, struct __tse__GetPTZPositionSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetPTZPositionSearchResults = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetPTZPositionSearchResults(struct soap *soap, const struct __tse__GetPTZPositionSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetPTZPositionSearchResults(soap, &a->tse__GetPTZPositionSearchResults); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetPTZPositionSearchResults(struct soap *soap, const char *tag, int id, const struct __tse__GetPTZPositionSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetPTZPositionSearchResults(soap, "tse:GetPTZPositionSearchResults", -1, &a->tse__GetPTZPositionSearchResults, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_in___tse__GetPTZPositionSearchResults(struct soap *soap, const char *tag, struct __tse__GetPTZPositionSearchResults *a, const char *type) -{ - size_t soap_flag_tse__GetPTZPositionSearchResults = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetPTZPositionSearchResults*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetPTZPositionSearchResults, sizeof(struct __tse__GetPTZPositionSearchResults), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetPTZPositionSearchResults(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetPTZPositionSearchResults && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetPTZPositionSearchResults(soap, "tse:GetPTZPositionSearchResults", &a->tse__GetPTZPositionSearchResults, "")) - { soap_flag_tse__GetPTZPositionSearchResults--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetPTZPositionSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetPTZPositionSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetPTZPositionSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetPTZPositionSearchResults *p; - size_t k = sizeof(struct __tse__GetPTZPositionSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetPTZPositionSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetPTZPositionSearchResults); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetPTZPositionSearchResults, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetPTZPositionSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetPTZPositionSearchResults(struct soap *soap, const struct __tse__GetPTZPositionSearchResults *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetPTZPositionSearchResults(soap, tag ? tag : "-tse:GetPTZPositionSearchResults", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_get___tse__GetPTZPositionSearchResults(struct soap *soap, struct __tse__GetPTZPositionSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetPTZPositionSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindPTZPosition(struct soap *soap, struct __tse__FindPTZPosition *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__FindPTZPosition = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindPTZPosition(struct soap *soap, const struct __tse__FindPTZPosition *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__FindPTZPosition(soap, &a->tse__FindPTZPosition); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindPTZPosition(struct soap *soap, const char *tag, int id, const struct __tse__FindPTZPosition *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__FindPTZPosition(soap, "tse:FindPTZPosition", -1, &a->tse__FindPTZPosition, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindPTZPosition * SOAP_FMAC4 soap_in___tse__FindPTZPosition(struct soap *soap, const char *tag, struct __tse__FindPTZPosition *a, const char *type) -{ - size_t soap_flag_tse__FindPTZPosition = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__FindPTZPosition*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__FindPTZPosition, sizeof(struct __tse__FindPTZPosition), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__FindPTZPosition(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__FindPTZPosition && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__FindPTZPosition(soap, "tse:FindPTZPosition", &a->tse__FindPTZPosition, "")) - { soap_flag_tse__FindPTZPosition--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__FindPTZPosition * SOAP_FMAC2 soap_instantiate___tse__FindPTZPosition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__FindPTZPosition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__FindPTZPosition *p; - size_t k = sizeof(struct __tse__FindPTZPosition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__FindPTZPosition, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__FindPTZPosition); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__FindPTZPosition, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__FindPTZPosition location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindPTZPosition(struct soap *soap, const struct __tse__FindPTZPosition *a, const char *tag, const char *type) -{ - if (soap_out___tse__FindPTZPosition(soap, tag ? tag : "-tse:FindPTZPosition", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindPTZPosition * SOAP_FMAC4 soap_get___tse__FindPTZPosition(struct soap *soap, struct __tse__FindPTZPosition *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__FindPTZPosition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetEventSearchResults(struct soap *soap, struct __tse__GetEventSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetEventSearchResults = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetEventSearchResults(struct soap *soap, const struct __tse__GetEventSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetEventSearchResults(soap, &a->tse__GetEventSearchResults); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetEventSearchResults(struct soap *soap, const char *tag, int id, const struct __tse__GetEventSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetEventSearchResults(soap, "tse:GetEventSearchResults", -1, &a->tse__GetEventSearchResults, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetEventSearchResults * SOAP_FMAC4 soap_in___tse__GetEventSearchResults(struct soap *soap, const char *tag, struct __tse__GetEventSearchResults *a, const char *type) -{ - size_t soap_flag_tse__GetEventSearchResults = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetEventSearchResults*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetEventSearchResults, sizeof(struct __tse__GetEventSearchResults), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetEventSearchResults(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetEventSearchResults && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetEventSearchResults(soap, "tse:GetEventSearchResults", &a->tse__GetEventSearchResults, "")) - { soap_flag_tse__GetEventSearchResults--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetEventSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetEventSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetEventSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetEventSearchResults *p; - size_t k = sizeof(struct __tse__GetEventSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetEventSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetEventSearchResults); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetEventSearchResults, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetEventSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetEventSearchResults(struct soap *soap, const struct __tse__GetEventSearchResults *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetEventSearchResults(soap, tag ? tag : "-tse:GetEventSearchResults", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetEventSearchResults * SOAP_FMAC4 soap_get___tse__GetEventSearchResults(struct soap *soap, struct __tse__GetEventSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetEventSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindEvents(struct soap *soap, struct __tse__FindEvents *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__FindEvents = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindEvents(struct soap *soap, const struct __tse__FindEvents *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__FindEvents(soap, &a->tse__FindEvents); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindEvents(struct soap *soap, const char *tag, int id, const struct __tse__FindEvents *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__FindEvents(soap, "tse:FindEvents", -1, &a->tse__FindEvents, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindEvents * SOAP_FMAC4 soap_in___tse__FindEvents(struct soap *soap, const char *tag, struct __tse__FindEvents *a, const char *type) -{ - size_t soap_flag_tse__FindEvents = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__FindEvents*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__FindEvents, sizeof(struct __tse__FindEvents), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__FindEvents(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__FindEvents && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__FindEvents(soap, "tse:FindEvents", &a->tse__FindEvents, "")) - { soap_flag_tse__FindEvents--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__FindEvents * SOAP_FMAC2 soap_instantiate___tse__FindEvents(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__FindEvents(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__FindEvents *p; - size_t k = sizeof(struct __tse__FindEvents); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__FindEvents, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__FindEvents); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__FindEvents, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__FindEvents location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindEvents(struct soap *soap, const struct __tse__FindEvents *a, const char *tag, const char *type) -{ - if (soap_out___tse__FindEvents(soap, tag ? tag : "-tse:FindEvents", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindEvents * SOAP_FMAC4 soap_get___tse__FindEvents(struct soap *soap, struct __tse__FindEvents *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__FindEvents(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetRecordingSearchResults(struct soap *soap, struct __tse__GetRecordingSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetRecordingSearchResults = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetRecordingSearchResults(struct soap *soap, const struct __tse__GetRecordingSearchResults *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetRecordingSearchResults(soap, &a->tse__GetRecordingSearchResults); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetRecordingSearchResults(struct soap *soap, const char *tag, int id, const struct __tse__GetRecordingSearchResults *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetRecordingSearchResults(soap, "tse:GetRecordingSearchResults", -1, &a->tse__GetRecordingSearchResults, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetRecordingSearchResults * SOAP_FMAC4 soap_in___tse__GetRecordingSearchResults(struct soap *soap, const char *tag, struct __tse__GetRecordingSearchResults *a, const char *type) -{ - size_t soap_flag_tse__GetRecordingSearchResults = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetRecordingSearchResults*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetRecordingSearchResults, sizeof(struct __tse__GetRecordingSearchResults), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetRecordingSearchResults(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetRecordingSearchResults && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetRecordingSearchResults(soap, "tse:GetRecordingSearchResults", &a->tse__GetRecordingSearchResults, "")) - { soap_flag_tse__GetRecordingSearchResults--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetRecordingSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetRecordingSearchResults(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetRecordingSearchResults(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetRecordingSearchResults *p; - size_t k = sizeof(struct __tse__GetRecordingSearchResults); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetRecordingSearchResults, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetRecordingSearchResults); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetRecordingSearchResults, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetRecordingSearchResults location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetRecordingSearchResults(struct soap *soap, const struct __tse__GetRecordingSearchResults *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetRecordingSearchResults(soap, tag ? tag : "-tse:GetRecordingSearchResults", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetRecordingSearchResults * SOAP_FMAC4 soap_get___tse__GetRecordingSearchResults(struct soap *soap, struct __tse__GetRecordingSearchResults *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetRecordingSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindRecordings(struct soap *soap, struct __tse__FindRecordings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__FindRecordings = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindRecordings(struct soap *soap, const struct __tse__FindRecordings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__FindRecordings(soap, &a->tse__FindRecordings); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindRecordings(struct soap *soap, const char *tag, int id, const struct __tse__FindRecordings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__FindRecordings(soap, "tse:FindRecordings", -1, &a->tse__FindRecordings, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindRecordings * SOAP_FMAC4 soap_in___tse__FindRecordings(struct soap *soap, const char *tag, struct __tse__FindRecordings *a, const char *type) -{ - size_t soap_flag_tse__FindRecordings = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__FindRecordings*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__FindRecordings, sizeof(struct __tse__FindRecordings), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__FindRecordings(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__FindRecordings && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__FindRecordings(soap, "tse:FindRecordings", &a->tse__FindRecordings, "")) - { soap_flag_tse__FindRecordings--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__FindRecordings * SOAP_FMAC2 soap_instantiate___tse__FindRecordings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__FindRecordings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__FindRecordings *p; - size_t k = sizeof(struct __tse__FindRecordings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__FindRecordings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__FindRecordings); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__FindRecordings, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__FindRecordings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindRecordings(struct soap *soap, const struct __tse__FindRecordings *a, const char *tag, const char *type) -{ - if (soap_out___tse__FindRecordings(soap, tag ? tag : "-tse:FindRecordings", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__FindRecordings * SOAP_FMAC4 soap_get___tse__FindRecordings(struct soap *soap, struct __tse__FindRecordings *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__FindRecordings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetMediaAttributes(struct soap *soap, struct __tse__GetMediaAttributes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetMediaAttributes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetMediaAttributes(struct soap *soap, const struct __tse__GetMediaAttributes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetMediaAttributes(soap, &a->tse__GetMediaAttributes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetMediaAttributes(struct soap *soap, const char *tag, int id, const struct __tse__GetMediaAttributes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetMediaAttributes(soap, "tse:GetMediaAttributes", -1, &a->tse__GetMediaAttributes, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetMediaAttributes * SOAP_FMAC4 soap_in___tse__GetMediaAttributes(struct soap *soap, const char *tag, struct __tse__GetMediaAttributes *a, const char *type) -{ - size_t soap_flag_tse__GetMediaAttributes = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetMediaAttributes*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetMediaAttributes, sizeof(struct __tse__GetMediaAttributes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetMediaAttributes(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetMediaAttributes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetMediaAttributes(soap, "tse:GetMediaAttributes", &a->tse__GetMediaAttributes, "")) - { soap_flag_tse__GetMediaAttributes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetMediaAttributes * SOAP_FMAC2 soap_instantiate___tse__GetMediaAttributes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetMediaAttributes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetMediaAttributes *p; - size_t k = sizeof(struct __tse__GetMediaAttributes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetMediaAttributes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetMediaAttributes); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetMediaAttributes, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetMediaAttributes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetMediaAttributes(struct soap *soap, const struct __tse__GetMediaAttributes *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetMediaAttributes(soap, tag ? tag : "-tse:GetMediaAttributes", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetMediaAttributes * SOAP_FMAC4 soap_get___tse__GetMediaAttributes(struct soap *soap, struct __tse__GetMediaAttributes *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetMediaAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetRecordingInformation(struct soap *soap, struct __tse__GetRecordingInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetRecordingInformation = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetRecordingInformation(struct soap *soap, const struct __tse__GetRecordingInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetRecordingInformation(soap, &a->tse__GetRecordingInformation); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetRecordingInformation(struct soap *soap, const char *tag, int id, const struct __tse__GetRecordingInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetRecordingInformation(soap, "tse:GetRecordingInformation", -1, &a->tse__GetRecordingInformation, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetRecordingInformation * SOAP_FMAC4 soap_in___tse__GetRecordingInformation(struct soap *soap, const char *tag, struct __tse__GetRecordingInformation *a, const char *type) -{ - size_t soap_flag_tse__GetRecordingInformation = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetRecordingInformation*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetRecordingInformation, sizeof(struct __tse__GetRecordingInformation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetRecordingInformation(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetRecordingInformation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetRecordingInformation(soap, "tse:GetRecordingInformation", &a->tse__GetRecordingInformation, "")) - { soap_flag_tse__GetRecordingInformation--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetRecordingInformation * SOAP_FMAC2 soap_instantiate___tse__GetRecordingInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetRecordingInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetRecordingInformation *p; - size_t k = sizeof(struct __tse__GetRecordingInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetRecordingInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetRecordingInformation); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetRecordingInformation, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetRecordingInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetRecordingInformation(struct soap *soap, const struct __tse__GetRecordingInformation *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetRecordingInformation(soap, tag ? tag : "-tse:GetRecordingInformation", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetRecordingInformation * SOAP_FMAC4 soap_get___tse__GetRecordingInformation(struct soap *soap, struct __tse__GetRecordingInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetRecordingInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetRecordingSummary(struct soap *soap, struct __tse__GetRecordingSummary *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetRecordingSummary = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetRecordingSummary(struct soap *soap, const struct __tse__GetRecordingSummary *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetRecordingSummary(soap, &a->tse__GetRecordingSummary); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetRecordingSummary(struct soap *soap, const char *tag, int id, const struct __tse__GetRecordingSummary *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetRecordingSummary(soap, "tse:GetRecordingSummary", -1, &a->tse__GetRecordingSummary, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetRecordingSummary * SOAP_FMAC4 soap_in___tse__GetRecordingSummary(struct soap *soap, const char *tag, struct __tse__GetRecordingSummary *a, const char *type) -{ - size_t soap_flag_tse__GetRecordingSummary = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetRecordingSummary*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetRecordingSummary, sizeof(struct __tse__GetRecordingSummary), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetRecordingSummary(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetRecordingSummary && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetRecordingSummary(soap, "tse:GetRecordingSummary", &a->tse__GetRecordingSummary, "")) - { soap_flag_tse__GetRecordingSummary--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetRecordingSummary * SOAP_FMAC2 soap_instantiate___tse__GetRecordingSummary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetRecordingSummary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetRecordingSummary *p; - size_t k = sizeof(struct __tse__GetRecordingSummary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetRecordingSummary, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetRecordingSummary); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetRecordingSummary, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetRecordingSummary location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetRecordingSummary(struct soap *soap, const struct __tse__GetRecordingSummary *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetRecordingSummary(soap, tag ? tag : "-tse:GetRecordingSummary", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetRecordingSummary * SOAP_FMAC4 soap_get___tse__GetRecordingSummary(struct soap *soap, struct __tse__GetRecordingSummary *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetRecordingSummary(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetServiceCapabilities(struct soap *soap, struct __tse__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tse__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetServiceCapabilities(struct soap *soap, const struct __tse__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tse__GetServiceCapabilities(soap, &a->tse__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __tse__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tse__GetServiceCapabilities(soap, "tse:GetServiceCapabilities", -1, &a->tse__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetServiceCapabilities * SOAP_FMAC4 soap_in___tse__GetServiceCapabilities(struct soap *soap, const char *tag, struct __tse__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_tse__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tse__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___tse__GetServiceCapabilities, sizeof(struct __tse__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tse__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tse__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tse__GetServiceCapabilities(soap, "tse:GetServiceCapabilities", &a->tse__GetServiceCapabilities, "")) - { soap_flag_tse__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tse__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tse__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tse__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tse__GetServiceCapabilities *p; - size_t k = sizeof(struct __tse__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tse__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tse__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tse__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tse__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetServiceCapabilities(struct soap *soap, const struct __tse__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___tse__GetServiceCapabilities(soap, tag ? tag : "-tse:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tse__GetServiceCapabilities * SOAP_FMAC4 soap_get___tse__GetServiceCapabilities(struct soap *soap, struct __tse__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___tse__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetReceiverState(struct soap *soap, struct __trv__GetReceiverState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__GetReceiverState = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetReceiverState(struct soap *soap, const struct __trv__GetReceiverState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__GetReceiverState(soap, &a->trv__GetReceiverState); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetReceiverState(struct soap *soap, const char *tag, int id, const struct __trv__GetReceiverState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__GetReceiverState(soap, "trv:GetReceiverState", -1, &a->trv__GetReceiverState, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetReceiverState * SOAP_FMAC4 soap_in___trv__GetReceiverState(struct soap *soap, const char *tag, struct __trv__GetReceiverState *a, const char *type) -{ - size_t soap_flag_trv__GetReceiverState = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__GetReceiverState*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__GetReceiverState, sizeof(struct __trv__GetReceiverState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__GetReceiverState(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__GetReceiverState && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__GetReceiverState(soap, "trv:GetReceiverState", &a->trv__GetReceiverState, "")) - { soap_flag_trv__GetReceiverState--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__GetReceiverState * SOAP_FMAC2 soap_instantiate___trv__GetReceiverState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__GetReceiverState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__GetReceiverState *p; - size_t k = sizeof(struct __trv__GetReceiverState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__GetReceiverState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__GetReceiverState); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__GetReceiverState, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__GetReceiverState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetReceiverState(struct soap *soap, const struct __trv__GetReceiverState *a, const char *tag, const char *type) -{ - if (soap_out___trv__GetReceiverState(soap, tag ? tag : "-trv:GetReceiverState", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetReceiverState * SOAP_FMAC4 soap_get___trv__GetReceiverState(struct soap *soap, struct __trv__GetReceiverState *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__GetReceiverState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__SetReceiverMode(struct soap *soap, struct __trv__SetReceiverMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__SetReceiverMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__SetReceiverMode(struct soap *soap, const struct __trv__SetReceiverMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__SetReceiverMode(soap, &a->trv__SetReceiverMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__SetReceiverMode(struct soap *soap, const char *tag, int id, const struct __trv__SetReceiverMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__SetReceiverMode(soap, "trv:SetReceiverMode", -1, &a->trv__SetReceiverMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__SetReceiverMode * SOAP_FMAC4 soap_in___trv__SetReceiverMode(struct soap *soap, const char *tag, struct __trv__SetReceiverMode *a, const char *type) -{ - size_t soap_flag_trv__SetReceiverMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__SetReceiverMode*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__SetReceiverMode, sizeof(struct __trv__SetReceiverMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__SetReceiverMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__SetReceiverMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__SetReceiverMode(soap, "trv:SetReceiverMode", &a->trv__SetReceiverMode, "")) - { soap_flag_trv__SetReceiverMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__SetReceiverMode * SOAP_FMAC2 soap_instantiate___trv__SetReceiverMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__SetReceiverMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__SetReceiverMode *p; - size_t k = sizeof(struct __trv__SetReceiverMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__SetReceiverMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__SetReceiverMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__SetReceiverMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__SetReceiverMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__SetReceiverMode(struct soap *soap, const struct __trv__SetReceiverMode *a, const char *tag, const char *type) -{ - if (soap_out___trv__SetReceiverMode(soap, tag ? tag : "-trv:SetReceiverMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__SetReceiverMode * SOAP_FMAC4 soap_get___trv__SetReceiverMode(struct soap *soap, struct __trv__SetReceiverMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__SetReceiverMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__ConfigureReceiver(struct soap *soap, struct __trv__ConfigureReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__ConfigureReceiver = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__ConfigureReceiver(struct soap *soap, const struct __trv__ConfigureReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__ConfigureReceiver(soap, &a->trv__ConfigureReceiver); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__ConfigureReceiver(struct soap *soap, const char *tag, int id, const struct __trv__ConfigureReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__ConfigureReceiver(soap, "trv:ConfigureReceiver", -1, &a->trv__ConfigureReceiver, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__ConfigureReceiver * SOAP_FMAC4 soap_in___trv__ConfigureReceiver(struct soap *soap, const char *tag, struct __trv__ConfigureReceiver *a, const char *type) -{ - size_t soap_flag_trv__ConfigureReceiver = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__ConfigureReceiver*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__ConfigureReceiver, sizeof(struct __trv__ConfigureReceiver), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__ConfigureReceiver(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__ConfigureReceiver && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__ConfigureReceiver(soap, "trv:ConfigureReceiver", &a->trv__ConfigureReceiver, "")) - { soap_flag_trv__ConfigureReceiver--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__ConfigureReceiver * SOAP_FMAC2 soap_instantiate___trv__ConfigureReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__ConfigureReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__ConfigureReceiver *p; - size_t k = sizeof(struct __trv__ConfigureReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__ConfigureReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__ConfigureReceiver); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__ConfigureReceiver, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__ConfigureReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__ConfigureReceiver(struct soap *soap, const struct __trv__ConfigureReceiver *a, const char *tag, const char *type) -{ - if (soap_out___trv__ConfigureReceiver(soap, tag ? tag : "-trv:ConfigureReceiver", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__ConfigureReceiver * SOAP_FMAC4 soap_get___trv__ConfigureReceiver(struct soap *soap, struct __trv__ConfigureReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__ConfigureReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__DeleteReceiver(struct soap *soap, struct __trv__DeleteReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__DeleteReceiver = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__DeleteReceiver(struct soap *soap, const struct __trv__DeleteReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__DeleteReceiver(soap, &a->trv__DeleteReceiver); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__DeleteReceiver(struct soap *soap, const char *tag, int id, const struct __trv__DeleteReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__DeleteReceiver(soap, "trv:DeleteReceiver", -1, &a->trv__DeleteReceiver, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__DeleteReceiver * SOAP_FMAC4 soap_in___trv__DeleteReceiver(struct soap *soap, const char *tag, struct __trv__DeleteReceiver *a, const char *type) -{ - size_t soap_flag_trv__DeleteReceiver = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__DeleteReceiver*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__DeleteReceiver, sizeof(struct __trv__DeleteReceiver), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__DeleteReceiver(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__DeleteReceiver && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__DeleteReceiver(soap, "trv:DeleteReceiver", &a->trv__DeleteReceiver, "")) - { soap_flag_trv__DeleteReceiver--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__DeleteReceiver * SOAP_FMAC2 soap_instantiate___trv__DeleteReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__DeleteReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__DeleteReceiver *p; - size_t k = sizeof(struct __trv__DeleteReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__DeleteReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__DeleteReceiver); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__DeleteReceiver, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__DeleteReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__DeleteReceiver(struct soap *soap, const struct __trv__DeleteReceiver *a, const char *tag, const char *type) -{ - if (soap_out___trv__DeleteReceiver(soap, tag ? tag : "-trv:DeleteReceiver", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__DeleteReceiver * SOAP_FMAC4 soap_get___trv__DeleteReceiver(struct soap *soap, struct __trv__DeleteReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__DeleteReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__CreateReceiver(struct soap *soap, struct __trv__CreateReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__CreateReceiver = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__CreateReceiver(struct soap *soap, const struct __trv__CreateReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__CreateReceiver(soap, &a->trv__CreateReceiver); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__CreateReceiver(struct soap *soap, const char *tag, int id, const struct __trv__CreateReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__CreateReceiver(soap, "trv:CreateReceiver", -1, &a->trv__CreateReceiver, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__CreateReceiver * SOAP_FMAC4 soap_in___trv__CreateReceiver(struct soap *soap, const char *tag, struct __trv__CreateReceiver *a, const char *type) -{ - size_t soap_flag_trv__CreateReceiver = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__CreateReceiver*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__CreateReceiver, sizeof(struct __trv__CreateReceiver), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__CreateReceiver(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__CreateReceiver && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__CreateReceiver(soap, "trv:CreateReceiver", &a->trv__CreateReceiver, "")) - { soap_flag_trv__CreateReceiver--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__CreateReceiver * SOAP_FMAC2 soap_instantiate___trv__CreateReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__CreateReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__CreateReceiver *p; - size_t k = sizeof(struct __trv__CreateReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__CreateReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__CreateReceiver); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__CreateReceiver, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__CreateReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__CreateReceiver(struct soap *soap, const struct __trv__CreateReceiver *a, const char *tag, const char *type) -{ - if (soap_out___trv__CreateReceiver(soap, tag ? tag : "-trv:CreateReceiver", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__CreateReceiver * SOAP_FMAC4 soap_get___trv__CreateReceiver(struct soap *soap, struct __trv__CreateReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__CreateReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetReceiver(struct soap *soap, struct __trv__GetReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__GetReceiver = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetReceiver(struct soap *soap, const struct __trv__GetReceiver *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__GetReceiver(soap, &a->trv__GetReceiver); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetReceiver(struct soap *soap, const char *tag, int id, const struct __trv__GetReceiver *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__GetReceiver(soap, "trv:GetReceiver", -1, &a->trv__GetReceiver, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetReceiver * SOAP_FMAC4 soap_in___trv__GetReceiver(struct soap *soap, const char *tag, struct __trv__GetReceiver *a, const char *type) -{ - size_t soap_flag_trv__GetReceiver = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__GetReceiver*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__GetReceiver, sizeof(struct __trv__GetReceiver), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__GetReceiver(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__GetReceiver && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__GetReceiver(soap, "trv:GetReceiver", &a->trv__GetReceiver, "")) - { soap_flag_trv__GetReceiver--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__GetReceiver * SOAP_FMAC2 soap_instantiate___trv__GetReceiver(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__GetReceiver(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__GetReceiver *p; - size_t k = sizeof(struct __trv__GetReceiver); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__GetReceiver, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__GetReceiver); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__GetReceiver, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__GetReceiver location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetReceiver(struct soap *soap, const struct __trv__GetReceiver *a, const char *tag, const char *type) -{ - if (soap_out___trv__GetReceiver(soap, tag ? tag : "-trv:GetReceiver", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetReceiver * SOAP_FMAC4 soap_get___trv__GetReceiver(struct soap *soap, struct __trv__GetReceiver *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__GetReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetReceivers(struct soap *soap, struct __trv__GetReceivers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__GetReceivers = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetReceivers(struct soap *soap, const struct __trv__GetReceivers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__GetReceivers(soap, &a->trv__GetReceivers); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetReceivers(struct soap *soap, const char *tag, int id, const struct __trv__GetReceivers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__GetReceivers(soap, "trv:GetReceivers", -1, &a->trv__GetReceivers, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetReceivers * SOAP_FMAC4 soap_in___trv__GetReceivers(struct soap *soap, const char *tag, struct __trv__GetReceivers *a, const char *type) -{ - size_t soap_flag_trv__GetReceivers = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__GetReceivers*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__GetReceivers, sizeof(struct __trv__GetReceivers), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__GetReceivers(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__GetReceivers && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__GetReceivers(soap, "trv:GetReceivers", &a->trv__GetReceivers, "")) - { soap_flag_trv__GetReceivers--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__GetReceivers * SOAP_FMAC2 soap_instantiate___trv__GetReceivers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__GetReceivers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__GetReceivers *p; - size_t k = sizeof(struct __trv__GetReceivers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__GetReceivers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__GetReceivers); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__GetReceivers, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__GetReceivers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetReceivers(struct soap *soap, const struct __trv__GetReceivers *a, const char *tag, const char *type) -{ - if (soap_out___trv__GetReceivers(soap, tag ? tag : "-trv:GetReceivers", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetReceivers * SOAP_FMAC4 soap_get___trv__GetReceivers(struct soap *soap, struct __trv__GetReceivers *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__GetReceivers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetServiceCapabilities(struct soap *soap, struct __trv__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trv__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetServiceCapabilities(struct soap *soap, const struct __trv__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trv__GetServiceCapabilities(soap, &a->trv__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __trv__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trv__GetServiceCapabilities(soap, "trv:GetServiceCapabilities", -1, &a->trv__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetServiceCapabilities * SOAP_FMAC4 soap_in___trv__GetServiceCapabilities(struct soap *soap, const char *tag, struct __trv__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_trv__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trv__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___trv__GetServiceCapabilities, sizeof(struct __trv__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trv__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trv__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trv__GetServiceCapabilities(soap, "trv:GetServiceCapabilities", &a->trv__GetServiceCapabilities, "")) - { soap_flag_trv__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trv__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trv__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trv__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trv__GetServiceCapabilities *p; - size_t k = sizeof(struct __trv__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trv__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trv__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trv__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trv__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetServiceCapabilities(struct soap *soap, const struct __trv__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___trv__GetServiceCapabilities(soap, tag ? tag : "-trv:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trv__GetServiceCapabilities * SOAP_FMAC4 soap_get___trv__GetServiceCapabilities(struct soap *soap, struct __trv__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___trv__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__DeleteOSD(struct soap *soap, struct __trt__DeleteOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__DeleteOSD = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__DeleteOSD(struct soap *soap, const struct __trt__DeleteOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__DeleteOSD(soap, &a->trt__DeleteOSD); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__DeleteOSD(struct soap *soap, const char *tag, int id, const struct __trt__DeleteOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__DeleteOSD(soap, "trt:DeleteOSD", -1, &a->trt__DeleteOSD, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__DeleteOSD * SOAP_FMAC4 soap_in___trt__DeleteOSD(struct soap *soap, const char *tag, struct __trt__DeleteOSD *a, const char *type) -{ - size_t soap_flag_trt__DeleteOSD = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__DeleteOSD*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__DeleteOSD, sizeof(struct __trt__DeleteOSD), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__DeleteOSD(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__DeleteOSD && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__DeleteOSD(soap, "trt:DeleteOSD", &a->trt__DeleteOSD, "")) - { soap_flag_trt__DeleteOSD--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__DeleteOSD * SOAP_FMAC2 soap_instantiate___trt__DeleteOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__DeleteOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__DeleteOSD *p; - size_t k = sizeof(struct __trt__DeleteOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__DeleteOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__DeleteOSD); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__DeleteOSD, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__DeleteOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__DeleteOSD(struct soap *soap, const struct __trt__DeleteOSD *a, const char *tag, const char *type) -{ - if (soap_out___trt__DeleteOSD(soap, tag ? tag : "-trt:DeleteOSD", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__DeleteOSD * SOAP_FMAC4 soap_get___trt__DeleteOSD(struct soap *soap, struct __trt__DeleteOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__DeleteOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__CreateOSD(struct soap *soap, struct __trt__CreateOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__CreateOSD = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__CreateOSD(struct soap *soap, const struct __trt__CreateOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__CreateOSD(soap, &a->trt__CreateOSD); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__CreateOSD(struct soap *soap, const char *tag, int id, const struct __trt__CreateOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__CreateOSD(soap, "trt:CreateOSD", -1, &a->trt__CreateOSD, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__CreateOSD * SOAP_FMAC4 soap_in___trt__CreateOSD(struct soap *soap, const char *tag, struct __trt__CreateOSD *a, const char *type) -{ - size_t soap_flag_trt__CreateOSD = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__CreateOSD*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__CreateOSD, sizeof(struct __trt__CreateOSD), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__CreateOSD(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__CreateOSD && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__CreateOSD(soap, "trt:CreateOSD", &a->trt__CreateOSD, "")) - { soap_flag_trt__CreateOSD--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__CreateOSD * SOAP_FMAC2 soap_instantiate___trt__CreateOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__CreateOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__CreateOSD *p; - size_t k = sizeof(struct __trt__CreateOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__CreateOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__CreateOSD); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__CreateOSD, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__CreateOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__CreateOSD(struct soap *soap, const struct __trt__CreateOSD *a, const char *tag, const char *type) -{ - if (soap_out___trt__CreateOSD(soap, tag ? tag : "-trt:CreateOSD", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__CreateOSD * SOAP_FMAC4 soap_get___trt__CreateOSD(struct soap *soap, struct __trt__CreateOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__CreateOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetOSD(struct soap *soap, struct __trt__SetOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetOSD = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetOSD(struct soap *soap, const struct __trt__SetOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetOSD(soap, &a->trt__SetOSD); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetOSD(struct soap *soap, const char *tag, int id, const struct __trt__SetOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetOSD(soap, "trt:SetOSD", -1, &a->trt__SetOSD, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetOSD * SOAP_FMAC4 soap_in___trt__SetOSD(struct soap *soap, const char *tag, struct __trt__SetOSD *a, const char *type) -{ - size_t soap_flag_trt__SetOSD = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetOSD*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetOSD, sizeof(struct __trt__SetOSD), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetOSD(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetOSD && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetOSD(soap, "trt:SetOSD", &a->trt__SetOSD, "")) - { soap_flag_trt__SetOSD--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetOSD * SOAP_FMAC2 soap_instantiate___trt__SetOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetOSD *p; - size_t k = sizeof(struct __trt__SetOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetOSD); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetOSD, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetOSD(struct soap *soap, const struct __trt__SetOSD *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetOSD(soap, tag ? tag : "-trt:SetOSD", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetOSD * SOAP_FMAC4 soap_get___trt__SetOSD(struct soap *soap, struct __trt__SetOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetOSDOptions(struct soap *soap, struct __trt__GetOSDOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetOSDOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetOSDOptions(struct soap *soap, const struct __trt__GetOSDOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetOSDOptions(soap, &a->trt__GetOSDOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetOSDOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetOSDOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetOSDOptions(soap, "trt:GetOSDOptions", -1, &a->trt__GetOSDOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetOSDOptions * SOAP_FMAC4 soap_in___trt__GetOSDOptions(struct soap *soap, const char *tag, struct __trt__GetOSDOptions *a, const char *type) -{ - size_t soap_flag_trt__GetOSDOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetOSDOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetOSDOptions, sizeof(struct __trt__GetOSDOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetOSDOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetOSDOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetOSDOptions(soap, "trt:GetOSDOptions", &a->trt__GetOSDOptions, "")) - { soap_flag_trt__GetOSDOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetOSDOptions * SOAP_FMAC2 soap_instantiate___trt__GetOSDOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetOSDOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetOSDOptions *p; - size_t k = sizeof(struct __trt__GetOSDOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetOSDOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetOSDOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetOSDOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetOSDOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetOSDOptions(struct soap *soap, const struct __trt__GetOSDOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetOSDOptions(soap, tag ? tag : "-trt:GetOSDOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetOSDOptions * SOAP_FMAC4 soap_get___trt__GetOSDOptions(struct soap *soap, struct __trt__GetOSDOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetOSDOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetOSD(struct soap *soap, struct __trt__GetOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetOSD = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetOSD(struct soap *soap, const struct __trt__GetOSD *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetOSD(soap, &a->trt__GetOSD); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetOSD(struct soap *soap, const char *tag, int id, const struct __trt__GetOSD *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetOSD(soap, "trt:GetOSD", -1, &a->trt__GetOSD, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetOSD * SOAP_FMAC4 soap_in___trt__GetOSD(struct soap *soap, const char *tag, struct __trt__GetOSD *a, const char *type) -{ - size_t soap_flag_trt__GetOSD = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetOSD*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetOSD, sizeof(struct __trt__GetOSD), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetOSD(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetOSD && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetOSD(soap, "trt:GetOSD", &a->trt__GetOSD, "")) - { soap_flag_trt__GetOSD--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetOSD * SOAP_FMAC2 soap_instantiate___trt__GetOSD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetOSD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetOSD *p; - size_t k = sizeof(struct __trt__GetOSD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetOSD, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetOSD); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetOSD, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetOSD location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetOSD(struct soap *soap, const struct __trt__GetOSD *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetOSD(soap, tag ? tag : "-trt:GetOSD", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetOSD * SOAP_FMAC4 soap_get___trt__GetOSD(struct soap *soap, struct __trt__GetOSD *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetOSDs(struct soap *soap, struct __trt__GetOSDs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetOSDs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetOSDs(struct soap *soap, const struct __trt__GetOSDs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetOSDs(soap, &a->trt__GetOSDs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetOSDs(struct soap *soap, const char *tag, int id, const struct __trt__GetOSDs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetOSDs(soap, "trt:GetOSDs", -1, &a->trt__GetOSDs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetOSDs * SOAP_FMAC4 soap_in___trt__GetOSDs(struct soap *soap, const char *tag, struct __trt__GetOSDs *a, const char *type) -{ - size_t soap_flag_trt__GetOSDs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetOSDs*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetOSDs, sizeof(struct __trt__GetOSDs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetOSDs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetOSDs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetOSDs(soap, "trt:GetOSDs", &a->trt__GetOSDs, "")) - { soap_flag_trt__GetOSDs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetOSDs * SOAP_FMAC2 soap_instantiate___trt__GetOSDs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetOSDs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetOSDs *p; - size_t k = sizeof(struct __trt__GetOSDs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetOSDs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetOSDs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetOSDs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetOSDs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetOSDs(struct soap *soap, const struct __trt__GetOSDs *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetOSDs(soap, tag ? tag : "-trt:GetOSDs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetOSDs * SOAP_FMAC4 soap_get___trt__GetOSDs(struct soap *soap, struct __trt__GetOSDs *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetOSDs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoSourceMode(struct soap *soap, struct __trt__SetVideoSourceMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetVideoSourceMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoSourceMode(struct soap *soap, const struct __trt__SetVideoSourceMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetVideoSourceMode(soap, &a->trt__SetVideoSourceMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoSourceMode(struct soap *soap, const char *tag, int id, const struct __trt__SetVideoSourceMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetVideoSourceMode(soap, "trt:SetVideoSourceMode", -1, &a->trt__SetVideoSourceMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoSourceMode * SOAP_FMAC4 soap_in___trt__SetVideoSourceMode(struct soap *soap, const char *tag, struct __trt__SetVideoSourceMode *a, const char *type) -{ - size_t soap_flag_trt__SetVideoSourceMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetVideoSourceMode*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetVideoSourceMode, sizeof(struct __trt__SetVideoSourceMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetVideoSourceMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetVideoSourceMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetVideoSourceMode(soap, "trt:SetVideoSourceMode", &a->trt__SetVideoSourceMode, "")) - { soap_flag_trt__SetVideoSourceMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetVideoSourceMode * SOAP_FMAC2 soap_instantiate___trt__SetVideoSourceMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetVideoSourceMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetVideoSourceMode *p; - size_t k = sizeof(struct __trt__SetVideoSourceMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetVideoSourceMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetVideoSourceMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetVideoSourceMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetVideoSourceMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoSourceMode(struct soap *soap, const struct __trt__SetVideoSourceMode *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetVideoSourceMode(soap, tag ? tag : "-trt:SetVideoSourceMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoSourceMode * SOAP_FMAC4 soap_get___trt__SetVideoSourceMode(struct soap *soap, struct __trt__SetVideoSourceMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetVideoSourceMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceModes(struct soap *soap, struct __trt__GetVideoSourceModes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoSourceModes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceModes(struct soap *soap, const struct __trt__GetVideoSourceModes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoSourceModes(soap, &a->trt__GetVideoSourceModes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceModes(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoSourceModes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoSourceModes(soap, "trt:GetVideoSourceModes", -1, &a->trt__GetVideoSourceModes, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceModes * SOAP_FMAC4 soap_in___trt__GetVideoSourceModes(struct soap *soap, const char *tag, struct __trt__GetVideoSourceModes *a, const char *type) -{ - size_t soap_flag_trt__GetVideoSourceModes = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoSourceModes*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoSourceModes, sizeof(struct __trt__GetVideoSourceModes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoSourceModes(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoSourceModes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoSourceModes(soap, "trt:GetVideoSourceModes", &a->trt__GetVideoSourceModes, "")) - { soap_flag_trt__GetVideoSourceModes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoSourceModes * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceModes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoSourceModes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoSourceModes *p; - size_t k = sizeof(struct __trt__GetVideoSourceModes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoSourceModes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoSourceModes); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoSourceModes, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoSourceModes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceModes(struct soap *soap, const struct __trt__GetVideoSourceModes *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoSourceModes(soap, tag ? tag : "-trt:GetVideoSourceModes", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceModes * SOAP_FMAC4 soap_get___trt__GetVideoSourceModes(struct soap *soap, struct __trt__GetVideoSourceModes *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoSourceModes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetSnapshotUri(struct soap *soap, struct __trt__GetSnapshotUri *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetSnapshotUri = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetSnapshotUri(struct soap *soap, const struct __trt__GetSnapshotUri *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetSnapshotUri(soap, &a->trt__GetSnapshotUri); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetSnapshotUri(struct soap *soap, const char *tag, int id, const struct __trt__GetSnapshotUri *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetSnapshotUri(soap, "trt:GetSnapshotUri", -1, &a->trt__GetSnapshotUri, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetSnapshotUri * SOAP_FMAC4 soap_in___trt__GetSnapshotUri(struct soap *soap, const char *tag, struct __trt__GetSnapshotUri *a, const char *type) -{ - size_t soap_flag_trt__GetSnapshotUri = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetSnapshotUri*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetSnapshotUri, sizeof(struct __trt__GetSnapshotUri), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetSnapshotUri(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetSnapshotUri && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetSnapshotUri(soap, "trt:GetSnapshotUri", &a->trt__GetSnapshotUri, "")) - { soap_flag_trt__GetSnapshotUri--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetSnapshotUri * SOAP_FMAC2 soap_instantiate___trt__GetSnapshotUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetSnapshotUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetSnapshotUri *p; - size_t k = sizeof(struct __trt__GetSnapshotUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetSnapshotUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetSnapshotUri); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetSnapshotUri, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetSnapshotUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetSnapshotUri(struct soap *soap, const struct __trt__GetSnapshotUri *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetSnapshotUri(soap, tag ? tag : "-trt:GetSnapshotUri", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetSnapshotUri * SOAP_FMAC4 soap_get___trt__GetSnapshotUri(struct soap *soap, struct __trt__GetSnapshotUri *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetSnapshotUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetSynchronizationPoint(struct soap *soap, struct __trt__SetSynchronizationPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetSynchronizationPoint = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetSynchronizationPoint(struct soap *soap, const struct __trt__SetSynchronizationPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetSynchronizationPoint(soap, &a->trt__SetSynchronizationPoint); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetSynchronizationPoint(struct soap *soap, const char *tag, int id, const struct __trt__SetSynchronizationPoint *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetSynchronizationPoint(soap, "trt:SetSynchronizationPoint", -1, &a->trt__SetSynchronizationPoint, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetSynchronizationPoint * SOAP_FMAC4 soap_in___trt__SetSynchronizationPoint(struct soap *soap, const char *tag, struct __trt__SetSynchronizationPoint *a, const char *type) -{ - size_t soap_flag_trt__SetSynchronizationPoint = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetSynchronizationPoint*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetSynchronizationPoint, sizeof(struct __trt__SetSynchronizationPoint), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetSynchronizationPoint(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetSynchronizationPoint && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetSynchronizationPoint(soap, "trt:SetSynchronizationPoint", &a->trt__SetSynchronizationPoint, "")) - { soap_flag_trt__SetSynchronizationPoint--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate___trt__SetSynchronizationPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetSynchronizationPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetSynchronizationPoint *p; - size_t k = sizeof(struct __trt__SetSynchronizationPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetSynchronizationPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetSynchronizationPoint); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetSynchronizationPoint, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetSynchronizationPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetSynchronizationPoint(struct soap *soap, const struct __trt__SetSynchronizationPoint *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetSynchronizationPoint(soap, tag ? tag : "-trt:SetSynchronizationPoint", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetSynchronizationPoint * SOAP_FMAC4 soap_get___trt__SetSynchronizationPoint(struct soap *soap, struct __trt__SetSynchronizationPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetSynchronizationPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__StopMulticastStreaming(struct soap *soap, struct __trt__StopMulticastStreaming *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__StopMulticastStreaming = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__StopMulticastStreaming(struct soap *soap, const struct __trt__StopMulticastStreaming *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__StopMulticastStreaming(soap, &a->trt__StopMulticastStreaming); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__StopMulticastStreaming(struct soap *soap, const char *tag, int id, const struct __trt__StopMulticastStreaming *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__StopMulticastStreaming(soap, "trt:StopMulticastStreaming", -1, &a->trt__StopMulticastStreaming, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__StopMulticastStreaming * SOAP_FMAC4 soap_in___trt__StopMulticastStreaming(struct soap *soap, const char *tag, struct __trt__StopMulticastStreaming *a, const char *type) -{ - size_t soap_flag_trt__StopMulticastStreaming = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__StopMulticastStreaming*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__StopMulticastStreaming, sizeof(struct __trt__StopMulticastStreaming), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__StopMulticastStreaming(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__StopMulticastStreaming && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__StopMulticastStreaming(soap, "trt:StopMulticastStreaming", &a->trt__StopMulticastStreaming, "")) - { soap_flag_trt__StopMulticastStreaming--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__StopMulticastStreaming * SOAP_FMAC2 soap_instantiate___trt__StopMulticastStreaming(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__StopMulticastStreaming(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__StopMulticastStreaming *p; - size_t k = sizeof(struct __trt__StopMulticastStreaming); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__StopMulticastStreaming, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__StopMulticastStreaming); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__StopMulticastStreaming, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__StopMulticastStreaming location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__StopMulticastStreaming(struct soap *soap, const struct __trt__StopMulticastStreaming *a, const char *tag, const char *type) -{ - if (soap_out___trt__StopMulticastStreaming(soap, tag ? tag : "-trt:StopMulticastStreaming", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__StopMulticastStreaming * SOAP_FMAC4 soap_get___trt__StopMulticastStreaming(struct soap *soap, struct __trt__StopMulticastStreaming *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__StopMulticastStreaming(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__StartMulticastStreaming(struct soap *soap, struct __trt__StartMulticastStreaming *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__StartMulticastStreaming = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__StartMulticastStreaming(struct soap *soap, const struct __trt__StartMulticastStreaming *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__StartMulticastStreaming(soap, &a->trt__StartMulticastStreaming); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__StartMulticastStreaming(struct soap *soap, const char *tag, int id, const struct __trt__StartMulticastStreaming *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__StartMulticastStreaming(soap, "trt:StartMulticastStreaming", -1, &a->trt__StartMulticastStreaming, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__StartMulticastStreaming * SOAP_FMAC4 soap_in___trt__StartMulticastStreaming(struct soap *soap, const char *tag, struct __trt__StartMulticastStreaming *a, const char *type) -{ - size_t soap_flag_trt__StartMulticastStreaming = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__StartMulticastStreaming*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__StartMulticastStreaming, sizeof(struct __trt__StartMulticastStreaming), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__StartMulticastStreaming(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__StartMulticastStreaming && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__StartMulticastStreaming(soap, "trt:StartMulticastStreaming", &a->trt__StartMulticastStreaming, "")) - { soap_flag_trt__StartMulticastStreaming--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__StartMulticastStreaming * SOAP_FMAC2 soap_instantiate___trt__StartMulticastStreaming(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__StartMulticastStreaming(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__StartMulticastStreaming *p; - size_t k = sizeof(struct __trt__StartMulticastStreaming); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__StartMulticastStreaming, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__StartMulticastStreaming); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__StartMulticastStreaming, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__StartMulticastStreaming location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__StartMulticastStreaming(struct soap *soap, const struct __trt__StartMulticastStreaming *a, const char *tag, const char *type) -{ - if (soap_out___trt__StartMulticastStreaming(soap, tag ? tag : "-trt:StartMulticastStreaming", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__StartMulticastStreaming * SOAP_FMAC4 soap_get___trt__StartMulticastStreaming(struct soap *soap, struct __trt__StartMulticastStreaming *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__StartMulticastStreaming(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetStreamUri(struct soap *soap, struct __trt__GetStreamUri *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetStreamUri = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetStreamUri(struct soap *soap, const struct __trt__GetStreamUri *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetStreamUri(soap, &a->trt__GetStreamUri); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetStreamUri(struct soap *soap, const char *tag, int id, const struct __trt__GetStreamUri *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetStreamUri(soap, "trt:GetStreamUri", -1, &a->trt__GetStreamUri, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetStreamUri * SOAP_FMAC4 soap_in___trt__GetStreamUri(struct soap *soap, const char *tag, struct __trt__GetStreamUri *a, const char *type) -{ - size_t soap_flag_trt__GetStreamUri = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetStreamUri*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetStreamUri, sizeof(struct __trt__GetStreamUri), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetStreamUri(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetStreamUri && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetStreamUri(soap, "trt:GetStreamUri", &a->trt__GetStreamUri, "")) - { soap_flag_trt__GetStreamUri--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetStreamUri * SOAP_FMAC2 soap_instantiate___trt__GetStreamUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetStreamUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetStreamUri *p; - size_t k = sizeof(struct __trt__GetStreamUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetStreamUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetStreamUri); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetStreamUri, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetStreamUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetStreamUri(struct soap *soap, const struct __trt__GetStreamUri *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetStreamUri(soap, tag ? tag : "-trt:GetStreamUri", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetStreamUri * SOAP_FMAC4 soap_get___trt__GetStreamUri(struct soap *soap, struct __trt__GetStreamUri *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetStreamUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetGuaranteedNumberOfVideoEncoderInstances = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, &a->trt__GetGuaranteedNumberOfVideoEncoderInstances); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *tag, int id, const struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, "trt:GetGuaranteedNumberOfVideoEncoderInstances", -1, &a->trt__GetGuaranteedNumberOfVideoEncoderInstances, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_in___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *tag, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *a, const char *type) -{ - size_t soap_flag_trt__GetGuaranteedNumberOfVideoEncoderInstances = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetGuaranteedNumberOfVideoEncoderInstances*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances, sizeof(struct __trt__GetGuaranteedNumberOfVideoEncoderInstances), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetGuaranteedNumberOfVideoEncoderInstances && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, "trt:GetGuaranteedNumberOfVideoEncoderInstances", &a->trt__GetGuaranteedNumberOfVideoEncoderInstances, "")) - { soap_flag_trt__GetGuaranteedNumberOfVideoEncoderInstances--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC2 soap_instantiate___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetGuaranteedNumberOfVideoEncoderInstances(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *p; - size_t k = sizeof(struct __trt__GetGuaranteedNumberOfVideoEncoderInstances); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetGuaranteedNumberOfVideoEncoderInstances location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag ? tag : "-trt:GetGuaranteedNumberOfVideoEncoderInstances", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_get___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioDecoderConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioDecoderConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const struct __trt__GetAudioDecoderConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, &a->trt__GetAudioDecoderConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioDecoderConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, "trt:GetAudioDecoderConfigurationOptions", -1, &a->trt__GetAudioDecoderConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *tag, struct __trt__GetAudioDecoderConfigurationOptions *a, const char *type) -{ - size_t soap_flag_trt__GetAudioDecoderConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioDecoderConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions, sizeof(struct __trt__GetAudioDecoderConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioDecoderConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioDecoderConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, "trt:GetAudioDecoderConfigurationOptions", &a->trt__GetAudioDecoderConfigurationOptions, "")) - { soap_flag_trt__GetAudioDecoderConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioDecoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioDecoderConfigurationOptions *p; - size_t k = sizeof(struct __trt__GetAudioDecoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioDecoderConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioDecoderConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioDecoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const struct __trt__GetAudioDecoderConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioDecoderConfigurationOptions(soap, tag ? tag : "-trt:GetAudioDecoderConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioDecoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioDecoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputConfigurationOptions(struct soap *soap, struct __trt__GetAudioOutputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioOutputConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const struct __trt__GetAudioOutputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, &a->trt__GetAudioOutputConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioOutputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, "trt:GetAudioOutputConfigurationOptions", -1, &a->trt__GetAudioOutputConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, struct __trt__GetAudioOutputConfigurationOptions *a, const char *type) -{ - size_t soap_flag_trt__GetAudioOutputConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioOutputConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioOutputConfigurationOptions, sizeof(struct __trt__GetAudioOutputConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioOutputConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioOutputConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, "trt:GetAudioOutputConfigurationOptions", &a->trt__GetAudioOutputConfigurationOptions, "")) - { soap_flag_trt__GetAudioOutputConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioOutputConfigurationOptions *p; - size_t k = sizeof(struct __trt__GetAudioOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioOutputConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioOutputConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const struct __trt__GetAudioOutputConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioOutputConfigurationOptions(soap, tag ? tag : "-trt:GetAudioOutputConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioOutputConfigurationOptions(struct soap *soap, struct __trt__GetAudioOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetMetadataConfigurationOptions(struct soap *soap, struct __trt__GetMetadataConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetMetadataConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetMetadataConfigurationOptions(struct soap *soap, const struct __trt__GetMetadataConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetMetadataConfigurationOptions(soap, &a->trt__GetMetadataConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetMetadataConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetMetadataConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetMetadataConfigurationOptions(soap, "trt:GetMetadataConfigurationOptions", -1, &a->trt__GetMetadataConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetMetadataConfigurationOptions(struct soap *soap, const char *tag, struct __trt__GetMetadataConfigurationOptions *a, const char *type) -{ - size_t soap_flag_trt__GetMetadataConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetMetadataConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetMetadataConfigurationOptions, sizeof(struct __trt__GetMetadataConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetMetadataConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetMetadataConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetMetadataConfigurationOptions(soap, "trt:GetMetadataConfigurationOptions", &a->trt__GetMetadataConfigurationOptions, "")) - { soap_flag_trt__GetMetadataConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetMetadataConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetMetadataConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetMetadataConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetMetadataConfigurationOptions *p; - size_t k = sizeof(struct __trt__GetMetadataConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetMetadataConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetMetadataConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetMetadataConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetMetadataConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetMetadataConfigurationOptions(struct soap *soap, const struct __trt__GetMetadataConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetMetadataConfigurationOptions(soap, tag ? tag : "-trt:GetMetadataConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetMetadataConfigurationOptions(struct soap *soap, struct __trt__GetMetadataConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetMetadataConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioEncoderConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioEncoderConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const struct __trt__GetAudioEncoderConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, &a->trt__GetAudioEncoderConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioEncoderConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, "trt:GetAudioEncoderConfigurationOptions", -1, &a->trt__GetAudioEncoderConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *tag, struct __trt__GetAudioEncoderConfigurationOptions *a, const char *type) -{ - size_t soap_flag_trt__GetAudioEncoderConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioEncoderConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions, sizeof(struct __trt__GetAudioEncoderConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioEncoderConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioEncoderConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, "trt:GetAudioEncoderConfigurationOptions", &a->trt__GetAudioEncoderConfigurationOptions, "")) - { soap_flag_trt__GetAudioEncoderConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioEncoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioEncoderConfigurationOptions *p; - size_t k = sizeof(struct __trt__GetAudioEncoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioEncoderConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioEncoderConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioEncoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const struct __trt__GetAudioEncoderConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioEncoderConfigurationOptions(soap, tag ? tag : "-trt:GetAudioEncoderConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioEncoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSourceConfigurationOptions(struct soap *soap, struct __trt__GetAudioSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioSourceConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const struct __trt__GetAudioSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, &a->trt__GetAudioSourceConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, "trt:GetAudioSourceConfigurationOptions", -1, &a->trt__GetAudioSourceConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, struct __trt__GetAudioSourceConfigurationOptions *a, const char *type) -{ - size_t soap_flag_trt__GetAudioSourceConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioSourceConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioSourceConfigurationOptions, sizeof(struct __trt__GetAudioSourceConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioSourceConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioSourceConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, "trt:GetAudioSourceConfigurationOptions", &a->trt__GetAudioSourceConfigurationOptions, "")) - { soap_flag_trt__GetAudioSourceConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioSourceConfigurationOptions *p; - size_t k = sizeof(struct __trt__GetAudioSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioSourceConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioSourceConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const struct __trt__GetAudioSourceConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioSourceConfigurationOptions(soap, tag ? tag : "-trt:GetAudioSourceConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioSourceConfigurationOptions(struct soap *soap, struct __trt__GetAudioSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, struct __trt__GetVideoEncoderConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoEncoderConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const struct __trt__GetVideoEncoderConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, &a->trt__GetVideoEncoderConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoEncoderConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, "trt:GetVideoEncoderConfigurationOptions", -1, &a->trt__GetVideoEncoderConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *tag, struct __trt__GetVideoEncoderConfigurationOptions *a, const char *type) -{ - size_t soap_flag_trt__GetVideoEncoderConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoEncoderConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions, sizeof(struct __trt__GetVideoEncoderConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoEncoderConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoEncoderConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, "trt:GetVideoEncoderConfigurationOptions", &a->trt__GetVideoEncoderConfigurationOptions, "")) - { soap_flag_trt__GetVideoEncoderConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoEncoderConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoEncoderConfigurationOptions *p; - size_t k = sizeof(struct __trt__GetVideoEncoderConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoEncoderConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoEncoderConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoEncoderConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const struct __trt__GetVideoEncoderConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoEncoderConfigurationOptions(soap, tag ? tag : "-trt:GetVideoEncoderConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, struct __trt__GetVideoEncoderConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceConfigurationOptions(struct soap *soap, struct __trt__GetVideoSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoSourceConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const struct __trt__GetVideoSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, &a->trt__GetVideoSourceConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, "trt:GetVideoSourceConfigurationOptions", -1, &a->trt__GetVideoSourceConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, struct __trt__GetVideoSourceConfigurationOptions *a, const char *type) -{ - size_t soap_flag_trt__GetVideoSourceConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoSourceConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoSourceConfigurationOptions, sizeof(struct __trt__GetVideoSourceConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoSourceConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoSourceConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, "trt:GetVideoSourceConfigurationOptions", &a->trt__GetVideoSourceConfigurationOptions, "")) - { soap_flag_trt__GetVideoSourceConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoSourceConfigurationOptions *p; - size_t k = sizeof(struct __trt__GetVideoSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoSourceConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoSourceConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const struct __trt__GetVideoSourceConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoSourceConfigurationOptions(soap, tag ? tag : "-trt:GetVideoSourceConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetVideoSourceConfigurationOptions(struct soap *soap, struct __trt__GetVideoSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioDecoderConfiguration(struct soap *soap, struct __trt__SetAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetAudioDecoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioDecoderConfiguration(struct soap *soap, const struct __trt__SetAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetAudioDecoderConfiguration(soap, &a->trt__SetAudioDecoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetAudioDecoderConfiguration(soap, "trt:SetAudioDecoderConfiguration", -1, &a->trt__SetAudioDecoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioDecoderConfiguration(struct soap *soap, const char *tag, struct __trt__SetAudioDecoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetAudioDecoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetAudioDecoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetAudioDecoderConfiguration, sizeof(struct __trt__SetAudioDecoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetAudioDecoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetAudioDecoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetAudioDecoderConfiguration(soap, "trt:SetAudioDecoderConfiguration", &a->trt__SetAudioDecoderConfiguration, "")) - { soap_flag_trt__SetAudioDecoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetAudioDecoderConfiguration *p; - size_t k = sizeof(struct __trt__SetAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetAudioDecoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetAudioDecoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioDecoderConfiguration(struct soap *soap, const struct __trt__SetAudioDecoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetAudioDecoderConfiguration(soap, tag ? tag : "-trt:SetAudioDecoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioDecoderConfiguration(struct soap *soap, struct __trt__SetAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioOutputConfiguration(struct soap *soap, struct __trt__SetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetAudioOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioOutputConfiguration(struct soap *soap, const struct __trt__SetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetAudioOutputConfiguration(soap, &a->trt__SetAudioOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetAudioOutputConfiguration(soap, "trt:SetAudioOutputConfiguration", -1, &a->trt__SetAudioOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioOutputConfiguration(struct soap *soap, const char *tag, struct __trt__SetAudioOutputConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetAudioOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetAudioOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetAudioOutputConfiguration, sizeof(struct __trt__SetAudioOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetAudioOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetAudioOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetAudioOutputConfiguration(soap, "trt:SetAudioOutputConfiguration", &a->trt__SetAudioOutputConfiguration, "")) - { soap_flag_trt__SetAudioOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetAudioOutputConfiguration *p; - size_t k = sizeof(struct __trt__SetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetAudioOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetAudioOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioOutputConfiguration(struct soap *soap, const struct __trt__SetAudioOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetAudioOutputConfiguration(soap, tag ? tag : "-trt:SetAudioOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioOutputConfiguration(struct soap *soap, struct __trt__SetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetMetadataConfiguration(struct soap *soap, struct __trt__SetMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetMetadataConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetMetadataConfiguration(struct soap *soap, const struct __trt__SetMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetMetadataConfiguration(soap, &a->trt__SetMetadataConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetMetadataConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetMetadataConfiguration(soap, "trt:SetMetadataConfiguration", -1, &a->trt__SetMetadataConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetMetadataConfiguration * SOAP_FMAC4 soap_in___trt__SetMetadataConfiguration(struct soap *soap, const char *tag, struct __trt__SetMetadataConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetMetadataConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetMetadataConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetMetadataConfiguration, sizeof(struct __trt__SetMetadataConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetMetadataConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetMetadataConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetMetadataConfiguration(soap, "trt:SetMetadataConfiguration", &a->trt__SetMetadataConfiguration, "")) - { soap_flag_trt__SetMetadataConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetMetadataConfiguration *p; - size_t k = sizeof(struct __trt__SetMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetMetadataConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetMetadataConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetMetadataConfiguration(struct soap *soap, const struct __trt__SetMetadataConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetMetadataConfiguration(soap, tag ? tag : "-trt:SetMetadataConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetMetadataConfiguration * SOAP_FMAC4 soap_get___trt__SetMetadataConfiguration(struct soap *soap, struct __trt__SetMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__SetVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetVideoAnalyticsConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__SetVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, &a->trt__SetVideoAnalyticsConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, "trt:SetVideoAnalyticsConfiguration", -1, &a->trt__SetVideoAnalyticsConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, struct __trt__SetVideoAnalyticsConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetVideoAnalyticsConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetVideoAnalyticsConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetVideoAnalyticsConfiguration, sizeof(struct __trt__SetVideoAnalyticsConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetVideoAnalyticsConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetVideoAnalyticsConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, "trt:SetVideoAnalyticsConfiguration", &a->trt__SetVideoAnalyticsConfiguration, "")) - { soap_flag_trt__SetVideoAnalyticsConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetVideoAnalyticsConfiguration *p; - size_t k = sizeof(struct __trt__SetVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetVideoAnalyticsConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetVideoAnalyticsConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__SetVideoAnalyticsConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetVideoAnalyticsConfiguration(soap, tag ? tag : "-trt:SetVideoAnalyticsConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__SetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__SetVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioEncoderConfiguration(struct soap *soap, struct __trt__SetAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetAudioEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioEncoderConfiguration(struct soap *soap, const struct __trt__SetAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetAudioEncoderConfiguration(soap, &a->trt__SetAudioEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetAudioEncoderConfiguration(soap, "trt:SetAudioEncoderConfiguration", -1, &a->trt__SetAudioEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__SetAudioEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetAudioEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetAudioEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetAudioEncoderConfiguration, sizeof(struct __trt__SetAudioEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetAudioEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetAudioEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetAudioEncoderConfiguration(soap, "trt:SetAudioEncoderConfiguration", &a->trt__SetAudioEncoderConfiguration, "")) - { soap_flag_trt__SetAudioEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetAudioEncoderConfiguration *p; - size_t k = sizeof(struct __trt__SetAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetAudioEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetAudioEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioEncoderConfiguration(struct soap *soap, const struct __trt__SetAudioEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetAudioEncoderConfiguration(soap, tag ? tag : "-trt:SetAudioEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioEncoderConfiguration(struct soap *soap, struct __trt__SetAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioSourceConfiguration(struct soap *soap, struct __trt__SetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetAudioSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioSourceConfiguration(struct soap *soap, const struct __trt__SetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetAudioSourceConfiguration(soap, &a->trt__SetAudioSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetAudioSourceConfiguration(soap, "trt:SetAudioSourceConfiguration", -1, &a->trt__SetAudioSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioSourceConfiguration(struct soap *soap, const char *tag, struct __trt__SetAudioSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetAudioSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetAudioSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetAudioSourceConfiguration, sizeof(struct __trt__SetAudioSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetAudioSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetAudioSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetAudioSourceConfiguration(soap, "trt:SetAudioSourceConfiguration", &a->trt__SetAudioSourceConfiguration, "")) - { soap_flag_trt__SetAudioSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetAudioSourceConfiguration *p; - size_t k = sizeof(struct __trt__SetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetAudioSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetAudioSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioSourceConfiguration(struct soap *soap, const struct __trt__SetAudioSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetAudioSourceConfiguration(soap, tag ? tag : "-trt:SetAudioSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioSourceConfiguration(struct soap *soap, struct __trt__SetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoEncoderConfiguration(struct soap *soap, struct __trt__SetVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetVideoEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoEncoderConfiguration(struct soap *soap, const struct __trt__SetVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetVideoEncoderConfiguration(soap, &a->trt__SetVideoEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetVideoEncoderConfiguration(soap, "trt:SetVideoEncoderConfiguration", -1, &a->trt__SetVideoEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__SetVideoEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__SetVideoEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetVideoEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetVideoEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetVideoEncoderConfiguration, sizeof(struct __trt__SetVideoEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetVideoEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetVideoEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetVideoEncoderConfiguration(soap, "trt:SetVideoEncoderConfiguration", &a->trt__SetVideoEncoderConfiguration, "")) - { soap_flag_trt__SetVideoEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetVideoEncoderConfiguration *p; - size_t k = sizeof(struct __trt__SetVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetVideoEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetVideoEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoEncoderConfiguration(struct soap *soap, const struct __trt__SetVideoEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetVideoEncoderConfiguration(soap, tag ? tag : "-trt:SetVideoEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__SetVideoEncoderConfiguration(struct soap *soap, struct __trt__SetVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoSourceConfiguration(struct soap *soap, struct __trt__SetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__SetVideoSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoSourceConfiguration(struct soap *soap, const struct __trt__SetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__SetVideoSourceConfiguration(soap, &a->trt__SetVideoSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__SetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__SetVideoSourceConfiguration(soap, "trt:SetVideoSourceConfiguration", -1, &a->trt__SetVideoSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__SetVideoSourceConfiguration(struct soap *soap, const char *tag, struct __trt__SetVideoSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__SetVideoSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__SetVideoSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__SetVideoSourceConfiguration, sizeof(struct __trt__SetVideoSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__SetVideoSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__SetVideoSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__SetVideoSourceConfiguration(soap, "trt:SetVideoSourceConfiguration", &a->trt__SetVideoSourceConfiguration, "")) - { soap_flag_trt__SetVideoSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__SetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__SetVideoSourceConfiguration *p; - size_t k = sizeof(struct __trt__SetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__SetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__SetVideoSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__SetVideoSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__SetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoSourceConfiguration(struct soap *soap, const struct __trt__SetVideoSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__SetVideoSourceConfiguration(soap, tag ? tag : "-trt:SetVideoSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__SetVideoSourceConfiguration(struct soap *soap, struct __trt__SetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__SetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioDecoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleAudioDecoderConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioDecoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(soap, &a->trt__GetCompatibleAudioDecoderConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleAudioDecoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(soap, "trt:GetCompatibleAudioDecoderConfigurations", -1, &a->trt__GetCompatibleAudioDecoderConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleAudioDecoderConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleAudioDecoderConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleAudioDecoderConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations, sizeof(struct __trt__GetCompatibleAudioDecoderConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleAudioDecoderConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleAudioDecoderConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(soap, "trt:GetCompatibleAudioDecoderConfigurations", &a->trt__GetCompatibleAudioDecoderConfigurations, "")) - { soap_flag_trt__GetCompatibleAudioDecoderConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleAudioDecoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleAudioDecoderConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleAudioDecoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleAudioDecoderConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleAudioDecoderConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleAudioDecoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioDecoderConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleAudioDecoderConfigurations(soap, tag ? tag : "-trt:GetCompatibleAudioDecoderConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioDecoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleAudioDecoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioOutputConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleAudioOutputConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioOutputConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleAudioOutputConfigurations(soap, &a->trt__GetCompatibleAudioOutputConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleAudioOutputConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleAudioOutputConfigurations(soap, "trt:GetCompatibleAudioOutputConfigurations", -1, &a->trt__GetCompatibleAudioOutputConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleAudioOutputConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleAudioOutputConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleAudioOutputConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations, sizeof(struct __trt__GetCompatibleAudioOutputConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleAudioOutputConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleAudioOutputConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleAudioOutputConfigurations(soap, "trt:GetCompatibleAudioOutputConfigurations", &a->trt__GetCompatibleAudioOutputConfigurations, "")) - { soap_flag_trt__GetCompatibleAudioOutputConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleAudioOutputConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleAudioOutputConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleAudioOutputConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleAudioOutputConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleAudioOutputConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleAudioOutputConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioOutputConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleAudioOutputConfigurations(soap, tag ? tag : "-trt:GetCompatibleAudioOutputConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioOutputConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleAudioOutputConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleMetadataConfigurations(struct soap *soap, struct __trt__GetCompatibleMetadataConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleMetadataConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const struct __trt__GetCompatibleMetadataConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleMetadataConfigurations(soap, &a->trt__GetCompatibleMetadataConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleMetadataConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleMetadataConfigurations(soap, "trt:GetCompatibleMetadataConfigurations", -1, &a->trt__GetCompatibleMetadataConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleMetadataConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleMetadataConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleMetadataConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleMetadataConfigurations, sizeof(struct __trt__GetCompatibleMetadataConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleMetadataConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleMetadataConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleMetadataConfigurations(soap, "trt:GetCompatibleMetadataConfigurations", &a->trt__GetCompatibleMetadataConfigurations, "")) - { soap_flag_trt__GetCompatibleMetadataConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleMetadataConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleMetadataConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleMetadataConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleMetadataConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleMetadataConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleMetadataConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleMetadataConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleMetadataConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleMetadataConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const struct __trt__GetCompatibleMetadataConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleMetadataConfigurations(soap, tag ? tag : "-trt:GetCompatibleMetadataConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleMetadataConfigurations(struct soap *soap, struct __trt__GetCompatibleMetadataConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleMetadataConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoAnalyticsConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleVideoAnalyticsConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const struct __trt__GetCompatibleVideoAnalyticsConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(soap, &a->trt__GetCompatibleVideoAnalyticsConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleVideoAnalyticsConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(soap, "trt:GetCompatibleVideoAnalyticsConfigurations", -1, &a->trt__GetCompatibleVideoAnalyticsConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleVideoAnalyticsConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleVideoAnalyticsConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleVideoAnalyticsConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations, sizeof(struct __trt__GetCompatibleVideoAnalyticsConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleVideoAnalyticsConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleVideoAnalyticsConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(soap, "trt:GetCompatibleVideoAnalyticsConfigurations", &a->trt__GetCompatibleVideoAnalyticsConfigurations, "")) - { soap_flag_trt__GetCompatibleVideoAnalyticsConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleVideoAnalyticsConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleVideoAnalyticsConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleVideoAnalyticsConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleVideoAnalyticsConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleVideoAnalyticsConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleVideoAnalyticsConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const struct __trt__GetCompatibleVideoAnalyticsConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag ? tag : "-trt:GetCompatibleVideoAnalyticsConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoAnalyticsConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleVideoAnalyticsConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleAudioSourceConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleAudioSourceConfigurations(soap, &a->trt__GetCompatibleAudioSourceConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleAudioSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleAudioSourceConfigurations(soap, "trt:GetCompatibleAudioSourceConfigurations", -1, &a->trt__GetCompatibleAudioSourceConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleAudioSourceConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleAudioSourceConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleAudioSourceConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations, sizeof(struct __trt__GetCompatibleAudioSourceConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleAudioSourceConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleAudioSourceConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleAudioSourceConfigurations(soap, "trt:GetCompatibleAudioSourceConfigurations", &a->trt__GetCompatibleAudioSourceConfigurations, "")) - { soap_flag_trt__GetCompatibleAudioSourceConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleAudioSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleAudioSourceConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleAudioSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleAudioSourceConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleAudioSourceConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleAudioSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioSourceConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleAudioSourceConfigurations(soap, tag ? tag : "-trt:GetCompatibleAudioSourceConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleAudioSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleAudioEncoderConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(soap, &a->trt__GetCompatibleAudioEncoderConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleAudioEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(soap, "trt:GetCompatibleAudioEncoderConfigurations", -1, &a->trt__GetCompatibleAudioEncoderConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleAudioEncoderConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleAudioEncoderConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleAudioEncoderConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations, sizeof(struct __trt__GetCompatibleAudioEncoderConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleAudioEncoderConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleAudioEncoderConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(soap, "trt:GetCompatibleAudioEncoderConfigurations", &a->trt__GetCompatibleAudioEncoderConfigurations, "")) - { soap_flag_trt__GetCompatibleAudioEncoderConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleAudioEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleAudioEncoderConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleAudioEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleAudioEncoderConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleAudioEncoderConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleAudioEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const struct __trt__GetCompatibleAudioEncoderConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleAudioEncoderConfigurations(soap, tag ? tag : "-trt:GetCompatibleAudioEncoderConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleAudioEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleVideoSourceConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const struct __trt__GetCompatibleVideoSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleVideoSourceConfigurations(soap, &a->trt__GetCompatibleVideoSourceConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleVideoSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleVideoSourceConfigurations(soap, "trt:GetCompatibleVideoSourceConfigurations", -1, &a->trt__GetCompatibleVideoSourceConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleVideoSourceConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleVideoSourceConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleVideoSourceConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations, sizeof(struct __trt__GetCompatibleVideoSourceConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleVideoSourceConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleVideoSourceConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleVideoSourceConfigurations(soap, "trt:GetCompatibleVideoSourceConfigurations", &a->trt__GetCompatibleVideoSourceConfigurations, "")) - { soap_flag_trt__GetCompatibleVideoSourceConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleVideoSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleVideoSourceConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleVideoSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleVideoSourceConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleVideoSourceConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleVideoSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const struct __trt__GetCompatibleVideoSourceConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleVideoSourceConfigurations(soap, tag ? tag : "-trt:GetCompatibleVideoSourceConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleVideoSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetCompatibleVideoEncoderConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const struct __trt__GetCompatibleVideoEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(soap, &a->trt__GetCompatibleVideoEncoderConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetCompatibleVideoEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(soap, "trt:GetCompatibleVideoEncoderConfigurations", -1, &a->trt__GetCompatibleVideoEncoderConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *tag, struct __trt__GetCompatibleVideoEncoderConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetCompatibleVideoEncoderConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetCompatibleVideoEncoderConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations, sizeof(struct __trt__GetCompatibleVideoEncoderConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetCompatibleVideoEncoderConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetCompatibleVideoEncoderConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(soap, "trt:GetCompatibleVideoEncoderConfigurations", &a->trt__GetCompatibleVideoEncoderConfigurations, "")) - { soap_flag_trt__GetCompatibleVideoEncoderConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetCompatibleVideoEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetCompatibleVideoEncoderConfigurations *p; - size_t k = sizeof(struct __trt__GetCompatibleVideoEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetCompatibleVideoEncoderConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetCompatibleVideoEncoderConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetCompatibleVideoEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const struct __trt__GetCompatibleVideoEncoderConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetCompatibleVideoEncoderConfigurations(soap, tag ? tag : "-trt:GetCompatibleVideoEncoderConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetCompatibleVideoEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioDecoderConfiguration(struct soap *soap, struct __trt__GetAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioDecoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioDecoderConfiguration(struct soap *soap, const struct __trt__GetAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioDecoderConfiguration(soap, &a->trt__GetAudioDecoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioDecoderConfiguration(soap, "trt:GetAudioDecoderConfiguration", -1, &a->trt__GetAudioDecoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioDecoderConfiguration(struct soap *soap, const char *tag, struct __trt__GetAudioDecoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetAudioDecoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioDecoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioDecoderConfiguration, sizeof(struct __trt__GetAudioDecoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioDecoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioDecoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioDecoderConfiguration(soap, "trt:GetAudioDecoderConfiguration", &a->trt__GetAudioDecoderConfiguration, "")) - { soap_flag_trt__GetAudioDecoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioDecoderConfiguration *p; - size_t k = sizeof(struct __trt__GetAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioDecoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioDecoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioDecoderConfiguration(struct soap *soap, const struct __trt__GetAudioDecoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioDecoderConfiguration(soap, tag ? tag : "-trt:GetAudioDecoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioDecoderConfiguration(struct soap *soap, struct __trt__GetAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputConfiguration(struct soap *soap, struct __trt__GetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputConfiguration(struct soap *soap, const struct __trt__GetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioOutputConfiguration(soap, &a->trt__GetAudioOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioOutputConfiguration(soap, "trt:GetAudioOutputConfiguration", -1, &a->trt__GetAudioOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioOutputConfiguration(struct soap *soap, const char *tag, struct __trt__GetAudioOutputConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetAudioOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioOutputConfiguration, sizeof(struct __trt__GetAudioOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioOutputConfiguration(soap, "trt:GetAudioOutputConfiguration", &a->trt__GetAudioOutputConfiguration, "")) - { soap_flag_trt__GetAudioOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioOutputConfiguration *p; - size_t k = sizeof(struct __trt__GetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputConfiguration(struct soap *soap, const struct __trt__GetAudioOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioOutputConfiguration(soap, tag ? tag : "-trt:GetAudioOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioOutputConfiguration(struct soap *soap, struct __trt__GetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetMetadataConfiguration(struct soap *soap, struct __trt__GetMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetMetadataConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetMetadataConfiguration(struct soap *soap, const struct __trt__GetMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetMetadataConfiguration(soap, &a->trt__GetMetadataConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetMetadataConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetMetadataConfiguration(soap, "trt:GetMetadataConfiguration", -1, &a->trt__GetMetadataConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetMetadataConfiguration * SOAP_FMAC4 soap_in___trt__GetMetadataConfiguration(struct soap *soap, const char *tag, struct __trt__GetMetadataConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetMetadataConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetMetadataConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetMetadataConfiguration, sizeof(struct __trt__GetMetadataConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetMetadataConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetMetadataConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetMetadataConfiguration(soap, "trt:GetMetadataConfiguration", &a->trt__GetMetadataConfiguration, "")) - { soap_flag_trt__GetMetadataConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetMetadataConfiguration *p; - size_t k = sizeof(struct __trt__GetMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetMetadataConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetMetadataConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetMetadataConfiguration(struct soap *soap, const struct __trt__GetMetadataConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetMetadataConfiguration(soap, tag ? tag : "-trt:GetMetadataConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetMetadataConfiguration * SOAP_FMAC4 soap_get___trt__GetMetadataConfiguration(struct soap *soap, struct __trt__GetMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__GetVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoAnalyticsConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__GetVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoAnalyticsConfiguration(soap, &a->trt__GetVideoAnalyticsConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoAnalyticsConfiguration(soap, "trt:GetVideoAnalyticsConfiguration", -1, &a->trt__GetVideoAnalyticsConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, struct __trt__GetVideoAnalyticsConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetVideoAnalyticsConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoAnalyticsConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoAnalyticsConfiguration, sizeof(struct __trt__GetVideoAnalyticsConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoAnalyticsConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoAnalyticsConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoAnalyticsConfiguration(soap, "trt:GetVideoAnalyticsConfiguration", &a->trt__GetVideoAnalyticsConfiguration, "")) - { soap_flag_trt__GetVideoAnalyticsConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoAnalyticsConfiguration *p; - size_t k = sizeof(struct __trt__GetVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoAnalyticsConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoAnalyticsConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__GetVideoAnalyticsConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoAnalyticsConfiguration(soap, tag ? tag : "-trt:GetVideoAnalyticsConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__GetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__GetVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioEncoderConfiguration(struct soap *soap, struct __trt__GetAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioEncoderConfiguration(struct soap *soap, const struct __trt__GetAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioEncoderConfiguration(soap, &a->trt__GetAudioEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioEncoderConfiguration(soap, "trt:GetAudioEncoderConfiguration", -1, &a->trt__GetAudioEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__GetAudioEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetAudioEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioEncoderConfiguration, sizeof(struct __trt__GetAudioEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioEncoderConfiguration(soap, "trt:GetAudioEncoderConfiguration", &a->trt__GetAudioEncoderConfiguration, "")) - { soap_flag_trt__GetAudioEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioEncoderConfiguration *p; - size_t k = sizeof(struct __trt__GetAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioEncoderConfiguration(struct soap *soap, const struct __trt__GetAudioEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioEncoderConfiguration(soap, tag ? tag : "-trt:GetAudioEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioEncoderConfiguration(struct soap *soap, struct __trt__GetAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSourceConfiguration(struct soap *soap, struct __trt__GetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSourceConfiguration(struct soap *soap, const struct __trt__GetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioSourceConfiguration(soap, &a->trt__GetAudioSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioSourceConfiguration(soap, "trt:GetAudioSourceConfiguration", -1, &a->trt__GetAudioSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioSourceConfiguration(struct soap *soap, const char *tag, struct __trt__GetAudioSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetAudioSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioSourceConfiguration, sizeof(struct __trt__GetAudioSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioSourceConfiguration(soap, "trt:GetAudioSourceConfiguration", &a->trt__GetAudioSourceConfiguration, "")) - { soap_flag_trt__GetAudioSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioSourceConfiguration *p; - size_t k = sizeof(struct __trt__GetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSourceConfiguration(struct soap *soap, const struct __trt__GetAudioSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioSourceConfiguration(soap, tag ? tag : "-trt:GetAudioSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioSourceConfiguration(struct soap *soap, struct __trt__GetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoEncoderConfiguration(struct soap *soap, struct __trt__GetVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoEncoderConfiguration(struct soap *soap, const struct __trt__GetVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoEncoderConfiguration(soap, &a->trt__GetVideoEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoEncoderConfiguration(soap, "trt:GetVideoEncoderConfiguration", -1, &a->trt__GetVideoEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__GetVideoEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__GetVideoEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetVideoEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoEncoderConfiguration, sizeof(struct __trt__GetVideoEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoEncoderConfiguration(soap, "trt:GetVideoEncoderConfiguration", &a->trt__GetVideoEncoderConfiguration, "")) - { soap_flag_trt__GetVideoEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoEncoderConfiguration *p; - size_t k = sizeof(struct __trt__GetVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoEncoderConfiguration(struct soap *soap, const struct __trt__GetVideoEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoEncoderConfiguration(soap, tag ? tag : "-trt:GetVideoEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__GetVideoEncoderConfiguration(struct soap *soap, struct __trt__GetVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceConfiguration(struct soap *soap, struct __trt__GetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceConfiguration(struct soap *soap, const struct __trt__GetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoSourceConfiguration(soap, &a->trt__GetVideoSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoSourceConfiguration(soap, "trt:GetVideoSourceConfiguration", -1, &a->trt__GetVideoSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__GetVideoSourceConfiguration(struct soap *soap, const char *tag, struct __trt__GetVideoSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__GetVideoSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoSourceConfiguration, sizeof(struct __trt__GetVideoSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoSourceConfiguration(soap, "trt:GetVideoSourceConfiguration", &a->trt__GetVideoSourceConfiguration, "")) - { soap_flag_trt__GetVideoSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoSourceConfiguration *p; - size_t k = sizeof(struct __trt__GetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceConfiguration(struct soap *soap, const struct __trt__GetVideoSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoSourceConfiguration(soap, tag ? tag : "-trt:GetVideoSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__GetVideoSourceConfiguration(struct soap *soap, struct __trt__GetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioDecoderConfigurations(struct soap *soap, struct __trt__GetAudioDecoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioDecoderConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioDecoderConfigurations(struct soap *soap, const struct __trt__GetAudioDecoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioDecoderConfigurations(soap, &a->trt__GetAudioDecoderConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioDecoderConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioDecoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioDecoderConfigurations(soap, "trt:GetAudioDecoderConfigurations", -1, &a->trt__GetAudioDecoderConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioDecoderConfigurations(struct soap *soap, const char *tag, struct __trt__GetAudioDecoderConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetAudioDecoderConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioDecoderConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioDecoderConfigurations, sizeof(struct __trt__GetAudioDecoderConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioDecoderConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioDecoderConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioDecoderConfigurations(soap, "trt:GetAudioDecoderConfigurations", &a->trt__GetAudioDecoderConfigurations, "")) - { soap_flag_trt__GetAudioDecoderConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioDecoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioDecoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioDecoderConfigurations *p; - size_t k = sizeof(struct __trt__GetAudioDecoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioDecoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioDecoderConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioDecoderConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioDecoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioDecoderConfigurations(struct soap *soap, const struct __trt__GetAudioDecoderConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioDecoderConfigurations(soap, tag ? tag : "-trt:GetAudioDecoderConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioDecoderConfigurations(struct soap *soap, struct __trt__GetAudioDecoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioDecoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputConfigurations(struct soap *soap, struct __trt__GetAudioOutputConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioOutputConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputConfigurations(struct soap *soap, const struct __trt__GetAudioOutputConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioOutputConfigurations(soap, &a->trt__GetAudioOutputConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioOutputConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioOutputConfigurations(soap, "trt:GetAudioOutputConfigurations", -1, &a->trt__GetAudioOutputConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioOutputConfigurations(struct soap *soap, const char *tag, struct __trt__GetAudioOutputConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetAudioOutputConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioOutputConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioOutputConfigurations, sizeof(struct __trt__GetAudioOutputConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioOutputConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioOutputConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioOutputConfigurations(soap, "trt:GetAudioOutputConfigurations", &a->trt__GetAudioOutputConfigurations, "")) - { soap_flag_trt__GetAudioOutputConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioOutputConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioOutputConfigurations *p; - size_t k = sizeof(struct __trt__GetAudioOutputConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioOutputConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioOutputConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioOutputConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioOutputConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputConfigurations(struct soap *soap, const struct __trt__GetAudioOutputConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioOutputConfigurations(soap, tag ? tag : "-trt:GetAudioOutputConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioOutputConfigurations(struct soap *soap, struct __trt__GetAudioOutputConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioOutputConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetMetadataConfigurations(struct soap *soap, struct __trt__GetMetadataConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetMetadataConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetMetadataConfigurations(struct soap *soap, const struct __trt__GetMetadataConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetMetadataConfigurations(soap, &a->trt__GetMetadataConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetMetadataConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetMetadataConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetMetadataConfigurations(soap, "trt:GetMetadataConfigurations", -1, &a->trt__GetMetadataConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetMetadataConfigurations * SOAP_FMAC4 soap_in___trt__GetMetadataConfigurations(struct soap *soap, const char *tag, struct __trt__GetMetadataConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetMetadataConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetMetadataConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetMetadataConfigurations, sizeof(struct __trt__GetMetadataConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetMetadataConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetMetadataConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetMetadataConfigurations(soap, "trt:GetMetadataConfigurations", &a->trt__GetMetadataConfigurations, "")) - { soap_flag_trt__GetMetadataConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetMetadataConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetMetadataConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetMetadataConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetMetadataConfigurations *p; - size_t k = sizeof(struct __trt__GetMetadataConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetMetadataConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetMetadataConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetMetadataConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetMetadataConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetMetadataConfigurations(struct soap *soap, const struct __trt__GetMetadataConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetMetadataConfigurations(soap, tag ? tag : "-trt:GetMetadataConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetMetadataConfigurations * SOAP_FMAC4 soap_get___trt__GetMetadataConfigurations(struct soap *soap, struct __trt__GetMetadataConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetMetadataConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetVideoAnalyticsConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoAnalyticsConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const struct __trt__GetVideoAnalyticsConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoAnalyticsConfigurations(soap, &a->trt__GetVideoAnalyticsConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoAnalyticsConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoAnalyticsConfigurations(soap, "trt:GetVideoAnalyticsConfigurations", -1, &a->trt__GetVideoAnalyticsConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *tag, struct __trt__GetVideoAnalyticsConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetVideoAnalyticsConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoAnalyticsConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoAnalyticsConfigurations, sizeof(struct __trt__GetVideoAnalyticsConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoAnalyticsConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoAnalyticsConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoAnalyticsConfigurations(soap, "trt:GetVideoAnalyticsConfigurations", &a->trt__GetVideoAnalyticsConfigurations, "")) - { soap_flag_trt__GetVideoAnalyticsConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetVideoAnalyticsConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoAnalyticsConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoAnalyticsConfigurations *p; - size_t k = sizeof(struct __trt__GetVideoAnalyticsConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoAnalyticsConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoAnalyticsConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoAnalyticsConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoAnalyticsConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const struct __trt__GetVideoAnalyticsConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoAnalyticsConfigurations(soap, tag ? tag : "-trt:GetVideoAnalyticsConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get___trt__GetVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetVideoAnalyticsConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoAnalyticsConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioEncoderConfigurations(struct soap *soap, struct __trt__GetAudioEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioEncoderConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioEncoderConfigurations(struct soap *soap, const struct __trt__GetAudioEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioEncoderConfigurations(soap, &a->trt__GetAudioEncoderConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioEncoderConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioEncoderConfigurations(soap, "trt:GetAudioEncoderConfigurations", -1, &a->trt__GetAudioEncoderConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioEncoderConfigurations(struct soap *soap, const char *tag, struct __trt__GetAudioEncoderConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetAudioEncoderConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioEncoderConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioEncoderConfigurations, sizeof(struct __trt__GetAudioEncoderConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioEncoderConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioEncoderConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioEncoderConfigurations(soap, "trt:GetAudioEncoderConfigurations", &a->trt__GetAudioEncoderConfigurations, "")) - { soap_flag_trt__GetAudioEncoderConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioEncoderConfigurations *p; - size_t k = sizeof(struct __trt__GetAudioEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioEncoderConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioEncoderConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioEncoderConfigurations(struct soap *soap, const struct __trt__GetAudioEncoderConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioEncoderConfigurations(soap, tag ? tag : "-trt:GetAudioEncoderConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioEncoderConfigurations(struct soap *soap, struct __trt__GetAudioEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSourceConfigurations(struct soap *soap, struct __trt__GetAudioSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioSourceConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSourceConfigurations(struct soap *soap, const struct __trt__GetAudioSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioSourceConfigurations(soap, &a->trt__GetAudioSourceConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSourceConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioSourceConfigurations(soap, "trt:GetAudioSourceConfigurations", -1, &a->trt__GetAudioSourceConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioSourceConfigurations(struct soap *soap, const char *tag, struct __trt__GetAudioSourceConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetAudioSourceConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioSourceConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioSourceConfigurations, sizeof(struct __trt__GetAudioSourceConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioSourceConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioSourceConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioSourceConfigurations(soap, "trt:GetAudioSourceConfigurations", &a->trt__GetAudioSourceConfigurations, "")) - { soap_flag_trt__GetAudioSourceConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioSourceConfigurations *p; - size_t k = sizeof(struct __trt__GetAudioSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioSourceConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioSourceConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSourceConfigurations(struct soap *soap, const struct __trt__GetAudioSourceConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioSourceConfigurations(soap, tag ? tag : "-trt:GetAudioSourceConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioSourceConfigurations(struct soap *soap, struct __trt__GetAudioSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoEncoderConfigurations(struct soap *soap, struct __trt__GetVideoEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoEncoderConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoEncoderConfigurations(struct soap *soap, const struct __trt__GetVideoEncoderConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoEncoderConfigurations(soap, &a->trt__GetVideoEncoderConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoEncoderConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoEncoderConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoEncoderConfigurations(soap, "trt:GetVideoEncoderConfigurations", -1, &a->trt__GetVideoEncoderConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetVideoEncoderConfigurations(struct soap *soap, const char *tag, struct __trt__GetVideoEncoderConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetVideoEncoderConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoEncoderConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoEncoderConfigurations, sizeof(struct __trt__GetVideoEncoderConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoEncoderConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoEncoderConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoEncoderConfigurations(soap, "trt:GetVideoEncoderConfigurations", &a->trt__GetVideoEncoderConfigurations, "")) - { soap_flag_trt__GetVideoEncoderConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetVideoEncoderConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoEncoderConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoEncoderConfigurations *p; - size_t k = sizeof(struct __trt__GetVideoEncoderConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoEncoderConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoEncoderConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoEncoderConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoEncoderConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoEncoderConfigurations(struct soap *soap, const struct __trt__GetVideoEncoderConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoEncoderConfigurations(soap, tag ? tag : "-trt:GetVideoEncoderConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetVideoEncoderConfigurations(struct soap *soap, struct __trt__GetVideoEncoderConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoEncoderConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceConfigurations(struct soap *soap, struct __trt__GetVideoSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoSourceConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceConfigurations(struct soap *soap, const struct __trt__GetVideoSourceConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoSourceConfigurations(soap, &a->trt__GetVideoSourceConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceConfigurations(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoSourceConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoSourceConfigurations(soap, "trt:GetVideoSourceConfigurations", -1, &a->trt__GetVideoSourceConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetVideoSourceConfigurations(struct soap *soap, const char *tag, struct __trt__GetVideoSourceConfigurations *a, const char *type) -{ - size_t soap_flag_trt__GetVideoSourceConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoSourceConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoSourceConfigurations, sizeof(struct __trt__GetVideoSourceConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoSourceConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoSourceConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoSourceConfigurations(soap, "trt:GetVideoSourceConfigurations", &a->trt__GetVideoSourceConfigurations, "")) - { soap_flag_trt__GetVideoSourceConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoSourceConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoSourceConfigurations *p; - size_t k = sizeof(struct __trt__GetVideoSourceConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoSourceConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoSourceConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoSourceConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoSourceConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceConfigurations(struct soap *soap, const struct __trt__GetVideoSourceConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoSourceConfigurations(soap, tag ? tag : "-trt:GetVideoSourceConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetVideoSourceConfigurations(struct soap *soap, struct __trt__GetVideoSourceConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoSourceConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__DeleteProfile(struct soap *soap, struct __trt__DeleteProfile *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__DeleteProfile = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__DeleteProfile(struct soap *soap, const struct __trt__DeleteProfile *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__DeleteProfile(soap, &a->trt__DeleteProfile); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__DeleteProfile(struct soap *soap, const char *tag, int id, const struct __trt__DeleteProfile *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__DeleteProfile(soap, "trt:DeleteProfile", -1, &a->trt__DeleteProfile, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__DeleteProfile * SOAP_FMAC4 soap_in___trt__DeleteProfile(struct soap *soap, const char *tag, struct __trt__DeleteProfile *a, const char *type) -{ - size_t soap_flag_trt__DeleteProfile = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__DeleteProfile*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__DeleteProfile, sizeof(struct __trt__DeleteProfile), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__DeleteProfile(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__DeleteProfile && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__DeleteProfile(soap, "trt:DeleteProfile", &a->trt__DeleteProfile, "")) - { soap_flag_trt__DeleteProfile--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__DeleteProfile * SOAP_FMAC2 soap_instantiate___trt__DeleteProfile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__DeleteProfile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__DeleteProfile *p; - size_t k = sizeof(struct __trt__DeleteProfile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__DeleteProfile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__DeleteProfile); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__DeleteProfile, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__DeleteProfile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__DeleteProfile(struct soap *soap, const struct __trt__DeleteProfile *a, const char *tag, const char *type) -{ - if (soap_out___trt__DeleteProfile(soap, tag ? tag : "-trt:DeleteProfile", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__DeleteProfile * SOAP_FMAC4 soap_get___trt__DeleteProfile(struct soap *soap, struct __trt__DeleteProfile *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__DeleteProfile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioDecoderConfiguration(struct soap *soap, struct __trt__RemoveAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveAudioDecoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const struct __trt__RemoveAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveAudioDecoderConfiguration(soap, &a->trt__RemoveAudioDecoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveAudioDecoderConfiguration(soap, "trt:RemoveAudioDecoderConfiguration", -1, &a->trt__RemoveAudioDecoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveAudioDecoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveAudioDecoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveAudioDecoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveAudioDecoderConfiguration, sizeof(struct __trt__RemoveAudioDecoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveAudioDecoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveAudioDecoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveAudioDecoderConfiguration(soap, "trt:RemoveAudioDecoderConfiguration", &a->trt__RemoveAudioDecoderConfiguration, "")) - { soap_flag_trt__RemoveAudioDecoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveAudioDecoderConfiguration *p; - size_t k = sizeof(struct __trt__RemoveAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveAudioDecoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveAudioDecoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const struct __trt__RemoveAudioDecoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveAudioDecoderConfiguration(soap, tag ? tag : "-trt:RemoveAudioDecoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioDecoderConfiguration(struct soap *soap, struct __trt__RemoveAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioOutputConfiguration(struct soap *soap, struct __trt__RemoveAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveAudioOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioOutputConfiguration(struct soap *soap, const struct __trt__RemoveAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveAudioOutputConfiguration(soap, &a->trt__RemoveAudioOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveAudioOutputConfiguration(soap, "trt:RemoveAudioOutputConfiguration", -1, &a->trt__RemoveAudioOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveAudioOutputConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveAudioOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveAudioOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveAudioOutputConfiguration, sizeof(struct __trt__RemoveAudioOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveAudioOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveAudioOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveAudioOutputConfiguration(soap, "trt:RemoveAudioOutputConfiguration", &a->trt__RemoveAudioOutputConfiguration, "")) - { soap_flag_trt__RemoveAudioOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveAudioOutputConfiguration *p; - size_t k = sizeof(struct __trt__RemoveAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveAudioOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveAudioOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioOutputConfiguration(struct soap *soap, const struct __trt__RemoveAudioOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveAudioOutputConfiguration(soap, tag ? tag : "-trt:RemoveAudioOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioOutputConfiguration(struct soap *soap, struct __trt__RemoveAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveMetadataConfiguration(struct soap *soap, struct __trt__RemoveMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveMetadataConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveMetadataConfiguration(struct soap *soap, const struct __trt__RemoveMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveMetadataConfiguration(soap, &a->trt__RemoveMetadataConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveMetadataConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveMetadataConfiguration(soap, "trt:RemoveMetadataConfiguration", -1, &a->trt__RemoveMetadataConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_in___trt__RemoveMetadataConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveMetadataConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveMetadataConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveMetadataConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveMetadataConfiguration, sizeof(struct __trt__RemoveMetadataConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveMetadataConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveMetadataConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveMetadataConfiguration(soap, "trt:RemoveMetadataConfiguration", &a->trt__RemoveMetadataConfiguration, "")) - { soap_flag_trt__RemoveMetadataConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveMetadataConfiguration *p; - size_t k = sizeof(struct __trt__RemoveMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveMetadataConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveMetadataConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveMetadataConfiguration(struct soap *soap, const struct __trt__RemoveMetadataConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveMetadataConfiguration(soap, tag ? tag : "-trt:RemoveMetadataConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_get___trt__RemoveMetadataConfiguration(struct soap *soap, struct __trt__RemoveMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, struct __trt__RemoveVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveVideoAnalyticsConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__RemoveVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveVideoAnalyticsConfiguration(soap, &a->trt__RemoveVideoAnalyticsConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveVideoAnalyticsConfiguration(soap, "trt:RemoveVideoAnalyticsConfiguration", -1, &a->trt__RemoveVideoAnalyticsConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveVideoAnalyticsConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveVideoAnalyticsConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveVideoAnalyticsConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration, sizeof(struct __trt__RemoveVideoAnalyticsConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveVideoAnalyticsConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveVideoAnalyticsConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveVideoAnalyticsConfiguration(soap, "trt:RemoveVideoAnalyticsConfiguration", &a->trt__RemoveVideoAnalyticsConfiguration, "")) - { soap_flag_trt__RemoveVideoAnalyticsConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveVideoAnalyticsConfiguration *p; - size_t k = sizeof(struct __trt__RemoveVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveVideoAnalyticsConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveVideoAnalyticsConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__RemoveVideoAnalyticsConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveVideoAnalyticsConfiguration(soap, tag ? tag : "-trt:RemoveVideoAnalyticsConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, struct __trt__RemoveVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemovePTZConfiguration(struct soap *soap, struct __trt__RemovePTZConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemovePTZConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemovePTZConfiguration(struct soap *soap, const struct __trt__RemovePTZConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemovePTZConfiguration(soap, &a->trt__RemovePTZConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemovePTZConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemovePTZConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemovePTZConfiguration(soap, "trt:RemovePTZConfiguration", -1, &a->trt__RemovePTZConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemovePTZConfiguration * SOAP_FMAC4 soap_in___trt__RemovePTZConfiguration(struct soap *soap, const char *tag, struct __trt__RemovePTZConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemovePTZConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemovePTZConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemovePTZConfiguration, sizeof(struct __trt__RemovePTZConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemovePTZConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemovePTZConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemovePTZConfiguration(soap, "trt:RemovePTZConfiguration", &a->trt__RemovePTZConfiguration, "")) - { soap_flag_trt__RemovePTZConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemovePTZConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemovePTZConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemovePTZConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemovePTZConfiguration *p; - size_t k = sizeof(struct __trt__RemovePTZConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemovePTZConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemovePTZConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemovePTZConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemovePTZConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemovePTZConfiguration(struct soap *soap, const struct __trt__RemovePTZConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemovePTZConfiguration(soap, tag ? tag : "-trt:RemovePTZConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemovePTZConfiguration * SOAP_FMAC4 soap_get___trt__RemovePTZConfiguration(struct soap *soap, struct __trt__RemovePTZConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemovePTZConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioSourceConfiguration(struct soap *soap, struct __trt__RemoveAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveAudioSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioSourceConfiguration(struct soap *soap, const struct __trt__RemoveAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveAudioSourceConfiguration(soap, &a->trt__RemoveAudioSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveAudioSourceConfiguration(soap, "trt:RemoveAudioSourceConfiguration", -1, &a->trt__RemoveAudioSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveAudioSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveAudioSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveAudioSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveAudioSourceConfiguration, sizeof(struct __trt__RemoveAudioSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveAudioSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveAudioSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveAudioSourceConfiguration(soap, "trt:RemoveAudioSourceConfiguration", &a->trt__RemoveAudioSourceConfiguration, "")) - { soap_flag_trt__RemoveAudioSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveAudioSourceConfiguration *p; - size_t k = sizeof(struct __trt__RemoveAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveAudioSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveAudioSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioSourceConfiguration(struct soap *soap, const struct __trt__RemoveAudioSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveAudioSourceConfiguration(soap, tag ? tag : "-trt:RemoveAudioSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioSourceConfiguration(struct soap *soap, struct __trt__RemoveAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioEncoderConfiguration(struct soap *soap, struct __trt__RemoveAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveAudioEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const struct __trt__RemoveAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveAudioEncoderConfiguration(soap, &a->trt__RemoveAudioEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveAudioEncoderConfiguration(soap, "trt:RemoveAudioEncoderConfiguration", -1, &a->trt__RemoveAudioEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveAudioEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveAudioEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveAudioEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveAudioEncoderConfiguration, sizeof(struct __trt__RemoveAudioEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveAudioEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveAudioEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveAudioEncoderConfiguration(soap, "trt:RemoveAudioEncoderConfiguration", &a->trt__RemoveAudioEncoderConfiguration, "")) - { soap_flag_trt__RemoveAudioEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveAudioEncoderConfiguration *p; - size_t k = sizeof(struct __trt__RemoveAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveAudioEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveAudioEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const struct __trt__RemoveAudioEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveAudioEncoderConfiguration(soap, tag ? tag : "-trt:RemoveAudioEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioEncoderConfiguration(struct soap *soap, struct __trt__RemoveAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveVideoSourceConfiguration(struct soap *soap, struct __trt__RemoveVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveVideoSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveVideoSourceConfiguration(struct soap *soap, const struct __trt__RemoveVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveVideoSourceConfiguration(soap, &a->trt__RemoveVideoSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveVideoSourceConfiguration(soap, "trt:RemoveVideoSourceConfiguration", -1, &a->trt__RemoveVideoSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveVideoSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveVideoSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveVideoSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveVideoSourceConfiguration, sizeof(struct __trt__RemoveVideoSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveVideoSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveVideoSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveVideoSourceConfiguration(soap, "trt:RemoveVideoSourceConfiguration", &a->trt__RemoveVideoSourceConfiguration, "")) - { soap_flag_trt__RemoveVideoSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveVideoSourceConfiguration *p; - size_t k = sizeof(struct __trt__RemoveVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveVideoSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveVideoSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveVideoSourceConfiguration(struct soap *soap, const struct __trt__RemoveVideoSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveVideoSourceConfiguration(soap, tag ? tag : "-trt:RemoveVideoSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__RemoveVideoSourceConfiguration(struct soap *soap, struct __trt__RemoveVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveVideoEncoderConfiguration(struct soap *soap, struct __trt__RemoveVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__RemoveVideoEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const struct __trt__RemoveVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__RemoveVideoEncoderConfiguration(soap, &a->trt__RemoveVideoEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__RemoveVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__RemoveVideoEncoderConfiguration(soap, "trt:RemoveVideoEncoderConfiguration", -1, &a->trt__RemoveVideoEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__RemoveVideoEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__RemoveVideoEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__RemoveVideoEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__RemoveVideoEncoderConfiguration, sizeof(struct __trt__RemoveVideoEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__RemoveVideoEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__RemoveVideoEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__RemoveVideoEncoderConfiguration(soap, "trt:RemoveVideoEncoderConfiguration", &a->trt__RemoveVideoEncoderConfiguration, "")) - { soap_flag_trt__RemoveVideoEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__RemoveVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__RemoveVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__RemoveVideoEncoderConfiguration *p; - size_t k = sizeof(struct __trt__RemoveVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__RemoveVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__RemoveVideoEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__RemoveVideoEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__RemoveVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const struct __trt__RemoveVideoEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__RemoveVideoEncoderConfiguration(soap, tag ? tag : "-trt:RemoveVideoEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__RemoveVideoEncoderConfiguration(struct soap *soap, struct __trt__RemoveVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__RemoveVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioDecoderConfiguration(struct soap *soap, struct __trt__AddAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddAudioDecoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioDecoderConfiguration(struct soap *soap, const struct __trt__AddAudioDecoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddAudioDecoderConfiguration(soap, &a->trt__AddAudioDecoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddAudioDecoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddAudioDecoderConfiguration(soap, "trt:AddAudioDecoderConfiguration", -1, &a->trt__AddAudioDecoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioDecoderConfiguration(struct soap *soap, const char *tag, struct __trt__AddAudioDecoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddAudioDecoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddAudioDecoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddAudioDecoderConfiguration, sizeof(struct __trt__AddAudioDecoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddAudioDecoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddAudioDecoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddAudioDecoderConfiguration(soap, "trt:AddAudioDecoderConfiguration", &a->trt__AddAudioDecoderConfiguration, "")) - { soap_flag_trt__AddAudioDecoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioDecoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddAudioDecoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddAudioDecoderConfiguration *p; - size_t k = sizeof(struct __trt__AddAudioDecoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddAudioDecoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddAudioDecoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddAudioDecoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddAudioDecoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioDecoderConfiguration(struct soap *soap, const struct __trt__AddAudioDecoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddAudioDecoderConfiguration(soap, tag ? tag : "-trt:AddAudioDecoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioDecoderConfiguration(struct soap *soap, struct __trt__AddAudioDecoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioOutputConfiguration(struct soap *soap, struct __trt__AddAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddAudioOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioOutputConfiguration(struct soap *soap, const struct __trt__AddAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddAudioOutputConfiguration(soap, &a->trt__AddAudioOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddAudioOutputConfiguration(soap, "trt:AddAudioOutputConfiguration", -1, &a->trt__AddAudioOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioOutputConfiguration(struct soap *soap, const char *tag, struct __trt__AddAudioOutputConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddAudioOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddAudioOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddAudioOutputConfiguration, sizeof(struct __trt__AddAudioOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddAudioOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddAudioOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddAudioOutputConfiguration(soap, "trt:AddAudioOutputConfiguration", &a->trt__AddAudioOutputConfiguration, "")) - { soap_flag_trt__AddAudioOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddAudioOutputConfiguration *p; - size_t k = sizeof(struct __trt__AddAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddAudioOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddAudioOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioOutputConfiguration(struct soap *soap, const struct __trt__AddAudioOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddAudioOutputConfiguration(soap, tag ? tag : "-trt:AddAudioOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioOutputConfiguration(struct soap *soap, struct __trt__AddAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddMetadataConfiguration(struct soap *soap, struct __trt__AddMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddMetadataConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddMetadataConfiguration(struct soap *soap, const struct __trt__AddMetadataConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddMetadataConfiguration(soap, &a->trt__AddMetadataConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddMetadataConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddMetadataConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddMetadataConfiguration(soap, "trt:AddMetadataConfiguration", -1, &a->trt__AddMetadataConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddMetadataConfiguration * SOAP_FMAC4 soap_in___trt__AddMetadataConfiguration(struct soap *soap, const char *tag, struct __trt__AddMetadataConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddMetadataConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddMetadataConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddMetadataConfiguration, sizeof(struct __trt__AddMetadataConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddMetadataConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddMetadataConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddMetadataConfiguration(soap, "trt:AddMetadataConfiguration", &a->trt__AddMetadataConfiguration, "")) - { soap_flag_trt__AddMetadataConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddMetadataConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddMetadataConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddMetadataConfiguration *p; - size_t k = sizeof(struct __trt__AddMetadataConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddMetadataConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddMetadataConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddMetadataConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddMetadataConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddMetadataConfiguration(struct soap *soap, const struct __trt__AddMetadataConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddMetadataConfiguration(soap, tag ? tag : "-trt:AddMetadataConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddMetadataConfiguration * SOAP_FMAC4 soap_get___trt__AddMetadataConfiguration(struct soap *soap, struct __trt__AddMetadataConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddVideoAnalyticsConfiguration(struct soap *soap, struct __trt__AddVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddVideoAnalyticsConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__AddVideoAnalyticsConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddVideoAnalyticsConfiguration(soap, &a->trt__AddVideoAnalyticsConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddVideoAnalyticsConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddVideoAnalyticsConfiguration(soap, "trt:AddVideoAnalyticsConfiguration", -1, &a->trt__AddVideoAnalyticsConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *tag, struct __trt__AddVideoAnalyticsConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddVideoAnalyticsConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddVideoAnalyticsConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddVideoAnalyticsConfiguration, sizeof(struct __trt__AddVideoAnalyticsConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddVideoAnalyticsConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddVideoAnalyticsConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddVideoAnalyticsConfiguration(soap, "trt:AddVideoAnalyticsConfiguration", &a->trt__AddVideoAnalyticsConfiguration, "")) - { soap_flag_trt__AddVideoAnalyticsConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddVideoAnalyticsConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddVideoAnalyticsConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddVideoAnalyticsConfiguration *p; - size_t k = sizeof(struct __trt__AddVideoAnalyticsConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddVideoAnalyticsConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddVideoAnalyticsConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddVideoAnalyticsConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddVideoAnalyticsConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const struct __trt__AddVideoAnalyticsConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddVideoAnalyticsConfiguration(soap, tag ? tag : "-trt:AddVideoAnalyticsConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__AddVideoAnalyticsConfiguration(struct soap *soap, struct __trt__AddVideoAnalyticsConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddPTZConfiguration(struct soap *soap, struct __trt__AddPTZConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddPTZConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddPTZConfiguration(struct soap *soap, const struct __trt__AddPTZConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddPTZConfiguration(soap, &a->trt__AddPTZConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddPTZConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddPTZConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddPTZConfiguration(soap, "trt:AddPTZConfiguration", -1, &a->trt__AddPTZConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddPTZConfiguration * SOAP_FMAC4 soap_in___trt__AddPTZConfiguration(struct soap *soap, const char *tag, struct __trt__AddPTZConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddPTZConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddPTZConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddPTZConfiguration, sizeof(struct __trt__AddPTZConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddPTZConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddPTZConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddPTZConfiguration(soap, "trt:AddPTZConfiguration", &a->trt__AddPTZConfiguration, "")) - { soap_flag_trt__AddPTZConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddPTZConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddPTZConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddPTZConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddPTZConfiguration *p; - size_t k = sizeof(struct __trt__AddPTZConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddPTZConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddPTZConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddPTZConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddPTZConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddPTZConfiguration(struct soap *soap, const struct __trt__AddPTZConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddPTZConfiguration(soap, tag ? tag : "-trt:AddPTZConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddPTZConfiguration * SOAP_FMAC4 soap_get___trt__AddPTZConfiguration(struct soap *soap, struct __trt__AddPTZConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddPTZConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioSourceConfiguration(struct soap *soap, struct __trt__AddAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddAudioSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioSourceConfiguration(struct soap *soap, const struct __trt__AddAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddAudioSourceConfiguration(soap, &a->trt__AddAudioSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddAudioSourceConfiguration(soap, "trt:AddAudioSourceConfiguration", -1, &a->trt__AddAudioSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioSourceConfiguration(struct soap *soap, const char *tag, struct __trt__AddAudioSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddAudioSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddAudioSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddAudioSourceConfiguration, sizeof(struct __trt__AddAudioSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddAudioSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddAudioSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddAudioSourceConfiguration(soap, "trt:AddAudioSourceConfiguration", &a->trt__AddAudioSourceConfiguration, "")) - { soap_flag_trt__AddAudioSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddAudioSourceConfiguration *p; - size_t k = sizeof(struct __trt__AddAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddAudioSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddAudioSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioSourceConfiguration(struct soap *soap, const struct __trt__AddAudioSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddAudioSourceConfiguration(soap, tag ? tag : "-trt:AddAudioSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioSourceConfiguration(struct soap *soap, struct __trt__AddAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioEncoderConfiguration(struct soap *soap, struct __trt__AddAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddAudioEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioEncoderConfiguration(struct soap *soap, const struct __trt__AddAudioEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddAudioEncoderConfiguration(soap, &a->trt__AddAudioEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddAudioEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddAudioEncoderConfiguration(soap, "trt:AddAudioEncoderConfiguration", -1, &a->trt__AddAudioEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__AddAudioEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddAudioEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddAudioEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddAudioEncoderConfiguration, sizeof(struct __trt__AddAudioEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddAudioEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddAudioEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddAudioEncoderConfiguration(soap, "trt:AddAudioEncoderConfiguration", &a->trt__AddAudioEncoderConfiguration, "")) - { soap_flag_trt__AddAudioEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddAudioEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddAudioEncoderConfiguration *p; - size_t k = sizeof(struct __trt__AddAudioEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddAudioEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddAudioEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddAudioEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddAudioEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioEncoderConfiguration(struct soap *soap, const struct __trt__AddAudioEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddAudioEncoderConfiguration(soap, tag ? tag : "-trt:AddAudioEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioEncoderConfiguration(struct soap *soap, struct __trt__AddAudioEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddAudioEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddVideoSourceConfiguration(struct soap *soap, struct __trt__AddVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddVideoSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddVideoSourceConfiguration(struct soap *soap, const struct __trt__AddVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddVideoSourceConfiguration(soap, &a->trt__AddVideoSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddVideoSourceConfiguration(soap, "trt:AddVideoSourceConfiguration", -1, &a->trt__AddVideoSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__AddVideoSourceConfiguration(struct soap *soap, const char *tag, struct __trt__AddVideoSourceConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddVideoSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddVideoSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddVideoSourceConfiguration, sizeof(struct __trt__AddVideoSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddVideoSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddVideoSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddVideoSourceConfiguration(soap, "trt:AddVideoSourceConfiguration", &a->trt__AddVideoSourceConfiguration, "")) - { soap_flag_trt__AddVideoSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddVideoSourceConfiguration *p; - size_t k = sizeof(struct __trt__AddVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddVideoSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddVideoSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddVideoSourceConfiguration(struct soap *soap, const struct __trt__AddVideoSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddVideoSourceConfiguration(soap, tag ? tag : "-trt:AddVideoSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__AddVideoSourceConfiguration(struct soap *soap, struct __trt__AddVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddVideoEncoderConfiguration(struct soap *soap, struct __trt__AddVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__AddVideoEncoderConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddVideoEncoderConfiguration(struct soap *soap, const struct __trt__AddVideoEncoderConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__AddVideoEncoderConfiguration(soap, &a->trt__AddVideoEncoderConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddVideoEncoderConfiguration(struct soap *soap, const char *tag, int id, const struct __trt__AddVideoEncoderConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__AddVideoEncoderConfiguration(soap, "trt:AddVideoEncoderConfiguration", -1, &a->trt__AddVideoEncoderConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__AddVideoEncoderConfiguration(struct soap *soap, const char *tag, struct __trt__AddVideoEncoderConfiguration *a, const char *type) -{ - size_t soap_flag_trt__AddVideoEncoderConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__AddVideoEncoderConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__AddVideoEncoderConfiguration, sizeof(struct __trt__AddVideoEncoderConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__AddVideoEncoderConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__AddVideoEncoderConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__AddVideoEncoderConfiguration(soap, "trt:AddVideoEncoderConfiguration", &a->trt__AddVideoEncoderConfiguration, "")) - { soap_flag_trt__AddVideoEncoderConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__AddVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddVideoEncoderConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__AddVideoEncoderConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__AddVideoEncoderConfiguration *p; - size_t k = sizeof(struct __trt__AddVideoEncoderConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__AddVideoEncoderConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__AddVideoEncoderConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__AddVideoEncoderConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__AddVideoEncoderConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddVideoEncoderConfiguration(struct soap *soap, const struct __trt__AddVideoEncoderConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trt__AddVideoEncoderConfiguration(soap, tag ? tag : "-trt:AddVideoEncoderConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__AddVideoEncoderConfiguration(struct soap *soap, struct __trt__AddVideoEncoderConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__AddVideoEncoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetProfiles(struct soap *soap, struct __trt__GetProfiles *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetProfiles = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetProfiles(struct soap *soap, const struct __trt__GetProfiles *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetProfiles(soap, &a->trt__GetProfiles); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetProfiles(struct soap *soap, const char *tag, int id, const struct __trt__GetProfiles *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetProfiles(soap, "trt:GetProfiles", -1, &a->trt__GetProfiles, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetProfiles * SOAP_FMAC4 soap_in___trt__GetProfiles(struct soap *soap, const char *tag, struct __trt__GetProfiles *a, const char *type) -{ - size_t soap_flag_trt__GetProfiles = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetProfiles*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetProfiles, sizeof(struct __trt__GetProfiles), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetProfiles(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetProfiles && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetProfiles(soap, "trt:GetProfiles", &a->trt__GetProfiles, "")) - { soap_flag_trt__GetProfiles--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetProfiles * SOAP_FMAC2 soap_instantiate___trt__GetProfiles(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetProfiles(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetProfiles *p; - size_t k = sizeof(struct __trt__GetProfiles); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetProfiles, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetProfiles); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetProfiles, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetProfiles location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetProfiles(struct soap *soap, const struct __trt__GetProfiles *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetProfiles(soap, tag ? tag : "-trt:GetProfiles", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetProfiles * SOAP_FMAC4 soap_get___trt__GetProfiles(struct soap *soap, struct __trt__GetProfiles *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetProfiles(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetProfile(struct soap *soap, struct __trt__GetProfile *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetProfile = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetProfile(struct soap *soap, const struct __trt__GetProfile *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetProfile(soap, &a->trt__GetProfile); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetProfile(struct soap *soap, const char *tag, int id, const struct __trt__GetProfile *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetProfile(soap, "trt:GetProfile", -1, &a->trt__GetProfile, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetProfile * SOAP_FMAC4 soap_in___trt__GetProfile(struct soap *soap, const char *tag, struct __trt__GetProfile *a, const char *type) -{ - size_t soap_flag_trt__GetProfile = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetProfile*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetProfile, sizeof(struct __trt__GetProfile), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetProfile(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetProfile && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetProfile(soap, "trt:GetProfile", &a->trt__GetProfile, "")) - { soap_flag_trt__GetProfile--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetProfile * SOAP_FMAC2 soap_instantiate___trt__GetProfile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetProfile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetProfile *p; - size_t k = sizeof(struct __trt__GetProfile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetProfile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetProfile); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetProfile, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetProfile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetProfile(struct soap *soap, const struct __trt__GetProfile *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetProfile(soap, tag ? tag : "-trt:GetProfile", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetProfile * SOAP_FMAC4 soap_get___trt__GetProfile(struct soap *soap, struct __trt__GetProfile *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetProfile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__CreateProfile(struct soap *soap, struct __trt__CreateProfile *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__CreateProfile = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__CreateProfile(struct soap *soap, const struct __trt__CreateProfile *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__CreateProfile(soap, &a->trt__CreateProfile); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__CreateProfile(struct soap *soap, const char *tag, int id, const struct __trt__CreateProfile *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__CreateProfile(soap, "trt:CreateProfile", -1, &a->trt__CreateProfile, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__CreateProfile * SOAP_FMAC4 soap_in___trt__CreateProfile(struct soap *soap, const char *tag, struct __trt__CreateProfile *a, const char *type) -{ - size_t soap_flag_trt__CreateProfile = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__CreateProfile*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__CreateProfile, sizeof(struct __trt__CreateProfile), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__CreateProfile(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__CreateProfile && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__CreateProfile(soap, "trt:CreateProfile", &a->trt__CreateProfile, "")) - { soap_flag_trt__CreateProfile--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__CreateProfile * SOAP_FMAC2 soap_instantiate___trt__CreateProfile(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__CreateProfile(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__CreateProfile *p; - size_t k = sizeof(struct __trt__CreateProfile); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__CreateProfile, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__CreateProfile); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__CreateProfile, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__CreateProfile location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__CreateProfile(struct soap *soap, const struct __trt__CreateProfile *a, const char *tag, const char *type) -{ - if (soap_out___trt__CreateProfile(soap, tag ? tag : "-trt:CreateProfile", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__CreateProfile * SOAP_FMAC4 soap_get___trt__CreateProfile(struct soap *soap, struct __trt__CreateProfile *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__CreateProfile(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputs(struct soap *soap, struct __trt__GetAudioOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioOutputs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputs(struct soap *soap, const struct __trt__GetAudioOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioOutputs(soap, &a->trt__GetAudioOutputs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputs(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioOutputs(soap, "trt:GetAudioOutputs", -1, &a->trt__GetAudioOutputs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputs * SOAP_FMAC4 soap_in___trt__GetAudioOutputs(struct soap *soap, const char *tag, struct __trt__GetAudioOutputs *a, const char *type) -{ - size_t soap_flag_trt__GetAudioOutputs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioOutputs*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioOutputs, sizeof(struct __trt__GetAudioOutputs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioOutputs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioOutputs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioOutputs(soap, "trt:GetAudioOutputs", &a->trt__GetAudioOutputs, "")) - { soap_flag_trt__GetAudioOutputs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioOutputs * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioOutputs *p; - size_t k = sizeof(struct __trt__GetAudioOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioOutputs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioOutputs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputs(struct soap *soap, const struct __trt__GetAudioOutputs *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioOutputs(soap, tag ? tag : "-trt:GetAudioOutputs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioOutputs * SOAP_FMAC4 soap_get___trt__GetAudioOutputs(struct soap *soap, struct __trt__GetAudioOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSources(struct soap *soap, struct __trt__GetAudioSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetAudioSources = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSources(struct soap *soap, const struct __trt__GetAudioSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetAudioSources(soap, &a->trt__GetAudioSources); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSources(struct soap *soap, const char *tag, int id, const struct __trt__GetAudioSources *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetAudioSources(soap, "trt:GetAudioSources", -1, &a->trt__GetAudioSources, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSources * SOAP_FMAC4 soap_in___trt__GetAudioSources(struct soap *soap, const char *tag, struct __trt__GetAudioSources *a, const char *type) -{ - size_t soap_flag_trt__GetAudioSources = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetAudioSources*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetAudioSources, sizeof(struct __trt__GetAudioSources), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetAudioSources(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetAudioSources && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetAudioSources(soap, "trt:GetAudioSources", &a->trt__GetAudioSources, "")) - { soap_flag_trt__GetAudioSources--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetAudioSources * SOAP_FMAC2 soap_instantiate___trt__GetAudioSources(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetAudioSources(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetAudioSources *p; - size_t k = sizeof(struct __trt__GetAudioSources); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetAudioSources, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetAudioSources); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetAudioSources, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetAudioSources location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSources(struct soap *soap, const struct __trt__GetAudioSources *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetAudioSources(soap, tag ? tag : "-trt:GetAudioSources", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetAudioSources * SOAP_FMAC4 soap_get___trt__GetAudioSources(struct soap *soap, struct __trt__GetAudioSources *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetAudioSources(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSources(struct soap *soap, struct __trt__GetVideoSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetVideoSources = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSources(struct soap *soap, const struct __trt__GetVideoSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetVideoSources(soap, &a->trt__GetVideoSources); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSources(struct soap *soap, const char *tag, int id, const struct __trt__GetVideoSources *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetVideoSources(soap, "trt:GetVideoSources", -1, &a->trt__GetVideoSources, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSources * SOAP_FMAC4 soap_in___trt__GetVideoSources(struct soap *soap, const char *tag, struct __trt__GetVideoSources *a, const char *type) -{ - size_t soap_flag_trt__GetVideoSources = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetVideoSources*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetVideoSources, sizeof(struct __trt__GetVideoSources), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetVideoSources(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetVideoSources && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetVideoSources(soap, "trt:GetVideoSources", &a->trt__GetVideoSources, "")) - { soap_flag_trt__GetVideoSources--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetVideoSources * SOAP_FMAC2 soap_instantiate___trt__GetVideoSources(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetVideoSources(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetVideoSources *p; - size_t k = sizeof(struct __trt__GetVideoSources); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetVideoSources, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetVideoSources); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetVideoSources, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetVideoSources location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSources(struct soap *soap, const struct __trt__GetVideoSources *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetVideoSources(soap, tag ? tag : "-trt:GetVideoSources", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetVideoSources * SOAP_FMAC4 soap_get___trt__GetVideoSources(struct soap *soap, struct __trt__GetVideoSources *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetVideoSources(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetServiceCapabilities(struct soap *soap, struct __trt__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trt__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetServiceCapabilities(struct soap *soap, const struct __trt__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trt__GetServiceCapabilities(soap, &a->trt__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __trt__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trt__GetServiceCapabilities(soap, "trt:GetServiceCapabilities", -1, &a->trt__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetServiceCapabilities * SOAP_FMAC4 soap_in___trt__GetServiceCapabilities(struct soap *soap, const char *tag, struct __trt__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_trt__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trt__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___trt__GetServiceCapabilities, sizeof(struct __trt__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trt__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trt__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trt__GetServiceCapabilities(soap, "trt:GetServiceCapabilities", &a->trt__GetServiceCapabilities, "")) - { soap_flag_trt__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trt__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trt__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trt__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trt__GetServiceCapabilities *p; - size_t k = sizeof(struct __trt__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trt__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trt__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trt__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trt__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetServiceCapabilities(struct soap *soap, const struct __trt__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___trt__GetServiceCapabilities(soap, tag ? tag : "-trt:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trt__GetServiceCapabilities * SOAP_FMAC4 soap_get___trt__GetServiceCapabilities(struct soap *soap, struct __trt__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___trt__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__SetReplayConfiguration(struct soap *soap, struct __trp__SetReplayConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trp__SetReplayConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__SetReplayConfiguration(struct soap *soap, const struct __trp__SetReplayConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trp__SetReplayConfiguration(soap, &a->trp__SetReplayConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__SetReplayConfiguration(struct soap *soap, const char *tag, int id, const struct __trp__SetReplayConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trp__SetReplayConfiguration(soap, "trp:SetReplayConfiguration", -1, &a->trp__SetReplayConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__SetReplayConfiguration * SOAP_FMAC4 soap_in___trp__SetReplayConfiguration(struct soap *soap, const char *tag, struct __trp__SetReplayConfiguration *a, const char *type) -{ - size_t soap_flag_trp__SetReplayConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trp__SetReplayConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trp__SetReplayConfiguration, sizeof(struct __trp__SetReplayConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trp__SetReplayConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trp__SetReplayConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trp__SetReplayConfiguration(soap, "trp:SetReplayConfiguration", &a->trp__SetReplayConfiguration, "")) - { soap_flag_trp__SetReplayConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trp__SetReplayConfiguration * SOAP_FMAC2 soap_instantiate___trp__SetReplayConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trp__SetReplayConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trp__SetReplayConfiguration *p; - size_t k = sizeof(struct __trp__SetReplayConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trp__SetReplayConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trp__SetReplayConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trp__SetReplayConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trp__SetReplayConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__SetReplayConfiguration(struct soap *soap, const struct __trp__SetReplayConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trp__SetReplayConfiguration(soap, tag ? tag : "-trp:SetReplayConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__SetReplayConfiguration * SOAP_FMAC4 soap_get___trp__SetReplayConfiguration(struct soap *soap, struct __trp__SetReplayConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trp__SetReplayConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__GetReplayConfiguration(struct soap *soap, struct __trp__GetReplayConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trp__GetReplayConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__GetReplayConfiguration(struct soap *soap, const struct __trp__GetReplayConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trp__GetReplayConfiguration(soap, &a->trp__GetReplayConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__GetReplayConfiguration(struct soap *soap, const char *tag, int id, const struct __trp__GetReplayConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trp__GetReplayConfiguration(soap, "trp:GetReplayConfiguration", -1, &a->trp__GetReplayConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__GetReplayConfiguration * SOAP_FMAC4 soap_in___trp__GetReplayConfiguration(struct soap *soap, const char *tag, struct __trp__GetReplayConfiguration *a, const char *type) -{ - size_t soap_flag_trp__GetReplayConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trp__GetReplayConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trp__GetReplayConfiguration, sizeof(struct __trp__GetReplayConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trp__GetReplayConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trp__GetReplayConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trp__GetReplayConfiguration(soap, "trp:GetReplayConfiguration", &a->trp__GetReplayConfiguration, "")) - { soap_flag_trp__GetReplayConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trp__GetReplayConfiguration * SOAP_FMAC2 soap_instantiate___trp__GetReplayConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trp__GetReplayConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trp__GetReplayConfiguration *p; - size_t k = sizeof(struct __trp__GetReplayConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trp__GetReplayConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trp__GetReplayConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trp__GetReplayConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trp__GetReplayConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__GetReplayConfiguration(struct soap *soap, const struct __trp__GetReplayConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trp__GetReplayConfiguration(soap, tag ? tag : "-trp:GetReplayConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__GetReplayConfiguration * SOAP_FMAC4 soap_get___trp__GetReplayConfiguration(struct soap *soap, struct __trp__GetReplayConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trp__GetReplayConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__GetReplayUri(struct soap *soap, struct __trp__GetReplayUri *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trp__GetReplayUri = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__GetReplayUri(struct soap *soap, const struct __trp__GetReplayUri *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trp__GetReplayUri(soap, &a->trp__GetReplayUri); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__GetReplayUri(struct soap *soap, const char *tag, int id, const struct __trp__GetReplayUri *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trp__GetReplayUri(soap, "trp:GetReplayUri", -1, &a->trp__GetReplayUri, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__GetReplayUri * SOAP_FMAC4 soap_in___trp__GetReplayUri(struct soap *soap, const char *tag, struct __trp__GetReplayUri *a, const char *type) -{ - size_t soap_flag_trp__GetReplayUri = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trp__GetReplayUri*)soap_id_enter(soap, "", a, SOAP_TYPE___trp__GetReplayUri, sizeof(struct __trp__GetReplayUri), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trp__GetReplayUri(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trp__GetReplayUri && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trp__GetReplayUri(soap, "trp:GetReplayUri", &a->trp__GetReplayUri, "")) - { soap_flag_trp__GetReplayUri--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trp__GetReplayUri * SOAP_FMAC2 soap_instantiate___trp__GetReplayUri(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trp__GetReplayUri(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trp__GetReplayUri *p; - size_t k = sizeof(struct __trp__GetReplayUri); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trp__GetReplayUri, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trp__GetReplayUri); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trp__GetReplayUri, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trp__GetReplayUri location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__GetReplayUri(struct soap *soap, const struct __trp__GetReplayUri *a, const char *tag, const char *type) -{ - if (soap_out___trp__GetReplayUri(soap, tag ? tag : "-trp:GetReplayUri", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__GetReplayUri * SOAP_FMAC4 soap_get___trp__GetReplayUri(struct soap *soap, struct __trp__GetReplayUri *p, const char *tag, const char *type) -{ - if ((p = soap_in___trp__GetReplayUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__GetServiceCapabilities(struct soap *soap, struct __trp__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trp__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__GetServiceCapabilities(struct soap *soap, const struct __trp__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trp__GetServiceCapabilities(soap, &a->trp__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __trp__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trp__GetServiceCapabilities(soap, "trp:GetServiceCapabilities", -1, &a->trp__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__GetServiceCapabilities * SOAP_FMAC4 soap_in___trp__GetServiceCapabilities(struct soap *soap, const char *tag, struct __trp__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_trp__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trp__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___trp__GetServiceCapabilities, sizeof(struct __trp__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trp__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trp__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trp__GetServiceCapabilities(soap, "trp:GetServiceCapabilities", &a->trp__GetServiceCapabilities, "")) - { soap_flag_trp__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trp__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trp__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trp__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trp__GetServiceCapabilities *p; - size_t k = sizeof(struct __trp__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trp__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trp__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trp__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trp__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__GetServiceCapabilities(struct soap *soap, const struct __trp__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___trp__GetServiceCapabilities(soap, tag ? tag : "-trp:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trp__GetServiceCapabilities * SOAP_FMAC4 soap_get___trp__GetServiceCapabilities(struct soap *soap, struct __trp__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___trp__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetExportRecordedDataState(struct soap *soap, struct __trc__GetExportRecordedDataState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetExportRecordedDataState = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetExportRecordedDataState(struct soap *soap, const struct __trc__GetExportRecordedDataState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetExportRecordedDataState(soap, &a->trc__GetExportRecordedDataState); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetExportRecordedDataState(struct soap *soap, const char *tag, int id, const struct __trc__GetExportRecordedDataState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetExportRecordedDataState(soap, "trc:GetExportRecordedDataState", -1, &a->trc__GetExportRecordedDataState, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetExportRecordedDataState * SOAP_FMAC4 soap_in___trc__GetExportRecordedDataState(struct soap *soap, const char *tag, struct __trc__GetExportRecordedDataState *a, const char *type) -{ - size_t soap_flag_trc__GetExportRecordedDataState = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetExportRecordedDataState*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetExportRecordedDataState, sizeof(struct __trc__GetExportRecordedDataState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetExportRecordedDataState(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetExportRecordedDataState && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetExportRecordedDataState(soap, "trc:GetExportRecordedDataState", &a->trc__GetExportRecordedDataState, "")) - { soap_flag_trc__GetExportRecordedDataState--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetExportRecordedDataState * SOAP_FMAC2 soap_instantiate___trc__GetExportRecordedDataState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetExportRecordedDataState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetExportRecordedDataState *p; - size_t k = sizeof(struct __trc__GetExportRecordedDataState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetExportRecordedDataState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetExportRecordedDataState); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetExportRecordedDataState, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetExportRecordedDataState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetExportRecordedDataState(struct soap *soap, const struct __trc__GetExportRecordedDataState *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetExportRecordedDataState(soap, tag ? tag : "-trc:GetExportRecordedDataState", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetExportRecordedDataState * SOAP_FMAC4 soap_get___trc__GetExportRecordedDataState(struct soap *soap, struct __trc__GetExportRecordedDataState *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetExportRecordedDataState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__StopExportRecordedData(struct soap *soap, struct __trc__StopExportRecordedData *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__StopExportRecordedData = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__StopExportRecordedData(struct soap *soap, const struct __trc__StopExportRecordedData *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__StopExportRecordedData(soap, &a->trc__StopExportRecordedData); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__StopExportRecordedData(struct soap *soap, const char *tag, int id, const struct __trc__StopExportRecordedData *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__StopExportRecordedData(soap, "trc:StopExportRecordedData", -1, &a->trc__StopExportRecordedData, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__StopExportRecordedData * SOAP_FMAC4 soap_in___trc__StopExportRecordedData(struct soap *soap, const char *tag, struct __trc__StopExportRecordedData *a, const char *type) -{ - size_t soap_flag_trc__StopExportRecordedData = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__StopExportRecordedData*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__StopExportRecordedData, sizeof(struct __trc__StopExportRecordedData), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__StopExportRecordedData(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__StopExportRecordedData && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__StopExportRecordedData(soap, "trc:StopExportRecordedData", &a->trc__StopExportRecordedData, "")) - { soap_flag_trc__StopExportRecordedData--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__StopExportRecordedData * SOAP_FMAC2 soap_instantiate___trc__StopExportRecordedData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__StopExportRecordedData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__StopExportRecordedData *p; - size_t k = sizeof(struct __trc__StopExportRecordedData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__StopExportRecordedData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__StopExportRecordedData); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__StopExportRecordedData, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__StopExportRecordedData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__StopExportRecordedData(struct soap *soap, const struct __trc__StopExportRecordedData *a, const char *tag, const char *type) -{ - if (soap_out___trc__StopExportRecordedData(soap, tag ? tag : "-trc:StopExportRecordedData", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__StopExportRecordedData * SOAP_FMAC4 soap_get___trc__StopExportRecordedData(struct soap *soap, struct __trc__StopExportRecordedData *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__StopExportRecordedData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__ExportRecordedData(struct soap *soap, struct __trc__ExportRecordedData *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__ExportRecordedData = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__ExportRecordedData(struct soap *soap, const struct __trc__ExportRecordedData *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__ExportRecordedData(soap, &a->trc__ExportRecordedData); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__ExportRecordedData(struct soap *soap, const char *tag, int id, const struct __trc__ExportRecordedData *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__ExportRecordedData(soap, "trc:ExportRecordedData", -1, &a->trc__ExportRecordedData, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__ExportRecordedData * SOAP_FMAC4 soap_in___trc__ExportRecordedData(struct soap *soap, const char *tag, struct __trc__ExportRecordedData *a, const char *type) -{ - size_t soap_flag_trc__ExportRecordedData = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__ExportRecordedData*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__ExportRecordedData, sizeof(struct __trc__ExportRecordedData), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__ExportRecordedData(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__ExportRecordedData && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__ExportRecordedData(soap, "trc:ExportRecordedData", &a->trc__ExportRecordedData, "")) - { soap_flag_trc__ExportRecordedData--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__ExportRecordedData * SOAP_FMAC2 soap_instantiate___trc__ExportRecordedData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__ExportRecordedData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__ExportRecordedData *p; - size_t k = sizeof(struct __trc__ExportRecordedData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__ExportRecordedData, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__ExportRecordedData); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__ExportRecordedData, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__ExportRecordedData location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__ExportRecordedData(struct soap *soap, const struct __trc__ExportRecordedData *a, const char *tag, const char *type) -{ - if (soap_out___trc__ExportRecordedData(soap, tag ? tag : "-trc:ExportRecordedData", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__ExportRecordedData * SOAP_FMAC4 soap_get___trc__ExportRecordedData(struct soap *soap, struct __trc__ExportRecordedData *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__ExportRecordedData(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingJobState(struct soap *soap, struct __trc__GetRecordingJobState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetRecordingJobState = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingJobState(struct soap *soap, const struct __trc__GetRecordingJobState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetRecordingJobState(soap, &a->trc__GetRecordingJobState); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingJobState(struct soap *soap, const char *tag, int id, const struct __trc__GetRecordingJobState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetRecordingJobState(soap, "trc:GetRecordingJobState", -1, &a->trc__GetRecordingJobState, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingJobState * SOAP_FMAC4 soap_in___trc__GetRecordingJobState(struct soap *soap, const char *tag, struct __trc__GetRecordingJobState *a, const char *type) -{ - size_t soap_flag_trc__GetRecordingJobState = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetRecordingJobState*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetRecordingJobState, sizeof(struct __trc__GetRecordingJobState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetRecordingJobState(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetRecordingJobState && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetRecordingJobState(soap, "trc:GetRecordingJobState", &a->trc__GetRecordingJobState, "")) - { soap_flag_trc__GetRecordingJobState--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetRecordingJobState * SOAP_FMAC2 soap_instantiate___trc__GetRecordingJobState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetRecordingJobState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetRecordingJobState *p; - size_t k = sizeof(struct __trc__GetRecordingJobState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetRecordingJobState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetRecordingJobState); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetRecordingJobState, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetRecordingJobState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingJobState(struct soap *soap, const struct __trc__GetRecordingJobState *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetRecordingJobState(soap, tag ? tag : "-trc:GetRecordingJobState", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingJobState * SOAP_FMAC4 soap_get___trc__GetRecordingJobState(struct soap *soap, struct __trc__GetRecordingJobState *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetRecordingJobState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetRecordingJobMode(struct soap *soap, struct __trc__SetRecordingJobMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__SetRecordingJobMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetRecordingJobMode(struct soap *soap, const struct __trc__SetRecordingJobMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__SetRecordingJobMode(soap, &a->trc__SetRecordingJobMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetRecordingJobMode(struct soap *soap, const char *tag, int id, const struct __trc__SetRecordingJobMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__SetRecordingJobMode(soap, "trc:SetRecordingJobMode", -1, &a->trc__SetRecordingJobMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetRecordingJobMode * SOAP_FMAC4 soap_in___trc__SetRecordingJobMode(struct soap *soap, const char *tag, struct __trc__SetRecordingJobMode *a, const char *type) -{ - size_t soap_flag_trc__SetRecordingJobMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__SetRecordingJobMode*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__SetRecordingJobMode, sizeof(struct __trc__SetRecordingJobMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__SetRecordingJobMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__SetRecordingJobMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__SetRecordingJobMode(soap, "trc:SetRecordingJobMode", &a->trc__SetRecordingJobMode, "")) - { soap_flag_trc__SetRecordingJobMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__SetRecordingJobMode * SOAP_FMAC2 soap_instantiate___trc__SetRecordingJobMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__SetRecordingJobMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__SetRecordingJobMode *p; - size_t k = sizeof(struct __trc__SetRecordingJobMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__SetRecordingJobMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__SetRecordingJobMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__SetRecordingJobMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__SetRecordingJobMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetRecordingJobMode(struct soap *soap, const struct __trc__SetRecordingJobMode *a, const char *tag, const char *type) -{ - if (soap_out___trc__SetRecordingJobMode(soap, tag ? tag : "-trc:SetRecordingJobMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetRecordingJobMode * SOAP_FMAC4 soap_get___trc__SetRecordingJobMode(struct soap *soap, struct __trc__SetRecordingJobMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__SetRecordingJobMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingJobConfiguration(struct soap *soap, struct __trc__GetRecordingJobConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetRecordingJobConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingJobConfiguration(struct soap *soap, const struct __trc__GetRecordingJobConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetRecordingJobConfiguration(soap, &a->trc__GetRecordingJobConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingJobConfiguration(struct soap *soap, const char *tag, int id, const struct __trc__GetRecordingJobConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetRecordingJobConfiguration(soap, "trc:GetRecordingJobConfiguration", -1, &a->trc__GetRecordingJobConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_in___trc__GetRecordingJobConfiguration(struct soap *soap, const char *tag, struct __trc__GetRecordingJobConfiguration *a, const char *type) -{ - size_t soap_flag_trc__GetRecordingJobConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetRecordingJobConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetRecordingJobConfiguration, sizeof(struct __trc__GetRecordingJobConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetRecordingJobConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetRecordingJobConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetRecordingJobConfiguration(soap, "trc:GetRecordingJobConfiguration", &a->trc__GetRecordingJobConfiguration, "")) - { soap_flag_trc__GetRecordingJobConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate___trc__GetRecordingJobConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetRecordingJobConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetRecordingJobConfiguration *p; - size_t k = sizeof(struct __trc__GetRecordingJobConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetRecordingJobConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetRecordingJobConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetRecordingJobConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetRecordingJobConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingJobConfiguration(struct soap *soap, const struct __trc__GetRecordingJobConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetRecordingJobConfiguration(soap, tag ? tag : "-trc:GetRecordingJobConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_get___trc__GetRecordingJobConfiguration(struct soap *soap, struct __trc__GetRecordingJobConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetRecordingJobConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetRecordingJobConfiguration(struct soap *soap, struct __trc__SetRecordingJobConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__SetRecordingJobConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetRecordingJobConfiguration(struct soap *soap, const struct __trc__SetRecordingJobConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__SetRecordingJobConfiguration(soap, &a->trc__SetRecordingJobConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetRecordingJobConfiguration(struct soap *soap, const char *tag, int id, const struct __trc__SetRecordingJobConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__SetRecordingJobConfiguration(soap, "trc:SetRecordingJobConfiguration", -1, &a->trc__SetRecordingJobConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_in___trc__SetRecordingJobConfiguration(struct soap *soap, const char *tag, struct __trc__SetRecordingJobConfiguration *a, const char *type) -{ - size_t soap_flag_trc__SetRecordingJobConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__SetRecordingJobConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__SetRecordingJobConfiguration, sizeof(struct __trc__SetRecordingJobConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__SetRecordingJobConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__SetRecordingJobConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__SetRecordingJobConfiguration(soap, "trc:SetRecordingJobConfiguration", &a->trc__SetRecordingJobConfiguration, "")) - { soap_flag_trc__SetRecordingJobConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__SetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate___trc__SetRecordingJobConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__SetRecordingJobConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__SetRecordingJobConfiguration *p; - size_t k = sizeof(struct __trc__SetRecordingJobConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__SetRecordingJobConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__SetRecordingJobConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__SetRecordingJobConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__SetRecordingJobConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetRecordingJobConfiguration(struct soap *soap, const struct __trc__SetRecordingJobConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trc__SetRecordingJobConfiguration(soap, tag ? tag : "-trc:SetRecordingJobConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_get___trc__SetRecordingJobConfiguration(struct soap *soap, struct __trc__SetRecordingJobConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__SetRecordingJobConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingJobs(struct soap *soap, struct __trc__GetRecordingJobs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetRecordingJobs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingJobs(struct soap *soap, const struct __trc__GetRecordingJobs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetRecordingJobs(soap, &a->trc__GetRecordingJobs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingJobs(struct soap *soap, const char *tag, int id, const struct __trc__GetRecordingJobs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetRecordingJobs(soap, "trc:GetRecordingJobs", -1, &a->trc__GetRecordingJobs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingJobs * SOAP_FMAC4 soap_in___trc__GetRecordingJobs(struct soap *soap, const char *tag, struct __trc__GetRecordingJobs *a, const char *type) -{ - size_t soap_flag_trc__GetRecordingJobs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetRecordingJobs*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetRecordingJobs, sizeof(struct __trc__GetRecordingJobs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetRecordingJobs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetRecordingJobs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetRecordingJobs(soap, "trc:GetRecordingJobs", &a->trc__GetRecordingJobs, "")) - { soap_flag_trc__GetRecordingJobs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetRecordingJobs * SOAP_FMAC2 soap_instantiate___trc__GetRecordingJobs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetRecordingJobs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetRecordingJobs *p; - size_t k = sizeof(struct __trc__GetRecordingJobs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetRecordingJobs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetRecordingJobs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetRecordingJobs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetRecordingJobs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingJobs(struct soap *soap, const struct __trc__GetRecordingJobs *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetRecordingJobs(soap, tag ? tag : "-trc:GetRecordingJobs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingJobs * SOAP_FMAC4 soap_get___trc__GetRecordingJobs(struct soap *soap, struct __trc__GetRecordingJobs *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetRecordingJobs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__DeleteRecordingJob(struct soap *soap, struct __trc__DeleteRecordingJob *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__DeleteRecordingJob = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__DeleteRecordingJob(struct soap *soap, const struct __trc__DeleteRecordingJob *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__DeleteRecordingJob(soap, &a->trc__DeleteRecordingJob); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__DeleteRecordingJob(struct soap *soap, const char *tag, int id, const struct __trc__DeleteRecordingJob *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__DeleteRecordingJob(soap, "trc:DeleteRecordingJob", -1, &a->trc__DeleteRecordingJob, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__DeleteRecordingJob * SOAP_FMAC4 soap_in___trc__DeleteRecordingJob(struct soap *soap, const char *tag, struct __trc__DeleteRecordingJob *a, const char *type) -{ - size_t soap_flag_trc__DeleteRecordingJob = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__DeleteRecordingJob*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__DeleteRecordingJob, sizeof(struct __trc__DeleteRecordingJob), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__DeleteRecordingJob(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__DeleteRecordingJob && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__DeleteRecordingJob(soap, "trc:DeleteRecordingJob", &a->trc__DeleteRecordingJob, "")) - { soap_flag_trc__DeleteRecordingJob--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__DeleteRecordingJob * SOAP_FMAC2 soap_instantiate___trc__DeleteRecordingJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__DeleteRecordingJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__DeleteRecordingJob *p; - size_t k = sizeof(struct __trc__DeleteRecordingJob); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__DeleteRecordingJob, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__DeleteRecordingJob); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__DeleteRecordingJob, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__DeleteRecordingJob location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__DeleteRecordingJob(struct soap *soap, const struct __trc__DeleteRecordingJob *a, const char *tag, const char *type) -{ - if (soap_out___trc__DeleteRecordingJob(soap, tag ? tag : "-trc:DeleteRecordingJob", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__DeleteRecordingJob * SOAP_FMAC4 soap_get___trc__DeleteRecordingJob(struct soap *soap, struct __trc__DeleteRecordingJob *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__DeleteRecordingJob(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__CreateRecordingJob(struct soap *soap, struct __trc__CreateRecordingJob *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__CreateRecordingJob = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__CreateRecordingJob(struct soap *soap, const struct __trc__CreateRecordingJob *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__CreateRecordingJob(soap, &a->trc__CreateRecordingJob); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__CreateRecordingJob(struct soap *soap, const char *tag, int id, const struct __trc__CreateRecordingJob *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__CreateRecordingJob(soap, "trc:CreateRecordingJob", -1, &a->trc__CreateRecordingJob, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__CreateRecordingJob * SOAP_FMAC4 soap_in___trc__CreateRecordingJob(struct soap *soap, const char *tag, struct __trc__CreateRecordingJob *a, const char *type) -{ - size_t soap_flag_trc__CreateRecordingJob = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__CreateRecordingJob*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__CreateRecordingJob, sizeof(struct __trc__CreateRecordingJob), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__CreateRecordingJob(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__CreateRecordingJob && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__CreateRecordingJob(soap, "trc:CreateRecordingJob", &a->trc__CreateRecordingJob, "")) - { soap_flag_trc__CreateRecordingJob--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__CreateRecordingJob * SOAP_FMAC2 soap_instantiate___trc__CreateRecordingJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__CreateRecordingJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__CreateRecordingJob *p; - size_t k = sizeof(struct __trc__CreateRecordingJob); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__CreateRecordingJob, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__CreateRecordingJob); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__CreateRecordingJob, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__CreateRecordingJob location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__CreateRecordingJob(struct soap *soap, const struct __trc__CreateRecordingJob *a, const char *tag, const char *type) -{ - if (soap_out___trc__CreateRecordingJob(soap, tag ? tag : "-trc:CreateRecordingJob", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__CreateRecordingJob * SOAP_FMAC4 soap_get___trc__CreateRecordingJob(struct soap *soap, struct __trc__CreateRecordingJob *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__CreateRecordingJob(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetTrackConfiguration(struct soap *soap, struct __trc__SetTrackConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__SetTrackConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetTrackConfiguration(struct soap *soap, const struct __trc__SetTrackConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__SetTrackConfiguration(soap, &a->trc__SetTrackConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetTrackConfiguration(struct soap *soap, const char *tag, int id, const struct __trc__SetTrackConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__SetTrackConfiguration(soap, "trc:SetTrackConfiguration", -1, &a->trc__SetTrackConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetTrackConfiguration * SOAP_FMAC4 soap_in___trc__SetTrackConfiguration(struct soap *soap, const char *tag, struct __trc__SetTrackConfiguration *a, const char *type) -{ - size_t soap_flag_trc__SetTrackConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__SetTrackConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__SetTrackConfiguration, sizeof(struct __trc__SetTrackConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__SetTrackConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__SetTrackConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__SetTrackConfiguration(soap, "trc:SetTrackConfiguration", &a->trc__SetTrackConfiguration, "")) - { soap_flag_trc__SetTrackConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__SetTrackConfiguration * SOAP_FMAC2 soap_instantiate___trc__SetTrackConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__SetTrackConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__SetTrackConfiguration *p; - size_t k = sizeof(struct __trc__SetTrackConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__SetTrackConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__SetTrackConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__SetTrackConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__SetTrackConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetTrackConfiguration(struct soap *soap, const struct __trc__SetTrackConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trc__SetTrackConfiguration(soap, tag ? tag : "-trc:SetTrackConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetTrackConfiguration * SOAP_FMAC4 soap_get___trc__SetTrackConfiguration(struct soap *soap, struct __trc__SetTrackConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__SetTrackConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetTrackConfiguration(struct soap *soap, struct __trc__GetTrackConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetTrackConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetTrackConfiguration(struct soap *soap, const struct __trc__GetTrackConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetTrackConfiguration(soap, &a->trc__GetTrackConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetTrackConfiguration(struct soap *soap, const char *tag, int id, const struct __trc__GetTrackConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetTrackConfiguration(soap, "trc:GetTrackConfiguration", -1, &a->trc__GetTrackConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetTrackConfiguration * SOAP_FMAC4 soap_in___trc__GetTrackConfiguration(struct soap *soap, const char *tag, struct __trc__GetTrackConfiguration *a, const char *type) -{ - size_t soap_flag_trc__GetTrackConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetTrackConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetTrackConfiguration, sizeof(struct __trc__GetTrackConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetTrackConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetTrackConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetTrackConfiguration(soap, "trc:GetTrackConfiguration", &a->trc__GetTrackConfiguration, "")) - { soap_flag_trc__GetTrackConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetTrackConfiguration * SOAP_FMAC2 soap_instantiate___trc__GetTrackConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetTrackConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetTrackConfiguration *p; - size_t k = sizeof(struct __trc__GetTrackConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetTrackConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetTrackConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetTrackConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetTrackConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetTrackConfiguration(struct soap *soap, const struct __trc__GetTrackConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetTrackConfiguration(soap, tag ? tag : "-trc:GetTrackConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetTrackConfiguration * SOAP_FMAC4 soap_get___trc__GetTrackConfiguration(struct soap *soap, struct __trc__GetTrackConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetTrackConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__DeleteTrack(struct soap *soap, struct __trc__DeleteTrack *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__DeleteTrack = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__DeleteTrack(struct soap *soap, const struct __trc__DeleteTrack *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__DeleteTrack(soap, &a->trc__DeleteTrack); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__DeleteTrack(struct soap *soap, const char *tag, int id, const struct __trc__DeleteTrack *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__DeleteTrack(soap, "trc:DeleteTrack", -1, &a->trc__DeleteTrack, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__DeleteTrack * SOAP_FMAC4 soap_in___trc__DeleteTrack(struct soap *soap, const char *tag, struct __trc__DeleteTrack *a, const char *type) -{ - size_t soap_flag_trc__DeleteTrack = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__DeleteTrack*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__DeleteTrack, sizeof(struct __trc__DeleteTrack), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__DeleteTrack(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__DeleteTrack && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__DeleteTrack(soap, "trc:DeleteTrack", &a->trc__DeleteTrack, "")) - { soap_flag_trc__DeleteTrack--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__DeleteTrack * SOAP_FMAC2 soap_instantiate___trc__DeleteTrack(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__DeleteTrack(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__DeleteTrack *p; - size_t k = sizeof(struct __trc__DeleteTrack); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__DeleteTrack, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__DeleteTrack); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__DeleteTrack, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__DeleteTrack location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__DeleteTrack(struct soap *soap, const struct __trc__DeleteTrack *a, const char *tag, const char *type) -{ - if (soap_out___trc__DeleteTrack(soap, tag ? tag : "-trc:DeleteTrack", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__DeleteTrack * SOAP_FMAC4 soap_get___trc__DeleteTrack(struct soap *soap, struct __trc__DeleteTrack *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__DeleteTrack(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__CreateTrack(struct soap *soap, struct __trc__CreateTrack *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__CreateTrack = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__CreateTrack(struct soap *soap, const struct __trc__CreateTrack *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__CreateTrack(soap, &a->trc__CreateTrack); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__CreateTrack(struct soap *soap, const char *tag, int id, const struct __trc__CreateTrack *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__CreateTrack(soap, "trc:CreateTrack", -1, &a->trc__CreateTrack, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__CreateTrack * SOAP_FMAC4 soap_in___trc__CreateTrack(struct soap *soap, const char *tag, struct __trc__CreateTrack *a, const char *type) -{ - size_t soap_flag_trc__CreateTrack = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__CreateTrack*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__CreateTrack, sizeof(struct __trc__CreateTrack), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__CreateTrack(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__CreateTrack && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__CreateTrack(soap, "trc:CreateTrack", &a->trc__CreateTrack, "")) - { soap_flag_trc__CreateTrack--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__CreateTrack * SOAP_FMAC2 soap_instantiate___trc__CreateTrack(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__CreateTrack(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__CreateTrack *p; - size_t k = sizeof(struct __trc__CreateTrack); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__CreateTrack, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__CreateTrack); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__CreateTrack, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__CreateTrack location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__CreateTrack(struct soap *soap, const struct __trc__CreateTrack *a, const char *tag, const char *type) -{ - if (soap_out___trc__CreateTrack(soap, tag ? tag : "-trc:CreateTrack", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__CreateTrack * SOAP_FMAC4 soap_get___trc__CreateTrack(struct soap *soap, struct __trc__CreateTrack *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__CreateTrack(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingOptions(struct soap *soap, struct __trc__GetRecordingOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetRecordingOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingOptions(struct soap *soap, const struct __trc__GetRecordingOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetRecordingOptions(soap, &a->trc__GetRecordingOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingOptions(struct soap *soap, const char *tag, int id, const struct __trc__GetRecordingOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetRecordingOptions(soap, "trc:GetRecordingOptions", -1, &a->trc__GetRecordingOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingOptions * SOAP_FMAC4 soap_in___trc__GetRecordingOptions(struct soap *soap, const char *tag, struct __trc__GetRecordingOptions *a, const char *type) -{ - size_t soap_flag_trc__GetRecordingOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetRecordingOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetRecordingOptions, sizeof(struct __trc__GetRecordingOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetRecordingOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetRecordingOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetRecordingOptions(soap, "trc:GetRecordingOptions", &a->trc__GetRecordingOptions, "")) - { soap_flag_trc__GetRecordingOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetRecordingOptions * SOAP_FMAC2 soap_instantiate___trc__GetRecordingOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetRecordingOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetRecordingOptions *p; - size_t k = sizeof(struct __trc__GetRecordingOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetRecordingOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetRecordingOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetRecordingOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetRecordingOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingOptions(struct soap *soap, const struct __trc__GetRecordingOptions *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetRecordingOptions(soap, tag ? tag : "-trc:GetRecordingOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingOptions * SOAP_FMAC4 soap_get___trc__GetRecordingOptions(struct soap *soap, struct __trc__GetRecordingOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetRecordingOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingConfiguration(struct soap *soap, struct __trc__GetRecordingConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetRecordingConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingConfiguration(struct soap *soap, const struct __trc__GetRecordingConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetRecordingConfiguration(soap, &a->trc__GetRecordingConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingConfiguration(struct soap *soap, const char *tag, int id, const struct __trc__GetRecordingConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetRecordingConfiguration(soap, "trc:GetRecordingConfiguration", -1, &a->trc__GetRecordingConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingConfiguration * SOAP_FMAC4 soap_in___trc__GetRecordingConfiguration(struct soap *soap, const char *tag, struct __trc__GetRecordingConfiguration *a, const char *type) -{ - size_t soap_flag_trc__GetRecordingConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetRecordingConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetRecordingConfiguration, sizeof(struct __trc__GetRecordingConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetRecordingConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetRecordingConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetRecordingConfiguration(soap, "trc:GetRecordingConfiguration", &a->trc__GetRecordingConfiguration, "")) - { soap_flag_trc__GetRecordingConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetRecordingConfiguration * SOAP_FMAC2 soap_instantiate___trc__GetRecordingConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetRecordingConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetRecordingConfiguration *p; - size_t k = sizeof(struct __trc__GetRecordingConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetRecordingConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetRecordingConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetRecordingConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetRecordingConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingConfiguration(struct soap *soap, const struct __trc__GetRecordingConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetRecordingConfiguration(soap, tag ? tag : "-trc:GetRecordingConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordingConfiguration * SOAP_FMAC4 soap_get___trc__GetRecordingConfiguration(struct soap *soap, struct __trc__GetRecordingConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetRecordingConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetRecordingConfiguration(struct soap *soap, struct __trc__SetRecordingConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__SetRecordingConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetRecordingConfiguration(struct soap *soap, const struct __trc__SetRecordingConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__SetRecordingConfiguration(soap, &a->trc__SetRecordingConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetRecordingConfiguration(struct soap *soap, const char *tag, int id, const struct __trc__SetRecordingConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__SetRecordingConfiguration(soap, "trc:SetRecordingConfiguration", -1, &a->trc__SetRecordingConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetRecordingConfiguration * SOAP_FMAC4 soap_in___trc__SetRecordingConfiguration(struct soap *soap, const char *tag, struct __trc__SetRecordingConfiguration *a, const char *type) -{ - size_t soap_flag_trc__SetRecordingConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__SetRecordingConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__SetRecordingConfiguration, sizeof(struct __trc__SetRecordingConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__SetRecordingConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__SetRecordingConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__SetRecordingConfiguration(soap, "trc:SetRecordingConfiguration", &a->trc__SetRecordingConfiguration, "")) - { soap_flag_trc__SetRecordingConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__SetRecordingConfiguration * SOAP_FMAC2 soap_instantiate___trc__SetRecordingConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__SetRecordingConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__SetRecordingConfiguration *p; - size_t k = sizeof(struct __trc__SetRecordingConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__SetRecordingConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__SetRecordingConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__SetRecordingConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__SetRecordingConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetRecordingConfiguration(struct soap *soap, const struct __trc__SetRecordingConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___trc__SetRecordingConfiguration(soap, tag ? tag : "-trc:SetRecordingConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__SetRecordingConfiguration * SOAP_FMAC4 soap_get___trc__SetRecordingConfiguration(struct soap *soap, struct __trc__SetRecordingConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__SetRecordingConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordings(struct soap *soap, struct __trc__GetRecordings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetRecordings = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordings(struct soap *soap, const struct __trc__GetRecordings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetRecordings(soap, &a->trc__GetRecordings); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordings(struct soap *soap, const char *tag, int id, const struct __trc__GetRecordings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetRecordings(soap, "trc:GetRecordings", -1, &a->trc__GetRecordings, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordings * SOAP_FMAC4 soap_in___trc__GetRecordings(struct soap *soap, const char *tag, struct __trc__GetRecordings *a, const char *type) -{ - size_t soap_flag_trc__GetRecordings = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetRecordings*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetRecordings, sizeof(struct __trc__GetRecordings), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetRecordings(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetRecordings && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetRecordings(soap, "trc:GetRecordings", &a->trc__GetRecordings, "")) - { soap_flag_trc__GetRecordings--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetRecordings * SOAP_FMAC2 soap_instantiate___trc__GetRecordings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetRecordings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetRecordings *p; - size_t k = sizeof(struct __trc__GetRecordings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetRecordings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetRecordings); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetRecordings, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetRecordings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordings(struct soap *soap, const struct __trc__GetRecordings *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetRecordings(soap, tag ? tag : "-trc:GetRecordings", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetRecordings * SOAP_FMAC4 soap_get___trc__GetRecordings(struct soap *soap, struct __trc__GetRecordings *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetRecordings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__DeleteRecording(struct soap *soap, struct __trc__DeleteRecording *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__DeleteRecording = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__DeleteRecording(struct soap *soap, const struct __trc__DeleteRecording *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__DeleteRecording(soap, &a->trc__DeleteRecording); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__DeleteRecording(struct soap *soap, const char *tag, int id, const struct __trc__DeleteRecording *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__DeleteRecording(soap, "trc:DeleteRecording", -1, &a->trc__DeleteRecording, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__DeleteRecording * SOAP_FMAC4 soap_in___trc__DeleteRecording(struct soap *soap, const char *tag, struct __trc__DeleteRecording *a, const char *type) -{ - size_t soap_flag_trc__DeleteRecording = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__DeleteRecording*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__DeleteRecording, sizeof(struct __trc__DeleteRecording), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__DeleteRecording(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__DeleteRecording && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__DeleteRecording(soap, "trc:DeleteRecording", &a->trc__DeleteRecording, "")) - { soap_flag_trc__DeleteRecording--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__DeleteRecording * SOAP_FMAC2 soap_instantiate___trc__DeleteRecording(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__DeleteRecording(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__DeleteRecording *p; - size_t k = sizeof(struct __trc__DeleteRecording); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__DeleteRecording, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__DeleteRecording); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__DeleteRecording, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__DeleteRecording location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__DeleteRecording(struct soap *soap, const struct __trc__DeleteRecording *a, const char *tag, const char *type) -{ - if (soap_out___trc__DeleteRecording(soap, tag ? tag : "-trc:DeleteRecording", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__DeleteRecording * SOAP_FMAC4 soap_get___trc__DeleteRecording(struct soap *soap, struct __trc__DeleteRecording *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__DeleteRecording(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__CreateRecording(struct soap *soap, struct __trc__CreateRecording *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__CreateRecording = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__CreateRecording(struct soap *soap, const struct __trc__CreateRecording *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__CreateRecording(soap, &a->trc__CreateRecording); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__CreateRecording(struct soap *soap, const char *tag, int id, const struct __trc__CreateRecording *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__CreateRecording(soap, "trc:CreateRecording", -1, &a->trc__CreateRecording, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__CreateRecording * SOAP_FMAC4 soap_in___trc__CreateRecording(struct soap *soap, const char *tag, struct __trc__CreateRecording *a, const char *type) -{ - size_t soap_flag_trc__CreateRecording = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__CreateRecording*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__CreateRecording, sizeof(struct __trc__CreateRecording), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__CreateRecording(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__CreateRecording && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__CreateRecording(soap, "trc:CreateRecording", &a->trc__CreateRecording, "")) - { soap_flag_trc__CreateRecording--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__CreateRecording * SOAP_FMAC2 soap_instantiate___trc__CreateRecording(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__CreateRecording(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__CreateRecording *p; - size_t k = sizeof(struct __trc__CreateRecording); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__CreateRecording, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__CreateRecording); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__CreateRecording, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__CreateRecording location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__CreateRecording(struct soap *soap, const struct __trc__CreateRecording *a, const char *tag, const char *type) -{ - if (soap_out___trc__CreateRecording(soap, tag ? tag : "-trc:CreateRecording", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__CreateRecording * SOAP_FMAC4 soap_get___trc__CreateRecording(struct soap *soap, struct __trc__CreateRecording *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__CreateRecording(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetServiceCapabilities(struct soap *soap, struct __trc__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->trc__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetServiceCapabilities(struct soap *soap, const struct __trc__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_trc__GetServiceCapabilities(soap, &a->trc__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __trc__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_trc__GetServiceCapabilities(soap, "trc:GetServiceCapabilities", -1, &a->trc__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetServiceCapabilities * SOAP_FMAC4 soap_in___trc__GetServiceCapabilities(struct soap *soap, const char *tag, struct __trc__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_trc__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __trc__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___trc__GetServiceCapabilities, sizeof(struct __trc__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___trc__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_trc__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_trc__GetServiceCapabilities(soap, "trc:GetServiceCapabilities", &a->trc__GetServiceCapabilities, "")) - { soap_flag_trc__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __trc__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trc__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___trc__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __trc__GetServiceCapabilities *p; - size_t k = sizeof(struct __trc__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___trc__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __trc__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __trc__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __trc__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetServiceCapabilities(struct soap *soap, const struct __trc__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___trc__GetServiceCapabilities(soap, tag ? tag : "-trc:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __trc__GetServiceCapabilities * SOAP_FMAC4 soap_get___trc__GetServiceCapabilities(struct soap *soap, struct __trc__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___trc__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetCompatibleConfigurations(struct soap *soap, struct __tptz__GetCompatibleConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetCompatibleConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetCompatibleConfigurations(struct soap *soap, const struct __tptz__GetCompatibleConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetCompatibleConfigurations(soap, &a->tptz__GetCompatibleConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetCompatibleConfigurations(struct soap *soap, const char *tag, int id, const struct __tptz__GetCompatibleConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetCompatibleConfigurations(soap, "tptz:GetCompatibleConfigurations", -1, &a->tptz__GetCompatibleConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_in___tptz__GetCompatibleConfigurations(struct soap *soap, const char *tag, struct __tptz__GetCompatibleConfigurations *a, const char *type) -{ - size_t soap_flag_tptz__GetCompatibleConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetCompatibleConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetCompatibleConfigurations, sizeof(struct __tptz__GetCompatibleConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetCompatibleConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetCompatibleConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetCompatibleConfigurations(soap, "tptz:GetCompatibleConfigurations", &a->tptz__GetCompatibleConfigurations, "")) - { soap_flag_tptz__GetCompatibleConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetCompatibleConfigurations * SOAP_FMAC2 soap_instantiate___tptz__GetCompatibleConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetCompatibleConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetCompatibleConfigurations *p; - size_t k = sizeof(struct __tptz__GetCompatibleConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetCompatibleConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetCompatibleConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetCompatibleConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetCompatibleConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetCompatibleConfigurations(struct soap *soap, const struct __tptz__GetCompatibleConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetCompatibleConfigurations(soap, tag ? tag : "-tptz:GetCompatibleConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_get___tptz__GetCompatibleConfigurations(struct soap *soap, struct __tptz__GetCompatibleConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetCompatibleConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__RemovePresetTour(struct soap *soap, struct __tptz__RemovePresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__RemovePresetTour = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__RemovePresetTour(struct soap *soap, const struct __tptz__RemovePresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__RemovePresetTour(soap, &a->tptz__RemovePresetTour); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__RemovePresetTour(struct soap *soap, const char *tag, int id, const struct __tptz__RemovePresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__RemovePresetTour(soap, "tptz:RemovePresetTour", -1, &a->tptz__RemovePresetTour, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__RemovePresetTour * SOAP_FMAC4 soap_in___tptz__RemovePresetTour(struct soap *soap, const char *tag, struct __tptz__RemovePresetTour *a, const char *type) -{ - size_t soap_flag_tptz__RemovePresetTour = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__RemovePresetTour*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__RemovePresetTour, sizeof(struct __tptz__RemovePresetTour), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__RemovePresetTour(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__RemovePresetTour && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__RemovePresetTour(soap, "tptz:RemovePresetTour", &a->tptz__RemovePresetTour, "")) - { soap_flag_tptz__RemovePresetTour--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__RemovePresetTour * SOAP_FMAC2 soap_instantiate___tptz__RemovePresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__RemovePresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__RemovePresetTour *p; - size_t k = sizeof(struct __tptz__RemovePresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__RemovePresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__RemovePresetTour); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__RemovePresetTour, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__RemovePresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__RemovePresetTour(struct soap *soap, const struct __tptz__RemovePresetTour *a, const char *tag, const char *type) -{ - if (soap_out___tptz__RemovePresetTour(soap, tag ? tag : "-tptz:RemovePresetTour", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__RemovePresetTour * SOAP_FMAC4 soap_get___tptz__RemovePresetTour(struct soap *soap, struct __tptz__RemovePresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__RemovePresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__OperatePresetTour(struct soap *soap, struct __tptz__OperatePresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__OperatePresetTour = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__OperatePresetTour(struct soap *soap, const struct __tptz__OperatePresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__OperatePresetTour(soap, &a->tptz__OperatePresetTour); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__OperatePresetTour(struct soap *soap, const char *tag, int id, const struct __tptz__OperatePresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__OperatePresetTour(soap, "tptz:OperatePresetTour", -1, &a->tptz__OperatePresetTour, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__OperatePresetTour * SOAP_FMAC4 soap_in___tptz__OperatePresetTour(struct soap *soap, const char *tag, struct __tptz__OperatePresetTour *a, const char *type) -{ - size_t soap_flag_tptz__OperatePresetTour = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__OperatePresetTour*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__OperatePresetTour, sizeof(struct __tptz__OperatePresetTour), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__OperatePresetTour(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__OperatePresetTour && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__OperatePresetTour(soap, "tptz:OperatePresetTour", &a->tptz__OperatePresetTour, "")) - { soap_flag_tptz__OperatePresetTour--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__OperatePresetTour * SOAP_FMAC2 soap_instantiate___tptz__OperatePresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__OperatePresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__OperatePresetTour *p; - size_t k = sizeof(struct __tptz__OperatePresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__OperatePresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__OperatePresetTour); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__OperatePresetTour, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__OperatePresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__OperatePresetTour(struct soap *soap, const struct __tptz__OperatePresetTour *a, const char *tag, const char *type) -{ - if (soap_out___tptz__OperatePresetTour(soap, tag ? tag : "-tptz:OperatePresetTour", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__OperatePresetTour * SOAP_FMAC4 soap_get___tptz__OperatePresetTour(struct soap *soap, struct __tptz__OperatePresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__OperatePresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__ModifyPresetTour(struct soap *soap, struct __tptz__ModifyPresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__ModifyPresetTour = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__ModifyPresetTour(struct soap *soap, const struct __tptz__ModifyPresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__ModifyPresetTour(soap, &a->tptz__ModifyPresetTour); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__ModifyPresetTour(struct soap *soap, const char *tag, int id, const struct __tptz__ModifyPresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__ModifyPresetTour(soap, "tptz:ModifyPresetTour", -1, &a->tptz__ModifyPresetTour, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__ModifyPresetTour * SOAP_FMAC4 soap_in___tptz__ModifyPresetTour(struct soap *soap, const char *tag, struct __tptz__ModifyPresetTour *a, const char *type) -{ - size_t soap_flag_tptz__ModifyPresetTour = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__ModifyPresetTour*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__ModifyPresetTour, sizeof(struct __tptz__ModifyPresetTour), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__ModifyPresetTour(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__ModifyPresetTour && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__ModifyPresetTour(soap, "tptz:ModifyPresetTour", &a->tptz__ModifyPresetTour, "")) - { soap_flag_tptz__ModifyPresetTour--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__ModifyPresetTour * SOAP_FMAC2 soap_instantiate___tptz__ModifyPresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__ModifyPresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__ModifyPresetTour *p; - size_t k = sizeof(struct __tptz__ModifyPresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__ModifyPresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__ModifyPresetTour); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__ModifyPresetTour, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__ModifyPresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__ModifyPresetTour(struct soap *soap, const struct __tptz__ModifyPresetTour *a, const char *tag, const char *type) -{ - if (soap_out___tptz__ModifyPresetTour(soap, tag ? tag : "-tptz:ModifyPresetTour", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__ModifyPresetTour * SOAP_FMAC4 soap_get___tptz__ModifyPresetTour(struct soap *soap, struct __tptz__ModifyPresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__ModifyPresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__CreatePresetTour(struct soap *soap, struct __tptz__CreatePresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__CreatePresetTour = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__CreatePresetTour(struct soap *soap, const struct __tptz__CreatePresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__CreatePresetTour(soap, &a->tptz__CreatePresetTour); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__CreatePresetTour(struct soap *soap, const char *tag, int id, const struct __tptz__CreatePresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__CreatePresetTour(soap, "tptz:CreatePresetTour", -1, &a->tptz__CreatePresetTour, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__CreatePresetTour * SOAP_FMAC4 soap_in___tptz__CreatePresetTour(struct soap *soap, const char *tag, struct __tptz__CreatePresetTour *a, const char *type) -{ - size_t soap_flag_tptz__CreatePresetTour = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__CreatePresetTour*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__CreatePresetTour, sizeof(struct __tptz__CreatePresetTour), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__CreatePresetTour(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__CreatePresetTour && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__CreatePresetTour(soap, "tptz:CreatePresetTour", &a->tptz__CreatePresetTour, "")) - { soap_flag_tptz__CreatePresetTour--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__CreatePresetTour * SOAP_FMAC2 soap_instantiate___tptz__CreatePresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__CreatePresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__CreatePresetTour *p; - size_t k = sizeof(struct __tptz__CreatePresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__CreatePresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__CreatePresetTour); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__CreatePresetTour, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__CreatePresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__CreatePresetTour(struct soap *soap, const struct __tptz__CreatePresetTour *a, const char *tag, const char *type) -{ - if (soap_out___tptz__CreatePresetTour(soap, tag ? tag : "-tptz:CreatePresetTour", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__CreatePresetTour * SOAP_FMAC4 soap_get___tptz__CreatePresetTour(struct soap *soap, struct __tptz__CreatePresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__CreatePresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresetTourOptions(struct soap *soap, struct __tptz__GetPresetTourOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetPresetTourOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresetTourOptions(struct soap *soap, const struct __tptz__GetPresetTourOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetPresetTourOptions(soap, &a->tptz__GetPresetTourOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresetTourOptions(struct soap *soap, const char *tag, int id, const struct __tptz__GetPresetTourOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetPresetTourOptions(soap, "tptz:GetPresetTourOptions", -1, &a->tptz__GetPresetTourOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresetTourOptions * SOAP_FMAC4 soap_in___tptz__GetPresetTourOptions(struct soap *soap, const char *tag, struct __tptz__GetPresetTourOptions *a, const char *type) -{ - size_t soap_flag_tptz__GetPresetTourOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetPresetTourOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetPresetTourOptions, sizeof(struct __tptz__GetPresetTourOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetPresetTourOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetPresetTourOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetPresetTourOptions(soap, "tptz:GetPresetTourOptions", &a->tptz__GetPresetTourOptions, "")) - { soap_flag_tptz__GetPresetTourOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetPresetTourOptions * SOAP_FMAC2 soap_instantiate___tptz__GetPresetTourOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetPresetTourOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetPresetTourOptions *p; - size_t k = sizeof(struct __tptz__GetPresetTourOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetPresetTourOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetPresetTourOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetPresetTourOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetPresetTourOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresetTourOptions(struct soap *soap, const struct __tptz__GetPresetTourOptions *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetPresetTourOptions(soap, tag ? tag : "-tptz:GetPresetTourOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresetTourOptions * SOAP_FMAC4 soap_get___tptz__GetPresetTourOptions(struct soap *soap, struct __tptz__GetPresetTourOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetPresetTourOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresetTour(struct soap *soap, struct __tptz__GetPresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetPresetTour = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresetTour(struct soap *soap, const struct __tptz__GetPresetTour *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetPresetTour(soap, &a->tptz__GetPresetTour); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresetTour(struct soap *soap, const char *tag, int id, const struct __tptz__GetPresetTour *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetPresetTour(soap, "tptz:GetPresetTour", -1, &a->tptz__GetPresetTour, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresetTour * SOAP_FMAC4 soap_in___tptz__GetPresetTour(struct soap *soap, const char *tag, struct __tptz__GetPresetTour *a, const char *type) -{ - size_t soap_flag_tptz__GetPresetTour = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetPresetTour*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetPresetTour, sizeof(struct __tptz__GetPresetTour), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetPresetTour(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetPresetTour && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetPresetTour(soap, "tptz:GetPresetTour", &a->tptz__GetPresetTour, "")) - { soap_flag_tptz__GetPresetTour--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetPresetTour * SOAP_FMAC2 soap_instantiate___tptz__GetPresetTour(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetPresetTour(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetPresetTour *p; - size_t k = sizeof(struct __tptz__GetPresetTour); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetPresetTour, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetPresetTour); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetPresetTour, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetPresetTour location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresetTour(struct soap *soap, const struct __tptz__GetPresetTour *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetPresetTour(soap, tag ? tag : "-tptz:GetPresetTour", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresetTour * SOAP_FMAC4 soap_get___tptz__GetPresetTour(struct soap *soap, struct __tptz__GetPresetTour *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetPresetTour(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresetTours(struct soap *soap, struct __tptz__GetPresetTours *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetPresetTours = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresetTours(struct soap *soap, const struct __tptz__GetPresetTours *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetPresetTours(soap, &a->tptz__GetPresetTours); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresetTours(struct soap *soap, const char *tag, int id, const struct __tptz__GetPresetTours *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetPresetTours(soap, "tptz:GetPresetTours", -1, &a->tptz__GetPresetTours, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresetTours * SOAP_FMAC4 soap_in___tptz__GetPresetTours(struct soap *soap, const char *tag, struct __tptz__GetPresetTours *a, const char *type) -{ - size_t soap_flag_tptz__GetPresetTours = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetPresetTours*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetPresetTours, sizeof(struct __tptz__GetPresetTours), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetPresetTours(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetPresetTours && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetPresetTours(soap, "tptz:GetPresetTours", &a->tptz__GetPresetTours, "")) - { soap_flag_tptz__GetPresetTours--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetPresetTours * SOAP_FMAC2 soap_instantiate___tptz__GetPresetTours(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetPresetTours(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetPresetTours *p; - size_t k = sizeof(struct __tptz__GetPresetTours); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetPresetTours, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetPresetTours); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetPresetTours, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetPresetTours location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresetTours(struct soap *soap, const struct __tptz__GetPresetTours *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetPresetTours(soap, tag ? tag : "-tptz:GetPresetTours", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresetTours * SOAP_FMAC4 soap_get___tptz__GetPresetTours(struct soap *soap, struct __tptz__GetPresetTours *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetPresetTours(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__Stop(struct soap *soap, struct __tptz__Stop *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__Stop = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__Stop(struct soap *soap, const struct __tptz__Stop *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__Stop(soap, &a->tptz__Stop); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__Stop(struct soap *soap, const char *tag, int id, const struct __tptz__Stop *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__Stop(soap, "tptz:Stop", -1, &a->tptz__Stop, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__Stop * SOAP_FMAC4 soap_in___tptz__Stop(struct soap *soap, const char *tag, struct __tptz__Stop *a, const char *type) -{ - size_t soap_flag_tptz__Stop = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__Stop*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__Stop, sizeof(struct __tptz__Stop), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__Stop(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__Stop && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__Stop(soap, "tptz:Stop", &a->tptz__Stop, "")) - { soap_flag_tptz__Stop--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__Stop * SOAP_FMAC2 soap_instantiate___tptz__Stop(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__Stop(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__Stop *p; - size_t k = sizeof(struct __tptz__Stop); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__Stop, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__Stop); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__Stop, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__Stop location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__Stop(struct soap *soap, const struct __tptz__Stop *a, const char *tag, const char *type) -{ - if (soap_out___tptz__Stop(soap, tag ? tag : "-tptz:Stop", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__Stop * SOAP_FMAC4 soap_get___tptz__Stop(struct soap *soap, struct __tptz__Stop *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__Stop(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__AbsoluteMove(struct soap *soap, struct __tptz__AbsoluteMove *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__AbsoluteMove = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__AbsoluteMove(struct soap *soap, const struct __tptz__AbsoluteMove *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__AbsoluteMove(soap, &a->tptz__AbsoluteMove); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__AbsoluteMove(struct soap *soap, const char *tag, int id, const struct __tptz__AbsoluteMove *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__AbsoluteMove(soap, "tptz:AbsoluteMove", -1, &a->tptz__AbsoluteMove, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__AbsoluteMove * SOAP_FMAC4 soap_in___tptz__AbsoluteMove(struct soap *soap, const char *tag, struct __tptz__AbsoluteMove *a, const char *type) -{ - size_t soap_flag_tptz__AbsoluteMove = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__AbsoluteMove*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__AbsoluteMove, sizeof(struct __tptz__AbsoluteMove), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__AbsoluteMove(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__AbsoluteMove && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__AbsoluteMove(soap, "tptz:AbsoluteMove", &a->tptz__AbsoluteMove, "")) - { soap_flag_tptz__AbsoluteMove--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__AbsoluteMove * SOAP_FMAC2 soap_instantiate___tptz__AbsoluteMove(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__AbsoluteMove(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__AbsoluteMove *p; - size_t k = sizeof(struct __tptz__AbsoluteMove); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__AbsoluteMove, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__AbsoluteMove); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__AbsoluteMove, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__AbsoluteMove location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__AbsoluteMove(struct soap *soap, const struct __tptz__AbsoluteMove *a, const char *tag, const char *type) -{ - if (soap_out___tptz__AbsoluteMove(soap, tag ? tag : "-tptz:AbsoluteMove", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__AbsoluteMove * SOAP_FMAC4 soap_get___tptz__AbsoluteMove(struct soap *soap, struct __tptz__AbsoluteMove *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__AbsoluteMove(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SendAuxiliaryCommand(struct soap *soap, struct __tptz__SendAuxiliaryCommand *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__SendAuxiliaryCommand = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SendAuxiliaryCommand(struct soap *soap, const struct __tptz__SendAuxiliaryCommand *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__SendAuxiliaryCommand(soap, &a->tptz__SendAuxiliaryCommand); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SendAuxiliaryCommand(struct soap *soap, const char *tag, int id, const struct __tptz__SendAuxiliaryCommand *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__SendAuxiliaryCommand(soap, "tptz:SendAuxiliaryCommand", -1, &a->tptz__SendAuxiliaryCommand, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_in___tptz__SendAuxiliaryCommand(struct soap *soap, const char *tag, struct __tptz__SendAuxiliaryCommand *a, const char *type) -{ - size_t soap_flag_tptz__SendAuxiliaryCommand = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__SendAuxiliaryCommand*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__SendAuxiliaryCommand, sizeof(struct __tptz__SendAuxiliaryCommand), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__SendAuxiliaryCommand(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__SendAuxiliaryCommand && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__SendAuxiliaryCommand(soap, "tptz:SendAuxiliaryCommand", &a->tptz__SendAuxiliaryCommand, "")) - { soap_flag_tptz__SendAuxiliaryCommand--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate___tptz__SendAuxiliaryCommand(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__SendAuxiliaryCommand(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__SendAuxiliaryCommand *p; - size_t k = sizeof(struct __tptz__SendAuxiliaryCommand); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__SendAuxiliaryCommand, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__SendAuxiliaryCommand); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__SendAuxiliaryCommand, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__SendAuxiliaryCommand location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SendAuxiliaryCommand(struct soap *soap, const struct __tptz__SendAuxiliaryCommand *a, const char *tag, const char *type) -{ - if (soap_out___tptz__SendAuxiliaryCommand(soap, tag ? tag : "-tptz:SendAuxiliaryCommand", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_get___tptz__SendAuxiliaryCommand(struct soap *soap, struct __tptz__SendAuxiliaryCommand *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__SendAuxiliaryCommand(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__RelativeMove(struct soap *soap, struct __tptz__RelativeMove *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__RelativeMove = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__RelativeMove(struct soap *soap, const struct __tptz__RelativeMove *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__RelativeMove(soap, &a->tptz__RelativeMove); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__RelativeMove(struct soap *soap, const char *tag, int id, const struct __tptz__RelativeMove *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__RelativeMove(soap, "tptz:RelativeMove", -1, &a->tptz__RelativeMove, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__RelativeMove * SOAP_FMAC4 soap_in___tptz__RelativeMove(struct soap *soap, const char *tag, struct __tptz__RelativeMove *a, const char *type) -{ - size_t soap_flag_tptz__RelativeMove = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__RelativeMove*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__RelativeMove, sizeof(struct __tptz__RelativeMove), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__RelativeMove(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__RelativeMove && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__RelativeMove(soap, "tptz:RelativeMove", &a->tptz__RelativeMove, "")) - { soap_flag_tptz__RelativeMove--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__RelativeMove * SOAP_FMAC2 soap_instantiate___tptz__RelativeMove(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__RelativeMove(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__RelativeMove *p; - size_t k = sizeof(struct __tptz__RelativeMove); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__RelativeMove, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__RelativeMove); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__RelativeMove, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__RelativeMove location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__RelativeMove(struct soap *soap, const struct __tptz__RelativeMove *a, const char *tag, const char *type) -{ - if (soap_out___tptz__RelativeMove(soap, tag ? tag : "-tptz:RelativeMove", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__RelativeMove * SOAP_FMAC4 soap_get___tptz__RelativeMove(struct soap *soap, struct __tptz__RelativeMove *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__RelativeMove(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__ContinuousMove(struct soap *soap, struct __tptz__ContinuousMove *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__ContinuousMove = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__ContinuousMove(struct soap *soap, const struct __tptz__ContinuousMove *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__ContinuousMove(soap, &a->tptz__ContinuousMove); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__ContinuousMove(struct soap *soap, const char *tag, int id, const struct __tptz__ContinuousMove *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__ContinuousMove(soap, "tptz:ContinuousMove", -1, &a->tptz__ContinuousMove, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__ContinuousMove * SOAP_FMAC4 soap_in___tptz__ContinuousMove(struct soap *soap, const char *tag, struct __tptz__ContinuousMove *a, const char *type) -{ - size_t soap_flag_tptz__ContinuousMove = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__ContinuousMove*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__ContinuousMove, sizeof(struct __tptz__ContinuousMove), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__ContinuousMove(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__ContinuousMove && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__ContinuousMove(soap, "tptz:ContinuousMove", &a->tptz__ContinuousMove, "")) - { soap_flag_tptz__ContinuousMove--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__ContinuousMove * SOAP_FMAC2 soap_instantiate___tptz__ContinuousMove(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__ContinuousMove(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__ContinuousMove *p; - size_t k = sizeof(struct __tptz__ContinuousMove); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__ContinuousMove, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__ContinuousMove); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__ContinuousMove, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__ContinuousMove location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__ContinuousMove(struct soap *soap, const struct __tptz__ContinuousMove *a, const char *tag, const char *type) -{ - if (soap_out___tptz__ContinuousMove(soap, tag ? tag : "-tptz:ContinuousMove", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__ContinuousMove * SOAP_FMAC4 soap_get___tptz__ContinuousMove(struct soap *soap, struct __tptz__ContinuousMove *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__ContinuousMove(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetHomePosition(struct soap *soap, struct __tptz__SetHomePosition *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__SetHomePosition = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetHomePosition(struct soap *soap, const struct __tptz__SetHomePosition *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__SetHomePosition(soap, &a->tptz__SetHomePosition); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetHomePosition(struct soap *soap, const char *tag, int id, const struct __tptz__SetHomePosition *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__SetHomePosition(soap, "tptz:SetHomePosition", -1, &a->tptz__SetHomePosition, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetHomePosition * SOAP_FMAC4 soap_in___tptz__SetHomePosition(struct soap *soap, const char *tag, struct __tptz__SetHomePosition *a, const char *type) -{ - size_t soap_flag_tptz__SetHomePosition = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__SetHomePosition*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__SetHomePosition, sizeof(struct __tptz__SetHomePosition), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__SetHomePosition(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__SetHomePosition && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__SetHomePosition(soap, "tptz:SetHomePosition", &a->tptz__SetHomePosition, "")) - { soap_flag_tptz__SetHomePosition--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__SetHomePosition * SOAP_FMAC2 soap_instantiate___tptz__SetHomePosition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__SetHomePosition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__SetHomePosition *p; - size_t k = sizeof(struct __tptz__SetHomePosition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__SetHomePosition, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__SetHomePosition); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__SetHomePosition, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__SetHomePosition location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetHomePosition(struct soap *soap, const struct __tptz__SetHomePosition *a, const char *tag, const char *type) -{ - if (soap_out___tptz__SetHomePosition(soap, tag ? tag : "-tptz:SetHomePosition", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetHomePosition * SOAP_FMAC4 soap_get___tptz__SetHomePosition(struct soap *soap, struct __tptz__SetHomePosition *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__SetHomePosition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GotoHomePosition(struct soap *soap, struct __tptz__GotoHomePosition *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GotoHomePosition = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GotoHomePosition(struct soap *soap, const struct __tptz__GotoHomePosition *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GotoHomePosition(soap, &a->tptz__GotoHomePosition); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GotoHomePosition(struct soap *soap, const char *tag, int id, const struct __tptz__GotoHomePosition *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GotoHomePosition(soap, "tptz:GotoHomePosition", -1, &a->tptz__GotoHomePosition, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GotoHomePosition * SOAP_FMAC4 soap_in___tptz__GotoHomePosition(struct soap *soap, const char *tag, struct __tptz__GotoHomePosition *a, const char *type) -{ - size_t soap_flag_tptz__GotoHomePosition = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GotoHomePosition*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GotoHomePosition, sizeof(struct __tptz__GotoHomePosition), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GotoHomePosition(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GotoHomePosition && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GotoHomePosition(soap, "tptz:GotoHomePosition", &a->tptz__GotoHomePosition, "")) - { soap_flag_tptz__GotoHomePosition--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GotoHomePosition * SOAP_FMAC2 soap_instantiate___tptz__GotoHomePosition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GotoHomePosition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GotoHomePosition *p; - size_t k = sizeof(struct __tptz__GotoHomePosition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GotoHomePosition, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GotoHomePosition); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GotoHomePosition, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GotoHomePosition location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GotoHomePosition(struct soap *soap, const struct __tptz__GotoHomePosition *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GotoHomePosition(soap, tag ? tag : "-tptz:GotoHomePosition", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GotoHomePosition * SOAP_FMAC4 soap_get___tptz__GotoHomePosition(struct soap *soap, struct __tptz__GotoHomePosition *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GotoHomePosition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetConfigurationOptions(struct soap *soap, struct __tptz__GetConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetConfigurationOptions(struct soap *soap, const struct __tptz__GetConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetConfigurationOptions(soap, &a->tptz__GetConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __tptz__GetConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetConfigurationOptions(soap, "tptz:GetConfigurationOptions", -1, &a->tptz__GetConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetConfigurationOptions * SOAP_FMAC4 soap_in___tptz__GetConfigurationOptions(struct soap *soap, const char *tag, struct __tptz__GetConfigurationOptions *a, const char *type) -{ - size_t soap_flag_tptz__GetConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetConfigurationOptions, sizeof(struct __tptz__GetConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetConfigurationOptions(soap, "tptz:GetConfigurationOptions", &a->tptz__GetConfigurationOptions, "")) - { soap_flag_tptz__GetConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetConfigurationOptions * SOAP_FMAC2 soap_instantiate___tptz__GetConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetConfigurationOptions *p; - size_t k = sizeof(struct __tptz__GetConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetConfigurationOptions(struct soap *soap, const struct __tptz__GetConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetConfigurationOptions(soap, tag ? tag : "-tptz:GetConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetConfigurationOptions * SOAP_FMAC4 soap_get___tptz__GetConfigurationOptions(struct soap *soap, struct __tptz__GetConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetConfiguration(struct soap *soap, struct __tptz__SetConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__SetConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetConfiguration(struct soap *soap, const struct __tptz__SetConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__SetConfiguration(soap, &a->tptz__SetConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetConfiguration(struct soap *soap, const char *tag, int id, const struct __tptz__SetConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__SetConfiguration(soap, "tptz:SetConfiguration", -1, &a->tptz__SetConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetConfiguration * SOAP_FMAC4 soap_in___tptz__SetConfiguration(struct soap *soap, const char *tag, struct __tptz__SetConfiguration *a, const char *type) -{ - size_t soap_flag_tptz__SetConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__SetConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__SetConfiguration, sizeof(struct __tptz__SetConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__SetConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__SetConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__SetConfiguration(soap, "tptz:SetConfiguration", &a->tptz__SetConfiguration, "")) - { soap_flag_tptz__SetConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__SetConfiguration * SOAP_FMAC2 soap_instantiate___tptz__SetConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__SetConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__SetConfiguration *p; - size_t k = sizeof(struct __tptz__SetConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__SetConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__SetConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__SetConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__SetConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetConfiguration(struct soap *soap, const struct __tptz__SetConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tptz__SetConfiguration(soap, tag ? tag : "-tptz:SetConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetConfiguration * SOAP_FMAC4 soap_get___tptz__SetConfiguration(struct soap *soap, struct __tptz__SetConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__SetConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetNode(struct soap *soap, struct __tptz__GetNode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetNode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetNode(struct soap *soap, const struct __tptz__GetNode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetNode(soap, &a->tptz__GetNode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetNode(struct soap *soap, const char *tag, int id, const struct __tptz__GetNode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetNode(soap, "tptz:GetNode", -1, &a->tptz__GetNode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetNode * SOAP_FMAC4 soap_in___tptz__GetNode(struct soap *soap, const char *tag, struct __tptz__GetNode *a, const char *type) -{ - size_t soap_flag_tptz__GetNode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetNode*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetNode, sizeof(struct __tptz__GetNode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetNode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetNode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetNode(soap, "tptz:GetNode", &a->tptz__GetNode, "")) - { soap_flag_tptz__GetNode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetNode * SOAP_FMAC2 soap_instantiate___tptz__GetNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetNode *p; - size_t k = sizeof(struct __tptz__GetNode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetNode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetNode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetNode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetNode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetNode(struct soap *soap, const struct __tptz__GetNode *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetNode(soap, tag ? tag : "-tptz:GetNode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetNode * SOAP_FMAC4 soap_get___tptz__GetNode(struct soap *soap, struct __tptz__GetNode *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetNode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetNodes(struct soap *soap, struct __tptz__GetNodes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetNodes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetNodes(struct soap *soap, const struct __tptz__GetNodes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetNodes(soap, &a->tptz__GetNodes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetNodes(struct soap *soap, const char *tag, int id, const struct __tptz__GetNodes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetNodes(soap, "tptz:GetNodes", -1, &a->tptz__GetNodes, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetNodes * SOAP_FMAC4 soap_in___tptz__GetNodes(struct soap *soap, const char *tag, struct __tptz__GetNodes *a, const char *type) -{ - size_t soap_flag_tptz__GetNodes = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetNodes*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetNodes, sizeof(struct __tptz__GetNodes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetNodes(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetNodes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetNodes(soap, "tptz:GetNodes", &a->tptz__GetNodes, "")) - { soap_flag_tptz__GetNodes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetNodes * SOAP_FMAC2 soap_instantiate___tptz__GetNodes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetNodes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetNodes *p; - size_t k = sizeof(struct __tptz__GetNodes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetNodes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetNodes); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetNodes, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetNodes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetNodes(struct soap *soap, const struct __tptz__GetNodes *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetNodes(soap, tag ? tag : "-tptz:GetNodes", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetNodes * SOAP_FMAC4 soap_get___tptz__GetNodes(struct soap *soap, struct __tptz__GetNodes *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetNodes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetConfiguration(struct soap *soap, struct __tptz__GetConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetConfiguration(struct soap *soap, const struct __tptz__GetConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetConfiguration(soap, &a->tptz__GetConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetConfiguration(struct soap *soap, const char *tag, int id, const struct __tptz__GetConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetConfiguration(soap, "tptz:GetConfiguration", -1, &a->tptz__GetConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetConfiguration * SOAP_FMAC4 soap_in___tptz__GetConfiguration(struct soap *soap, const char *tag, struct __tptz__GetConfiguration *a, const char *type) -{ - size_t soap_flag_tptz__GetConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetConfiguration, sizeof(struct __tptz__GetConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetConfiguration(soap, "tptz:GetConfiguration", &a->tptz__GetConfiguration, "")) - { soap_flag_tptz__GetConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetConfiguration * SOAP_FMAC2 soap_instantiate___tptz__GetConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetConfiguration *p; - size_t k = sizeof(struct __tptz__GetConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetConfiguration(struct soap *soap, const struct __tptz__GetConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetConfiguration(soap, tag ? tag : "-tptz:GetConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetConfiguration * SOAP_FMAC4 soap_get___tptz__GetConfiguration(struct soap *soap, struct __tptz__GetConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetStatus(struct soap *soap, struct __tptz__GetStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetStatus = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetStatus(struct soap *soap, const struct __tptz__GetStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetStatus(soap, &a->tptz__GetStatus); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetStatus(struct soap *soap, const char *tag, int id, const struct __tptz__GetStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetStatus(soap, "tptz:GetStatus", -1, &a->tptz__GetStatus, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetStatus * SOAP_FMAC4 soap_in___tptz__GetStatus(struct soap *soap, const char *tag, struct __tptz__GetStatus *a, const char *type) -{ - size_t soap_flag_tptz__GetStatus = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetStatus*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetStatus, sizeof(struct __tptz__GetStatus), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetStatus(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetStatus && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetStatus(soap, "tptz:GetStatus", &a->tptz__GetStatus, "")) - { soap_flag_tptz__GetStatus--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetStatus * SOAP_FMAC2 soap_instantiate___tptz__GetStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetStatus *p; - size_t k = sizeof(struct __tptz__GetStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetStatus); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetStatus, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetStatus(struct soap *soap, const struct __tptz__GetStatus *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetStatus(soap, tag ? tag : "-tptz:GetStatus", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetStatus * SOAP_FMAC4 soap_get___tptz__GetStatus(struct soap *soap, struct __tptz__GetStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GotoPreset(struct soap *soap, struct __tptz__GotoPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GotoPreset = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GotoPreset(struct soap *soap, const struct __tptz__GotoPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GotoPreset(soap, &a->tptz__GotoPreset); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GotoPreset(struct soap *soap, const char *tag, int id, const struct __tptz__GotoPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GotoPreset(soap, "tptz:GotoPreset", -1, &a->tptz__GotoPreset, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GotoPreset * SOAP_FMAC4 soap_in___tptz__GotoPreset(struct soap *soap, const char *tag, struct __tptz__GotoPreset *a, const char *type) -{ - size_t soap_flag_tptz__GotoPreset = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GotoPreset*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GotoPreset, sizeof(struct __tptz__GotoPreset), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GotoPreset(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GotoPreset && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GotoPreset(soap, "tptz:GotoPreset", &a->tptz__GotoPreset, "")) - { soap_flag_tptz__GotoPreset--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GotoPreset * SOAP_FMAC2 soap_instantiate___tptz__GotoPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GotoPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GotoPreset *p; - size_t k = sizeof(struct __tptz__GotoPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GotoPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GotoPreset); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GotoPreset, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GotoPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GotoPreset(struct soap *soap, const struct __tptz__GotoPreset *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GotoPreset(soap, tag ? tag : "-tptz:GotoPreset", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GotoPreset * SOAP_FMAC4 soap_get___tptz__GotoPreset(struct soap *soap, struct __tptz__GotoPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GotoPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__RemovePreset(struct soap *soap, struct __tptz__RemovePreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__RemovePreset = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__RemovePreset(struct soap *soap, const struct __tptz__RemovePreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__RemovePreset(soap, &a->tptz__RemovePreset); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__RemovePreset(struct soap *soap, const char *tag, int id, const struct __tptz__RemovePreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__RemovePreset(soap, "tptz:RemovePreset", -1, &a->tptz__RemovePreset, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__RemovePreset * SOAP_FMAC4 soap_in___tptz__RemovePreset(struct soap *soap, const char *tag, struct __tptz__RemovePreset *a, const char *type) -{ - size_t soap_flag_tptz__RemovePreset = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__RemovePreset*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__RemovePreset, sizeof(struct __tptz__RemovePreset), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__RemovePreset(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__RemovePreset && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__RemovePreset(soap, "tptz:RemovePreset", &a->tptz__RemovePreset, "")) - { soap_flag_tptz__RemovePreset--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__RemovePreset * SOAP_FMAC2 soap_instantiate___tptz__RemovePreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__RemovePreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__RemovePreset *p; - size_t k = sizeof(struct __tptz__RemovePreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__RemovePreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__RemovePreset); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__RemovePreset, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__RemovePreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__RemovePreset(struct soap *soap, const struct __tptz__RemovePreset *a, const char *tag, const char *type) -{ - if (soap_out___tptz__RemovePreset(soap, tag ? tag : "-tptz:RemovePreset", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__RemovePreset * SOAP_FMAC4 soap_get___tptz__RemovePreset(struct soap *soap, struct __tptz__RemovePreset *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__RemovePreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetPreset(struct soap *soap, struct __tptz__SetPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__SetPreset = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetPreset(struct soap *soap, const struct __tptz__SetPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__SetPreset(soap, &a->tptz__SetPreset); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetPreset(struct soap *soap, const char *tag, int id, const struct __tptz__SetPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__SetPreset(soap, "tptz:SetPreset", -1, &a->tptz__SetPreset, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetPreset * SOAP_FMAC4 soap_in___tptz__SetPreset(struct soap *soap, const char *tag, struct __tptz__SetPreset *a, const char *type) -{ - size_t soap_flag_tptz__SetPreset = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__SetPreset*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__SetPreset, sizeof(struct __tptz__SetPreset), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__SetPreset(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__SetPreset && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__SetPreset(soap, "tptz:SetPreset", &a->tptz__SetPreset, "")) - { soap_flag_tptz__SetPreset--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__SetPreset * SOAP_FMAC2 soap_instantiate___tptz__SetPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__SetPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__SetPreset *p; - size_t k = sizeof(struct __tptz__SetPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__SetPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__SetPreset); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__SetPreset, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__SetPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetPreset(struct soap *soap, const struct __tptz__SetPreset *a, const char *tag, const char *type) -{ - if (soap_out___tptz__SetPreset(soap, tag ? tag : "-tptz:SetPreset", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetPreset * SOAP_FMAC4 soap_get___tptz__SetPreset(struct soap *soap, struct __tptz__SetPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__SetPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresets(struct soap *soap, struct __tptz__GetPresets *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetPresets = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresets(struct soap *soap, const struct __tptz__GetPresets *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetPresets(soap, &a->tptz__GetPresets); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresets(struct soap *soap, const char *tag, int id, const struct __tptz__GetPresets *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetPresets(soap, "tptz:GetPresets", -1, &a->tptz__GetPresets, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresets * SOAP_FMAC4 soap_in___tptz__GetPresets(struct soap *soap, const char *tag, struct __tptz__GetPresets *a, const char *type) -{ - size_t soap_flag_tptz__GetPresets = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetPresets*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetPresets, sizeof(struct __tptz__GetPresets), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetPresets(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetPresets && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetPresets(soap, "tptz:GetPresets", &a->tptz__GetPresets, "")) - { soap_flag_tptz__GetPresets--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetPresets * SOAP_FMAC2 soap_instantiate___tptz__GetPresets(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetPresets(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetPresets *p; - size_t k = sizeof(struct __tptz__GetPresets); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetPresets, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetPresets); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetPresets, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetPresets location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresets(struct soap *soap, const struct __tptz__GetPresets *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetPresets(soap, tag ? tag : "-tptz:GetPresets", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetPresets * SOAP_FMAC4 soap_get___tptz__GetPresets(struct soap *soap, struct __tptz__GetPresets *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetPresets(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetConfigurations(struct soap *soap, struct __tptz__GetConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetConfigurations(struct soap *soap, const struct __tptz__GetConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetConfigurations(soap, &a->tptz__GetConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetConfigurations(struct soap *soap, const char *tag, int id, const struct __tptz__GetConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetConfigurations(soap, "tptz:GetConfigurations", -1, &a->tptz__GetConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetConfigurations * SOAP_FMAC4 soap_in___tptz__GetConfigurations(struct soap *soap, const char *tag, struct __tptz__GetConfigurations *a, const char *type) -{ - size_t soap_flag_tptz__GetConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetConfigurations, sizeof(struct __tptz__GetConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetConfigurations(soap, "tptz:GetConfigurations", &a->tptz__GetConfigurations, "")) - { soap_flag_tptz__GetConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetConfigurations * SOAP_FMAC2 soap_instantiate___tptz__GetConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetConfigurations *p; - size_t k = sizeof(struct __tptz__GetConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetConfigurations(struct soap *soap, const struct __tptz__GetConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetConfigurations(soap, tag ? tag : "-tptz:GetConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetConfigurations * SOAP_FMAC4 soap_get___tptz__GetConfigurations(struct soap *soap, struct __tptz__GetConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetServiceCapabilities(struct soap *soap, struct __tptz__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tptz__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetServiceCapabilities(struct soap *soap, const struct __tptz__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tptz__GetServiceCapabilities(soap, &a->tptz__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __tptz__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tptz__GetServiceCapabilities(soap, "tptz:GetServiceCapabilities", -1, &a->tptz__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetServiceCapabilities * SOAP_FMAC4 soap_in___tptz__GetServiceCapabilities(struct soap *soap, const char *tag, struct __tptz__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_tptz__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__GetServiceCapabilities, sizeof(struct __tptz__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tptz__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tptz__GetServiceCapabilities(soap, "tptz:GetServiceCapabilities", &a->tptz__GetServiceCapabilities, "")) - { soap_flag_tptz__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tptz__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tptz__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__GetServiceCapabilities *p; - size_t k = sizeof(struct __tptz__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetServiceCapabilities(struct soap *soap, const struct __tptz__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___tptz__GetServiceCapabilities(soap, tag ? tag : "-tptz:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__GetServiceCapabilities * SOAP_FMAC4 soap_get___tptz__GetServiceCapabilities(struct soap *soap, struct __tptz__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SendReceiveSerialCommand(struct soap *soap, struct __tmd__SendReceiveSerialCommand *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SendReceiveSerialCommand = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SendReceiveSerialCommand(struct soap *soap, const struct __tmd__SendReceiveSerialCommand *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SendReceiveSerialCommand(soap, &a->tmd__SendReceiveSerialCommand); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SendReceiveSerialCommand(struct soap *soap, const char *tag, int id, const struct __tmd__SendReceiveSerialCommand *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SendReceiveSerialCommand(soap, "tmd:SendReceiveSerialCommand", -1, &a->tmd__SendReceiveSerialCommand, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_in___tmd__SendReceiveSerialCommand(struct soap *soap, const char *tag, struct __tmd__SendReceiveSerialCommand *a, const char *type) -{ - size_t soap_flag_tmd__SendReceiveSerialCommand = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SendReceiveSerialCommand*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SendReceiveSerialCommand, sizeof(struct __tmd__SendReceiveSerialCommand), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SendReceiveSerialCommand(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SendReceiveSerialCommand && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SendReceiveSerialCommand(soap, "tmd:SendReceiveSerialCommand", &a->tmd__SendReceiveSerialCommand, "")) - { soap_flag_tmd__SendReceiveSerialCommand--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SendReceiveSerialCommand * SOAP_FMAC2 soap_instantiate___tmd__SendReceiveSerialCommand(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SendReceiveSerialCommand(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SendReceiveSerialCommand *p; - size_t k = sizeof(struct __tmd__SendReceiveSerialCommand); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SendReceiveSerialCommand, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SendReceiveSerialCommand); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SendReceiveSerialCommand, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SendReceiveSerialCommand location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SendReceiveSerialCommand(struct soap *soap, const struct __tmd__SendReceiveSerialCommand *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SendReceiveSerialCommand(soap, tag ? tag : "-tmd:SendReceiveSerialCommand", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_get___tmd__SendReceiveSerialCommand(struct soap *soap, struct __tmd__SendReceiveSerialCommand *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SendReceiveSerialCommand(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetSerialPortConfigurationOptions(struct soap *soap, struct __tmd__GetSerialPortConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetSerialPortConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const struct __tmd__GetSerialPortConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetSerialPortConfigurationOptions(soap, &a->tmd__GetSerialPortConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __tmd__GetSerialPortConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetSerialPortConfigurationOptions(soap, "tmd:GetSerialPortConfigurationOptions", -1, &a->tmd__GetSerialPortConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *tag, struct __tmd__GetSerialPortConfigurationOptions *a, const char *type) -{ - size_t soap_flag_tmd__GetSerialPortConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetSerialPortConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetSerialPortConfigurationOptions, sizeof(struct __tmd__GetSerialPortConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetSerialPortConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetSerialPortConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetSerialPortConfigurationOptions(soap, "tmd:GetSerialPortConfigurationOptions", &a->tmd__GetSerialPortConfigurationOptions, "")) - { soap_flag_tmd__GetSerialPortConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetSerialPortConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetSerialPortConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetSerialPortConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetSerialPortConfigurationOptions *p; - size_t k = sizeof(struct __tmd__GetSerialPortConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetSerialPortConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetSerialPortConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetSerialPortConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetSerialPortConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const struct __tmd__GetSerialPortConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetSerialPortConfigurationOptions(soap, tag ? tag : "-tmd:GetSerialPortConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetSerialPortConfigurationOptions(struct soap *soap, struct __tmd__GetSerialPortConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetSerialPortConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetSerialPortConfiguration(struct soap *soap, struct __tmd__SetSerialPortConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SetSerialPortConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetSerialPortConfiguration(struct soap *soap, const struct __tmd__SetSerialPortConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SetSerialPortConfiguration(soap, &a->tmd__SetSerialPortConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetSerialPortConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__SetSerialPortConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SetSerialPortConfiguration(soap, "tmd:SetSerialPortConfiguration", -1, &a->tmd__SetSerialPortConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_in___tmd__SetSerialPortConfiguration(struct soap *soap, const char *tag, struct __tmd__SetSerialPortConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__SetSerialPortConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetSerialPortConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetSerialPortConfiguration, sizeof(struct __tmd__SetSerialPortConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetSerialPortConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SetSerialPortConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SetSerialPortConfiguration(soap, "tmd:SetSerialPortConfiguration", &a->tmd__SetSerialPortConfiguration, "")) - { soap_flag_tmd__SetSerialPortConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetSerialPortConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetSerialPortConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetSerialPortConfiguration *p; - size_t k = sizeof(struct __tmd__SetSerialPortConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetSerialPortConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetSerialPortConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetSerialPortConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetSerialPortConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetSerialPortConfiguration(struct soap *soap, const struct __tmd__SetSerialPortConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetSerialPortConfiguration(soap, tag ? tag : "-tmd:SetSerialPortConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_get___tmd__SetSerialPortConfiguration(struct soap *soap, struct __tmd__SetSerialPortConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetSerialPortConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetSerialPortConfiguration(struct soap *soap, struct __tmd__GetSerialPortConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetSerialPortConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetSerialPortConfiguration(struct soap *soap, const struct __tmd__GetSerialPortConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetSerialPortConfiguration(soap, &a->tmd__GetSerialPortConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetSerialPortConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__GetSerialPortConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetSerialPortConfiguration(soap, "tmd:GetSerialPortConfiguration", -1, &a->tmd__GetSerialPortConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_in___tmd__GetSerialPortConfiguration(struct soap *soap, const char *tag, struct __tmd__GetSerialPortConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__GetSerialPortConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetSerialPortConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetSerialPortConfiguration, sizeof(struct __tmd__GetSerialPortConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetSerialPortConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetSerialPortConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetSerialPortConfiguration(soap, "tmd:GetSerialPortConfiguration", &a->tmd__GetSerialPortConfiguration, "")) - { soap_flag_tmd__GetSerialPortConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetSerialPortConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetSerialPortConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetSerialPortConfiguration *p; - size_t k = sizeof(struct __tmd__GetSerialPortConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetSerialPortConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetSerialPortConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetSerialPortConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetSerialPortConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetSerialPortConfiguration(struct soap *soap, const struct __tmd__GetSerialPortConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetSerialPortConfiguration(soap, tag ? tag : "-tmd:GetSerialPortConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_get___tmd__GetSerialPortConfiguration(struct soap *soap, struct __tmd__GetSerialPortConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetSerialPortConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetSerialPorts(struct soap *soap, struct __tmd__GetSerialPorts *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetSerialPorts = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetSerialPorts(struct soap *soap, const struct __tmd__GetSerialPorts *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetSerialPorts(soap, &a->tmd__GetSerialPorts); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetSerialPorts(struct soap *soap, const char *tag, int id, const struct __tmd__GetSerialPorts *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetSerialPorts(soap, "tmd:GetSerialPorts", -1, &a->tmd__GetSerialPorts, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetSerialPorts * SOAP_FMAC4 soap_in___tmd__GetSerialPorts(struct soap *soap, const char *tag, struct __tmd__GetSerialPorts *a, const char *type) -{ - size_t soap_flag_tmd__GetSerialPorts = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetSerialPorts*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetSerialPorts, sizeof(struct __tmd__GetSerialPorts), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetSerialPorts(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetSerialPorts && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetSerialPorts(soap, "tmd:GetSerialPorts", &a->tmd__GetSerialPorts, "")) - { soap_flag_tmd__GetSerialPorts--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetSerialPorts * SOAP_FMAC2 soap_instantiate___tmd__GetSerialPorts(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetSerialPorts(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetSerialPorts *p; - size_t k = sizeof(struct __tmd__GetSerialPorts); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetSerialPorts, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetSerialPorts); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetSerialPorts, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetSerialPorts location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetSerialPorts(struct soap *soap, const struct __tmd__GetSerialPorts *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetSerialPorts(soap, tag ? tag : "-tmd:GetSerialPorts", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetSerialPorts * SOAP_FMAC4 soap_get___tmd__GetSerialPorts(struct soap *soap, struct __tmd__GetSerialPorts *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetSerialPorts(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetDigitalInputConfigurations(struct soap *soap, struct __tmd__SetDigitalInputConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SetDigitalInputConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetDigitalInputConfigurations(struct soap *soap, const struct __tmd__SetDigitalInputConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SetDigitalInputConfigurations(soap, &a->tmd__SetDigitalInputConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetDigitalInputConfigurations(struct soap *soap, const char *tag, int id, const struct __tmd__SetDigitalInputConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SetDigitalInputConfigurations(soap, "tmd:SetDigitalInputConfigurations", -1, &a->tmd__SetDigitalInputConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_in___tmd__SetDigitalInputConfigurations(struct soap *soap, const char *tag, struct __tmd__SetDigitalInputConfigurations *a, const char *type) -{ - size_t soap_flag_tmd__SetDigitalInputConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetDigitalInputConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetDigitalInputConfigurations, sizeof(struct __tmd__SetDigitalInputConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetDigitalInputConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SetDigitalInputConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SetDigitalInputConfigurations(soap, "tmd:SetDigitalInputConfigurations", &a->tmd__SetDigitalInputConfigurations, "")) - { soap_flag_tmd__SetDigitalInputConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetDigitalInputConfigurations * SOAP_FMAC2 soap_instantiate___tmd__SetDigitalInputConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetDigitalInputConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetDigitalInputConfigurations *p; - size_t k = sizeof(struct __tmd__SetDigitalInputConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetDigitalInputConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetDigitalInputConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetDigitalInputConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetDigitalInputConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetDigitalInputConfigurations(struct soap *soap, const struct __tmd__SetDigitalInputConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetDigitalInputConfigurations(soap, tag ? tag : "-tmd:SetDigitalInputConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_get___tmd__SetDigitalInputConfigurations(struct soap *soap, struct __tmd__SetDigitalInputConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetDigitalInputConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, struct __tmd__GetDigitalInputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetDigitalInputConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const struct __tmd__GetDigitalInputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetDigitalInputConfigurationOptions(soap, &a->tmd__GetDigitalInputConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __tmd__GetDigitalInputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetDigitalInputConfigurationOptions(soap, "tmd:GetDigitalInputConfigurationOptions", -1, &a->tmd__GetDigitalInputConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *tag, struct __tmd__GetDigitalInputConfigurationOptions *a, const char *type) -{ - size_t soap_flag_tmd__GetDigitalInputConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetDigitalInputConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions, sizeof(struct __tmd__GetDigitalInputConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetDigitalInputConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetDigitalInputConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetDigitalInputConfigurationOptions(soap, "tmd:GetDigitalInputConfigurationOptions", &a->tmd__GetDigitalInputConfigurationOptions, "")) - { soap_flag_tmd__GetDigitalInputConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetDigitalInputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetDigitalInputConfigurationOptions *p; - size_t k = sizeof(struct __tmd__GetDigitalInputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetDigitalInputConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetDigitalInputConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetDigitalInputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const struct __tmd__GetDigitalInputConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetDigitalInputConfigurationOptions(soap, tag ? tag : "-tmd:GetDigitalInputConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, struct __tmd__GetDigitalInputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetDigitalInputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetDigitalInputs(struct soap *soap, struct __tmd__GetDigitalInputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetDigitalInputs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetDigitalInputs(struct soap *soap, const struct __tmd__GetDigitalInputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetDigitalInputs(soap, &a->tmd__GetDigitalInputs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetDigitalInputs(struct soap *soap, const char *tag, int id, const struct __tmd__GetDigitalInputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetDigitalInputs(soap, "tmd:GetDigitalInputs", -1, &a->tmd__GetDigitalInputs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetDigitalInputs * SOAP_FMAC4 soap_in___tmd__GetDigitalInputs(struct soap *soap, const char *tag, struct __tmd__GetDigitalInputs *a, const char *type) -{ - size_t soap_flag_tmd__GetDigitalInputs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetDigitalInputs*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetDigitalInputs, sizeof(struct __tmd__GetDigitalInputs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetDigitalInputs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetDigitalInputs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetDigitalInputs(soap, "tmd:GetDigitalInputs", &a->tmd__GetDigitalInputs, "")) - { soap_flag_tmd__GetDigitalInputs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetDigitalInputs * SOAP_FMAC2 soap_instantiate___tmd__GetDigitalInputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetDigitalInputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetDigitalInputs *p; - size_t k = sizeof(struct __tmd__GetDigitalInputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetDigitalInputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetDigitalInputs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetDigitalInputs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetDigitalInputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetDigitalInputs(struct soap *soap, const struct __tmd__GetDigitalInputs *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetDigitalInputs(soap, tag ? tag : "-tmd:GetDigitalInputs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetDigitalInputs * SOAP_FMAC4 soap_get___tmd__GetDigitalInputs(struct soap *soap, struct __tmd__GetDigitalInputs *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetDigitalInputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetRelayOutputState(struct soap *soap, struct __tmd__SetRelayOutputState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetRelayOutputState = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetRelayOutputState(struct soap *soap, const struct __tmd__SetRelayOutputState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetRelayOutputState(soap, &a->tds__SetRelayOutputState); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetRelayOutputState(struct soap *soap, const char *tag, int id, const struct __tmd__SetRelayOutputState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetRelayOutputState(soap, "tds:SetRelayOutputState", -1, &a->tds__SetRelayOutputState, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetRelayOutputState * SOAP_FMAC4 soap_in___tmd__SetRelayOutputState(struct soap *soap, const char *tag, struct __tmd__SetRelayOutputState *a, const char *type) -{ - size_t soap_flag_tds__SetRelayOutputState = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetRelayOutputState*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetRelayOutputState, sizeof(struct __tmd__SetRelayOutputState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetRelayOutputState(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetRelayOutputState && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetRelayOutputState(soap, "tds:SetRelayOutputState", &a->tds__SetRelayOutputState, "")) - { soap_flag_tds__SetRelayOutputState--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetRelayOutputState * SOAP_FMAC2 soap_instantiate___tmd__SetRelayOutputState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetRelayOutputState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetRelayOutputState *p; - size_t k = sizeof(struct __tmd__SetRelayOutputState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetRelayOutputState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetRelayOutputState); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetRelayOutputState, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetRelayOutputState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetRelayOutputState(struct soap *soap, const struct __tmd__SetRelayOutputState *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetRelayOutputState(soap, tag ? tag : "-tmd:SetRelayOutputState", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetRelayOutputState * SOAP_FMAC4 soap_get___tmd__SetRelayOutputState(struct soap *soap, struct __tmd__SetRelayOutputState *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetRelayOutputState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetRelayOutputSettings(struct soap *soap, struct __tmd__SetRelayOutputSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SetRelayOutputSettings = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetRelayOutputSettings(struct soap *soap, const struct __tmd__SetRelayOutputSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SetRelayOutputSettings(soap, &a->tmd__SetRelayOutputSettings); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetRelayOutputSettings(struct soap *soap, const char *tag, int id, const struct __tmd__SetRelayOutputSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SetRelayOutputSettings(soap, "tmd:SetRelayOutputSettings", -1, &a->tmd__SetRelayOutputSettings, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_in___tmd__SetRelayOutputSettings(struct soap *soap, const char *tag, struct __tmd__SetRelayOutputSettings *a, const char *type) -{ - size_t soap_flag_tmd__SetRelayOutputSettings = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetRelayOutputSettings*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetRelayOutputSettings, sizeof(struct __tmd__SetRelayOutputSettings), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetRelayOutputSettings(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SetRelayOutputSettings && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SetRelayOutputSettings(soap, "tmd:SetRelayOutputSettings", &a->tmd__SetRelayOutputSettings, "")) - { soap_flag_tmd__SetRelayOutputSettings--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate___tmd__SetRelayOutputSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetRelayOutputSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetRelayOutputSettings *p; - size_t k = sizeof(struct __tmd__SetRelayOutputSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetRelayOutputSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetRelayOutputSettings); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetRelayOutputSettings, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetRelayOutputSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetRelayOutputSettings(struct soap *soap, const struct __tmd__SetRelayOutputSettings *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetRelayOutputSettings(soap, tag ? tag : "-tmd:SetRelayOutputSettings", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_get___tmd__SetRelayOutputSettings(struct soap *soap, struct __tmd__SetRelayOutputSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetRelayOutputSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetRelayOutputs(struct soap *soap, struct __tmd__GetRelayOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetRelayOutputs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetRelayOutputs(struct soap *soap, const struct __tmd__GetRelayOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetRelayOutputs(soap, &a->tds__GetRelayOutputs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetRelayOutputs(struct soap *soap, const char *tag, int id, const struct __tmd__GetRelayOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetRelayOutputs(soap, "tds:GetRelayOutputs", -1, &a->tds__GetRelayOutputs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetRelayOutputs * SOAP_FMAC4 soap_in___tmd__GetRelayOutputs(struct soap *soap, const char *tag, struct __tmd__GetRelayOutputs *a, const char *type) -{ - size_t soap_flag_tds__GetRelayOutputs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetRelayOutputs*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetRelayOutputs, sizeof(struct __tmd__GetRelayOutputs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetRelayOutputs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetRelayOutputs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetRelayOutputs(soap, "tds:GetRelayOutputs", &a->tds__GetRelayOutputs, "")) - { soap_flag_tds__GetRelayOutputs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetRelayOutputs * SOAP_FMAC2 soap_instantiate___tmd__GetRelayOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetRelayOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetRelayOutputs *p; - size_t k = sizeof(struct __tmd__GetRelayOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetRelayOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetRelayOutputs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetRelayOutputs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetRelayOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetRelayOutputs(struct soap *soap, const struct __tmd__GetRelayOutputs *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetRelayOutputs(soap, tag ? tag : "-tmd:GetRelayOutputs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetRelayOutputs * SOAP_FMAC4 soap_get___tmd__GetRelayOutputs(struct soap *soap, struct __tmd__GetRelayOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetRelayOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, struct __tmd__GetAudioOutputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetAudioOutputConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const struct __tmd__GetAudioOutputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetAudioOutputConfigurationOptions(soap, &a->tmd__GetAudioOutputConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __tmd__GetAudioOutputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetAudioOutputConfigurationOptions(soap, "tmd:GetAudioOutputConfigurationOptions", -1, &a->tmd__GetAudioOutputConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, struct __tmd__GetAudioOutputConfigurationOptions *a, const char *type) -{ - size_t soap_flag_tmd__GetAudioOutputConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetAudioOutputConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions, sizeof(struct __tmd__GetAudioOutputConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetAudioOutputConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetAudioOutputConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetAudioOutputConfigurationOptions(soap, "tmd:GetAudioOutputConfigurationOptions", &a->tmd__GetAudioOutputConfigurationOptions, "")) - { soap_flag_tmd__GetAudioOutputConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetAudioOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetAudioOutputConfigurationOptions *p; - size_t k = sizeof(struct __tmd__GetAudioOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetAudioOutputConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetAudioOutputConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetAudioOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const struct __tmd__GetAudioOutputConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetAudioOutputConfigurationOptions(soap, tag ? tag : "-tmd:GetAudioOutputConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, struct __tmd__GetAudioOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetAudioOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, struct __tmd__GetAudioSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetAudioSourceConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const struct __tmd__GetAudioSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetAudioSourceConfigurationOptions(soap, &a->tmd__GetAudioSourceConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __tmd__GetAudioSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetAudioSourceConfigurationOptions(soap, "tmd:GetAudioSourceConfigurationOptions", -1, &a->tmd__GetAudioSourceConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, struct __tmd__GetAudioSourceConfigurationOptions *a, const char *type) -{ - size_t soap_flag_tmd__GetAudioSourceConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetAudioSourceConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions, sizeof(struct __tmd__GetAudioSourceConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetAudioSourceConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetAudioSourceConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetAudioSourceConfigurationOptions(soap, "tmd:GetAudioSourceConfigurationOptions", &a->tmd__GetAudioSourceConfigurationOptions, "")) - { soap_flag_tmd__GetAudioSourceConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetAudioSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetAudioSourceConfigurationOptions *p; - size_t k = sizeof(struct __tmd__GetAudioSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetAudioSourceConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetAudioSourceConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetAudioSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const struct __tmd__GetAudioSourceConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetAudioSourceConfigurationOptions(soap, tag ? tag : "-tmd:GetAudioSourceConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, struct __tmd__GetAudioSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetAudioSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, struct __tmd__GetVideoOutputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetVideoOutputConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const struct __tmd__GetVideoOutputConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetVideoOutputConfigurationOptions(soap, &a->tmd__GetVideoOutputConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __tmd__GetVideoOutputConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetVideoOutputConfigurationOptions(soap, "tmd:GetVideoOutputConfigurationOptions", -1, &a->tmd__GetVideoOutputConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *tag, struct __tmd__GetVideoOutputConfigurationOptions *a, const char *type) -{ - size_t soap_flag_tmd__GetVideoOutputConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetVideoOutputConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions, sizeof(struct __tmd__GetVideoOutputConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetVideoOutputConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetVideoOutputConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetVideoOutputConfigurationOptions(soap, "tmd:GetVideoOutputConfigurationOptions", &a->tmd__GetVideoOutputConfigurationOptions, "")) - { soap_flag_tmd__GetVideoOutputConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetVideoOutputConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetVideoOutputConfigurationOptions *p; - size_t k = sizeof(struct __tmd__GetVideoOutputConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetVideoOutputConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetVideoOutputConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetVideoOutputConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const struct __tmd__GetVideoOutputConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetVideoOutputConfigurationOptions(soap, tag ? tag : "-tmd:GetVideoOutputConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, struct __tmd__GetVideoOutputConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetVideoOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, struct __tmd__GetVideoSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetVideoSourceConfigurationOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const struct __tmd__GetVideoSourceConfigurationOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetVideoSourceConfigurationOptions(soap, &a->tmd__GetVideoSourceConfigurationOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, int id, const struct __tmd__GetVideoSourceConfigurationOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetVideoSourceConfigurationOptions(soap, "tmd:GetVideoSourceConfigurationOptions", -1, &a->tmd__GetVideoSourceConfigurationOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, struct __tmd__GetVideoSourceConfigurationOptions *a, const char *type) -{ - size_t soap_flag_tmd__GetVideoSourceConfigurationOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetVideoSourceConfigurationOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions, sizeof(struct __tmd__GetVideoSourceConfigurationOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetVideoSourceConfigurationOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetVideoSourceConfigurationOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetVideoSourceConfigurationOptions(soap, "tmd:GetVideoSourceConfigurationOptions", &a->tmd__GetVideoSourceConfigurationOptions, "")) - { soap_flag_tmd__GetVideoSourceConfigurationOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetVideoSourceConfigurationOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetVideoSourceConfigurationOptions *p; - size_t k = sizeof(struct __tmd__GetVideoSourceConfigurationOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetVideoSourceConfigurationOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetVideoSourceConfigurationOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetVideoSourceConfigurationOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const struct __tmd__GetVideoSourceConfigurationOptions *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetVideoSourceConfigurationOptions(soap, tag ? tag : "-tmd:GetVideoSourceConfigurationOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, struct __tmd__GetVideoSourceConfigurationOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetVideoSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetAudioOutputConfiguration(struct soap *soap, struct __tmd__SetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SetAudioOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetAudioOutputConfiguration(struct soap *soap, const struct __tmd__SetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SetAudioOutputConfiguration(soap, &a->tmd__SetAudioOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__SetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SetAudioOutputConfiguration(soap, "tmd:SetAudioOutputConfiguration", -1, &a->tmd__SetAudioOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in___tmd__SetAudioOutputConfiguration(struct soap *soap, const char *tag, struct __tmd__SetAudioOutputConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__SetAudioOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetAudioOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetAudioOutputConfiguration, sizeof(struct __tmd__SetAudioOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetAudioOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SetAudioOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SetAudioOutputConfiguration(soap, "tmd:SetAudioOutputConfiguration", &a->tmd__SetAudioOutputConfiguration, "")) - { soap_flag_tmd__SetAudioOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetAudioOutputConfiguration *p; - size_t k = sizeof(struct __tmd__SetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetAudioOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetAudioOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetAudioOutputConfiguration(struct soap *soap, const struct __tmd__SetAudioOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetAudioOutputConfiguration(soap, tag ? tag : "-tmd:SetAudioOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get___tmd__SetAudioOutputConfiguration(struct soap *soap, struct __tmd__SetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetAudioSourceConfiguration(struct soap *soap, struct __tmd__SetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SetAudioSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetAudioSourceConfiguration(struct soap *soap, const struct __tmd__SetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SetAudioSourceConfiguration(soap, &a->tmd__SetAudioSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__SetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SetAudioSourceConfiguration(soap, "tmd:SetAudioSourceConfiguration", -1, &a->tmd__SetAudioSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in___tmd__SetAudioSourceConfiguration(struct soap *soap, const char *tag, struct __tmd__SetAudioSourceConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__SetAudioSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetAudioSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetAudioSourceConfiguration, sizeof(struct __tmd__SetAudioSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetAudioSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SetAudioSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SetAudioSourceConfiguration(soap, "tmd:SetAudioSourceConfiguration", &a->tmd__SetAudioSourceConfiguration, "")) - { soap_flag_tmd__SetAudioSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetAudioSourceConfiguration *p; - size_t k = sizeof(struct __tmd__SetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetAudioSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetAudioSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetAudioSourceConfiguration(struct soap *soap, const struct __tmd__SetAudioSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetAudioSourceConfiguration(soap, tag ? tag : "-tmd:SetAudioSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get___tmd__SetAudioSourceConfiguration(struct soap *soap, struct __tmd__SetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetVideoOutputConfiguration(struct soap *soap, struct __tmd__SetVideoOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SetVideoOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetVideoOutputConfiguration(struct soap *soap, const struct __tmd__SetVideoOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SetVideoOutputConfiguration(soap, &a->tmd__SetVideoOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetVideoOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__SetVideoOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SetVideoOutputConfiguration(soap, "tmd:SetVideoOutputConfiguration", -1, &a->tmd__SetVideoOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_in___tmd__SetVideoOutputConfiguration(struct soap *soap, const char *tag, struct __tmd__SetVideoOutputConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__SetVideoOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetVideoOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetVideoOutputConfiguration, sizeof(struct __tmd__SetVideoOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetVideoOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SetVideoOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SetVideoOutputConfiguration(soap, "tmd:SetVideoOutputConfiguration", &a->tmd__SetVideoOutputConfiguration, "")) - { soap_flag_tmd__SetVideoOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetVideoOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetVideoOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetVideoOutputConfiguration *p; - size_t k = sizeof(struct __tmd__SetVideoOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetVideoOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetVideoOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetVideoOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetVideoOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetVideoOutputConfiguration(struct soap *soap, const struct __tmd__SetVideoOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetVideoOutputConfiguration(soap, tag ? tag : "-tmd:SetVideoOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_get___tmd__SetVideoOutputConfiguration(struct soap *soap, struct __tmd__SetVideoOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetVideoOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetVideoSourceConfiguration(struct soap *soap, struct __tmd__SetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__SetVideoSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetVideoSourceConfiguration(struct soap *soap, const struct __tmd__SetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__SetVideoSourceConfiguration(soap, &a->tmd__SetVideoSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__SetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__SetVideoSourceConfiguration(soap, "tmd:SetVideoSourceConfiguration", -1, &a->tmd__SetVideoSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in___tmd__SetVideoSourceConfiguration(struct soap *soap, const char *tag, struct __tmd__SetVideoSourceConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__SetVideoSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__SetVideoSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__SetVideoSourceConfiguration, sizeof(struct __tmd__SetVideoSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__SetVideoSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__SetVideoSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__SetVideoSourceConfiguration(soap, "tmd:SetVideoSourceConfiguration", &a->tmd__SetVideoSourceConfiguration, "")) - { soap_flag_tmd__SetVideoSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__SetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__SetVideoSourceConfiguration *p; - size_t k = sizeof(struct __tmd__SetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__SetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__SetVideoSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__SetVideoSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__SetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetVideoSourceConfiguration(struct soap *soap, const struct __tmd__SetVideoSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__SetVideoSourceConfiguration(soap, tag ? tag : "-tmd:SetVideoSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get___tmd__SetVideoSourceConfiguration(struct soap *soap, struct __tmd__SetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__SetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioOutputConfiguration(struct soap *soap, struct __tmd__GetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetAudioOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioOutputConfiguration(struct soap *soap, const struct __tmd__GetAudioOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetAudioOutputConfiguration(soap, &a->tmd__GetAudioOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__GetAudioOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetAudioOutputConfiguration(soap, "tmd:GetAudioOutputConfiguration", -1, &a->tmd__GetAudioOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in___tmd__GetAudioOutputConfiguration(struct soap *soap, const char *tag, struct __tmd__GetAudioOutputConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__GetAudioOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetAudioOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetAudioOutputConfiguration, sizeof(struct __tmd__GetAudioOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetAudioOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetAudioOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetAudioOutputConfiguration(soap, "tmd:GetAudioOutputConfiguration", &a->tmd__GetAudioOutputConfiguration, "")) - { soap_flag_tmd__GetAudioOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetAudioOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetAudioOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetAudioOutputConfiguration *p; - size_t k = sizeof(struct __tmd__GetAudioOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetAudioOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetAudioOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetAudioOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetAudioOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioOutputConfiguration(struct soap *soap, const struct __tmd__GetAudioOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetAudioOutputConfiguration(soap, tag ? tag : "-tmd:GetAudioOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get___tmd__GetAudioOutputConfiguration(struct soap *soap, struct __tmd__GetAudioOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioSourceConfiguration(struct soap *soap, struct __tmd__GetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetAudioSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioSourceConfiguration(struct soap *soap, const struct __tmd__GetAudioSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetAudioSourceConfiguration(soap, &a->tmd__GetAudioSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__GetAudioSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetAudioSourceConfiguration(soap, "tmd:GetAudioSourceConfiguration", -1, &a->tmd__GetAudioSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in___tmd__GetAudioSourceConfiguration(struct soap *soap, const char *tag, struct __tmd__GetAudioSourceConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__GetAudioSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetAudioSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetAudioSourceConfiguration, sizeof(struct __tmd__GetAudioSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetAudioSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetAudioSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetAudioSourceConfiguration(soap, "tmd:GetAudioSourceConfiguration", &a->tmd__GetAudioSourceConfiguration, "")) - { soap_flag_tmd__GetAudioSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetAudioSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetAudioSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetAudioSourceConfiguration *p; - size_t k = sizeof(struct __tmd__GetAudioSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetAudioSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetAudioSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetAudioSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetAudioSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioSourceConfiguration(struct soap *soap, const struct __tmd__GetAudioSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetAudioSourceConfiguration(soap, tag ? tag : "-tmd:GetAudioSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get___tmd__GetAudioSourceConfiguration(struct soap *soap, struct __tmd__GetAudioSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetAudioSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoOutputConfiguration(struct soap *soap, struct __tmd__GetVideoOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetVideoOutputConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoOutputConfiguration(struct soap *soap, const struct __tmd__GetVideoOutputConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetVideoOutputConfiguration(soap, &a->tmd__GetVideoOutputConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoOutputConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__GetVideoOutputConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetVideoOutputConfiguration(soap, "tmd:GetVideoOutputConfiguration", -1, &a->tmd__GetVideoOutputConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_in___tmd__GetVideoOutputConfiguration(struct soap *soap, const char *tag, struct __tmd__GetVideoOutputConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__GetVideoOutputConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetVideoOutputConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetVideoOutputConfiguration, sizeof(struct __tmd__GetVideoOutputConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetVideoOutputConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetVideoOutputConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetVideoOutputConfiguration(soap, "tmd:GetVideoOutputConfiguration", &a->tmd__GetVideoOutputConfiguration, "")) - { soap_flag_tmd__GetVideoOutputConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetVideoOutputConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetVideoOutputConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetVideoOutputConfiguration *p; - size_t k = sizeof(struct __tmd__GetVideoOutputConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetVideoOutputConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetVideoOutputConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetVideoOutputConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetVideoOutputConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoOutputConfiguration(struct soap *soap, const struct __tmd__GetVideoOutputConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetVideoOutputConfiguration(soap, tag ? tag : "-tmd:GetVideoOutputConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_get___tmd__GetVideoOutputConfiguration(struct soap *soap, struct __tmd__GetVideoOutputConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetVideoOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoSourceConfiguration(struct soap *soap, struct __tmd__GetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetVideoSourceConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoSourceConfiguration(struct soap *soap, const struct __tmd__GetVideoSourceConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetVideoSourceConfiguration(soap, &a->tmd__GetVideoSourceConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoSourceConfiguration(struct soap *soap, const char *tag, int id, const struct __tmd__GetVideoSourceConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetVideoSourceConfiguration(soap, "tmd:GetVideoSourceConfiguration", -1, &a->tmd__GetVideoSourceConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in___tmd__GetVideoSourceConfiguration(struct soap *soap, const char *tag, struct __tmd__GetVideoSourceConfiguration *a, const char *type) -{ - size_t soap_flag_tmd__GetVideoSourceConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetVideoSourceConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetVideoSourceConfiguration, sizeof(struct __tmd__GetVideoSourceConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetVideoSourceConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetVideoSourceConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetVideoSourceConfiguration(soap, "tmd:GetVideoSourceConfiguration", &a->tmd__GetVideoSourceConfiguration, "")) - { soap_flag_tmd__GetVideoSourceConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetVideoSourceConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetVideoSourceConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetVideoSourceConfiguration *p; - size_t k = sizeof(struct __tmd__GetVideoSourceConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetVideoSourceConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetVideoSourceConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetVideoSourceConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetVideoSourceConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoSourceConfiguration(struct soap *soap, const struct __tmd__GetVideoSourceConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetVideoSourceConfiguration(soap, tag ? tag : "-tmd:GetVideoSourceConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get___tmd__GetVideoSourceConfiguration(struct soap *soap, struct __tmd__GetVideoSourceConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetVideoSourceConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoOutputs(struct soap *soap, struct __tmd__GetVideoOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetVideoOutputs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoOutputs(struct soap *soap, const struct __tmd__GetVideoOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetVideoOutputs(soap, &a->tmd__GetVideoOutputs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoOutputs(struct soap *soap, const char *tag, int id, const struct __tmd__GetVideoOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetVideoOutputs(soap, "tmd:GetVideoOutputs", -1, &a->tmd__GetVideoOutputs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoOutputs * SOAP_FMAC4 soap_in___tmd__GetVideoOutputs(struct soap *soap, const char *tag, struct __tmd__GetVideoOutputs *a, const char *type) -{ - size_t soap_flag_tmd__GetVideoOutputs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetVideoOutputs*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetVideoOutputs, sizeof(struct __tmd__GetVideoOutputs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetVideoOutputs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetVideoOutputs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetVideoOutputs(soap, "tmd:GetVideoOutputs", &a->tmd__GetVideoOutputs, "")) - { soap_flag_tmd__GetVideoOutputs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetVideoOutputs * SOAP_FMAC2 soap_instantiate___tmd__GetVideoOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetVideoOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetVideoOutputs *p; - size_t k = sizeof(struct __tmd__GetVideoOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetVideoOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetVideoOutputs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetVideoOutputs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetVideoOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoOutputs(struct soap *soap, const struct __tmd__GetVideoOutputs *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetVideoOutputs(soap, tag ? tag : "-tmd:GetVideoOutputs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoOutputs * SOAP_FMAC4 soap_get___tmd__GetVideoOutputs(struct soap *soap, struct __tmd__GetVideoOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetVideoOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoSources(struct soap *soap, struct __tmd__GetVideoSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetVideoSources = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoSources(struct soap *soap, const struct __tmd__GetVideoSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__Get(soap, &a->tmd__GetVideoSources); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoSources(struct soap *soap, const char *tag, int id, const struct __tmd__GetVideoSources *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTotmd__Get(soap, "tmd:GetVideoSources", -1, &a->tmd__GetVideoSources, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoSources * SOAP_FMAC4 soap_in___tmd__GetVideoSources(struct soap *soap, const char *tag, struct __tmd__GetVideoSources *a, const char *type) -{ - size_t soap_flag_tmd__GetVideoSources = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetVideoSources*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetVideoSources, sizeof(struct __tmd__GetVideoSources), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetVideoSources(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetVideoSources && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__Get(soap, "tmd:GetVideoSources", &a->tmd__GetVideoSources, "tmd:Get")) - { soap_flag_tmd__GetVideoSources--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetVideoSources * SOAP_FMAC2 soap_instantiate___tmd__GetVideoSources(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetVideoSources(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetVideoSources *p; - size_t k = sizeof(struct __tmd__GetVideoSources); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetVideoSources, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetVideoSources); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetVideoSources, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetVideoSources location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoSources(struct soap *soap, const struct __tmd__GetVideoSources *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetVideoSources(soap, tag ? tag : "-tmd:GetVideoSources", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetVideoSources * SOAP_FMAC4 soap_get___tmd__GetVideoSources(struct soap *soap, struct __tmd__GetVideoSources *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetVideoSources(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioOutputs(struct soap *soap, struct __tmd__GetAudioOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetAudioOutputs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioOutputs(struct soap *soap, const struct __tmd__GetAudioOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__Get(soap, &a->tmd__GetAudioOutputs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioOutputs(struct soap *soap, const char *tag, int id, const struct __tmd__GetAudioOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTotmd__Get(soap, "tmd:GetAudioOutputs", -1, &a->tmd__GetAudioOutputs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioOutputs * SOAP_FMAC4 soap_in___tmd__GetAudioOutputs(struct soap *soap, const char *tag, struct __tmd__GetAudioOutputs *a, const char *type) -{ - size_t soap_flag_tmd__GetAudioOutputs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetAudioOutputs*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetAudioOutputs, sizeof(struct __tmd__GetAudioOutputs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetAudioOutputs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetAudioOutputs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__Get(soap, "tmd:GetAudioOutputs", &a->tmd__GetAudioOutputs, "tmd:Get")) - { soap_flag_tmd__GetAudioOutputs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetAudioOutputs * SOAP_FMAC2 soap_instantiate___tmd__GetAudioOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetAudioOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetAudioOutputs *p; - size_t k = sizeof(struct __tmd__GetAudioOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetAudioOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetAudioOutputs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetAudioOutputs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetAudioOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioOutputs(struct soap *soap, const struct __tmd__GetAudioOutputs *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetAudioOutputs(soap, tag ? tag : "-tmd:GetAudioOutputs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioOutputs * SOAP_FMAC4 soap_get___tmd__GetAudioOutputs(struct soap *soap, struct __tmd__GetAudioOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetAudioOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioSources(struct soap *soap, struct __tmd__GetAudioSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetAudioSources = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioSources(struct soap *soap, const struct __tmd__GetAudioSources *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTotmd__Get(soap, &a->tmd__GetAudioSources); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioSources(struct soap *soap, const char *tag, int id, const struct __tmd__GetAudioSources *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTotmd__Get(soap, "tmd:GetAudioSources", -1, &a->tmd__GetAudioSources, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioSources * SOAP_FMAC4 soap_in___tmd__GetAudioSources(struct soap *soap, const char *tag, struct __tmd__GetAudioSources *a, const char *type) -{ - size_t soap_flag_tmd__GetAudioSources = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetAudioSources*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetAudioSources, sizeof(struct __tmd__GetAudioSources), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetAudioSources(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetAudioSources && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTotmd__Get(soap, "tmd:GetAudioSources", &a->tmd__GetAudioSources, "tmd:Get")) - { soap_flag_tmd__GetAudioSources--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetAudioSources * SOAP_FMAC2 soap_instantiate___tmd__GetAudioSources(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetAudioSources(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetAudioSources *p; - size_t k = sizeof(struct __tmd__GetAudioSources); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetAudioSources, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetAudioSources); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetAudioSources, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetAudioSources location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioSources(struct soap *soap, const struct __tmd__GetAudioSources *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetAudioSources(soap, tag ? tag : "-tmd:GetAudioSources", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetAudioSources * SOAP_FMAC4 soap_get___tmd__GetAudioSources(struct soap *soap, struct __tmd__GetAudioSources *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetAudioSources(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetRelayOutputOptions(struct soap *soap, struct __tmd__GetRelayOutputOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetRelayOutputOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetRelayOutputOptions(struct soap *soap, const struct __tmd__GetRelayOutputOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetRelayOutputOptions(soap, &a->tmd__GetRelayOutputOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetRelayOutputOptions(struct soap *soap, const char *tag, int id, const struct __tmd__GetRelayOutputOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetRelayOutputOptions(soap, "tmd:GetRelayOutputOptions", -1, &a->tmd__GetRelayOutputOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_in___tmd__GetRelayOutputOptions(struct soap *soap, const char *tag, struct __tmd__GetRelayOutputOptions *a, const char *type) -{ - size_t soap_flag_tmd__GetRelayOutputOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetRelayOutputOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetRelayOutputOptions, sizeof(struct __tmd__GetRelayOutputOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetRelayOutputOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetRelayOutputOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetRelayOutputOptions(soap, "tmd:GetRelayOutputOptions", &a->tmd__GetRelayOutputOptions, "")) - { soap_flag_tmd__GetRelayOutputOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetRelayOutputOptions * SOAP_FMAC2 soap_instantiate___tmd__GetRelayOutputOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetRelayOutputOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetRelayOutputOptions *p; - size_t k = sizeof(struct __tmd__GetRelayOutputOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetRelayOutputOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetRelayOutputOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetRelayOutputOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetRelayOutputOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetRelayOutputOptions(struct soap *soap, const struct __tmd__GetRelayOutputOptions *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetRelayOutputOptions(soap, tag ? tag : "-tmd:GetRelayOutputOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_get___tmd__GetRelayOutputOptions(struct soap *soap, struct __tmd__GetRelayOutputOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetRelayOutputOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetServiceCapabilities(struct soap *soap, struct __tmd__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tmd__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetServiceCapabilities(struct soap *soap, const struct __tmd__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tmd__GetServiceCapabilities(soap, &a->tmd__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __tmd__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tmd__GetServiceCapabilities(soap, "tmd:GetServiceCapabilities", -1, &a->tmd__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetServiceCapabilities * SOAP_FMAC4 soap_in___tmd__GetServiceCapabilities(struct soap *soap, const char *tag, struct __tmd__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_tmd__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tmd__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___tmd__GetServiceCapabilities, sizeof(struct __tmd__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tmd__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tmd__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tmd__GetServiceCapabilities(soap, "tmd:GetServiceCapabilities", &a->tmd__GetServiceCapabilities, "")) - { soap_flag_tmd__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tmd__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tmd__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tmd__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tmd__GetServiceCapabilities *p; - size_t k = sizeof(struct __tmd__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tmd__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tmd__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tmd__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tmd__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetServiceCapabilities(struct soap *soap, const struct __tmd__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___tmd__GetServiceCapabilities(soap, tag ? tag : "-tmd:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tmd__GetServiceCapabilities * SOAP_FMAC4 soap_get___tmd__GetServiceCapabilities(struct soap *soap, struct __tmd__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___tmd__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__DeletePaneConfiguration(struct soap *soap, struct __tls__DeletePaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__DeletePaneConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__DeletePaneConfiguration(struct soap *soap, const struct __tls__DeletePaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__DeletePaneConfiguration(soap, &a->tls__DeletePaneConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__DeletePaneConfiguration(struct soap *soap, const char *tag, int id, const struct __tls__DeletePaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__DeletePaneConfiguration(soap, "tls:DeletePaneConfiguration", -1, &a->tls__DeletePaneConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__DeletePaneConfiguration * SOAP_FMAC4 soap_in___tls__DeletePaneConfiguration(struct soap *soap, const char *tag, struct __tls__DeletePaneConfiguration *a, const char *type) -{ - size_t soap_flag_tls__DeletePaneConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__DeletePaneConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__DeletePaneConfiguration, sizeof(struct __tls__DeletePaneConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__DeletePaneConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__DeletePaneConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__DeletePaneConfiguration(soap, "tls:DeletePaneConfiguration", &a->tls__DeletePaneConfiguration, "")) - { soap_flag_tls__DeletePaneConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__DeletePaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__DeletePaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__DeletePaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__DeletePaneConfiguration *p; - size_t k = sizeof(struct __tls__DeletePaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__DeletePaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__DeletePaneConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__DeletePaneConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__DeletePaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__DeletePaneConfiguration(struct soap *soap, const struct __tls__DeletePaneConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tls__DeletePaneConfiguration(soap, tag ? tag : "-tls:DeletePaneConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__DeletePaneConfiguration * SOAP_FMAC4 soap_get___tls__DeletePaneConfiguration(struct soap *soap, struct __tls__DeletePaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__DeletePaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__CreatePaneConfiguration(struct soap *soap, struct __tls__CreatePaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__CreatePaneConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__CreatePaneConfiguration(struct soap *soap, const struct __tls__CreatePaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__CreatePaneConfiguration(soap, &a->tls__CreatePaneConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__CreatePaneConfiguration(struct soap *soap, const char *tag, int id, const struct __tls__CreatePaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__CreatePaneConfiguration(soap, "tls:CreatePaneConfiguration", -1, &a->tls__CreatePaneConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__CreatePaneConfiguration * SOAP_FMAC4 soap_in___tls__CreatePaneConfiguration(struct soap *soap, const char *tag, struct __tls__CreatePaneConfiguration *a, const char *type) -{ - size_t soap_flag_tls__CreatePaneConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__CreatePaneConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__CreatePaneConfiguration, sizeof(struct __tls__CreatePaneConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__CreatePaneConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__CreatePaneConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__CreatePaneConfiguration(soap, "tls:CreatePaneConfiguration", &a->tls__CreatePaneConfiguration, "")) - { soap_flag_tls__CreatePaneConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__CreatePaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__CreatePaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__CreatePaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__CreatePaneConfiguration *p; - size_t k = sizeof(struct __tls__CreatePaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__CreatePaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__CreatePaneConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__CreatePaneConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__CreatePaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__CreatePaneConfiguration(struct soap *soap, const struct __tls__CreatePaneConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tls__CreatePaneConfiguration(soap, tag ? tag : "-tls:CreatePaneConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__CreatePaneConfiguration * SOAP_FMAC4 soap_get___tls__CreatePaneConfiguration(struct soap *soap, struct __tls__CreatePaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__CreatePaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__SetPaneConfiguration(struct soap *soap, struct __tls__SetPaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__SetPaneConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__SetPaneConfiguration(struct soap *soap, const struct __tls__SetPaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__SetPaneConfiguration(soap, &a->tls__SetPaneConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__SetPaneConfiguration(struct soap *soap, const char *tag, int id, const struct __tls__SetPaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__SetPaneConfiguration(soap, "tls:SetPaneConfiguration", -1, &a->tls__SetPaneConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__SetPaneConfiguration * SOAP_FMAC4 soap_in___tls__SetPaneConfiguration(struct soap *soap, const char *tag, struct __tls__SetPaneConfiguration *a, const char *type) -{ - size_t soap_flag_tls__SetPaneConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__SetPaneConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__SetPaneConfiguration, sizeof(struct __tls__SetPaneConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__SetPaneConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__SetPaneConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__SetPaneConfiguration(soap, "tls:SetPaneConfiguration", &a->tls__SetPaneConfiguration, "")) - { soap_flag_tls__SetPaneConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__SetPaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__SetPaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__SetPaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__SetPaneConfiguration *p; - size_t k = sizeof(struct __tls__SetPaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__SetPaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__SetPaneConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__SetPaneConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__SetPaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__SetPaneConfiguration(struct soap *soap, const struct __tls__SetPaneConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tls__SetPaneConfiguration(soap, tag ? tag : "-tls:SetPaneConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__SetPaneConfiguration * SOAP_FMAC4 soap_get___tls__SetPaneConfiguration(struct soap *soap, struct __tls__SetPaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__SetPaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__SetPaneConfigurations(struct soap *soap, struct __tls__SetPaneConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__SetPaneConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__SetPaneConfigurations(struct soap *soap, const struct __tls__SetPaneConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__SetPaneConfigurations(soap, &a->tls__SetPaneConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__SetPaneConfigurations(struct soap *soap, const char *tag, int id, const struct __tls__SetPaneConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__SetPaneConfigurations(soap, "tls:SetPaneConfigurations", -1, &a->tls__SetPaneConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__SetPaneConfigurations * SOAP_FMAC4 soap_in___tls__SetPaneConfigurations(struct soap *soap, const char *tag, struct __tls__SetPaneConfigurations *a, const char *type) -{ - size_t soap_flag_tls__SetPaneConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__SetPaneConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__SetPaneConfigurations, sizeof(struct __tls__SetPaneConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__SetPaneConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__SetPaneConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__SetPaneConfigurations(soap, "tls:SetPaneConfigurations", &a->tls__SetPaneConfigurations, "")) - { soap_flag_tls__SetPaneConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__SetPaneConfigurations * SOAP_FMAC2 soap_instantiate___tls__SetPaneConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__SetPaneConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__SetPaneConfigurations *p; - size_t k = sizeof(struct __tls__SetPaneConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__SetPaneConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__SetPaneConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__SetPaneConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__SetPaneConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__SetPaneConfigurations(struct soap *soap, const struct __tls__SetPaneConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___tls__SetPaneConfigurations(soap, tag ? tag : "-tls:SetPaneConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__SetPaneConfigurations * SOAP_FMAC4 soap_get___tls__SetPaneConfigurations(struct soap *soap, struct __tls__SetPaneConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__SetPaneConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetPaneConfiguration(struct soap *soap, struct __tls__GetPaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__GetPaneConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetPaneConfiguration(struct soap *soap, const struct __tls__GetPaneConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__GetPaneConfiguration(soap, &a->tls__GetPaneConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetPaneConfiguration(struct soap *soap, const char *tag, int id, const struct __tls__GetPaneConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__GetPaneConfiguration(soap, "tls:GetPaneConfiguration", -1, &a->tls__GetPaneConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetPaneConfiguration * SOAP_FMAC4 soap_in___tls__GetPaneConfiguration(struct soap *soap, const char *tag, struct __tls__GetPaneConfiguration *a, const char *type) -{ - size_t soap_flag_tls__GetPaneConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__GetPaneConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__GetPaneConfiguration, sizeof(struct __tls__GetPaneConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__GetPaneConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__GetPaneConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__GetPaneConfiguration(soap, "tls:GetPaneConfiguration", &a->tls__GetPaneConfiguration, "")) - { soap_flag_tls__GetPaneConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__GetPaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__GetPaneConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__GetPaneConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__GetPaneConfiguration *p; - size_t k = sizeof(struct __tls__GetPaneConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__GetPaneConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__GetPaneConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__GetPaneConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__GetPaneConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetPaneConfiguration(struct soap *soap, const struct __tls__GetPaneConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tls__GetPaneConfiguration(soap, tag ? tag : "-tls:GetPaneConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetPaneConfiguration * SOAP_FMAC4 soap_get___tls__GetPaneConfiguration(struct soap *soap, struct __tls__GetPaneConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__GetPaneConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetPaneConfigurations(struct soap *soap, struct __tls__GetPaneConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__GetPaneConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetPaneConfigurations(struct soap *soap, const struct __tls__GetPaneConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__GetPaneConfigurations(soap, &a->tls__GetPaneConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetPaneConfigurations(struct soap *soap, const char *tag, int id, const struct __tls__GetPaneConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__GetPaneConfigurations(soap, "tls:GetPaneConfigurations", -1, &a->tls__GetPaneConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetPaneConfigurations * SOAP_FMAC4 soap_in___tls__GetPaneConfigurations(struct soap *soap, const char *tag, struct __tls__GetPaneConfigurations *a, const char *type) -{ - size_t soap_flag_tls__GetPaneConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__GetPaneConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__GetPaneConfigurations, sizeof(struct __tls__GetPaneConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__GetPaneConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__GetPaneConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__GetPaneConfigurations(soap, "tls:GetPaneConfigurations", &a->tls__GetPaneConfigurations, "")) - { soap_flag_tls__GetPaneConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__GetPaneConfigurations * SOAP_FMAC2 soap_instantiate___tls__GetPaneConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__GetPaneConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__GetPaneConfigurations *p; - size_t k = sizeof(struct __tls__GetPaneConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__GetPaneConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__GetPaneConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__GetPaneConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__GetPaneConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetPaneConfigurations(struct soap *soap, const struct __tls__GetPaneConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___tls__GetPaneConfigurations(soap, tag ? tag : "-tls:GetPaneConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetPaneConfigurations * SOAP_FMAC4 soap_get___tls__GetPaneConfigurations(struct soap *soap, struct __tls__GetPaneConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__GetPaneConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetDisplayOptions(struct soap *soap, struct __tls__GetDisplayOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__GetDisplayOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetDisplayOptions(struct soap *soap, const struct __tls__GetDisplayOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__GetDisplayOptions(soap, &a->tls__GetDisplayOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetDisplayOptions(struct soap *soap, const char *tag, int id, const struct __tls__GetDisplayOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__GetDisplayOptions(soap, "tls:GetDisplayOptions", -1, &a->tls__GetDisplayOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetDisplayOptions * SOAP_FMAC4 soap_in___tls__GetDisplayOptions(struct soap *soap, const char *tag, struct __tls__GetDisplayOptions *a, const char *type) -{ - size_t soap_flag_tls__GetDisplayOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__GetDisplayOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__GetDisplayOptions, sizeof(struct __tls__GetDisplayOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__GetDisplayOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__GetDisplayOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__GetDisplayOptions(soap, "tls:GetDisplayOptions", &a->tls__GetDisplayOptions, "")) - { soap_flag_tls__GetDisplayOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__GetDisplayOptions * SOAP_FMAC2 soap_instantiate___tls__GetDisplayOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__GetDisplayOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__GetDisplayOptions *p; - size_t k = sizeof(struct __tls__GetDisplayOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__GetDisplayOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__GetDisplayOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__GetDisplayOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__GetDisplayOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetDisplayOptions(struct soap *soap, const struct __tls__GetDisplayOptions *a, const char *tag, const char *type) -{ - if (soap_out___tls__GetDisplayOptions(soap, tag ? tag : "-tls:GetDisplayOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetDisplayOptions * SOAP_FMAC4 soap_get___tls__GetDisplayOptions(struct soap *soap, struct __tls__GetDisplayOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__GetDisplayOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__SetLayout(struct soap *soap, struct __tls__SetLayout *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__SetLayout = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__SetLayout(struct soap *soap, const struct __tls__SetLayout *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__SetLayout(soap, &a->tls__SetLayout); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__SetLayout(struct soap *soap, const char *tag, int id, const struct __tls__SetLayout *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__SetLayout(soap, "tls:SetLayout", -1, &a->tls__SetLayout, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__SetLayout * SOAP_FMAC4 soap_in___tls__SetLayout(struct soap *soap, const char *tag, struct __tls__SetLayout *a, const char *type) -{ - size_t soap_flag_tls__SetLayout = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__SetLayout*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__SetLayout, sizeof(struct __tls__SetLayout), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__SetLayout(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__SetLayout && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__SetLayout(soap, "tls:SetLayout", &a->tls__SetLayout, "")) - { soap_flag_tls__SetLayout--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__SetLayout * SOAP_FMAC2 soap_instantiate___tls__SetLayout(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__SetLayout(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__SetLayout *p; - size_t k = sizeof(struct __tls__SetLayout); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__SetLayout, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__SetLayout); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__SetLayout, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__SetLayout location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__SetLayout(struct soap *soap, const struct __tls__SetLayout *a, const char *tag, const char *type) -{ - if (soap_out___tls__SetLayout(soap, tag ? tag : "-tls:SetLayout", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__SetLayout * SOAP_FMAC4 soap_get___tls__SetLayout(struct soap *soap, struct __tls__SetLayout *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__SetLayout(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetLayout(struct soap *soap, struct __tls__GetLayout *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__GetLayout = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetLayout(struct soap *soap, const struct __tls__GetLayout *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__GetLayout(soap, &a->tls__GetLayout); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetLayout(struct soap *soap, const char *tag, int id, const struct __tls__GetLayout *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__GetLayout(soap, "tls:GetLayout", -1, &a->tls__GetLayout, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetLayout * SOAP_FMAC4 soap_in___tls__GetLayout(struct soap *soap, const char *tag, struct __tls__GetLayout *a, const char *type) -{ - size_t soap_flag_tls__GetLayout = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__GetLayout*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__GetLayout, sizeof(struct __tls__GetLayout), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__GetLayout(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__GetLayout && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__GetLayout(soap, "tls:GetLayout", &a->tls__GetLayout, "")) - { soap_flag_tls__GetLayout--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__GetLayout * SOAP_FMAC2 soap_instantiate___tls__GetLayout(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__GetLayout(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__GetLayout *p; - size_t k = sizeof(struct __tls__GetLayout); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__GetLayout, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__GetLayout); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__GetLayout, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__GetLayout location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetLayout(struct soap *soap, const struct __tls__GetLayout *a, const char *tag, const char *type) -{ - if (soap_out___tls__GetLayout(soap, tag ? tag : "-tls:GetLayout", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetLayout * SOAP_FMAC4 soap_get___tls__GetLayout(struct soap *soap, struct __tls__GetLayout *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__GetLayout(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetServiceCapabilities(struct soap *soap, struct __tls__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tls__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetServiceCapabilities(struct soap *soap, const struct __tls__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tls__GetServiceCapabilities(soap, &a->tls__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __tls__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tls__GetServiceCapabilities(soap, "tls:GetServiceCapabilities", -1, &a->tls__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetServiceCapabilities * SOAP_FMAC4 soap_in___tls__GetServiceCapabilities(struct soap *soap, const char *tag, struct __tls__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_tls__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tls__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___tls__GetServiceCapabilities, sizeof(struct __tls__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tls__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tls__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tls__GetServiceCapabilities(soap, "tls:GetServiceCapabilities", &a->tls__GetServiceCapabilities, "")) - { soap_flag_tls__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tls__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tls__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tls__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tls__GetServiceCapabilities *p; - size_t k = sizeof(struct __tls__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tls__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tls__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tls__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tls__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetServiceCapabilities(struct soap *soap, const struct __tls__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___tls__GetServiceCapabilities(soap, tag ? tag : "-tls:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tls__GetServiceCapabilities * SOAP_FMAC4 soap_get___tls__GetServiceCapabilities(struct soap *soap, struct __tls__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___tls__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__SetCurrentPreset(struct soap *soap, struct __timg__SetCurrentPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__SetCurrentPreset = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__SetCurrentPreset(struct soap *soap, const struct __timg__SetCurrentPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__SetCurrentPreset(soap, &a->timg__SetCurrentPreset); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__SetCurrentPreset(struct soap *soap, const char *tag, int id, const struct __timg__SetCurrentPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__SetCurrentPreset(soap, "timg:SetCurrentPreset", -1, &a->timg__SetCurrentPreset, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__SetCurrentPreset * SOAP_FMAC4 soap_in___timg__SetCurrentPreset(struct soap *soap, const char *tag, struct __timg__SetCurrentPreset *a, const char *type) -{ - size_t soap_flag_timg__SetCurrentPreset = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__SetCurrentPreset*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__SetCurrentPreset, sizeof(struct __timg__SetCurrentPreset), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__SetCurrentPreset(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__SetCurrentPreset && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__SetCurrentPreset(soap, "timg:SetCurrentPreset", &a->timg__SetCurrentPreset, "")) - { soap_flag_timg__SetCurrentPreset--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__SetCurrentPreset * SOAP_FMAC2 soap_instantiate___timg__SetCurrentPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__SetCurrentPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__SetCurrentPreset *p; - size_t k = sizeof(struct __timg__SetCurrentPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__SetCurrentPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__SetCurrentPreset); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__SetCurrentPreset, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__SetCurrentPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__SetCurrentPreset(struct soap *soap, const struct __timg__SetCurrentPreset *a, const char *tag, const char *type) -{ - if (soap_out___timg__SetCurrentPreset(soap, tag ? tag : "-timg:SetCurrentPreset", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__SetCurrentPreset * SOAP_FMAC4 soap_get___timg__SetCurrentPreset(struct soap *soap, struct __timg__SetCurrentPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__SetCurrentPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetCurrentPreset(struct soap *soap, struct __timg__GetCurrentPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__GetCurrentPreset = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetCurrentPreset(struct soap *soap, const struct __timg__GetCurrentPreset *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__GetCurrentPreset(soap, &a->timg__GetCurrentPreset); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetCurrentPreset(struct soap *soap, const char *tag, int id, const struct __timg__GetCurrentPreset *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__GetCurrentPreset(soap, "timg:GetCurrentPreset", -1, &a->timg__GetCurrentPreset, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetCurrentPreset * SOAP_FMAC4 soap_in___timg__GetCurrentPreset(struct soap *soap, const char *tag, struct __timg__GetCurrentPreset *a, const char *type) -{ - size_t soap_flag_timg__GetCurrentPreset = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__GetCurrentPreset*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__GetCurrentPreset, sizeof(struct __timg__GetCurrentPreset), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__GetCurrentPreset(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__GetCurrentPreset && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__GetCurrentPreset(soap, "timg:GetCurrentPreset", &a->timg__GetCurrentPreset, "")) - { soap_flag_timg__GetCurrentPreset--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__GetCurrentPreset * SOAP_FMAC2 soap_instantiate___timg__GetCurrentPreset(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__GetCurrentPreset(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__GetCurrentPreset *p; - size_t k = sizeof(struct __timg__GetCurrentPreset); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__GetCurrentPreset, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__GetCurrentPreset); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__GetCurrentPreset, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__GetCurrentPreset location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetCurrentPreset(struct soap *soap, const struct __timg__GetCurrentPreset *a, const char *tag, const char *type) -{ - if (soap_out___timg__GetCurrentPreset(soap, tag ? tag : "-timg:GetCurrentPreset", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetCurrentPreset * SOAP_FMAC4 soap_get___timg__GetCurrentPreset(struct soap *soap, struct __timg__GetCurrentPreset *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__GetCurrentPreset(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetPresets(struct soap *soap, struct __timg__GetPresets *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__GetPresets = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetPresets(struct soap *soap, const struct __timg__GetPresets *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__GetPresets(soap, &a->timg__GetPresets); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetPresets(struct soap *soap, const char *tag, int id, const struct __timg__GetPresets *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__GetPresets(soap, "timg:GetPresets", -1, &a->timg__GetPresets, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetPresets * SOAP_FMAC4 soap_in___timg__GetPresets(struct soap *soap, const char *tag, struct __timg__GetPresets *a, const char *type) -{ - size_t soap_flag_timg__GetPresets = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__GetPresets*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__GetPresets, sizeof(struct __timg__GetPresets), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__GetPresets(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__GetPresets && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__GetPresets(soap, "timg:GetPresets", &a->timg__GetPresets, "")) - { soap_flag_timg__GetPresets--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__GetPresets * SOAP_FMAC2 soap_instantiate___timg__GetPresets(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__GetPresets(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__GetPresets *p; - size_t k = sizeof(struct __timg__GetPresets); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__GetPresets, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__GetPresets); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__GetPresets, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__GetPresets location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetPresets(struct soap *soap, const struct __timg__GetPresets *a, const char *tag, const char *type) -{ - if (soap_out___timg__GetPresets(soap, tag ? tag : "-timg:GetPresets", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetPresets * SOAP_FMAC4 soap_get___timg__GetPresets(struct soap *soap, struct __timg__GetPresets *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__GetPresets(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetMoveOptions(struct soap *soap, struct __timg__GetMoveOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__GetMoveOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetMoveOptions(struct soap *soap, const struct __timg__GetMoveOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__GetMoveOptions(soap, &a->timg__GetMoveOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetMoveOptions(struct soap *soap, const char *tag, int id, const struct __timg__GetMoveOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__GetMoveOptions(soap, "timg:GetMoveOptions", -1, &a->timg__GetMoveOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetMoveOptions * SOAP_FMAC4 soap_in___timg__GetMoveOptions(struct soap *soap, const char *tag, struct __timg__GetMoveOptions *a, const char *type) -{ - size_t soap_flag_timg__GetMoveOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__GetMoveOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__GetMoveOptions, sizeof(struct __timg__GetMoveOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__GetMoveOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__GetMoveOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__GetMoveOptions(soap, "timg:GetMoveOptions", &a->timg__GetMoveOptions, "")) - { soap_flag_timg__GetMoveOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__GetMoveOptions * SOAP_FMAC2 soap_instantiate___timg__GetMoveOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__GetMoveOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__GetMoveOptions *p; - size_t k = sizeof(struct __timg__GetMoveOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__GetMoveOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__GetMoveOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__GetMoveOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__GetMoveOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetMoveOptions(struct soap *soap, const struct __timg__GetMoveOptions *a, const char *tag, const char *type) -{ - if (soap_out___timg__GetMoveOptions(soap, tag ? tag : "-timg:GetMoveOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetMoveOptions * SOAP_FMAC4 soap_get___timg__GetMoveOptions(struct soap *soap, struct __timg__GetMoveOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__GetMoveOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetStatus(struct soap *soap, struct __timg__GetStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__GetStatus = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetStatus(struct soap *soap, const struct __timg__GetStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__GetStatus(soap, &a->timg__GetStatus); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetStatus(struct soap *soap, const char *tag, int id, const struct __timg__GetStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__GetStatus(soap, "timg:GetStatus", -1, &a->timg__GetStatus, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetStatus * SOAP_FMAC4 soap_in___timg__GetStatus(struct soap *soap, const char *tag, struct __timg__GetStatus *a, const char *type) -{ - size_t soap_flag_timg__GetStatus = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__GetStatus*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__GetStatus, sizeof(struct __timg__GetStatus), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__GetStatus(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__GetStatus && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__GetStatus(soap, "timg:GetStatus", &a->timg__GetStatus, "")) - { soap_flag_timg__GetStatus--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__GetStatus * SOAP_FMAC2 soap_instantiate___timg__GetStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__GetStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__GetStatus *p; - size_t k = sizeof(struct __timg__GetStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__GetStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__GetStatus); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__GetStatus, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__GetStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetStatus(struct soap *soap, const struct __timg__GetStatus *a, const char *tag, const char *type) -{ - if (soap_out___timg__GetStatus(soap, tag ? tag : "-timg:GetStatus", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetStatus * SOAP_FMAC4 soap_get___timg__GetStatus(struct soap *soap, struct __timg__GetStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__GetStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__Stop(struct soap *soap, struct __timg__Stop *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__Stop = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__Stop(struct soap *soap, const struct __timg__Stop *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__Stop(soap, &a->timg__Stop); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__Stop(struct soap *soap, const char *tag, int id, const struct __timg__Stop *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__Stop(soap, "timg:Stop", -1, &a->timg__Stop, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__Stop * SOAP_FMAC4 soap_in___timg__Stop(struct soap *soap, const char *tag, struct __timg__Stop *a, const char *type) -{ - size_t soap_flag_timg__Stop = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__Stop*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__Stop, sizeof(struct __timg__Stop), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__Stop(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__Stop && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__Stop(soap, "timg:Stop", &a->timg__Stop, "")) - { soap_flag_timg__Stop--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__Stop * SOAP_FMAC2 soap_instantiate___timg__Stop(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__Stop(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__Stop *p; - size_t k = sizeof(struct __timg__Stop); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__Stop, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__Stop); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__Stop, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__Stop location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__Stop(struct soap *soap, const struct __timg__Stop *a, const char *tag, const char *type) -{ - if (soap_out___timg__Stop(soap, tag ? tag : "-timg:Stop", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__Stop * SOAP_FMAC4 soap_get___timg__Stop(struct soap *soap, struct __timg__Stop *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__Stop(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__Move(struct soap *soap, struct __timg__Move *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__Move = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__Move(struct soap *soap, const struct __timg__Move *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__Move(soap, &a->timg__Move); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__Move(struct soap *soap, const char *tag, int id, const struct __timg__Move *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__Move(soap, "timg:Move", -1, &a->timg__Move, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__Move * SOAP_FMAC4 soap_in___timg__Move(struct soap *soap, const char *tag, struct __timg__Move *a, const char *type) -{ - size_t soap_flag_timg__Move = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__Move*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__Move, sizeof(struct __timg__Move), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__Move(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__Move && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__Move(soap, "timg:Move", &a->timg__Move, "")) - { soap_flag_timg__Move--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__Move * SOAP_FMAC2 soap_instantiate___timg__Move(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__Move(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__Move *p; - size_t k = sizeof(struct __timg__Move); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__Move, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__Move); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__Move, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__Move location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__Move(struct soap *soap, const struct __timg__Move *a, const char *tag, const char *type) -{ - if (soap_out___timg__Move(soap, tag ? tag : "-timg:Move", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__Move * SOAP_FMAC4 soap_get___timg__Move(struct soap *soap, struct __timg__Move *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__Move(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetOptions(struct soap *soap, struct __timg__GetOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__GetOptions = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetOptions(struct soap *soap, const struct __timg__GetOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__GetOptions(soap, &a->timg__GetOptions); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetOptions(struct soap *soap, const char *tag, int id, const struct __timg__GetOptions *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__GetOptions(soap, "timg:GetOptions", -1, &a->timg__GetOptions, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetOptions * SOAP_FMAC4 soap_in___timg__GetOptions(struct soap *soap, const char *tag, struct __timg__GetOptions *a, const char *type) -{ - size_t soap_flag_timg__GetOptions = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__GetOptions*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__GetOptions, sizeof(struct __timg__GetOptions), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__GetOptions(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__GetOptions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__GetOptions(soap, "timg:GetOptions", &a->timg__GetOptions, "")) - { soap_flag_timg__GetOptions--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__GetOptions * SOAP_FMAC2 soap_instantiate___timg__GetOptions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__GetOptions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__GetOptions *p; - size_t k = sizeof(struct __timg__GetOptions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__GetOptions, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__GetOptions); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__GetOptions, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__GetOptions location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetOptions(struct soap *soap, const struct __timg__GetOptions *a, const char *tag, const char *type) -{ - if (soap_out___timg__GetOptions(soap, tag ? tag : "-timg:GetOptions", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetOptions * SOAP_FMAC4 soap_get___timg__GetOptions(struct soap *soap, struct __timg__GetOptions *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__GetOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__SetImagingSettings(struct soap *soap, struct __timg__SetImagingSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__SetImagingSettings = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__SetImagingSettings(struct soap *soap, const struct __timg__SetImagingSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__SetImagingSettings(soap, &a->timg__SetImagingSettings); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__SetImagingSettings(struct soap *soap, const char *tag, int id, const struct __timg__SetImagingSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__SetImagingSettings(soap, "timg:SetImagingSettings", -1, &a->timg__SetImagingSettings, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__SetImagingSettings * SOAP_FMAC4 soap_in___timg__SetImagingSettings(struct soap *soap, const char *tag, struct __timg__SetImagingSettings *a, const char *type) -{ - size_t soap_flag_timg__SetImagingSettings = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__SetImagingSettings*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__SetImagingSettings, sizeof(struct __timg__SetImagingSettings), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__SetImagingSettings(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__SetImagingSettings && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__SetImagingSettings(soap, "timg:SetImagingSettings", &a->timg__SetImagingSettings, "")) - { soap_flag_timg__SetImagingSettings--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__SetImagingSettings * SOAP_FMAC2 soap_instantiate___timg__SetImagingSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__SetImagingSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__SetImagingSettings *p; - size_t k = sizeof(struct __timg__SetImagingSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__SetImagingSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__SetImagingSettings); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__SetImagingSettings, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__SetImagingSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__SetImagingSettings(struct soap *soap, const struct __timg__SetImagingSettings *a, const char *tag, const char *type) -{ - if (soap_out___timg__SetImagingSettings(soap, tag ? tag : "-timg:SetImagingSettings", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__SetImagingSettings * SOAP_FMAC4 soap_get___timg__SetImagingSettings(struct soap *soap, struct __timg__SetImagingSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__SetImagingSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetImagingSettings(struct soap *soap, struct __timg__GetImagingSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__GetImagingSettings = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetImagingSettings(struct soap *soap, const struct __timg__GetImagingSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__GetImagingSettings(soap, &a->timg__GetImagingSettings); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetImagingSettings(struct soap *soap, const char *tag, int id, const struct __timg__GetImagingSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__GetImagingSettings(soap, "timg:GetImagingSettings", -1, &a->timg__GetImagingSettings, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetImagingSettings * SOAP_FMAC4 soap_in___timg__GetImagingSettings(struct soap *soap, const char *tag, struct __timg__GetImagingSettings *a, const char *type) -{ - size_t soap_flag_timg__GetImagingSettings = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__GetImagingSettings*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__GetImagingSettings, sizeof(struct __timg__GetImagingSettings), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__GetImagingSettings(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__GetImagingSettings && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__GetImagingSettings(soap, "timg:GetImagingSettings", &a->timg__GetImagingSettings, "")) - { soap_flag_timg__GetImagingSettings--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__GetImagingSettings * SOAP_FMAC2 soap_instantiate___timg__GetImagingSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__GetImagingSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__GetImagingSettings *p; - size_t k = sizeof(struct __timg__GetImagingSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__GetImagingSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__GetImagingSettings); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__GetImagingSettings, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__GetImagingSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetImagingSettings(struct soap *soap, const struct __timg__GetImagingSettings *a, const char *tag, const char *type) -{ - if (soap_out___timg__GetImagingSettings(soap, tag ? tag : "-timg:GetImagingSettings", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetImagingSettings * SOAP_FMAC4 soap_get___timg__GetImagingSettings(struct soap *soap, struct __timg__GetImagingSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__GetImagingSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetServiceCapabilities(struct soap *soap, struct __timg__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->timg__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetServiceCapabilities(struct soap *soap, const struct __timg__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_timg__GetServiceCapabilities(soap, &a->timg__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __timg__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_timg__GetServiceCapabilities(soap, "timg:GetServiceCapabilities", -1, &a->timg__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetServiceCapabilities * SOAP_FMAC4 soap_in___timg__GetServiceCapabilities(struct soap *soap, const char *tag, struct __timg__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_timg__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __timg__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___timg__GetServiceCapabilities, sizeof(struct __timg__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___timg__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_timg__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_timg__GetServiceCapabilities(soap, "timg:GetServiceCapabilities", &a->timg__GetServiceCapabilities, "")) - { soap_flag_timg__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __timg__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___timg__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___timg__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __timg__GetServiceCapabilities *p; - size_t k = sizeof(struct __timg__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___timg__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __timg__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __timg__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __timg__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetServiceCapabilities(struct soap *soap, const struct __timg__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___timg__GetServiceCapabilities(soap, tag ? tag : "-timg:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __timg__GetServiceCapabilities * SOAP_FMAC4 soap_get___timg__GetServiceCapabilities(struct soap *soap, struct __timg__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___timg__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevs__Unsubscribe(struct soap *soap, struct __tevs__Unsubscribe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__Unsubscribe = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevs__Unsubscribe(struct soap *soap, const struct __tevs__Unsubscribe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__Unsubscribe(soap, &a->wsnt__Unsubscribe); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevs__Unsubscribe(struct soap *soap, const char *tag, int id, const struct __tevs__Unsubscribe *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__Unsubscribe(soap, "wsnt:Unsubscribe", -1, &a->wsnt__Unsubscribe, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevs__Unsubscribe * SOAP_FMAC4 soap_in___tevs__Unsubscribe(struct soap *soap, const char *tag, struct __tevs__Unsubscribe *a, const char *type) -{ - size_t soap_flag_wsnt__Unsubscribe = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevs__Unsubscribe*)soap_id_enter(soap, "", a, SOAP_TYPE___tevs__Unsubscribe, sizeof(struct __tevs__Unsubscribe), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevs__Unsubscribe(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__Unsubscribe && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Unsubscribe(soap, "wsnt:Unsubscribe", &a->wsnt__Unsubscribe, "")) - { soap_flag_wsnt__Unsubscribe--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevs__Unsubscribe * SOAP_FMAC2 soap_instantiate___tevs__Unsubscribe(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevs__Unsubscribe(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevs__Unsubscribe *p; - size_t k = sizeof(struct __tevs__Unsubscribe); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevs__Unsubscribe, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevs__Unsubscribe); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevs__Unsubscribe, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevs__Unsubscribe location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevs__Unsubscribe(struct soap *soap, const struct __tevs__Unsubscribe *a, const char *tag, const char *type) -{ - if (soap_out___tevs__Unsubscribe(soap, tag ? tag : "-tevs:Unsubscribe", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevs__Unsubscribe * SOAP_FMAC4 soap_get___tevs__Unsubscribe(struct soap *soap, struct __tevs__Unsubscribe *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevs__Unsubscribe(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevs__Renew(struct soap *soap, struct __tevs__Renew *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__Renew = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevs__Renew(struct soap *soap, const struct __tevs__Renew *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__Renew(soap, &a->wsnt__Renew); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevs__Renew(struct soap *soap, const char *tag, int id, const struct __tevs__Renew *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__Renew(soap, "wsnt:Renew", -1, &a->wsnt__Renew, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevs__Renew * SOAP_FMAC4 soap_in___tevs__Renew(struct soap *soap, const char *tag, struct __tevs__Renew *a, const char *type) -{ - size_t soap_flag_wsnt__Renew = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevs__Renew*)soap_id_enter(soap, "", a, SOAP_TYPE___tevs__Renew, sizeof(struct __tevs__Renew), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevs__Renew(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__Renew && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Renew(soap, "wsnt:Renew", &a->wsnt__Renew, "")) - { soap_flag_wsnt__Renew--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevs__Renew * SOAP_FMAC2 soap_instantiate___tevs__Renew(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevs__Renew(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevs__Renew *p; - size_t k = sizeof(struct __tevs__Renew); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevs__Renew, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevs__Renew); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevs__Renew, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevs__Renew location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevs__Renew(struct soap *soap, const struct __tevs__Renew *a, const char *tag, const char *type) -{ - if (soap_out___tevs__Renew(soap, tag ? tag : "-tevs:Renew", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevs__Renew * SOAP_FMAC4 soap_get___tevs__Renew(struct soap *soap, struct __tevs__Renew *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevs__Renew(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__ResumeSubscription(struct soap *soap, struct __tevps__ResumeSubscription *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__ResumeSubscription = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__ResumeSubscription(struct soap *soap, const struct __tevps__ResumeSubscription *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__ResumeSubscription(soap, &a->wsnt__ResumeSubscription); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__ResumeSubscription(struct soap *soap, const char *tag, int id, const struct __tevps__ResumeSubscription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__ResumeSubscription(soap, "wsnt:ResumeSubscription", -1, &a->wsnt__ResumeSubscription, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__ResumeSubscription * SOAP_FMAC4 soap_in___tevps__ResumeSubscription(struct soap *soap, const char *tag, struct __tevps__ResumeSubscription *a, const char *type) -{ - size_t soap_flag_wsnt__ResumeSubscription = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevps__ResumeSubscription*)soap_id_enter(soap, "", a, SOAP_TYPE___tevps__ResumeSubscription, sizeof(struct __tevps__ResumeSubscription), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevps__ResumeSubscription(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__ResumeSubscription && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__ResumeSubscription(soap, "wsnt:ResumeSubscription", &a->wsnt__ResumeSubscription, "")) - { soap_flag_wsnt__ResumeSubscription--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevps__ResumeSubscription * SOAP_FMAC2 soap_instantiate___tevps__ResumeSubscription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevps__ResumeSubscription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevps__ResumeSubscription *p; - size_t k = sizeof(struct __tevps__ResumeSubscription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevps__ResumeSubscription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevps__ResumeSubscription); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevps__ResumeSubscription, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevps__ResumeSubscription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__ResumeSubscription(struct soap *soap, const struct __tevps__ResumeSubscription *a, const char *tag, const char *type) -{ - if (soap_out___tevps__ResumeSubscription(soap, tag ? tag : "-tevps:ResumeSubscription", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__ResumeSubscription * SOAP_FMAC4 soap_get___tevps__ResumeSubscription(struct soap *soap, struct __tevps__ResumeSubscription *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevps__ResumeSubscription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__PauseSubscription(struct soap *soap, struct __tevps__PauseSubscription *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__PauseSubscription = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__PauseSubscription(struct soap *soap, const struct __tevps__PauseSubscription *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__PauseSubscription(soap, &a->wsnt__PauseSubscription); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__PauseSubscription(struct soap *soap, const char *tag, int id, const struct __tevps__PauseSubscription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__PauseSubscription(soap, "wsnt:PauseSubscription", -1, &a->wsnt__PauseSubscription, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__PauseSubscription * SOAP_FMAC4 soap_in___tevps__PauseSubscription(struct soap *soap, const char *tag, struct __tevps__PauseSubscription *a, const char *type) -{ - size_t soap_flag_wsnt__PauseSubscription = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevps__PauseSubscription*)soap_id_enter(soap, "", a, SOAP_TYPE___tevps__PauseSubscription, sizeof(struct __tevps__PauseSubscription), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevps__PauseSubscription(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__PauseSubscription && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__PauseSubscription(soap, "wsnt:PauseSubscription", &a->wsnt__PauseSubscription, "")) - { soap_flag_wsnt__PauseSubscription--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevps__PauseSubscription * SOAP_FMAC2 soap_instantiate___tevps__PauseSubscription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevps__PauseSubscription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevps__PauseSubscription *p; - size_t k = sizeof(struct __tevps__PauseSubscription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevps__PauseSubscription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevps__PauseSubscription); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevps__PauseSubscription, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevps__PauseSubscription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__PauseSubscription(struct soap *soap, const struct __tevps__PauseSubscription *a, const char *tag, const char *type) -{ - if (soap_out___tevps__PauseSubscription(soap, tag ? tag : "-tevps:PauseSubscription", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__PauseSubscription * SOAP_FMAC4 soap_get___tevps__PauseSubscription(struct soap *soap, struct __tevps__PauseSubscription *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevps__PauseSubscription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__Unsubscribe(struct soap *soap, struct __tevps__Unsubscribe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__Unsubscribe = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__Unsubscribe(struct soap *soap, const struct __tevps__Unsubscribe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__Unsubscribe(soap, &a->wsnt__Unsubscribe); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__Unsubscribe(struct soap *soap, const char *tag, int id, const struct __tevps__Unsubscribe *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__Unsubscribe(soap, "wsnt:Unsubscribe", -1, &a->wsnt__Unsubscribe, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__Unsubscribe * SOAP_FMAC4 soap_in___tevps__Unsubscribe(struct soap *soap, const char *tag, struct __tevps__Unsubscribe *a, const char *type) -{ - size_t soap_flag_wsnt__Unsubscribe = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevps__Unsubscribe*)soap_id_enter(soap, "", a, SOAP_TYPE___tevps__Unsubscribe, sizeof(struct __tevps__Unsubscribe), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevps__Unsubscribe(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__Unsubscribe && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Unsubscribe(soap, "wsnt:Unsubscribe", &a->wsnt__Unsubscribe, "")) - { soap_flag_wsnt__Unsubscribe--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevps__Unsubscribe * SOAP_FMAC2 soap_instantiate___tevps__Unsubscribe(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevps__Unsubscribe(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevps__Unsubscribe *p; - size_t k = sizeof(struct __tevps__Unsubscribe); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevps__Unsubscribe, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevps__Unsubscribe); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevps__Unsubscribe, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevps__Unsubscribe location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__Unsubscribe(struct soap *soap, const struct __tevps__Unsubscribe *a, const char *tag, const char *type) -{ - if (soap_out___tevps__Unsubscribe(soap, tag ? tag : "-tevps:Unsubscribe", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__Unsubscribe * SOAP_FMAC4 soap_get___tevps__Unsubscribe(struct soap *soap, struct __tevps__Unsubscribe *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevps__Unsubscribe(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__Renew(struct soap *soap, struct __tevps__Renew *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__Renew = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__Renew(struct soap *soap, const struct __tevps__Renew *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__Renew(soap, &a->wsnt__Renew); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__Renew(struct soap *soap, const char *tag, int id, const struct __tevps__Renew *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__Renew(soap, "wsnt:Renew", -1, &a->wsnt__Renew, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__Renew * SOAP_FMAC4 soap_in___tevps__Renew(struct soap *soap, const char *tag, struct __tevps__Renew *a, const char *type) -{ - size_t soap_flag_wsnt__Renew = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevps__Renew*)soap_id_enter(soap, "", a, SOAP_TYPE___tevps__Renew, sizeof(struct __tevps__Renew), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevps__Renew(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__Renew && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Renew(soap, "wsnt:Renew", &a->wsnt__Renew, "")) - { soap_flag_wsnt__Renew--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevps__Renew * SOAP_FMAC2 soap_instantiate___tevps__Renew(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevps__Renew(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevps__Renew *p; - size_t k = sizeof(struct __tevps__Renew); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevps__Renew, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevps__Renew); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevps__Renew, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevps__Renew location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__Renew(struct soap *soap, const struct __tevps__Renew *a, const char *tag, const char *type) -{ - if (soap_out___tevps__Renew(soap, tag ? tag : "-tevps:Renew", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevps__Renew * SOAP_FMAC4 soap_get___tevps__Renew(struct soap *soap, struct __tevps__Renew *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevps__Renew(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpps__SetSynchronizationPoint(struct soap *soap, struct __tevpps__SetSynchronizationPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tev__SetSynchronizationPoint = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpps__SetSynchronizationPoint(struct soap *soap, const struct __tevpps__SetSynchronizationPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tev__SetSynchronizationPoint(soap, &a->tev__SetSynchronizationPoint); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpps__SetSynchronizationPoint(struct soap *soap, const char *tag, int id, const struct __tevpps__SetSynchronizationPoint *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tev__SetSynchronizationPoint(soap, "tev:SetSynchronizationPoint", -1, &a->tev__SetSynchronizationPoint, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpps__SetSynchronizationPoint * SOAP_FMAC4 soap_in___tevpps__SetSynchronizationPoint(struct soap *soap, const char *tag, struct __tevpps__SetSynchronizationPoint *a, const char *type) -{ - size_t soap_flag_tev__SetSynchronizationPoint = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevpps__SetSynchronizationPoint*)soap_id_enter(soap, "", a, SOAP_TYPE___tevpps__SetSynchronizationPoint, sizeof(struct __tevpps__SetSynchronizationPoint), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevpps__SetSynchronizationPoint(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tev__SetSynchronizationPoint && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__SetSynchronizationPoint(soap, "tev:SetSynchronizationPoint", &a->tev__SetSynchronizationPoint, "")) - { soap_flag_tev__SetSynchronizationPoint--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevpps__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate___tevpps__SetSynchronizationPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevpps__SetSynchronizationPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevpps__SetSynchronizationPoint *p; - size_t k = sizeof(struct __tevpps__SetSynchronizationPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevpps__SetSynchronizationPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevpps__SetSynchronizationPoint); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevpps__SetSynchronizationPoint, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevpps__SetSynchronizationPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpps__SetSynchronizationPoint(struct soap *soap, const struct __tevpps__SetSynchronizationPoint *a, const char *tag, const char *type) -{ - if (soap_out___tevpps__SetSynchronizationPoint(soap, tag ? tag : "-tevpps:SetSynchronizationPoint", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpps__SetSynchronizationPoint * SOAP_FMAC4 soap_get___tevpps__SetSynchronizationPoint(struct soap *soap, struct __tevpps__SetSynchronizationPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevpps__SetSynchronizationPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpps__Seek(struct soap *soap, struct __tevpps__Seek *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tev__Seek = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpps__Seek(struct soap *soap, const struct __tevpps__Seek *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tev__Seek(soap, &a->tev__Seek); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpps__Seek(struct soap *soap, const char *tag, int id, const struct __tevpps__Seek *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tev__Seek(soap, "tev:Seek", -1, &a->tev__Seek, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpps__Seek * SOAP_FMAC4 soap_in___tevpps__Seek(struct soap *soap, const char *tag, struct __tevpps__Seek *a, const char *type) -{ - size_t soap_flag_tev__Seek = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevpps__Seek*)soap_id_enter(soap, "", a, SOAP_TYPE___tevpps__Seek, sizeof(struct __tevpps__Seek), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevpps__Seek(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tev__Seek && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__Seek(soap, "tev:Seek", &a->tev__Seek, "")) - { soap_flag_tev__Seek--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevpps__Seek * SOAP_FMAC2 soap_instantiate___tevpps__Seek(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevpps__Seek(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevpps__Seek *p; - size_t k = sizeof(struct __tevpps__Seek); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevpps__Seek, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevpps__Seek); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevpps__Seek, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevpps__Seek location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpps__Seek(struct soap *soap, const struct __tevpps__Seek *a, const char *tag, const char *type) -{ - if (soap_out___tevpps__Seek(soap, tag ? tag : "-tevpps:Seek", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpps__Seek * SOAP_FMAC4 soap_get___tevpps__Seek(struct soap *soap, struct __tevpps__Seek *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevpps__Seek(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpps__PullMessages(struct soap *soap, struct __tevpps__PullMessages *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tev__PullMessages = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpps__PullMessages(struct soap *soap, const struct __tevpps__PullMessages *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tev__PullMessages(soap, &a->tev__PullMessages); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpps__PullMessages(struct soap *soap, const char *tag, int id, const struct __tevpps__PullMessages *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tev__PullMessages(soap, "tev:PullMessages", -1, &a->tev__PullMessages, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpps__PullMessages * SOAP_FMAC4 soap_in___tevpps__PullMessages(struct soap *soap, const char *tag, struct __tevpps__PullMessages *a, const char *type) -{ - size_t soap_flag_tev__PullMessages = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevpps__PullMessages*)soap_id_enter(soap, "", a, SOAP_TYPE___tevpps__PullMessages, sizeof(struct __tevpps__PullMessages), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevpps__PullMessages(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tev__PullMessages && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__PullMessages(soap, "tev:PullMessages", &a->tev__PullMessages, "")) - { soap_flag_tev__PullMessages--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevpps__PullMessages * SOAP_FMAC2 soap_instantiate___tevpps__PullMessages(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevpps__PullMessages(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevpps__PullMessages *p; - size_t k = sizeof(struct __tevpps__PullMessages); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevpps__PullMessages, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevpps__PullMessages); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevpps__PullMessages, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevpps__PullMessages location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpps__PullMessages(struct soap *soap, const struct __tevpps__PullMessages *a, const char *tag, const char *type) -{ - if (soap_out___tevpps__PullMessages(soap, tag ? tag : "-tevpps:PullMessages", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpps__PullMessages * SOAP_FMAC4 soap_get___tevpps__PullMessages(struct soap *soap, struct __tevpps__PullMessages *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevpps__PullMessages(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpp__Notify(struct soap *soap, struct __tevpp__Notify *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__Notify = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpp__Notify(struct soap *soap, const struct __tevpp__Notify *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__Notify(soap, &a->wsnt__Notify); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpp__Notify(struct soap *soap, const char *tag, int id, const struct __tevpp__Notify *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__Notify(soap, "wsnt:Notify", -1, &a->wsnt__Notify, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpp__Notify * SOAP_FMAC4 soap_in___tevpp__Notify(struct soap *soap, const char *tag, struct __tevpp__Notify *a, const char *type) -{ - size_t soap_flag_wsnt__Notify = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevpp__Notify*)soap_id_enter(soap, "", a, SOAP_TYPE___tevpp__Notify, sizeof(struct __tevpp__Notify), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevpp__Notify(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__Notify && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Notify(soap, "wsnt:Notify", &a->wsnt__Notify, "")) - { soap_flag_wsnt__Notify--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevpp__Notify * SOAP_FMAC2 soap_instantiate___tevpp__Notify(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevpp__Notify(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevpp__Notify *p; - size_t k = sizeof(struct __tevpp__Notify); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevpp__Notify, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevpp__Notify); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevpp__Notify, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevpp__Notify location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpp__Notify(struct soap *soap, const struct __tevpp__Notify *a, const char *tag, const char *type) -{ - if (soap_out___tevpp__Notify(soap, tag ? tag : "-tevpp:Notify", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpp__Notify * SOAP_FMAC4 soap_get___tevpp__Notify(struct soap *soap, struct __tevpp__Notify *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevpp__Notify(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpp__DestroyPullPoint(struct soap *soap, struct __tevpp__DestroyPullPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__DestroyPullPoint = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpp__DestroyPullPoint(struct soap *soap, const struct __tevpp__DestroyPullPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__DestroyPullPoint(soap, &a->wsnt__DestroyPullPoint); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpp__DestroyPullPoint(struct soap *soap, const char *tag, int id, const struct __tevpp__DestroyPullPoint *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__DestroyPullPoint(soap, "wsnt:DestroyPullPoint", -1, &a->wsnt__DestroyPullPoint, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpp__DestroyPullPoint * SOAP_FMAC4 soap_in___tevpp__DestroyPullPoint(struct soap *soap, const char *tag, struct __tevpp__DestroyPullPoint *a, const char *type) -{ - size_t soap_flag_wsnt__DestroyPullPoint = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevpp__DestroyPullPoint*)soap_id_enter(soap, "", a, SOAP_TYPE___tevpp__DestroyPullPoint, sizeof(struct __tevpp__DestroyPullPoint), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevpp__DestroyPullPoint(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__DestroyPullPoint && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__DestroyPullPoint(soap, "wsnt:DestroyPullPoint", &a->wsnt__DestroyPullPoint, "")) - { soap_flag_wsnt__DestroyPullPoint--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevpp__DestroyPullPoint * SOAP_FMAC2 soap_instantiate___tevpp__DestroyPullPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevpp__DestroyPullPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevpp__DestroyPullPoint *p; - size_t k = sizeof(struct __tevpp__DestroyPullPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevpp__DestroyPullPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevpp__DestroyPullPoint); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevpp__DestroyPullPoint, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevpp__DestroyPullPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpp__DestroyPullPoint(struct soap *soap, const struct __tevpp__DestroyPullPoint *a, const char *tag, const char *type) -{ - if (soap_out___tevpp__DestroyPullPoint(soap, tag ? tag : "-tevpp:DestroyPullPoint", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpp__DestroyPullPoint * SOAP_FMAC4 soap_get___tevpp__DestroyPullPoint(struct soap *soap, struct __tevpp__DestroyPullPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevpp__DestroyPullPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpp__GetMessages(struct soap *soap, struct __tevpp__GetMessages *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__GetMessages = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpp__GetMessages(struct soap *soap, const struct __tevpp__GetMessages *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__GetMessages(soap, &a->wsnt__GetMessages); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpp__GetMessages(struct soap *soap, const char *tag, int id, const struct __tevpp__GetMessages *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__GetMessages(soap, "wsnt:GetMessages", -1, &a->wsnt__GetMessages, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpp__GetMessages * SOAP_FMAC4 soap_in___tevpp__GetMessages(struct soap *soap, const char *tag, struct __tevpp__GetMessages *a, const char *type) -{ - size_t soap_flag_wsnt__GetMessages = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevpp__GetMessages*)soap_id_enter(soap, "", a, SOAP_TYPE___tevpp__GetMessages, sizeof(struct __tevpp__GetMessages), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevpp__GetMessages(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__GetMessages && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__GetMessages(soap, "wsnt:GetMessages", &a->wsnt__GetMessages, "")) - { soap_flag_wsnt__GetMessages--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevpp__GetMessages * SOAP_FMAC2 soap_instantiate___tevpp__GetMessages(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevpp__GetMessages(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevpp__GetMessages *p; - size_t k = sizeof(struct __tevpp__GetMessages); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevpp__GetMessages, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevpp__GetMessages); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevpp__GetMessages, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevpp__GetMessages location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpp__GetMessages(struct soap *soap, const struct __tevpp__GetMessages *a, const char *tag, const char *type) -{ - if (soap_out___tevpp__GetMessages(soap, tag ? tag : "-tevpp:GetMessages", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevpp__GetMessages * SOAP_FMAC4 soap_get___tevpp__GetMessages(struct soap *soap, struct __tevpp__GetMessages *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevpp__GetMessages(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevnp__GetCurrentMessage(struct soap *soap, struct __tevnp__GetCurrentMessage *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__GetCurrentMessage = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevnp__GetCurrentMessage(struct soap *soap, const struct __tevnp__GetCurrentMessage *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__GetCurrentMessage(soap, &a->wsnt__GetCurrentMessage); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevnp__GetCurrentMessage(struct soap *soap, const char *tag, int id, const struct __tevnp__GetCurrentMessage *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__GetCurrentMessage(soap, "wsnt:GetCurrentMessage", -1, &a->wsnt__GetCurrentMessage, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevnp__GetCurrentMessage * SOAP_FMAC4 soap_in___tevnp__GetCurrentMessage(struct soap *soap, const char *tag, struct __tevnp__GetCurrentMessage *a, const char *type) -{ - size_t soap_flag_wsnt__GetCurrentMessage = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevnp__GetCurrentMessage*)soap_id_enter(soap, "", a, SOAP_TYPE___tevnp__GetCurrentMessage, sizeof(struct __tevnp__GetCurrentMessage), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevnp__GetCurrentMessage(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__GetCurrentMessage && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__GetCurrentMessage(soap, "wsnt:GetCurrentMessage", &a->wsnt__GetCurrentMessage, "")) - { soap_flag_wsnt__GetCurrentMessage--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevnp__GetCurrentMessage * SOAP_FMAC2 soap_instantiate___tevnp__GetCurrentMessage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevnp__GetCurrentMessage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevnp__GetCurrentMessage *p; - size_t k = sizeof(struct __tevnp__GetCurrentMessage); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevnp__GetCurrentMessage, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevnp__GetCurrentMessage); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevnp__GetCurrentMessage, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevnp__GetCurrentMessage location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevnp__GetCurrentMessage(struct soap *soap, const struct __tevnp__GetCurrentMessage *a, const char *tag, const char *type) -{ - if (soap_out___tevnp__GetCurrentMessage(soap, tag ? tag : "-tevnp:GetCurrentMessage", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevnp__GetCurrentMessage * SOAP_FMAC4 soap_get___tevnp__GetCurrentMessage(struct soap *soap, struct __tevnp__GetCurrentMessage *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevnp__GetCurrentMessage(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevnp__Subscribe(struct soap *soap, struct __tevnp__Subscribe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__Subscribe = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevnp__Subscribe(struct soap *soap, const struct __tevnp__Subscribe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__Subscribe(soap, &a->wsnt__Subscribe); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevnp__Subscribe(struct soap *soap, const char *tag, int id, const struct __tevnp__Subscribe *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__Subscribe(soap, "wsnt:Subscribe", -1, &a->wsnt__Subscribe, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevnp__Subscribe * SOAP_FMAC4 soap_in___tevnp__Subscribe(struct soap *soap, const char *tag, struct __tevnp__Subscribe *a, const char *type) -{ - size_t soap_flag_wsnt__Subscribe = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevnp__Subscribe*)soap_id_enter(soap, "", a, SOAP_TYPE___tevnp__Subscribe, sizeof(struct __tevnp__Subscribe), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevnp__Subscribe(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__Subscribe && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Subscribe(soap, "wsnt:Subscribe", &a->wsnt__Subscribe, "")) - { soap_flag_wsnt__Subscribe--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevnp__Subscribe * SOAP_FMAC2 soap_instantiate___tevnp__Subscribe(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevnp__Subscribe(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevnp__Subscribe *p; - size_t k = sizeof(struct __tevnp__Subscribe); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevnp__Subscribe, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevnp__Subscribe); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevnp__Subscribe, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevnp__Subscribe location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevnp__Subscribe(struct soap *soap, const struct __tevnp__Subscribe *a, const char *tag, const char *type) -{ - if (soap_out___tevnp__Subscribe(soap, tag ? tag : "-tevnp:Subscribe", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevnp__Subscribe * SOAP_FMAC4 soap_get___tevnp__Subscribe(struct soap *soap, struct __tevnp__Subscribe *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevnp__Subscribe(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevnc__Notify(struct soap *soap, struct __tevnc__Notify *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__Notify = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevnc__Notify(struct soap *soap, const struct __tevnc__Notify *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__Notify(soap, &a->wsnt__Notify); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevnc__Notify(struct soap *soap, const char *tag, int id, const struct __tevnc__Notify *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__Notify(soap, "wsnt:Notify", -1, &a->wsnt__Notify, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevnc__Notify * SOAP_FMAC4 soap_in___tevnc__Notify(struct soap *soap, const char *tag, struct __tevnc__Notify *a, const char *type) -{ - size_t soap_flag_wsnt__Notify = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevnc__Notify*)soap_id_enter(soap, "", a, SOAP_TYPE___tevnc__Notify, sizeof(struct __tevnc__Notify), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevnc__Notify(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__Notify && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__Notify(soap, "wsnt:Notify", &a->wsnt__Notify, "")) - { soap_flag_wsnt__Notify--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevnc__Notify * SOAP_FMAC2 soap_instantiate___tevnc__Notify(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevnc__Notify(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevnc__Notify *p; - size_t k = sizeof(struct __tevnc__Notify); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevnc__Notify, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevnc__Notify); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevnc__Notify, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevnc__Notify location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevnc__Notify(struct soap *soap, const struct __tevnc__Notify *a, const char *tag, const char *type) -{ - if (soap_out___tevnc__Notify(soap, tag ? tag : "-tevnc:Notify", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevnc__Notify * SOAP_FMAC4 soap_get___tevnc__Notify(struct soap *soap, struct __tevnc__Notify *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevnc__Notify(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___teve__GetEventProperties(struct soap *soap, struct __teve__GetEventProperties *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tev__GetEventProperties = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___teve__GetEventProperties(struct soap *soap, const struct __teve__GetEventProperties *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tev__GetEventProperties(soap, &a->tev__GetEventProperties); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___teve__GetEventProperties(struct soap *soap, const char *tag, int id, const struct __teve__GetEventProperties *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tev__GetEventProperties(soap, "tev:GetEventProperties", -1, &a->tev__GetEventProperties, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __teve__GetEventProperties * SOAP_FMAC4 soap_in___teve__GetEventProperties(struct soap *soap, const char *tag, struct __teve__GetEventProperties *a, const char *type) -{ - size_t soap_flag_tev__GetEventProperties = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __teve__GetEventProperties*)soap_id_enter(soap, "", a, SOAP_TYPE___teve__GetEventProperties, sizeof(struct __teve__GetEventProperties), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___teve__GetEventProperties(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tev__GetEventProperties && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__GetEventProperties(soap, "tev:GetEventProperties", &a->tev__GetEventProperties, "")) - { soap_flag_tev__GetEventProperties--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __teve__GetEventProperties * SOAP_FMAC2 soap_instantiate___teve__GetEventProperties(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___teve__GetEventProperties(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __teve__GetEventProperties *p; - size_t k = sizeof(struct __teve__GetEventProperties); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___teve__GetEventProperties, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __teve__GetEventProperties); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __teve__GetEventProperties, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __teve__GetEventProperties location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___teve__GetEventProperties(struct soap *soap, const struct __teve__GetEventProperties *a, const char *tag, const char *type) -{ - if (soap_out___teve__GetEventProperties(soap, tag ? tag : "-teve:GetEventProperties", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __teve__GetEventProperties * SOAP_FMAC4 soap_get___teve__GetEventProperties(struct soap *soap, struct __teve__GetEventProperties *p, const char *tag, const char *type) -{ - if ((p = soap_in___teve__GetEventProperties(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___teve__CreatePullPointSubscription(struct soap *soap, struct __teve__CreatePullPointSubscription *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tev__CreatePullPointSubscription = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___teve__CreatePullPointSubscription(struct soap *soap, const struct __teve__CreatePullPointSubscription *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tev__CreatePullPointSubscription(soap, &a->tev__CreatePullPointSubscription); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___teve__CreatePullPointSubscription(struct soap *soap, const char *tag, int id, const struct __teve__CreatePullPointSubscription *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tev__CreatePullPointSubscription(soap, "tev:CreatePullPointSubscription", -1, &a->tev__CreatePullPointSubscription, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __teve__CreatePullPointSubscription * SOAP_FMAC4 soap_in___teve__CreatePullPointSubscription(struct soap *soap, const char *tag, struct __teve__CreatePullPointSubscription *a, const char *type) -{ - size_t soap_flag_tev__CreatePullPointSubscription = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __teve__CreatePullPointSubscription*)soap_id_enter(soap, "", a, SOAP_TYPE___teve__CreatePullPointSubscription, sizeof(struct __teve__CreatePullPointSubscription), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___teve__CreatePullPointSubscription(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tev__CreatePullPointSubscription && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__CreatePullPointSubscription(soap, "tev:CreatePullPointSubscription", &a->tev__CreatePullPointSubscription, "")) - { soap_flag_tev__CreatePullPointSubscription--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __teve__CreatePullPointSubscription * SOAP_FMAC2 soap_instantiate___teve__CreatePullPointSubscription(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___teve__CreatePullPointSubscription(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __teve__CreatePullPointSubscription *p; - size_t k = sizeof(struct __teve__CreatePullPointSubscription); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___teve__CreatePullPointSubscription, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __teve__CreatePullPointSubscription); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __teve__CreatePullPointSubscription, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __teve__CreatePullPointSubscription location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___teve__CreatePullPointSubscription(struct soap *soap, const struct __teve__CreatePullPointSubscription *a, const char *tag, const char *type) -{ - if (soap_out___teve__CreatePullPointSubscription(soap, tag ? tag : "-teve:CreatePullPointSubscription", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __teve__CreatePullPointSubscription * SOAP_FMAC4 soap_get___teve__CreatePullPointSubscription(struct soap *soap, struct __teve__CreatePullPointSubscription *p, const char *tag, const char *type) -{ - if ((p = soap_in___teve__CreatePullPointSubscription(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___teve__GetServiceCapabilities(struct soap *soap, struct __teve__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tev__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___teve__GetServiceCapabilities(struct soap *soap, const struct __teve__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tev__GetServiceCapabilities(soap, &a->tev__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___teve__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __teve__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tev__GetServiceCapabilities(soap, "tev:GetServiceCapabilities", -1, &a->tev__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __teve__GetServiceCapabilities * SOAP_FMAC4 soap_in___teve__GetServiceCapabilities(struct soap *soap, const char *tag, struct __teve__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_tev__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __teve__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___teve__GetServiceCapabilities, sizeof(struct __teve__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___teve__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tev__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__GetServiceCapabilities(soap, "tev:GetServiceCapabilities", &a->tev__GetServiceCapabilities, "")) - { soap_flag_tev__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __teve__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___teve__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___teve__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __teve__GetServiceCapabilities *p; - size_t k = sizeof(struct __teve__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___teve__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __teve__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __teve__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __teve__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___teve__GetServiceCapabilities(struct soap *soap, const struct __teve__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___teve__GetServiceCapabilities(soap, tag ? tag : "-teve:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __teve__GetServiceCapabilities * SOAP_FMAC4 soap_get___teve__GetServiceCapabilities(struct soap *soap, struct __teve__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___teve__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevcpp__CreatePullPoint(struct soap *soap, struct __tevcpp__CreatePullPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsnt__CreatePullPoint = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevcpp__CreatePullPoint(struct soap *soap, const struct __tevcpp__CreatePullPoint *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsnt__CreatePullPoint(soap, &a->wsnt__CreatePullPoint); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevcpp__CreatePullPoint(struct soap *soap, const char *tag, int id, const struct __tevcpp__CreatePullPoint *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_wsnt__CreatePullPoint(soap, "wsnt:CreatePullPoint", -1, &a->wsnt__CreatePullPoint, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevcpp__CreatePullPoint * SOAP_FMAC4 soap_in___tevcpp__CreatePullPoint(struct soap *soap, const char *tag, struct __tevcpp__CreatePullPoint *a, const char *type) -{ - size_t soap_flag_wsnt__CreatePullPoint = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tevcpp__CreatePullPoint*)soap_id_enter(soap, "", a, SOAP_TYPE___tevcpp__CreatePullPoint, sizeof(struct __tevcpp__CreatePullPoint), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tevcpp__CreatePullPoint(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__CreatePullPoint && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsnt__CreatePullPoint(soap, "wsnt:CreatePullPoint", &a->wsnt__CreatePullPoint, "")) - { soap_flag_wsnt__CreatePullPoint--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tevcpp__CreatePullPoint * SOAP_FMAC2 soap_instantiate___tevcpp__CreatePullPoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tevcpp__CreatePullPoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tevcpp__CreatePullPoint *p; - size_t k = sizeof(struct __tevcpp__CreatePullPoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tevcpp__CreatePullPoint, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tevcpp__CreatePullPoint); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tevcpp__CreatePullPoint, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tevcpp__CreatePullPoint location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevcpp__CreatePullPoint(struct soap *soap, const struct __tevcpp__CreatePullPoint *a, const char *tag, const char *type) -{ - if (soap_out___tevcpp__CreatePullPoint(soap, tag ? tag : "-tevcpp:CreatePullPoint", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tevcpp__CreatePullPoint * SOAP_FMAC4 soap_get___tevcpp__CreatePullPoint(struct soap *soap, struct __tevcpp__CreatePullPoint *p, const char *tag, const char *type) -{ - if ((p = soap_in___tevcpp__CreatePullPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteGeoLocation(struct soap *soap, struct __tds__DeleteGeoLocation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__DeleteGeoLocation = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteGeoLocation(struct soap *soap, const struct __tds__DeleteGeoLocation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__DeleteGeoLocation(soap, &a->tds__DeleteGeoLocation); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteGeoLocation(struct soap *soap, const char *tag, int id, const struct __tds__DeleteGeoLocation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__DeleteGeoLocation(soap, "tds:DeleteGeoLocation", -1, &a->tds__DeleteGeoLocation, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteGeoLocation * SOAP_FMAC4 soap_in___tds__DeleteGeoLocation(struct soap *soap, const char *tag, struct __tds__DeleteGeoLocation *a, const char *type) -{ - size_t soap_flag_tds__DeleteGeoLocation = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__DeleteGeoLocation*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__DeleteGeoLocation, sizeof(struct __tds__DeleteGeoLocation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__DeleteGeoLocation(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__DeleteGeoLocation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__DeleteGeoLocation(soap, "tds:DeleteGeoLocation", &a->tds__DeleteGeoLocation, "")) - { soap_flag_tds__DeleteGeoLocation--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__DeleteGeoLocation * SOAP_FMAC2 soap_instantiate___tds__DeleteGeoLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__DeleteGeoLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__DeleteGeoLocation *p; - size_t k = sizeof(struct __tds__DeleteGeoLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__DeleteGeoLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__DeleteGeoLocation); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__DeleteGeoLocation, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__DeleteGeoLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteGeoLocation(struct soap *soap, const struct __tds__DeleteGeoLocation *a, const char *tag, const char *type) -{ - if (soap_out___tds__DeleteGeoLocation(soap, tag ? tag : "-tds:DeleteGeoLocation", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteGeoLocation * SOAP_FMAC4 soap_get___tds__DeleteGeoLocation(struct soap *soap, struct __tds__DeleteGeoLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__DeleteGeoLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetGeoLocation(struct soap *soap, struct __tds__SetGeoLocation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetGeoLocation = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetGeoLocation(struct soap *soap, const struct __tds__SetGeoLocation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetGeoLocation(soap, &a->tds__SetGeoLocation); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetGeoLocation(struct soap *soap, const char *tag, int id, const struct __tds__SetGeoLocation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetGeoLocation(soap, "tds:SetGeoLocation", -1, &a->tds__SetGeoLocation, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetGeoLocation * SOAP_FMAC4 soap_in___tds__SetGeoLocation(struct soap *soap, const char *tag, struct __tds__SetGeoLocation *a, const char *type) -{ - size_t soap_flag_tds__SetGeoLocation = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetGeoLocation*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetGeoLocation, sizeof(struct __tds__SetGeoLocation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetGeoLocation(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetGeoLocation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetGeoLocation(soap, "tds:SetGeoLocation", &a->tds__SetGeoLocation, "")) - { soap_flag_tds__SetGeoLocation--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetGeoLocation * SOAP_FMAC2 soap_instantiate___tds__SetGeoLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetGeoLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetGeoLocation *p; - size_t k = sizeof(struct __tds__SetGeoLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetGeoLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetGeoLocation); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetGeoLocation, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetGeoLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetGeoLocation(struct soap *soap, const struct __tds__SetGeoLocation *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetGeoLocation(soap, tag ? tag : "-tds:SetGeoLocation", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetGeoLocation * SOAP_FMAC4 soap_get___tds__SetGeoLocation(struct soap *soap, struct __tds__SetGeoLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetGeoLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetGeoLocation(struct soap *soap, struct __tds__GetGeoLocation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetGeoLocation = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetGeoLocation(struct soap *soap, const struct __tds__GetGeoLocation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetGeoLocation(soap, &a->tds__GetGeoLocation); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetGeoLocation(struct soap *soap, const char *tag, int id, const struct __tds__GetGeoLocation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetGeoLocation(soap, "tds:GetGeoLocation", -1, &a->tds__GetGeoLocation, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetGeoLocation * SOAP_FMAC4 soap_in___tds__GetGeoLocation(struct soap *soap, const char *tag, struct __tds__GetGeoLocation *a, const char *type) -{ - size_t soap_flag_tds__GetGeoLocation = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetGeoLocation*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetGeoLocation, sizeof(struct __tds__GetGeoLocation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetGeoLocation(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetGeoLocation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetGeoLocation(soap, "tds:GetGeoLocation", &a->tds__GetGeoLocation, "")) - { soap_flag_tds__GetGeoLocation--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetGeoLocation * SOAP_FMAC2 soap_instantiate___tds__GetGeoLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetGeoLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetGeoLocation *p; - size_t k = sizeof(struct __tds__GetGeoLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetGeoLocation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetGeoLocation); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetGeoLocation, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetGeoLocation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetGeoLocation(struct soap *soap, const struct __tds__GetGeoLocation *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetGeoLocation(soap, tag ? tag : "-tds:GetGeoLocation", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetGeoLocation * SOAP_FMAC4 soap_get___tds__GetGeoLocation(struct soap *soap, struct __tds__GetGeoLocation *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetGeoLocation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteStorageConfiguration(struct soap *soap, struct __tds__DeleteStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__DeleteStorageConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteStorageConfiguration(struct soap *soap, const struct __tds__DeleteStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__DeleteStorageConfiguration(soap, &a->tds__DeleteStorageConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteStorageConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__DeleteStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__DeleteStorageConfiguration(soap, "tds:DeleteStorageConfiguration", -1, &a->tds__DeleteStorageConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_in___tds__DeleteStorageConfiguration(struct soap *soap, const char *tag, struct __tds__DeleteStorageConfiguration *a, const char *type) -{ - size_t soap_flag_tds__DeleteStorageConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__DeleteStorageConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__DeleteStorageConfiguration, sizeof(struct __tds__DeleteStorageConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__DeleteStorageConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__DeleteStorageConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__DeleteStorageConfiguration(soap, "tds:DeleteStorageConfiguration", &a->tds__DeleteStorageConfiguration, "")) - { soap_flag_tds__DeleteStorageConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__DeleteStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__DeleteStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__DeleteStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__DeleteStorageConfiguration *p; - size_t k = sizeof(struct __tds__DeleteStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__DeleteStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__DeleteStorageConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__DeleteStorageConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__DeleteStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteStorageConfiguration(struct soap *soap, const struct __tds__DeleteStorageConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__DeleteStorageConfiguration(soap, tag ? tag : "-tds:DeleteStorageConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_get___tds__DeleteStorageConfiguration(struct soap *soap, struct __tds__DeleteStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__DeleteStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetStorageConfiguration(struct soap *soap, struct __tds__SetStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetStorageConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetStorageConfiguration(struct soap *soap, const struct __tds__SetStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetStorageConfiguration(soap, &a->tds__SetStorageConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetStorageConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__SetStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetStorageConfiguration(soap, "tds:SetStorageConfiguration", -1, &a->tds__SetStorageConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetStorageConfiguration * SOAP_FMAC4 soap_in___tds__SetStorageConfiguration(struct soap *soap, const char *tag, struct __tds__SetStorageConfiguration *a, const char *type) -{ - size_t soap_flag_tds__SetStorageConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetStorageConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetStorageConfiguration, sizeof(struct __tds__SetStorageConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetStorageConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetStorageConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetStorageConfiguration(soap, "tds:SetStorageConfiguration", &a->tds__SetStorageConfiguration, "")) - { soap_flag_tds__SetStorageConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__SetStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetStorageConfiguration *p; - size_t k = sizeof(struct __tds__SetStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetStorageConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetStorageConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetStorageConfiguration(struct soap *soap, const struct __tds__SetStorageConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetStorageConfiguration(soap, tag ? tag : "-tds:SetStorageConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetStorageConfiguration * SOAP_FMAC4 soap_get___tds__SetStorageConfiguration(struct soap *soap, struct __tds__SetStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetStorageConfiguration(struct soap *soap, struct __tds__GetStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetStorageConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetStorageConfiguration(struct soap *soap, const struct __tds__GetStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetStorageConfiguration(soap, &a->tds__GetStorageConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetStorageConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__GetStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetStorageConfiguration(soap, "tds:GetStorageConfiguration", -1, &a->tds__GetStorageConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetStorageConfiguration * SOAP_FMAC4 soap_in___tds__GetStorageConfiguration(struct soap *soap, const char *tag, struct __tds__GetStorageConfiguration *a, const char *type) -{ - size_t soap_flag_tds__GetStorageConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetStorageConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetStorageConfiguration, sizeof(struct __tds__GetStorageConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetStorageConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetStorageConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetStorageConfiguration(soap, "tds:GetStorageConfiguration", &a->tds__GetStorageConfiguration, "")) - { soap_flag_tds__GetStorageConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__GetStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetStorageConfiguration *p; - size_t k = sizeof(struct __tds__GetStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetStorageConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetStorageConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetStorageConfiguration(struct soap *soap, const struct __tds__GetStorageConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetStorageConfiguration(soap, tag ? tag : "-tds:GetStorageConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetStorageConfiguration * SOAP_FMAC4 soap_get___tds__GetStorageConfiguration(struct soap *soap, struct __tds__GetStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateStorageConfiguration(struct soap *soap, struct __tds__CreateStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__CreateStorageConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateStorageConfiguration(struct soap *soap, const struct __tds__CreateStorageConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__CreateStorageConfiguration(soap, &a->tds__CreateStorageConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateStorageConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__CreateStorageConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__CreateStorageConfiguration(soap, "tds:CreateStorageConfiguration", -1, &a->tds__CreateStorageConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateStorageConfiguration * SOAP_FMAC4 soap_in___tds__CreateStorageConfiguration(struct soap *soap, const char *tag, struct __tds__CreateStorageConfiguration *a, const char *type) -{ - size_t soap_flag_tds__CreateStorageConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__CreateStorageConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__CreateStorageConfiguration, sizeof(struct __tds__CreateStorageConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__CreateStorageConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__CreateStorageConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__CreateStorageConfiguration(soap, "tds:CreateStorageConfiguration", &a->tds__CreateStorageConfiguration, "")) - { soap_flag_tds__CreateStorageConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__CreateStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__CreateStorageConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__CreateStorageConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__CreateStorageConfiguration *p; - size_t k = sizeof(struct __tds__CreateStorageConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__CreateStorageConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__CreateStorageConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__CreateStorageConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__CreateStorageConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateStorageConfiguration(struct soap *soap, const struct __tds__CreateStorageConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__CreateStorageConfiguration(soap, tag ? tag : "-tds:CreateStorageConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateStorageConfiguration * SOAP_FMAC4 soap_get___tds__CreateStorageConfiguration(struct soap *soap, struct __tds__CreateStorageConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__CreateStorageConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetStorageConfigurations(struct soap *soap, struct __tds__GetStorageConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetStorageConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetStorageConfigurations(struct soap *soap, const struct __tds__GetStorageConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetStorageConfigurations(soap, &a->tds__GetStorageConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetStorageConfigurations(struct soap *soap, const char *tag, int id, const struct __tds__GetStorageConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetStorageConfigurations(soap, "tds:GetStorageConfigurations", -1, &a->tds__GetStorageConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetStorageConfigurations * SOAP_FMAC4 soap_in___tds__GetStorageConfigurations(struct soap *soap, const char *tag, struct __tds__GetStorageConfigurations *a, const char *type) -{ - size_t soap_flag_tds__GetStorageConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetStorageConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetStorageConfigurations, sizeof(struct __tds__GetStorageConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetStorageConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetStorageConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetStorageConfigurations(soap, "tds:GetStorageConfigurations", &a->tds__GetStorageConfigurations, "")) - { soap_flag_tds__GetStorageConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetStorageConfigurations * SOAP_FMAC2 soap_instantiate___tds__GetStorageConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetStorageConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetStorageConfigurations *p; - size_t k = sizeof(struct __tds__GetStorageConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetStorageConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetStorageConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetStorageConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetStorageConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetStorageConfigurations(struct soap *soap, const struct __tds__GetStorageConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetStorageConfigurations(soap, tag ? tag : "-tds:GetStorageConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetStorageConfigurations * SOAP_FMAC4 soap_get___tds__GetStorageConfigurations(struct soap *soap, struct __tds__GetStorageConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetStorageConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__StartSystemRestore(struct soap *soap, struct __tds__StartSystemRestore *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__StartSystemRestore = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__StartSystemRestore(struct soap *soap, const struct __tds__StartSystemRestore *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__StartSystemRestore(soap, &a->tds__StartSystemRestore); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__StartSystemRestore(struct soap *soap, const char *tag, int id, const struct __tds__StartSystemRestore *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__StartSystemRestore(soap, "tds:StartSystemRestore", -1, &a->tds__StartSystemRestore, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__StartSystemRestore * SOAP_FMAC4 soap_in___tds__StartSystemRestore(struct soap *soap, const char *tag, struct __tds__StartSystemRestore *a, const char *type) -{ - size_t soap_flag_tds__StartSystemRestore = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__StartSystemRestore*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__StartSystemRestore, sizeof(struct __tds__StartSystemRestore), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__StartSystemRestore(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__StartSystemRestore && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__StartSystemRestore(soap, "tds:StartSystemRestore", &a->tds__StartSystemRestore, "")) - { soap_flag_tds__StartSystemRestore--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__StartSystemRestore * SOAP_FMAC2 soap_instantiate___tds__StartSystemRestore(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__StartSystemRestore(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__StartSystemRestore *p; - size_t k = sizeof(struct __tds__StartSystemRestore); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__StartSystemRestore, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__StartSystemRestore); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__StartSystemRestore, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__StartSystemRestore location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__StartSystemRestore(struct soap *soap, const struct __tds__StartSystemRestore *a, const char *tag, const char *type) -{ - if (soap_out___tds__StartSystemRestore(soap, tag ? tag : "-tds:StartSystemRestore", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__StartSystemRestore * SOAP_FMAC4 soap_get___tds__StartSystemRestore(struct soap *soap, struct __tds__StartSystemRestore *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__StartSystemRestore(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__StartFirmwareUpgrade(struct soap *soap, struct __tds__StartFirmwareUpgrade *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__StartFirmwareUpgrade = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__StartFirmwareUpgrade(struct soap *soap, const struct __tds__StartFirmwareUpgrade *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__StartFirmwareUpgrade(soap, &a->tds__StartFirmwareUpgrade); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__StartFirmwareUpgrade(struct soap *soap, const char *tag, int id, const struct __tds__StartFirmwareUpgrade *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__StartFirmwareUpgrade(soap, "tds:StartFirmwareUpgrade", -1, &a->tds__StartFirmwareUpgrade, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_in___tds__StartFirmwareUpgrade(struct soap *soap, const char *tag, struct __tds__StartFirmwareUpgrade *a, const char *type) -{ - size_t soap_flag_tds__StartFirmwareUpgrade = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__StartFirmwareUpgrade*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__StartFirmwareUpgrade, sizeof(struct __tds__StartFirmwareUpgrade), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__StartFirmwareUpgrade(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__StartFirmwareUpgrade && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__StartFirmwareUpgrade(soap, "tds:StartFirmwareUpgrade", &a->tds__StartFirmwareUpgrade, "")) - { soap_flag_tds__StartFirmwareUpgrade--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__StartFirmwareUpgrade * SOAP_FMAC2 soap_instantiate___tds__StartFirmwareUpgrade(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__StartFirmwareUpgrade(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__StartFirmwareUpgrade *p; - size_t k = sizeof(struct __tds__StartFirmwareUpgrade); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__StartFirmwareUpgrade, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__StartFirmwareUpgrade); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__StartFirmwareUpgrade, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__StartFirmwareUpgrade location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__StartFirmwareUpgrade(struct soap *soap, const struct __tds__StartFirmwareUpgrade *a, const char *tag, const char *type) -{ - if (soap_out___tds__StartFirmwareUpgrade(soap, tag ? tag : "-tds:StartFirmwareUpgrade", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_get___tds__StartFirmwareUpgrade(struct soap *soap, struct __tds__StartFirmwareUpgrade *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__StartFirmwareUpgrade(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemUris(struct soap *soap, struct __tds__GetSystemUris *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetSystemUris = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemUris(struct soap *soap, const struct __tds__GetSystemUris *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetSystemUris(soap, &a->tds__GetSystemUris); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemUris(struct soap *soap, const char *tag, int id, const struct __tds__GetSystemUris *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetSystemUris(soap, "tds:GetSystemUris", -1, &a->tds__GetSystemUris, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemUris * SOAP_FMAC4 soap_in___tds__GetSystemUris(struct soap *soap, const char *tag, struct __tds__GetSystemUris *a, const char *type) -{ - size_t soap_flag_tds__GetSystemUris = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetSystemUris*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetSystemUris, sizeof(struct __tds__GetSystemUris), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetSystemUris(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetSystemUris && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetSystemUris(soap, "tds:GetSystemUris", &a->tds__GetSystemUris, "")) - { soap_flag_tds__GetSystemUris--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetSystemUris * SOAP_FMAC2 soap_instantiate___tds__GetSystemUris(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetSystemUris(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetSystemUris *p; - size_t k = sizeof(struct __tds__GetSystemUris); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetSystemUris, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetSystemUris); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetSystemUris, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetSystemUris location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemUris(struct soap *soap, const struct __tds__GetSystemUris *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetSystemUris(soap, tag ? tag : "-tds:GetSystemUris", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemUris * SOAP_FMAC4 soap_get___tds__GetSystemUris(struct soap *soap, struct __tds__GetSystemUris *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetSystemUris(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__ScanAvailableDot11Networks(struct soap *soap, struct __tds__ScanAvailableDot11Networks *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__ScanAvailableDot11Networks = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__ScanAvailableDot11Networks(struct soap *soap, const struct __tds__ScanAvailableDot11Networks *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__ScanAvailableDot11Networks(soap, &a->tds__ScanAvailableDot11Networks); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__ScanAvailableDot11Networks(struct soap *soap, const char *tag, int id, const struct __tds__ScanAvailableDot11Networks *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__ScanAvailableDot11Networks(soap, "tds:ScanAvailableDot11Networks", -1, &a->tds__ScanAvailableDot11Networks, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_in___tds__ScanAvailableDot11Networks(struct soap *soap, const char *tag, struct __tds__ScanAvailableDot11Networks *a, const char *type) -{ - size_t soap_flag_tds__ScanAvailableDot11Networks = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__ScanAvailableDot11Networks*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__ScanAvailableDot11Networks, sizeof(struct __tds__ScanAvailableDot11Networks), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__ScanAvailableDot11Networks(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__ScanAvailableDot11Networks && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__ScanAvailableDot11Networks(soap, "tds:ScanAvailableDot11Networks", &a->tds__ScanAvailableDot11Networks, "")) - { soap_flag_tds__ScanAvailableDot11Networks--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__ScanAvailableDot11Networks * SOAP_FMAC2 soap_instantiate___tds__ScanAvailableDot11Networks(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__ScanAvailableDot11Networks(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__ScanAvailableDot11Networks *p; - size_t k = sizeof(struct __tds__ScanAvailableDot11Networks); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__ScanAvailableDot11Networks, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__ScanAvailableDot11Networks); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__ScanAvailableDot11Networks, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__ScanAvailableDot11Networks location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__ScanAvailableDot11Networks(struct soap *soap, const struct __tds__ScanAvailableDot11Networks *a, const char *tag, const char *type) -{ - if (soap_out___tds__ScanAvailableDot11Networks(soap, tag ? tag : "-tds:ScanAvailableDot11Networks", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_get___tds__ScanAvailableDot11Networks(struct soap *soap, struct __tds__ScanAvailableDot11Networks *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__ScanAvailableDot11Networks(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot11Status(struct soap *soap, struct __tds__GetDot11Status *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDot11Status = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot11Status(struct soap *soap, const struct __tds__GetDot11Status *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDot11Status(soap, &a->tds__GetDot11Status); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot11Status(struct soap *soap, const char *tag, int id, const struct __tds__GetDot11Status *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDot11Status(soap, "tds:GetDot11Status", -1, &a->tds__GetDot11Status, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot11Status * SOAP_FMAC4 soap_in___tds__GetDot11Status(struct soap *soap, const char *tag, struct __tds__GetDot11Status *a, const char *type) -{ - size_t soap_flag_tds__GetDot11Status = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDot11Status*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDot11Status, sizeof(struct __tds__GetDot11Status), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDot11Status(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDot11Status && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDot11Status(soap, "tds:GetDot11Status", &a->tds__GetDot11Status, "")) - { soap_flag_tds__GetDot11Status--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDot11Status * SOAP_FMAC2 soap_instantiate___tds__GetDot11Status(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDot11Status(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDot11Status *p; - size_t k = sizeof(struct __tds__GetDot11Status); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDot11Status, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDot11Status); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDot11Status, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDot11Status location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot11Status(struct soap *soap, const struct __tds__GetDot11Status *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDot11Status(soap, tag ? tag : "-tds:GetDot11Status", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot11Status * SOAP_FMAC4 soap_get___tds__GetDot11Status(struct soap *soap, struct __tds__GetDot11Status *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDot11Status(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot11Capabilities(struct soap *soap, struct __tds__GetDot11Capabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDot11Capabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot11Capabilities(struct soap *soap, const struct __tds__GetDot11Capabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDot11Capabilities(soap, &a->tds__GetDot11Capabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot11Capabilities(struct soap *soap, const char *tag, int id, const struct __tds__GetDot11Capabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDot11Capabilities(soap, "tds:GetDot11Capabilities", -1, &a->tds__GetDot11Capabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot11Capabilities * SOAP_FMAC4 soap_in___tds__GetDot11Capabilities(struct soap *soap, const char *tag, struct __tds__GetDot11Capabilities *a, const char *type) -{ - size_t soap_flag_tds__GetDot11Capabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDot11Capabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDot11Capabilities, sizeof(struct __tds__GetDot11Capabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDot11Capabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDot11Capabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDot11Capabilities(soap, "tds:GetDot11Capabilities", &a->tds__GetDot11Capabilities, "")) - { soap_flag_tds__GetDot11Capabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDot11Capabilities * SOAP_FMAC2 soap_instantiate___tds__GetDot11Capabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDot11Capabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDot11Capabilities *p; - size_t k = sizeof(struct __tds__GetDot11Capabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDot11Capabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDot11Capabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDot11Capabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDot11Capabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot11Capabilities(struct soap *soap, const struct __tds__GetDot11Capabilities *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDot11Capabilities(soap, tag ? tag : "-tds:GetDot11Capabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot11Capabilities * SOAP_FMAC4 soap_get___tds__GetDot11Capabilities(struct soap *soap, struct __tds__GetDot11Capabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDot11Capabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteDot1XConfiguration(struct soap *soap, struct __tds__DeleteDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__DeleteDot1XConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteDot1XConfiguration(struct soap *soap, const struct __tds__DeleteDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__DeleteDot1XConfiguration(soap, &a->tds__DeleteDot1XConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteDot1XConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__DeleteDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__DeleteDot1XConfiguration(soap, "tds:DeleteDot1XConfiguration", -1, &a->tds__DeleteDot1XConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_in___tds__DeleteDot1XConfiguration(struct soap *soap, const char *tag, struct __tds__DeleteDot1XConfiguration *a, const char *type) -{ - size_t soap_flag_tds__DeleteDot1XConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__DeleteDot1XConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__DeleteDot1XConfiguration, sizeof(struct __tds__DeleteDot1XConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__DeleteDot1XConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__DeleteDot1XConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__DeleteDot1XConfiguration(soap, "tds:DeleteDot1XConfiguration", &a->tds__DeleteDot1XConfiguration, "")) - { soap_flag_tds__DeleteDot1XConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__DeleteDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__DeleteDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__DeleteDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__DeleteDot1XConfiguration *p; - size_t k = sizeof(struct __tds__DeleteDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__DeleteDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__DeleteDot1XConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__DeleteDot1XConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__DeleteDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteDot1XConfiguration(struct soap *soap, const struct __tds__DeleteDot1XConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__DeleteDot1XConfiguration(soap, tag ? tag : "-tds:DeleteDot1XConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_get___tds__DeleteDot1XConfiguration(struct soap *soap, struct __tds__DeleteDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__DeleteDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot1XConfigurations(struct soap *soap, struct __tds__GetDot1XConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDot1XConfigurations = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot1XConfigurations(struct soap *soap, const struct __tds__GetDot1XConfigurations *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDot1XConfigurations(soap, &a->tds__GetDot1XConfigurations); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot1XConfigurations(struct soap *soap, const char *tag, int id, const struct __tds__GetDot1XConfigurations *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDot1XConfigurations(soap, "tds:GetDot1XConfigurations", -1, &a->tds__GetDot1XConfigurations, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot1XConfigurations * SOAP_FMAC4 soap_in___tds__GetDot1XConfigurations(struct soap *soap, const char *tag, struct __tds__GetDot1XConfigurations *a, const char *type) -{ - size_t soap_flag_tds__GetDot1XConfigurations = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDot1XConfigurations*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDot1XConfigurations, sizeof(struct __tds__GetDot1XConfigurations), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDot1XConfigurations(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDot1XConfigurations && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDot1XConfigurations(soap, "tds:GetDot1XConfigurations", &a->tds__GetDot1XConfigurations, "")) - { soap_flag_tds__GetDot1XConfigurations--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDot1XConfigurations * SOAP_FMAC2 soap_instantiate___tds__GetDot1XConfigurations(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDot1XConfigurations(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDot1XConfigurations *p; - size_t k = sizeof(struct __tds__GetDot1XConfigurations); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDot1XConfigurations, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDot1XConfigurations); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDot1XConfigurations, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDot1XConfigurations location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot1XConfigurations(struct soap *soap, const struct __tds__GetDot1XConfigurations *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDot1XConfigurations(soap, tag ? tag : "-tds:GetDot1XConfigurations", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot1XConfigurations * SOAP_FMAC4 soap_get___tds__GetDot1XConfigurations(struct soap *soap, struct __tds__GetDot1XConfigurations *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDot1XConfigurations(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot1XConfiguration(struct soap *soap, struct __tds__GetDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDot1XConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot1XConfiguration(struct soap *soap, const struct __tds__GetDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDot1XConfiguration(soap, &a->tds__GetDot1XConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot1XConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__GetDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDot1XConfiguration(soap, "tds:GetDot1XConfiguration", -1, &a->tds__GetDot1XConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot1XConfiguration * SOAP_FMAC4 soap_in___tds__GetDot1XConfiguration(struct soap *soap, const char *tag, struct __tds__GetDot1XConfiguration *a, const char *type) -{ - size_t soap_flag_tds__GetDot1XConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDot1XConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDot1XConfiguration, sizeof(struct __tds__GetDot1XConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDot1XConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDot1XConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDot1XConfiguration(soap, "tds:GetDot1XConfiguration", &a->tds__GetDot1XConfiguration, "")) - { soap_flag_tds__GetDot1XConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__GetDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDot1XConfiguration *p; - size_t k = sizeof(struct __tds__GetDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDot1XConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDot1XConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot1XConfiguration(struct soap *soap, const struct __tds__GetDot1XConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDot1XConfiguration(soap, tag ? tag : "-tds:GetDot1XConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDot1XConfiguration * SOAP_FMAC4 soap_get___tds__GetDot1XConfiguration(struct soap *soap, struct __tds__GetDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDot1XConfiguration(struct soap *soap, struct __tds__SetDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetDot1XConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDot1XConfiguration(struct soap *soap, const struct __tds__SetDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetDot1XConfiguration(soap, &a->tds__SetDot1XConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDot1XConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__SetDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetDot1XConfiguration(soap, "tds:SetDot1XConfiguration", -1, &a->tds__SetDot1XConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDot1XConfiguration * SOAP_FMAC4 soap_in___tds__SetDot1XConfiguration(struct soap *soap, const char *tag, struct __tds__SetDot1XConfiguration *a, const char *type) -{ - size_t soap_flag_tds__SetDot1XConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetDot1XConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetDot1XConfiguration, sizeof(struct __tds__SetDot1XConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetDot1XConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetDot1XConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetDot1XConfiguration(soap, "tds:SetDot1XConfiguration", &a->tds__SetDot1XConfiguration, "")) - { soap_flag_tds__SetDot1XConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__SetDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetDot1XConfiguration *p; - size_t k = sizeof(struct __tds__SetDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetDot1XConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetDot1XConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDot1XConfiguration(struct soap *soap, const struct __tds__SetDot1XConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetDot1XConfiguration(soap, tag ? tag : "-tds:SetDot1XConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDot1XConfiguration * SOAP_FMAC4 soap_get___tds__SetDot1XConfiguration(struct soap *soap, struct __tds__SetDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateDot1XConfiguration(struct soap *soap, struct __tds__CreateDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__CreateDot1XConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateDot1XConfiguration(struct soap *soap, const struct __tds__CreateDot1XConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__CreateDot1XConfiguration(soap, &a->tds__CreateDot1XConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateDot1XConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__CreateDot1XConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__CreateDot1XConfiguration(soap, "tds:CreateDot1XConfiguration", -1, &a->tds__CreateDot1XConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_in___tds__CreateDot1XConfiguration(struct soap *soap, const char *tag, struct __tds__CreateDot1XConfiguration *a, const char *type) -{ - size_t soap_flag_tds__CreateDot1XConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__CreateDot1XConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__CreateDot1XConfiguration, sizeof(struct __tds__CreateDot1XConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__CreateDot1XConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__CreateDot1XConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__CreateDot1XConfiguration(soap, "tds:CreateDot1XConfiguration", &a->tds__CreateDot1XConfiguration, "")) - { soap_flag_tds__CreateDot1XConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__CreateDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__CreateDot1XConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__CreateDot1XConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__CreateDot1XConfiguration *p; - size_t k = sizeof(struct __tds__CreateDot1XConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__CreateDot1XConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__CreateDot1XConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__CreateDot1XConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__CreateDot1XConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateDot1XConfiguration(struct soap *soap, const struct __tds__CreateDot1XConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__CreateDot1XConfiguration(soap, tag ? tag : "-tds:CreateDot1XConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_get___tds__CreateDot1XConfiguration(struct soap *soap, struct __tds__CreateDot1XConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__CreateDot1XConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__LoadCACertificates(struct soap *soap, struct __tds__LoadCACertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__LoadCACertificates = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__LoadCACertificates(struct soap *soap, const struct __tds__LoadCACertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__LoadCACertificates(soap, &a->tds__LoadCACertificates); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__LoadCACertificates(struct soap *soap, const char *tag, int id, const struct __tds__LoadCACertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__LoadCACertificates(soap, "tds:LoadCACertificates", -1, &a->tds__LoadCACertificates, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__LoadCACertificates * SOAP_FMAC4 soap_in___tds__LoadCACertificates(struct soap *soap, const char *tag, struct __tds__LoadCACertificates *a, const char *type) -{ - size_t soap_flag_tds__LoadCACertificates = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__LoadCACertificates*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__LoadCACertificates, sizeof(struct __tds__LoadCACertificates), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__LoadCACertificates(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__LoadCACertificates && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__LoadCACertificates(soap, "tds:LoadCACertificates", &a->tds__LoadCACertificates, "")) - { soap_flag_tds__LoadCACertificates--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__LoadCACertificates * SOAP_FMAC2 soap_instantiate___tds__LoadCACertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__LoadCACertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__LoadCACertificates *p; - size_t k = sizeof(struct __tds__LoadCACertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__LoadCACertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__LoadCACertificates); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__LoadCACertificates, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__LoadCACertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__LoadCACertificates(struct soap *soap, const struct __tds__LoadCACertificates *a, const char *tag, const char *type) -{ - if (soap_out___tds__LoadCACertificates(soap, tag ? tag : "-tds:LoadCACertificates", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__LoadCACertificates * SOAP_FMAC4 soap_get___tds__LoadCACertificates(struct soap *soap, struct __tds__LoadCACertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__LoadCACertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCertificateInformation(struct soap *soap, struct __tds__GetCertificateInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetCertificateInformation = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCertificateInformation(struct soap *soap, const struct __tds__GetCertificateInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetCertificateInformation(soap, &a->tds__GetCertificateInformation); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCertificateInformation(struct soap *soap, const char *tag, int id, const struct __tds__GetCertificateInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetCertificateInformation(soap, "tds:GetCertificateInformation", -1, &a->tds__GetCertificateInformation, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCertificateInformation * SOAP_FMAC4 soap_in___tds__GetCertificateInformation(struct soap *soap, const char *tag, struct __tds__GetCertificateInformation *a, const char *type) -{ - size_t soap_flag_tds__GetCertificateInformation = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetCertificateInformation*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetCertificateInformation, sizeof(struct __tds__GetCertificateInformation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetCertificateInformation(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetCertificateInformation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetCertificateInformation(soap, "tds:GetCertificateInformation", &a->tds__GetCertificateInformation, "")) - { soap_flag_tds__GetCertificateInformation--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetCertificateInformation * SOAP_FMAC2 soap_instantiate___tds__GetCertificateInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetCertificateInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetCertificateInformation *p; - size_t k = sizeof(struct __tds__GetCertificateInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetCertificateInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetCertificateInformation); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetCertificateInformation, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetCertificateInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCertificateInformation(struct soap *soap, const struct __tds__GetCertificateInformation *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetCertificateInformation(soap, tag ? tag : "-tds:GetCertificateInformation", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCertificateInformation * SOAP_FMAC4 soap_get___tds__GetCertificateInformation(struct soap *soap, struct __tds__GetCertificateInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetCertificateInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__LoadCertificateWithPrivateKey(struct soap *soap, struct __tds__LoadCertificateWithPrivateKey *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__LoadCertificateWithPrivateKey = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__LoadCertificateWithPrivateKey(struct soap *soap, const struct __tds__LoadCertificateWithPrivateKey *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__LoadCertificateWithPrivateKey(soap, &a->tds__LoadCertificateWithPrivateKey); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *tag, int id, const struct __tds__LoadCertificateWithPrivateKey *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__LoadCertificateWithPrivateKey(soap, "tds:LoadCertificateWithPrivateKey", -1, &a->tds__LoadCertificateWithPrivateKey, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_in___tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *tag, struct __tds__LoadCertificateWithPrivateKey *a, const char *type) -{ - size_t soap_flag_tds__LoadCertificateWithPrivateKey = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__LoadCertificateWithPrivateKey*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__LoadCertificateWithPrivateKey, sizeof(struct __tds__LoadCertificateWithPrivateKey), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__LoadCertificateWithPrivateKey(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__LoadCertificateWithPrivateKey && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__LoadCertificateWithPrivateKey(soap, "tds:LoadCertificateWithPrivateKey", &a->tds__LoadCertificateWithPrivateKey, "")) - { soap_flag_tds__LoadCertificateWithPrivateKey--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__LoadCertificateWithPrivateKey * SOAP_FMAC2 soap_instantiate___tds__LoadCertificateWithPrivateKey(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__LoadCertificateWithPrivateKey(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__LoadCertificateWithPrivateKey *p; - size_t k = sizeof(struct __tds__LoadCertificateWithPrivateKey); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__LoadCertificateWithPrivateKey, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__LoadCertificateWithPrivateKey); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__LoadCertificateWithPrivateKey, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__LoadCertificateWithPrivateKey location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__LoadCertificateWithPrivateKey(struct soap *soap, const struct __tds__LoadCertificateWithPrivateKey *a, const char *tag, const char *type) -{ - if (soap_out___tds__LoadCertificateWithPrivateKey(soap, tag ? tag : "-tds:LoadCertificateWithPrivateKey", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_get___tds__LoadCertificateWithPrivateKey(struct soap *soap, struct __tds__LoadCertificateWithPrivateKey *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__LoadCertificateWithPrivateKey(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCACertificates(struct soap *soap, struct __tds__GetCACertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetCACertificates = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCACertificates(struct soap *soap, const struct __tds__GetCACertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetCACertificates(soap, &a->tds__GetCACertificates); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCACertificates(struct soap *soap, const char *tag, int id, const struct __tds__GetCACertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetCACertificates(soap, "tds:GetCACertificates", -1, &a->tds__GetCACertificates, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCACertificates * SOAP_FMAC4 soap_in___tds__GetCACertificates(struct soap *soap, const char *tag, struct __tds__GetCACertificates *a, const char *type) -{ - size_t soap_flag_tds__GetCACertificates = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetCACertificates*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetCACertificates, sizeof(struct __tds__GetCACertificates), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetCACertificates(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetCACertificates && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetCACertificates(soap, "tds:GetCACertificates", &a->tds__GetCACertificates, "")) - { soap_flag_tds__GetCACertificates--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetCACertificates * SOAP_FMAC2 soap_instantiate___tds__GetCACertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetCACertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetCACertificates *p; - size_t k = sizeof(struct __tds__GetCACertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetCACertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetCACertificates); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetCACertificates, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetCACertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCACertificates(struct soap *soap, const struct __tds__GetCACertificates *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetCACertificates(soap, tag ? tag : "-tds:GetCACertificates", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCACertificates * SOAP_FMAC4 soap_get___tds__GetCACertificates(struct soap *soap, struct __tds__GetCACertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetCACertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SendAuxiliaryCommand(struct soap *soap, struct __tds__SendAuxiliaryCommand *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SendAuxiliaryCommand = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SendAuxiliaryCommand(struct soap *soap, const struct __tds__SendAuxiliaryCommand *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SendAuxiliaryCommand(soap, &a->tds__SendAuxiliaryCommand); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SendAuxiliaryCommand(struct soap *soap, const char *tag, int id, const struct __tds__SendAuxiliaryCommand *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SendAuxiliaryCommand(soap, "tds:SendAuxiliaryCommand", -1, &a->tds__SendAuxiliaryCommand, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_in___tds__SendAuxiliaryCommand(struct soap *soap, const char *tag, struct __tds__SendAuxiliaryCommand *a, const char *type) -{ - size_t soap_flag_tds__SendAuxiliaryCommand = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SendAuxiliaryCommand*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SendAuxiliaryCommand, sizeof(struct __tds__SendAuxiliaryCommand), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SendAuxiliaryCommand(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SendAuxiliaryCommand && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SendAuxiliaryCommand(soap, "tds:SendAuxiliaryCommand", &a->tds__SendAuxiliaryCommand, "")) - { soap_flag_tds__SendAuxiliaryCommand--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate___tds__SendAuxiliaryCommand(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SendAuxiliaryCommand(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SendAuxiliaryCommand *p; - size_t k = sizeof(struct __tds__SendAuxiliaryCommand); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SendAuxiliaryCommand, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SendAuxiliaryCommand); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SendAuxiliaryCommand, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SendAuxiliaryCommand location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SendAuxiliaryCommand(struct soap *soap, const struct __tds__SendAuxiliaryCommand *a, const char *tag, const char *type) -{ - if (soap_out___tds__SendAuxiliaryCommand(soap, tag ? tag : "-tds:SendAuxiliaryCommand", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_get___tds__SendAuxiliaryCommand(struct soap *soap, struct __tds__SendAuxiliaryCommand *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SendAuxiliaryCommand(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRelayOutputState(struct soap *soap, struct __tds__SetRelayOutputState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetRelayOutputState = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRelayOutputState(struct soap *soap, const struct __tds__SetRelayOutputState *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetRelayOutputState(soap, &a->tds__SetRelayOutputState); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRelayOutputState(struct soap *soap, const char *tag, int id, const struct __tds__SetRelayOutputState *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetRelayOutputState(soap, "tds:SetRelayOutputState", -1, &a->tds__SetRelayOutputState, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRelayOutputState * SOAP_FMAC4 soap_in___tds__SetRelayOutputState(struct soap *soap, const char *tag, struct __tds__SetRelayOutputState *a, const char *type) -{ - size_t soap_flag_tds__SetRelayOutputState = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetRelayOutputState*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetRelayOutputState, sizeof(struct __tds__SetRelayOutputState), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetRelayOutputState(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetRelayOutputState && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetRelayOutputState(soap, "tds:SetRelayOutputState", &a->tds__SetRelayOutputState, "")) - { soap_flag_tds__SetRelayOutputState--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetRelayOutputState * SOAP_FMAC2 soap_instantiate___tds__SetRelayOutputState(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetRelayOutputState(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetRelayOutputState *p; - size_t k = sizeof(struct __tds__SetRelayOutputState); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetRelayOutputState, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetRelayOutputState); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetRelayOutputState, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetRelayOutputState location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRelayOutputState(struct soap *soap, const struct __tds__SetRelayOutputState *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetRelayOutputState(soap, tag ? tag : "-tds:SetRelayOutputState", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRelayOutputState * SOAP_FMAC4 soap_get___tds__SetRelayOutputState(struct soap *soap, struct __tds__SetRelayOutputState *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetRelayOutputState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRelayOutputSettings(struct soap *soap, struct __tds__SetRelayOutputSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetRelayOutputSettings = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRelayOutputSettings(struct soap *soap, const struct __tds__SetRelayOutputSettings *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetRelayOutputSettings(soap, &a->tds__SetRelayOutputSettings); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRelayOutputSettings(struct soap *soap, const char *tag, int id, const struct __tds__SetRelayOutputSettings *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetRelayOutputSettings(soap, "tds:SetRelayOutputSettings", -1, &a->tds__SetRelayOutputSettings, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRelayOutputSettings * SOAP_FMAC4 soap_in___tds__SetRelayOutputSettings(struct soap *soap, const char *tag, struct __tds__SetRelayOutputSettings *a, const char *type) -{ - size_t soap_flag_tds__SetRelayOutputSettings = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetRelayOutputSettings*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetRelayOutputSettings, sizeof(struct __tds__SetRelayOutputSettings), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetRelayOutputSettings(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetRelayOutputSettings && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetRelayOutputSettings(soap, "tds:SetRelayOutputSettings", &a->tds__SetRelayOutputSettings, "")) - { soap_flag_tds__SetRelayOutputSettings--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate___tds__SetRelayOutputSettings(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetRelayOutputSettings(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetRelayOutputSettings *p; - size_t k = sizeof(struct __tds__SetRelayOutputSettings); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetRelayOutputSettings, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetRelayOutputSettings); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetRelayOutputSettings, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetRelayOutputSettings location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRelayOutputSettings(struct soap *soap, const struct __tds__SetRelayOutputSettings *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetRelayOutputSettings(soap, tag ? tag : "-tds:SetRelayOutputSettings", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRelayOutputSettings * SOAP_FMAC4 soap_get___tds__SetRelayOutputSettings(struct soap *soap, struct __tds__SetRelayOutputSettings *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetRelayOutputSettings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetRelayOutputs(struct soap *soap, struct __tds__GetRelayOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetRelayOutputs = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetRelayOutputs(struct soap *soap, const struct __tds__GetRelayOutputs *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetRelayOutputs(soap, &a->tds__GetRelayOutputs); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetRelayOutputs(struct soap *soap, const char *tag, int id, const struct __tds__GetRelayOutputs *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetRelayOutputs(soap, "tds:GetRelayOutputs", -1, &a->tds__GetRelayOutputs, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetRelayOutputs * SOAP_FMAC4 soap_in___tds__GetRelayOutputs(struct soap *soap, const char *tag, struct __tds__GetRelayOutputs *a, const char *type) -{ - size_t soap_flag_tds__GetRelayOutputs = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetRelayOutputs*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetRelayOutputs, sizeof(struct __tds__GetRelayOutputs), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetRelayOutputs(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetRelayOutputs && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetRelayOutputs(soap, "tds:GetRelayOutputs", &a->tds__GetRelayOutputs, "")) - { soap_flag_tds__GetRelayOutputs--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetRelayOutputs * SOAP_FMAC2 soap_instantiate___tds__GetRelayOutputs(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetRelayOutputs(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetRelayOutputs *p; - size_t k = sizeof(struct __tds__GetRelayOutputs); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetRelayOutputs, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetRelayOutputs); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetRelayOutputs, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetRelayOutputs location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetRelayOutputs(struct soap *soap, const struct __tds__GetRelayOutputs *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetRelayOutputs(soap, tag ? tag : "-tds:GetRelayOutputs", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetRelayOutputs * SOAP_FMAC4 soap_get___tds__GetRelayOutputs(struct soap *soap, struct __tds__GetRelayOutputs *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetRelayOutputs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetClientCertificateMode(struct soap *soap, struct __tds__SetClientCertificateMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetClientCertificateMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetClientCertificateMode(struct soap *soap, const struct __tds__SetClientCertificateMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetClientCertificateMode(soap, &a->tds__SetClientCertificateMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetClientCertificateMode(struct soap *soap, const char *tag, int id, const struct __tds__SetClientCertificateMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetClientCertificateMode(soap, "tds:SetClientCertificateMode", -1, &a->tds__SetClientCertificateMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetClientCertificateMode * SOAP_FMAC4 soap_in___tds__SetClientCertificateMode(struct soap *soap, const char *tag, struct __tds__SetClientCertificateMode *a, const char *type) -{ - size_t soap_flag_tds__SetClientCertificateMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetClientCertificateMode*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetClientCertificateMode, sizeof(struct __tds__SetClientCertificateMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetClientCertificateMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetClientCertificateMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetClientCertificateMode(soap, "tds:SetClientCertificateMode", &a->tds__SetClientCertificateMode, "")) - { soap_flag_tds__SetClientCertificateMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetClientCertificateMode * SOAP_FMAC2 soap_instantiate___tds__SetClientCertificateMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetClientCertificateMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetClientCertificateMode *p; - size_t k = sizeof(struct __tds__SetClientCertificateMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetClientCertificateMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetClientCertificateMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetClientCertificateMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetClientCertificateMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetClientCertificateMode(struct soap *soap, const struct __tds__SetClientCertificateMode *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetClientCertificateMode(soap, tag ? tag : "-tds:SetClientCertificateMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetClientCertificateMode * SOAP_FMAC4 soap_get___tds__SetClientCertificateMode(struct soap *soap, struct __tds__SetClientCertificateMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetClientCertificateMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetClientCertificateMode(struct soap *soap, struct __tds__GetClientCertificateMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetClientCertificateMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetClientCertificateMode(struct soap *soap, const struct __tds__GetClientCertificateMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetClientCertificateMode(soap, &a->tds__GetClientCertificateMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetClientCertificateMode(struct soap *soap, const char *tag, int id, const struct __tds__GetClientCertificateMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetClientCertificateMode(soap, "tds:GetClientCertificateMode", -1, &a->tds__GetClientCertificateMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetClientCertificateMode * SOAP_FMAC4 soap_in___tds__GetClientCertificateMode(struct soap *soap, const char *tag, struct __tds__GetClientCertificateMode *a, const char *type) -{ - size_t soap_flag_tds__GetClientCertificateMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetClientCertificateMode*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetClientCertificateMode, sizeof(struct __tds__GetClientCertificateMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetClientCertificateMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetClientCertificateMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetClientCertificateMode(soap, "tds:GetClientCertificateMode", &a->tds__GetClientCertificateMode, "")) - { soap_flag_tds__GetClientCertificateMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetClientCertificateMode * SOAP_FMAC2 soap_instantiate___tds__GetClientCertificateMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetClientCertificateMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetClientCertificateMode *p; - size_t k = sizeof(struct __tds__GetClientCertificateMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetClientCertificateMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetClientCertificateMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetClientCertificateMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetClientCertificateMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetClientCertificateMode(struct soap *soap, const struct __tds__GetClientCertificateMode *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetClientCertificateMode(soap, tag ? tag : "-tds:GetClientCertificateMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetClientCertificateMode * SOAP_FMAC4 soap_get___tds__GetClientCertificateMode(struct soap *soap, struct __tds__GetClientCertificateMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetClientCertificateMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__LoadCertificates(struct soap *soap, struct __tds__LoadCertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__LoadCertificates = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__LoadCertificates(struct soap *soap, const struct __tds__LoadCertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__LoadCertificates(soap, &a->tds__LoadCertificates); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__LoadCertificates(struct soap *soap, const char *tag, int id, const struct __tds__LoadCertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__LoadCertificates(soap, "tds:LoadCertificates", -1, &a->tds__LoadCertificates, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__LoadCertificates * SOAP_FMAC4 soap_in___tds__LoadCertificates(struct soap *soap, const char *tag, struct __tds__LoadCertificates *a, const char *type) -{ - size_t soap_flag_tds__LoadCertificates = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__LoadCertificates*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__LoadCertificates, sizeof(struct __tds__LoadCertificates), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__LoadCertificates(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__LoadCertificates && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__LoadCertificates(soap, "tds:LoadCertificates", &a->tds__LoadCertificates, "")) - { soap_flag_tds__LoadCertificates--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__LoadCertificates * SOAP_FMAC2 soap_instantiate___tds__LoadCertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__LoadCertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__LoadCertificates *p; - size_t k = sizeof(struct __tds__LoadCertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__LoadCertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__LoadCertificates); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__LoadCertificates, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__LoadCertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__LoadCertificates(struct soap *soap, const struct __tds__LoadCertificates *a, const char *tag, const char *type) -{ - if (soap_out___tds__LoadCertificates(soap, tag ? tag : "-tds:LoadCertificates", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__LoadCertificates * SOAP_FMAC4 soap_get___tds__LoadCertificates(struct soap *soap, struct __tds__LoadCertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__LoadCertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetPkcs10Request(struct soap *soap, struct __tds__GetPkcs10Request *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetPkcs10Request = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetPkcs10Request(struct soap *soap, const struct __tds__GetPkcs10Request *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetPkcs10Request(soap, &a->tds__GetPkcs10Request); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetPkcs10Request(struct soap *soap, const char *tag, int id, const struct __tds__GetPkcs10Request *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetPkcs10Request(soap, "tds:GetPkcs10Request", -1, &a->tds__GetPkcs10Request, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetPkcs10Request * SOAP_FMAC4 soap_in___tds__GetPkcs10Request(struct soap *soap, const char *tag, struct __tds__GetPkcs10Request *a, const char *type) -{ - size_t soap_flag_tds__GetPkcs10Request = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetPkcs10Request*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetPkcs10Request, sizeof(struct __tds__GetPkcs10Request), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetPkcs10Request(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetPkcs10Request && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetPkcs10Request(soap, "tds:GetPkcs10Request", &a->tds__GetPkcs10Request, "")) - { soap_flag_tds__GetPkcs10Request--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetPkcs10Request * SOAP_FMAC2 soap_instantiate___tds__GetPkcs10Request(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetPkcs10Request(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetPkcs10Request *p; - size_t k = sizeof(struct __tds__GetPkcs10Request); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetPkcs10Request, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetPkcs10Request); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetPkcs10Request, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetPkcs10Request location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetPkcs10Request(struct soap *soap, const struct __tds__GetPkcs10Request *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetPkcs10Request(soap, tag ? tag : "-tds:GetPkcs10Request", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetPkcs10Request * SOAP_FMAC4 soap_get___tds__GetPkcs10Request(struct soap *soap, struct __tds__GetPkcs10Request *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetPkcs10Request(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteCertificates(struct soap *soap, struct __tds__DeleteCertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__DeleteCertificates = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteCertificates(struct soap *soap, const struct __tds__DeleteCertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__DeleteCertificates(soap, &a->tds__DeleteCertificates); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteCertificates(struct soap *soap, const char *tag, int id, const struct __tds__DeleteCertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__DeleteCertificates(soap, "tds:DeleteCertificates", -1, &a->tds__DeleteCertificates, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteCertificates * SOAP_FMAC4 soap_in___tds__DeleteCertificates(struct soap *soap, const char *tag, struct __tds__DeleteCertificates *a, const char *type) -{ - size_t soap_flag_tds__DeleteCertificates = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__DeleteCertificates*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__DeleteCertificates, sizeof(struct __tds__DeleteCertificates), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__DeleteCertificates(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__DeleteCertificates && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__DeleteCertificates(soap, "tds:DeleteCertificates", &a->tds__DeleteCertificates, "")) - { soap_flag_tds__DeleteCertificates--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__DeleteCertificates * SOAP_FMAC2 soap_instantiate___tds__DeleteCertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__DeleteCertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__DeleteCertificates *p; - size_t k = sizeof(struct __tds__DeleteCertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__DeleteCertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__DeleteCertificates); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__DeleteCertificates, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__DeleteCertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteCertificates(struct soap *soap, const struct __tds__DeleteCertificates *a, const char *tag, const char *type) -{ - if (soap_out___tds__DeleteCertificates(soap, tag ? tag : "-tds:DeleteCertificates", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteCertificates * SOAP_FMAC4 soap_get___tds__DeleteCertificates(struct soap *soap, struct __tds__DeleteCertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__DeleteCertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetCertificatesStatus(struct soap *soap, struct __tds__SetCertificatesStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetCertificatesStatus = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetCertificatesStatus(struct soap *soap, const struct __tds__SetCertificatesStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetCertificatesStatus(soap, &a->tds__SetCertificatesStatus); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetCertificatesStatus(struct soap *soap, const char *tag, int id, const struct __tds__SetCertificatesStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetCertificatesStatus(soap, "tds:SetCertificatesStatus", -1, &a->tds__SetCertificatesStatus, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetCertificatesStatus * SOAP_FMAC4 soap_in___tds__SetCertificatesStatus(struct soap *soap, const char *tag, struct __tds__SetCertificatesStatus *a, const char *type) -{ - size_t soap_flag_tds__SetCertificatesStatus = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetCertificatesStatus*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetCertificatesStatus, sizeof(struct __tds__SetCertificatesStatus), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetCertificatesStatus(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetCertificatesStatus && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetCertificatesStatus(soap, "tds:SetCertificatesStatus", &a->tds__SetCertificatesStatus, "")) - { soap_flag_tds__SetCertificatesStatus--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetCertificatesStatus * SOAP_FMAC2 soap_instantiate___tds__SetCertificatesStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetCertificatesStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetCertificatesStatus *p; - size_t k = sizeof(struct __tds__SetCertificatesStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetCertificatesStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetCertificatesStatus); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetCertificatesStatus, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetCertificatesStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetCertificatesStatus(struct soap *soap, const struct __tds__SetCertificatesStatus *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetCertificatesStatus(soap, tag ? tag : "-tds:SetCertificatesStatus", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetCertificatesStatus * SOAP_FMAC4 soap_get___tds__SetCertificatesStatus(struct soap *soap, struct __tds__SetCertificatesStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetCertificatesStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCertificatesStatus(struct soap *soap, struct __tds__GetCertificatesStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetCertificatesStatus = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCertificatesStatus(struct soap *soap, const struct __tds__GetCertificatesStatus *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetCertificatesStatus(soap, &a->tds__GetCertificatesStatus); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCertificatesStatus(struct soap *soap, const char *tag, int id, const struct __tds__GetCertificatesStatus *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetCertificatesStatus(soap, "tds:GetCertificatesStatus", -1, &a->tds__GetCertificatesStatus, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCertificatesStatus * SOAP_FMAC4 soap_in___tds__GetCertificatesStatus(struct soap *soap, const char *tag, struct __tds__GetCertificatesStatus *a, const char *type) -{ - size_t soap_flag_tds__GetCertificatesStatus = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetCertificatesStatus*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetCertificatesStatus, sizeof(struct __tds__GetCertificatesStatus), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetCertificatesStatus(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetCertificatesStatus && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetCertificatesStatus(soap, "tds:GetCertificatesStatus", &a->tds__GetCertificatesStatus, "")) - { soap_flag_tds__GetCertificatesStatus--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetCertificatesStatus * SOAP_FMAC2 soap_instantiate___tds__GetCertificatesStatus(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetCertificatesStatus(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetCertificatesStatus *p; - size_t k = sizeof(struct __tds__GetCertificatesStatus); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetCertificatesStatus, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetCertificatesStatus); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetCertificatesStatus, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetCertificatesStatus location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCertificatesStatus(struct soap *soap, const struct __tds__GetCertificatesStatus *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetCertificatesStatus(soap, tag ? tag : "-tds:GetCertificatesStatus", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCertificatesStatus * SOAP_FMAC4 soap_get___tds__GetCertificatesStatus(struct soap *soap, struct __tds__GetCertificatesStatus *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetCertificatesStatus(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCertificates(struct soap *soap, struct __tds__GetCertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetCertificates = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCertificates(struct soap *soap, const struct __tds__GetCertificates *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetCertificates(soap, &a->tds__GetCertificates); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCertificates(struct soap *soap, const char *tag, int id, const struct __tds__GetCertificates *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetCertificates(soap, "tds:GetCertificates", -1, &a->tds__GetCertificates, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCertificates * SOAP_FMAC4 soap_in___tds__GetCertificates(struct soap *soap, const char *tag, struct __tds__GetCertificates *a, const char *type) -{ - size_t soap_flag_tds__GetCertificates = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetCertificates*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetCertificates, sizeof(struct __tds__GetCertificates), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetCertificates(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetCertificates && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetCertificates(soap, "tds:GetCertificates", &a->tds__GetCertificates, "")) - { soap_flag_tds__GetCertificates--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetCertificates * SOAP_FMAC2 soap_instantiate___tds__GetCertificates(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetCertificates(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetCertificates *p; - size_t k = sizeof(struct __tds__GetCertificates); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetCertificates, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetCertificates); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetCertificates, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetCertificates location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCertificates(struct soap *soap, const struct __tds__GetCertificates *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetCertificates(soap, tag ? tag : "-tds:GetCertificates", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCertificates * SOAP_FMAC4 soap_get___tds__GetCertificates(struct soap *soap, struct __tds__GetCertificates *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetCertificates(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateCertificate(struct soap *soap, struct __tds__CreateCertificate *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__CreateCertificate = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateCertificate(struct soap *soap, const struct __tds__CreateCertificate *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__CreateCertificate(soap, &a->tds__CreateCertificate); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateCertificate(struct soap *soap, const char *tag, int id, const struct __tds__CreateCertificate *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__CreateCertificate(soap, "tds:CreateCertificate", -1, &a->tds__CreateCertificate, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateCertificate * SOAP_FMAC4 soap_in___tds__CreateCertificate(struct soap *soap, const char *tag, struct __tds__CreateCertificate *a, const char *type) -{ - size_t soap_flag_tds__CreateCertificate = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__CreateCertificate*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__CreateCertificate, sizeof(struct __tds__CreateCertificate), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__CreateCertificate(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__CreateCertificate && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__CreateCertificate(soap, "tds:CreateCertificate", &a->tds__CreateCertificate, "")) - { soap_flag_tds__CreateCertificate--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__CreateCertificate * SOAP_FMAC2 soap_instantiate___tds__CreateCertificate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__CreateCertificate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__CreateCertificate *p; - size_t k = sizeof(struct __tds__CreateCertificate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__CreateCertificate, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__CreateCertificate); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__CreateCertificate, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__CreateCertificate location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateCertificate(struct soap *soap, const struct __tds__CreateCertificate *a, const char *tag, const char *type) -{ - if (soap_out___tds__CreateCertificate(soap, tag ? tag : "-tds:CreateCertificate", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateCertificate * SOAP_FMAC4 soap_get___tds__CreateCertificate(struct soap *soap, struct __tds__CreateCertificate *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__CreateCertificate(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetAccessPolicy(struct soap *soap, struct __tds__SetAccessPolicy *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetAccessPolicy = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetAccessPolicy(struct soap *soap, const struct __tds__SetAccessPolicy *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetAccessPolicy(soap, &a->tds__SetAccessPolicy); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetAccessPolicy(struct soap *soap, const char *tag, int id, const struct __tds__SetAccessPolicy *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetAccessPolicy(soap, "tds:SetAccessPolicy", -1, &a->tds__SetAccessPolicy, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetAccessPolicy * SOAP_FMAC4 soap_in___tds__SetAccessPolicy(struct soap *soap, const char *tag, struct __tds__SetAccessPolicy *a, const char *type) -{ - size_t soap_flag_tds__SetAccessPolicy = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetAccessPolicy*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetAccessPolicy, sizeof(struct __tds__SetAccessPolicy), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetAccessPolicy(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetAccessPolicy && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetAccessPolicy(soap, "tds:SetAccessPolicy", &a->tds__SetAccessPolicy, "")) - { soap_flag_tds__SetAccessPolicy--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetAccessPolicy * SOAP_FMAC2 soap_instantiate___tds__SetAccessPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetAccessPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetAccessPolicy *p; - size_t k = sizeof(struct __tds__SetAccessPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetAccessPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetAccessPolicy); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetAccessPolicy, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetAccessPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetAccessPolicy(struct soap *soap, const struct __tds__SetAccessPolicy *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetAccessPolicy(soap, tag ? tag : "-tds:SetAccessPolicy", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetAccessPolicy * SOAP_FMAC4 soap_get___tds__SetAccessPolicy(struct soap *soap, struct __tds__SetAccessPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetAccessPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetAccessPolicy(struct soap *soap, struct __tds__GetAccessPolicy *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetAccessPolicy = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetAccessPolicy(struct soap *soap, const struct __tds__GetAccessPolicy *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetAccessPolicy(soap, &a->tds__GetAccessPolicy); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetAccessPolicy(struct soap *soap, const char *tag, int id, const struct __tds__GetAccessPolicy *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetAccessPolicy(soap, "tds:GetAccessPolicy", -1, &a->tds__GetAccessPolicy, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetAccessPolicy * SOAP_FMAC4 soap_in___tds__GetAccessPolicy(struct soap *soap, const char *tag, struct __tds__GetAccessPolicy *a, const char *type) -{ - size_t soap_flag_tds__GetAccessPolicy = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetAccessPolicy*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetAccessPolicy, sizeof(struct __tds__GetAccessPolicy), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetAccessPolicy(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetAccessPolicy && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetAccessPolicy(soap, "tds:GetAccessPolicy", &a->tds__GetAccessPolicy, "")) - { soap_flag_tds__GetAccessPolicy--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetAccessPolicy * SOAP_FMAC2 soap_instantiate___tds__GetAccessPolicy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetAccessPolicy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetAccessPolicy *p; - size_t k = sizeof(struct __tds__GetAccessPolicy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetAccessPolicy, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetAccessPolicy); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetAccessPolicy, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetAccessPolicy location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetAccessPolicy(struct soap *soap, const struct __tds__GetAccessPolicy *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetAccessPolicy(soap, tag ? tag : "-tds:GetAccessPolicy", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetAccessPolicy * SOAP_FMAC4 soap_get___tds__GetAccessPolicy(struct soap *soap, struct __tds__GetAccessPolicy *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetAccessPolicy(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__RemoveIPAddressFilter(struct soap *soap, struct __tds__RemoveIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__RemoveIPAddressFilter = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__RemoveIPAddressFilter(struct soap *soap, const struct __tds__RemoveIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__RemoveIPAddressFilter(soap, &a->tds__RemoveIPAddressFilter); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__RemoveIPAddressFilter(struct soap *soap, const char *tag, int id, const struct __tds__RemoveIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__RemoveIPAddressFilter(soap, "tds:RemoveIPAddressFilter", -1, &a->tds__RemoveIPAddressFilter, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_in___tds__RemoveIPAddressFilter(struct soap *soap, const char *tag, struct __tds__RemoveIPAddressFilter *a, const char *type) -{ - size_t soap_flag_tds__RemoveIPAddressFilter = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__RemoveIPAddressFilter*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__RemoveIPAddressFilter, sizeof(struct __tds__RemoveIPAddressFilter), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__RemoveIPAddressFilter(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__RemoveIPAddressFilter && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__RemoveIPAddressFilter(soap, "tds:RemoveIPAddressFilter", &a->tds__RemoveIPAddressFilter, "")) - { soap_flag_tds__RemoveIPAddressFilter--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__RemoveIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__RemoveIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__RemoveIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__RemoveIPAddressFilter *p; - size_t k = sizeof(struct __tds__RemoveIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__RemoveIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__RemoveIPAddressFilter); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__RemoveIPAddressFilter, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__RemoveIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__RemoveIPAddressFilter(struct soap *soap, const struct __tds__RemoveIPAddressFilter *a, const char *tag, const char *type) -{ - if (soap_out___tds__RemoveIPAddressFilter(soap, tag ? tag : "-tds:RemoveIPAddressFilter", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_get___tds__RemoveIPAddressFilter(struct soap *soap, struct __tds__RemoveIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__RemoveIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__AddIPAddressFilter(struct soap *soap, struct __tds__AddIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__AddIPAddressFilter = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__AddIPAddressFilter(struct soap *soap, const struct __tds__AddIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__AddIPAddressFilter(soap, &a->tds__AddIPAddressFilter); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__AddIPAddressFilter(struct soap *soap, const char *tag, int id, const struct __tds__AddIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__AddIPAddressFilter(soap, "tds:AddIPAddressFilter", -1, &a->tds__AddIPAddressFilter, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__AddIPAddressFilter * SOAP_FMAC4 soap_in___tds__AddIPAddressFilter(struct soap *soap, const char *tag, struct __tds__AddIPAddressFilter *a, const char *type) -{ - size_t soap_flag_tds__AddIPAddressFilter = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__AddIPAddressFilter*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__AddIPAddressFilter, sizeof(struct __tds__AddIPAddressFilter), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__AddIPAddressFilter(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__AddIPAddressFilter && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__AddIPAddressFilter(soap, "tds:AddIPAddressFilter", &a->tds__AddIPAddressFilter, "")) - { soap_flag_tds__AddIPAddressFilter--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__AddIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__AddIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__AddIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__AddIPAddressFilter *p; - size_t k = sizeof(struct __tds__AddIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__AddIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__AddIPAddressFilter); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__AddIPAddressFilter, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__AddIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__AddIPAddressFilter(struct soap *soap, const struct __tds__AddIPAddressFilter *a, const char *tag, const char *type) -{ - if (soap_out___tds__AddIPAddressFilter(soap, tag ? tag : "-tds:AddIPAddressFilter", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__AddIPAddressFilter * SOAP_FMAC4 soap_get___tds__AddIPAddressFilter(struct soap *soap, struct __tds__AddIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__AddIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetIPAddressFilter(struct soap *soap, struct __tds__SetIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetIPAddressFilter = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetIPAddressFilter(struct soap *soap, const struct __tds__SetIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetIPAddressFilter(soap, &a->tds__SetIPAddressFilter); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetIPAddressFilter(struct soap *soap, const char *tag, int id, const struct __tds__SetIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetIPAddressFilter(soap, "tds:SetIPAddressFilter", -1, &a->tds__SetIPAddressFilter, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetIPAddressFilter * SOAP_FMAC4 soap_in___tds__SetIPAddressFilter(struct soap *soap, const char *tag, struct __tds__SetIPAddressFilter *a, const char *type) -{ - size_t soap_flag_tds__SetIPAddressFilter = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetIPAddressFilter*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetIPAddressFilter, sizeof(struct __tds__SetIPAddressFilter), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetIPAddressFilter(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetIPAddressFilter && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetIPAddressFilter(soap, "tds:SetIPAddressFilter", &a->tds__SetIPAddressFilter, "")) - { soap_flag_tds__SetIPAddressFilter--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__SetIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetIPAddressFilter *p; - size_t k = sizeof(struct __tds__SetIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetIPAddressFilter); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetIPAddressFilter, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetIPAddressFilter(struct soap *soap, const struct __tds__SetIPAddressFilter *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetIPAddressFilter(soap, tag ? tag : "-tds:SetIPAddressFilter", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetIPAddressFilter * SOAP_FMAC4 soap_get___tds__SetIPAddressFilter(struct soap *soap, struct __tds__SetIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetIPAddressFilter(struct soap *soap, struct __tds__GetIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetIPAddressFilter = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetIPAddressFilter(struct soap *soap, const struct __tds__GetIPAddressFilter *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetIPAddressFilter(soap, &a->tds__GetIPAddressFilter); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetIPAddressFilter(struct soap *soap, const char *tag, int id, const struct __tds__GetIPAddressFilter *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetIPAddressFilter(soap, "tds:GetIPAddressFilter", -1, &a->tds__GetIPAddressFilter, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetIPAddressFilter * SOAP_FMAC4 soap_in___tds__GetIPAddressFilter(struct soap *soap, const char *tag, struct __tds__GetIPAddressFilter *a, const char *type) -{ - size_t soap_flag_tds__GetIPAddressFilter = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetIPAddressFilter*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetIPAddressFilter, sizeof(struct __tds__GetIPAddressFilter), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetIPAddressFilter(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetIPAddressFilter && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetIPAddressFilter(soap, "tds:GetIPAddressFilter", &a->tds__GetIPAddressFilter, "")) - { soap_flag_tds__GetIPAddressFilter--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__GetIPAddressFilter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetIPAddressFilter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetIPAddressFilter *p; - size_t k = sizeof(struct __tds__GetIPAddressFilter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetIPAddressFilter, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetIPAddressFilter); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetIPAddressFilter, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetIPAddressFilter location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetIPAddressFilter(struct soap *soap, const struct __tds__GetIPAddressFilter *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetIPAddressFilter(soap, tag ? tag : "-tds:GetIPAddressFilter", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetIPAddressFilter * SOAP_FMAC4 soap_get___tds__GetIPAddressFilter(struct soap *soap, struct __tds__GetIPAddressFilter *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetIPAddressFilter(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetZeroConfiguration(struct soap *soap, struct __tds__SetZeroConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetZeroConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetZeroConfiguration(struct soap *soap, const struct __tds__SetZeroConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetZeroConfiguration(soap, &a->tds__SetZeroConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetZeroConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__SetZeroConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetZeroConfiguration(soap, "tds:SetZeroConfiguration", -1, &a->tds__SetZeroConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetZeroConfiguration * SOAP_FMAC4 soap_in___tds__SetZeroConfiguration(struct soap *soap, const char *tag, struct __tds__SetZeroConfiguration *a, const char *type) -{ - size_t soap_flag_tds__SetZeroConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetZeroConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetZeroConfiguration, sizeof(struct __tds__SetZeroConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetZeroConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetZeroConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetZeroConfiguration(soap, "tds:SetZeroConfiguration", &a->tds__SetZeroConfiguration, "")) - { soap_flag_tds__SetZeroConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetZeroConfiguration * SOAP_FMAC2 soap_instantiate___tds__SetZeroConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetZeroConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetZeroConfiguration *p; - size_t k = sizeof(struct __tds__SetZeroConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetZeroConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetZeroConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetZeroConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetZeroConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetZeroConfiguration(struct soap *soap, const struct __tds__SetZeroConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetZeroConfiguration(soap, tag ? tag : "-tds:SetZeroConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetZeroConfiguration * SOAP_FMAC4 soap_get___tds__SetZeroConfiguration(struct soap *soap, struct __tds__SetZeroConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetZeroConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetZeroConfiguration(struct soap *soap, struct __tds__GetZeroConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetZeroConfiguration = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetZeroConfiguration(struct soap *soap, const struct __tds__GetZeroConfiguration *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetZeroConfiguration(soap, &a->tds__GetZeroConfiguration); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetZeroConfiguration(struct soap *soap, const char *tag, int id, const struct __tds__GetZeroConfiguration *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetZeroConfiguration(soap, "tds:GetZeroConfiguration", -1, &a->tds__GetZeroConfiguration, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetZeroConfiguration * SOAP_FMAC4 soap_in___tds__GetZeroConfiguration(struct soap *soap, const char *tag, struct __tds__GetZeroConfiguration *a, const char *type) -{ - size_t soap_flag_tds__GetZeroConfiguration = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetZeroConfiguration*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetZeroConfiguration, sizeof(struct __tds__GetZeroConfiguration), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetZeroConfiguration(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetZeroConfiguration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetZeroConfiguration(soap, "tds:GetZeroConfiguration", &a->tds__GetZeroConfiguration, "")) - { soap_flag_tds__GetZeroConfiguration--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetZeroConfiguration * SOAP_FMAC2 soap_instantiate___tds__GetZeroConfiguration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetZeroConfiguration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetZeroConfiguration *p; - size_t k = sizeof(struct __tds__GetZeroConfiguration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetZeroConfiguration, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetZeroConfiguration); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetZeroConfiguration, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetZeroConfiguration location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetZeroConfiguration(struct soap *soap, const struct __tds__GetZeroConfiguration *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetZeroConfiguration(soap, tag ? tag : "-tds:GetZeroConfiguration", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetZeroConfiguration * SOAP_FMAC4 soap_get___tds__GetZeroConfiguration(struct soap *soap, struct __tds__GetZeroConfiguration *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetZeroConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNetworkDefaultGateway(struct soap *soap, struct __tds__SetNetworkDefaultGateway *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetNetworkDefaultGateway = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNetworkDefaultGateway(struct soap *soap, const struct __tds__SetNetworkDefaultGateway *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetNetworkDefaultGateway(soap, &a->tds__SetNetworkDefaultGateway); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNetworkDefaultGateway(struct soap *soap, const char *tag, int id, const struct __tds__SetNetworkDefaultGateway *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetNetworkDefaultGateway(soap, "tds:SetNetworkDefaultGateway", -1, &a->tds__SetNetworkDefaultGateway, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_in___tds__SetNetworkDefaultGateway(struct soap *soap, const char *tag, struct __tds__SetNetworkDefaultGateway *a, const char *type) -{ - size_t soap_flag_tds__SetNetworkDefaultGateway = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetNetworkDefaultGateway*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetNetworkDefaultGateway, sizeof(struct __tds__SetNetworkDefaultGateway), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetNetworkDefaultGateway(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetNetworkDefaultGateway && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetNetworkDefaultGateway(soap, "tds:SetNetworkDefaultGateway", &a->tds__SetNetworkDefaultGateway, "")) - { soap_flag_tds__SetNetworkDefaultGateway--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate___tds__SetNetworkDefaultGateway(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetNetworkDefaultGateway(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetNetworkDefaultGateway *p; - size_t k = sizeof(struct __tds__SetNetworkDefaultGateway); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetNetworkDefaultGateway, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetNetworkDefaultGateway); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetNetworkDefaultGateway, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetNetworkDefaultGateway location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNetworkDefaultGateway(struct soap *soap, const struct __tds__SetNetworkDefaultGateway *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetNetworkDefaultGateway(soap, tag ? tag : "-tds:SetNetworkDefaultGateway", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_get___tds__SetNetworkDefaultGateway(struct soap *soap, struct __tds__SetNetworkDefaultGateway *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetNetworkDefaultGateway(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNetworkDefaultGateway(struct soap *soap, struct __tds__GetNetworkDefaultGateway *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetNetworkDefaultGateway = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNetworkDefaultGateway(struct soap *soap, const struct __tds__GetNetworkDefaultGateway *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetNetworkDefaultGateway(soap, &a->tds__GetNetworkDefaultGateway); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNetworkDefaultGateway(struct soap *soap, const char *tag, int id, const struct __tds__GetNetworkDefaultGateway *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetNetworkDefaultGateway(soap, "tds:GetNetworkDefaultGateway", -1, &a->tds__GetNetworkDefaultGateway, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_in___tds__GetNetworkDefaultGateway(struct soap *soap, const char *tag, struct __tds__GetNetworkDefaultGateway *a, const char *type) -{ - size_t soap_flag_tds__GetNetworkDefaultGateway = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetNetworkDefaultGateway*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetNetworkDefaultGateway, sizeof(struct __tds__GetNetworkDefaultGateway), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetNetworkDefaultGateway(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetNetworkDefaultGateway && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetNetworkDefaultGateway(soap, "tds:GetNetworkDefaultGateway", &a->tds__GetNetworkDefaultGateway, "")) - { soap_flag_tds__GetNetworkDefaultGateway--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate___tds__GetNetworkDefaultGateway(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetNetworkDefaultGateway(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetNetworkDefaultGateway *p; - size_t k = sizeof(struct __tds__GetNetworkDefaultGateway); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetNetworkDefaultGateway, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetNetworkDefaultGateway); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetNetworkDefaultGateway, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetNetworkDefaultGateway location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNetworkDefaultGateway(struct soap *soap, const struct __tds__GetNetworkDefaultGateway *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetNetworkDefaultGateway(soap, tag ? tag : "-tds:GetNetworkDefaultGateway", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_get___tds__GetNetworkDefaultGateway(struct soap *soap, struct __tds__GetNetworkDefaultGateway *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetNetworkDefaultGateway(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNetworkProtocols(struct soap *soap, struct __tds__SetNetworkProtocols *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetNetworkProtocols = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNetworkProtocols(struct soap *soap, const struct __tds__SetNetworkProtocols *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetNetworkProtocols(soap, &a->tds__SetNetworkProtocols); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNetworkProtocols(struct soap *soap, const char *tag, int id, const struct __tds__SetNetworkProtocols *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetNetworkProtocols(soap, "tds:SetNetworkProtocols", -1, &a->tds__SetNetworkProtocols, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNetworkProtocols * SOAP_FMAC4 soap_in___tds__SetNetworkProtocols(struct soap *soap, const char *tag, struct __tds__SetNetworkProtocols *a, const char *type) -{ - size_t soap_flag_tds__SetNetworkProtocols = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetNetworkProtocols*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetNetworkProtocols, sizeof(struct __tds__SetNetworkProtocols), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetNetworkProtocols(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetNetworkProtocols && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetNetworkProtocols(soap, "tds:SetNetworkProtocols", &a->tds__SetNetworkProtocols, "")) - { soap_flag_tds__SetNetworkProtocols--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetNetworkProtocols * SOAP_FMAC2 soap_instantiate___tds__SetNetworkProtocols(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetNetworkProtocols(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetNetworkProtocols *p; - size_t k = sizeof(struct __tds__SetNetworkProtocols); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetNetworkProtocols, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetNetworkProtocols); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetNetworkProtocols, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetNetworkProtocols location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNetworkProtocols(struct soap *soap, const struct __tds__SetNetworkProtocols *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetNetworkProtocols(soap, tag ? tag : "-tds:SetNetworkProtocols", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNetworkProtocols * SOAP_FMAC4 soap_get___tds__SetNetworkProtocols(struct soap *soap, struct __tds__SetNetworkProtocols *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetNetworkProtocols(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNetworkProtocols(struct soap *soap, struct __tds__GetNetworkProtocols *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetNetworkProtocols = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNetworkProtocols(struct soap *soap, const struct __tds__GetNetworkProtocols *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetNetworkProtocols(soap, &a->tds__GetNetworkProtocols); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNetworkProtocols(struct soap *soap, const char *tag, int id, const struct __tds__GetNetworkProtocols *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetNetworkProtocols(soap, "tds:GetNetworkProtocols", -1, &a->tds__GetNetworkProtocols, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNetworkProtocols * SOAP_FMAC4 soap_in___tds__GetNetworkProtocols(struct soap *soap, const char *tag, struct __tds__GetNetworkProtocols *a, const char *type) -{ - size_t soap_flag_tds__GetNetworkProtocols = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetNetworkProtocols*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetNetworkProtocols, sizeof(struct __tds__GetNetworkProtocols), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetNetworkProtocols(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetNetworkProtocols && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetNetworkProtocols(soap, "tds:GetNetworkProtocols", &a->tds__GetNetworkProtocols, "")) - { soap_flag_tds__GetNetworkProtocols--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetNetworkProtocols * SOAP_FMAC2 soap_instantiate___tds__GetNetworkProtocols(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetNetworkProtocols(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetNetworkProtocols *p; - size_t k = sizeof(struct __tds__GetNetworkProtocols); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetNetworkProtocols, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetNetworkProtocols); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetNetworkProtocols, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetNetworkProtocols location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNetworkProtocols(struct soap *soap, const struct __tds__GetNetworkProtocols *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetNetworkProtocols(soap, tag ? tag : "-tds:GetNetworkProtocols", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNetworkProtocols * SOAP_FMAC4 soap_get___tds__GetNetworkProtocols(struct soap *soap, struct __tds__GetNetworkProtocols *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetNetworkProtocols(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNetworkInterfaces(struct soap *soap, struct __tds__SetNetworkInterfaces *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetNetworkInterfaces = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNetworkInterfaces(struct soap *soap, const struct __tds__SetNetworkInterfaces *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetNetworkInterfaces(soap, &a->tds__SetNetworkInterfaces); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNetworkInterfaces(struct soap *soap, const char *tag, int id, const struct __tds__SetNetworkInterfaces *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetNetworkInterfaces(soap, "tds:SetNetworkInterfaces", -1, &a->tds__SetNetworkInterfaces, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNetworkInterfaces * SOAP_FMAC4 soap_in___tds__SetNetworkInterfaces(struct soap *soap, const char *tag, struct __tds__SetNetworkInterfaces *a, const char *type) -{ - size_t soap_flag_tds__SetNetworkInterfaces = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetNetworkInterfaces*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetNetworkInterfaces, sizeof(struct __tds__SetNetworkInterfaces), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetNetworkInterfaces(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetNetworkInterfaces && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetNetworkInterfaces(soap, "tds:SetNetworkInterfaces", &a->tds__SetNetworkInterfaces, "")) - { soap_flag_tds__SetNetworkInterfaces--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetNetworkInterfaces * SOAP_FMAC2 soap_instantiate___tds__SetNetworkInterfaces(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetNetworkInterfaces(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetNetworkInterfaces *p; - size_t k = sizeof(struct __tds__SetNetworkInterfaces); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetNetworkInterfaces, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetNetworkInterfaces); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetNetworkInterfaces, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetNetworkInterfaces location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNetworkInterfaces(struct soap *soap, const struct __tds__SetNetworkInterfaces *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetNetworkInterfaces(soap, tag ? tag : "-tds:SetNetworkInterfaces", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNetworkInterfaces * SOAP_FMAC4 soap_get___tds__SetNetworkInterfaces(struct soap *soap, struct __tds__SetNetworkInterfaces *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetNetworkInterfaces(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNetworkInterfaces(struct soap *soap, struct __tds__GetNetworkInterfaces *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetNetworkInterfaces = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNetworkInterfaces(struct soap *soap, const struct __tds__GetNetworkInterfaces *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetNetworkInterfaces(soap, &a->tds__GetNetworkInterfaces); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNetworkInterfaces(struct soap *soap, const char *tag, int id, const struct __tds__GetNetworkInterfaces *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetNetworkInterfaces(soap, "tds:GetNetworkInterfaces", -1, &a->tds__GetNetworkInterfaces, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNetworkInterfaces * SOAP_FMAC4 soap_in___tds__GetNetworkInterfaces(struct soap *soap, const char *tag, struct __tds__GetNetworkInterfaces *a, const char *type) -{ - size_t soap_flag_tds__GetNetworkInterfaces = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetNetworkInterfaces*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetNetworkInterfaces, sizeof(struct __tds__GetNetworkInterfaces), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetNetworkInterfaces(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetNetworkInterfaces && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetNetworkInterfaces(soap, "tds:GetNetworkInterfaces", &a->tds__GetNetworkInterfaces, "")) - { soap_flag_tds__GetNetworkInterfaces--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetNetworkInterfaces * SOAP_FMAC2 soap_instantiate___tds__GetNetworkInterfaces(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetNetworkInterfaces(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetNetworkInterfaces *p; - size_t k = sizeof(struct __tds__GetNetworkInterfaces); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetNetworkInterfaces, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetNetworkInterfaces); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetNetworkInterfaces, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetNetworkInterfaces location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNetworkInterfaces(struct soap *soap, const struct __tds__GetNetworkInterfaces *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetNetworkInterfaces(soap, tag ? tag : "-tds:GetNetworkInterfaces", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNetworkInterfaces * SOAP_FMAC4 soap_get___tds__GetNetworkInterfaces(struct soap *soap, struct __tds__GetNetworkInterfaces *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetNetworkInterfaces(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDynamicDNS(struct soap *soap, struct __tds__SetDynamicDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetDynamicDNS = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDynamicDNS(struct soap *soap, const struct __tds__SetDynamicDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetDynamicDNS(soap, &a->tds__SetDynamicDNS); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDynamicDNS(struct soap *soap, const char *tag, int id, const struct __tds__SetDynamicDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetDynamicDNS(soap, "tds:SetDynamicDNS", -1, &a->tds__SetDynamicDNS, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDynamicDNS * SOAP_FMAC4 soap_in___tds__SetDynamicDNS(struct soap *soap, const char *tag, struct __tds__SetDynamicDNS *a, const char *type) -{ - size_t soap_flag_tds__SetDynamicDNS = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetDynamicDNS*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetDynamicDNS, sizeof(struct __tds__SetDynamicDNS), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetDynamicDNS(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetDynamicDNS && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetDynamicDNS(soap, "tds:SetDynamicDNS", &a->tds__SetDynamicDNS, "")) - { soap_flag_tds__SetDynamicDNS--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetDynamicDNS * SOAP_FMAC2 soap_instantiate___tds__SetDynamicDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetDynamicDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetDynamicDNS *p; - size_t k = sizeof(struct __tds__SetDynamicDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetDynamicDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetDynamicDNS); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetDynamicDNS, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetDynamicDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDynamicDNS(struct soap *soap, const struct __tds__SetDynamicDNS *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetDynamicDNS(soap, tag ? tag : "-tds:SetDynamicDNS", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDynamicDNS * SOAP_FMAC4 soap_get___tds__SetDynamicDNS(struct soap *soap, struct __tds__SetDynamicDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetDynamicDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDynamicDNS(struct soap *soap, struct __tds__GetDynamicDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDynamicDNS = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDynamicDNS(struct soap *soap, const struct __tds__GetDynamicDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDynamicDNS(soap, &a->tds__GetDynamicDNS); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDynamicDNS(struct soap *soap, const char *tag, int id, const struct __tds__GetDynamicDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDynamicDNS(soap, "tds:GetDynamicDNS", -1, &a->tds__GetDynamicDNS, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDynamicDNS * SOAP_FMAC4 soap_in___tds__GetDynamicDNS(struct soap *soap, const char *tag, struct __tds__GetDynamicDNS *a, const char *type) -{ - size_t soap_flag_tds__GetDynamicDNS = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDynamicDNS*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDynamicDNS, sizeof(struct __tds__GetDynamicDNS), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDynamicDNS(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDynamicDNS && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDynamicDNS(soap, "tds:GetDynamicDNS", &a->tds__GetDynamicDNS, "")) - { soap_flag_tds__GetDynamicDNS--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDynamicDNS * SOAP_FMAC2 soap_instantiate___tds__GetDynamicDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDynamicDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDynamicDNS *p; - size_t k = sizeof(struct __tds__GetDynamicDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDynamicDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDynamicDNS); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDynamicDNS, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDynamicDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDynamicDNS(struct soap *soap, const struct __tds__GetDynamicDNS *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDynamicDNS(soap, tag ? tag : "-tds:GetDynamicDNS", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDynamicDNS * SOAP_FMAC4 soap_get___tds__GetDynamicDNS(struct soap *soap, struct __tds__GetDynamicDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDynamicDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNTP(struct soap *soap, struct __tds__SetNTP *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetNTP = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNTP(struct soap *soap, const struct __tds__SetNTP *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetNTP(soap, &a->tds__SetNTP); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNTP(struct soap *soap, const char *tag, int id, const struct __tds__SetNTP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetNTP(soap, "tds:SetNTP", -1, &a->tds__SetNTP, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNTP * SOAP_FMAC4 soap_in___tds__SetNTP(struct soap *soap, const char *tag, struct __tds__SetNTP *a, const char *type) -{ - size_t soap_flag_tds__SetNTP = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetNTP*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetNTP, sizeof(struct __tds__SetNTP), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetNTP(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetNTP && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetNTP(soap, "tds:SetNTP", &a->tds__SetNTP, "")) - { soap_flag_tds__SetNTP--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetNTP * SOAP_FMAC2 soap_instantiate___tds__SetNTP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetNTP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetNTP *p; - size_t k = sizeof(struct __tds__SetNTP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetNTP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetNTP); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetNTP, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetNTP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNTP(struct soap *soap, const struct __tds__SetNTP *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetNTP(soap, tag ? tag : "-tds:SetNTP", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetNTP * SOAP_FMAC4 soap_get___tds__SetNTP(struct soap *soap, struct __tds__SetNTP *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetNTP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNTP(struct soap *soap, struct __tds__GetNTP *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetNTP = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNTP(struct soap *soap, const struct __tds__GetNTP *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetNTP(soap, &a->tds__GetNTP); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNTP(struct soap *soap, const char *tag, int id, const struct __tds__GetNTP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetNTP(soap, "tds:GetNTP", -1, &a->tds__GetNTP, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNTP * SOAP_FMAC4 soap_in___tds__GetNTP(struct soap *soap, const char *tag, struct __tds__GetNTP *a, const char *type) -{ - size_t soap_flag_tds__GetNTP = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetNTP*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetNTP, sizeof(struct __tds__GetNTP), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetNTP(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetNTP && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetNTP(soap, "tds:GetNTP", &a->tds__GetNTP, "")) - { soap_flag_tds__GetNTP--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetNTP * SOAP_FMAC2 soap_instantiate___tds__GetNTP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetNTP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetNTP *p; - size_t k = sizeof(struct __tds__GetNTP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetNTP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetNTP); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetNTP, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetNTP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNTP(struct soap *soap, const struct __tds__GetNTP *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetNTP(soap, tag ? tag : "-tds:GetNTP", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetNTP * SOAP_FMAC4 soap_get___tds__GetNTP(struct soap *soap, struct __tds__GetNTP *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetNTP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDNS(struct soap *soap, struct __tds__SetDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetDNS = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDNS(struct soap *soap, const struct __tds__SetDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetDNS(soap, &a->tds__SetDNS); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDNS(struct soap *soap, const char *tag, int id, const struct __tds__SetDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetDNS(soap, "tds:SetDNS", -1, &a->tds__SetDNS, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDNS * SOAP_FMAC4 soap_in___tds__SetDNS(struct soap *soap, const char *tag, struct __tds__SetDNS *a, const char *type) -{ - size_t soap_flag_tds__SetDNS = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetDNS*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetDNS, sizeof(struct __tds__SetDNS), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetDNS(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetDNS && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetDNS(soap, "tds:SetDNS", &a->tds__SetDNS, "")) - { soap_flag_tds__SetDNS--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetDNS * SOAP_FMAC2 soap_instantiate___tds__SetDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetDNS *p; - size_t k = sizeof(struct __tds__SetDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetDNS); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetDNS, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDNS(struct soap *soap, const struct __tds__SetDNS *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetDNS(soap, tag ? tag : "-tds:SetDNS", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDNS * SOAP_FMAC4 soap_get___tds__SetDNS(struct soap *soap, struct __tds__SetDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDNS(struct soap *soap, struct __tds__GetDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDNS = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDNS(struct soap *soap, const struct __tds__GetDNS *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDNS(soap, &a->tds__GetDNS); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDNS(struct soap *soap, const char *tag, int id, const struct __tds__GetDNS *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDNS(soap, "tds:GetDNS", -1, &a->tds__GetDNS, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDNS * SOAP_FMAC4 soap_in___tds__GetDNS(struct soap *soap, const char *tag, struct __tds__GetDNS *a, const char *type) -{ - size_t soap_flag_tds__GetDNS = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDNS*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDNS, sizeof(struct __tds__GetDNS), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDNS(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDNS && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDNS(soap, "tds:GetDNS", &a->tds__GetDNS, "")) - { soap_flag_tds__GetDNS--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDNS * SOAP_FMAC2 soap_instantiate___tds__GetDNS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDNS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDNS *p; - size_t k = sizeof(struct __tds__GetDNS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDNS, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDNS); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDNS, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDNS location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDNS(struct soap *soap, const struct __tds__GetDNS *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDNS(soap, tag ? tag : "-tds:GetDNS", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDNS * SOAP_FMAC4 soap_get___tds__GetDNS(struct soap *soap, struct __tds__GetDNS *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDNS(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetHostnameFromDHCP(struct soap *soap, struct __tds__SetHostnameFromDHCP *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetHostnameFromDHCP = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetHostnameFromDHCP(struct soap *soap, const struct __tds__SetHostnameFromDHCP *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetHostnameFromDHCP(soap, &a->tds__SetHostnameFromDHCP); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetHostnameFromDHCP(struct soap *soap, const char *tag, int id, const struct __tds__SetHostnameFromDHCP *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetHostnameFromDHCP(soap, "tds:SetHostnameFromDHCP", -1, &a->tds__SetHostnameFromDHCP, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_in___tds__SetHostnameFromDHCP(struct soap *soap, const char *tag, struct __tds__SetHostnameFromDHCP *a, const char *type) -{ - size_t soap_flag_tds__SetHostnameFromDHCP = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetHostnameFromDHCP*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetHostnameFromDHCP, sizeof(struct __tds__SetHostnameFromDHCP), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetHostnameFromDHCP(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetHostnameFromDHCP && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetHostnameFromDHCP(soap, "tds:SetHostnameFromDHCP", &a->tds__SetHostnameFromDHCP, "")) - { soap_flag_tds__SetHostnameFromDHCP--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetHostnameFromDHCP * SOAP_FMAC2 soap_instantiate___tds__SetHostnameFromDHCP(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetHostnameFromDHCP(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetHostnameFromDHCP *p; - size_t k = sizeof(struct __tds__SetHostnameFromDHCP); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetHostnameFromDHCP, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetHostnameFromDHCP); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetHostnameFromDHCP, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetHostnameFromDHCP location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetHostnameFromDHCP(struct soap *soap, const struct __tds__SetHostnameFromDHCP *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetHostnameFromDHCP(soap, tag ? tag : "-tds:SetHostnameFromDHCP", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_get___tds__SetHostnameFromDHCP(struct soap *soap, struct __tds__SetHostnameFromDHCP *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetHostnameFromDHCP(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetHostname(struct soap *soap, struct __tds__SetHostname *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetHostname = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetHostname(struct soap *soap, const struct __tds__SetHostname *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetHostname(soap, &a->tds__SetHostname); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetHostname(struct soap *soap, const char *tag, int id, const struct __tds__SetHostname *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetHostname(soap, "tds:SetHostname", -1, &a->tds__SetHostname, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetHostname * SOAP_FMAC4 soap_in___tds__SetHostname(struct soap *soap, const char *tag, struct __tds__SetHostname *a, const char *type) -{ - size_t soap_flag_tds__SetHostname = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetHostname*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetHostname, sizeof(struct __tds__SetHostname), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetHostname(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetHostname && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetHostname(soap, "tds:SetHostname", &a->tds__SetHostname, "")) - { soap_flag_tds__SetHostname--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetHostname * SOAP_FMAC2 soap_instantiate___tds__SetHostname(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetHostname(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetHostname *p; - size_t k = sizeof(struct __tds__SetHostname); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetHostname, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetHostname); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetHostname, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetHostname location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetHostname(struct soap *soap, const struct __tds__SetHostname *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetHostname(soap, tag ? tag : "-tds:SetHostname", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetHostname * SOAP_FMAC4 soap_get___tds__SetHostname(struct soap *soap, struct __tds__SetHostname *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetHostname(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetHostname(struct soap *soap, struct __tds__GetHostname *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetHostname = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetHostname(struct soap *soap, const struct __tds__GetHostname *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetHostname(soap, &a->tds__GetHostname); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetHostname(struct soap *soap, const char *tag, int id, const struct __tds__GetHostname *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetHostname(soap, "tds:GetHostname", -1, &a->tds__GetHostname, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetHostname * SOAP_FMAC4 soap_in___tds__GetHostname(struct soap *soap, const char *tag, struct __tds__GetHostname *a, const char *type) -{ - size_t soap_flag_tds__GetHostname = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetHostname*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetHostname, sizeof(struct __tds__GetHostname), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetHostname(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetHostname && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetHostname(soap, "tds:GetHostname", &a->tds__GetHostname, "")) - { soap_flag_tds__GetHostname--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetHostname * SOAP_FMAC2 soap_instantiate___tds__GetHostname(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetHostname(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetHostname *p; - size_t k = sizeof(struct __tds__GetHostname); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetHostname, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetHostname); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetHostname, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetHostname location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetHostname(struct soap *soap, const struct __tds__GetHostname *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetHostname(soap, tag ? tag : "-tds:GetHostname", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetHostname * SOAP_FMAC4 soap_get___tds__GetHostname(struct soap *soap, struct __tds__GetHostname *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetHostname(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDPAddresses(struct soap *soap, struct __tds__SetDPAddresses *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetDPAddresses = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDPAddresses(struct soap *soap, const struct __tds__SetDPAddresses *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetDPAddresses(soap, &a->tds__SetDPAddresses); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDPAddresses(struct soap *soap, const char *tag, int id, const struct __tds__SetDPAddresses *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetDPAddresses(soap, "tds:SetDPAddresses", -1, &a->tds__SetDPAddresses, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDPAddresses * SOAP_FMAC4 soap_in___tds__SetDPAddresses(struct soap *soap, const char *tag, struct __tds__SetDPAddresses *a, const char *type) -{ - size_t soap_flag_tds__SetDPAddresses = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetDPAddresses*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetDPAddresses, sizeof(struct __tds__SetDPAddresses), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetDPAddresses(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetDPAddresses && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetDPAddresses(soap, "tds:SetDPAddresses", &a->tds__SetDPAddresses, "")) - { soap_flag_tds__SetDPAddresses--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetDPAddresses * SOAP_FMAC2 soap_instantiate___tds__SetDPAddresses(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetDPAddresses(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetDPAddresses *p; - size_t k = sizeof(struct __tds__SetDPAddresses); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetDPAddresses, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetDPAddresses); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetDPAddresses, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetDPAddresses location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDPAddresses(struct soap *soap, const struct __tds__SetDPAddresses *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetDPAddresses(soap, tag ? tag : "-tds:SetDPAddresses", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDPAddresses * SOAP_FMAC4 soap_get___tds__SetDPAddresses(struct soap *soap, struct __tds__SetDPAddresses *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetDPAddresses(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCapabilities(struct soap *soap, struct __tds__GetCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCapabilities(struct soap *soap, const struct __tds__GetCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetCapabilities(soap, &a->tds__GetCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCapabilities(struct soap *soap, const char *tag, int id, const struct __tds__GetCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetCapabilities(soap, "tds:GetCapabilities", -1, &a->tds__GetCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCapabilities * SOAP_FMAC4 soap_in___tds__GetCapabilities(struct soap *soap, const char *tag, struct __tds__GetCapabilities *a, const char *type) -{ - size_t soap_flag_tds__GetCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetCapabilities, sizeof(struct __tds__GetCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetCapabilities(soap, "tds:GetCapabilities", &a->tds__GetCapabilities, "")) - { soap_flag_tds__GetCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetCapabilities * SOAP_FMAC2 soap_instantiate___tds__GetCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetCapabilities *p; - size_t k = sizeof(struct __tds__GetCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCapabilities(struct soap *soap, const struct __tds__GetCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetCapabilities(soap, tag ? tag : "-tds:GetCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetCapabilities * SOAP_FMAC4 soap_get___tds__GetCapabilities(struct soap *soap, struct __tds__GetCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetWsdlUrl(struct soap *soap, struct __tds__GetWsdlUrl *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetWsdlUrl = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetWsdlUrl(struct soap *soap, const struct __tds__GetWsdlUrl *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetWsdlUrl(soap, &a->tds__GetWsdlUrl); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetWsdlUrl(struct soap *soap, const char *tag, int id, const struct __tds__GetWsdlUrl *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetWsdlUrl(soap, "tds:GetWsdlUrl", -1, &a->tds__GetWsdlUrl, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetWsdlUrl * SOAP_FMAC4 soap_in___tds__GetWsdlUrl(struct soap *soap, const char *tag, struct __tds__GetWsdlUrl *a, const char *type) -{ - size_t soap_flag_tds__GetWsdlUrl = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetWsdlUrl*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetWsdlUrl, sizeof(struct __tds__GetWsdlUrl), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetWsdlUrl(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetWsdlUrl && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetWsdlUrl(soap, "tds:GetWsdlUrl", &a->tds__GetWsdlUrl, "")) - { soap_flag_tds__GetWsdlUrl--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetWsdlUrl * SOAP_FMAC2 soap_instantiate___tds__GetWsdlUrl(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetWsdlUrl(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetWsdlUrl *p; - size_t k = sizeof(struct __tds__GetWsdlUrl); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetWsdlUrl, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetWsdlUrl); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetWsdlUrl, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetWsdlUrl location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetWsdlUrl(struct soap *soap, const struct __tds__GetWsdlUrl *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetWsdlUrl(soap, tag ? tag : "-tds:GetWsdlUrl", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetWsdlUrl * SOAP_FMAC4 soap_get___tds__GetWsdlUrl(struct soap *soap, struct __tds__GetWsdlUrl *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetWsdlUrl(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetUser(struct soap *soap, struct __tds__SetUser *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetUser = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetUser(struct soap *soap, const struct __tds__SetUser *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetUser(soap, &a->tds__SetUser); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetUser(struct soap *soap, const char *tag, int id, const struct __tds__SetUser *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetUser(soap, "tds:SetUser", -1, &a->tds__SetUser, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetUser * SOAP_FMAC4 soap_in___tds__SetUser(struct soap *soap, const char *tag, struct __tds__SetUser *a, const char *type) -{ - size_t soap_flag_tds__SetUser = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetUser*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetUser, sizeof(struct __tds__SetUser), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetUser(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetUser && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetUser(soap, "tds:SetUser", &a->tds__SetUser, "")) - { soap_flag_tds__SetUser--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetUser * SOAP_FMAC2 soap_instantiate___tds__SetUser(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetUser(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetUser *p; - size_t k = sizeof(struct __tds__SetUser); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetUser, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetUser); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetUser, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetUser location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetUser(struct soap *soap, const struct __tds__SetUser *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetUser(soap, tag ? tag : "-tds:SetUser", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetUser * SOAP_FMAC4 soap_get___tds__SetUser(struct soap *soap, struct __tds__SetUser *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetUser(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteUsers(struct soap *soap, struct __tds__DeleteUsers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__DeleteUsers = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteUsers(struct soap *soap, const struct __tds__DeleteUsers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__DeleteUsers(soap, &a->tds__DeleteUsers); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteUsers(struct soap *soap, const char *tag, int id, const struct __tds__DeleteUsers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__DeleteUsers(soap, "tds:DeleteUsers", -1, &a->tds__DeleteUsers, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteUsers * SOAP_FMAC4 soap_in___tds__DeleteUsers(struct soap *soap, const char *tag, struct __tds__DeleteUsers *a, const char *type) -{ - size_t soap_flag_tds__DeleteUsers = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__DeleteUsers*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__DeleteUsers, sizeof(struct __tds__DeleteUsers), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__DeleteUsers(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__DeleteUsers && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__DeleteUsers(soap, "tds:DeleteUsers", &a->tds__DeleteUsers, "")) - { soap_flag_tds__DeleteUsers--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__DeleteUsers * SOAP_FMAC2 soap_instantiate___tds__DeleteUsers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__DeleteUsers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__DeleteUsers *p; - size_t k = sizeof(struct __tds__DeleteUsers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__DeleteUsers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__DeleteUsers); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__DeleteUsers, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__DeleteUsers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteUsers(struct soap *soap, const struct __tds__DeleteUsers *a, const char *tag, const char *type) -{ - if (soap_out___tds__DeleteUsers(soap, tag ? tag : "-tds:DeleteUsers", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__DeleteUsers * SOAP_FMAC4 soap_get___tds__DeleteUsers(struct soap *soap, struct __tds__DeleteUsers *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__DeleteUsers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateUsers(struct soap *soap, struct __tds__CreateUsers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__CreateUsers = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateUsers(struct soap *soap, const struct __tds__CreateUsers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__CreateUsers(soap, &a->tds__CreateUsers); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateUsers(struct soap *soap, const char *tag, int id, const struct __tds__CreateUsers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__CreateUsers(soap, "tds:CreateUsers", -1, &a->tds__CreateUsers, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateUsers * SOAP_FMAC4 soap_in___tds__CreateUsers(struct soap *soap, const char *tag, struct __tds__CreateUsers *a, const char *type) -{ - size_t soap_flag_tds__CreateUsers = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__CreateUsers*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__CreateUsers, sizeof(struct __tds__CreateUsers), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__CreateUsers(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__CreateUsers && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__CreateUsers(soap, "tds:CreateUsers", &a->tds__CreateUsers, "")) - { soap_flag_tds__CreateUsers--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__CreateUsers * SOAP_FMAC2 soap_instantiate___tds__CreateUsers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__CreateUsers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__CreateUsers *p; - size_t k = sizeof(struct __tds__CreateUsers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__CreateUsers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__CreateUsers); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__CreateUsers, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__CreateUsers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateUsers(struct soap *soap, const struct __tds__CreateUsers *a, const char *tag, const char *type) -{ - if (soap_out___tds__CreateUsers(soap, tag ? tag : "-tds:CreateUsers", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__CreateUsers * SOAP_FMAC4 soap_get___tds__CreateUsers(struct soap *soap, struct __tds__CreateUsers *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__CreateUsers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetUsers(struct soap *soap, struct __tds__GetUsers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetUsers = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetUsers(struct soap *soap, const struct __tds__GetUsers *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetUsers(soap, &a->tds__GetUsers); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetUsers(struct soap *soap, const char *tag, int id, const struct __tds__GetUsers *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetUsers(soap, "tds:GetUsers", -1, &a->tds__GetUsers, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetUsers * SOAP_FMAC4 soap_in___tds__GetUsers(struct soap *soap, const char *tag, struct __tds__GetUsers *a, const char *type) -{ - size_t soap_flag_tds__GetUsers = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetUsers*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetUsers, sizeof(struct __tds__GetUsers), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetUsers(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetUsers && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetUsers(soap, "tds:GetUsers", &a->tds__GetUsers, "")) - { soap_flag_tds__GetUsers--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetUsers * SOAP_FMAC2 soap_instantiate___tds__GetUsers(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetUsers(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetUsers *p; - size_t k = sizeof(struct __tds__GetUsers); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetUsers, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetUsers); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetUsers, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetUsers location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetUsers(struct soap *soap, const struct __tds__GetUsers *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetUsers(soap, tag ? tag : "-tds:GetUsers", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetUsers * SOAP_FMAC4 soap_get___tds__GetUsers(struct soap *soap, struct __tds__GetUsers *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetUsers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRemoteUser(struct soap *soap, struct __tds__SetRemoteUser *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetRemoteUser = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRemoteUser(struct soap *soap, const struct __tds__SetRemoteUser *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetRemoteUser(soap, &a->tds__SetRemoteUser); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRemoteUser(struct soap *soap, const char *tag, int id, const struct __tds__SetRemoteUser *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetRemoteUser(soap, "tds:SetRemoteUser", -1, &a->tds__SetRemoteUser, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRemoteUser * SOAP_FMAC4 soap_in___tds__SetRemoteUser(struct soap *soap, const char *tag, struct __tds__SetRemoteUser *a, const char *type) -{ - size_t soap_flag_tds__SetRemoteUser = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetRemoteUser*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetRemoteUser, sizeof(struct __tds__SetRemoteUser), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetRemoteUser(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetRemoteUser && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetRemoteUser(soap, "tds:SetRemoteUser", &a->tds__SetRemoteUser, "")) - { soap_flag_tds__SetRemoteUser--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetRemoteUser * SOAP_FMAC2 soap_instantiate___tds__SetRemoteUser(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetRemoteUser(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetRemoteUser *p; - size_t k = sizeof(struct __tds__SetRemoteUser); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetRemoteUser, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetRemoteUser); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetRemoteUser, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetRemoteUser location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRemoteUser(struct soap *soap, const struct __tds__SetRemoteUser *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetRemoteUser(soap, tag ? tag : "-tds:SetRemoteUser", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRemoteUser * SOAP_FMAC4 soap_get___tds__SetRemoteUser(struct soap *soap, struct __tds__SetRemoteUser *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetRemoteUser(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetRemoteUser(struct soap *soap, struct __tds__GetRemoteUser *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetRemoteUser = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetRemoteUser(struct soap *soap, const struct __tds__GetRemoteUser *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetRemoteUser(soap, &a->tds__GetRemoteUser); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetRemoteUser(struct soap *soap, const char *tag, int id, const struct __tds__GetRemoteUser *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetRemoteUser(soap, "tds:GetRemoteUser", -1, &a->tds__GetRemoteUser, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetRemoteUser * SOAP_FMAC4 soap_in___tds__GetRemoteUser(struct soap *soap, const char *tag, struct __tds__GetRemoteUser *a, const char *type) -{ - size_t soap_flag_tds__GetRemoteUser = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetRemoteUser*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetRemoteUser, sizeof(struct __tds__GetRemoteUser), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetRemoteUser(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetRemoteUser && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetRemoteUser(soap, "tds:GetRemoteUser", &a->tds__GetRemoteUser, "")) - { soap_flag_tds__GetRemoteUser--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetRemoteUser * SOAP_FMAC2 soap_instantiate___tds__GetRemoteUser(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetRemoteUser(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetRemoteUser *p; - size_t k = sizeof(struct __tds__GetRemoteUser); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetRemoteUser, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetRemoteUser); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetRemoteUser, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetRemoteUser location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetRemoteUser(struct soap *soap, const struct __tds__GetRemoteUser *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetRemoteUser(soap, tag ? tag : "-tds:GetRemoteUser", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetRemoteUser * SOAP_FMAC4 soap_get___tds__GetRemoteUser(struct soap *soap, struct __tds__GetRemoteUser *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetRemoteUser(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetEndpointReference(struct soap *soap, struct __tds__GetEndpointReference *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetEndpointReference = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetEndpointReference(struct soap *soap, const struct __tds__GetEndpointReference *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetEndpointReference(soap, &a->tds__GetEndpointReference); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetEndpointReference(struct soap *soap, const char *tag, int id, const struct __tds__GetEndpointReference *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetEndpointReference(soap, "tds:GetEndpointReference", -1, &a->tds__GetEndpointReference, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetEndpointReference * SOAP_FMAC4 soap_in___tds__GetEndpointReference(struct soap *soap, const char *tag, struct __tds__GetEndpointReference *a, const char *type) -{ - size_t soap_flag_tds__GetEndpointReference = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetEndpointReference*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetEndpointReference, sizeof(struct __tds__GetEndpointReference), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetEndpointReference(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetEndpointReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetEndpointReference(soap, "tds:GetEndpointReference", &a->tds__GetEndpointReference, "")) - { soap_flag_tds__GetEndpointReference--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetEndpointReference * SOAP_FMAC2 soap_instantiate___tds__GetEndpointReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetEndpointReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetEndpointReference *p; - size_t k = sizeof(struct __tds__GetEndpointReference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetEndpointReference, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetEndpointReference); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetEndpointReference, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetEndpointReference location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetEndpointReference(struct soap *soap, const struct __tds__GetEndpointReference *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetEndpointReference(soap, tag ? tag : "-tds:GetEndpointReference", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetEndpointReference * SOAP_FMAC4 soap_get___tds__GetEndpointReference(struct soap *soap, struct __tds__GetEndpointReference *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetEndpointReference(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDPAddresses(struct soap *soap, struct __tds__GetDPAddresses *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDPAddresses = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDPAddresses(struct soap *soap, const struct __tds__GetDPAddresses *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDPAddresses(soap, &a->tds__GetDPAddresses); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDPAddresses(struct soap *soap, const char *tag, int id, const struct __tds__GetDPAddresses *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDPAddresses(soap, "tds:GetDPAddresses", -1, &a->tds__GetDPAddresses, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDPAddresses * SOAP_FMAC4 soap_in___tds__GetDPAddresses(struct soap *soap, const char *tag, struct __tds__GetDPAddresses *a, const char *type) -{ - size_t soap_flag_tds__GetDPAddresses = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDPAddresses*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDPAddresses, sizeof(struct __tds__GetDPAddresses), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDPAddresses(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDPAddresses && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDPAddresses(soap, "tds:GetDPAddresses", &a->tds__GetDPAddresses, "")) - { soap_flag_tds__GetDPAddresses--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDPAddresses * SOAP_FMAC2 soap_instantiate___tds__GetDPAddresses(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDPAddresses(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDPAddresses *p; - size_t k = sizeof(struct __tds__GetDPAddresses); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDPAddresses, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDPAddresses); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDPAddresses, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDPAddresses location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDPAddresses(struct soap *soap, const struct __tds__GetDPAddresses *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDPAddresses(soap, tag ? tag : "-tds:GetDPAddresses", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDPAddresses * SOAP_FMAC4 soap_get___tds__GetDPAddresses(struct soap *soap, struct __tds__GetDPAddresses *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDPAddresses(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRemoteDiscoveryMode(struct soap *soap, struct __tds__SetRemoteDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetRemoteDiscoveryMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRemoteDiscoveryMode(struct soap *soap, const struct __tds__SetRemoteDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetRemoteDiscoveryMode(soap, &a->tds__SetRemoteDiscoveryMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRemoteDiscoveryMode(struct soap *soap, const char *tag, int id, const struct __tds__SetRemoteDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetRemoteDiscoveryMode(soap, "tds:SetRemoteDiscoveryMode", -1, &a->tds__SetRemoteDiscoveryMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_in___tds__SetRemoteDiscoveryMode(struct soap *soap, const char *tag, struct __tds__SetRemoteDiscoveryMode *a, const char *type) -{ - size_t soap_flag_tds__SetRemoteDiscoveryMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetRemoteDiscoveryMode*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetRemoteDiscoveryMode, sizeof(struct __tds__SetRemoteDiscoveryMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetRemoteDiscoveryMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetRemoteDiscoveryMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetRemoteDiscoveryMode(soap, "tds:SetRemoteDiscoveryMode", &a->tds__SetRemoteDiscoveryMode, "")) - { soap_flag_tds__SetRemoteDiscoveryMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__SetRemoteDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetRemoteDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetRemoteDiscoveryMode *p; - size_t k = sizeof(struct __tds__SetRemoteDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetRemoteDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetRemoteDiscoveryMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetRemoteDiscoveryMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetRemoteDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRemoteDiscoveryMode(struct soap *soap, const struct __tds__SetRemoteDiscoveryMode *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetRemoteDiscoveryMode(soap, tag ? tag : "-tds:SetRemoteDiscoveryMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_get___tds__SetRemoteDiscoveryMode(struct soap *soap, struct __tds__SetRemoteDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetRemoteDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetRemoteDiscoveryMode(struct soap *soap, struct __tds__GetRemoteDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetRemoteDiscoveryMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetRemoteDiscoveryMode(struct soap *soap, const struct __tds__GetRemoteDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetRemoteDiscoveryMode(soap, &a->tds__GetRemoteDiscoveryMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetRemoteDiscoveryMode(struct soap *soap, const char *tag, int id, const struct __tds__GetRemoteDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetRemoteDiscoveryMode(soap, "tds:GetRemoteDiscoveryMode", -1, &a->tds__GetRemoteDiscoveryMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_in___tds__GetRemoteDiscoveryMode(struct soap *soap, const char *tag, struct __tds__GetRemoteDiscoveryMode *a, const char *type) -{ - size_t soap_flag_tds__GetRemoteDiscoveryMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetRemoteDiscoveryMode*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetRemoteDiscoveryMode, sizeof(struct __tds__GetRemoteDiscoveryMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetRemoteDiscoveryMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetRemoteDiscoveryMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetRemoteDiscoveryMode(soap, "tds:GetRemoteDiscoveryMode", &a->tds__GetRemoteDiscoveryMode, "")) - { soap_flag_tds__GetRemoteDiscoveryMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__GetRemoteDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetRemoteDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetRemoteDiscoveryMode *p; - size_t k = sizeof(struct __tds__GetRemoteDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetRemoteDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetRemoteDiscoveryMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetRemoteDiscoveryMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetRemoteDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetRemoteDiscoveryMode(struct soap *soap, const struct __tds__GetRemoteDiscoveryMode *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetRemoteDiscoveryMode(soap, tag ? tag : "-tds:GetRemoteDiscoveryMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_get___tds__GetRemoteDiscoveryMode(struct soap *soap, struct __tds__GetRemoteDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetRemoteDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDiscoveryMode(struct soap *soap, struct __tds__SetDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetDiscoveryMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDiscoveryMode(struct soap *soap, const struct __tds__SetDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetDiscoveryMode(soap, &a->tds__SetDiscoveryMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDiscoveryMode(struct soap *soap, const char *tag, int id, const struct __tds__SetDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetDiscoveryMode(soap, "tds:SetDiscoveryMode", -1, &a->tds__SetDiscoveryMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDiscoveryMode * SOAP_FMAC4 soap_in___tds__SetDiscoveryMode(struct soap *soap, const char *tag, struct __tds__SetDiscoveryMode *a, const char *type) -{ - size_t soap_flag_tds__SetDiscoveryMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetDiscoveryMode*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetDiscoveryMode, sizeof(struct __tds__SetDiscoveryMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetDiscoveryMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetDiscoveryMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetDiscoveryMode(soap, "tds:SetDiscoveryMode", &a->tds__SetDiscoveryMode, "")) - { soap_flag_tds__SetDiscoveryMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__SetDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetDiscoveryMode *p; - size_t k = sizeof(struct __tds__SetDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetDiscoveryMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetDiscoveryMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDiscoveryMode(struct soap *soap, const struct __tds__SetDiscoveryMode *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetDiscoveryMode(soap, tag ? tag : "-tds:SetDiscoveryMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetDiscoveryMode * SOAP_FMAC4 soap_get___tds__SetDiscoveryMode(struct soap *soap, struct __tds__SetDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDiscoveryMode(struct soap *soap, struct __tds__GetDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDiscoveryMode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDiscoveryMode(struct soap *soap, const struct __tds__GetDiscoveryMode *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDiscoveryMode(soap, &a->tds__GetDiscoveryMode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDiscoveryMode(struct soap *soap, const char *tag, int id, const struct __tds__GetDiscoveryMode *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDiscoveryMode(soap, "tds:GetDiscoveryMode", -1, &a->tds__GetDiscoveryMode, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDiscoveryMode * SOAP_FMAC4 soap_in___tds__GetDiscoveryMode(struct soap *soap, const char *tag, struct __tds__GetDiscoveryMode *a, const char *type) -{ - size_t soap_flag_tds__GetDiscoveryMode = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDiscoveryMode*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDiscoveryMode, sizeof(struct __tds__GetDiscoveryMode), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDiscoveryMode(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDiscoveryMode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDiscoveryMode(soap, "tds:GetDiscoveryMode", &a->tds__GetDiscoveryMode, "")) - { soap_flag_tds__GetDiscoveryMode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__GetDiscoveryMode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDiscoveryMode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDiscoveryMode *p; - size_t k = sizeof(struct __tds__GetDiscoveryMode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDiscoveryMode, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDiscoveryMode); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDiscoveryMode, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDiscoveryMode location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDiscoveryMode(struct soap *soap, const struct __tds__GetDiscoveryMode *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDiscoveryMode(soap, tag ? tag : "-tds:GetDiscoveryMode", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDiscoveryMode * SOAP_FMAC4 soap_get___tds__GetDiscoveryMode(struct soap *soap, struct __tds__GetDiscoveryMode *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDiscoveryMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__RemoveScopes(struct soap *soap, struct __tds__RemoveScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__RemoveScopes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__RemoveScopes(struct soap *soap, const struct __tds__RemoveScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__RemoveScopes(soap, &a->tds__RemoveScopes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__RemoveScopes(struct soap *soap, const char *tag, int id, const struct __tds__RemoveScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__RemoveScopes(soap, "tds:RemoveScopes", -1, &a->tds__RemoveScopes, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__RemoveScopes * SOAP_FMAC4 soap_in___tds__RemoveScopes(struct soap *soap, const char *tag, struct __tds__RemoveScopes *a, const char *type) -{ - size_t soap_flag_tds__RemoveScopes = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__RemoveScopes*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__RemoveScopes, sizeof(struct __tds__RemoveScopes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__RemoveScopes(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__RemoveScopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__RemoveScopes(soap, "tds:RemoveScopes", &a->tds__RemoveScopes, "")) - { soap_flag_tds__RemoveScopes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__RemoveScopes * SOAP_FMAC2 soap_instantiate___tds__RemoveScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__RemoveScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__RemoveScopes *p; - size_t k = sizeof(struct __tds__RemoveScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__RemoveScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__RemoveScopes); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__RemoveScopes, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__RemoveScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__RemoveScopes(struct soap *soap, const struct __tds__RemoveScopes *a, const char *tag, const char *type) -{ - if (soap_out___tds__RemoveScopes(soap, tag ? tag : "-tds:RemoveScopes", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__RemoveScopes * SOAP_FMAC4 soap_get___tds__RemoveScopes(struct soap *soap, struct __tds__RemoveScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__RemoveScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__AddScopes(struct soap *soap, struct __tds__AddScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__AddScopes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__AddScopes(struct soap *soap, const struct __tds__AddScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__AddScopes(soap, &a->tds__AddScopes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__AddScopes(struct soap *soap, const char *tag, int id, const struct __tds__AddScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__AddScopes(soap, "tds:AddScopes", -1, &a->tds__AddScopes, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__AddScopes * SOAP_FMAC4 soap_in___tds__AddScopes(struct soap *soap, const char *tag, struct __tds__AddScopes *a, const char *type) -{ - size_t soap_flag_tds__AddScopes = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__AddScopes*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__AddScopes, sizeof(struct __tds__AddScopes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__AddScopes(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__AddScopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__AddScopes(soap, "tds:AddScopes", &a->tds__AddScopes, "")) - { soap_flag_tds__AddScopes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__AddScopes * SOAP_FMAC2 soap_instantiate___tds__AddScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__AddScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__AddScopes *p; - size_t k = sizeof(struct __tds__AddScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__AddScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__AddScopes); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__AddScopes, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__AddScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__AddScopes(struct soap *soap, const struct __tds__AddScopes *a, const char *tag, const char *type) -{ - if (soap_out___tds__AddScopes(soap, tag ? tag : "-tds:AddScopes", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__AddScopes * SOAP_FMAC4 soap_get___tds__AddScopes(struct soap *soap, struct __tds__AddScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__AddScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetScopes(struct soap *soap, struct __tds__SetScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetScopes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetScopes(struct soap *soap, const struct __tds__SetScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetScopes(soap, &a->tds__SetScopes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetScopes(struct soap *soap, const char *tag, int id, const struct __tds__SetScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetScopes(soap, "tds:SetScopes", -1, &a->tds__SetScopes, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetScopes * SOAP_FMAC4 soap_in___tds__SetScopes(struct soap *soap, const char *tag, struct __tds__SetScopes *a, const char *type) -{ - size_t soap_flag_tds__SetScopes = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetScopes*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetScopes, sizeof(struct __tds__SetScopes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetScopes(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetScopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetScopes(soap, "tds:SetScopes", &a->tds__SetScopes, "")) - { soap_flag_tds__SetScopes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetScopes * SOAP_FMAC2 soap_instantiate___tds__SetScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetScopes *p; - size_t k = sizeof(struct __tds__SetScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetScopes); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetScopes, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetScopes(struct soap *soap, const struct __tds__SetScopes *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetScopes(soap, tag ? tag : "-tds:SetScopes", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetScopes * SOAP_FMAC4 soap_get___tds__SetScopes(struct soap *soap, struct __tds__SetScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetScopes(struct soap *soap, struct __tds__GetScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetScopes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetScopes(struct soap *soap, const struct __tds__GetScopes *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetScopes(soap, &a->tds__GetScopes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetScopes(struct soap *soap, const char *tag, int id, const struct __tds__GetScopes *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetScopes(soap, "tds:GetScopes", -1, &a->tds__GetScopes, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetScopes * SOAP_FMAC4 soap_in___tds__GetScopes(struct soap *soap, const char *tag, struct __tds__GetScopes *a, const char *type) -{ - size_t soap_flag_tds__GetScopes = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetScopes*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetScopes, sizeof(struct __tds__GetScopes), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetScopes(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetScopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetScopes(soap, "tds:GetScopes", &a->tds__GetScopes, "")) - { soap_flag_tds__GetScopes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetScopes * SOAP_FMAC2 soap_instantiate___tds__GetScopes(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetScopes(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetScopes *p; - size_t k = sizeof(struct __tds__GetScopes); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetScopes, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetScopes); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetScopes, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetScopes location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetScopes(struct soap *soap, const struct __tds__GetScopes *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetScopes(soap, tag ? tag : "-tds:GetScopes", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetScopes * SOAP_FMAC4 soap_get___tds__GetScopes(struct soap *soap, struct __tds__GetScopes *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetScopes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemSupportInformation(struct soap *soap, struct __tds__GetSystemSupportInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetSystemSupportInformation = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemSupportInformation(struct soap *soap, const struct __tds__GetSystemSupportInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetSystemSupportInformation(soap, &a->tds__GetSystemSupportInformation); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemSupportInformation(struct soap *soap, const char *tag, int id, const struct __tds__GetSystemSupportInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetSystemSupportInformation(soap, "tds:GetSystemSupportInformation", -1, &a->tds__GetSystemSupportInformation, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemSupportInformation * SOAP_FMAC4 soap_in___tds__GetSystemSupportInformation(struct soap *soap, const char *tag, struct __tds__GetSystemSupportInformation *a, const char *type) -{ - size_t soap_flag_tds__GetSystemSupportInformation = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetSystemSupportInformation*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetSystemSupportInformation, sizeof(struct __tds__GetSystemSupportInformation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetSystemSupportInformation(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetSystemSupportInformation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetSystemSupportInformation(soap, "tds:GetSystemSupportInformation", &a->tds__GetSystemSupportInformation, "")) - { soap_flag_tds__GetSystemSupportInformation--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetSystemSupportInformation * SOAP_FMAC2 soap_instantiate___tds__GetSystemSupportInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetSystemSupportInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetSystemSupportInformation *p; - size_t k = sizeof(struct __tds__GetSystemSupportInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetSystemSupportInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetSystemSupportInformation); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetSystemSupportInformation, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetSystemSupportInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemSupportInformation(struct soap *soap, const struct __tds__GetSystemSupportInformation *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetSystemSupportInformation(soap, tag ? tag : "-tds:GetSystemSupportInformation", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemSupportInformation * SOAP_FMAC4 soap_get___tds__GetSystemSupportInformation(struct soap *soap, struct __tds__GetSystemSupportInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetSystemSupportInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemLog(struct soap *soap, struct __tds__GetSystemLog *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetSystemLog = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemLog(struct soap *soap, const struct __tds__GetSystemLog *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetSystemLog(soap, &a->tds__GetSystemLog); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemLog(struct soap *soap, const char *tag, int id, const struct __tds__GetSystemLog *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetSystemLog(soap, "tds:GetSystemLog", -1, &a->tds__GetSystemLog, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemLog * SOAP_FMAC4 soap_in___tds__GetSystemLog(struct soap *soap, const char *tag, struct __tds__GetSystemLog *a, const char *type) -{ - size_t soap_flag_tds__GetSystemLog = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetSystemLog*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetSystemLog, sizeof(struct __tds__GetSystemLog), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetSystemLog(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetSystemLog && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetSystemLog(soap, "tds:GetSystemLog", &a->tds__GetSystemLog, "")) - { soap_flag_tds__GetSystemLog--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetSystemLog * SOAP_FMAC2 soap_instantiate___tds__GetSystemLog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetSystemLog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetSystemLog *p; - size_t k = sizeof(struct __tds__GetSystemLog); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetSystemLog, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetSystemLog); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetSystemLog, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetSystemLog location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemLog(struct soap *soap, const struct __tds__GetSystemLog *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetSystemLog(soap, tag ? tag : "-tds:GetSystemLog", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemLog * SOAP_FMAC4 soap_get___tds__GetSystemLog(struct soap *soap, struct __tds__GetSystemLog *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetSystemLog(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemBackup(struct soap *soap, struct __tds__GetSystemBackup *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetSystemBackup = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemBackup(struct soap *soap, const struct __tds__GetSystemBackup *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetSystemBackup(soap, &a->tds__GetSystemBackup); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemBackup(struct soap *soap, const char *tag, int id, const struct __tds__GetSystemBackup *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetSystemBackup(soap, "tds:GetSystemBackup", -1, &a->tds__GetSystemBackup, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemBackup * SOAP_FMAC4 soap_in___tds__GetSystemBackup(struct soap *soap, const char *tag, struct __tds__GetSystemBackup *a, const char *type) -{ - size_t soap_flag_tds__GetSystemBackup = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetSystemBackup*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetSystemBackup, sizeof(struct __tds__GetSystemBackup), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetSystemBackup(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetSystemBackup && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetSystemBackup(soap, "tds:GetSystemBackup", &a->tds__GetSystemBackup, "")) - { soap_flag_tds__GetSystemBackup--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetSystemBackup * SOAP_FMAC2 soap_instantiate___tds__GetSystemBackup(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetSystemBackup(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetSystemBackup *p; - size_t k = sizeof(struct __tds__GetSystemBackup); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetSystemBackup, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetSystemBackup); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetSystemBackup, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetSystemBackup location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemBackup(struct soap *soap, const struct __tds__GetSystemBackup *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetSystemBackup(soap, tag ? tag : "-tds:GetSystemBackup", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemBackup * SOAP_FMAC4 soap_get___tds__GetSystemBackup(struct soap *soap, struct __tds__GetSystemBackup *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetSystemBackup(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__RestoreSystem(struct soap *soap, struct __tds__RestoreSystem *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__RestoreSystem = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__RestoreSystem(struct soap *soap, const struct __tds__RestoreSystem *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__RestoreSystem(soap, &a->tds__RestoreSystem); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__RestoreSystem(struct soap *soap, const char *tag, int id, const struct __tds__RestoreSystem *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__RestoreSystem(soap, "tds:RestoreSystem", -1, &a->tds__RestoreSystem, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__RestoreSystem * SOAP_FMAC4 soap_in___tds__RestoreSystem(struct soap *soap, const char *tag, struct __tds__RestoreSystem *a, const char *type) -{ - size_t soap_flag_tds__RestoreSystem = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__RestoreSystem*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__RestoreSystem, sizeof(struct __tds__RestoreSystem), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__RestoreSystem(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__RestoreSystem && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__RestoreSystem(soap, "tds:RestoreSystem", &a->tds__RestoreSystem, "")) - { soap_flag_tds__RestoreSystem--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__RestoreSystem * SOAP_FMAC2 soap_instantiate___tds__RestoreSystem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__RestoreSystem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__RestoreSystem *p; - size_t k = sizeof(struct __tds__RestoreSystem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__RestoreSystem, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__RestoreSystem); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__RestoreSystem, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__RestoreSystem location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__RestoreSystem(struct soap *soap, const struct __tds__RestoreSystem *a, const char *tag, const char *type) -{ - if (soap_out___tds__RestoreSystem(soap, tag ? tag : "-tds:RestoreSystem", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__RestoreSystem * SOAP_FMAC4 soap_get___tds__RestoreSystem(struct soap *soap, struct __tds__RestoreSystem *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__RestoreSystem(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SystemReboot(struct soap *soap, struct __tds__SystemReboot *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SystemReboot = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SystemReboot(struct soap *soap, const struct __tds__SystemReboot *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SystemReboot(soap, &a->tds__SystemReboot); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SystemReboot(struct soap *soap, const char *tag, int id, const struct __tds__SystemReboot *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SystemReboot(soap, "tds:SystemReboot", -1, &a->tds__SystemReboot, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SystemReboot * SOAP_FMAC4 soap_in___tds__SystemReboot(struct soap *soap, const char *tag, struct __tds__SystemReboot *a, const char *type) -{ - size_t soap_flag_tds__SystemReboot = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SystemReboot*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SystemReboot, sizeof(struct __tds__SystemReboot), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SystemReboot(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SystemReboot && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SystemReboot(soap, "tds:SystemReboot", &a->tds__SystemReboot, "")) - { soap_flag_tds__SystemReboot--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SystemReboot * SOAP_FMAC2 soap_instantiate___tds__SystemReboot(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SystemReboot(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SystemReboot *p; - size_t k = sizeof(struct __tds__SystemReboot); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SystemReboot, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SystemReboot); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SystemReboot, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SystemReboot location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SystemReboot(struct soap *soap, const struct __tds__SystemReboot *a, const char *tag, const char *type) -{ - if (soap_out___tds__SystemReboot(soap, tag ? tag : "-tds:SystemReboot", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SystemReboot * SOAP_FMAC4 soap_get___tds__SystemReboot(struct soap *soap, struct __tds__SystemReboot *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SystemReboot(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__UpgradeSystemFirmware(struct soap *soap, struct __tds__UpgradeSystemFirmware *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__UpgradeSystemFirmware = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__UpgradeSystemFirmware(struct soap *soap, const struct __tds__UpgradeSystemFirmware *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__UpgradeSystemFirmware(soap, &a->tds__UpgradeSystemFirmware); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__UpgradeSystemFirmware(struct soap *soap, const char *tag, int id, const struct __tds__UpgradeSystemFirmware *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__UpgradeSystemFirmware(soap, "tds:UpgradeSystemFirmware", -1, &a->tds__UpgradeSystemFirmware, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_in___tds__UpgradeSystemFirmware(struct soap *soap, const char *tag, struct __tds__UpgradeSystemFirmware *a, const char *type) -{ - size_t soap_flag_tds__UpgradeSystemFirmware = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__UpgradeSystemFirmware*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__UpgradeSystemFirmware, sizeof(struct __tds__UpgradeSystemFirmware), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__UpgradeSystemFirmware(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__UpgradeSystemFirmware && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__UpgradeSystemFirmware(soap, "tds:UpgradeSystemFirmware", &a->tds__UpgradeSystemFirmware, "")) - { soap_flag_tds__UpgradeSystemFirmware--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__UpgradeSystemFirmware * SOAP_FMAC2 soap_instantiate___tds__UpgradeSystemFirmware(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__UpgradeSystemFirmware(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__UpgradeSystemFirmware *p; - size_t k = sizeof(struct __tds__UpgradeSystemFirmware); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__UpgradeSystemFirmware, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__UpgradeSystemFirmware); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__UpgradeSystemFirmware, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__UpgradeSystemFirmware location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__UpgradeSystemFirmware(struct soap *soap, const struct __tds__UpgradeSystemFirmware *a, const char *tag, const char *type) -{ - if (soap_out___tds__UpgradeSystemFirmware(soap, tag ? tag : "-tds:UpgradeSystemFirmware", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_get___tds__UpgradeSystemFirmware(struct soap *soap, struct __tds__UpgradeSystemFirmware *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__UpgradeSystemFirmware(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetSystemFactoryDefault(struct soap *soap, struct __tds__SetSystemFactoryDefault *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetSystemFactoryDefault = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetSystemFactoryDefault(struct soap *soap, const struct __tds__SetSystemFactoryDefault *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetSystemFactoryDefault(soap, &a->tds__SetSystemFactoryDefault); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetSystemFactoryDefault(struct soap *soap, const char *tag, int id, const struct __tds__SetSystemFactoryDefault *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetSystemFactoryDefault(soap, "tds:SetSystemFactoryDefault", -1, &a->tds__SetSystemFactoryDefault, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_in___tds__SetSystemFactoryDefault(struct soap *soap, const char *tag, struct __tds__SetSystemFactoryDefault *a, const char *type) -{ - size_t soap_flag_tds__SetSystemFactoryDefault = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetSystemFactoryDefault*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetSystemFactoryDefault, sizeof(struct __tds__SetSystemFactoryDefault), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetSystemFactoryDefault(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetSystemFactoryDefault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetSystemFactoryDefault(soap, "tds:SetSystemFactoryDefault", &a->tds__SetSystemFactoryDefault, "")) - { soap_flag_tds__SetSystemFactoryDefault--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetSystemFactoryDefault * SOAP_FMAC2 soap_instantiate___tds__SetSystemFactoryDefault(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetSystemFactoryDefault(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetSystemFactoryDefault *p; - size_t k = sizeof(struct __tds__SetSystemFactoryDefault); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetSystemFactoryDefault, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetSystemFactoryDefault); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetSystemFactoryDefault, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetSystemFactoryDefault location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetSystemFactoryDefault(struct soap *soap, const struct __tds__SetSystemFactoryDefault *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetSystemFactoryDefault(soap, tag ? tag : "-tds:SetSystemFactoryDefault", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_get___tds__SetSystemFactoryDefault(struct soap *soap, struct __tds__SetSystemFactoryDefault *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetSystemFactoryDefault(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemDateAndTime(struct soap *soap, struct __tds__GetSystemDateAndTime *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetSystemDateAndTime = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemDateAndTime(struct soap *soap, const struct __tds__GetSystemDateAndTime *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetSystemDateAndTime(soap, &a->tds__GetSystemDateAndTime); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemDateAndTime(struct soap *soap, const char *tag, int id, const struct __tds__GetSystemDateAndTime *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetSystemDateAndTime(soap, "tds:GetSystemDateAndTime", -1, &a->tds__GetSystemDateAndTime, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemDateAndTime * SOAP_FMAC4 soap_in___tds__GetSystemDateAndTime(struct soap *soap, const char *tag, struct __tds__GetSystemDateAndTime *a, const char *type) -{ - size_t soap_flag_tds__GetSystemDateAndTime = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetSystemDateAndTime*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetSystemDateAndTime, sizeof(struct __tds__GetSystemDateAndTime), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetSystemDateAndTime(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetSystemDateAndTime && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetSystemDateAndTime(soap, "tds:GetSystemDateAndTime", &a->tds__GetSystemDateAndTime, "")) - { soap_flag_tds__GetSystemDateAndTime--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetSystemDateAndTime * SOAP_FMAC2 soap_instantiate___tds__GetSystemDateAndTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetSystemDateAndTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetSystemDateAndTime *p; - size_t k = sizeof(struct __tds__GetSystemDateAndTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetSystemDateAndTime, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetSystemDateAndTime); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetSystemDateAndTime, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetSystemDateAndTime location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemDateAndTime(struct soap *soap, const struct __tds__GetSystemDateAndTime *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetSystemDateAndTime(soap, tag ? tag : "-tds:GetSystemDateAndTime", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetSystemDateAndTime * SOAP_FMAC4 soap_get___tds__GetSystemDateAndTime(struct soap *soap, struct __tds__GetSystemDateAndTime *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetSystemDateAndTime(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetSystemDateAndTime(struct soap *soap, struct __tds__SetSystemDateAndTime *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__SetSystemDateAndTime = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetSystemDateAndTime(struct soap *soap, const struct __tds__SetSystemDateAndTime *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__SetSystemDateAndTime(soap, &a->tds__SetSystemDateAndTime); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetSystemDateAndTime(struct soap *soap, const char *tag, int id, const struct __tds__SetSystemDateAndTime *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__SetSystemDateAndTime(soap, "tds:SetSystemDateAndTime", -1, &a->tds__SetSystemDateAndTime, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetSystemDateAndTime * SOAP_FMAC4 soap_in___tds__SetSystemDateAndTime(struct soap *soap, const char *tag, struct __tds__SetSystemDateAndTime *a, const char *type) -{ - size_t soap_flag_tds__SetSystemDateAndTime = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__SetSystemDateAndTime*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__SetSystemDateAndTime, sizeof(struct __tds__SetSystemDateAndTime), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__SetSystemDateAndTime(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__SetSystemDateAndTime && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__SetSystemDateAndTime(soap, "tds:SetSystemDateAndTime", &a->tds__SetSystemDateAndTime, "")) - { soap_flag_tds__SetSystemDateAndTime--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__SetSystemDateAndTime * SOAP_FMAC2 soap_instantiate___tds__SetSystemDateAndTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__SetSystemDateAndTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__SetSystemDateAndTime *p; - size_t k = sizeof(struct __tds__SetSystemDateAndTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__SetSystemDateAndTime, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__SetSystemDateAndTime); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__SetSystemDateAndTime, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__SetSystemDateAndTime location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetSystemDateAndTime(struct soap *soap, const struct __tds__SetSystemDateAndTime *a, const char *tag, const char *type) -{ - if (soap_out___tds__SetSystemDateAndTime(soap, tag ? tag : "-tds:SetSystemDateAndTime", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__SetSystemDateAndTime * SOAP_FMAC4 soap_get___tds__SetSystemDateAndTime(struct soap *soap, struct __tds__SetSystemDateAndTime *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__SetSystemDateAndTime(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDeviceInformation(struct soap *soap, struct __tds__GetDeviceInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetDeviceInformation = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDeviceInformation(struct soap *soap, const struct __tds__GetDeviceInformation *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetDeviceInformation(soap, &a->tds__GetDeviceInformation); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDeviceInformation(struct soap *soap, const char *tag, int id, const struct __tds__GetDeviceInformation *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetDeviceInformation(soap, "tds:GetDeviceInformation", -1, &a->tds__GetDeviceInformation, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDeviceInformation * SOAP_FMAC4 soap_in___tds__GetDeviceInformation(struct soap *soap, const char *tag, struct __tds__GetDeviceInformation *a, const char *type) -{ - size_t soap_flag_tds__GetDeviceInformation = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetDeviceInformation*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetDeviceInformation, sizeof(struct __tds__GetDeviceInformation), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetDeviceInformation(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetDeviceInformation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetDeviceInformation(soap, "tds:GetDeviceInformation", &a->tds__GetDeviceInformation, "")) - { soap_flag_tds__GetDeviceInformation--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetDeviceInformation * SOAP_FMAC2 soap_instantiate___tds__GetDeviceInformation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetDeviceInformation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetDeviceInformation *p; - size_t k = sizeof(struct __tds__GetDeviceInformation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetDeviceInformation, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetDeviceInformation); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetDeviceInformation, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetDeviceInformation location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDeviceInformation(struct soap *soap, const struct __tds__GetDeviceInformation *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetDeviceInformation(soap, tag ? tag : "-tds:GetDeviceInformation", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetDeviceInformation * SOAP_FMAC4 soap_get___tds__GetDeviceInformation(struct soap *soap, struct __tds__GetDeviceInformation *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetDeviceInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetServiceCapabilities(struct soap *soap, struct __tds__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetServiceCapabilities = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetServiceCapabilities(struct soap *soap, const struct __tds__GetServiceCapabilities *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetServiceCapabilities(soap, &a->tds__GetServiceCapabilities); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetServiceCapabilities(struct soap *soap, const char *tag, int id, const struct __tds__GetServiceCapabilities *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetServiceCapabilities(soap, "tds:GetServiceCapabilities", -1, &a->tds__GetServiceCapabilities, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetServiceCapabilities * SOAP_FMAC4 soap_in___tds__GetServiceCapabilities(struct soap *soap, const char *tag, struct __tds__GetServiceCapabilities *a, const char *type) -{ - size_t soap_flag_tds__GetServiceCapabilities = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetServiceCapabilities*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetServiceCapabilities, sizeof(struct __tds__GetServiceCapabilities), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetServiceCapabilities(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetServiceCapabilities && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetServiceCapabilities(soap, "tds:GetServiceCapabilities", &a->tds__GetServiceCapabilities, "")) - { soap_flag_tds__GetServiceCapabilities--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tds__GetServiceCapabilities(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetServiceCapabilities(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetServiceCapabilities *p; - size_t k = sizeof(struct __tds__GetServiceCapabilities); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetServiceCapabilities, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetServiceCapabilities); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetServiceCapabilities, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetServiceCapabilities location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetServiceCapabilities(struct soap *soap, const struct __tds__GetServiceCapabilities *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetServiceCapabilities(soap, tag ? tag : "-tds:GetServiceCapabilities", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetServiceCapabilities * SOAP_FMAC4 soap_get___tds__GetServiceCapabilities(struct soap *soap, struct __tds__GetServiceCapabilities *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetServices(struct soap *soap, struct __tds__GetServices *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->tds__GetServices = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetServices(struct soap *soap, const struct __tds__GetServices *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_tds__GetServices(soap, &a->tds__GetServices); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetServices(struct soap *soap, const char *tag, int id, const struct __tds__GetServices *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTo_tds__GetServices(soap, "tds:GetServices", -1, &a->tds__GetServices, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetServices * SOAP_FMAC4 soap_in___tds__GetServices(struct soap *soap, const char *tag, struct __tds__GetServices *a, const char *type) -{ - size_t soap_flag_tds__GetServices = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tds__GetServices*)soap_id_enter(soap, "", a, SOAP_TYPE___tds__GetServices, sizeof(struct __tds__GetServices), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tds__GetServices(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_tds__GetServices && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tds__GetServices(soap, "tds:GetServices", &a->tds__GetServices, "")) - { soap_flag_tds__GetServices--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __tds__GetServices * SOAP_FMAC2 soap_instantiate___tds__GetServices(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tds__GetServices(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tds__GetServices *p; - size_t k = sizeof(struct __tds__GetServices); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tds__GetServices, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tds__GetServices); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tds__GetServices, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tds__GetServices location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetServices(struct soap *soap, const struct __tds__GetServices *a, const char *tag, const char *type) -{ - if (soap_out___tds__GetServices(soap, tag ? tag : "-tds:GetServices", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tds__GetServices * SOAP_FMAC4 soap_get___tds__GetServices(struct soap *soap, struct __tds__GetServices *p, const char *tag, const char *type) -{ - if ((p = soap_in___tds__GetServices(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetConfigurationResponse_sequence(struct soap *soap, struct __tptz__SetConfigurationResponse_sequence *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetConfigurationResponse_sequence(struct soap *soap, const struct __tptz__SetConfigurationResponse_sequence *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetConfigurationResponse_sequence(struct soap *soap, const char *tag, int id, const struct __tptz__SetConfigurationResponse_sequence *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetConfigurationResponse_sequence * SOAP_FMAC4 soap_in___tptz__SetConfigurationResponse_sequence(struct soap *soap, const char *tag, struct __tptz__SetConfigurationResponse_sequence *a, const char *type) -{ - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __tptz__SetConfigurationResponse_sequence*)soap_id_enter(soap, "", a, SOAP_TYPE___tptz__SetConfigurationResponse_sequence, sizeof(struct __tptz__SetConfigurationResponse_sequence), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___tptz__SetConfigurationResponse_sequence(soap, a); - soap->error = SOAP_TAG_MISMATCH; - a = NULL; - return a; -} - -SOAP_FMAC1 struct __tptz__SetConfigurationResponse_sequence * SOAP_FMAC2 soap_instantiate___tptz__SetConfigurationResponse_sequence(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___tptz__SetConfigurationResponse_sequence(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __tptz__SetConfigurationResponse_sequence *p; - size_t k = sizeof(struct __tptz__SetConfigurationResponse_sequence); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___tptz__SetConfigurationResponse_sequence, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __tptz__SetConfigurationResponse_sequence); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __tptz__SetConfigurationResponse_sequence, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __tptz__SetConfigurationResponse_sequence location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetConfigurationResponse_sequence(struct soap *soap, const struct __tptz__SetConfigurationResponse_sequence *a, const char *tag, const char *type) -{ - if (soap_out___tptz__SetConfigurationResponse_sequence(soap, tag ? tag : "-tptz:SetConfigurationResponse-sequence", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __tptz__SetConfigurationResponse_sequence * SOAP_FMAC4 soap_get___tptz__SetConfigurationResponse_sequence(struct soap *soap, struct __tptz__SetConfigurationResponse_sequence *p, const char *tag, const char *type) -{ - if ((p = soap_in___tptz__SetConfigurationResponse_sequence(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_chan__ChannelInstanceType(struct soap *soap, struct chan__ChannelInstanceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_int(soap, &a->__item); - a->wsa5__IsReferenceParameter = (enum _wsa5__IsReferenceParameter)0; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_chan__ChannelInstanceType(struct soap *soap, const struct chan__ChannelInstanceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &a->__item, SOAP_TYPE_int); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_chan__ChannelInstanceType(struct soap *soap, const char *tag, int id, const struct chan__ChannelInstanceType *a, const char *type) -{ - if (a->wsa5__IsReferenceParameter != (enum _wsa5__IsReferenceParameter)0) - { soap_set_attr(soap, "wsa5:IsReferenceParameter", soap__wsa5__IsReferenceParameter2s(soap, a->wsa5__IsReferenceParameter), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_int(soap, tag, id, &a->__item, ""); -} - -SOAP_FMAC3 struct chan__ChannelInstanceType * SOAP_FMAC4 soap_in_chan__ChannelInstanceType(struct soap *soap, const char *tag, struct chan__ChannelInstanceType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct chan__ChannelInstanceType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_chan__ChannelInstanceType, sizeof(struct chan__ChannelInstanceType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_chan__ChannelInstanceType(soap, a); - if (soap_s2_wsa5__IsReferenceParameter(soap, soap_attr_value(soap, "wsa5:IsReferenceParameter", 5, 0), &a->wsa5__IsReferenceParameter)) - return NULL; - if (!soap_in_int(soap, tag, &a->__item, "chan:ChannelInstanceType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct chan__ChannelInstanceType * SOAP_FMAC2 soap_instantiate_chan__ChannelInstanceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_chan__ChannelInstanceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct chan__ChannelInstanceType *p; - size_t k = sizeof(struct chan__ChannelInstanceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_chan__ChannelInstanceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct chan__ChannelInstanceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct chan__ChannelInstanceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct chan__ChannelInstanceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_chan__ChannelInstanceType(struct soap *soap, const struct chan__ChannelInstanceType *a, const char *tag, const char *type) -{ - if (soap_out_chan__ChannelInstanceType(soap, tag ? tag : "chan:ChannelInstanceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct chan__ChannelInstanceType * SOAP_FMAC4 soap_get_chan__ChannelInstanceType(struct soap *soap, struct chan__ChannelInstanceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_chan__ChannelInstanceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__ProblemAction(struct soap *soap, const struct wsa5__ProblemActionType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__ProblemAction(soap, tag ? tag : "wsa5:ProblemAction", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__FaultTo(struct soap *soap, const struct wsa5__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__FaultTo(soap, tag ? tag : "wsa5:FaultTo", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__From(struct soap *soap, const struct wsa5__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__From(soap, tag ? tag : "wsa5:From", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__ReplyTo(struct soap *soap, const struct wsa5__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__ReplyTo(soap, tag ? tag : "wsa5:ReplyTo", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__RelatesTo(struct soap *soap, const struct wsa5__RelatesToType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__RelatesTo(soap, tag ? tag : "wsa5:RelatesTo", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__Metadata(struct soap *soap, const struct wsa5__MetadataType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__Metadata(soap, tag ? tag : "wsa5:Metadata", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__ReferenceParameters(struct soap *soap, const struct wsa5__ReferenceParametersType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__ReferenceParameters(soap, tag ? tag : "wsa5:ReferenceParameters", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__EndpointReference(struct soap *soap, const struct wsa5__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa5__EndpointReference(soap, tag ? tag : "wsa5:EndpointReference", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__ProblemActionType(struct soap *soap, struct wsa5__ProblemActionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Action); - soap_default_string(soap, &a->SoapAction); - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__ProblemActionType(struct soap *soap, const struct wsa5__ProblemActionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->Action); - soap_serialize_string(soap, (char*const*)&a->SoapAction); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__ProblemActionType(struct soap *soap, const char *tag, int id, const struct wsa5__ProblemActionType *a, const char *type) -{ - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa5__ProblemActionType), type)) - return soap->error; - if (soap_out_string(soap, "wsa5:Action", -1, (char*const*)&a->Action, "")) - return soap->error; - if (soap_out_string(soap, "wsa5:SoapAction", -1, (char*const*)&a->SoapAction, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsa5__ProblemActionType * SOAP_FMAC4 soap_in_wsa5__ProblemActionType(struct soap *soap, const char *tag, struct wsa5__ProblemActionType *a, const char *type) -{ - size_t soap_flag_Action = 1; - size_t soap_flag_SoapAction = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsa5__ProblemActionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__ProblemActionType, sizeof(struct wsa5__ProblemActionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsa5__ProblemActionType(soap, a); - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Action && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsa5:Action", (char**)&a->Action, "xsd:string")) - { soap_flag_Action--; - continue; - } - } - if (soap_flag_SoapAction && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsa5:SoapAction", (char**)&a->SoapAction, "xsd:string")) - { soap_flag_SoapAction--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsa5__ProblemActionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa5__ProblemActionType, SOAP_TYPE_wsa5__ProblemActionType, sizeof(struct wsa5__ProblemActionType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsa5__ProblemActionType * SOAP_FMAC2 soap_instantiate_wsa5__ProblemActionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa5__ProblemActionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa5__ProblemActionType *p; - size_t k = sizeof(struct wsa5__ProblemActionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa5__ProblemActionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa5__ProblemActionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa5__ProblemActionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa5__ProblemActionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__ProblemActionType(struct soap *soap, const struct wsa5__ProblemActionType *a, const char *tag, const char *type) -{ - if (soap_out_wsa5__ProblemActionType(soap, tag ? tag : "wsa5:ProblemActionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa5__ProblemActionType * SOAP_FMAC4 soap_get_wsa5__ProblemActionType(struct soap *soap, struct wsa5__ProblemActionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__ProblemActionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__RelatesToType(struct soap *soap, struct wsa5__RelatesToType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_wsa5__RelationshipTypeOpenEnum(soap, &a->RelationshipType); - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__RelatesToType(struct soap *soap, const struct wsa5__RelatesToType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__RelatesToType(struct soap *soap, const char *tag, int id, const struct wsa5__RelatesToType *a, const char *type) -{ - if (a->RelationshipType) - soap_set_attr(soap, "RelationshipType", soap_wsa5__RelationshipTypeOpenEnum2s(soap, a->RelationshipType), 1); - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct wsa5__RelatesToType * SOAP_FMAC4 soap_in_wsa5__RelatesToType(struct soap *soap, const char *tag, struct wsa5__RelatesToType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct wsa5__RelatesToType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__RelatesToType, sizeof(struct wsa5__RelatesToType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_wsa5__RelatesToType(soap, a); - if (soap_s2wsa5__RelationshipTypeOpenEnum(soap, soap_attr_value(soap, "RelationshipType", 1, 0), &a->RelationshipType)) - return NULL; - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "wsa5:RelatesToType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct wsa5__RelatesToType * SOAP_FMAC2 soap_instantiate_wsa5__RelatesToType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa5__RelatesToType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa5__RelatesToType *p; - size_t k = sizeof(struct wsa5__RelatesToType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa5__RelatesToType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa5__RelatesToType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa5__RelatesToType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa5__RelatesToType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__RelatesToType(struct soap *soap, const struct wsa5__RelatesToType *a, const char *tag, const char *type) -{ - if (soap_out_wsa5__RelatesToType(soap, tag ? tag : "wsa5:RelatesToType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa5__RelatesToType * SOAP_FMAC4 soap_get_wsa5__RelatesToType(struct soap *soap, struct wsa5__RelatesToType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__RelatesToType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__MetadataType(struct soap *soap, struct wsa5__MetadataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size = 0; - a->__any = NULL; - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__MetadataType(struct soap *soap, const struct wsa5__MetadataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__MetadataType(struct soap *soap, const char *tag, int id, const struct wsa5__MetadataType *a, const char *type) -{ - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa5__MetadataType), type)) - return soap->error; - if (a->__any) - { int i; - for (i = 0; i < (int)a->__size; i++) - if (soap_outliteral(soap, "-any", (char*const*)(a->__any + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsa5__MetadataType * SOAP_FMAC4 soap_in_wsa5__MetadataType(struct soap *soap, const char *tag, struct wsa5__MetadataType *a, const char *type) -{ - struct soap_blist *soap_blist___any = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsa5__MetadataType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__MetadataType, sizeof(struct wsa5__MetadataType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsa5__MetadataType(soap, a); - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__any == NULL) - { if (soap_blist___any == NULL) - soap_blist___any = soap_alloc_block(soap); - a->__any = (char **)soap_push_block_max(soap, soap_blist___any, sizeof(char *)); - if (a->__any == NULL) - return NULL; - *a->__any = NULL; - } - if (soap_inliteral(soap, "-any", (char**)a->__any)) - { a->__size++; - a->__any = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__any) - soap_pop_block(soap, soap_blist___any); - if (a->__size) - { a->__any = (char **)soap_save_block(soap, soap_blist___any, NULL, 1); - } - else - { a->__any = NULL; - if (soap_blist___any) - soap_end_block(soap, soap_blist___any); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsa5__MetadataType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa5__MetadataType, SOAP_TYPE_wsa5__MetadataType, sizeof(struct wsa5__MetadataType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsa5__MetadataType * SOAP_FMAC2 soap_instantiate_wsa5__MetadataType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa5__MetadataType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa5__MetadataType *p; - size_t k = sizeof(struct wsa5__MetadataType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa5__MetadataType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa5__MetadataType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa5__MetadataType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa5__MetadataType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__MetadataType(struct soap *soap, const struct wsa5__MetadataType *a, const char *tag, const char *type) -{ - if (soap_out_wsa5__MetadataType(soap, tag ? tag : "wsa5:MetadataType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa5__MetadataType * SOAP_FMAC4 soap_get_wsa5__MetadataType(struct soap *soap, struct wsa5__MetadataType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__MetadataType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__ReferenceParametersType(struct soap *soap, struct wsa5__ReferenceParametersType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->chan__ChannelInstance = NULL; - a->__size = 0; - a->__any = NULL; - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__ReferenceParametersType(struct soap *soap, const struct wsa5__ReferenceParametersType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &a->chan__ChannelInstance); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__ReferenceParametersType(struct soap *soap, const char *tag, int id, const struct wsa5__ReferenceParametersType *a, const char *type) -{ - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa5__ReferenceParametersType), type)) - return soap->error; - if (soap_out_PointerToint(soap, "chan:ChannelInstance", -1, &a->chan__ChannelInstance, "")) - return soap->error; - if (a->__any) - { int i; - for (i = 0; i < (int)a->__size; i++) - if (soap_outliteral(soap, "-any", (char*const*)(a->__any + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsa5__ReferenceParametersType * SOAP_FMAC4 soap_in_wsa5__ReferenceParametersType(struct soap *soap, const char *tag, struct wsa5__ReferenceParametersType *a, const char *type) -{ - size_t soap_flag_chan__ChannelInstance = 1; - struct soap_blist *soap_blist___any = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsa5__ReferenceParametersType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__ReferenceParametersType, sizeof(struct wsa5__ReferenceParametersType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsa5__ReferenceParametersType(soap, a); - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_chan__ChannelInstance && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "chan:ChannelInstance", &a->chan__ChannelInstance, "xsd:int")) - { soap_flag_chan__ChannelInstance--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__any == NULL) - { if (soap_blist___any == NULL) - soap_blist___any = soap_alloc_block(soap); - a->__any = (char **)soap_push_block_max(soap, soap_blist___any, sizeof(char *)); - if (a->__any == NULL) - return NULL; - *a->__any = NULL; - } - if (soap_inliteral(soap, "-any", (char**)a->__any)) - { a->__size++; - a->__any = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__any) - soap_pop_block(soap, soap_blist___any); - if (a->__size) - { a->__any = (char **)soap_save_block(soap, soap_blist___any, NULL, 1); - } - else - { a->__any = NULL; - if (soap_blist___any) - soap_end_block(soap, soap_blist___any); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsa5__ReferenceParametersType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa5__ReferenceParametersType, SOAP_TYPE_wsa5__ReferenceParametersType, sizeof(struct wsa5__ReferenceParametersType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsa5__ReferenceParametersType * SOAP_FMAC2 soap_instantiate_wsa5__ReferenceParametersType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa5__ReferenceParametersType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa5__ReferenceParametersType *p; - size_t k = sizeof(struct wsa5__ReferenceParametersType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa5__ReferenceParametersType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa5__ReferenceParametersType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa5__ReferenceParametersType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa5__ReferenceParametersType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__ReferenceParametersType(struct soap *soap, const struct wsa5__ReferenceParametersType *a, const char *tag, const char *type) -{ - if (soap_out_wsa5__ReferenceParametersType(soap, tag ? tag : "wsa5:ReferenceParametersType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa5__ReferenceParametersType * SOAP_FMAC4 soap_get_wsa5__ReferenceParametersType(struct soap *soap, struct wsa5__ReferenceParametersType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__ReferenceParametersType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__EndpointReferenceType(struct soap *soap, struct wsa5__EndpointReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Address); - a->ReferenceParameters = NULL; - a->Metadata = NULL; - a->__size = 0; - a->__any = NULL; - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__EndpointReferenceType(struct soap *soap, const struct wsa5__EndpointReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->Address); - soap_serialize_PointerTowsa5__ReferenceParametersType(soap, &a->ReferenceParameters); - soap_serialize_PointerTowsa5__MetadataType(soap, &a->Metadata); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__EndpointReferenceType(struct soap *soap, const char *tag, int id, const struct wsa5__EndpointReferenceType *a, const char *type) -{ - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa5__EndpointReferenceType), type)) - return soap->error; - if (!a->Address) - { if (soap_element_empty(soap, "wsa5:Address", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "wsa5:Address", -1, (char*const*)&a->Address, "")) - return soap->error; - if (soap_out_PointerTowsa5__ReferenceParametersType(soap, "wsa5:ReferenceParameters", -1, &a->ReferenceParameters, "")) - return soap->error; - if (soap_out_PointerTowsa5__MetadataType(soap, "wsa5:Metadata", -1, &a->Metadata, "")) - return soap->error; - if (a->__any) - { int i; - for (i = 0; i < (int)a->__size; i++) - if (soap_outliteral(soap, "-any", (char*const*)(a->__any + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsa5__EndpointReferenceType * SOAP_FMAC4 soap_in_wsa5__EndpointReferenceType(struct soap *soap, const char *tag, struct wsa5__EndpointReferenceType *a, const char *type) -{ - size_t soap_flag_Address = 1; - size_t soap_flag_ReferenceParameters = 1; - size_t soap_flag_Metadata = 1; - struct soap_blist *soap_blist___any = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsa5__EndpointReferenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa5__EndpointReferenceType, sizeof(struct wsa5__EndpointReferenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsa5__EndpointReferenceType(soap, a); - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Address && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsa5:Address", (char**)&a->Address, "xsd:string")) - { soap_flag_Address--; - continue; - } - } - if (soap_flag_ReferenceParameters && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__ReferenceParametersType(soap, "wsa5:ReferenceParameters", &a->ReferenceParameters, "wsa5:ReferenceParametersType")) - { soap_flag_ReferenceParameters--; - continue; - } - } - if (soap_flag_Metadata && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa5__MetadataType(soap, "wsa5:Metadata", &a->Metadata, "wsa5:MetadataType")) - { soap_flag_Metadata--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__any == NULL) - { if (soap_blist___any == NULL) - soap_blist___any = soap_alloc_block(soap); - a->__any = (char **)soap_push_block_max(soap, soap_blist___any, sizeof(char *)); - if (a->__any == NULL) - return NULL; - *a->__any = NULL; - } - if (soap_inliteral(soap, "-any", (char**)a->__any)) - { a->__size++; - a->__any = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__any) - soap_pop_block(soap, soap_blist___any); - if (a->__size) - { a->__any = (char **)soap_save_block(soap, soap_blist___any, NULL, 1); - } - else - { a->__any = NULL; - if (soap_blist___any) - soap_end_block(soap, soap_blist___any); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->Address)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct wsa5__EndpointReferenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa5__EndpointReferenceType, SOAP_TYPE_wsa5__EndpointReferenceType, sizeof(struct wsa5__EndpointReferenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsa5__EndpointReferenceType * SOAP_FMAC2 soap_instantiate_wsa5__EndpointReferenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa5__EndpointReferenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa5__EndpointReferenceType *p; - size_t k = sizeof(struct wsa5__EndpointReferenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa5__EndpointReferenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa5__EndpointReferenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa5__EndpointReferenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa5__EndpointReferenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__EndpointReferenceType(struct soap *soap, const struct wsa5__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out_wsa5__EndpointReferenceType(soap, tag ? tag : "wsa5:EndpointReferenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa5__EndpointReferenceType * SOAP_FMAC4 soap_get_wsa5__EndpointReferenceType(struct soap *soap, struct wsa5__EndpointReferenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa5__EndpointReferenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC1 struct soap_dom_attribute * SOAP_FMAC2 soap_instantiate_xsd__anyAttribute(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__anyAttribute(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct soap_dom_attribute *p; - size_t k = sizeof(struct soap_dom_attribute); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__anyAttribute, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct soap_dom_attribute); - } - else - { p = SOAP_NEW_ARRAY(soap, struct soap_dom_attribute, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct soap_dom_attribute location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anyAttribute(struct soap *soap, const struct soap_dom_attribute *a, const char *tag, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, tag ? tag : "xsd:anyAttribute", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct soap_dom_attribute * SOAP_FMAC4 soap_get_xsd__anyAttribute(struct soap *soap, struct soap_dom_attribute *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__anyAttribute(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC1 struct soap_dom_element * SOAP_FMAC2 soap_instantiate_xsd__anyType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__anyType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct soap_dom_element *p; - size_t k = sizeof(struct soap_dom_element); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__anyType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct soap_dom_element); - } - else - { p = SOAP_NEW_ARRAY(soap, struct soap_dom_element, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct soap_dom_element location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anyType(struct soap *soap, const struct soap_dom_element *a, const char *tag, const char *type) -{ - if (soap_out_xsd__anyType(soap, tag ? tag : "xsd:anyType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct soap_dom_element * SOAP_FMAC4 soap_get_xsd__anyType(struct soap *soap, struct soap_dom_element *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__anyType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Security(struct soap *soap, struct _wsse__Security *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsu__Timestamp = NULL; - a->UsernameToken = NULL; - a->BinarySecurityToken = NULL; - a->xenc__EncryptedKey = NULL; - a->xenc__ReferenceList = NULL; - a->wsc__SecurityContextToken = NULL; - a->ds__Signature = NULL; - a->saml1__Assertion = NULL; - a->saml2__Assertion = NULL; - soap_default_string(soap, &a->SOAP_ENV__actor); - soap_default_string(soap, &a->SOAP_ENV__role); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Security(struct soap *soap, const struct _wsse__Security *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsu__Timestamp(soap, &a->wsu__Timestamp); - soap_serialize_PointerTo_wsse__UsernameToken(soap, &a->UsernameToken); - soap_serialize_PointerTo_wsse__BinarySecurityToken(soap, &a->BinarySecurityToken); - soap_serialize_PointerToxenc__EncryptedKeyType(soap, &a->xenc__EncryptedKey); - soap_serialize_PointerTo_xenc__ReferenceList(soap, &a->xenc__ReferenceList); - soap_serialize_PointerTowsc__SecurityContextTokenType(soap, &a->wsc__SecurityContextToken); - soap_serialize_PointerTods__SignatureType(soap, &a->ds__Signature); - soap_serialize_PointerTosaml1__AssertionType(soap, &a->saml1__Assertion); - soap_serialize_PointerTosaml2__AssertionType(soap, &a->saml2__Assertion); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Security(struct soap *soap, const char *tag, int id, const struct _wsse__Security *a, const char *type) -{ - if (a->SOAP_ENV__actor) - soap_set_attr(soap, "SOAP-ENV:actor", soap_string2s(soap, a->SOAP_ENV__actor), 1); - if (a->SOAP_ENV__role) - soap_set_attr(soap, "SOAP-ENV:role", soap_string2s(soap, a->SOAP_ENV__role), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsse__Security), type)) - return soap->error; - if (soap_out_PointerTo_wsu__Timestamp(soap, "wsu:Timestamp", -1, &a->wsu__Timestamp, "")) - return soap->error; - if (soap_out_PointerTo_wsse__UsernameToken(soap, "wsse:UsernameToken", -1, &a->UsernameToken, "")) - return soap->error; - if (soap_out_PointerTo_wsse__BinarySecurityToken(soap, "wsse:BinarySecurityToken", -1, &a->BinarySecurityToken, "")) - return soap->error; - if (soap_out_PointerToxenc__EncryptedKeyType(soap, "xenc:EncryptedKey", -1, &a->xenc__EncryptedKey, "")) - return soap->error; - if (soap_out_PointerTo_xenc__ReferenceList(soap, "xenc:ReferenceList", -1, &a->xenc__ReferenceList, "")) - return soap->error; - if (soap_out_PointerTowsc__SecurityContextTokenType(soap, "wsc:SecurityContextToken", -1, &a->wsc__SecurityContextToken, "")) - return soap->error; - if (soap_out_PointerTods__SignatureType(soap, "ds:Signature", -1, &a->ds__Signature, "")) - return soap->error; - if (soap_out_PointerTosaml1__AssertionType(soap, "saml1:Assertion", -1, &a->saml1__Assertion, "")) - return soap->error; - if (soap_out_PointerTosaml2__AssertionType(soap, "saml2:Assertion", -1, &a->saml2__Assertion, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _wsse__Security * SOAP_FMAC4 soap_in__wsse__Security(struct soap *soap, const char *tag, struct _wsse__Security *a, const char *type) -{ - size_t soap_flag_wsu__Timestamp = 1; - size_t soap_flag_UsernameToken = 1; - size_t soap_flag_BinarySecurityToken = 1; - size_t soap_flag_xenc__EncryptedKey = 1; - size_t soap_flag_xenc__ReferenceList = 1; - size_t soap_flag_wsc__SecurityContextToken = 1; - size_t soap_flag_ds__Signature = 1; - size_t soap_flag_saml1__Assertion = 1; - size_t soap_flag_saml2__Assertion = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _wsse__Security*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__Security, sizeof(struct _wsse__Security), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__wsse__Security(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "SOAP-ENV:actor", 1, 0), &a->SOAP_ENV__actor)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "SOAP-ENV:role", 1, 0), &a->SOAP_ENV__role)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsu__Timestamp && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsu__Timestamp(soap, "wsu:Timestamp", &a->wsu__Timestamp, "")) - { soap_flag_wsu__Timestamp--; - continue; - } - } - if (soap_flag_UsernameToken && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__UsernameToken(soap, "wsse:UsernameToken", &a->UsernameToken, "")) - { soap_flag_UsernameToken--; - continue; - } - } - if (soap_flag_BinarySecurityToken && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__BinarySecurityToken(soap, "wsse:BinarySecurityToken", &a->BinarySecurityToken, "")) - { soap_flag_BinarySecurityToken--; - continue; - } - } - if (soap_flag_xenc__EncryptedKey && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptedKeyType(soap, "xenc:EncryptedKey", &a->xenc__EncryptedKey, "xenc:EncryptedKeyType")) - { soap_flag_xenc__EncryptedKey--; - continue; - } - } - if (soap_flag_xenc__ReferenceList && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_xenc__ReferenceList(soap, "xenc:ReferenceList", &a->xenc__ReferenceList, "")) - { soap_flag_xenc__ReferenceList--; - continue; - } - } - if (soap_flag_wsc__SecurityContextToken && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsc__SecurityContextTokenType(soap, "wsc:SecurityContextToken", &a->wsc__SecurityContextToken, "wsc:SecurityContextTokenType")) - { soap_flag_wsc__SecurityContextToken--; - continue; - } - } - if (soap_flag_ds__Signature && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__SignatureType(soap, "ds:Signature", &a->ds__Signature, "ds:SignatureType")) - { soap_flag_ds__Signature--; - continue; - } - } - if (soap_flag_saml1__Assertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AssertionType(soap, "saml1:Assertion", &a->saml1__Assertion, "saml1:AssertionType")) - { soap_flag_saml1__Assertion--; - continue; - } - } - if (soap_flag_saml2__Assertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AssertionType(soap, "saml2:Assertion", &a->saml2__Assertion, "saml2:AssertionType")) - { soap_flag_saml2__Assertion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct _wsse__Security *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsse__Security, SOAP_TYPE__wsse__Security, sizeof(struct _wsse__Security), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _wsse__Security * SOAP_FMAC2 soap_instantiate__wsse__Security(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__Security(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__Security *p; - size_t k = sizeof(struct _wsse__Security); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__Security, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__Security); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__Security, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__Security location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Security(struct soap *soap, const struct _wsse__Security *a, const char *tag, const char *type) -{ - if (soap_out__wsse__Security(soap, tag ? tag : "wsse:Security", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__Security * SOAP_FMAC4 soap_get__wsse__Security(struct soap *soap, struct _wsse__Security *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__Security(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__EncryptedAttribute(struct soap *soap, const struct saml2__EncryptedElementType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__EncryptedAttribute(soap, tag ? tag : "saml2:EncryptedAttribute", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Attribute(struct soap *soap, const struct saml2__AttributeType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Attribute(soap, tag ? tag : "saml2:Attribute", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AttributeStatement(struct soap *soap, const struct saml2__AttributeStatementType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__AttributeStatement(soap, tag ? tag : "saml2:AttributeStatement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Evidence(struct soap *soap, const struct saml2__EvidenceType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Evidence(soap, tag ? tag : "saml2:Evidence", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Action(struct soap *soap, const struct saml2__ActionType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Action(soap, tag ? tag : "saml2:Action", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthzDecisionStatement(struct soap *soap, const struct saml2__AuthzDecisionStatementType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__AuthzDecisionStatement(soap, tag ? tag : "saml2:AuthzDecisionStatement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthnContext(struct soap *soap, const struct saml2__AuthnContextType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__AuthnContext(soap, tag ? tag : "saml2:AuthnContext", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__SubjectLocality(struct soap *soap, const struct saml2__SubjectLocalityType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__SubjectLocality(soap, tag ? tag : "saml2:SubjectLocality", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthnStatement(struct soap *soap, const struct saml2__AuthnStatementType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__AuthnStatement(soap, tag ? tag : "saml2:AuthnStatement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Statement(struct soap *soap, const struct saml2__StatementAbstractType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Statement(soap, tag ? tag : "saml2:Statement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__EncryptedAssertion(struct soap *soap, const struct saml2__EncryptedElementType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__EncryptedAssertion(soap, tag ? tag : "saml2:EncryptedAssertion", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Advice(struct soap *soap, const struct saml2__AdviceType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Advice(soap, tag ? tag : "saml2:Advice", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__ProxyRestriction(struct soap *soap, const struct saml2__ProxyRestrictionType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__ProxyRestriction(soap, tag ? tag : "saml2:ProxyRestriction", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__OneTimeUse(struct soap *soap, const struct saml2__OneTimeUseType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__OneTimeUse(soap, tag ? tag : "saml2:OneTimeUse", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AudienceRestriction(struct soap *soap, const struct saml2__AudienceRestrictionType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__AudienceRestriction(soap, tag ? tag : "saml2:AudienceRestriction", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Condition(struct soap *soap, const struct saml2__ConditionAbstractType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Condition(soap, tag ? tag : "saml2:Condition", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Conditions(struct soap *soap, const struct saml2__ConditionsType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Conditions(soap, tag ? tag : "saml2:Conditions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__SubjectConfirmationData(struct soap *soap, const struct saml2__SubjectConfirmationDataType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__SubjectConfirmationData(soap, tag ? tag : "saml2:SubjectConfirmationData", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__SubjectConfirmation(struct soap *soap, const struct saml2__SubjectConfirmationType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__SubjectConfirmation(soap, tag ? tag : "saml2:SubjectConfirmation", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Subject(struct soap *soap, const struct saml2__SubjectType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Subject(soap, tag ? tag : "saml2:Subject", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Assertion(struct soap *soap, const struct saml2__AssertionType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Assertion(soap, tag ? tag : "saml2:Assertion", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Issuer(struct soap *soap, const struct saml2__NameIDType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__Issuer(soap, tag ? tag : "saml2:Issuer", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__EncryptedID(struct soap *soap, const struct saml2__EncryptedElementType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__EncryptedID(soap, tag ? tag : "saml2:EncryptedID", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__NameID(struct soap *soap, const struct saml2__NameIDType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__NameID(soap, tag ? tag : "saml2:NameID", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__BaseID(struct soap *soap, const struct saml2__BaseIDAbstractType *a, const char *tag, const char *type) -{ - if (soap_out__saml2__BaseID(soap, tag ? tag : "saml2:BaseID", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_AttributeStatementType(struct soap *soap, struct __saml2__union_AttributeStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml2__Attribute = NULL; - a->saml2__EncryptedAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_AttributeStatementType(struct soap *soap, const struct __saml2__union_AttributeStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml2__AttributeType(soap, &a->saml2__Attribute); - soap_serialize_PointerTosaml2__EncryptedElementType(soap, &a->saml2__EncryptedAttribute); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_AttributeStatementType(struct soap *soap, const char *tag, int id, const struct __saml2__union_AttributeStatementType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTosaml2__AttributeType(soap, "saml2:Attribute", -1, &a->saml2__Attribute, "")) - return soap->error; - if (soap_out_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedAttribute", -1, &a->saml2__EncryptedAttribute, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_AttributeStatementType * SOAP_FMAC4 soap_in___saml2__union_AttributeStatementType(struct soap *soap, const char *tag, struct __saml2__union_AttributeStatementType *a, const char *type) -{ - size_t soap_flag_saml2__Attribute = 1; - size_t soap_flag_saml2__EncryptedAttribute = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml2__union_AttributeStatementType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml2__union_AttributeStatementType, sizeof(struct __saml2__union_AttributeStatementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml2__union_AttributeStatementType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__Attribute && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AttributeType(soap, "saml2:Attribute", &a->saml2__Attribute, "saml2:AttributeType")) - { soap_flag_saml2__Attribute--; - continue; - } - } - if (soap_flag_saml2__EncryptedAttribute && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedAttribute", &a->saml2__EncryptedAttribute, "saml2:EncryptedElementType")) - { soap_flag_saml2__EncryptedAttribute--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml2__union_AttributeStatementType * SOAP_FMAC2 soap_instantiate___saml2__union_AttributeStatementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml2__union_AttributeStatementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml2__union_AttributeStatementType *p; - size_t k = sizeof(struct __saml2__union_AttributeStatementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml2__union_AttributeStatementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml2__union_AttributeStatementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml2__union_AttributeStatementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml2__union_AttributeStatementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_AttributeStatementType(struct soap *soap, const struct __saml2__union_AttributeStatementType *a, const char *tag, const char *type) -{ - if (soap_out___saml2__union_AttributeStatementType(soap, tag ? tag : "-saml2:union-AttributeStatementType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_AttributeStatementType * SOAP_FMAC4 soap_get___saml2__union_AttributeStatementType(struct soap *soap, struct __saml2__union_AttributeStatementType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml2__union_AttributeStatementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_EvidenceType(struct soap *soap, struct __saml2__union_EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->saml2__AssertionIDRef); - soap_default_string(soap, &a->saml2__AssertionURIRef); - a->saml2__Assertion = NULL; - a->saml2__EncryptedAssertion = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_EvidenceType(struct soap *soap, const struct __saml2__union_EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->saml2__AssertionIDRef); - soap_serialize_string(soap, (char*const*)&a->saml2__AssertionURIRef); - soap_serialize_PointerTosaml2__AssertionType(soap, &a->saml2__Assertion); - soap_serialize_PointerTosaml2__EncryptedElementType(soap, &a->saml2__EncryptedAssertion); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_EvidenceType(struct soap *soap, const char *tag, int id, const struct __saml2__union_EvidenceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_string(soap, "saml2:AssertionIDRef", -1, (char*const*)&a->saml2__AssertionIDRef, "")) - return soap->error; - if (soap_out_string(soap, "saml2:AssertionURIRef", -1, (char*const*)&a->saml2__AssertionURIRef, "")) - return soap->error; - if (soap_out_PointerTosaml2__AssertionType(soap, "saml2:Assertion", -1, &a->saml2__Assertion, "")) - return soap->error; - if (soap_out_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedAssertion", -1, &a->saml2__EncryptedAssertion, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_EvidenceType * SOAP_FMAC4 soap_in___saml2__union_EvidenceType(struct soap *soap, const char *tag, struct __saml2__union_EvidenceType *a, const char *type) -{ - size_t soap_flag_saml2__AssertionIDRef = 1; - size_t soap_flag_saml2__AssertionURIRef = 1; - size_t soap_flag_saml2__Assertion = 1; - size_t soap_flag_saml2__EncryptedAssertion = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml2__union_EvidenceType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml2__union_EvidenceType, sizeof(struct __saml2__union_EvidenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml2__union_EvidenceType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__AssertionIDRef && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml2:AssertionIDRef", (char**)&a->saml2__AssertionIDRef, "xsd:string")) - { soap_flag_saml2__AssertionIDRef--; - continue; - } - } - if (soap_flag_saml2__AssertionURIRef && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml2:AssertionURIRef", (char**)&a->saml2__AssertionURIRef, "xsd:string")) - { soap_flag_saml2__AssertionURIRef--; - continue; - } - } - if (soap_flag_saml2__Assertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AssertionType(soap, "saml2:Assertion", &a->saml2__Assertion, "saml2:AssertionType")) - { soap_flag_saml2__Assertion--; - continue; - } - } - if (soap_flag_saml2__EncryptedAssertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedAssertion", &a->saml2__EncryptedAssertion, "saml2:EncryptedElementType")) - { soap_flag_saml2__EncryptedAssertion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml2__union_EvidenceType * SOAP_FMAC2 soap_instantiate___saml2__union_EvidenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml2__union_EvidenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml2__union_EvidenceType *p; - size_t k = sizeof(struct __saml2__union_EvidenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml2__union_EvidenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml2__union_EvidenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml2__union_EvidenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml2__union_EvidenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_EvidenceType(struct soap *soap, const struct __saml2__union_EvidenceType *a, const char *tag, const char *type) -{ - if (soap_out___saml2__union_EvidenceType(soap, tag ? tag : "-saml2:union-EvidenceType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_EvidenceType * SOAP_FMAC4 soap_get___saml2__union_EvidenceType(struct soap *soap, struct __saml2__union_EvidenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml2__union_EvidenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_AdviceType(struct soap *soap, struct __saml2__union_AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->saml2__AssertionIDRef); - soap_default_string(soap, &a->saml2__AssertionURIRef); - a->saml2__Assertion = NULL; - a->saml2__EncryptedAssertion = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_AdviceType(struct soap *soap, const struct __saml2__union_AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->saml2__AssertionIDRef); - soap_serialize_string(soap, (char*const*)&a->saml2__AssertionURIRef); - soap_serialize_PointerTosaml2__AssertionType(soap, &a->saml2__Assertion); - soap_serialize_PointerTosaml2__EncryptedElementType(soap, &a->saml2__EncryptedAssertion); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_AdviceType(struct soap *soap, const char *tag, int id, const struct __saml2__union_AdviceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_string(soap, "saml2:AssertionIDRef", -1, (char*const*)&a->saml2__AssertionIDRef, "")) - return soap->error; - if (soap_out_string(soap, "saml2:AssertionURIRef", -1, (char*const*)&a->saml2__AssertionURIRef, "")) - return soap->error; - if (soap_out_PointerTosaml2__AssertionType(soap, "saml2:Assertion", -1, &a->saml2__Assertion, "")) - return soap->error; - if (soap_out_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedAssertion", -1, &a->saml2__EncryptedAssertion, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_AdviceType * SOAP_FMAC4 soap_in___saml2__union_AdviceType(struct soap *soap, const char *tag, struct __saml2__union_AdviceType *a, const char *type) -{ - size_t soap_flag_saml2__AssertionIDRef = 1; - size_t soap_flag_saml2__AssertionURIRef = 1; - size_t soap_flag_saml2__Assertion = 1; - size_t soap_flag_saml2__EncryptedAssertion = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml2__union_AdviceType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml2__union_AdviceType, sizeof(struct __saml2__union_AdviceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml2__union_AdviceType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__AssertionIDRef && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml2:AssertionIDRef", (char**)&a->saml2__AssertionIDRef, "xsd:string")) - { soap_flag_saml2__AssertionIDRef--; - continue; - } - } - if (soap_flag_saml2__AssertionURIRef && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml2:AssertionURIRef", (char**)&a->saml2__AssertionURIRef, "xsd:string")) - { soap_flag_saml2__AssertionURIRef--; - continue; - } - } - if (soap_flag_saml2__Assertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AssertionType(soap, "saml2:Assertion", &a->saml2__Assertion, "saml2:AssertionType")) - { soap_flag_saml2__Assertion--; - continue; - } - } - if (soap_flag_saml2__EncryptedAssertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedAssertion", &a->saml2__EncryptedAssertion, "saml2:EncryptedElementType")) - { soap_flag_saml2__EncryptedAssertion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml2__union_AdviceType * SOAP_FMAC2 soap_instantiate___saml2__union_AdviceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml2__union_AdviceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml2__union_AdviceType *p; - size_t k = sizeof(struct __saml2__union_AdviceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml2__union_AdviceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml2__union_AdviceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml2__union_AdviceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml2__union_AdviceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_AdviceType(struct soap *soap, const struct __saml2__union_AdviceType *a, const char *tag, const char *type) -{ - if (soap_out___saml2__union_AdviceType(soap, tag ? tag : "-saml2:union-AdviceType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_AdviceType * SOAP_FMAC4 soap_get___saml2__union_AdviceType(struct soap *soap, struct __saml2__union_AdviceType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml2__union_AdviceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_ConditionsType(struct soap *soap, struct __saml2__union_ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml2__Condition = NULL; - a->saml2__AudienceRestriction = NULL; - a->saml2__OneTimeUse = NULL; - a->saml2__ProxyRestriction = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_ConditionsType(struct soap *soap, const struct __saml2__union_ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml2__ConditionAbstractType(soap, &a->saml2__Condition); - soap_serialize_PointerTosaml2__AudienceRestrictionType(soap, &a->saml2__AudienceRestriction); - soap_serialize_PointerTosaml2__OneTimeUseType(soap, &a->saml2__OneTimeUse); - soap_serialize_PointerTosaml2__ProxyRestrictionType(soap, &a->saml2__ProxyRestriction); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_ConditionsType(struct soap *soap, const char *tag, int id, const struct __saml2__union_ConditionsType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTosaml2__ConditionAbstractType(soap, "saml2:Condition", -1, &a->saml2__Condition, "")) - return soap->error; - if (soap_out_PointerTosaml2__AudienceRestrictionType(soap, "saml2:AudienceRestriction", -1, &a->saml2__AudienceRestriction, "")) - return soap->error; - if (soap_out_PointerTosaml2__OneTimeUseType(soap, "saml2:OneTimeUse", -1, &a->saml2__OneTimeUse, "")) - return soap->error; - if (soap_out_PointerTosaml2__ProxyRestrictionType(soap, "saml2:ProxyRestriction", -1, &a->saml2__ProxyRestriction, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_ConditionsType * SOAP_FMAC4 soap_in___saml2__union_ConditionsType(struct soap *soap, const char *tag, struct __saml2__union_ConditionsType *a, const char *type) -{ - size_t soap_flag_saml2__Condition = 1; - size_t soap_flag_saml2__AudienceRestriction = 1; - size_t soap_flag_saml2__OneTimeUse = 1; - size_t soap_flag_saml2__ProxyRestriction = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml2__union_ConditionsType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml2__union_ConditionsType, sizeof(struct __saml2__union_ConditionsType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml2__union_ConditionsType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__Condition && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__ConditionAbstractType(soap, "saml2:Condition", &a->saml2__Condition, "saml2:ConditionAbstractType")) - { soap_flag_saml2__Condition--; - continue; - } - } - if (soap_flag_saml2__AudienceRestriction && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AudienceRestrictionType(soap, "saml2:AudienceRestriction", &a->saml2__AudienceRestriction, "saml2:AudienceRestrictionType")) - { soap_flag_saml2__AudienceRestriction--; - continue; - } - } - if (soap_flag_saml2__OneTimeUse && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__OneTimeUseType(soap, "saml2:OneTimeUse", &a->saml2__OneTimeUse, "saml2:OneTimeUseType")) - { soap_flag_saml2__OneTimeUse--; - continue; - } - } - if (soap_flag_saml2__ProxyRestriction && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__ProxyRestrictionType(soap, "saml2:ProxyRestriction", &a->saml2__ProxyRestriction, "saml2:ProxyRestrictionType")) - { soap_flag_saml2__ProxyRestriction--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml2__union_ConditionsType * SOAP_FMAC2 soap_instantiate___saml2__union_ConditionsType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml2__union_ConditionsType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml2__union_ConditionsType *p; - size_t k = sizeof(struct __saml2__union_ConditionsType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml2__union_ConditionsType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml2__union_ConditionsType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml2__union_ConditionsType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml2__union_ConditionsType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_ConditionsType(struct soap *soap, const struct __saml2__union_ConditionsType *a, const char *tag, const char *type) -{ - if (soap_out___saml2__union_ConditionsType(soap, tag ? tag : "-saml2:union-ConditionsType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_ConditionsType * SOAP_FMAC4 soap_get___saml2__union_ConditionsType(struct soap *soap, struct __saml2__union_ConditionsType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml2__union_ConditionsType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_AssertionType(struct soap *soap, struct __saml2__union_AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml2__Statement = NULL; - a->saml2__AuthnStatement = NULL; - a->saml2__AuthzDecisionStatement = NULL; - a->saml2__AttributeStatement = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_AssertionType(struct soap *soap, const struct __saml2__union_AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml2__StatementAbstractType(soap, &a->saml2__Statement); - soap_serialize_PointerTosaml2__AuthnStatementType(soap, &a->saml2__AuthnStatement); - soap_serialize_PointerTosaml2__AuthzDecisionStatementType(soap, &a->saml2__AuthzDecisionStatement); - soap_serialize_PointerTosaml2__AttributeStatementType(soap, &a->saml2__AttributeStatement); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_AssertionType(struct soap *soap, const char *tag, int id, const struct __saml2__union_AssertionType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTosaml2__StatementAbstractType(soap, "saml2:Statement", -1, &a->saml2__Statement, "")) - return soap->error; - if (soap_out_PointerTosaml2__AuthnStatementType(soap, "saml2:AuthnStatement", -1, &a->saml2__AuthnStatement, "")) - return soap->error; - if (soap_out_PointerTosaml2__AuthzDecisionStatementType(soap, "saml2:AuthzDecisionStatement", -1, &a->saml2__AuthzDecisionStatement, "")) - return soap->error; - if (soap_out_PointerTosaml2__AttributeStatementType(soap, "saml2:AttributeStatement", -1, &a->saml2__AttributeStatement, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_AssertionType * SOAP_FMAC4 soap_in___saml2__union_AssertionType(struct soap *soap, const char *tag, struct __saml2__union_AssertionType *a, const char *type) -{ - size_t soap_flag_saml2__Statement = 1; - size_t soap_flag_saml2__AuthnStatement = 1; - size_t soap_flag_saml2__AuthzDecisionStatement = 1; - size_t soap_flag_saml2__AttributeStatement = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml2__union_AssertionType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml2__union_AssertionType, sizeof(struct __saml2__union_AssertionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml2__union_AssertionType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__Statement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__StatementAbstractType(soap, "saml2:Statement", &a->saml2__Statement, "saml2:StatementAbstractType")) - { soap_flag_saml2__Statement--; - continue; - } - } - if (soap_flag_saml2__AuthnStatement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AuthnStatementType(soap, "saml2:AuthnStatement", &a->saml2__AuthnStatement, "saml2:AuthnStatementType")) - { soap_flag_saml2__AuthnStatement--; - continue; - } - } - if (soap_flag_saml2__AuthzDecisionStatement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AuthzDecisionStatementType(soap, "saml2:AuthzDecisionStatement", &a->saml2__AuthzDecisionStatement, "saml2:AuthzDecisionStatementType")) - { soap_flag_saml2__AuthzDecisionStatement--; - continue; - } - } - if (soap_flag_saml2__AttributeStatement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AttributeStatementType(soap, "saml2:AttributeStatement", &a->saml2__AttributeStatement, "saml2:AttributeStatementType")) - { soap_flag_saml2__AttributeStatement--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml2__union_AssertionType * SOAP_FMAC2 soap_instantiate___saml2__union_AssertionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml2__union_AssertionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml2__union_AssertionType *p; - size_t k = sizeof(struct __saml2__union_AssertionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml2__union_AssertionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml2__union_AssertionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml2__union_AssertionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml2__union_AssertionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_AssertionType(struct soap *soap, const struct __saml2__union_AssertionType *a, const char *tag, const char *type) -{ - if (soap_out___saml2__union_AssertionType(soap, tag ? tag : "-saml2:union-AssertionType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml2__union_AssertionType * SOAP_FMAC4 soap_get___saml2__union_AssertionType(struct soap *soap, struct __saml2__union_AssertionType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml2__union_AssertionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AttributeType(struct soap *soap, struct saml2__AttributeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeAttributeValue = 0; - a->saml2__AttributeValue = NULL; - soap_default_string(soap, &a->Name); - soap_default_string(soap, &a->NameFormat); - soap_default_string(soap, &a->FriendlyName); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AttributeType(struct soap *soap, const struct saml2__AttributeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AttributeType(struct soap *soap, const char *tag, int id, const struct saml2__AttributeType *a, const char *type) -{ - soap_set_attr(soap, "Name", a->Name ? soap_string2s(soap, a->Name) : "", 1); - if (a->NameFormat) - soap_set_attr(soap, "NameFormat", soap_string2s(soap, a->NameFormat), 1); - if (a->FriendlyName) - soap_set_attr(soap, "FriendlyName", soap_string2s(soap, a->FriendlyName), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AttributeType), type)) - return soap->error; - if (a->saml2__AttributeValue) - { int i; - for (i = 0; i < (int)a->__sizeAttributeValue; i++) - if (soap_outliteral(soap, "saml2:AttributeValue", (char*const*)(a->saml2__AttributeValue + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AttributeType * SOAP_FMAC4 soap_in_saml2__AttributeType(struct soap *soap, const char *tag, struct saml2__AttributeType *a, const char *type) -{ - struct soap_blist *soap_blist_saml2__AttributeValue = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AttributeType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AttributeType, sizeof(struct saml2__AttributeType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AttributeType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Name", 1, 1), &a->Name)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "NameFormat", 1, 0), &a->NameFormat)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "FriendlyName", 1, 0), &a->FriendlyName)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml2:AttributeValue", 1, NULL)) - { if (a->saml2__AttributeValue == NULL) - { if (soap_blist_saml2__AttributeValue == NULL) - soap_blist_saml2__AttributeValue = soap_alloc_block(soap); - a->saml2__AttributeValue = (char **)soap_push_block_max(soap, soap_blist_saml2__AttributeValue, sizeof(char *)); - if (a->saml2__AttributeValue == NULL) - return NULL; - *a->saml2__AttributeValue = NULL; - } - soap_revert(soap); - if (soap_inliteral(soap, "saml2:AttributeValue", (char**)a->saml2__AttributeValue)) - { a->__sizeAttributeValue++; - a->saml2__AttributeValue = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml2__AttributeValue) - soap_pop_block(soap, soap_blist_saml2__AttributeValue); - if (a->__sizeAttributeValue) - { a->saml2__AttributeValue = (char **)soap_save_block(soap, soap_blist_saml2__AttributeValue, NULL, 1); - } - else - { a->saml2__AttributeValue = NULL; - if (soap_blist_saml2__AttributeValue) - soap_end_block(soap, soap_blist_saml2__AttributeValue); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__AttributeType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AttributeType, SOAP_TYPE_saml2__AttributeType, sizeof(struct saml2__AttributeType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AttributeType * SOAP_FMAC2 soap_instantiate_saml2__AttributeType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AttributeType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AttributeType *p; - size_t k = sizeof(struct saml2__AttributeType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AttributeType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AttributeType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AttributeType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AttributeType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AttributeType(struct soap *soap, const struct saml2__AttributeType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AttributeType(soap, tag ? tag : "saml2:AttributeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AttributeType * SOAP_FMAC4 soap_get_saml2__AttributeType(struct soap *soap, struct saml2__AttributeType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AttributeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AttributeStatementType(struct soap *soap, struct saml2__AttributeStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_AttributeStatementType = 0; - a->__union_AttributeStatementType = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AttributeStatementType(struct soap *soap, const struct saml2__AttributeStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_AttributeStatementType) - { int i; - for (i = 0; i < (int)a->__size_AttributeStatementType; i++) - { - soap_serialize___saml2__union_AttributeStatementType(soap, a->__union_AttributeStatementType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AttributeStatementType(struct soap *soap, const char *tag, int id, const struct saml2__AttributeStatementType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AttributeStatementType), type)) - return soap->error; - if (a->__union_AttributeStatementType) - { int i; - for (i = 0; i < (int)a->__size_AttributeStatementType; i++) - if (soap_out___saml2__union_AttributeStatementType(soap, "-union-AttributeStatementType", -1, a->__union_AttributeStatementType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AttributeStatementType * SOAP_FMAC4 soap_in_saml2__AttributeStatementType(struct soap *soap, const char *tag, struct saml2__AttributeStatementType *a, const char *type) -{ - struct soap_blist *soap_blist___union_AttributeStatementType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AttributeStatementType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AttributeStatementType, sizeof(struct saml2__AttributeStatementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AttributeStatementType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_AttributeStatementType == NULL) - { if (soap_blist___union_AttributeStatementType == NULL) - soap_blist___union_AttributeStatementType = soap_alloc_block(soap); - a->__union_AttributeStatementType = soap_block::push(soap, soap_blist___union_AttributeStatementType); - if (a->__union_AttributeStatementType == NULL) - return NULL; - soap_default___saml2__union_AttributeStatementType(soap, a->__union_AttributeStatementType); - } - if (soap_in___saml2__union_AttributeStatementType(soap, "-union-AttributeStatementType", a->__union_AttributeStatementType, "-saml2:union-AttributeStatementType")) - { a->__size_AttributeStatementType++; - a->__union_AttributeStatementType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_AttributeStatementType) - soap_block::pop(soap, soap_blist___union_AttributeStatementType); - if (a->__size_AttributeStatementType) - { a->__union_AttributeStatementType = soap_new___saml2__union_AttributeStatementType(soap, a->__size_AttributeStatementType); - if (!a->__union_AttributeStatementType) - return NULL; - soap_block::save(soap, soap_blist___union_AttributeStatementType, a->__union_AttributeStatementType); - } - else - { a->__union_AttributeStatementType = NULL; - if (soap_blist___union_AttributeStatementType) - soap_block::end(soap, soap_blist___union_AttributeStatementType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__AttributeStatementType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AttributeStatementType, SOAP_TYPE_saml2__AttributeStatementType, sizeof(struct saml2__AttributeStatementType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AttributeStatementType * SOAP_FMAC2 soap_instantiate_saml2__AttributeStatementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AttributeStatementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AttributeStatementType *p; - size_t k = sizeof(struct saml2__AttributeStatementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AttributeStatementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AttributeStatementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AttributeStatementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AttributeStatementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AttributeStatementType(struct soap *soap, const struct saml2__AttributeStatementType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AttributeStatementType(soap, tag ? tag : "saml2:AttributeStatementType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AttributeStatementType * SOAP_FMAC4 soap_get_saml2__AttributeStatementType(struct soap *soap, struct saml2__AttributeStatementType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AttributeStatementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__EvidenceType(struct soap *soap, struct saml2__EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_EvidenceType = 0; - a->__union_EvidenceType = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EvidenceType(struct soap *soap, const struct saml2__EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_EvidenceType) - { int i; - for (i = 0; i < (int)a->__size_EvidenceType; i++) - { - soap_serialize___saml2__union_EvidenceType(soap, a->__union_EvidenceType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__EvidenceType(struct soap *soap, const char *tag, int id, const struct saml2__EvidenceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__EvidenceType), type)) - return soap->error; - if (a->__union_EvidenceType) - { int i; - for (i = 0; i < (int)a->__size_EvidenceType; i++) - if (soap_out___saml2__union_EvidenceType(soap, "-union-EvidenceType", -1, a->__union_EvidenceType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__EvidenceType * SOAP_FMAC4 soap_in_saml2__EvidenceType(struct soap *soap, const char *tag, struct saml2__EvidenceType *a, const char *type) -{ - struct soap_blist *soap_blist___union_EvidenceType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__EvidenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__EvidenceType, sizeof(struct saml2__EvidenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__EvidenceType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_EvidenceType == NULL) - { if (soap_blist___union_EvidenceType == NULL) - soap_blist___union_EvidenceType = soap_alloc_block(soap); - a->__union_EvidenceType = soap_block::push(soap, soap_blist___union_EvidenceType); - if (a->__union_EvidenceType == NULL) - return NULL; - soap_default___saml2__union_EvidenceType(soap, a->__union_EvidenceType); - } - if (soap_in___saml2__union_EvidenceType(soap, "-union-EvidenceType", a->__union_EvidenceType, "-saml2:union-EvidenceType")) - { a->__size_EvidenceType++; - a->__union_EvidenceType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_EvidenceType) - soap_block::pop(soap, soap_blist___union_EvidenceType); - if (a->__size_EvidenceType) - { a->__union_EvidenceType = soap_new___saml2__union_EvidenceType(soap, a->__size_EvidenceType); - if (!a->__union_EvidenceType) - return NULL; - soap_block::save(soap, soap_blist___union_EvidenceType, a->__union_EvidenceType); - } - else - { a->__union_EvidenceType = NULL; - if (soap_blist___union_EvidenceType) - soap_block::end(soap, soap_blist___union_EvidenceType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__EvidenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__EvidenceType, SOAP_TYPE_saml2__EvidenceType, sizeof(struct saml2__EvidenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__EvidenceType * SOAP_FMAC2 soap_instantiate_saml2__EvidenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__EvidenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__EvidenceType *p; - size_t k = sizeof(struct saml2__EvidenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__EvidenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__EvidenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__EvidenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__EvidenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__EvidenceType(struct soap *soap, const struct saml2__EvidenceType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__EvidenceType(soap, tag ? tag : "saml2:EvidenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__EvidenceType * SOAP_FMAC4 soap_get_saml2__EvidenceType(struct soap *soap, struct saml2__EvidenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__EvidenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ActionType(struct soap *soap, struct saml2__ActionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->Namespace); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ActionType(struct soap *soap, const struct saml2__ActionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ActionType(struct soap *soap, const char *tag, int id, const struct saml2__ActionType *a, const char *type) -{ - soap_set_attr(soap, "Namespace", a->Namespace ? soap_string2s(soap, a->Namespace) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct saml2__ActionType * SOAP_FMAC4 soap_in_saml2__ActionType(struct soap *soap, const char *tag, struct saml2__ActionType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct saml2__ActionType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__ActionType, sizeof(struct saml2__ActionType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_saml2__ActionType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Namespace", 1, 1), &a->Namespace)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "saml2:ActionType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct saml2__ActionType * SOAP_FMAC2 soap_instantiate_saml2__ActionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__ActionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__ActionType *p; - size_t k = sizeof(struct saml2__ActionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__ActionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__ActionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__ActionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__ActionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ActionType(struct soap *soap, const struct saml2__ActionType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__ActionType(soap, tag ? tag : "saml2:ActionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__ActionType * SOAP_FMAC4 soap_get_saml2__ActionType(struct soap *soap, struct saml2__ActionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__ActionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AuthzDecisionStatementType(struct soap *soap, struct saml2__AuthzDecisionStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeAction = 0; - a->saml2__Action = NULL; - a->saml2__Evidence = NULL; - soap_default_string(soap, &a->Resource); - soap_default_saml2__DecisionType(soap, &a->Decision); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthzDecisionStatementType(struct soap *soap, const struct saml2__AuthzDecisionStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->saml2__Action) - { int i; - for (i = 0; i < (int)a->__sizeAction; i++) - { - soap_embedded(soap, a->saml2__Action + i, SOAP_TYPE_saml2__ActionType); - soap_serialize_saml2__ActionType(soap, a->saml2__Action + i); - } - } - soap_serialize_PointerTosaml2__EvidenceType(soap, &a->saml2__Evidence); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AuthzDecisionStatementType(struct soap *soap, const char *tag, int id, const struct saml2__AuthzDecisionStatementType *a, const char *type) -{ - soap_set_attr(soap, "Resource", a->Resource ? soap_string2s(soap, a->Resource) : "", 1); - soap_set_attr(soap, "Decision", soap_saml2__DecisionType2s(soap, a->Decision), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AuthzDecisionStatementType), type)) - return soap->error; - if (a->saml2__Action) - { int i; - for (i = 0; i < (int)a->__sizeAction; i++) - if (soap_out_saml2__ActionType(soap, "saml2:Action", -1, a->saml2__Action + i, "")) - return soap->error; - } - if (soap_out_PointerTosaml2__EvidenceType(soap, "saml2:Evidence", -1, &a->saml2__Evidence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AuthzDecisionStatementType * SOAP_FMAC4 soap_in_saml2__AuthzDecisionStatementType(struct soap *soap, const char *tag, struct saml2__AuthzDecisionStatementType *a, const char *type) -{ - struct soap_blist *soap_blist_saml2__Action = NULL; - size_t soap_flag_saml2__Evidence = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AuthzDecisionStatementType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AuthzDecisionStatementType, sizeof(struct saml2__AuthzDecisionStatementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AuthzDecisionStatementType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Resource", 1, 1), &a->Resource)) - return NULL; - if (soap_s2saml2__DecisionType(soap, soap_attr_value(soap, "Decision", 5, 1), &a->Decision)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml2:Action", 1, NULL)) - { if (a->saml2__Action == NULL) - { if (soap_blist_saml2__Action == NULL) - soap_blist_saml2__Action = soap_alloc_block(soap); - a->saml2__Action = soap_block::push(soap, soap_blist_saml2__Action); - if (a->saml2__Action == NULL) - return NULL; - soap_default_saml2__ActionType(soap, a->saml2__Action); - } - soap_revert(soap); - if (soap_in_saml2__ActionType(soap, "saml2:Action", a->saml2__Action, "saml2:ActionType")) - { a->__sizeAction++; - a->saml2__Action = NULL; - continue; - } - } - if (soap_flag_saml2__Evidence && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__EvidenceType(soap, "saml2:Evidence", &a->saml2__Evidence, "saml2:EvidenceType")) - { soap_flag_saml2__Evidence--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml2__Action) - soap_block::pop(soap, soap_blist_saml2__Action); - if (a->__sizeAction) - { a->saml2__Action = soap_new_saml2__ActionType(soap, a->__sizeAction); - if (!a->saml2__Action) - return NULL; - soap_block::save(soap, soap_blist_saml2__Action, a->saml2__Action); - } - else - { a->saml2__Action = NULL; - if (soap_blist_saml2__Action) - soap_block::end(soap, soap_blist_saml2__Action); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__sizeAction < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml2__AuthzDecisionStatementType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AuthzDecisionStatementType, SOAP_TYPE_saml2__AuthzDecisionStatementType, sizeof(struct saml2__AuthzDecisionStatementType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AuthzDecisionStatementType * SOAP_FMAC2 soap_instantiate_saml2__AuthzDecisionStatementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AuthzDecisionStatementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AuthzDecisionStatementType *p; - size_t k = sizeof(struct saml2__AuthzDecisionStatementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AuthzDecisionStatementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AuthzDecisionStatementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AuthzDecisionStatementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AuthzDecisionStatementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AuthzDecisionStatementType(struct soap *soap, const struct saml2__AuthzDecisionStatementType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AuthzDecisionStatementType(soap, tag ? tag : "saml2:AuthzDecisionStatementType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AuthzDecisionStatementType * SOAP_FMAC4 soap_get_saml2__AuthzDecisionStatementType(struct soap *soap, struct saml2__AuthzDecisionStatementType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AuthzDecisionStatementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AuthnContextType(struct soap *soap, struct saml2__AuthnContextType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->saml2__AuthnContextClassRef); - a->saml2__AuthnContextDecl = NULL; - soap_default_string(soap, &a->saml2__AuthnContextDeclRef); - a->saml2__AuthnContextDecl_ = NULL; - soap_default_string(soap, &a->saml2__AuthnContextDeclRef_); - a->__sizeAuthenticatingAuthority = 0; - a->saml2__AuthenticatingAuthority = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthnContextType(struct soap *soap, const struct saml2__AuthnContextType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->saml2__AuthnContextClassRef); - soap_serialize_string(soap, (char*const*)&a->saml2__AuthnContextDeclRef); - soap_serialize_string(soap, (char*const*)&a->saml2__AuthnContextDeclRef_); - if (a->saml2__AuthenticatingAuthority) - { int i; - for (i = 0; i < (int)a->__sizeAuthenticatingAuthority; i++) - { - soap_serialize_string(soap, (char*const*)(a->saml2__AuthenticatingAuthority + i)); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AuthnContextType(struct soap *soap, const char *tag, int id, const struct saml2__AuthnContextType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AuthnContextType), type)) - return soap->error; - if (soap_out_string(soap, "saml2:AuthnContextClassRef", -1, (char*const*)&a->saml2__AuthnContextClassRef, "")) - return soap->error; - if (soap_outliteral(soap, "saml2:AuthnContextDecl", (char*const*)&a->saml2__AuthnContextDecl, NULL)) - return soap->error; - if (soap_out_string(soap, "saml2:AuthnContextDeclRef", -1, (char*const*)&a->saml2__AuthnContextDeclRef, "")) - return soap->error; - if (soap_outliteral(soap, "saml2:AuthnContextDecl", (char*const*)&a->saml2__AuthnContextDecl_, NULL)) - return soap->error; - if (soap_out_string(soap, "saml2:AuthnContextDeclRef", -1, (char*const*)&a->saml2__AuthnContextDeclRef_, "")) - return soap->error; - if (a->saml2__AuthenticatingAuthority) - { int i; - for (i = 0; i < (int)a->__sizeAuthenticatingAuthority; i++) - if (soap_out_string(soap, "saml2:AuthenticatingAuthority", -1, (char*const*)(a->saml2__AuthenticatingAuthority + i), "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AuthnContextType * SOAP_FMAC4 soap_in_saml2__AuthnContextType(struct soap *soap, const char *tag, struct saml2__AuthnContextType *a, const char *type) -{ - size_t soap_flag_saml2__AuthnContextClassRef = 1; - size_t soap_flag_saml2__AuthnContextDecl = 1; - size_t soap_flag_saml2__AuthnContextDeclRef = 1; - size_t soap_flag_saml2__AuthnContextDecl_ = 1; - size_t soap_flag_saml2__AuthnContextDeclRef_ = 1; - struct soap_blist *soap_blist_saml2__AuthenticatingAuthority = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AuthnContextType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AuthnContextType, sizeof(struct saml2__AuthnContextType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AuthnContextType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__AuthnContextClassRef && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml2:AuthnContextClassRef", (char**)&a->saml2__AuthnContextClassRef, "xsd:string")) - { soap_flag_saml2__AuthnContextClassRef--; - continue; - } - } - if (soap_flag_saml2__AuthnContextDecl && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "saml2:AuthnContextDecl", (char**)&a->saml2__AuthnContextDecl)) - { soap_flag_saml2__AuthnContextDecl--; - continue; - } - } - if (soap_flag_saml2__AuthnContextDeclRef && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml2:AuthnContextDeclRef", (char**)&a->saml2__AuthnContextDeclRef, "xsd:string")) - { soap_flag_saml2__AuthnContextDeclRef--; - continue; - } - } - if (soap_flag_saml2__AuthnContextDecl_ && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "saml2:AuthnContextDecl", (char**)&a->saml2__AuthnContextDecl_)) - { soap_flag_saml2__AuthnContextDecl_--; - continue; - } - } - if (soap_flag_saml2__AuthnContextDeclRef_ && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml2:AuthnContextDeclRef", (char**)&a->saml2__AuthnContextDeclRef_, "xsd:string")) - { soap_flag_saml2__AuthnContextDeclRef_--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml2:AuthenticatingAuthority", 1, NULL)) - { if (a->saml2__AuthenticatingAuthority == NULL) - { if (soap_blist_saml2__AuthenticatingAuthority == NULL) - soap_blist_saml2__AuthenticatingAuthority = soap_alloc_block(soap); - a->saml2__AuthenticatingAuthority = (char **)soap_push_block_max(soap, soap_blist_saml2__AuthenticatingAuthority, sizeof(char *)); - if (a->saml2__AuthenticatingAuthority == NULL) - return NULL; - *a->saml2__AuthenticatingAuthority = NULL; - } - soap_revert(soap); - if (soap_in_string(soap, "saml2:AuthenticatingAuthority", (char**)a->saml2__AuthenticatingAuthority, "xsd:string")) - { a->__sizeAuthenticatingAuthority++; - a->saml2__AuthenticatingAuthority = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml2__AuthenticatingAuthority) - soap_pop_block(soap, soap_blist_saml2__AuthenticatingAuthority); - if (a->__sizeAuthenticatingAuthority) - { a->saml2__AuthenticatingAuthority = (char **)soap_save_block(soap, soap_blist_saml2__AuthenticatingAuthority, NULL, 1); - } - else - { a->saml2__AuthenticatingAuthority = NULL; - if (soap_blist_saml2__AuthenticatingAuthority) - soap_end_block(soap, soap_blist_saml2__AuthenticatingAuthority); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__AuthnContextType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AuthnContextType, SOAP_TYPE_saml2__AuthnContextType, sizeof(struct saml2__AuthnContextType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AuthnContextType * SOAP_FMAC2 soap_instantiate_saml2__AuthnContextType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AuthnContextType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AuthnContextType *p; - size_t k = sizeof(struct saml2__AuthnContextType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AuthnContextType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AuthnContextType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AuthnContextType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AuthnContextType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AuthnContextType(struct soap *soap, const struct saml2__AuthnContextType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AuthnContextType(soap, tag ? tag : "saml2:AuthnContextType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AuthnContextType * SOAP_FMAC4 soap_get_saml2__AuthnContextType(struct soap *soap, struct saml2__AuthnContextType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AuthnContextType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectLocalityType(struct soap *soap, struct saml2__SubjectLocalityType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Address); - soap_default_string(soap, &a->DNSName); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectLocalityType(struct soap *soap, const struct saml2__SubjectLocalityType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectLocalityType(struct soap *soap, const char *tag, int id, const struct saml2__SubjectLocalityType *a, const char *type) -{ - if (a->Address) - soap_set_attr(soap, "Address", soap_string2s(soap, a->Address), 1); - if (a->DNSName) - soap_set_attr(soap, "DNSName", soap_string2s(soap, a->DNSName), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__SubjectLocalityType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__SubjectLocalityType * SOAP_FMAC4 soap_in_saml2__SubjectLocalityType(struct soap *soap, const char *tag, struct saml2__SubjectLocalityType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__SubjectLocalityType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__SubjectLocalityType, sizeof(struct saml2__SubjectLocalityType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__SubjectLocalityType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Address", 1, 0), &a->Address)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "DNSName", 1, 0), &a->DNSName)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__SubjectLocalityType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__SubjectLocalityType, SOAP_TYPE_saml2__SubjectLocalityType, sizeof(struct saml2__SubjectLocalityType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__SubjectLocalityType * SOAP_FMAC2 soap_instantiate_saml2__SubjectLocalityType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__SubjectLocalityType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__SubjectLocalityType *p; - size_t k = sizeof(struct saml2__SubjectLocalityType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__SubjectLocalityType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__SubjectLocalityType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__SubjectLocalityType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__SubjectLocalityType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectLocalityType(struct soap *soap, const struct saml2__SubjectLocalityType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__SubjectLocalityType(soap, tag ? tag : "saml2:SubjectLocalityType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__SubjectLocalityType * SOAP_FMAC4 soap_get_saml2__SubjectLocalityType(struct soap *soap, struct saml2__SubjectLocalityType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__SubjectLocalityType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AuthnStatementType(struct soap *soap, struct saml2__AuthnStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml2__SubjectLocality = NULL; - a->saml2__AuthnContext = NULL; - soap_default_xsd__dateTime(soap, &a->AuthnInstant); - soap_default_string(soap, &a->SessionIndex); - a->SessionNotOnOrAfter = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthnStatementType(struct soap *soap, const struct saml2__AuthnStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml2__SubjectLocalityType(soap, &a->saml2__SubjectLocality); - soap_serialize_PointerTosaml2__AuthnContextType(soap, &a->saml2__AuthnContext); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AuthnStatementType(struct soap *soap, const char *tag, int id, const struct saml2__AuthnStatementType *a, const char *type) -{ - soap_set_attr(soap, "AuthnInstant", soap_xsd__dateTime2s(soap, a->AuthnInstant), 1); - if (a->SessionIndex) - soap_set_attr(soap, "SessionIndex", soap_string2s(soap, a->SessionIndex), 1); - if (a->SessionNotOnOrAfter) - { soap_set_attr(soap, "SessionNotOnOrAfter", soap_xsd__dateTime2s(soap, *a->SessionNotOnOrAfter), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AuthnStatementType), type)) - return soap->error; - if (soap_out_PointerTosaml2__SubjectLocalityType(soap, "saml2:SubjectLocality", -1, &a->saml2__SubjectLocality, "")) - return soap->error; - if (!a->saml2__AuthnContext) - { if (soap_element_empty(soap, "saml2:AuthnContext", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTosaml2__AuthnContextType(soap, "saml2:AuthnContext", -1, &a->saml2__AuthnContext, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AuthnStatementType * SOAP_FMAC4 soap_in_saml2__AuthnStatementType(struct soap *soap, const char *tag, struct saml2__AuthnStatementType *a, const char *type) -{ - size_t soap_flag_saml2__SubjectLocality = 1; - size_t soap_flag_saml2__AuthnContext = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AuthnStatementType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AuthnStatementType, sizeof(struct saml2__AuthnStatementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AuthnStatementType(soap, a); - if (soap_s2xsd__dateTime(soap, soap_attr_value(soap, "AuthnInstant", 5, 1), &a->AuthnInstant)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "SessionIndex", 1, 0), &a->SessionIndex)) - return NULL; - { - const char *t = soap_attr_value(soap, "SessionNotOnOrAfter", 5, 0); - if (t) - { - if (!(a->SessionNotOnOrAfter = (struct timeval *)soap_malloc(soap, sizeof(struct timeval)))) - return NULL; - if (soap_s2xsd__dateTime(soap, t, a->SessionNotOnOrAfter)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__SubjectLocality && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__SubjectLocalityType(soap, "saml2:SubjectLocality", &a->saml2__SubjectLocality, "saml2:SubjectLocalityType")) - { soap_flag_saml2__SubjectLocality--; - continue; - } - } - if (soap_flag_saml2__AuthnContext && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AuthnContextType(soap, "saml2:AuthnContext", &a->saml2__AuthnContext, "saml2:AuthnContextType")) - { soap_flag_saml2__AuthnContext--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->saml2__AuthnContext)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml2__AuthnStatementType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AuthnStatementType, SOAP_TYPE_saml2__AuthnStatementType, sizeof(struct saml2__AuthnStatementType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AuthnStatementType * SOAP_FMAC2 soap_instantiate_saml2__AuthnStatementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AuthnStatementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AuthnStatementType *p; - size_t k = sizeof(struct saml2__AuthnStatementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AuthnStatementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AuthnStatementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AuthnStatementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AuthnStatementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AuthnStatementType(struct soap *soap, const struct saml2__AuthnStatementType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AuthnStatementType(soap, tag ? tag : "saml2:AuthnStatementType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AuthnStatementType * SOAP_FMAC4 soap_get_saml2__AuthnStatementType(struct soap *soap, struct saml2__AuthnStatementType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AuthnStatementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__StatementAbstractType(struct soap *soap, struct saml2__StatementAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__StatementAbstractType(struct soap *soap, const struct saml2__StatementAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__StatementAbstractType(struct soap *soap, const char *tag, int id, const struct saml2__StatementAbstractType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__StatementAbstractType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__StatementAbstractType * SOAP_FMAC4 soap_in_saml2__StatementAbstractType(struct soap *soap, const char *tag, struct saml2__StatementAbstractType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__StatementAbstractType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__StatementAbstractType, sizeof(struct saml2__StatementAbstractType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__StatementAbstractType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__StatementAbstractType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__StatementAbstractType, SOAP_TYPE_saml2__StatementAbstractType, sizeof(struct saml2__StatementAbstractType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__StatementAbstractType * SOAP_FMAC2 soap_instantiate_saml2__StatementAbstractType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__StatementAbstractType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__StatementAbstractType *p; - size_t k = sizeof(struct saml2__StatementAbstractType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__StatementAbstractType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__StatementAbstractType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__StatementAbstractType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__StatementAbstractType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__StatementAbstractType(struct soap *soap, const struct saml2__StatementAbstractType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__StatementAbstractType(soap, tag ? tag : "saml2:StatementAbstractType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__StatementAbstractType * SOAP_FMAC4 soap_get_saml2__StatementAbstractType(struct soap *soap, struct saml2__StatementAbstractType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__StatementAbstractType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AdviceType(struct soap *soap, struct saml2__AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_AdviceType = 0; - a->__union_AdviceType = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AdviceType(struct soap *soap, const struct saml2__AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_AdviceType) - { int i; - for (i = 0; i < (int)a->__size_AdviceType; i++) - { - soap_serialize___saml2__union_AdviceType(soap, a->__union_AdviceType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AdviceType(struct soap *soap, const char *tag, int id, const struct saml2__AdviceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AdviceType), type)) - return soap->error; - if (a->__union_AdviceType) - { int i; - for (i = 0; i < (int)a->__size_AdviceType; i++) - if (soap_out___saml2__union_AdviceType(soap, "-union-AdviceType", -1, a->__union_AdviceType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AdviceType * SOAP_FMAC4 soap_in_saml2__AdviceType(struct soap *soap, const char *tag, struct saml2__AdviceType *a, const char *type) -{ - struct soap_blist *soap_blist___union_AdviceType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AdviceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AdviceType, sizeof(struct saml2__AdviceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AdviceType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_AdviceType == NULL) - { if (soap_blist___union_AdviceType == NULL) - soap_blist___union_AdviceType = soap_alloc_block(soap); - a->__union_AdviceType = soap_block::push(soap, soap_blist___union_AdviceType); - if (a->__union_AdviceType == NULL) - return NULL; - soap_default___saml2__union_AdviceType(soap, a->__union_AdviceType); - } - if (soap_in___saml2__union_AdviceType(soap, "-union-AdviceType", a->__union_AdviceType, "-saml2:union-AdviceType")) - { a->__size_AdviceType++; - a->__union_AdviceType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_AdviceType) - soap_block::pop(soap, soap_blist___union_AdviceType); - if (a->__size_AdviceType) - { a->__union_AdviceType = soap_new___saml2__union_AdviceType(soap, a->__size_AdviceType); - if (!a->__union_AdviceType) - return NULL; - soap_block::save(soap, soap_blist___union_AdviceType, a->__union_AdviceType); - } - else - { a->__union_AdviceType = NULL; - if (soap_blist___union_AdviceType) - soap_block::end(soap, soap_blist___union_AdviceType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__AdviceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AdviceType, SOAP_TYPE_saml2__AdviceType, sizeof(struct saml2__AdviceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AdviceType * SOAP_FMAC2 soap_instantiate_saml2__AdviceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AdviceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AdviceType *p; - size_t k = sizeof(struct saml2__AdviceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AdviceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AdviceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AdviceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AdviceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AdviceType(struct soap *soap, const struct saml2__AdviceType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AdviceType(soap, tag ? tag : "saml2:AdviceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AdviceType * SOAP_FMAC4 soap_get_saml2__AdviceType(struct soap *soap, struct saml2__AdviceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AdviceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ProxyRestrictionType(struct soap *soap, struct saml2__ProxyRestrictionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeAudience = 0; - a->saml2__Audience = NULL; - soap_default_string(soap, &a->Count); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ProxyRestrictionType(struct soap *soap, const struct saml2__ProxyRestrictionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->saml2__Audience) - { int i; - for (i = 0; i < (int)a->__sizeAudience; i++) - { - soap_serialize_string(soap, (char*const*)(a->saml2__Audience + i)); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ProxyRestrictionType(struct soap *soap, const char *tag, int id, const struct saml2__ProxyRestrictionType *a, const char *type) -{ - if (a->Count) - soap_set_attr(soap, "Count", soap_string2s(soap, a->Count), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__ProxyRestrictionType), type)) - return soap->error; - if (a->saml2__Audience) - { int i; - for (i = 0; i < (int)a->__sizeAudience; i++) - if (soap_out_string(soap, "saml2:Audience", -1, (char*const*)(a->saml2__Audience + i), "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__ProxyRestrictionType * SOAP_FMAC4 soap_in_saml2__ProxyRestrictionType(struct soap *soap, const char *tag, struct saml2__ProxyRestrictionType *a, const char *type) -{ - struct soap_blist *soap_blist_saml2__Audience = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__ProxyRestrictionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__ProxyRestrictionType, sizeof(struct saml2__ProxyRestrictionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__ProxyRestrictionType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Count", 1, 0), &a->Count)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml2:Audience", 1, NULL)) - { if (a->saml2__Audience == NULL) - { if (soap_blist_saml2__Audience == NULL) - soap_blist_saml2__Audience = soap_alloc_block(soap); - a->saml2__Audience = (char **)soap_push_block_max(soap, soap_blist_saml2__Audience, sizeof(char *)); - if (a->saml2__Audience == NULL) - return NULL; - *a->saml2__Audience = NULL; - } - soap_revert(soap); - if (soap_in_string(soap, "saml2:Audience", (char**)a->saml2__Audience, "xsd:string")) - { a->__sizeAudience++; - a->saml2__Audience = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml2__Audience) - soap_pop_block(soap, soap_blist_saml2__Audience); - if (a->__sizeAudience) - { a->saml2__Audience = (char **)soap_save_block(soap, soap_blist_saml2__Audience, NULL, 1); - } - else - { a->saml2__Audience = NULL; - if (soap_blist_saml2__Audience) - soap_end_block(soap, soap_blist_saml2__Audience); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__ProxyRestrictionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__ProxyRestrictionType, SOAP_TYPE_saml2__ProxyRestrictionType, sizeof(struct saml2__ProxyRestrictionType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__ProxyRestrictionType * SOAP_FMAC2 soap_instantiate_saml2__ProxyRestrictionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__ProxyRestrictionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__ProxyRestrictionType *p; - size_t k = sizeof(struct saml2__ProxyRestrictionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__ProxyRestrictionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__ProxyRestrictionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__ProxyRestrictionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__ProxyRestrictionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ProxyRestrictionType(struct soap *soap, const struct saml2__ProxyRestrictionType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__ProxyRestrictionType(soap, tag ? tag : "saml2:ProxyRestrictionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__ProxyRestrictionType * SOAP_FMAC4 soap_get_saml2__ProxyRestrictionType(struct soap *soap, struct saml2__ProxyRestrictionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__ProxyRestrictionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__OneTimeUseType(struct soap *soap, struct saml2__OneTimeUseType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__OneTimeUseType(struct soap *soap, const struct saml2__OneTimeUseType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__OneTimeUseType(struct soap *soap, const char *tag, int id, const struct saml2__OneTimeUseType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__OneTimeUseType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__OneTimeUseType * SOAP_FMAC4 soap_in_saml2__OneTimeUseType(struct soap *soap, const char *tag, struct saml2__OneTimeUseType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__OneTimeUseType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__OneTimeUseType, sizeof(struct saml2__OneTimeUseType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__OneTimeUseType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__OneTimeUseType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__OneTimeUseType, SOAP_TYPE_saml2__OneTimeUseType, sizeof(struct saml2__OneTimeUseType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__OneTimeUseType * SOAP_FMAC2 soap_instantiate_saml2__OneTimeUseType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__OneTimeUseType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__OneTimeUseType *p; - size_t k = sizeof(struct saml2__OneTimeUseType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__OneTimeUseType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__OneTimeUseType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__OneTimeUseType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__OneTimeUseType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__OneTimeUseType(struct soap *soap, const struct saml2__OneTimeUseType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__OneTimeUseType(soap, tag ? tag : "saml2:OneTimeUseType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__OneTimeUseType * SOAP_FMAC4 soap_get_saml2__OneTimeUseType(struct soap *soap, struct saml2__OneTimeUseType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__OneTimeUseType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AudienceRestrictionType(struct soap *soap, struct saml2__AudienceRestrictionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeAudience = 0; - a->saml2__Audience = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AudienceRestrictionType(struct soap *soap, const struct saml2__AudienceRestrictionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->saml2__Audience) - { int i; - for (i = 0; i < (int)a->__sizeAudience; i++) - { - soap_serialize_string(soap, (char*const*)(a->saml2__Audience + i)); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AudienceRestrictionType(struct soap *soap, const char *tag, int id, const struct saml2__AudienceRestrictionType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AudienceRestrictionType), type)) - return soap->error; - if (a->saml2__Audience) - { int i; - for (i = 0; i < (int)a->__sizeAudience; i++) - if (soap_out_string(soap, "saml2:Audience", -1, (char*const*)(a->saml2__Audience + i), "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AudienceRestrictionType * SOAP_FMAC4 soap_in_saml2__AudienceRestrictionType(struct soap *soap, const char *tag, struct saml2__AudienceRestrictionType *a, const char *type) -{ - struct soap_blist *soap_blist_saml2__Audience = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AudienceRestrictionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AudienceRestrictionType, sizeof(struct saml2__AudienceRestrictionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AudienceRestrictionType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml2:Audience", 1, NULL)) - { if (a->saml2__Audience == NULL) - { if (soap_blist_saml2__Audience == NULL) - soap_blist_saml2__Audience = soap_alloc_block(soap); - a->saml2__Audience = (char **)soap_push_block_max(soap, soap_blist_saml2__Audience, sizeof(char *)); - if (a->saml2__Audience == NULL) - return NULL; - *a->saml2__Audience = NULL; - } - soap_revert(soap); - if (soap_in_string(soap, "saml2:Audience", (char**)a->saml2__Audience, "xsd:string")) - { a->__sizeAudience++; - a->saml2__Audience = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml2__Audience) - soap_pop_block(soap, soap_blist_saml2__Audience); - if (a->__sizeAudience) - { a->saml2__Audience = (char **)soap_save_block(soap, soap_blist_saml2__Audience, NULL, 1); - } - else - { a->saml2__Audience = NULL; - if (soap_blist_saml2__Audience) - soap_end_block(soap, soap_blist_saml2__Audience); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__sizeAudience < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml2__AudienceRestrictionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AudienceRestrictionType, SOAP_TYPE_saml2__AudienceRestrictionType, sizeof(struct saml2__AudienceRestrictionType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AudienceRestrictionType * SOAP_FMAC2 soap_instantiate_saml2__AudienceRestrictionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AudienceRestrictionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AudienceRestrictionType *p; - size_t k = sizeof(struct saml2__AudienceRestrictionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AudienceRestrictionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AudienceRestrictionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AudienceRestrictionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AudienceRestrictionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AudienceRestrictionType(struct soap *soap, const struct saml2__AudienceRestrictionType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AudienceRestrictionType(soap, tag ? tag : "saml2:AudienceRestrictionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AudienceRestrictionType * SOAP_FMAC4 soap_get_saml2__AudienceRestrictionType(struct soap *soap, struct saml2__AudienceRestrictionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AudienceRestrictionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ConditionAbstractType(struct soap *soap, struct saml2__ConditionAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ConditionAbstractType(struct soap *soap, const struct saml2__ConditionAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ConditionAbstractType(struct soap *soap, const char *tag, int id, const struct saml2__ConditionAbstractType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__ConditionAbstractType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__ConditionAbstractType * SOAP_FMAC4 soap_in_saml2__ConditionAbstractType(struct soap *soap, const char *tag, struct saml2__ConditionAbstractType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__ConditionAbstractType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__ConditionAbstractType, sizeof(struct saml2__ConditionAbstractType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__ConditionAbstractType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__ConditionAbstractType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__ConditionAbstractType, SOAP_TYPE_saml2__ConditionAbstractType, sizeof(struct saml2__ConditionAbstractType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__ConditionAbstractType * SOAP_FMAC2 soap_instantiate_saml2__ConditionAbstractType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__ConditionAbstractType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__ConditionAbstractType *p; - size_t k = sizeof(struct saml2__ConditionAbstractType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__ConditionAbstractType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__ConditionAbstractType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__ConditionAbstractType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__ConditionAbstractType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ConditionAbstractType(struct soap *soap, const struct saml2__ConditionAbstractType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__ConditionAbstractType(soap, tag ? tag : "saml2:ConditionAbstractType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__ConditionAbstractType * SOAP_FMAC4 soap_get_saml2__ConditionAbstractType(struct soap *soap, struct saml2__ConditionAbstractType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__ConditionAbstractType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ConditionsType(struct soap *soap, struct saml2__ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_ConditionsType = 0; - a->__union_ConditionsType = NULL; - a->NotBefore = NULL; - a->NotOnOrAfter = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ConditionsType(struct soap *soap, const struct saml2__ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_ConditionsType) - { int i; - for (i = 0; i < (int)a->__size_ConditionsType; i++) - { - soap_serialize___saml2__union_ConditionsType(soap, a->__union_ConditionsType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ConditionsType(struct soap *soap, const char *tag, int id, const struct saml2__ConditionsType *a, const char *type) -{ - if (a->NotBefore) - { soap_set_attr(soap, "NotBefore", soap_xsd__dateTime2s(soap, *a->NotBefore), 1); - } - if (a->NotOnOrAfter) - { soap_set_attr(soap, "NotOnOrAfter", soap_xsd__dateTime2s(soap, *a->NotOnOrAfter), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__ConditionsType), type)) - return soap->error; - if (a->__union_ConditionsType) - { int i; - for (i = 0; i < (int)a->__size_ConditionsType; i++) - if (soap_out___saml2__union_ConditionsType(soap, "-union-ConditionsType", -1, a->__union_ConditionsType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__ConditionsType * SOAP_FMAC4 soap_in_saml2__ConditionsType(struct soap *soap, const char *tag, struct saml2__ConditionsType *a, const char *type) -{ - struct soap_blist *soap_blist___union_ConditionsType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__ConditionsType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__ConditionsType, sizeof(struct saml2__ConditionsType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__ConditionsType(soap, a); - { - const char *t = soap_attr_value(soap, "NotBefore", 5, 0); - if (t) - { - if (!(a->NotBefore = (struct timeval *)soap_malloc(soap, sizeof(struct timeval)))) - return NULL; - if (soap_s2xsd__dateTime(soap, t, a->NotBefore)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "NotOnOrAfter", 5, 0); - if (t) - { - if (!(a->NotOnOrAfter = (struct timeval *)soap_malloc(soap, sizeof(struct timeval)))) - return NULL; - if (soap_s2xsd__dateTime(soap, t, a->NotOnOrAfter)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_ConditionsType == NULL) - { if (soap_blist___union_ConditionsType == NULL) - soap_blist___union_ConditionsType = soap_alloc_block(soap); - a->__union_ConditionsType = soap_block::push(soap, soap_blist___union_ConditionsType); - if (a->__union_ConditionsType == NULL) - return NULL; - soap_default___saml2__union_ConditionsType(soap, a->__union_ConditionsType); - } - if (soap_in___saml2__union_ConditionsType(soap, "-union-ConditionsType", a->__union_ConditionsType, "-saml2:union-ConditionsType")) - { a->__size_ConditionsType++; - a->__union_ConditionsType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_ConditionsType) - soap_block::pop(soap, soap_blist___union_ConditionsType); - if (a->__size_ConditionsType) - { a->__union_ConditionsType = soap_new___saml2__union_ConditionsType(soap, a->__size_ConditionsType); - if (!a->__union_ConditionsType) - return NULL; - soap_block::save(soap, soap_blist___union_ConditionsType, a->__union_ConditionsType); - } - else - { a->__union_ConditionsType = NULL; - if (soap_blist___union_ConditionsType) - soap_block::end(soap, soap_blist___union_ConditionsType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__ConditionsType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__ConditionsType, SOAP_TYPE_saml2__ConditionsType, sizeof(struct saml2__ConditionsType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__ConditionsType * SOAP_FMAC2 soap_instantiate_saml2__ConditionsType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__ConditionsType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__ConditionsType *p; - size_t k = sizeof(struct saml2__ConditionsType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__ConditionsType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__ConditionsType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__ConditionsType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__ConditionsType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ConditionsType(struct soap *soap, const struct saml2__ConditionsType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__ConditionsType(soap, tag ? tag : "saml2:ConditionsType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__ConditionsType * SOAP_FMAC4 soap_get_saml2__ConditionsType(struct soap *soap, struct saml2__ConditionsType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__ConditionsType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__KeyInfoConfirmationDataType(struct soap *soap, struct saml2__KeyInfoConfirmationDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeds__KeyInfo = 0; - a->ds__KeyInfo = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__KeyInfoConfirmationDataType(struct soap *soap, const struct saml2__KeyInfoConfirmationDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->ds__KeyInfo) - { int i; - for (i = 0; i < (int)a->__sizeds__KeyInfo; i++) - { - soap_serialize_PointerTo_ds__KeyInfo(soap, a->ds__KeyInfo + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__KeyInfoConfirmationDataType(struct soap *soap, const char *tag, int id, const struct saml2__KeyInfoConfirmationDataType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__KeyInfoConfirmationDataType), type)) - return soap->error; - if (a->ds__KeyInfo) - { int i; - for (i = 0; i < (int)a->__sizeds__KeyInfo; i++) - if (soap_out_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", -1, a->ds__KeyInfo + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__KeyInfoConfirmationDataType * SOAP_FMAC4 soap_in_saml2__KeyInfoConfirmationDataType(struct soap *soap, const char *tag, struct saml2__KeyInfoConfirmationDataType *a, const char *type) -{ - struct soap_blist *soap_blist_ds__KeyInfo = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__KeyInfoConfirmationDataType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__KeyInfoConfirmationDataType, sizeof(struct saml2__KeyInfoConfirmationDataType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__KeyInfoConfirmationDataType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "ds:KeyInfo", 1, NULL)) - { if (a->ds__KeyInfo == NULL) - { if (soap_blist_ds__KeyInfo == NULL) - soap_blist_ds__KeyInfo = soap_alloc_block(soap); - a->ds__KeyInfo = (struct ds__KeyInfoType **)soap_push_block_max(soap, soap_blist_ds__KeyInfo, sizeof(struct ds__KeyInfoType *)); - if (a->ds__KeyInfo == NULL) - return NULL; - *a->ds__KeyInfo = NULL; - } - soap_revert(soap); - if (soap_in_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", a->ds__KeyInfo, "")) - { a->__sizeds__KeyInfo++; - a->ds__KeyInfo = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->ds__KeyInfo) - soap_pop_block(soap, soap_blist_ds__KeyInfo); - if (a->__sizeds__KeyInfo) - { a->ds__KeyInfo = (struct ds__KeyInfoType **)soap_save_block(soap, soap_blist_ds__KeyInfo, NULL, 1); - } - else - { a->ds__KeyInfo = NULL; - if (soap_blist_ds__KeyInfo) - soap_end_block(soap, soap_blist_ds__KeyInfo); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__sizeds__KeyInfo < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml2__KeyInfoConfirmationDataType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__KeyInfoConfirmationDataType, SOAP_TYPE_saml2__KeyInfoConfirmationDataType, sizeof(struct saml2__KeyInfoConfirmationDataType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__KeyInfoConfirmationDataType * SOAP_FMAC2 soap_instantiate_saml2__KeyInfoConfirmationDataType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__KeyInfoConfirmationDataType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__KeyInfoConfirmationDataType *p; - size_t k = sizeof(struct saml2__KeyInfoConfirmationDataType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__KeyInfoConfirmationDataType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__KeyInfoConfirmationDataType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__KeyInfoConfirmationDataType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__KeyInfoConfirmationDataType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__KeyInfoConfirmationDataType(struct soap *soap, const struct saml2__KeyInfoConfirmationDataType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__KeyInfoConfirmationDataType(soap, tag ? tag : "saml2:KeyInfoConfirmationDataType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__KeyInfoConfirmationDataType * SOAP_FMAC4 soap_get_saml2__KeyInfoConfirmationDataType(struct soap *soap, struct saml2__KeyInfoConfirmationDataType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__KeyInfoConfirmationDataType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectConfirmationDataType(struct soap *soap, struct saml2__SubjectConfirmationDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->NotBefore = NULL; - a->NotOnOrAfter = NULL; - soap_default_string(soap, &a->Recipient); - soap_default_string(soap, &a->InResponseTo); - soap_default_string(soap, &a->Address); - a->__mixed = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectConfirmationDataType(struct soap *soap, const struct saml2__SubjectConfirmationDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectConfirmationDataType(struct soap *soap, const char *tag, int id, const struct saml2__SubjectConfirmationDataType *a, const char *type) -{ - if (a->NotBefore) - { soap_set_attr(soap, "NotBefore", soap_xsd__dateTime2s(soap, *a->NotBefore), 1); - } - if (a->NotOnOrAfter) - { soap_set_attr(soap, "NotOnOrAfter", soap_xsd__dateTime2s(soap, *a->NotOnOrAfter), 1); - } - if (a->Recipient) - soap_set_attr(soap, "Recipient", soap_string2s(soap, a->Recipient), 1); - if (a->InResponseTo) - soap_set_attr(soap, "InResponseTo", soap_string2s(soap, a->InResponseTo), 1); - if (a->Address) - soap_set_attr(soap, "Address", soap_string2s(soap, a->Address), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__SubjectConfirmationDataType), type)) - return soap->error; - if (soap_outliteral(soap, "-mixed", (char*const*)&a->__mixed, NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__SubjectConfirmationDataType * SOAP_FMAC4 soap_in_saml2__SubjectConfirmationDataType(struct soap *soap, const char *tag, struct saml2__SubjectConfirmationDataType *a, const char *type) -{ - size_t soap_flag___mixed = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__SubjectConfirmationDataType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__SubjectConfirmationDataType, sizeof(struct saml2__SubjectConfirmationDataType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__SubjectConfirmationDataType(soap, a); - { - const char *t = soap_attr_value(soap, "NotBefore", 5, 0); - if (t) - { - if (!(a->NotBefore = (struct timeval *)soap_malloc(soap, sizeof(struct timeval)))) - return NULL; - if (soap_s2xsd__dateTime(soap, t, a->NotBefore)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "NotOnOrAfter", 5, 0); - if (t) - { - if (!(a->NotOnOrAfter = (struct timeval *)soap_malloc(soap, sizeof(struct timeval)))) - return NULL; - if (soap_s2xsd__dateTime(soap, t, a->NotOnOrAfter)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap_s2string(soap, soap_attr_value(soap, "Recipient", 1, 0), &a->Recipient)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "InResponseTo", 1, 0), &a->InResponseTo)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Address", 1, 0), &a->Address)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag___mixed && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "-mixed", (char**)&a->__mixed)) - { soap_flag___mixed--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__SubjectConfirmationDataType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__SubjectConfirmationDataType, SOAP_TYPE_saml2__SubjectConfirmationDataType, sizeof(struct saml2__SubjectConfirmationDataType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__SubjectConfirmationDataType * SOAP_FMAC2 soap_instantiate_saml2__SubjectConfirmationDataType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__SubjectConfirmationDataType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__SubjectConfirmationDataType *p; - size_t k = sizeof(struct saml2__SubjectConfirmationDataType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__SubjectConfirmationDataType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__SubjectConfirmationDataType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__SubjectConfirmationDataType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__SubjectConfirmationDataType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectConfirmationDataType(struct soap *soap, const struct saml2__SubjectConfirmationDataType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__SubjectConfirmationDataType(soap, tag ? tag : "saml2:SubjectConfirmationDataType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__SubjectConfirmationDataType * SOAP_FMAC4 soap_get_saml2__SubjectConfirmationDataType(struct soap *soap, struct saml2__SubjectConfirmationDataType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__SubjectConfirmationDataType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectConfirmationType(struct soap *soap, struct saml2__SubjectConfirmationType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml2__BaseID = NULL; - a->saml2__NameID = NULL; - a->saml2__EncryptedID = NULL; - a->saml2__SubjectConfirmationData = NULL; - soap_default_string(soap, &a->Method); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectConfirmationType(struct soap *soap, const struct saml2__SubjectConfirmationType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml2__BaseIDAbstractType(soap, &a->saml2__BaseID); - soap_serialize_PointerTosaml2__NameIDType(soap, &a->saml2__NameID); - soap_serialize_PointerTosaml2__EncryptedElementType(soap, &a->saml2__EncryptedID); - soap_serialize_PointerTosaml2__SubjectConfirmationDataType(soap, &a->saml2__SubjectConfirmationData); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectConfirmationType(struct soap *soap, const char *tag, int id, const struct saml2__SubjectConfirmationType *a, const char *type) -{ - soap_set_attr(soap, "Method", a->Method ? soap_string2s(soap, a->Method) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__SubjectConfirmationType), type)) - return soap->error; - if (soap_out_PointerTosaml2__BaseIDAbstractType(soap, "saml2:BaseID", -1, &a->saml2__BaseID, "")) - return soap->error; - if (soap_out_PointerTosaml2__NameIDType(soap, "saml2:NameID", -1, &a->saml2__NameID, "")) - return soap->error; - if (soap_out_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedID", -1, &a->saml2__EncryptedID, "")) - return soap->error; - if (soap_out_PointerTosaml2__SubjectConfirmationDataType(soap, "saml2:SubjectConfirmationData", -1, &a->saml2__SubjectConfirmationData, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__SubjectConfirmationType * SOAP_FMAC4 soap_in_saml2__SubjectConfirmationType(struct soap *soap, const char *tag, struct saml2__SubjectConfirmationType *a, const char *type) -{ - size_t soap_flag_saml2__BaseID = 1; - size_t soap_flag_saml2__NameID = 1; - size_t soap_flag_saml2__EncryptedID = 1; - size_t soap_flag_saml2__SubjectConfirmationData = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__SubjectConfirmationType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__SubjectConfirmationType, sizeof(struct saml2__SubjectConfirmationType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__SubjectConfirmationType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Method", 1, 1), &a->Method)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__BaseID && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__BaseIDAbstractType(soap, "saml2:BaseID", &a->saml2__BaseID, "saml2:BaseIDAbstractType")) - { soap_flag_saml2__BaseID--; - continue; - } - } - if (soap_flag_saml2__NameID && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__NameIDType(soap, "saml2:NameID", &a->saml2__NameID, "saml2:NameIDType")) - { soap_flag_saml2__NameID--; - continue; - } - } - if (soap_flag_saml2__EncryptedID && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedID", &a->saml2__EncryptedID, "saml2:EncryptedElementType")) - { soap_flag_saml2__EncryptedID--; - continue; - } - } - if (soap_flag_saml2__SubjectConfirmationData && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__SubjectConfirmationDataType(soap, "saml2:SubjectConfirmationData", &a->saml2__SubjectConfirmationData, "saml2:SubjectConfirmationDataType")) - { soap_flag_saml2__SubjectConfirmationData--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__SubjectConfirmationType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__SubjectConfirmationType, SOAP_TYPE_saml2__SubjectConfirmationType, sizeof(struct saml2__SubjectConfirmationType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__SubjectConfirmationType * SOAP_FMAC2 soap_instantiate_saml2__SubjectConfirmationType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__SubjectConfirmationType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__SubjectConfirmationType *p; - size_t k = sizeof(struct saml2__SubjectConfirmationType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__SubjectConfirmationType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__SubjectConfirmationType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__SubjectConfirmationType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__SubjectConfirmationType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectConfirmationType(struct soap *soap, const struct saml2__SubjectConfirmationType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__SubjectConfirmationType(soap, tag ? tag : "saml2:SubjectConfirmationType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__SubjectConfirmationType * SOAP_FMAC4 soap_get_saml2__SubjectConfirmationType(struct soap *soap, struct saml2__SubjectConfirmationType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__SubjectConfirmationType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectType(struct soap *soap, struct saml2__SubjectType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml2__BaseID = NULL; - a->saml2__NameID = NULL; - a->saml2__EncryptedID = NULL; - a->__sizeSubjectConfirmation = 0; - a->saml2__SubjectConfirmation = NULL; - a->__sizeSubjectConfirmation_ = 0; - a->saml2__SubjectConfirmation_ = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectType(struct soap *soap, const struct saml2__SubjectType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml2__BaseIDAbstractType(soap, &a->saml2__BaseID); - soap_serialize_PointerTosaml2__NameIDType(soap, &a->saml2__NameID); - soap_serialize_PointerTosaml2__EncryptedElementType(soap, &a->saml2__EncryptedID); - if (a->saml2__SubjectConfirmation) - { int i; - for (i = 0; i < (int)a->__sizeSubjectConfirmation; i++) - { - soap_embedded(soap, a->saml2__SubjectConfirmation + i, SOAP_TYPE_saml2__SubjectConfirmationType); - soap_serialize_saml2__SubjectConfirmationType(soap, a->saml2__SubjectConfirmation + i); - } - } - if (a->saml2__SubjectConfirmation_) - { int i; - for (i = 0; i < (int)a->__sizeSubjectConfirmation_; i++) - { - soap_embedded(soap, a->saml2__SubjectConfirmation_ + i, SOAP_TYPE_saml2__SubjectConfirmationType); - soap_serialize_saml2__SubjectConfirmationType(soap, a->saml2__SubjectConfirmation_ + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectType(struct soap *soap, const char *tag, int id, const struct saml2__SubjectType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__SubjectType), type)) - return soap->error; - if (soap_out_PointerTosaml2__BaseIDAbstractType(soap, "saml2:BaseID", -1, &a->saml2__BaseID, "")) - return soap->error; - if (soap_out_PointerTosaml2__NameIDType(soap, "saml2:NameID", -1, &a->saml2__NameID, "")) - return soap->error; - if (soap_out_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedID", -1, &a->saml2__EncryptedID, "")) - return soap->error; - if (a->saml2__SubjectConfirmation) - { int i; - for (i = 0; i < (int)a->__sizeSubjectConfirmation; i++) - if (soap_out_saml2__SubjectConfirmationType(soap, "saml2:SubjectConfirmation", -1, a->saml2__SubjectConfirmation + i, "")) - return soap->error; - } - if (a->saml2__SubjectConfirmation_) - { int i; - for (i = 0; i < (int)a->__sizeSubjectConfirmation_; i++) - if (soap_out_saml2__SubjectConfirmationType(soap, "saml2:SubjectConfirmation", -1, a->saml2__SubjectConfirmation_ + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__SubjectType * SOAP_FMAC4 soap_in_saml2__SubjectType(struct soap *soap, const char *tag, struct saml2__SubjectType *a, const char *type) -{ - size_t soap_flag_saml2__BaseID = 1; - size_t soap_flag_saml2__NameID = 1; - size_t soap_flag_saml2__EncryptedID = 1; - struct soap_blist *soap_blist_saml2__SubjectConfirmation = NULL; - struct soap_blist *soap_blist_saml2__SubjectConfirmation_ = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__SubjectType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__SubjectType, sizeof(struct saml2__SubjectType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__SubjectType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__BaseID && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__BaseIDAbstractType(soap, "saml2:BaseID", &a->saml2__BaseID, "saml2:BaseIDAbstractType")) - { soap_flag_saml2__BaseID--; - continue; - } - } - if (soap_flag_saml2__NameID && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__NameIDType(soap, "saml2:NameID", &a->saml2__NameID, "saml2:NameIDType")) - { soap_flag_saml2__NameID--; - continue; - } - } - if (soap_flag_saml2__EncryptedID && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__EncryptedElementType(soap, "saml2:EncryptedID", &a->saml2__EncryptedID, "saml2:EncryptedElementType")) - { soap_flag_saml2__EncryptedID--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml2:SubjectConfirmation", 1, NULL)) - { if (a->saml2__SubjectConfirmation == NULL) - { if (soap_blist_saml2__SubjectConfirmation == NULL) - soap_blist_saml2__SubjectConfirmation = soap_alloc_block(soap); - a->saml2__SubjectConfirmation = soap_block::push(soap, soap_blist_saml2__SubjectConfirmation); - if (a->saml2__SubjectConfirmation == NULL) - return NULL; - soap_default_saml2__SubjectConfirmationType(soap, a->saml2__SubjectConfirmation); - } - soap_revert(soap); - if (soap_in_saml2__SubjectConfirmationType(soap, "saml2:SubjectConfirmation", a->saml2__SubjectConfirmation, "saml2:SubjectConfirmationType")) - { a->__sizeSubjectConfirmation++; - a->saml2__SubjectConfirmation = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml2:SubjectConfirmation", 1, NULL)) - { if (a->saml2__SubjectConfirmation_ == NULL) - { if (soap_blist_saml2__SubjectConfirmation_ == NULL) - soap_blist_saml2__SubjectConfirmation_ = soap_alloc_block(soap); - a->saml2__SubjectConfirmation_ = soap_block::push(soap, soap_blist_saml2__SubjectConfirmation_); - if (a->saml2__SubjectConfirmation_ == NULL) - return NULL; - soap_default_saml2__SubjectConfirmationType(soap, a->saml2__SubjectConfirmation_); - } - soap_revert(soap); - if (soap_in_saml2__SubjectConfirmationType(soap, "saml2:SubjectConfirmation", a->saml2__SubjectConfirmation_, "saml2:SubjectConfirmationType")) - { a->__sizeSubjectConfirmation_++; - a->saml2__SubjectConfirmation_ = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml2__SubjectConfirmation) - soap_block::pop(soap, soap_blist_saml2__SubjectConfirmation); - if (a->__sizeSubjectConfirmation) - { a->saml2__SubjectConfirmation = soap_new_saml2__SubjectConfirmationType(soap, a->__sizeSubjectConfirmation); - if (!a->saml2__SubjectConfirmation) - return NULL; - soap_block::save(soap, soap_blist_saml2__SubjectConfirmation, a->saml2__SubjectConfirmation); - } - else - { a->saml2__SubjectConfirmation = NULL; - if (soap_blist_saml2__SubjectConfirmation) - soap_block::end(soap, soap_blist_saml2__SubjectConfirmation); - } - if (a->saml2__SubjectConfirmation_) - soap_block::pop(soap, soap_blist_saml2__SubjectConfirmation_); - if (a->__sizeSubjectConfirmation_) - { a->saml2__SubjectConfirmation_ = soap_new_saml2__SubjectConfirmationType(soap, a->__sizeSubjectConfirmation_); - if (!a->saml2__SubjectConfirmation_) - return NULL; - soap_block::save(soap, soap_blist_saml2__SubjectConfirmation_, a->saml2__SubjectConfirmation_); - } - else - { a->saml2__SubjectConfirmation_ = NULL; - if (soap_blist_saml2__SubjectConfirmation_) - soap_block::end(soap, soap_blist_saml2__SubjectConfirmation_); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__SubjectType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__SubjectType, SOAP_TYPE_saml2__SubjectType, sizeof(struct saml2__SubjectType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__SubjectType * SOAP_FMAC2 soap_instantiate_saml2__SubjectType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__SubjectType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__SubjectType *p; - size_t k = sizeof(struct saml2__SubjectType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__SubjectType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__SubjectType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__SubjectType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__SubjectType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectType(struct soap *soap, const struct saml2__SubjectType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__SubjectType(soap, tag ? tag : "saml2:SubjectType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__SubjectType * SOAP_FMAC4 soap_get_saml2__SubjectType(struct soap *soap, struct saml2__SubjectType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__SubjectType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AssertionType(struct soap *soap, struct saml2__AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml2__Issuer = NULL; - a->ds__Signature = NULL; - a->saml2__Subject = NULL; - a->saml2__Conditions = NULL; - a->saml2__Advice = NULL; - a->__size_AssertionType = 0; - a->__union_AssertionType = NULL; - soap_default_string(soap, &a->Version); - soap_default_string(soap, &a->ID); - soap_default_xsd__dateTime(soap, &a->IssueInstant); - soap_default_string(soap, &a->wsu__Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AssertionType(struct soap *soap, const struct saml2__AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml2__NameIDType(soap, &a->saml2__Issuer); - soap_serialize_PointerTo_ds__Signature(soap, &a->ds__Signature); - soap_serialize_PointerTosaml2__SubjectType(soap, &a->saml2__Subject); - soap_serialize_PointerTosaml2__ConditionsType(soap, &a->saml2__Conditions); - soap_serialize_PointerTosaml2__AdviceType(soap, &a->saml2__Advice); - if (a->__union_AssertionType) - { int i; - for (i = 0; i < (int)a->__size_AssertionType; i++) - { - soap_serialize___saml2__union_AssertionType(soap, a->__union_AssertionType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AssertionType(struct soap *soap, const char *tag, int id, const struct saml2__AssertionType *a, const char *type) -{ - soap_set_attr(soap, "Version", a->Version ? soap_string2s(soap, a->Version) : "", 1); - soap_set_attr(soap, "ID", a->ID ? soap_string2s(soap, a->ID) : "", 1); - soap_set_attr(soap, "IssueInstant", soap_xsd__dateTime2s(soap, a->IssueInstant), 1); - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__AssertionType), type)) - return soap->error; - if (!a->saml2__Issuer) - { if (soap_element_empty(soap, "saml2:Issuer", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTosaml2__NameIDType(soap, "saml2:Issuer", -1, &a->saml2__Issuer, "")) - return soap->error; - if (soap_out_PointerTo_ds__Signature(soap, "ds:Signature", -1, &a->ds__Signature, "")) - return soap->error; - if (soap_out_PointerTosaml2__SubjectType(soap, "saml2:Subject", -1, &a->saml2__Subject, "")) - return soap->error; - if (soap_out_PointerTosaml2__ConditionsType(soap, "saml2:Conditions", -1, &a->saml2__Conditions, "")) - return soap->error; - if (soap_out_PointerTosaml2__AdviceType(soap, "saml2:Advice", -1, &a->saml2__Advice, "")) - return soap->error; - if (a->__union_AssertionType) - { int i; - for (i = 0; i < (int)a->__size_AssertionType; i++) - if (soap_out___saml2__union_AssertionType(soap, "-union-AssertionType", -1, a->__union_AssertionType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__AssertionType * SOAP_FMAC4 soap_in_saml2__AssertionType(struct soap *soap, const char *tag, struct saml2__AssertionType *a, const char *type) -{ - size_t soap_flag_saml2__Issuer = 1; - size_t soap_flag_ds__Signature = 1; - size_t soap_flag_saml2__Subject = 1; - size_t soap_flag_saml2__Conditions = 1; - size_t soap_flag_saml2__Advice = 1; - struct soap_blist *soap_blist___union_AssertionType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__AssertionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__AssertionType, sizeof(struct saml2__AssertionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__AssertionType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Version", 1, 1), &a->Version)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "ID", 1, 1), &a->ID)) - return NULL; - if (soap_s2xsd__dateTime(soap, soap_attr_value(soap, "IssueInstant", 5, 1), &a->IssueInstant)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml2__Issuer && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__NameIDType(soap, "saml2:Issuer", &a->saml2__Issuer, "saml2:NameIDType")) - { soap_flag_saml2__Issuer--; - continue; - } - } - if (soap_flag_ds__Signature && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_ds__Signature(soap, "ds:Signature", &a->ds__Signature, "")) - { soap_flag_ds__Signature--; - continue; - } - } - if (soap_flag_saml2__Subject && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__SubjectType(soap, "saml2:Subject", &a->saml2__Subject, "saml2:SubjectType")) - { soap_flag_saml2__Subject--; - continue; - } - } - if (soap_flag_saml2__Conditions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__ConditionsType(soap, "saml2:Conditions", &a->saml2__Conditions, "saml2:ConditionsType")) - { soap_flag_saml2__Conditions--; - continue; - } - } - if (soap_flag_saml2__Advice && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml2__AdviceType(soap, "saml2:Advice", &a->saml2__Advice, "saml2:AdviceType")) - { soap_flag_saml2__Advice--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_AssertionType == NULL) - { if (soap_blist___union_AssertionType == NULL) - soap_blist___union_AssertionType = soap_alloc_block(soap); - a->__union_AssertionType = soap_block::push(soap, soap_blist___union_AssertionType); - if (a->__union_AssertionType == NULL) - return NULL; - soap_default___saml2__union_AssertionType(soap, a->__union_AssertionType); - } - if (soap_in___saml2__union_AssertionType(soap, "-union-AssertionType", a->__union_AssertionType, "-saml2:union-AssertionType")) - { a->__size_AssertionType++; - a->__union_AssertionType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_AssertionType) - soap_block::pop(soap, soap_blist___union_AssertionType); - if (a->__size_AssertionType) - { a->__union_AssertionType = soap_new___saml2__union_AssertionType(soap, a->__size_AssertionType); - if (!a->__union_AssertionType) - return NULL; - soap_block::save(soap, soap_blist___union_AssertionType, a->__union_AssertionType); - } - else - { a->__union_AssertionType = NULL; - if (soap_blist___union_AssertionType) - soap_block::end(soap, soap_blist___union_AssertionType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->saml2__Issuer)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml2__AssertionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__AssertionType, SOAP_TYPE_saml2__AssertionType, sizeof(struct saml2__AssertionType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__AssertionType * SOAP_FMAC2 soap_instantiate_saml2__AssertionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__AssertionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__AssertionType *p; - size_t k = sizeof(struct saml2__AssertionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__AssertionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__AssertionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__AssertionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__AssertionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AssertionType(struct soap *soap, const struct saml2__AssertionType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__AssertionType(soap, tag ? tag : "saml2:AssertionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__AssertionType * SOAP_FMAC4 soap_get_saml2__AssertionType(struct soap *soap, struct saml2__AssertionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__AssertionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__EncryptedElementType(struct soap *soap, struct saml2__EncryptedElementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_xenc__EncryptedDataType(soap, &a->xenc__EncryptedData); - a->__sizexenc__EncryptedKey = 0; - a->xenc__EncryptedKey = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EncryptedElementType(struct soap *soap, const struct saml2__EncryptedElementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_xenc__EncryptedDataType(soap, &a->xenc__EncryptedData); - if (a->xenc__EncryptedKey) - { int i; - for (i = 0; i < (int)a->__sizexenc__EncryptedKey; i++) - { - soap_serialize_PointerToxenc__EncryptedKeyType(soap, a->xenc__EncryptedKey + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__EncryptedElementType(struct soap *soap, const char *tag, int id, const struct saml2__EncryptedElementType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__EncryptedElementType), type)) - return soap->error; - if (soap_out_xenc__EncryptedDataType(soap, "xenc:EncryptedData", -1, &a->xenc__EncryptedData, "")) - return soap->error; - if (a->xenc__EncryptedKey) - { int i; - for (i = 0; i < (int)a->__sizexenc__EncryptedKey; i++) - if (soap_out_PointerToxenc__EncryptedKeyType(soap, "xenc:EncryptedKey", -1, a->xenc__EncryptedKey + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__EncryptedElementType * SOAP_FMAC4 soap_in_saml2__EncryptedElementType(struct soap *soap, const char *tag, struct saml2__EncryptedElementType *a, const char *type) -{ - size_t soap_flag_xenc__EncryptedData = 1; - struct soap_blist *soap_blist_xenc__EncryptedKey = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__EncryptedElementType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__EncryptedElementType, sizeof(struct saml2__EncryptedElementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__EncryptedElementType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_xenc__EncryptedData && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xenc__EncryptedDataType(soap, "xenc:EncryptedData", &a->xenc__EncryptedData, "xenc:EncryptedDataType")) - { soap_flag_xenc__EncryptedData--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "xenc:EncryptedKey", 1, NULL)) - { if (a->xenc__EncryptedKey == NULL) - { if (soap_blist_xenc__EncryptedKey == NULL) - soap_blist_xenc__EncryptedKey = soap_alloc_block(soap); - a->xenc__EncryptedKey = (struct xenc__EncryptedKeyType **)soap_push_block_max(soap, soap_blist_xenc__EncryptedKey, sizeof(struct xenc__EncryptedKeyType *)); - if (a->xenc__EncryptedKey == NULL) - return NULL; - *a->xenc__EncryptedKey = NULL; - } - soap_revert(soap); - if (soap_in_PointerToxenc__EncryptedKeyType(soap, "xenc:EncryptedKey", a->xenc__EncryptedKey, "xenc:EncryptedKeyType")) - { a->__sizexenc__EncryptedKey++; - a->xenc__EncryptedKey = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->xenc__EncryptedKey) - soap_pop_block(soap, soap_blist_xenc__EncryptedKey); - if (a->__sizexenc__EncryptedKey) - { a->xenc__EncryptedKey = (struct xenc__EncryptedKeyType **)soap_save_block(soap, soap_blist_xenc__EncryptedKey, NULL, 1); - } - else - { a->xenc__EncryptedKey = NULL; - if (soap_blist_xenc__EncryptedKey) - soap_end_block(soap, soap_blist_xenc__EncryptedKey); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_xenc__EncryptedData > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml2__EncryptedElementType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__EncryptedElementType, SOAP_TYPE_saml2__EncryptedElementType, sizeof(struct saml2__EncryptedElementType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__EncryptedElementType * SOAP_FMAC2 soap_instantiate_saml2__EncryptedElementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__EncryptedElementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__EncryptedElementType *p; - size_t k = sizeof(struct saml2__EncryptedElementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__EncryptedElementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__EncryptedElementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__EncryptedElementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__EncryptedElementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__EncryptedElementType(struct soap *soap, const struct saml2__EncryptedElementType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__EncryptedElementType(soap, tag ? tag : "saml2:EncryptedElementType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__EncryptedElementType * SOAP_FMAC4 soap_get_saml2__EncryptedElementType(struct soap *soap, struct saml2__EncryptedElementType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__EncryptedElementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__NameIDType(struct soap *soap, struct saml2__NameIDType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->Format); - soap_default_string(soap, &a->SPProvidedID); - soap_default_string(soap, &a->NameQualifier); - soap_default_string(soap, &a->SPNameQualifier); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__NameIDType(struct soap *soap, const struct saml2__NameIDType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__NameIDType(struct soap *soap, const char *tag, int id, const struct saml2__NameIDType *a, const char *type) -{ - if (a->Format) - soap_set_attr(soap, "Format", soap_string2s(soap, a->Format), 1); - if (a->SPProvidedID) - soap_set_attr(soap, "SPProvidedID", soap_string2s(soap, a->SPProvidedID), 1); - if (a->NameQualifier) - soap_set_attr(soap, "NameQualifier", soap_string2s(soap, a->NameQualifier), 1); - if (a->SPNameQualifier) - soap_set_attr(soap, "SPNameQualifier", soap_string2s(soap, a->SPNameQualifier), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct saml2__NameIDType * SOAP_FMAC4 soap_in_saml2__NameIDType(struct soap *soap, const char *tag, struct saml2__NameIDType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct saml2__NameIDType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__NameIDType, sizeof(struct saml2__NameIDType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_saml2__NameIDType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Format", 1, 0), &a->Format)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "SPProvidedID", 1, 0), &a->SPProvidedID)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "NameQualifier", 1, 0), &a->NameQualifier)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "SPNameQualifier", 1, 0), &a->SPNameQualifier)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "saml2:NameIDType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct saml2__NameIDType * SOAP_FMAC2 soap_instantiate_saml2__NameIDType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__NameIDType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__NameIDType *p; - size_t k = sizeof(struct saml2__NameIDType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__NameIDType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__NameIDType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__NameIDType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__NameIDType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__NameIDType(struct soap *soap, const struct saml2__NameIDType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__NameIDType(soap, tag ? tag : "saml2:NameIDType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__NameIDType * SOAP_FMAC4 soap_get_saml2__NameIDType(struct soap *soap, struct saml2__NameIDType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__NameIDType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__BaseIDAbstractType(struct soap *soap, struct saml2__BaseIDAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->NameQualifier); - soap_default_string(soap, &a->SPNameQualifier); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__BaseIDAbstractType(struct soap *soap, const struct saml2__BaseIDAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__BaseIDAbstractType(struct soap *soap, const char *tag, int id, const struct saml2__BaseIDAbstractType *a, const char *type) -{ - if (a->NameQualifier) - soap_set_attr(soap, "NameQualifier", soap_string2s(soap, a->NameQualifier), 1); - if (a->SPNameQualifier) - soap_set_attr(soap, "SPNameQualifier", soap_string2s(soap, a->SPNameQualifier), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml2__BaseIDAbstractType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml2__BaseIDAbstractType * SOAP_FMAC4 soap_in_saml2__BaseIDAbstractType(struct soap *soap, const char *tag, struct saml2__BaseIDAbstractType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml2__BaseIDAbstractType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml2__BaseIDAbstractType, sizeof(struct saml2__BaseIDAbstractType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml2__BaseIDAbstractType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "NameQualifier", 1, 0), &a->NameQualifier)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "SPNameQualifier", 1, 0), &a->SPNameQualifier)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml2__BaseIDAbstractType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml2__BaseIDAbstractType, SOAP_TYPE_saml2__BaseIDAbstractType, sizeof(struct saml2__BaseIDAbstractType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml2__BaseIDAbstractType * SOAP_FMAC2 soap_instantiate_saml2__BaseIDAbstractType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml2__BaseIDAbstractType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml2__BaseIDAbstractType *p; - size_t k = sizeof(struct saml2__BaseIDAbstractType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml2__BaseIDAbstractType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml2__BaseIDAbstractType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml2__BaseIDAbstractType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml2__BaseIDAbstractType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__BaseIDAbstractType(struct soap *soap, const struct saml2__BaseIDAbstractType *a, const char *tag, const char *type) -{ - if (soap_out_saml2__BaseIDAbstractType(soap, tag ? tag : "saml2:BaseIDAbstractType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml2__BaseIDAbstractType * SOAP_FMAC4 soap_get_saml2__BaseIDAbstractType(struct soap *soap, struct saml2__BaseIDAbstractType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml2__BaseIDAbstractType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Attribute(struct soap *soap, const struct saml1__AttributeType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Attribute(soap, tag ? tag : "saml1:Attribute", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AttributeDesignator(struct soap *soap, const struct saml1__AttributeDesignatorType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__AttributeDesignator(soap, tag ? tag : "saml1:AttributeDesignator", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AttributeStatement(struct soap *soap, const struct saml1__AttributeStatementType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__AttributeStatement(soap, tag ? tag : "saml1:AttributeStatement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Evidence(struct soap *soap, const struct saml1__EvidenceType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Evidence(soap, tag ? tag : "saml1:Evidence", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Action(struct soap *soap, const struct saml1__ActionType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Action(soap, tag ? tag : "saml1:Action", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AuthorizationDecisionStatement(struct soap *soap, const struct saml1__AuthorizationDecisionStatementType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__AuthorizationDecisionStatement(soap, tag ? tag : "saml1:AuthorizationDecisionStatement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AuthorityBinding(struct soap *soap, const struct saml1__AuthorityBindingType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__AuthorityBinding(soap, tag ? tag : "saml1:AuthorityBinding", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__SubjectLocality(struct soap *soap, const struct saml1__SubjectLocalityType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__SubjectLocality(soap, tag ? tag : "saml1:SubjectLocality", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AuthenticationStatement(struct soap *soap, const struct saml1__AuthenticationStatementType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__AuthenticationStatement(soap, tag ? tag : "saml1:AuthenticationStatement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__SubjectConfirmation(struct soap *soap, const struct saml1__SubjectConfirmationType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__SubjectConfirmation(soap, tag ? tag : "saml1:SubjectConfirmation", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__NameIdentifier(struct soap *soap, const struct saml1__NameIdentifierType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__NameIdentifier(soap, tag ? tag : "saml1:NameIdentifier", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Subject(struct soap *soap, const struct saml1__SubjectType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Subject(soap, tag ? tag : "saml1:Subject", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__SubjectStatement(struct soap *soap, const struct saml1__SubjectStatementAbstractType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__SubjectStatement(soap, tag ? tag : "saml1:SubjectStatement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Statement(struct soap *soap, const struct saml1__StatementAbstractType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Statement(soap, tag ? tag : "saml1:Statement", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Advice(struct soap *soap, const struct saml1__AdviceType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Advice(soap, tag ? tag : "saml1:Advice", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__DoNotCacheCondition(struct soap *soap, const struct saml1__DoNotCacheConditionType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__DoNotCacheCondition(soap, tag ? tag : "saml1:DoNotCacheCondition", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AudienceRestrictionCondition(struct soap *soap, const struct saml1__AudienceRestrictionConditionType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__AudienceRestrictionCondition(soap, tag ? tag : "saml1:AudienceRestrictionCondition", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Condition(struct soap *soap, const struct saml1__ConditionAbstractType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Condition(soap, tag ? tag : "saml1:Condition", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Conditions(struct soap *soap, const struct saml1__ConditionsType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Conditions(soap, tag ? tag : "saml1:Conditions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Assertion(struct soap *soap, const struct saml1__AssertionType *a, const char *tag, const char *type) -{ - if (soap_out__saml1__Assertion(soap, tag ? tag : "saml1:Assertion", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_EvidenceType(struct soap *soap, struct __saml1__union_EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->saml1__AssertionIDReference); - a->saml1__Assertion = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_EvidenceType(struct soap *soap, const struct __saml1__union_EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->saml1__AssertionIDReference); - soap_serialize_PointerTosaml1__AssertionType(soap, &a->saml1__Assertion); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_EvidenceType(struct soap *soap, const char *tag, int id, const struct __saml1__union_EvidenceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_string(soap, "saml1:AssertionIDReference", -1, (char*const*)&a->saml1__AssertionIDReference, "")) - return soap->error; - if (soap_out_PointerTosaml1__AssertionType(soap, "saml1:Assertion", -1, &a->saml1__Assertion, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_EvidenceType * SOAP_FMAC4 soap_in___saml1__union_EvidenceType(struct soap *soap, const char *tag, struct __saml1__union_EvidenceType *a, const char *type) -{ - size_t soap_flag_saml1__AssertionIDReference = 1; - size_t soap_flag_saml1__Assertion = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml1__union_EvidenceType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml1__union_EvidenceType, sizeof(struct __saml1__union_EvidenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml1__union_EvidenceType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__AssertionIDReference && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml1:AssertionIDReference", (char**)&a->saml1__AssertionIDReference, "xsd:string")) - { soap_flag_saml1__AssertionIDReference--; - continue; - } - } - if (soap_flag_saml1__Assertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AssertionType(soap, "saml1:Assertion", &a->saml1__Assertion, "saml1:AssertionType")) - { soap_flag_saml1__Assertion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml1__union_EvidenceType * SOAP_FMAC2 soap_instantiate___saml1__union_EvidenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml1__union_EvidenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml1__union_EvidenceType *p; - size_t k = sizeof(struct __saml1__union_EvidenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml1__union_EvidenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml1__union_EvidenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml1__union_EvidenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml1__union_EvidenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_EvidenceType(struct soap *soap, const struct __saml1__union_EvidenceType *a, const char *tag, const char *type) -{ - if (soap_out___saml1__union_EvidenceType(soap, tag ? tag : "-saml1:union-EvidenceType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_EvidenceType * SOAP_FMAC4 soap_get___saml1__union_EvidenceType(struct soap *soap, struct __saml1__union_EvidenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml1__union_EvidenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_AdviceType(struct soap *soap, struct __saml1__union_AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->saml1__AssertionIDReference); - a->saml1__Assertion = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_AdviceType(struct soap *soap, const struct __saml1__union_AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->saml1__AssertionIDReference); - soap_serialize_PointerTosaml1__AssertionType(soap, &a->saml1__Assertion); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_AdviceType(struct soap *soap, const char *tag, int id, const struct __saml1__union_AdviceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_string(soap, "saml1:AssertionIDReference", -1, (char*const*)&a->saml1__AssertionIDReference, "")) - return soap->error; - if (soap_out_PointerTosaml1__AssertionType(soap, "saml1:Assertion", -1, &a->saml1__Assertion, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_AdviceType * SOAP_FMAC4 soap_in___saml1__union_AdviceType(struct soap *soap, const char *tag, struct __saml1__union_AdviceType *a, const char *type) -{ - size_t soap_flag_saml1__AssertionIDReference = 1; - size_t soap_flag_saml1__Assertion = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml1__union_AdviceType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml1__union_AdviceType, sizeof(struct __saml1__union_AdviceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml1__union_AdviceType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__AssertionIDReference && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "saml1:AssertionIDReference", (char**)&a->saml1__AssertionIDReference, "xsd:string")) - { soap_flag_saml1__AssertionIDReference--; - continue; - } - } - if (soap_flag_saml1__Assertion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AssertionType(soap, "saml1:Assertion", &a->saml1__Assertion, "saml1:AssertionType")) - { soap_flag_saml1__Assertion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml1__union_AdviceType * SOAP_FMAC2 soap_instantiate___saml1__union_AdviceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml1__union_AdviceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml1__union_AdviceType *p; - size_t k = sizeof(struct __saml1__union_AdviceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml1__union_AdviceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml1__union_AdviceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml1__union_AdviceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml1__union_AdviceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_AdviceType(struct soap *soap, const struct __saml1__union_AdviceType *a, const char *tag, const char *type) -{ - if (soap_out___saml1__union_AdviceType(soap, tag ? tag : "-saml1:union-AdviceType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_AdviceType * SOAP_FMAC4 soap_get___saml1__union_AdviceType(struct soap *soap, struct __saml1__union_AdviceType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml1__union_AdviceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_ConditionsType(struct soap *soap, struct __saml1__union_ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__AudienceRestrictionCondition = NULL; - a->saml1__DoNotCacheCondition = NULL; - a->saml1__Condition = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_ConditionsType(struct soap *soap, const struct __saml1__union_ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__AudienceRestrictionConditionType(soap, &a->saml1__AudienceRestrictionCondition); - soap_serialize_PointerTosaml1__DoNotCacheConditionType(soap, &a->saml1__DoNotCacheCondition); - soap_serialize_PointerTosaml1__ConditionAbstractType(soap, &a->saml1__Condition); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_ConditionsType(struct soap *soap, const char *tag, int id, const struct __saml1__union_ConditionsType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTosaml1__AudienceRestrictionConditionType(soap, "saml1:AudienceRestrictionCondition", -1, &a->saml1__AudienceRestrictionCondition, "")) - return soap->error; - if (soap_out_PointerTosaml1__DoNotCacheConditionType(soap, "saml1:DoNotCacheCondition", -1, &a->saml1__DoNotCacheCondition, "")) - return soap->error; - if (soap_out_PointerTosaml1__ConditionAbstractType(soap, "saml1:Condition", -1, &a->saml1__Condition, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_ConditionsType * SOAP_FMAC4 soap_in___saml1__union_ConditionsType(struct soap *soap, const char *tag, struct __saml1__union_ConditionsType *a, const char *type) -{ - size_t soap_flag_saml1__AudienceRestrictionCondition = 1; - size_t soap_flag_saml1__DoNotCacheCondition = 1; - size_t soap_flag_saml1__Condition = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml1__union_ConditionsType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml1__union_ConditionsType, sizeof(struct __saml1__union_ConditionsType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml1__union_ConditionsType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__AudienceRestrictionCondition && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AudienceRestrictionConditionType(soap, "saml1:AudienceRestrictionCondition", &a->saml1__AudienceRestrictionCondition, "saml1:AudienceRestrictionConditionType")) - { soap_flag_saml1__AudienceRestrictionCondition--; - continue; - } - } - if (soap_flag_saml1__DoNotCacheCondition && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__DoNotCacheConditionType(soap, "saml1:DoNotCacheCondition", &a->saml1__DoNotCacheCondition, "saml1:DoNotCacheConditionType")) - { soap_flag_saml1__DoNotCacheCondition--; - continue; - } - } - if (soap_flag_saml1__Condition && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__ConditionAbstractType(soap, "saml1:Condition", &a->saml1__Condition, "saml1:ConditionAbstractType")) - { soap_flag_saml1__Condition--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml1__union_ConditionsType * SOAP_FMAC2 soap_instantiate___saml1__union_ConditionsType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml1__union_ConditionsType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml1__union_ConditionsType *p; - size_t k = sizeof(struct __saml1__union_ConditionsType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml1__union_ConditionsType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml1__union_ConditionsType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml1__union_ConditionsType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml1__union_ConditionsType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_ConditionsType(struct soap *soap, const struct __saml1__union_ConditionsType *a, const char *tag, const char *type) -{ - if (soap_out___saml1__union_ConditionsType(soap, tag ? tag : "-saml1:union-ConditionsType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_ConditionsType * SOAP_FMAC4 soap_get___saml1__union_ConditionsType(struct soap *soap, struct __saml1__union_ConditionsType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml1__union_ConditionsType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_AssertionType(struct soap *soap, struct __saml1__union_AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__Statement = NULL; - a->saml1__SubjectStatement = NULL; - a->saml1__AuthenticationStatement = NULL; - a->saml1__AuthorizationDecisionStatement = NULL; - a->saml1__AttributeStatement = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_AssertionType(struct soap *soap, const struct __saml1__union_AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__StatementAbstractType(soap, &a->saml1__Statement); - soap_serialize_PointerTosaml1__SubjectStatementAbstractType(soap, &a->saml1__SubjectStatement); - soap_serialize_PointerTosaml1__AuthenticationStatementType(soap, &a->saml1__AuthenticationStatement); - soap_serialize_PointerTosaml1__AuthorizationDecisionStatementType(soap, &a->saml1__AuthorizationDecisionStatement); - soap_serialize_PointerTosaml1__AttributeStatementType(soap, &a->saml1__AttributeStatement); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_AssertionType(struct soap *soap, const char *tag, int id, const struct __saml1__union_AssertionType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTosaml1__StatementAbstractType(soap, "saml1:Statement", -1, &a->saml1__Statement, "")) - return soap->error; - if (soap_out_PointerTosaml1__SubjectStatementAbstractType(soap, "saml1:SubjectStatement", -1, &a->saml1__SubjectStatement, "")) - return soap->error; - if (soap_out_PointerTosaml1__AuthenticationStatementType(soap, "saml1:AuthenticationStatement", -1, &a->saml1__AuthenticationStatement, "")) - return soap->error; - if (soap_out_PointerTosaml1__AuthorizationDecisionStatementType(soap, "saml1:AuthorizationDecisionStatement", -1, &a->saml1__AuthorizationDecisionStatement, "")) - return soap->error; - if (soap_out_PointerTosaml1__AttributeStatementType(soap, "saml1:AttributeStatement", -1, &a->saml1__AttributeStatement, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_AssertionType * SOAP_FMAC4 soap_in___saml1__union_AssertionType(struct soap *soap, const char *tag, struct __saml1__union_AssertionType *a, const char *type) -{ - size_t soap_flag_saml1__Statement = 1; - size_t soap_flag_saml1__SubjectStatement = 1; - size_t soap_flag_saml1__AuthenticationStatement = 1; - size_t soap_flag_saml1__AuthorizationDecisionStatement = 1; - size_t soap_flag_saml1__AttributeStatement = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __saml1__union_AssertionType*)soap_id_enter(soap, "", a, SOAP_TYPE___saml1__union_AssertionType, sizeof(struct __saml1__union_AssertionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___saml1__union_AssertionType(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__Statement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__StatementAbstractType(soap, "saml1:Statement", &a->saml1__Statement, "saml1:StatementAbstractType")) - { soap_flag_saml1__Statement--; - continue; - } - } - if (soap_flag_saml1__SubjectStatement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectStatementAbstractType(soap, "saml1:SubjectStatement", &a->saml1__SubjectStatement, "saml1:SubjectStatementAbstractType")) - { soap_flag_saml1__SubjectStatement--; - continue; - } - } - if (soap_flag_saml1__AuthenticationStatement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AuthenticationStatementType(soap, "saml1:AuthenticationStatement", &a->saml1__AuthenticationStatement, "saml1:AuthenticationStatementType")) - { soap_flag_saml1__AuthenticationStatement--; - continue; - } - } - if (soap_flag_saml1__AuthorizationDecisionStatement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AuthorizationDecisionStatementType(soap, "saml1:AuthorizationDecisionStatement", &a->saml1__AuthorizationDecisionStatement, "saml1:AuthorizationDecisionStatementType")) - { soap_flag_saml1__AuthorizationDecisionStatement--; - continue; - } - } - if (soap_flag_saml1__AttributeStatement && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AttributeStatementType(soap, "saml1:AttributeStatement", &a->saml1__AttributeStatement, "saml1:AttributeStatementType")) - { soap_flag_saml1__AttributeStatement--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __saml1__union_AssertionType * SOAP_FMAC2 soap_instantiate___saml1__union_AssertionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___saml1__union_AssertionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __saml1__union_AssertionType *p; - size_t k = sizeof(struct __saml1__union_AssertionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___saml1__union_AssertionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __saml1__union_AssertionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __saml1__union_AssertionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __saml1__union_AssertionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_AssertionType(struct soap *soap, const struct __saml1__union_AssertionType *a, const char *tag, const char *type) -{ - if (soap_out___saml1__union_AssertionType(soap, tag ? tag : "-saml1:union-AssertionType", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __saml1__union_AssertionType * SOAP_FMAC4 soap_get___saml1__union_AssertionType(struct soap *soap, struct __saml1__union_AssertionType *p, const char *tag, const char *type) -{ - if ((p = soap_in___saml1__union_AssertionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AttributeType(struct soap *soap, struct saml1__AttributeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->AttributeName); - soap_default_string(soap, &a->AttributeNamespace); - a->__sizeAttributeValue = 0; - a->saml1__AttributeValue = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeType(struct soap *soap, const struct saml1__AttributeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AttributeType(struct soap *soap, const char *tag, int id, const struct saml1__AttributeType *a, const char *type) -{ - soap_set_attr(soap, "AttributeName", a->AttributeName ? soap_string2s(soap, a->AttributeName) : "", 1); - soap_set_attr(soap, "AttributeNamespace", a->AttributeNamespace ? soap_string2s(soap, a->AttributeNamespace) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AttributeType), type)) - return soap->error; - if (a->saml1__AttributeValue) - { int i; - for (i = 0; i < (int)a->__sizeAttributeValue; i++) - if (soap_outliteral(soap, "saml1:AttributeValue", (char*const*)(a->saml1__AttributeValue + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AttributeType * SOAP_FMAC4 soap_in_saml1__AttributeType(struct soap *soap, const char *tag, struct saml1__AttributeType *a, const char *type) -{ - struct soap_blist *soap_blist_saml1__AttributeValue = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AttributeType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AttributeType, sizeof(struct saml1__AttributeType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AttributeType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "AttributeName", 1, 1), &a->AttributeName)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "AttributeNamespace", 1, 1), &a->AttributeNamespace)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml1:AttributeValue", 1, NULL)) - { if (a->saml1__AttributeValue == NULL) - { if (soap_blist_saml1__AttributeValue == NULL) - soap_blist_saml1__AttributeValue = soap_alloc_block(soap); - a->saml1__AttributeValue = (char **)soap_push_block_max(soap, soap_blist_saml1__AttributeValue, sizeof(char *)); - if (a->saml1__AttributeValue == NULL) - return NULL; - *a->saml1__AttributeValue = NULL; - } - soap_revert(soap); - if (soap_inliteral(soap, "saml1:AttributeValue", (char**)a->saml1__AttributeValue)) - { a->__sizeAttributeValue++; - a->saml1__AttributeValue = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml1__AttributeValue) - soap_pop_block(soap, soap_blist_saml1__AttributeValue); - if (a->__sizeAttributeValue) - { a->saml1__AttributeValue = (char **)soap_save_block(soap, soap_blist_saml1__AttributeValue, NULL, 1); - } - else - { a->saml1__AttributeValue = NULL; - if (soap_blist_saml1__AttributeValue) - soap_end_block(soap, soap_blist_saml1__AttributeValue); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__sizeAttributeValue < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml1__AttributeType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AttributeType, SOAP_TYPE_saml1__AttributeType, sizeof(struct saml1__AttributeType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AttributeType * SOAP_FMAC2 soap_instantiate_saml1__AttributeType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AttributeType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AttributeType *p; - size_t k = sizeof(struct saml1__AttributeType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AttributeType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AttributeType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AttributeType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AttributeType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AttributeType(struct soap *soap, const struct saml1__AttributeType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AttributeType(soap, tag ? tag : "saml1:AttributeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AttributeType * SOAP_FMAC4 soap_get_saml1__AttributeType(struct soap *soap, struct saml1__AttributeType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AttributeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AttributeDesignatorType(struct soap *soap, struct saml1__AttributeDesignatorType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->AttributeName); - soap_default_string(soap, &a->AttributeNamespace); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeDesignatorType(struct soap *soap, const struct saml1__AttributeDesignatorType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AttributeDesignatorType(struct soap *soap, const char *tag, int id, const struct saml1__AttributeDesignatorType *a, const char *type) -{ - soap_set_attr(soap, "AttributeName", a->AttributeName ? soap_string2s(soap, a->AttributeName) : "", 1); - soap_set_attr(soap, "AttributeNamespace", a->AttributeNamespace ? soap_string2s(soap, a->AttributeNamespace) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AttributeDesignatorType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AttributeDesignatorType * SOAP_FMAC4 soap_in_saml1__AttributeDesignatorType(struct soap *soap, const char *tag, struct saml1__AttributeDesignatorType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AttributeDesignatorType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AttributeDesignatorType, sizeof(struct saml1__AttributeDesignatorType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AttributeDesignatorType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "AttributeName", 1, 1), &a->AttributeName)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "AttributeNamespace", 1, 1), &a->AttributeNamespace)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__AttributeDesignatorType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AttributeDesignatorType, SOAP_TYPE_saml1__AttributeDesignatorType, sizeof(struct saml1__AttributeDesignatorType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AttributeDesignatorType * SOAP_FMAC2 soap_instantiate_saml1__AttributeDesignatorType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AttributeDesignatorType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AttributeDesignatorType *p; - size_t k = sizeof(struct saml1__AttributeDesignatorType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AttributeDesignatorType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AttributeDesignatorType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AttributeDesignatorType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AttributeDesignatorType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AttributeDesignatorType(struct soap *soap, const struct saml1__AttributeDesignatorType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AttributeDesignatorType(soap, tag ? tag : "saml1:AttributeDesignatorType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AttributeDesignatorType * SOAP_FMAC4 soap_get_saml1__AttributeDesignatorType(struct soap *soap, struct saml1__AttributeDesignatorType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AttributeDesignatorType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AttributeStatementType(struct soap *soap, struct saml1__AttributeStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__Subject = NULL; - a->__sizeAttribute = 0; - a->saml1__Attribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeStatementType(struct soap *soap, const struct saml1__AttributeStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__SubjectType(soap, &a->saml1__Subject); - if (a->saml1__Attribute) - { int i; - for (i = 0; i < (int)a->__sizeAttribute; i++) - { - soap_embedded(soap, a->saml1__Attribute + i, SOAP_TYPE_saml1__AttributeType); - soap_serialize_saml1__AttributeType(soap, a->saml1__Attribute + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AttributeStatementType(struct soap *soap, const char *tag, int id, const struct saml1__AttributeStatementType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AttributeStatementType), type)) - return soap->error; - if (!a->saml1__Subject) - { if (soap_element_empty(soap, "saml1:Subject", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTosaml1__SubjectType(soap, "saml1:Subject", -1, &a->saml1__Subject, "")) - return soap->error; - if (a->saml1__Attribute) - { int i; - for (i = 0; i < (int)a->__sizeAttribute; i++) - if (soap_out_saml1__AttributeType(soap, "saml1:Attribute", -1, a->saml1__Attribute + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AttributeStatementType * SOAP_FMAC4 soap_in_saml1__AttributeStatementType(struct soap *soap, const char *tag, struct saml1__AttributeStatementType *a, const char *type) -{ - size_t soap_flag_saml1__Subject = 1; - struct soap_blist *soap_blist_saml1__Attribute = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AttributeStatementType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AttributeStatementType, sizeof(struct saml1__AttributeStatementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AttributeStatementType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__Subject && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectType(soap, "saml1:Subject", &a->saml1__Subject, "saml1:SubjectType")) - { soap_flag_saml1__Subject--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml1:Attribute", 1, NULL)) - { if (a->saml1__Attribute == NULL) - { if (soap_blist_saml1__Attribute == NULL) - soap_blist_saml1__Attribute = soap_alloc_block(soap); - a->saml1__Attribute = soap_block::push(soap, soap_blist_saml1__Attribute); - if (a->saml1__Attribute == NULL) - return NULL; - soap_default_saml1__AttributeType(soap, a->saml1__Attribute); - } - soap_revert(soap); - if (soap_in_saml1__AttributeType(soap, "saml1:Attribute", a->saml1__Attribute, "saml1:AttributeType")) - { a->__sizeAttribute++; - a->saml1__Attribute = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml1__Attribute) - soap_block::pop(soap, soap_blist_saml1__Attribute); - if (a->__sizeAttribute) - { a->saml1__Attribute = soap_new_saml1__AttributeType(soap, a->__sizeAttribute); - if (!a->saml1__Attribute) - return NULL; - soap_block::save(soap, soap_blist_saml1__Attribute, a->saml1__Attribute); - } - else - { a->saml1__Attribute = NULL; - if (soap_blist_saml1__Attribute) - soap_block::end(soap, soap_blist_saml1__Attribute); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->saml1__Subject || a->__sizeAttribute < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml1__AttributeStatementType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AttributeStatementType, SOAP_TYPE_saml1__AttributeStatementType, sizeof(struct saml1__AttributeStatementType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AttributeStatementType * SOAP_FMAC2 soap_instantiate_saml1__AttributeStatementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AttributeStatementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AttributeStatementType *p; - size_t k = sizeof(struct saml1__AttributeStatementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AttributeStatementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AttributeStatementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AttributeStatementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AttributeStatementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AttributeStatementType(struct soap *soap, const struct saml1__AttributeStatementType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AttributeStatementType(soap, tag ? tag : "saml1:AttributeStatementType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AttributeStatementType * SOAP_FMAC4 soap_get_saml1__AttributeStatementType(struct soap *soap, struct saml1__AttributeStatementType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AttributeStatementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__EvidenceType(struct soap *soap, struct saml1__EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_EvidenceType = 0; - a->__union_EvidenceType = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__EvidenceType(struct soap *soap, const struct saml1__EvidenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_EvidenceType) - { int i; - for (i = 0; i < (int)a->__size_EvidenceType; i++) - { - soap_serialize___saml1__union_EvidenceType(soap, a->__union_EvidenceType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__EvidenceType(struct soap *soap, const char *tag, int id, const struct saml1__EvidenceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__EvidenceType), type)) - return soap->error; - if (a->__union_EvidenceType) - { int i; - for (i = 0; i < (int)a->__size_EvidenceType; i++) - if (soap_out___saml1__union_EvidenceType(soap, "-union-EvidenceType", -1, a->__union_EvidenceType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__EvidenceType * SOAP_FMAC4 soap_in_saml1__EvidenceType(struct soap *soap, const char *tag, struct saml1__EvidenceType *a, const char *type) -{ - struct soap_blist *soap_blist___union_EvidenceType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__EvidenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__EvidenceType, sizeof(struct saml1__EvidenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__EvidenceType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_EvidenceType == NULL) - { if (soap_blist___union_EvidenceType == NULL) - soap_blist___union_EvidenceType = soap_alloc_block(soap); - a->__union_EvidenceType = soap_block::push(soap, soap_blist___union_EvidenceType); - if (a->__union_EvidenceType == NULL) - return NULL; - soap_default___saml1__union_EvidenceType(soap, a->__union_EvidenceType); - } - if (soap_in___saml1__union_EvidenceType(soap, "-union-EvidenceType", a->__union_EvidenceType, "-saml1:union-EvidenceType")) - { a->__size_EvidenceType++; - a->__union_EvidenceType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_EvidenceType) - soap_block::pop(soap, soap_blist___union_EvidenceType); - if (a->__size_EvidenceType) - { a->__union_EvidenceType = soap_new___saml1__union_EvidenceType(soap, a->__size_EvidenceType); - if (!a->__union_EvidenceType) - return NULL; - soap_block::save(soap, soap_blist___union_EvidenceType, a->__union_EvidenceType); - } - else - { a->__union_EvidenceType = NULL; - if (soap_blist___union_EvidenceType) - soap_block::end(soap, soap_blist___union_EvidenceType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__EvidenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__EvidenceType, SOAP_TYPE_saml1__EvidenceType, sizeof(struct saml1__EvidenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__EvidenceType * SOAP_FMAC2 soap_instantiate_saml1__EvidenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__EvidenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__EvidenceType *p; - size_t k = sizeof(struct saml1__EvidenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__EvidenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__EvidenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__EvidenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__EvidenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__EvidenceType(struct soap *soap, const struct saml1__EvidenceType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__EvidenceType(soap, tag ? tag : "saml1:EvidenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__EvidenceType * SOAP_FMAC4 soap_get_saml1__EvidenceType(struct soap *soap, struct saml1__EvidenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__EvidenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__ActionType(struct soap *soap, struct saml1__ActionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->Namespace); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ActionType(struct soap *soap, const struct saml1__ActionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__ActionType(struct soap *soap, const char *tag, int id, const struct saml1__ActionType *a, const char *type) -{ - if (a->Namespace) - soap_set_attr(soap, "Namespace", soap_string2s(soap, a->Namespace), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct saml1__ActionType * SOAP_FMAC4 soap_in_saml1__ActionType(struct soap *soap, const char *tag, struct saml1__ActionType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct saml1__ActionType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__ActionType, sizeof(struct saml1__ActionType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_saml1__ActionType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Namespace", 1, 0), &a->Namespace)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "saml1:ActionType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct saml1__ActionType * SOAP_FMAC2 soap_instantiate_saml1__ActionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__ActionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__ActionType *p; - size_t k = sizeof(struct saml1__ActionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__ActionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__ActionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__ActionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__ActionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__ActionType(struct soap *soap, const struct saml1__ActionType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__ActionType(soap, tag ? tag : "saml1:ActionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__ActionType * SOAP_FMAC4 soap_get_saml1__ActionType(struct soap *soap, struct saml1__ActionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__ActionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AuthorizationDecisionStatementType(struct soap *soap, struct saml1__AuthorizationDecisionStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__Subject = NULL; - a->__sizeAction = 0; - a->saml1__Action = NULL; - a->saml1__Evidence = NULL; - soap_default_string(soap, &a->Resource); - soap_default_saml1__DecisionType(soap, &a->Decision); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthorizationDecisionStatementType(struct soap *soap, const struct saml1__AuthorizationDecisionStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__SubjectType(soap, &a->saml1__Subject); - if (a->saml1__Action) - { int i; - for (i = 0; i < (int)a->__sizeAction; i++) - { - soap_embedded(soap, a->saml1__Action + i, SOAP_TYPE_saml1__ActionType); - soap_serialize_saml1__ActionType(soap, a->saml1__Action + i); - } - } - soap_serialize_PointerTosaml1__EvidenceType(soap, &a->saml1__Evidence); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AuthorizationDecisionStatementType(struct soap *soap, const char *tag, int id, const struct saml1__AuthorizationDecisionStatementType *a, const char *type) -{ - soap_set_attr(soap, "Resource", a->Resource ? soap_string2s(soap, a->Resource) : "", 1); - soap_set_attr(soap, "Decision", soap_saml1__DecisionType2s(soap, a->Decision), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AuthorizationDecisionStatementType), type)) - return soap->error; - if (!a->saml1__Subject) - { if (soap_element_empty(soap, "saml1:Subject", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTosaml1__SubjectType(soap, "saml1:Subject", -1, &a->saml1__Subject, "")) - return soap->error; - if (a->saml1__Action) - { int i; - for (i = 0; i < (int)a->__sizeAction; i++) - if (soap_out_saml1__ActionType(soap, "saml1:Action", -1, a->saml1__Action + i, "")) - return soap->error; - } - if (soap_out_PointerTosaml1__EvidenceType(soap, "saml1:Evidence", -1, &a->saml1__Evidence, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AuthorizationDecisionStatementType * SOAP_FMAC4 soap_in_saml1__AuthorizationDecisionStatementType(struct soap *soap, const char *tag, struct saml1__AuthorizationDecisionStatementType *a, const char *type) -{ - size_t soap_flag_saml1__Subject = 1; - struct soap_blist *soap_blist_saml1__Action = NULL; - size_t soap_flag_saml1__Evidence = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AuthorizationDecisionStatementType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AuthorizationDecisionStatementType, sizeof(struct saml1__AuthorizationDecisionStatementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AuthorizationDecisionStatementType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Resource", 1, 1), &a->Resource)) - return NULL; - if (soap_s2saml1__DecisionType(soap, soap_attr_value(soap, "Decision", 5, 1), &a->Decision)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__Subject && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectType(soap, "saml1:Subject", &a->saml1__Subject, "saml1:SubjectType")) - { soap_flag_saml1__Subject--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml1:Action", 1, NULL)) - { if (a->saml1__Action == NULL) - { if (soap_blist_saml1__Action == NULL) - soap_blist_saml1__Action = soap_alloc_block(soap); - a->saml1__Action = soap_block::push(soap, soap_blist_saml1__Action); - if (a->saml1__Action == NULL) - return NULL; - soap_default_saml1__ActionType(soap, a->saml1__Action); - } - soap_revert(soap); - if (soap_in_saml1__ActionType(soap, "saml1:Action", a->saml1__Action, "saml1:ActionType")) - { a->__sizeAction++; - a->saml1__Action = NULL; - continue; - } - } - if (soap_flag_saml1__Evidence && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__EvidenceType(soap, "saml1:Evidence", &a->saml1__Evidence, "saml1:EvidenceType")) - { soap_flag_saml1__Evidence--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml1__Action) - soap_block::pop(soap, soap_blist_saml1__Action); - if (a->__sizeAction) - { a->saml1__Action = soap_new_saml1__ActionType(soap, a->__sizeAction); - if (!a->saml1__Action) - return NULL; - soap_block::save(soap, soap_blist_saml1__Action, a->saml1__Action); - } - else - { a->saml1__Action = NULL; - if (soap_blist_saml1__Action) - soap_block::end(soap, soap_blist_saml1__Action); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->saml1__Subject || a->__sizeAction < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml1__AuthorizationDecisionStatementType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AuthorizationDecisionStatementType, SOAP_TYPE_saml1__AuthorizationDecisionStatementType, sizeof(struct saml1__AuthorizationDecisionStatementType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AuthorizationDecisionStatementType * SOAP_FMAC2 soap_instantiate_saml1__AuthorizationDecisionStatementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AuthorizationDecisionStatementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AuthorizationDecisionStatementType *p; - size_t k = sizeof(struct saml1__AuthorizationDecisionStatementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AuthorizationDecisionStatementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AuthorizationDecisionStatementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AuthorizationDecisionStatementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AuthorizationDecisionStatementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AuthorizationDecisionStatementType(struct soap *soap, const struct saml1__AuthorizationDecisionStatementType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AuthorizationDecisionStatementType(soap, tag ? tag : "saml1:AuthorizationDecisionStatementType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AuthorizationDecisionStatementType * SOAP_FMAC4 soap_get_saml1__AuthorizationDecisionStatementType(struct soap *soap, struct saml1__AuthorizationDecisionStatementType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AuthorizationDecisionStatementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AuthorityBindingType(struct soap *soap, struct saml1__AuthorityBindingType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__QName(soap, &a->AuthorityKind); - soap_default_string(soap, &a->Location); - soap_default_string(soap, &a->Binding); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthorityBindingType(struct soap *soap, const struct saml1__AuthorityBindingType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AuthorityBindingType(struct soap *soap, const char *tag, int id, const struct saml1__AuthorityBindingType *a, const char *type) -{ - soap_set_attr(soap, "AuthorityKind", a->AuthorityKind ? soap__QName2s(soap, a->AuthorityKind) : "", 1); - soap_set_attr(soap, "Location", a->Location ? soap_string2s(soap, a->Location) : "", 1); - soap_set_attr(soap, "Binding", a->Binding ? soap_string2s(soap, a->Binding) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AuthorityBindingType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AuthorityBindingType * SOAP_FMAC4 soap_in_saml1__AuthorityBindingType(struct soap *soap, const char *tag, struct saml1__AuthorityBindingType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AuthorityBindingType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AuthorityBindingType, sizeof(struct saml1__AuthorityBindingType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AuthorityBindingType(soap, a); - if (soap_s2_QName(soap, soap_attr_value(soap, "AuthorityKind", 2, 1), &a->AuthorityKind)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Location", 1, 1), &a->Location)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Binding", 1, 1), &a->Binding)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__AuthorityBindingType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AuthorityBindingType, SOAP_TYPE_saml1__AuthorityBindingType, sizeof(struct saml1__AuthorityBindingType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AuthorityBindingType * SOAP_FMAC2 soap_instantiate_saml1__AuthorityBindingType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AuthorityBindingType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AuthorityBindingType *p; - size_t k = sizeof(struct saml1__AuthorityBindingType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AuthorityBindingType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AuthorityBindingType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AuthorityBindingType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AuthorityBindingType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AuthorityBindingType(struct soap *soap, const struct saml1__AuthorityBindingType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AuthorityBindingType(soap, tag ? tag : "saml1:AuthorityBindingType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AuthorityBindingType * SOAP_FMAC4 soap_get_saml1__AuthorityBindingType(struct soap *soap, struct saml1__AuthorityBindingType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AuthorityBindingType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectLocalityType(struct soap *soap, struct saml1__SubjectLocalityType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->IPAddress); - soap_default_string(soap, &a->DNSAddress); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectLocalityType(struct soap *soap, const struct saml1__SubjectLocalityType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectLocalityType(struct soap *soap, const char *tag, int id, const struct saml1__SubjectLocalityType *a, const char *type) -{ - if (a->IPAddress) - soap_set_attr(soap, "IPAddress", soap_string2s(soap, a->IPAddress), 1); - if (a->DNSAddress) - soap_set_attr(soap, "DNSAddress", soap_string2s(soap, a->DNSAddress), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__SubjectLocalityType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__SubjectLocalityType * SOAP_FMAC4 soap_in_saml1__SubjectLocalityType(struct soap *soap, const char *tag, struct saml1__SubjectLocalityType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__SubjectLocalityType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__SubjectLocalityType, sizeof(struct saml1__SubjectLocalityType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__SubjectLocalityType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "IPAddress", 1, 0), &a->IPAddress)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "DNSAddress", 1, 0), &a->DNSAddress)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__SubjectLocalityType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__SubjectLocalityType, SOAP_TYPE_saml1__SubjectLocalityType, sizeof(struct saml1__SubjectLocalityType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__SubjectLocalityType * SOAP_FMAC2 soap_instantiate_saml1__SubjectLocalityType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__SubjectLocalityType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__SubjectLocalityType *p; - size_t k = sizeof(struct saml1__SubjectLocalityType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__SubjectLocalityType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__SubjectLocalityType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__SubjectLocalityType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__SubjectLocalityType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectLocalityType(struct soap *soap, const struct saml1__SubjectLocalityType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__SubjectLocalityType(soap, tag ? tag : "saml1:SubjectLocalityType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__SubjectLocalityType * SOAP_FMAC4 soap_get_saml1__SubjectLocalityType(struct soap *soap, struct saml1__SubjectLocalityType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__SubjectLocalityType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AuthenticationStatementType(struct soap *soap, struct saml1__AuthenticationStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__Subject = NULL; - a->saml1__SubjectLocality = NULL; - a->__sizeAuthorityBinding = 0; - a->saml1__AuthorityBinding = NULL; - soap_default_string(soap, &a->AuthenticationMethod); - soap_default_xsd__dateTime(soap, &a->AuthenticationInstant); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthenticationStatementType(struct soap *soap, const struct saml1__AuthenticationStatementType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__SubjectType(soap, &a->saml1__Subject); - soap_serialize_PointerTosaml1__SubjectLocalityType(soap, &a->saml1__SubjectLocality); - if (a->saml1__AuthorityBinding) - { int i; - for (i = 0; i < (int)a->__sizeAuthorityBinding; i++) - { - soap_embedded(soap, a->saml1__AuthorityBinding + i, SOAP_TYPE_saml1__AuthorityBindingType); - soap_serialize_saml1__AuthorityBindingType(soap, a->saml1__AuthorityBinding + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AuthenticationStatementType(struct soap *soap, const char *tag, int id, const struct saml1__AuthenticationStatementType *a, const char *type) -{ - soap_set_attr(soap, "AuthenticationMethod", a->AuthenticationMethod ? soap_string2s(soap, a->AuthenticationMethod) : "", 1); - soap_set_attr(soap, "AuthenticationInstant", soap_xsd__dateTime2s(soap, a->AuthenticationInstant), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AuthenticationStatementType), type)) - return soap->error; - if (!a->saml1__Subject) - { if (soap_element_empty(soap, "saml1:Subject", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTosaml1__SubjectType(soap, "saml1:Subject", -1, &a->saml1__Subject, "")) - return soap->error; - if (soap_out_PointerTosaml1__SubjectLocalityType(soap, "saml1:SubjectLocality", -1, &a->saml1__SubjectLocality, "")) - return soap->error; - if (a->saml1__AuthorityBinding) - { int i; - for (i = 0; i < (int)a->__sizeAuthorityBinding; i++) - if (soap_out_saml1__AuthorityBindingType(soap, "saml1:AuthorityBinding", -1, a->saml1__AuthorityBinding + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AuthenticationStatementType * SOAP_FMAC4 soap_in_saml1__AuthenticationStatementType(struct soap *soap, const char *tag, struct saml1__AuthenticationStatementType *a, const char *type) -{ - size_t soap_flag_saml1__Subject = 1; - size_t soap_flag_saml1__SubjectLocality = 1; - struct soap_blist *soap_blist_saml1__AuthorityBinding = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AuthenticationStatementType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AuthenticationStatementType, sizeof(struct saml1__AuthenticationStatementType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AuthenticationStatementType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "AuthenticationMethod", 1, 1), &a->AuthenticationMethod)) - return NULL; - if (soap_s2xsd__dateTime(soap, soap_attr_value(soap, "AuthenticationInstant", 5, 1), &a->AuthenticationInstant)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__Subject && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectType(soap, "saml1:Subject", &a->saml1__Subject, "saml1:SubjectType")) - { soap_flag_saml1__Subject--; - continue; - } - } - if (soap_flag_saml1__SubjectLocality && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectLocalityType(soap, "saml1:SubjectLocality", &a->saml1__SubjectLocality, "saml1:SubjectLocalityType")) - { soap_flag_saml1__SubjectLocality--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml1:AuthorityBinding", 1, NULL)) - { if (a->saml1__AuthorityBinding == NULL) - { if (soap_blist_saml1__AuthorityBinding == NULL) - soap_blist_saml1__AuthorityBinding = soap_alloc_block(soap); - a->saml1__AuthorityBinding = soap_block::push(soap, soap_blist_saml1__AuthorityBinding); - if (a->saml1__AuthorityBinding == NULL) - return NULL; - soap_default_saml1__AuthorityBindingType(soap, a->saml1__AuthorityBinding); - } - soap_revert(soap); - if (soap_in_saml1__AuthorityBindingType(soap, "saml1:AuthorityBinding", a->saml1__AuthorityBinding, "saml1:AuthorityBindingType")) - { a->__sizeAuthorityBinding++; - a->saml1__AuthorityBinding = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml1__AuthorityBinding) - soap_block::pop(soap, soap_blist_saml1__AuthorityBinding); - if (a->__sizeAuthorityBinding) - { a->saml1__AuthorityBinding = soap_new_saml1__AuthorityBindingType(soap, a->__sizeAuthorityBinding); - if (!a->saml1__AuthorityBinding) - return NULL; - soap_block::save(soap, soap_blist_saml1__AuthorityBinding, a->saml1__AuthorityBinding); - } - else - { a->saml1__AuthorityBinding = NULL; - if (soap_blist_saml1__AuthorityBinding) - soap_block::end(soap, soap_blist_saml1__AuthorityBinding); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->saml1__Subject)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml1__AuthenticationStatementType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AuthenticationStatementType, SOAP_TYPE_saml1__AuthenticationStatementType, sizeof(struct saml1__AuthenticationStatementType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AuthenticationStatementType * SOAP_FMAC2 soap_instantiate_saml1__AuthenticationStatementType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AuthenticationStatementType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AuthenticationStatementType *p; - size_t k = sizeof(struct saml1__AuthenticationStatementType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AuthenticationStatementType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AuthenticationStatementType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AuthenticationStatementType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AuthenticationStatementType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AuthenticationStatementType(struct soap *soap, const struct saml1__AuthenticationStatementType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AuthenticationStatementType(soap, tag ? tag : "saml1:AuthenticationStatementType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AuthenticationStatementType * SOAP_FMAC4 soap_get_saml1__AuthenticationStatementType(struct soap *soap, struct saml1__AuthenticationStatementType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AuthenticationStatementType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectConfirmationType(struct soap *soap, struct saml1__SubjectConfirmationType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeConfirmationMethod = 0; - a->saml1__ConfirmationMethod = NULL; - a->saml1__SubjectConfirmationData = NULL; - a->ds__KeyInfo = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectConfirmationType(struct soap *soap, const struct saml1__SubjectConfirmationType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->saml1__ConfirmationMethod) - { int i; - for (i = 0; i < (int)a->__sizeConfirmationMethod; i++) - { - soap_serialize_string(soap, (char*const*)(a->saml1__ConfirmationMethod + i)); - } - } - soap_serialize_PointerTo_ds__KeyInfo(soap, &a->ds__KeyInfo); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectConfirmationType(struct soap *soap, const char *tag, int id, const struct saml1__SubjectConfirmationType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__SubjectConfirmationType), type)) - return soap->error; - if (a->saml1__ConfirmationMethod) - { int i; - for (i = 0; i < (int)a->__sizeConfirmationMethod; i++) - if (soap_out_string(soap, "saml1:ConfirmationMethod", -1, (char*const*)(a->saml1__ConfirmationMethod + i), "")) - return soap->error; - } - if (soap_outliteral(soap, "saml1:SubjectConfirmationData", (char*const*)&a->saml1__SubjectConfirmationData, NULL)) - return soap->error; - if (soap_out_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", -1, &a->ds__KeyInfo, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__SubjectConfirmationType * SOAP_FMAC4 soap_in_saml1__SubjectConfirmationType(struct soap *soap, const char *tag, struct saml1__SubjectConfirmationType *a, const char *type) -{ - struct soap_blist *soap_blist_saml1__ConfirmationMethod = NULL; - size_t soap_flag_saml1__SubjectConfirmationData = 1; - size_t soap_flag_ds__KeyInfo = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__SubjectConfirmationType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__SubjectConfirmationType, sizeof(struct saml1__SubjectConfirmationType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__SubjectConfirmationType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml1:ConfirmationMethod", 1, NULL)) - { if (a->saml1__ConfirmationMethod == NULL) - { if (soap_blist_saml1__ConfirmationMethod == NULL) - soap_blist_saml1__ConfirmationMethod = soap_alloc_block(soap); - a->saml1__ConfirmationMethod = (char **)soap_push_block_max(soap, soap_blist_saml1__ConfirmationMethod, sizeof(char *)); - if (a->saml1__ConfirmationMethod == NULL) - return NULL; - *a->saml1__ConfirmationMethod = NULL; - } - soap_revert(soap); - if (soap_in_string(soap, "saml1:ConfirmationMethod", (char**)a->saml1__ConfirmationMethod, "xsd:string")) - { a->__sizeConfirmationMethod++; - a->saml1__ConfirmationMethod = NULL; - continue; - } - } - if (soap_flag_saml1__SubjectConfirmationData && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "saml1:SubjectConfirmationData", (char**)&a->saml1__SubjectConfirmationData)) - { soap_flag_saml1__SubjectConfirmationData--; - continue; - } - } - if (soap_flag_ds__KeyInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", &a->ds__KeyInfo, "")) - { soap_flag_ds__KeyInfo--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml1__ConfirmationMethod) - soap_pop_block(soap, soap_blist_saml1__ConfirmationMethod); - if (a->__sizeConfirmationMethod) - { a->saml1__ConfirmationMethod = (char **)soap_save_block(soap, soap_blist_saml1__ConfirmationMethod, NULL, 1); - } - else - { a->saml1__ConfirmationMethod = NULL; - if (soap_blist_saml1__ConfirmationMethod) - soap_end_block(soap, soap_blist_saml1__ConfirmationMethod); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__sizeConfirmationMethod < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml1__SubjectConfirmationType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__SubjectConfirmationType, SOAP_TYPE_saml1__SubjectConfirmationType, sizeof(struct saml1__SubjectConfirmationType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__SubjectConfirmationType * SOAP_FMAC2 soap_instantiate_saml1__SubjectConfirmationType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__SubjectConfirmationType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__SubjectConfirmationType *p; - size_t k = sizeof(struct saml1__SubjectConfirmationType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__SubjectConfirmationType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__SubjectConfirmationType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__SubjectConfirmationType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__SubjectConfirmationType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectConfirmationType(struct soap *soap, const struct saml1__SubjectConfirmationType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__SubjectConfirmationType(soap, tag ? tag : "saml1:SubjectConfirmationType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__SubjectConfirmationType * SOAP_FMAC4 soap_get_saml1__SubjectConfirmationType(struct soap *soap, struct saml1__SubjectConfirmationType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__SubjectConfirmationType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__NameIdentifierType(struct soap *soap, struct saml1__NameIdentifierType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->NameQualifier); - soap_default_string(soap, &a->Format); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__NameIdentifierType(struct soap *soap, const struct saml1__NameIdentifierType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__NameIdentifierType(struct soap *soap, const char *tag, int id, const struct saml1__NameIdentifierType *a, const char *type) -{ - if (a->NameQualifier) - soap_set_attr(soap, "NameQualifier", soap_string2s(soap, a->NameQualifier), 1); - if (a->Format) - soap_set_attr(soap, "Format", soap_string2s(soap, a->Format), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct saml1__NameIdentifierType * SOAP_FMAC4 soap_in_saml1__NameIdentifierType(struct soap *soap, const char *tag, struct saml1__NameIdentifierType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct saml1__NameIdentifierType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__NameIdentifierType, sizeof(struct saml1__NameIdentifierType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_saml1__NameIdentifierType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "NameQualifier", 1, 0), &a->NameQualifier)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Format", 1, 0), &a->Format)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "saml1:NameIdentifierType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct saml1__NameIdentifierType * SOAP_FMAC2 soap_instantiate_saml1__NameIdentifierType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__NameIdentifierType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__NameIdentifierType *p; - size_t k = sizeof(struct saml1__NameIdentifierType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__NameIdentifierType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__NameIdentifierType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__NameIdentifierType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__NameIdentifierType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__NameIdentifierType(struct soap *soap, const struct saml1__NameIdentifierType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__NameIdentifierType(soap, tag ? tag : "saml1:NameIdentifierType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__NameIdentifierType * SOAP_FMAC4 soap_get_saml1__NameIdentifierType(struct soap *soap, struct saml1__NameIdentifierType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__NameIdentifierType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectType(struct soap *soap, struct saml1__SubjectType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__NameIdentifier = NULL; - a->saml1__SubjectConfirmation = NULL; - a->saml1__SubjectConfirmation_ = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectType(struct soap *soap, const struct saml1__SubjectType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__NameIdentifierType(soap, &a->saml1__NameIdentifier); - soap_serialize_PointerTosaml1__SubjectConfirmationType(soap, &a->saml1__SubjectConfirmation); - soap_serialize_PointerTosaml1__SubjectConfirmationType(soap, &a->saml1__SubjectConfirmation_); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectType(struct soap *soap, const char *tag, int id, const struct saml1__SubjectType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__SubjectType), type)) - return soap->error; - if (soap_out_PointerTosaml1__NameIdentifierType(soap, "saml1:NameIdentifier", -1, &a->saml1__NameIdentifier, "")) - return soap->error; - if (soap_out_PointerTosaml1__SubjectConfirmationType(soap, "saml1:SubjectConfirmation", -1, &a->saml1__SubjectConfirmation, "")) - return soap->error; - if (soap_out_PointerTosaml1__SubjectConfirmationType(soap, "saml1:SubjectConfirmation", -1, &a->saml1__SubjectConfirmation_, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__SubjectType * SOAP_FMAC4 soap_in_saml1__SubjectType(struct soap *soap, const char *tag, struct saml1__SubjectType *a, const char *type) -{ - size_t soap_flag_saml1__NameIdentifier = 1; - size_t soap_flag_saml1__SubjectConfirmation = 1; - size_t soap_flag_saml1__SubjectConfirmation_ = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__SubjectType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__SubjectType, sizeof(struct saml1__SubjectType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__SubjectType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__NameIdentifier && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__NameIdentifierType(soap, "saml1:NameIdentifier", &a->saml1__NameIdentifier, "saml1:NameIdentifierType")) - { soap_flag_saml1__NameIdentifier--; - continue; - } - } - if (soap_flag_saml1__SubjectConfirmation && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectConfirmationType(soap, "saml1:SubjectConfirmation", &a->saml1__SubjectConfirmation, "saml1:SubjectConfirmationType")) - { soap_flag_saml1__SubjectConfirmation--; - continue; - } - } - if (soap_flag_saml1__SubjectConfirmation_ && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectConfirmationType(soap, "saml1:SubjectConfirmation", &a->saml1__SubjectConfirmation_, "saml1:SubjectConfirmationType")) - { soap_flag_saml1__SubjectConfirmation_--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__SubjectType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__SubjectType, SOAP_TYPE_saml1__SubjectType, sizeof(struct saml1__SubjectType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__SubjectType * SOAP_FMAC2 soap_instantiate_saml1__SubjectType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__SubjectType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__SubjectType *p; - size_t k = sizeof(struct saml1__SubjectType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__SubjectType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__SubjectType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__SubjectType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__SubjectType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectType(struct soap *soap, const struct saml1__SubjectType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__SubjectType(soap, tag ? tag : "saml1:SubjectType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__SubjectType * SOAP_FMAC4 soap_get_saml1__SubjectType(struct soap *soap, struct saml1__SubjectType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__SubjectType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectStatementAbstractType(struct soap *soap, struct saml1__SubjectStatementAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__Subject = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectStatementAbstractType(struct soap *soap, const struct saml1__SubjectStatementAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__SubjectType(soap, &a->saml1__Subject); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectStatementAbstractType(struct soap *soap, const char *tag, int id, const struct saml1__SubjectStatementAbstractType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__SubjectStatementAbstractType), type)) - return soap->error; - if (!a->saml1__Subject) - { if (soap_element_empty(soap, "saml1:Subject", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTosaml1__SubjectType(soap, "saml1:Subject", -1, &a->saml1__Subject, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__SubjectStatementAbstractType * SOAP_FMAC4 soap_in_saml1__SubjectStatementAbstractType(struct soap *soap, const char *tag, struct saml1__SubjectStatementAbstractType *a, const char *type) -{ - size_t soap_flag_saml1__Subject = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__SubjectStatementAbstractType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__SubjectStatementAbstractType, sizeof(struct saml1__SubjectStatementAbstractType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__SubjectStatementAbstractType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__Subject && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__SubjectType(soap, "saml1:Subject", &a->saml1__Subject, "saml1:SubjectType")) - { soap_flag_saml1__Subject--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->saml1__Subject)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml1__SubjectStatementAbstractType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__SubjectStatementAbstractType, SOAP_TYPE_saml1__SubjectStatementAbstractType, sizeof(struct saml1__SubjectStatementAbstractType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__SubjectStatementAbstractType * SOAP_FMAC2 soap_instantiate_saml1__SubjectStatementAbstractType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__SubjectStatementAbstractType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__SubjectStatementAbstractType *p; - size_t k = sizeof(struct saml1__SubjectStatementAbstractType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__SubjectStatementAbstractType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__SubjectStatementAbstractType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__SubjectStatementAbstractType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__SubjectStatementAbstractType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectStatementAbstractType(struct soap *soap, const struct saml1__SubjectStatementAbstractType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__SubjectStatementAbstractType(soap, tag ? tag : "saml1:SubjectStatementAbstractType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__SubjectStatementAbstractType * SOAP_FMAC4 soap_get_saml1__SubjectStatementAbstractType(struct soap *soap, struct saml1__SubjectStatementAbstractType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__SubjectStatementAbstractType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__StatementAbstractType(struct soap *soap, struct saml1__StatementAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__StatementAbstractType(struct soap *soap, const struct saml1__StatementAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__StatementAbstractType(struct soap *soap, const char *tag, int id, const struct saml1__StatementAbstractType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__StatementAbstractType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__StatementAbstractType * SOAP_FMAC4 soap_in_saml1__StatementAbstractType(struct soap *soap, const char *tag, struct saml1__StatementAbstractType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__StatementAbstractType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__StatementAbstractType, sizeof(struct saml1__StatementAbstractType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__StatementAbstractType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__StatementAbstractType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__StatementAbstractType, SOAP_TYPE_saml1__StatementAbstractType, sizeof(struct saml1__StatementAbstractType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__StatementAbstractType * SOAP_FMAC2 soap_instantiate_saml1__StatementAbstractType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__StatementAbstractType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__StatementAbstractType *p; - size_t k = sizeof(struct saml1__StatementAbstractType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__StatementAbstractType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__StatementAbstractType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__StatementAbstractType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__StatementAbstractType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__StatementAbstractType(struct soap *soap, const struct saml1__StatementAbstractType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__StatementAbstractType(soap, tag ? tag : "saml1:StatementAbstractType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__StatementAbstractType * SOAP_FMAC4 soap_get_saml1__StatementAbstractType(struct soap *soap, struct saml1__StatementAbstractType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__StatementAbstractType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AdviceType(struct soap *soap, struct saml1__AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_AdviceType = 0; - a->__union_AdviceType = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AdviceType(struct soap *soap, const struct saml1__AdviceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_AdviceType) - { int i; - for (i = 0; i < (int)a->__size_AdviceType; i++) - { - soap_serialize___saml1__union_AdviceType(soap, a->__union_AdviceType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AdviceType(struct soap *soap, const char *tag, int id, const struct saml1__AdviceType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AdviceType), type)) - return soap->error; - if (a->__union_AdviceType) - { int i; - for (i = 0; i < (int)a->__size_AdviceType; i++) - if (soap_out___saml1__union_AdviceType(soap, "-union-AdviceType", -1, a->__union_AdviceType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AdviceType * SOAP_FMAC4 soap_in_saml1__AdviceType(struct soap *soap, const char *tag, struct saml1__AdviceType *a, const char *type) -{ - struct soap_blist *soap_blist___union_AdviceType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AdviceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AdviceType, sizeof(struct saml1__AdviceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AdviceType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_AdviceType == NULL) - { if (soap_blist___union_AdviceType == NULL) - soap_blist___union_AdviceType = soap_alloc_block(soap); - a->__union_AdviceType = soap_block::push(soap, soap_blist___union_AdviceType); - if (a->__union_AdviceType == NULL) - return NULL; - soap_default___saml1__union_AdviceType(soap, a->__union_AdviceType); - } - if (soap_in___saml1__union_AdviceType(soap, "-union-AdviceType", a->__union_AdviceType, "-saml1:union-AdviceType")) - { a->__size_AdviceType++; - a->__union_AdviceType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_AdviceType) - soap_block::pop(soap, soap_blist___union_AdviceType); - if (a->__size_AdviceType) - { a->__union_AdviceType = soap_new___saml1__union_AdviceType(soap, a->__size_AdviceType); - if (!a->__union_AdviceType) - return NULL; - soap_block::save(soap, soap_blist___union_AdviceType, a->__union_AdviceType); - } - else - { a->__union_AdviceType = NULL; - if (soap_blist___union_AdviceType) - soap_block::end(soap, soap_blist___union_AdviceType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__AdviceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AdviceType, SOAP_TYPE_saml1__AdviceType, sizeof(struct saml1__AdviceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AdviceType * SOAP_FMAC2 soap_instantiate_saml1__AdviceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AdviceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AdviceType *p; - size_t k = sizeof(struct saml1__AdviceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AdviceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AdviceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AdviceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AdviceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AdviceType(struct soap *soap, const struct saml1__AdviceType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AdviceType(soap, tag ? tag : "saml1:AdviceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AdviceType * SOAP_FMAC4 soap_get_saml1__AdviceType(struct soap *soap, struct saml1__AdviceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AdviceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__DoNotCacheConditionType(struct soap *soap, struct saml1__DoNotCacheConditionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__DoNotCacheConditionType(struct soap *soap, const struct saml1__DoNotCacheConditionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__DoNotCacheConditionType(struct soap *soap, const char *tag, int id, const struct saml1__DoNotCacheConditionType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__DoNotCacheConditionType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__DoNotCacheConditionType * SOAP_FMAC4 soap_in_saml1__DoNotCacheConditionType(struct soap *soap, const char *tag, struct saml1__DoNotCacheConditionType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__DoNotCacheConditionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__DoNotCacheConditionType, sizeof(struct saml1__DoNotCacheConditionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__DoNotCacheConditionType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__DoNotCacheConditionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__DoNotCacheConditionType, SOAP_TYPE_saml1__DoNotCacheConditionType, sizeof(struct saml1__DoNotCacheConditionType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__DoNotCacheConditionType * SOAP_FMAC2 soap_instantiate_saml1__DoNotCacheConditionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__DoNotCacheConditionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__DoNotCacheConditionType *p; - size_t k = sizeof(struct saml1__DoNotCacheConditionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__DoNotCacheConditionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__DoNotCacheConditionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__DoNotCacheConditionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__DoNotCacheConditionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__DoNotCacheConditionType(struct soap *soap, const struct saml1__DoNotCacheConditionType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__DoNotCacheConditionType(soap, tag ? tag : "saml1:DoNotCacheConditionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__DoNotCacheConditionType * SOAP_FMAC4 soap_get_saml1__DoNotCacheConditionType(struct soap *soap, struct saml1__DoNotCacheConditionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__DoNotCacheConditionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AudienceRestrictionConditionType(struct soap *soap, struct saml1__AudienceRestrictionConditionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeAudience = 0; - a->saml1__Audience = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AudienceRestrictionConditionType(struct soap *soap, const struct saml1__AudienceRestrictionConditionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->saml1__Audience) - { int i; - for (i = 0; i < (int)a->__sizeAudience; i++) - { - soap_serialize_string(soap, (char*const*)(a->saml1__Audience + i)); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AudienceRestrictionConditionType(struct soap *soap, const char *tag, int id, const struct saml1__AudienceRestrictionConditionType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AudienceRestrictionConditionType), type)) - return soap->error; - if (a->saml1__Audience) - { int i; - for (i = 0; i < (int)a->__sizeAudience; i++) - if (soap_out_string(soap, "saml1:Audience", -1, (char*const*)(a->saml1__Audience + i), "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AudienceRestrictionConditionType * SOAP_FMAC4 soap_in_saml1__AudienceRestrictionConditionType(struct soap *soap, const char *tag, struct saml1__AudienceRestrictionConditionType *a, const char *type) -{ - struct soap_blist *soap_blist_saml1__Audience = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AudienceRestrictionConditionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AudienceRestrictionConditionType, sizeof(struct saml1__AudienceRestrictionConditionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AudienceRestrictionConditionType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "saml1:Audience", 1, NULL)) - { if (a->saml1__Audience == NULL) - { if (soap_blist_saml1__Audience == NULL) - soap_blist_saml1__Audience = soap_alloc_block(soap); - a->saml1__Audience = (char **)soap_push_block_max(soap, soap_blist_saml1__Audience, sizeof(char *)); - if (a->saml1__Audience == NULL) - return NULL; - *a->saml1__Audience = NULL; - } - soap_revert(soap); - if (soap_in_string(soap, "saml1:Audience", (char**)a->saml1__Audience, "xsd:string")) - { a->__sizeAudience++; - a->saml1__Audience = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->saml1__Audience) - soap_pop_block(soap, soap_blist_saml1__Audience); - if (a->__sizeAudience) - { a->saml1__Audience = (char **)soap_save_block(soap, soap_blist_saml1__Audience, NULL, 1); - } - else - { a->saml1__Audience = NULL; - if (soap_blist_saml1__Audience) - soap_end_block(soap, soap_blist_saml1__Audience); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__sizeAudience < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct saml1__AudienceRestrictionConditionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AudienceRestrictionConditionType, SOAP_TYPE_saml1__AudienceRestrictionConditionType, sizeof(struct saml1__AudienceRestrictionConditionType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AudienceRestrictionConditionType * SOAP_FMAC2 soap_instantiate_saml1__AudienceRestrictionConditionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AudienceRestrictionConditionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AudienceRestrictionConditionType *p; - size_t k = sizeof(struct saml1__AudienceRestrictionConditionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AudienceRestrictionConditionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AudienceRestrictionConditionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AudienceRestrictionConditionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AudienceRestrictionConditionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AudienceRestrictionConditionType(struct soap *soap, const struct saml1__AudienceRestrictionConditionType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AudienceRestrictionConditionType(soap, tag ? tag : "saml1:AudienceRestrictionConditionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AudienceRestrictionConditionType * SOAP_FMAC4 soap_get_saml1__AudienceRestrictionConditionType(struct soap *soap, struct saml1__AudienceRestrictionConditionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AudienceRestrictionConditionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__ConditionAbstractType(struct soap *soap, struct saml1__ConditionAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ConditionAbstractType(struct soap *soap, const struct saml1__ConditionAbstractType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__ConditionAbstractType(struct soap *soap, const char *tag, int id, const struct saml1__ConditionAbstractType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__ConditionAbstractType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__ConditionAbstractType * SOAP_FMAC4 soap_in_saml1__ConditionAbstractType(struct soap *soap, const char *tag, struct saml1__ConditionAbstractType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__ConditionAbstractType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__ConditionAbstractType, sizeof(struct saml1__ConditionAbstractType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__ConditionAbstractType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__ConditionAbstractType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__ConditionAbstractType, SOAP_TYPE_saml1__ConditionAbstractType, sizeof(struct saml1__ConditionAbstractType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__ConditionAbstractType * SOAP_FMAC2 soap_instantiate_saml1__ConditionAbstractType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__ConditionAbstractType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__ConditionAbstractType *p; - size_t k = sizeof(struct saml1__ConditionAbstractType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__ConditionAbstractType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__ConditionAbstractType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__ConditionAbstractType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__ConditionAbstractType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__ConditionAbstractType(struct soap *soap, const struct saml1__ConditionAbstractType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__ConditionAbstractType(soap, tag ? tag : "saml1:ConditionAbstractType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__ConditionAbstractType * SOAP_FMAC4 soap_get_saml1__ConditionAbstractType(struct soap *soap, struct saml1__ConditionAbstractType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__ConditionAbstractType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__ConditionsType(struct soap *soap, struct saml1__ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_ConditionsType = 0; - a->__union_ConditionsType = NULL; - a->NotBefore = NULL; - a->NotOnOrAfter = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ConditionsType(struct soap *soap, const struct saml1__ConditionsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_ConditionsType) - { int i; - for (i = 0; i < (int)a->__size_ConditionsType; i++) - { - soap_serialize___saml1__union_ConditionsType(soap, a->__union_ConditionsType + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__ConditionsType(struct soap *soap, const char *tag, int id, const struct saml1__ConditionsType *a, const char *type) -{ - if (a->NotBefore) - { soap_set_attr(soap, "NotBefore", soap_xsd__dateTime2s(soap, *a->NotBefore), 1); - } - if (a->NotOnOrAfter) - { soap_set_attr(soap, "NotOnOrAfter", soap_xsd__dateTime2s(soap, *a->NotOnOrAfter), 1); - } - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__ConditionsType), type)) - return soap->error; - if (a->__union_ConditionsType) - { int i; - for (i = 0; i < (int)a->__size_ConditionsType; i++) - if (soap_out___saml1__union_ConditionsType(soap, "-union-ConditionsType", -1, a->__union_ConditionsType + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__ConditionsType * SOAP_FMAC4 soap_in_saml1__ConditionsType(struct soap *soap, const char *tag, struct saml1__ConditionsType *a, const char *type) -{ - struct soap_blist *soap_blist___union_ConditionsType = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__ConditionsType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__ConditionsType, sizeof(struct saml1__ConditionsType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__ConditionsType(soap, a); - { - const char *t = soap_attr_value(soap, "NotBefore", 5, 0); - if (t) - { - if (!(a->NotBefore = (struct timeval *)soap_malloc(soap, sizeof(struct timeval)))) - return NULL; - if (soap_s2xsd__dateTime(soap, t, a->NotBefore)) - return NULL; - } - else if (soap->error) - return NULL; - } - { - const char *t = soap_attr_value(soap, "NotOnOrAfter", 5, 0); - if (t) - { - if (!(a->NotOnOrAfter = (struct timeval *)soap_malloc(soap, sizeof(struct timeval)))) - return NULL; - if (soap_s2xsd__dateTime(soap, t, a->NotOnOrAfter)) - return NULL; - } - else if (soap->error) - return NULL; - } - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_ConditionsType == NULL) - { if (soap_blist___union_ConditionsType == NULL) - soap_blist___union_ConditionsType = soap_alloc_block(soap); - a->__union_ConditionsType = soap_block::push(soap, soap_blist___union_ConditionsType); - if (a->__union_ConditionsType == NULL) - return NULL; - soap_default___saml1__union_ConditionsType(soap, a->__union_ConditionsType); - } - if (soap_in___saml1__union_ConditionsType(soap, "-union-ConditionsType", a->__union_ConditionsType, "-saml1:union-ConditionsType")) - { a->__size_ConditionsType++; - a->__union_ConditionsType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_ConditionsType) - soap_block::pop(soap, soap_blist___union_ConditionsType); - if (a->__size_ConditionsType) - { a->__union_ConditionsType = soap_new___saml1__union_ConditionsType(soap, a->__size_ConditionsType); - if (!a->__union_ConditionsType) - return NULL; - soap_block::save(soap, soap_blist___union_ConditionsType, a->__union_ConditionsType); - } - else - { a->__union_ConditionsType = NULL; - if (soap_blist___union_ConditionsType) - soap_block::end(soap, soap_blist___union_ConditionsType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__ConditionsType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__ConditionsType, SOAP_TYPE_saml1__ConditionsType, sizeof(struct saml1__ConditionsType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__ConditionsType * SOAP_FMAC2 soap_instantiate_saml1__ConditionsType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__ConditionsType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__ConditionsType *p; - size_t k = sizeof(struct saml1__ConditionsType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__ConditionsType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__ConditionsType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__ConditionsType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__ConditionsType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__ConditionsType(struct soap *soap, const struct saml1__ConditionsType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__ConditionsType(soap, tag ? tag : "saml1:ConditionsType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__ConditionsType * SOAP_FMAC4 soap_get_saml1__ConditionsType(struct soap *soap, struct saml1__ConditionsType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__ConditionsType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AssertionType(struct soap *soap, struct saml1__AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->saml1__Conditions = NULL; - a->saml1__Advice = NULL; - a->__size_AssertionType = 0; - a->__union_AssertionType = NULL; - a->ds__Signature = NULL; - soap_default_string(soap, &a->MajorVersion); - soap_default_string(soap, &a->MinorVersion); - soap_default_string(soap, &a->AssertionID); - soap_default_string(soap, &a->Issuer); - soap_default_xsd__dateTime(soap, &a->IssueInstant); - soap_default_string(soap, &a->wsu__Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AssertionType(struct soap *soap, const struct saml1__AssertionType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTosaml1__ConditionsType(soap, &a->saml1__Conditions); - soap_serialize_PointerTosaml1__AdviceType(soap, &a->saml1__Advice); - if (a->__union_AssertionType) - { int i; - for (i = 0; i < (int)a->__size_AssertionType; i++) - { - soap_serialize___saml1__union_AssertionType(soap, a->__union_AssertionType + i); - } - } - soap_serialize_PointerTo_ds__Signature(soap, &a->ds__Signature); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AssertionType(struct soap *soap, const char *tag, int id, const struct saml1__AssertionType *a, const char *type) -{ - soap_set_attr(soap, "MajorVersion", a->MajorVersion ? soap_string2s(soap, a->MajorVersion) : "", 1); - soap_set_attr(soap, "MinorVersion", a->MinorVersion ? soap_string2s(soap, a->MinorVersion) : "", 1); - soap_set_attr(soap, "AssertionID", a->AssertionID ? soap_string2s(soap, a->AssertionID) : "", 1); - soap_set_attr(soap, "Issuer", a->Issuer ? soap_string2s(soap, a->Issuer) : "", 1); - soap_set_attr(soap, "IssueInstant", soap_xsd__dateTime2s(soap, a->IssueInstant), 1); - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_saml1__AssertionType), type)) - return soap->error; - if (soap_out_PointerTosaml1__ConditionsType(soap, "saml1:Conditions", -1, &a->saml1__Conditions, "")) - return soap->error; - if (soap_out_PointerTosaml1__AdviceType(soap, "saml1:Advice", -1, &a->saml1__Advice, "")) - return soap->error; - if (a->__union_AssertionType) - { int i; - for (i = 0; i < (int)a->__size_AssertionType; i++) - if (soap_out___saml1__union_AssertionType(soap, "-union-AssertionType", -1, a->__union_AssertionType + i, "")) - return soap->error; - } - if (soap_out_PointerTo_ds__Signature(soap, "ds:Signature", -1, &a->ds__Signature, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct saml1__AssertionType * SOAP_FMAC4 soap_in_saml1__AssertionType(struct soap *soap, const char *tag, struct saml1__AssertionType *a, const char *type) -{ - size_t soap_flag_saml1__Conditions = 1; - size_t soap_flag_saml1__Advice = 1; - struct soap_blist *soap_blist___union_AssertionType = NULL; - size_t soap_flag_ds__Signature = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct saml1__AssertionType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_saml1__AssertionType, sizeof(struct saml1__AssertionType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_saml1__AssertionType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "MajorVersion", 1, 1), &a->MajorVersion)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "MinorVersion", 1, 1), &a->MinorVersion)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "AssertionID", 1, 1), &a->AssertionID)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Issuer", 1, 1), &a->Issuer)) - return NULL; - if (soap_s2xsd__dateTime(soap, soap_attr_value(soap, "IssueInstant", 5, 1), &a->IssueInstant)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_saml1__Conditions && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__ConditionsType(soap, "saml1:Conditions", &a->saml1__Conditions, "saml1:ConditionsType")) - { soap_flag_saml1__Conditions--; - continue; - } - } - if (soap_flag_saml1__Advice && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTosaml1__AdviceType(soap, "saml1:Advice", &a->saml1__Advice, "saml1:AdviceType")) - { soap_flag_saml1__Advice--; - continue; - } - } - if (soap_flag_ds__Signature && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_ds__Signature(soap, "ds:Signature", &a->ds__Signature, "")) - { soap_flag_ds__Signature--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_AssertionType == NULL) - { if (soap_blist___union_AssertionType == NULL) - soap_blist___union_AssertionType = soap_alloc_block(soap); - a->__union_AssertionType = soap_block::push(soap, soap_blist___union_AssertionType); - if (a->__union_AssertionType == NULL) - return NULL; - soap_default___saml1__union_AssertionType(soap, a->__union_AssertionType); - } - if (soap_in___saml1__union_AssertionType(soap, "-union-AssertionType", a->__union_AssertionType, "-saml1:union-AssertionType")) - { a->__size_AssertionType++; - a->__union_AssertionType = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_AssertionType) - soap_block::pop(soap, soap_blist___union_AssertionType); - if (a->__size_AssertionType) - { a->__union_AssertionType = soap_new___saml1__union_AssertionType(soap, a->__size_AssertionType); - if (!a->__union_AssertionType) - return NULL; - soap_block::save(soap, soap_blist___union_AssertionType, a->__union_AssertionType); - } - else - { a->__union_AssertionType = NULL; - if (soap_blist___union_AssertionType) - soap_block::end(soap, soap_blist___union_AssertionType); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct saml1__AssertionType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_saml1__AssertionType, SOAP_TYPE_saml1__AssertionType, sizeof(struct saml1__AssertionType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct saml1__AssertionType * SOAP_FMAC2 soap_instantiate_saml1__AssertionType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_saml1__AssertionType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct saml1__AssertionType *p; - size_t k = sizeof(struct saml1__AssertionType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_saml1__AssertionType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct saml1__AssertionType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct saml1__AssertionType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct saml1__AssertionType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AssertionType(struct soap *soap, const struct saml1__AssertionType *a, const char *tag, const char *type) -{ - if (soap_out_saml1__AssertionType(soap, tag ? tag : "saml1:AssertionType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct saml1__AssertionType * SOAP_FMAC4 soap_get_saml1__AssertionType(struct soap *soap, struct saml1__AssertionType *p, const char *tag, const char *type) -{ - if ((p = soap_in_saml1__AssertionType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC1 struct timeval * SOAP_FMAC2 soap_instantiate_xsd__dateTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xsd__dateTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct timeval *p; - size_t k = sizeof(struct timeval); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xsd__dateTime, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct timeval); - } - else - { p = SOAP_NEW_ARRAY(soap, struct timeval, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct timeval location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__dateTime(struct soap *soap, const struct timeval *a, const char *tag, const char *type) -{ - if (soap_out_xsd__dateTime(soap, tag ? tag : "xsd:dateTime", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct timeval * SOAP_FMAC4 soap_get_xsd__dateTime(struct soap *soap, struct timeval *p, const char *tag, const char *type) -{ - if ((p = soap_in_xsd__dateTime(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsc__DerivedKeyTokenType_sequence(struct soap *soap, struct __wsc__DerivedKeyTokenType_sequence *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__union_DerivedKeyTokenType = -1; - a->Length = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const struct __wsc__DerivedKeyTokenType_sequence *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__wsc__union_DerivedKeyTokenType(soap, a->__union_DerivedKeyTokenType, &a->union_DerivedKeyTokenType); - soap_serialize_PointerToULONG64(soap, &a->Length); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const char *tag, int id, const struct __wsc__DerivedKeyTokenType_sequence *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out__wsc__union_DerivedKeyTokenType(soap, a->__union_DerivedKeyTokenType, &a->union_DerivedKeyTokenType)) - return soap->error; - if (soap_out_PointerToULONG64(soap, "wsc:Length", -1, &a->Length, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsc__DerivedKeyTokenType_sequence * SOAP_FMAC4 soap_in___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const char *tag, struct __wsc__DerivedKeyTokenType_sequence *a, const char *type) -{ - size_t soap_flag_union_DerivedKeyTokenType = 1; - size_t soap_flag_Length = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __wsc__DerivedKeyTokenType_sequence*)soap_id_enter(soap, "", a, SOAP_TYPE___wsc__DerivedKeyTokenType_sequence, sizeof(struct __wsc__DerivedKeyTokenType_sequence), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___wsc__DerivedKeyTokenType_sequence(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_union_DerivedKeyTokenType && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__wsc__union_DerivedKeyTokenType(soap, &a->__union_DerivedKeyTokenType, &a->union_DerivedKeyTokenType)) - { soap_flag_union_DerivedKeyTokenType = 0; - continue; - } - } - if (soap_flag_Length && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToULONG64(soap, "wsc:Length", &a->Length, "xsd:unsignedLong")) - { soap_flag_Length--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __wsc__DerivedKeyTokenType_sequence * SOAP_FMAC2 soap_instantiate___wsc__DerivedKeyTokenType_sequence(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___wsc__DerivedKeyTokenType_sequence(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __wsc__DerivedKeyTokenType_sequence *p; - size_t k = sizeof(struct __wsc__DerivedKeyTokenType_sequence); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___wsc__DerivedKeyTokenType_sequence, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __wsc__DerivedKeyTokenType_sequence); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __wsc__DerivedKeyTokenType_sequence, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __wsc__DerivedKeyTokenType_sequence location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const struct __wsc__DerivedKeyTokenType_sequence *a, const char *tag, const char *type) -{ - if (soap_out___wsc__DerivedKeyTokenType_sequence(soap, tag ? tag : "-wsc:DerivedKeyTokenType-sequence", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsc__DerivedKeyTokenType_sequence * SOAP_FMAC4 soap_get___wsc__DerivedKeyTokenType_sequence(struct soap *soap, struct __wsc__DerivedKeyTokenType_sequence *p, const char *tag, const char *type) -{ - if ((p = soap_in___wsc__DerivedKeyTokenType_sequence(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsc__PropertiesType(struct soap *soap, struct wsc__PropertiesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsc__PropertiesType(struct soap *soap, const struct wsc__PropertiesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__PropertiesType(struct soap *soap, const char *tag, int id, const struct wsc__PropertiesType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsc__PropertiesType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsc__PropertiesType * SOAP_FMAC4 soap_in_wsc__PropertiesType(struct soap *soap, const char *tag, struct wsc__PropertiesType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsc__PropertiesType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsc__PropertiesType, sizeof(struct wsc__PropertiesType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsc__PropertiesType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsc__PropertiesType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsc__PropertiesType, SOAP_TYPE_wsc__PropertiesType, sizeof(struct wsc__PropertiesType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsc__PropertiesType * SOAP_FMAC2 soap_instantiate_wsc__PropertiesType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsc__PropertiesType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsc__PropertiesType *p; - size_t k = sizeof(struct wsc__PropertiesType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsc__PropertiesType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsc__PropertiesType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsc__PropertiesType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsc__PropertiesType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__PropertiesType(struct soap *soap, const struct wsc__PropertiesType *a, const char *tag, const char *type) -{ - if (soap_out_wsc__PropertiesType(soap, tag ? tag : "wsc:PropertiesType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsc__PropertiesType * SOAP_FMAC4 soap_get_wsc__PropertiesType(struct soap *soap, struct wsc__PropertiesType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsc__PropertiesType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsc__DerivedKeyTokenType(struct soap *soap, struct wsc__DerivedKeyTokenType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsse__SecurityTokenReference = NULL; - a->Properties = NULL; - a->__DerivedKeyTokenType_sequence = NULL; - soap_default_string(soap, &a->Label); - soap_default_string(soap, &a->Nonce); - soap_default_string(soap, &a->wsu__Id); - soap_default_string(soap, &a->Algorithm); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsc__DerivedKeyTokenType(struct soap *soap, const struct wsc__DerivedKeyTokenType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsse__SecurityTokenReference(soap, &a->wsse__SecurityTokenReference); - soap_serialize_PointerTowsc__PropertiesType(soap, &a->Properties); - soap_serialize_PointerTo__wsc__DerivedKeyTokenType_sequence(soap, &a->__DerivedKeyTokenType_sequence); - soap_serialize_string(soap, (char*const*)&a->Label); - soap_serialize_string(soap, (char*const*)&a->Nonce); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__DerivedKeyTokenType(struct soap *soap, const char *tag, int id, const struct wsc__DerivedKeyTokenType *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - if (a->Algorithm) - soap_set_attr(soap, "Algorithm", soap_string2s(soap, a->Algorithm), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsc__DerivedKeyTokenType), type)) - return soap->error; - if (soap_out_PointerTo_wsse__SecurityTokenReference(soap, "wsse:SecurityTokenReference", -1, &a->wsse__SecurityTokenReference, "")) - return soap->error; - if (soap_out_PointerTowsc__PropertiesType(soap, "wsc:Properties", -1, &a->Properties, "")) - return soap->error; - if (soap_out_PointerTo__wsc__DerivedKeyTokenType_sequence(soap, "-DerivedKeyTokenType-sequence", -1, &a->__DerivedKeyTokenType_sequence, "")) - return soap->error; - if (soap_out_string(soap, "wsc:Label", -1, (char*const*)&a->Label, "")) - return soap->error; - if (soap_out_string(soap, "wsc:Nonce", -1, (char*const*)&a->Nonce, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsc__DerivedKeyTokenType * SOAP_FMAC4 soap_in_wsc__DerivedKeyTokenType(struct soap *soap, const char *tag, struct wsc__DerivedKeyTokenType *a, const char *type) -{ - size_t soap_flag_wsse__SecurityTokenReference = 1; - size_t soap_flag_Properties = 1; - size_t soap_flag___DerivedKeyTokenType_sequence = 1; - size_t soap_flag_Label = 1; - size_t soap_flag_Nonce = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsc__DerivedKeyTokenType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsc__DerivedKeyTokenType, sizeof(struct wsc__DerivedKeyTokenType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsc__DerivedKeyTokenType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Algorithm", 1, 0), &a->Algorithm)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsse__SecurityTokenReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__SecurityTokenReference(soap, "wsse:SecurityTokenReference", &a->wsse__SecurityTokenReference, "")) - { soap_flag_wsse__SecurityTokenReference--; - continue; - } - } - if (soap_flag_Properties && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsc__PropertiesType(soap, "wsc:Properties", &a->Properties, "wsc:PropertiesType")) - { soap_flag_Properties--; - continue; - } - } - if (soap_flag_Label && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsc:Label", (char**)&a->Label, "xsd:string")) - { soap_flag_Label--; - continue; - } - } - if (soap_flag_Nonce && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsc:Nonce", (char**)&a->Nonce, "xsd:string")) - { soap_flag_Nonce--; - continue; - } - } - if (soap_flag___DerivedKeyTokenType_sequence && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo__wsc__DerivedKeyTokenType_sequence(soap, "-DerivedKeyTokenType-sequence", &a->__DerivedKeyTokenType_sequence, "-wsc:DerivedKeyTokenType-sequence")) - { soap_flag___DerivedKeyTokenType_sequence--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsc__DerivedKeyTokenType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsc__DerivedKeyTokenType, SOAP_TYPE_wsc__DerivedKeyTokenType, sizeof(struct wsc__DerivedKeyTokenType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsc__DerivedKeyTokenType * SOAP_FMAC2 soap_instantiate_wsc__DerivedKeyTokenType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsc__DerivedKeyTokenType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsc__DerivedKeyTokenType *p; - size_t k = sizeof(struct wsc__DerivedKeyTokenType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsc__DerivedKeyTokenType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsc__DerivedKeyTokenType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsc__DerivedKeyTokenType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsc__DerivedKeyTokenType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__DerivedKeyTokenType(struct soap *soap, const struct wsc__DerivedKeyTokenType *a, const char *tag, const char *type) -{ - if (soap_out_wsc__DerivedKeyTokenType(soap, tag ? tag : "wsc:DerivedKeyTokenType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsc__DerivedKeyTokenType * SOAP_FMAC4 soap_get_wsc__DerivedKeyTokenType(struct soap *soap, struct wsc__DerivedKeyTokenType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsc__DerivedKeyTokenType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsc__SecurityContextTokenType(struct soap *soap, struct wsc__SecurityContextTokenType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->wsu__Id); - soap_default_string(soap, &a->Identifier); - soap_default_string(soap, &a->Instance); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsc__SecurityContextTokenType(struct soap *soap, const struct wsc__SecurityContextTokenType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->Identifier); - soap_serialize_string(soap, (char*const*)&a->Instance); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__SecurityContextTokenType(struct soap *soap, const char *tag, int id, const struct wsc__SecurityContextTokenType *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsc__SecurityContextTokenType), type)) - return soap->error; - if (soap_out_string(soap, "wsc:Identifier", -1, (char*const*)&a->Identifier, "")) - return soap->error; - if (soap_out_string(soap, "wsc:Instance", -1, (char*const*)&a->Instance, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsc__SecurityContextTokenType * SOAP_FMAC4 soap_in_wsc__SecurityContextTokenType(struct soap *soap, const char *tag, struct wsc__SecurityContextTokenType *a, const char *type) -{ - size_t soap_flag_Identifier = 1; - size_t soap_flag_Instance = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsc__SecurityContextTokenType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsc__SecurityContextTokenType, sizeof(struct wsc__SecurityContextTokenType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsc__SecurityContextTokenType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Identifier && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsc:Identifier", (char**)&a->Identifier, "xsd:string")) - { soap_flag_Identifier--; - continue; - } - } - if (soap_flag_Instance && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsc:Instance", (char**)&a->Instance, "xsd:string")) - { soap_flag_Instance--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsc__SecurityContextTokenType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsc__SecurityContextTokenType, SOAP_TYPE_wsc__SecurityContextTokenType, sizeof(struct wsc__SecurityContextTokenType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsc__SecurityContextTokenType * SOAP_FMAC2 soap_instantiate_wsc__SecurityContextTokenType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsc__SecurityContextTokenType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsc__SecurityContextTokenType *p; - size_t k = sizeof(struct wsc__SecurityContextTokenType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsc__SecurityContextTokenType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsc__SecurityContextTokenType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsc__SecurityContextTokenType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsc__SecurityContextTokenType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__SecurityContextTokenType(struct soap *soap, const struct wsc__SecurityContextTokenType *a, const char *tag, const char *type) -{ - if (soap_out_wsc__SecurityContextTokenType(soap, tag ? tag : "wsc:SecurityContextTokenType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsc__SecurityContextTokenType * SOAP_FMAC4 soap_get_wsc__SecurityContextTokenType(struct soap *soap, struct wsc__SecurityContextTokenType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsc__SecurityContextTokenType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___xenc__union_ReferenceList(struct soap *soap, struct __xenc__union_ReferenceList *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->DataReference = NULL; - a->KeyReference = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___xenc__union_ReferenceList(struct soap *soap, const struct __xenc__union_ReferenceList *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxenc__ReferenceType(soap, &a->DataReference); - soap_serialize_PointerToxenc__ReferenceType(soap, &a->KeyReference); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___xenc__union_ReferenceList(struct soap *soap, const char *tag, int id, const struct __xenc__union_ReferenceList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerToxenc__ReferenceType(soap, "xenc:DataReference", -1, &a->DataReference, "")) - return soap->error; - if (soap_out_PointerToxenc__ReferenceType(soap, "xenc:KeyReference", -1, &a->KeyReference, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __xenc__union_ReferenceList * SOAP_FMAC4 soap_in___xenc__union_ReferenceList(struct soap *soap, const char *tag, struct __xenc__union_ReferenceList *a, const char *type) -{ - size_t soap_flag_DataReference = 1; - size_t soap_flag_KeyReference = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __xenc__union_ReferenceList*)soap_id_enter(soap, "", a, SOAP_TYPE___xenc__union_ReferenceList, sizeof(struct __xenc__union_ReferenceList), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___xenc__union_ReferenceList(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DataReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__ReferenceType(soap, "xenc:DataReference", &a->DataReference, "xenc:ReferenceType")) - { soap_flag_DataReference--; - continue; - } - } - if (soap_flag_KeyReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__ReferenceType(soap, "xenc:KeyReference", &a->KeyReference, "xenc:ReferenceType")) - { soap_flag_KeyReference--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __xenc__union_ReferenceList * SOAP_FMAC2 soap_instantiate___xenc__union_ReferenceList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___xenc__union_ReferenceList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __xenc__union_ReferenceList *p; - size_t k = sizeof(struct __xenc__union_ReferenceList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___xenc__union_ReferenceList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __xenc__union_ReferenceList); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __xenc__union_ReferenceList, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __xenc__union_ReferenceList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___xenc__union_ReferenceList(struct soap *soap, const struct __xenc__union_ReferenceList *a, const char *tag, const char *type) -{ - if (soap_out___xenc__union_ReferenceList(soap, tag ? tag : "-xenc:union-ReferenceList", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __xenc__union_ReferenceList * SOAP_FMAC4 soap_get___xenc__union_ReferenceList(struct soap *soap, struct __xenc__union_ReferenceList *p, const char *tag, const char *type) -{ - if ((p = soap_in___xenc__union_ReferenceList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__xenc__ReferenceList(struct soap *soap, struct _xenc__ReferenceList *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size_ReferenceList = 0; - a->__union_ReferenceList = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__xenc__ReferenceList(struct soap *soap, const struct _xenc__ReferenceList *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->__union_ReferenceList) - { int i; - for (i = 0; i < (int)a->__size_ReferenceList; i++) - { - soap_serialize___xenc__union_ReferenceList(soap, a->__union_ReferenceList + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__xenc__ReferenceList(struct soap *soap, const char *tag, int id, const struct _xenc__ReferenceList *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__xenc__ReferenceList), type)) - return soap->error; - if (a->__union_ReferenceList) - { int i; - for (i = 0; i < (int)a->__size_ReferenceList; i++) - if (soap_out___xenc__union_ReferenceList(soap, "-union-ReferenceList", -1, a->__union_ReferenceList + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _xenc__ReferenceList * SOAP_FMAC4 soap_in__xenc__ReferenceList(struct soap *soap, const char *tag, struct _xenc__ReferenceList *a, const char *type) -{ - struct soap_blist *soap_blist___union_ReferenceList = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _xenc__ReferenceList*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__xenc__ReferenceList, sizeof(struct _xenc__ReferenceList), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__xenc__ReferenceList(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__union_ReferenceList == NULL) - { if (soap_blist___union_ReferenceList == NULL) - soap_blist___union_ReferenceList = soap_alloc_block(soap); - a->__union_ReferenceList = soap_block::push(soap, soap_blist___union_ReferenceList); - if (a->__union_ReferenceList == NULL) - return NULL; - soap_default___xenc__union_ReferenceList(soap, a->__union_ReferenceList); - } - if (soap_in___xenc__union_ReferenceList(soap, "-union-ReferenceList", a->__union_ReferenceList, "-xenc:union-ReferenceList")) - { a->__size_ReferenceList++; - a->__union_ReferenceList = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__union_ReferenceList) - soap_block::pop(soap, soap_blist___union_ReferenceList); - if (a->__size_ReferenceList) - { a->__union_ReferenceList = soap_new___xenc__union_ReferenceList(soap, a->__size_ReferenceList); - if (!a->__union_ReferenceList) - return NULL; - soap_block::save(soap, soap_blist___union_ReferenceList, a->__union_ReferenceList); - } - else - { a->__union_ReferenceList = NULL; - if (soap_blist___union_ReferenceList) - soap_block::end(soap, soap_blist___union_ReferenceList); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__size_ReferenceList < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct _xenc__ReferenceList *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__xenc__ReferenceList, SOAP_TYPE__xenc__ReferenceList, sizeof(struct _xenc__ReferenceList), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _xenc__ReferenceList * SOAP_FMAC2 soap_instantiate__xenc__ReferenceList(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__xenc__ReferenceList(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _xenc__ReferenceList *p; - size_t k = sizeof(struct _xenc__ReferenceList); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__xenc__ReferenceList, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _xenc__ReferenceList); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _xenc__ReferenceList, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _xenc__ReferenceList location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__xenc__ReferenceList(struct soap *soap, const struct _xenc__ReferenceList *a, const char *tag, const char *type) -{ - if (soap_out__xenc__ReferenceList(soap, tag ? tag : "xenc:ReferenceList", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _xenc__ReferenceList * SOAP_FMAC4 soap_get__xenc__ReferenceList(struct soap *soap, struct _xenc__ReferenceList *p, const char *tag, const char *type) -{ - if ((p = soap_in__xenc__ReferenceList(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptionPropertyType(struct soap *soap, struct xenc__EncryptionPropertyType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Target); - soap_default_string(soap, &a->Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptionPropertyType(struct soap *soap, const struct xenc__EncryptionPropertyType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptionPropertyType(struct soap *soap, const char *tag, int id, const struct xenc__EncryptionPropertyType *a, const char *type) -{ - if (a->Target) - soap_set_attr(soap, "Target", soap_string2s(soap, a->Target), 1); - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__EncryptionPropertyType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__EncryptionPropertyType * SOAP_FMAC4 soap_in_xenc__EncryptionPropertyType(struct soap *soap, const char *tag, struct xenc__EncryptionPropertyType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__EncryptionPropertyType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__EncryptionPropertyType, sizeof(struct xenc__EncryptionPropertyType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__EncryptionPropertyType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Target", 1, 0), &a->Target)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct xenc__EncryptionPropertyType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__EncryptionPropertyType, SOAP_TYPE_xenc__EncryptionPropertyType, sizeof(struct xenc__EncryptionPropertyType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__EncryptionPropertyType * SOAP_FMAC2 soap_instantiate_xenc__EncryptionPropertyType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__EncryptionPropertyType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__EncryptionPropertyType *p; - size_t k = sizeof(struct xenc__EncryptionPropertyType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__EncryptionPropertyType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__EncryptionPropertyType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__EncryptionPropertyType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__EncryptionPropertyType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptionPropertyType(struct soap *soap, const struct xenc__EncryptionPropertyType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__EncryptionPropertyType(soap, tag ? tag : "xenc:EncryptionPropertyType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__EncryptionPropertyType * SOAP_FMAC4 soap_get_xenc__EncryptionPropertyType(struct soap *soap, struct xenc__EncryptionPropertyType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__EncryptionPropertyType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptionPropertiesType(struct soap *soap, struct xenc__EncryptionPropertiesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeEncryptionProperty = 0; - a->EncryptionProperty = NULL; - soap_default_string(soap, &a->Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptionPropertiesType(struct soap *soap, const struct xenc__EncryptionPropertiesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->EncryptionProperty) - { int i; - for (i = 0; i < (int)a->__sizeEncryptionProperty; i++) - { - soap_embedded(soap, a->EncryptionProperty + i, SOAP_TYPE_xenc__EncryptionPropertyType); - soap_serialize_xenc__EncryptionPropertyType(soap, a->EncryptionProperty + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptionPropertiesType(struct soap *soap, const char *tag, int id, const struct xenc__EncryptionPropertiesType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__EncryptionPropertiesType), type)) - return soap->error; - if (a->EncryptionProperty) - { int i; - for (i = 0; i < (int)a->__sizeEncryptionProperty; i++) - if (soap_out_xenc__EncryptionPropertyType(soap, "xenc:EncryptionProperty", -1, a->EncryptionProperty + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__EncryptionPropertiesType * SOAP_FMAC4 soap_in_xenc__EncryptionPropertiesType(struct soap *soap, const char *tag, struct xenc__EncryptionPropertiesType *a, const char *type) -{ - struct soap_blist *soap_blist_EncryptionProperty = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__EncryptionPropertiesType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__EncryptionPropertiesType, sizeof(struct xenc__EncryptionPropertiesType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__EncryptionPropertiesType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "xenc:EncryptionProperty", 1, NULL)) - { if (a->EncryptionProperty == NULL) - { if (soap_blist_EncryptionProperty == NULL) - soap_blist_EncryptionProperty = soap_alloc_block(soap); - a->EncryptionProperty = soap_block::push(soap, soap_blist_EncryptionProperty); - if (a->EncryptionProperty == NULL) - return NULL; - soap_default_xenc__EncryptionPropertyType(soap, a->EncryptionProperty); - } - soap_revert(soap); - if (soap_in_xenc__EncryptionPropertyType(soap, "xenc:EncryptionProperty", a->EncryptionProperty, "xenc:EncryptionPropertyType")) - { a->__sizeEncryptionProperty++; - a->EncryptionProperty = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->EncryptionProperty) - soap_block::pop(soap, soap_blist_EncryptionProperty); - if (a->__sizeEncryptionProperty) - { a->EncryptionProperty = soap_new_xenc__EncryptionPropertyType(soap, a->__sizeEncryptionProperty); - if (!a->EncryptionProperty) - return NULL; - soap_block::save(soap, soap_blist_EncryptionProperty, a->EncryptionProperty); - } - else - { a->EncryptionProperty = NULL; - if (soap_blist_EncryptionProperty) - soap_block::end(soap, soap_blist_EncryptionProperty); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (a->__sizeEncryptionProperty < 1)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct xenc__EncryptionPropertiesType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__EncryptionPropertiesType, SOAP_TYPE_xenc__EncryptionPropertiesType, sizeof(struct xenc__EncryptionPropertiesType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__EncryptionPropertiesType * SOAP_FMAC2 soap_instantiate_xenc__EncryptionPropertiesType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__EncryptionPropertiesType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__EncryptionPropertiesType *p; - size_t k = sizeof(struct xenc__EncryptionPropertiesType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__EncryptionPropertiesType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__EncryptionPropertiesType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__EncryptionPropertiesType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__EncryptionPropertiesType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptionPropertiesType(struct soap *soap, const struct xenc__EncryptionPropertiesType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__EncryptionPropertiesType(soap, tag ? tag : "xenc:EncryptionPropertiesType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__EncryptionPropertiesType * SOAP_FMAC4 soap_get_xenc__EncryptionPropertiesType(struct soap *soap, struct xenc__EncryptionPropertiesType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__EncryptionPropertiesType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__ReferenceType(struct soap *soap, struct xenc__ReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->URI); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__ReferenceType(struct soap *soap, const struct xenc__ReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__ReferenceType(struct soap *soap, const char *tag, int id, const struct xenc__ReferenceType *a, const char *type) -{ - soap_set_attr(soap, "URI", a->URI ? soap_string2s(soap, a->URI) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__ReferenceType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__ReferenceType * SOAP_FMAC4 soap_in_xenc__ReferenceType(struct soap *soap, const char *tag, struct xenc__ReferenceType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__ReferenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__ReferenceType, sizeof(struct xenc__ReferenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__ReferenceType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "URI", 1, 1), &a->URI)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct xenc__ReferenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__ReferenceType, SOAP_TYPE_xenc__ReferenceType, sizeof(struct xenc__ReferenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__ReferenceType * SOAP_FMAC2 soap_instantiate_xenc__ReferenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__ReferenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__ReferenceType *p; - size_t k = sizeof(struct xenc__ReferenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__ReferenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__ReferenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__ReferenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__ReferenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__ReferenceType(struct soap *soap, const struct xenc__ReferenceType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__ReferenceType(soap, tag ? tag : "xenc:ReferenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__ReferenceType * SOAP_FMAC4 soap_get_xenc__ReferenceType(struct soap *soap, struct xenc__ReferenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__ReferenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__AgreementMethodType(struct soap *soap, struct xenc__AgreementMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->KA_Nonce); - a->OriginatorKeyInfo = NULL; - a->RecipientKeyInfo = NULL; - soap_default_string(soap, &a->Algorithm); - a->__mixed = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__AgreementMethodType(struct soap *soap, const struct xenc__AgreementMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->KA_Nonce); - soap_serialize_PointerTods__KeyInfoType(soap, &a->OriginatorKeyInfo); - soap_serialize_PointerTods__KeyInfoType(soap, &a->RecipientKeyInfo); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__AgreementMethodType(struct soap *soap, const char *tag, int id, const struct xenc__AgreementMethodType *a, const char *type) -{ - soap_set_attr(soap, "Algorithm", a->Algorithm ? soap_string2s(soap, a->Algorithm) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__AgreementMethodType), type)) - return soap->error; - if (soap_out_string(soap, "xenc:KA-Nonce", -1, (char*const*)&a->KA_Nonce, "")) - return soap->error; - if (soap_out_PointerTods__KeyInfoType(soap, "xenc:OriginatorKeyInfo", -1, &a->OriginatorKeyInfo, "")) - return soap->error; - if (soap_out_PointerTods__KeyInfoType(soap, "xenc:RecipientKeyInfo", -1, &a->RecipientKeyInfo, "")) - return soap->error; - if (soap_outliteral(soap, "-mixed", (char*const*)&a->__mixed, NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__AgreementMethodType * SOAP_FMAC4 soap_in_xenc__AgreementMethodType(struct soap *soap, const char *tag, struct xenc__AgreementMethodType *a, const char *type) -{ - size_t soap_flag_KA_Nonce = 1; - size_t soap_flag_OriginatorKeyInfo = 1; - size_t soap_flag_RecipientKeyInfo = 1; - size_t soap_flag___mixed = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__AgreementMethodType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__AgreementMethodType, sizeof(struct xenc__AgreementMethodType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__AgreementMethodType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Algorithm", 1, 1), &a->Algorithm)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_KA_Nonce && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "xenc:KA-Nonce", (char**)&a->KA_Nonce, "xsd:string")) - { soap_flag_KA_Nonce--; - continue; - } - } - if (soap_flag_OriginatorKeyInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__KeyInfoType(soap, "xenc:OriginatorKeyInfo", &a->OriginatorKeyInfo, "ds:KeyInfoType")) - { soap_flag_OriginatorKeyInfo--; - continue; - } - } - if (soap_flag_RecipientKeyInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__KeyInfoType(soap, "xenc:RecipientKeyInfo", &a->RecipientKeyInfo, "ds:KeyInfoType")) - { soap_flag_RecipientKeyInfo--; - continue; - } - } - if (soap_flag___mixed && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "-mixed", (char**)&a->__mixed)) - { soap_flag___mixed--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct xenc__AgreementMethodType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__AgreementMethodType, SOAP_TYPE_xenc__AgreementMethodType, sizeof(struct xenc__AgreementMethodType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__AgreementMethodType * SOAP_FMAC2 soap_instantiate_xenc__AgreementMethodType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__AgreementMethodType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__AgreementMethodType *p; - size_t k = sizeof(struct xenc__AgreementMethodType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__AgreementMethodType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__AgreementMethodType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__AgreementMethodType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__AgreementMethodType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__AgreementMethodType(struct soap *soap, const struct xenc__AgreementMethodType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__AgreementMethodType(soap, tag ? tag : "xenc:AgreementMethodType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__AgreementMethodType * SOAP_FMAC4 soap_get_xenc__AgreementMethodType(struct soap *soap, struct xenc__AgreementMethodType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__AgreementMethodType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptedDataType(struct soap *soap, struct xenc__EncryptedDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->EncryptionMethod = NULL; - a->ds__KeyInfo = NULL; - a->CipherData = NULL; - a->EncryptionProperties = NULL; - soap_default_string(soap, &a->Id); - soap_default_string(soap, &a->Type); - soap_default_string(soap, &a->MimeType); - soap_default_string(soap, &a->Encoding); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptedDataType(struct soap *soap, const struct xenc__EncryptedDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxenc__EncryptionMethodType(soap, &a->EncryptionMethod); - soap_serialize_PointerTo_ds__KeyInfo(soap, &a->ds__KeyInfo); - soap_serialize_PointerToxenc__CipherDataType(soap, &a->CipherData); - soap_serialize_PointerToxenc__EncryptionPropertiesType(soap, &a->EncryptionProperties); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptedDataType(struct soap *soap, const char *tag, int id, const struct xenc__EncryptedDataType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - if (a->Type) - soap_set_attr(soap, "Type", soap_string2s(soap, a->Type), 1); - if (a->MimeType) - soap_set_attr(soap, "MimeType", soap_string2s(soap, a->MimeType), 1); - if (a->Encoding) - soap_set_attr(soap, "Encoding", soap_string2s(soap, a->Encoding), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__EncryptedDataType), type)) - return soap->error; - if (soap_out_PointerToxenc__EncryptionMethodType(soap, "xenc:EncryptionMethod", -1, &a->EncryptionMethod, "")) - return soap->error; - if (soap_out_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", -1, &a->ds__KeyInfo, "")) - return soap->error; - if (!a->CipherData) - { if (soap_element_empty(soap, "xenc:CipherData", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerToxenc__CipherDataType(soap, "xenc:CipherData", -1, &a->CipherData, "")) - return soap->error; - if (soap_out_PointerToxenc__EncryptionPropertiesType(soap, "xenc:EncryptionProperties", -1, &a->EncryptionProperties, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__EncryptedDataType * SOAP_FMAC4 soap_in_xenc__EncryptedDataType(struct soap *soap, const char *tag, struct xenc__EncryptedDataType *a, const char *type) -{ - size_t soap_flag_EncryptionMethod = 1; - size_t soap_flag_ds__KeyInfo = 1; - size_t soap_flag_CipherData = 1; - size_t soap_flag_EncryptionProperties = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__EncryptedDataType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__EncryptedDataType, sizeof(struct xenc__EncryptedDataType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__EncryptedDataType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Type", 1, 0), &a->Type)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "MimeType", 1, 0), &a->MimeType)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Encoding", 1, 0), &a->Encoding)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_EncryptionMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptionMethodType(soap, "xenc:EncryptionMethod", &a->EncryptionMethod, "xenc:EncryptionMethodType")) - { soap_flag_EncryptionMethod--; - continue; - } - } - if (soap_flag_ds__KeyInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", &a->ds__KeyInfo, "")) - { soap_flag_ds__KeyInfo--; - continue; - } - } - if (soap_flag_CipherData && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__CipherDataType(soap, "xenc:CipherData", &a->CipherData, "xenc:CipherDataType")) - { soap_flag_CipherData--; - continue; - } - } - if (soap_flag_EncryptionProperties && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptionPropertiesType(soap, "xenc:EncryptionProperties", &a->EncryptionProperties, "xenc:EncryptionPropertiesType")) - { soap_flag_EncryptionProperties--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->CipherData)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct xenc__EncryptedDataType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__EncryptedDataType, SOAP_TYPE_xenc__EncryptedDataType, sizeof(struct xenc__EncryptedDataType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__EncryptedDataType * SOAP_FMAC2 soap_instantiate_xenc__EncryptedDataType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__EncryptedDataType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__EncryptedDataType *p; - size_t k = sizeof(struct xenc__EncryptedDataType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__EncryptedDataType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__EncryptedDataType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__EncryptedDataType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__EncryptedDataType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptedDataType(struct soap *soap, const struct xenc__EncryptedDataType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__EncryptedDataType(soap, tag ? tag : "xenc:EncryptedDataType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__EncryptedDataType * SOAP_FMAC4 soap_get_xenc__EncryptedDataType(struct soap *soap, struct xenc__EncryptedDataType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__EncryptedDataType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__TransformsType(struct soap *soap, struct xenc__TransformsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__ds__Transform(soap, &a->ds__Transform); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__TransformsType(struct soap *soap, const struct xenc__TransformsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__ds__Transform(soap, &a->ds__Transform); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__TransformsType(struct soap *soap, const char *tag, int id, const struct xenc__TransformsType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__TransformsType), type)) - return soap->error; - if (soap_out__ds__Transform(soap, "ds:Transform", -1, &a->ds__Transform, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__TransformsType * SOAP_FMAC4 soap_in_xenc__TransformsType(struct soap *soap, const char *tag, struct xenc__TransformsType *a, const char *type) -{ - size_t soap_flag_ds__Transform = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__TransformsType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__TransformsType, sizeof(struct xenc__TransformsType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__TransformsType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ds__Transform && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__ds__Transform(soap, "ds:Transform", &a->ds__Transform, "")) - { soap_flag_ds__Transform--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_ds__Transform > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct xenc__TransformsType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__TransformsType, SOAP_TYPE_xenc__TransformsType, sizeof(struct xenc__TransformsType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__TransformsType * SOAP_FMAC2 soap_instantiate_xenc__TransformsType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__TransformsType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__TransformsType *p; - size_t k = sizeof(struct xenc__TransformsType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__TransformsType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__TransformsType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__TransformsType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__TransformsType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__TransformsType(struct soap *soap, const struct xenc__TransformsType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__TransformsType(soap, tag ? tag : "xenc:TransformsType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__TransformsType * SOAP_FMAC4 soap_get_xenc__TransformsType(struct soap *soap, struct xenc__TransformsType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__TransformsType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__CipherReferenceType(struct soap *soap, struct xenc__CipherReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->Transforms = NULL; - soap_default_string(soap, &a->URI); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__CipherReferenceType(struct soap *soap, const struct xenc__CipherReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxenc__TransformsType(soap, &a->Transforms); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__CipherReferenceType(struct soap *soap, const char *tag, int id, const struct xenc__CipherReferenceType *a, const char *type) -{ - soap_set_attr(soap, "URI", a->URI ? soap_string2s(soap, a->URI) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__CipherReferenceType), type)) - return soap->error; - if (soap_out_PointerToxenc__TransformsType(soap, "xenc:Transforms", -1, &a->Transforms, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__CipherReferenceType * SOAP_FMAC4 soap_in_xenc__CipherReferenceType(struct soap *soap, const char *tag, struct xenc__CipherReferenceType *a, const char *type) -{ - size_t soap_flag_Transforms = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__CipherReferenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__CipherReferenceType, sizeof(struct xenc__CipherReferenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__CipherReferenceType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "URI", 1, 1), &a->URI)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Transforms && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__TransformsType(soap, "xenc:Transforms", &a->Transforms, "xenc:TransformsType")) - { soap_flag_Transforms--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct xenc__CipherReferenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__CipherReferenceType, SOAP_TYPE_xenc__CipherReferenceType, sizeof(struct xenc__CipherReferenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__CipherReferenceType * SOAP_FMAC2 soap_instantiate_xenc__CipherReferenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__CipherReferenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__CipherReferenceType *p; - size_t k = sizeof(struct xenc__CipherReferenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__CipherReferenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__CipherReferenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__CipherReferenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__CipherReferenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__CipherReferenceType(struct soap *soap, const struct xenc__CipherReferenceType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__CipherReferenceType(soap, tag ? tag : "xenc:CipherReferenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__CipherReferenceType * SOAP_FMAC4 soap_get_xenc__CipherReferenceType(struct soap *soap, struct xenc__CipherReferenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__CipherReferenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__CipherDataType(struct soap *soap, struct xenc__CipherDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->CipherValue); - a->CipherReference = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__CipherDataType(struct soap *soap, const struct xenc__CipherDataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->CipherValue); - soap_serialize_PointerToxenc__CipherReferenceType(soap, &a->CipherReference); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__CipherDataType(struct soap *soap, const char *tag, int id, const struct xenc__CipherDataType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__CipherDataType), type)) - return soap->error; - if (soap_out_string(soap, "xenc:CipherValue", -1, (char*const*)&a->CipherValue, "")) - return soap->error; - if (soap_out_PointerToxenc__CipherReferenceType(soap, "xenc:CipherReference", -1, &a->CipherReference, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__CipherDataType * SOAP_FMAC4 soap_in_xenc__CipherDataType(struct soap *soap, const char *tag, struct xenc__CipherDataType *a, const char *type) -{ - size_t soap_flag_CipherValue = 1; - size_t soap_flag_CipherReference = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__CipherDataType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__CipherDataType, sizeof(struct xenc__CipherDataType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__CipherDataType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CipherValue && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "xenc:CipherValue", (char**)&a->CipherValue, "xsd:string")) - { soap_flag_CipherValue--; - continue; - } - } - if (soap_flag_CipherReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__CipherReferenceType(soap, "xenc:CipherReference", &a->CipherReference, "xenc:CipherReferenceType")) - { soap_flag_CipherReference--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct xenc__CipherDataType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__CipherDataType, SOAP_TYPE_xenc__CipherDataType, sizeof(struct xenc__CipherDataType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__CipherDataType * SOAP_FMAC2 soap_instantiate_xenc__CipherDataType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__CipherDataType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__CipherDataType *p; - size_t k = sizeof(struct xenc__CipherDataType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__CipherDataType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__CipherDataType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__CipherDataType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__CipherDataType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__CipherDataType(struct soap *soap, const struct xenc__CipherDataType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__CipherDataType(soap, tag ? tag : "xenc:CipherDataType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__CipherDataType * SOAP_FMAC4 soap_get_xenc__CipherDataType(struct soap *soap, struct xenc__CipherDataType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__CipherDataType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptionMethodType(struct soap *soap, struct xenc__EncryptionMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->KeySize = NULL; - soap_default_string(soap, &a->OAEPparams); - soap_default_string(soap, &a->Algorithm); - a->ds__DigestMethod = NULL; - a->__mixed = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptionMethodType(struct soap *soap, const struct xenc__EncryptionMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &a->KeySize); - soap_serialize_string(soap, (char*const*)&a->OAEPparams); - soap_serialize_PointerTods__DigestMethodType(soap, &a->ds__DigestMethod); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptionMethodType(struct soap *soap, const char *tag, int id, const struct xenc__EncryptionMethodType *a, const char *type) -{ - soap_set_attr(soap, "Algorithm", a->Algorithm ? soap_string2s(soap, a->Algorithm) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__EncryptionMethodType), type)) - return soap->error; - if (soap_out_PointerToint(soap, "xenc:KeySize", -1, &a->KeySize, "")) - return soap->error; - if (soap_out_string(soap, "xenc:OAEPparams", -1, (char*const*)&a->OAEPparams, "")) - return soap->error; - if (soap_out_PointerTods__DigestMethodType(soap, "ds:DigestMethod", -1, &a->ds__DigestMethod, "")) - return soap->error; - if (soap_outliteral(soap, "-mixed", (char*const*)&a->__mixed, NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__EncryptionMethodType * SOAP_FMAC4 soap_in_xenc__EncryptionMethodType(struct soap *soap, const char *tag, struct xenc__EncryptionMethodType *a, const char *type) -{ - size_t soap_flag_KeySize = 1; - size_t soap_flag_OAEPparams = 1; - size_t soap_flag_ds__DigestMethod = 1; - size_t soap_flag___mixed = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__EncryptionMethodType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__EncryptionMethodType, sizeof(struct xenc__EncryptionMethodType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__EncryptionMethodType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Algorithm", 1, 1), &a->Algorithm)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_KeySize && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "xenc:KeySize", &a->KeySize, "xsd:int")) - { soap_flag_KeySize--; - continue; - } - } - if (soap_flag_OAEPparams && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "xenc:OAEPparams", (char**)&a->OAEPparams, "xsd:string")) - { soap_flag_OAEPparams--; - continue; - } - } - if (soap_flag_ds__DigestMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__DigestMethodType(soap, "ds:DigestMethod", &a->ds__DigestMethod, "ds:DigestMethodType")) - { soap_flag_ds__DigestMethod--; - continue; - } - } - if (soap_flag___mixed && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "-mixed", (char**)&a->__mixed)) - { soap_flag___mixed--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct xenc__EncryptionMethodType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__EncryptionMethodType, SOAP_TYPE_xenc__EncryptionMethodType, sizeof(struct xenc__EncryptionMethodType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__EncryptionMethodType * SOAP_FMAC2 soap_instantiate_xenc__EncryptionMethodType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__EncryptionMethodType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__EncryptionMethodType *p; - size_t k = sizeof(struct xenc__EncryptionMethodType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__EncryptionMethodType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__EncryptionMethodType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__EncryptionMethodType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__EncryptionMethodType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptionMethodType(struct soap *soap, const struct xenc__EncryptionMethodType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__EncryptionMethodType(soap, tag ? tag : "xenc:EncryptionMethodType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__EncryptionMethodType * SOAP_FMAC4 soap_get_xenc__EncryptionMethodType(struct soap *soap, struct xenc__EncryptionMethodType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__EncryptionMethodType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptedType(struct soap *soap, struct xenc__EncryptedType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->EncryptionMethod = NULL; - a->ds__KeyInfo = NULL; - a->CipherData = NULL; - a->EncryptionProperties = NULL; - soap_default_string(soap, &a->Id); - soap_default_string(soap, &a->Type); - soap_default_string(soap, &a->MimeType); - soap_default_string(soap, &a->Encoding); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptedType(struct soap *soap, const struct xenc__EncryptedType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxenc__EncryptionMethodType(soap, &a->EncryptionMethod); - soap_serialize_PointerTo_ds__KeyInfo(soap, &a->ds__KeyInfo); - soap_serialize_PointerToxenc__CipherDataType(soap, &a->CipherData); - soap_serialize_PointerToxenc__EncryptionPropertiesType(soap, &a->EncryptionProperties); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptedType(struct soap *soap, const char *tag, int id, const struct xenc__EncryptedType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - if (a->Type) - soap_set_attr(soap, "Type", soap_string2s(soap, a->Type), 1); - if (a->MimeType) - soap_set_attr(soap, "MimeType", soap_string2s(soap, a->MimeType), 1); - if (a->Encoding) - soap_set_attr(soap, "Encoding", soap_string2s(soap, a->Encoding), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__EncryptedType), type)) - return soap->error; - if (soap_out_PointerToxenc__EncryptionMethodType(soap, "xenc:EncryptionMethod", -1, &a->EncryptionMethod, "")) - return soap->error; - if (soap_out_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", -1, &a->ds__KeyInfo, "")) - return soap->error; - if (!a->CipherData) - { if (soap_element_empty(soap, "xenc:CipherData", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerToxenc__CipherDataType(soap, "xenc:CipherData", -1, &a->CipherData, "")) - return soap->error; - if (soap_out_PointerToxenc__EncryptionPropertiesType(soap, "xenc:EncryptionProperties", -1, &a->EncryptionProperties, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__EncryptedType * SOAP_FMAC4 soap_in_xenc__EncryptedType(struct soap *soap, const char *tag, struct xenc__EncryptedType *a, const char *type) -{ - size_t soap_flag_EncryptionMethod = 1; - size_t soap_flag_ds__KeyInfo = 1; - size_t soap_flag_CipherData = 1; - size_t soap_flag_EncryptionProperties = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__EncryptedType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__EncryptedType, sizeof(struct xenc__EncryptedType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__EncryptedType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Type", 1, 0), &a->Type)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "MimeType", 1, 0), &a->MimeType)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Encoding", 1, 0), &a->Encoding)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_EncryptionMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptionMethodType(soap, "xenc:EncryptionMethod", &a->EncryptionMethod, "xenc:EncryptionMethodType")) - { soap_flag_EncryptionMethod--; - continue; - } - } - if (soap_flag_ds__KeyInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", &a->ds__KeyInfo, "")) - { soap_flag_ds__KeyInfo--; - continue; - } - } - if (soap_flag_CipherData && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__CipherDataType(soap, "xenc:CipherData", &a->CipherData, "xenc:CipherDataType")) - { soap_flag_CipherData--; - continue; - } - } - if (soap_flag_EncryptionProperties && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptionPropertiesType(soap, "xenc:EncryptionProperties", &a->EncryptionProperties, "xenc:EncryptionPropertiesType")) - { soap_flag_EncryptionProperties--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->CipherData)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct xenc__EncryptedType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__EncryptedType, SOAP_TYPE_xenc__EncryptedType, sizeof(struct xenc__EncryptedType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__EncryptedType * SOAP_FMAC2 soap_instantiate_xenc__EncryptedType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__EncryptedType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__EncryptedType *p; - size_t k = sizeof(struct xenc__EncryptedType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__EncryptedType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__EncryptedType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__EncryptedType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__EncryptedType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptedType(struct soap *soap, const struct xenc__EncryptedType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__EncryptedType(soap, tag ? tag : "xenc:EncryptedType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__EncryptedType * SOAP_FMAC4 soap_get_xenc__EncryptedType(struct soap *soap, struct xenc__EncryptedType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__EncryptedType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__RSAKeyValueType(struct soap *soap, struct ds__RSAKeyValueType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Modulus); - soap_default_string(soap, &a->Exponent); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__RSAKeyValueType(struct soap *soap, const struct ds__RSAKeyValueType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->Modulus); - soap_serialize_string(soap, (char*const*)&a->Exponent); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__RSAKeyValueType(struct soap *soap, const char *tag, int id, const struct ds__RSAKeyValueType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__RSAKeyValueType), type)) - return soap->error; - if (!a->Modulus) - { if (soap_element_empty(soap, "ds:Modulus", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:Modulus", -1, (char*const*)&a->Modulus, "")) - return soap->error; - if (!a->Exponent) - { if (soap_element_empty(soap, "ds:Exponent", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:Exponent", -1, (char*const*)&a->Exponent, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__RSAKeyValueType * SOAP_FMAC4 soap_in_ds__RSAKeyValueType(struct soap *soap, const char *tag, struct ds__RSAKeyValueType *a, const char *type) -{ - size_t soap_flag_Modulus = 1; - size_t soap_flag_Exponent = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__RSAKeyValueType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__RSAKeyValueType, sizeof(struct ds__RSAKeyValueType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__RSAKeyValueType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Modulus && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:Modulus", (char**)&a->Modulus, "xsd:string")) - { soap_flag_Modulus--; - continue; - } - } - if (soap_flag_Exponent && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:Exponent", (char**)&a->Exponent, "xsd:string")) - { soap_flag_Exponent--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->Modulus || !a->Exponent)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct ds__RSAKeyValueType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__RSAKeyValueType, SOAP_TYPE_ds__RSAKeyValueType, sizeof(struct ds__RSAKeyValueType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__RSAKeyValueType * SOAP_FMAC2 soap_instantiate_ds__RSAKeyValueType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__RSAKeyValueType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__RSAKeyValueType *p; - size_t k = sizeof(struct ds__RSAKeyValueType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__RSAKeyValueType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__RSAKeyValueType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__RSAKeyValueType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__RSAKeyValueType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__RSAKeyValueType(struct soap *soap, const struct ds__RSAKeyValueType *a, const char *tag, const char *type) -{ - if (soap_out_ds__RSAKeyValueType(soap, tag ? tag : "ds:RSAKeyValueType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__RSAKeyValueType * SOAP_FMAC4 soap_get_ds__RSAKeyValueType(struct soap *soap, struct ds__RSAKeyValueType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__RSAKeyValueType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__DSAKeyValueType(struct soap *soap, struct ds__DSAKeyValueType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->G); - soap_default_string(soap, &a->Y); - soap_default_string(soap, &a->J); - soap_default_string(soap, &a->P); - soap_default_string(soap, &a->Q); - soap_default_string(soap, &a->Seed); - soap_default_string(soap, &a->PgenCounter); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__DSAKeyValueType(struct soap *soap, const struct ds__DSAKeyValueType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->G); - soap_serialize_string(soap, (char*const*)&a->Y); - soap_serialize_string(soap, (char*const*)&a->J); - soap_serialize_string(soap, (char*const*)&a->P); - soap_serialize_string(soap, (char*const*)&a->Q); - soap_serialize_string(soap, (char*const*)&a->Seed); - soap_serialize_string(soap, (char*const*)&a->PgenCounter); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__DSAKeyValueType(struct soap *soap, const char *tag, int id, const struct ds__DSAKeyValueType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__DSAKeyValueType), type)) - return soap->error; - if (soap_out_string(soap, "ds:G", -1, (char*const*)&a->G, "")) - return soap->error; - if (!a->Y) - { if (soap_element_empty(soap, "ds:Y", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:Y", -1, (char*const*)&a->Y, "")) - return soap->error; - if (soap_out_string(soap, "ds:J", -1, (char*const*)&a->J, "")) - return soap->error; - if (!a->P) - { if (soap_element_empty(soap, "ds:P", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:P", -1, (char*const*)&a->P, "")) - return soap->error; - if (!a->Q) - { if (soap_element_empty(soap, "ds:Q", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:Q", -1, (char*const*)&a->Q, "")) - return soap->error; - if (!a->Seed) - { if (soap_element_empty(soap, "ds:Seed", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:Seed", -1, (char*const*)&a->Seed, "")) - return soap->error; - if (!a->PgenCounter) - { if (soap_element_empty(soap, "ds:PgenCounter", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:PgenCounter", -1, (char*const*)&a->PgenCounter, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__DSAKeyValueType * SOAP_FMAC4 soap_in_ds__DSAKeyValueType(struct soap *soap, const char *tag, struct ds__DSAKeyValueType *a, const char *type) -{ - size_t soap_flag_G = 1; - size_t soap_flag_Y = 1; - size_t soap_flag_J = 1; - size_t soap_flag_P = 1; - size_t soap_flag_Q = 1; - size_t soap_flag_Seed = 1; - size_t soap_flag_PgenCounter = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__DSAKeyValueType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__DSAKeyValueType, sizeof(struct ds__DSAKeyValueType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__DSAKeyValueType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_G && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:G", (char**)&a->G, "xsd:string")) - { soap_flag_G--; - continue; - } - } - if (soap_flag_Y && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:Y", (char**)&a->Y, "xsd:string")) - { soap_flag_Y--; - continue; - } - } - if (soap_flag_J && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:J", (char**)&a->J, "xsd:string")) - { soap_flag_J--; - continue; - } - } - if (soap_flag_P && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:P", (char**)&a->P, "xsd:string")) - { soap_flag_P--; - continue; - } - } - if (soap_flag_Q && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:Q", (char**)&a->Q, "xsd:string")) - { soap_flag_Q--; - continue; - } - } - if (soap_flag_Seed && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:Seed", (char**)&a->Seed, "xsd:string")) - { soap_flag_Seed--; - continue; - } - } - if (soap_flag_PgenCounter && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:PgenCounter", (char**)&a->PgenCounter, "xsd:string")) - { soap_flag_PgenCounter--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->Y || !a->P || !a->Q || !a->Seed || !a->PgenCounter)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct ds__DSAKeyValueType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__DSAKeyValueType, SOAP_TYPE_ds__DSAKeyValueType, sizeof(struct ds__DSAKeyValueType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__DSAKeyValueType * SOAP_FMAC2 soap_instantiate_ds__DSAKeyValueType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__DSAKeyValueType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__DSAKeyValueType *p; - size_t k = sizeof(struct ds__DSAKeyValueType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__DSAKeyValueType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__DSAKeyValueType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__DSAKeyValueType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__DSAKeyValueType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__DSAKeyValueType(struct soap *soap, const struct ds__DSAKeyValueType *a, const char *tag, const char *type) -{ - if (soap_out_ds__DSAKeyValueType(soap, tag ? tag : "ds:DSAKeyValueType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__DSAKeyValueType * SOAP_FMAC4 soap_get_ds__DSAKeyValueType(struct soap *soap, struct ds__DSAKeyValueType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__DSAKeyValueType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__X509IssuerSerialType(struct soap *soap, struct ds__X509IssuerSerialType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->X509IssuerName); - soap_default_string(soap, &a->X509SerialNumber); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__X509IssuerSerialType(struct soap *soap, const struct ds__X509IssuerSerialType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->X509IssuerName); - soap_serialize_string(soap, (char*const*)&a->X509SerialNumber); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__X509IssuerSerialType(struct soap *soap, const char *tag, int id, const struct ds__X509IssuerSerialType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__X509IssuerSerialType), type)) - return soap->error; - if (!a->X509IssuerName) - { if (soap_element_empty(soap, "ds:X509IssuerName", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:X509IssuerName", -1, (char*const*)&a->X509IssuerName, "")) - return soap->error; - if (!a->X509SerialNumber) - { if (soap_element_empty(soap, "ds:X509SerialNumber", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:X509SerialNumber", -1, (char*const*)&a->X509SerialNumber, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__X509IssuerSerialType * SOAP_FMAC4 soap_in_ds__X509IssuerSerialType(struct soap *soap, const char *tag, struct ds__X509IssuerSerialType *a, const char *type) -{ - size_t soap_flag_X509IssuerName = 1; - size_t soap_flag_X509SerialNumber = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__X509IssuerSerialType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__X509IssuerSerialType, sizeof(struct ds__X509IssuerSerialType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__X509IssuerSerialType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_X509IssuerName && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:X509IssuerName", (char**)&a->X509IssuerName, "xsd:string")) - { soap_flag_X509IssuerName--; - continue; - } - } - if (soap_flag_X509SerialNumber && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:X509SerialNumber", (char**)&a->X509SerialNumber, "xsd:string")) - { soap_flag_X509SerialNumber--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->X509IssuerName || !a->X509SerialNumber)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct ds__X509IssuerSerialType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__X509IssuerSerialType, SOAP_TYPE_ds__X509IssuerSerialType, sizeof(struct ds__X509IssuerSerialType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__X509IssuerSerialType * SOAP_FMAC2 soap_instantiate_ds__X509IssuerSerialType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__X509IssuerSerialType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__X509IssuerSerialType *p; - size_t k = sizeof(struct ds__X509IssuerSerialType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__X509IssuerSerialType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__X509IssuerSerialType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__X509IssuerSerialType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__X509IssuerSerialType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__X509IssuerSerialType(struct soap *soap, const struct ds__X509IssuerSerialType *a, const char *tag, const char *type) -{ - if (soap_out_ds__X509IssuerSerialType(soap, tag ? tag : "ds:X509IssuerSerialType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__X509IssuerSerialType * SOAP_FMAC4 soap_get_ds__X509IssuerSerialType(struct soap *soap, struct ds__X509IssuerSerialType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__X509IssuerSerialType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__ds__KeyInfo(struct soap *soap, const struct ds__KeyInfoType *a, const char *tag, const char *type) -{ - if (soap_out__ds__KeyInfo(soap, tag ? tag : "ds:KeyInfo", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__RetrievalMethodType(struct soap *soap, struct ds__RetrievalMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->Transforms = NULL; - soap_default_string(soap, &a->URI); - soap_default_string(soap, &a->Type); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__RetrievalMethodType(struct soap *soap, const struct ds__RetrievalMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTods__TransformsType(soap, &a->Transforms); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__RetrievalMethodType(struct soap *soap, const char *tag, int id, const struct ds__RetrievalMethodType *a, const char *type) -{ - if (a->URI) - soap_set_attr(soap, "URI", soap_string2s(soap, a->URI), 1); - if (a->Type) - soap_set_attr(soap, "Type", soap_string2s(soap, a->Type), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__RetrievalMethodType), type)) - return soap->error; - if (soap_out_PointerTods__TransformsType(soap, "ds:Transforms", -1, &a->Transforms, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__RetrievalMethodType * SOAP_FMAC4 soap_in_ds__RetrievalMethodType(struct soap *soap, const char *tag, struct ds__RetrievalMethodType *a, const char *type) -{ - size_t soap_flag_Transforms = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__RetrievalMethodType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__RetrievalMethodType, sizeof(struct ds__RetrievalMethodType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__RetrievalMethodType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "URI", 1, 0), &a->URI)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Type", 1, 0), &a->Type)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Transforms && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__TransformsType(soap, "ds:Transforms", &a->Transforms, "ds:TransformsType")) - { soap_flag_Transforms--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__RetrievalMethodType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__RetrievalMethodType, SOAP_TYPE_ds__RetrievalMethodType, sizeof(struct ds__RetrievalMethodType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__RetrievalMethodType * SOAP_FMAC2 soap_instantiate_ds__RetrievalMethodType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__RetrievalMethodType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__RetrievalMethodType *p; - size_t k = sizeof(struct ds__RetrievalMethodType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__RetrievalMethodType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__RetrievalMethodType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__RetrievalMethodType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__RetrievalMethodType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__RetrievalMethodType(struct soap *soap, const struct ds__RetrievalMethodType *a, const char *tag, const char *type) -{ - if (soap_out_ds__RetrievalMethodType(soap, tag ? tag : "ds:RetrievalMethodType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__RetrievalMethodType * SOAP_FMAC4 soap_get_ds__RetrievalMethodType(struct soap *soap, struct ds__RetrievalMethodType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__RetrievalMethodType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__KeyValueType(struct soap *soap, struct ds__KeyValueType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->DSAKeyValue = NULL; - a->RSAKeyValue = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__KeyValueType(struct soap *soap, const struct ds__KeyValueType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTods__DSAKeyValueType(soap, &a->DSAKeyValue); - soap_serialize_PointerTods__RSAKeyValueType(soap, &a->RSAKeyValue); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__KeyValueType(struct soap *soap, const char *tag, int id, const struct ds__KeyValueType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__KeyValueType), type)) - return soap->error; - if (soap_out_PointerTods__DSAKeyValueType(soap, "ds:DSAKeyValue", -1, &a->DSAKeyValue, "")) - return soap->error; - if (soap_out_PointerTods__RSAKeyValueType(soap, "ds:RSAKeyValue", -1, &a->RSAKeyValue, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__KeyValueType * SOAP_FMAC4 soap_in_ds__KeyValueType(struct soap *soap, const char *tag, struct ds__KeyValueType *a, const char *type) -{ - size_t soap_flag_DSAKeyValue = 1; - size_t soap_flag_RSAKeyValue = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__KeyValueType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__KeyValueType, sizeof(struct ds__KeyValueType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__KeyValueType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_DSAKeyValue && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__DSAKeyValueType(soap, "ds:DSAKeyValue", &a->DSAKeyValue, "ds:DSAKeyValueType")) - { soap_flag_DSAKeyValue--; - continue; - } - } - if (soap_flag_RSAKeyValue && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__RSAKeyValueType(soap, "ds:RSAKeyValue", &a->RSAKeyValue, "ds:RSAKeyValueType")) - { soap_flag_RSAKeyValue--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__KeyValueType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__KeyValueType, SOAP_TYPE_ds__KeyValueType, sizeof(struct ds__KeyValueType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__KeyValueType * SOAP_FMAC2 soap_instantiate_ds__KeyValueType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__KeyValueType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__KeyValueType *p; - size_t k = sizeof(struct ds__KeyValueType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__KeyValueType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__KeyValueType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__KeyValueType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__KeyValueType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__KeyValueType(struct soap *soap, const struct ds__KeyValueType *a, const char *tag, const char *type) -{ - if (soap_out_ds__KeyValueType(soap, tag ? tag : "ds:KeyValueType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__KeyValueType * SOAP_FMAC4 soap_get_ds__KeyValueType(struct soap *soap, struct ds__KeyValueType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__KeyValueType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__DigestMethodType(struct soap *soap, struct ds__DigestMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Algorithm); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__DigestMethodType(struct soap *soap, const struct ds__DigestMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__DigestMethodType(struct soap *soap, const char *tag, int id, const struct ds__DigestMethodType *a, const char *type) -{ - soap_set_attr(soap, "Algorithm", a->Algorithm ? soap_string2s(soap, a->Algorithm) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__DigestMethodType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__DigestMethodType * SOAP_FMAC4 soap_in_ds__DigestMethodType(struct soap *soap, const char *tag, struct ds__DigestMethodType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__DigestMethodType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__DigestMethodType, sizeof(struct ds__DigestMethodType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__DigestMethodType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Algorithm", 1, 1), &a->Algorithm)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__DigestMethodType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__DigestMethodType, SOAP_TYPE_ds__DigestMethodType, sizeof(struct ds__DigestMethodType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__DigestMethodType * SOAP_FMAC2 soap_instantiate_ds__DigestMethodType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__DigestMethodType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__DigestMethodType *p; - size_t k = sizeof(struct ds__DigestMethodType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__DigestMethodType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__DigestMethodType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__DigestMethodType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__DigestMethodType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__DigestMethodType(struct soap *soap, const struct ds__DigestMethodType *a, const char *tag, const char *type) -{ - if (soap_out_ds__DigestMethodType(soap, tag ? tag : "ds:DigestMethodType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__DigestMethodType * SOAP_FMAC4 soap_get_ds__DigestMethodType(struct soap *soap, struct ds__DigestMethodType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__DigestMethodType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__ds__Transform(struct soap *soap, const struct ds__TransformType *a, const char *tag, const char *type) -{ - if (soap_out__ds__Transform(soap, tag ? tag : "ds:Transform", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__TransformType(struct soap *soap, struct ds__TransformType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->c14n__InclusiveNamespaces = NULL; - a->__any = NULL; - soap_default_string(soap, &a->Algorithm); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__TransformType(struct soap *soap, const struct ds__TransformType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_c14n__InclusiveNamespaces(soap, &a->c14n__InclusiveNamespaces); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__TransformType(struct soap *soap, const char *tag, int id, const struct ds__TransformType *a, const char *type) -{ - if (a->Algorithm) - soap_set_attr(soap, "Algorithm", soap_string2s(soap, a->Algorithm), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__TransformType), type)) - return soap->error; - if (soap_out_PointerTo_c14n__InclusiveNamespaces(soap, "c14n:InclusiveNamespaces", -1, &a->c14n__InclusiveNamespaces, "")) - return soap->error; - if (soap_outliteral(soap, "-any", (char*const*)&a->__any, NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__TransformType * SOAP_FMAC4 soap_in_ds__TransformType(struct soap *soap, const char *tag, struct ds__TransformType *a, const char *type) -{ - size_t soap_flag_c14n__InclusiveNamespaces = 1; - size_t soap_flag___any = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__TransformType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__TransformType, sizeof(struct ds__TransformType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__TransformType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Algorithm", 1, 0), &a->Algorithm)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_c14n__InclusiveNamespaces && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_c14n__InclusiveNamespaces(soap, "c14n:InclusiveNamespaces", &a->c14n__InclusiveNamespaces, "")) - { soap_flag_c14n__InclusiveNamespaces--; - continue; - } - } - if (soap_flag___any && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "-any", (char**)&a->__any)) - { soap_flag___any--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__TransformType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__TransformType, SOAP_TYPE_ds__TransformType, sizeof(struct ds__TransformType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__TransformType * SOAP_FMAC2 soap_instantiate_ds__TransformType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__TransformType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__TransformType *p; - size_t k = sizeof(struct ds__TransformType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__TransformType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__TransformType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__TransformType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__TransformType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__TransformType(struct soap *soap, const struct ds__TransformType *a, const char *tag, const char *type) -{ - if (soap_out_ds__TransformType(soap, tag ? tag : "ds:TransformType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__TransformType * SOAP_FMAC4 soap_get_ds__TransformType(struct soap *soap, struct ds__TransformType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__TransformType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__c14n__InclusiveNamespaces(struct soap *soap, struct _c14n__InclusiveNamespaces *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->PrefixList); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__c14n__InclusiveNamespaces(struct soap *soap, const struct _c14n__InclusiveNamespaces *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__c14n__InclusiveNamespaces(struct soap *soap, const char *tag, int id, const struct _c14n__InclusiveNamespaces *a, const char *type) -{ - if (a->PrefixList) - soap_set_attr(soap, "PrefixList", soap_string2s(soap, a->PrefixList), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__c14n__InclusiveNamespaces), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _c14n__InclusiveNamespaces * SOAP_FMAC4 soap_in__c14n__InclusiveNamespaces(struct soap *soap, const char *tag, struct _c14n__InclusiveNamespaces *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _c14n__InclusiveNamespaces*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__c14n__InclusiveNamespaces, sizeof(struct _c14n__InclusiveNamespaces), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__c14n__InclusiveNamespaces(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "PrefixList", 1, 0), &a->PrefixList)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct _c14n__InclusiveNamespaces *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__c14n__InclusiveNamespaces, SOAP_TYPE__c14n__InclusiveNamespaces, sizeof(struct _c14n__InclusiveNamespaces), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _c14n__InclusiveNamespaces * SOAP_FMAC2 soap_instantiate__c14n__InclusiveNamespaces(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__c14n__InclusiveNamespaces(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _c14n__InclusiveNamespaces *p; - size_t k = sizeof(struct _c14n__InclusiveNamespaces); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__c14n__InclusiveNamespaces, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _c14n__InclusiveNamespaces); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _c14n__InclusiveNamespaces, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _c14n__InclusiveNamespaces location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__c14n__InclusiveNamespaces(struct soap *soap, const struct _c14n__InclusiveNamespaces *a, const char *tag, const char *type) -{ - if (soap_out__c14n__InclusiveNamespaces(soap, tag ? tag : "c14n:InclusiveNamespaces", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _c14n__InclusiveNamespaces * SOAP_FMAC4 soap_get__c14n__InclusiveNamespaces(struct soap *soap, struct _c14n__InclusiveNamespaces *p, const char *tag, const char *type) -{ - if ((p = soap_in__c14n__InclusiveNamespaces(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__TransformsType(struct soap *soap, struct ds__TransformsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeTransform = 0; - a->Transform = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__TransformsType(struct soap *soap, const struct ds__TransformsType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->Transform) - { int i; - for (i = 0; i < (int)a->__sizeTransform; i++) - { - soap_embedded(soap, a->Transform + i, SOAP_TYPE_ds__TransformType); - soap_serialize_ds__TransformType(soap, a->Transform + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__TransformsType(struct soap *soap, const char *tag, int id, const struct ds__TransformsType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__TransformsType), type)) - return soap->error; - if (a->Transform) - { int i; - for (i = 0; i < (int)a->__sizeTransform; i++) - if (soap_out_ds__TransformType(soap, "ds:Transform", -1, a->Transform + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__TransformsType * SOAP_FMAC4 soap_in_ds__TransformsType(struct soap *soap, const char *tag, struct ds__TransformsType *a, const char *type) -{ - struct soap_blist *soap_blist_Transform = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__TransformsType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__TransformsType, sizeof(struct ds__TransformsType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__TransformsType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "ds:Transform", 1, NULL)) - { if (a->Transform == NULL) - { if (soap_blist_Transform == NULL) - soap_blist_Transform = soap_alloc_block(soap); - a->Transform = soap_block::push(soap, soap_blist_Transform); - if (a->Transform == NULL) - return NULL; - soap_default_ds__TransformType(soap, a->Transform); - } - soap_revert(soap); - if (soap_in_ds__TransformType(soap, "ds:Transform", a->Transform, "ds:TransformType")) - { a->__sizeTransform++; - a->Transform = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->Transform) - soap_block::pop(soap, soap_blist_Transform); - if (a->__sizeTransform) - { a->Transform = soap_new_ds__TransformType(soap, a->__sizeTransform); - if (!a->Transform) - return NULL; - soap_block::save(soap, soap_blist_Transform, a->Transform); - } - else - { a->Transform = NULL; - if (soap_blist_Transform) - soap_block::end(soap, soap_blist_Transform); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__TransformsType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__TransformsType, SOAP_TYPE_ds__TransformsType, sizeof(struct ds__TransformsType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__TransformsType * SOAP_FMAC2 soap_instantiate_ds__TransformsType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__TransformsType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__TransformsType *p; - size_t k = sizeof(struct ds__TransformsType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__TransformsType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__TransformsType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__TransformsType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__TransformsType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__TransformsType(struct soap *soap, const struct ds__TransformsType *a, const char *tag, const char *type) -{ - if (soap_out_ds__TransformsType(soap, tag ? tag : "ds:TransformsType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__TransformsType * SOAP_FMAC4 soap_get_ds__TransformsType(struct soap *soap, struct ds__TransformsType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__TransformsType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__ReferenceType(struct soap *soap, struct ds__ReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->Transforms = NULL; - a->DigestMethod = NULL; - soap_default_string(soap, &a->DigestValue); - soap_default_string(soap, &a->Id); - soap_default_string(soap, &a->URI); - soap_default_string(soap, &a->Type); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__ReferenceType(struct soap *soap, const struct ds__ReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTods__TransformsType(soap, &a->Transforms); - soap_serialize_PointerTods__DigestMethodType(soap, &a->DigestMethod); - soap_serialize_string(soap, (char*const*)&a->DigestValue); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__ReferenceType(struct soap *soap, const char *tag, int id, const struct ds__ReferenceType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - if (a->URI) - soap_set_attr(soap, "URI", soap_string2s(soap, a->URI), 1); - if (a->Type) - soap_set_attr(soap, "Type", soap_string2s(soap, a->Type), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__ReferenceType), type)) - return soap->error; - if (soap_out_PointerTods__TransformsType(soap, "ds:Transforms", -1, &a->Transforms, "")) - return soap->error; - if (!a->DigestMethod) - { if (soap_element_empty(soap, "ds:DigestMethod", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTods__DigestMethodType(soap, "ds:DigestMethod", -1, &a->DigestMethod, "")) - return soap->error; - if (!a->DigestValue) - { if (soap_element_empty(soap, "ds:DigestValue", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "ds:DigestValue", -1, (char*const*)&a->DigestValue, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__ReferenceType * SOAP_FMAC4 soap_in_ds__ReferenceType(struct soap *soap, const char *tag, struct ds__ReferenceType *a, const char *type) -{ - size_t soap_flag_Transforms = 1; - size_t soap_flag_DigestMethod = 1; - size_t soap_flag_DigestValue = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__ReferenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__ReferenceType, sizeof(struct ds__ReferenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__ReferenceType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "URI", 1, 0), &a->URI)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Type", 1, 0), &a->Type)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Transforms && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__TransformsType(soap, "ds:Transforms", &a->Transforms, "ds:TransformsType")) - { soap_flag_Transforms--; - continue; - } - } - if (soap_flag_DigestMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__DigestMethodType(soap, "ds:DigestMethod", &a->DigestMethod, "ds:DigestMethodType")) - { soap_flag_DigestMethod--; - continue; - } - } - if (soap_flag_DigestValue && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:DigestValue", (char**)&a->DigestValue, "xsd:string")) - { soap_flag_DigestValue--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->DigestMethod || !a->DigestValue)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct ds__ReferenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__ReferenceType, SOAP_TYPE_ds__ReferenceType, sizeof(struct ds__ReferenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__ReferenceType * SOAP_FMAC2 soap_instantiate_ds__ReferenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__ReferenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__ReferenceType *p; - size_t k = sizeof(struct ds__ReferenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__ReferenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__ReferenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__ReferenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__ReferenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__ReferenceType(struct soap *soap, const struct ds__ReferenceType *a, const char *tag, const char *type) -{ - if (soap_out_ds__ReferenceType(soap, tag ? tag : "ds:ReferenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__ReferenceType * SOAP_FMAC4 soap_get_ds__ReferenceType(struct soap *soap, struct ds__ReferenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__ReferenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__SignatureMethodType(struct soap *soap, struct ds__SignatureMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->HMACOutputLength = NULL; - soap_default_string(soap, &a->Algorithm); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__SignatureMethodType(struct soap *soap, const struct ds__SignatureMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToint(soap, &a->HMACOutputLength); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__SignatureMethodType(struct soap *soap, const char *tag, int id, const struct ds__SignatureMethodType *a, const char *type) -{ - soap_set_attr(soap, "Algorithm", a->Algorithm ? soap_string2s(soap, a->Algorithm) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__SignatureMethodType), type)) - return soap->error; - if (soap_out_PointerToint(soap, "ds:HMACOutputLength", -1, &a->HMACOutputLength, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__SignatureMethodType * SOAP_FMAC4 soap_in_ds__SignatureMethodType(struct soap *soap, const char *tag, struct ds__SignatureMethodType *a, const char *type) -{ - size_t soap_flag_HMACOutputLength = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__SignatureMethodType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__SignatureMethodType, sizeof(struct ds__SignatureMethodType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__SignatureMethodType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Algorithm", 1, 1), &a->Algorithm)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_HMACOutputLength && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToint(soap, "ds:HMACOutputLength", &a->HMACOutputLength, "xsd:int")) - { soap_flag_HMACOutputLength--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__SignatureMethodType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__SignatureMethodType, SOAP_TYPE_ds__SignatureMethodType, sizeof(struct ds__SignatureMethodType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__SignatureMethodType * SOAP_FMAC2 soap_instantiate_ds__SignatureMethodType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__SignatureMethodType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__SignatureMethodType *p; - size_t k = sizeof(struct ds__SignatureMethodType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__SignatureMethodType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__SignatureMethodType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__SignatureMethodType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__SignatureMethodType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__SignatureMethodType(struct soap *soap, const struct ds__SignatureMethodType *a, const char *tag, const char *type) -{ - if (soap_out_ds__SignatureMethodType(soap, tag ? tag : "ds:SignatureMethodType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__SignatureMethodType * SOAP_FMAC4 soap_get_ds__SignatureMethodType(struct soap *soap, struct ds__SignatureMethodType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__SignatureMethodType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__CanonicalizationMethodType(struct soap *soap, struct ds__CanonicalizationMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Algorithm); - a->c14n__InclusiveNamespaces = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__CanonicalizationMethodType(struct soap *soap, const struct ds__CanonicalizationMethodType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_c14n__InclusiveNamespaces(soap, &a->c14n__InclusiveNamespaces); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__CanonicalizationMethodType(struct soap *soap, const char *tag, int id, const struct ds__CanonicalizationMethodType *a, const char *type) -{ - soap_set_attr(soap, "Algorithm", a->Algorithm ? soap_string2s(soap, a->Algorithm) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__CanonicalizationMethodType), type)) - return soap->error; - if (soap_out_PointerTo_c14n__InclusiveNamespaces(soap, "c14n:InclusiveNamespaces", -1, &a->c14n__InclusiveNamespaces, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__CanonicalizationMethodType * SOAP_FMAC4 soap_in_ds__CanonicalizationMethodType(struct soap *soap, const char *tag, struct ds__CanonicalizationMethodType *a, const char *type) -{ - size_t soap_flag_c14n__InclusiveNamespaces = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__CanonicalizationMethodType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__CanonicalizationMethodType, sizeof(struct ds__CanonicalizationMethodType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__CanonicalizationMethodType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Algorithm", 1, 1), &a->Algorithm)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_c14n__InclusiveNamespaces && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_c14n__InclusiveNamespaces(soap, "c14n:InclusiveNamespaces", &a->c14n__InclusiveNamespaces, "")) - { soap_flag_c14n__InclusiveNamespaces--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__CanonicalizationMethodType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__CanonicalizationMethodType, SOAP_TYPE_ds__CanonicalizationMethodType, sizeof(struct ds__CanonicalizationMethodType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__CanonicalizationMethodType * SOAP_FMAC2 soap_instantiate_ds__CanonicalizationMethodType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__CanonicalizationMethodType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__CanonicalizationMethodType *p; - size_t k = sizeof(struct ds__CanonicalizationMethodType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__CanonicalizationMethodType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__CanonicalizationMethodType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__CanonicalizationMethodType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__CanonicalizationMethodType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__CanonicalizationMethodType(struct soap *soap, const struct ds__CanonicalizationMethodType *a, const char *tag, const char *type) -{ - if (soap_out_ds__CanonicalizationMethodType(soap, tag ? tag : "ds:CanonicalizationMethodType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__CanonicalizationMethodType * SOAP_FMAC4 soap_get_ds__CanonicalizationMethodType(struct soap *soap, struct ds__CanonicalizationMethodType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__CanonicalizationMethodType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__ds__Signature(struct soap *soap, const struct ds__SignatureType *a, const char *tag, const char *type) -{ - if (soap_out__ds__Signature(soap, tag ? tag : "ds:Signature", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__SignedInfoType(struct soap *soap, struct ds__SignedInfoType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->CanonicalizationMethod = NULL; - a->SignatureMethod = NULL; - a->__sizeReference = 0; - a->Reference = NULL; - soap_default_string(soap, &a->Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__SignedInfoType(struct soap *soap, const struct ds__SignedInfoType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTods__CanonicalizationMethodType(soap, &a->CanonicalizationMethod); - soap_serialize_PointerTods__SignatureMethodType(soap, &a->SignatureMethod); - if (a->Reference) - { int i; - for (i = 0; i < (int)a->__sizeReference; i++) - { - soap_serialize_PointerTods__ReferenceType(soap, a->Reference + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__SignedInfoType(struct soap *soap, const char *tag, int id, const struct ds__SignedInfoType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__SignedInfoType), type)) - return soap->error; - if (!a->CanonicalizationMethod) - { if (soap_element_empty(soap, "ds:CanonicalizationMethod", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTods__CanonicalizationMethodType(soap, "ds:CanonicalizationMethod", -1, &a->CanonicalizationMethod, "")) - return soap->error; - if (!a->SignatureMethod) - { if (soap_element_empty(soap, "ds:SignatureMethod", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerTods__SignatureMethodType(soap, "ds:SignatureMethod", -1, &a->SignatureMethod, "")) - return soap->error; - if (a->Reference) - { int i; - for (i = 0; i < (int)a->__sizeReference; i++) - if (soap_out_PointerTods__ReferenceType(soap, "ds:Reference", -1, a->Reference + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__SignedInfoType * SOAP_FMAC4 soap_in_ds__SignedInfoType(struct soap *soap, const char *tag, struct ds__SignedInfoType *a, const char *type) -{ - size_t soap_flag_CanonicalizationMethod = 1; - size_t soap_flag_SignatureMethod = 1; - struct soap_blist *soap_blist_Reference = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__SignedInfoType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__SignedInfoType, sizeof(struct ds__SignedInfoType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__SignedInfoType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_CanonicalizationMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__CanonicalizationMethodType(soap, "ds:CanonicalizationMethod", &a->CanonicalizationMethod, "ds:CanonicalizationMethodType")) - { soap_flag_CanonicalizationMethod--; - continue; - } - } - if (soap_flag_SignatureMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__SignatureMethodType(soap, "ds:SignatureMethod", &a->SignatureMethod, "ds:SignatureMethodType")) - { soap_flag_SignatureMethod--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "ds:Reference", 1, NULL)) - { if (a->Reference == NULL) - { if (soap_blist_Reference == NULL) - soap_blist_Reference = soap_alloc_block(soap); - a->Reference = (struct ds__ReferenceType **)soap_push_block_max(soap, soap_blist_Reference, sizeof(struct ds__ReferenceType *)); - if (a->Reference == NULL) - return NULL; - *a->Reference = NULL; - } - soap_revert(soap); - if (soap_in_PointerTods__ReferenceType(soap, "ds:Reference", a->Reference, "ds:ReferenceType")) - { a->__sizeReference++; - a->Reference = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->Reference) - soap_pop_block(soap, soap_blist_Reference); - if (a->__sizeReference) - { a->Reference = (struct ds__ReferenceType **)soap_save_block(soap, soap_blist_Reference, NULL, 1); - } - else - { a->Reference = NULL; - if (soap_blist_Reference) - soap_end_block(soap, soap_blist_Reference); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->CanonicalizationMethod || !a->SignatureMethod)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct ds__SignedInfoType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__SignedInfoType, SOAP_TYPE_ds__SignedInfoType, sizeof(struct ds__SignedInfoType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__SignedInfoType * SOAP_FMAC2 soap_instantiate_ds__SignedInfoType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__SignedInfoType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__SignedInfoType *p; - size_t k = sizeof(struct ds__SignedInfoType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__SignedInfoType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__SignedInfoType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__SignedInfoType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__SignedInfoType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__SignedInfoType(struct soap *soap, const struct ds__SignedInfoType *a, const char *tag, const char *type) -{ - if (soap_out_ds__SignedInfoType(soap, tag ? tag : "ds:SignedInfoType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__SignedInfoType * SOAP_FMAC4 soap_get_ds__SignedInfoType(struct soap *soap, struct ds__SignedInfoType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__SignedInfoType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__SignatureType(struct soap *soap, struct ds__SignatureType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->SignedInfo = NULL; - soap_default__ds__SignatureValue(soap, &a->SignatureValue); - a->KeyInfo = NULL; - soap_default_string(soap, &a->Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__SignatureType(struct soap *soap, const struct ds__SignatureType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTods__SignedInfoType(soap, &a->SignedInfo); - soap_serialize__ds__SignatureValue(soap, (char*const*)&a->SignatureValue); - soap_serialize_PointerTods__KeyInfoType(soap, &a->KeyInfo); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__SignatureType(struct soap *soap, const char *tag, int id, const struct ds__SignatureType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__SignatureType), type)) - return soap->error; - if (soap_out_PointerTods__SignedInfoType(soap, "ds:SignedInfo", -1, &a->SignedInfo, "")) - return soap->error; - if (soap_out__ds__SignatureValue(soap, "ds:SignatureValue", -1, (char*const*)&a->SignatureValue, "")) - return soap->error; - if (soap_out_PointerTods__KeyInfoType(soap, "ds:KeyInfo", -1, &a->KeyInfo, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__SignatureType * SOAP_FMAC4 soap_in_ds__SignatureType(struct soap *soap, const char *tag, struct ds__SignatureType *a, const char *type) -{ - size_t soap_flag_SignedInfo = 1; - size_t soap_flag_SignatureValue = 1; - size_t soap_flag_KeyInfo = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__SignatureType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__SignatureType, sizeof(struct ds__SignatureType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__SignatureType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SignedInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__SignedInfoType(soap, "ds:SignedInfo", &a->SignedInfo, "ds:SignedInfoType")) - { soap_flag_SignedInfo--; - continue; - } - } - if (soap_flag_SignatureValue && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__ds__SignatureValue(soap, "ds:SignatureValue", (char**)&a->SignatureValue, "")) - { soap_flag_SignatureValue--; - continue; - } - } - if (soap_flag_KeyInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__KeyInfoType(soap, "ds:KeyInfo", &a->KeyInfo, "ds:KeyInfoType")) - { soap_flag_KeyInfo--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__SignatureType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__SignatureType, SOAP_TYPE_ds__SignatureType, sizeof(struct ds__SignatureType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__SignatureType * SOAP_FMAC2 soap_instantiate_ds__SignatureType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__SignatureType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__SignatureType *p; - size_t k = sizeof(struct ds__SignatureType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__SignatureType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__SignatureType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__SignatureType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__SignatureType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__SignatureType(struct soap *soap, const struct ds__SignatureType *a, const char *tag, const char *type) -{ - if (soap_out_ds__SignatureType(soap, tag ? tag : "ds:SignatureType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__SignatureType * SOAP_FMAC4 soap_get_ds__SignatureType(struct soap *soap, struct ds__SignatureType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__SignatureType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptedKeyType(struct soap *soap, struct xenc__EncryptedKeyType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->EncryptionMethod = NULL; - a->ds__KeyInfo = NULL; - a->CipherData = NULL; - a->EncryptionProperties = NULL; - soap_default_string(soap, &a->Id); - soap_default_string(soap, &a->Type); - soap_default_string(soap, &a->MimeType); - soap_default_string(soap, &a->Encoding); - a->ReferenceList = NULL; - soap_default_string(soap, &a->CarriedKeyName); - soap_default_string(soap, &a->Recipient); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptedKeyType(struct soap *soap, const struct xenc__EncryptedKeyType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxenc__EncryptionMethodType(soap, &a->EncryptionMethod); - soap_serialize_PointerTo_ds__KeyInfo(soap, &a->ds__KeyInfo); - soap_serialize_PointerToxenc__CipherDataType(soap, &a->CipherData); - soap_serialize_PointerToxenc__EncryptionPropertiesType(soap, &a->EncryptionProperties); - soap_serialize_PointerTo_xenc__ReferenceList(soap, &a->ReferenceList); - soap_serialize_string(soap, (char*const*)&a->CarriedKeyName); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptedKeyType(struct soap *soap, const char *tag, int id, const struct xenc__EncryptedKeyType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - if (a->Type) - soap_set_attr(soap, "Type", soap_string2s(soap, a->Type), 1); - if (a->MimeType) - soap_set_attr(soap, "MimeType", soap_string2s(soap, a->MimeType), 1); - if (a->Encoding) - soap_set_attr(soap, "Encoding", soap_string2s(soap, a->Encoding), 1); - if (a->Recipient) - soap_set_attr(soap, "Recipient", soap_string2s(soap, a->Recipient), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_xenc__EncryptedKeyType), type)) - return soap->error; - if (soap_out_PointerToxenc__EncryptionMethodType(soap, "xenc:EncryptionMethod", -1, &a->EncryptionMethod, "")) - return soap->error; - if (soap_out_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", -1, &a->ds__KeyInfo, "")) - return soap->error; - if (!a->CipherData) - { if (soap_element_empty(soap, "xenc:CipherData", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerToxenc__CipherDataType(soap, "xenc:CipherData", -1, &a->CipherData, "")) - return soap->error; - if (soap_out_PointerToxenc__EncryptionPropertiesType(soap, "xenc:EncryptionProperties", -1, &a->EncryptionProperties, "")) - return soap->error; - if (soap_out_PointerTo_xenc__ReferenceList(soap, "xenc:ReferenceList", -1, &a->ReferenceList, "")) - return soap->error; - if (soap_out_string(soap, "xenc:CarriedKeyName", -1, (char*const*)&a->CarriedKeyName, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct xenc__EncryptedKeyType * SOAP_FMAC4 soap_in_xenc__EncryptedKeyType(struct soap *soap, const char *tag, struct xenc__EncryptedKeyType *a, const char *type) -{ - size_t soap_flag_EncryptionMethod = 1; - size_t soap_flag_ds__KeyInfo = 1; - size_t soap_flag_CipherData = 1; - size_t soap_flag_EncryptionProperties = 1; - size_t soap_flag_ReferenceList = 1; - size_t soap_flag_CarriedKeyName = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct xenc__EncryptedKeyType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_xenc__EncryptedKeyType, sizeof(struct xenc__EncryptedKeyType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_xenc__EncryptedKeyType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Type", 1, 0), &a->Type)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "MimeType", 1, 0), &a->MimeType)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Encoding", 1, 0), &a->Encoding)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Recipient", 1, 0), &a->Recipient)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_EncryptionMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptionMethodType(soap, "xenc:EncryptionMethod", &a->EncryptionMethod, "xenc:EncryptionMethodType")) - { soap_flag_EncryptionMethod--; - continue; - } - } - if (soap_flag_ds__KeyInfo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_ds__KeyInfo(soap, "ds:KeyInfo", &a->ds__KeyInfo, "")) - { soap_flag_ds__KeyInfo--; - continue; - } - } - if (soap_flag_CipherData && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__CipherDataType(soap, "xenc:CipherData", &a->CipherData, "xenc:CipherDataType")) - { soap_flag_CipherData--; - continue; - } - } - if (soap_flag_EncryptionProperties && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptionPropertiesType(soap, "xenc:EncryptionProperties", &a->EncryptionProperties, "xenc:EncryptionPropertiesType")) - { soap_flag_EncryptionProperties--; - continue; - } - } - if (soap_flag_ReferenceList && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_xenc__ReferenceList(soap, "xenc:ReferenceList", &a->ReferenceList, "")) - { soap_flag_ReferenceList--; - continue; - } - } - if (soap_flag_CarriedKeyName && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "xenc:CarriedKeyName", (char**)&a->CarriedKeyName, "xsd:string")) - { soap_flag_CarriedKeyName--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->CipherData)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct xenc__EncryptedKeyType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_xenc__EncryptedKeyType, SOAP_TYPE_xenc__EncryptedKeyType, sizeof(struct xenc__EncryptedKeyType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct xenc__EncryptedKeyType * SOAP_FMAC2 soap_instantiate_xenc__EncryptedKeyType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_xenc__EncryptedKeyType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct xenc__EncryptedKeyType *p; - size_t k = sizeof(struct xenc__EncryptedKeyType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_xenc__EncryptedKeyType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct xenc__EncryptedKeyType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct xenc__EncryptedKeyType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct xenc__EncryptedKeyType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptedKeyType(struct soap *soap, const struct xenc__EncryptedKeyType *a, const char *tag, const char *type) -{ - if (soap_out_xenc__EncryptedKeyType(soap, tag ? tag : "xenc:EncryptedKeyType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct xenc__EncryptedKeyType * SOAP_FMAC4 soap_get_xenc__EncryptedKeyType(struct soap *soap, struct xenc__EncryptedKeyType *p, const char *tag, const char *type) -{ - if ((p = soap_in_xenc__EncryptedKeyType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__KeyInfoType(struct soap *soap, struct ds__KeyInfoType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->xenc__EncryptedKey = NULL; - soap_default_string(soap, &a->KeyName); - a->KeyValue = NULL; - a->RetrievalMethod = NULL; - a->X509Data = NULL; - a->wsse__SecurityTokenReference = NULL; - soap_default_string(soap, &a->Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__KeyInfoType(struct soap *soap, const struct ds__KeyInfoType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxenc__EncryptedKeyType(soap, &a->xenc__EncryptedKey); - soap_serialize_string(soap, (char*const*)&a->KeyName); - soap_serialize_PointerTods__KeyValueType(soap, &a->KeyValue); - soap_serialize_PointerTods__RetrievalMethodType(soap, &a->RetrievalMethod); - soap_serialize_PointerTods__X509DataType(soap, &a->X509Data); - soap_serialize_PointerTo_wsse__SecurityTokenReference(soap, &a->wsse__SecurityTokenReference); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__KeyInfoType(struct soap *soap, const char *tag, int id, const struct ds__KeyInfoType *a, const char *type) -{ - if (a->Id) - soap_set_attr(soap, "Id", soap_string2s(soap, a->Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__KeyInfoType), type)) - return soap->error; - if (soap_out_PointerToxenc__EncryptedKeyType(soap, "xenc:EncryptedKey", -1, &a->xenc__EncryptedKey, "")) - return soap->error; - if (soap_out_string(soap, "ds:KeyName", -1, (char*const*)&a->KeyName, "")) - return soap->error; - if (soap_out_PointerTods__KeyValueType(soap, "ds:KeyValue", -1, &a->KeyValue, "")) - return soap->error; - if (soap_out_PointerTods__RetrievalMethodType(soap, "ds:RetrievalMethod", -1, &a->RetrievalMethod, "")) - return soap->error; - if (soap_out_PointerTods__X509DataType(soap, "ds:X509Data", -1, &a->X509Data, "")) - return soap->error; - if (soap_out_PointerTo_wsse__SecurityTokenReference(soap, "wsse:SecurityTokenReference", -1, &a->wsse__SecurityTokenReference, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__KeyInfoType * SOAP_FMAC4 soap_in_ds__KeyInfoType(struct soap *soap, const char *tag, struct ds__KeyInfoType *a, const char *type) -{ - size_t soap_flag_xenc__EncryptedKey = 1; - size_t soap_flag_KeyName = 1; - size_t soap_flag_KeyValue = 1; - size_t soap_flag_RetrievalMethod = 1; - size_t soap_flag_X509Data = 1; - size_t soap_flag_wsse__SecurityTokenReference = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__KeyInfoType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__KeyInfoType, sizeof(struct ds__KeyInfoType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__KeyInfoType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Id", 1, 0), &a->Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_xenc__EncryptedKey && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxenc__EncryptedKeyType(soap, "xenc:EncryptedKey", &a->xenc__EncryptedKey, "xenc:EncryptedKeyType")) - { soap_flag_xenc__EncryptedKey--; - continue; - } - } - if (soap_flag_KeyName && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:KeyName", (char**)&a->KeyName, "xsd:string")) - { soap_flag_KeyName--; - continue; - } - } - if (soap_flag_KeyValue && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__KeyValueType(soap, "ds:KeyValue", &a->KeyValue, "ds:KeyValueType")) - { soap_flag_KeyValue--; - continue; - } - } - if (soap_flag_RetrievalMethod && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__RetrievalMethodType(soap, "ds:RetrievalMethod", &a->RetrievalMethod, "ds:RetrievalMethodType")) - { soap_flag_RetrievalMethod--; - continue; - } - } - if (soap_flag_X509Data && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__X509DataType(soap, "ds:X509Data", &a->X509Data, "ds:X509DataType")) - { soap_flag_X509Data--; - continue; - } - } - if (soap_flag_wsse__SecurityTokenReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__SecurityTokenReference(soap, "wsse:SecurityTokenReference", &a->wsse__SecurityTokenReference, "")) - { soap_flag_wsse__SecurityTokenReference--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__KeyInfoType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__KeyInfoType, SOAP_TYPE_ds__KeyInfoType, sizeof(struct ds__KeyInfoType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__KeyInfoType * SOAP_FMAC2 soap_instantiate_ds__KeyInfoType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__KeyInfoType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__KeyInfoType *p; - size_t k = sizeof(struct ds__KeyInfoType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__KeyInfoType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__KeyInfoType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__KeyInfoType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__KeyInfoType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__KeyInfoType(struct soap *soap, const struct ds__KeyInfoType *a, const char *tag, const char *type) -{ - if (soap_out_ds__KeyInfoType(soap, tag ? tag : "ds:KeyInfoType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__KeyInfoType * SOAP_FMAC4 soap_get_ds__KeyInfoType(struct soap *soap, struct ds__KeyInfoType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__KeyInfoType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__X509DataType(struct soap *soap, struct ds__X509DataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->X509IssuerSerial = NULL; - soap_default_string(soap, &a->X509SKI); - soap_default_string(soap, &a->X509SubjectName); - soap_default_string(soap, &a->X509Certificate); - soap_default_string(soap, &a->X509CRL); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__X509DataType(struct soap *soap, const struct ds__X509DataType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTods__X509IssuerSerialType(soap, &a->X509IssuerSerial); - soap_serialize_string(soap, (char*const*)&a->X509SKI); - soap_serialize_string(soap, (char*const*)&a->X509SubjectName); - soap_serialize_string(soap, (char*const*)&a->X509Certificate); - soap_serialize_string(soap, (char*const*)&a->X509CRL); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__X509DataType(struct soap *soap, const char *tag, int id, const struct ds__X509DataType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ds__X509DataType), type)) - return soap->error; - if (soap_out_PointerTods__X509IssuerSerialType(soap, "ds:X509IssuerSerial", -1, &a->X509IssuerSerial, "")) - return soap->error; - if (soap_out_string(soap, "ds:X509SKI", -1, (char*const*)&a->X509SKI, "")) - return soap->error; - if (soap_out_string(soap, "ds:X509SubjectName", -1, (char*const*)&a->X509SubjectName, "")) - return soap->error; - if (soap_out_string(soap, "ds:X509Certificate", -1, (char*const*)&a->X509Certificate, "")) - return soap->error; - if (soap_out_string(soap, "ds:X509CRL", -1, (char*const*)&a->X509CRL, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct ds__X509DataType * SOAP_FMAC4 soap_in_ds__X509DataType(struct soap *soap, const char *tag, struct ds__X509DataType *a, const char *type) -{ - size_t soap_flag_X509IssuerSerial = 1; - size_t soap_flag_X509SKI = 1; - size_t soap_flag_X509SubjectName = 1; - size_t soap_flag_X509Certificate = 1; - size_t soap_flag_X509CRL = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct ds__X509DataType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_ds__X509DataType, sizeof(struct ds__X509DataType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_ds__X509DataType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_X509IssuerSerial && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__X509IssuerSerialType(soap, "ds:X509IssuerSerial", &a->X509IssuerSerial, "ds:X509IssuerSerialType")) - { soap_flag_X509IssuerSerial--; - continue; - } - } - if (soap_flag_X509SKI && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:X509SKI", (char**)&a->X509SKI, "xsd:string")) - { soap_flag_X509SKI--; - continue; - } - } - if (soap_flag_X509SubjectName && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:X509SubjectName", (char**)&a->X509SubjectName, "xsd:string")) - { soap_flag_X509SubjectName--; - continue; - } - } - if (soap_flag_X509Certificate && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:X509Certificate", (char**)&a->X509Certificate, "xsd:string")) - { soap_flag_X509Certificate--; - continue; - } - } - if (soap_flag_X509CRL && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "ds:X509CRL", (char**)&a->X509CRL, "xsd:string")) - { soap_flag_X509CRL--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct ds__X509DataType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_ds__X509DataType, SOAP_TYPE_ds__X509DataType, sizeof(struct ds__X509DataType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct ds__X509DataType * SOAP_FMAC2 soap_instantiate_ds__X509DataType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_ds__X509DataType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct ds__X509DataType *p; - size_t k = sizeof(struct ds__X509DataType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_ds__X509DataType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct ds__X509DataType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct ds__X509DataType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct ds__X509DataType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__X509DataType(struct soap *soap, const struct ds__X509DataType *a, const char *tag, const char *type) -{ - if (soap_out_ds__X509DataType(soap, tag ? tag : "ds:X509DataType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct ds__X509DataType * SOAP_FMAC4 soap_get_ds__X509DataType(struct soap *soap, struct ds__X509DataType *p, const char *tag, const char *type) -{ - if ((p = soap_in_ds__X509DataType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__SecurityTokenReference(struct soap *soap, struct _wsse__SecurityTokenReference *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->Reference = NULL; - a->KeyIdentifier = NULL; - a->Embedded = NULL; - a->ds__X509Data = NULL; - soap_default_string(soap, &a->wsu__Id); - soap_default_string(soap, &a->wsc__Instance); - soap_default_string(soap, &a->Usage); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__SecurityTokenReference(struct soap *soap, const struct _wsse__SecurityTokenReference *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTo_wsse__Reference(soap, &a->Reference); - soap_serialize_PointerTo_wsse__KeyIdentifier(soap, &a->KeyIdentifier); - soap_serialize_PointerTo_wsse__Embedded(soap, &a->Embedded); - soap_serialize_PointerTods__X509DataType(soap, &a->ds__X509Data); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__SecurityTokenReference(struct soap *soap, const char *tag, int id, const struct _wsse__SecurityTokenReference *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - if (a->wsc__Instance) - soap_set_attr(soap, "wsc:Instance", soap_string2s(soap, a->wsc__Instance), 1); - if (a->Usage) - soap_set_attr(soap, "Usage", soap_string2s(soap, a->Usage), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsse__SecurityTokenReference), type)) - return soap->error; - if (soap_out_PointerTo_wsse__Reference(soap, "wsse:Reference", -1, &a->Reference, "")) - return soap->error; - if (soap_out_PointerTo_wsse__KeyIdentifier(soap, "wsse:KeyIdentifier", -1, &a->KeyIdentifier, "")) - return soap->error; - if (soap_out_PointerTo_wsse__Embedded(soap, "wsse:Embedded", -1, &a->Embedded, "")) - return soap->error; - if (soap_out_PointerTods__X509DataType(soap, "ds:X509Data", -1, &a->ds__X509Data, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _wsse__SecurityTokenReference * SOAP_FMAC4 soap_in__wsse__SecurityTokenReference(struct soap *soap, const char *tag, struct _wsse__SecurityTokenReference *a, const char *type) -{ - size_t soap_flag_Reference = 1; - size_t soap_flag_KeyIdentifier = 1; - size_t soap_flag_Embedded = 1; - size_t soap_flag_ds__X509Data = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _wsse__SecurityTokenReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__SecurityTokenReference, sizeof(struct _wsse__SecurityTokenReference), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__wsse__SecurityTokenReference(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "wsc:Instance", 1, 0), &a->wsc__Instance)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Usage", 1, 0), &a->Usage)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Reference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__Reference(soap, "wsse:Reference", &a->Reference, "")) - { soap_flag_Reference--; - continue; - } - } - if (soap_flag_KeyIdentifier && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__KeyIdentifier(soap, "wsse:KeyIdentifier", &a->KeyIdentifier, "")) - { soap_flag_KeyIdentifier--; - continue; - } - } - if (soap_flag_Embedded && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__Embedded(soap, "wsse:Embedded", &a->Embedded, "")) - { soap_flag_Embedded--; - continue; - } - } - if (soap_flag_ds__X509Data && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTods__X509DataType(soap, "ds:X509Data", &a->ds__X509Data, "ds:X509DataType")) - { soap_flag_ds__X509Data--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct _wsse__SecurityTokenReference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsse__SecurityTokenReference, SOAP_TYPE__wsse__SecurityTokenReference, sizeof(struct _wsse__SecurityTokenReference), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _wsse__SecurityTokenReference * SOAP_FMAC2 soap_instantiate__wsse__SecurityTokenReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__SecurityTokenReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__SecurityTokenReference *p; - size_t k = sizeof(struct _wsse__SecurityTokenReference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__SecurityTokenReference, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__SecurityTokenReference); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__SecurityTokenReference, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__SecurityTokenReference location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__SecurityTokenReference(struct soap *soap, const struct _wsse__SecurityTokenReference *a, const char *tag, const char *type) -{ - if (soap_out__wsse__SecurityTokenReference(soap, tag ? tag : "wsse:SecurityTokenReference", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__SecurityTokenReference * SOAP_FMAC4 soap_get__wsse__SecurityTokenReference(struct soap *soap, struct _wsse__SecurityTokenReference *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__SecurityTokenReference(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__KeyIdentifier(struct soap *soap, struct _wsse__KeyIdentifier *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->wsu__Id); - soap_default_string(soap, &a->ValueType); - soap_default_string(soap, &a->EncodingType); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__KeyIdentifier(struct soap *soap, const struct _wsse__KeyIdentifier *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__KeyIdentifier(struct soap *soap, const char *tag, int id, const struct _wsse__KeyIdentifier *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - if (a->ValueType) - soap_set_attr(soap, "ValueType", soap_string2s(soap, a->ValueType), 1); - if (a->EncodingType) - soap_set_attr(soap, "EncodingType", soap_string2s(soap, a->EncodingType), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct _wsse__KeyIdentifier * SOAP_FMAC4 soap_in__wsse__KeyIdentifier(struct soap *soap, const char *tag, struct _wsse__KeyIdentifier *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct _wsse__KeyIdentifier *)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__KeyIdentifier, sizeof(struct _wsse__KeyIdentifier), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default__wsse__KeyIdentifier(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "ValueType", 1, 0), &a->ValueType)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "EncodingType", 1, 0), &a->EncodingType)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "")) - return NULL; - return a; -} - -SOAP_FMAC1 struct _wsse__KeyIdentifier * SOAP_FMAC2 soap_instantiate__wsse__KeyIdentifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__KeyIdentifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__KeyIdentifier *p; - size_t k = sizeof(struct _wsse__KeyIdentifier); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__KeyIdentifier, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__KeyIdentifier); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__KeyIdentifier, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__KeyIdentifier location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__KeyIdentifier(struct soap *soap, const struct _wsse__KeyIdentifier *a, const char *tag, const char *type) -{ - if (soap_out__wsse__KeyIdentifier(soap, tag ? tag : "wsse:KeyIdentifier", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__KeyIdentifier * SOAP_FMAC4 soap_get__wsse__KeyIdentifier(struct soap *soap, struct _wsse__KeyIdentifier *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__KeyIdentifier(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Embedded(struct soap *soap, struct _wsse__Embedded *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->wsu__Id); - soap_default_string(soap, &a->ValueType); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Embedded(struct soap *soap, const struct _wsse__Embedded *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Embedded(struct soap *soap, const char *tag, int id, const struct _wsse__Embedded *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - if (a->ValueType) - soap_set_attr(soap, "ValueType", soap_string2s(soap, a->ValueType), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsse__Embedded), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _wsse__Embedded * SOAP_FMAC4 soap_in__wsse__Embedded(struct soap *soap, const char *tag, struct _wsse__Embedded *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _wsse__Embedded*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__Embedded, sizeof(struct _wsse__Embedded), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__wsse__Embedded(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "ValueType", 1, 0), &a->ValueType)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct _wsse__Embedded *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsse__Embedded, SOAP_TYPE__wsse__Embedded, sizeof(struct _wsse__Embedded), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _wsse__Embedded * SOAP_FMAC2 soap_instantiate__wsse__Embedded(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__Embedded(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__Embedded *p; - size_t k = sizeof(struct _wsse__Embedded); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__Embedded, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__Embedded); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__Embedded, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__Embedded location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Embedded(struct soap *soap, const struct _wsse__Embedded *a, const char *tag, const char *type) -{ - if (soap_out__wsse__Embedded(soap, tag ? tag : "wsse:Embedded", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__Embedded * SOAP_FMAC4 soap_get__wsse__Embedded(struct soap *soap, struct _wsse__Embedded *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__Embedded(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Reference(struct soap *soap, struct _wsse__Reference *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->URI); - soap_default_string(soap, &a->ValueType); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Reference(struct soap *soap, const struct _wsse__Reference *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Reference(struct soap *soap, const char *tag, int id, const struct _wsse__Reference *a, const char *type) -{ - if (a->URI) - soap_set_attr(soap, "URI", soap_string2s(soap, a->URI), 1); - if (a->ValueType) - soap_set_attr(soap, "ValueType", soap_string2s(soap, a->ValueType), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsse__Reference), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _wsse__Reference * SOAP_FMAC4 soap_in__wsse__Reference(struct soap *soap, const char *tag, struct _wsse__Reference *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _wsse__Reference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__Reference, sizeof(struct _wsse__Reference), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__wsse__Reference(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "URI", 1, 0), &a->URI)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "ValueType", 1, 0), &a->ValueType)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct _wsse__Reference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsse__Reference, SOAP_TYPE__wsse__Reference, sizeof(struct _wsse__Reference), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _wsse__Reference * SOAP_FMAC2 soap_instantiate__wsse__Reference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__Reference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__Reference *p; - size_t k = sizeof(struct _wsse__Reference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__Reference, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__Reference); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__Reference, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__Reference location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Reference(struct soap *soap, const struct _wsse__Reference *a, const char *tag, const char *type) -{ - if (soap_out__wsse__Reference(soap, tag ? tag : "wsse:Reference", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__Reference * SOAP_FMAC4 soap_get__wsse__Reference(struct soap *soap, struct _wsse__Reference *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__Reference(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__BinarySecurityToken(struct soap *soap, struct _wsse__BinarySecurityToken *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->wsu__Id); - soap_default_string(soap, &a->ValueType); - soap_default_string(soap, &a->EncodingType); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__BinarySecurityToken(struct soap *soap, const struct _wsse__BinarySecurityToken *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__BinarySecurityToken(struct soap *soap, const char *tag, int id, const struct _wsse__BinarySecurityToken *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - if (a->ValueType) - soap_set_attr(soap, "ValueType", soap_string2s(soap, a->ValueType), 1); - if (a->EncodingType) - soap_set_attr(soap, "EncodingType", soap_string2s(soap, a->EncodingType), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct _wsse__BinarySecurityToken * SOAP_FMAC4 soap_in__wsse__BinarySecurityToken(struct soap *soap, const char *tag, struct _wsse__BinarySecurityToken *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct _wsse__BinarySecurityToken *)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__BinarySecurityToken, sizeof(struct _wsse__BinarySecurityToken), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default__wsse__BinarySecurityToken(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "ValueType", 1, 0), &a->ValueType)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "EncodingType", 1, 0), &a->EncodingType)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "")) - return NULL; - return a; -} - -SOAP_FMAC1 struct _wsse__BinarySecurityToken * SOAP_FMAC2 soap_instantiate__wsse__BinarySecurityToken(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__BinarySecurityToken(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__BinarySecurityToken *p; - size_t k = sizeof(struct _wsse__BinarySecurityToken); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__BinarySecurityToken, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__BinarySecurityToken); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__BinarySecurityToken, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__BinarySecurityToken location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__BinarySecurityToken(struct soap *soap, const struct _wsse__BinarySecurityToken *a, const char *tag, const char *type) -{ - if (soap_out__wsse__BinarySecurityToken(soap, tag ? tag : "wsse:BinarySecurityToken", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__BinarySecurityToken * SOAP_FMAC4 soap_get__wsse__BinarySecurityToken(struct soap *soap, struct _wsse__BinarySecurityToken *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__BinarySecurityToken(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Password(struct soap *soap, struct _wsse__Password *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->Type); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Password(struct soap *soap, const struct _wsse__Password *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Password(struct soap *soap, const char *tag, int id, const struct _wsse__Password *a, const char *type) -{ - if (a->Type) - soap_set_attr(soap, "Type", soap_string2s(soap, a->Type), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct _wsse__Password * SOAP_FMAC4 soap_in__wsse__Password(struct soap *soap, const char *tag, struct _wsse__Password *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct _wsse__Password *)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__Password, sizeof(struct _wsse__Password), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default__wsse__Password(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Type", 1, 0), &a->Type)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "")) - return NULL; - return a; -} - -SOAP_FMAC1 struct _wsse__Password * SOAP_FMAC2 soap_instantiate__wsse__Password(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__Password(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__Password *p; - size_t k = sizeof(struct _wsse__Password); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__Password, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__Password); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__Password, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__Password location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Password(struct soap *soap, const struct _wsse__Password *a, const char *tag, const char *type) -{ - if (soap_out__wsse__Password(soap, tag ? tag : "wsse:Password", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__Password * SOAP_FMAC4 soap_get__wsse__Password(struct soap *soap, struct _wsse__Password *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__Password(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__UsernameToken(struct soap *soap, struct _wsse__UsernameToken *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Username); - a->Password = NULL; - a->Nonce = NULL; - soap_default_string(soap, &a->Salt); - a->Iteration = NULL; - soap_default_string(soap, &a->wsu__Created); - soap_default_string(soap, &a->wsu__Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__UsernameToken(struct soap *soap, const struct _wsse__UsernameToken *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->Username); - soap_serialize_PointerTo_wsse__Password(soap, &a->Password); - soap_serialize_PointerTowsse__EncodedString(soap, &a->Nonce); - soap_serialize_string(soap, (char*const*)&a->Salt); - soap_serialize_PointerTounsignedInt(soap, &a->Iteration); - soap_serialize_string(soap, (char*const*)&a->wsu__Created); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__UsernameToken(struct soap *soap, const char *tag, int id, const struct _wsse__UsernameToken *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsse__UsernameToken), type)) - return soap->error; - if (soap_out_string(soap, "wsse:Username", -1, (char*const*)&a->Username, "")) - return soap->error; - if (soap_out_PointerTo_wsse__Password(soap, "wsse:Password", -1, &a->Password, "")) - return soap->error; - if (soap_out_PointerTowsse__EncodedString(soap, "wsse:Nonce", -1, &a->Nonce, "")) - return soap->error; - if (soap_out_string(soap, "wsse:Salt", -1, (char*const*)&a->Salt, "")) - return soap->error; - if (soap_out_PointerTounsignedInt(soap, "wsse:Iteration", -1, &a->Iteration, "")) - return soap->error; - if (soap_out_string(soap, "wsu:Created", -1, (char*const*)&a->wsu__Created, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _wsse__UsernameToken * SOAP_FMAC4 soap_in__wsse__UsernameToken(struct soap *soap, const char *tag, struct _wsse__UsernameToken *a, const char *type) -{ - size_t soap_flag_Username = 1; - size_t soap_flag_Password = 1; - size_t soap_flag_Nonce = 1; - size_t soap_flag_Salt = 1; - size_t soap_flag_Iteration = 1; - size_t soap_flag_wsu__Created = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _wsse__UsernameToken*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsse__UsernameToken, sizeof(struct _wsse__UsernameToken), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__wsse__UsernameToken(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Username && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsse:Username", (char**)&a->Username, "xsd:string")) - { soap_flag_Username--; - continue; - } - } - if (soap_flag_Password && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__Password(soap, "wsse:Password", &a->Password, "")) - { soap_flag_Password--; - continue; - } - } - if (soap_flag_Nonce && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsse__EncodedString(soap, "wsse:Nonce", &a->Nonce, "wsse:EncodedString")) - { soap_flag_Nonce--; - continue; - } - } - if (soap_flag_Salt && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsse:Salt", (char**)&a->Salt, "xsd:string")) - { soap_flag_Salt--; - continue; - } - } - if (soap_flag_Iteration && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTounsignedInt(soap, "wsse:Iteration", &a->Iteration, "xsd:unsignedInt")) - { soap_flag_Iteration--; - continue; - } - } - if (soap_flag_wsu__Created && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsu:Created", (char**)&a->wsu__Created, "xsd:string")) - { soap_flag_wsu__Created--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct _wsse__UsernameToken *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsse__UsernameToken, SOAP_TYPE__wsse__UsernameToken, sizeof(struct _wsse__UsernameToken), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _wsse__UsernameToken * SOAP_FMAC2 soap_instantiate__wsse__UsernameToken(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsse__UsernameToken(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsse__UsernameToken *p; - size_t k = sizeof(struct _wsse__UsernameToken); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsse__UsernameToken, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsse__UsernameToken); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsse__UsernameToken, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsse__UsernameToken location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__UsernameToken(struct soap *soap, const struct _wsse__UsernameToken *a, const char *tag, const char *type) -{ - if (soap_out__wsse__UsernameToken(soap, tag ? tag : "wsse:UsernameToken", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsse__UsernameToken * SOAP_FMAC4 soap_get__wsse__UsernameToken(struct soap *soap, struct _wsse__UsernameToken *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsse__UsernameToken(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsse__EncodedString(struct soap *soap, struct wsse__EncodedString *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default_string(soap, &a->EncodingType); - soap_default_string(soap, &a->wsu__Id); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsse__EncodedString(struct soap *soap, const struct wsse__EncodedString *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsse__EncodedString(struct soap *soap, const char *tag, int id, const struct wsse__EncodedString *a, const char *type) -{ - if (a->EncodingType) - soap_set_attr(soap, "EncodingType", soap_string2s(soap, a->EncodingType), 1); - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct wsse__EncodedString * SOAP_FMAC4 soap_in_wsse__EncodedString(struct soap *soap, const char *tag, struct wsse__EncodedString *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct wsse__EncodedString *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsse__EncodedString, sizeof(struct wsse__EncodedString), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_wsse__EncodedString(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "EncodingType", 1, 0), &a->EncodingType)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "wsse:EncodedString")) - return NULL; - return a; -} - -SOAP_FMAC1 struct wsse__EncodedString * SOAP_FMAC2 soap_instantiate_wsse__EncodedString(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsse__EncodedString(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsse__EncodedString *p; - size_t k = sizeof(struct wsse__EncodedString); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsse__EncodedString, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsse__EncodedString); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsse__EncodedString, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsse__EncodedString location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsse__EncodedString(struct soap *soap, const struct wsse__EncodedString *a, const char *tag, const char *type) -{ - if (soap_out_wsse__EncodedString(soap, tag ? tag : "wsse:EncodedString", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsse__EncodedString * SOAP_FMAC4 soap_get_wsse__EncodedString(struct soap *soap, struct wsse__EncodedString *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsse__EncodedString(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsu__Timestamp(struct soap *soap, struct _wsu__Timestamp *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->wsu__Id); - soap_default_string(soap, &a->Created); - soap_default_string(soap, &a->Expires); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsu__Timestamp(struct soap *soap, const struct _wsu__Timestamp *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->Created); - soap_serialize_string(soap, (char*const*)&a->Expires); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsu__Timestamp(struct soap *soap, const char *tag, int id, const struct _wsu__Timestamp *a, const char *type) -{ - if (a->wsu__Id) - soap_set_attr(soap, "wsu:Id", soap_string2s(soap, a->wsu__Id), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE__wsu__Timestamp), type)) - return soap->error; - if (soap_out_string(soap, "wsu:Created", -1, (char*const*)&a->Created, "")) - return soap->error; - if (soap_out_string(soap, "wsu:Expires", -1, (char*const*)&a->Expires, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct _wsu__Timestamp * SOAP_FMAC4 soap_in__wsu__Timestamp(struct soap *soap, const char *tag, struct _wsu__Timestamp *a, const char *type) -{ - size_t soap_flag_Created = 1; - size_t soap_flag_Expires = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct _wsu__Timestamp*)soap_id_enter(soap, soap->id, a, SOAP_TYPE__wsu__Timestamp, sizeof(struct _wsu__Timestamp), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default__wsu__Timestamp(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "wsu:Id", 1, 0), &a->wsu__Id)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Created && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsu:Created", (char**)&a->Created, "xsd:string")) - { soap_flag_Created--; - continue; - } - } - if (soap_flag_Expires && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsu:Expires", (char**)&a->Expires, "xsd:string")) - { soap_flag_Expires--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct _wsu__Timestamp *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE__wsu__Timestamp, SOAP_TYPE__wsu__Timestamp, sizeof(struct _wsu__Timestamp), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct _wsu__Timestamp * SOAP_FMAC2 soap_instantiate__wsu__Timestamp(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate__wsu__Timestamp(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct _wsu__Timestamp *p; - size_t k = sizeof(struct _wsu__Timestamp); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE__wsu__Timestamp, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct _wsu__Timestamp); - } - else - { p = SOAP_NEW_ARRAY(soap, struct _wsu__Timestamp, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct _wsu__Timestamp location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsu__Timestamp(struct soap *soap, const struct _wsu__Timestamp *a, const char *tag, const char *type) -{ - if (soap_out__wsu__Timestamp(soap, tag ? tag : "wsu:Timestamp", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct _wsu__Timestamp * SOAP_FMAC4 soap_get__wsu__Timestamp(struct soap *soap, struct _wsu__Timestamp *p, const char *tag, const char *type) -{ - if ((p = soap_in__wsu__Timestamp(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__ResolveMatches(struct soap *soap, struct __wsdd__ResolveMatches *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsdd__ResolveMatches = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__ResolveMatches(struct soap *soap, const struct __wsdd__ResolveMatches *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__ResolveMatchesType(soap, &a->wsdd__ResolveMatches); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__ResolveMatches(struct soap *soap, const char *tag, int id, const struct __wsdd__ResolveMatches *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTowsdd__ResolveMatchesType(soap, "wsdd:ResolveMatches", -1, &a->wsdd__ResolveMatches, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__ResolveMatches * SOAP_FMAC4 soap_in___wsdd__ResolveMatches(struct soap *soap, const char *tag, struct __wsdd__ResolveMatches *a, const char *type) -{ - size_t soap_flag_wsdd__ResolveMatches = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __wsdd__ResolveMatches*)soap_id_enter(soap, "", a, SOAP_TYPE___wsdd__ResolveMatches, sizeof(struct __wsdd__ResolveMatches), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___wsdd__ResolveMatches(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsdd__ResolveMatches && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ResolveMatchesType(soap, "wsdd:ResolveMatches", &a->wsdd__ResolveMatches, "wsdd:ResolveMatchesType")) - { soap_flag_wsdd__ResolveMatches--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __wsdd__ResolveMatches * SOAP_FMAC2 soap_instantiate___wsdd__ResolveMatches(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___wsdd__ResolveMatches(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __wsdd__ResolveMatches *p; - size_t k = sizeof(struct __wsdd__ResolveMatches); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___wsdd__ResolveMatches, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __wsdd__ResolveMatches); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __wsdd__ResolveMatches, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __wsdd__ResolveMatches location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__ResolveMatches(struct soap *soap, const struct __wsdd__ResolveMatches *a, const char *tag, const char *type) -{ - if (soap_out___wsdd__ResolveMatches(soap, tag ? tag : "-wsdd:ResolveMatches", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__ResolveMatches * SOAP_FMAC4 soap_get___wsdd__ResolveMatches(struct soap *soap, struct __wsdd__ResolveMatches *p, const char *tag, const char *type) -{ - if ((p = soap_in___wsdd__ResolveMatches(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Resolve(struct soap *soap, struct __wsdd__Resolve *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsdd__Resolve = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Resolve(struct soap *soap, const struct __wsdd__Resolve *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__ResolveType(soap, &a->wsdd__Resolve); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Resolve(struct soap *soap, const char *tag, int id, const struct __wsdd__Resolve *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTowsdd__ResolveType(soap, "wsdd:Resolve", -1, &a->wsdd__Resolve, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Resolve * SOAP_FMAC4 soap_in___wsdd__Resolve(struct soap *soap, const char *tag, struct __wsdd__Resolve *a, const char *type) -{ - size_t soap_flag_wsdd__Resolve = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __wsdd__Resolve*)soap_id_enter(soap, "", a, SOAP_TYPE___wsdd__Resolve, sizeof(struct __wsdd__Resolve), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___wsdd__Resolve(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsdd__Resolve && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ResolveType(soap, "wsdd:Resolve", &a->wsdd__Resolve, "wsdd:ResolveType")) - { soap_flag_wsdd__Resolve--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __wsdd__Resolve * SOAP_FMAC2 soap_instantiate___wsdd__Resolve(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___wsdd__Resolve(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __wsdd__Resolve *p; - size_t k = sizeof(struct __wsdd__Resolve); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___wsdd__Resolve, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __wsdd__Resolve); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __wsdd__Resolve, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __wsdd__Resolve location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Resolve(struct soap *soap, const struct __wsdd__Resolve *a, const char *tag, const char *type) -{ - if (soap_out___wsdd__Resolve(soap, tag ? tag : "-wsdd:Resolve", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Resolve * SOAP_FMAC4 soap_get___wsdd__Resolve(struct soap *soap, struct __wsdd__Resolve *p, const char *tag, const char *type) -{ - if ((p = soap_in___wsdd__Resolve(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__ProbeMatches(struct soap *soap, struct __wsdd__ProbeMatches *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsdd__ProbeMatches = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__ProbeMatches(struct soap *soap, const struct __wsdd__ProbeMatches *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__ProbeMatchesType(soap, &a->wsdd__ProbeMatches); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__ProbeMatches(struct soap *soap, const char *tag, int id, const struct __wsdd__ProbeMatches *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTowsdd__ProbeMatchesType(soap, "wsdd:ProbeMatches", -1, &a->wsdd__ProbeMatches, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__ProbeMatches * SOAP_FMAC4 soap_in___wsdd__ProbeMatches(struct soap *soap, const char *tag, struct __wsdd__ProbeMatches *a, const char *type) -{ - size_t soap_flag_wsdd__ProbeMatches = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __wsdd__ProbeMatches*)soap_id_enter(soap, "", a, SOAP_TYPE___wsdd__ProbeMatches, sizeof(struct __wsdd__ProbeMatches), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___wsdd__ProbeMatches(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsdd__ProbeMatches && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ProbeMatchesType(soap, "wsdd:ProbeMatches", &a->wsdd__ProbeMatches, "wsdd:ProbeMatchesType")) - { soap_flag_wsdd__ProbeMatches--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __wsdd__ProbeMatches * SOAP_FMAC2 soap_instantiate___wsdd__ProbeMatches(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___wsdd__ProbeMatches(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __wsdd__ProbeMatches *p; - size_t k = sizeof(struct __wsdd__ProbeMatches); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___wsdd__ProbeMatches, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __wsdd__ProbeMatches); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __wsdd__ProbeMatches, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __wsdd__ProbeMatches location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__ProbeMatches(struct soap *soap, const struct __wsdd__ProbeMatches *a, const char *tag, const char *type) -{ - if (soap_out___wsdd__ProbeMatches(soap, tag ? tag : "-wsdd:ProbeMatches", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__ProbeMatches * SOAP_FMAC4 soap_get___wsdd__ProbeMatches(struct soap *soap, struct __wsdd__ProbeMatches *p, const char *tag, const char *type) -{ - if ((p = soap_in___wsdd__ProbeMatches(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Probe(struct soap *soap, struct __wsdd__Probe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsdd__Probe = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Probe(struct soap *soap, const struct __wsdd__Probe *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__ProbeType(soap, &a->wsdd__Probe); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Probe(struct soap *soap, const char *tag, int id, const struct __wsdd__Probe *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTowsdd__ProbeType(soap, "wsdd:Probe", -1, &a->wsdd__Probe, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Probe * SOAP_FMAC4 soap_in___wsdd__Probe(struct soap *soap, const char *tag, struct __wsdd__Probe *a, const char *type) -{ - size_t soap_flag_wsdd__Probe = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __wsdd__Probe*)soap_id_enter(soap, "", a, SOAP_TYPE___wsdd__Probe, sizeof(struct __wsdd__Probe), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___wsdd__Probe(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsdd__Probe && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ProbeType(soap, "wsdd:Probe", &a->wsdd__Probe, "wsdd:ProbeType")) - { soap_flag_wsdd__Probe--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __wsdd__Probe * SOAP_FMAC2 soap_instantiate___wsdd__Probe(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___wsdd__Probe(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __wsdd__Probe *p; - size_t k = sizeof(struct __wsdd__Probe); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___wsdd__Probe, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __wsdd__Probe); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __wsdd__Probe, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __wsdd__Probe location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Probe(struct soap *soap, const struct __wsdd__Probe *a, const char *tag, const char *type) -{ - if (soap_out___wsdd__Probe(soap, tag ? tag : "-wsdd:Probe", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Probe * SOAP_FMAC4 soap_get___wsdd__Probe(struct soap *soap, struct __wsdd__Probe *p, const char *tag, const char *type) -{ - if ((p = soap_in___wsdd__Probe(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Bye(struct soap *soap, struct __wsdd__Bye *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsdd__Bye = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Bye(struct soap *soap, const struct __wsdd__Bye *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__ByeType(soap, &a->wsdd__Bye); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Bye(struct soap *soap, const char *tag, int id, const struct __wsdd__Bye *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTowsdd__ByeType(soap, "wsdd:Bye", -1, &a->wsdd__Bye, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Bye * SOAP_FMAC4 soap_in___wsdd__Bye(struct soap *soap, const char *tag, struct __wsdd__Bye *a, const char *type) -{ - size_t soap_flag_wsdd__Bye = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __wsdd__Bye*)soap_id_enter(soap, "", a, SOAP_TYPE___wsdd__Bye, sizeof(struct __wsdd__Bye), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___wsdd__Bye(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsdd__Bye && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ByeType(soap, "wsdd:Bye", &a->wsdd__Bye, "wsdd:ByeType")) - { soap_flag_wsdd__Bye--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __wsdd__Bye * SOAP_FMAC2 soap_instantiate___wsdd__Bye(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___wsdd__Bye(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __wsdd__Bye *p; - size_t k = sizeof(struct __wsdd__Bye); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___wsdd__Bye, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __wsdd__Bye); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __wsdd__Bye, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __wsdd__Bye location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Bye(struct soap *soap, const struct __wsdd__Bye *a, const char *tag, const char *type) -{ - if (soap_out___wsdd__Bye(soap, tag ? tag : "-wsdd:Bye", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Bye * SOAP_FMAC4 soap_get___wsdd__Bye(struct soap *soap, struct __wsdd__Bye *p, const char *tag, const char *type) -{ - if ((p = soap_in___wsdd__Bye(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Hello(struct soap *soap, struct __wsdd__Hello *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->wsdd__Hello = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Hello(struct soap *soap, const struct __wsdd__Hello *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__HelloType(soap, &a->wsdd__Hello); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Hello(struct soap *soap, const char *tag, int id, const struct __wsdd__Hello *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_out_PointerTowsdd__HelloType(soap, "wsdd:Hello", -1, &a->wsdd__Hello, "")) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Hello * SOAP_FMAC4 soap_in___wsdd__Hello(struct soap *soap, const char *tag, struct __wsdd__Hello *a, const char *type) -{ - size_t soap_flag_wsdd__Hello = 1; - short soap_flag; - (void)tag; (void)type; /* appease -Wall -Werror */ - a = (struct __wsdd__Hello*)soap_id_enter(soap, "", a, SOAP_TYPE___wsdd__Hello, sizeof(struct __wsdd__Hello), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default___wsdd__Hello(soap, a); - for (soap_flag = 0;; soap_flag = 1) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsdd__Hello && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__HelloType(soap, "wsdd:Hello", &a->wsdd__Hello, "wsdd:HelloType")) - { soap_flag_wsdd__Hello--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && soap_flag) - { soap->error = SOAP_OK; - break; - } - if (soap_flag && soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct __wsdd__Hello * SOAP_FMAC2 soap_instantiate___wsdd__Hello(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate___wsdd__Hello(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct __wsdd__Hello *p; - size_t k = sizeof(struct __wsdd__Hello); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE___wsdd__Hello, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct __wsdd__Hello); - } - else - { p = SOAP_NEW_ARRAY(soap, struct __wsdd__Hello, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct __wsdd__Hello location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Hello(struct soap *soap, const struct __wsdd__Hello *a, const char *tag, const char *type) -{ - if (soap_out___wsdd__Hello(soap, tag ? tag : "-wsdd:Hello", -2, a, type)) - return soap->error; - return SOAP_OK; -} - -SOAP_FMAC3 struct __wsdd__Hello * SOAP_FMAC4 soap_get___wsdd__Hello(struct soap *soap, struct __wsdd__Hello *p, const char *tag, const char *type) -{ - if ((p = soap_in___wsdd__Hello(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__AppSequence(struct soap *soap, const struct wsdd__AppSequenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__AppSequence(soap, tag ? tag : "wsdd:AppSequence", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Sig(struct soap *soap, const struct wsdd__SigType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__Sig(soap, tag ? tag : "wsdd:Sig", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Security(struct soap *soap, const struct wsdd__SecurityType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__Security(soap, tag ? tag : "wsdd:Security", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Scopes(struct soap *soap, const struct wsdd__ScopesType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__Scopes(soap, tag ? tag : "wsdd:Scopes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__ResolveMatches(struct soap *soap, const struct wsdd__ResolveMatchesType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__ResolveMatches(soap, tag ? tag : "wsdd:ResolveMatches", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Resolve(struct soap *soap, const struct wsdd__ResolveType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__Resolve(soap, tag ? tag : "wsdd:Resolve", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__ProbeMatches(struct soap *soap, const struct wsdd__ProbeMatchesType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__ProbeMatches(soap, tag ? tag : "wsdd:ProbeMatches", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Probe(struct soap *soap, const struct wsdd__ProbeType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__Probe(soap, tag ? tag : "wsdd:Probe", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Bye(struct soap *soap, const struct wsdd__ByeType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__Bye(soap, tag ? tag : "wsdd:Bye", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Hello(struct soap *soap, const struct wsdd__HelloType *a, const char *tag, const char *type) -{ - if (soap_out__wsdd__Hello(soap, tag ? tag : "wsdd:Hello", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__AppSequenceType(struct soap *soap, struct wsdd__AppSequenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_unsignedInt(soap, &a->InstanceId); - soap_default_string(soap, &a->SequenceId); - soap_default_unsignedInt(soap, &a->MessageNumber); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__AppSequenceType(struct soap *soap, const struct wsdd__AppSequenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__AppSequenceType(struct soap *soap, const char *tag, int id, const struct wsdd__AppSequenceType *a, const char *type) -{ - soap_set_attr(soap, "InstanceId", soap_unsignedInt2s(soap, a->InstanceId), 1); - if (a->SequenceId) - soap_set_attr(soap, "SequenceId", soap_string2s(soap, a->SequenceId), 1); - soap_set_attr(soap, "MessageNumber", soap_unsignedInt2s(soap, a->MessageNumber), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__AppSequenceType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__AppSequenceType * SOAP_FMAC4 soap_in_wsdd__AppSequenceType(struct soap *soap, const char *tag, struct wsdd__AppSequenceType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__AppSequenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__AppSequenceType, sizeof(struct wsdd__AppSequenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__AppSequenceType(soap, a); - if (soap_s2unsignedInt(soap, soap_attr_value(soap, "InstanceId", 5, 1), &a->InstanceId)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "SequenceId", 1, 0), &a->SequenceId)) - return NULL; - if (soap_s2unsignedInt(soap, soap_attr_value(soap, "MessageNumber", 5, 1), &a->MessageNumber)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsdd__AppSequenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__AppSequenceType, SOAP_TYPE_wsdd__AppSequenceType, sizeof(struct wsdd__AppSequenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__AppSequenceType * SOAP_FMAC2 soap_instantiate_wsdd__AppSequenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__AppSequenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__AppSequenceType *p; - size_t k = sizeof(struct wsdd__AppSequenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__AppSequenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__AppSequenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__AppSequenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__AppSequenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__AppSequenceType(struct soap *soap, const struct wsdd__AppSequenceType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__AppSequenceType(soap, tag ? tag : "wsdd:AppSequenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__AppSequenceType * SOAP_FMAC4 soap_get_wsdd__AppSequenceType(struct soap *soap, struct wsdd__AppSequenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__AppSequenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__SigType(struct soap *soap, struct wsdd__SigType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Scheme); - soap_default_string(soap, &a->KeyId); - soap_default_string(soap, &a->Refs); - soap_default_string(soap, &a->Sig); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__SigType(struct soap *soap, const struct wsdd__SigType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__SigType(struct soap *soap, const char *tag, int id, const struct wsdd__SigType *a, const char *type) -{ - soap_set_attr(soap, "Scheme", a->Scheme ? soap_string2s(soap, a->Scheme) : "", 1); - if (a->KeyId) - soap_set_attr(soap, "KeyId", soap_string2s(soap, a->KeyId), 1); - soap_set_attr(soap, "Refs", a->Refs ? soap_string2s(soap, a->Refs) : "", 1); - soap_set_attr(soap, "Sig", a->Sig ? soap_string2s(soap, a->Sig) : "", 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__SigType), type)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__SigType * SOAP_FMAC4 soap_in_wsdd__SigType(struct soap *soap, const char *tag, struct wsdd__SigType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__SigType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__SigType, sizeof(struct wsdd__SigType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__SigType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "Scheme", 1, 1), &a->Scheme)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "KeyId", 1, 0), &a->KeyId)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Refs", 1, 1), &a->Refs)) - return NULL; - if (soap_s2string(soap, soap_attr_value(soap, "Sig", 1, 1), &a->Sig)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsdd__SigType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__SigType, SOAP_TYPE_wsdd__SigType, sizeof(struct wsdd__SigType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__SigType * SOAP_FMAC2 soap_instantiate_wsdd__SigType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__SigType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__SigType *p; - size_t k = sizeof(struct wsdd__SigType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__SigType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__SigType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__SigType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__SigType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__SigType(struct soap *soap, const struct wsdd__SigType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__SigType(soap, tag ? tag : "wsdd:SigType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__SigType * SOAP_FMAC4 soap_get_wsdd__SigType(struct soap *soap, struct wsdd__SigType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__SigType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__SecurityType(struct soap *soap, struct wsdd__SecurityType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->Sig = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__SecurityType(struct soap *soap, const struct wsdd__SecurityType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__SigType(soap, &a->Sig); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__SecurityType(struct soap *soap, const char *tag, int id, const struct wsdd__SecurityType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__SecurityType), type)) - return soap->error; - if (soap_out_PointerTowsdd__SigType(soap, "wsdd:Sig", -1, &a->Sig, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__SecurityType * SOAP_FMAC4 soap_in_wsdd__SecurityType(struct soap *soap, const char *tag, struct wsdd__SecurityType *a, const char *type) -{ - size_t soap_flag_Sig = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__SecurityType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__SecurityType, sizeof(struct wsdd__SecurityType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__SecurityType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Sig && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__SigType(soap, "wsdd:Sig", &a->Sig, "wsdd:SigType")) - { soap_flag_Sig--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsdd__SecurityType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__SecurityType, SOAP_TYPE_wsdd__SecurityType, sizeof(struct wsdd__SecurityType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__SecurityType * SOAP_FMAC2 soap_instantiate_wsdd__SecurityType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__SecurityType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__SecurityType *p; - size_t k = sizeof(struct wsdd__SecurityType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__SecurityType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__SecurityType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__SecurityType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__SecurityType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__SecurityType(struct soap *soap, const struct wsdd__SecurityType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__SecurityType(soap, tag ? tag : "wsdd:SecurityType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__SecurityType * SOAP_FMAC4 soap_get_wsdd__SecurityType(struct soap *soap, struct wsdd__SecurityType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__SecurityType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ScopesType(struct soap *soap, struct wsdd__ScopesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_wsdd__UriListType(soap, &a->__item); - soap_default_string(soap, &a->MatchBy); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ScopesType(struct soap *soap, const struct wsdd__ScopesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_wsdd__UriListType(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ScopesType(struct soap *soap, const char *tag, int id, const struct wsdd__ScopesType *a, const char *type) -{ - if (a->MatchBy) - soap_set_attr(soap, "MatchBy", soap_string2s(soap, a->MatchBy), 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_wsdd__UriListType(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct wsdd__ScopesType * SOAP_FMAC4 soap_in_wsdd__ScopesType(struct soap *soap, const char *tag, struct wsdd__ScopesType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct wsdd__ScopesType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ScopesType, sizeof(struct wsdd__ScopesType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_wsdd__ScopesType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "MatchBy", 1, 0), &a->MatchBy)) - return NULL; - if (!soap_in_wsdd__UriListType(soap, tag, (char**)&a->__item, "wsdd:ScopesType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct wsdd__ScopesType * SOAP_FMAC2 soap_instantiate_wsdd__ScopesType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ScopesType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ScopesType *p; - size_t k = sizeof(struct wsdd__ScopesType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ScopesType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ScopesType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ScopesType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ScopesType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ScopesType(struct soap *soap, const struct wsdd__ScopesType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ScopesType(soap, tag ? tag : "wsdd:ScopesType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ScopesType * SOAP_FMAC4 soap_get_wsdd__ScopesType(struct soap *soap, struct wsdd__ScopesType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ScopesType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ResolveMatchType(struct soap *soap, struct wsdd__ResolveMatchType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_default_wsdd__QNameListType(soap, &a->Types); - a->Scopes = NULL; - soap_default_wsdd__UriListType(soap, &a->XAddrs); - soap_default_unsignedInt(soap, &a->MetadataVersion); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveMatchType(struct soap *soap, const struct wsdd__ResolveMatchType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_serialize_wsdd__QNameListType(soap, (char*const*)&a->Types); - soap_serialize_PointerTowsdd__ScopesType(soap, &a->Scopes); - soap_serialize_wsdd__UriListType(soap, (char*const*)&a->XAddrs); - soap_embedded(soap, &a->MetadataVersion, SOAP_TYPE_unsignedInt); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ResolveMatchType(struct soap *soap, const char *tag, int id, const struct wsdd__ResolveMatchType *a, const char *type) -{ - const char *soap_tmp_Types; - soap_tmp_Types = soap_QName2s(soap, a->Types); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__ResolveMatchType), type)) - return soap->error; - if (soap_out__wsa__EndpointReference(soap, "wsa:EndpointReference", -1, &a->wsa__EndpointReference, "")) - return soap->error; - if (soap_out_wsdd__QNameListType(soap, "wsdd:Types", -1, (char*const*)(void*)&soap_tmp_Types, "")) - return soap->error; - if (soap_out_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", -1, &a->Scopes, "")) - return soap->error; - if (soap_out_wsdd__UriListType(soap, "wsdd:XAddrs", -1, (char*const*)&a->XAddrs, "")) - return soap->error; - if (soap_out_unsignedInt(soap, "wsdd:MetadataVersion", -1, &a->MetadataVersion, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__ResolveMatchType * SOAP_FMAC4 soap_in_wsdd__ResolveMatchType(struct soap *soap, const char *tag, struct wsdd__ResolveMatchType *a, const char *type) -{ - size_t soap_flag_wsa__EndpointReference = 1; - size_t soap_flag_Types = 1; - size_t soap_flag_Scopes = 1; - size_t soap_flag_XAddrs = 1; - size_t soap_flag_MetadataVersion = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__ResolveMatchType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ResolveMatchType, sizeof(struct wsdd__ResolveMatchType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__ResolveMatchType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsa__EndpointReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__wsa__EndpointReference(soap, "wsa:EndpointReference", &a->wsa__EndpointReference, "")) - { soap_flag_wsa__EndpointReference--; - continue; - } - } - if (soap_flag_Types && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__QNameListType(soap, "wsdd:Types", (char**)&a->Types, "xsd:QName")) - { soap_flag_Types--; - continue; - } - } - if (soap_flag_Scopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", &a->Scopes, "wsdd:ScopesType")) - { soap_flag_Scopes--; - continue; - } - } - if (soap_flag_XAddrs && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__UriListType(soap, "wsdd:XAddrs", (char**)&a->XAddrs, "wsdd:UriListType")) - { soap_flag_XAddrs--; - continue; - } - } - if (soap_flag_MetadataVersion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_unsignedInt(soap, "wsdd:MetadataVersion", &a->MetadataVersion, "xsd:unsignedInt")) - { soap_flag_MetadataVersion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_wsa__EndpointReference > 0 || soap_flag_MetadataVersion > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct wsdd__ResolveMatchType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__ResolveMatchType, SOAP_TYPE_wsdd__ResolveMatchType, sizeof(struct wsdd__ResolveMatchType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__ResolveMatchType * SOAP_FMAC2 soap_instantiate_wsdd__ResolveMatchType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ResolveMatchType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ResolveMatchType *p; - size_t k = sizeof(struct wsdd__ResolveMatchType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ResolveMatchType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ResolveMatchType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ResolveMatchType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ResolveMatchType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ResolveMatchType(struct soap *soap, const struct wsdd__ResolveMatchType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ResolveMatchType(soap, tag ? tag : "wsdd:ResolveMatchType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ResolveMatchType * SOAP_FMAC4 soap_get_wsdd__ResolveMatchType(struct soap *soap, struct wsdd__ResolveMatchType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ResolveMatchType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ResolveMatchesType(struct soap *soap, struct wsdd__ResolveMatchesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->ResolveMatch = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveMatchesType(struct soap *soap, const struct wsdd__ResolveMatchesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsdd__ResolveMatchType(soap, &a->ResolveMatch); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ResolveMatchesType(struct soap *soap, const char *tag, int id, const struct wsdd__ResolveMatchesType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__ResolveMatchesType), type)) - return soap->error; - if (soap_out_PointerTowsdd__ResolveMatchType(soap, "wsdd:ResolveMatch", -1, &a->ResolveMatch, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__ResolveMatchesType * SOAP_FMAC4 soap_in_wsdd__ResolveMatchesType(struct soap *soap, const char *tag, struct wsdd__ResolveMatchesType *a, const char *type) -{ - size_t soap_flag_ResolveMatch = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__ResolveMatchesType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ResolveMatchesType, sizeof(struct wsdd__ResolveMatchesType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__ResolveMatchesType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_ResolveMatch && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ResolveMatchType(soap, "wsdd:ResolveMatch", &a->ResolveMatch, "wsdd:ResolveMatchType")) - { soap_flag_ResolveMatch--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsdd__ResolveMatchesType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__ResolveMatchesType, SOAP_TYPE_wsdd__ResolveMatchesType, sizeof(struct wsdd__ResolveMatchesType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__ResolveMatchesType * SOAP_FMAC2 soap_instantiate_wsdd__ResolveMatchesType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ResolveMatchesType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ResolveMatchesType *p; - size_t k = sizeof(struct wsdd__ResolveMatchesType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ResolveMatchesType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ResolveMatchesType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ResolveMatchesType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ResolveMatchesType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ResolveMatchesType(struct soap *soap, const struct wsdd__ResolveMatchesType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ResolveMatchesType(soap, tag ? tag : "wsdd:ResolveMatchesType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ResolveMatchesType * SOAP_FMAC4 soap_get_wsdd__ResolveMatchesType(struct soap *soap, struct wsdd__ResolveMatchesType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ResolveMatchesType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ResolveType(struct soap *soap, struct wsdd__ResolveType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__wsa__EndpointReference(soap, &a->wsa__EndpointReference); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveType(struct soap *soap, const struct wsdd__ResolveType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__wsa__EndpointReference(soap, &a->wsa__EndpointReference); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ResolveType(struct soap *soap, const char *tag, int id, const struct wsdd__ResolveType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__ResolveType), type)) - return soap->error; - if (soap_out__wsa__EndpointReference(soap, "wsa:EndpointReference", -1, &a->wsa__EndpointReference, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__ResolveType * SOAP_FMAC4 soap_in_wsdd__ResolveType(struct soap *soap, const char *tag, struct wsdd__ResolveType *a, const char *type) -{ - size_t soap_flag_wsa__EndpointReference = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__ResolveType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ResolveType, sizeof(struct wsdd__ResolveType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__ResolveType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsa__EndpointReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__wsa__EndpointReference(soap, "wsa:EndpointReference", &a->wsa__EndpointReference, "")) - { soap_flag_wsa__EndpointReference--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_wsa__EndpointReference > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct wsdd__ResolveType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__ResolveType, SOAP_TYPE_wsdd__ResolveType, sizeof(struct wsdd__ResolveType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__ResolveType * SOAP_FMAC2 soap_instantiate_wsdd__ResolveType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ResolveType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ResolveType *p; - size_t k = sizeof(struct wsdd__ResolveType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ResolveType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ResolveType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ResolveType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ResolveType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ResolveType(struct soap *soap, const struct wsdd__ResolveType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ResolveType(soap, tag ? tag : "wsdd:ResolveType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ResolveType * SOAP_FMAC4 soap_get_wsdd__ResolveType(struct soap *soap, struct wsdd__ResolveType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ResolveType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ProbeMatchType(struct soap *soap, struct wsdd__ProbeMatchType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_default_wsdd__QNameListType(soap, &a->Types); - a->Scopes = NULL; - soap_default_wsdd__UriListType(soap, &a->XAddrs); - soap_default_unsignedInt(soap, &a->MetadataVersion); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeMatchType(struct soap *soap, const struct wsdd__ProbeMatchType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_serialize_wsdd__QNameListType(soap, (char*const*)&a->Types); - soap_serialize_PointerTowsdd__ScopesType(soap, &a->Scopes); - soap_serialize_wsdd__UriListType(soap, (char*const*)&a->XAddrs); - soap_embedded(soap, &a->MetadataVersion, SOAP_TYPE_unsignedInt); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ProbeMatchType(struct soap *soap, const char *tag, int id, const struct wsdd__ProbeMatchType *a, const char *type) -{ - const char *soap_tmp_Types; - soap_tmp_Types = soap_QName2s(soap, a->Types); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__ProbeMatchType), type)) - return soap->error; - if (soap_out__wsa__EndpointReference(soap, "wsa:EndpointReference", -1, &a->wsa__EndpointReference, "")) - return soap->error; - if (soap_out_wsdd__QNameListType(soap, "wsdd:Types", -1, (char*const*)(void*)&soap_tmp_Types, "")) - return soap->error; - if (soap_out_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", -1, &a->Scopes, "")) - return soap->error; - if (soap_out_wsdd__UriListType(soap, "wsdd:XAddrs", -1, (char*const*)&a->XAddrs, "")) - return soap->error; - if (soap_out_unsignedInt(soap, "wsdd:MetadataVersion", -1, &a->MetadataVersion, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__ProbeMatchType * SOAP_FMAC4 soap_in_wsdd__ProbeMatchType(struct soap *soap, const char *tag, struct wsdd__ProbeMatchType *a, const char *type) -{ - size_t soap_flag_wsa__EndpointReference = 1; - size_t soap_flag_Types = 1; - size_t soap_flag_Scopes = 1; - size_t soap_flag_XAddrs = 1; - size_t soap_flag_MetadataVersion = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__ProbeMatchType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ProbeMatchType, sizeof(struct wsdd__ProbeMatchType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__ProbeMatchType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsa__EndpointReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__wsa__EndpointReference(soap, "wsa:EndpointReference", &a->wsa__EndpointReference, "")) - { soap_flag_wsa__EndpointReference--; - continue; - } - } - if (soap_flag_Types && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__QNameListType(soap, "wsdd:Types", (char**)&a->Types, "xsd:QName")) - { soap_flag_Types--; - continue; - } - } - if (soap_flag_Scopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", &a->Scopes, "wsdd:ScopesType")) - { soap_flag_Scopes--; - continue; - } - } - if (soap_flag_XAddrs && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__UriListType(soap, "wsdd:XAddrs", (char**)&a->XAddrs, "wsdd:UriListType")) - { soap_flag_XAddrs--; - continue; - } - } - if (soap_flag_MetadataVersion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_unsignedInt(soap, "wsdd:MetadataVersion", &a->MetadataVersion, "xsd:unsignedInt")) - { soap_flag_MetadataVersion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_wsa__EndpointReference > 0 || soap_flag_MetadataVersion > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct wsdd__ProbeMatchType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__ProbeMatchType, SOAP_TYPE_wsdd__ProbeMatchType, sizeof(struct wsdd__ProbeMatchType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__ProbeMatchType * SOAP_FMAC2 soap_instantiate_wsdd__ProbeMatchType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ProbeMatchType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ProbeMatchType *p; - size_t k = sizeof(struct wsdd__ProbeMatchType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ProbeMatchType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ProbeMatchType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ProbeMatchType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ProbeMatchType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ProbeMatchType(struct soap *soap, const struct wsdd__ProbeMatchType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ProbeMatchType(soap, tag ? tag : "wsdd:ProbeMatchType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ProbeMatchType * SOAP_FMAC4 soap_get_wsdd__ProbeMatchType(struct soap *soap, struct wsdd__ProbeMatchType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ProbeMatchType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ProbeMatchesType(struct soap *soap, struct wsdd__ProbeMatchesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__sizeProbeMatch = 0; - a->ProbeMatch = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeMatchesType(struct soap *soap, const struct wsdd__ProbeMatchesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (a->ProbeMatch) - { int i; - for (i = 0; i < (int)a->__sizeProbeMatch; i++) - { - soap_embedded(soap, a->ProbeMatch + i, SOAP_TYPE_wsdd__ProbeMatchType); - soap_serialize_wsdd__ProbeMatchType(soap, a->ProbeMatch + i); - } - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ProbeMatchesType(struct soap *soap, const char *tag, int id, const struct wsdd__ProbeMatchesType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__ProbeMatchesType), type)) - return soap->error; - if (a->ProbeMatch) - { int i; - for (i = 0; i < (int)a->__sizeProbeMatch; i++) - if (soap_out_wsdd__ProbeMatchType(soap, "wsdd:ProbeMatch", -1, a->ProbeMatch + i, "")) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__ProbeMatchesType * SOAP_FMAC4 soap_in_wsdd__ProbeMatchesType(struct soap *soap, const char *tag, struct wsdd__ProbeMatchesType *a, const char *type) -{ - struct soap_blist *soap_blist_ProbeMatch = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__ProbeMatchesType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ProbeMatchesType, sizeof(struct wsdd__ProbeMatchesType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__ProbeMatchesType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_element_begin_in(soap, "wsdd:ProbeMatch", 1, NULL)) - { if (a->ProbeMatch == NULL) - { if (soap_blist_ProbeMatch == NULL) - soap_blist_ProbeMatch = soap_alloc_block(soap); - a->ProbeMatch = soap_block::push(soap, soap_blist_ProbeMatch); - if (a->ProbeMatch == NULL) - return NULL; - soap_default_wsdd__ProbeMatchType(soap, a->ProbeMatch); - } - soap_revert(soap); - if (soap_in_wsdd__ProbeMatchType(soap, "wsdd:ProbeMatch", a->ProbeMatch, "wsdd:ProbeMatchType")) - { a->__sizeProbeMatch++; - a->ProbeMatch = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->ProbeMatch) - soap_block::pop(soap, soap_blist_ProbeMatch); - if (a->__sizeProbeMatch) - { a->ProbeMatch = soap_new_wsdd__ProbeMatchType(soap, a->__sizeProbeMatch); - if (!a->ProbeMatch) - return NULL; - soap_block::save(soap, soap_blist_ProbeMatch, a->ProbeMatch); - } - else - { a->ProbeMatch = NULL; - if (soap_blist_ProbeMatch) - soap_block::end(soap, soap_blist_ProbeMatch); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsdd__ProbeMatchesType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__ProbeMatchesType, SOAP_TYPE_wsdd__ProbeMatchesType, sizeof(struct wsdd__ProbeMatchesType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__ProbeMatchesType * SOAP_FMAC2 soap_instantiate_wsdd__ProbeMatchesType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ProbeMatchesType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ProbeMatchesType *p; - size_t k = sizeof(struct wsdd__ProbeMatchesType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ProbeMatchesType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ProbeMatchesType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ProbeMatchesType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ProbeMatchesType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ProbeMatchesType(struct soap *soap, const struct wsdd__ProbeMatchesType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ProbeMatchesType(soap, tag ? tag : "wsdd:ProbeMatchesType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ProbeMatchesType * SOAP_FMAC4 soap_get_wsdd__ProbeMatchesType(struct soap *soap, struct wsdd__ProbeMatchesType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ProbeMatchesType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ProbeType(struct soap *soap, struct wsdd__ProbeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_wsdd__QNameListType(soap, &a->Types); - a->Scopes = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeType(struct soap *soap, const struct wsdd__ProbeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_wsdd__QNameListType(soap, (char*const*)&a->Types); - soap_serialize_PointerTowsdd__ScopesType(soap, &a->Scopes); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ProbeType(struct soap *soap, const char *tag, int id, const struct wsdd__ProbeType *a, const char *type) -{ - const char *soap_tmp_Types; - soap_tmp_Types = soap_QName2s(soap, a->Types); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__ProbeType), type)) - return soap->error; - if (soap_out_wsdd__QNameListType(soap, "wsdd:Types", -1, (char*const*)(void*)&soap_tmp_Types, "")) - return soap->error; - if (soap_out_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", -1, &a->Scopes, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__ProbeType * SOAP_FMAC4 soap_in_wsdd__ProbeType(struct soap *soap, const char *tag, struct wsdd__ProbeType *a, const char *type) -{ - size_t soap_flag_Types = 1; - size_t soap_flag_Scopes = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__ProbeType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ProbeType, sizeof(struct wsdd__ProbeType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__ProbeType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Types && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__QNameListType(soap, "wsdd:Types", (char**)&a->Types, "xsd:QName")) - { soap_flag_Types--; - continue; - } - } - if (soap_flag_Scopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", &a->Scopes, "wsdd:ScopesType")) - { soap_flag_Scopes--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsdd__ProbeType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__ProbeType, SOAP_TYPE_wsdd__ProbeType, sizeof(struct wsdd__ProbeType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__ProbeType * SOAP_FMAC2 soap_instantiate_wsdd__ProbeType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ProbeType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ProbeType *p; - size_t k = sizeof(struct wsdd__ProbeType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ProbeType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ProbeType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ProbeType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ProbeType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ProbeType(struct soap *soap, const struct wsdd__ProbeType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ProbeType(soap, tag ? tag : "wsdd:ProbeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ProbeType * SOAP_FMAC4 soap_get_wsdd__ProbeType(struct soap *soap, struct wsdd__ProbeType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ProbeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ByeType(struct soap *soap, struct wsdd__ByeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_default_wsdd__QNameListType(soap, &a->Types); - a->Scopes = NULL; - soap_default_wsdd__UriListType(soap, &a->XAddrs); - a->MetadataVersion = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ByeType(struct soap *soap, const struct wsdd__ByeType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_serialize_wsdd__QNameListType(soap, (char*const*)&a->Types); - soap_serialize_PointerTowsdd__ScopesType(soap, &a->Scopes); - soap_serialize_wsdd__UriListType(soap, (char*const*)&a->XAddrs); - soap_serialize_PointerTounsignedInt(soap, &a->MetadataVersion); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ByeType(struct soap *soap, const char *tag, int id, const struct wsdd__ByeType *a, const char *type) -{ - const char *soap_tmp_Types; - soap_tmp_Types = soap_QName2s(soap, a->Types); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__ByeType), type)) - return soap->error; - if (soap_out__wsa__EndpointReference(soap, "wsa:EndpointReference", -1, &a->wsa__EndpointReference, "")) - return soap->error; - if (soap_out_wsdd__QNameListType(soap, "wsdd:Types", -1, (char*const*)(void*)&soap_tmp_Types, "")) - return soap->error; - if (soap_out_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", -1, &a->Scopes, "")) - return soap->error; - if (soap_out_wsdd__UriListType(soap, "wsdd:XAddrs", -1, (char*const*)&a->XAddrs, "")) - return soap->error; - if (soap_out_PointerTounsignedInt(soap, "wsdd:MetadataVersion", -1, &a->MetadataVersion, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__ByeType * SOAP_FMAC4 soap_in_wsdd__ByeType(struct soap *soap, const char *tag, struct wsdd__ByeType *a, const char *type) -{ - size_t soap_flag_wsa__EndpointReference = 1; - size_t soap_flag_Types = 1; - size_t soap_flag_Scopes = 1; - size_t soap_flag_XAddrs = 1; - size_t soap_flag_MetadataVersion = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__ByeType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__ByeType, sizeof(struct wsdd__ByeType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__ByeType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsa__EndpointReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__wsa__EndpointReference(soap, "wsa:EndpointReference", &a->wsa__EndpointReference, "")) - { soap_flag_wsa__EndpointReference--; - continue; - } - } - if (soap_flag_Types && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__QNameListType(soap, "wsdd:Types", (char**)&a->Types, "xsd:QName")) - { soap_flag_Types--; - continue; - } - } - if (soap_flag_Scopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", &a->Scopes, "wsdd:ScopesType")) - { soap_flag_Scopes--; - continue; - } - } - if (soap_flag_XAddrs && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__UriListType(soap, "wsdd:XAddrs", (char**)&a->XAddrs, "wsdd:UriListType")) - { soap_flag_XAddrs--; - continue; - } - } - if (soap_flag_MetadataVersion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTounsignedInt(soap, "wsdd:MetadataVersion", &a->MetadataVersion, "xsd:unsignedInt")) - { soap_flag_MetadataVersion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_wsa__EndpointReference > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct wsdd__ByeType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__ByeType, SOAP_TYPE_wsdd__ByeType, sizeof(struct wsdd__ByeType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__ByeType * SOAP_FMAC2 soap_instantiate_wsdd__ByeType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__ByeType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__ByeType *p; - size_t k = sizeof(struct wsdd__ByeType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__ByeType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__ByeType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__ByeType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__ByeType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ByeType(struct soap *soap, const struct wsdd__ByeType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__ByeType(soap, tag ? tag : "wsdd:ByeType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__ByeType * SOAP_FMAC4 soap_get_wsdd__ByeType(struct soap *soap, struct wsdd__ByeType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__ByeType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__HelloType(struct soap *soap, struct wsdd__HelloType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_default_wsdd__QNameListType(soap, &a->Types); - a->Scopes = NULL; - soap_default_wsdd__UriListType(soap, &a->XAddrs); - soap_default_unsignedInt(soap, &a->MetadataVersion); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__HelloType(struct soap *soap, const struct wsdd__HelloType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__wsa__EndpointReference(soap, &a->wsa__EndpointReference); - soap_serialize_wsdd__QNameListType(soap, (char*const*)&a->Types); - soap_serialize_PointerTowsdd__ScopesType(soap, &a->Scopes); - soap_serialize_wsdd__UriListType(soap, (char*const*)&a->XAddrs); - soap_embedded(soap, &a->MetadataVersion, SOAP_TYPE_unsignedInt); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__HelloType(struct soap *soap, const char *tag, int id, const struct wsdd__HelloType *a, const char *type) -{ - const char *soap_tmp_Types; - soap_tmp_Types = soap_QName2s(soap, a->Types); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsdd__HelloType), type)) - return soap->error; - if (soap_out__wsa__EndpointReference(soap, "wsa:EndpointReference", -1, &a->wsa__EndpointReference, "")) - return soap->error; - if (soap_out_wsdd__QNameListType(soap, "wsdd:Types", -1, (char*const*)(void*)&soap_tmp_Types, "")) - return soap->error; - if (soap_out_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", -1, &a->Scopes, "")) - return soap->error; - if (soap_out_wsdd__UriListType(soap, "wsdd:XAddrs", -1, (char*const*)&a->XAddrs, "")) - return soap->error; - if (soap_out_unsignedInt(soap, "wsdd:MetadataVersion", -1, &a->MetadataVersion, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsdd__HelloType * SOAP_FMAC4 soap_in_wsdd__HelloType(struct soap *soap, const char *tag, struct wsdd__HelloType *a, const char *type) -{ - size_t soap_flag_wsa__EndpointReference = 1; - size_t soap_flag_Types = 1; - size_t soap_flag_Scopes = 1; - size_t soap_flag_XAddrs = 1; - size_t soap_flag_MetadataVersion = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsdd__HelloType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsdd__HelloType, sizeof(struct wsdd__HelloType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsdd__HelloType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsa__EndpointReference && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__wsa__EndpointReference(soap, "wsa:EndpointReference", &a->wsa__EndpointReference, "")) - { soap_flag_wsa__EndpointReference--; - continue; - } - } - if (soap_flag_Types && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__QNameListType(soap, "wsdd:Types", (char**)&a->Types, "xsd:QName")) - { soap_flag_Types--; - continue; - } - } - if (soap_flag_Scopes && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__ScopesType(soap, "wsdd:Scopes", &a->Scopes, "wsdd:ScopesType")) - { soap_flag_Scopes--; - continue; - } - } - if (soap_flag_XAddrs && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_wsdd__UriListType(soap, "wsdd:XAddrs", (char**)&a->XAddrs, "wsdd:UriListType")) - { soap_flag_XAddrs--; - continue; - } - } - if (soap_flag_MetadataVersion && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_unsignedInt(soap, "wsdd:MetadataVersion", &a->MetadataVersion, "xsd:unsignedInt")) - { soap_flag_MetadataVersion--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_wsa__EndpointReference > 0 || soap_flag_MetadataVersion > 0)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct wsdd__HelloType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsdd__HelloType, SOAP_TYPE_wsdd__HelloType, sizeof(struct wsdd__HelloType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsdd__HelloType * SOAP_FMAC2 soap_instantiate_wsdd__HelloType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsdd__HelloType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsdd__HelloType *p; - size_t k = sizeof(struct wsdd__HelloType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsdd__HelloType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsdd__HelloType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsdd__HelloType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsdd__HelloType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__HelloType(struct soap *soap, const struct wsdd__HelloType *a, const char *tag, const char *type) -{ - if (soap_out_wsdd__HelloType(soap, tag ? tag : "wsdd:HelloType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsdd__HelloType * SOAP_FMAC4 soap_get_wsdd__HelloType(struct soap *soap, struct wsdd__HelloType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsdd__HelloType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#ifndef WITH_NOGLOBAL - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__QName(soap, &a->faultcode); - soap_default_string(soap, &a->faultstring); - soap_default_string(soap, &a->faultactor); - a->detail = NULL; - a->SOAP_ENV__Code = NULL; - a->SOAP_ENV__Reason = NULL; - soap_default_string(soap, &a->SOAP_ENV__Node); - soap_default_string(soap, &a->SOAP_ENV__Role); - a->SOAP_ENV__Detail = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Fault(struct soap *soap, const struct SOAP_ENV__Fault *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__QName(soap, (char*const*)&a->faultcode); - soap_serialize_string(soap, (char*const*)&a->faultstring); - soap_serialize_string(soap, (char*const*)&a->faultactor); - soap_serialize_PointerToSOAP_ENV__Detail(soap, &a->detail); - soap_serialize_PointerToSOAP_ENV__Code(soap, &a->SOAP_ENV__Code); - soap_serialize_PointerToSOAP_ENV__Reason(soap, &a->SOAP_ENV__Reason); - soap_serialize_string(soap, (char*const*)&a->SOAP_ENV__Node); - soap_serialize_string(soap, (char*const*)&a->SOAP_ENV__Role); - soap_serialize_PointerToSOAP_ENV__Detail(soap, &a->SOAP_ENV__Detail); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Fault(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Fault *a, const char *type) -{ - const char *soap_tmp_faultcode; - soap_tmp_faultcode = soap_QName2s(soap, a->faultcode); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_SOAP_ENV__Fault), type)) - return soap->error; - if (soap_out__QName(soap, "faultcode", -1, (char*const*)(void*)&soap_tmp_faultcode, "")) - return soap->error; - if (soap_out_string(soap, "faultstring", -1, (char*const*)&a->faultstring, "")) - return soap->error; - if (soap_out_string(soap, "faultactor", -1, (char*const*)&a->faultactor, "")) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Detail(soap, "detail", -1, &a->detail, "")) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Code(soap, "SOAP-ENV:Code", -1, &a->SOAP_ENV__Code, "")) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Reason(soap, "SOAP-ENV:Reason", -1, &a->SOAP_ENV__Reason, "")) - return soap->error; - if (soap_out_string(soap, "SOAP-ENV:Node", -1, (char*const*)&a->SOAP_ENV__Node, "")) - return soap->error; - if (soap_out_string(soap, "SOAP-ENV:Role", -1, (char*const*)&a->SOAP_ENV__Role, "")) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Detail(soap, "SOAP-ENV:Detail", -1, &a->SOAP_ENV__Detail, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct SOAP_ENV__Fault * SOAP_FMAC4 soap_in_SOAP_ENV__Fault(struct soap *soap, const char *tag, struct SOAP_ENV__Fault *a, const char *type) -{ - size_t soap_flag_faultcode = 1; - size_t soap_flag_faultstring = 1; - size_t soap_flag_faultactor = 1; - size_t soap_flag_detail = 1; - size_t soap_flag_SOAP_ENV__Code = 1; - size_t soap_flag_SOAP_ENV__Reason = 1; - size_t soap_flag_SOAP_ENV__Node = 1; - size_t soap_flag_SOAP_ENV__Role = 1; - size_t soap_flag_SOAP_ENV__Detail = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct SOAP_ENV__Fault*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_SOAP_ENV__Fault, sizeof(struct SOAP_ENV__Fault), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_SOAP_ENV__Fault(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_faultcode && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__QName(soap, "faultcode", (char**)&a->faultcode, "xsd:QName")) - { soap_flag_faultcode--; - continue; - } - } - if (soap_flag_faultstring && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "faultstring", (char**)&a->faultstring, "xsd:string")) - { soap_flag_faultstring--; - continue; - } - } - if (soap_flag_faultactor && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "faultactor", (char**)&a->faultactor, "xsd:string")) - { soap_flag_faultactor--; - continue; - } - } - if (soap_flag_detail && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToSOAP_ENV__Detail(soap, "detail", &a->detail, "")) - { soap_flag_detail--; - continue; - } - } - if (soap_flag_SOAP_ENV__Code && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToSOAP_ENV__Code(soap, "SOAP-ENV:Code", &a->SOAP_ENV__Code, "")) - { soap_flag_SOAP_ENV__Code--; - continue; - } - } - if (soap_flag_SOAP_ENV__Reason && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToSOAP_ENV__Reason(soap, "SOAP-ENV:Reason", &a->SOAP_ENV__Reason, "")) - { soap_flag_SOAP_ENV__Reason--; - continue; - } - } - if (soap_flag_SOAP_ENV__Node && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "SOAP-ENV:Node", (char**)&a->SOAP_ENV__Node, "xsd:string")) - { soap_flag_SOAP_ENV__Node--; - continue; - } - } - if (soap_flag_SOAP_ENV__Role && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "SOAP-ENV:Role", (char**)&a->SOAP_ENV__Role, "xsd:string")) - { soap_flag_SOAP_ENV__Role--; - continue; - } - } - if (soap_flag_SOAP_ENV__Detail && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToSOAP_ENV__Detail(soap, "SOAP-ENV:Detail", &a->SOAP_ENV__Detail, "")) - { soap_flag_SOAP_ENV__Detail--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct SOAP_ENV__Fault *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_SOAP_ENV__Fault, SOAP_TYPE_SOAP_ENV__Fault, sizeof(struct SOAP_ENV__Fault), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct SOAP_ENV__Fault * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Fault(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_SOAP_ENV__Fault(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct SOAP_ENV__Fault *p; - size_t k = sizeof(struct SOAP_ENV__Fault); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_SOAP_ENV__Fault, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct SOAP_ENV__Fault); - } - else - { p = SOAP_NEW_ARRAY(soap, struct SOAP_ENV__Fault, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct SOAP_ENV__Fault location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Fault(struct soap *soap, const struct SOAP_ENV__Fault *a, const char *tag, const char *type) -{ - if (soap_out_SOAP_ENV__Fault(soap, tag ? tag : "SOAP-ENV:Fault", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct SOAP_ENV__Fault * SOAP_FMAC4 soap_get_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Fault(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#endif - -#ifndef WITH_NOGLOBAL - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->SOAP_ENV__Text); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Reason(struct soap *soap, const struct SOAP_ENV__Reason *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->SOAP_ENV__Text); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Reason(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Reason *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_SOAP_ENV__Reason), type)) - return soap->error; - if (soap->lang) - soap_set_attr(soap, "xml:lang", soap->lang, 1); - if (soap_out_string(soap, "SOAP-ENV:Text", -1, (char*const*)&a->SOAP_ENV__Text, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct SOAP_ENV__Reason * SOAP_FMAC4 soap_in_SOAP_ENV__Reason(struct soap *soap, const char *tag, struct SOAP_ENV__Reason *a, const char *type) -{ - size_t soap_flag_SOAP_ENV__Text = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct SOAP_ENV__Reason*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_SOAP_ENV__Reason, sizeof(struct SOAP_ENV__Reason), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_SOAP_ENV__Reason(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SOAP_ENV__Text && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "SOAP-ENV:Text", (char**)&a->SOAP_ENV__Text, "xsd:string")) - { soap_flag_SOAP_ENV__Text--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct SOAP_ENV__Reason *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_SOAP_ENV__Reason, SOAP_TYPE_SOAP_ENV__Reason, sizeof(struct SOAP_ENV__Reason), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct SOAP_ENV__Reason * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Reason(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_SOAP_ENV__Reason(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct SOAP_ENV__Reason *p; - size_t k = sizeof(struct SOAP_ENV__Reason); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_SOAP_ENV__Reason, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct SOAP_ENV__Reason); - } - else - { p = SOAP_NEW_ARRAY(soap, struct SOAP_ENV__Reason, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct SOAP_ENV__Reason location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Reason(struct soap *soap, const struct SOAP_ENV__Reason *a, const char *tag, const char *type) -{ - if (soap_out_SOAP_ENV__Reason(soap, tag ? tag : "SOAP-ENV:Reason", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct SOAP_ENV__Reason * SOAP_FMAC4 soap_get_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Reason(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#endif - -#ifndef WITH_NOGLOBAL - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__QName(soap, &a->SOAP_ENV__Value); - a->SOAP_ENV__Subcode = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Code(struct soap *soap, const struct SOAP_ENV__Code *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__QName(soap, (char*const*)&a->SOAP_ENV__Value); - soap_serialize_PointerToSOAP_ENV__Code(soap, &a->SOAP_ENV__Subcode); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Code(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Code *a, const char *type) -{ - const char *soap_tmp_SOAP_ENV__Value; - soap_tmp_SOAP_ENV__Value = soap_QName2s(soap, a->SOAP_ENV__Value); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_SOAP_ENV__Code), type)) - return soap->error; - if (soap_out__QName(soap, "SOAP-ENV:Value", -1, (char*const*)(void*)&soap_tmp_SOAP_ENV__Value, "")) - return soap->error; - if (soap_out_PointerToSOAP_ENV__Code(soap, "SOAP-ENV:Subcode", -1, &a->SOAP_ENV__Subcode, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct SOAP_ENV__Code * SOAP_FMAC4 soap_in_SOAP_ENV__Code(struct soap *soap, const char *tag, struct SOAP_ENV__Code *a, const char *type) -{ - size_t soap_flag_SOAP_ENV__Value = 1; - size_t soap_flag_SOAP_ENV__Subcode = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct SOAP_ENV__Code*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_SOAP_ENV__Code, sizeof(struct SOAP_ENV__Code), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_SOAP_ENV__Code(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_SOAP_ENV__Value && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__QName(soap, "SOAP-ENV:Value", (char**)&a->SOAP_ENV__Value, "xsd:QName")) - { soap_flag_SOAP_ENV__Value--; - continue; - } - } - if (soap_flag_SOAP_ENV__Subcode && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToSOAP_ENV__Code(soap, "SOAP-ENV:Subcode", &a->SOAP_ENV__Subcode, "")) - { soap_flag_SOAP_ENV__Subcode--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct SOAP_ENV__Code *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_SOAP_ENV__Code, SOAP_TYPE_SOAP_ENV__Code, sizeof(struct SOAP_ENV__Code), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct SOAP_ENV__Code * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Code(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_SOAP_ENV__Code(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct SOAP_ENV__Code *p; - size_t k = sizeof(struct SOAP_ENV__Code); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_SOAP_ENV__Code, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct SOAP_ENV__Code); - } - else - { p = SOAP_NEW_ARRAY(soap, struct SOAP_ENV__Code, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct SOAP_ENV__Code location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Code(struct soap *soap, const struct SOAP_ENV__Code *a, const char *tag, const char *type) -{ - if (soap_out_SOAP_ENV__Code(soap, tag ? tag : "SOAP-ENV:Code", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct SOAP_ENV__Code * SOAP_FMAC4 soap_get_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Code(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#endif - -#ifndef WITH_NOGLOBAL - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_xsd__anyAttribute(soap, &a->__anyAttribute); - a->wsnt__UnableToCreatePullPointFault = NULL; - a->wsnt__InvalidFilterFault = NULL; - a->wsnt__InvalidMessageContentExpressionFault = NULL; - a->wsnt__InvalidProducerPropertiesExpressionFault = NULL; - a->wsnt__InvalidTopicExpressionFault = NULL; - a->wsnt__NotifyMessageNotSupportedFault = NULL; - a->wsrfr__ResourceUnknownFault = NULL; - a->wsnt__SubscribeCreationFailedFault = NULL; - a->wsnt__TopicExpressionDialectUnknownFault = NULL; - a->wsnt__TopicNotSupportedFault = NULL; - a->wsnt__UnacceptableInitialTerminationTimeFault = NULL; - a->wsnt__UnrecognizedPolicyRequestFault = NULL; - a->wsnt__UnsupportedPolicyRequestFault = NULL; - a->wsnt__MultipleTopicsSpecifiedFault = NULL; - a->wsnt__NoCurrentMessageOnTopicFault = NULL; - a->wsnt__UnableToDestroyPullPointFault = NULL; - a->wsnt__UnableToGetMessagesFault = NULL; - a->tev__PullMessagesFaultResponse = NULL; - a->wsnt__PauseFailedFault = NULL; - a->wsnt__ResumeFailedFault = NULL; - a->wsnt__UnableToDestroySubscriptionFault = NULL; - a->wsnt__UnacceptableTerminationTimeFault = NULL; - a->__type = 0; - a->fault = NULL; - a->__any = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Detail(struct soap *soap, const struct SOAP_ENV__Detail *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerTowsnt__UnableToCreatePullPointFaultType(soap, &a->wsnt__UnableToCreatePullPointFault); - soap_serialize_PointerTowsnt__InvalidFilterFaultType(soap, &a->wsnt__InvalidFilterFault); - soap_serialize_PointerTowsnt__InvalidMessageContentExpressionFaultType(soap, &a->wsnt__InvalidMessageContentExpressionFault); - soap_serialize_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(soap, &a->wsnt__InvalidProducerPropertiesExpressionFault); - soap_serialize_PointerTowsnt__InvalidTopicExpressionFaultType(soap, &a->wsnt__InvalidTopicExpressionFault); - soap_serialize_PointerTowsnt__NotifyMessageNotSupportedFaultType(soap, &a->wsnt__NotifyMessageNotSupportedFault); - soap_serialize_PointerTowsrfr__ResourceUnknownFaultType(soap, &a->wsrfr__ResourceUnknownFault); - soap_serialize_PointerTowsnt__SubscribeCreationFailedFaultType(soap, &a->wsnt__SubscribeCreationFailedFault); - soap_serialize_PointerTowsnt__TopicExpressionDialectUnknownFaultType(soap, &a->wsnt__TopicExpressionDialectUnknownFault); - soap_serialize_PointerTowsnt__TopicNotSupportedFaultType(soap, &a->wsnt__TopicNotSupportedFault); - soap_serialize_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(soap, &a->wsnt__UnacceptableInitialTerminationTimeFault); - soap_serialize_PointerTowsnt__UnrecognizedPolicyRequestFaultType(soap, &a->wsnt__UnrecognizedPolicyRequestFault); - soap_serialize_PointerTowsnt__UnsupportedPolicyRequestFaultType(soap, &a->wsnt__UnsupportedPolicyRequestFault); - soap_serialize_PointerTowsnt__MultipleTopicsSpecifiedFaultType(soap, &a->wsnt__MultipleTopicsSpecifiedFault); - soap_serialize_PointerTowsnt__NoCurrentMessageOnTopicFaultType(soap, &a->wsnt__NoCurrentMessageOnTopicFault); - soap_serialize_PointerTowsnt__UnableToDestroyPullPointFaultType(soap, &a->wsnt__UnableToDestroyPullPointFault); - soap_serialize_PointerTowsnt__UnableToGetMessagesFaultType(soap, &a->wsnt__UnableToGetMessagesFault); - soap_serialize_PointerTo_tev__PullMessagesFaultResponse(soap, &a->tev__PullMessagesFaultResponse); - soap_serialize_PointerTowsnt__PauseFailedFaultType(soap, &a->wsnt__PauseFailedFault); - soap_serialize_PointerTowsnt__ResumeFailedFaultType(soap, &a->wsnt__ResumeFailedFault); - soap_serialize_PointerTowsnt__UnableToDestroySubscriptionFaultType(soap, &a->wsnt__UnableToDestroySubscriptionFault); - soap_serialize_PointerTowsnt__UnacceptableTerminationTimeFaultType(soap, &a->wsnt__UnacceptableTerminationTimeFault); - soap_markelement(soap, a->fault, a->__type); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Detail(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Detail *a, const char *type) -{ - if (soap_out_xsd__anyAttribute(soap, "-anyAttribute", -1, &a->__anyAttribute, "")) - return soap->error; - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_SOAP_ENV__Detail), type)) - return soap->error; - if (soap_out_PointerTowsnt__UnableToCreatePullPointFaultType(soap, "wsnt:UnableToCreatePullPointFault", -1, &a->wsnt__UnableToCreatePullPointFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__InvalidFilterFaultType(soap, "wsnt:InvalidFilterFault", -1, &a->wsnt__InvalidFilterFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__InvalidMessageContentExpressionFaultType(soap, "wsnt:InvalidMessageContentExpressionFault", -1, &a->wsnt__InvalidMessageContentExpressionFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(soap, "wsnt:InvalidProducerPropertiesExpressionFault", -1, &a->wsnt__InvalidProducerPropertiesExpressionFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__InvalidTopicExpressionFaultType(soap, "wsnt:InvalidTopicExpressionFault", -1, &a->wsnt__InvalidTopicExpressionFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__NotifyMessageNotSupportedFaultType(soap, "wsnt:NotifyMessageNotSupportedFault", -1, &a->wsnt__NotifyMessageNotSupportedFault, "")) - return soap->error; - if (soap_out_PointerTowsrfr__ResourceUnknownFaultType(soap, "wsrfr:ResourceUnknownFault", -1, &a->wsrfr__ResourceUnknownFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__SubscribeCreationFailedFaultType(soap, "wsnt:SubscribeCreationFailedFault", -1, &a->wsnt__SubscribeCreationFailedFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__TopicExpressionDialectUnknownFaultType(soap, "wsnt:TopicExpressionDialectUnknownFault", -1, &a->wsnt__TopicExpressionDialectUnknownFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__TopicNotSupportedFaultType(soap, "wsnt:TopicNotSupportedFault", -1, &a->wsnt__TopicNotSupportedFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(soap, "wsnt:UnacceptableInitialTerminationTimeFault", -1, &a->wsnt__UnacceptableInitialTerminationTimeFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__UnrecognizedPolicyRequestFaultType(soap, "wsnt:UnrecognizedPolicyRequestFault", -1, &a->wsnt__UnrecognizedPolicyRequestFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__UnsupportedPolicyRequestFaultType(soap, "wsnt:UnsupportedPolicyRequestFault", -1, &a->wsnt__UnsupportedPolicyRequestFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__MultipleTopicsSpecifiedFaultType(soap, "wsnt:MultipleTopicsSpecifiedFault", -1, &a->wsnt__MultipleTopicsSpecifiedFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__NoCurrentMessageOnTopicFaultType(soap, "wsnt:NoCurrentMessageOnTopicFault", -1, &a->wsnt__NoCurrentMessageOnTopicFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__UnableToDestroyPullPointFaultType(soap, "wsnt:UnableToDestroyPullPointFault", -1, &a->wsnt__UnableToDestroyPullPointFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__UnableToGetMessagesFaultType(soap, "wsnt:UnableToGetMessagesFault", -1, &a->wsnt__UnableToGetMessagesFault, "")) - return soap->error; - if (soap_out_PointerTo_tev__PullMessagesFaultResponse(soap, "tev:PullMessagesFaultResponse", -1, &a->tev__PullMessagesFaultResponse, "")) - return soap->error; - if (soap_out_PointerTowsnt__PauseFailedFaultType(soap, "wsnt:PauseFailedFault", -1, &a->wsnt__PauseFailedFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__ResumeFailedFaultType(soap, "wsnt:ResumeFailedFault", -1, &a->wsnt__ResumeFailedFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__UnableToDestroySubscriptionFaultType(soap, "wsnt:UnableToDestroySubscriptionFault", -1, &a->wsnt__UnableToDestroySubscriptionFault, "")) - return soap->error; - if (soap_out_PointerTowsnt__UnacceptableTerminationTimeFaultType(soap, "wsnt:UnacceptableTerminationTimeFault", -1, &a->wsnt__UnacceptableTerminationTimeFault, "")) - return soap->error; - if (soap_putelement(soap, a->fault, "fault", -1, a->__type)) - return soap->error; - if (soap_outliteral(soap, "-any", (char*const*)&a->__any, NULL)) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct SOAP_ENV__Detail * SOAP_FMAC4 soap_in_SOAP_ENV__Detail(struct soap *soap, const char *tag, struct SOAP_ENV__Detail *a, const char *type) -{ - size_t soap_flag_wsnt__UnableToCreatePullPointFault = 1; - size_t soap_flag_wsnt__InvalidFilterFault = 1; - size_t soap_flag_wsnt__InvalidMessageContentExpressionFault = 1; - size_t soap_flag_wsnt__InvalidProducerPropertiesExpressionFault = 1; - size_t soap_flag_wsnt__InvalidTopicExpressionFault = 1; - size_t soap_flag_wsnt__NotifyMessageNotSupportedFault = 1; - size_t soap_flag_wsrfr__ResourceUnknownFault = 1; - size_t soap_flag_wsnt__SubscribeCreationFailedFault = 1; - size_t soap_flag_wsnt__TopicExpressionDialectUnknownFault = 1; - size_t soap_flag_wsnt__TopicNotSupportedFault = 1; - size_t soap_flag_wsnt__UnacceptableInitialTerminationTimeFault = 1; - size_t soap_flag_wsnt__UnrecognizedPolicyRequestFault = 1; - size_t soap_flag_wsnt__UnsupportedPolicyRequestFault = 1; - size_t soap_flag_wsnt__MultipleTopicsSpecifiedFault = 1; - size_t soap_flag_wsnt__NoCurrentMessageOnTopicFault = 1; - size_t soap_flag_wsnt__UnableToDestroyPullPointFault = 1; - size_t soap_flag_wsnt__UnableToGetMessagesFault = 1; - size_t soap_flag_tev__PullMessagesFaultResponse = 1; - size_t soap_flag_wsnt__PauseFailedFault = 1; - size_t soap_flag_wsnt__ResumeFailedFault = 1; - size_t soap_flag_wsnt__UnableToDestroySubscriptionFault = 1; - size_t soap_flag_wsnt__UnacceptableTerminationTimeFault = 1; - size_t soap_flag_fault = 1; - size_t soap_flag___any = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct SOAP_ENV__Detail*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_SOAP_ENV__Detail, sizeof(struct SOAP_ENV__Detail), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_SOAP_ENV__Detail(soap, a); - soap_in_xsd__anyAttribute(soap, "-anyAttribute", &a->__anyAttribute, "xsd:anyAttribute"); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsnt__UnableToCreatePullPointFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnableToCreatePullPointFaultType(soap, "wsnt:UnableToCreatePullPointFault", &a->wsnt__UnableToCreatePullPointFault, "wsnt:UnableToCreatePullPointFaultType")) - { soap_flag_wsnt__UnableToCreatePullPointFault--; - continue; - } - } - if (soap_flag_wsnt__InvalidFilterFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__InvalidFilterFaultType(soap, "wsnt:InvalidFilterFault", &a->wsnt__InvalidFilterFault, "wsnt:InvalidFilterFaultType")) - { soap_flag_wsnt__InvalidFilterFault--; - continue; - } - } - if (soap_flag_wsnt__InvalidMessageContentExpressionFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__InvalidMessageContentExpressionFaultType(soap, "wsnt:InvalidMessageContentExpressionFault", &a->wsnt__InvalidMessageContentExpressionFault, "wsnt:InvalidMessageContentExpressionFaultType")) - { soap_flag_wsnt__InvalidMessageContentExpressionFault--; - continue; - } - } - if (soap_flag_wsnt__InvalidProducerPropertiesExpressionFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(soap, "wsnt:InvalidProducerPropertiesExpressionFault", &a->wsnt__InvalidProducerPropertiesExpressionFault, "wsnt:InvalidProducerPropertiesExpressionFaultType")) - { soap_flag_wsnt__InvalidProducerPropertiesExpressionFault--; - continue; - } - } - if (soap_flag_wsnt__InvalidTopicExpressionFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__InvalidTopicExpressionFaultType(soap, "wsnt:InvalidTopicExpressionFault", &a->wsnt__InvalidTopicExpressionFault, "wsnt:InvalidTopicExpressionFaultType")) - { soap_flag_wsnt__InvalidTopicExpressionFault--; - continue; - } - } - if (soap_flag_wsnt__NotifyMessageNotSupportedFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__NotifyMessageNotSupportedFaultType(soap, "wsnt:NotifyMessageNotSupportedFault", &a->wsnt__NotifyMessageNotSupportedFault, "wsnt:NotifyMessageNotSupportedFaultType")) - { soap_flag_wsnt__NotifyMessageNotSupportedFault--; - continue; - } - } - if (soap_flag_wsrfr__ResourceUnknownFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsrfr__ResourceUnknownFaultType(soap, "wsrfr:ResourceUnknownFault", &a->wsrfr__ResourceUnknownFault, "wsrfr:ResourceUnknownFaultType")) - { soap_flag_wsrfr__ResourceUnknownFault--; - continue; - } - } - if (soap_flag_wsnt__SubscribeCreationFailedFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__SubscribeCreationFailedFaultType(soap, "wsnt:SubscribeCreationFailedFault", &a->wsnt__SubscribeCreationFailedFault, "wsnt:SubscribeCreationFailedFaultType")) - { soap_flag_wsnt__SubscribeCreationFailedFault--; - continue; - } - } - if (soap_flag_wsnt__TopicExpressionDialectUnknownFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__TopicExpressionDialectUnknownFaultType(soap, "wsnt:TopicExpressionDialectUnknownFault", &a->wsnt__TopicExpressionDialectUnknownFault, "wsnt:TopicExpressionDialectUnknownFaultType")) - { soap_flag_wsnt__TopicExpressionDialectUnknownFault--; - continue; - } - } - if (soap_flag_wsnt__TopicNotSupportedFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__TopicNotSupportedFaultType(soap, "wsnt:TopicNotSupportedFault", &a->wsnt__TopicNotSupportedFault, "wsnt:TopicNotSupportedFaultType")) - { soap_flag_wsnt__TopicNotSupportedFault--; - continue; - } - } - if (soap_flag_wsnt__UnacceptableInitialTerminationTimeFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(soap, "wsnt:UnacceptableInitialTerminationTimeFault", &a->wsnt__UnacceptableInitialTerminationTimeFault, "wsnt:UnacceptableInitialTerminationTimeFaultType")) - { soap_flag_wsnt__UnacceptableInitialTerminationTimeFault--; - continue; - } - } - if (soap_flag_wsnt__UnrecognizedPolicyRequestFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnrecognizedPolicyRequestFaultType(soap, "wsnt:UnrecognizedPolicyRequestFault", &a->wsnt__UnrecognizedPolicyRequestFault, "wsnt:UnrecognizedPolicyRequestFaultType")) - { soap_flag_wsnt__UnrecognizedPolicyRequestFault--; - continue; - } - } - if (soap_flag_wsnt__UnsupportedPolicyRequestFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnsupportedPolicyRequestFaultType(soap, "wsnt:UnsupportedPolicyRequestFault", &a->wsnt__UnsupportedPolicyRequestFault, "wsnt:UnsupportedPolicyRequestFaultType")) - { soap_flag_wsnt__UnsupportedPolicyRequestFault--; - continue; - } - } - if (soap_flag_wsnt__MultipleTopicsSpecifiedFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__MultipleTopicsSpecifiedFaultType(soap, "wsnt:MultipleTopicsSpecifiedFault", &a->wsnt__MultipleTopicsSpecifiedFault, "wsnt:MultipleTopicsSpecifiedFaultType")) - { soap_flag_wsnt__MultipleTopicsSpecifiedFault--; - continue; - } - } - if (soap_flag_wsnt__NoCurrentMessageOnTopicFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__NoCurrentMessageOnTopicFaultType(soap, "wsnt:NoCurrentMessageOnTopicFault", &a->wsnt__NoCurrentMessageOnTopicFault, "wsnt:NoCurrentMessageOnTopicFaultType")) - { soap_flag_wsnt__NoCurrentMessageOnTopicFault--; - continue; - } - } - if (soap_flag_wsnt__UnableToDestroyPullPointFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnableToDestroyPullPointFaultType(soap, "wsnt:UnableToDestroyPullPointFault", &a->wsnt__UnableToDestroyPullPointFault, "wsnt:UnableToDestroyPullPointFaultType")) - { soap_flag_wsnt__UnableToDestroyPullPointFault--; - continue; - } - } - if (soap_flag_wsnt__UnableToGetMessagesFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnableToGetMessagesFaultType(soap, "wsnt:UnableToGetMessagesFault", &a->wsnt__UnableToGetMessagesFault, "wsnt:UnableToGetMessagesFaultType")) - { soap_flag_wsnt__UnableToGetMessagesFault--; - continue; - } - } - if (soap_flag_tev__PullMessagesFaultResponse && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_tev__PullMessagesFaultResponse(soap, "tev:PullMessagesFaultResponse", &a->tev__PullMessagesFaultResponse, "")) - { soap_flag_tev__PullMessagesFaultResponse--; - continue; - } - } - if (soap_flag_wsnt__PauseFailedFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__PauseFailedFaultType(soap, "wsnt:PauseFailedFault", &a->wsnt__PauseFailedFault, "wsnt:PauseFailedFaultType")) - { soap_flag_wsnt__PauseFailedFault--; - continue; - } - } - if (soap_flag_wsnt__ResumeFailedFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__ResumeFailedFaultType(soap, "wsnt:ResumeFailedFault", &a->wsnt__ResumeFailedFault, "wsnt:ResumeFailedFaultType")) - { soap_flag_wsnt__ResumeFailedFault--; - continue; - } - } - if (soap_flag_wsnt__UnableToDestroySubscriptionFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnableToDestroySubscriptionFaultType(soap, "wsnt:UnableToDestroySubscriptionFault", &a->wsnt__UnableToDestroySubscriptionFault, "wsnt:UnableToDestroySubscriptionFaultType")) - { soap_flag_wsnt__UnableToDestroySubscriptionFault--; - continue; - } - } - if (soap_flag_wsnt__UnacceptableTerminationTimeFault && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsnt__UnacceptableTerminationTimeFaultType(soap, "wsnt:UnacceptableTerminationTimeFault", &a->wsnt__UnacceptableTerminationTimeFault, "wsnt:UnacceptableTerminationTimeFaultType")) - { soap_flag_wsnt__UnacceptableTerminationTimeFault--; - continue; - } - } - if (soap_flag_fault && soap->error == SOAP_TAG_MISMATCH) - { if ((a->fault = soap_getelement(soap, "fault", &a->__type))) - { soap_flag_fault = 0; - continue; - } - } - if (soap_flag___any && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "-any", (char**)&a->__any)) - { soap_flag___any--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct SOAP_ENV__Detail *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_SOAP_ENV__Detail, SOAP_TYPE_SOAP_ENV__Detail, sizeof(struct SOAP_ENV__Detail), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct SOAP_ENV__Detail * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Detail(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_SOAP_ENV__Detail(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct SOAP_ENV__Detail *p; - size_t k = sizeof(struct SOAP_ENV__Detail); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_SOAP_ENV__Detail, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct SOAP_ENV__Detail); - } - else - { p = SOAP_NEW_ARRAY(soap, struct SOAP_ENV__Detail, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct SOAP_ENV__Detail location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Detail(struct soap *soap, const struct SOAP_ENV__Detail *a, const char *tag, const char *type) -{ - if (soap_out_SOAP_ENV__Detail(soap, tag ? tag : "SOAP-ENV:Detail", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct SOAP_ENV__Detail * SOAP_FMAC4 soap_get_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Detail(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#endif - -#ifndef WITH_NOGLOBAL - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__wsa__MessageID(soap, &a->wsa__MessageID); - a->wsa__RelatesTo = NULL; - a->wsa__From = NULL; - a->wsa__ReplyTo = NULL; - a->wsa__FaultTo = NULL; - soap_default__wsa__To(soap, &a->wsa__To); - soap_default__wsa__Action(soap, &a->wsa__Action); - a->wsdd__AppSequence = NULL; - a->wsse__Security = NULL; - soap_default__wsa5__MessageID(soap, &a->wsa5__MessageID); - a->wsa5__RelatesTo = NULL; - a->wsa5__From = NULL; - a->wsa5__ReplyTo = NULL; - a->wsa5__FaultTo = NULL; - soap_default__wsa5__To(soap, &a->wsa5__To); - soap_default__wsa5__Action(soap, &a->wsa5__Action); - a->chan__ChannelInstance = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Header(struct soap *soap, const struct SOAP_ENV__Header *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__wsa__MessageID(soap, (char*const*)&a->wsa__MessageID); - soap_serialize_PointerTo_wsa__RelatesTo(soap, &a->wsa__RelatesTo); - soap_serialize_PointerTo_wsa__From(soap, &a->wsa__From); - soap_serialize_PointerTo_wsa__ReplyTo(soap, &a->wsa__ReplyTo); - soap_serialize_PointerTo_wsa__FaultTo(soap, &a->wsa__FaultTo); - soap_serialize__wsa__To(soap, (char*const*)&a->wsa__To); - soap_serialize__wsa__Action(soap, (char*const*)&a->wsa__Action); - soap_serialize_PointerTowsdd__AppSequenceType(soap, &a->wsdd__AppSequence); - soap_serialize_PointerTo_wsse__Security(soap, &a->wsse__Security); - soap_serialize__wsa5__MessageID(soap, (char*const*)&a->wsa5__MessageID); - soap_serialize_PointerTo_wsa5__RelatesTo(soap, &a->wsa5__RelatesTo); - soap_serialize_PointerTo_wsa5__From(soap, &a->wsa5__From); - soap_serialize_PointerTo_wsa5__ReplyTo(soap, &a->wsa5__ReplyTo); - soap_serialize_PointerTo_wsa5__FaultTo(soap, &a->wsa5__FaultTo); - soap_serialize__wsa5__To(soap, (char*const*)&a->wsa5__To); - soap_serialize__wsa5__Action(soap, (char*const*)&a->wsa5__Action); - soap_serialize_PointerTochan__ChannelInstanceType(soap, &a->chan__ChannelInstance); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Header(struct soap *soap, const char *tag, int id, const struct SOAP_ENV__Header *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_SOAP_ENV__Header), type)) - return soap->error; - if (soap_out__wsa__MessageID(soap, "wsa:MessageID", -1, (char*const*)&a->wsa__MessageID, "")) - return soap->error; - if (soap_out_PointerTo_wsa__RelatesTo(soap, "wsa:RelatesTo", -1, &a->wsa__RelatesTo, "")) - return soap->error; - if (soap_out_PointerTo_wsa__From(soap, "wsa:From", -1, &a->wsa__From, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out_PointerTo_wsa__ReplyTo(soap, "wsa:ReplyTo", -1, &a->wsa__ReplyTo, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out_PointerTo_wsa__FaultTo(soap, "wsa:FaultTo", -1, &a->wsa__FaultTo, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out__wsa__To(soap, "wsa:To", -1, (char*const*)&a->wsa__To, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out__wsa__Action(soap, "wsa:Action", -1, (char*const*)&a->wsa__Action, "")) - return soap->error; - if (soap_out_PointerTowsdd__AppSequenceType(soap, "wsdd:AppSequence", -1, &a->wsdd__AppSequence, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out_PointerTo_wsse__Security(soap, "wsse:Security", -1, &a->wsse__Security, "")) - return soap->error; - if (soap_out__wsa5__MessageID(soap, "wsa5:MessageID", -1, (char*const*)&a->wsa5__MessageID, "")) - return soap->error; - if (soap_out_PointerTo_wsa5__RelatesTo(soap, "wsa5:RelatesTo", -1, &a->wsa5__RelatesTo, "")) - return soap->error; - if (soap_out_PointerTo_wsa5__From(soap, "wsa5:From", -1, &a->wsa5__From, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out_PointerTo_wsa5__ReplyTo(soap, "wsa5:ReplyTo", -1, &a->wsa5__ReplyTo, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out_PointerTo_wsa5__FaultTo(soap, "wsa5:FaultTo", -1, &a->wsa5__FaultTo, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out__wsa5__To(soap, "wsa5:To", -1, (char*const*)&a->wsa5__To, "")) - return soap->error; - soap->mustUnderstand = 1; - if (soap_out__wsa5__Action(soap, "wsa5:Action", -1, (char*const*)&a->wsa5__Action, "")) - return soap->error; - if (soap_out_PointerTochan__ChannelInstanceType(soap, "chan:ChannelInstance", -1, &a->chan__ChannelInstance, "")) - return soap->error; - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct SOAP_ENV__Header * SOAP_FMAC4 soap_in_SOAP_ENV__Header(struct soap *soap, const char *tag, struct SOAP_ENV__Header *a, const char *type) -{ - size_t soap_flag_wsa__MessageID = 1; - size_t soap_flag_wsa__RelatesTo = 1; - size_t soap_flag_wsa__From = 1; - size_t soap_flag_wsa__ReplyTo = 1; - size_t soap_flag_wsa__FaultTo = 1; - size_t soap_flag_wsa__To = 1; - size_t soap_flag_wsa__Action = 1; - size_t soap_flag_wsdd__AppSequence = 1; - size_t soap_flag_wsse__Security = 1; - size_t soap_flag_wsa5__MessageID = 1; - size_t soap_flag_wsa5__RelatesTo = 1; - size_t soap_flag_wsa5__From = 1; - size_t soap_flag_wsa5__ReplyTo = 1; - size_t soap_flag_wsa5__FaultTo = 1; - size_t soap_flag_wsa5__To = 1; - size_t soap_flag_wsa5__Action = 1; - size_t soap_flag_chan__ChannelInstance = 1; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct SOAP_ENV__Header*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_SOAP_ENV__Header, sizeof(struct SOAP_ENV__Header), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_SOAP_ENV__Header(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_wsa__MessageID && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__wsa__MessageID(soap, "wsa:MessageID", (char**)&a->wsa__MessageID, "")) - { soap_flag_wsa__MessageID--; - continue; - } - } - if (soap_flag_wsa__RelatesTo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa__RelatesTo(soap, "wsa:RelatesTo", &a->wsa__RelatesTo, "")) - { soap_flag_wsa__RelatesTo--; - continue; - } - } - if (soap_flag_wsa__From && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa__From(soap, "wsa:From", &a->wsa__From, "")) - { soap_flag_wsa__From--; - continue; - } - } - if (soap_flag_wsa__ReplyTo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa__ReplyTo(soap, "wsa:ReplyTo", &a->wsa__ReplyTo, "")) - { soap_flag_wsa__ReplyTo--; - continue; - } - } - if (soap_flag_wsa__FaultTo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa__FaultTo(soap, "wsa:FaultTo", &a->wsa__FaultTo, "")) - { soap_flag_wsa__FaultTo--; - continue; - } - } - if (soap_flag_wsa__To && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__wsa__To(soap, "wsa:To", (char**)&a->wsa__To, "")) - { soap_flag_wsa__To--; - continue; - } - } - if (soap_flag_wsa__Action && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__wsa__Action(soap, "wsa:Action", (char**)&a->wsa__Action, "")) - { soap_flag_wsa__Action--; - continue; - } - } - if (soap_flag_wsdd__AppSequence && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsdd__AppSequenceType(soap, "wsdd:AppSequence", &a->wsdd__AppSequence, "wsdd:AppSequenceType")) - { soap_flag_wsdd__AppSequence--; - continue; - } - } - if (soap_flag_wsse__Security && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsse__Security(soap, "wsse:Security", &a->wsse__Security, "")) - { soap_flag_wsse__Security--; - continue; - } - } - if (soap_flag_wsa5__MessageID && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__wsa5__MessageID(soap, "wsa5:MessageID", (char**)&a->wsa5__MessageID, "")) - { soap_flag_wsa5__MessageID--; - continue; - } - } - if (soap_flag_wsa5__RelatesTo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa5__RelatesTo(soap, "wsa5:RelatesTo", &a->wsa5__RelatesTo, "")) - { soap_flag_wsa5__RelatesTo--; - continue; - } - } - if (soap_flag_wsa5__From && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa5__From(soap, "wsa5:From", &a->wsa5__From, "")) - { soap_flag_wsa5__From--; - continue; - } - } - if (soap_flag_wsa5__ReplyTo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa5__ReplyTo(soap, "wsa5:ReplyTo", &a->wsa5__ReplyTo, "")) - { soap_flag_wsa5__ReplyTo--; - continue; - } - } - if (soap_flag_wsa5__FaultTo && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_wsa5__FaultTo(soap, "wsa5:FaultTo", &a->wsa5__FaultTo, "")) - { soap_flag_wsa5__FaultTo--; - continue; - } - } - if (soap_flag_wsa5__To && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__wsa5__To(soap, "wsa5:To", (char**)&a->wsa5__To, "")) - { soap_flag_wsa5__To--; - continue; - } - } - if (soap_flag_wsa5__Action && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in__wsa5__Action(soap, "wsa5:Action", (char**)&a->wsa5__Action, "")) - { soap_flag_wsa5__Action--; - continue; - } - } - if (soap_flag_chan__ChannelInstance && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTochan__ChannelInstanceType(soap, "chan:ChannelInstance", &a->chan__ChannelInstance, "chan:ChannelInstanceType")) - { soap_flag_chan__ChannelInstance--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct SOAP_ENV__Header *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_SOAP_ENV__Header, SOAP_TYPE_SOAP_ENV__Header, sizeof(struct SOAP_ENV__Header), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct SOAP_ENV__Header * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Header(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_SOAP_ENV__Header(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct SOAP_ENV__Header *p; - size_t k = sizeof(struct SOAP_ENV__Header); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_SOAP_ENV__Header, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct SOAP_ENV__Header); - } - else - { p = SOAP_NEW_ARRAY(soap, struct SOAP_ENV__Header, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct SOAP_ENV__Header location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Header(struct soap *soap, const struct SOAP_ENV__Header *a, const char *tag, const char *type) -{ - if (soap_out_SOAP_ENV__Header(soap, tag ? tag : "SOAP-ENV:Header", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct SOAP_ENV__Header * SOAP_FMAC4 soap_get_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *p, const char *tag, const char *type) -{ - if ((p = soap_in_SOAP_ENV__Header(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#endif - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__FaultTo(struct soap *soap, const struct wsa__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa__FaultTo(soap, tag ? tag : "wsa:FaultTo", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__ReplyTo(struct soap *soap, const struct wsa__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa__ReplyTo(soap, tag ? tag : "wsa:ReplyTo", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__From(struct soap *soap, const struct wsa__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa__From(soap, tag ? tag : "wsa:From", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__RelatesTo(struct soap *soap, const struct wsa__Relationship *a, const char *tag, const char *type) -{ - if (soap_out__wsa__RelatesTo(soap, tag ? tag : "wsa:RelatesTo", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__EndpointReference(struct soap *soap, const struct wsa__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out__wsa__EndpointReference(soap, tag ? tag : "wsa:EndpointReference", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__Relationship(struct soap *soap, struct wsa__Relationship *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->__item); - soap_default__QName(soap, &a->RelationshipType); - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__Relationship(struct soap *soap, const struct wsa__Relationship *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__Relationship(struct soap *soap, const char *tag, int id, const struct wsa__Relationship *a, const char *type) -{ - if (a->RelationshipType) - soap_set_attr(soap, "RelationshipType", soap__QName2s(soap, a->RelationshipType), 1); - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_string(soap, tag, id, (char*const*)&a->__item, ""); -} - -SOAP_FMAC3 struct wsa__Relationship * SOAP_FMAC4 soap_in_wsa__Relationship(struct soap *soap, const char *tag, struct wsa__Relationship *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct wsa__Relationship *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa__Relationship, sizeof(struct wsa__Relationship), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_wsa__Relationship(soap, a); - if (soap_s2_QName(soap, soap_attr_value(soap, "RelationshipType", 2, 0), &a->RelationshipType)) - return NULL; - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (!soap_in_string(soap, tag, (char**)&a->__item, "wsa:Relationship")) - return NULL; - return a; -} - -SOAP_FMAC1 struct wsa__Relationship * SOAP_FMAC2 soap_instantiate_wsa__Relationship(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa__Relationship(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa__Relationship *p; - size_t k = sizeof(struct wsa__Relationship); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa__Relationship, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa__Relationship); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa__Relationship, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa__Relationship location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__Relationship(struct soap *soap, const struct wsa__Relationship *a, const char *tag, const char *type) -{ - if (soap_out_wsa__Relationship(soap, tag ? tag : "wsa:Relationship", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa__Relationship * SOAP_FMAC4 soap_get_wsa__Relationship(struct soap *soap, struct wsa__Relationship *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa__Relationship(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__ServiceNameType(struct soap *soap, struct wsa__ServiceNameType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default__QName(soap, &a->__item); - soap_default_string(soap, &a->PortName); - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__ServiceNameType(struct soap *soap, const struct wsa__ServiceNameType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize__QName(soap, (char*const*)&a->__item); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__ServiceNameType(struct soap *soap, const char *tag, int id, const struct wsa__ServiceNameType *a, const char *type) -{ - const char *soap_tmp___item; - soap_tmp___item = soap_QName2s(soap, a->__item); - if (a->PortName) - soap_set_attr(soap, "PortName", soap_string2s(soap, a->PortName), 1); - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out__QName(soap, tag, id, (char*const*)(void*)&soap_tmp___item, ""); -} - -SOAP_FMAC3 struct wsa__ServiceNameType * SOAP_FMAC4 soap_in_wsa__ServiceNameType(struct soap *soap, const char *tag, struct wsa__ServiceNameType *a, const char *type) -{ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - if (!(a = (struct wsa__ServiceNameType *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa__ServiceNameType, sizeof(struct wsa__ServiceNameType), soap->type, soap->arrayType, soap_instantiate, soap_fbase))) - return NULL; - soap_revert(soap); - *soap->id = '\0'; - soap_default_wsa__ServiceNameType(soap, a); - if (soap_s2string(soap, soap_attr_value(soap, "PortName", 1, 0), &a->PortName)) - return NULL; - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (!soap_in__QName(soap, tag, (char**)&a->__item, "wsa:ServiceNameType")) - return NULL; - return a; -} - -SOAP_FMAC1 struct wsa__ServiceNameType * SOAP_FMAC2 soap_instantiate_wsa__ServiceNameType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa__ServiceNameType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa__ServiceNameType *p; - size_t k = sizeof(struct wsa__ServiceNameType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa__ServiceNameType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa__ServiceNameType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa__ServiceNameType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa__ServiceNameType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__ServiceNameType(struct soap *soap, const struct wsa__ServiceNameType *a, const char *tag, const char *type) -{ - if (soap_out_wsa__ServiceNameType(soap, tag ? tag : "wsa:ServiceNameType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa__ServiceNameType * SOAP_FMAC4 soap_get_wsa__ServiceNameType(struct soap *soap, struct wsa__ServiceNameType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa__ServiceNameType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__ReferenceParametersType(struct soap *soap, struct wsa__ReferenceParametersType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size = 0; - a->__any = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__ReferenceParametersType(struct soap *soap, const struct wsa__ReferenceParametersType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__ReferenceParametersType(struct soap *soap, const char *tag, int id, const struct wsa__ReferenceParametersType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa__ReferenceParametersType), type)) - return soap->error; - if (a->__any) - { int i; - for (i = 0; i < (int)a->__size; i++) - if (soap_outliteral(soap, "-any", (char*const*)(a->__any + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsa__ReferenceParametersType * SOAP_FMAC4 soap_in_wsa__ReferenceParametersType(struct soap *soap, const char *tag, struct wsa__ReferenceParametersType *a, const char *type) -{ - struct soap_blist *soap_blist___any = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsa__ReferenceParametersType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa__ReferenceParametersType, sizeof(struct wsa__ReferenceParametersType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsa__ReferenceParametersType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__any == NULL) - { if (soap_blist___any == NULL) - soap_blist___any = soap_alloc_block(soap); - a->__any = (char **)soap_push_block_max(soap, soap_blist___any, sizeof(char *)); - if (a->__any == NULL) - return NULL; - *a->__any = NULL; - } - if (soap_inliteral(soap, "-any", (char**)a->__any)) - { a->__size++; - a->__any = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__any) - soap_pop_block(soap, soap_blist___any); - if (a->__size) - { a->__any = (char **)soap_save_block(soap, soap_blist___any, NULL, 1); - } - else - { a->__any = NULL; - if (soap_blist___any) - soap_end_block(soap, soap_blist___any); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsa__ReferenceParametersType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa__ReferenceParametersType, SOAP_TYPE_wsa__ReferenceParametersType, sizeof(struct wsa__ReferenceParametersType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsa__ReferenceParametersType * SOAP_FMAC2 soap_instantiate_wsa__ReferenceParametersType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa__ReferenceParametersType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa__ReferenceParametersType *p; - size_t k = sizeof(struct wsa__ReferenceParametersType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa__ReferenceParametersType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa__ReferenceParametersType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa__ReferenceParametersType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa__ReferenceParametersType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__ReferenceParametersType(struct soap *soap, const struct wsa__ReferenceParametersType *a, const char *tag, const char *type) -{ - if (soap_out_wsa__ReferenceParametersType(soap, tag ? tag : "wsa:ReferenceParametersType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa__ReferenceParametersType * SOAP_FMAC4 soap_get_wsa__ReferenceParametersType(struct soap *soap, struct wsa__ReferenceParametersType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa__ReferenceParametersType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__ReferencePropertiesType(struct soap *soap, struct wsa__ReferencePropertiesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - a->__size = 0; - a->__any = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__ReferencePropertiesType(struct soap *soap, const struct wsa__ReferencePropertiesType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__ReferencePropertiesType(struct soap *soap, const char *tag, int id, const struct wsa__ReferencePropertiesType *a, const char *type) -{ - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa__ReferencePropertiesType), type)) - return soap->error; - if (a->__any) - { int i; - for (i = 0; i < (int)a->__size; i++) - if (soap_outliteral(soap, "-any", (char*const*)(a->__any + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsa__ReferencePropertiesType * SOAP_FMAC4 soap_in_wsa__ReferencePropertiesType(struct soap *soap, const char *tag, struct wsa__ReferencePropertiesType *a, const char *type) -{ - struct soap_blist *soap_blist___any = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsa__ReferencePropertiesType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa__ReferencePropertiesType, sizeof(struct wsa__ReferencePropertiesType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsa__ReferencePropertiesType(soap, a); - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__any == NULL) - { if (soap_blist___any == NULL) - soap_blist___any = soap_alloc_block(soap); - a->__any = (char **)soap_push_block_max(soap, soap_blist___any, sizeof(char *)); - if (a->__any == NULL) - return NULL; - *a->__any = NULL; - } - if (soap_inliteral(soap, "-any", (char**)a->__any)) - { a->__size++; - a->__any = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__any) - soap_pop_block(soap, soap_blist___any); - if (a->__size) - { a->__any = (char **)soap_save_block(soap, soap_blist___any, NULL, 1); - } - else - { a->__any = NULL; - if (soap_blist___any) - soap_end_block(soap, soap_blist___any); - } - if (soap_element_end_in(soap, tag)) - return NULL; - } - else - { a = (struct wsa__ReferencePropertiesType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa__ReferencePropertiesType, SOAP_TYPE_wsa__ReferencePropertiesType, sizeof(struct wsa__ReferencePropertiesType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsa__ReferencePropertiesType * SOAP_FMAC2 soap_instantiate_wsa__ReferencePropertiesType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa__ReferencePropertiesType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa__ReferencePropertiesType *p; - size_t k = sizeof(struct wsa__ReferencePropertiesType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa__ReferencePropertiesType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa__ReferencePropertiesType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa__ReferencePropertiesType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa__ReferencePropertiesType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__ReferencePropertiesType(struct soap *soap, const struct wsa__ReferencePropertiesType *a, const char *tag, const char *type) -{ - if (soap_out_wsa__ReferencePropertiesType(soap, tag ? tag : "wsa:ReferencePropertiesType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa__ReferencePropertiesType * SOAP_FMAC4 soap_get_wsa__ReferencePropertiesType(struct soap *soap, struct wsa__ReferencePropertiesType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa__ReferencePropertiesType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__EndpointReferenceType(struct soap *soap, struct wsa__EndpointReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - soap_default_string(soap, &a->Address); - a->ReferenceProperties = NULL; - a->ReferenceParameters = NULL; - a->PortType = NULL; - a->ServiceName = NULL; - a->__size = 0; - a->__any = NULL; - a->__anyAttribute = NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__EndpointReferenceType(struct soap *soap, const struct wsa__EndpointReferenceType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_string(soap, (char*const*)&a->Address); - soap_serialize_PointerTowsa__ReferencePropertiesType(soap, &a->ReferenceProperties); - soap_serialize_PointerTowsa__ReferenceParametersType(soap, &a->ReferenceParameters); - soap_serialize_PointerTo_QName(soap, &a->PortType); - soap_serialize_PointerTowsa__ServiceNameType(soap, &a->ServiceName); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__EndpointReferenceType(struct soap *soap, const char *tag, int id, const struct wsa__EndpointReferenceType *a, const char *type) -{ - const char *soap_tmp_PortType; - soap_tmp_PortType = a->PortType ? soap_QName2s(soap, *a->PortType) : NULL; - if (a->__anyAttribute) - soap_set_attr(soap, "-anyAttribute", a->__anyAttribute, 1); - (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_wsa__EndpointReferenceType), type)) - return soap->error; - if (!a->Address) - { if (soap_element_empty(soap, "wsa:Address", 0, NULL)) - return soap->error; - } - else if (soap_out_string(soap, "wsa:Address", -1, (char*const*)&a->Address, "")) - return soap->error; - if (soap_out_PointerTowsa__ReferencePropertiesType(soap, "wsa:ReferenceProperties", -1, &a->ReferenceProperties, "")) - return soap->error; - if (soap_out_PointerTowsa__ReferenceParametersType(soap, "wsa:ReferenceParameters", -1, &a->ReferenceParameters, "")) - return soap->error; - if (soap_out__QName(soap, "wsa:PortType", -1, (char*const*)(void*)&soap_tmp_PortType, "")) - return soap->error; - if (soap_out_PointerTowsa__ServiceNameType(soap, "wsa:ServiceName", -1, &a->ServiceName, "")) - return soap->error; - if (a->__any) - { int i; - for (i = 0; i < (int)a->__size; i++) - if (soap_outliteral(soap, "-any", (char*const*)(a->__any + i), NULL)) - return soap->error; - } - return soap_element_end_out(soap, tag); -} - -SOAP_FMAC3 struct wsa__EndpointReferenceType * SOAP_FMAC4 soap_in_wsa__EndpointReferenceType(struct soap *soap, const char *tag, struct wsa__EndpointReferenceType *a, const char *type) -{ - size_t soap_flag_Address = 1; - size_t soap_flag_ReferenceProperties = 1; - size_t soap_flag_ReferenceParameters = 1; - size_t soap_flag_PortType = 1; - size_t soap_flag_ServiceName = 1; - struct soap_blist *soap_blist___any = NULL; - if (soap_element_begin_in(soap, tag, 0, NULL)) - return NULL; - (void)type; /* appease -Wall -Werror */ - a = (struct wsa__EndpointReferenceType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_wsa__EndpointReferenceType, sizeof(struct wsa__EndpointReferenceType), NULL, NULL, NULL, NULL); - if (!a) - return NULL; - soap_default_wsa__EndpointReferenceType(soap, a); - if (soap_s2char(soap, soap_attr_value(soap, "-anyAttribute", 0, 0), &a->__anyAttribute, 0, 0, -1, NULL)) - return NULL; - if (soap->body && *soap->href != '#') - { - for (;;) - { soap->error = SOAP_TAG_MISMATCH; - if (soap_flag_Address && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_string(soap, "wsa:Address", (char**)&a->Address, "xsd:string")) - { soap_flag_Address--; - continue; - } - } - if (soap_flag_ReferenceProperties && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa__ReferencePropertiesType(soap, "wsa:ReferenceProperties", &a->ReferenceProperties, "wsa:ReferencePropertiesType")) - { soap_flag_ReferenceProperties--; - continue; - } - } - if (soap_flag_ReferenceParameters && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa__ReferenceParametersType(soap, "wsa:ReferenceParameters", &a->ReferenceParameters, "wsa:ReferenceParametersType")) - { soap_flag_ReferenceParameters--; - continue; - } - } - if (soap_flag_PortType && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTo_QName(soap, "wsa:PortType", &a->PortType, "")) - { soap_flag_PortType--; - continue; - } - } - if (soap_flag_ServiceName && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTowsa__ServiceNameType(soap, "wsa:ServiceName", &a->ServiceName, "wsa:ServiceNameType")) - { soap_flag_ServiceName--; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH && !soap_peek_element(soap)) - { if (a->__any == NULL) - { if (soap_blist___any == NULL) - soap_blist___any = soap_alloc_block(soap); - a->__any = (char **)soap_push_block_max(soap, soap_blist___any, sizeof(char *)); - if (a->__any == NULL) - return NULL; - *a->__any = NULL; - } - if (soap_inliteral(soap, "-any", (char**)a->__any)) - { a->__size++; - a->__any = NULL; - continue; - } - } - if (soap->error == SOAP_TAG_MISMATCH) - soap->error = soap_ignore_element(soap); - if (soap->error == SOAP_NO_TAG) - break; - if (soap->error) - return NULL; - } - if (a->__any) - soap_pop_block(soap, soap_blist___any); - if (a->__size) - { a->__any = (char **)soap_save_block(soap, soap_blist___any, NULL, 1); - } - else - { a->__any = NULL; - if (soap_blist___any) - soap_end_block(soap, soap_blist___any); - } - if (soap_element_end_in(soap, tag)) - return NULL; - if ((soap->mode & SOAP_XML_STRICT) && (!a->Address)) - { soap->error = SOAP_OCCURS; - return NULL; - } - } - else if ((soap->mode & SOAP_XML_STRICT) && *soap->href != '#') - { soap->error = SOAP_OCCURS; - return NULL; - } - else - { a = (struct wsa__EndpointReferenceType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_wsa__EndpointReferenceType, SOAP_TYPE_wsa__EndpointReferenceType, sizeof(struct wsa__EndpointReferenceType), 0, soap_finsert, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 struct wsa__EndpointReferenceType * SOAP_FMAC2 soap_instantiate_wsa__EndpointReferenceType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_wsa__EndpointReferenceType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); - (void)type; (void)arrayType; /* appease -Wall -Werror */ - struct wsa__EndpointReferenceType *p; - size_t k = sizeof(struct wsa__EndpointReferenceType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_wsa__EndpointReferenceType, n, soap_fdelete); - if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) - return NULL; - if (n < 0) - { p = SOAP_NEW(soap, struct wsa__EndpointReferenceType); - } - else - { p = SOAP_NEW_ARRAY(soap, struct wsa__EndpointReferenceType, n); - k *= n; - } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated struct wsa__EndpointReferenceType location=%p n=%d\n", (void*)p, n)); - if (size) - *size = k; - if (!p) - soap->error = SOAP_EOM; - else if (cp) - cp->ptr = (void*)p; - return p; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__EndpointReferenceType(struct soap *soap, const struct wsa__EndpointReferenceType *a, const char *tag, const char *type) -{ - if (soap_out_wsa__EndpointReferenceType(soap, tag ? tag : "wsa:EndpointReferenceType", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 struct wsa__EndpointReferenceType * SOAP_FMAC4 soap_get_wsa__EndpointReferenceType(struct soap *soap, struct wsa__EndpointReferenceType *p, const char *tag, const char *type) -{ - if ((p = soap_in_wsa__EndpointReferenceType(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__tmd__union_SerialData(struct soap *soap, int choice, const union _tmd__union_SerialData *a) -{ - (void)soap; (void)choice; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - switch (choice) - { - case SOAP_UNION__tmd__union_SerialData_Binary: - soap_serialize_PointerToxsd__base64Binary(soap, &a->Binary); - break; - case SOAP_UNION__tmd__union_SerialData_String: - soap_serialize_PointerTostd__string(soap, &a->String); - break; - default: - break; - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__union_SerialData(struct soap *soap, int choice, const union _tmd__union_SerialData *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - switch (choice) - { - case SOAP_UNION__tmd__union_SerialData_Binary: - return soap_out_PointerToxsd__base64Binary(soap, "tmd:Binary", -1, &a->Binary, ""); - case SOAP_UNION__tmd__union_SerialData_String: - return soap_out_PointerTostd__string(soap, "tmd:String", -1, &a->String, ""); - default: - break; - } - return SOAP_OK; -} - -SOAP_FMAC3 union _tmd__union_SerialData * SOAP_FMAC4 soap_in__tmd__union_SerialData(struct soap *soap, int *choice, union _tmd__union_SerialData *a) -{ - (void)a; /* appease -Wall -Werror */ - soap->error = SOAP_TAG_MISMATCH; - a->Binary = NULL; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_PointerToxsd__base64Binary(soap, "tmd:Binary", &a->Binary, "xsd:base64Binary")) - { *choice = SOAP_UNION__tmd__union_SerialData_Binary; - return a; - } - a->String = NULL; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_PointerTostd__string(soap, "tmd:String", &a->String, "xsd:string")) - { *choice = SOAP_UNION__tmd__union_SerialData_String; - return a; - } - *choice = 0; - if (!soap->error) - soap->error = SOAP_TAG_MISMATCH; - return NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__tt__union_ColorOptions(struct soap *soap, int choice, const union _tt__union_ColorOptions *a) -{ - (void)soap; (void)choice; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - switch (choice) - { - case SOAP_UNION__tt__union_ColorOptions_ColorList: - soap_serialize_PointerTostd__vectorTemplateOfPointerTott__Color(soap, &a->ColorList); - break; - case SOAP_UNION__tt__union_ColorOptions_ColorspaceRange: - soap_serialize_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(soap, &a->ColorspaceRange); - break; - default: - break; - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__union_ColorOptions(struct soap *soap, int choice, const union _tt__union_ColorOptions *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - switch (choice) - { - case SOAP_UNION__tt__union_ColorOptions_ColorList: - return soap_out_PointerTostd__vectorTemplateOfPointerTott__Color(soap, "tt:ColorList", -1, &a->ColorList, ""); - case SOAP_UNION__tt__union_ColorOptions_ColorspaceRange: - return soap_out_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(soap, "tt:ColorspaceRange", -1, &a->ColorspaceRange, ""); - default: - break; - } - return SOAP_OK; -} - -SOAP_FMAC3 union _tt__union_ColorOptions * SOAP_FMAC4 soap_in__tt__union_ColorOptions(struct soap *soap, int *choice, union _tt__union_ColorOptions *a) -{ - (void)a; /* appease -Wall -Werror */ - soap->error = SOAP_TAG_MISMATCH; - a->ColorList = NULL; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_PointerTostd__vectorTemplateOfPointerTott__Color(soap, "tt:ColorList", &a->ColorList, "tt:Color")) - { *choice = SOAP_UNION__tt__union_ColorOptions_ColorList; - return a; - } - a->ColorspaceRange = NULL; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(soap, "tt:ColorspaceRange", &a->ColorspaceRange, "tt:ColorspaceRange")) - { *choice = SOAP_UNION__tt__union_ColorOptions_ColorspaceRange; - return a; - } - *choice = 0; - if (!soap->error) - soap->error = SOAP_TAG_MISMATCH; - return NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__tt__union_PTZPresetTourPresetDetail(struct soap *soap, int choice, const union _tt__union_PTZPresetTourPresetDetail *a) -{ - (void)soap; (void)choice; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - switch (choice) - { - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_PresetToken: - soap_serialize_PointerTott__ReferenceToken(soap, &a->PresetToken); - break; - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_Home: - soap_embedded(soap, &a->Home, SOAP_TYPE_bool); - break; - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_PTZPosition: - soap_serialize_PointerTott__PTZVector(soap, &a->PTZPosition); - break; - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_TypeExtension: - soap_serialize_PointerTott__PTZPresetTourTypeExtension(soap, &a->TypeExtension); - break; - default: - break; - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__union_PTZPresetTourPresetDetail(struct soap *soap, int choice, const union _tt__union_PTZPresetTourPresetDetail *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - switch (choice) - { - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_PresetToken: - return soap_out_PointerTott__ReferenceToken(soap, "tt:PresetToken", -1, &a->PresetToken, ""); - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_Home: - return soap_out_bool(soap, "tt:Home", -1, &a->Home, ""); - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_PTZPosition: - return soap_out_PointerTott__PTZVector(soap, "tt:PTZPosition", -1, &a->PTZPosition, ""); - case SOAP_UNION__tt__union_PTZPresetTourPresetDetail_TypeExtension: - return soap_out_PointerTott__PTZPresetTourTypeExtension(soap, "tt:TypeExtension", -1, &a->TypeExtension, ""); - default: - break; - } - return SOAP_OK; -} - -SOAP_FMAC3 union _tt__union_PTZPresetTourPresetDetail * SOAP_FMAC4 soap_in__tt__union_PTZPresetTourPresetDetail(struct soap *soap, int *choice, union _tt__union_PTZPresetTourPresetDetail *a) -{ - (void)a; /* appease -Wall -Werror */ - soap->error = SOAP_TAG_MISMATCH; - a->PresetToken = NULL; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_PointerTott__ReferenceToken(soap, "tt:PresetToken", &a->PresetToken, "tt:ReferenceToken")) - { *choice = SOAP_UNION__tt__union_PTZPresetTourPresetDetail_PresetToken; - return a; - } - if (soap->error == SOAP_TAG_MISMATCH && soap_in_bool(soap, "tt:Home", &a->Home, "xsd:boolean")) - { *choice = SOAP_UNION__tt__union_PTZPresetTourPresetDetail_Home; - return a; - } - a->PTZPosition = NULL; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_PointerTott__PTZVector(soap, "tt:PTZPosition", &a->PTZPosition, "tt:PTZVector")) - { *choice = SOAP_UNION__tt__union_PTZPresetTourPresetDetail_PTZPosition; - return a; - } - a->TypeExtension = NULL; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_PointerTott__PTZPresetTourTypeExtension(soap, "tt:TypeExtension", &a->TypeExtension, "tt:PTZPresetTourTypeExtension")) - { *choice = SOAP_UNION__tt__union_PTZPresetTourPresetDetail_TypeExtension; - return a; - } - *choice = 0; - if (!soap->error) - soap->error = SOAP_TAG_MISMATCH; - return NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsc__union_DerivedKeyTokenType(struct soap *soap, int choice, const union _wsc__union_DerivedKeyTokenType *a) -{ - (void)soap; (void)choice; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - switch (choice) - { - case SOAP_UNION__wsc__union_DerivedKeyTokenType_Generation: - soap_embedded(soap, &a->Generation, SOAP_TYPE_ULONG64); - break; - case SOAP_UNION__wsc__union_DerivedKeyTokenType_Offset: - soap_embedded(soap, &a->Offset, SOAP_TYPE_ULONG64); - break; - default: - break; - } -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsc__union_DerivedKeyTokenType(struct soap *soap, int choice, const union _wsc__union_DerivedKeyTokenType *a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ - switch (choice) - { - case SOAP_UNION__wsc__union_DerivedKeyTokenType_Generation: - return soap_out_ULONG64(soap, "wsc:Generation", -1, &a->Generation, ""); - case SOAP_UNION__wsc__union_DerivedKeyTokenType_Offset: - return soap_out_ULONG64(soap, "wsc:Offset", -1, &a->Offset, ""); - default: - break; - } - return SOAP_OK; -} - -SOAP_FMAC3 union _wsc__union_DerivedKeyTokenType * SOAP_FMAC4 soap_in__wsc__union_DerivedKeyTokenType(struct soap *soap, int *choice, union _wsc__union_DerivedKeyTokenType *a) -{ - (void)a; /* appease -Wall -Werror */ - soap->error = SOAP_TAG_MISMATCH; - if (soap->error == SOAP_TAG_MISMATCH && soap_in_ULONG64(soap, "wsc:Generation", &a->Generation, "xsd:unsignedLong")) - { *choice = SOAP_UNION__wsc__union_DerivedKeyTokenType_Generation; - return a; - } - if (soap->error == SOAP_TAG_MISMATCH && soap_in_ULONG64(soap, "wsc:Offset", &a->Offset, "xsd:unsignedLong")) - { *choice = SOAP_UNION__wsc__union_DerivedKeyTokenType_Offset; - return a; - } - *choice = -1; - if (!soap->error) - soap->error = SOAP_TAG_MISMATCH; - return NULL; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetMetadataSearchResults(struct soap *soap, _tse__GetMetadataSearchResults *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetMetadataSearchResults)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetMetadataSearchResults(struct soap *soap, const char *tag, int id, _tse__GetMetadataSearchResults *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetMetadataSearchResults, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResults ? type : NULL); -} - -SOAP_FMAC3 _tse__GetMetadataSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetMetadataSearchResults(struct soap *soap, const char *tag, _tse__GetMetadataSearchResults **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetMetadataSearchResults **)soap_malloc(soap, sizeof(_tse__GetMetadataSearchResults *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetMetadataSearchResults *)soap_instantiate__tse__GetMetadataSearchResults(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetMetadataSearchResults **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetMetadataSearchResults, sizeof(_tse__GetMetadataSearchResults), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetMetadataSearchResults(struct soap *soap, _tse__GetMetadataSearchResults *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetMetadataSearchResults(soap, tag ? tag : "tse:GetMetadataSearchResults", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetMetadataSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetMetadataSearchResults(struct soap *soap, _tse__GetMetadataSearchResults **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetMetadataSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindMetadata(struct soap *soap, _tse__FindMetadata *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__FindMetadata)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindMetadata(struct soap *soap, const char *tag, int id, _tse__FindMetadata *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__FindMetadata, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__FindMetadata ? type : NULL); -} - -SOAP_FMAC3 _tse__FindMetadata ** SOAP_FMAC4 soap_in_PointerTo_tse__FindMetadata(struct soap *soap, const char *tag, _tse__FindMetadata **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__FindMetadata **)soap_malloc(soap, sizeof(_tse__FindMetadata *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__FindMetadata *)soap_instantiate__tse__FindMetadata(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__FindMetadata **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__FindMetadata, sizeof(_tse__FindMetadata), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindMetadata(struct soap *soap, _tse__FindMetadata *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__FindMetadata(soap, tag ? tag : "tse:FindMetadata", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__FindMetadata ** SOAP_FMAC4 soap_get_PointerTo_tse__FindMetadata(struct soap *soap, _tse__FindMetadata **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__FindMetadata(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__EndSearch(struct soap *soap, _tse__EndSearch *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__EndSearch)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__EndSearch(struct soap *soap, const char *tag, int id, _tse__EndSearch *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__EndSearch, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__EndSearch ? type : NULL); -} - -SOAP_FMAC3 _tse__EndSearch ** SOAP_FMAC4 soap_in_PointerTo_tse__EndSearch(struct soap *soap, const char *tag, _tse__EndSearch **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__EndSearch **)soap_malloc(soap, sizeof(_tse__EndSearch *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__EndSearch *)soap_instantiate__tse__EndSearch(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__EndSearch **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__EndSearch, sizeof(_tse__EndSearch), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__EndSearch(struct soap *soap, _tse__EndSearch *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__EndSearch(soap, tag ? tag : "tse:EndSearch", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__EndSearch ** SOAP_FMAC4 soap_get_PointerTo_tse__EndSearch(struct soap *soap, _tse__EndSearch **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__EndSearch(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetSearchState(struct soap *soap, _tse__GetSearchState *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetSearchState)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetSearchState(struct soap *soap, const char *tag, int id, _tse__GetSearchState *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetSearchState, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetSearchState ? type : NULL); -} - -SOAP_FMAC3 _tse__GetSearchState ** SOAP_FMAC4 soap_in_PointerTo_tse__GetSearchState(struct soap *soap, const char *tag, _tse__GetSearchState **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetSearchState **)soap_malloc(soap, sizeof(_tse__GetSearchState *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetSearchState *)soap_instantiate__tse__GetSearchState(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetSearchState **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetSearchState, sizeof(_tse__GetSearchState), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetSearchState(struct soap *soap, _tse__GetSearchState *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetSearchState(soap, tag ? tag : "tse:GetSearchState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetSearchState ** SOAP_FMAC4 soap_get_PointerTo_tse__GetSearchState(struct soap *soap, _tse__GetSearchState **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetSearchState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetPTZPositionSearchResults(struct soap *soap, _tse__GetPTZPositionSearchResults *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetPTZPositionSearchResults)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetPTZPositionSearchResults(struct soap *soap, const char *tag, int id, _tse__GetPTZPositionSearchResults *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetPTZPositionSearchResults, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResults ? type : NULL); -} - -SOAP_FMAC3 _tse__GetPTZPositionSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetPTZPositionSearchResults(struct soap *soap, const char *tag, _tse__GetPTZPositionSearchResults **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetPTZPositionSearchResults **)soap_malloc(soap, sizeof(_tse__GetPTZPositionSearchResults *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetPTZPositionSearchResults *)soap_instantiate__tse__GetPTZPositionSearchResults(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetPTZPositionSearchResults **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetPTZPositionSearchResults, sizeof(_tse__GetPTZPositionSearchResults), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetPTZPositionSearchResults(struct soap *soap, _tse__GetPTZPositionSearchResults *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetPTZPositionSearchResults(soap, tag ? tag : "tse:GetPTZPositionSearchResults", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetPTZPositionSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetPTZPositionSearchResults(struct soap *soap, _tse__GetPTZPositionSearchResults **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetPTZPositionSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindPTZPosition(struct soap *soap, _tse__FindPTZPosition *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__FindPTZPosition)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindPTZPosition(struct soap *soap, const char *tag, int id, _tse__FindPTZPosition *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__FindPTZPosition, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__FindPTZPosition ? type : NULL); -} - -SOAP_FMAC3 _tse__FindPTZPosition ** SOAP_FMAC4 soap_in_PointerTo_tse__FindPTZPosition(struct soap *soap, const char *tag, _tse__FindPTZPosition **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__FindPTZPosition **)soap_malloc(soap, sizeof(_tse__FindPTZPosition *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__FindPTZPosition *)soap_instantiate__tse__FindPTZPosition(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__FindPTZPosition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__FindPTZPosition, sizeof(_tse__FindPTZPosition), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindPTZPosition(struct soap *soap, _tse__FindPTZPosition *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__FindPTZPosition(soap, tag ? tag : "tse:FindPTZPosition", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__FindPTZPosition ** SOAP_FMAC4 soap_get_PointerTo_tse__FindPTZPosition(struct soap *soap, _tse__FindPTZPosition **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__FindPTZPosition(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetEventSearchResults(struct soap *soap, _tse__GetEventSearchResults *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetEventSearchResults)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetEventSearchResults(struct soap *soap, const char *tag, int id, _tse__GetEventSearchResults *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetEventSearchResults, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetEventSearchResults ? type : NULL); -} - -SOAP_FMAC3 _tse__GetEventSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetEventSearchResults(struct soap *soap, const char *tag, _tse__GetEventSearchResults **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetEventSearchResults **)soap_malloc(soap, sizeof(_tse__GetEventSearchResults *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetEventSearchResults *)soap_instantiate__tse__GetEventSearchResults(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetEventSearchResults **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetEventSearchResults, sizeof(_tse__GetEventSearchResults), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetEventSearchResults(struct soap *soap, _tse__GetEventSearchResults *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetEventSearchResults(soap, tag ? tag : "tse:GetEventSearchResults", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetEventSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetEventSearchResults(struct soap *soap, _tse__GetEventSearchResults **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetEventSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindEvents(struct soap *soap, _tse__FindEvents *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__FindEvents)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindEvents(struct soap *soap, const char *tag, int id, _tse__FindEvents *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__FindEvents, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__FindEvents ? type : NULL); -} - -SOAP_FMAC3 _tse__FindEvents ** SOAP_FMAC4 soap_in_PointerTo_tse__FindEvents(struct soap *soap, const char *tag, _tse__FindEvents **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__FindEvents **)soap_malloc(soap, sizeof(_tse__FindEvents *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__FindEvents *)soap_instantiate__tse__FindEvents(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__FindEvents **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__FindEvents, sizeof(_tse__FindEvents), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindEvents(struct soap *soap, _tse__FindEvents *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__FindEvents(soap, tag ? tag : "tse:FindEvents", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__FindEvents ** SOAP_FMAC4 soap_get_PointerTo_tse__FindEvents(struct soap *soap, _tse__FindEvents **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__FindEvents(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetRecordingSearchResults(struct soap *soap, _tse__GetRecordingSearchResults *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetRecordingSearchResults)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetRecordingSearchResults(struct soap *soap, const char *tag, int id, _tse__GetRecordingSearchResults *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetRecordingSearchResults, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResults ? type : NULL); -} - -SOAP_FMAC3 _tse__GetRecordingSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetRecordingSearchResults(struct soap *soap, const char *tag, _tse__GetRecordingSearchResults **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetRecordingSearchResults **)soap_malloc(soap, sizeof(_tse__GetRecordingSearchResults *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetRecordingSearchResults *)soap_instantiate__tse__GetRecordingSearchResults(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetRecordingSearchResults **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetRecordingSearchResults, sizeof(_tse__GetRecordingSearchResults), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetRecordingSearchResults(struct soap *soap, _tse__GetRecordingSearchResults *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetRecordingSearchResults(soap, tag ? tag : "tse:GetRecordingSearchResults", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetRecordingSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetRecordingSearchResults(struct soap *soap, _tse__GetRecordingSearchResults **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetRecordingSearchResults(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindRecordings(struct soap *soap, _tse__FindRecordings *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__FindRecordings)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindRecordings(struct soap *soap, const char *tag, int id, _tse__FindRecordings *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__FindRecordings, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__FindRecordings ? type : NULL); -} - -SOAP_FMAC3 _tse__FindRecordings ** SOAP_FMAC4 soap_in_PointerTo_tse__FindRecordings(struct soap *soap, const char *tag, _tse__FindRecordings **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__FindRecordings **)soap_malloc(soap, sizeof(_tse__FindRecordings *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__FindRecordings *)soap_instantiate__tse__FindRecordings(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__FindRecordings **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__FindRecordings, sizeof(_tse__FindRecordings), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindRecordings(struct soap *soap, _tse__FindRecordings *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__FindRecordings(soap, tag ? tag : "tse:FindRecordings", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__FindRecordings ** SOAP_FMAC4 soap_get_PointerTo_tse__FindRecordings(struct soap *soap, _tse__FindRecordings **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__FindRecordings(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetMediaAttributes(struct soap *soap, _tse__GetMediaAttributes *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetMediaAttributes)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetMediaAttributes(struct soap *soap, const char *tag, int id, _tse__GetMediaAttributes *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetMediaAttributes, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetMediaAttributes ? type : NULL); -} - -SOAP_FMAC3 _tse__GetMediaAttributes ** SOAP_FMAC4 soap_in_PointerTo_tse__GetMediaAttributes(struct soap *soap, const char *tag, _tse__GetMediaAttributes **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetMediaAttributes **)soap_malloc(soap, sizeof(_tse__GetMediaAttributes *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetMediaAttributes *)soap_instantiate__tse__GetMediaAttributes(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetMediaAttributes **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetMediaAttributes, sizeof(_tse__GetMediaAttributes), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetMediaAttributes(struct soap *soap, _tse__GetMediaAttributes *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetMediaAttributes(soap, tag ? tag : "tse:GetMediaAttributes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetMediaAttributes ** SOAP_FMAC4 soap_get_PointerTo_tse__GetMediaAttributes(struct soap *soap, _tse__GetMediaAttributes **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetMediaAttributes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetRecordingInformation(struct soap *soap, _tse__GetRecordingInformation *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetRecordingInformation)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetRecordingInformation(struct soap *soap, const char *tag, int id, _tse__GetRecordingInformation *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetRecordingInformation, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetRecordingInformation ? type : NULL); -} - -SOAP_FMAC3 _tse__GetRecordingInformation ** SOAP_FMAC4 soap_in_PointerTo_tse__GetRecordingInformation(struct soap *soap, const char *tag, _tse__GetRecordingInformation **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetRecordingInformation **)soap_malloc(soap, sizeof(_tse__GetRecordingInformation *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetRecordingInformation *)soap_instantiate__tse__GetRecordingInformation(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetRecordingInformation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetRecordingInformation, sizeof(_tse__GetRecordingInformation), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetRecordingInformation(struct soap *soap, _tse__GetRecordingInformation *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetRecordingInformation(soap, tag ? tag : "tse:GetRecordingInformation", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetRecordingInformation ** SOAP_FMAC4 soap_get_PointerTo_tse__GetRecordingInformation(struct soap *soap, _tse__GetRecordingInformation **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetRecordingInformation(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetRecordingSummary(struct soap *soap, _tse__GetRecordingSummary *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetRecordingSummary)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetRecordingSummary(struct soap *soap, const char *tag, int id, _tse__GetRecordingSummary *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetRecordingSummary, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetRecordingSummary ? type : NULL); -} - -SOAP_FMAC3 _tse__GetRecordingSummary ** SOAP_FMAC4 soap_in_PointerTo_tse__GetRecordingSummary(struct soap *soap, const char *tag, _tse__GetRecordingSummary **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetRecordingSummary **)soap_malloc(soap, sizeof(_tse__GetRecordingSummary *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetRecordingSummary *)soap_instantiate__tse__GetRecordingSummary(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetRecordingSummary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetRecordingSummary, sizeof(_tse__GetRecordingSummary), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetRecordingSummary(struct soap *soap, _tse__GetRecordingSummary *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetRecordingSummary(soap, tag ? tag : "tse:GetRecordingSummary", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetRecordingSummary ** SOAP_FMAC4 soap_get_PointerTo_tse__GetRecordingSummary(struct soap *soap, _tse__GetRecordingSummary **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetRecordingSummary(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetServiceCapabilities(struct soap *soap, _tse__GetServiceCapabilities *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__tse__GetServiceCapabilities)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetServiceCapabilities(struct soap *soap, const char *tag, int id, _tse__GetServiceCapabilities *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__tse__GetServiceCapabilities, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__tse__GetServiceCapabilities ? type : NULL); -} - -SOAP_FMAC3 _tse__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tse__GetServiceCapabilities(struct soap *soap, const char *tag, _tse__GetServiceCapabilities **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_tse__GetServiceCapabilities **)soap_malloc(soap, sizeof(_tse__GetServiceCapabilities *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_tse__GetServiceCapabilities *)soap_instantiate__tse__GetServiceCapabilities(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_tse__GetServiceCapabilities **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__tse__GetServiceCapabilities, sizeof(_tse__GetServiceCapabilities), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetServiceCapabilities(struct soap *soap, _tse__GetServiceCapabilities *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_tse__GetServiceCapabilities(soap, tag ? tag : "tse:GetServiceCapabilities", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _tse__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tse__GetServiceCapabilities(struct soap *soap, _tse__GetServiceCapabilities **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_tse__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetReceiverState(struct soap *soap, _trv__GetReceiverState *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__GetReceiverState)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetReceiverState(struct soap *soap, const char *tag, int id, _trv__GetReceiverState *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__GetReceiverState, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__GetReceiverState ? type : NULL); -} - -SOAP_FMAC3 _trv__GetReceiverState ** SOAP_FMAC4 soap_in_PointerTo_trv__GetReceiverState(struct soap *soap, const char *tag, _trv__GetReceiverState **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__GetReceiverState **)soap_malloc(soap, sizeof(_trv__GetReceiverState *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__GetReceiverState *)soap_instantiate__trv__GetReceiverState(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__GetReceiverState **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__GetReceiverState, sizeof(_trv__GetReceiverState), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetReceiverState(struct soap *soap, _trv__GetReceiverState *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__GetReceiverState(soap, tag ? tag : "trv:GetReceiverState", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__GetReceiverState ** SOAP_FMAC4 soap_get_PointerTo_trv__GetReceiverState(struct soap *soap, _trv__GetReceiverState **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__GetReceiverState(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__SetReceiverMode(struct soap *soap, _trv__SetReceiverMode *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__SetReceiverMode)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__SetReceiverMode(struct soap *soap, const char *tag, int id, _trv__SetReceiverMode *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__SetReceiverMode, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__SetReceiverMode ? type : NULL); -} - -SOAP_FMAC3 _trv__SetReceiverMode ** SOAP_FMAC4 soap_in_PointerTo_trv__SetReceiverMode(struct soap *soap, const char *tag, _trv__SetReceiverMode **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__SetReceiverMode **)soap_malloc(soap, sizeof(_trv__SetReceiverMode *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__SetReceiverMode *)soap_instantiate__trv__SetReceiverMode(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__SetReceiverMode **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__SetReceiverMode, sizeof(_trv__SetReceiverMode), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__SetReceiverMode(struct soap *soap, _trv__SetReceiverMode *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__SetReceiverMode(soap, tag ? tag : "trv:SetReceiverMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__SetReceiverMode ** SOAP_FMAC4 soap_get_PointerTo_trv__SetReceiverMode(struct soap *soap, _trv__SetReceiverMode **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__SetReceiverMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__ConfigureReceiver(struct soap *soap, _trv__ConfigureReceiver *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__ConfigureReceiver)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__ConfigureReceiver(struct soap *soap, const char *tag, int id, _trv__ConfigureReceiver *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__ConfigureReceiver, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__ConfigureReceiver ? type : NULL); -} - -SOAP_FMAC3 _trv__ConfigureReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__ConfigureReceiver(struct soap *soap, const char *tag, _trv__ConfigureReceiver **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__ConfigureReceiver **)soap_malloc(soap, sizeof(_trv__ConfigureReceiver *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__ConfigureReceiver *)soap_instantiate__trv__ConfigureReceiver(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__ConfigureReceiver **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__ConfigureReceiver, sizeof(_trv__ConfigureReceiver), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__ConfigureReceiver(struct soap *soap, _trv__ConfigureReceiver *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__ConfigureReceiver(soap, tag ? tag : "trv:ConfigureReceiver", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__ConfigureReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__ConfigureReceiver(struct soap *soap, _trv__ConfigureReceiver **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__ConfigureReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__DeleteReceiver(struct soap *soap, _trv__DeleteReceiver *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__DeleteReceiver)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__DeleteReceiver(struct soap *soap, const char *tag, int id, _trv__DeleteReceiver *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__DeleteReceiver, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__DeleteReceiver ? type : NULL); -} - -SOAP_FMAC3 _trv__DeleteReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__DeleteReceiver(struct soap *soap, const char *tag, _trv__DeleteReceiver **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__DeleteReceiver **)soap_malloc(soap, sizeof(_trv__DeleteReceiver *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__DeleteReceiver *)soap_instantiate__trv__DeleteReceiver(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__DeleteReceiver **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__DeleteReceiver, sizeof(_trv__DeleteReceiver), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__DeleteReceiver(struct soap *soap, _trv__DeleteReceiver *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__DeleteReceiver(soap, tag ? tag : "trv:DeleteReceiver", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__DeleteReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__DeleteReceiver(struct soap *soap, _trv__DeleteReceiver **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__DeleteReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__CreateReceiver(struct soap *soap, _trv__CreateReceiver *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__CreateReceiver)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__CreateReceiver(struct soap *soap, const char *tag, int id, _trv__CreateReceiver *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__CreateReceiver, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__CreateReceiver ? type : NULL); -} - -SOAP_FMAC3 _trv__CreateReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__CreateReceiver(struct soap *soap, const char *tag, _trv__CreateReceiver **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__CreateReceiver **)soap_malloc(soap, sizeof(_trv__CreateReceiver *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__CreateReceiver *)soap_instantiate__trv__CreateReceiver(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__CreateReceiver **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__CreateReceiver, sizeof(_trv__CreateReceiver), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__CreateReceiver(struct soap *soap, _trv__CreateReceiver *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__CreateReceiver(soap, tag ? tag : "trv:CreateReceiver", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__CreateReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__CreateReceiver(struct soap *soap, _trv__CreateReceiver **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__CreateReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetReceiver(struct soap *soap, _trv__GetReceiver *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__GetReceiver)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetReceiver(struct soap *soap, const char *tag, int id, _trv__GetReceiver *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__GetReceiver, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__GetReceiver ? type : NULL); -} - -SOAP_FMAC3 _trv__GetReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__GetReceiver(struct soap *soap, const char *tag, _trv__GetReceiver **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__GetReceiver **)soap_malloc(soap, sizeof(_trv__GetReceiver *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__GetReceiver *)soap_instantiate__trv__GetReceiver(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__GetReceiver **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__GetReceiver, sizeof(_trv__GetReceiver), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetReceiver(struct soap *soap, _trv__GetReceiver *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__GetReceiver(soap, tag ? tag : "trv:GetReceiver", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__GetReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__GetReceiver(struct soap *soap, _trv__GetReceiver **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__GetReceiver(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetReceivers(struct soap *soap, _trv__GetReceivers *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__GetReceivers)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetReceivers(struct soap *soap, const char *tag, int id, _trv__GetReceivers *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__GetReceivers, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__GetReceivers ? type : NULL); -} - -SOAP_FMAC3 _trv__GetReceivers ** SOAP_FMAC4 soap_in_PointerTo_trv__GetReceivers(struct soap *soap, const char *tag, _trv__GetReceivers **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__GetReceivers **)soap_malloc(soap, sizeof(_trv__GetReceivers *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__GetReceivers *)soap_instantiate__trv__GetReceivers(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__GetReceivers **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__GetReceivers, sizeof(_trv__GetReceivers), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetReceivers(struct soap *soap, _trv__GetReceivers *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__GetReceivers(soap, tag ? tag : "trv:GetReceivers", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__GetReceivers ** SOAP_FMAC4 soap_get_PointerTo_trv__GetReceivers(struct soap *soap, _trv__GetReceivers **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__GetReceivers(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetServiceCapabilities(struct soap *soap, _trv__GetServiceCapabilities *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trv__GetServiceCapabilities)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetServiceCapabilities(struct soap *soap, const char *tag, int id, _trv__GetServiceCapabilities *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trv__GetServiceCapabilities, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trv__GetServiceCapabilities ? type : NULL); -} - -SOAP_FMAC3 _trv__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_trv__GetServiceCapabilities(struct soap *soap, const char *tag, _trv__GetServiceCapabilities **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trv__GetServiceCapabilities **)soap_malloc(soap, sizeof(_trv__GetServiceCapabilities *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trv__GetServiceCapabilities *)soap_instantiate__trv__GetServiceCapabilities(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trv__GetServiceCapabilities **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trv__GetServiceCapabilities, sizeof(_trv__GetServiceCapabilities), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetServiceCapabilities(struct soap *soap, _trv__GetServiceCapabilities *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trv__GetServiceCapabilities(soap, tag ? tag : "trv:GetServiceCapabilities", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trv__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_trv__GetServiceCapabilities(struct soap *soap, _trv__GetServiceCapabilities **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trv__GetServiceCapabilities(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__DeleteOSD(struct soap *soap, _trt__DeleteOSD *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__DeleteOSD)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__DeleteOSD(struct soap *soap, const char *tag, int id, _trt__DeleteOSD *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__DeleteOSD, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__DeleteOSD ? type : NULL); -} - -SOAP_FMAC3 _trt__DeleteOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__DeleteOSD(struct soap *soap, const char *tag, _trt__DeleteOSD **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__DeleteOSD **)soap_malloc(soap, sizeof(_trt__DeleteOSD *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__DeleteOSD *)soap_instantiate__trt__DeleteOSD(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__DeleteOSD **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__DeleteOSD, sizeof(_trt__DeleteOSD), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__DeleteOSD(struct soap *soap, _trt__DeleteOSD *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__DeleteOSD(soap, tag ? tag : "trt:DeleteOSD", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__DeleteOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__DeleteOSD(struct soap *soap, _trt__DeleteOSD **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__DeleteOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__CreateOSD(struct soap *soap, _trt__CreateOSD *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__CreateOSD)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__CreateOSD(struct soap *soap, const char *tag, int id, _trt__CreateOSD *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__CreateOSD, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__CreateOSD ? type : NULL); -} - -SOAP_FMAC3 _trt__CreateOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__CreateOSD(struct soap *soap, const char *tag, _trt__CreateOSD **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__CreateOSD **)soap_malloc(soap, sizeof(_trt__CreateOSD *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__CreateOSD *)soap_instantiate__trt__CreateOSD(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__CreateOSD **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__CreateOSD, sizeof(_trt__CreateOSD), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__CreateOSD(struct soap *soap, _trt__CreateOSD *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__CreateOSD(soap, tag ? tag : "trt:CreateOSD", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__CreateOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__CreateOSD(struct soap *soap, _trt__CreateOSD **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__CreateOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetOSD(struct soap *soap, _trt__SetOSD *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__SetOSD)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetOSD(struct soap *soap, const char *tag, int id, _trt__SetOSD *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__SetOSD, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__SetOSD ? type : NULL); -} - -SOAP_FMAC3 _trt__SetOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__SetOSD(struct soap *soap, const char *tag, _trt__SetOSD **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__SetOSD **)soap_malloc(soap, sizeof(_trt__SetOSD *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__SetOSD *)soap_instantiate__trt__SetOSD(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__SetOSD **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__SetOSD, sizeof(_trt__SetOSD), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetOSD(struct soap *soap, _trt__SetOSD *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__SetOSD(soap, tag ? tag : "trt:SetOSD", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__SetOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__SetOSD(struct soap *soap, _trt__SetOSD **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__SetOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetOSDOptions(struct soap *soap, _trt__GetOSDOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetOSDOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetOSDOptions(struct soap *soap, const char *tag, int id, _trt__GetOSDOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetOSDOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetOSDOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetOSDOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetOSDOptions(struct soap *soap, const char *tag, _trt__GetOSDOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetOSDOptions **)soap_malloc(soap, sizeof(_trt__GetOSDOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetOSDOptions *)soap_instantiate__trt__GetOSDOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetOSDOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetOSDOptions, sizeof(_trt__GetOSDOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetOSDOptions(struct soap *soap, _trt__GetOSDOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetOSDOptions(soap, tag ? tag : "trt:GetOSDOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetOSDOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetOSDOptions(struct soap *soap, _trt__GetOSDOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetOSDOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetOSD(struct soap *soap, _trt__GetOSD *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetOSD)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetOSD(struct soap *soap, const char *tag, int id, _trt__GetOSD *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetOSD, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetOSD ? type : NULL); -} - -SOAP_FMAC3 _trt__GetOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__GetOSD(struct soap *soap, const char *tag, _trt__GetOSD **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetOSD **)soap_malloc(soap, sizeof(_trt__GetOSD *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetOSD *)soap_instantiate__trt__GetOSD(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetOSD **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetOSD, sizeof(_trt__GetOSD), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetOSD(struct soap *soap, _trt__GetOSD *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetOSD(soap, tag ? tag : "trt:GetOSD", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__GetOSD(struct soap *soap, _trt__GetOSD **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetOSD(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetOSDs(struct soap *soap, _trt__GetOSDs *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetOSDs)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetOSDs(struct soap *soap, const char *tag, int id, _trt__GetOSDs *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetOSDs, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetOSDs ? type : NULL); -} - -SOAP_FMAC3 _trt__GetOSDs ** SOAP_FMAC4 soap_in_PointerTo_trt__GetOSDs(struct soap *soap, const char *tag, _trt__GetOSDs **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetOSDs **)soap_malloc(soap, sizeof(_trt__GetOSDs *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetOSDs *)soap_instantiate__trt__GetOSDs(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetOSDs **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetOSDs, sizeof(_trt__GetOSDs), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetOSDs(struct soap *soap, _trt__GetOSDs *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetOSDs(soap, tag ? tag : "trt:GetOSDs", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetOSDs ** SOAP_FMAC4 soap_get_PointerTo_trt__GetOSDs(struct soap *soap, _trt__GetOSDs **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetOSDs(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetVideoSourceMode(struct soap *soap, _trt__SetVideoSourceMode *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__SetVideoSourceMode)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetVideoSourceMode(struct soap *soap, const char *tag, int id, _trt__SetVideoSourceMode *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__SetVideoSourceMode, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__SetVideoSourceMode ? type : NULL); -} - -SOAP_FMAC3 _trt__SetVideoSourceMode ** SOAP_FMAC4 soap_in_PointerTo_trt__SetVideoSourceMode(struct soap *soap, const char *tag, _trt__SetVideoSourceMode **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__SetVideoSourceMode **)soap_malloc(soap, sizeof(_trt__SetVideoSourceMode *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__SetVideoSourceMode *)soap_instantiate__trt__SetVideoSourceMode(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__SetVideoSourceMode **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__SetVideoSourceMode, sizeof(_trt__SetVideoSourceMode), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetVideoSourceMode(struct soap *soap, _trt__SetVideoSourceMode *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__SetVideoSourceMode(soap, tag ? tag : "trt:SetVideoSourceMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__SetVideoSourceMode ** SOAP_FMAC4 soap_get_PointerTo_trt__SetVideoSourceMode(struct soap *soap, _trt__SetVideoSourceMode **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__SetVideoSourceMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoSourceModes(struct soap *soap, _trt__GetVideoSourceModes *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetVideoSourceModes)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoSourceModes(struct soap *soap, const char *tag, int id, _trt__GetVideoSourceModes *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetVideoSourceModes, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetVideoSourceModes ? type : NULL); -} - -SOAP_FMAC3 _trt__GetVideoSourceModes ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoSourceModes(struct soap *soap, const char *tag, _trt__GetVideoSourceModes **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetVideoSourceModes **)soap_malloc(soap, sizeof(_trt__GetVideoSourceModes *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetVideoSourceModes *)soap_instantiate__trt__GetVideoSourceModes(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetVideoSourceModes **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetVideoSourceModes, sizeof(_trt__GetVideoSourceModes), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoSourceModes(struct soap *soap, _trt__GetVideoSourceModes *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetVideoSourceModes(soap, tag ? tag : "trt:GetVideoSourceModes", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetVideoSourceModes ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoSourceModes(struct soap *soap, _trt__GetVideoSourceModes **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetVideoSourceModes(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetSnapshotUri(struct soap *soap, _trt__GetSnapshotUri *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetSnapshotUri)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetSnapshotUri(struct soap *soap, const char *tag, int id, _trt__GetSnapshotUri *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetSnapshotUri, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetSnapshotUri ? type : NULL); -} - -SOAP_FMAC3 _trt__GetSnapshotUri ** SOAP_FMAC4 soap_in_PointerTo_trt__GetSnapshotUri(struct soap *soap, const char *tag, _trt__GetSnapshotUri **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetSnapshotUri **)soap_malloc(soap, sizeof(_trt__GetSnapshotUri *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetSnapshotUri *)soap_instantiate__trt__GetSnapshotUri(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetSnapshotUri **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetSnapshotUri, sizeof(_trt__GetSnapshotUri), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetSnapshotUri(struct soap *soap, _trt__GetSnapshotUri *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetSnapshotUri(soap, tag ? tag : "trt:GetSnapshotUri", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetSnapshotUri ** SOAP_FMAC4 soap_get_PointerTo_trt__GetSnapshotUri(struct soap *soap, _trt__GetSnapshotUri **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetSnapshotUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetSynchronizationPoint(struct soap *soap, _trt__SetSynchronizationPoint *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__SetSynchronizationPoint)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetSynchronizationPoint(struct soap *soap, const char *tag, int id, _trt__SetSynchronizationPoint *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__SetSynchronizationPoint, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__SetSynchronizationPoint ? type : NULL); -} - -SOAP_FMAC3 _trt__SetSynchronizationPoint ** SOAP_FMAC4 soap_in_PointerTo_trt__SetSynchronizationPoint(struct soap *soap, const char *tag, _trt__SetSynchronizationPoint **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__SetSynchronizationPoint **)soap_malloc(soap, sizeof(_trt__SetSynchronizationPoint *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__SetSynchronizationPoint *)soap_instantiate__trt__SetSynchronizationPoint(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__SetSynchronizationPoint **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__SetSynchronizationPoint, sizeof(_trt__SetSynchronizationPoint), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetSynchronizationPoint(struct soap *soap, _trt__SetSynchronizationPoint *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__SetSynchronizationPoint(soap, tag ? tag : "trt:SetSynchronizationPoint", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__SetSynchronizationPoint ** SOAP_FMAC4 soap_get_PointerTo_trt__SetSynchronizationPoint(struct soap *soap, _trt__SetSynchronizationPoint **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__SetSynchronizationPoint(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__StopMulticastStreaming(struct soap *soap, _trt__StopMulticastStreaming *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__StopMulticastStreaming)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__StopMulticastStreaming(struct soap *soap, const char *tag, int id, _trt__StopMulticastStreaming *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__StopMulticastStreaming, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__StopMulticastStreaming ? type : NULL); -} - -SOAP_FMAC3 _trt__StopMulticastStreaming ** SOAP_FMAC4 soap_in_PointerTo_trt__StopMulticastStreaming(struct soap *soap, const char *tag, _trt__StopMulticastStreaming **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__StopMulticastStreaming **)soap_malloc(soap, sizeof(_trt__StopMulticastStreaming *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__StopMulticastStreaming *)soap_instantiate__trt__StopMulticastStreaming(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__StopMulticastStreaming **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__StopMulticastStreaming, sizeof(_trt__StopMulticastStreaming), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__StopMulticastStreaming(struct soap *soap, _trt__StopMulticastStreaming *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__StopMulticastStreaming(soap, tag ? tag : "trt:StopMulticastStreaming", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__StopMulticastStreaming ** SOAP_FMAC4 soap_get_PointerTo_trt__StopMulticastStreaming(struct soap *soap, _trt__StopMulticastStreaming **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__StopMulticastStreaming(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__StartMulticastStreaming(struct soap *soap, _trt__StartMulticastStreaming *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__StartMulticastStreaming)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__StartMulticastStreaming(struct soap *soap, const char *tag, int id, _trt__StartMulticastStreaming *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__StartMulticastStreaming, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__StartMulticastStreaming ? type : NULL); -} - -SOAP_FMAC3 _trt__StartMulticastStreaming ** SOAP_FMAC4 soap_in_PointerTo_trt__StartMulticastStreaming(struct soap *soap, const char *tag, _trt__StartMulticastStreaming **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__StartMulticastStreaming **)soap_malloc(soap, sizeof(_trt__StartMulticastStreaming *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__StartMulticastStreaming *)soap_instantiate__trt__StartMulticastStreaming(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__StartMulticastStreaming **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__StartMulticastStreaming, sizeof(_trt__StartMulticastStreaming), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__StartMulticastStreaming(struct soap *soap, _trt__StartMulticastStreaming *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__StartMulticastStreaming(soap, tag ? tag : "trt:StartMulticastStreaming", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__StartMulticastStreaming ** SOAP_FMAC4 soap_get_PointerTo_trt__StartMulticastStreaming(struct soap *soap, _trt__StartMulticastStreaming **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__StartMulticastStreaming(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetStreamUri(struct soap *soap, _trt__GetStreamUri *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetStreamUri)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetStreamUri(struct soap *soap, const char *tag, int id, _trt__GetStreamUri *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetStreamUri, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetStreamUri ? type : NULL); -} - -SOAP_FMAC3 _trt__GetStreamUri ** SOAP_FMAC4 soap_in_PointerTo_trt__GetStreamUri(struct soap *soap, const char *tag, _trt__GetStreamUri **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetStreamUri **)soap_malloc(soap, sizeof(_trt__GetStreamUri *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetStreamUri *)soap_instantiate__trt__GetStreamUri(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetStreamUri **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetStreamUri, sizeof(_trt__GetStreamUri), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetStreamUri(struct soap *soap, _trt__GetStreamUri *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetStreamUri(soap, tag ? tag : "trt:GetStreamUri", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetStreamUri ** SOAP_FMAC4 soap_get_PointerTo_trt__GetStreamUri(struct soap *soap, _trt__GetStreamUri **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetStreamUri(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *tag, int id, _trt__GetGuaranteedNumberOfVideoEncoderInstances *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances ? type : NULL); -} - -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances ** SOAP_FMAC4 soap_in_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *tag, _trt__GetGuaranteedNumberOfVideoEncoderInstances **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetGuaranteedNumberOfVideoEncoderInstances **)soap_malloc(soap, sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstances *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetGuaranteedNumberOfVideoEncoderInstances *)soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetGuaranteedNumberOfVideoEncoderInstances **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances, sizeof(_trt__GetGuaranteedNumberOfVideoEncoderInstances), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag ? tag : "trt:GetGuaranteedNumberOfVideoEncoderInstances", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances ** SOAP_FMAC4 soap_get_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap *soap, _trt__GetAudioDecoderConfigurationOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *tag, int id, _trt__GetAudioDecoderConfigurationOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioDecoderConfigurationOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetAudioDecoderConfigurationOptions **)soap_malloc(soap, sizeof(_trt__GetAudioDecoderConfigurationOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetAudioDecoderConfigurationOptions *)soap_instantiate__trt__GetAudioDecoderConfigurationOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetAudioDecoderConfigurationOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions, sizeof(_trt__GetAudioDecoderConfigurationOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap *soap, _trt__GetAudioDecoderConfigurationOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, tag ? tag : "trt:GetAudioDecoderConfigurationOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap *soap, _trt__GetAudioDecoderConfigurationOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetAudioDecoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap *soap, _trt__GetAudioOutputConfigurationOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, int id, _trt__GetAudioOutputConfigurationOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioOutputConfigurationOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetAudioOutputConfigurationOptions **)soap_malloc(soap, sizeof(_trt__GetAudioOutputConfigurationOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetAudioOutputConfigurationOptions *)soap_instantiate__trt__GetAudioOutputConfigurationOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetAudioOutputConfigurationOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetAudioOutputConfigurationOptions, sizeof(_trt__GetAudioOutputConfigurationOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap *soap, _trt__GetAudioOutputConfigurationOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, tag ? tag : "trt:GetAudioOutputConfigurationOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap *soap, _trt__GetAudioOutputConfigurationOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetAudioOutputConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetMetadataConfigurationOptions(struct soap *soap, _trt__GetMetadataConfigurationOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetMetadataConfigurationOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetMetadataConfigurationOptions(struct soap *soap, const char *tag, int id, _trt__GetMetadataConfigurationOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetMetadataConfigurationOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetMetadataConfigurationOptions(struct soap *soap, const char *tag, _trt__GetMetadataConfigurationOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetMetadataConfigurationOptions **)soap_malloc(soap, sizeof(_trt__GetMetadataConfigurationOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetMetadataConfigurationOptions *)soap_instantiate__trt__GetMetadataConfigurationOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetMetadataConfigurationOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetMetadataConfigurationOptions, sizeof(_trt__GetMetadataConfigurationOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetMetadataConfigurationOptions(struct soap *soap, _trt__GetMetadataConfigurationOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetMetadataConfigurationOptions(soap, tag ? tag : "trt:GetMetadataConfigurationOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetMetadataConfigurationOptions(struct soap *soap, _trt__GetMetadataConfigurationOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetMetadataConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap *soap, _trt__GetAudioEncoderConfigurationOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, _trt__GetAudioEncoderConfigurationOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioEncoderConfigurationOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetAudioEncoderConfigurationOptions **)soap_malloc(soap, sizeof(_trt__GetAudioEncoderConfigurationOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetAudioEncoderConfigurationOptions *)soap_instantiate__trt__GetAudioEncoderConfigurationOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetAudioEncoderConfigurationOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions, sizeof(_trt__GetAudioEncoderConfigurationOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap *soap, _trt__GetAudioEncoderConfigurationOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, tag ? tag : "trt:GetAudioEncoderConfigurationOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap *soap, _trt__GetAudioEncoderConfigurationOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetAudioEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap *soap, _trt__GetAudioSourceConfigurationOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, int id, _trt__GetAudioSourceConfigurationOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *tag, _trt__GetAudioSourceConfigurationOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetAudioSourceConfigurationOptions **)soap_malloc(soap, sizeof(_trt__GetAudioSourceConfigurationOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetAudioSourceConfigurationOptions *)soap_instantiate__trt__GetAudioSourceConfigurationOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetAudioSourceConfigurationOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetAudioSourceConfigurationOptions, sizeof(_trt__GetAudioSourceConfigurationOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap *soap, _trt__GetAudioSourceConfigurationOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, tag ? tag : "trt:GetAudioSourceConfigurationOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap *soap, _trt__GetAudioSourceConfigurationOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetAudioSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap *soap, _trt__GetVideoEncoderConfigurationOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *tag, int id, _trt__GetVideoEncoderConfigurationOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *tag, _trt__GetVideoEncoderConfigurationOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetVideoEncoderConfigurationOptions **)soap_malloc(soap, sizeof(_trt__GetVideoEncoderConfigurationOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetVideoEncoderConfigurationOptions *)soap_instantiate__trt__GetVideoEncoderConfigurationOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetVideoEncoderConfigurationOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions, sizeof(_trt__GetVideoEncoderConfigurationOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap *soap, _trt__GetVideoEncoderConfigurationOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, tag ? tag : "trt:GetVideoEncoderConfigurationOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap *soap, _trt__GetVideoEncoderConfigurationOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetVideoEncoderConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap *soap, _trt__GetVideoSourceConfigurationOptions *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, int id, _trt__GetVideoSourceConfigurationOptions *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptions ? type : NULL); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *tag, _trt__GetVideoSourceConfigurationOptions **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__GetVideoSourceConfigurationOptions **)soap_malloc(soap, sizeof(_trt__GetVideoSourceConfigurationOptions *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__GetVideoSourceConfigurationOptions *)soap_instantiate__trt__GetVideoSourceConfigurationOptions(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__GetVideoSourceConfigurationOptions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__GetVideoSourceConfigurationOptions, sizeof(_trt__GetVideoSourceConfigurationOptions), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap *soap, _trt__GetVideoSourceConfigurationOptions *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, tag ? tag : "trt:GetVideoSourceConfigurationOptions", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap *soap, _trt__GetVideoSourceConfigurationOptions **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__GetVideoSourceConfigurationOptions(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetAudioDecoderConfiguration(struct soap *soap, _trt__SetAudioDecoderConfiguration *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__SetAudioDecoderConfiguration)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetAudioDecoderConfiguration(struct soap *soap, const char *tag, int id, _trt__SetAudioDecoderConfiguration *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__SetAudioDecoderConfiguration, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfiguration ? type : NULL); -} - -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetAudioDecoderConfiguration(struct soap *soap, const char *tag, _trt__SetAudioDecoderConfiguration **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__SetAudioDecoderConfiguration **)soap_malloc(soap, sizeof(_trt__SetAudioDecoderConfiguration *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__SetAudioDecoderConfiguration *)soap_instantiate__trt__SetAudioDecoderConfiguration(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__SetAudioDecoderConfiguration **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__SetAudioDecoderConfiguration, sizeof(_trt__SetAudioDecoderConfiguration), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetAudioDecoderConfiguration(struct soap *soap, _trt__SetAudioDecoderConfiguration *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__SetAudioDecoderConfiguration(soap, tag ? tag : "trt:SetAudioDecoderConfiguration", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetAudioDecoderConfiguration(struct soap *soap, _trt__SetAudioDecoderConfiguration **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__SetAudioDecoderConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetAudioOutputConfiguration(struct soap *soap, _trt__SetAudioOutputConfiguration *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__SetAudioOutputConfiguration)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetAudioOutputConfiguration(struct soap *soap, const char *tag, int id, _trt__SetAudioOutputConfiguration *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__SetAudioOutputConfiguration, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfiguration ? type : NULL); -} - -SOAP_FMAC3 _trt__SetAudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetAudioOutputConfiguration(struct soap *soap, const char *tag, _trt__SetAudioOutputConfiguration **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__SetAudioOutputConfiguration **)soap_malloc(soap, sizeof(_trt__SetAudioOutputConfiguration *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__SetAudioOutputConfiguration *)soap_instantiate__trt__SetAudioOutputConfiguration(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__SetAudioOutputConfiguration **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__SetAudioOutputConfiguration, sizeof(_trt__SetAudioOutputConfiguration), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetAudioOutputConfiguration(struct soap *soap, _trt__SetAudioOutputConfiguration *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__SetAudioOutputConfiguration(soap, tag ? tag : "trt:SetAudioOutputConfiguration", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__SetAudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetAudioOutputConfiguration(struct soap *soap, _trt__SetAudioOutputConfiguration **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__SetAudioOutputConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetMetadataConfiguration(struct soap *soap, _trt__SetMetadataConfiguration *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__SetMetadataConfiguration)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetMetadataConfiguration(struct soap *soap, const char *tag, int id, _trt__SetMetadataConfiguration *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__SetMetadataConfiguration, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__SetMetadataConfiguration ? type : NULL); -} - -SOAP_FMAC3 _trt__SetMetadataConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetMetadataConfiguration(struct soap *soap, const char *tag, _trt__SetMetadataConfiguration **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__SetMetadataConfiguration **)soap_malloc(soap, sizeof(_trt__SetMetadataConfiguration *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__SetMetadataConfiguration *)soap_instantiate__trt__SetMetadataConfiguration(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__SetMetadataConfiguration **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__SetMetadataConfiguration, sizeof(_trt__SetMetadataConfiguration), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetMetadataConfiguration(struct soap *soap, _trt__SetMetadataConfiguration *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__SetMetadataConfiguration(soap, tag ? tag : "trt:SetMetadataConfiguration", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__SetMetadataConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetMetadataConfiguration(struct soap *soap, _trt__SetMetadataConfiguration **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__SetMetadataConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap *soap, _trt__SetVideoAnalyticsConfiguration *const*a) -{ - (void)soap; (void)a; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration)) - (*a)->soap_serialize(soap); -#endif -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, int id, _trt__SetVideoAnalyticsConfiguration *const*a, const char *type) -{ - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration, NULL); - if (id < 0) - return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfiguration ? type : NULL); -} - -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *tag, _trt__SetVideoAnalyticsConfiguration **a, const char *type) -{ - (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) - return NULL; - if (!a) - if (!(a = (_trt__SetVideoAnalyticsConfiguration **)soap_malloc(soap, sizeof(_trt__SetVideoAnalyticsConfiguration *)))) - return NULL; - *a = NULL; - if (!soap->null && *soap->href != '#') - { soap_revert(soap); - if (!(*a = (_trt__SetVideoAnalyticsConfiguration *)soap_instantiate__trt__SetVideoAnalyticsConfiguration(soap, -1, soap->type, soap->arrayType, NULL))) - return NULL; - (*a)->soap_default(soap); - if (!(*a)->soap_in(soap, tag, NULL)) - { *a = NULL; - return NULL; - } - } - else - { a = (_trt__SetVideoAnalyticsConfiguration **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE__trt__SetVideoAnalyticsConfiguration, sizeof(_trt__SetVideoAnalyticsConfiguration), 0, soap_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap *soap, _trt__SetVideoAnalyticsConfiguration *const*a, const char *tag, const char *type) -{ - if (soap_out_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, tag ? tag : "trt:SetVideoAnalyticsConfiguration", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap *soap, _trt__SetVideoAnalyticsConfiguration **p, const char *tag, const char *type) -{ - if ((p = soap_in_PointerTo_trt__SetVideoAnalyticsConfiguration(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -#if defined(__BORLANDC__) -#pragma option pop -#pragma option pop -#endif - -/* End of soapC_nnn.cpp */ diff --git a/gen/soapC_002.o b/gen/soapC_002.o deleted file mode 100644 index c56a000..0000000 Binary files a/gen/soapC_002.o and /dev/null differ diff --git a/gen/soapC_003.cpp b/gen/soapC_003.cpp index fc87461..b67903c 100644 --- a/gen/soapC_003.cpp +++ b/gen/soapC_003.cpp @@ -18,7 +18,7 @@ A commercial use license is available from Genivia Inc., contact@genivia.com #include "soapH.h" -SOAP_SOURCE_STAMP("@(#) soapC_nnn.cpp ver 2.8.138 2025-04-24 07:11:07 GMT") +SOAP_SOURCE_STAMP("@(#) soapC_nnn.cpp ver 2.8.138 2025-04-28 01:47:05 GMT") SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetAudioEncoderConfiguration(struct soap *soap, _trt__SetAudioEncoderConfiguration *const*a) diff --git a/gen/soapC_004.cpp b/gen/soapC_004.cpp index a99f412..a83218f 100644 --- a/gen/soapC_004.cpp +++ b/gen/soapC_004.cpp @@ -18,7 +18,7 @@ A commercial use license is available from Genivia Inc., contact@genivia.com #include "soapH.h" -SOAP_SOURCE_STAMP("@(#) soapC_nnn.cpp ver 2.8.138 2025-04-24 07:11:07 GMT") +SOAP_SOURCE_STAMP("@(#) soapC_nnn.cpp ver 2.8.138 2025-04-28 01:47:05 GMT") SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(struct soap *soap, std::vector<_wstop__TopicNamespaceType_Topic> *p) diff --git a/gen/soapCreatePullPointBindingProxy.cpp b/gen/soapCreatePullPointBindingProxy.cpp deleted file mode 100644 index 1229c65..0000000 --- a/gen/soapCreatePullPointBindingProxy.cpp +++ /dev/null @@ -1,283 +0,0 @@ -/* soapCreatePullPointBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapCreatePullPointBindingProxy.h" - -CreatePullPointBindingProxy::CreatePullPointBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -CreatePullPointBindingProxy::CreatePullPointBindingProxy(const CreatePullPointBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -CreatePullPointBindingProxy::CreatePullPointBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - CreatePullPointBindingProxy_init(_soap->imode, _soap->omode); -} - -CreatePullPointBindingProxy::CreatePullPointBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - CreatePullPointBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -CreatePullPointBindingProxy::CreatePullPointBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -CreatePullPointBindingProxy::CreatePullPointBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingProxy_init(iomode, iomode); -} - -CreatePullPointBindingProxy::CreatePullPointBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -CreatePullPointBindingProxy::CreatePullPointBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingProxy_init(imode, omode); -} - -CreatePullPointBindingProxy::~CreatePullPointBindingProxy() -{ if (this->soap_own) - { CreatePullPointBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void CreatePullPointBindingProxy::CreatePullPointBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -CreatePullPointBindingProxy *CreatePullPointBindingProxy::copy() -{ CreatePullPointBindingProxy *dup = SOAP_NEW_UNMANAGED(CreatePullPointBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -CreatePullPointBindingProxy& CreatePullPointBindingProxy::operator=(const CreatePullPointBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void CreatePullPointBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void CreatePullPointBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - CreatePullPointBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void CreatePullPointBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void CreatePullPointBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *CreatePullPointBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *CreatePullPointBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *CreatePullPointBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *CreatePullPointBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *CreatePullPointBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int CreatePullPointBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int CreatePullPointBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void CreatePullPointBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void CreatePullPointBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *CreatePullPointBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int CreatePullPointBindingProxy::send_CreatePullPoint(const char *soap_endpoint_url, const char *soap_action, _wsnt__CreatePullPoint *wsnt__CreatePullPoint) -{ - struct __tevcpp__CreatePullPoint soap_tmp___tevcpp__CreatePullPoint; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/CreatePullPoint/CreatePullPointRequest"; - soap_tmp___tevcpp__CreatePullPoint.wsnt__CreatePullPoint = wsnt__CreatePullPoint; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevcpp__CreatePullPoint(soap, &soap_tmp___tevcpp__CreatePullPoint); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevcpp__CreatePullPoint(soap, &soap_tmp___tevcpp__CreatePullPoint, "-tevcpp:CreatePullPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevcpp__CreatePullPoint(soap, &soap_tmp___tevcpp__CreatePullPoint, "-tevcpp:CreatePullPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int CreatePullPointBindingProxy::recv_CreatePullPoint(_wsnt__CreatePullPointResponse &wsnt__CreatePullPointResponse) -{ - wsnt__CreatePullPointResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - wsnt__CreatePullPointResponse.soap_get(soap, "wsnt:CreatePullPointResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapCreatePullPointBindingProxy.h b/gen/soapCreatePullPointBindingProxy.h deleted file mode 100644 index 97cb15f..0000000 --- a/gen/soapCreatePullPointBindingProxy.h +++ /dev/null @@ -1,93 +0,0 @@ -/* soapCreatePullPointBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapCreatePullPointBindingProxy_H -#define soapCreatePullPointBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC CreatePullPointBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'CreatePullPointBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - CreatePullPointBindingProxy(); - /// Copy constructor - CreatePullPointBindingProxy(const CreatePullPointBindingProxy& rhs); - /// Construct proxy given a shared managing context - CreatePullPointBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - CreatePullPointBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - CreatePullPointBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - CreatePullPointBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - CreatePullPointBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - CreatePullPointBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~CreatePullPointBindingProxy(); - /// Initializer used by constructors - virtual void CreatePullPointBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual CreatePullPointBindingProxy *copy(); - /// Copy assignment - CreatePullPointBindingProxy& operator=(const CreatePullPointBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'CreatePullPoint' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreatePullPoint(_wsnt__CreatePullPoint *wsnt__CreatePullPoint, _wsnt__CreatePullPointResponse &wsnt__CreatePullPointResponse) { return this->CreatePullPoint(NULL, NULL, wsnt__CreatePullPoint, wsnt__CreatePullPointResponse); } - /// Web service synchronous operation 'CreatePullPoint' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreatePullPoint(const char *soap_endpoint_url, const char *soap_action, _wsnt__CreatePullPoint *wsnt__CreatePullPoint, _wsnt__CreatePullPointResponse &wsnt__CreatePullPointResponse) { return this->send_CreatePullPoint(soap_endpoint_url, soap_action, wsnt__CreatePullPoint) || this->recv_CreatePullPoint(wsnt__CreatePullPointResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreatePullPoint' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreatePullPoint(const char *soap_endpoint_url, const char *soap_action, _wsnt__CreatePullPoint *wsnt__CreatePullPoint); - /// Web service asynchronous operation 'recv_CreatePullPoint' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreatePullPoint(_wsnt__CreatePullPointResponse &wsnt__CreatePullPointResponse); - }; -#endif diff --git a/gen/soapCreatePullPointBindingService.cpp b/gen/soapCreatePullPointBindingService.cpp deleted file mode 100644 index 690b20d..0000000 --- a/gen/soapCreatePullPointBindingService.cpp +++ /dev/null @@ -1,345 +0,0 @@ -/* soapCreatePullPointBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapCreatePullPointBindingService.h" - -CreatePullPointBindingService::CreatePullPointBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -CreatePullPointBindingService::CreatePullPointBindingService(const CreatePullPointBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -CreatePullPointBindingService::CreatePullPointBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - CreatePullPointBindingService_init(_soap->imode, _soap->omode); -} - -CreatePullPointBindingService::CreatePullPointBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingService_init(iomode, iomode); -} - -CreatePullPointBindingService::CreatePullPointBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - CreatePullPointBindingService_init(imode, omode); -} - -CreatePullPointBindingService::~CreatePullPointBindingService() -{ if (this->soap_own) - { CreatePullPointBindingService::destroy(); - soap_free(this->soap); - } -} - -void CreatePullPointBindingService::CreatePullPointBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void CreatePullPointBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void CreatePullPointBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - CreatePullPointBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -CreatePullPointBindingService *CreatePullPointBindingService::copy() -{ CreatePullPointBindingService *dup = SOAP_NEW_UNMANAGED(CreatePullPointBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -CreatePullPointBindingService& CreatePullPointBindingService::operator=(const CreatePullPointBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int CreatePullPointBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int CreatePullPointBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int CreatePullPointBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int CreatePullPointBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int CreatePullPointBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int CreatePullPointBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void CreatePullPointBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void CreatePullPointBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *CreatePullPointBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void CreatePullPointBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void CreatePullPointBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *CreatePullPointBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int CreatePullPointBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int CreatePullPointBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET CreatePullPointBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET CreatePullPointBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int CreatePullPointBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int CreatePullPointBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___tevcpp__CreatePullPoint(struct soap*, CreatePullPointBindingService*); - -int CreatePullPointBindingService::dispatch() -{ return dispatch(this->soap); -} - -int CreatePullPointBindingService::dispatch(struct soap* soap) -{ - CreatePullPointBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "wsnt:CreatePullPoint")) - return serve___tevcpp__CreatePullPoint(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___tevcpp__CreatePullPoint(struct soap *soap, CreatePullPointBindingService *service) -{ struct __tevcpp__CreatePullPoint soap_tmp___tevcpp__CreatePullPoint; - _wsnt__CreatePullPointResponse wsnt__CreatePullPointResponse; - wsnt__CreatePullPointResponse.soap_default(soap); - soap_default___tevcpp__CreatePullPoint(soap, &soap_tmp___tevcpp__CreatePullPoint); - if (!soap_get___tevcpp__CreatePullPoint(soap, &soap_tmp___tevcpp__CreatePullPoint, "-tevcpp:CreatePullPoint", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreatePullPoint(soap_tmp___tevcpp__CreatePullPoint.wsnt__CreatePullPoint, wsnt__CreatePullPointResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - wsnt__CreatePullPointResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__CreatePullPointResponse.soap_put(soap, "wsnt:CreatePullPointResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__CreatePullPointResponse.soap_put(soap, "wsnt:CreatePullPointResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapCreatePullPointBindingService.h b/gen/soapCreatePullPointBindingService.h deleted file mode 100644 index 23c489e..0000000 --- a/gen/soapCreatePullPointBindingService.h +++ /dev/null @@ -1,103 +0,0 @@ -/* soapCreatePullPointBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapCreatePullPointBindingService_H -#define soapCreatePullPointBindingService_H -#include "soapH.h" - - class SOAP_CMAC CreatePullPointBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - CreatePullPointBindingService(); - /// Copy constructor - CreatePullPointBindingService(const CreatePullPointBindingService&); - /// Construct service given a shared managing context - CreatePullPointBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - CreatePullPointBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - CreatePullPointBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~CreatePullPointBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void CreatePullPointBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual CreatePullPointBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - CreatePullPointBindingService& operator=(const CreatePullPointBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'CreatePullPoint' implementation, should return SOAP_OK or error code - virtual int CreatePullPoint(_wsnt__CreatePullPoint *wsnt__CreatePullPoint, _wsnt__CreatePullPointResponse &wsnt__CreatePullPointResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapDeviceBindingProxy.cpp b/gen/soapDeviceBindingProxy.cpp deleted file mode 100644 index 85a92cc..0000000 --- a/gen/soapDeviceBindingProxy.cpp +++ /dev/null @@ -1,5267 +0,0 @@ -/* soapDeviceBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapDeviceBindingProxy.h" - -DeviceBindingProxy::DeviceBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -DeviceBindingProxy::DeviceBindingProxy(const DeviceBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -DeviceBindingProxy::DeviceBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - DeviceBindingProxy_init(_soap->imode, _soap->omode); -} - -DeviceBindingProxy::DeviceBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - DeviceBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -DeviceBindingProxy::DeviceBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -DeviceBindingProxy::DeviceBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingProxy_init(iomode, iomode); -} - -DeviceBindingProxy::DeviceBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -DeviceBindingProxy::DeviceBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingProxy_init(imode, omode); -} - -DeviceBindingProxy::~DeviceBindingProxy() -{ if (this->soap_own) - { DeviceBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void DeviceBindingProxy::DeviceBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -DeviceBindingProxy *DeviceBindingProxy::copy() -{ DeviceBindingProxy *dup = SOAP_NEW_UNMANAGED(DeviceBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -DeviceBindingProxy& DeviceBindingProxy::operator=(const DeviceBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void DeviceBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void DeviceBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - DeviceBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void DeviceBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void DeviceBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *DeviceBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *DeviceBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *DeviceBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *DeviceBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *DeviceBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int DeviceBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int DeviceBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void DeviceBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void DeviceBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *DeviceBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int DeviceBindingProxy::send_GetServices(const char *soap_endpoint_url, const char *soap_action, _tds__GetServices *tds__GetServices) -{ - struct __tds__GetServices soap_tmp___tds__GetServices; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetServices"; - soap_tmp___tds__GetServices.tds__GetServices = tds__GetServices; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetServices(soap, &soap_tmp___tds__GetServices); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetServices(soap, &soap_tmp___tds__GetServices, "-tds:GetServices", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetServices(soap, &soap_tmp___tds__GetServices, "-tds:GetServices", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetServices(_tds__GetServicesResponse &tds__GetServicesResponse) -{ - tds__GetServicesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetServicesResponse.soap_get(soap, "tds:GetServicesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetServiceCapabilities *tds__GetServiceCapabilities) -{ - struct __tds__GetServiceCapabilities soap_tmp___tds__GetServiceCapabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetServiceCapabilities"; - soap_tmp___tds__GetServiceCapabilities.tds__GetServiceCapabilities = tds__GetServiceCapabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetServiceCapabilities(soap, &soap_tmp___tds__GetServiceCapabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetServiceCapabilities(soap, &soap_tmp___tds__GetServiceCapabilities, "-tds:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetServiceCapabilities(soap, &soap_tmp___tds__GetServiceCapabilities, "-tds:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetServiceCapabilities(_tds__GetServiceCapabilitiesResponse &tds__GetServiceCapabilitiesResponse) -{ - tds__GetServiceCapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetServiceCapabilitiesResponse.soap_get(soap, "tds:GetServiceCapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDeviceInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetDeviceInformation *tds__GetDeviceInformation) -{ - struct __tds__GetDeviceInformation soap_tmp___tds__GetDeviceInformation; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDeviceInformation"; - soap_tmp___tds__GetDeviceInformation.tds__GetDeviceInformation = tds__GetDeviceInformation; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDeviceInformation(soap, &soap_tmp___tds__GetDeviceInformation); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDeviceInformation(soap, &soap_tmp___tds__GetDeviceInformation, "-tds:GetDeviceInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDeviceInformation(soap, &soap_tmp___tds__GetDeviceInformation, "-tds:GetDeviceInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDeviceInformation(_tds__GetDeviceInformationResponse &tds__GetDeviceInformationResponse) -{ - tds__GetDeviceInformationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDeviceInformationResponse.soap_get(soap, "tds:GetDeviceInformationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetSystemDateAndTime(const char *soap_endpoint_url, const char *soap_action, _tds__SetSystemDateAndTime *tds__SetSystemDateAndTime) -{ - struct __tds__SetSystemDateAndTime soap_tmp___tds__SetSystemDateAndTime; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetSystemDateAndTime"; - soap_tmp___tds__SetSystemDateAndTime.tds__SetSystemDateAndTime = tds__SetSystemDateAndTime; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetSystemDateAndTime(soap, &soap_tmp___tds__SetSystemDateAndTime); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetSystemDateAndTime(soap, &soap_tmp___tds__SetSystemDateAndTime, "-tds:SetSystemDateAndTime", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetSystemDateAndTime(soap, &soap_tmp___tds__SetSystemDateAndTime, "-tds:SetSystemDateAndTime", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetSystemDateAndTime(_tds__SetSystemDateAndTimeResponse &tds__SetSystemDateAndTimeResponse) -{ - tds__SetSystemDateAndTimeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetSystemDateAndTimeResponse.soap_get(soap, "tds:SetSystemDateAndTimeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetSystemDateAndTime(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemDateAndTime *tds__GetSystemDateAndTime) -{ - struct __tds__GetSystemDateAndTime soap_tmp___tds__GetSystemDateAndTime; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetSystemDateAndTime"; - soap_tmp___tds__GetSystemDateAndTime.tds__GetSystemDateAndTime = tds__GetSystemDateAndTime; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetSystemDateAndTime(soap, &soap_tmp___tds__GetSystemDateAndTime); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemDateAndTime(soap, &soap_tmp___tds__GetSystemDateAndTime, "-tds:GetSystemDateAndTime", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemDateAndTime(soap, &soap_tmp___tds__GetSystemDateAndTime, "-tds:GetSystemDateAndTime", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetSystemDateAndTime(_tds__GetSystemDateAndTimeResponse &tds__GetSystemDateAndTimeResponse) -{ - tds__GetSystemDateAndTimeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetSystemDateAndTimeResponse.soap_get(soap, "tds:GetSystemDateAndTimeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetSystemFactoryDefault(const char *soap_endpoint_url, const char *soap_action, _tds__SetSystemFactoryDefault *tds__SetSystemFactoryDefault) -{ - struct __tds__SetSystemFactoryDefault soap_tmp___tds__SetSystemFactoryDefault; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetSystemFactoryDefault"; - soap_tmp___tds__SetSystemFactoryDefault.tds__SetSystemFactoryDefault = tds__SetSystemFactoryDefault; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetSystemFactoryDefault(soap, &soap_tmp___tds__SetSystemFactoryDefault); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetSystemFactoryDefault(soap, &soap_tmp___tds__SetSystemFactoryDefault, "-tds:SetSystemFactoryDefault", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetSystemFactoryDefault(soap, &soap_tmp___tds__SetSystemFactoryDefault, "-tds:SetSystemFactoryDefault", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetSystemFactoryDefault(_tds__SetSystemFactoryDefaultResponse &tds__SetSystemFactoryDefaultResponse) -{ - tds__SetSystemFactoryDefaultResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetSystemFactoryDefaultResponse.soap_get(soap, "tds:SetSystemFactoryDefaultResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_UpgradeSystemFirmware(const char *soap_endpoint_url, const char *soap_action, _tds__UpgradeSystemFirmware *tds__UpgradeSystemFirmware) -{ - struct __tds__UpgradeSystemFirmware soap_tmp___tds__UpgradeSystemFirmware; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/UpgradeSystemFirmware"; - soap_tmp___tds__UpgradeSystemFirmware.tds__UpgradeSystemFirmware = tds__UpgradeSystemFirmware; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__UpgradeSystemFirmware(soap, &soap_tmp___tds__UpgradeSystemFirmware); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__UpgradeSystemFirmware(soap, &soap_tmp___tds__UpgradeSystemFirmware, "-tds:UpgradeSystemFirmware", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__UpgradeSystemFirmware(soap, &soap_tmp___tds__UpgradeSystemFirmware, "-tds:UpgradeSystemFirmware", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_UpgradeSystemFirmware(_tds__UpgradeSystemFirmwareResponse &tds__UpgradeSystemFirmwareResponse) -{ - tds__UpgradeSystemFirmwareResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__UpgradeSystemFirmwareResponse.soap_get(soap, "tds:UpgradeSystemFirmwareResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SystemReboot(const char *soap_endpoint_url, const char *soap_action, _tds__SystemReboot *tds__SystemReboot) -{ - struct __tds__SystemReboot soap_tmp___tds__SystemReboot; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SystemReboot"; - soap_tmp___tds__SystemReboot.tds__SystemReboot = tds__SystemReboot; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SystemReboot(soap, &soap_tmp___tds__SystemReboot); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SystemReboot(soap, &soap_tmp___tds__SystemReboot, "-tds:SystemReboot", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SystemReboot(soap, &soap_tmp___tds__SystemReboot, "-tds:SystemReboot", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SystemReboot(_tds__SystemRebootResponse &tds__SystemRebootResponse) -{ - tds__SystemRebootResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SystemRebootResponse.soap_get(soap, "tds:SystemRebootResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_RestoreSystem(const char *soap_endpoint_url, const char *soap_action, _tds__RestoreSystem *tds__RestoreSystem) -{ - struct __tds__RestoreSystem soap_tmp___tds__RestoreSystem; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/RestoreSystem"; - soap_tmp___tds__RestoreSystem.tds__RestoreSystem = tds__RestoreSystem; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__RestoreSystem(soap, &soap_tmp___tds__RestoreSystem); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__RestoreSystem(soap, &soap_tmp___tds__RestoreSystem, "-tds:RestoreSystem", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__RestoreSystem(soap, &soap_tmp___tds__RestoreSystem, "-tds:RestoreSystem", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_RestoreSystem(_tds__RestoreSystemResponse &tds__RestoreSystemResponse) -{ - tds__RestoreSystemResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__RestoreSystemResponse.soap_get(soap, "tds:RestoreSystemResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetSystemBackup(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemBackup *tds__GetSystemBackup) -{ - struct __tds__GetSystemBackup soap_tmp___tds__GetSystemBackup; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetSystemBackup"; - soap_tmp___tds__GetSystemBackup.tds__GetSystemBackup = tds__GetSystemBackup; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetSystemBackup(soap, &soap_tmp___tds__GetSystemBackup); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemBackup(soap, &soap_tmp___tds__GetSystemBackup, "-tds:GetSystemBackup", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemBackup(soap, &soap_tmp___tds__GetSystemBackup, "-tds:GetSystemBackup", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetSystemBackup(_tds__GetSystemBackupResponse &tds__GetSystemBackupResponse) -{ - tds__GetSystemBackupResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetSystemBackupResponse.soap_get(soap, "tds:GetSystemBackupResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetSystemLog(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemLog *tds__GetSystemLog) -{ - struct __tds__GetSystemLog soap_tmp___tds__GetSystemLog; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetSystemLog"; - soap_tmp___tds__GetSystemLog.tds__GetSystemLog = tds__GetSystemLog; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetSystemLog(soap, &soap_tmp___tds__GetSystemLog); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemLog(soap, &soap_tmp___tds__GetSystemLog, "-tds:GetSystemLog", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemLog(soap, &soap_tmp___tds__GetSystemLog, "-tds:GetSystemLog", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetSystemLog(_tds__GetSystemLogResponse &tds__GetSystemLogResponse) -{ - tds__GetSystemLogResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetSystemLogResponse.soap_get(soap, "tds:GetSystemLogResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetSystemSupportInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemSupportInformation *tds__GetSystemSupportInformation) -{ - struct __tds__GetSystemSupportInformation soap_tmp___tds__GetSystemSupportInformation; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetSystemSupportInformation"; - soap_tmp___tds__GetSystemSupportInformation.tds__GetSystemSupportInformation = tds__GetSystemSupportInformation; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetSystemSupportInformation(soap, &soap_tmp___tds__GetSystemSupportInformation); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemSupportInformation(soap, &soap_tmp___tds__GetSystemSupportInformation, "-tds:GetSystemSupportInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemSupportInformation(soap, &soap_tmp___tds__GetSystemSupportInformation, "-tds:GetSystemSupportInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetSystemSupportInformation(_tds__GetSystemSupportInformationResponse &tds__GetSystemSupportInformationResponse) -{ - tds__GetSystemSupportInformationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetSystemSupportInformationResponse.soap_get(soap, "tds:GetSystemSupportInformationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetScopes(const char *soap_endpoint_url, const char *soap_action, _tds__GetScopes *tds__GetScopes) -{ - struct __tds__GetScopes soap_tmp___tds__GetScopes; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetScopes"; - soap_tmp___tds__GetScopes.tds__GetScopes = tds__GetScopes; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetScopes(soap, &soap_tmp___tds__GetScopes); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetScopes(soap, &soap_tmp___tds__GetScopes, "-tds:GetScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetScopes(soap, &soap_tmp___tds__GetScopes, "-tds:GetScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetScopes(_tds__GetScopesResponse &tds__GetScopesResponse) -{ - tds__GetScopesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetScopesResponse.soap_get(soap, "tds:GetScopesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetScopes(const char *soap_endpoint_url, const char *soap_action, _tds__SetScopes *tds__SetScopes) -{ - struct __tds__SetScopes soap_tmp___tds__SetScopes; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetScopes"; - soap_tmp___tds__SetScopes.tds__SetScopes = tds__SetScopes; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetScopes(soap, &soap_tmp___tds__SetScopes); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetScopes(soap, &soap_tmp___tds__SetScopes, "-tds:SetScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetScopes(soap, &soap_tmp___tds__SetScopes, "-tds:SetScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetScopes(_tds__SetScopesResponse &tds__SetScopesResponse) -{ - tds__SetScopesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetScopesResponse.soap_get(soap, "tds:SetScopesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_AddScopes(const char *soap_endpoint_url, const char *soap_action, _tds__AddScopes *tds__AddScopes) -{ - struct __tds__AddScopes soap_tmp___tds__AddScopes; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/AddScopes"; - soap_tmp___tds__AddScopes.tds__AddScopes = tds__AddScopes; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__AddScopes(soap, &soap_tmp___tds__AddScopes); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__AddScopes(soap, &soap_tmp___tds__AddScopes, "-tds:AddScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__AddScopes(soap, &soap_tmp___tds__AddScopes, "-tds:AddScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_AddScopes(_tds__AddScopesResponse &tds__AddScopesResponse) -{ - tds__AddScopesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__AddScopesResponse.soap_get(soap, "tds:AddScopesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_RemoveScopes(const char *soap_endpoint_url, const char *soap_action, _tds__RemoveScopes *tds__RemoveScopes) -{ - struct __tds__RemoveScopes soap_tmp___tds__RemoveScopes; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/RemoveScopes"; - soap_tmp___tds__RemoveScopes.tds__RemoveScopes = tds__RemoveScopes; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__RemoveScopes(soap, &soap_tmp___tds__RemoveScopes); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__RemoveScopes(soap, &soap_tmp___tds__RemoveScopes, "-tds:RemoveScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__RemoveScopes(soap, &soap_tmp___tds__RemoveScopes, "-tds:RemoveScopes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_RemoveScopes(_tds__RemoveScopesResponse &tds__RemoveScopesResponse) -{ - tds__RemoveScopesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__RemoveScopesResponse.soap_get(soap, "tds:RemoveScopesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetDiscoveryMode *tds__GetDiscoveryMode) -{ - struct __tds__GetDiscoveryMode soap_tmp___tds__GetDiscoveryMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDiscoveryMode"; - soap_tmp___tds__GetDiscoveryMode.tds__GetDiscoveryMode = tds__GetDiscoveryMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDiscoveryMode(soap, &soap_tmp___tds__GetDiscoveryMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDiscoveryMode(soap, &soap_tmp___tds__GetDiscoveryMode, "-tds:GetDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDiscoveryMode(soap, &soap_tmp___tds__GetDiscoveryMode, "-tds:GetDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDiscoveryMode(_tds__GetDiscoveryModeResponse &tds__GetDiscoveryModeResponse) -{ - tds__GetDiscoveryModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDiscoveryModeResponse.soap_get(soap, "tds:GetDiscoveryModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetDiscoveryMode *tds__SetDiscoveryMode) -{ - struct __tds__SetDiscoveryMode soap_tmp___tds__SetDiscoveryMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetDiscoveryMode"; - soap_tmp___tds__SetDiscoveryMode.tds__SetDiscoveryMode = tds__SetDiscoveryMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetDiscoveryMode(soap, &soap_tmp___tds__SetDiscoveryMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDiscoveryMode(soap, &soap_tmp___tds__SetDiscoveryMode, "-tds:SetDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDiscoveryMode(soap, &soap_tmp___tds__SetDiscoveryMode, "-tds:SetDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetDiscoveryMode(_tds__SetDiscoveryModeResponse &tds__SetDiscoveryModeResponse) -{ - tds__SetDiscoveryModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetDiscoveryModeResponse.soap_get(soap, "tds:SetDiscoveryModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetRemoteDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetRemoteDiscoveryMode *tds__GetRemoteDiscoveryMode) -{ - struct __tds__GetRemoteDiscoveryMode soap_tmp___tds__GetRemoteDiscoveryMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetRemoteDiscoveryMode"; - soap_tmp___tds__GetRemoteDiscoveryMode.tds__GetRemoteDiscoveryMode = tds__GetRemoteDiscoveryMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetRemoteDiscoveryMode(soap, &soap_tmp___tds__GetRemoteDiscoveryMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetRemoteDiscoveryMode(soap, &soap_tmp___tds__GetRemoteDiscoveryMode, "-tds:GetRemoteDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetRemoteDiscoveryMode(soap, &soap_tmp___tds__GetRemoteDiscoveryMode, "-tds:GetRemoteDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetRemoteDiscoveryMode(_tds__GetRemoteDiscoveryModeResponse &tds__GetRemoteDiscoveryModeResponse) -{ - tds__GetRemoteDiscoveryModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetRemoteDiscoveryModeResponse.soap_get(soap, "tds:GetRemoteDiscoveryModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetRemoteDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetRemoteDiscoveryMode *tds__SetRemoteDiscoveryMode) -{ - struct __tds__SetRemoteDiscoveryMode soap_tmp___tds__SetRemoteDiscoveryMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetRemoteDiscoveryMode"; - soap_tmp___tds__SetRemoteDiscoveryMode.tds__SetRemoteDiscoveryMode = tds__SetRemoteDiscoveryMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetRemoteDiscoveryMode(soap, &soap_tmp___tds__SetRemoteDiscoveryMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRemoteDiscoveryMode(soap, &soap_tmp___tds__SetRemoteDiscoveryMode, "-tds:SetRemoteDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRemoteDiscoveryMode(soap, &soap_tmp___tds__SetRemoteDiscoveryMode, "-tds:SetRemoteDiscoveryMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetRemoteDiscoveryMode(_tds__SetRemoteDiscoveryModeResponse &tds__SetRemoteDiscoveryModeResponse) -{ - tds__SetRemoteDiscoveryModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetRemoteDiscoveryModeResponse.soap_get(soap, "tds:SetRemoteDiscoveryModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDPAddresses(const char *soap_endpoint_url, const char *soap_action, _tds__GetDPAddresses *tds__GetDPAddresses) -{ - struct __tds__GetDPAddresses soap_tmp___tds__GetDPAddresses; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDPAddresses"; - soap_tmp___tds__GetDPAddresses.tds__GetDPAddresses = tds__GetDPAddresses; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDPAddresses(soap, &soap_tmp___tds__GetDPAddresses); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDPAddresses(soap, &soap_tmp___tds__GetDPAddresses, "-tds:GetDPAddresses", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDPAddresses(soap, &soap_tmp___tds__GetDPAddresses, "-tds:GetDPAddresses", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDPAddresses(_tds__GetDPAddressesResponse &tds__GetDPAddressesResponse) -{ - tds__GetDPAddressesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDPAddressesResponse.soap_get(soap, "tds:GetDPAddressesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetEndpointReference(const char *soap_endpoint_url, const char *soap_action, _tds__GetEndpointReference *tds__GetEndpointReference) -{ - struct __tds__GetEndpointReference soap_tmp___tds__GetEndpointReference; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetEndpointReference"; - soap_tmp___tds__GetEndpointReference.tds__GetEndpointReference = tds__GetEndpointReference; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetEndpointReference(soap, &soap_tmp___tds__GetEndpointReference); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetEndpointReference(soap, &soap_tmp___tds__GetEndpointReference, "-tds:GetEndpointReference", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetEndpointReference(soap, &soap_tmp___tds__GetEndpointReference, "-tds:GetEndpointReference", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetEndpointReference(_tds__GetEndpointReferenceResponse &tds__GetEndpointReferenceResponse) -{ - tds__GetEndpointReferenceResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetEndpointReferenceResponse.soap_get(soap, "tds:GetEndpointReferenceResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetRemoteUser(const char *soap_endpoint_url, const char *soap_action, _tds__GetRemoteUser *tds__GetRemoteUser) -{ - struct __tds__GetRemoteUser soap_tmp___tds__GetRemoteUser; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetRemoteUser"; - soap_tmp___tds__GetRemoteUser.tds__GetRemoteUser = tds__GetRemoteUser; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetRemoteUser(soap, &soap_tmp___tds__GetRemoteUser); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetRemoteUser(soap, &soap_tmp___tds__GetRemoteUser, "-tds:GetRemoteUser", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetRemoteUser(soap, &soap_tmp___tds__GetRemoteUser, "-tds:GetRemoteUser", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetRemoteUser(_tds__GetRemoteUserResponse &tds__GetRemoteUserResponse) -{ - tds__GetRemoteUserResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetRemoteUserResponse.soap_get(soap, "tds:GetRemoteUserResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetRemoteUser(const char *soap_endpoint_url, const char *soap_action, _tds__SetRemoteUser *tds__SetRemoteUser) -{ - struct __tds__SetRemoteUser soap_tmp___tds__SetRemoteUser; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetRemoteUser"; - soap_tmp___tds__SetRemoteUser.tds__SetRemoteUser = tds__SetRemoteUser; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetRemoteUser(soap, &soap_tmp___tds__SetRemoteUser); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRemoteUser(soap, &soap_tmp___tds__SetRemoteUser, "-tds:SetRemoteUser", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRemoteUser(soap, &soap_tmp___tds__SetRemoteUser, "-tds:SetRemoteUser", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetRemoteUser(_tds__SetRemoteUserResponse &tds__SetRemoteUserResponse) -{ - tds__SetRemoteUserResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetRemoteUserResponse.soap_get(soap, "tds:SetRemoteUserResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetUsers(const char *soap_endpoint_url, const char *soap_action, _tds__GetUsers *tds__GetUsers) -{ - struct __tds__GetUsers soap_tmp___tds__GetUsers; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetUsers"; - soap_tmp___tds__GetUsers.tds__GetUsers = tds__GetUsers; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetUsers(soap, &soap_tmp___tds__GetUsers); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetUsers(soap, &soap_tmp___tds__GetUsers, "-tds:GetUsers", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetUsers(soap, &soap_tmp___tds__GetUsers, "-tds:GetUsers", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetUsers(_tds__GetUsersResponse &tds__GetUsersResponse) -{ - tds__GetUsersResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetUsersResponse.soap_get(soap, "tds:GetUsersResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_CreateUsers(const char *soap_endpoint_url, const char *soap_action, _tds__CreateUsers *tds__CreateUsers) -{ - struct __tds__CreateUsers soap_tmp___tds__CreateUsers; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/CreateUsers"; - soap_tmp___tds__CreateUsers.tds__CreateUsers = tds__CreateUsers; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__CreateUsers(soap, &soap_tmp___tds__CreateUsers); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateUsers(soap, &soap_tmp___tds__CreateUsers, "-tds:CreateUsers", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateUsers(soap, &soap_tmp___tds__CreateUsers, "-tds:CreateUsers", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_CreateUsers(_tds__CreateUsersResponse &tds__CreateUsersResponse) -{ - tds__CreateUsersResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__CreateUsersResponse.soap_get(soap, "tds:CreateUsersResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_DeleteUsers(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteUsers *tds__DeleteUsers) -{ - struct __tds__DeleteUsers soap_tmp___tds__DeleteUsers; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/DeleteUsers"; - soap_tmp___tds__DeleteUsers.tds__DeleteUsers = tds__DeleteUsers; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__DeleteUsers(soap, &soap_tmp___tds__DeleteUsers); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteUsers(soap, &soap_tmp___tds__DeleteUsers, "-tds:DeleteUsers", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteUsers(soap, &soap_tmp___tds__DeleteUsers, "-tds:DeleteUsers", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_DeleteUsers(_tds__DeleteUsersResponse &tds__DeleteUsersResponse) -{ - tds__DeleteUsersResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__DeleteUsersResponse.soap_get(soap, "tds:DeleteUsersResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetUser(const char *soap_endpoint_url, const char *soap_action, _tds__SetUser *tds__SetUser) -{ - struct __tds__SetUser soap_tmp___tds__SetUser; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetUser"; - soap_tmp___tds__SetUser.tds__SetUser = tds__SetUser; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetUser(soap, &soap_tmp___tds__SetUser); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetUser(soap, &soap_tmp___tds__SetUser, "-tds:SetUser", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetUser(soap, &soap_tmp___tds__SetUser, "-tds:SetUser", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetUser(_tds__SetUserResponse &tds__SetUserResponse) -{ - tds__SetUserResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetUserResponse.soap_get(soap, "tds:SetUserResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetWsdlUrl(const char *soap_endpoint_url, const char *soap_action, _tds__GetWsdlUrl *tds__GetWsdlUrl) -{ - struct __tds__GetWsdlUrl soap_tmp___tds__GetWsdlUrl; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetWsdlUrl"; - soap_tmp___tds__GetWsdlUrl.tds__GetWsdlUrl = tds__GetWsdlUrl; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetWsdlUrl(soap, &soap_tmp___tds__GetWsdlUrl); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetWsdlUrl(soap, &soap_tmp___tds__GetWsdlUrl, "-tds:GetWsdlUrl", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetWsdlUrl(soap, &soap_tmp___tds__GetWsdlUrl, "-tds:GetWsdlUrl", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetWsdlUrl(_tds__GetWsdlUrlResponse &tds__GetWsdlUrlResponse) -{ - tds__GetWsdlUrlResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetWsdlUrlResponse.soap_get(soap, "tds:GetWsdlUrlResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetCapabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetCapabilities *tds__GetCapabilities) -{ - struct __tds__GetCapabilities soap_tmp___tds__GetCapabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetCapabilities"; - soap_tmp___tds__GetCapabilities.tds__GetCapabilities = tds__GetCapabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetCapabilities(soap, &soap_tmp___tds__GetCapabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCapabilities(soap, &soap_tmp___tds__GetCapabilities, "-tds:GetCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCapabilities(soap, &soap_tmp___tds__GetCapabilities, "-tds:GetCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetCapabilities(_tds__GetCapabilitiesResponse &tds__GetCapabilitiesResponse) -{ - tds__GetCapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetCapabilitiesResponse.soap_get(soap, "tds:GetCapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetDPAddresses(const char *soap_endpoint_url, const char *soap_action, _tds__SetDPAddresses *tds__SetDPAddresses) -{ - struct __tds__SetDPAddresses soap_tmp___tds__SetDPAddresses; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetDPAddresses"; - soap_tmp___tds__SetDPAddresses.tds__SetDPAddresses = tds__SetDPAddresses; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetDPAddresses(soap, &soap_tmp___tds__SetDPAddresses); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDPAddresses(soap, &soap_tmp___tds__SetDPAddresses, "-tds:SetDPAddresses", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDPAddresses(soap, &soap_tmp___tds__SetDPAddresses, "-tds:SetDPAddresses", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetDPAddresses(_tds__SetDPAddressesResponse &tds__SetDPAddressesResponse) -{ - tds__SetDPAddressesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetDPAddressesResponse.soap_get(soap, "tds:SetDPAddressesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetHostname(const char *soap_endpoint_url, const char *soap_action, _tds__GetHostname *tds__GetHostname) -{ - struct __tds__GetHostname soap_tmp___tds__GetHostname; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetHostname"; - soap_tmp___tds__GetHostname.tds__GetHostname = tds__GetHostname; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetHostname(soap, &soap_tmp___tds__GetHostname); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetHostname(soap, &soap_tmp___tds__GetHostname, "-tds:GetHostname", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetHostname(soap, &soap_tmp___tds__GetHostname, "-tds:GetHostname", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetHostname(_tds__GetHostnameResponse &tds__GetHostnameResponse) -{ - tds__GetHostnameResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetHostnameResponse.soap_get(soap, "tds:GetHostnameResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetHostname(const char *soap_endpoint_url, const char *soap_action, _tds__SetHostname *tds__SetHostname) -{ - struct __tds__SetHostname soap_tmp___tds__SetHostname; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetHostname"; - soap_tmp___tds__SetHostname.tds__SetHostname = tds__SetHostname; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetHostname(soap, &soap_tmp___tds__SetHostname); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetHostname(soap, &soap_tmp___tds__SetHostname, "-tds:SetHostname", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetHostname(soap, &soap_tmp___tds__SetHostname, "-tds:SetHostname", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetHostname(_tds__SetHostnameResponse &tds__SetHostnameResponse) -{ - tds__SetHostnameResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetHostnameResponse.soap_get(soap, "tds:SetHostnameResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetHostnameFromDHCP(const char *soap_endpoint_url, const char *soap_action, _tds__SetHostnameFromDHCP *tds__SetHostnameFromDHCP) -{ - struct __tds__SetHostnameFromDHCP soap_tmp___tds__SetHostnameFromDHCP; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetHostnameFromDHCP"; - soap_tmp___tds__SetHostnameFromDHCP.tds__SetHostnameFromDHCP = tds__SetHostnameFromDHCP; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetHostnameFromDHCP(soap, &soap_tmp___tds__SetHostnameFromDHCP); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetHostnameFromDHCP(soap, &soap_tmp___tds__SetHostnameFromDHCP, "-tds:SetHostnameFromDHCP", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetHostnameFromDHCP(soap, &soap_tmp___tds__SetHostnameFromDHCP, "-tds:SetHostnameFromDHCP", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetHostnameFromDHCP(_tds__SetHostnameFromDHCPResponse &tds__SetHostnameFromDHCPResponse) -{ - tds__SetHostnameFromDHCPResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetHostnameFromDHCPResponse.soap_get(soap, "tds:SetHostnameFromDHCPResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDNS(const char *soap_endpoint_url, const char *soap_action, _tds__GetDNS *tds__GetDNS) -{ - struct __tds__GetDNS soap_tmp___tds__GetDNS; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDNS"; - soap_tmp___tds__GetDNS.tds__GetDNS = tds__GetDNS; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDNS(soap, &soap_tmp___tds__GetDNS); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDNS(soap, &soap_tmp___tds__GetDNS, "-tds:GetDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDNS(soap, &soap_tmp___tds__GetDNS, "-tds:GetDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDNS(_tds__GetDNSResponse &tds__GetDNSResponse) -{ - tds__GetDNSResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDNSResponse.soap_get(soap, "tds:GetDNSResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetDNS(const char *soap_endpoint_url, const char *soap_action, _tds__SetDNS *tds__SetDNS) -{ - struct __tds__SetDNS soap_tmp___tds__SetDNS; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetDNS"; - soap_tmp___tds__SetDNS.tds__SetDNS = tds__SetDNS; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetDNS(soap, &soap_tmp___tds__SetDNS); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDNS(soap, &soap_tmp___tds__SetDNS, "-tds:SetDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDNS(soap, &soap_tmp___tds__SetDNS, "-tds:SetDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetDNS(_tds__SetDNSResponse &tds__SetDNSResponse) -{ - tds__SetDNSResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetDNSResponse.soap_get(soap, "tds:SetDNSResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetNTP(const char *soap_endpoint_url, const char *soap_action, _tds__GetNTP *tds__GetNTP) -{ - struct __tds__GetNTP soap_tmp___tds__GetNTP; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetNTP"; - soap_tmp___tds__GetNTP.tds__GetNTP = tds__GetNTP; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetNTP(soap, &soap_tmp___tds__GetNTP); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNTP(soap, &soap_tmp___tds__GetNTP, "-tds:GetNTP", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNTP(soap, &soap_tmp___tds__GetNTP, "-tds:GetNTP", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetNTP(_tds__GetNTPResponse &tds__GetNTPResponse) -{ - tds__GetNTPResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetNTPResponse.soap_get(soap, "tds:GetNTPResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetNTP(const char *soap_endpoint_url, const char *soap_action, _tds__SetNTP *tds__SetNTP) -{ - struct __tds__SetNTP soap_tmp___tds__SetNTP; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetNTP"; - soap_tmp___tds__SetNTP.tds__SetNTP = tds__SetNTP; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetNTP(soap, &soap_tmp___tds__SetNTP); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNTP(soap, &soap_tmp___tds__SetNTP, "-tds:SetNTP", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNTP(soap, &soap_tmp___tds__SetNTP, "-tds:SetNTP", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetNTP(_tds__SetNTPResponse &tds__SetNTPResponse) -{ - tds__SetNTPResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetNTPResponse.soap_get(soap, "tds:SetNTPResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDynamicDNS(const char *soap_endpoint_url, const char *soap_action, _tds__GetDynamicDNS *tds__GetDynamicDNS) -{ - struct __tds__GetDynamicDNS soap_tmp___tds__GetDynamicDNS; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDynamicDNS"; - soap_tmp___tds__GetDynamicDNS.tds__GetDynamicDNS = tds__GetDynamicDNS; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDynamicDNS(soap, &soap_tmp___tds__GetDynamicDNS); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDynamicDNS(soap, &soap_tmp___tds__GetDynamicDNS, "-tds:GetDynamicDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDynamicDNS(soap, &soap_tmp___tds__GetDynamicDNS, "-tds:GetDynamicDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDynamicDNS(_tds__GetDynamicDNSResponse &tds__GetDynamicDNSResponse) -{ - tds__GetDynamicDNSResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDynamicDNSResponse.soap_get(soap, "tds:GetDynamicDNSResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetDynamicDNS(const char *soap_endpoint_url, const char *soap_action, _tds__SetDynamicDNS *tds__SetDynamicDNS) -{ - struct __tds__SetDynamicDNS soap_tmp___tds__SetDynamicDNS; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetDynamicDNS"; - soap_tmp___tds__SetDynamicDNS.tds__SetDynamicDNS = tds__SetDynamicDNS; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetDynamicDNS(soap, &soap_tmp___tds__SetDynamicDNS); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDynamicDNS(soap, &soap_tmp___tds__SetDynamicDNS, "-tds:SetDynamicDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDynamicDNS(soap, &soap_tmp___tds__SetDynamicDNS, "-tds:SetDynamicDNS", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetDynamicDNS(_tds__SetDynamicDNSResponse &tds__SetDynamicDNSResponse) -{ - tds__SetDynamicDNSResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetDynamicDNSResponse.soap_get(soap, "tds:SetDynamicDNSResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetNetworkInterfaces(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkInterfaces *tds__GetNetworkInterfaces) -{ - struct __tds__GetNetworkInterfaces soap_tmp___tds__GetNetworkInterfaces; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetNetworkInterfaces"; - soap_tmp___tds__GetNetworkInterfaces.tds__GetNetworkInterfaces = tds__GetNetworkInterfaces; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetNetworkInterfaces(soap, &soap_tmp___tds__GetNetworkInterfaces); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNetworkInterfaces(soap, &soap_tmp___tds__GetNetworkInterfaces, "-tds:GetNetworkInterfaces", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNetworkInterfaces(soap, &soap_tmp___tds__GetNetworkInterfaces, "-tds:GetNetworkInterfaces", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetNetworkInterfaces(_tds__GetNetworkInterfacesResponse &tds__GetNetworkInterfacesResponse) -{ - tds__GetNetworkInterfacesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetNetworkInterfacesResponse.soap_get(soap, "tds:GetNetworkInterfacesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetNetworkInterfaces(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkInterfaces *tds__SetNetworkInterfaces) -{ - struct __tds__SetNetworkInterfaces soap_tmp___tds__SetNetworkInterfaces; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetNetworkInterfaces"; - soap_tmp___tds__SetNetworkInterfaces.tds__SetNetworkInterfaces = tds__SetNetworkInterfaces; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetNetworkInterfaces(soap, &soap_tmp___tds__SetNetworkInterfaces); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNetworkInterfaces(soap, &soap_tmp___tds__SetNetworkInterfaces, "-tds:SetNetworkInterfaces", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNetworkInterfaces(soap, &soap_tmp___tds__SetNetworkInterfaces, "-tds:SetNetworkInterfaces", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetNetworkInterfaces(_tds__SetNetworkInterfacesResponse &tds__SetNetworkInterfacesResponse) -{ - tds__SetNetworkInterfacesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetNetworkInterfacesResponse.soap_get(soap, "tds:SetNetworkInterfacesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetNetworkProtocols(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkProtocols *tds__GetNetworkProtocols) -{ - struct __tds__GetNetworkProtocols soap_tmp___tds__GetNetworkProtocols; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetNetworkProtocols"; - soap_tmp___tds__GetNetworkProtocols.tds__GetNetworkProtocols = tds__GetNetworkProtocols; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetNetworkProtocols(soap, &soap_tmp___tds__GetNetworkProtocols); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNetworkProtocols(soap, &soap_tmp___tds__GetNetworkProtocols, "-tds:GetNetworkProtocols", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNetworkProtocols(soap, &soap_tmp___tds__GetNetworkProtocols, "-tds:GetNetworkProtocols", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetNetworkProtocols(_tds__GetNetworkProtocolsResponse &tds__GetNetworkProtocolsResponse) -{ - tds__GetNetworkProtocolsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetNetworkProtocolsResponse.soap_get(soap, "tds:GetNetworkProtocolsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetNetworkProtocols(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkProtocols *tds__SetNetworkProtocols) -{ - struct __tds__SetNetworkProtocols soap_tmp___tds__SetNetworkProtocols; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetNetworkProtocols"; - soap_tmp___tds__SetNetworkProtocols.tds__SetNetworkProtocols = tds__SetNetworkProtocols; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetNetworkProtocols(soap, &soap_tmp___tds__SetNetworkProtocols); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNetworkProtocols(soap, &soap_tmp___tds__SetNetworkProtocols, "-tds:SetNetworkProtocols", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNetworkProtocols(soap, &soap_tmp___tds__SetNetworkProtocols, "-tds:SetNetworkProtocols", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetNetworkProtocols(_tds__SetNetworkProtocolsResponse &tds__SetNetworkProtocolsResponse) -{ - tds__SetNetworkProtocolsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetNetworkProtocolsResponse.soap_get(soap, "tds:SetNetworkProtocolsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetNetworkDefaultGateway(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkDefaultGateway *tds__GetNetworkDefaultGateway) -{ - struct __tds__GetNetworkDefaultGateway soap_tmp___tds__GetNetworkDefaultGateway; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetNetworkDefaultGateway"; - soap_tmp___tds__GetNetworkDefaultGateway.tds__GetNetworkDefaultGateway = tds__GetNetworkDefaultGateway; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetNetworkDefaultGateway(soap, &soap_tmp___tds__GetNetworkDefaultGateway); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNetworkDefaultGateway(soap, &soap_tmp___tds__GetNetworkDefaultGateway, "-tds:GetNetworkDefaultGateway", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetNetworkDefaultGateway(soap, &soap_tmp___tds__GetNetworkDefaultGateway, "-tds:GetNetworkDefaultGateway", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetNetworkDefaultGateway(_tds__GetNetworkDefaultGatewayResponse &tds__GetNetworkDefaultGatewayResponse) -{ - tds__GetNetworkDefaultGatewayResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetNetworkDefaultGatewayResponse.soap_get(soap, "tds:GetNetworkDefaultGatewayResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetNetworkDefaultGateway(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkDefaultGateway *tds__SetNetworkDefaultGateway) -{ - struct __tds__SetNetworkDefaultGateway soap_tmp___tds__SetNetworkDefaultGateway; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetNetworkDefaultGateway"; - soap_tmp___tds__SetNetworkDefaultGateway.tds__SetNetworkDefaultGateway = tds__SetNetworkDefaultGateway; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetNetworkDefaultGateway(soap, &soap_tmp___tds__SetNetworkDefaultGateway); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNetworkDefaultGateway(soap, &soap_tmp___tds__SetNetworkDefaultGateway, "-tds:SetNetworkDefaultGateway", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetNetworkDefaultGateway(soap, &soap_tmp___tds__SetNetworkDefaultGateway, "-tds:SetNetworkDefaultGateway", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetNetworkDefaultGateway(_tds__SetNetworkDefaultGatewayResponse &tds__SetNetworkDefaultGatewayResponse) -{ - tds__SetNetworkDefaultGatewayResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetNetworkDefaultGatewayResponse.soap_get(soap, "tds:SetNetworkDefaultGatewayResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetZeroConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetZeroConfiguration *tds__GetZeroConfiguration) -{ - struct __tds__GetZeroConfiguration soap_tmp___tds__GetZeroConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetZeroConfiguration"; - soap_tmp___tds__GetZeroConfiguration.tds__GetZeroConfiguration = tds__GetZeroConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetZeroConfiguration(soap, &soap_tmp___tds__GetZeroConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetZeroConfiguration(soap, &soap_tmp___tds__GetZeroConfiguration, "-tds:GetZeroConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetZeroConfiguration(soap, &soap_tmp___tds__GetZeroConfiguration, "-tds:GetZeroConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetZeroConfiguration(_tds__GetZeroConfigurationResponse &tds__GetZeroConfigurationResponse) -{ - tds__GetZeroConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetZeroConfigurationResponse.soap_get(soap, "tds:GetZeroConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetZeroConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetZeroConfiguration *tds__SetZeroConfiguration) -{ - struct __tds__SetZeroConfiguration soap_tmp___tds__SetZeroConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetZeroConfiguration"; - soap_tmp___tds__SetZeroConfiguration.tds__SetZeroConfiguration = tds__SetZeroConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetZeroConfiguration(soap, &soap_tmp___tds__SetZeroConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetZeroConfiguration(soap, &soap_tmp___tds__SetZeroConfiguration, "-tds:SetZeroConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetZeroConfiguration(soap, &soap_tmp___tds__SetZeroConfiguration, "-tds:SetZeroConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetZeroConfiguration(_tds__SetZeroConfigurationResponse &tds__SetZeroConfigurationResponse) -{ - tds__SetZeroConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetZeroConfigurationResponse.soap_get(soap, "tds:SetZeroConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__GetIPAddressFilter *tds__GetIPAddressFilter) -{ - struct __tds__GetIPAddressFilter soap_tmp___tds__GetIPAddressFilter; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetIPAddressFilter"; - soap_tmp___tds__GetIPAddressFilter.tds__GetIPAddressFilter = tds__GetIPAddressFilter; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetIPAddressFilter(soap, &soap_tmp___tds__GetIPAddressFilter); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetIPAddressFilter(soap, &soap_tmp___tds__GetIPAddressFilter, "-tds:GetIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetIPAddressFilter(soap, &soap_tmp___tds__GetIPAddressFilter, "-tds:GetIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetIPAddressFilter(_tds__GetIPAddressFilterResponse &tds__GetIPAddressFilterResponse) -{ - tds__GetIPAddressFilterResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetIPAddressFilterResponse.soap_get(soap, "tds:GetIPAddressFilterResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__SetIPAddressFilter *tds__SetIPAddressFilter) -{ - struct __tds__SetIPAddressFilter soap_tmp___tds__SetIPAddressFilter; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetIPAddressFilter"; - soap_tmp___tds__SetIPAddressFilter.tds__SetIPAddressFilter = tds__SetIPAddressFilter; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetIPAddressFilter(soap, &soap_tmp___tds__SetIPAddressFilter); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetIPAddressFilter(soap, &soap_tmp___tds__SetIPAddressFilter, "-tds:SetIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetIPAddressFilter(soap, &soap_tmp___tds__SetIPAddressFilter, "-tds:SetIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetIPAddressFilter(_tds__SetIPAddressFilterResponse &tds__SetIPAddressFilterResponse) -{ - tds__SetIPAddressFilterResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetIPAddressFilterResponse.soap_get(soap, "tds:SetIPAddressFilterResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_AddIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__AddIPAddressFilter *tds__AddIPAddressFilter) -{ - struct __tds__AddIPAddressFilter soap_tmp___tds__AddIPAddressFilter; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/AddIPAddressFilter"; - soap_tmp___tds__AddIPAddressFilter.tds__AddIPAddressFilter = tds__AddIPAddressFilter; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__AddIPAddressFilter(soap, &soap_tmp___tds__AddIPAddressFilter); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__AddIPAddressFilter(soap, &soap_tmp___tds__AddIPAddressFilter, "-tds:AddIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__AddIPAddressFilter(soap, &soap_tmp___tds__AddIPAddressFilter, "-tds:AddIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_AddIPAddressFilter(_tds__AddIPAddressFilterResponse &tds__AddIPAddressFilterResponse) -{ - tds__AddIPAddressFilterResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__AddIPAddressFilterResponse.soap_get(soap, "tds:AddIPAddressFilterResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_RemoveIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__RemoveIPAddressFilter *tds__RemoveIPAddressFilter) -{ - struct __tds__RemoveIPAddressFilter soap_tmp___tds__RemoveIPAddressFilter; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/RemoveIPAddressFilter"; - soap_tmp___tds__RemoveIPAddressFilter.tds__RemoveIPAddressFilter = tds__RemoveIPAddressFilter; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__RemoveIPAddressFilter(soap, &soap_tmp___tds__RemoveIPAddressFilter); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__RemoveIPAddressFilter(soap, &soap_tmp___tds__RemoveIPAddressFilter, "-tds:RemoveIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__RemoveIPAddressFilter(soap, &soap_tmp___tds__RemoveIPAddressFilter, "-tds:RemoveIPAddressFilter", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_RemoveIPAddressFilter(_tds__RemoveIPAddressFilterResponse &tds__RemoveIPAddressFilterResponse) -{ - tds__RemoveIPAddressFilterResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__RemoveIPAddressFilterResponse.soap_get(soap, "tds:RemoveIPAddressFilterResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetAccessPolicy(const char *soap_endpoint_url, const char *soap_action, _tds__GetAccessPolicy *tds__GetAccessPolicy) -{ - struct __tds__GetAccessPolicy soap_tmp___tds__GetAccessPolicy; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetAccessPolicy"; - soap_tmp___tds__GetAccessPolicy.tds__GetAccessPolicy = tds__GetAccessPolicy; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetAccessPolicy(soap, &soap_tmp___tds__GetAccessPolicy); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetAccessPolicy(soap, &soap_tmp___tds__GetAccessPolicy, "-tds:GetAccessPolicy", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetAccessPolicy(soap, &soap_tmp___tds__GetAccessPolicy, "-tds:GetAccessPolicy", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetAccessPolicy(_tds__GetAccessPolicyResponse &tds__GetAccessPolicyResponse) -{ - tds__GetAccessPolicyResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetAccessPolicyResponse.soap_get(soap, "tds:GetAccessPolicyResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetAccessPolicy(const char *soap_endpoint_url, const char *soap_action, _tds__SetAccessPolicy *tds__SetAccessPolicy) -{ - struct __tds__SetAccessPolicy soap_tmp___tds__SetAccessPolicy; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetAccessPolicy"; - soap_tmp___tds__SetAccessPolicy.tds__SetAccessPolicy = tds__SetAccessPolicy; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetAccessPolicy(soap, &soap_tmp___tds__SetAccessPolicy); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetAccessPolicy(soap, &soap_tmp___tds__SetAccessPolicy, "-tds:SetAccessPolicy", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetAccessPolicy(soap, &soap_tmp___tds__SetAccessPolicy, "-tds:SetAccessPolicy", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetAccessPolicy(_tds__SetAccessPolicyResponse &tds__SetAccessPolicyResponse) -{ - tds__SetAccessPolicyResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetAccessPolicyResponse.soap_get(soap, "tds:SetAccessPolicyResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_CreateCertificate(const char *soap_endpoint_url, const char *soap_action, _tds__CreateCertificate *tds__CreateCertificate) -{ - struct __tds__CreateCertificate soap_tmp___tds__CreateCertificate; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/CreateCertificate"; - soap_tmp___tds__CreateCertificate.tds__CreateCertificate = tds__CreateCertificate; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__CreateCertificate(soap, &soap_tmp___tds__CreateCertificate); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateCertificate(soap, &soap_tmp___tds__CreateCertificate, "-tds:CreateCertificate", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateCertificate(soap, &soap_tmp___tds__CreateCertificate, "-tds:CreateCertificate", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_CreateCertificate(_tds__CreateCertificateResponse &tds__CreateCertificateResponse) -{ - tds__CreateCertificateResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__CreateCertificateResponse.soap_get(soap, "tds:CreateCertificateResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificates *tds__GetCertificates) -{ - struct __tds__GetCertificates soap_tmp___tds__GetCertificates; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetCertificates"; - soap_tmp___tds__GetCertificates.tds__GetCertificates = tds__GetCertificates; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetCertificates(soap, &soap_tmp___tds__GetCertificates); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCertificates(soap, &soap_tmp___tds__GetCertificates, "-tds:GetCertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCertificates(soap, &soap_tmp___tds__GetCertificates, "-tds:GetCertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetCertificates(_tds__GetCertificatesResponse &tds__GetCertificatesResponse) -{ - tds__GetCertificatesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetCertificatesResponse.soap_get(soap, "tds:GetCertificatesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetCertificatesStatus(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificatesStatus *tds__GetCertificatesStatus) -{ - struct __tds__GetCertificatesStatus soap_tmp___tds__GetCertificatesStatus; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetCertificatesStatus"; - soap_tmp___tds__GetCertificatesStatus.tds__GetCertificatesStatus = tds__GetCertificatesStatus; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetCertificatesStatus(soap, &soap_tmp___tds__GetCertificatesStatus); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCertificatesStatus(soap, &soap_tmp___tds__GetCertificatesStatus, "-tds:GetCertificatesStatus", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCertificatesStatus(soap, &soap_tmp___tds__GetCertificatesStatus, "-tds:GetCertificatesStatus", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetCertificatesStatus(_tds__GetCertificatesStatusResponse &tds__GetCertificatesStatusResponse) -{ - tds__GetCertificatesStatusResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetCertificatesStatusResponse.soap_get(soap, "tds:GetCertificatesStatusResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetCertificatesStatus(const char *soap_endpoint_url, const char *soap_action, _tds__SetCertificatesStatus *tds__SetCertificatesStatus) -{ - struct __tds__SetCertificatesStatus soap_tmp___tds__SetCertificatesStatus; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetCertificatesStatus"; - soap_tmp___tds__SetCertificatesStatus.tds__SetCertificatesStatus = tds__SetCertificatesStatus; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetCertificatesStatus(soap, &soap_tmp___tds__SetCertificatesStatus); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetCertificatesStatus(soap, &soap_tmp___tds__SetCertificatesStatus, "-tds:SetCertificatesStatus", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetCertificatesStatus(soap, &soap_tmp___tds__SetCertificatesStatus, "-tds:SetCertificatesStatus", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetCertificatesStatus(_tds__SetCertificatesStatusResponse &tds__SetCertificatesStatusResponse) -{ - tds__SetCertificatesStatusResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetCertificatesStatusResponse.soap_get(soap, "tds:SetCertificatesStatusResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_DeleteCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteCertificates *tds__DeleteCertificates) -{ - struct __tds__DeleteCertificates soap_tmp___tds__DeleteCertificates; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/DeleteCertificates"; - soap_tmp___tds__DeleteCertificates.tds__DeleteCertificates = tds__DeleteCertificates; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__DeleteCertificates(soap, &soap_tmp___tds__DeleteCertificates); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteCertificates(soap, &soap_tmp___tds__DeleteCertificates, "-tds:DeleteCertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteCertificates(soap, &soap_tmp___tds__DeleteCertificates, "-tds:DeleteCertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_DeleteCertificates(_tds__DeleteCertificatesResponse &tds__DeleteCertificatesResponse) -{ - tds__DeleteCertificatesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__DeleteCertificatesResponse.soap_get(soap, "tds:DeleteCertificatesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetPkcs10Request(const char *soap_endpoint_url, const char *soap_action, _tds__GetPkcs10Request *tds__GetPkcs10Request) -{ - struct __tds__GetPkcs10Request soap_tmp___tds__GetPkcs10Request; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetPkcs10Request"; - soap_tmp___tds__GetPkcs10Request.tds__GetPkcs10Request = tds__GetPkcs10Request; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetPkcs10Request(soap, &soap_tmp___tds__GetPkcs10Request); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetPkcs10Request(soap, &soap_tmp___tds__GetPkcs10Request, "-tds:GetPkcs10Request", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetPkcs10Request(soap, &soap_tmp___tds__GetPkcs10Request, "-tds:GetPkcs10Request", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetPkcs10Request(_tds__GetPkcs10RequestResponse &tds__GetPkcs10RequestResponse) -{ - tds__GetPkcs10RequestResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetPkcs10RequestResponse.soap_get(soap, "tds:GetPkcs10RequestResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_LoadCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCertificates *tds__LoadCertificates) -{ - struct __tds__LoadCertificates soap_tmp___tds__LoadCertificates; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/LoadCertificates"; - soap_tmp___tds__LoadCertificates.tds__LoadCertificates = tds__LoadCertificates; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__LoadCertificates(soap, &soap_tmp___tds__LoadCertificates); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__LoadCertificates(soap, &soap_tmp___tds__LoadCertificates, "-tds:LoadCertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__LoadCertificates(soap, &soap_tmp___tds__LoadCertificates, "-tds:LoadCertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_LoadCertificates(_tds__LoadCertificatesResponse &tds__LoadCertificatesResponse) -{ - tds__LoadCertificatesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__LoadCertificatesResponse.soap_get(soap, "tds:LoadCertificatesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetClientCertificateMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetClientCertificateMode *tds__GetClientCertificateMode) -{ - struct __tds__GetClientCertificateMode soap_tmp___tds__GetClientCertificateMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetClientCertificateMode"; - soap_tmp___tds__GetClientCertificateMode.tds__GetClientCertificateMode = tds__GetClientCertificateMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetClientCertificateMode(soap, &soap_tmp___tds__GetClientCertificateMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetClientCertificateMode(soap, &soap_tmp___tds__GetClientCertificateMode, "-tds:GetClientCertificateMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetClientCertificateMode(soap, &soap_tmp___tds__GetClientCertificateMode, "-tds:GetClientCertificateMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetClientCertificateMode(_tds__GetClientCertificateModeResponse &tds__GetClientCertificateModeResponse) -{ - tds__GetClientCertificateModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetClientCertificateModeResponse.soap_get(soap, "tds:GetClientCertificateModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetClientCertificateMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetClientCertificateMode *tds__SetClientCertificateMode) -{ - struct __tds__SetClientCertificateMode soap_tmp___tds__SetClientCertificateMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetClientCertificateMode"; - soap_tmp___tds__SetClientCertificateMode.tds__SetClientCertificateMode = tds__SetClientCertificateMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetClientCertificateMode(soap, &soap_tmp___tds__SetClientCertificateMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetClientCertificateMode(soap, &soap_tmp___tds__SetClientCertificateMode, "-tds:SetClientCertificateMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetClientCertificateMode(soap, &soap_tmp___tds__SetClientCertificateMode, "-tds:SetClientCertificateMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetClientCertificateMode(_tds__SetClientCertificateModeResponse &tds__SetClientCertificateModeResponse) -{ - tds__SetClientCertificateModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetClientCertificateModeResponse.soap_get(soap, "tds:SetClientCertificateModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetRelayOutputs(const char *soap_endpoint_url, const char *soap_action, _tds__GetRelayOutputs *tds__GetRelayOutputs) -{ - struct __tds__GetRelayOutputs soap_tmp___tds__GetRelayOutputs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetRelayOutputs"; - soap_tmp___tds__GetRelayOutputs.tds__GetRelayOutputs = tds__GetRelayOutputs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetRelayOutputs(soap, &soap_tmp___tds__GetRelayOutputs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetRelayOutputs(soap, &soap_tmp___tds__GetRelayOutputs, "-tds:GetRelayOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetRelayOutputs(soap, &soap_tmp___tds__GetRelayOutputs, "-tds:GetRelayOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetRelayOutputs(_tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse) -{ - tds__GetRelayOutputsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetRelayOutputsResponse.soap_get(soap, "tds:GetRelayOutputsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetRelayOutputSettings(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputSettings *tds__SetRelayOutputSettings) -{ - struct __tds__SetRelayOutputSettings soap_tmp___tds__SetRelayOutputSettings; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetRelayOutputSettings"; - soap_tmp___tds__SetRelayOutputSettings.tds__SetRelayOutputSettings = tds__SetRelayOutputSettings; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetRelayOutputSettings(soap, &soap_tmp___tds__SetRelayOutputSettings); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRelayOutputSettings(soap, &soap_tmp___tds__SetRelayOutputSettings, "-tds:SetRelayOutputSettings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRelayOutputSettings(soap, &soap_tmp___tds__SetRelayOutputSettings, "-tds:SetRelayOutputSettings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetRelayOutputSettings(_tds__SetRelayOutputSettingsResponse &tds__SetRelayOutputSettingsResponse) -{ - tds__SetRelayOutputSettingsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetRelayOutputSettingsResponse.soap_get(soap, "tds:SetRelayOutputSettingsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetRelayOutputState(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputState *tds__SetRelayOutputState) -{ - struct __tds__SetRelayOutputState soap_tmp___tds__SetRelayOutputState; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetRelayOutputState"; - soap_tmp___tds__SetRelayOutputState.tds__SetRelayOutputState = tds__SetRelayOutputState; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetRelayOutputState(soap, &soap_tmp___tds__SetRelayOutputState); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRelayOutputState(soap, &soap_tmp___tds__SetRelayOutputState, "-tds:SetRelayOutputState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetRelayOutputState(soap, &soap_tmp___tds__SetRelayOutputState, "-tds:SetRelayOutputState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetRelayOutputState(_tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse) -{ - tds__SetRelayOutputStateResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetRelayOutputStateResponse.soap_get(soap, "tds:SetRelayOutputStateResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SendAuxiliaryCommand(const char *soap_endpoint_url, const char *soap_action, _tds__SendAuxiliaryCommand *tds__SendAuxiliaryCommand) -{ - struct __tds__SendAuxiliaryCommand soap_tmp___tds__SendAuxiliaryCommand; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SendAuxiliaryCommand"; - soap_tmp___tds__SendAuxiliaryCommand.tds__SendAuxiliaryCommand = tds__SendAuxiliaryCommand; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SendAuxiliaryCommand(soap, &soap_tmp___tds__SendAuxiliaryCommand); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SendAuxiliaryCommand(soap, &soap_tmp___tds__SendAuxiliaryCommand, "-tds:SendAuxiliaryCommand", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SendAuxiliaryCommand(soap, &soap_tmp___tds__SendAuxiliaryCommand, "-tds:SendAuxiliaryCommand", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SendAuxiliaryCommand(_tds__SendAuxiliaryCommandResponse &tds__SendAuxiliaryCommandResponse) -{ - tds__SendAuxiliaryCommandResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SendAuxiliaryCommandResponse.soap_get(soap, "tds:SendAuxiliaryCommandResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetCACertificates(const char *soap_endpoint_url, const char *soap_action, _tds__GetCACertificates *tds__GetCACertificates) -{ - struct __tds__GetCACertificates soap_tmp___tds__GetCACertificates; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetCACertificates"; - soap_tmp___tds__GetCACertificates.tds__GetCACertificates = tds__GetCACertificates; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetCACertificates(soap, &soap_tmp___tds__GetCACertificates); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCACertificates(soap, &soap_tmp___tds__GetCACertificates, "-tds:GetCACertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCACertificates(soap, &soap_tmp___tds__GetCACertificates, "-tds:GetCACertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetCACertificates(_tds__GetCACertificatesResponse &tds__GetCACertificatesResponse) -{ - tds__GetCACertificatesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetCACertificatesResponse.soap_get(soap, "tds:GetCACertificatesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_LoadCertificateWithPrivateKey(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCertificateWithPrivateKey *tds__LoadCertificateWithPrivateKey) -{ - struct __tds__LoadCertificateWithPrivateKey soap_tmp___tds__LoadCertificateWithPrivateKey; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/LoadCertificateWithPrivateKey"; - soap_tmp___tds__LoadCertificateWithPrivateKey.tds__LoadCertificateWithPrivateKey = tds__LoadCertificateWithPrivateKey; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__LoadCertificateWithPrivateKey(soap, &soap_tmp___tds__LoadCertificateWithPrivateKey); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__LoadCertificateWithPrivateKey(soap, &soap_tmp___tds__LoadCertificateWithPrivateKey, "-tds:LoadCertificateWithPrivateKey", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__LoadCertificateWithPrivateKey(soap, &soap_tmp___tds__LoadCertificateWithPrivateKey, "-tds:LoadCertificateWithPrivateKey", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_LoadCertificateWithPrivateKey(_tds__LoadCertificateWithPrivateKeyResponse &tds__LoadCertificateWithPrivateKeyResponse) -{ - tds__LoadCertificateWithPrivateKeyResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__LoadCertificateWithPrivateKeyResponse.soap_get(soap, "tds:LoadCertificateWithPrivateKeyResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetCertificateInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificateInformation *tds__GetCertificateInformation) -{ - struct __tds__GetCertificateInformation soap_tmp___tds__GetCertificateInformation; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetCertificateInformation"; - soap_tmp___tds__GetCertificateInformation.tds__GetCertificateInformation = tds__GetCertificateInformation; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetCertificateInformation(soap, &soap_tmp___tds__GetCertificateInformation); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCertificateInformation(soap, &soap_tmp___tds__GetCertificateInformation, "-tds:GetCertificateInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetCertificateInformation(soap, &soap_tmp___tds__GetCertificateInformation, "-tds:GetCertificateInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetCertificateInformation(_tds__GetCertificateInformationResponse &tds__GetCertificateInformationResponse) -{ - tds__GetCertificateInformationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetCertificateInformationResponse.soap_get(soap, "tds:GetCertificateInformationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_LoadCACertificates(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCACertificates *tds__LoadCACertificates) -{ - struct __tds__LoadCACertificates soap_tmp___tds__LoadCACertificates; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/LoadCACertificates"; - soap_tmp___tds__LoadCACertificates.tds__LoadCACertificates = tds__LoadCACertificates; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__LoadCACertificates(soap, &soap_tmp___tds__LoadCACertificates); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__LoadCACertificates(soap, &soap_tmp___tds__LoadCACertificates, "-tds:LoadCACertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__LoadCACertificates(soap, &soap_tmp___tds__LoadCACertificates, "-tds:LoadCACertificates", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_LoadCACertificates(_tds__LoadCACertificatesResponse &tds__LoadCACertificatesResponse) -{ - tds__LoadCACertificatesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__LoadCACertificatesResponse.soap_get(soap, "tds:LoadCACertificatesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_CreateDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__CreateDot1XConfiguration *tds__CreateDot1XConfiguration) -{ - struct __tds__CreateDot1XConfiguration soap_tmp___tds__CreateDot1XConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/CreateDot1XConfiguration"; - soap_tmp___tds__CreateDot1XConfiguration.tds__CreateDot1XConfiguration = tds__CreateDot1XConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__CreateDot1XConfiguration(soap, &soap_tmp___tds__CreateDot1XConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateDot1XConfiguration(soap, &soap_tmp___tds__CreateDot1XConfiguration, "-tds:CreateDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateDot1XConfiguration(soap, &soap_tmp___tds__CreateDot1XConfiguration, "-tds:CreateDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_CreateDot1XConfiguration(_tds__CreateDot1XConfigurationResponse &tds__CreateDot1XConfigurationResponse) -{ - tds__CreateDot1XConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__CreateDot1XConfigurationResponse.soap_get(soap, "tds:CreateDot1XConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetDot1XConfiguration *tds__SetDot1XConfiguration) -{ - struct __tds__SetDot1XConfiguration soap_tmp___tds__SetDot1XConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetDot1XConfiguration"; - soap_tmp___tds__SetDot1XConfiguration.tds__SetDot1XConfiguration = tds__SetDot1XConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetDot1XConfiguration(soap, &soap_tmp___tds__SetDot1XConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDot1XConfiguration(soap, &soap_tmp___tds__SetDot1XConfiguration, "-tds:SetDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetDot1XConfiguration(soap, &soap_tmp___tds__SetDot1XConfiguration, "-tds:SetDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetDot1XConfiguration(_tds__SetDot1XConfigurationResponse &tds__SetDot1XConfigurationResponse) -{ - tds__SetDot1XConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetDot1XConfigurationResponse.soap_get(soap, "tds:SetDot1XConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot1XConfiguration *tds__GetDot1XConfiguration) -{ - struct __tds__GetDot1XConfiguration soap_tmp___tds__GetDot1XConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDot1XConfiguration"; - soap_tmp___tds__GetDot1XConfiguration.tds__GetDot1XConfiguration = tds__GetDot1XConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDot1XConfiguration(soap, &soap_tmp___tds__GetDot1XConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot1XConfiguration(soap, &soap_tmp___tds__GetDot1XConfiguration, "-tds:GetDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot1XConfiguration(soap, &soap_tmp___tds__GetDot1XConfiguration, "-tds:GetDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDot1XConfiguration(_tds__GetDot1XConfigurationResponse &tds__GetDot1XConfigurationResponse) -{ - tds__GetDot1XConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDot1XConfigurationResponse.soap_get(soap, "tds:GetDot1XConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDot1XConfigurations(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot1XConfigurations *tds__GetDot1XConfigurations) -{ - struct __tds__GetDot1XConfigurations soap_tmp___tds__GetDot1XConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDot1XConfigurations"; - soap_tmp___tds__GetDot1XConfigurations.tds__GetDot1XConfigurations = tds__GetDot1XConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDot1XConfigurations(soap, &soap_tmp___tds__GetDot1XConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot1XConfigurations(soap, &soap_tmp___tds__GetDot1XConfigurations, "-tds:GetDot1XConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot1XConfigurations(soap, &soap_tmp___tds__GetDot1XConfigurations, "-tds:GetDot1XConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDot1XConfigurations(_tds__GetDot1XConfigurationsResponse &tds__GetDot1XConfigurationsResponse) -{ - tds__GetDot1XConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDot1XConfigurationsResponse.soap_get(soap, "tds:GetDot1XConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_DeleteDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteDot1XConfiguration *tds__DeleteDot1XConfiguration) -{ - struct __tds__DeleteDot1XConfiguration soap_tmp___tds__DeleteDot1XConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/DeleteDot1XConfiguration"; - soap_tmp___tds__DeleteDot1XConfiguration.tds__DeleteDot1XConfiguration = tds__DeleteDot1XConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__DeleteDot1XConfiguration(soap, &soap_tmp___tds__DeleteDot1XConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteDot1XConfiguration(soap, &soap_tmp___tds__DeleteDot1XConfiguration, "-tds:DeleteDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteDot1XConfiguration(soap, &soap_tmp___tds__DeleteDot1XConfiguration, "-tds:DeleteDot1XConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_DeleteDot1XConfiguration(_tds__DeleteDot1XConfigurationResponse &tds__DeleteDot1XConfigurationResponse) -{ - tds__DeleteDot1XConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__DeleteDot1XConfigurationResponse.soap_get(soap, "tds:DeleteDot1XConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDot11Capabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot11Capabilities *tds__GetDot11Capabilities) -{ - struct __tds__GetDot11Capabilities soap_tmp___tds__GetDot11Capabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDot11Capabilities"; - soap_tmp___tds__GetDot11Capabilities.tds__GetDot11Capabilities = tds__GetDot11Capabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDot11Capabilities(soap, &soap_tmp___tds__GetDot11Capabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot11Capabilities(soap, &soap_tmp___tds__GetDot11Capabilities, "-tds:GetDot11Capabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot11Capabilities(soap, &soap_tmp___tds__GetDot11Capabilities, "-tds:GetDot11Capabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDot11Capabilities(_tds__GetDot11CapabilitiesResponse &tds__GetDot11CapabilitiesResponse) -{ - tds__GetDot11CapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDot11CapabilitiesResponse.soap_get(soap, "tds:GetDot11CapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetDot11Status(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot11Status *tds__GetDot11Status) -{ - struct __tds__GetDot11Status soap_tmp___tds__GetDot11Status; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetDot11Status"; - soap_tmp___tds__GetDot11Status.tds__GetDot11Status = tds__GetDot11Status; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetDot11Status(soap, &soap_tmp___tds__GetDot11Status); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot11Status(soap, &soap_tmp___tds__GetDot11Status, "-tds:GetDot11Status", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetDot11Status(soap, &soap_tmp___tds__GetDot11Status, "-tds:GetDot11Status", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetDot11Status(_tds__GetDot11StatusResponse &tds__GetDot11StatusResponse) -{ - tds__GetDot11StatusResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetDot11StatusResponse.soap_get(soap, "tds:GetDot11StatusResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_ScanAvailableDot11Networks(const char *soap_endpoint_url, const char *soap_action, _tds__ScanAvailableDot11Networks *tds__ScanAvailableDot11Networks) -{ - struct __tds__ScanAvailableDot11Networks soap_tmp___tds__ScanAvailableDot11Networks; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/ScanAvailableDot11Networks"; - soap_tmp___tds__ScanAvailableDot11Networks.tds__ScanAvailableDot11Networks = tds__ScanAvailableDot11Networks; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__ScanAvailableDot11Networks(soap, &soap_tmp___tds__ScanAvailableDot11Networks); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__ScanAvailableDot11Networks(soap, &soap_tmp___tds__ScanAvailableDot11Networks, "-tds:ScanAvailableDot11Networks", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__ScanAvailableDot11Networks(soap, &soap_tmp___tds__ScanAvailableDot11Networks, "-tds:ScanAvailableDot11Networks", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_ScanAvailableDot11Networks(_tds__ScanAvailableDot11NetworksResponse &tds__ScanAvailableDot11NetworksResponse) -{ - tds__ScanAvailableDot11NetworksResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__ScanAvailableDot11NetworksResponse.soap_get(soap, "tds:ScanAvailableDot11NetworksResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetSystemUris(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemUris *tds__GetSystemUris) -{ - struct __tds__GetSystemUris soap_tmp___tds__GetSystemUris; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetSystemUris"; - soap_tmp___tds__GetSystemUris.tds__GetSystemUris = tds__GetSystemUris; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetSystemUris(soap, &soap_tmp___tds__GetSystemUris); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemUris(soap, &soap_tmp___tds__GetSystemUris, "-tds:GetSystemUris", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetSystemUris(soap, &soap_tmp___tds__GetSystemUris, "-tds:GetSystemUris", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetSystemUris(_tds__GetSystemUrisResponse &tds__GetSystemUrisResponse) -{ - tds__GetSystemUrisResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetSystemUrisResponse.soap_get(soap, "tds:GetSystemUrisResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_StartFirmwareUpgrade(const char *soap_endpoint_url, const char *soap_action, _tds__StartFirmwareUpgrade *tds__StartFirmwareUpgrade) -{ - struct __tds__StartFirmwareUpgrade soap_tmp___tds__StartFirmwareUpgrade; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/StartFirmwareUpgrade"; - soap_tmp___tds__StartFirmwareUpgrade.tds__StartFirmwareUpgrade = tds__StartFirmwareUpgrade; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__StartFirmwareUpgrade(soap, &soap_tmp___tds__StartFirmwareUpgrade); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__StartFirmwareUpgrade(soap, &soap_tmp___tds__StartFirmwareUpgrade, "-tds:StartFirmwareUpgrade", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__StartFirmwareUpgrade(soap, &soap_tmp___tds__StartFirmwareUpgrade, "-tds:StartFirmwareUpgrade", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_StartFirmwareUpgrade(_tds__StartFirmwareUpgradeResponse &tds__StartFirmwareUpgradeResponse) -{ - tds__StartFirmwareUpgradeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__StartFirmwareUpgradeResponse.soap_get(soap, "tds:StartFirmwareUpgradeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_StartSystemRestore(const char *soap_endpoint_url, const char *soap_action, _tds__StartSystemRestore *tds__StartSystemRestore) -{ - struct __tds__StartSystemRestore soap_tmp___tds__StartSystemRestore; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/StartSystemRestore"; - soap_tmp___tds__StartSystemRestore.tds__StartSystemRestore = tds__StartSystemRestore; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__StartSystemRestore(soap, &soap_tmp___tds__StartSystemRestore); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__StartSystemRestore(soap, &soap_tmp___tds__StartSystemRestore, "-tds:StartSystemRestore", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__StartSystemRestore(soap, &soap_tmp___tds__StartSystemRestore, "-tds:StartSystemRestore", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_StartSystemRestore(_tds__StartSystemRestoreResponse &tds__StartSystemRestoreResponse) -{ - tds__StartSystemRestoreResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__StartSystemRestoreResponse.soap_get(soap, "tds:StartSystemRestoreResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetStorageConfigurations(const char *soap_endpoint_url, const char *soap_action, _tds__GetStorageConfigurations *tds__GetStorageConfigurations) -{ - struct __tds__GetStorageConfigurations soap_tmp___tds__GetStorageConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetStorageConfigurations"; - soap_tmp___tds__GetStorageConfigurations.tds__GetStorageConfigurations = tds__GetStorageConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetStorageConfigurations(soap, &soap_tmp___tds__GetStorageConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetStorageConfigurations(soap, &soap_tmp___tds__GetStorageConfigurations, "-tds:GetStorageConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetStorageConfigurations(soap, &soap_tmp___tds__GetStorageConfigurations, "-tds:GetStorageConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetStorageConfigurations(_tds__GetStorageConfigurationsResponse &tds__GetStorageConfigurationsResponse) -{ - tds__GetStorageConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetStorageConfigurationsResponse.soap_get(soap, "tds:GetStorageConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_CreateStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__CreateStorageConfiguration *tds__CreateStorageConfiguration) -{ - struct __tds__CreateStorageConfiguration soap_tmp___tds__CreateStorageConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/CreateStorageConfiguration"; - soap_tmp___tds__CreateStorageConfiguration.tds__CreateStorageConfiguration = tds__CreateStorageConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__CreateStorageConfiguration(soap, &soap_tmp___tds__CreateStorageConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateStorageConfiguration(soap, &soap_tmp___tds__CreateStorageConfiguration, "-tds:CreateStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__CreateStorageConfiguration(soap, &soap_tmp___tds__CreateStorageConfiguration, "-tds:CreateStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_CreateStorageConfiguration(_tds__CreateStorageConfigurationResponse &tds__CreateStorageConfigurationResponse) -{ - tds__CreateStorageConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__CreateStorageConfigurationResponse.soap_get(soap, "tds:CreateStorageConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetStorageConfiguration *tds__GetStorageConfiguration) -{ - struct __tds__GetStorageConfiguration soap_tmp___tds__GetStorageConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetStorageConfiguration"; - soap_tmp___tds__GetStorageConfiguration.tds__GetStorageConfiguration = tds__GetStorageConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetStorageConfiguration(soap, &soap_tmp___tds__GetStorageConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetStorageConfiguration(soap, &soap_tmp___tds__GetStorageConfiguration, "-tds:GetStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetStorageConfiguration(soap, &soap_tmp___tds__GetStorageConfiguration, "-tds:GetStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetStorageConfiguration(_tds__GetStorageConfigurationResponse &tds__GetStorageConfigurationResponse) -{ - tds__GetStorageConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetStorageConfigurationResponse.soap_get(soap, "tds:GetStorageConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetStorageConfiguration *tds__SetStorageConfiguration) -{ - struct __tds__SetStorageConfiguration soap_tmp___tds__SetStorageConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetStorageConfiguration"; - soap_tmp___tds__SetStorageConfiguration.tds__SetStorageConfiguration = tds__SetStorageConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetStorageConfiguration(soap, &soap_tmp___tds__SetStorageConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetStorageConfiguration(soap, &soap_tmp___tds__SetStorageConfiguration, "-tds:SetStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetStorageConfiguration(soap, &soap_tmp___tds__SetStorageConfiguration, "-tds:SetStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetStorageConfiguration(_tds__SetStorageConfigurationResponse &tds__SetStorageConfigurationResponse) -{ - tds__SetStorageConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetStorageConfigurationResponse.soap_get(soap, "tds:SetStorageConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_DeleteStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteStorageConfiguration *tds__DeleteStorageConfiguration) -{ - struct __tds__DeleteStorageConfiguration soap_tmp___tds__DeleteStorageConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/DeleteStorageConfiguration"; - soap_tmp___tds__DeleteStorageConfiguration.tds__DeleteStorageConfiguration = tds__DeleteStorageConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__DeleteStorageConfiguration(soap, &soap_tmp___tds__DeleteStorageConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteStorageConfiguration(soap, &soap_tmp___tds__DeleteStorageConfiguration, "-tds:DeleteStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteStorageConfiguration(soap, &soap_tmp___tds__DeleteStorageConfiguration, "-tds:DeleteStorageConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_DeleteStorageConfiguration(_tds__DeleteStorageConfigurationResponse &tds__DeleteStorageConfigurationResponse) -{ - tds__DeleteStorageConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__DeleteStorageConfigurationResponse.soap_get(soap, "tds:DeleteStorageConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_GetGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__GetGeoLocation *tds__GetGeoLocation) -{ - struct __tds__GetGeoLocation soap_tmp___tds__GetGeoLocation; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/GetGeoLocation"; - soap_tmp___tds__GetGeoLocation.tds__GetGeoLocation = tds__GetGeoLocation; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__GetGeoLocation(soap, &soap_tmp___tds__GetGeoLocation); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetGeoLocation(soap, &soap_tmp___tds__GetGeoLocation, "-tds:GetGeoLocation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__GetGeoLocation(soap, &soap_tmp___tds__GetGeoLocation, "-tds:GetGeoLocation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_GetGeoLocation(_tds__GetGeoLocationResponse &tds__GetGeoLocationResponse) -{ - tds__GetGeoLocationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetGeoLocationResponse.soap_get(soap, "tds:GetGeoLocationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_SetGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__SetGeoLocation *tds__SetGeoLocation) -{ - struct __tds__SetGeoLocation soap_tmp___tds__SetGeoLocation; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/SetGeoLocation"; - soap_tmp___tds__SetGeoLocation.tds__SetGeoLocation = tds__SetGeoLocation; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__SetGeoLocation(soap, &soap_tmp___tds__SetGeoLocation); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetGeoLocation(soap, &soap_tmp___tds__SetGeoLocation, "-tds:SetGeoLocation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__SetGeoLocation(soap, &soap_tmp___tds__SetGeoLocation, "-tds:SetGeoLocation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_SetGeoLocation(_tds__SetGeoLocationResponse &tds__SetGeoLocationResponse) -{ - tds__SetGeoLocationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetGeoLocationResponse.soap_get(soap, "tds:SetGeoLocationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceBindingProxy::send_DeleteGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteGeoLocation *tds__DeleteGeoLocation) -{ - struct __tds__DeleteGeoLocation soap_tmp___tds__DeleteGeoLocation; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/device/wsdl/DeleteGeoLocation"; - soap_tmp___tds__DeleteGeoLocation.tds__DeleteGeoLocation = tds__DeleteGeoLocation; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tds__DeleteGeoLocation(soap, &soap_tmp___tds__DeleteGeoLocation); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteGeoLocation(soap, &soap_tmp___tds__DeleteGeoLocation, "-tds:DeleteGeoLocation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tds__DeleteGeoLocation(soap, &soap_tmp___tds__DeleteGeoLocation, "-tds:DeleteGeoLocation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceBindingProxy::recv_DeleteGeoLocation(_tds__DeleteGeoLocationResponse &tds__DeleteGeoLocationResponse) -{ - tds__DeleteGeoLocationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__DeleteGeoLocationResponse.soap_get(soap, "tds:DeleteGeoLocationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapDeviceBindingProxy.h b/gen/soapDeviceBindingProxy.h deleted file mode 100644 index c50f30b..0000000 --- a/gen/soapDeviceBindingProxy.h +++ /dev/null @@ -1,894 +0,0 @@ -/* soapDeviceBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapDeviceBindingProxy_H -#define soapDeviceBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC DeviceBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'DeviceBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - DeviceBindingProxy(); - /// Copy constructor - DeviceBindingProxy(const DeviceBindingProxy& rhs); - /// Construct proxy given a shared managing context - DeviceBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - DeviceBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - DeviceBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - DeviceBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - DeviceBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - DeviceBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~DeviceBindingProxy(); - /// Initializer used by constructors - virtual void DeviceBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual DeviceBindingProxy *copy(); - /// Copy assignment - DeviceBindingProxy& operator=(const DeviceBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'GetServices' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServices(_tds__GetServices *tds__GetServices, _tds__GetServicesResponse &tds__GetServicesResponse) { return this->GetServices(NULL, NULL, tds__GetServices, tds__GetServicesResponse); } - /// Web service synchronous operation 'GetServices' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServices(const char *soap_endpoint_url, const char *soap_action, _tds__GetServices *tds__GetServices, _tds__GetServicesResponse &tds__GetServicesResponse) { return this->send_GetServices(soap_endpoint_url, soap_action, tds__GetServices) || this->recv_GetServices(tds__GetServicesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServices' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServices(const char *soap_endpoint_url, const char *soap_action, _tds__GetServices *tds__GetServices); - /// Web service asynchronous operation 'recv_GetServices' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServices(_tds__GetServicesResponse &tds__GetServicesResponse); - // - /// Web service synchronous operation 'GetServiceCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(_tds__GetServiceCapabilities *tds__GetServiceCapabilities, _tds__GetServiceCapabilitiesResponse &tds__GetServiceCapabilitiesResponse) { return this->GetServiceCapabilities(NULL, NULL, tds__GetServiceCapabilities, tds__GetServiceCapabilitiesResponse); } - /// Web service synchronous operation 'GetServiceCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetServiceCapabilities *tds__GetServiceCapabilities, _tds__GetServiceCapabilitiesResponse &tds__GetServiceCapabilitiesResponse) { return this->send_GetServiceCapabilities(soap_endpoint_url, soap_action, tds__GetServiceCapabilities) || this->recv_GetServiceCapabilities(tds__GetServiceCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServiceCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetServiceCapabilities *tds__GetServiceCapabilities); - /// Web service asynchronous operation 'recv_GetServiceCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServiceCapabilities(_tds__GetServiceCapabilitiesResponse &tds__GetServiceCapabilitiesResponse); - // - /// Web service synchronous operation 'GetDeviceInformation' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDeviceInformation(_tds__GetDeviceInformation *tds__GetDeviceInformation, _tds__GetDeviceInformationResponse &tds__GetDeviceInformationResponse) { return this->GetDeviceInformation(NULL, NULL, tds__GetDeviceInformation, tds__GetDeviceInformationResponse); } - /// Web service synchronous operation 'GetDeviceInformation' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDeviceInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetDeviceInformation *tds__GetDeviceInformation, _tds__GetDeviceInformationResponse &tds__GetDeviceInformationResponse) { return this->send_GetDeviceInformation(soap_endpoint_url, soap_action, tds__GetDeviceInformation) || this->recv_GetDeviceInformation(tds__GetDeviceInformationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDeviceInformation' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDeviceInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetDeviceInformation *tds__GetDeviceInformation); - /// Web service asynchronous operation 'recv_GetDeviceInformation' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDeviceInformation(_tds__GetDeviceInformationResponse &tds__GetDeviceInformationResponse); - // - /// Web service synchronous operation 'SetSystemDateAndTime' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetSystemDateAndTime(_tds__SetSystemDateAndTime *tds__SetSystemDateAndTime, _tds__SetSystemDateAndTimeResponse &tds__SetSystemDateAndTimeResponse) { return this->SetSystemDateAndTime(NULL, NULL, tds__SetSystemDateAndTime, tds__SetSystemDateAndTimeResponse); } - /// Web service synchronous operation 'SetSystemDateAndTime' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetSystemDateAndTime(const char *soap_endpoint_url, const char *soap_action, _tds__SetSystemDateAndTime *tds__SetSystemDateAndTime, _tds__SetSystemDateAndTimeResponse &tds__SetSystemDateAndTimeResponse) { return this->send_SetSystemDateAndTime(soap_endpoint_url, soap_action, tds__SetSystemDateAndTime) || this->recv_SetSystemDateAndTime(tds__SetSystemDateAndTimeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetSystemDateAndTime' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetSystemDateAndTime(const char *soap_endpoint_url, const char *soap_action, _tds__SetSystemDateAndTime *tds__SetSystemDateAndTime); - /// Web service asynchronous operation 'recv_SetSystemDateAndTime' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetSystemDateAndTime(_tds__SetSystemDateAndTimeResponse &tds__SetSystemDateAndTimeResponse); - // - /// Web service synchronous operation 'GetSystemDateAndTime' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemDateAndTime(_tds__GetSystemDateAndTime *tds__GetSystemDateAndTime, _tds__GetSystemDateAndTimeResponse &tds__GetSystemDateAndTimeResponse) { return this->GetSystemDateAndTime(NULL, NULL, tds__GetSystemDateAndTime, tds__GetSystemDateAndTimeResponse); } - /// Web service synchronous operation 'GetSystemDateAndTime' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemDateAndTime(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemDateAndTime *tds__GetSystemDateAndTime, _tds__GetSystemDateAndTimeResponse &tds__GetSystemDateAndTimeResponse) { return this->send_GetSystemDateAndTime(soap_endpoint_url, soap_action, tds__GetSystemDateAndTime) || this->recv_GetSystemDateAndTime(tds__GetSystemDateAndTimeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSystemDateAndTime' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSystemDateAndTime(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemDateAndTime *tds__GetSystemDateAndTime); - /// Web service asynchronous operation 'recv_GetSystemDateAndTime' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSystemDateAndTime(_tds__GetSystemDateAndTimeResponse &tds__GetSystemDateAndTimeResponse); - // - /// Web service synchronous operation 'SetSystemFactoryDefault' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetSystemFactoryDefault(_tds__SetSystemFactoryDefault *tds__SetSystemFactoryDefault, _tds__SetSystemFactoryDefaultResponse &tds__SetSystemFactoryDefaultResponse) { return this->SetSystemFactoryDefault(NULL, NULL, tds__SetSystemFactoryDefault, tds__SetSystemFactoryDefaultResponse); } - /// Web service synchronous operation 'SetSystemFactoryDefault' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetSystemFactoryDefault(const char *soap_endpoint_url, const char *soap_action, _tds__SetSystemFactoryDefault *tds__SetSystemFactoryDefault, _tds__SetSystemFactoryDefaultResponse &tds__SetSystemFactoryDefaultResponse) { return this->send_SetSystemFactoryDefault(soap_endpoint_url, soap_action, tds__SetSystemFactoryDefault) || this->recv_SetSystemFactoryDefault(tds__SetSystemFactoryDefaultResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetSystemFactoryDefault' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetSystemFactoryDefault(const char *soap_endpoint_url, const char *soap_action, _tds__SetSystemFactoryDefault *tds__SetSystemFactoryDefault); - /// Web service asynchronous operation 'recv_SetSystemFactoryDefault' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetSystemFactoryDefault(_tds__SetSystemFactoryDefaultResponse &tds__SetSystemFactoryDefaultResponse); - // - /// Web service synchronous operation 'UpgradeSystemFirmware' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int UpgradeSystemFirmware(_tds__UpgradeSystemFirmware *tds__UpgradeSystemFirmware, _tds__UpgradeSystemFirmwareResponse &tds__UpgradeSystemFirmwareResponse) { return this->UpgradeSystemFirmware(NULL, NULL, tds__UpgradeSystemFirmware, tds__UpgradeSystemFirmwareResponse); } - /// Web service synchronous operation 'UpgradeSystemFirmware' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int UpgradeSystemFirmware(const char *soap_endpoint_url, const char *soap_action, _tds__UpgradeSystemFirmware *tds__UpgradeSystemFirmware, _tds__UpgradeSystemFirmwareResponse &tds__UpgradeSystemFirmwareResponse) { return this->send_UpgradeSystemFirmware(soap_endpoint_url, soap_action, tds__UpgradeSystemFirmware) || this->recv_UpgradeSystemFirmware(tds__UpgradeSystemFirmwareResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_UpgradeSystemFirmware' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_UpgradeSystemFirmware(const char *soap_endpoint_url, const char *soap_action, _tds__UpgradeSystemFirmware *tds__UpgradeSystemFirmware); - /// Web service asynchronous operation 'recv_UpgradeSystemFirmware' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_UpgradeSystemFirmware(_tds__UpgradeSystemFirmwareResponse &tds__UpgradeSystemFirmwareResponse); - // - /// Web service synchronous operation 'SystemReboot' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SystemReboot(_tds__SystemReboot *tds__SystemReboot, _tds__SystemRebootResponse &tds__SystemRebootResponse) { return this->SystemReboot(NULL, NULL, tds__SystemReboot, tds__SystemRebootResponse); } - /// Web service synchronous operation 'SystemReboot' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SystemReboot(const char *soap_endpoint_url, const char *soap_action, _tds__SystemReboot *tds__SystemReboot, _tds__SystemRebootResponse &tds__SystemRebootResponse) { return this->send_SystemReboot(soap_endpoint_url, soap_action, tds__SystemReboot) || this->recv_SystemReboot(tds__SystemRebootResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SystemReboot' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SystemReboot(const char *soap_endpoint_url, const char *soap_action, _tds__SystemReboot *tds__SystemReboot); - /// Web service asynchronous operation 'recv_SystemReboot' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SystemReboot(_tds__SystemRebootResponse &tds__SystemRebootResponse); - // - /// Web service synchronous operation 'RestoreSystem' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int RestoreSystem(_tds__RestoreSystem *tds__RestoreSystem, _tds__RestoreSystemResponse &tds__RestoreSystemResponse) { return this->RestoreSystem(NULL, NULL, tds__RestoreSystem, tds__RestoreSystemResponse); } - /// Web service synchronous operation 'RestoreSystem' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int RestoreSystem(const char *soap_endpoint_url, const char *soap_action, _tds__RestoreSystem *tds__RestoreSystem, _tds__RestoreSystemResponse &tds__RestoreSystemResponse) { return this->send_RestoreSystem(soap_endpoint_url, soap_action, tds__RestoreSystem) || this->recv_RestoreSystem(tds__RestoreSystemResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_RestoreSystem' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_RestoreSystem(const char *soap_endpoint_url, const char *soap_action, _tds__RestoreSystem *tds__RestoreSystem); - /// Web service asynchronous operation 'recv_RestoreSystem' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_RestoreSystem(_tds__RestoreSystemResponse &tds__RestoreSystemResponse); - // - /// Web service synchronous operation 'GetSystemBackup' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemBackup(_tds__GetSystemBackup *tds__GetSystemBackup, _tds__GetSystemBackupResponse &tds__GetSystemBackupResponse) { return this->GetSystemBackup(NULL, NULL, tds__GetSystemBackup, tds__GetSystemBackupResponse); } - /// Web service synchronous operation 'GetSystemBackup' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemBackup(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemBackup *tds__GetSystemBackup, _tds__GetSystemBackupResponse &tds__GetSystemBackupResponse) { return this->send_GetSystemBackup(soap_endpoint_url, soap_action, tds__GetSystemBackup) || this->recv_GetSystemBackup(tds__GetSystemBackupResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSystemBackup' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSystemBackup(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemBackup *tds__GetSystemBackup); - /// Web service asynchronous operation 'recv_GetSystemBackup' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSystemBackup(_tds__GetSystemBackupResponse &tds__GetSystemBackupResponse); - // - /// Web service synchronous operation 'GetSystemLog' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemLog(_tds__GetSystemLog *tds__GetSystemLog, _tds__GetSystemLogResponse &tds__GetSystemLogResponse) { return this->GetSystemLog(NULL, NULL, tds__GetSystemLog, tds__GetSystemLogResponse); } - /// Web service synchronous operation 'GetSystemLog' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemLog(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemLog *tds__GetSystemLog, _tds__GetSystemLogResponse &tds__GetSystemLogResponse) { return this->send_GetSystemLog(soap_endpoint_url, soap_action, tds__GetSystemLog) || this->recv_GetSystemLog(tds__GetSystemLogResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSystemLog' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSystemLog(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemLog *tds__GetSystemLog); - /// Web service asynchronous operation 'recv_GetSystemLog' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSystemLog(_tds__GetSystemLogResponse &tds__GetSystemLogResponse); - // - /// Web service synchronous operation 'GetSystemSupportInformation' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemSupportInformation(_tds__GetSystemSupportInformation *tds__GetSystemSupportInformation, _tds__GetSystemSupportInformationResponse &tds__GetSystemSupportInformationResponse) { return this->GetSystemSupportInformation(NULL, NULL, tds__GetSystemSupportInformation, tds__GetSystemSupportInformationResponse); } - /// Web service synchronous operation 'GetSystemSupportInformation' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemSupportInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemSupportInformation *tds__GetSystemSupportInformation, _tds__GetSystemSupportInformationResponse &tds__GetSystemSupportInformationResponse) { return this->send_GetSystemSupportInformation(soap_endpoint_url, soap_action, tds__GetSystemSupportInformation) || this->recv_GetSystemSupportInformation(tds__GetSystemSupportInformationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSystemSupportInformation' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSystemSupportInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemSupportInformation *tds__GetSystemSupportInformation); - /// Web service asynchronous operation 'recv_GetSystemSupportInformation' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSystemSupportInformation(_tds__GetSystemSupportInformationResponse &tds__GetSystemSupportInformationResponse); - // - /// Web service synchronous operation 'GetScopes' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetScopes(_tds__GetScopes *tds__GetScopes, _tds__GetScopesResponse &tds__GetScopesResponse) { return this->GetScopes(NULL, NULL, tds__GetScopes, tds__GetScopesResponse); } - /// Web service synchronous operation 'GetScopes' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetScopes(const char *soap_endpoint_url, const char *soap_action, _tds__GetScopes *tds__GetScopes, _tds__GetScopesResponse &tds__GetScopesResponse) { return this->send_GetScopes(soap_endpoint_url, soap_action, tds__GetScopes) || this->recv_GetScopes(tds__GetScopesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetScopes' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetScopes(const char *soap_endpoint_url, const char *soap_action, _tds__GetScopes *tds__GetScopes); - /// Web service asynchronous operation 'recv_GetScopes' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetScopes(_tds__GetScopesResponse &tds__GetScopesResponse); - // - /// Web service synchronous operation 'SetScopes' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetScopes(_tds__SetScopes *tds__SetScopes, _tds__SetScopesResponse &tds__SetScopesResponse) { return this->SetScopes(NULL, NULL, tds__SetScopes, tds__SetScopesResponse); } - /// Web service synchronous operation 'SetScopes' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetScopes(const char *soap_endpoint_url, const char *soap_action, _tds__SetScopes *tds__SetScopes, _tds__SetScopesResponse &tds__SetScopesResponse) { return this->send_SetScopes(soap_endpoint_url, soap_action, tds__SetScopes) || this->recv_SetScopes(tds__SetScopesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetScopes' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetScopes(const char *soap_endpoint_url, const char *soap_action, _tds__SetScopes *tds__SetScopes); - /// Web service asynchronous operation 'recv_SetScopes' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetScopes(_tds__SetScopesResponse &tds__SetScopesResponse); - // - /// Web service synchronous operation 'AddScopes' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int AddScopes(_tds__AddScopes *tds__AddScopes, _tds__AddScopesResponse &tds__AddScopesResponse) { return this->AddScopes(NULL, NULL, tds__AddScopes, tds__AddScopesResponse); } - /// Web service synchronous operation 'AddScopes' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int AddScopes(const char *soap_endpoint_url, const char *soap_action, _tds__AddScopes *tds__AddScopes, _tds__AddScopesResponse &tds__AddScopesResponse) { return this->send_AddScopes(soap_endpoint_url, soap_action, tds__AddScopes) || this->recv_AddScopes(tds__AddScopesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_AddScopes' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_AddScopes(const char *soap_endpoint_url, const char *soap_action, _tds__AddScopes *tds__AddScopes); - /// Web service asynchronous operation 'recv_AddScopes' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_AddScopes(_tds__AddScopesResponse &tds__AddScopesResponse); - // - /// Web service synchronous operation 'RemoveScopes' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int RemoveScopes(_tds__RemoveScopes *tds__RemoveScopes, _tds__RemoveScopesResponse &tds__RemoveScopesResponse) { return this->RemoveScopes(NULL, NULL, tds__RemoveScopes, tds__RemoveScopesResponse); } - /// Web service synchronous operation 'RemoveScopes' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int RemoveScopes(const char *soap_endpoint_url, const char *soap_action, _tds__RemoveScopes *tds__RemoveScopes, _tds__RemoveScopesResponse &tds__RemoveScopesResponse) { return this->send_RemoveScopes(soap_endpoint_url, soap_action, tds__RemoveScopes) || this->recv_RemoveScopes(tds__RemoveScopesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_RemoveScopes' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_RemoveScopes(const char *soap_endpoint_url, const char *soap_action, _tds__RemoveScopes *tds__RemoveScopes); - /// Web service asynchronous operation 'recv_RemoveScopes' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_RemoveScopes(_tds__RemoveScopesResponse &tds__RemoveScopesResponse); - // - /// Web service synchronous operation 'GetDiscoveryMode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDiscoveryMode(_tds__GetDiscoveryMode *tds__GetDiscoveryMode, _tds__GetDiscoveryModeResponse &tds__GetDiscoveryModeResponse) { return this->GetDiscoveryMode(NULL, NULL, tds__GetDiscoveryMode, tds__GetDiscoveryModeResponse); } - /// Web service synchronous operation 'GetDiscoveryMode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetDiscoveryMode *tds__GetDiscoveryMode, _tds__GetDiscoveryModeResponse &tds__GetDiscoveryModeResponse) { return this->send_GetDiscoveryMode(soap_endpoint_url, soap_action, tds__GetDiscoveryMode) || this->recv_GetDiscoveryMode(tds__GetDiscoveryModeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDiscoveryMode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetDiscoveryMode *tds__GetDiscoveryMode); - /// Web service asynchronous operation 'recv_GetDiscoveryMode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDiscoveryMode(_tds__GetDiscoveryModeResponse &tds__GetDiscoveryModeResponse); - // - /// Web service synchronous operation 'SetDiscoveryMode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetDiscoveryMode(_tds__SetDiscoveryMode *tds__SetDiscoveryMode, _tds__SetDiscoveryModeResponse &tds__SetDiscoveryModeResponse) { return this->SetDiscoveryMode(NULL, NULL, tds__SetDiscoveryMode, tds__SetDiscoveryModeResponse); } - /// Web service synchronous operation 'SetDiscoveryMode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetDiscoveryMode *tds__SetDiscoveryMode, _tds__SetDiscoveryModeResponse &tds__SetDiscoveryModeResponse) { return this->send_SetDiscoveryMode(soap_endpoint_url, soap_action, tds__SetDiscoveryMode) || this->recv_SetDiscoveryMode(tds__SetDiscoveryModeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetDiscoveryMode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetDiscoveryMode *tds__SetDiscoveryMode); - /// Web service asynchronous operation 'recv_SetDiscoveryMode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetDiscoveryMode(_tds__SetDiscoveryModeResponse &tds__SetDiscoveryModeResponse); - // - /// Web service synchronous operation 'GetRemoteDiscoveryMode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetRemoteDiscoveryMode(_tds__GetRemoteDiscoveryMode *tds__GetRemoteDiscoveryMode, _tds__GetRemoteDiscoveryModeResponse &tds__GetRemoteDiscoveryModeResponse) { return this->GetRemoteDiscoveryMode(NULL, NULL, tds__GetRemoteDiscoveryMode, tds__GetRemoteDiscoveryModeResponse); } - /// Web service synchronous operation 'GetRemoteDiscoveryMode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetRemoteDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetRemoteDiscoveryMode *tds__GetRemoteDiscoveryMode, _tds__GetRemoteDiscoveryModeResponse &tds__GetRemoteDiscoveryModeResponse) { return this->send_GetRemoteDiscoveryMode(soap_endpoint_url, soap_action, tds__GetRemoteDiscoveryMode) || this->recv_GetRemoteDiscoveryMode(tds__GetRemoteDiscoveryModeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetRemoteDiscoveryMode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetRemoteDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetRemoteDiscoveryMode *tds__GetRemoteDiscoveryMode); - /// Web service asynchronous operation 'recv_GetRemoteDiscoveryMode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetRemoteDiscoveryMode(_tds__GetRemoteDiscoveryModeResponse &tds__GetRemoteDiscoveryModeResponse); - // - /// Web service synchronous operation 'SetRemoteDiscoveryMode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetRemoteDiscoveryMode(_tds__SetRemoteDiscoveryMode *tds__SetRemoteDiscoveryMode, _tds__SetRemoteDiscoveryModeResponse &tds__SetRemoteDiscoveryModeResponse) { return this->SetRemoteDiscoveryMode(NULL, NULL, tds__SetRemoteDiscoveryMode, tds__SetRemoteDiscoveryModeResponse); } - /// Web service synchronous operation 'SetRemoteDiscoveryMode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetRemoteDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetRemoteDiscoveryMode *tds__SetRemoteDiscoveryMode, _tds__SetRemoteDiscoveryModeResponse &tds__SetRemoteDiscoveryModeResponse) { return this->send_SetRemoteDiscoveryMode(soap_endpoint_url, soap_action, tds__SetRemoteDiscoveryMode) || this->recv_SetRemoteDiscoveryMode(tds__SetRemoteDiscoveryModeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetRemoteDiscoveryMode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetRemoteDiscoveryMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetRemoteDiscoveryMode *tds__SetRemoteDiscoveryMode); - /// Web service asynchronous operation 'recv_SetRemoteDiscoveryMode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetRemoteDiscoveryMode(_tds__SetRemoteDiscoveryModeResponse &tds__SetRemoteDiscoveryModeResponse); - // - /// Web service synchronous operation 'GetDPAddresses' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDPAddresses(_tds__GetDPAddresses *tds__GetDPAddresses, _tds__GetDPAddressesResponse &tds__GetDPAddressesResponse) { return this->GetDPAddresses(NULL, NULL, tds__GetDPAddresses, tds__GetDPAddressesResponse); } - /// Web service synchronous operation 'GetDPAddresses' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDPAddresses(const char *soap_endpoint_url, const char *soap_action, _tds__GetDPAddresses *tds__GetDPAddresses, _tds__GetDPAddressesResponse &tds__GetDPAddressesResponse) { return this->send_GetDPAddresses(soap_endpoint_url, soap_action, tds__GetDPAddresses) || this->recv_GetDPAddresses(tds__GetDPAddressesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDPAddresses' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDPAddresses(const char *soap_endpoint_url, const char *soap_action, _tds__GetDPAddresses *tds__GetDPAddresses); - /// Web service asynchronous operation 'recv_GetDPAddresses' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDPAddresses(_tds__GetDPAddressesResponse &tds__GetDPAddressesResponse); - // - /// Web service synchronous operation 'GetEndpointReference' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetEndpointReference(_tds__GetEndpointReference *tds__GetEndpointReference, _tds__GetEndpointReferenceResponse &tds__GetEndpointReferenceResponse) { return this->GetEndpointReference(NULL, NULL, tds__GetEndpointReference, tds__GetEndpointReferenceResponse); } - /// Web service synchronous operation 'GetEndpointReference' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetEndpointReference(const char *soap_endpoint_url, const char *soap_action, _tds__GetEndpointReference *tds__GetEndpointReference, _tds__GetEndpointReferenceResponse &tds__GetEndpointReferenceResponse) { return this->send_GetEndpointReference(soap_endpoint_url, soap_action, tds__GetEndpointReference) || this->recv_GetEndpointReference(tds__GetEndpointReferenceResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetEndpointReference' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetEndpointReference(const char *soap_endpoint_url, const char *soap_action, _tds__GetEndpointReference *tds__GetEndpointReference); - /// Web service asynchronous operation 'recv_GetEndpointReference' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetEndpointReference(_tds__GetEndpointReferenceResponse &tds__GetEndpointReferenceResponse); - // - /// Web service synchronous operation 'GetRemoteUser' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetRemoteUser(_tds__GetRemoteUser *tds__GetRemoteUser, _tds__GetRemoteUserResponse &tds__GetRemoteUserResponse) { return this->GetRemoteUser(NULL, NULL, tds__GetRemoteUser, tds__GetRemoteUserResponse); } - /// Web service synchronous operation 'GetRemoteUser' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetRemoteUser(const char *soap_endpoint_url, const char *soap_action, _tds__GetRemoteUser *tds__GetRemoteUser, _tds__GetRemoteUserResponse &tds__GetRemoteUserResponse) { return this->send_GetRemoteUser(soap_endpoint_url, soap_action, tds__GetRemoteUser) || this->recv_GetRemoteUser(tds__GetRemoteUserResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetRemoteUser' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetRemoteUser(const char *soap_endpoint_url, const char *soap_action, _tds__GetRemoteUser *tds__GetRemoteUser); - /// Web service asynchronous operation 'recv_GetRemoteUser' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetRemoteUser(_tds__GetRemoteUserResponse &tds__GetRemoteUserResponse); - // - /// Web service synchronous operation 'SetRemoteUser' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetRemoteUser(_tds__SetRemoteUser *tds__SetRemoteUser, _tds__SetRemoteUserResponse &tds__SetRemoteUserResponse) { return this->SetRemoteUser(NULL, NULL, tds__SetRemoteUser, tds__SetRemoteUserResponse); } - /// Web service synchronous operation 'SetRemoteUser' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetRemoteUser(const char *soap_endpoint_url, const char *soap_action, _tds__SetRemoteUser *tds__SetRemoteUser, _tds__SetRemoteUserResponse &tds__SetRemoteUserResponse) { return this->send_SetRemoteUser(soap_endpoint_url, soap_action, tds__SetRemoteUser) || this->recv_SetRemoteUser(tds__SetRemoteUserResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetRemoteUser' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetRemoteUser(const char *soap_endpoint_url, const char *soap_action, _tds__SetRemoteUser *tds__SetRemoteUser); - /// Web service asynchronous operation 'recv_SetRemoteUser' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetRemoteUser(_tds__SetRemoteUserResponse &tds__SetRemoteUserResponse); - // - /// Web service synchronous operation 'GetUsers' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetUsers(_tds__GetUsers *tds__GetUsers, _tds__GetUsersResponse &tds__GetUsersResponse) { return this->GetUsers(NULL, NULL, tds__GetUsers, tds__GetUsersResponse); } - /// Web service synchronous operation 'GetUsers' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetUsers(const char *soap_endpoint_url, const char *soap_action, _tds__GetUsers *tds__GetUsers, _tds__GetUsersResponse &tds__GetUsersResponse) { return this->send_GetUsers(soap_endpoint_url, soap_action, tds__GetUsers) || this->recv_GetUsers(tds__GetUsersResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetUsers' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetUsers(const char *soap_endpoint_url, const char *soap_action, _tds__GetUsers *tds__GetUsers); - /// Web service asynchronous operation 'recv_GetUsers' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetUsers(_tds__GetUsersResponse &tds__GetUsersResponse); - // - /// Web service synchronous operation 'CreateUsers' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreateUsers(_tds__CreateUsers *tds__CreateUsers, _tds__CreateUsersResponse &tds__CreateUsersResponse) { return this->CreateUsers(NULL, NULL, tds__CreateUsers, tds__CreateUsersResponse); } - /// Web service synchronous operation 'CreateUsers' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreateUsers(const char *soap_endpoint_url, const char *soap_action, _tds__CreateUsers *tds__CreateUsers, _tds__CreateUsersResponse &tds__CreateUsersResponse) { return this->send_CreateUsers(soap_endpoint_url, soap_action, tds__CreateUsers) || this->recv_CreateUsers(tds__CreateUsersResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreateUsers' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreateUsers(const char *soap_endpoint_url, const char *soap_action, _tds__CreateUsers *tds__CreateUsers); - /// Web service asynchronous operation 'recv_CreateUsers' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreateUsers(_tds__CreateUsersResponse &tds__CreateUsersResponse); - // - /// Web service synchronous operation 'DeleteUsers' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int DeleteUsers(_tds__DeleteUsers *tds__DeleteUsers, _tds__DeleteUsersResponse &tds__DeleteUsersResponse) { return this->DeleteUsers(NULL, NULL, tds__DeleteUsers, tds__DeleteUsersResponse); } - /// Web service synchronous operation 'DeleteUsers' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int DeleteUsers(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteUsers *tds__DeleteUsers, _tds__DeleteUsersResponse &tds__DeleteUsersResponse) { return this->send_DeleteUsers(soap_endpoint_url, soap_action, tds__DeleteUsers) || this->recv_DeleteUsers(tds__DeleteUsersResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_DeleteUsers' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_DeleteUsers(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteUsers *tds__DeleteUsers); - /// Web service asynchronous operation 'recv_DeleteUsers' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_DeleteUsers(_tds__DeleteUsersResponse &tds__DeleteUsersResponse); - // - /// Web service synchronous operation 'SetUser' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetUser(_tds__SetUser *tds__SetUser, _tds__SetUserResponse &tds__SetUserResponse) { return this->SetUser(NULL, NULL, tds__SetUser, tds__SetUserResponse); } - /// Web service synchronous operation 'SetUser' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetUser(const char *soap_endpoint_url, const char *soap_action, _tds__SetUser *tds__SetUser, _tds__SetUserResponse &tds__SetUserResponse) { return this->send_SetUser(soap_endpoint_url, soap_action, tds__SetUser) || this->recv_SetUser(tds__SetUserResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetUser' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetUser(const char *soap_endpoint_url, const char *soap_action, _tds__SetUser *tds__SetUser); - /// Web service asynchronous operation 'recv_SetUser' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetUser(_tds__SetUserResponse &tds__SetUserResponse); - // - /// Web service synchronous operation 'GetWsdlUrl' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetWsdlUrl(_tds__GetWsdlUrl *tds__GetWsdlUrl, _tds__GetWsdlUrlResponse &tds__GetWsdlUrlResponse) { return this->GetWsdlUrl(NULL, NULL, tds__GetWsdlUrl, tds__GetWsdlUrlResponse); } - /// Web service synchronous operation 'GetWsdlUrl' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetWsdlUrl(const char *soap_endpoint_url, const char *soap_action, _tds__GetWsdlUrl *tds__GetWsdlUrl, _tds__GetWsdlUrlResponse &tds__GetWsdlUrlResponse) { return this->send_GetWsdlUrl(soap_endpoint_url, soap_action, tds__GetWsdlUrl) || this->recv_GetWsdlUrl(tds__GetWsdlUrlResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetWsdlUrl' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetWsdlUrl(const char *soap_endpoint_url, const char *soap_action, _tds__GetWsdlUrl *tds__GetWsdlUrl); - /// Web service asynchronous operation 'recv_GetWsdlUrl' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetWsdlUrl(_tds__GetWsdlUrlResponse &tds__GetWsdlUrlResponse); - // - /// Web service synchronous operation 'GetCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetCapabilities(_tds__GetCapabilities *tds__GetCapabilities, _tds__GetCapabilitiesResponse &tds__GetCapabilitiesResponse) { return this->GetCapabilities(NULL, NULL, tds__GetCapabilities, tds__GetCapabilitiesResponse); } - /// Web service synchronous operation 'GetCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetCapabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetCapabilities *tds__GetCapabilities, _tds__GetCapabilitiesResponse &tds__GetCapabilitiesResponse) { return this->send_GetCapabilities(soap_endpoint_url, soap_action, tds__GetCapabilities) || this->recv_GetCapabilities(tds__GetCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetCapabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetCapabilities *tds__GetCapabilities); - /// Web service asynchronous operation 'recv_GetCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetCapabilities(_tds__GetCapabilitiesResponse &tds__GetCapabilitiesResponse); - // - /// Web service synchronous operation 'SetDPAddresses' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetDPAddresses(_tds__SetDPAddresses *tds__SetDPAddresses, _tds__SetDPAddressesResponse &tds__SetDPAddressesResponse) { return this->SetDPAddresses(NULL, NULL, tds__SetDPAddresses, tds__SetDPAddressesResponse); } - /// Web service synchronous operation 'SetDPAddresses' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetDPAddresses(const char *soap_endpoint_url, const char *soap_action, _tds__SetDPAddresses *tds__SetDPAddresses, _tds__SetDPAddressesResponse &tds__SetDPAddressesResponse) { return this->send_SetDPAddresses(soap_endpoint_url, soap_action, tds__SetDPAddresses) || this->recv_SetDPAddresses(tds__SetDPAddressesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetDPAddresses' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetDPAddresses(const char *soap_endpoint_url, const char *soap_action, _tds__SetDPAddresses *tds__SetDPAddresses); - /// Web service asynchronous operation 'recv_SetDPAddresses' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetDPAddresses(_tds__SetDPAddressesResponse &tds__SetDPAddressesResponse); - // - /// Web service synchronous operation 'GetHostname' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetHostname(_tds__GetHostname *tds__GetHostname, _tds__GetHostnameResponse &tds__GetHostnameResponse) { return this->GetHostname(NULL, NULL, tds__GetHostname, tds__GetHostnameResponse); } - /// Web service synchronous operation 'GetHostname' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetHostname(const char *soap_endpoint_url, const char *soap_action, _tds__GetHostname *tds__GetHostname, _tds__GetHostnameResponse &tds__GetHostnameResponse) { return this->send_GetHostname(soap_endpoint_url, soap_action, tds__GetHostname) || this->recv_GetHostname(tds__GetHostnameResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetHostname' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetHostname(const char *soap_endpoint_url, const char *soap_action, _tds__GetHostname *tds__GetHostname); - /// Web service asynchronous operation 'recv_GetHostname' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetHostname(_tds__GetHostnameResponse &tds__GetHostnameResponse); - // - /// Web service synchronous operation 'SetHostname' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetHostname(_tds__SetHostname *tds__SetHostname, _tds__SetHostnameResponse &tds__SetHostnameResponse) { return this->SetHostname(NULL, NULL, tds__SetHostname, tds__SetHostnameResponse); } - /// Web service synchronous operation 'SetHostname' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetHostname(const char *soap_endpoint_url, const char *soap_action, _tds__SetHostname *tds__SetHostname, _tds__SetHostnameResponse &tds__SetHostnameResponse) { return this->send_SetHostname(soap_endpoint_url, soap_action, tds__SetHostname) || this->recv_SetHostname(tds__SetHostnameResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetHostname' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetHostname(const char *soap_endpoint_url, const char *soap_action, _tds__SetHostname *tds__SetHostname); - /// Web service asynchronous operation 'recv_SetHostname' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetHostname(_tds__SetHostnameResponse &tds__SetHostnameResponse); - // - /// Web service synchronous operation 'SetHostnameFromDHCP' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetHostnameFromDHCP(_tds__SetHostnameFromDHCP *tds__SetHostnameFromDHCP, _tds__SetHostnameFromDHCPResponse &tds__SetHostnameFromDHCPResponse) { return this->SetHostnameFromDHCP(NULL, NULL, tds__SetHostnameFromDHCP, tds__SetHostnameFromDHCPResponse); } - /// Web service synchronous operation 'SetHostnameFromDHCP' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetHostnameFromDHCP(const char *soap_endpoint_url, const char *soap_action, _tds__SetHostnameFromDHCP *tds__SetHostnameFromDHCP, _tds__SetHostnameFromDHCPResponse &tds__SetHostnameFromDHCPResponse) { return this->send_SetHostnameFromDHCP(soap_endpoint_url, soap_action, tds__SetHostnameFromDHCP) || this->recv_SetHostnameFromDHCP(tds__SetHostnameFromDHCPResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetHostnameFromDHCP' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetHostnameFromDHCP(const char *soap_endpoint_url, const char *soap_action, _tds__SetHostnameFromDHCP *tds__SetHostnameFromDHCP); - /// Web service asynchronous operation 'recv_SetHostnameFromDHCP' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetHostnameFromDHCP(_tds__SetHostnameFromDHCPResponse &tds__SetHostnameFromDHCPResponse); - // - /// Web service synchronous operation 'GetDNS' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDNS(_tds__GetDNS *tds__GetDNS, _tds__GetDNSResponse &tds__GetDNSResponse) { return this->GetDNS(NULL, NULL, tds__GetDNS, tds__GetDNSResponse); } - /// Web service synchronous operation 'GetDNS' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDNS(const char *soap_endpoint_url, const char *soap_action, _tds__GetDNS *tds__GetDNS, _tds__GetDNSResponse &tds__GetDNSResponse) { return this->send_GetDNS(soap_endpoint_url, soap_action, tds__GetDNS) || this->recv_GetDNS(tds__GetDNSResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDNS' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDNS(const char *soap_endpoint_url, const char *soap_action, _tds__GetDNS *tds__GetDNS); - /// Web service asynchronous operation 'recv_GetDNS' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDNS(_tds__GetDNSResponse &tds__GetDNSResponse); - // - /// Web service synchronous operation 'SetDNS' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetDNS(_tds__SetDNS *tds__SetDNS, _tds__SetDNSResponse &tds__SetDNSResponse) { return this->SetDNS(NULL, NULL, tds__SetDNS, tds__SetDNSResponse); } - /// Web service synchronous operation 'SetDNS' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetDNS(const char *soap_endpoint_url, const char *soap_action, _tds__SetDNS *tds__SetDNS, _tds__SetDNSResponse &tds__SetDNSResponse) { return this->send_SetDNS(soap_endpoint_url, soap_action, tds__SetDNS) || this->recv_SetDNS(tds__SetDNSResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetDNS' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetDNS(const char *soap_endpoint_url, const char *soap_action, _tds__SetDNS *tds__SetDNS); - /// Web service asynchronous operation 'recv_SetDNS' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetDNS(_tds__SetDNSResponse &tds__SetDNSResponse); - // - /// Web service synchronous operation 'GetNTP' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetNTP(_tds__GetNTP *tds__GetNTP, _tds__GetNTPResponse &tds__GetNTPResponse) { return this->GetNTP(NULL, NULL, tds__GetNTP, tds__GetNTPResponse); } - /// Web service synchronous operation 'GetNTP' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetNTP(const char *soap_endpoint_url, const char *soap_action, _tds__GetNTP *tds__GetNTP, _tds__GetNTPResponse &tds__GetNTPResponse) { return this->send_GetNTP(soap_endpoint_url, soap_action, tds__GetNTP) || this->recv_GetNTP(tds__GetNTPResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetNTP' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetNTP(const char *soap_endpoint_url, const char *soap_action, _tds__GetNTP *tds__GetNTP); - /// Web service asynchronous operation 'recv_GetNTP' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetNTP(_tds__GetNTPResponse &tds__GetNTPResponse); - // - /// Web service synchronous operation 'SetNTP' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetNTP(_tds__SetNTP *tds__SetNTP, _tds__SetNTPResponse &tds__SetNTPResponse) { return this->SetNTP(NULL, NULL, tds__SetNTP, tds__SetNTPResponse); } - /// Web service synchronous operation 'SetNTP' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetNTP(const char *soap_endpoint_url, const char *soap_action, _tds__SetNTP *tds__SetNTP, _tds__SetNTPResponse &tds__SetNTPResponse) { return this->send_SetNTP(soap_endpoint_url, soap_action, tds__SetNTP) || this->recv_SetNTP(tds__SetNTPResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetNTP' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetNTP(const char *soap_endpoint_url, const char *soap_action, _tds__SetNTP *tds__SetNTP); - /// Web service asynchronous operation 'recv_SetNTP' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetNTP(_tds__SetNTPResponse &tds__SetNTPResponse); - // - /// Web service synchronous operation 'GetDynamicDNS' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDynamicDNS(_tds__GetDynamicDNS *tds__GetDynamicDNS, _tds__GetDynamicDNSResponse &tds__GetDynamicDNSResponse) { return this->GetDynamicDNS(NULL, NULL, tds__GetDynamicDNS, tds__GetDynamicDNSResponse); } - /// Web service synchronous operation 'GetDynamicDNS' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDynamicDNS(const char *soap_endpoint_url, const char *soap_action, _tds__GetDynamicDNS *tds__GetDynamicDNS, _tds__GetDynamicDNSResponse &tds__GetDynamicDNSResponse) { return this->send_GetDynamicDNS(soap_endpoint_url, soap_action, tds__GetDynamicDNS) || this->recv_GetDynamicDNS(tds__GetDynamicDNSResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDynamicDNS' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDynamicDNS(const char *soap_endpoint_url, const char *soap_action, _tds__GetDynamicDNS *tds__GetDynamicDNS); - /// Web service asynchronous operation 'recv_GetDynamicDNS' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDynamicDNS(_tds__GetDynamicDNSResponse &tds__GetDynamicDNSResponse); - // - /// Web service synchronous operation 'SetDynamicDNS' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetDynamicDNS(_tds__SetDynamicDNS *tds__SetDynamicDNS, _tds__SetDynamicDNSResponse &tds__SetDynamicDNSResponse) { return this->SetDynamicDNS(NULL, NULL, tds__SetDynamicDNS, tds__SetDynamicDNSResponse); } - /// Web service synchronous operation 'SetDynamicDNS' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetDynamicDNS(const char *soap_endpoint_url, const char *soap_action, _tds__SetDynamicDNS *tds__SetDynamicDNS, _tds__SetDynamicDNSResponse &tds__SetDynamicDNSResponse) { return this->send_SetDynamicDNS(soap_endpoint_url, soap_action, tds__SetDynamicDNS) || this->recv_SetDynamicDNS(tds__SetDynamicDNSResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetDynamicDNS' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetDynamicDNS(const char *soap_endpoint_url, const char *soap_action, _tds__SetDynamicDNS *tds__SetDynamicDNS); - /// Web service asynchronous operation 'recv_SetDynamicDNS' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetDynamicDNS(_tds__SetDynamicDNSResponse &tds__SetDynamicDNSResponse); - // - /// Web service synchronous operation 'GetNetworkInterfaces' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetNetworkInterfaces(_tds__GetNetworkInterfaces *tds__GetNetworkInterfaces, _tds__GetNetworkInterfacesResponse &tds__GetNetworkInterfacesResponse) { return this->GetNetworkInterfaces(NULL, NULL, tds__GetNetworkInterfaces, tds__GetNetworkInterfacesResponse); } - /// Web service synchronous operation 'GetNetworkInterfaces' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetNetworkInterfaces(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkInterfaces *tds__GetNetworkInterfaces, _tds__GetNetworkInterfacesResponse &tds__GetNetworkInterfacesResponse) { return this->send_GetNetworkInterfaces(soap_endpoint_url, soap_action, tds__GetNetworkInterfaces) || this->recv_GetNetworkInterfaces(tds__GetNetworkInterfacesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetNetworkInterfaces' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetNetworkInterfaces(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkInterfaces *tds__GetNetworkInterfaces); - /// Web service asynchronous operation 'recv_GetNetworkInterfaces' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetNetworkInterfaces(_tds__GetNetworkInterfacesResponse &tds__GetNetworkInterfacesResponse); - // - /// Web service synchronous operation 'SetNetworkInterfaces' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetNetworkInterfaces(_tds__SetNetworkInterfaces *tds__SetNetworkInterfaces, _tds__SetNetworkInterfacesResponse &tds__SetNetworkInterfacesResponse) { return this->SetNetworkInterfaces(NULL, NULL, tds__SetNetworkInterfaces, tds__SetNetworkInterfacesResponse); } - /// Web service synchronous operation 'SetNetworkInterfaces' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetNetworkInterfaces(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkInterfaces *tds__SetNetworkInterfaces, _tds__SetNetworkInterfacesResponse &tds__SetNetworkInterfacesResponse) { return this->send_SetNetworkInterfaces(soap_endpoint_url, soap_action, tds__SetNetworkInterfaces) || this->recv_SetNetworkInterfaces(tds__SetNetworkInterfacesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetNetworkInterfaces' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetNetworkInterfaces(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkInterfaces *tds__SetNetworkInterfaces); - /// Web service asynchronous operation 'recv_SetNetworkInterfaces' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetNetworkInterfaces(_tds__SetNetworkInterfacesResponse &tds__SetNetworkInterfacesResponse); - // - /// Web service synchronous operation 'GetNetworkProtocols' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetNetworkProtocols(_tds__GetNetworkProtocols *tds__GetNetworkProtocols, _tds__GetNetworkProtocolsResponse &tds__GetNetworkProtocolsResponse) { return this->GetNetworkProtocols(NULL, NULL, tds__GetNetworkProtocols, tds__GetNetworkProtocolsResponse); } - /// Web service synchronous operation 'GetNetworkProtocols' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetNetworkProtocols(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkProtocols *tds__GetNetworkProtocols, _tds__GetNetworkProtocolsResponse &tds__GetNetworkProtocolsResponse) { return this->send_GetNetworkProtocols(soap_endpoint_url, soap_action, tds__GetNetworkProtocols) || this->recv_GetNetworkProtocols(tds__GetNetworkProtocolsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetNetworkProtocols' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetNetworkProtocols(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkProtocols *tds__GetNetworkProtocols); - /// Web service asynchronous operation 'recv_GetNetworkProtocols' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetNetworkProtocols(_tds__GetNetworkProtocolsResponse &tds__GetNetworkProtocolsResponse); - // - /// Web service synchronous operation 'SetNetworkProtocols' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetNetworkProtocols(_tds__SetNetworkProtocols *tds__SetNetworkProtocols, _tds__SetNetworkProtocolsResponse &tds__SetNetworkProtocolsResponse) { return this->SetNetworkProtocols(NULL, NULL, tds__SetNetworkProtocols, tds__SetNetworkProtocolsResponse); } - /// Web service synchronous operation 'SetNetworkProtocols' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetNetworkProtocols(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkProtocols *tds__SetNetworkProtocols, _tds__SetNetworkProtocolsResponse &tds__SetNetworkProtocolsResponse) { return this->send_SetNetworkProtocols(soap_endpoint_url, soap_action, tds__SetNetworkProtocols) || this->recv_SetNetworkProtocols(tds__SetNetworkProtocolsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetNetworkProtocols' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetNetworkProtocols(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkProtocols *tds__SetNetworkProtocols); - /// Web service asynchronous operation 'recv_SetNetworkProtocols' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetNetworkProtocols(_tds__SetNetworkProtocolsResponse &tds__SetNetworkProtocolsResponse); - // - /// Web service synchronous operation 'GetNetworkDefaultGateway' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetNetworkDefaultGateway(_tds__GetNetworkDefaultGateway *tds__GetNetworkDefaultGateway, _tds__GetNetworkDefaultGatewayResponse &tds__GetNetworkDefaultGatewayResponse) { return this->GetNetworkDefaultGateway(NULL, NULL, tds__GetNetworkDefaultGateway, tds__GetNetworkDefaultGatewayResponse); } - /// Web service synchronous operation 'GetNetworkDefaultGateway' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetNetworkDefaultGateway(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkDefaultGateway *tds__GetNetworkDefaultGateway, _tds__GetNetworkDefaultGatewayResponse &tds__GetNetworkDefaultGatewayResponse) { return this->send_GetNetworkDefaultGateway(soap_endpoint_url, soap_action, tds__GetNetworkDefaultGateway) || this->recv_GetNetworkDefaultGateway(tds__GetNetworkDefaultGatewayResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetNetworkDefaultGateway' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetNetworkDefaultGateway(const char *soap_endpoint_url, const char *soap_action, _tds__GetNetworkDefaultGateway *tds__GetNetworkDefaultGateway); - /// Web service asynchronous operation 'recv_GetNetworkDefaultGateway' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetNetworkDefaultGateway(_tds__GetNetworkDefaultGatewayResponse &tds__GetNetworkDefaultGatewayResponse); - // - /// Web service synchronous operation 'SetNetworkDefaultGateway' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetNetworkDefaultGateway(_tds__SetNetworkDefaultGateway *tds__SetNetworkDefaultGateway, _tds__SetNetworkDefaultGatewayResponse &tds__SetNetworkDefaultGatewayResponse) { return this->SetNetworkDefaultGateway(NULL, NULL, tds__SetNetworkDefaultGateway, tds__SetNetworkDefaultGatewayResponse); } - /// Web service synchronous operation 'SetNetworkDefaultGateway' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetNetworkDefaultGateway(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkDefaultGateway *tds__SetNetworkDefaultGateway, _tds__SetNetworkDefaultGatewayResponse &tds__SetNetworkDefaultGatewayResponse) { return this->send_SetNetworkDefaultGateway(soap_endpoint_url, soap_action, tds__SetNetworkDefaultGateway) || this->recv_SetNetworkDefaultGateway(tds__SetNetworkDefaultGatewayResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetNetworkDefaultGateway' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetNetworkDefaultGateway(const char *soap_endpoint_url, const char *soap_action, _tds__SetNetworkDefaultGateway *tds__SetNetworkDefaultGateway); - /// Web service asynchronous operation 'recv_SetNetworkDefaultGateway' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetNetworkDefaultGateway(_tds__SetNetworkDefaultGatewayResponse &tds__SetNetworkDefaultGatewayResponse); - // - /// Web service synchronous operation 'GetZeroConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetZeroConfiguration(_tds__GetZeroConfiguration *tds__GetZeroConfiguration, _tds__GetZeroConfigurationResponse &tds__GetZeroConfigurationResponse) { return this->GetZeroConfiguration(NULL, NULL, tds__GetZeroConfiguration, tds__GetZeroConfigurationResponse); } - /// Web service synchronous operation 'GetZeroConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetZeroConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetZeroConfiguration *tds__GetZeroConfiguration, _tds__GetZeroConfigurationResponse &tds__GetZeroConfigurationResponse) { return this->send_GetZeroConfiguration(soap_endpoint_url, soap_action, tds__GetZeroConfiguration) || this->recv_GetZeroConfiguration(tds__GetZeroConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetZeroConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetZeroConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetZeroConfiguration *tds__GetZeroConfiguration); - /// Web service asynchronous operation 'recv_GetZeroConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetZeroConfiguration(_tds__GetZeroConfigurationResponse &tds__GetZeroConfigurationResponse); - // - /// Web service synchronous operation 'SetZeroConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetZeroConfiguration(_tds__SetZeroConfiguration *tds__SetZeroConfiguration, _tds__SetZeroConfigurationResponse &tds__SetZeroConfigurationResponse) { return this->SetZeroConfiguration(NULL, NULL, tds__SetZeroConfiguration, tds__SetZeroConfigurationResponse); } - /// Web service synchronous operation 'SetZeroConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetZeroConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetZeroConfiguration *tds__SetZeroConfiguration, _tds__SetZeroConfigurationResponse &tds__SetZeroConfigurationResponse) { return this->send_SetZeroConfiguration(soap_endpoint_url, soap_action, tds__SetZeroConfiguration) || this->recv_SetZeroConfiguration(tds__SetZeroConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetZeroConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetZeroConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetZeroConfiguration *tds__SetZeroConfiguration); - /// Web service asynchronous operation 'recv_SetZeroConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetZeroConfiguration(_tds__SetZeroConfigurationResponse &tds__SetZeroConfigurationResponse); - // - /// Web service synchronous operation 'GetIPAddressFilter' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetIPAddressFilter(_tds__GetIPAddressFilter *tds__GetIPAddressFilter, _tds__GetIPAddressFilterResponse &tds__GetIPAddressFilterResponse) { return this->GetIPAddressFilter(NULL, NULL, tds__GetIPAddressFilter, tds__GetIPAddressFilterResponse); } - /// Web service synchronous operation 'GetIPAddressFilter' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__GetIPAddressFilter *tds__GetIPAddressFilter, _tds__GetIPAddressFilterResponse &tds__GetIPAddressFilterResponse) { return this->send_GetIPAddressFilter(soap_endpoint_url, soap_action, tds__GetIPAddressFilter) || this->recv_GetIPAddressFilter(tds__GetIPAddressFilterResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetIPAddressFilter' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__GetIPAddressFilter *tds__GetIPAddressFilter); - /// Web service asynchronous operation 'recv_GetIPAddressFilter' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetIPAddressFilter(_tds__GetIPAddressFilterResponse &tds__GetIPAddressFilterResponse); - // - /// Web service synchronous operation 'SetIPAddressFilter' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetIPAddressFilter(_tds__SetIPAddressFilter *tds__SetIPAddressFilter, _tds__SetIPAddressFilterResponse &tds__SetIPAddressFilterResponse) { return this->SetIPAddressFilter(NULL, NULL, tds__SetIPAddressFilter, tds__SetIPAddressFilterResponse); } - /// Web service synchronous operation 'SetIPAddressFilter' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__SetIPAddressFilter *tds__SetIPAddressFilter, _tds__SetIPAddressFilterResponse &tds__SetIPAddressFilterResponse) { return this->send_SetIPAddressFilter(soap_endpoint_url, soap_action, tds__SetIPAddressFilter) || this->recv_SetIPAddressFilter(tds__SetIPAddressFilterResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetIPAddressFilter' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__SetIPAddressFilter *tds__SetIPAddressFilter); - /// Web service asynchronous operation 'recv_SetIPAddressFilter' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetIPAddressFilter(_tds__SetIPAddressFilterResponse &tds__SetIPAddressFilterResponse); - // - /// Web service synchronous operation 'AddIPAddressFilter' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int AddIPAddressFilter(_tds__AddIPAddressFilter *tds__AddIPAddressFilter, _tds__AddIPAddressFilterResponse &tds__AddIPAddressFilterResponse) { return this->AddIPAddressFilter(NULL, NULL, tds__AddIPAddressFilter, tds__AddIPAddressFilterResponse); } - /// Web service synchronous operation 'AddIPAddressFilter' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int AddIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__AddIPAddressFilter *tds__AddIPAddressFilter, _tds__AddIPAddressFilterResponse &tds__AddIPAddressFilterResponse) { return this->send_AddIPAddressFilter(soap_endpoint_url, soap_action, tds__AddIPAddressFilter) || this->recv_AddIPAddressFilter(tds__AddIPAddressFilterResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_AddIPAddressFilter' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_AddIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__AddIPAddressFilter *tds__AddIPAddressFilter); - /// Web service asynchronous operation 'recv_AddIPAddressFilter' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_AddIPAddressFilter(_tds__AddIPAddressFilterResponse &tds__AddIPAddressFilterResponse); - // - /// Web service synchronous operation 'RemoveIPAddressFilter' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int RemoveIPAddressFilter(_tds__RemoveIPAddressFilter *tds__RemoveIPAddressFilter, _tds__RemoveIPAddressFilterResponse &tds__RemoveIPAddressFilterResponse) { return this->RemoveIPAddressFilter(NULL, NULL, tds__RemoveIPAddressFilter, tds__RemoveIPAddressFilterResponse); } - /// Web service synchronous operation 'RemoveIPAddressFilter' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int RemoveIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__RemoveIPAddressFilter *tds__RemoveIPAddressFilter, _tds__RemoveIPAddressFilterResponse &tds__RemoveIPAddressFilterResponse) { return this->send_RemoveIPAddressFilter(soap_endpoint_url, soap_action, tds__RemoveIPAddressFilter) || this->recv_RemoveIPAddressFilter(tds__RemoveIPAddressFilterResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_RemoveIPAddressFilter' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_RemoveIPAddressFilter(const char *soap_endpoint_url, const char *soap_action, _tds__RemoveIPAddressFilter *tds__RemoveIPAddressFilter); - /// Web service asynchronous operation 'recv_RemoveIPAddressFilter' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_RemoveIPAddressFilter(_tds__RemoveIPAddressFilterResponse &tds__RemoveIPAddressFilterResponse); - // - /// Web service synchronous operation 'GetAccessPolicy' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetAccessPolicy(_tds__GetAccessPolicy *tds__GetAccessPolicy, _tds__GetAccessPolicyResponse &tds__GetAccessPolicyResponse) { return this->GetAccessPolicy(NULL, NULL, tds__GetAccessPolicy, tds__GetAccessPolicyResponse); } - /// Web service synchronous operation 'GetAccessPolicy' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetAccessPolicy(const char *soap_endpoint_url, const char *soap_action, _tds__GetAccessPolicy *tds__GetAccessPolicy, _tds__GetAccessPolicyResponse &tds__GetAccessPolicyResponse) { return this->send_GetAccessPolicy(soap_endpoint_url, soap_action, tds__GetAccessPolicy) || this->recv_GetAccessPolicy(tds__GetAccessPolicyResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetAccessPolicy' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetAccessPolicy(const char *soap_endpoint_url, const char *soap_action, _tds__GetAccessPolicy *tds__GetAccessPolicy); - /// Web service asynchronous operation 'recv_GetAccessPolicy' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetAccessPolicy(_tds__GetAccessPolicyResponse &tds__GetAccessPolicyResponse); - // - /// Web service synchronous operation 'SetAccessPolicy' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetAccessPolicy(_tds__SetAccessPolicy *tds__SetAccessPolicy, _tds__SetAccessPolicyResponse &tds__SetAccessPolicyResponse) { return this->SetAccessPolicy(NULL, NULL, tds__SetAccessPolicy, tds__SetAccessPolicyResponse); } - /// Web service synchronous operation 'SetAccessPolicy' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetAccessPolicy(const char *soap_endpoint_url, const char *soap_action, _tds__SetAccessPolicy *tds__SetAccessPolicy, _tds__SetAccessPolicyResponse &tds__SetAccessPolicyResponse) { return this->send_SetAccessPolicy(soap_endpoint_url, soap_action, tds__SetAccessPolicy) || this->recv_SetAccessPolicy(tds__SetAccessPolicyResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetAccessPolicy' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetAccessPolicy(const char *soap_endpoint_url, const char *soap_action, _tds__SetAccessPolicy *tds__SetAccessPolicy); - /// Web service asynchronous operation 'recv_SetAccessPolicy' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetAccessPolicy(_tds__SetAccessPolicyResponse &tds__SetAccessPolicyResponse); - // - /// Web service synchronous operation 'CreateCertificate' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreateCertificate(_tds__CreateCertificate *tds__CreateCertificate, _tds__CreateCertificateResponse &tds__CreateCertificateResponse) { return this->CreateCertificate(NULL, NULL, tds__CreateCertificate, tds__CreateCertificateResponse); } - /// Web service synchronous operation 'CreateCertificate' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreateCertificate(const char *soap_endpoint_url, const char *soap_action, _tds__CreateCertificate *tds__CreateCertificate, _tds__CreateCertificateResponse &tds__CreateCertificateResponse) { return this->send_CreateCertificate(soap_endpoint_url, soap_action, tds__CreateCertificate) || this->recv_CreateCertificate(tds__CreateCertificateResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreateCertificate' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreateCertificate(const char *soap_endpoint_url, const char *soap_action, _tds__CreateCertificate *tds__CreateCertificate); - /// Web service asynchronous operation 'recv_CreateCertificate' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreateCertificate(_tds__CreateCertificateResponse &tds__CreateCertificateResponse); - // - /// Web service synchronous operation 'GetCertificates' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetCertificates(_tds__GetCertificates *tds__GetCertificates, _tds__GetCertificatesResponse &tds__GetCertificatesResponse) { return this->GetCertificates(NULL, NULL, tds__GetCertificates, tds__GetCertificatesResponse); } - /// Web service synchronous operation 'GetCertificates' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificates *tds__GetCertificates, _tds__GetCertificatesResponse &tds__GetCertificatesResponse) { return this->send_GetCertificates(soap_endpoint_url, soap_action, tds__GetCertificates) || this->recv_GetCertificates(tds__GetCertificatesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetCertificates' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificates *tds__GetCertificates); - /// Web service asynchronous operation 'recv_GetCertificates' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetCertificates(_tds__GetCertificatesResponse &tds__GetCertificatesResponse); - // - /// Web service synchronous operation 'GetCertificatesStatus' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetCertificatesStatus(_tds__GetCertificatesStatus *tds__GetCertificatesStatus, _tds__GetCertificatesStatusResponse &tds__GetCertificatesStatusResponse) { return this->GetCertificatesStatus(NULL, NULL, tds__GetCertificatesStatus, tds__GetCertificatesStatusResponse); } - /// Web service synchronous operation 'GetCertificatesStatus' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetCertificatesStatus(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificatesStatus *tds__GetCertificatesStatus, _tds__GetCertificatesStatusResponse &tds__GetCertificatesStatusResponse) { return this->send_GetCertificatesStatus(soap_endpoint_url, soap_action, tds__GetCertificatesStatus) || this->recv_GetCertificatesStatus(tds__GetCertificatesStatusResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetCertificatesStatus' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetCertificatesStatus(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificatesStatus *tds__GetCertificatesStatus); - /// Web service asynchronous operation 'recv_GetCertificatesStatus' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetCertificatesStatus(_tds__GetCertificatesStatusResponse &tds__GetCertificatesStatusResponse); - // - /// Web service synchronous operation 'SetCertificatesStatus' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetCertificatesStatus(_tds__SetCertificatesStatus *tds__SetCertificatesStatus, _tds__SetCertificatesStatusResponse &tds__SetCertificatesStatusResponse) { return this->SetCertificatesStatus(NULL, NULL, tds__SetCertificatesStatus, tds__SetCertificatesStatusResponse); } - /// Web service synchronous operation 'SetCertificatesStatus' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetCertificatesStatus(const char *soap_endpoint_url, const char *soap_action, _tds__SetCertificatesStatus *tds__SetCertificatesStatus, _tds__SetCertificatesStatusResponse &tds__SetCertificatesStatusResponse) { return this->send_SetCertificatesStatus(soap_endpoint_url, soap_action, tds__SetCertificatesStatus) || this->recv_SetCertificatesStatus(tds__SetCertificatesStatusResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetCertificatesStatus' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetCertificatesStatus(const char *soap_endpoint_url, const char *soap_action, _tds__SetCertificatesStatus *tds__SetCertificatesStatus); - /// Web service asynchronous operation 'recv_SetCertificatesStatus' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetCertificatesStatus(_tds__SetCertificatesStatusResponse &tds__SetCertificatesStatusResponse); - // - /// Web service synchronous operation 'DeleteCertificates' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int DeleteCertificates(_tds__DeleteCertificates *tds__DeleteCertificates, _tds__DeleteCertificatesResponse &tds__DeleteCertificatesResponse) { return this->DeleteCertificates(NULL, NULL, tds__DeleteCertificates, tds__DeleteCertificatesResponse); } - /// Web service synchronous operation 'DeleteCertificates' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int DeleteCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteCertificates *tds__DeleteCertificates, _tds__DeleteCertificatesResponse &tds__DeleteCertificatesResponse) { return this->send_DeleteCertificates(soap_endpoint_url, soap_action, tds__DeleteCertificates) || this->recv_DeleteCertificates(tds__DeleteCertificatesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_DeleteCertificates' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_DeleteCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteCertificates *tds__DeleteCertificates); - /// Web service asynchronous operation 'recv_DeleteCertificates' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_DeleteCertificates(_tds__DeleteCertificatesResponse &tds__DeleteCertificatesResponse); - // - /// Web service synchronous operation 'GetPkcs10Request' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetPkcs10Request(_tds__GetPkcs10Request *tds__GetPkcs10Request, _tds__GetPkcs10RequestResponse &tds__GetPkcs10RequestResponse) { return this->GetPkcs10Request(NULL, NULL, tds__GetPkcs10Request, tds__GetPkcs10RequestResponse); } - /// Web service synchronous operation 'GetPkcs10Request' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetPkcs10Request(const char *soap_endpoint_url, const char *soap_action, _tds__GetPkcs10Request *tds__GetPkcs10Request, _tds__GetPkcs10RequestResponse &tds__GetPkcs10RequestResponse) { return this->send_GetPkcs10Request(soap_endpoint_url, soap_action, tds__GetPkcs10Request) || this->recv_GetPkcs10Request(tds__GetPkcs10RequestResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetPkcs10Request' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetPkcs10Request(const char *soap_endpoint_url, const char *soap_action, _tds__GetPkcs10Request *tds__GetPkcs10Request); - /// Web service asynchronous operation 'recv_GetPkcs10Request' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetPkcs10Request(_tds__GetPkcs10RequestResponse &tds__GetPkcs10RequestResponse); - // - /// Web service synchronous operation 'LoadCertificates' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int LoadCertificates(_tds__LoadCertificates *tds__LoadCertificates, _tds__LoadCertificatesResponse &tds__LoadCertificatesResponse) { return this->LoadCertificates(NULL, NULL, tds__LoadCertificates, tds__LoadCertificatesResponse); } - /// Web service synchronous operation 'LoadCertificates' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int LoadCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCertificates *tds__LoadCertificates, _tds__LoadCertificatesResponse &tds__LoadCertificatesResponse) { return this->send_LoadCertificates(soap_endpoint_url, soap_action, tds__LoadCertificates) || this->recv_LoadCertificates(tds__LoadCertificatesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_LoadCertificates' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_LoadCertificates(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCertificates *tds__LoadCertificates); - /// Web service asynchronous operation 'recv_LoadCertificates' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_LoadCertificates(_tds__LoadCertificatesResponse &tds__LoadCertificatesResponse); - // - /// Web service synchronous operation 'GetClientCertificateMode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetClientCertificateMode(_tds__GetClientCertificateMode *tds__GetClientCertificateMode, _tds__GetClientCertificateModeResponse &tds__GetClientCertificateModeResponse) { return this->GetClientCertificateMode(NULL, NULL, tds__GetClientCertificateMode, tds__GetClientCertificateModeResponse); } - /// Web service synchronous operation 'GetClientCertificateMode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetClientCertificateMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetClientCertificateMode *tds__GetClientCertificateMode, _tds__GetClientCertificateModeResponse &tds__GetClientCertificateModeResponse) { return this->send_GetClientCertificateMode(soap_endpoint_url, soap_action, tds__GetClientCertificateMode) || this->recv_GetClientCertificateMode(tds__GetClientCertificateModeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetClientCertificateMode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetClientCertificateMode(const char *soap_endpoint_url, const char *soap_action, _tds__GetClientCertificateMode *tds__GetClientCertificateMode); - /// Web service asynchronous operation 'recv_GetClientCertificateMode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetClientCertificateMode(_tds__GetClientCertificateModeResponse &tds__GetClientCertificateModeResponse); - // - /// Web service synchronous operation 'SetClientCertificateMode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetClientCertificateMode(_tds__SetClientCertificateMode *tds__SetClientCertificateMode, _tds__SetClientCertificateModeResponse &tds__SetClientCertificateModeResponse) { return this->SetClientCertificateMode(NULL, NULL, tds__SetClientCertificateMode, tds__SetClientCertificateModeResponse); } - /// Web service synchronous operation 'SetClientCertificateMode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetClientCertificateMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetClientCertificateMode *tds__SetClientCertificateMode, _tds__SetClientCertificateModeResponse &tds__SetClientCertificateModeResponse) { return this->send_SetClientCertificateMode(soap_endpoint_url, soap_action, tds__SetClientCertificateMode) || this->recv_SetClientCertificateMode(tds__SetClientCertificateModeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetClientCertificateMode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetClientCertificateMode(const char *soap_endpoint_url, const char *soap_action, _tds__SetClientCertificateMode *tds__SetClientCertificateMode); - /// Web service asynchronous operation 'recv_SetClientCertificateMode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetClientCertificateMode(_tds__SetClientCertificateModeResponse &tds__SetClientCertificateModeResponse); - // - /// Web service synchronous operation 'GetRelayOutputs' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetRelayOutputs(_tds__GetRelayOutputs *tds__GetRelayOutputs, _tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse) { return this->GetRelayOutputs(NULL, NULL, tds__GetRelayOutputs, tds__GetRelayOutputsResponse); } - /// Web service synchronous operation 'GetRelayOutputs' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetRelayOutputs(const char *soap_endpoint_url, const char *soap_action, _tds__GetRelayOutputs *tds__GetRelayOutputs, _tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse) { return this->send_GetRelayOutputs(soap_endpoint_url, soap_action, tds__GetRelayOutputs) || this->recv_GetRelayOutputs(tds__GetRelayOutputsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetRelayOutputs' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetRelayOutputs(const char *soap_endpoint_url, const char *soap_action, _tds__GetRelayOutputs *tds__GetRelayOutputs); - /// Web service asynchronous operation 'recv_GetRelayOutputs' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetRelayOutputs(_tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse); - // - /// Web service synchronous operation 'SetRelayOutputSettings' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputSettings(_tds__SetRelayOutputSettings *tds__SetRelayOutputSettings, _tds__SetRelayOutputSettingsResponse &tds__SetRelayOutputSettingsResponse) { return this->SetRelayOutputSettings(NULL, NULL, tds__SetRelayOutputSettings, tds__SetRelayOutputSettingsResponse); } - /// Web service synchronous operation 'SetRelayOutputSettings' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputSettings(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputSettings *tds__SetRelayOutputSettings, _tds__SetRelayOutputSettingsResponse &tds__SetRelayOutputSettingsResponse) { return this->send_SetRelayOutputSettings(soap_endpoint_url, soap_action, tds__SetRelayOutputSettings) || this->recv_SetRelayOutputSettings(tds__SetRelayOutputSettingsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetRelayOutputSettings' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetRelayOutputSettings(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputSettings *tds__SetRelayOutputSettings); - /// Web service asynchronous operation 'recv_SetRelayOutputSettings' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetRelayOutputSettings(_tds__SetRelayOutputSettingsResponse &tds__SetRelayOutputSettingsResponse); - // - /// Web service synchronous operation 'SetRelayOutputState' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputState(_tds__SetRelayOutputState *tds__SetRelayOutputState, _tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse) { return this->SetRelayOutputState(NULL, NULL, tds__SetRelayOutputState, tds__SetRelayOutputStateResponse); } - /// Web service synchronous operation 'SetRelayOutputState' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputState(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputState *tds__SetRelayOutputState, _tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse) { return this->send_SetRelayOutputState(soap_endpoint_url, soap_action, tds__SetRelayOutputState) || this->recv_SetRelayOutputState(tds__SetRelayOutputStateResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetRelayOutputState' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetRelayOutputState(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputState *tds__SetRelayOutputState); - /// Web service asynchronous operation 'recv_SetRelayOutputState' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetRelayOutputState(_tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse); - // - /// Web service synchronous operation 'SendAuxiliaryCommand' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SendAuxiliaryCommand(_tds__SendAuxiliaryCommand *tds__SendAuxiliaryCommand, _tds__SendAuxiliaryCommandResponse &tds__SendAuxiliaryCommandResponse) { return this->SendAuxiliaryCommand(NULL, NULL, tds__SendAuxiliaryCommand, tds__SendAuxiliaryCommandResponse); } - /// Web service synchronous operation 'SendAuxiliaryCommand' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SendAuxiliaryCommand(const char *soap_endpoint_url, const char *soap_action, _tds__SendAuxiliaryCommand *tds__SendAuxiliaryCommand, _tds__SendAuxiliaryCommandResponse &tds__SendAuxiliaryCommandResponse) { return this->send_SendAuxiliaryCommand(soap_endpoint_url, soap_action, tds__SendAuxiliaryCommand) || this->recv_SendAuxiliaryCommand(tds__SendAuxiliaryCommandResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SendAuxiliaryCommand' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SendAuxiliaryCommand(const char *soap_endpoint_url, const char *soap_action, _tds__SendAuxiliaryCommand *tds__SendAuxiliaryCommand); - /// Web service asynchronous operation 'recv_SendAuxiliaryCommand' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SendAuxiliaryCommand(_tds__SendAuxiliaryCommandResponse &tds__SendAuxiliaryCommandResponse); - // - /// Web service synchronous operation 'GetCACertificates' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetCACertificates(_tds__GetCACertificates *tds__GetCACertificates, _tds__GetCACertificatesResponse &tds__GetCACertificatesResponse) { return this->GetCACertificates(NULL, NULL, tds__GetCACertificates, tds__GetCACertificatesResponse); } - /// Web service synchronous operation 'GetCACertificates' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetCACertificates(const char *soap_endpoint_url, const char *soap_action, _tds__GetCACertificates *tds__GetCACertificates, _tds__GetCACertificatesResponse &tds__GetCACertificatesResponse) { return this->send_GetCACertificates(soap_endpoint_url, soap_action, tds__GetCACertificates) || this->recv_GetCACertificates(tds__GetCACertificatesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetCACertificates' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetCACertificates(const char *soap_endpoint_url, const char *soap_action, _tds__GetCACertificates *tds__GetCACertificates); - /// Web service asynchronous operation 'recv_GetCACertificates' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetCACertificates(_tds__GetCACertificatesResponse &tds__GetCACertificatesResponse); - // - /// Web service synchronous operation 'LoadCertificateWithPrivateKey' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int LoadCertificateWithPrivateKey(_tds__LoadCertificateWithPrivateKey *tds__LoadCertificateWithPrivateKey, _tds__LoadCertificateWithPrivateKeyResponse &tds__LoadCertificateWithPrivateKeyResponse) { return this->LoadCertificateWithPrivateKey(NULL, NULL, tds__LoadCertificateWithPrivateKey, tds__LoadCertificateWithPrivateKeyResponse); } - /// Web service synchronous operation 'LoadCertificateWithPrivateKey' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int LoadCertificateWithPrivateKey(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCertificateWithPrivateKey *tds__LoadCertificateWithPrivateKey, _tds__LoadCertificateWithPrivateKeyResponse &tds__LoadCertificateWithPrivateKeyResponse) { return this->send_LoadCertificateWithPrivateKey(soap_endpoint_url, soap_action, tds__LoadCertificateWithPrivateKey) || this->recv_LoadCertificateWithPrivateKey(tds__LoadCertificateWithPrivateKeyResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_LoadCertificateWithPrivateKey' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_LoadCertificateWithPrivateKey(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCertificateWithPrivateKey *tds__LoadCertificateWithPrivateKey); - /// Web service asynchronous operation 'recv_LoadCertificateWithPrivateKey' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_LoadCertificateWithPrivateKey(_tds__LoadCertificateWithPrivateKeyResponse &tds__LoadCertificateWithPrivateKeyResponse); - // - /// Web service synchronous operation 'GetCertificateInformation' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetCertificateInformation(_tds__GetCertificateInformation *tds__GetCertificateInformation, _tds__GetCertificateInformationResponse &tds__GetCertificateInformationResponse) { return this->GetCertificateInformation(NULL, NULL, tds__GetCertificateInformation, tds__GetCertificateInformationResponse); } - /// Web service synchronous operation 'GetCertificateInformation' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetCertificateInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificateInformation *tds__GetCertificateInformation, _tds__GetCertificateInformationResponse &tds__GetCertificateInformationResponse) { return this->send_GetCertificateInformation(soap_endpoint_url, soap_action, tds__GetCertificateInformation) || this->recv_GetCertificateInformation(tds__GetCertificateInformationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetCertificateInformation' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetCertificateInformation(const char *soap_endpoint_url, const char *soap_action, _tds__GetCertificateInformation *tds__GetCertificateInformation); - /// Web service asynchronous operation 'recv_GetCertificateInformation' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetCertificateInformation(_tds__GetCertificateInformationResponse &tds__GetCertificateInformationResponse); - // - /// Web service synchronous operation 'LoadCACertificates' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int LoadCACertificates(_tds__LoadCACertificates *tds__LoadCACertificates, _tds__LoadCACertificatesResponse &tds__LoadCACertificatesResponse) { return this->LoadCACertificates(NULL, NULL, tds__LoadCACertificates, tds__LoadCACertificatesResponse); } - /// Web service synchronous operation 'LoadCACertificates' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int LoadCACertificates(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCACertificates *tds__LoadCACertificates, _tds__LoadCACertificatesResponse &tds__LoadCACertificatesResponse) { return this->send_LoadCACertificates(soap_endpoint_url, soap_action, tds__LoadCACertificates) || this->recv_LoadCACertificates(tds__LoadCACertificatesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_LoadCACertificates' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_LoadCACertificates(const char *soap_endpoint_url, const char *soap_action, _tds__LoadCACertificates *tds__LoadCACertificates); - /// Web service asynchronous operation 'recv_LoadCACertificates' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_LoadCACertificates(_tds__LoadCACertificatesResponse &tds__LoadCACertificatesResponse); - // - /// Web service synchronous operation 'CreateDot1XConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreateDot1XConfiguration(_tds__CreateDot1XConfiguration *tds__CreateDot1XConfiguration, _tds__CreateDot1XConfigurationResponse &tds__CreateDot1XConfigurationResponse) { return this->CreateDot1XConfiguration(NULL, NULL, tds__CreateDot1XConfiguration, tds__CreateDot1XConfigurationResponse); } - /// Web service synchronous operation 'CreateDot1XConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreateDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__CreateDot1XConfiguration *tds__CreateDot1XConfiguration, _tds__CreateDot1XConfigurationResponse &tds__CreateDot1XConfigurationResponse) { return this->send_CreateDot1XConfiguration(soap_endpoint_url, soap_action, tds__CreateDot1XConfiguration) || this->recv_CreateDot1XConfiguration(tds__CreateDot1XConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreateDot1XConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreateDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__CreateDot1XConfiguration *tds__CreateDot1XConfiguration); - /// Web service asynchronous operation 'recv_CreateDot1XConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreateDot1XConfiguration(_tds__CreateDot1XConfigurationResponse &tds__CreateDot1XConfigurationResponse); - // - /// Web service synchronous operation 'SetDot1XConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetDot1XConfiguration(_tds__SetDot1XConfiguration *tds__SetDot1XConfiguration, _tds__SetDot1XConfigurationResponse &tds__SetDot1XConfigurationResponse) { return this->SetDot1XConfiguration(NULL, NULL, tds__SetDot1XConfiguration, tds__SetDot1XConfigurationResponse); } - /// Web service synchronous operation 'SetDot1XConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetDot1XConfiguration *tds__SetDot1XConfiguration, _tds__SetDot1XConfigurationResponse &tds__SetDot1XConfigurationResponse) { return this->send_SetDot1XConfiguration(soap_endpoint_url, soap_action, tds__SetDot1XConfiguration) || this->recv_SetDot1XConfiguration(tds__SetDot1XConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetDot1XConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetDot1XConfiguration *tds__SetDot1XConfiguration); - /// Web service asynchronous operation 'recv_SetDot1XConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetDot1XConfiguration(_tds__SetDot1XConfigurationResponse &tds__SetDot1XConfigurationResponse); - // - /// Web service synchronous operation 'GetDot1XConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDot1XConfiguration(_tds__GetDot1XConfiguration *tds__GetDot1XConfiguration, _tds__GetDot1XConfigurationResponse &tds__GetDot1XConfigurationResponse) { return this->GetDot1XConfiguration(NULL, NULL, tds__GetDot1XConfiguration, tds__GetDot1XConfigurationResponse); } - /// Web service synchronous operation 'GetDot1XConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot1XConfiguration *tds__GetDot1XConfiguration, _tds__GetDot1XConfigurationResponse &tds__GetDot1XConfigurationResponse) { return this->send_GetDot1XConfiguration(soap_endpoint_url, soap_action, tds__GetDot1XConfiguration) || this->recv_GetDot1XConfiguration(tds__GetDot1XConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDot1XConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot1XConfiguration *tds__GetDot1XConfiguration); - /// Web service asynchronous operation 'recv_GetDot1XConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDot1XConfiguration(_tds__GetDot1XConfigurationResponse &tds__GetDot1XConfigurationResponse); - // - /// Web service synchronous operation 'GetDot1XConfigurations' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDot1XConfigurations(_tds__GetDot1XConfigurations *tds__GetDot1XConfigurations, _tds__GetDot1XConfigurationsResponse &tds__GetDot1XConfigurationsResponse) { return this->GetDot1XConfigurations(NULL, NULL, tds__GetDot1XConfigurations, tds__GetDot1XConfigurationsResponse); } - /// Web service synchronous operation 'GetDot1XConfigurations' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDot1XConfigurations(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot1XConfigurations *tds__GetDot1XConfigurations, _tds__GetDot1XConfigurationsResponse &tds__GetDot1XConfigurationsResponse) { return this->send_GetDot1XConfigurations(soap_endpoint_url, soap_action, tds__GetDot1XConfigurations) || this->recv_GetDot1XConfigurations(tds__GetDot1XConfigurationsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDot1XConfigurations' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDot1XConfigurations(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot1XConfigurations *tds__GetDot1XConfigurations); - /// Web service asynchronous operation 'recv_GetDot1XConfigurations' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDot1XConfigurations(_tds__GetDot1XConfigurationsResponse &tds__GetDot1XConfigurationsResponse); - // - /// Web service synchronous operation 'DeleteDot1XConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int DeleteDot1XConfiguration(_tds__DeleteDot1XConfiguration *tds__DeleteDot1XConfiguration, _tds__DeleteDot1XConfigurationResponse &tds__DeleteDot1XConfigurationResponse) { return this->DeleteDot1XConfiguration(NULL, NULL, tds__DeleteDot1XConfiguration, tds__DeleteDot1XConfigurationResponse); } - /// Web service synchronous operation 'DeleteDot1XConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int DeleteDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteDot1XConfiguration *tds__DeleteDot1XConfiguration, _tds__DeleteDot1XConfigurationResponse &tds__DeleteDot1XConfigurationResponse) { return this->send_DeleteDot1XConfiguration(soap_endpoint_url, soap_action, tds__DeleteDot1XConfiguration) || this->recv_DeleteDot1XConfiguration(tds__DeleteDot1XConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_DeleteDot1XConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_DeleteDot1XConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteDot1XConfiguration *tds__DeleteDot1XConfiguration); - /// Web service asynchronous operation 'recv_DeleteDot1XConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_DeleteDot1XConfiguration(_tds__DeleteDot1XConfigurationResponse &tds__DeleteDot1XConfigurationResponse); - // - /// Web service synchronous operation 'GetDot11Capabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDot11Capabilities(_tds__GetDot11Capabilities *tds__GetDot11Capabilities, _tds__GetDot11CapabilitiesResponse &tds__GetDot11CapabilitiesResponse) { return this->GetDot11Capabilities(NULL, NULL, tds__GetDot11Capabilities, tds__GetDot11CapabilitiesResponse); } - /// Web service synchronous operation 'GetDot11Capabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDot11Capabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot11Capabilities *tds__GetDot11Capabilities, _tds__GetDot11CapabilitiesResponse &tds__GetDot11CapabilitiesResponse) { return this->send_GetDot11Capabilities(soap_endpoint_url, soap_action, tds__GetDot11Capabilities) || this->recv_GetDot11Capabilities(tds__GetDot11CapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDot11Capabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDot11Capabilities(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot11Capabilities *tds__GetDot11Capabilities); - /// Web service asynchronous operation 'recv_GetDot11Capabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDot11Capabilities(_tds__GetDot11CapabilitiesResponse &tds__GetDot11CapabilitiesResponse); - // - /// Web service synchronous operation 'GetDot11Status' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDot11Status(_tds__GetDot11Status *tds__GetDot11Status, _tds__GetDot11StatusResponse &tds__GetDot11StatusResponse) { return this->GetDot11Status(NULL, NULL, tds__GetDot11Status, tds__GetDot11StatusResponse); } - /// Web service synchronous operation 'GetDot11Status' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDot11Status(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot11Status *tds__GetDot11Status, _tds__GetDot11StatusResponse &tds__GetDot11StatusResponse) { return this->send_GetDot11Status(soap_endpoint_url, soap_action, tds__GetDot11Status) || this->recv_GetDot11Status(tds__GetDot11StatusResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDot11Status' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDot11Status(const char *soap_endpoint_url, const char *soap_action, _tds__GetDot11Status *tds__GetDot11Status); - /// Web service asynchronous operation 'recv_GetDot11Status' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDot11Status(_tds__GetDot11StatusResponse &tds__GetDot11StatusResponse); - // - /// Web service synchronous operation 'ScanAvailableDot11Networks' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int ScanAvailableDot11Networks(_tds__ScanAvailableDot11Networks *tds__ScanAvailableDot11Networks, _tds__ScanAvailableDot11NetworksResponse &tds__ScanAvailableDot11NetworksResponse) { return this->ScanAvailableDot11Networks(NULL, NULL, tds__ScanAvailableDot11Networks, tds__ScanAvailableDot11NetworksResponse); } - /// Web service synchronous operation 'ScanAvailableDot11Networks' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int ScanAvailableDot11Networks(const char *soap_endpoint_url, const char *soap_action, _tds__ScanAvailableDot11Networks *tds__ScanAvailableDot11Networks, _tds__ScanAvailableDot11NetworksResponse &tds__ScanAvailableDot11NetworksResponse) { return this->send_ScanAvailableDot11Networks(soap_endpoint_url, soap_action, tds__ScanAvailableDot11Networks) || this->recv_ScanAvailableDot11Networks(tds__ScanAvailableDot11NetworksResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_ScanAvailableDot11Networks' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_ScanAvailableDot11Networks(const char *soap_endpoint_url, const char *soap_action, _tds__ScanAvailableDot11Networks *tds__ScanAvailableDot11Networks); - /// Web service asynchronous operation 'recv_ScanAvailableDot11Networks' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_ScanAvailableDot11Networks(_tds__ScanAvailableDot11NetworksResponse &tds__ScanAvailableDot11NetworksResponse); - // - /// Web service synchronous operation 'GetSystemUris' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemUris(_tds__GetSystemUris *tds__GetSystemUris, _tds__GetSystemUrisResponse &tds__GetSystemUrisResponse) { return this->GetSystemUris(NULL, NULL, tds__GetSystemUris, tds__GetSystemUrisResponse); } - /// Web service synchronous operation 'GetSystemUris' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSystemUris(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemUris *tds__GetSystemUris, _tds__GetSystemUrisResponse &tds__GetSystemUrisResponse) { return this->send_GetSystemUris(soap_endpoint_url, soap_action, tds__GetSystemUris) || this->recv_GetSystemUris(tds__GetSystemUrisResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSystemUris' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSystemUris(const char *soap_endpoint_url, const char *soap_action, _tds__GetSystemUris *tds__GetSystemUris); - /// Web service asynchronous operation 'recv_GetSystemUris' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSystemUris(_tds__GetSystemUrisResponse &tds__GetSystemUrisResponse); - // - /// Web service synchronous operation 'StartFirmwareUpgrade' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int StartFirmwareUpgrade(_tds__StartFirmwareUpgrade *tds__StartFirmwareUpgrade, _tds__StartFirmwareUpgradeResponse &tds__StartFirmwareUpgradeResponse) { return this->StartFirmwareUpgrade(NULL, NULL, tds__StartFirmwareUpgrade, tds__StartFirmwareUpgradeResponse); } - /// Web service synchronous operation 'StartFirmwareUpgrade' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int StartFirmwareUpgrade(const char *soap_endpoint_url, const char *soap_action, _tds__StartFirmwareUpgrade *tds__StartFirmwareUpgrade, _tds__StartFirmwareUpgradeResponse &tds__StartFirmwareUpgradeResponse) { return this->send_StartFirmwareUpgrade(soap_endpoint_url, soap_action, tds__StartFirmwareUpgrade) || this->recv_StartFirmwareUpgrade(tds__StartFirmwareUpgradeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_StartFirmwareUpgrade' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_StartFirmwareUpgrade(const char *soap_endpoint_url, const char *soap_action, _tds__StartFirmwareUpgrade *tds__StartFirmwareUpgrade); - /// Web service asynchronous operation 'recv_StartFirmwareUpgrade' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_StartFirmwareUpgrade(_tds__StartFirmwareUpgradeResponse &tds__StartFirmwareUpgradeResponse); - // - /// Web service synchronous operation 'StartSystemRestore' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int StartSystemRestore(_tds__StartSystemRestore *tds__StartSystemRestore, _tds__StartSystemRestoreResponse &tds__StartSystemRestoreResponse) { return this->StartSystemRestore(NULL, NULL, tds__StartSystemRestore, tds__StartSystemRestoreResponse); } - /// Web service synchronous operation 'StartSystemRestore' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int StartSystemRestore(const char *soap_endpoint_url, const char *soap_action, _tds__StartSystemRestore *tds__StartSystemRestore, _tds__StartSystemRestoreResponse &tds__StartSystemRestoreResponse) { return this->send_StartSystemRestore(soap_endpoint_url, soap_action, tds__StartSystemRestore) || this->recv_StartSystemRestore(tds__StartSystemRestoreResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_StartSystemRestore' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_StartSystemRestore(const char *soap_endpoint_url, const char *soap_action, _tds__StartSystemRestore *tds__StartSystemRestore); - /// Web service asynchronous operation 'recv_StartSystemRestore' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_StartSystemRestore(_tds__StartSystemRestoreResponse &tds__StartSystemRestoreResponse); - // - /// Web service synchronous operation 'GetStorageConfigurations' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetStorageConfigurations(_tds__GetStorageConfigurations *tds__GetStorageConfigurations, _tds__GetStorageConfigurationsResponse &tds__GetStorageConfigurationsResponse) { return this->GetStorageConfigurations(NULL, NULL, tds__GetStorageConfigurations, tds__GetStorageConfigurationsResponse); } - /// Web service synchronous operation 'GetStorageConfigurations' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetStorageConfigurations(const char *soap_endpoint_url, const char *soap_action, _tds__GetStorageConfigurations *tds__GetStorageConfigurations, _tds__GetStorageConfigurationsResponse &tds__GetStorageConfigurationsResponse) { return this->send_GetStorageConfigurations(soap_endpoint_url, soap_action, tds__GetStorageConfigurations) || this->recv_GetStorageConfigurations(tds__GetStorageConfigurationsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetStorageConfigurations' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetStorageConfigurations(const char *soap_endpoint_url, const char *soap_action, _tds__GetStorageConfigurations *tds__GetStorageConfigurations); - /// Web service asynchronous operation 'recv_GetStorageConfigurations' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetStorageConfigurations(_tds__GetStorageConfigurationsResponse &tds__GetStorageConfigurationsResponse); - // - /// Web service synchronous operation 'CreateStorageConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreateStorageConfiguration(_tds__CreateStorageConfiguration *tds__CreateStorageConfiguration, _tds__CreateStorageConfigurationResponse &tds__CreateStorageConfigurationResponse) { return this->CreateStorageConfiguration(NULL, NULL, tds__CreateStorageConfiguration, tds__CreateStorageConfigurationResponse); } - /// Web service synchronous operation 'CreateStorageConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreateStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__CreateStorageConfiguration *tds__CreateStorageConfiguration, _tds__CreateStorageConfigurationResponse &tds__CreateStorageConfigurationResponse) { return this->send_CreateStorageConfiguration(soap_endpoint_url, soap_action, tds__CreateStorageConfiguration) || this->recv_CreateStorageConfiguration(tds__CreateStorageConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreateStorageConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreateStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__CreateStorageConfiguration *tds__CreateStorageConfiguration); - /// Web service asynchronous operation 'recv_CreateStorageConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreateStorageConfiguration(_tds__CreateStorageConfigurationResponse &tds__CreateStorageConfigurationResponse); - // - /// Web service synchronous operation 'GetStorageConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetStorageConfiguration(_tds__GetStorageConfiguration *tds__GetStorageConfiguration, _tds__GetStorageConfigurationResponse &tds__GetStorageConfigurationResponse) { return this->GetStorageConfiguration(NULL, NULL, tds__GetStorageConfiguration, tds__GetStorageConfigurationResponse); } - /// Web service synchronous operation 'GetStorageConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetStorageConfiguration *tds__GetStorageConfiguration, _tds__GetStorageConfigurationResponse &tds__GetStorageConfigurationResponse) { return this->send_GetStorageConfiguration(soap_endpoint_url, soap_action, tds__GetStorageConfiguration) || this->recv_GetStorageConfiguration(tds__GetStorageConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetStorageConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__GetStorageConfiguration *tds__GetStorageConfiguration); - /// Web service asynchronous operation 'recv_GetStorageConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetStorageConfiguration(_tds__GetStorageConfigurationResponse &tds__GetStorageConfigurationResponse); - // - /// Web service synchronous operation 'SetStorageConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetStorageConfiguration(_tds__SetStorageConfiguration *tds__SetStorageConfiguration, _tds__SetStorageConfigurationResponse &tds__SetStorageConfigurationResponse) { return this->SetStorageConfiguration(NULL, NULL, tds__SetStorageConfiguration, tds__SetStorageConfigurationResponse); } - /// Web service synchronous operation 'SetStorageConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetStorageConfiguration *tds__SetStorageConfiguration, _tds__SetStorageConfigurationResponse &tds__SetStorageConfigurationResponse) { return this->send_SetStorageConfiguration(soap_endpoint_url, soap_action, tds__SetStorageConfiguration) || this->recv_SetStorageConfiguration(tds__SetStorageConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetStorageConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__SetStorageConfiguration *tds__SetStorageConfiguration); - /// Web service asynchronous operation 'recv_SetStorageConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetStorageConfiguration(_tds__SetStorageConfigurationResponse &tds__SetStorageConfigurationResponse); - // - /// Web service synchronous operation 'DeleteStorageConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int DeleteStorageConfiguration(_tds__DeleteStorageConfiguration *tds__DeleteStorageConfiguration, _tds__DeleteStorageConfigurationResponse &tds__DeleteStorageConfigurationResponse) { return this->DeleteStorageConfiguration(NULL, NULL, tds__DeleteStorageConfiguration, tds__DeleteStorageConfigurationResponse); } - /// Web service synchronous operation 'DeleteStorageConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int DeleteStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteStorageConfiguration *tds__DeleteStorageConfiguration, _tds__DeleteStorageConfigurationResponse &tds__DeleteStorageConfigurationResponse) { return this->send_DeleteStorageConfiguration(soap_endpoint_url, soap_action, tds__DeleteStorageConfiguration) || this->recv_DeleteStorageConfiguration(tds__DeleteStorageConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_DeleteStorageConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_DeleteStorageConfiguration(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteStorageConfiguration *tds__DeleteStorageConfiguration); - /// Web service asynchronous operation 'recv_DeleteStorageConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_DeleteStorageConfiguration(_tds__DeleteStorageConfigurationResponse &tds__DeleteStorageConfigurationResponse); - // - /// Web service synchronous operation 'GetGeoLocation' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetGeoLocation(_tds__GetGeoLocation *tds__GetGeoLocation, _tds__GetGeoLocationResponse &tds__GetGeoLocationResponse) { return this->GetGeoLocation(NULL, NULL, tds__GetGeoLocation, tds__GetGeoLocationResponse); } - /// Web service synchronous operation 'GetGeoLocation' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__GetGeoLocation *tds__GetGeoLocation, _tds__GetGeoLocationResponse &tds__GetGeoLocationResponse) { return this->send_GetGeoLocation(soap_endpoint_url, soap_action, tds__GetGeoLocation) || this->recv_GetGeoLocation(tds__GetGeoLocationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetGeoLocation' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__GetGeoLocation *tds__GetGeoLocation); - /// Web service asynchronous operation 'recv_GetGeoLocation' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetGeoLocation(_tds__GetGeoLocationResponse &tds__GetGeoLocationResponse); - // - /// Web service synchronous operation 'SetGeoLocation' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetGeoLocation(_tds__SetGeoLocation *tds__SetGeoLocation, _tds__SetGeoLocationResponse &tds__SetGeoLocationResponse) { return this->SetGeoLocation(NULL, NULL, tds__SetGeoLocation, tds__SetGeoLocationResponse); } - /// Web service synchronous operation 'SetGeoLocation' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__SetGeoLocation *tds__SetGeoLocation, _tds__SetGeoLocationResponse &tds__SetGeoLocationResponse) { return this->send_SetGeoLocation(soap_endpoint_url, soap_action, tds__SetGeoLocation) || this->recv_SetGeoLocation(tds__SetGeoLocationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetGeoLocation' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__SetGeoLocation *tds__SetGeoLocation); - /// Web service asynchronous operation 'recv_SetGeoLocation' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetGeoLocation(_tds__SetGeoLocationResponse &tds__SetGeoLocationResponse); - // - /// Web service synchronous operation 'DeleteGeoLocation' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int DeleteGeoLocation(_tds__DeleteGeoLocation *tds__DeleteGeoLocation, _tds__DeleteGeoLocationResponse &tds__DeleteGeoLocationResponse) { return this->DeleteGeoLocation(NULL, NULL, tds__DeleteGeoLocation, tds__DeleteGeoLocationResponse); } - /// Web service synchronous operation 'DeleteGeoLocation' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int DeleteGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteGeoLocation *tds__DeleteGeoLocation, _tds__DeleteGeoLocationResponse &tds__DeleteGeoLocationResponse) { return this->send_DeleteGeoLocation(soap_endpoint_url, soap_action, tds__DeleteGeoLocation) || this->recv_DeleteGeoLocation(tds__DeleteGeoLocationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_DeleteGeoLocation' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_DeleteGeoLocation(const char *soap_endpoint_url, const char *soap_action, _tds__DeleteGeoLocation *tds__DeleteGeoLocation); - /// Web service asynchronous operation 'recv_DeleteGeoLocation' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_DeleteGeoLocation(_tds__DeleteGeoLocationResponse &tds__DeleteGeoLocationResponse); - }; -#endif diff --git a/gen/soapDeviceBindingService.cpp b/gen/soapDeviceBindingService.cpp deleted file mode 100644 index de31806..0000000 --- a/gen/soapDeviceBindingService.cpp +++ /dev/null @@ -1,4261 +0,0 @@ -/* soapDeviceBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapDeviceBindingService.h" - -DeviceBindingService::DeviceBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -DeviceBindingService::DeviceBindingService(const DeviceBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -DeviceBindingService::DeviceBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - DeviceBindingService_init(_soap->imode, _soap->omode); -} - -DeviceBindingService::DeviceBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingService_init(iomode, iomode); -} - -DeviceBindingService::DeviceBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceBindingService_init(imode, omode); -} - -DeviceBindingService::~DeviceBindingService() -{ if (this->soap_own) - { DeviceBindingService::destroy(); - soap_free(this->soap); - } -} - -void DeviceBindingService::DeviceBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void DeviceBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void DeviceBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - DeviceBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -DeviceBindingService *DeviceBindingService::copy() -{ DeviceBindingService *dup = SOAP_NEW_UNMANAGED(DeviceBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -DeviceBindingService& DeviceBindingService::operator=(const DeviceBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int DeviceBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int DeviceBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int DeviceBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int DeviceBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int DeviceBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int DeviceBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void DeviceBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void DeviceBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *DeviceBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void DeviceBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void DeviceBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *DeviceBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int DeviceBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int DeviceBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET DeviceBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET DeviceBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int DeviceBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int DeviceBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___tds__GetServices(struct soap*, DeviceBindingService*); -static int serve___tds__GetServiceCapabilities(struct soap*, DeviceBindingService*); -static int serve___tds__GetDeviceInformation(struct soap*, DeviceBindingService*); -static int serve___tds__SetSystemDateAndTime(struct soap*, DeviceBindingService*); -static int serve___tds__GetSystemDateAndTime(struct soap*, DeviceBindingService*); -static int serve___tds__SetSystemFactoryDefault(struct soap*, DeviceBindingService*); -static int serve___tds__UpgradeSystemFirmware(struct soap*, DeviceBindingService*); -static int serve___tds__SystemReboot(struct soap*, DeviceBindingService*); -static int serve___tds__RestoreSystem(struct soap*, DeviceBindingService*); -static int serve___tds__GetSystemBackup(struct soap*, DeviceBindingService*); -static int serve___tds__GetSystemLog(struct soap*, DeviceBindingService*); -static int serve___tds__GetSystemSupportInformation(struct soap*, DeviceBindingService*); -static int serve___tds__GetScopes(struct soap*, DeviceBindingService*); -static int serve___tds__SetScopes(struct soap*, DeviceBindingService*); -static int serve___tds__AddScopes(struct soap*, DeviceBindingService*); -static int serve___tds__RemoveScopes(struct soap*, DeviceBindingService*); -static int serve___tds__GetDiscoveryMode(struct soap*, DeviceBindingService*); -static int serve___tds__SetDiscoveryMode(struct soap*, DeviceBindingService*); -static int serve___tds__GetRemoteDiscoveryMode(struct soap*, DeviceBindingService*); -static int serve___tds__SetRemoteDiscoveryMode(struct soap*, DeviceBindingService*); -static int serve___tds__GetDPAddresses(struct soap*, DeviceBindingService*); -static int serve___tds__GetEndpointReference(struct soap*, DeviceBindingService*); -static int serve___tds__GetRemoteUser(struct soap*, DeviceBindingService*); -static int serve___tds__SetRemoteUser(struct soap*, DeviceBindingService*); -static int serve___tds__GetUsers(struct soap*, DeviceBindingService*); -static int serve___tds__CreateUsers(struct soap*, DeviceBindingService*); -static int serve___tds__DeleteUsers(struct soap*, DeviceBindingService*); -static int serve___tds__SetUser(struct soap*, DeviceBindingService*); -static int serve___tds__GetWsdlUrl(struct soap*, DeviceBindingService*); -static int serve___tds__GetCapabilities(struct soap*, DeviceBindingService*); -static int serve___tds__SetDPAddresses(struct soap*, DeviceBindingService*); -static int serve___tds__GetHostname(struct soap*, DeviceBindingService*); -static int serve___tds__SetHostname(struct soap*, DeviceBindingService*); -static int serve___tds__SetHostnameFromDHCP(struct soap*, DeviceBindingService*); -static int serve___tds__GetDNS(struct soap*, DeviceBindingService*); -static int serve___tds__SetDNS(struct soap*, DeviceBindingService*); -static int serve___tds__GetNTP(struct soap*, DeviceBindingService*); -static int serve___tds__SetNTP(struct soap*, DeviceBindingService*); -static int serve___tds__GetDynamicDNS(struct soap*, DeviceBindingService*); -static int serve___tds__SetDynamicDNS(struct soap*, DeviceBindingService*); -static int serve___tds__GetNetworkInterfaces(struct soap*, DeviceBindingService*); -static int serve___tds__SetNetworkInterfaces(struct soap*, DeviceBindingService*); -static int serve___tds__GetNetworkProtocols(struct soap*, DeviceBindingService*); -static int serve___tds__SetNetworkProtocols(struct soap*, DeviceBindingService*); -static int serve___tds__GetNetworkDefaultGateway(struct soap*, DeviceBindingService*); -static int serve___tds__SetNetworkDefaultGateway(struct soap*, DeviceBindingService*); -static int serve___tds__GetZeroConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__SetZeroConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__GetIPAddressFilter(struct soap*, DeviceBindingService*); -static int serve___tds__SetIPAddressFilter(struct soap*, DeviceBindingService*); -static int serve___tds__AddIPAddressFilter(struct soap*, DeviceBindingService*); -static int serve___tds__RemoveIPAddressFilter(struct soap*, DeviceBindingService*); -static int serve___tds__GetAccessPolicy(struct soap*, DeviceBindingService*); -static int serve___tds__SetAccessPolicy(struct soap*, DeviceBindingService*); -static int serve___tds__CreateCertificate(struct soap*, DeviceBindingService*); -static int serve___tds__GetCertificates(struct soap*, DeviceBindingService*); -static int serve___tds__GetCertificatesStatus(struct soap*, DeviceBindingService*); -static int serve___tds__SetCertificatesStatus(struct soap*, DeviceBindingService*); -static int serve___tds__DeleteCertificates(struct soap*, DeviceBindingService*); -static int serve___tds__GetPkcs10Request(struct soap*, DeviceBindingService*); -static int serve___tds__LoadCertificates(struct soap*, DeviceBindingService*); -static int serve___tds__GetClientCertificateMode(struct soap*, DeviceBindingService*); -static int serve___tds__SetClientCertificateMode(struct soap*, DeviceBindingService*); -static int serve___tds__GetRelayOutputs(struct soap*, DeviceBindingService*); -static int serve___tds__SetRelayOutputSettings(struct soap*, DeviceBindingService*); -static int serve___tds__SetRelayOutputState(struct soap*, DeviceBindingService*); -static int serve___tds__SendAuxiliaryCommand(struct soap*, DeviceBindingService*); -static int serve___tds__GetCACertificates(struct soap*, DeviceBindingService*); -static int serve___tds__LoadCertificateWithPrivateKey(struct soap*, DeviceBindingService*); -static int serve___tds__GetCertificateInformation(struct soap*, DeviceBindingService*); -static int serve___tds__LoadCACertificates(struct soap*, DeviceBindingService*); -static int serve___tds__CreateDot1XConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__SetDot1XConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__GetDot1XConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__GetDot1XConfigurations(struct soap*, DeviceBindingService*); -static int serve___tds__DeleteDot1XConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__GetDot11Capabilities(struct soap*, DeviceBindingService*); -static int serve___tds__GetDot11Status(struct soap*, DeviceBindingService*); -static int serve___tds__ScanAvailableDot11Networks(struct soap*, DeviceBindingService*); -static int serve___tds__GetSystemUris(struct soap*, DeviceBindingService*); -static int serve___tds__StartFirmwareUpgrade(struct soap*, DeviceBindingService*); -static int serve___tds__StartSystemRestore(struct soap*, DeviceBindingService*); -static int serve___tds__GetStorageConfigurations(struct soap*, DeviceBindingService*); -static int serve___tds__CreateStorageConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__GetStorageConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__SetStorageConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__DeleteStorageConfiguration(struct soap*, DeviceBindingService*); -static int serve___tds__GetGeoLocation(struct soap*, DeviceBindingService*); -static int serve___tds__SetGeoLocation(struct soap*, DeviceBindingService*); -static int serve___tds__DeleteGeoLocation(struct soap*, DeviceBindingService*); - -int DeviceBindingService::dispatch() -{ return dispatch(this->soap); -} - -int DeviceBindingService::dispatch(struct soap* soap) -{ - DeviceBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "tds:GetServices")) - return serve___tds__GetServices(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetServiceCapabilities")) - return serve___tds__GetServiceCapabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDeviceInformation")) - return serve___tds__GetDeviceInformation(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetSystemDateAndTime")) - return serve___tds__SetSystemDateAndTime(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetSystemDateAndTime")) - return serve___tds__GetSystemDateAndTime(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetSystemFactoryDefault")) - return serve___tds__SetSystemFactoryDefault(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:UpgradeSystemFirmware")) - return serve___tds__UpgradeSystemFirmware(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SystemReboot")) - return serve___tds__SystemReboot(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:RestoreSystem")) - return serve___tds__RestoreSystem(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetSystemBackup")) - return serve___tds__GetSystemBackup(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetSystemLog")) - return serve___tds__GetSystemLog(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetSystemSupportInformation")) - return serve___tds__GetSystemSupportInformation(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetScopes")) - return serve___tds__GetScopes(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetScopes")) - return serve___tds__SetScopes(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:AddScopes")) - return serve___tds__AddScopes(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:RemoveScopes")) - return serve___tds__RemoveScopes(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDiscoveryMode")) - return serve___tds__GetDiscoveryMode(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetDiscoveryMode")) - return serve___tds__SetDiscoveryMode(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetRemoteDiscoveryMode")) - return serve___tds__GetRemoteDiscoveryMode(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetRemoteDiscoveryMode")) - return serve___tds__SetRemoteDiscoveryMode(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDPAddresses")) - return serve___tds__GetDPAddresses(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetEndpointReference")) - return serve___tds__GetEndpointReference(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetRemoteUser")) - return serve___tds__GetRemoteUser(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetRemoteUser")) - return serve___tds__SetRemoteUser(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetUsers")) - return serve___tds__GetUsers(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:CreateUsers")) - return serve___tds__CreateUsers(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:DeleteUsers")) - return serve___tds__DeleteUsers(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetUser")) - return serve___tds__SetUser(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetWsdlUrl")) - return serve___tds__GetWsdlUrl(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetCapabilities")) - return serve___tds__GetCapabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetDPAddresses")) - return serve___tds__SetDPAddresses(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetHostname")) - return serve___tds__GetHostname(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetHostname")) - return serve___tds__SetHostname(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetHostnameFromDHCP")) - return serve___tds__SetHostnameFromDHCP(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDNS")) - return serve___tds__GetDNS(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetDNS")) - return serve___tds__SetDNS(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetNTP")) - return serve___tds__GetNTP(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetNTP")) - return serve___tds__SetNTP(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDynamicDNS")) - return serve___tds__GetDynamicDNS(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetDynamicDNS")) - return serve___tds__SetDynamicDNS(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetNetworkInterfaces")) - return serve___tds__GetNetworkInterfaces(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetNetworkInterfaces")) - return serve___tds__SetNetworkInterfaces(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetNetworkProtocols")) - return serve___tds__GetNetworkProtocols(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetNetworkProtocols")) - return serve___tds__SetNetworkProtocols(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetNetworkDefaultGateway")) - return serve___tds__GetNetworkDefaultGateway(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetNetworkDefaultGateway")) - return serve___tds__SetNetworkDefaultGateway(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetZeroConfiguration")) - return serve___tds__GetZeroConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetZeroConfiguration")) - return serve___tds__SetZeroConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetIPAddressFilter")) - return serve___tds__GetIPAddressFilter(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetIPAddressFilter")) - return serve___tds__SetIPAddressFilter(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:AddIPAddressFilter")) - return serve___tds__AddIPAddressFilter(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:RemoveIPAddressFilter")) - return serve___tds__RemoveIPAddressFilter(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetAccessPolicy")) - return serve___tds__GetAccessPolicy(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetAccessPolicy")) - return serve___tds__SetAccessPolicy(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:CreateCertificate")) - return serve___tds__CreateCertificate(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetCertificates")) - return serve___tds__GetCertificates(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetCertificatesStatus")) - return serve___tds__GetCertificatesStatus(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetCertificatesStatus")) - return serve___tds__SetCertificatesStatus(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:DeleteCertificates")) - return serve___tds__DeleteCertificates(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetPkcs10Request")) - return serve___tds__GetPkcs10Request(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:LoadCertificates")) - return serve___tds__LoadCertificates(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetClientCertificateMode")) - return serve___tds__GetClientCertificateMode(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetClientCertificateMode")) - return serve___tds__SetClientCertificateMode(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetRelayOutputs")) - return serve___tds__GetRelayOutputs(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetRelayOutputSettings")) - return serve___tds__SetRelayOutputSettings(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetRelayOutputState")) - return serve___tds__SetRelayOutputState(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SendAuxiliaryCommand")) - return serve___tds__SendAuxiliaryCommand(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetCACertificates")) - return serve___tds__GetCACertificates(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:LoadCertificateWithPrivateKey")) - return serve___tds__LoadCertificateWithPrivateKey(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetCertificateInformation")) - return serve___tds__GetCertificateInformation(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:LoadCACertificates")) - return serve___tds__LoadCACertificates(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:CreateDot1XConfiguration")) - return serve___tds__CreateDot1XConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetDot1XConfiguration")) - return serve___tds__SetDot1XConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDot1XConfiguration")) - return serve___tds__GetDot1XConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDot1XConfigurations")) - return serve___tds__GetDot1XConfigurations(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:DeleteDot1XConfiguration")) - return serve___tds__DeleteDot1XConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDot11Capabilities")) - return serve___tds__GetDot11Capabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetDot11Status")) - return serve___tds__GetDot11Status(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:ScanAvailableDot11Networks")) - return serve___tds__ScanAvailableDot11Networks(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetSystemUris")) - return serve___tds__GetSystemUris(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:StartFirmwareUpgrade")) - return serve___tds__StartFirmwareUpgrade(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:StartSystemRestore")) - return serve___tds__StartSystemRestore(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetStorageConfigurations")) - return serve___tds__GetStorageConfigurations(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:CreateStorageConfiguration")) - return serve___tds__CreateStorageConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetStorageConfiguration")) - return serve___tds__GetStorageConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetStorageConfiguration")) - return serve___tds__SetStorageConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:DeleteStorageConfiguration")) - return serve___tds__DeleteStorageConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:GetGeoLocation")) - return serve___tds__GetGeoLocation(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:SetGeoLocation")) - return serve___tds__SetGeoLocation(soap, this); - if (!soap_match_tag(soap, soap->tag, "tds:DeleteGeoLocation")) - return serve___tds__DeleteGeoLocation(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___tds__GetServices(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetServices soap_tmp___tds__GetServices; - _tds__GetServicesResponse tds__GetServicesResponse; - tds__GetServicesResponse.soap_default(soap); - soap_default___tds__GetServices(soap, &soap_tmp___tds__GetServices); - if (!soap_get___tds__GetServices(soap, &soap_tmp___tds__GetServices, "-tds:GetServices", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetServices(soap_tmp___tds__GetServices.tds__GetServices, tds__GetServicesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetServicesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetServicesResponse.soap_put(soap, "tds:GetServicesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetServicesResponse.soap_put(soap, "tds:GetServicesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetServiceCapabilities(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetServiceCapabilities soap_tmp___tds__GetServiceCapabilities; - _tds__GetServiceCapabilitiesResponse tds__GetServiceCapabilitiesResponse; - tds__GetServiceCapabilitiesResponse.soap_default(soap); - soap_default___tds__GetServiceCapabilities(soap, &soap_tmp___tds__GetServiceCapabilities); - if (!soap_get___tds__GetServiceCapabilities(soap, &soap_tmp___tds__GetServiceCapabilities, "-tds:GetServiceCapabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetServiceCapabilities(soap_tmp___tds__GetServiceCapabilities.tds__GetServiceCapabilities, tds__GetServiceCapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetServiceCapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetServiceCapabilitiesResponse.soap_put(soap, "tds:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetServiceCapabilitiesResponse.soap_put(soap, "tds:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDeviceInformation(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDeviceInformation soap_tmp___tds__GetDeviceInformation; - _tds__GetDeviceInformationResponse tds__GetDeviceInformationResponse; - tds__GetDeviceInformationResponse.soap_default(soap); - soap_default___tds__GetDeviceInformation(soap, &soap_tmp___tds__GetDeviceInformation); - if (!soap_get___tds__GetDeviceInformation(soap, &soap_tmp___tds__GetDeviceInformation, "-tds:GetDeviceInformation", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDeviceInformation(soap_tmp___tds__GetDeviceInformation.tds__GetDeviceInformation, tds__GetDeviceInformationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDeviceInformationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDeviceInformationResponse.soap_put(soap, "tds:GetDeviceInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDeviceInformationResponse.soap_put(soap, "tds:GetDeviceInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetSystemDateAndTime(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetSystemDateAndTime soap_tmp___tds__SetSystemDateAndTime; - _tds__SetSystemDateAndTimeResponse tds__SetSystemDateAndTimeResponse; - tds__SetSystemDateAndTimeResponse.soap_default(soap); - soap_default___tds__SetSystemDateAndTime(soap, &soap_tmp___tds__SetSystemDateAndTime); - if (!soap_get___tds__SetSystemDateAndTime(soap, &soap_tmp___tds__SetSystemDateAndTime, "-tds:SetSystemDateAndTime", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetSystemDateAndTime(soap_tmp___tds__SetSystemDateAndTime.tds__SetSystemDateAndTime, tds__SetSystemDateAndTimeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetSystemDateAndTimeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetSystemDateAndTimeResponse.soap_put(soap, "tds:SetSystemDateAndTimeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetSystemDateAndTimeResponse.soap_put(soap, "tds:SetSystemDateAndTimeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetSystemDateAndTime(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetSystemDateAndTime soap_tmp___tds__GetSystemDateAndTime; - _tds__GetSystemDateAndTimeResponse tds__GetSystemDateAndTimeResponse; - tds__GetSystemDateAndTimeResponse.soap_default(soap); - soap_default___tds__GetSystemDateAndTime(soap, &soap_tmp___tds__GetSystemDateAndTime); - if (!soap_get___tds__GetSystemDateAndTime(soap, &soap_tmp___tds__GetSystemDateAndTime, "-tds:GetSystemDateAndTime", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetSystemDateAndTime(soap_tmp___tds__GetSystemDateAndTime.tds__GetSystemDateAndTime, tds__GetSystemDateAndTimeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetSystemDateAndTimeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemDateAndTimeResponse.soap_put(soap, "tds:GetSystemDateAndTimeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemDateAndTimeResponse.soap_put(soap, "tds:GetSystemDateAndTimeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetSystemFactoryDefault(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetSystemFactoryDefault soap_tmp___tds__SetSystemFactoryDefault; - _tds__SetSystemFactoryDefaultResponse tds__SetSystemFactoryDefaultResponse; - tds__SetSystemFactoryDefaultResponse.soap_default(soap); - soap_default___tds__SetSystemFactoryDefault(soap, &soap_tmp___tds__SetSystemFactoryDefault); - if (!soap_get___tds__SetSystemFactoryDefault(soap, &soap_tmp___tds__SetSystemFactoryDefault, "-tds:SetSystemFactoryDefault", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetSystemFactoryDefault(soap_tmp___tds__SetSystemFactoryDefault.tds__SetSystemFactoryDefault, tds__SetSystemFactoryDefaultResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetSystemFactoryDefaultResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetSystemFactoryDefaultResponse.soap_put(soap, "tds:SetSystemFactoryDefaultResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetSystemFactoryDefaultResponse.soap_put(soap, "tds:SetSystemFactoryDefaultResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__UpgradeSystemFirmware(struct soap *soap, DeviceBindingService *service) -{ struct __tds__UpgradeSystemFirmware soap_tmp___tds__UpgradeSystemFirmware; - _tds__UpgradeSystemFirmwareResponse tds__UpgradeSystemFirmwareResponse; - tds__UpgradeSystemFirmwareResponse.soap_default(soap); - soap_default___tds__UpgradeSystemFirmware(soap, &soap_tmp___tds__UpgradeSystemFirmware); - if (!soap_get___tds__UpgradeSystemFirmware(soap, &soap_tmp___tds__UpgradeSystemFirmware, "-tds:UpgradeSystemFirmware", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->UpgradeSystemFirmware(soap_tmp___tds__UpgradeSystemFirmware.tds__UpgradeSystemFirmware, tds__UpgradeSystemFirmwareResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__UpgradeSystemFirmwareResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__UpgradeSystemFirmwareResponse.soap_put(soap, "tds:UpgradeSystemFirmwareResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__UpgradeSystemFirmwareResponse.soap_put(soap, "tds:UpgradeSystemFirmwareResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SystemReboot(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SystemReboot soap_tmp___tds__SystemReboot; - _tds__SystemRebootResponse tds__SystemRebootResponse; - tds__SystemRebootResponse.soap_default(soap); - soap_default___tds__SystemReboot(soap, &soap_tmp___tds__SystemReboot); - if (!soap_get___tds__SystemReboot(soap, &soap_tmp___tds__SystemReboot, "-tds:SystemReboot", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SystemReboot(soap_tmp___tds__SystemReboot.tds__SystemReboot, tds__SystemRebootResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SystemRebootResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SystemRebootResponse.soap_put(soap, "tds:SystemRebootResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SystemRebootResponse.soap_put(soap, "tds:SystemRebootResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__RestoreSystem(struct soap *soap, DeviceBindingService *service) -{ struct __tds__RestoreSystem soap_tmp___tds__RestoreSystem; - _tds__RestoreSystemResponse tds__RestoreSystemResponse; - tds__RestoreSystemResponse.soap_default(soap); - soap_default___tds__RestoreSystem(soap, &soap_tmp___tds__RestoreSystem); - if (!soap_get___tds__RestoreSystem(soap, &soap_tmp___tds__RestoreSystem, "-tds:RestoreSystem", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->RestoreSystem(soap_tmp___tds__RestoreSystem.tds__RestoreSystem, tds__RestoreSystemResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__RestoreSystemResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__RestoreSystemResponse.soap_put(soap, "tds:RestoreSystemResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__RestoreSystemResponse.soap_put(soap, "tds:RestoreSystemResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetSystemBackup(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetSystemBackup soap_tmp___tds__GetSystemBackup; - _tds__GetSystemBackupResponse tds__GetSystemBackupResponse; - tds__GetSystemBackupResponse.soap_default(soap); - soap_default___tds__GetSystemBackup(soap, &soap_tmp___tds__GetSystemBackup); - if (!soap_get___tds__GetSystemBackup(soap, &soap_tmp___tds__GetSystemBackup, "-tds:GetSystemBackup", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetSystemBackup(soap_tmp___tds__GetSystemBackup.tds__GetSystemBackup, tds__GetSystemBackupResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetSystemBackupResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemBackupResponse.soap_put(soap, "tds:GetSystemBackupResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemBackupResponse.soap_put(soap, "tds:GetSystemBackupResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetSystemLog(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetSystemLog soap_tmp___tds__GetSystemLog; - _tds__GetSystemLogResponse tds__GetSystemLogResponse; - tds__GetSystemLogResponse.soap_default(soap); - soap_default___tds__GetSystemLog(soap, &soap_tmp___tds__GetSystemLog); - if (!soap_get___tds__GetSystemLog(soap, &soap_tmp___tds__GetSystemLog, "-tds:GetSystemLog", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetSystemLog(soap_tmp___tds__GetSystemLog.tds__GetSystemLog, tds__GetSystemLogResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetSystemLogResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemLogResponse.soap_put(soap, "tds:GetSystemLogResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemLogResponse.soap_put(soap, "tds:GetSystemLogResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetSystemSupportInformation(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetSystemSupportInformation soap_tmp___tds__GetSystemSupportInformation; - _tds__GetSystemSupportInformationResponse tds__GetSystemSupportInformationResponse; - tds__GetSystemSupportInformationResponse.soap_default(soap); - soap_default___tds__GetSystemSupportInformation(soap, &soap_tmp___tds__GetSystemSupportInformation); - if (!soap_get___tds__GetSystemSupportInformation(soap, &soap_tmp___tds__GetSystemSupportInformation, "-tds:GetSystemSupportInformation", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetSystemSupportInformation(soap_tmp___tds__GetSystemSupportInformation.tds__GetSystemSupportInformation, tds__GetSystemSupportInformationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetSystemSupportInformationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemSupportInformationResponse.soap_put(soap, "tds:GetSystemSupportInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemSupportInformationResponse.soap_put(soap, "tds:GetSystemSupportInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetScopes(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetScopes soap_tmp___tds__GetScopes; - _tds__GetScopesResponse tds__GetScopesResponse; - tds__GetScopesResponse.soap_default(soap); - soap_default___tds__GetScopes(soap, &soap_tmp___tds__GetScopes); - if (!soap_get___tds__GetScopes(soap, &soap_tmp___tds__GetScopes, "-tds:GetScopes", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetScopes(soap_tmp___tds__GetScopes.tds__GetScopes, tds__GetScopesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetScopesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetScopesResponse.soap_put(soap, "tds:GetScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetScopesResponse.soap_put(soap, "tds:GetScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetScopes(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetScopes soap_tmp___tds__SetScopes; - _tds__SetScopesResponse tds__SetScopesResponse; - tds__SetScopesResponse.soap_default(soap); - soap_default___tds__SetScopes(soap, &soap_tmp___tds__SetScopes); - if (!soap_get___tds__SetScopes(soap, &soap_tmp___tds__SetScopes, "-tds:SetScopes", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetScopes(soap_tmp___tds__SetScopes.tds__SetScopes, tds__SetScopesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetScopesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetScopesResponse.soap_put(soap, "tds:SetScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetScopesResponse.soap_put(soap, "tds:SetScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__AddScopes(struct soap *soap, DeviceBindingService *service) -{ struct __tds__AddScopes soap_tmp___tds__AddScopes; - _tds__AddScopesResponse tds__AddScopesResponse; - tds__AddScopesResponse.soap_default(soap); - soap_default___tds__AddScopes(soap, &soap_tmp___tds__AddScopes); - if (!soap_get___tds__AddScopes(soap, &soap_tmp___tds__AddScopes, "-tds:AddScopes", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->AddScopes(soap_tmp___tds__AddScopes.tds__AddScopes, tds__AddScopesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__AddScopesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__AddScopesResponse.soap_put(soap, "tds:AddScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__AddScopesResponse.soap_put(soap, "tds:AddScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__RemoveScopes(struct soap *soap, DeviceBindingService *service) -{ struct __tds__RemoveScopes soap_tmp___tds__RemoveScopes; - _tds__RemoveScopesResponse tds__RemoveScopesResponse; - tds__RemoveScopesResponse.soap_default(soap); - soap_default___tds__RemoveScopes(soap, &soap_tmp___tds__RemoveScopes); - if (!soap_get___tds__RemoveScopes(soap, &soap_tmp___tds__RemoveScopes, "-tds:RemoveScopes", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->RemoveScopes(soap_tmp___tds__RemoveScopes.tds__RemoveScopes, tds__RemoveScopesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__RemoveScopesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__RemoveScopesResponse.soap_put(soap, "tds:RemoveScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__RemoveScopesResponse.soap_put(soap, "tds:RemoveScopesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDiscoveryMode(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDiscoveryMode soap_tmp___tds__GetDiscoveryMode; - _tds__GetDiscoveryModeResponse tds__GetDiscoveryModeResponse; - tds__GetDiscoveryModeResponse.soap_default(soap); - soap_default___tds__GetDiscoveryMode(soap, &soap_tmp___tds__GetDiscoveryMode); - if (!soap_get___tds__GetDiscoveryMode(soap, &soap_tmp___tds__GetDiscoveryMode, "-tds:GetDiscoveryMode", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDiscoveryMode(soap_tmp___tds__GetDiscoveryMode.tds__GetDiscoveryMode, tds__GetDiscoveryModeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDiscoveryModeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDiscoveryModeResponse.soap_put(soap, "tds:GetDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDiscoveryModeResponse.soap_put(soap, "tds:GetDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetDiscoveryMode(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetDiscoveryMode soap_tmp___tds__SetDiscoveryMode; - _tds__SetDiscoveryModeResponse tds__SetDiscoveryModeResponse; - tds__SetDiscoveryModeResponse.soap_default(soap); - soap_default___tds__SetDiscoveryMode(soap, &soap_tmp___tds__SetDiscoveryMode); - if (!soap_get___tds__SetDiscoveryMode(soap, &soap_tmp___tds__SetDiscoveryMode, "-tds:SetDiscoveryMode", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetDiscoveryMode(soap_tmp___tds__SetDiscoveryMode.tds__SetDiscoveryMode, tds__SetDiscoveryModeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetDiscoveryModeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDiscoveryModeResponse.soap_put(soap, "tds:SetDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDiscoveryModeResponse.soap_put(soap, "tds:SetDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetRemoteDiscoveryMode(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetRemoteDiscoveryMode soap_tmp___tds__GetRemoteDiscoveryMode; - _tds__GetRemoteDiscoveryModeResponse tds__GetRemoteDiscoveryModeResponse; - tds__GetRemoteDiscoveryModeResponse.soap_default(soap); - soap_default___tds__GetRemoteDiscoveryMode(soap, &soap_tmp___tds__GetRemoteDiscoveryMode); - if (!soap_get___tds__GetRemoteDiscoveryMode(soap, &soap_tmp___tds__GetRemoteDiscoveryMode, "-tds:GetRemoteDiscoveryMode", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetRemoteDiscoveryMode(soap_tmp___tds__GetRemoteDiscoveryMode.tds__GetRemoteDiscoveryMode, tds__GetRemoteDiscoveryModeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetRemoteDiscoveryModeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetRemoteDiscoveryModeResponse.soap_put(soap, "tds:GetRemoteDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetRemoteDiscoveryModeResponse.soap_put(soap, "tds:GetRemoteDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetRemoteDiscoveryMode(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetRemoteDiscoveryMode soap_tmp___tds__SetRemoteDiscoveryMode; - _tds__SetRemoteDiscoveryModeResponse tds__SetRemoteDiscoveryModeResponse; - tds__SetRemoteDiscoveryModeResponse.soap_default(soap); - soap_default___tds__SetRemoteDiscoveryMode(soap, &soap_tmp___tds__SetRemoteDiscoveryMode); - if (!soap_get___tds__SetRemoteDiscoveryMode(soap, &soap_tmp___tds__SetRemoteDiscoveryMode, "-tds:SetRemoteDiscoveryMode", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetRemoteDiscoveryMode(soap_tmp___tds__SetRemoteDiscoveryMode.tds__SetRemoteDiscoveryMode, tds__SetRemoteDiscoveryModeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetRemoteDiscoveryModeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRemoteDiscoveryModeResponse.soap_put(soap, "tds:SetRemoteDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRemoteDiscoveryModeResponse.soap_put(soap, "tds:SetRemoteDiscoveryModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDPAddresses(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDPAddresses soap_tmp___tds__GetDPAddresses; - _tds__GetDPAddressesResponse tds__GetDPAddressesResponse; - tds__GetDPAddressesResponse.soap_default(soap); - soap_default___tds__GetDPAddresses(soap, &soap_tmp___tds__GetDPAddresses); - if (!soap_get___tds__GetDPAddresses(soap, &soap_tmp___tds__GetDPAddresses, "-tds:GetDPAddresses", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDPAddresses(soap_tmp___tds__GetDPAddresses.tds__GetDPAddresses, tds__GetDPAddressesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDPAddressesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDPAddressesResponse.soap_put(soap, "tds:GetDPAddressesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDPAddressesResponse.soap_put(soap, "tds:GetDPAddressesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetEndpointReference(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetEndpointReference soap_tmp___tds__GetEndpointReference; - _tds__GetEndpointReferenceResponse tds__GetEndpointReferenceResponse; - tds__GetEndpointReferenceResponse.soap_default(soap); - soap_default___tds__GetEndpointReference(soap, &soap_tmp___tds__GetEndpointReference); - if (!soap_get___tds__GetEndpointReference(soap, &soap_tmp___tds__GetEndpointReference, "-tds:GetEndpointReference", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetEndpointReference(soap_tmp___tds__GetEndpointReference.tds__GetEndpointReference, tds__GetEndpointReferenceResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetEndpointReferenceResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetEndpointReferenceResponse.soap_put(soap, "tds:GetEndpointReferenceResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetEndpointReferenceResponse.soap_put(soap, "tds:GetEndpointReferenceResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetRemoteUser(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetRemoteUser soap_tmp___tds__GetRemoteUser; - _tds__GetRemoteUserResponse tds__GetRemoteUserResponse; - tds__GetRemoteUserResponse.soap_default(soap); - soap_default___tds__GetRemoteUser(soap, &soap_tmp___tds__GetRemoteUser); - if (!soap_get___tds__GetRemoteUser(soap, &soap_tmp___tds__GetRemoteUser, "-tds:GetRemoteUser", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetRemoteUser(soap_tmp___tds__GetRemoteUser.tds__GetRemoteUser, tds__GetRemoteUserResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetRemoteUserResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetRemoteUserResponse.soap_put(soap, "tds:GetRemoteUserResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetRemoteUserResponse.soap_put(soap, "tds:GetRemoteUserResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetRemoteUser(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetRemoteUser soap_tmp___tds__SetRemoteUser; - _tds__SetRemoteUserResponse tds__SetRemoteUserResponse; - tds__SetRemoteUserResponse.soap_default(soap); - soap_default___tds__SetRemoteUser(soap, &soap_tmp___tds__SetRemoteUser); - if (!soap_get___tds__SetRemoteUser(soap, &soap_tmp___tds__SetRemoteUser, "-tds:SetRemoteUser", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetRemoteUser(soap_tmp___tds__SetRemoteUser.tds__SetRemoteUser, tds__SetRemoteUserResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetRemoteUserResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRemoteUserResponse.soap_put(soap, "tds:SetRemoteUserResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRemoteUserResponse.soap_put(soap, "tds:SetRemoteUserResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetUsers(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetUsers soap_tmp___tds__GetUsers; - _tds__GetUsersResponse tds__GetUsersResponse; - tds__GetUsersResponse.soap_default(soap); - soap_default___tds__GetUsers(soap, &soap_tmp___tds__GetUsers); - if (!soap_get___tds__GetUsers(soap, &soap_tmp___tds__GetUsers, "-tds:GetUsers", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetUsers(soap_tmp___tds__GetUsers.tds__GetUsers, tds__GetUsersResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetUsersResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetUsersResponse.soap_put(soap, "tds:GetUsersResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetUsersResponse.soap_put(soap, "tds:GetUsersResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__CreateUsers(struct soap *soap, DeviceBindingService *service) -{ struct __tds__CreateUsers soap_tmp___tds__CreateUsers; - _tds__CreateUsersResponse tds__CreateUsersResponse; - tds__CreateUsersResponse.soap_default(soap); - soap_default___tds__CreateUsers(soap, &soap_tmp___tds__CreateUsers); - if (!soap_get___tds__CreateUsers(soap, &soap_tmp___tds__CreateUsers, "-tds:CreateUsers", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreateUsers(soap_tmp___tds__CreateUsers.tds__CreateUsers, tds__CreateUsersResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__CreateUsersResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateUsersResponse.soap_put(soap, "tds:CreateUsersResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateUsersResponse.soap_put(soap, "tds:CreateUsersResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__DeleteUsers(struct soap *soap, DeviceBindingService *service) -{ struct __tds__DeleteUsers soap_tmp___tds__DeleteUsers; - _tds__DeleteUsersResponse tds__DeleteUsersResponse; - tds__DeleteUsersResponse.soap_default(soap); - soap_default___tds__DeleteUsers(soap, &soap_tmp___tds__DeleteUsers); - if (!soap_get___tds__DeleteUsers(soap, &soap_tmp___tds__DeleteUsers, "-tds:DeleteUsers", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DeleteUsers(soap_tmp___tds__DeleteUsers.tds__DeleteUsers, tds__DeleteUsersResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__DeleteUsersResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteUsersResponse.soap_put(soap, "tds:DeleteUsersResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteUsersResponse.soap_put(soap, "tds:DeleteUsersResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetUser(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetUser soap_tmp___tds__SetUser; - _tds__SetUserResponse tds__SetUserResponse; - tds__SetUserResponse.soap_default(soap); - soap_default___tds__SetUser(soap, &soap_tmp___tds__SetUser); - if (!soap_get___tds__SetUser(soap, &soap_tmp___tds__SetUser, "-tds:SetUser", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetUser(soap_tmp___tds__SetUser.tds__SetUser, tds__SetUserResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetUserResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetUserResponse.soap_put(soap, "tds:SetUserResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetUserResponse.soap_put(soap, "tds:SetUserResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetWsdlUrl(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetWsdlUrl soap_tmp___tds__GetWsdlUrl; - _tds__GetWsdlUrlResponse tds__GetWsdlUrlResponse; - tds__GetWsdlUrlResponse.soap_default(soap); - soap_default___tds__GetWsdlUrl(soap, &soap_tmp___tds__GetWsdlUrl); - if (!soap_get___tds__GetWsdlUrl(soap, &soap_tmp___tds__GetWsdlUrl, "-tds:GetWsdlUrl", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetWsdlUrl(soap_tmp___tds__GetWsdlUrl.tds__GetWsdlUrl, tds__GetWsdlUrlResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetWsdlUrlResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetWsdlUrlResponse.soap_put(soap, "tds:GetWsdlUrlResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetWsdlUrlResponse.soap_put(soap, "tds:GetWsdlUrlResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetCapabilities(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetCapabilities soap_tmp___tds__GetCapabilities; - _tds__GetCapabilitiesResponse tds__GetCapabilitiesResponse; - tds__GetCapabilitiesResponse.soap_default(soap); - soap_default___tds__GetCapabilities(soap, &soap_tmp___tds__GetCapabilities); - if (!soap_get___tds__GetCapabilities(soap, &soap_tmp___tds__GetCapabilities, "-tds:GetCapabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetCapabilities(soap_tmp___tds__GetCapabilities.tds__GetCapabilities, tds__GetCapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetCapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCapabilitiesResponse.soap_put(soap, "tds:GetCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCapabilitiesResponse.soap_put(soap, "tds:GetCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetDPAddresses(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetDPAddresses soap_tmp___tds__SetDPAddresses; - _tds__SetDPAddressesResponse tds__SetDPAddressesResponse; - tds__SetDPAddressesResponse.soap_default(soap); - soap_default___tds__SetDPAddresses(soap, &soap_tmp___tds__SetDPAddresses); - if (!soap_get___tds__SetDPAddresses(soap, &soap_tmp___tds__SetDPAddresses, "-tds:SetDPAddresses", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetDPAddresses(soap_tmp___tds__SetDPAddresses.tds__SetDPAddresses, tds__SetDPAddressesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetDPAddressesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDPAddressesResponse.soap_put(soap, "tds:SetDPAddressesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDPAddressesResponse.soap_put(soap, "tds:SetDPAddressesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetHostname(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetHostname soap_tmp___tds__GetHostname; - _tds__GetHostnameResponse tds__GetHostnameResponse; - tds__GetHostnameResponse.soap_default(soap); - soap_default___tds__GetHostname(soap, &soap_tmp___tds__GetHostname); - if (!soap_get___tds__GetHostname(soap, &soap_tmp___tds__GetHostname, "-tds:GetHostname", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetHostname(soap_tmp___tds__GetHostname.tds__GetHostname, tds__GetHostnameResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetHostnameResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetHostnameResponse.soap_put(soap, "tds:GetHostnameResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetHostnameResponse.soap_put(soap, "tds:GetHostnameResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetHostname(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetHostname soap_tmp___tds__SetHostname; - _tds__SetHostnameResponse tds__SetHostnameResponse; - tds__SetHostnameResponse.soap_default(soap); - soap_default___tds__SetHostname(soap, &soap_tmp___tds__SetHostname); - if (!soap_get___tds__SetHostname(soap, &soap_tmp___tds__SetHostname, "-tds:SetHostname", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetHostname(soap_tmp___tds__SetHostname.tds__SetHostname, tds__SetHostnameResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetHostnameResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetHostnameResponse.soap_put(soap, "tds:SetHostnameResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetHostnameResponse.soap_put(soap, "tds:SetHostnameResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetHostnameFromDHCP(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetHostnameFromDHCP soap_tmp___tds__SetHostnameFromDHCP; - _tds__SetHostnameFromDHCPResponse tds__SetHostnameFromDHCPResponse; - tds__SetHostnameFromDHCPResponse.soap_default(soap); - soap_default___tds__SetHostnameFromDHCP(soap, &soap_tmp___tds__SetHostnameFromDHCP); - if (!soap_get___tds__SetHostnameFromDHCP(soap, &soap_tmp___tds__SetHostnameFromDHCP, "-tds:SetHostnameFromDHCP", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetHostnameFromDHCP(soap_tmp___tds__SetHostnameFromDHCP.tds__SetHostnameFromDHCP, tds__SetHostnameFromDHCPResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetHostnameFromDHCPResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetHostnameFromDHCPResponse.soap_put(soap, "tds:SetHostnameFromDHCPResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetHostnameFromDHCPResponse.soap_put(soap, "tds:SetHostnameFromDHCPResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDNS(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDNS soap_tmp___tds__GetDNS; - _tds__GetDNSResponse tds__GetDNSResponse; - tds__GetDNSResponse.soap_default(soap); - soap_default___tds__GetDNS(soap, &soap_tmp___tds__GetDNS); - if (!soap_get___tds__GetDNS(soap, &soap_tmp___tds__GetDNS, "-tds:GetDNS", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDNS(soap_tmp___tds__GetDNS.tds__GetDNS, tds__GetDNSResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDNSResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDNSResponse.soap_put(soap, "tds:GetDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDNSResponse.soap_put(soap, "tds:GetDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetDNS(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetDNS soap_tmp___tds__SetDNS; - _tds__SetDNSResponse tds__SetDNSResponse; - tds__SetDNSResponse.soap_default(soap); - soap_default___tds__SetDNS(soap, &soap_tmp___tds__SetDNS); - if (!soap_get___tds__SetDNS(soap, &soap_tmp___tds__SetDNS, "-tds:SetDNS", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetDNS(soap_tmp___tds__SetDNS.tds__SetDNS, tds__SetDNSResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetDNSResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDNSResponse.soap_put(soap, "tds:SetDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDNSResponse.soap_put(soap, "tds:SetDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetNTP(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetNTP soap_tmp___tds__GetNTP; - _tds__GetNTPResponse tds__GetNTPResponse; - tds__GetNTPResponse.soap_default(soap); - soap_default___tds__GetNTP(soap, &soap_tmp___tds__GetNTP); - if (!soap_get___tds__GetNTP(soap, &soap_tmp___tds__GetNTP, "-tds:GetNTP", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetNTP(soap_tmp___tds__GetNTP.tds__GetNTP, tds__GetNTPResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetNTPResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNTPResponse.soap_put(soap, "tds:GetNTPResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNTPResponse.soap_put(soap, "tds:GetNTPResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetNTP(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetNTP soap_tmp___tds__SetNTP; - _tds__SetNTPResponse tds__SetNTPResponse; - tds__SetNTPResponse.soap_default(soap); - soap_default___tds__SetNTP(soap, &soap_tmp___tds__SetNTP); - if (!soap_get___tds__SetNTP(soap, &soap_tmp___tds__SetNTP, "-tds:SetNTP", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetNTP(soap_tmp___tds__SetNTP.tds__SetNTP, tds__SetNTPResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetNTPResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNTPResponse.soap_put(soap, "tds:SetNTPResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNTPResponse.soap_put(soap, "tds:SetNTPResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDynamicDNS(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDynamicDNS soap_tmp___tds__GetDynamicDNS; - _tds__GetDynamicDNSResponse tds__GetDynamicDNSResponse; - tds__GetDynamicDNSResponse.soap_default(soap); - soap_default___tds__GetDynamicDNS(soap, &soap_tmp___tds__GetDynamicDNS); - if (!soap_get___tds__GetDynamicDNS(soap, &soap_tmp___tds__GetDynamicDNS, "-tds:GetDynamicDNS", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDynamicDNS(soap_tmp___tds__GetDynamicDNS.tds__GetDynamicDNS, tds__GetDynamicDNSResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDynamicDNSResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDynamicDNSResponse.soap_put(soap, "tds:GetDynamicDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDynamicDNSResponse.soap_put(soap, "tds:GetDynamicDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetDynamicDNS(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetDynamicDNS soap_tmp___tds__SetDynamicDNS; - _tds__SetDynamicDNSResponse tds__SetDynamicDNSResponse; - tds__SetDynamicDNSResponse.soap_default(soap); - soap_default___tds__SetDynamicDNS(soap, &soap_tmp___tds__SetDynamicDNS); - if (!soap_get___tds__SetDynamicDNS(soap, &soap_tmp___tds__SetDynamicDNS, "-tds:SetDynamicDNS", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetDynamicDNS(soap_tmp___tds__SetDynamicDNS.tds__SetDynamicDNS, tds__SetDynamicDNSResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetDynamicDNSResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDynamicDNSResponse.soap_put(soap, "tds:SetDynamicDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDynamicDNSResponse.soap_put(soap, "tds:SetDynamicDNSResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetNetworkInterfaces(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetNetworkInterfaces soap_tmp___tds__GetNetworkInterfaces; - _tds__GetNetworkInterfacesResponse tds__GetNetworkInterfacesResponse; - tds__GetNetworkInterfacesResponse.soap_default(soap); - soap_default___tds__GetNetworkInterfaces(soap, &soap_tmp___tds__GetNetworkInterfaces); - if (!soap_get___tds__GetNetworkInterfaces(soap, &soap_tmp___tds__GetNetworkInterfaces, "-tds:GetNetworkInterfaces", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetNetworkInterfaces(soap_tmp___tds__GetNetworkInterfaces.tds__GetNetworkInterfaces, tds__GetNetworkInterfacesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetNetworkInterfacesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNetworkInterfacesResponse.soap_put(soap, "tds:GetNetworkInterfacesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNetworkInterfacesResponse.soap_put(soap, "tds:GetNetworkInterfacesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetNetworkInterfaces(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetNetworkInterfaces soap_tmp___tds__SetNetworkInterfaces; - _tds__SetNetworkInterfacesResponse tds__SetNetworkInterfacesResponse; - tds__SetNetworkInterfacesResponse.soap_default(soap); - soap_default___tds__SetNetworkInterfaces(soap, &soap_tmp___tds__SetNetworkInterfaces); - if (!soap_get___tds__SetNetworkInterfaces(soap, &soap_tmp___tds__SetNetworkInterfaces, "-tds:SetNetworkInterfaces", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetNetworkInterfaces(soap_tmp___tds__SetNetworkInterfaces.tds__SetNetworkInterfaces, tds__SetNetworkInterfacesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetNetworkInterfacesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNetworkInterfacesResponse.soap_put(soap, "tds:SetNetworkInterfacesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNetworkInterfacesResponse.soap_put(soap, "tds:SetNetworkInterfacesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetNetworkProtocols(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetNetworkProtocols soap_tmp___tds__GetNetworkProtocols; - _tds__GetNetworkProtocolsResponse tds__GetNetworkProtocolsResponse; - tds__GetNetworkProtocolsResponse.soap_default(soap); - soap_default___tds__GetNetworkProtocols(soap, &soap_tmp___tds__GetNetworkProtocols); - if (!soap_get___tds__GetNetworkProtocols(soap, &soap_tmp___tds__GetNetworkProtocols, "-tds:GetNetworkProtocols", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetNetworkProtocols(soap_tmp___tds__GetNetworkProtocols.tds__GetNetworkProtocols, tds__GetNetworkProtocolsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetNetworkProtocolsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNetworkProtocolsResponse.soap_put(soap, "tds:GetNetworkProtocolsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNetworkProtocolsResponse.soap_put(soap, "tds:GetNetworkProtocolsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetNetworkProtocols(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetNetworkProtocols soap_tmp___tds__SetNetworkProtocols; - _tds__SetNetworkProtocolsResponse tds__SetNetworkProtocolsResponse; - tds__SetNetworkProtocolsResponse.soap_default(soap); - soap_default___tds__SetNetworkProtocols(soap, &soap_tmp___tds__SetNetworkProtocols); - if (!soap_get___tds__SetNetworkProtocols(soap, &soap_tmp___tds__SetNetworkProtocols, "-tds:SetNetworkProtocols", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetNetworkProtocols(soap_tmp___tds__SetNetworkProtocols.tds__SetNetworkProtocols, tds__SetNetworkProtocolsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetNetworkProtocolsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNetworkProtocolsResponse.soap_put(soap, "tds:SetNetworkProtocolsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNetworkProtocolsResponse.soap_put(soap, "tds:SetNetworkProtocolsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetNetworkDefaultGateway(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetNetworkDefaultGateway soap_tmp___tds__GetNetworkDefaultGateway; - _tds__GetNetworkDefaultGatewayResponse tds__GetNetworkDefaultGatewayResponse; - tds__GetNetworkDefaultGatewayResponse.soap_default(soap); - soap_default___tds__GetNetworkDefaultGateway(soap, &soap_tmp___tds__GetNetworkDefaultGateway); - if (!soap_get___tds__GetNetworkDefaultGateway(soap, &soap_tmp___tds__GetNetworkDefaultGateway, "-tds:GetNetworkDefaultGateway", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetNetworkDefaultGateway(soap_tmp___tds__GetNetworkDefaultGateway.tds__GetNetworkDefaultGateway, tds__GetNetworkDefaultGatewayResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetNetworkDefaultGatewayResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNetworkDefaultGatewayResponse.soap_put(soap, "tds:GetNetworkDefaultGatewayResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetNetworkDefaultGatewayResponse.soap_put(soap, "tds:GetNetworkDefaultGatewayResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetNetworkDefaultGateway(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetNetworkDefaultGateway soap_tmp___tds__SetNetworkDefaultGateway; - _tds__SetNetworkDefaultGatewayResponse tds__SetNetworkDefaultGatewayResponse; - tds__SetNetworkDefaultGatewayResponse.soap_default(soap); - soap_default___tds__SetNetworkDefaultGateway(soap, &soap_tmp___tds__SetNetworkDefaultGateway); - if (!soap_get___tds__SetNetworkDefaultGateway(soap, &soap_tmp___tds__SetNetworkDefaultGateway, "-tds:SetNetworkDefaultGateway", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetNetworkDefaultGateway(soap_tmp___tds__SetNetworkDefaultGateway.tds__SetNetworkDefaultGateway, tds__SetNetworkDefaultGatewayResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetNetworkDefaultGatewayResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNetworkDefaultGatewayResponse.soap_put(soap, "tds:SetNetworkDefaultGatewayResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetNetworkDefaultGatewayResponse.soap_put(soap, "tds:SetNetworkDefaultGatewayResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetZeroConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetZeroConfiguration soap_tmp___tds__GetZeroConfiguration; - _tds__GetZeroConfigurationResponse tds__GetZeroConfigurationResponse; - tds__GetZeroConfigurationResponse.soap_default(soap); - soap_default___tds__GetZeroConfiguration(soap, &soap_tmp___tds__GetZeroConfiguration); - if (!soap_get___tds__GetZeroConfiguration(soap, &soap_tmp___tds__GetZeroConfiguration, "-tds:GetZeroConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetZeroConfiguration(soap_tmp___tds__GetZeroConfiguration.tds__GetZeroConfiguration, tds__GetZeroConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetZeroConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetZeroConfigurationResponse.soap_put(soap, "tds:GetZeroConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetZeroConfigurationResponse.soap_put(soap, "tds:GetZeroConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetZeroConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetZeroConfiguration soap_tmp___tds__SetZeroConfiguration; - _tds__SetZeroConfigurationResponse tds__SetZeroConfigurationResponse; - tds__SetZeroConfigurationResponse.soap_default(soap); - soap_default___tds__SetZeroConfiguration(soap, &soap_tmp___tds__SetZeroConfiguration); - if (!soap_get___tds__SetZeroConfiguration(soap, &soap_tmp___tds__SetZeroConfiguration, "-tds:SetZeroConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetZeroConfiguration(soap_tmp___tds__SetZeroConfiguration.tds__SetZeroConfiguration, tds__SetZeroConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetZeroConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetZeroConfigurationResponse.soap_put(soap, "tds:SetZeroConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetZeroConfigurationResponse.soap_put(soap, "tds:SetZeroConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetIPAddressFilter(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetIPAddressFilter soap_tmp___tds__GetIPAddressFilter; - _tds__GetIPAddressFilterResponse tds__GetIPAddressFilterResponse; - tds__GetIPAddressFilterResponse.soap_default(soap); - soap_default___tds__GetIPAddressFilter(soap, &soap_tmp___tds__GetIPAddressFilter); - if (!soap_get___tds__GetIPAddressFilter(soap, &soap_tmp___tds__GetIPAddressFilter, "-tds:GetIPAddressFilter", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetIPAddressFilter(soap_tmp___tds__GetIPAddressFilter.tds__GetIPAddressFilter, tds__GetIPAddressFilterResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetIPAddressFilterResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetIPAddressFilterResponse.soap_put(soap, "tds:GetIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetIPAddressFilterResponse.soap_put(soap, "tds:GetIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetIPAddressFilter(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetIPAddressFilter soap_tmp___tds__SetIPAddressFilter; - _tds__SetIPAddressFilterResponse tds__SetIPAddressFilterResponse; - tds__SetIPAddressFilterResponse.soap_default(soap); - soap_default___tds__SetIPAddressFilter(soap, &soap_tmp___tds__SetIPAddressFilter); - if (!soap_get___tds__SetIPAddressFilter(soap, &soap_tmp___tds__SetIPAddressFilter, "-tds:SetIPAddressFilter", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetIPAddressFilter(soap_tmp___tds__SetIPAddressFilter.tds__SetIPAddressFilter, tds__SetIPAddressFilterResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetIPAddressFilterResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetIPAddressFilterResponse.soap_put(soap, "tds:SetIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetIPAddressFilterResponse.soap_put(soap, "tds:SetIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__AddIPAddressFilter(struct soap *soap, DeviceBindingService *service) -{ struct __tds__AddIPAddressFilter soap_tmp___tds__AddIPAddressFilter; - _tds__AddIPAddressFilterResponse tds__AddIPAddressFilterResponse; - tds__AddIPAddressFilterResponse.soap_default(soap); - soap_default___tds__AddIPAddressFilter(soap, &soap_tmp___tds__AddIPAddressFilter); - if (!soap_get___tds__AddIPAddressFilter(soap, &soap_tmp___tds__AddIPAddressFilter, "-tds:AddIPAddressFilter", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->AddIPAddressFilter(soap_tmp___tds__AddIPAddressFilter.tds__AddIPAddressFilter, tds__AddIPAddressFilterResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__AddIPAddressFilterResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__AddIPAddressFilterResponse.soap_put(soap, "tds:AddIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__AddIPAddressFilterResponse.soap_put(soap, "tds:AddIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__RemoveIPAddressFilter(struct soap *soap, DeviceBindingService *service) -{ struct __tds__RemoveIPAddressFilter soap_tmp___tds__RemoveIPAddressFilter; - _tds__RemoveIPAddressFilterResponse tds__RemoveIPAddressFilterResponse; - tds__RemoveIPAddressFilterResponse.soap_default(soap); - soap_default___tds__RemoveIPAddressFilter(soap, &soap_tmp___tds__RemoveIPAddressFilter); - if (!soap_get___tds__RemoveIPAddressFilter(soap, &soap_tmp___tds__RemoveIPAddressFilter, "-tds:RemoveIPAddressFilter", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->RemoveIPAddressFilter(soap_tmp___tds__RemoveIPAddressFilter.tds__RemoveIPAddressFilter, tds__RemoveIPAddressFilterResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__RemoveIPAddressFilterResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__RemoveIPAddressFilterResponse.soap_put(soap, "tds:RemoveIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__RemoveIPAddressFilterResponse.soap_put(soap, "tds:RemoveIPAddressFilterResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetAccessPolicy(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetAccessPolicy soap_tmp___tds__GetAccessPolicy; - _tds__GetAccessPolicyResponse tds__GetAccessPolicyResponse; - tds__GetAccessPolicyResponse.soap_default(soap); - soap_default___tds__GetAccessPolicy(soap, &soap_tmp___tds__GetAccessPolicy); - if (!soap_get___tds__GetAccessPolicy(soap, &soap_tmp___tds__GetAccessPolicy, "-tds:GetAccessPolicy", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetAccessPolicy(soap_tmp___tds__GetAccessPolicy.tds__GetAccessPolicy, tds__GetAccessPolicyResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetAccessPolicyResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetAccessPolicyResponse.soap_put(soap, "tds:GetAccessPolicyResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetAccessPolicyResponse.soap_put(soap, "tds:GetAccessPolicyResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetAccessPolicy(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetAccessPolicy soap_tmp___tds__SetAccessPolicy; - _tds__SetAccessPolicyResponse tds__SetAccessPolicyResponse; - tds__SetAccessPolicyResponse.soap_default(soap); - soap_default___tds__SetAccessPolicy(soap, &soap_tmp___tds__SetAccessPolicy); - if (!soap_get___tds__SetAccessPolicy(soap, &soap_tmp___tds__SetAccessPolicy, "-tds:SetAccessPolicy", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetAccessPolicy(soap_tmp___tds__SetAccessPolicy.tds__SetAccessPolicy, tds__SetAccessPolicyResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetAccessPolicyResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetAccessPolicyResponse.soap_put(soap, "tds:SetAccessPolicyResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetAccessPolicyResponse.soap_put(soap, "tds:SetAccessPolicyResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__CreateCertificate(struct soap *soap, DeviceBindingService *service) -{ struct __tds__CreateCertificate soap_tmp___tds__CreateCertificate; - _tds__CreateCertificateResponse tds__CreateCertificateResponse; - tds__CreateCertificateResponse.soap_default(soap); - soap_default___tds__CreateCertificate(soap, &soap_tmp___tds__CreateCertificate); - if (!soap_get___tds__CreateCertificate(soap, &soap_tmp___tds__CreateCertificate, "-tds:CreateCertificate", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreateCertificate(soap_tmp___tds__CreateCertificate.tds__CreateCertificate, tds__CreateCertificateResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__CreateCertificateResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateCertificateResponse.soap_put(soap, "tds:CreateCertificateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateCertificateResponse.soap_put(soap, "tds:CreateCertificateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetCertificates(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetCertificates soap_tmp___tds__GetCertificates; - _tds__GetCertificatesResponse tds__GetCertificatesResponse; - tds__GetCertificatesResponse.soap_default(soap); - soap_default___tds__GetCertificates(soap, &soap_tmp___tds__GetCertificates); - if (!soap_get___tds__GetCertificates(soap, &soap_tmp___tds__GetCertificates, "-tds:GetCertificates", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetCertificates(soap_tmp___tds__GetCertificates.tds__GetCertificates, tds__GetCertificatesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetCertificatesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCertificatesResponse.soap_put(soap, "tds:GetCertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCertificatesResponse.soap_put(soap, "tds:GetCertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetCertificatesStatus(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetCertificatesStatus soap_tmp___tds__GetCertificatesStatus; - _tds__GetCertificatesStatusResponse tds__GetCertificatesStatusResponse; - tds__GetCertificatesStatusResponse.soap_default(soap); - soap_default___tds__GetCertificatesStatus(soap, &soap_tmp___tds__GetCertificatesStatus); - if (!soap_get___tds__GetCertificatesStatus(soap, &soap_tmp___tds__GetCertificatesStatus, "-tds:GetCertificatesStatus", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetCertificatesStatus(soap_tmp___tds__GetCertificatesStatus.tds__GetCertificatesStatus, tds__GetCertificatesStatusResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetCertificatesStatusResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCertificatesStatusResponse.soap_put(soap, "tds:GetCertificatesStatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCertificatesStatusResponse.soap_put(soap, "tds:GetCertificatesStatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetCertificatesStatus(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetCertificatesStatus soap_tmp___tds__SetCertificatesStatus; - _tds__SetCertificatesStatusResponse tds__SetCertificatesStatusResponse; - tds__SetCertificatesStatusResponse.soap_default(soap); - soap_default___tds__SetCertificatesStatus(soap, &soap_tmp___tds__SetCertificatesStatus); - if (!soap_get___tds__SetCertificatesStatus(soap, &soap_tmp___tds__SetCertificatesStatus, "-tds:SetCertificatesStatus", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetCertificatesStatus(soap_tmp___tds__SetCertificatesStatus.tds__SetCertificatesStatus, tds__SetCertificatesStatusResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetCertificatesStatusResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetCertificatesStatusResponse.soap_put(soap, "tds:SetCertificatesStatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetCertificatesStatusResponse.soap_put(soap, "tds:SetCertificatesStatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__DeleteCertificates(struct soap *soap, DeviceBindingService *service) -{ struct __tds__DeleteCertificates soap_tmp___tds__DeleteCertificates; - _tds__DeleteCertificatesResponse tds__DeleteCertificatesResponse; - tds__DeleteCertificatesResponse.soap_default(soap); - soap_default___tds__DeleteCertificates(soap, &soap_tmp___tds__DeleteCertificates); - if (!soap_get___tds__DeleteCertificates(soap, &soap_tmp___tds__DeleteCertificates, "-tds:DeleteCertificates", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DeleteCertificates(soap_tmp___tds__DeleteCertificates.tds__DeleteCertificates, tds__DeleteCertificatesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__DeleteCertificatesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteCertificatesResponse.soap_put(soap, "tds:DeleteCertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteCertificatesResponse.soap_put(soap, "tds:DeleteCertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetPkcs10Request(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetPkcs10Request soap_tmp___tds__GetPkcs10Request; - _tds__GetPkcs10RequestResponse tds__GetPkcs10RequestResponse; - tds__GetPkcs10RequestResponse.soap_default(soap); - soap_default___tds__GetPkcs10Request(soap, &soap_tmp___tds__GetPkcs10Request); - if (!soap_get___tds__GetPkcs10Request(soap, &soap_tmp___tds__GetPkcs10Request, "-tds:GetPkcs10Request", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetPkcs10Request(soap_tmp___tds__GetPkcs10Request.tds__GetPkcs10Request, tds__GetPkcs10RequestResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetPkcs10RequestResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetPkcs10RequestResponse.soap_put(soap, "tds:GetPkcs10RequestResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetPkcs10RequestResponse.soap_put(soap, "tds:GetPkcs10RequestResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__LoadCertificates(struct soap *soap, DeviceBindingService *service) -{ struct __tds__LoadCertificates soap_tmp___tds__LoadCertificates; - _tds__LoadCertificatesResponse tds__LoadCertificatesResponse; - tds__LoadCertificatesResponse.soap_default(soap); - soap_default___tds__LoadCertificates(soap, &soap_tmp___tds__LoadCertificates); - if (!soap_get___tds__LoadCertificates(soap, &soap_tmp___tds__LoadCertificates, "-tds:LoadCertificates", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->LoadCertificates(soap_tmp___tds__LoadCertificates.tds__LoadCertificates, tds__LoadCertificatesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__LoadCertificatesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__LoadCertificatesResponse.soap_put(soap, "tds:LoadCertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__LoadCertificatesResponse.soap_put(soap, "tds:LoadCertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetClientCertificateMode(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetClientCertificateMode soap_tmp___tds__GetClientCertificateMode; - _tds__GetClientCertificateModeResponse tds__GetClientCertificateModeResponse; - tds__GetClientCertificateModeResponse.soap_default(soap); - soap_default___tds__GetClientCertificateMode(soap, &soap_tmp___tds__GetClientCertificateMode); - if (!soap_get___tds__GetClientCertificateMode(soap, &soap_tmp___tds__GetClientCertificateMode, "-tds:GetClientCertificateMode", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetClientCertificateMode(soap_tmp___tds__GetClientCertificateMode.tds__GetClientCertificateMode, tds__GetClientCertificateModeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetClientCertificateModeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetClientCertificateModeResponse.soap_put(soap, "tds:GetClientCertificateModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetClientCertificateModeResponse.soap_put(soap, "tds:GetClientCertificateModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetClientCertificateMode(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetClientCertificateMode soap_tmp___tds__SetClientCertificateMode; - _tds__SetClientCertificateModeResponse tds__SetClientCertificateModeResponse; - tds__SetClientCertificateModeResponse.soap_default(soap); - soap_default___tds__SetClientCertificateMode(soap, &soap_tmp___tds__SetClientCertificateMode); - if (!soap_get___tds__SetClientCertificateMode(soap, &soap_tmp___tds__SetClientCertificateMode, "-tds:SetClientCertificateMode", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetClientCertificateMode(soap_tmp___tds__SetClientCertificateMode.tds__SetClientCertificateMode, tds__SetClientCertificateModeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetClientCertificateModeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetClientCertificateModeResponse.soap_put(soap, "tds:SetClientCertificateModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetClientCertificateModeResponse.soap_put(soap, "tds:SetClientCertificateModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetRelayOutputs(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetRelayOutputs soap_tmp___tds__GetRelayOutputs; - _tds__GetRelayOutputsResponse tds__GetRelayOutputsResponse; - tds__GetRelayOutputsResponse.soap_default(soap); - soap_default___tds__GetRelayOutputs(soap, &soap_tmp___tds__GetRelayOutputs); - if (!soap_get___tds__GetRelayOutputs(soap, &soap_tmp___tds__GetRelayOutputs, "-tds:GetRelayOutputs", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetRelayOutputs(soap_tmp___tds__GetRelayOutputs.tds__GetRelayOutputs, tds__GetRelayOutputsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetRelayOutputsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetRelayOutputsResponse.soap_put(soap, "tds:GetRelayOutputsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetRelayOutputsResponse.soap_put(soap, "tds:GetRelayOutputsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetRelayOutputSettings(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetRelayOutputSettings soap_tmp___tds__SetRelayOutputSettings; - _tds__SetRelayOutputSettingsResponse tds__SetRelayOutputSettingsResponse; - tds__SetRelayOutputSettingsResponse.soap_default(soap); - soap_default___tds__SetRelayOutputSettings(soap, &soap_tmp___tds__SetRelayOutputSettings); - if (!soap_get___tds__SetRelayOutputSettings(soap, &soap_tmp___tds__SetRelayOutputSettings, "-tds:SetRelayOutputSettings", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetRelayOutputSettings(soap_tmp___tds__SetRelayOutputSettings.tds__SetRelayOutputSettings, tds__SetRelayOutputSettingsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetRelayOutputSettingsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRelayOutputSettingsResponse.soap_put(soap, "tds:SetRelayOutputSettingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRelayOutputSettingsResponse.soap_put(soap, "tds:SetRelayOutputSettingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetRelayOutputState(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetRelayOutputState soap_tmp___tds__SetRelayOutputState; - _tds__SetRelayOutputStateResponse tds__SetRelayOutputStateResponse; - tds__SetRelayOutputStateResponse.soap_default(soap); - soap_default___tds__SetRelayOutputState(soap, &soap_tmp___tds__SetRelayOutputState); - if (!soap_get___tds__SetRelayOutputState(soap, &soap_tmp___tds__SetRelayOutputState, "-tds:SetRelayOutputState", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetRelayOutputState(soap_tmp___tds__SetRelayOutputState.tds__SetRelayOutputState, tds__SetRelayOutputStateResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetRelayOutputStateResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRelayOutputStateResponse.soap_put(soap, "tds:SetRelayOutputStateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetRelayOutputStateResponse.soap_put(soap, "tds:SetRelayOutputStateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SendAuxiliaryCommand(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SendAuxiliaryCommand soap_tmp___tds__SendAuxiliaryCommand; - _tds__SendAuxiliaryCommandResponse tds__SendAuxiliaryCommandResponse; - tds__SendAuxiliaryCommandResponse.soap_default(soap); - soap_default___tds__SendAuxiliaryCommand(soap, &soap_tmp___tds__SendAuxiliaryCommand); - if (!soap_get___tds__SendAuxiliaryCommand(soap, &soap_tmp___tds__SendAuxiliaryCommand, "-tds:SendAuxiliaryCommand", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SendAuxiliaryCommand(soap_tmp___tds__SendAuxiliaryCommand.tds__SendAuxiliaryCommand, tds__SendAuxiliaryCommandResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SendAuxiliaryCommandResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SendAuxiliaryCommandResponse.soap_put(soap, "tds:SendAuxiliaryCommandResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SendAuxiliaryCommandResponse.soap_put(soap, "tds:SendAuxiliaryCommandResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetCACertificates(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetCACertificates soap_tmp___tds__GetCACertificates; - _tds__GetCACertificatesResponse tds__GetCACertificatesResponse; - tds__GetCACertificatesResponse.soap_default(soap); - soap_default___tds__GetCACertificates(soap, &soap_tmp___tds__GetCACertificates); - if (!soap_get___tds__GetCACertificates(soap, &soap_tmp___tds__GetCACertificates, "-tds:GetCACertificates", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetCACertificates(soap_tmp___tds__GetCACertificates.tds__GetCACertificates, tds__GetCACertificatesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetCACertificatesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCACertificatesResponse.soap_put(soap, "tds:GetCACertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCACertificatesResponse.soap_put(soap, "tds:GetCACertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__LoadCertificateWithPrivateKey(struct soap *soap, DeviceBindingService *service) -{ struct __tds__LoadCertificateWithPrivateKey soap_tmp___tds__LoadCertificateWithPrivateKey; - _tds__LoadCertificateWithPrivateKeyResponse tds__LoadCertificateWithPrivateKeyResponse; - tds__LoadCertificateWithPrivateKeyResponse.soap_default(soap); - soap_default___tds__LoadCertificateWithPrivateKey(soap, &soap_tmp___tds__LoadCertificateWithPrivateKey); - if (!soap_get___tds__LoadCertificateWithPrivateKey(soap, &soap_tmp___tds__LoadCertificateWithPrivateKey, "-tds:LoadCertificateWithPrivateKey", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->LoadCertificateWithPrivateKey(soap_tmp___tds__LoadCertificateWithPrivateKey.tds__LoadCertificateWithPrivateKey, tds__LoadCertificateWithPrivateKeyResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__LoadCertificateWithPrivateKeyResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__LoadCertificateWithPrivateKeyResponse.soap_put(soap, "tds:LoadCertificateWithPrivateKeyResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__LoadCertificateWithPrivateKeyResponse.soap_put(soap, "tds:LoadCertificateWithPrivateKeyResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetCertificateInformation(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetCertificateInformation soap_tmp___tds__GetCertificateInformation; - _tds__GetCertificateInformationResponse tds__GetCertificateInformationResponse; - tds__GetCertificateInformationResponse.soap_default(soap); - soap_default___tds__GetCertificateInformation(soap, &soap_tmp___tds__GetCertificateInformation); - if (!soap_get___tds__GetCertificateInformation(soap, &soap_tmp___tds__GetCertificateInformation, "-tds:GetCertificateInformation", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetCertificateInformation(soap_tmp___tds__GetCertificateInformation.tds__GetCertificateInformation, tds__GetCertificateInformationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetCertificateInformationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCertificateInformationResponse.soap_put(soap, "tds:GetCertificateInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetCertificateInformationResponse.soap_put(soap, "tds:GetCertificateInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__LoadCACertificates(struct soap *soap, DeviceBindingService *service) -{ struct __tds__LoadCACertificates soap_tmp___tds__LoadCACertificates; - _tds__LoadCACertificatesResponse tds__LoadCACertificatesResponse; - tds__LoadCACertificatesResponse.soap_default(soap); - soap_default___tds__LoadCACertificates(soap, &soap_tmp___tds__LoadCACertificates); - if (!soap_get___tds__LoadCACertificates(soap, &soap_tmp___tds__LoadCACertificates, "-tds:LoadCACertificates", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->LoadCACertificates(soap_tmp___tds__LoadCACertificates.tds__LoadCACertificates, tds__LoadCACertificatesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__LoadCACertificatesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__LoadCACertificatesResponse.soap_put(soap, "tds:LoadCACertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__LoadCACertificatesResponse.soap_put(soap, "tds:LoadCACertificatesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__CreateDot1XConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__CreateDot1XConfiguration soap_tmp___tds__CreateDot1XConfiguration; - _tds__CreateDot1XConfigurationResponse tds__CreateDot1XConfigurationResponse; - tds__CreateDot1XConfigurationResponse.soap_default(soap); - soap_default___tds__CreateDot1XConfiguration(soap, &soap_tmp___tds__CreateDot1XConfiguration); - if (!soap_get___tds__CreateDot1XConfiguration(soap, &soap_tmp___tds__CreateDot1XConfiguration, "-tds:CreateDot1XConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreateDot1XConfiguration(soap_tmp___tds__CreateDot1XConfiguration.tds__CreateDot1XConfiguration, tds__CreateDot1XConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__CreateDot1XConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateDot1XConfigurationResponse.soap_put(soap, "tds:CreateDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateDot1XConfigurationResponse.soap_put(soap, "tds:CreateDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetDot1XConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetDot1XConfiguration soap_tmp___tds__SetDot1XConfiguration; - _tds__SetDot1XConfigurationResponse tds__SetDot1XConfigurationResponse; - tds__SetDot1XConfigurationResponse.soap_default(soap); - soap_default___tds__SetDot1XConfiguration(soap, &soap_tmp___tds__SetDot1XConfiguration); - if (!soap_get___tds__SetDot1XConfiguration(soap, &soap_tmp___tds__SetDot1XConfiguration, "-tds:SetDot1XConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetDot1XConfiguration(soap_tmp___tds__SetDot1XConfiguration.tds__SetDot1XConfiguration, tds__SetDot1XConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetDot1XConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDot1XConfigurationResponse.soap_put(soap, "tds:SetDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetDot1XConfigurationResponse.soap_put(soap, "tds:SetDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDot1XConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDot1XConfiguration soap_tmp___tds__GetDot1XConfiguration; - _tds__GetDot1XConfigurationResponse tds__GetDot1XConfigurationResponse; - tds__GetDot1XConfigurationResponse.soap_default(soap); - soap_default___tds__GetDot1XConfiguration(soap, &soap_tmp___tds__GetDot1XConfiguration); - if (!soap_get___tds__GetDot1XConfiguration(soap, &soap_tmp___tds__GetDot1XConfiguration, "-tds:GetDot1XConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDot1XConfiguration(soap_tmp___tds__GetDot1XConfiguration.tds__GetDot1XConfiguration, tds__GetDot1XConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDot1XConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot1XConfigurationResponse.soap_put(soap, "tds:GetDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot1XConfigurationResponse.soap_put(soap, "tds:GetDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDot1XConfigurations(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDot1XConfigurations soap_tmp___tds__GetDot1XConfigurations; - _tds__GetDot1XConfigurationsResponse tds__GetDot1XConfigurationsResponse; - tds__GetDot1XConfigurationsResponse.soap_default(soap); - soap_default___tds__GetDot1XConfigurations(soap, &soap_tmp___tds__GetDot1XConfigurations); - if (!soap_get___tds__GetDot1XConfigurations(soap, &soap_tmp___tds__GetDot1XConfigurations, "-tds:GetDot1XConfigurations", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDot1XConfigurations(soap_tmp___tds__GetDot1XConfigurations.tds__GetDot1XConfigurations, tds__GetDot1XConfigurationsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDot1XConfigurationsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot1XConfigurationsResponse.soap_put(soap, "tds:GetDot1XConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot1XConfigurationsResponse.soap_put(soap, "tds:GetDot1XConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__DeleteDot1XConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__DeleteDot1XConfiguration soap_tmp___tds__DeleteDot1XConfiguration; - _tds__DeleteDot1XConfigurationResponse tds__DeleteDot1XConfigurationResponse; - tds__DeleteDot1XConfigurationResponse.soap_default(soap); - soap_default___tds__DeleteDot1XConfiguration(soap, &soap_tmp___tds__DeleteDot1XConfiguration); - if (!soap_get___tds__DeleteDot1XConfiguration(soap, &soap_tmp___tds__DeleteDot1XConfiguration, "-tds:DeleteDot1XConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DeleteDot1XConfiguration(soap_tmp___tds__DeleteDot1XConfiguration.tds__DeleteDot1XConfiguration, tds__DeleteDot1XConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__DeleteDot1XConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteDot1XConfigurationResponse.soap_put(soap, "tds:DeleteDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteDot1XConfigurationResponse.soap_put(soap, "tds:DeleteDot1XConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDot11Capabilities(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDot11Capabilities soap_tmp___tds__GetDot11Capabilities; - _tds__GetDot11CapabilitiesResponse tds__GetDot11CapabilitiesResponse; - tds__GetDot11CapabilitiesResponse.soap_default(soap); - soap_default___tds__GetDot11Capabilities(soap, &soap_tmp___tds__GetDot11Capabilities); - if (!soap_get___tds__GetDot11Capabilities(soap, &soap_tmp___tds__GetDot11Capabilities, "-tds:GetDot11Capabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDot11Capabilities(soap_tmp___tds__GetDot11Capabilities.tds__GetDot11Capabilities, tds__GetDot11CapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDot11CapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot11CapabilitiesResponse.soap_put(soap, "tds:GetDot11CapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot11CapabilitiesResponse.soap_put(soap, "tds:GetDot11CapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetDot11Status(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetDot11Status soap_tmp___tds__GetDot11Status; - _tds__GetDot11StatusResponse tds__GetDot11StatusResponse; - tds__GetDot11StatusResponse.soap_default(soap); - soap_default___tds__GetDot11Status(soap, &soap_tmp___tds__GetDot11Status); - if (!soap_get___tds__GetDot11Status(soap, &soap_tmp___tds__GetDot11Status, "-tds:GetDot11Status", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDot11Status(soap_tmp___tds__GetDot11Status.tds__GetDot11Status, tds__GetDot11StatusResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetDot11StatusResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot11StatusResponse.soap_put(soap, "tds:GetDot11StatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetDot11StatusResponse.soap_put(soap, "tds:GetDot11StatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__ScanAvailableDot11Networks(struct soap *soap, DeviceBindingService *service) -{ struct __tds__ScanAvailableDot11Networks soap_tmp___tds__ScanAvailableDot11Networks; - _tds__ScanAvailableDot11NetworksResponse tds__ScanAvailableDot11NetworksResponse; - tds__ScanAvailableDot11NetworksResponse.soap_default(soap); - soap_default___tds__ScanAvailableDot11Networks(soap, &soap_tmp___tds__ScanAvailableDot11Networks); - if (!soap_get___tds__ScanAvailableDot11Networks(soap, &soap_tmp___tds__ScanAvailableDot11Networks, "-tds:ScanAvailableDot11Networks", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->ScanAvailableDot11Networks(soap_tmp___tds__ScanAvailableDot11Networks.tds__ScanAvailableDot11Networks, tds__ScanAvailableDot11NetworksResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__ScanAvailableDot11NetworksResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__ScanAvailableDot11NetworksResponse.soap_put(soap, "tds:ScanAvailableDot11NetworksResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__ScanAvailableDot11NetworksResponse.soap_put(soap, "tds:ScanAvailableDot11NetworksResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetSystemUris(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetSystemUris soap_tmp___tds__GetSystemUris; - _tds__GetSystemUrisResponse tds__GetSystemUrisResponse; - tds__GetSystemUrisResponse.soap_default(soap); - soap_default___tds__GetSystemUris(soap, &soap_tmp___tds__GetSystemUris); - if (!soap_get___tds__GetSystemUris(soap, &soap_tmp___tds__GetSystemUris, "-tds:GetSystemUris", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetSystemUris(soap_tmp___tds__GetSystemUris.tds__GetSystemUris, tds__GetSystemUrisResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetSystemUrisResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemUrisResponse.soap_put(soap, "tds:GetSystemUrisResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetSystemUrisResponse.soap_put(soap, "tds:GetSystemUrisResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__StartFirmwareUpgrade(struct soap *soap, DeviceBindingService *service) -{ struct __tds__StartFirmwareUpgrade soap_tmp___tds__StartFirmwareUpgrade; - _tds__StartFirmwareUpgradeResponse tds__StartFirmwareUpgradeResponse; - tds__StartFirmwareUpgradeResponse.soap_default(soap); - soap_default___tds__StartFirmwareUpgrade(soap, &soap_tmp___tds__StartFirmwareUpgrade); - if (!soap_get___tds__StartFirmwareUpgrade(soap, &soap_tmp___tds__StartFirmwareUpgrade, "-tds:StartFirmwareUpgrade", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->StartFirmwareUpgrade(soap_tmp___tds__StartFirmwareUpgrade.tds__StartFirmwareUpgrade, tds__StartFirmwareUpgradeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__StartFirmwareUpgradeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__StartFirmwareUpgradeResponse.soap_put(soap, "tds:StartFirmwareUpgradeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__StartFirmwareUpgradeResponse.soap_put(soap, "tds:StartFirmwareUpgradeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__StartSystemRestore(struct soap *soap, DeviceBindingService *service) -{ struct __tds__StartSystemRestore soap_tmp___tds__StartSystemRestore; - _tds__StartSystemRestoreResponse tds__StartSystemRestoreResponse; - tds__StartSystemRestoreResponse.soap_default(soap); - soap_default___tds__StartSystemRestore(soap, &soap_tmp___tds__StartSystemRestore); - if (!soap_get___tds__StartSystemRestore(soap, &soap_tmp___tds__StartSystemRestore, "-tds:StartSystemRestore", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->StartSystemRestore(soap_tmp___tds__StartSystemRestore.tds__StartSystemRestore, tds__StartSystemRestoreResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__StartSystemRestoreResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__StartSystemRestoreResponse.soap_put(soap, "tds:StartSystemRestoreResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__StartSystemRestoreResponse.soap_put(soap, "tds:StartSystemRestoreResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetStorageConfigurations(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetStorageConfigurations soap_tmp___tds__GetStorageConfigurations; - _tds__GetStorageConfigurationsResponse tds__GetStorageConfigurationsResponse; - tds__GetStorageConfigurationsResponse.soap_default(soap); - soap_default___tds__GetStorageConfigurations(soap, &soap_tmp___tds__GetStorageConfigurations); - if (!soap_get___tds__GetStorageConfigurations(soap, &soap_tmp___tds__GetStorageConfigurations, "-tds:GetStorageConfigurations", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetStorageConfigurations(soap_tmp___tds__GetStorageConfigurations.tds__GetStorageConfigurations, tds__GetStorageConfigurationsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetStorageConfigurationsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetStorageConfigurationsResponse.soap_put(soap, "tds:GetStorageConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetStorageConfigurationsResponse.soap_put(soap, "tds:GetStorageConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__CreateStorageConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__CreateStorageConfiguration soap_tmp___tds__CreateStorageConfiguration; - _tds__CreateStorageConfigurationResponse tds__CreateStorageConfigurationResponse; - tds__CreateStorageConfigurationResponse.soap_default(soap); - soap_default___tds__CreateStorageConfiguration(soap, &soap_tmp___tds__CreateStorageConfiguration); - if (!soap_get___tds__CreateStorageConfiguration(soap, &soap_tmp___tds__CreateStorageConfiguration, "-tds:CreateStorageConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreateStorageConfiguration(soap_tmp___tds__CreateStorageConfiguration.tds__CreateStorageConfiguration, tds__CreateStorageConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__CreateStorageConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateStorageConfigurationResponse.soap_put(soap, "tds:CreateStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__CreateStorageConfigurationResponse.soap_put(soap, "tds:CreateStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetStorageConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetStorageConfiguration soap_tmp___tds__GetStorageConfiguration; - _tds__GetStorageConfigurationResponse tds__GetStorageConfigurationResponse; - tds__GetStorageConfigurationResponse.soap_default(soap); - soap_default___tds__GetStorageConfiguration(soap, &soap_tmp___tds__GetStorageConfiguration); - if (!soap_get___tds__GetStorageConfiguration(soap, &soap_tmp___tds__GetStorageConfiguration, "-tds:GetStorageConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetStorageConfiguration(soap_tmp___tds__GetStorageConfiguration.tds__GetStorageConfiguration, tds__GetStorageConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetStorageConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetStorageConfigurationResponse.soap_put(soap, "tds:GetStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetStorageConfigurationResponse.soap_put(soap, "tds:GetStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetStorageConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetStorageConfiguration soap_tmp___tds__SetStorageConfiguration; - _tds__SetStorageConfigurationResponse tds__SetStorageConfigurationResponse; - tds__SetStorageConfigurationResponse.soap_default(soap); - soap_default___tds__SetStorageConfiguration(soap, &soap_tmp___tds__SetStorageConfiguration); - if (!soap_get___tds__SetStorageConfiguration(soap, &soap_tmp___tds__SetStorageConfiguration, "-tds:SetStorageConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetStorageConfiguration(soap_tmp___tds__SetStorageConfiguration.tds__SetStorageConfiguration, tds__SetStorageConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetStorageConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetStorageConfigurationResponse.soap_put(soap, "tds:SetStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetStorageConfigurationResponse.soap_put(soap, "tds:SetStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__DeleteStorageConfiguration(struct soap *soap, DeviceBindingService *service) -{ struct __tds__DeleteStorageConfiguration soap_tmp___tds__DeleteStorageConfiguration; - _tds__DeleteStorageConfigurationResponse tds__DeleteStorageConfigurationResponse; - tds__DeleteStorageConfigurationResponse.soap_default(soap); - soap_default___tds__DeleteStorageConfiguration(soap, &soap_tmp___tds__DeleteStorageConfiguration); - if (!soap_get___tds__DeleteStorageConfiguration(soap, &soap_tmp___tds__DeleteStorageConfiguration, "-tds:DeleteStorageConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DeleteStorageConfiguration(soap_tmp___tds__DeleteStorageConfiguration.tds__DeleteStorageConfiguration, tds__DeleteStorageConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__DeleteStorageConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteStorageConfigurationResponse.soap_put(soap, "tds:DeleteStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteStorageConfigurationResponse.soap_put(soap, "tds:DeleteStorageConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__GetGeoLocation(struct soap *soap, DeviceBindingService *service) -{ struct __tds__GetGeoLocation soap_tmp___tds__GetGeoLocation; - _tds__GetGeoLocationResponse tds__GetGeoLocationResponse; - tds__GetGeoLocationResponse.soap_default(soap); - soap_default___tds__GetGeoLocation(soap, &soap_tmp___tds__GetGeoLocation); - if (!soap_get___tds__GetGeoLocation(soap, &soap_tmp___tds__GetGeoLocation, "-tds:GetGeoLocation", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetGeoLocation(soap_tmp___tds__GetGeoLocation.tds__GetGeoLocation, tds__GetGeoLocationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__GetGeoLocationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetGeoLocationResponse.soap_put(soap, "tds:GetGeoLocationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__GetGeoLocationResponse.soap_put(soap, "tds:GetGeoLocationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__SetGeoLocation(struct soap *soap, DeviceBindingService *service) -{ struct __tds__SetGeoLocation soap_tmp___tds__SetGeoLocation; - _tds__SetGeoLocationResponse tds__SetGeoLocationResponse; - tds__SetGeoLocationResponse.soap_default(soap); - soap_default___tds__SetGeoLocation(soap, &soap_tmp___tds__SetGeoLocation); - if (!soap_get___tds__SetGeoLocation(soap, &soap_tmp___tds__SetGeoLocation, "-tds:SetGeoLocation", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetGeoLocation(soap_tmp___tds__SetGeoLocation.tds__SetGeoLocation, tds__SetGeoLocationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__SetGeoLocationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetGeoLocationResponse.soap_put(soap, "tds:SetGeoLocationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__SetGeoLocationResponse.soap_put(soap, "tds:SetGeoLocationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tds__DeleteGeoLocation(struct soap *soap, DeviceBindingService *service) -{ struct __tds__DeleteGeoLocation soap_tmp___tds__DeleteGeoLocation; - _tds__DeleteGeoLocationResponse tds__DeleteGeoLocationResponse; - tds__DeleteGeoLocationResponse.soap_default(soap); - soap_default___tds__DeleteGeoLocation(soap, &soap_tmp___tds__DeleteGeoLocation); - if (!soap_get___tds__DeleteGeoLocation(soap, &soap_tmp___tds__DeleteGeoLocation, "-tds:DeleteGeoLocation", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DeleteGeoLocation(soap_tmp___tds__DeleteGeoLocation.tds__DeleteGeoLocation, tds__DeleteGeoLocationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tds__DeleteGeoLocationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteGeoLocationResponse.soap_put(soap, "tds:DeleteGeoLocationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tds__DeleteGeoLocationResponse.soap_put(soap, "tds:DeleteGeoLocationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapDeviceBindingService.h b/gen/soapDeviceBindingService.h deleted file mode 100644 index fe4e303..0000000 --- a/gen/soapDeviceBindingService.h +++ /dev/null @@ -1,370 +0,0 @@ -/* soapDeviceBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapDeviceBindingService_H -#define soapDeviceBindingService_H -#include "soapH.h" - - class SOAP_CMAC DeviceBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - DeviceBindingService(); - /// Copy constructor - DeviceBindingService(const DeviceBindingService&); - /// Construct service given a shared managing context - DeviceBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - DeviceBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - DeviceBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~DeviceBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void DeviceBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual DeviceBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - DeviceBindingService& operator=(const DeviceBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServices' implementation, should return SOAP_OK or error code - virtual int GetServices(_tds__GetServices *tds__GetServices, _tds__GetServicesResponse &tds__GetServicesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_tds__GetServiceCapabilities *tds__GetServiceCapabilities, _tds__GetServiceCapabilitiesResponse &tds__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDeviceInformation' implementation, should return SOAP_OK or error code - virtual int GetDeviceInformation(_tds__GetDeviceInformation *tds__GetDeviceInformation, _tds__GetDeviceInformationResponse &tds__GetDeviceInformationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetSystemDateAndTime' implementation, should return SOAP_OK or error code - virtual int SetSystemDateAndTime(_tds__SetSystemDateAndTime *tds__SetSystemDateAndTime, _tds__SetSystemDateAndTimeResponse &tds__SetSystemDateAndTimeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetSystemDateAndTime' implementation, should return SOAP_OK or error code - virtual int GetSystemDateAndTime(_tds__GetSystemDateAndTime *tds__GetSystemDateAndTime, _tds__GetSystemDateAndTimeResponse &tds__GetSystemDateAndTimeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetSystemFactoryDefault' implementation, should return SOAP_OK or error code - virtual int SetSystemFactoryDefault(_tds__SetSystemFactoryDefault *tds__SetSystemFactoryDefault, _tds__SetSystemFactoryDefaultResponse &tds__SetSystemFactoryDefaultResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'UpgradeSystemFirmware' implementation, should return SOAP_OK or error code - virtual int UpgradeSystemFirmware(_tds__UpgradeSystemFirmware *tds__UpgradeSystemFirmware, _tds__UpgradeSystemFirmwareResponse &tds__UpgradeSystemFirmwareResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SystemReboot' implementation, should return SOAP_OK or error code - virtual int SystemReboot(_tds__SystemReboot *tds__SystemReboot, _tds__SystemRebootResponse &tds__SystemRebootResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'RestoreSystem' implementation, should return SOAP_OK or error code - virtual int RestoreSystem(_tds__RestoreSystem *tds__RestoreSystem, _tds__RestoreSystemResponse &tds__RestoreSystemResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetSystemBackup' implementation, should return SOAP_OK or error code - virtual int GetSystemBackup(_tds__GetSystemBackup *tds__GetSystemBackup, _tds__GetSystemBackupResponse &tds__GetSystemBackupResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetSystemLog' implementation, should return SOAP_OK or error code - virtual int GetSystemLog(_tds__GetSystemLog *tds__GetSystemLog, _tds__GetSystemLogResponse &tds__GetSystemLogResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetSystemSupportInformation' implementation, should return SOAP_OK or error code - virtual int GetSystemSupportInformation(_tds__GetSystemSupportInformation *tds__GetSystemSupportInformation, _tds__GetSystemSupportInformationResponse &tds__GetSystemSupportInformationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetScopes' implementation, should return SOAP_OK or error code - virtual int GetScopes(_tds__GetScopes *tds__GetScopes, _tds__GetScopesResponse &tds__GetScopesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetScopes' implementation, should return SOAP_OK or error code - virtual int SetScopes(_tds__SetScopes *tds__SetScopes, _tds__SetScopesResponse &tds__SetScopesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'AddScopes' implementation, should return SOAP_OK or error code - virtual int AddScopes(_tds__AddScopes *tds__AddScopes, _tds__AddScopesResponse &tds__AddScopesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'RemoveScopes' implementation, should return SOAP_OK or error code - virtual int RemoveScopes(_tds__RemoveScopes *tds__RemoveScopes, _tds__RemoveScopesResponse &tds__RemoveScopesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDiscoveryMode' implementation, should return SOAP_OK or error code - virtual int GetDiscoveryMode(_tds__GetDiscoveryMode *tds__GetDiscoveryMode, _tds__GetDiscoveryModeResponse &tds__GetDiscoveryModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetDiscoveryMode' implementation, should return SOAP_OK or error code - virtual int SetDiscoveryMode(_tds__SetDiscoveryMode *tds__SetDiscoveryMode, _tds__SetDiscoveryModeResponse &tds__SetDiscoveryModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRemoteDiscoveryMode' implementation, should return SOAP_OK or error code - virtual int GetRemoteDiscoveryMode(_tds__GetRemoteDiscoveryMode *tds__GetRemoteDiscoveryMode, _tds__GetRemoteDiscoveryModeResponse &tds__GetRemoteDiscoveryModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetRemoteDiscoveryMode' implementation, should return SOAP_OK or error code - virtual int SetRemoteDiscoveryMode(_tds__SetRemoteDiscoveryMode *tds__SetRemoteDiscoveryMode, _tds__SetRemoteDiscoveryModeResponse &tds__SetRemoteDiscoveryModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDPAddresses' implementation, should return SOAP_OK or error code - virtual int GetDPAddresses(_tds__GetDPAddresses *tds__GetDPAddresses, _tds__GetDPAddressesResponse &tds__GetDPAddressesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetEndpointReference' implementation, should return SOAP_OK or error code - virtual int GetEndpointReference(_tds__GetEndpointReference *tds__GetEndpointReference, _tds__GetEndpointReferenceResponse &tds__GetEndpointReferenceResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRemoteUser' implementation, should return SOAP_OK or error code - virtual int GetRemoteUser(_tds__GetRemoteUser *tds__GetRemoteUser, _tds__GetRemoteUserResponse &tds__GetRemoteUserResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetRemoteUser' implementation, should return SOAP_OK or error code - virtual int SetRemoteUser(_tds__SetRemoteUser *tds__SetRemoteUser, _tds__SetRemoteUserResponse &tds__SetRemoteUserResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetUsers' implementation, should return SOAP_OK or error code - virtual int GetUsers(_tds__GetUsers *tds__GetUsers, _tds__GetUsersResponse &tds__GetUsersResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateUsers' implementation, should return SOAP_OK or error code - virtual int CreateUsers(_tds__CreateUsers *tds__CreateUsers, _tds__CreateUsersResponse &tds__CreateUsersResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteUsers' implementation, should return SOAP_OK or error code - virtual int DeleteUsers(_tds__DeleteUsers *tds__DeleteUsers, _tds__DeleteUsersResponse &tds__DeleteUsersResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetUser' implementation, should return SOAP_OK or error code - virtual int SetUser(_tds__SetUser *tds__SetUser, _tds__SetUserResponse &tds__SetUserResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetWsdlUrl' implementation, should return SOAP_OK or error code - virtual int GetWsdlUrl(_tds__GetWsdlUrl *tds__GetWsdlUrl, _tds__GetWsdlUrlResponse &tds__GetWsdlUrlResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCapabilities' implementation, should return SOAP_OK or error code - virtual int GetCapabilities(_tds__GetCapabilities *tds__GetCapabilities, _tds__GetCapabilitiesResponse &tds__GetCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetDPAddresses' implementation, should return SOAP_OK or error code - virtual int SetDPAddresses(_tds__SetDPAddresses *tds__SetDPAddresses, _tds__SetDPAddressesResponse &tds__SetDPAddressesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetHostname' implementation, should return SOAP_OK or error code - virtual int GetHostname(_tds__GetHostname *tds__GetHostname, _tds__GetHostnameResponse &tds__GetHostnameResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetHostname' implementation, should return SOAP_OK or error code - virtual int SetHostname(_tds__SetHostname *tds__SetHostname, _tds__SetHostnameResponse &tds__SetHostnameResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetHostnameFromDHCP' implementation, should return SOAP_OK or error code - virtual int SetHostnameFromDHCP(_tds__SetHostnameFromDHCP *tds__SetHostnameFromDHCP, _tds__SetHostnameFromDHCPResponse &tds__SetHostnameFromDHCPResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDNS' implementation, should return SOAP_OK or error code - virtual int GetDNS(_tds__GetDNS *tds__GetDNS, _tds__GetDNSResponse &tds__GetDNSResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetDNS' implementation, should return SOAP_OK or error code - virtual int SetDNS(_tds__SetDNS *tds__SetDNS, _tds__SetDNSResponse &tds__SetDNSResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetNTP' implementation, should return SOAP_OK or error code - virtual int GetNTP(_tds__GetNTP *tds__GetNTP, _tds__GetNTPResponse &tds__GetNTPResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetNTP' implementation, should return SOAP_OK or error code - virtual int SetNTP(_tds__SetNTP *tds__SetNTP, _tds__SetNTPResponse &tds__SetNTPResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDynamicDNS' implementation, should return SOAP_OK or error code - virtual int GetDynamicDNS(_tds__GetDynamicDNS *tds__GetDynamicDNS, _tds__GetDynamicDNSResponse &tds__GetDynamicDNSResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetDynamicDNS' implementation, should return SOAP_OK or error code - virtual int SetDynamicDNS(_tds__SetDynamicDNS *tds__SetDynamicDNS, _tds__SetDynamicDNSResponse &tds__SetDynamicDNSResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetNetworkInterfaces' implementation, should return SOAP_OK or error code - virtual int GetNetworkInterfaces(_tds__GetNetworkInterfaces *tds__GetNetworkInterfaces, _tds__GetNetworkInterfacesResponse &tds__GetNetworkInterfacesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetNetworkInterfaces' implementation, should return SOAP_OK or error code - virtual int SetNetworkInterfaces(_tds__SetNetworkInterfaces *tds__SetNetworkInterfaces, _tds__SetNetworkInterfacesResponse &tds__SetNetworkInterfacesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetNetworkProtocols' implementation, should return SOAP_OK or error code - virtual int GetNetworkProtocols(_tds__GetNetworkProtocols *tds__GetNetworkProtocols, _tds__GetNetworkProtocolsResponse &tds__GetNetworkProtocolsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetNetworkProtocols' implementation, should return SOAP_OK or error code - virtual int SetNetworkProtocols(_tds__SetNetworkProtocols *tds__SetNetworkProtocols, _tds__SetNetworkProtocolsResponse &tds__SetNetworkProtocolsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetNetworkDefaultGateway' implementation, should return SOAP_OK or error code - virtual int GetNetworkDefaultGateway(_tds__GetNetworkDefaultGateway *tds__GetNetworkDefaultGateway, _tds__GetNetworkDefaultGatewayResponse &tds__GetNetworkDefaultGatewayResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetNetworkDefaultGateway' implementation, should return SOAP_OK or error code - virtual int SetNetworkDefaultGateway(_tds__SetNetworkDefaultGateway *tds__SetNetworkDefaultGateway, _tds__SetNetworkDefaultGatewayResponse &tds__SetNetworkDefaultGatewayResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetZeroConfiguration' implementation, should return SOAP_OK or error code - virtual int GetZeroConfiguration(_tds__GetZeroConfiguration *tds__GetZeroConfiguration, _tds__GetZeroConfigurationResponse &tds__GetZeroConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetZeroConfiguration' implementation, should return SOAP_OK or error code - virtual int SetZeroConfiguration(_tds__SetZeroConfiguration *tds__SetZeroConfiguration, _tds__SetZeroConfigurationResponse &tds__SetZeroConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetIPAddressFilter' implementation, should return SOAP_OK or error code - virtual int GetIPAddressFilter(_tds__GetIPAddressFilter *tds__GetIPAddressFilter, _tds__GetIPAddressFilterResponse &tds__GetIPAddressFilterResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetIPAddressFilter' implementation, should return SOAP_OK or error code - virtual int SetIPAddressFilter(_tds__SetIPAddressFilter *tds__SetIPAddressFilter, _tds__SetIPAddressFilterResponse &tds__SetIPAddressFilterResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'AddIPAddressFilter' implementation, should return SOAP_OK or error code - virtual int AddIPAddressFilter(_tds__AddIPAddressFilter *tds__AddIPAddressFilter, _tds__AddIPAddressFilterResponse &tds__AddIPAddressFilterResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'RemoveIPAddressFilter' implementation, should return SOAP_OK or error code - virtual int RemoveIPAddressFilter(_tds__RemoveIPAddressFilter *tds__RemoveIPAddressFilter, _tds__RemoveIPAddressFilterResponse &tds__RemoveIPAddressFilterResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetAccessPolicy' implementation, should return SOAP_OK or error code - virtual int GetAccessPolicy(_tds__GetAccessPolicy *tds__GetAccessPolicy, _tds__GetAccessPolicyResponse &tds__GetAccessPolicyResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetAccessPolicy' implementation, should return SOAP_OK or error code - virtual int SetAccessPolicy(_tds__SetAccessPolicy *tds__SetAccessPolicy, _tds__SetAccessPolicyResponse &tds__SetAccessPolicyResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateCertificate' implementation, should return SOAP_OK or error code - virtual int CreateCertificate(_tds__CreateCertificate *tds__CreateCertificate, _tds__CreateCertificateResponse &tds__CreateCertificateResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCertificates' implementation, should return SOAP_OK or error code - virtual int GetCertificates(_tds__GetCertificates *tds__GetCertificates, _tds__GetCertificatesResponse &tds__GetCertificatesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCertificatesStatus' implementation, should return SOAP_OK or error code - virtual int GetCertificatesStatus(_tds__GetCertificatesStatus *tds__GetCertificatesStatus, _tds__GetCertificatesStatusResponse &tds__GetCertificatesStatusResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetCertificatesStatus' implementation, should return SOAP_OK or error code - virtual int SetCertificatesStatus(_tds__SetCertificatesStatus *tds__SetCertificatesStatus, _tds__SetCertificatesStatusResponse &tds__SetCertificatesStatusResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteCertificates' implementation, should return SOAP_OK or error code - virtual int DeleteCertificates(_tds__DeleteCertificates *tds__DeleteCertificates, _tds__DeleteCertificatesResponse &tds__DeleteCertificatesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPkcs10Request' implementation, should return SOAP_OK or error code - virtual int GetPkcs10Request(_tds__GetPkcs10Request *tds__GetPkcs10Request, _tds__GetPkcs10RequestResponse &tds__GetPkcs10RequestResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'LoadCertificates' implementation, should return SOAP_OK or error code - virtual int LoadCertificates(_tds__LoadCertificates *tds__LoadCertificates, _tds__LoadCertificatesResponse &tds__LoadCertificatesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetClientCertificateMode' implementation, should return SOAP_OK or error code - virtual int GetClientCertificateMode(_tds__GetClientCertificateMode *tds__GetClientCertificateMode, _tds__GetClientCertificateModeResponse &tds__GetClientCertificateModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetClientCertificateMode' implementation, should return SOAP_OK or error code - virtual int SetClientCertificateMode(_tds__SetClientCertificateMode *tds__SetClientCertificateMode, _tds__SetClientCertificateModeResponse &tds__SetClientCertificateModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRelayOutputs' implementation, should return SOAP_OK or error code - virtual int GetRelayOutputs(_tds__GetRelayOutputs *tds__GetRelayOutputs, _tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetRelayOutputSettings' implementation, should return SOAP_OK or error code - virtual int SetRelayOutputSettings(_tds__SetRelayOutputSettings *tds__SetRelayOutputSettings, _tds__SetRelayOutputSettingsResponse &tds__SetRelayOutputSettingsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetRelayOutputState' implementation, should return SOAP_OK or error code - virtual int SetRelayOutputState(_tds__SetRelayOutputState *tds__SetRelayOutputState, _tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SendAuxiliaryCommand' implementation, should return SOAP_OK or error code - virtual int SendAuxiliaryCommand(_tds__SendAuxiliaryCommand *tds__SendAuxiliaryCommand, _tds__SendAuxiliaryCommandResponse &tds__SendAuxiliaryCommandResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCACertificates' implementation, should return SOAP_OK or error code - virtual int GetCACertificates(_tds__GetCACertificates *tds__GetCACertificates, _tds__GetCACertificatesResponse &tds__GetCACertificatesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'LoadCertificateWithPrivateKey' implementation, should return SOAP_OK or error code - virtual int LoadCertificateWithPrivateKey(_tds__LoadCertificateWithPrivateKey *tds__LoadCertificateWithPrivateKey, _tds__LoadCertificateWithPrivateKeyResponse &tds__LoadCertificateWithPrivateKeyResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCertificateInformation' implementation, should return SOAP_OK or error code - virtual int GetCertificateInformation(_tds__GetCertificateInformation *tds__GetCertificateInformation, _tds__GetCertificateInformationResponse &tds__GetCertificateInformationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'LoadCACertificates' implementation, should return SOAP_OK or error code - virtual int LoadCACertificates(_tds__LoadCACertificates *tds__LoadCACertificates, _tds__LoadCACertificatesResponse &tds__LoadCACertificatesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateDot1XConfiguration' implementation, should return SOAP_OK or error code - virtual int CreateDot1XConfiguration(_tds__CreateDot1XConfiguration *tds__CreateDot1XConfiguration, _tds__CreateDot1XConfigurationResponse &tds__CreateDot1XConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetDot1XConfiguration' implementation, should return SOAP_OK or error code - virtual int SetDot1XConfiguration(_tds__SetDot1XConfiguration *tds__SetDot1XConfiguration, _tds__SetDot1XConfigurationResponse &tds__SetDot1XConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDot1XConfiguration' implementation, should return SOAP_OK or error code - virtual int GetDot1XConfiguration(_tds__GetDot1XConfiguration *tds__GetDot1XConfiguration, _tds__GetDot1XConfigurationResponse &tds__GetDot1XConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDot1XConfigurations' implementation, should return SOAP_OK or error code - virtual int GetDot1XConfigurations(_tds__GetDot1XConfigurations *tds__GetDot1XConfigurations, _tds__GetDot1XConfigurationsResponse &tds__GetDot1XConfigurationsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteDot1XConfiguration' implementation, should return SOAP_OK or error code - virtual int DeleteDot1XConfiguration(_tds__DeleteDot1XConfiguration *tds__DeleteDot1XConfiguration, _tds__DeleteDot1XConfigurationResponse &tds__DeleteDot1XConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDot11Capabilities' implementation, should return SOAP_OK or error code - virtual int GetDot11Capabilities(_tds__GetDot11Capabilities *tds__GetDot11Capabilities, _tds__GetDot11CapabilitiesResponse &tds__GetDot11CapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDot11Status' implementation, should return SOAP_OK or error code - virtual int GetDot11Status(_tds__GetDot11Status *tds__GetDot11Status, _tds__GetDot11StatusResponse &tds__GetDot11StatusResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'ScanAvailableDot11Networks' implementation, should return SOAP_OK or error code - virtual int ScanAvailableDot11Networks(_tds__ScanAvailableDot11Networks *tds__ScanAvailableDot11Networks, _tds__ScanAvailableDot11NetworksResponse &tds__ScanAvailableDot11NetworksResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetSystemUris' implementation, should return SOAP_OK or error code - virtual int GetSystemUris(_tds__GetSystemUris *tds__GetSystemUris, _tds__GetSystemUrisResponse &tds__GetSystemUrisResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'StartFirmwareUpgrade' implementation, should return SOAP_OK or error code - virtual int StartFirmwareUpgrade(_tds__StartFirmwareUpgrade *tds__StartFirmwareUpgrade, _tds__StartFirmwareUpgradeResponse &tds__StartFirmwareUpgradeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'StartSystemRestore' implementation, should return SOAP_OK or error code - virtual int StartSystemRestore(_tds__StartSystemRestore *tds__StartSystemRestore, _tds__StartSystemRestoreResponse &tds__StartSystemRestoreResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetStorageConfigurations' implementation, should return SOAP_OK or error code - virtual int GetStorageConfigurations(_tds__GetStorageConfigurations *tds__GetStorageConfigurations, _tds__GetStorageConfigurationsResponse &tds__GetStorageConfigurationsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateStorageConfiguration' implementation, should return SOAP_OK or error code - virtual int CreateStorageConfiguration(_tds__CreateStorageConfiguration *tds__CreateStorageConfiguration, _tds__CreateStorageConfigurationResponse &tds__CreateStorageConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetStorageConfiguration' implementation, should return SOAP_OK or error code - virtual int GetStorageConfiguration(_tds__GetStorageConfiguration *tds__GetStorageConfiguration, _tds__GetStorageConfigurationResponse &tds__GetStorageConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetStorageConfiguration' implementation, should return SOAP_OK or error code - virtual int SetStorageConfiguration(_tds__SetStorageConfiguration *tds__SetStorageConfiguration, _tds__SetStorageConfigurationResponse &tds__SetStorageConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteStorageConfiguration' implementation, should return SOAP_OK or error code - virtual int DeleteStorageConfiguration(_tds__DeleteStorageConfiguration *tds__DeleteStorageConfiguration, _tds__DeleteStorageConfigurationResponse &tds__DeleteStorageConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetGeoLocation' implementation, should return SOAP_OK or error code - virtual int GetGeoLocation(_tds__GetGeoLocation *tds__GetGeoLocation, _tds__GetGeoLocationResponse &tds__GetGeoLocationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetGeoLocation' implementation, should return SOAP_OK or error code - virtual int SetGeoLocation(_tds__SetGeoLocation *tds__SetGeoLocation, _tds__SetGeoLocationResponse &tds__SetGeoLocationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteGeoLocation' implementation, should return SOAP_OK or error code - virtual int DeleteGeoLocation(_tds__DeleteGeoLocation *tds__DeleteGeoLocation, _tds__DeleteGeoLocationResponse &tds__DeleteGeoLocationResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapDeviceIOBindingProxy.cpp b/gen/soapDeviceIOBindingProxy.cpp deleted file mode 100644 index 28e7f7e..0000000 --- a/gen/soapDeviceIOBindingProxy.cpp +++ /dev/null @@ -1,1851 +0,0 @@ -/* soapDeviceIOBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapDeviceIOBindingProxy.h" - -DeviceIOBindingProxy::DeviceIOBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - DeviceIOBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -DeviceIOBindingProxy::DeviceIOBindingProxy(const DeviceIOBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -DeviceIOBindingProxy::DeviceIOBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - DeviceIOBindingProxy_init(_soap->imode, _soap->omode); -} - -DeviceIOBindingProxy::DeviceIOBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - DeviceIOBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -DeviceIOBindingProxy::DeviceIOBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceIOBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -DeviceIOBindingProxy::DeviceIOBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceIOBindingProxy_init(iomode, iomode); -} - -DeviceIOBindingProxy::DeviceIOBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceIOBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -DeviceIOBindingProxy::DeviceIOBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - DeviceIOBindingProxy_init(imode, omode); -} - -DeviceIOBindingProxy::~DeviceIOBindingProxy() -{ if (this->soap_own) - { DeviceIOBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void DeviceIOBindingProxy::DeviceIOBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -DeviceIOBindingProxy *DeviceIOBindingProxy::copy() -{ DeviceIOBindingProxy *dup = SOAP_NEW_UNMANAGED(DeviceIOBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -DeviceIOBindingProxy& DeviceIOBindingProxy::operator=(const DeviceIOBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void DeviceIOBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void DeviceIOBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - DeviceIOBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void DeviceIOBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void DeviceIOBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *DeviceIOBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *DeviceIOBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *DeviceIOBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *DeviceIOBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *DeviceIOBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int DeviceIOBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int DeviceIOBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void DeviceIOBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void DeviceIOBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *DeviceIOBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int DeviceIOBindingProxy::send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tmd__GetServiceCapabilities *tmd__GetServiceCapabilities) -{ - struct __tmd__GetServiceCapabilities soap_tmp___tmd__GetServiceCapabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetServiceCapabilities"; - soap_tmp___tmd__GetServiceCapabilities.tmd__GetServiceCapabilities = tmd__GetServiceCapabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetServiceCapabilities(soap, &soap_tmp___tmd__GetServiceCapabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetServiceCapabilities(soap, &soap_tmp___tmd__GetServiceCapabilities, "-tmd:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetServiceCapabilities(soap, &soap_tmp___tmd__GetServiceCapabilities, "-tmd:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetServiceCapabilities(_tmd__GetServiceCapabilitiesResponse &tmd__GetServiceCapabilitiesResponse) -{ - tmd__GetServiceCapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetServiceCapabilitiesResponse.soap_get(soap, "tmd:GetServiceCapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetRelayOutputOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetRelayOutputOptions *tmd__GetRelayOutputOptions) -{ - struct __tmd__GetRelayOutputOptions soap_tmp___tmd__GetRelayOutputOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetRelayOutputOptions"; - soap_tmp___tmd__GetRelayOutputOptions.tmd__GetRelayOutputOptions = tmd__GetRelayOutputOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetRelayOutputOptions(soap, &soap_tmp___tmd__GetRelayOutputOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetRelayOutputOptions(soap, &soap_tmp___tmd__GetRelayOutputOptions, "-tmd:GetRelayOutputOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetRelayOutputOptions(soap, &soap_tmp___tmd__GetRelayOutputOptions, "-tmd:GetRelayOutputOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetRelayOutputOptions(_tmd__GetRelayOutputOptionsResponse &tmd__GetRelayOutputOptionsResponse) -{ - tmd__GetRelayOutputOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetRelayOutputOptionsResponse.soap_get(soap, "tmd:GetRelayOutputOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetAudioSources(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetAudioSources) -{ - struct __tmd__GetAudioSources soap_tmp___tmd__GetAudioSources; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetAudioSources"; - soap_tmp___tmd__GetAudioSources.tmd__GetAudioSources = tmd__GetAudioSources; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetAudioSources(soap, &soap_tmp___tmd__GetAudioSources); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioSources(soap, &soap_tmp___tmd__GetAudioSources, "-tmd:GetAudioSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioSources(soap, &soap_tmp___tmd__GetAudioSources, "-tmd:GetAudioSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetAudioSources(tmd__GetResponse &tmd__GetAudioSourcesResponse) -{ - tmd__GetAudioSourcesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetAudioSourcesResponse.soap_get(soap, "tmd:GetAudioSourcesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetAudioOutputs(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetAudioOutputs) -{ - struct __tmd__GetAudioOutputs soap_tmp___tmd__GetAudioOutputs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetAudioOutputs"; - soap_tmp___tmd__GetAudioOutputs.tmd__GetAudioOutputs = tmd__GetAudioOutputs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetAudioOutputs(soap, &soap_tmp___tmd__GetAudioOutputs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioOutputs(soap, &soap_tmp___tmd__GetAudioOutputs, "-tmd:GetAudioOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioOutputs(soap, &soap_tmp___tmd__GetAudioOutputs, "-tmd:GetAudioOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetAudioOutputs(tmd__GetResponse &tmd__GetAudioOutputsResponse) -{ - tmd__GetAudioOutputsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetAudioOutputsResponse.soap_get(soap, "tmd:GetAudioOutputsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetVideoSources(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetVideoSources) -{ - struct __tmd__GetVideoSources soap_tmp___tmd__GetVideoSources; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetVideoSources"; - soap_tmp___tmd__GetVideoSources.tmd__GetVideoSources = tmd__GetVideoSources; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetVideoSources(soap, &soap_tmp___tmd__GetVideoSources); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoSources(soap, &soap_tmp___tmd__GetVideoSources, "-tmd:GetVideoSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoSources(soap, &soap_tmp___tmd__GetVideoSources, "-tmd:GetVideoSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetVideoSources(tmd__GetResponse &tmd__GetVideoSourcesResponse) -{ - tmd__GetVideoSourcesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetVideoSourcesResponse.soap_get(soap, "tmd:GetVideoSourcesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetVideoOutputs(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputs *tmd__GetVideoOutputs) -{ - struct __tmd__GetVideoOutputs soap_tmp___tmd__GetVideoOutputs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetVideoOutputs"; - soap_tmp___tmd__GetVideoOutputs.tmd__GetVideoOutputs = tmd__GetVideoOutputs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetVideoOutputs(soap, &soap_tmp___tmd__GetVideoOutputs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoOutputs(soap, &soap_tmp___tmd__GetVideoOutputs, "-tmd:GetVideoOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoOutputs(soap, &soap_tmp___tmd__GetVideoOutputs, "-tmd:GetVideoOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetVideoOutputs(_tmd__GetVideoOutputsResponse &tmd__GetVideoOutputsResponse) -{ - tmd__GetVideoOutputsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetVideoOutputsResponse.soap_get(soap, "tmd:GetVideoOutputsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoSourceConfiguration *tmd__GetVideoSourceConfiguration) -{ - struct __tmd__GetVideoSourceConfiguration soap_tmp___tmd__GetVideoSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetVideoSourceConfiguration"; - soap_tmp___tmd__GetVideoSourceConfiguration.tmd__GetVideoSourceConfiguration = tmd__GetVideoSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetVideoSourceConfiguration(soap, &soap_tmp___tmd__GetVideoSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoSourceConfiguration(soap, &soap_tmp___tmd__GetVideoSourceConfiguration, "-tmd:GetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoSourceConfiguration(soap, &soap_tmp___tmd__GetVideoSourceConfiguration, "-tmd:GetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetVideoSourceConfiguration(_tmd__GetVideoSourceConfigurationResponse &tmd__GetVideoSourceConfigurationResponse) -{ - tmd__GetVideoSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetVideoSourceConfigurationResponse.soap_get(soap, "tmd:GetVideoSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetVideoOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputConfiguration *tmd__GetVideoOutputConfiguration) -{ - struct __tmd__GetVideoOutputConfiguration soap_tmp___tmd__GetVideoOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetVideoOutputConfiguration"; - soap_tmp___tmd__GetVideoOutputConfiguration.tmd__GetVideoOutputConfiguration = tmd__GetVideoOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetVideoOutputConfiguration(soap, &soap_tmp___tmd__GetVideoOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoOutputConfiguration(soap, &soap_tmp___tmd__GetVideoOutputConfiguration, "-tmd:GetVideoOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoOutputConfiguration(soap, &soap_tmp___tmd__GetVideoOutputConfiguration, "-tmd:GetVideoOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetVideoOutputConfiguration(_tmd__GetVideoOutputConfigurationResponse &tmd__GetVideoOutputConfigurationResponse) -{ - tmd__GetVideoOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetVideoOutputConfigurationResponse.soap_get(soap, "tmd:GetVideoOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioSourceConfiguration *tmd__GetAudioSourceConfiguration) -{ - struct __tmd__GetAudioSourceConfiguration soap_tmp___tmd__GetAudioSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetAudioSourceConfiguration"; - soap_tmp___tmd__GetAudioSourceConfiguration.tmd__GetAudioSourceConfiguration = tmd__GetAudioSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetAudioSourceConfiguration(soap, &soap_tmp___tmd__GetAudioSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioSourceConfiguration(soap, &soap_tmp___tmd__GetAudioSourceConfiguration, "-tmd:GetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioSourceConfiguration(soap, &soap_tmp___tmd__GetAudioSourceConfiguration, "-tmd:GetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetAudioSourceConfiguration(_tmd__GetAudioSourceConfigurationResponse &tmd__GetAudioSourceConfigurationResponse) -{ - tmd__GetAudioSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetAudioSourceConfigurationResponse.soap_get(soap, "tmd:GetAudioSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioOutputConfiguration *tmd__GetAudioOutputConfiguration) -{ - struct __tmd__GetAudioOutputConfiguration soap_tmp___tmd__GetAudioOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetAudioOutputConfiguration"; - soap_tmp___tmd__GetAudioOutputConfiguration.tmd__GetAudioOutputConfiguration = tmd__GetAudioOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetAudioOutputConfiguration(soap, &soap_tmp___tmd__GetAudioOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioOutputConfiguration(soap, &soap_tmp___tmd__GetAudioOutputConfiguration, "-tmd:GetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioOutputConfiguration(soap, &soap_tmp___tmd__GetAudioOutputConfiguration, "-tmd:GetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetAudioOutputConfiguration(_tmd__GetAudioOutputConfigurationResponse &tmd__GetAudioOutputConfigurationResponse) -{ - tmd__GetAudioOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetAudioOutputConfigurationResponse.soap_get(soap, "tmd:GetAudioOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetVideoSourceConfiguration *tmd__SetVideoSourceConfiguration) -{ - struct __tmd__SetVideoSourceConfiguration soap_tmp___tmd__SetVideoSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetVideoSourceConfiguration"; - soap_tmp___tmd__SetVideoSourceConfiguration.tmd__SetVideoSourceConfiguration = tmd__SetVideoSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetVideoSourceConfiguration(soap, &soap_tmp___tmd__SetVideoSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetVideoSourceConfiguration(soap, &soap_tmp___tmd__SetVideoSourceConfiguration, "-tmd:SetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetVideoSourceConfiguration(soap, &soap_tmp___tmd__SetVideoSourceConfiguration, "-tmd:SetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetVideoSourceConfiguration(_tmd__SetVideoSourceConfigurationResponse &tmd__SetVideoSourceConfigurationResponse) -{ - tmd__SetVideoSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SetVideoSourceConfigurationResponse.soap_get(soap, "tmd:SetVideoSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetVideoOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetVideoOutputConfiguration *tmd__SetVideoOutputConfiguration) -{ - struct __tmd__SetVideoOutputConfiguration soap_tmp___tmd__SetVideoOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetVideoOutputConfiguration"; - soap_tmp___tmd__SetVideoOutputConfiguration.tmd__SetVideoOutputConfiguration = tmd__SetVideoOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetVideoOutputConfiguration(soap, &soap_tmp___tmd__SetVideoOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetVideoOutputConfiguration(soap, &soap_tmp___tmd__SetVideoOutputConfiguration, "-tmd:SetVideoOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetVideoOutputConfiguration(soap, &soap_tmp___tmd__SetVideoOutputConfiguration, "-tmd:SetVideoOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetVideoOutputConfiguration(_tmd__SetVideoOutputConfigurationResponse &tmd__SetVideoOutputConfigurationResponse) -{ - tmd__SetVideoOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SetVideoOutputConfigurationResponse.soap_get(soap, "tmd:SetVideoOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetAudioSourceConfiguration *tmd__SetAudioSourceConfiguration) -{ - struct __tmd__SetAudioSourceConfiguration soap_tmp___tmd__SetAudioSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetAudioSourceConfiguration"; - soap_tmp___tmd__SetAudioSourceConfiguration.tmd__SetAudioSourceConfiguration = tmd__SetAudioSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetAudioSourceConfiguration(soap, &soap_tmp___tmd__SetAudioSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetAudioSourceConfiguration(soap, &soap_tmp___tmd__SetAudioSourceConfiguration, "-tmd:SetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetAudioSourceConfiguration(soap, &soap_tmp___tmd__SetAudioSourceConfiguration, "-tmd:SetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetAudioSourceConfiguration(_tmd__SetAudioSourceConfigurationResponse &tmd__SetAudioSourceConfigurationResponse) -{ - tmd__SetAudioSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SetAudioSourceConfigurationResponse.soap_get(soap, "tmd:SetAudioSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetAudioOutputConfiguration *tmd__SetAudioOutputConfiguration) -{ - struct __tmd__SetAudioOutputConfiguration soap_tmp___tmd__SetAudioOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetAudioOutputConfiguration"; - soap_tmp___tmd__SetAudioOutputConfiguration.tmd__SetAudioOutputConfiguration = tmd__SetAudioOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetAudioOutputConfiguration(soap, &soap_tmp___tmd__SetAudioOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetAudioOutputConfiguration(soap, &soap_tmp___tmd__SetAudioOutputConfiguration, "-tmd:SetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetAudioOutputConfiguration(soap, &soap_tmp___tmd__SetAudioOutputConfiguration, "-tmd:SetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetAudioOutputConfiguration(_tmd__SetAudioOutputConfigurationResponse &tmd__SetAudioOutputConfigurationResponse) -{ - tmd__SetAudioOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SetAudioOutputConfigurationResponse.soap_get(soap, "tmd:SetAudioOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetVideoSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoSourceConfigurationOptions *tmd__GetVideoSourceConfigurationOptions) -{ - struct __tmd__GetVideoSourceConfigurationOptions soap_tmp___tmd__GetVideoSourceConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetVideoSourceConfigurationOptions"; - soap_tmp___tmd__GetVideoSourceConfigurationOptions.tmd__GetVideoSourceConfigurationOptions = tmd__GetVideoSourceConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetVideoSourceConfigurationOptions(soap, &soap_tmp___tmd__GetVideoSourceConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoSourceConfigurationOptions(soap, &soap_tmp___tmd__GetVideoSourceConfigurationOptions, "-tmd:GetVideoSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoSourceConfigurationOptions(soap, &soap_tmp___tmd__GetVideoSourceConfigurationOptions, "-tmd:GetVideoSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetVideoSourceConfigurationOptions(_tmd__GetVideoSourceConfigurationOptionsResponse &tmd__GetVideoSourceConfigurationOptionsResponse) -{ - tmd__GetVideoSourceConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetVideoSourceConfigurationOptionsResponse.soap_get(soap, "tmd:GetVideoSourceConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetVideoOutputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputConfigurationOptions *tmd__GetVideoOutputConfigurationOptions) -{ - struct __tmd__GetVideoOutputConfigurationOptions soap_tmp___tmd__GetVideoOutputConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetVideoOutputConfigurationOptions"; - soap_tmp___tmd__GetVideoOutputConfigurationOptions.tmd__GetVideoOutputConfigurationOptions = tmd__GetVideoOutputConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetVideoOutputConfigurationOptions(soap, &soap_tmp___tmd__GetVideoOutputConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoOutputConfigurationOptions(soap, &soap_tmp___tmd__GetVideoOutputConfigurationOptions, "-tmd:GetVideoOutputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetVideoOutputConfigurationOptions(soap, &soap_tmp___tmd__GetVideoOutputConfigurationOptions, "-tmd:GetVideoOutputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetVideoOutputConfigurationOptions(_tmd__GetVideoOutputConfigurationOptionsResponse &tmd__GetVideoOutputConfigurationOptionsResponse) -{ - tmd__GetVideoOutputConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetVideoOutputConfigurationOptionsResponse.soap_get(soap, "tmd:GetVideoOutputConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetAudioSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioSourceConfigurationOptions *tmd__GetAudioSourceConfigurationOptions) -{ - struct __tmd__GetAudioSourceConfigurationOptions soap_tmp___tmd__GetAudioSourceConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetAudioSourceConfigurationOptions"; - soap_tmp___tmd__GetAudioSourceConfigurationOptions.tmd__GetAudioSourceConfigurationOptions = tmd__GetAudioSourceConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetAudioSourceConfigurationOptions(soap, &soap_tmp___tmd__GetAudioSourceConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioSourceConfigurationOptions(soap, &soap_tmp___tmd__GetAudioSourceConfigurationOptions, "-tmd:GetAudioSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioSourceConfigurationOptions(soap, &soap_tmp___tmd__GetAudioSourceConfigurationOptions, "-tmd:GetAudioSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetAudioSourceConfigurationOptions(_tmd__GetAudioSourceConfigurationOptionsResponse &tmd__GetAudioSourceConfigurationOptionsResponse) -{ - tmd__GetAudioSourceConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetAudioSourceConfigurationOptionsResponse.soap_get(soap, "tmd:GetAudioSourceConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetAudioOutputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioOutputConfigurationOptions *tmd__GetAudioOutputConfigurationOptions) -{ - struct __tmd__GetAudioOutputConfigurationOptions soap_tmp___tmd__GetAudioOutputConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetAudioOutputConfigurationOptions"; - soap_tmp___tmd__GetAudioOutputConfigurationOptions.tmd__GetAudioOutputConfigurationOptions = tmd__GetAudioOutputConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetAudioOutputConfigurationOptions(soap, &soap_tmp___tmd__GetAudioOutputConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioOutputConfigurationOptions(soap, &soap_tmp___tmd__GetAudioOutputConfigurationOptions, "-tmd:GetAudioOutputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetAudioOutputConfigurationOptions(soap, &soap_tmp___tmd__GetAudioOutputConfigurationOptions, "-tmd:GetAudioOutputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetAudioOutputConfigurationOptions(_tmd__GetAudioOutputConfigurationOptionsResponse &tmd__GetAudioOutputConfigurationOptionsResponse) -{ - tmd__GetAudioOutputConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetAudioOutputConfigurationOptionsResponse.soap_get(soap, "tmd:GetAudioOutputConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetRelayOutputs(const char *soap_endpoint_url, const char *soap_action, _tds__GetRelayOutputs *tds__GetRelayOutputs) -{ - struct __tmd__GetRelayOutputs soap_tmp___tmd__GetRelayOutputs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetRelayOutputs"; - soap_tmp___tmd__GetRelayOutputs.tds__GetRelayOutputs = tds__GetRelayOutputs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetRelayOutputs(soap, &soap_tmp___tmd__GetRelayOutputs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetRelayOutputs(soap, &soap_tmp___tmd__GetRelayOutputs, "-tmd:GetRelayOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetRelayOutputs(soap, &soap_tmp___tmd__GetRelayOutputs, "-tmd:GetRelayOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetRelayOutputs(_tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse) -{ - tds__GetRelayOutputsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__GetRelayOutputsResponse.soap_get(soap, "tds:GetRelayOutputsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetRelayOutputSettings(const char *soap_endpoint_url, const char *soap_action, _tmd__SetRelayOutputSettings *tmd__SetRelayOutputSettings) -{ - struct __tmd__SetRelayOutputSettings soap_tmp___tmd__SetRelayOutputSettings; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetRelayOutputSettings"; - soap_tmp___tmd__SetRelayOutputSettings.tmd__SetRelayOutputSettings = tmd__SetRelayOutputSettings; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetRelayOutputSettings(soap, &soap_tmp___tmd__SetRelayOutputSettings); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetRelayOutputSettings(soap, &soap_tmp___tmd__SetRelayOutputSettings, "-tmd:SetRelayOutputSettings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetRelayOutputSettings(soap, &soap_tmp___tmd__SetRelayOutputSettings, "-tmd:SetRelayOutputSettings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetRelayOutputSettings(_tmd__SetRelayOutputSettingsResponse &tmd__SetRelayOutputSettingsResponse) -{ - tmd__SetRelayOutputSettingsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SetRelayOutputSettingsResponse.soap_get(soap, "tmd:SetRelayOutputSettingsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetRelayOutputState(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputState *tds__SetRelayOutputState) -{ - struct __tmd__SetRelayOutputState soap_tmp___tmd__SetRelayOutputState; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetRelayOutputState"; - soap_tmp___tmd__SetRelayOutputState.tds__SetRelayOutputState = tds__SetRelayOutputState; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetRelayOutputState(soap, &soap_tmp___tmd__SetRelayOutputState); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetRelayOutputState(soap, &soap_tmp___tmd__SetRelayOutputState, "-tmd:SetRelayOutputState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetRelayOutputState(soap, &soap_tmp___tmd__SetRelayOutputState, "-tmd:SetRelayOutputState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetRelayOutputState(_tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse) -{ - tds__SetRelayOutputStateResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tds__SetRelayOutputStateResponse.soap_get(soap, "tds:SetRelayOutputStateResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetDigitalInputs(const char *soap_endpoint_url, const char *soap_action, _tmd__GetDigitalInputs *tmd__GetDigitalInputs) -{ - struct __tmd__GetDigitalInputs soap_tmp___tmd__GetDigitalInputs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetDigitalInputs"; - soap_tmp___tmd__GetDigitalInputs.tmd__GetDigitalInputs = tmd__GetDigitalInputs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetDigitalInputs(soap, &soap_tmp___tmd__GetDigitalInputs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetDigitalInputs(soap, &soap_tmp___tmd__GetDigitalInputs, "-tmd:GetDigitalInputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetDigitalInputs(soap, &soap_tmp___tmd__GetDigitalInputs, "-tmd:GetDigitalInputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetDigitalInputs(_tmd__GetDigitalInputsResponse &tmd__GetDigitalInputsResponse) -{ - tmd__GetDigitalInputsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetDigitalInputsResponse.soap_get(soap, "tmd:GetDigitalInputsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetDigitalInputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetDigitalInputConfigurationOptions *tmd__GetDigitalInputConfigurationOptions) -{ - struct __tmd__GetDigitalInputConfigurationOptions soap_tmp___tmd__GetDigitalInputConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetDigitalInputConfigurationOptions"; - soap_tmp___tmd__GetDigitalInputConfigurationOptions.tmd__GetDigitalInputConfigurationOptions = tmd__GetDigitalInputConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetDigitalInputConfigurationOptions(soap, &soap_tmp___tmd__GetDigitalInputConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetDigitalInputConfigurationOptions(soap, &soap_tmp___tmd__GetDigitalInputConfigurationOptions, "-tmd:GetDigitalInputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetDigitalInputConfigurationOptions(soap, &soap_tmp___tmd__GetDigitalInputConfigurationOptions, "-tmd:GetDigitalInputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetDigitalInputConfigurationOptions(_tmd__GetDigitalInputConfigurationOptionsResponse &tmd__GetDigitalInputConfigurationOptionsResponse) -{ - tmd__GetDigitalInputConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetDigitalInputConfigurationOptionsResponse.soap_get(soap, "tmd:GetDigitalInputConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetDigitalInputConfigurations(const char *soap_endpoint_url, const char *soap_action, _tmd__SetDigitalInputConfigurations *tmd__SetDigitalInputConfigurations) -{ - struct __tmd__SetDigitalInputConfigurations soap_tmp___tmd__SetDigitalInputConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetDigitalInputConfigurations"; - soap_tmp___tmd__SetDigitalInputConfigurations.tmd__SetDigitalInputConfigurations = tmd__SetDigitalInputConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetDigitalInputConfigurations(soap, &soap_tmp___tmd__SetDigitalInputConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetDigitalInputConfigurations(soap, &soap_tmp___tmd__SetDigitalInputConfigurations, "-tmd:SetDigitalInputConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetDigitalInputConfigurations(soap, &soap_tmp___tmd__SetDigitalInputConfigurations, "-tmd:SetDigitalInputConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetDigitalInputConfigurations(_tmd__SetDigitalInputConfigurationsResponse &tmd__SetDigitalInputConfigurationsResponse) -{ - tmd__SetDigitalInputConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SetDigitalInputConfigurationsResponse.soap_get(soap, "tmd:SetDigitalInputConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetSerialPorts(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPorts *tmd__GetSerialPorts) -{ - struct __tmd__GetSerialPorts soap_tmp___tmd__GetSerialPorts; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetSerialPorts"; - soap_tmp___tmd__GetSerialPorts.tmd__GetSerialPorts = tmd__GetSerialPorts; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetSerialPorts(soap, &soap_tmp___tmd__GetSerialPorts); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetSerialPorts(soap, &soap_tmp___tmd__GetSerialPorts, "-tmd:GetSerialPorts", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetSerialPorts(soap, &soap_tmp___tmd__GetSerialPorts, "-tmd:GetSerialPorts", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetSerialPorts(_tmd__GetSerialPortsResponse &tmd__GetSerialPortsResponse) -{ - tmd__GetSerialPortsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetSerialPortsResponse.soap_get(soap, "tmd:GetSerialPortsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetSerialPortConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPortConfiguration *tmd__GetSerialPortConfiguration) -{ - struct __tmd__GetSerialPortConfiguration soap_tmp___tmd__GetSerialPortConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetSerialPortConfigurations"; - soap_tmp___tmd__GetSerialPortConfiguration.tmd__GetSerialPortConfiguration = tmd__GetSerialPortConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetSerialPortConfiguration(soap, &soap_tmp___tmd__GetSerialPortConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetSerialPortConfiguration(soap, &soap_tmp___tmd__GetSerialPortConfiguration, "-tmd:GetSerialPortConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetSerialPortConfiguration(soap, &soap_tmp___tmd__GetSerialPortConfiguration, "-tmd:GetSerialPortConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetSerialPortConfiguration(_tmd__GetSerialPortConfigurationResponse &tmd__GetSerialPortConfigurationResponse) -{ - tmd__GetSerialPortConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetSerialPortConfigurationResponse.soap_get(soap, "tmd:GetSerialPortConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SetSerialPortConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetSerialPortConfiguration *tmd__SetSerialPortConfiguration) -{ - struct __tmd__SetSerialPortConfiguration soap_tmp___tmd__SetSerialPortConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SetSerialPortConfiguration"; - soap_tmp___tmd__SetSerialPortConfiguration.tmd__SetSerialPortConfiguration = tmd__SetSerialPortConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SetSerialPortConfiguration(soap, &soap_tmp___tmd__SetSerialPortConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetSerialPortConfiguration(soap, &soap_tmp___tmd__SetSerialPortConfiguration, "-tmd:SetSerialPortConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SetSerialPortConfiguration(soap, &soap_tmp___tmd__SetSerialPortConfiguration, "-tmd:SetSerialPortConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SetSerialPortConfiguration(_tmd__SetSerialPortConfigurationResponse &tmd__SetSerialPortConfigurationResponse) -{ - tmd__SetSerialPortConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SetSerialPortConfigurationResponse.soap_get(soap, "tmd:SetSerialPortConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_GetSerialPortConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPortConfigurationOptions *tmd__GetSerialPortConfigurationOptions) -{ - struct __tmd__GetSerialPortConfigurationOptions soap_tmp___tmd__GetSerialPortConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/GetSerialPortConfigurationOptions"; - soap_tmp___tmd__GetSerialPortConfigurationOptions.tmd__GetSerialPortConfigurationOptions = tmd__GetSerialPortConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__GetSerialPortConfigurationOptions(soap, &soap_tmp___tmd__GetSerialPortConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetSerialPortConfigurationOptions(soap, &soap_tmp___tmd__GetSerialPortConfigurationOptions, "-tmd:GetSerialPortConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__GetSerialPortConfigurationOptions(soap, &soap_tmp___tmd__GetSerialPortConfigurationOptions, "-tmd:GetSerialPortConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_GetSerialPortConfigurationOptions(_tmd__GetSerialPortConfigurationOptionsResponse &tmd__GetSerialPortConfigurationOptionsResponse) -{ - tmd__GetSerialPortConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__GetSerialPortConfigurationOptionsResponse.soap_get(soap, "tmd:GetSerialPortConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int DeviceIOBindingProxy::send_SendReceiveSerialCommand(const char *soap_endpoint_url, const char *soap_action, _tmd__SendReceiveSerialCommand *tmd__SendReceiveSerialCommand) -{ - struct __tmd__SendReceiveSerialCommand soap_tmp___tmd__SendReceiveSerialCommand; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/deviceio/wsdl/SendReceiveSerialCommand"; - soap_tmp___tmd__SendReceiveSerialCommand.tmd__SendReceiveSerialCommand = tmd__SendReceiveSerialCommand; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tmd__SendReceiveSerialCommand(soap, &soap_tmp___tmd__SendReceiveSerialCommand); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SendReceiveSerialCommand(soap, &soap_tmp___tmd__SendReceiveSerialCommand, "-tmd:SendReceiveSerialCommand", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tmd__SendReceiveSerialCommand(soap, &soap_tmp___tmd__SendReceiveSerialCommand, "-tmd:SendReceiveSerialCommand", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int DeviceIOBindingProxy::recv_SendReceiveSerialCommand(_tmd__SendReceiveSerialCommandResponse &tmd__SendReceiveSerialCommandResponse) -{ - tmd__SendReceiveSerialCommandResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tmd__SendReceiveSerialCommandResponse.soap_get(soap, "tmd:SendReceiveSerialCommandResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapDeviceIOBindingProxy.h b/gen/soapDeviceIOBindingProxy.h deleted file mode 100644 index 63b7359..0000000 --- a/gen/soapDeviceIOBindingProxy.h +++ /dev/null @@ -1,345 +0,0 @@ -/* soapDeviceIOBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapDeviceIOBindingProxy_H -#define soapDeviceIOBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC DeviceIOBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'DeviceIOBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - DeviceIOBindingProxy(); - /// Copy constructor - DeviceIOBindingProxy(const DeviceIOBindingProxy& rhs); - /// Construct proxy given a shared managing context - DeviceIOBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - DeviceIOBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - DeviceIOBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - DeviceIOBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - DeviceIOBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - DeviceIOBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~DeviceIOBindingProxy(); - /// Initializer used by constructors - virtual void DeviceIOBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual DeviceIOBindingProxy *copy(); - /// Copy assignment - DeviceIOBindingProxy& operator=(const DeviceIOBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'GetServiceCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(_tmd__GetServiceCapabilities *tmd__GetServiceCapabilities, _tmd__GetServiceCapabilitiesResponse &tmd__GetServiceCapabilitiesResponse) { return this->GetServiceCapabilities(NULL, NULL, tmd__GetServiceCapabilities, tmd__GetServiceCapabilitiesResponse); } - /// Web service synchronous operation 'GetServiceCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tmd__GetServiceCapabilities *tmd__GetServiceCapabilities, _tmd__GetServiceCapabilitiesResponse &tmd__GetServiceCapabilitiesResponse) { return this->send_GetServiceCapabilities(soap_endpoint_url, soap_action, tmd__GetServiceCapabilities) || this->recv_GetServiceCapabilities(tmd__GetServiceCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServiceCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tmd__GetServiceCapabilities *tmd__GetServiceCapabilities); - /// Web service asynchronous operation 'recv_GetServiceCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServiceCapabilities(_tmd__GetServiceCapabilitiesResponse &tmd__GetServiceCapabilitiesResponse); - // - /// Web service synchronous operation 'GetRelayOutputOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetRelayOutputOptions(_tmd__GetRelayOutputOptions *tmd__GetRelayOutputOptions, _tmd__GetRelayOutputOptionsResponse &tmd__GetRelayOutputOptionsResponse) { return this->GetRelayOutputOptions(NULL, NULL, tmd__GetRelayOutputOptions, tmd__GetRelayOutputOptionsResponse); } - /// Web service synchronous operation 'GetRelayOutputOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetRelayOutputOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetRelayOutputOptions *tmd__GetRelayOutputOptions, _tmd__GetRelayOutputOptionsResponse &tmd__GetRelayOutputOptionsResponse) { return this->send_GetRelayOutputOptions(soap_endpoint_url, soap_action, tmd__GetRelayOutputOptions) || this->recv_GetRelayOutputOptions(tmd__GetRelayOutputOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetRelayOutputOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetRelayOutputOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetRelayOutputOptions *tmd__GetRelayOutputOptions); - /// Web service asynchronous operation 'recv_GetRelayOutputOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetRelayOutputOptions(_tmd__GetRelayOutputOptionsResponse &tmd__GetRelayOutputOptionsResponse); - // - /// Web service synchronous operation 'GetAudioSources' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioSources(tmd__Get *tmd__GetAudioSources, tmd__GetResponse &tmd__GetAudioSourcesResponse) { return this->GetAudioSources(NULL, NULL, tmd__GetAudioSources, tmd__GetAudioSourcesResponse); } - /// Web service synchronous operation 'GetAudioSources' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioSources(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetAudioSources, tmd__GetResponse &tmd__GetAudioSourcesResponse) { return this->send_GetAudioSources(soap_endpoint_url, soap_action, tmd__GetAudioSources) || this->recv_GetAudioSources(tmd__GetAudioSourcesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetAudioSources' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetAudioSources(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetAudioSources); - /// Web service asynchronous operation 'recv_GetAudioSources' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetAudioSources(tmd__GetResponse &tmd__GetAudioSourcesResponse); - // - /// Web service synchronous operation 'GetAudioOutputs' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioOutputs(tmd__Get *tmd__GetAudioOutputs, tmd__GetResponse &tmd__GetAudioOutputsResponse) { return this->GetAudioOutputs(NULL, NULL, tmd__GetAudioOutputs, tmd__GetAudioOutputsResponse); } - /// Web service synchronous operation 'GetAudioOutputs' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioOutputs(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetAudioOutputs, tmd__GetResponse &tmd__GetAudioOutputsResponse) { return this->send_GetAudioOutputs(soap_endpoint_url, soap_action, tmd__GetAudioOutputs) || this->recv_GetAudioOutputs(tmd__GetAudioOutputsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetAudioOutputs' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetAudioOutputs(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetAudioOutputs); - /// Web service asynchronous operation 'recv_GetAudioOutputs' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetAudioOutputs(tmd__GetResponse &tmd__GetAudioOutputsResponse); - // - /// Web service synchronous operation 'GetVideoSources' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoSources(tmd__Get *tmd__GetVideoSources, tmd__GetResponse &tmd__GetVideoSourcesResponse) { return this->GetVideoSources(NULL, NULL, tmd__GetVideoSources, tmd__GetVideoSourcesResponse); } - /// Web service synchronous operation 'GetVideoSources' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoSources(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetVideoSources, tmd__GetResponse &tmd__GetVideoSourcesResponse) { return this->send_GetVideoSources(soap_endpoint_url, soap_action, tmd__GetVideoSources) || this->recv_GetVideoSources(tmd__GetVideoSourcesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetVideoSources' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetVideoSources(const char *soap_endpoint_url, const char *soap_action, tmd__Get *tmd__GetVideoSources); - /// Web service asynchronous operation 'recv_GetVideoSources' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetVideoSources(tmd__GetResponse &tmd__GetVideoSourcesResponse); - // - /// Web service synchronous operation 'GetVideoOutputs' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoOutputs(_tmd__GetVideoOutputs *tmd__GetVideoOutputs, _tmd__GetVideoOutputsResponse &tmd__GetVideoOutputsResponse) { return this->GetVideoOutputs(NULL, NULL, tmd__GetVideoOutputs, tmd__GetVideoOutputsResponse); } - /// Web service synchronous operation 'GetVideoOutputs' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoOutputs(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputs *tmd__GetVideoOutputs, _tmd__GetVideoOutputsResponse &tmd__GetVideoOutputsResponse) { return this->send_GetVideoOutputs(soap_endpoint_url, soap_action, tmd__GetVideoOutputs) || this->recv_GetVideoOutputs(tmd__GetVideoOutputsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetVideoOutputs' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetVideoOutputs(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputs *tmd__GetVideoOutputs); - /// Web service asynchronous operation 'recv_GetVideoOutputs' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetVideoOutputs(_tmd__GetVideoOutputsResponse &tmd__GetVideoOutputsResponse); - // - /// Web service synchronous operation 'GetVideoSourceConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoSourceConfiguration(_tmd__GetVideoSourceConfiguration *tmd__GetVideoSourceConfiguration, _tmd__GetVideoSourceConfigurationResponse &tmd__GetVideoSourceConfigurationResponse) { return this->GetVideoSourceConfiguration(NULL, NULL, tmd__GetVideoSourceConfiguration, tmd__GetVideoSourceConfigurationResponse); } - /// Web service synchronous operation 'GetVideoSourceConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoSourceConfiguration *tmd__GetVideoSourceConfiguration, _tmd__GetVideoSourceConfigurationResponse &tmd__GetVideoSourceConfigurationResponse) { return this->send_GetVideoSourceConfiguration(soap_endpoint_url, soap_action, tmd__GetVideoSourceConfiguration) || this->recv_GetVideoSourceConfiguration(tmd__GetVideoSourceConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetVideoSourceConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoSourceConfiguration *tmd__GetVideoSourceConfiguration); - /// Web service asynchronous operation 'recv_GetVideoSourceConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetVideoSourceConfiguration(_tmd__GetVideoSourceConfigurationResponse &tmd__GetVideoSourceConfigurationResponse); - // - /// Web service synchronous operation 'GetVideoOutputConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoOutputConfiguration(_tmd__GetVideoOutputConfiguration *tmd__GetVideoOutputConfiguration, _tmd__GetVideoOutputConfigurationResponse &tmd__GetVideoOutputConfigurationResponse) { return this->GetVideoOutputConfiguration(NULL, NULL, tmd__GetVideoOutputConfiguration, tmd__GetVideoOutputConfigurationResponse); } - /// Web service synchronous operation 'GetVideoOutputConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputConfiguration *tmd__GetVideoOutputConfiguration, _tmd__GetVideoOutputConfigurationResponse &tmd__GetVideoOutputConfigurationResponse) { return this->send_GetVideoOutputConfiguration(soap_endpoint_url, soap_action, tmd__GetVideoOutputConfiguration) || this->recv_GetVideoOutputConfiguration(tmd__GetVideoOutputConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetVideoOutputConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetVideoOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputConfiguration *tmd__GetVideoOutputConfiguration); - /// Web service asynchronous operation 'recv_GetVideoOutputConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetVideoOutputConfiguration(_tmd__GetVideoOutputConfigurationResponse &tmd__GetVideoOutputConfigurationResponse); - // - /// Web service synchronous operation 'GetAudioSourceConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioSourceConfiguration(_tmd__GetAudioSourceConfiguration *tmd__GetAudioSourceConfiguration, _tmd__GetAudioSourceConfigurationResponse &tmd__GetAudioSourceConfigurationResponse) { return this->GetAudioSourceConfiguration(NULL, NULL, tmd__GetAudioSourceConfiguration, tmd__GetAudioSourceConfigurationResponse); } - /// Web service synchronous operation 'GetAudioSourceConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioSourceConfiguration *tmd__GetAudioSourceConfiguration, _tmd__GetAudioSourceConfigurationResponse &tmd__GetAudioSourceConfigurationResponse) { return this->send_GetAudioSourceConfiguration(soap_endpoint_url, soap_action, tmd__GetAudioSourceConfiguration) || this->recv_GetAudioSourceConfiguration(tmd__GetAudioSourceConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetAudioSourceConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioSourceConfiguration *tmd__GetAudioSourceConfiguration); - /// Web service asynchronous operation 'recv_GetAudioSourceConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetAudioSourceConfiguration(_tmd__GetAudioSourceConfigurationResponse &tmd__GetAudioSourceConfigurationResponse); - // - /// Web service synchronous operation 'GetAudioOutputConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioOutputConfiguration(_tmd__GetAudioOutputConfiguration *tmd__GetAudioOutputConfiguration, _tmd__GetAudioOutputConfigurationResponse &tmd__GetAudioOutputConfigurationResponse) { return this->GetAudioOutputConfiguration(NULL, NULL, tmd__GetAudioOutputConfiguration, tmd__GetAudioOutputConfigurationResponse); } - /// Web service synchronous operation 'GetAudioOutputConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioOutputConfiguration *tmd__GetAudioOutputConfiguration, _tmd__GetAudioOutputConfigurationResponse &tmd__GetAudioOutputConfigurationResponse) { return this->send_GetAudioOutputConfiguration(soap_endpoint_url, soap_action, tmd__GetAudioOutputConfiguration) || this->recv_GetAudioOutputConfiguration(tmd__GetAudioOutputConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetAudioOutputConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioOutputConfiguration *tmd__GetAudioOutputConfiguration); - /// Web service asynchronous operation 'recv_GetAudioOutputConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetAudioOutputConfiguration(_tmd__GetAudioOutputConfigurationResponse &tmd__GetAudioOutputConfigurationResponse); - // - /// Web service synchronous operation 'SetVideoSourceConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetVideoSourceConfiguration(_tmd__SetVideoSourceConfiguration *tmd__SetVideoSourceConfiguration, _tmd__SetVideoSourceConfigurationResponse &tmd__SetVideoSourceConfigurationResponse) { return this->SetVideoSourceConfiguration(NULL, NULL, tmd__SetVideoSourceConfiguration, tmd__SetVideoSourceConfigurationResponse); } - /// Web service synchronous operation 'SetVideoSourceConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetVideoSourceConfiguration *tmd__SetVideoSourceConfiguration, _tmd__SetVideoSourceConfigurationResponse &tmd__SetVideoSourceConfigurationResponse) { return this->send_SetVideoSourceConfiguration(soap_endpoint_url, soap_action, tmd__SetVideoSourceConfiguration) || this->recv_SetVideoSourceConfiguration(tmd__SetVideoSourceConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetVideoSourceConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetVideoSourceConfiguration *tmd__SetVideoSourceConfiguration); - /// Web service asynchronous operation 'recv_SetVideoSourceConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetVideoSourceConfiguration(_tmd__SetVideoSourceConfigurationResponse &tmd__SetVideoSourceConfigurationResponse); - // - /// Web service synchronous operation 'SetVideoOutputConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetVideoOutputConfiguration(_tmd__SetVideoOutputConfiguration *tmd__SetVideoOutputConfiguration, _tmd__SetVideoOutputConfigurationResponse &tmd__SetVideoOutputConfigurationResponse) { return this->SetVideoOutputConfiguration(NULL, NULL, tmd__SetVideoOutputConfiguration, tmd__SetVideoOutputConfigurationResponse); } - /// Web service synchronous operation 'SetVideoOutputConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetVideoOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetVideoOutputConfiguration *tmd__SetVideoOutputConfiguration, _tmd__SetVideoOutputConfigurationResponse &tmd__SetVideoOutputConfigurationResponse) { return this->send_SetVideoOutputConfiguration(soap_endpoint_url, soap_action, tmd__SetVideoOutputConfiguration) || this->recv_SetVideoOutputConfiguration(tmd__SetVideoOutputConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetVideoOutputConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetVideoOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetVideoOutputConfiguration *tmd__SetVideoOutputConfiguration); - /// Web service asynchronous operation 'recv_SetVideoOutputConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetVideoOutputConfiguration(_tmd__SetVideoOutputConfigurationResponse &tmd__SetVideoOutputConfigurationResponse); - // - /// Web service synchronous operation 'SetAudioSourceConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetAudioSourceConfiguration(_tmd__SetAudioSourceConfiguration *tmd__SetAudioSourceConfiguration, _tmd__SetAudioSourceConfigurationResponse &tmd__SetAudioSourceConfigurationResponse) { return this->SetAudioSourceConfiguration(NULL, NULL, tmd__SetAudioSourceConfiguration, tmd__SetAudioSourceConfigurationResponse); } - /// Web service synchronous operation 'SetAudioSourceConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetAudioSourceConfiguration *tmd__SetAudioSourceConfiguration, _tmd__SetAudioSourceConfigurationResponse &tmd__SetAudioSourceConfigurationResponse) { return this->send_SetAudioSourceConfiguration(soap_endpoint_url, soap_action, tmd__SetAudioSourceConfiguration) || this->recv_SetAudioSourceConfiguration(tmd__SetAudioSourceConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetAudioSourceConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetAudioSourceConfiguration *tmd__SetAudioSourceConfiguration); - /// Web service asynchronous operation 'recv_SetAudioSourceConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetAudioSourceConfiguration(_tmd__SetAudioSourceConfigurationResponse &tmd__SetAudioSourceConfigurationResponse); - // - /// Web service synchronous operation 'SetAudioOutputConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetAudioOutputConfiguration(_tmd__SetAudioOutputConfiguration *tmd__SetAudioOutputConfiguration, _tmd__SetAudioOutputConfigurationResponse &tmd__SetAudioOutputConfigurationResponse) { return this->SetAudioOutputConfiguration(NULL, NULL, tmd__SetAudioOutputConfiguration, tmd__SetAudioOutputConfigurationResponse); } - /// Web service synchronous operation 'SetAudioOutputConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetAudioOutputConfiguration *tmd__SetAudioOutputConfiguration, _tmd__SetAudioOutputConfigurationResponse &tmd__SetAudioOutputConfigurationResponse) { return this->send_SetAudioOutputConfiguration(soap_endpoint_url, soap_action, tmd__SetAudioOutputConfiguration) || this->recv_SetAudioOutputConfiguration(tmd__SetAudioOutputConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetAudioOutputConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetAudioOutputConfiguration *tmd__SetAudioOutputConfiguration); - /// Web service asynchronous operation 'recv_SetAudioOutputConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetAudioOutputConfiguration(_tmd__SetAudioOutputConfigurationResponse &tmd__SetAudioOutputConfigurationResponse); - // - /// Web service synchronous operation 'GetVideoSourceConfigurationOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoSourceConfigurationOptions(_tmd__GetVideoSourceConfigurationOptions *tmd__GetVideoSourceConfigurationOptions, _tmd__GetVideoSourceConfigurationOptionsResponse &tmd__GetVideoSourceConfigurationOptionsResponse) { return this->GetVideoSourceConfigurationOptions(NULL, NULL, tmd__GetVideoSourceConfigurationOptions, tmd__GetVideoSourceConfigurationOptionsResponse); } - /// Web service synchronous operation 'GetVideoSourceConfigurationOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoSourceConfigurationOptions *tmd__GetVideoSourceConfigurationOptions, _tmd__GetVideoSourceConfigurationOptionsResponse &tmd__GetVideoSourceConfigurationOptionsResponse) { return this->send_GetVideoSourceConfigurationOptions(soap_endpoint_url, soap_action, tmd__GetVideoSourceConfigurationOptions) || this->recv_GetVideoSourceConfigurationOptions(tmd__GetVideoSourceConfigurationOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetVideoSourceConfigurationOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetVideoSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoSourceConfigurationOptions *tmd__GetVideoSourceConfigurationOptions); - /// Web service asynchronous operation 'recv_GetVideoSourceConfigurationOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetVideoSourceConfigurationOptions(_tmd__GetVideoSourceConfigurationOptionsResponse &tmd__GetVideoSourceConfigurationOptionsResponse); - // - /// Web service synchronous operation 'GetVideoOutputConfigurationOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoOutputConfigurationOptions(_tmd__GetVideoOutputConfigurationOptions *tmd__GetVideoOutputConfigurationOptions, _tmd__GetVideoOutputConfigurationOptionsResponse &tmd__GetVideoOutputConfigurationOptionsResponse) { return this->GetVideoOutputConfigurationOptions(NULL, NULL, tmd__GetVideoOutputConfigurationOptions, tmd__GetVideoOutputConfigurationOptionsResponse); } - /// Web service synchronous operation 'GetVideoOutputConfigurationOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetVideoOutputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputConfigurationOptions *tmd__GetVideoOutputConfigurationOptions, _tmd__GetVideoOutputConfigurationOptionsResponse &tmd__GetVideoOutputConfigurationOptionsResponse) { return this->send_GetVideoOutputConfigurationOptions(soap_endpoint_url, soap_action, tmd__GetVideoOutputConfigurationOptions) || this->recv_GetVideoOutputConfigurationOptions(tmd__GetVideoOutputConfigurationOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetVideoOutputConfigurationOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetVideoOutputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetVideoOutputConfigurationOptions *tmd__GetVideoOutputConfigurationOptions); - /// Web service asynchronous operation 'recv_GetVideoOutputConfigurationOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetVideoOutputConfigurationOptions(_tmd__GetVideoOutputConfigurationOptionsResponse &tmd__GetVideoOutputConfigurationOptionsResponse); - // - /// Web service synchronous operation 'GetAudioSourceConfigurationOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioSourceConfigurationOptions(_tmd__GetAudioSourceConfigurationOptions *tmd__GetAudioSourceConfigurationOptions, _tmd__GetAudioSourceConfigurationOptionsResponse &tmd__GetAudioSourceConfigurationOptionsResponse) { return this->GetAudioSourceConfigurationOptions(NULL, NULL, tmd__GetAudioSourceConfigurationOptions, tmd__GetAudioSourceConfigurationOptionsResponse); } - /// Web service synchronous operation 'GetAudioSourceConfigurationOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioSourceConfigurationOptions *tmd__GetAudioSourceConfigurationOptions, _tmd__GetAudioSourceConfigurationOptionsResponse &tmd__GetAudioSourceConfigurationOptionsResponse) { return this->send_GetAudioSourceConfigurationOptions(soap_endpoint_url, soap_action, tmd__GetAudioSourceConfigurationOptions) || this->recv_GetAudioSourceConfigurationOptions(tmd__GetAudioSourceConfigurationOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetAudioSourceConfigurationOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetAudioSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioSourceConfigurationOptions *tmd__GetAudioSourceConfigurationOptions); - /// Web service asynchronous operation 'recv_GetAudioSourceConfigurationOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetAudioSourceConfigurationOptions(_tmd__GetAudioSourceConfigurationOptionsResponse &tmd__GetAudioSourceConfigurationOptionsResponse); - // - /// Web service synchronous operation 'GetAudioOutputConfigurationOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioOutputConfigurationOptions(_tmd__GetAudioOutputConfigurationOptions *tmd__GetAudioOutputConfigurationOptions, _tmd__GetAudioOutputConfigurationOptionsResponse &tmd__GetAudioOutputConfigurationOptionsResponse) { return this->GetAudioOutputConfigurationOptions(NULL, NULL, tmd__GetAudioOutputConfigurationOptions, tmd__GetAudioOutputConfigurationOptionsResponse); } - /// Web service synchronous operation 'GetAudioOutputConfigurationOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetAudioOutputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioOutputConfigurationOptions *tmd__GetAudioOutputConfigurationOptions, _tmd__GetAudioOutputConfigurationOptionsResponse &tmd__GetAudioOutputConfigurationOptionsResponse) { return this->send_GetAudioOutputConfigurationOptions(soap_endpoint_url, soap_action, tmd__GetAudioOutputConfigurationOptions) || this->recv_GetAudioOutputConfigurationOptions(tmd__GetAudioOutputConfigurationOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetAudioOutputConfigurationOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetAudioOutputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetAudioOutputConfigurationOptions *tmd__GetAudioOutputConfigurationOptions); - /// Web service asynchronous operation 'recv_GetAudioOutputConfigurationOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetAudioOutputConfigurationOptions(_tmd__GetAudioOutputConfigurationOptionsResponse &tmd__GetAudioOutputConfigurationOptionsResponse); - // - /// Web service synchronous operation 'GetRelayOutputs' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetRelayOutputs(_tds__GetRelayOutputs *tds__GetRelayOutputs, _tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse) { return this->GetRelayOutputs(NULL, NULL, tds__GetRelayOutputs, tds__GetRelayOutputsResponse); } - /// Web service synchronous operation 'GetRelayOutputs' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetRelayOutputs(const char *soap_endpoint_url, const char *soap_action, _tds__GetRelayOutputs *tds__GetRelayOutputs, _tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse) { return this->send_GetRelayOutputs(soap_endpoint_url, soap_action, tds__GetRelayOutputs) || this->recv_GetRelayOutputs(tds__GetRelayOutputsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetRelayOutputs' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetRelayOutputs(const char *soap_endpoint_url, const char *soap_action, _tds__GetRelayOutputs *tds__GetRelayOutputs); - /// Web service asynchronous operation 'recv_GetRelayOutputs' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetRelayOutputs(_tds__GetRelayOutputsResponse &tds__GetRelayOutputsResponse); - // - /// Web service synchronous operation 'SetRelayOutputSettings' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputSettings(_tmd__SetRelayOutputSettings *tmd__SetRelayOutputSettings, _tmd__SetRelayOutputSettingsResponse &tmd__SetRelayOutputSettingsResponse) { return this->SetRelayOutputSettings(NULL, NULL, tmd__SetRelayOutputSettings, tmd__SetRelayOutputSettingsResponse); } - /// Web service synchronous operation 'SetRelayOutputSettings' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputSettings(const char *soap_endpoint_url, const char *soap_action, _tmd__SetRelayOutputSettings *tmd__SetRelayOutputSettings, _tmd__SetRelayOutputSettingsResponse &tmd__SetRelayOutputSettingsResponse) { return this->send_SetRelayOutputSettings(soap_endpoint_url, soap_action, tmd__SetRelayOutputSettings) || this->recv_SetRelayOutputSettings(tmd__SetRelayOutputSettingsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetRelayOutputSettings' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetRelayOutputSettings(const char *soap_endpoint_url, const char *soap_action, _tmd__SetRelayOutputSettings *tmd__SetRelayOutputSettings); - /// Web service asynchronous operation 'recv_SetRelayOutputSettings' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetRelayOutputSettings(_tmd__SetRelayOutputSettingsResponse &tmd__SetRelayOutputSettingsResponse); - // - /// Web service synchronous operation 'SetRelayOutputState' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputState(_tds__SetRelayOutputState *tds__SetRelayOutputState, _tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse) { return this->SetRelayOutputState(NULL, NULL, tds__SetRelayOutputState, tds__SetRelayOutputStateResponse); } - /// Web service synchronous operation 'SetRelayOutputState' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetRelayOutputState(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputState *tds__SetRelayOutputState, _tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse) { return this->send_SetRelayOutputState(soap_endpoint_url, soap_action, tds__SetRelayOutputState) || this->recv_SetRelayOutputState(tds__SetRelayOutputStateResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetRelayOutputState' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetRelayOutputState(const char *soap_endpoint_url, const char *soap_action, _tds__SetRelayOutputState *tds__SetRelayOutputState); - /// Web service asynchronous operation 'recv_SetRelayOutputState' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetRelayOutputState(_tds__SetRelayOutputStateResponse &tds__SetRelayOutputStateResponse); - // - /// Web service synchronous operation 'GetDigitalInputs' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDigitalInputs(_tmd__GetDigitalInputs *tmd__GetDigitalInputs, _tmd__GetDigitalInputsResponse &tmd__GetDigitalInputsResponse) { return this->GetDigitalInputs(NULL, NULL, tmd__GetDigitalInputs, tmd__GetDigitalInputsResponse); } - /// Web service synchronous operation 'GetDigitalInputs' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDigitalInputs(const char *soap_endpoint_url, const char *soap_action, _tmd__GetDigitalInputs *tmd__GetDigitalInputs, _tmd__GetDigitalInputsResponse &tmd__GetDigitalInputsResponse) { return this->send_GetDigitalInputs(soap_endpoint_url, soap_action, tmd__GetDigitalInputs) || this->recv_GetDigitalInputs(tmd__GetDigitalInputsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDigitalInputs' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDigitalInputs(const char *soap_endpoint_url, const char *soap_action, _tmd__GetDigitalInputs *tmd__GetDigitalInputs); - /// Web service asynchronous operation 'recv_GetDigitalInputs' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDigitalInputs(_tmd__GetDigitalInputsResponse &tmd__GetDigitalInputsResponse); - // - /// Web service synchronous operation 'GetDigitalInputConfigurationOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDigitalInputConfigurationOptions(_tmd__GetDigitalInputConfigurationOptions *tmd__GetDigitalInputConfigurationOptions, _tmd__GetDigitalInputConfigurationOptionsResponse &tmd__GetDigitalInputConfigurationOptionsResponse) { return this->GetDigitalInputConfigurationOptions(NULL, NULL, tmd__GetDigitalInputConfigurationOptions, tmd__GetDigitalInputConfigurationOptionsResponse); } - /// Web service synchronous operation 'GetDigitalInputConfigurationOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDigitalInputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetDigitalInputConfigurationOptions *tmd__GetDigitalInputConfigurationOptions, _tmd__GetDigitalInputConfigurationOptionsResponse &tmd__GetDigitalInputConfigurationOptionsResponse) { return this->send_GetDigitalInputConfigurationOptions(soap_endpoint_url, soap_action, tmd__GetDigitalInputConfigurationOptions) || this->recv_GetDigitalInputConfigurationOptions(tmd__GetDigitalInputConfigurationOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDigitalInputConfigurationOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDigitalInputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetDigitalInputConfigurationOptions *tmd__GetDigitalInputConfigurationOptions); - /// Web service asynchronous operation 'recv_GetDigitalInputConfigurationOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDigitalInputConfigurationOptions(_tmd__GetDigitalInputConfigurationOptionsResponse &tmd__GetDigitalInputConfigurationOptionsResponse); - // - /// Web service synchronous operation 'SetDigitalInputConfigurations' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetDigitalInputConfigurations(_tmd__SetDigitalInputConfigurations *tmd__SetDigitalInputConfigurations, _tmd__SetDigitalInputConfigurationsResponse &tmd__SetDigitalInputConfigurationsResponse) { return this->SetDigitalInputConfigurations(NULL, NULL, tmd__SetDigitalInputConfigurations, tmd__SetDigitalInputConfigurationsResponse); } - /// Web service synchronous operation 'SetDigitalInputConfigurations' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetDigitalInputConfigurations(const char *soap_endpoint_url, const char *soap_action, _tmd__SetDigitalInputConfigurations *tmd__SetDigitalInputConfigurations, _tmd__SetDigitalInputConfigurationsResponse &tmd__SetDigitalInputConfigurationsResponse) { return this->send_SetDigitalInputConfigurations(soap_endpoint_url, soap_action, tmd__SetDigitalInputConfigurations) || this->recv_SetDigitalInputConfigurations(tmd__SetDigitalInputConfigurationsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetDigitalInputConfigurations' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetDigitalInputConfigurations(const char *soap_endpoint_url, const char *soap_action, _tmd__SetDigitalInputConfigurations *tmd__SetDigitalInputConfigurations); - /// Web service asynchronous operation 'recv_SetDigitalInputConfigurations' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetDigitalInputConfigurations(_tmd__SetDigitalInputConfigurationsResponse &tmd__SetDigitalInputConfigurationsResponse); - // - /// Web service synchronous operation 'GetSerialPorts' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSerialPorts(_tmd__GetSerialPorts *tmd__GetSerialPorts, _tmd__GetSerialPortsResponse &tmd__GetSerialPortsResponse) { return this->GetSerialPorts(NULL, NULL, tmd__GetSerialPorts, tmd__GetSerialPortsResponse); } - /// Web service synchronous operation 'GetSerialPorts' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSerialPorts(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPorts *tmd__GetSerialPorts, _tmd__GetSerialPortsResponse &tmd__GetSerialPortsResponse) { return this->send_GetSerialPorts(soap_endpoint_url, soap_action, tmd__GetSerialPorts) || this->recv_GetSerialPorts(tmd__GetSerialPortsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSerialPorts' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSerialPorts(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPorts *tmd__GetSerialPorts); - /// Web service asynchronous operation 'recv_GetSerialPorts' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSerialPorts(_tmd__GetSerialPortsResponse &tmd__GetSerialPortsResponse); - // - /// Web service synchronous operation 'GetSerialPortConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSerialPortConfiguration(_tmd__GetSerialPortConfiguration *tmd__GetSerialPortConfiguration, _tmd__GetSerialPortConfigurationResponse &tmd__GetSerialPortConfigurationResponse) { return this->GetSerialPortConfiguration(NULL, NULL, tmd__GetSerialPortConfiguration, tmd__GetSerialPortConfigurationResponse); } - /// Web service synchronous operation 'GetSerialPortConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSerialPortConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPortConfiguration *tmd__GetSerialPortConfiguration, _tmd__GetSerialPortConfigurationResponse &tmd__GetSerialPortConfigurationResponse) { return this->send_GetSerialPortConfiguration(soap_endpoint_url, soap_action, tmd__GetSerialPortConfiguration) || this->recv_GetSerialPortConfiguration(tmd__GetSerialPortConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSerialPortConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSerialPortConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPortConfiguration *tmd__GetSerialPortConfiguration); - /// Web service asynchronous operation 'recv_GetSerialPortConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSerialPortConfiguration(_tmd__GetSerialPortConfigurationResponse &tmd__GetSerialPortConfigurationResponse); - // - /// Web service synchronous operation 'SetSerialPortConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetSerialPortConfiguration(_tmd__SetSerialPortConfiguration *tmd__SetSerialPortConfiguration, _tmd__SetSerialPortConfigurationResponse &tmd__SetSerialPortConfigurationResponse) { return this->SetSerialPortConfiguration(NULL, NULL, tmd__SetSerialPortConfiguration, tmd__SetSerialPortConfigurationResponse); } - /// Web service synchronous operation 'SetSerialPortConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetSerialPortConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetSerialPortConfiguration *tmd__SetSerialPortConfiguration, _tmd__SetSerialPortConfigurationResponse &tmd__SetSerialPortConfigurationResponse) { return this->send_SetSerialPortConfiguration(soap_endpoint_url, soap_action, tmd__SetSerialPortConfiguration) || this->recv_SetSerialPortConfiguration(tmd__SetSerialPortConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetSerialPortConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetSerialPortConfiguration(const char *soap_endpoint_url, const char *soap_action, _tmd__SetSerialPortConfiguration *tmd__SetSerialPortConfiguration); - /// Web service asynchronous operation 'recv_SetSerialPortConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetSerialPortConfiguration(_tmd__SetSerialPortConfigurationResponse &tmd__SetSerialPortConfigurationResponse); - // - /// Web service synchronous operation 'GetSerialPortConfigurationOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetSerialPortConfigurationOptions(_tmd__GetSerialPortConfigurationOptions *tmd__GetSerialPortConfigurationOptions, _tmd__GetSerialPortConfigurationOptionsResponse &tmd__GetSerialPortConfigurationOptionsResponse) { return this->GetSerialPortConfigurationOptions(NULL, NULL, tmd__GetSerialPortConfigurationOptions, tmd__GetSerialPortConfigurationOptionsResponse); } - /// Web service synchronous operation 'GetSerialPortConfigurationOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetSerialPortConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPortConfigurationOptions *tmd__GetSerialPortConfigurationOptions, _tmd__GetSerialPortConfigurationOptionsResponse &tmd__GetSerialPortConfigurationOptionsResponse) { return this->send_GetSerialPortConfigurationOptions(soap_endpoint_url, soap_action, tmd__GetSerialPortConfigurationOptions) || this->recv_GetSerialPortConfigurationOptions(tmd__GetSerialPortConfigurationOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetSerialPortConfigurationOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetSerialPortConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tmd__GetSerialPortConfigurationOptions *tmd__GetSerialPortConfigurationOptions); - /// Web service asynchronous operation 'recv_GetSerialPortConfigurationOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetSerialPortConfigurationOptions(_tmd__GetSerialPortConfigurationOptionsResponse &tmd__GetSerialPortConfigurationOptionsResponse); - // - /// Web service synchronous operation 'SendReceiveSerialCommand' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SendReceiveSerialCommand(_tmd__SendReceiveSerialCommand *tmd__SendReceiveSerialCommand, _tmd__SendReceiveSerialCommandResponse &tmd__SendReceiveSerialCommandResponse) { return this->SendReceiveSerialCommand(NULL, NULL, tmd__SendReceiveSerialCommand, tmd__SendReceiveSerialCommandResponse); } - /// Web service synchronous operation 'SendReceiveSerialCommand' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SendReceiveSerialCommand(const char *soap_endpoint_url, const char *soap_action, _tmd__SendReceiveSerialCommand *tmd__SendReceiveSerialCommand, _tmd__SendReceiveSerialCommandResponse &tmd__SendReceiveSerialCommandResponse) { return this->send_SendReceiveSerialCommand(soap_endpoint_url, soap_action, tmd__SendReceiveSerialCommand) || this->recv_SendReceiveSerialCommand(tmd__SendReceiveSerialCommandResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SendReceiveSerialCommand' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SendReceiveSerialCommand(const char *soap_endpoint_url, const char *soap_action, _tmd__SendReceiveSerialCommand *tmd__SendReceiveSerialCommand); - /// Web service asynchronous operation 'recv_SendReceiveSerialCommand' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SendReceiveSerialCommand(_tmd__SendReceiveSerialCommandResponse &tmd__SendReceiveSerialCommandResponse); - }; -#endif diff --git a/gen/soapDeviceIOBindingService.o b/gen/soapDeviceIOBindingService.o deleted file mode 100644 index 1ee1629..0000000 Binary files a/gen/soapDeviceIOBindingService.o and /dev/null differ diff --git a/gen/soapDisplayBindingProxy.h b/gen/soapDisplayBindingProxy.h deleted file mode 100644 index eba9a26..0000000 --- a/gen/soapDisplayBindingProxy.h +++ /dev/null @@ -1,174 +0,0 @@ -/* soapDisplayBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapDisplayBindingProxy_H -#define soapDisplayBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC DisplayBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'DisplayBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - DisplayBindingProxy(); - /// Copy constructor - DisplayBindingProxy(const DisplayBindingProxy& rhs); - /// Construct proxy given a shared managing context - DisplayBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - DisplayBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - DisplayBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - DisplayBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - DisplayBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - DisplayBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~DisplayBindingProxy(); - /// Initializer used by constructors - virtual void DisplayBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual DisplayBindingProxy *copy(); - /// Copy assignment - DisplayBindingProxy& operator=(const DisplayBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'GetServiceCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(_tls__GetServiceCapabilities *tls__GetServiceCapabilities, _tls__GetServiceCapabilitiesResponse &tls__GetServiceCapabilitiesResponse) { return this->GetServiceCapabilities(NULL, NULL, tls__GetServiceCapabilities, tls__GetServiceCapabilitiesResponse); } - /// Web service synchronous operation 'GetServiceCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tls__GetServiceCapabilities *tls__GetServiceCapabilities, _tls__GetServiceCapabilitiesResponse &tls__GetServiceCapabilitiesResponse) { return this->send_GetServiceCapabilities(soap_endpoint_url, soap_action, tls__GetServiceCapabilities) || this->recv_GetServiceCapabilities(tls__GetServiceCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServiceCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tls__GetServiceCapabilities *tls__GetServiceCapabilities); - /// Web service asynchronous operation 'recv_GetServiceCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServiceCapabilities(_tls__GetServiceCapabilitiesResponse &tls__GetServiceCapabilitiesResponse); - // - /// Web service synchronous operation 'GetLayout' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetLayout(_tls__GetLayout *tls__GetLayout, _tls__GetLayoutResponse &tls__GetLayoutResponse) { return this->GetLayout(NULL, NULL, tls__GetLayout, tls__GetLayoutResponse); } - /// Web service synchronous operation 'GetLayout' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetLayout(const char *soap_endpoint_url, const char *soap_action, _tls__GetLayout *tls__GetLayout, _tls__GetLayoutResponse &tls__GetLayoutResponse) { return this->send_GetLayout(soap_endpoint_url, soap_action, tls__GetLayout) || this->recv_GetLayout(tls__GetLayoutResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetLayout' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetLayout(const char *soap_endpoint_url, const char *soap_action, _tls__GetLayout *tls__GetLayout); - /// Web service asynchronous operation 'recv_GetLayout' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetLayout(_tls__GetLayoutResponse &tls__GetLayoutResponse); - // - /// Web service synchronous operation 'SetLayout' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetLayout(_tls__SetLayout *tls__SetLayout, _tls__SetLayoutResponse &tls__SetLayoutResponse) { return this->SetLayout(NULL, NULL, tls__SetLayout, tls__SetLayoutResponse); } - /// Web service synchronous operation 'SetLayout' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetLayout(const char *soap_endpoint_url, const char *soap_action, _tls__SetLayout *tls__SetLayout, _tls__SetLayoutResponse &tls__SetLayoutResponse) { return this->send_SetLayout(soap_endpoint_url, soap_action, tls__SetLayout) || this->recv_SetLayout(tls__SetLayoutResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetLayout' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetLayout(const char *soap_endpoint_url, const char *soap_action, _tls__SetLayout *tls__SetLayout); - /// Web service asynchronous operation 'recv_SetLayout' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetLayout(_tls__SetLayoutResponse &tls__SetLayoutResponse); - // - /// Web service synchronous operation 'GetDisplayOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetDisplayOptions(_tls__GetDisplayOptions *tls__GetDisplayOptions, _tls__GetDisplayOptionsResponse &tls__GetDisplayOptionsResponse) { return this->GetDisplayOptions(NULL, NULL, tls__GetDisplayOptions, tls__GetDisplayOptionsResponse); } - /// Web service synchronous operation 'GetDisplayOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetDisplayOptions(const char *soap_endpoint_url, const char *soap_action, _tls__GetDisplayOptions *tls__GetDisplayOptions, _tls__GetDisplayOptionsResponse &tls__GetDisplayOptionsResponse) { return this->send_GetDisplayOptions(soap_endpoint_url, soap_action, tls__GetDisplayOptions) || this->recv_GetDisplayOptions(tls__GetDisplayOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetDisplayOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetDisplayOptions(const char *soap_endpoint_url, const char *soap_action, _tls__GetDisplayOptions *tls__GetDisplayOptions); - /// Web service asynchronous operation 'recv_GetDisplayOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetDisplayOptions(_tls__GetDisplayOptionsResponse &tls__GetDisplayOptionsResponse); - // - /// Web service synchronous operation 'GetPaneConfigurations' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetPaneConfigurations(_tls__GetPaneConfigurations *tls__GetPaneConfigurations, _tls__GetPaneConfigurationsResponse &tls__GetPaneConfigurationsResponse) { return this->GetPaneConfigurations(NULL, NULL, tls__GetPaneConfigurations, tls__GetPaneConfigurationsResponse); } - /// Web service synchronous operation 'GetPaneConfigurations' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetPaneConfigurations(const char *soap_endpoint_url, const char *soap_action, _tls__GetPaneConfigurations *tls__GetPaneConfigurations, _tls__GetPaneConfigurationsResponse &tls__GetPaneConfigurationsResponse) { return this->send_GetPaneConfigurations(soap_endpoint_url, soap_action, tls__GetPaneConfigurations) || this->recv_GetPaneConfigurations(tls__GetPaneConfigurationsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetPaneConfigurations' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetPaneConfigurations(const char *soap_endpoint_url, const char *soap_action, _tls__GetPaneConfigurations *tls__GetPaneConfigurations); - /// Web service asynchronous operation 'recv_GetPaneConfigurations' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetPaneConfigurations(_tls__GetPaneConfigurationsResponse &tls__GetPaneConfigurationsResponse); - // - /// Web service synchronous operation 'GetPaneConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetPaneConfiguration(_tls__GetPaneConfiguration *tls__GetPaneConfiguration, _tls__GetPaneConfigurationResponse &tls__GetPaneConfigurationResponse) { return this->GetPaneConfiguration(NULL, NULL, tls__GetPaneConfiguration, tls__GetPaneConfigurationResponse); } - /// Web service synchronous operation 'GetPaneConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetPaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__GetPaneConfiguration *tls__GetPaneConfiguration, _tls__GetPaneConfigurationResponse &tls__GetPaneConfigurationResponse) { return this->send_GetPaneConfiguration(soap_endpoint_url, soap_action, tls__GetPaneConfiguration) || this->recv_GetPaneConfiguration(tls__GetPaneConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetPaneConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetPaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__GetPaneConfiguration *tls__GetPaneConfiguration); - /// Web service asynchronous operation 'recv_GetPaneConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetPaneConfiguration(_tls__GetPaneConfigurationResponse &tls__GetPaneConfigurationResponse); - // - /// Web service synchronous operation 'SetPaneConfigurations' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetPaneConfigurations(_tls__SetPaneConfigurations *tls__SetPaneConfigurations, _tls__SetPaneConfigurationsResponse &tls__SetPaneConfigurationsResponse) { return this->SetPaneConfigurations(NULL, NULL, tls__SetPaneConfigurations, tls__SetPaneConfigurationsResponse); } - /// Web service synchronous operation 'SetPaneConfigurations' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetPaneConfigurations(const char *soap_endpoint_url, const char *soap_action, _tls__SetPaneConfigurations *tls__SetPaneConfigurations, _tls__SetPaneConfigurationsResponse &tls__SetPaneConfigurationsResponse) { return this->send_SetPaneConfigurations(soap_endpoint_url, soap_action, tls__SetPaneConfigurations) || this->recv_SetPaneConfigurations(tls__SetPaneConfigurationsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetPaneConfigurations' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetPaneConfigurations(const char *soap_endpoint_url, const char *soap_action, _tls__SetPaneConfigurations *tls__SetPaneConfigurations); - /// Web service asynchronous operation 'recv_SetPaneConfigurations' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetPaneConfigurations(_tls__SetPaneConfigurationsResponse &tls__SetPaneConfigurationsResponse); - // - /// Web service synchronous operation 'SetPaneConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetPaneConfiguration(_tls__SetPaneConfiguration *tls__SetPaneConfiguration, _tls__SetPaneConfigurationResponse &tls__SetPaneConfigurationResponse) { return this->SetPaneConfiguration(NULL, NULL, tls__SetPaneConfiguration, tls__SetPaneConfigurationResponse); } - /// Web service synchronous operation 'SetPaneConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetPaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__SetPaneConfiguration *tls__SetPaneConfiguration, _tls__SetPaneConfigurationResponse &tls__SetPaneConfigurationResponse) { return this->send_SetPaneConfiguration(soap_endpoint_url, soap_action, tls__SetPaneConfiguration) || this->recv_SetPaneConfiguration(tls__SetPaneConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetPaneConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetPaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__SetPaneConfiguration *tls__SetPaneConfiguration); - /// Web service asynchronous operation 'recv_SetPaneConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetPaneConfiguration(_tls__SetPaneConfigurationResponse &tls__SetPaneConfigurationResponse); - // - /// Web service synchronous operation 'CreatePaneConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreatePaneConfiguration(_tls__CreatePaneConfiguration *tls__CreatePaneConfiguration, _tls__CreatePaneConfigurationResponse &tls__CreatePaneConfigurationResponse) { return this->CreatePaneConfiguration(NULL, NULL, tls__CreatePaneConfiguration, tls__CreatePaneConfigurationResponse); } - /// Web service synchronous operation 'CreatePaneConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreatePaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__CreatePaneConfiguration *tls__CreatePaneConfiguration, _tls__CreatePaneConfigurationResponse &tls__CreatePaneConfigurationResponse) { return this->send_CreatePaneConfiguration(soap_endpoint_url, soap_action, tls__CreatePaneConfiguration) || this->recv_CreatePaneConfiguration(tls__CreatePaneConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreatePaneConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreatePaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__CreatePaneConfiguration *tls__CreatePaneConfiguration); - /// Web service asynchronous operation 'recv_CreatePaneConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreatePaneConfiguration(_tls__CreatePaneConfigurationResponse &tls__CreatePaneConfigurationResponse); - // - /// Web service synchronous operation 'DeletePaneConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int DeletePaneConfiguration(_tls__DeletePaneConfiguration *tls__DeletePaneConfiguration, _tls__DeletePaneConfigurationResponse &tls__DeletePaneConfigurationResponse) { return this->DeletePaneConfiguration(NULL, NULL, tls__DeletePaneConfiguration, tls__DeletePaneConfigurationResponse); } - /// Web service synchronous operation 'DeletePaneConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int DeletePaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__DeletePaneConfiguration *tls__DeletePaneConfiguration, _tls__DeletePaneConfigurationResponse &tls__DeletePaneConfigurationResponse) { return this->send_DeletePaneConfiguration(soap_endpoint_url, soap_action, tls__DeletePaneConfiguration) || this->recv_DeletePaneConfiguration(tls__DeletePaneConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_DeletePaneConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_DeletePaneConfiguration(const char *soap_endpoint_url, const char *soap_action, _tls__DeletePaneConfiguration *tls__DeletePaneConfiguration); - /// Web service asynchronous operation 'recv_DeletePaneConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_DeletePaneConfiguration(_tls__DeletePaneConfigurationResponse &tls__DeletePaneConfigurationResponse); - }; -#endif diff --git a/gen/soapDisplayBindingProxy.o b/gen/soapDisplayBindingProxy.o deleted file mode 100644 index 18739ef..0000000 Binary files a/gen/soapDisplayBindingProxy.o and /dev/null differ diff --git a/gen/soapDisplayBindingService.cpp b/gen/soapDisplayBindingService.cpp deleted file mode 100644 index 5b9fa55..0000000 --- a/gen/soapDisplayBindingService.cpp +++ /dev/null @@ -1,741 +0,0 @@ -/* soapDisplayBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapDisplayBindingService.h" - -DisplayBindingService::DisplayBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - DisplayBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -DisplayBindingService::DisplayBindingService(const DisplayBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -DisplayBindingService::DisplayBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - DisplayBindingService_init(_soap->imode, _soap->omode); -} - -DisplayBindingService::DisplayBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - DisplayBindingService_init(iomode, iomode); -} - -DisplayBindingService::DisplayBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - DisplayBindingService_init(imode, omode); -} - -DisplayBindingService::~DisplayBindingService() -{ if (this->soap_own) - { DisplayBindingService::destroy(); - soap_free(this->soap); - } -} - -void DisplayBindingService::DisplayBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void DisplayBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void DisplayBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - DisplayBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -DisplayBindingService *DisplayBindingService::copy() -{ DisplayBindingService *dup = SOAP_NEW_UNMANAGED(DisplayBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -DisplayBindingService& DisplayBindingService::operator=(const DisplayBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int DisplayBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int DisplayBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int DisplayBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int DisplayBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int DisplayBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int DisplayBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void DisplayBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void DisplayBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *DisplayBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void DisplayBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void DisplayBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *DisplayBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int DisplayBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int DisplayBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET DisplayBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET DisplayBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int DisplayBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int DisplayBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___tls__GetServiceCapabilities(struct soap*, DisplayBindingService*); -static int serve___tls__GetLayout(struct soap*, DisplayBindingService*); -static int serve___tls__SetLayout(struct soap*, DisplayBindingService*); -static int serve___tls__GetDisplayOptions(struct soap*, DisplayBindingService*); -static int serve___tls__GetPaneConfigurations(struct soap*, DisplayBindingService*); -static int serve___tls__GetPaneConfiguration(struct soap*, DisplayBindingService*); -static int serve___tls__SetPaneConfigurations(struct soap*, DisplayBindingService*); -static int serve___tls__SetPaneConfiguration(struct soap*, DisplayBindingService*); -static int serve___tls__CreatePaneConfiguration(struct soap*, DisplayBindingService*); -static int serve___tls__DeletePaneConfiguration(struct soap*, DisplayBindingService*); - -int DisplayBindingService::dispatch() -{ return dispatch(this->soap); -} - -int DisplayBindingService::dispatch(struct soap* soap) -{ - DisplayBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "tls:GetServiceCapabilities")) - return serve___tls__GetServiceCapabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:GetLayout")) - return serve___tls__GetLayout(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:SetLayout")) - return serve___tls__SetLayout(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:GetDisplayOptions")) - return serve___tls__GetDisplayOptions(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:GetPaneConfigurations")) - return serve___tls__GetPaneConfigurations(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:GetPaneConfiguration")) - return serve___tls__GetPaneConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:SetPaneConfigurations")) - return serve___tls__SetPaneConfigurations(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:SetPaneConfiguration")) - return serve___tls__SetPaneConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:CreatePaneConfiguration")) - return serve___tls__CreatePaneConfiguration(soap, this); - if (!soap_match_tag(soap, soap->tag, "tls:DeletePaneConfiguration")) - return serve___tls__DeletePaneConfiguration(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___tls__GetServiceCapabilities(struct soap *soap, DisplayBindingService *service) -{ struct __tls__GetServiceCapabilities soap_tmp___tls__GetServiceCapabilities; - _tls__GetServiceCapabilitiesResponse tls__GetServiceCapabilitiesResponse; - tls__GetServiceCapabilitiesResponse.soap_default(soap); - soap_default___tls__GetServiceCapabilities(soap, &soap_tmp___tls__GetServiceCapabilities); - if (!soap_get___tls__GetServiceCapabilities(soap, &soap_tmp___tls__GetServiceCapabilities, "-tls:GetServiceCapabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetServiceCapabilities(soap_tmp___tls__GetServiceCapabilities.tls__GetServiceCapabilities, tls__GetServiceCapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__GetServiceCapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetServiceCapabilitiesResponse.soap_put(soap, "tls:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetServiceCapabilitiesResponse.soap_put(soap, "tls:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__GetLayout(struct soap *soap, DisplayBindingService *service) -{ struct __tls__GetLayout soap_tmp___tls__GetLayout; - _tls__GetLayoutResponse tls__GetLayoutResponse; - tls__GetLayoutResponse.soap_default(soap); - soap_default___tls__GetLayout(soap, &soap_tmp___tls__GetLayout); - if (!soap_get___tls__GetLayout(soap, &soap_tmp___tls__GetLayout, "-tls:GetLayout", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetLayout(soap_tmp___tls__GetLayout.tls__GetLayout, tls__GetLayoutResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__GetLayoutResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetLayoutResponse.soap_put(soap, "tls:GetLayoutResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetLayoutResponse.soap_put(soap, "tls:GetLayoutResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__SetLayout(struct soap *soap, DisplayBindingService *service) -{ struct __tls__SetLayout soap_tmp___tls__SetLayout; - _tls__SetLayoutResponse tls__SetLayoutResponse; - tls__SetLayoutResponse.soap_default(soap); - soap_default___tls__SetLayout(soap, &soap_tmp___tls__SetLayout); - if (!soap_get___tls__SetLayout(soap, &soap_tmp___tls__SetLayout, "-tls:SetLayout", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetLayout(soap_tmp___tls__SetLayout.tls__SetLayout, tls__SetLayoutResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__SetLayoutResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__SetLayoutResponse.soap_put(soap, "tls:SetLayoutResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__SetLayoutResponse.soap_put(soap, "tls:SetLayoutResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__GetDisplayOptions(struct soap *soap, DisplayBindingService *service) -{ struct __tls__GetDisplayOptions soap_tmp___tls__GetDisplayOptions; - _tls__GetDisplayOptionsResponse tls__GetDisplayOptionsResponse; - tls__GetDisplayOptionsResponse.soap_default(soap); - soap_default___tls__GetDisplayOptions(soap, &soap_tmp___tls__GetDisplayOptions); - if (!soap_get___tls__GetDisplayOptions(soap, &soap_tmp___tls__GetDisplayOptions, "-tls:GetDisplayOptions", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetDisplayOptions(soap_tmp___tls__GetDisplayOptions.tls__GetDisplayOptions, tls__GetDisplayOptionsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__GetDisplayOptionsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetDisplayOptionsResponse.soap_put(soap, "tls:GetDisplayOptionsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetDisplayOptionsResponse.soap_put(soap, "tls:GetDisplayOptionsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__GetPaneConfigurations(struct soap *soap, DisplayBindingService *service) -{ struct __tls__GetPaneConfigurations soap_tmp___tls__GetPaneConfigurations; - _tls__GetPaneConfigurationsResponse tls__GetPaneConfigurationsResponse; - tls__GetPaneConfigurationsResponse.soap_default(soap); - soap_default___tls__GetPaneConfigurations(soap, &soap_tmp___tls__GetPaneConfigurations); - if (!soap_get___tls__GetPaneConfigurations(soap, &soap_tmp___tls__GetPaneConfigurations, "-tls:GetPaneConfigurations", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetPaneConfigurations(soap_tmp___tls__GetPaneConfigurations.tls__GetPaneConfigurations, tls__GetPaneConfigurationsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__GetPaneConfigurationsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetPaneConfigurationsResponse.soap_put(soap, "tls:GetPaneConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetPaneConfigurationsResponse.soap_put(soap, "tls:GetPaneConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__GetPaneConfiguration(struct soap *soap, DisplayBindingService *service) -{ struct __tls__GetPaneConfiguration soap_tmp___tls__GetPaneConfiguration; - _tls__GetPaneConfigurationResponse tls__GetPaneConfigurationResponse; - tls__GetPaneConfigurationResponse.soap_default(soap); - soap_default___tls__GetPaneConfiguration(soap, &soap_tmp___tls__GetPaneConfiguration); - if (!soap_get___tls__GetPaneConfiguration(soap, &soap_tmp___tls__GetPaneConfiguration, "-tls:GetPaneConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetPaneConfiguration(soap_tmp___tls__GetPaneConfiguration.tls__GetPaneConfiguration, tls__GetPaneConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__GetPaneConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetPaneConfigurationResponse.soap_put(soap, "tls:GetPaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__GetPaneConfigurationResponse.soap_put(soap, "tls:GetPaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__SetPaneConfigurations(struct soap *soap, DisplayBindingService *service) -{ struct __tls__SetPaneConfigurations soap_tmp___tls__SetPaneConfigurations; - _tls__SetPaneConfigurationsResponse tls__SetPaneConfigurationsResponse; - tls__SetPaneConfigurationsResponse.soap_default(soap); - soap_default___tls__SetPaneConfigurations(soap, &soap_tmp___tls__SetPaneConfigurations); - if (!soap_get___tls__SetPaneConfigurations(soap, &soap_tmp___tls__SetPaneConfigurations, "-tls:SetPaneConfigurations", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetPaneConfigurations(soap_tmp___tls__SetPaneConfigurations.tls__SetPaneConfigurations, tls__SetPaneConfigurationsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__SetPaneConfigurationsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__SetPaneConfigurationsResponse.soap_put(soap, "tls:SetPaneConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__SetPaneConfigurationsResponse.soap_put(soap, "tls:SetPaneConfigurationsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__SetPaneConfiguration(struct soap *soap, DisplayBindingService *service) -{ struct __tls__SetPaneConfiguration soap_tmp___tls__SetPaneConfiguration; - _tls__SetPaneConfigurationResponse tls__SetPaneConfigurationResponse; - tls__SetPaneConfigurationResponse.soap_default(soap); - soap_default___tls__SetPaneConfiguration(soap, &soap_tmp___tls__SetPaneConfiguration); - if (!soap_get___tls__SetPaneConfiguration(soap, &soap_tmp___tls__SetPaneConfiguration, "-tls:SetPaneConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetPaneConfiguration(soap_tmp___tls__SetPaneConfiguration.tls__SetPaneConfiguration, tls__SetPaneConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__SetPaneConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__SetPaneConfigurationResponse.soap_put(soap, "tls:SetPaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__SetPaneConfigurationResponse.soap_put(soap, "tls:SetPaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__CreatePaneConfiguration(struct soap *soap, DisplayBindingService *service) -{ struct __tls__CreatePaneConfiguration soap_tmp___tls__CreatePaneConfiguration; - _tls__CreatePaneConfigurationResponse tls__CreatePaneConfigurationResponse; - tls__CreatePaneConfigurationResponse.soap_default(soap); - soap_default___tls__CreatePaneConfiguration(soap, &soap_tmp___tls__CreatePaneConfiguration); - if (!soap_get___tls__CreatePaneConfiguration(soap, &soap_tmp___tls__CreatePaneConfiguration, "-tls:CreatePaneConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreatePaneConfiguration(soap_tmp___tls__CreatePaneConfiguration.tls__CreatePaneConfiguration, tls__CreatePaneConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__CreatePaneConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__CreatePaneConfigurationResponse.soap_put(soap, "tls:CreatePaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__CreatePaneConfigurationResponse.soap_put(soap, "tls:CreatePaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tls__DeletePaneConfiguration(struct soap *soap, DisplayBindingService *service) -{ struct __tls__DeletePaneConfiguration soap_tmp___tls__DeletePaneConfiguration; - _tls__DeletePaneConfigurationResponse tls__DeletePaneConfigurationResponse; - tls__DeletePaneConfigurationResponse.soap_default(soap); - soap_default___tls__DeletePaneConfiguration(soap, &soap_tmp___tls__DeletePaneConfiguration); - if (!soap_get___tls__DeletePaneConfiguration(soap, &soap_tmp___tls__DeletePaneConfiguration, "-tls:DeletePaneConfiguration", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DeletePaneConfiguration(soap_tmp___tls__DeletePaneConfiguration.tls__DeletePaneConfiguration, tls__DeletePaneConfigurationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tls__DeletePaneConfigurationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__DeletePaneConfigurationResponse.soap_put(soap, "tls:DeletePaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tls__DeletePaneConfigurationResponse.soap_put(soap, "tls:DeletePaneConfigurationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapDisplayBindingService.h b/gen/soapDisplayBindingService.h deleted file mode 100644 index 82efefa..0000000 --- a/gen/soapDisplayBindingService.h +++ /dev/null @@ -1,130 +0,0 @@ -/* soapDisplayBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapDisplayBindingService_H -#define soapDisplayBindingService_H -#include "soapH.h" - - class SOAP_CMAC DisplayBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - DisplayBindingService(); - /// Copy constructor - DisplayBindingService(const DisplayBindingService&); - /// Construct service given a shared managing context - DisplayBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - DisplayBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - DisplayBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~DisplayBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void DisplayBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual DisplayBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - DisplayBindingService& operator=(const DisplayBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_tls__GetServiceCapabilities *tls__GetServiceCapabilities, _tls__GetServiceCapabilitiesResponse &tls__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetLayout' implementation, should return SOAP_OK or error code - virtual int GetLayout(_tls__GetLayout *tls__GetLayout, _tls__GetLayoutResponse &tls__GetLayoutResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetLayout' implementation, should return SOAP_OK or error code - virtual int SetLayout(_tls__SetLayout *tls__SetLayout, _tls__SetLayoutResponse &tls__SetLayoutResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetDisplayOptions' implementation, should return SOAP_OK or error code - virtual int GetDisplayOptions(_tls__GetDisplayOptions *tls__GetDisplayOptions, _tls__GetDisplayOptionsResponse &tls__GetDisplayOptionsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPaneConfigurations' implementation, should return SOAP_OK or error code - virtual int GetPaneConfigurations(_tls__GetPaneConfigurations *tls__GetPaneConfigurations, _tls__GetPaneConfigurationsResponse &tls__GetPaneConfigurationsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPaneConfiguration' implementation, should return SOAP_OK or error code - virtual int GetPaneConfiguration(_tls__GetPaneConfiguration *tls__GetPaneConfiguration, _tls__GetPaneConfigurationResponse &tls__GetPaneConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetPaneConfigurations' implementation, should return SOAP_OK or error code - virtual int SetPaneConfigurations(_tls__SetPaneConfigurations *tls__SetPaneConfigurations, _tls__SetPaneConfigurationsResponse &tls__SetPaneConfigurationsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetPaneConfiguration' implementation, should return SOAP_OK or error code - virtual int SetPaneConfiguration(_tls__SetPaneConfiguration *tls__SetPaneConfiguration, _tls__SetPaneConfigurationResponse &tls__SetPaneConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreatePaneConfiguration' implementation, should return SOAP_OK or error code - virtual int CreatePaneConfiguration(_tls__CreatePaneConfiguration *tls__CreatePaneConfiguration, _tls__CreatePaneConfigurationResponse &tls__CreatePaneConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeletePaneConfiguration' implementation, should return SOAP_OK or error code - virtual int DeletePaneConfiguration(_tls__DeletePaneConfiguration *tls__DeletePaneConfiguration, _tls__DeletePaneConfigurationResponse &tls__DeletePaneConfigurationResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapDisplayBindingService.o b/gen/soapDisplayBindingService.o deleted file mode 100644 index cdbc3c1..0000000 Binary files a/gen/soapDisplayBindingService.o and /dev/null differ diff --git a/gen/soapEventBindingProxy.cpp b/gen/soapEventBindingProxy.cpp deleted file mode 100644 index 13e4589..0000000 --- a/gen/soapEventBindingProxy.cpp +++ /dev/null @@ -1,395 +0,0 @@ -/* soapEventBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapEventBindingProxy.h" - -EventBindingProxy::EventBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -EventBindingProxy::EventBindingProxy(const EventBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -EventBindingProxy::EventBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - EventBindingProxy_init(_soap->imode, _soap->omode); -} - -EventBindingProxy::EventBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - EventBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -EventBindingProxy::EventBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -EventBindingProxy::EventBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingProxy_init(iomode, iomode); -} - -EventBindingProxy::EventBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -EventBindingProxy::EventBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingProxy_init(imode, omode); -} - -EventBindingProxy::~EventBindingProxy() -{ if (this->soap_own) - { EventBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void EventBindingProxy::EventBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -EventBindingProxy *EventBindingProxy::copy() -{ EventBindingProxy *dup = SOAP_NEW_UNMANAGED(EventBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -EventBindingProxy& EventBindingProxy::operator=(const EventBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void EventBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void EventBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - EventBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void EventBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void EventBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *EventBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *EventBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *EventBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *EventBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *EventBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int EventBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int EventBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void EventBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void EventBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *EventBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int EventBindingProxy::send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tev__GetServiceCapabilities *tev__GetServiceCapabilities) -{ - struct __teve__GetServiceCapabilities soap_tmp___teve__GetServiceCapabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/events/wsdl/EventPortType/GetServiceCapabilitiesRequest"; - soap_tmp___teve__GetServiceCapabilities.tev__GetServiceCapabilities = tev__GetServiceCapabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___teve__GetServiceCapabilities(soap, &soap_tmp___teve__GetServiceCapabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___teve__GetServiceCapabilities(soap, &soap_tmp___teve__GetServiceCapabilities, "-teve:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___teve__GetServiceCapabilities(soap, &soap_tmp___teve__GetServiceCapabilities, "-teve:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int EventBindingProxy::recv_GetServiceCapabilities(_tev__GetServiceCapabilitiesResponse &tev__GetServiceCapabilitiesResponse) -{ - tev__GetServiceCapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tev__GetServiceCapabilitiesResponse.soap_get(soap, "tev:GetServiceCapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int EventBindingProxy::send_CreatePullPointSubscription(const char *soap_endpoint_url, const char *soap_action, _tev__CreatePullPointSubscription *tev__CreatePullPointSubscription) -{ - struct __teve__CreatePullPointSubscription soap_tmp___teve__CreatePullPointSubscription; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/events/wsdl/EventPortType/CreatePullPointSubscriptionRequest"; - soap_tmp___teve__CreatePullPointSubscription.tev__CreatePullPointSubscription = tev__CreatePullPointSubscription; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___teve__CreatePullPointSubscription(soap, &soap_tmp___teve__CreatePullPointSubscription); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___teve__CreatePullPointSubscription(soap, &soap_tmp___teve__CreatePullPointSubscription, "-teve:CreatePullPointSubscription", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___teve__CreatePullPointSubscription(soap, &soap_tmp___teve__CreatePullPointSubscription, "-teve:CreatePullPointSubscription", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int EventBindingProxy::recv_CreatePullPointSubscription(_tev__CreatePullPointSubscriptionResponse &tev__CreatePullPointSubscriptionResponse) -{ - tev__CreatePullPointSubscriptionResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tev__CreatePullPointSubscriptionResponse.soap_get(soap, "tev:CreatePullPointSubscriptionResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int EventBindingProxy::send_GetEventProperties(const char *soap_endpoint_url, const char *soap_action, _tev__GetEventProperties *tev__GetEventProperties) -{ - struct __teve__GetEventProperties soap_tmp___teve__GetEventProperties; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/events/wsdl/EventPortType/GetEventPropertiesRequest"; - soap_tmp___teve__GetEventProperties.tev__GetEventProperties = tev__GetEventProperties; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___teve__GetEventProperties(soap, &soap_tmp___teve__GetEventProperties); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___teve__GetEventProperties(soap, &soap_tmp___teve__GetEventProperties, "-teve:GetEventProperties", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___teve__GetEventProperties(soap, &soap_tmp___teve__GetEventProperties, "-teve:GetEventProperties", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int EventBindingProxy::recv_GetEventProperties(_tev__GetEventPropertiesResponse &tev__GetEventPropertiesResponse) -{ - tev__GetEventPropertiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tev__GetEventPropertiesResponse.soap_get(soap, "tev:GetEventPropertiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapEventBindingProxy.h b/gen/soapEventBindingProxy.h deleted file mode 100644 index 624d05e..0000000 --- a/gen/soapEventBindingProxy.h +++ /dev/null @@ -1,111 +0,0 @@ -/* soapEventBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapEventBindingProxy_H -#define soapEventBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC EventBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'EventBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - EventBindingProxy(); - /// Copy constructor - EventBindingProxy(const EventBindingProxy& rhs); - /// Construct proxy given a shared managing context - EventBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - EventBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - EventBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - EventBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - EventBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - EventBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~EventBindingProxy(); - /// Initializer used by constructors - virtual void EventBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual EventBindingProxy *copy(); - /// Copy assignment - EventBindingProxy& operator=(const EventBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'GetServiceCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(_tev__GetServiceCapabilities *tev__GetServiceCapabilities, _tev__GetServiceCapabilitiesResponse &tev__GetServiceCapabilitiesResponse) { return this->GetServiceCapabilities(NULL, NULL, tev__GetServiceCapabilities, tev__GetServiceCapabilitiesResponse); } - /// Web service synchronous operation 'GetServiceCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tev__GetServiceCapabilities *tev__GetServiceCapabilities, _tev__GetServiceCapabilitiesResponse &tev__GetServiceCapabilitiesResponse) { return this->send_GetServiceCapabilities(soap_endpoint_url, soap_action, tev__GetServiceCapabilities) || this->recv_GetServiceCapabilities(tev__GetServiceCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServiceCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tev__GetServiceCapabilities *tev__GetServiceCapabilities); - /// Web service asynchronous operation 'recv_GetServiceCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServiceCapabilities(_tev__GetServiceCapabilitiesResponse &tev__GetServiceCapabilitiesResponse); - // - /// Web service synchronous operation 'CreatePullPointSubscription' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreatePullPointSubscription(_tev__CreatePullPointSubscription *tev__CreatePullPointSubscription, _tev__CreatePullPointSubscriptionResponse &tev__CreatePullPointSubscriptionResponse) { return this->CreatePullPointSubscription(NULL, NULL, tev__CreatePullPointSubscription, tev__CreatePullPointSubscriptionResponse); } - /// Web service synchronous operation 'CreatePullPointSubscription' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreatePullPointSubscription(const char *soap_endpoint_url, const char *soap_action, _tev__CreatePullPointSubscription *tev__CreatePullPointSubscription, _tev__CreatePullPointSubscriptionResponse &tev__CreatePullPointSubscriptionResponse) { return this->send_CreatePullPointSubscription(soap_endpoint_url, soap_action, tev__CreatePullPointSubscription) || this->recv_CreatePullPointSubscription(tev__CreatePullPointSubscriptionResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreatePullPointSubscription' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreatePullPointSubscription(const char *soap_endpoint_url, const char *soap_action, _tev__CreatePullPointSubscription *tev__CreatePullPointSubscription); - /// Web service asynchronous operation 'recv_CreatePullPointSubscription' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreatePullPointSubscription(_tev__CreatePullPointSubscriptionResponse &tev__CreatePullPointSubscriptionResponse); - // - /// Web service synchronous operation 'GetEventProperties' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetEventProperties(_tev__GetEventProperties *tev__GetEventProperties, _tev__GetEventPropertiesResponse &tev__GetEventPropertiesResponse) { return this->GetEventProperties(NULL, NULL, tev__GetEventProperties, tev__GetEventPropertiesResponse); } - /// Web service synchronous operation 'GetEventProperties' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetEventProperties(const char *soap_endpoint_url, const char *soap_action, _tev__GetEventProperties *tev__GetEventProperties, _tev__GetEventPropertiesResponse &tev__GetEventPropertiesResponse) { return this->send_GetEventProperties(soap_endpoint_url, soap_action, tev__GetEventProperties) || this->recv_GetEventProperties(tev__GetEventPropertiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetEventProperties' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetEventProperties(const char *soap_endpoint_url, const char *soap_action, _tev__GetEventProperties *tev__GetEventProperties); - /// Web service asynchronous operation 'recv_GetEventProperties' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetEventProperties(_tev__GetEventPropertiesResponse &tev__GetEventPropertiesResponse); - }; -#endif diff --git a/gen/soapEventBindingService.cpp b/gen/soapEventBindingService.cpp deleted file mode 100644 index a3284fb..0000000 --- a/gen/soapEventBindingService.cpp +++ /dev/null @@ -1,433 +0,0 @@ -/* soapEventBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapEventBindingService.h" - -EventBindingService::EventBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -EventBindingService::EventBindingService(const EventBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -EventBindingService::EventBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - EventBindingService_init(_soap->imode, _soap->omode); -} - -EventBindingService::EventBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingService_init(iomode, iomode); -} - -EventBindingService::EventBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - EventBindingService_init(imode, omode); -} - -EventBindingService::~EventBindingService() -{ if (this->soap_own) - { EventBindingService::destroy(); - soap_free(this->soap); - } -} - -void EventBindingService::EventBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void EventBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void EventBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - EventBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -EventBindingService *EventBindingService::copy() -{ EventBindingService *dup = SOAP_NEW_UNMANAGED(EventBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -EventBindingService& EventBindingService::operator=(const EventBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int EventBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int EventBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int EventBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int EventBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int EventBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int EventBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void EventBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void EventBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *EventBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void EventBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void EventBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *EventBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int EventBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int EventBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET EventBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET EventBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int EventBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int EventBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___teve__GetServiceCapabilities(struct soap*, EventBindingService*); -static int serve___teve__CreatePullPointSubscription(struct soap*, EventBindingService*); -static int serve___teve__GetEventProperties(struct soap*, EventBindingService*); - -int EventBindingService::dispatch() -{ return dispatch(this->soap); -} - -int EventBindingService::dispatch(struct soap* soap) -{ - EventBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "tev:GetServiceCapabilities")) - return serve___teve__GetServiceCapabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "tev:CreatePullPointSubscription")) - return serve___teve__CreatePullPointSubscription(soap, this); - if (!soap_match_tag(soap, soap->tag, "tev:GetEventProperties")) - return serve___teve__GetEventProperties(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___teve__GetServiceCapabilities(struct soap *soap, EventBindingService *service) -{ struct __teve__GetServiceCapabilities soap_tmp___teve__GetServiceCapabilities; - _tev__GetServiceCapabilitiesResponse tev__GetServiceCapabilitiesResponse; - tev__GetServiceCapabilitiesResponse.soap_default(soap); - soap_default___teve__GetServiceCapabilities(soap, &soap_tmp___teve__GetServiceCapabilities); - if (!soap_get___teve__GetServiceCapabilities(soap, &soap_tmp___teve__GetServiceCapabilities, "-teve:GetServiceCapabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetServiceCapabilities(soap_tmp___teve__GetServiceCapabilities.tev__GetServiceCapabilities, tev__GetServiceCapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tev__GetServiceCapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tev__GetServiceCapabilitiesResponse.soap_put(soap, "tev:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tev__GetServiceCapabilitiesResponse.soap_put(soap, "tev:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___teve__CreatePullPointSubscription(struct soap *soap, EventBindingService *service) -{ struct __teve__CreatePullPointSubscription soap_tmp___teve__CreatePullPointSubscription; - _tev__CreatePullPointSubscriptionResponse tev__CreatePullPointSubscriptionResponse; - tev__CreatePullPointSubscriptionResponse.soap_default(soap); - soap_default___teve__CreatePullPointSubscription(soap, &soap_tmp___teve__CreatePullPointSubscription); - if (!soap_get___teve__CreatePullPointSubscription(soap, &soap_tmp___teve__CreatePullPointSubscription, "-teve:CreatePullPointSubscription", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreatePullPointSubscription(soap_tmp___teve__CreatePullPointSubscription.tev__CreatePullPointSubscription, tev__CreatePullPointSubscriptionResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tev__CreatePullPointSubscriptionResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tev__CreatePullPointSubscriptionResponse.soap_put(soap, "tev:CreatePullPointSubscriptionResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tev__CreatePullPointSubscriptionResponse.soap_put(soap, "tev:CreatePullPointSubscriptionResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___teve__GetEventProperties(struct soap *soap, EventBindingService *service) -{ struct __teve__GetEventProperties soap_tmp___teve__GetEventProperties; - _tev__GetEventPropertiesResponse tev__GetEventPropertiesResponse; - tev__GetEventPropertiesResponse.soap_default(soap); - soap_default___teve__GetEventProperties(soap, &soap_tmp___teve__GetEventProperties); - if (!soap_get___teve__GetEventProperties(soap, &soap_tmp___teve__GetEventProperties, "-teve:GetEventProperties", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetEventProperties(soap_tmp___teve__GetEventProperties.tev__GetEventProperties, tev__GetEventPropertiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tev__GetEventPropertiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tev__GetEventPropertiesResponse.soap_put(soap, "tev:GetEventPropertiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tev__GetEventPropertiesResponse.soap_put(soap, "tev:GetEventPropertiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapEventBindingService.h b/gen/soapEventBindingService.h deleted file mode 100644 index 3e44749..0000000 --- a/gen/soapEventBindingService.h +++ /dev/null @@ -1,109 +0,0 @@ -/* soapEventBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapEventBindingService_H -#define soapEventBindingService_H -#include "soapH.h" - - class SOAP_CMAC EventBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - EventBindingService(); - /// Copy constructor - EventBindingService(const EventBindingService&); - /// Construct service given a shared managing context - EventBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - EventBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - EventBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~EventBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void EventBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual EventBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - EventBindingService& operator=(const EventBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_tev__GetServiceCapabilities *tev__GetServiceCapabilities, _tev__GetServiceCapabilitiesResponse &tev__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreatePullPointSubscription' implementation, should return SOAP_OK or error code - virtual int CreatePullPointSubscription(_tev__CreatePullPointSubscription *tev__CreatePullPointSubscription, _tev__CreatePullPointSubscriptionResponse &tev__CreatePullPointSubscriptionResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetEventProperties' implementation, should return SOAP_OK or error code - virtual int GetEventProperties(_tev__GetEventProperties *tev__GetEventProperties, _tev__GetEventPropertiesResponse &tev__GetEventPropertiesResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapH.h b/gen/soapH.h deleted file mode 100644 index c070445..0000000 --- a/gen/soapH.h +++ /dev/null @@ -1,196144 +0,0 @@ -/* soapH.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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_tt__IANA_IfTypes_DEFINED -#define SOAP_TYPE_tt__IANA_IfTypes_DEFINED - -inline void soap_default_tt__IANA_IfTypes(struct soap *soap, int *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__IANA_IfTypes - *a = SOAP_DEFAULT_tt__IANA_IfTypes; -#else - *a = (int)0; -#endif -} - -#define soap_tt__IANA_IfTypes2s soap_int2s - -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IANA_IfTypes(struct soap*, const char*, int, const int *, const char*); - -#define soap_s2tt__IANA_IfTypes soap_s2int - -SOAP_FMAC3 int * SOAP_FMAC4 soap_in_tt__IANA_IfTypes(struct soap*, const char*, int *, const char*); - -#define soap_instantiate_tt__IANA_IfTypes soap_instantiate_int - - -#define soap_new_tt__IANA_IfTypes soap_new_int - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IANA_IfTypes(struct soap*, const int *, const char*, const char*); - -inline int soap_write_tt__IANA_IfTypes(struct soap *soap, int const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__IANA_IfTypes(soap, p, "tt:IANA-IfTypes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__IANA_IfTypes(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_tt__IANA_IfTypes(soap, p, "tt:IANA-IfTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IANA_IfTypes(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_tt__IANA_IfTypes(soap, p, "tt:IANA-IfTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IANA_IfTypes(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_tt__IANA_IfTypes(soap, p, "tt:IANA-IfTypes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 int * SOAP_FMAC4 soap_get_tt__IANA_IfTypes(struct soap*, int *, const char*, const char*); - -inline int soap_read_tt__IANA_IfTypes(struct soap *soap, int *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__IANA_IfTypes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IANA_IfTypes(struct soap *soap, const char *URL, int *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IANA_IfTypes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IANA_IfTypes(struct soap *soap, int *p) -{ - if (::soap_read_tt__IANA_IfTypes(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_float_DEFINED -#define SOAP_TYPE_float_DEFINED - -inline void soap_default_float(struct soap *soap, float *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_float - *a = SOAP_DEFAULT_float; -#else - *a = (float)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_float(struct soap*, const char*, int, const float *, const char*); -SOAP_FMAC3 float * SOAP_FMAC4 soap_in_float(struct soap*, const char*, float *, const char*); - -SOAP_FMAC3 float * SOAP_FMAC4 soap_new_float(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_float(struct soap*, const float *, const char*, const char*); - -inline int soap_write_float(struct soap *soap, float const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_float(soap, p, "float", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_float(struct soap *soap, const char *URL, float const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_float(soap, p, "float", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_float(struct soap *soap, const char *URL, float const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_float(soap, p, "float", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_float(struct soap *soap, const char *URL, float const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_float(soap, p, "float", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 float * SOAP_FMAC4 soap_get_float(struct soap*, float *, const char*, const char*); - -inline int soap_read_float(struct soap *soap, float *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_float(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_float(struct soap *soap, const char *URL, float *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_float(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_float(struct soap *soap, float *p) -{ - if (::soap_read_float(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_double_DEFINED -#define SOAP_TYPE_double_DEFINED - -inline void soap_default_double(struct soap *soap, double *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_double - *a = SOAP_DEFAULT_double; -#else - *a = (double)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_double(struct soap*, const char*, int, const double *, const char*); -SOAP_FMAC3 double * SOAP_FMAC4 soap_in_double(struct soap*, const char*, double *, const char*); - -SOAP_FMAC3 double * SOAP_FMAC4 soap_new_double(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_double(struct soap*, const double *, const char*, const char*); - -inline int soap_write_double(struct soap *soap, double const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_double(soap, p, "double", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_double(struct soap *soap, const char *URL, double const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_double(soap, p, "double", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_double(struct soap *soap, const char *URL, double const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_double(soap, p, "double", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_double(struct soap *soap, const char *URL, double const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_double(soap, p, "double", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 double * SOAP_FMAC4 soap_get_double(struct soap*, double *, const char*, const char*); - -inline int soap_read_double(struct soap *soap, double *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_double(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_double(struct soap *soap, const char *URL, double *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_double(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_double(struct soap *soap, double *p) -{ - if (::soap_read_double(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_unsignedByte_DEFINED -#define SOAP_TYPE_unsignedByte_DEFINED - -inline void soap_default_unsignedByte(struct soap *soap, unsigned char *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_unsignedByte - *a = SOAP_DEFAULT_unsignedByte; -#else - *a = (unsigned char)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_unsignedByte(struct soap*, const char*, int, const unsigned char *, const char*); -SOAP_FMAC3 unsigned char * SOAP_FMAC4 soap_in_unsignedByte(struct soap*, const char*, unsigned char *, const char*); - -SOAP_FMAC3 unsigned char * SOAP_FMAC4 soap_new_unsignedByte(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_unsignedByte(struct soap*, const unsigned char *, const char*, const char*); - -inline int soap_write_unsignedByte(struct soap *soap, unsigned char const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_unsignedByte(soap, p, "unsignedByte", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_unsignedByte(struct soap *soap, const char *URL, unsigned char const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_unsignedByte(soap, p, "unsignedByte", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_unsignedByte(struct soap *soap, const char *URL, unsigned char const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_unsignedByte(soap, p, "unsignedByte", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_unsignedByte(struct soap *soap, const char *URL, unsigned char const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_unsignedByte(soap, p, "unsignedByte", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 unsigned char * SOAP_FMAC4 soap_get_unsignedByte(struct soap*, unsigned char *, const char*, const char*); - -inline int soap_read_unsignedByte(struct soap *soap, unsigned char *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_unsignedByte(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_unsignedByte(struct soap *soap, const char *URL, unsigned char *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_unsignedByte(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_unsignedByte(struct soap *soap, unsigned char *p) -{ - if (::soap_read_unsignedByte(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _wsdd__MetadataVersion is a typedef synonym of unsignedInt */ - -#ifndef SOAP_TYPE__wsdd__MetadataVersion_DEFINED -#define SOAP_TYPE__wsdd__MetadataVersion_DEFINED - -#define soap_default__wsdd__MetadataVersion soap_default_unsignedInt - - -#define soap__wsdd__MetadataVersion2s soap_unsignedInt2s - - -#define soap_out__wsdd__MetadataVersion soap_out_unsignedInt - - -#define soap_s2_wsdd__MetadataVersion soap_s2unsignedInt - - -#define soap_in__wsdd__MetadataVersion soap_in_unsignedInt - - -#define soap_instantiate__wsdd__MetadataVersion soap_instantiate_unsignedInt - - -#define soap_new__wsdd__MetadataVersion soap_new_unsignedInt - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__MetadataVersion(struct soap*, const unsigned int *, const char*, const char*); - -inline int soap_write__wsdd__MetadataVersion(struct soap *soap, unsigned int const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsdd__MetadataVersion(soap, p, "wsdd:MetadataVersion", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsdd__MetadataVersion(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsdd__MetadataVersion(soap, p, "wsdd:MetadataVersion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__MetadataVersion(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsdd__MetadataVersion(soap, p, "wsdd:MetadataVersion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__MetadataVersion(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsdd__MetadataVersion(soap, p, "wsdd:MetadataVersion", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__MetadataVersion soap_get_unsignedInt - - -#define soap_read__wsdd__MetadataVersion soap_read_unsignedInt - - -#define soap_GET__wsdd__MetadataVersion soap_GET_unsignedInt - - -#define soap_POST_recv__wsdd__MetadataVersion soap_POST_recv_unsignedInt - -#endif -/* _wsa__ReplyAfter is a typedef synonym of unsignedInt */ - -#ifndef SOAP_TYPE__wsa__ReplyAfter_DEFINED -#define SOAP_TYPE__wsa__ReplyAfter_DEFINED - -#define soap_default__wsa__ReplyAfter soap_default_unsignedInt - - -#define soap__wsa__ReplyAfter2s soap_unsignedInt2s - - -#define soap_out__wsa__ReplyAfter soap_out_unsignedInt - - -#define soap_s2_wsa__ReplyAfter soap_s2unsignedInt - - -#define soap_in__wsa__ReplyAfter soap_in_unsignedInt - - -#define soap_instantiate__wsa__ReplyAfter soap_instantiate_unsignedInt - - -#define soap_new__wsa__ReplyAfter soap_new_unsignedInt - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__ReplyAfter(struct soap*, const unsigned int *, const char*, const char*); - -inline int soap_write__wsa__ReplyAfter(struct soap *soap, unsigned int const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa__ReplyAfter(soap, p, "wsa:ReplyAfter", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa__ReplyAfter(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa__ReplyAfter(soap, p, "wsa:ReplyAfter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__ReplyAfter(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa__ReplyAfter(soap, p, "wsa:ReplyAfter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__ReplyAfter(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa__ReplyAfter(soap, p, "wsa:ReplyAfter", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__ReplyAfter soap_get_unsignedInt - - -#define soap_read__wsa__ReplyAfter soap_read_unsignedInt - - -#define soap_GET__wsa__ReplyAfter soap_GET_unsignedInt - - -#define soap_POST_recv__wsa__ReplyAfter soap_POST_recv_unsignedInt - -#endif - -#ifndef SOAP_TYPE_unsignedInt_DEFINED -#define SOAP_TYPE_unsignedInt_DEFINED - -inline void soap_default_unsignedInt(struct soap *soap, unsigned int *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_unsignedInt - *a = SOAP_DEFAULT_unsignedInt; -#else - *a = (unsigned int)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_unsignedInt(struct soap*, const char*, int, const unsigned int *, const char*); -SOAP_FMAC3 unsigned int * SOAP_FMAC4 soap_in_unsignedInt(struct soap*, const char*, unsigned int *, const char*); - -SOAP_FMAC3 unsigned int * SOAP_FMAC4 soap_new_unsignedInt(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_unsignedInt(struct soap*, const unsigned int *, const char*, const char*); - -inline int soap_write_unsignedInt(struct soap *soap, unsigned int const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_unsignedInt(soap, p, "unsignedInt", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_unsignedInt(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_unsignedInt(soap, p, "unsignedInt", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_unsignedInt(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_unsignedInt(soap, p, "unsignedInt", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_unsignedInt(struct soap *soap, const char *URL, unsigned int const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_unsignedInt(soap, p, "unsignedInt", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 unsigned int * SOAP_FMAC4 soap_get_unsignedInt(struct soap*, unsigned int *, const char*, const char*); - -inline int soap_read_unsignedInt(struct soap *soap, unsigned int *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_unsignedInt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_unsignedInt(struct soap *soap, const char *URL, unsigned int *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_unsignedInt(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_unsignedInt(struct soap *soap, unsigned int *p) -{ - if (::soap_read_unsignedInt(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _wsa5__RetryAfter is a typedef synonym of ULONG64 */ - -#ifndef SOAP_TYPE__wsa5__RetryAfter_DEFINED -#define SOAP_TYPE__wsa5__RetryAfter_DEFINED - -#define soap_default__wsa5__RetryAfter soap_default_ULONG64 - - -#define soap__wsa5__RetryAfter2s soap_ULONG642s - - -#define soap_out__wsa5__RetryAfter soap_out_ULONG64 - - -#define soap_s2_wsa5__RetryAfter soap_s2ULONG64 - - -#define soap_in__wsa5__RetryAfter soap_in_ULONG64 - - -#define soap_instantiate__wsa5__RetryAfter soap_instantiate_ULONG64 - - -#define soap_new__wsa5__RetryAfter soap_new_ULONG64 - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__RetryAfter(struct soap*, const ULONG64 *, const char*, const char*); - -inline int soap_write__wsa5__RetryAfter(struct soap *soap, ULONG64 const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa5__RetryAfter(soap, p, "wsa5:RetryAfter", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa5__RetryAfter(struct soap *soap, const char *URL, ULONG64 const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa5__RetryAfter(soap, p, "wsa5:RetryAfter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__RetryAfter(struct soap *soap, const char *URL, ULONG64 const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa5__RetryAfter(soap, p, "wsa5:RetryAfter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__RetryAfter(struct soap *soap, const char *URL, ULONG64 const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa5__RetryAfter(soap, p, "wsa5:RetryAfter", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__RetryAfter soap_get_ULONG64 - - -#define soap_read__wsa5__RetryAfter soap_read_ULONG64 - - -#define soap_GET__wsa5__RetryAfter soap_GET_ULONG64 - - -#define soap_POST_recv__wsa5__RetryAfter soap_POST_recv_ULONG64 - -#endif - -#ifndef SOAP_TYPE_ULONG64_DEFINED -#define SOAP_TYPE_ULONG64_DEFINED - -inline void soap_default_ULONG64(struct soap *soap, ULONG64 *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_ULONG64 - *a = SOAP_DEFAULT_ULONG64; -#else - *a = (ULONG64)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ULONG64(struct soap*, const char*, int, const ULONG64 *, const char*); -SOAP_FMAC3 ULONG64 * SOAP_FMAC4 soap_in_ULONG64(struct soap*, const char*, ULONG64 *, const char*); - -SOAP_FMAC3 ULONG64 * SOAP_FMAC4 soap_new_ULONG64(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ULONG64(struct soap*, const ULONG64 *, const char*, const char*); - -inline int soap_write_ULONG64(struct soap *soap, ULONG64 const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_ULONG64(soap, p, "unsignedLong", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_ULONG64(struct soap *soap, const char *URL, ULONG64 const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_ULONG64(soap, p, "unsignedLong", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ULONG64(struct soap *soap, const char *URL, ULONG64 const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_ULONG64(soap, p, "unsignedLong", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ULONG64(struct soap *soap, const char *URL, ULONG64 const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_ULONG64(soap, p, "unsignedLong", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 ULONG64 * SOAP_FMAC4 soap_get_ULONG64(struct soap*, ULONG64 *, const char*, const char*); - -inline int soap_read_ULONG64(struct soap *soap, ULONG64 *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_ULONG64(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ULONG64(struct soap *soap, const char *URL, ULONG64 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ULONG64(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ULONG64(struct soap *soap, ULONG64 *p) -{ - if (::soap_read_ULONG64(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_timg__ImagingPresetType_DEFINED -#define SOAP_TYPE_timg__ImagingPresetType_DEFINED - -inline void soap_default_timg__ImagingPresetType(struct soap *soap, enum timg__ImagingPresetType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_timg__ImagingPresetType - *a = SOAP_DEFAULT_timg__ImagingPresetType; -#else - *a = (enum timg__ImagingPresetType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__ImagingPresetType(struct soap*, const char*, int, const enum timg__ImagingPresetType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_timg__ImagingPresetType2s(struct soap*, enum timg__ImagingPresetType); -SOAP_FMAC3 enum timg__ImagingPresetType * SOAP_FMAC4 soap_in_timg__ImagingPresetType(struct soap*, const char*, enum timg__ImagingPresetType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2timg__ImagingPresetType(struct soap*, const char*, enum timg__ImagingPresetType *); - -SOAP_FMAC3 enum timg__ImagingPresetType * SOAP_FMAC4 soap_new_timg__ImagingPresetType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_timg__ImagingPresetType(struct soap*, const enum timg__ImagingPresetType *, const char*, const char*); - -inline int soap_write_timg__ImagingPresetType(struct soap *soap, enum timg__ImagingPresetType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_timg__ImagingPresetType(soap, p, "timg:ImagingPresetType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_timg__ImagingPresetType(struct soap *soap, const char *URL, enum timg__ImagingPresetType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_timg__ImagingPresetType(soap, p, "timg:ImagingPresetType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_timg__ImagingPresetType(struct soap *soap, const char *URL, enum timg__ImagingPresetType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_timg__ImagingPresetType(soap, p, "timg:ImagingPresetType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_timg__ImagingPresetType(struct soap *soap, const char *URL, enum timg__ImagingPresetType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_timg__ImagingPresetType(soap, p, "timg:ImagingPresetType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum timg__ImagingPresetType * SOAP_FMAC4 soap_get_timg__ImagingPresetType(struct soap*, enum timg__ImagingPresetType *, const char*, const char*); - -inline int soap_read_timg__ImagingPresetType(struct soap *soap, enum timg__ImagingPresetType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_timg__ImagingPresetType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_timg__ImagingPresetType(struct soap *soap, const char *URL, enum timg__ImagingPresetType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_timg__ImagingPresetType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_timg__ImagingPresetType(struct soap *soap, enum timg__ImagingPresetType *p) -{ - if (::soap_read_timg__ImagingPresetType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__StorageType_DEFINED -#define SOAP_TYPE_tds__StorageType_DEFINED - -inline void soap_default_tds__StorageType(struct soap *soap, enum tds__StorageType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tds__StorageType - *a = SOAP_DEFAULT_tds__StorageType; -#else - *a = (enum tds__StorageType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageType(struct soap*, const char*, int, const enum tds__StorageType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tds__StorageType2s(struct soap*, enum tds__StorageType); -SOAP_FMAC3 enum tds__StorageType * SOAP_FMAC4 soap_in_tds__StorageType(struct soap*, const char*, enum tds__StorageType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tds__StorageType(struct soap*, const char*, enum tds__StorageType *); - -SOAP_FMAC3 enum tds__StorageType * SOAP_FMAC4 soap_new_tds__StorageType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tds__StorageType(struct soap*, const enum tds__StorageType *, const char*, const char*); - -inline int soap_write_tds__StorageType(struct soap *soap, enum tds__StorageType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tds__StorageType(soap, p, "tds:StorageType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tds__StorageType(struct soap *soap, const char *URL, enum tds__StorageType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__StorageType(soap, p, "tds:StorageType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__StorageType(struct soap *soap, const char *URL, enum tds__StorageType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__StorageType(soap, p, "tds:StorageType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__StorageType(struct soap *soap, const char *URL, enum tds__StorageType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__StorageType(soap, p, "tds:StorageType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tds__StorageType * SOAP_FMAC4 soap_get_tds__StorageType(struct soap*, enum tds__StorageType *, const char*, const char*); - -inline int soap_read_tds__StorageType(struct soap *soap, enum tds__StorageType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tds__StorageType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__StorageType(struct soap *soap, const char *URL, enum tds__StorageType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__StorageType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__StorageType(struct soap *soap, enum tds__StorageType *p) -{ - if (::soap_read_tds__StorageType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__AutoGeoModes_DEFINED -#define SOAP_TYPE_tds__AutoGeoModes_DEFINED - -inline void soap_default_tds__AutoGeoModes(struct soap *soap, enum tds__AutoGeoModes *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tds__AutoGeoModes - *a = SOAP_DEFAULT_tds__AutoGeoModes; -#else - *a = (enum tds__AutoGeoModes)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__AutoGeoModes(struct soap*, const char*, int, const enum tds__AutoGeoModes *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tds__AutoGeoModes2s(struct soap*, enum tds__AutoGeoModes); -SOAP_FMAC3 enum tds__AutoGeoModes * SOAP_FMAC4 soap_in_tds__AutoGeoModes(struct soap*, const char*, enum tds__AutoGeoModes *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tds__AutoGeoModes(struct soap*, const char*, enum tds__AutoGeoModes *); - -SOAP_FMAC3 enum tds__AutoGeoModes * SOAP_FMAC4 soap_new_tds__AutoGeoModes(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tds__AutoGeoModes(struct soap*, const enum tds__AutoGeoModes *, const char*, const char*); - -inline int soap_write_tds__AutoGeoModes(struct soap *soap, enum tds__AutoGeoModes const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tds__AutoGeoModes(soap, p, "tds:AutoGeoModes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tds__AutoGeoModes(struct soap *soap, const char *URL, enum tds__AutoGeoModes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__AutoGeoModes(soap, p, "tds:AutoGeoModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__AutoGeoModes(struct soap *soap, const char *URL, enum tds__AutoGeoModes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__AutoGeoModes(soap, p, "tds:AutoGeoModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__AutoGeoModes(struct soap *soap, const char *URL, enum tds__AutoGeoModes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__AutoGeoModes(soap, p, "tds:AutoGeoModes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tds__AutoGeoModes * SOAP_FMAC4 soap_get_tds__AutoGeoModes(struct soap*, enum tds__AutoGeoModes *, const char*, const char*); - -inline int soap_read_tds__AutoGeoModes(struct soap *soap, enum tds__AutoGeoModes *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tds__AutoGeoModes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__AutoGeoModes(struct soap *soap, const char *URL, enum tds__AutoGeoModes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__AutoGeoModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__AutoGeoModes(struct soap *soap, enum tds__AutoGeoModes *p) -{ - if (::soap_read_tds__AutoGeoModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__ParityBit_DEFINED -#define SOAP_TYPE_tmd__ParityBit_DEFINED - -inline void soap_default_tmd__ParityBit(struct soap *soap, enum tmd__ParityBit *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tmd__ParityBit - *a = SOAP_DEFAULT_tmd__ParityBit; -#else - *a = (enum tmd__ParityBit)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__ParityBit(struct soap*, const char*, int, const enum tmd__ParityBit *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tmd__ParityBit2s(struct soap*, enum tmd__ParityBit); -SOAP_FMAC3 enum tmd__ParityBit * SOAP_FMAC4 soap_in_tmd__ParityBit(struct soap*, const char*, enum tmd__ParityBit *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tmd__ParityBit(struct soap*, const char*, enum tmd__ParityBit *); - -SOAP_FMAC3 enum tmd__ParityBit * SOAP_FMAC4 soap_new_tmd__ParityBit(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tmd__ParityBit(struct soap*, const enum tmd__ParityBit *, const char*, const char*); - -inline int soap_write_tmd__ParityBit(struct soap *soap, enum tmd__ParityBit const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tmd__ParityBit(soap, p, "tmd:ParityBit", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tmd__ParityBit(struct soap *soap, const char *URL, enum tmd__ParityBit const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__ParityBit(soap, p, "tmd:ParityBit", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__ParityBit(struct soap *soap, const char *URL, enum tmd__ParityBit const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__ParityBit(soap, p, "tmd:ParityBit", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__ParityBit(struct soap *soap, const char *URL, enum tmd__ParityBit const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__ParityBit(soap, p, "tmd:ParityBit", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tmd__ParityBit * SOAP_FMAC4 soap_get_tmd__ParityBit(struct soap*, enum tmd__ParityBit *, const char*, const char*); - -inline int soap_read_tmd__ParityBit(struct soap *soap, enum tmd__ParityBit *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tmd__ParityBit(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__ParityBit(struct soap *soap, const char *URL, enum tmd__ParityBit *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__ParityBit(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__ParityBit(struct soap *soap, enum tmd__ParityBit *p) -{ - if (::soap_read_tmd__ParityBit(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__SerialPortType_DEFINED -#define SOAP_TYPE_tmd__SerialPortType_DEFINED - -inline void soap_default_tmd__SerialPortType(struct soap *soap, enum tmd__SerialPortType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tmd__SerialPortType - *a = SOAP_DEFAULT_tmd__SerialPortType; -#else - *a = (enum tmd__SerialPortType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortType(struct soap*, const char*, int, const enum tmd__SerialPortType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tmd__SerialPortType2s(struct soap*, enum tmd__SerialPortType); -SOAP_FMAC3 enum tmd__SerialPortType * SOAP_FMAC4 soap_in_tmd__SerialPortType(struct soap*, const char*, enum tmd__SerialPortType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tmd__SerialPortType(struct soap*, const char*, enum tmd__SerialPortType *); - -SOAP_FMAC3 enum tmd__SerialPortType * SOAP_FMAC4 soap_new_tmd__SerialPortType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tmd__SerialPortType(struct soap*, const enum tmd__SerialPortType *, const char*, const char*); - -inline int soap_write_tmd__SerialPortType(struct soap *soap, enum tmd__SerialPortType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tmd__SerialPortType(soap, p, "tmd:SerialPortType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tmd__SerialPortType(struct soap *soap, const char *URL, enum tmd__SerialPortType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__SerialPortType(soap, p, "tmd:SerialPortType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__SerialPortType(struct soap *soap, const char *URL, enum tmd__SerialPortType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__SerialPortType(soap, p, "tmd:SerialPortType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__SerialPortType(struct soap *soap, const char *URL, enum tmd__SerialPortType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__SerialPortType(soap, p, "tmd:SerialPortType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tmd__SerialPortType * SOAP_FMAC4 soap_get_tmd__SerialPortType(struct soap*, enum tmd__SerialPortType *, const char*, const char*); - -inline int soap_read_tmd__SerialPortType(struct soap *soap, enum tmd__SerialPortType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tmd__SerialPortType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__SerialPortType(struct soap *soap, const char *URL, enum tmd__SerialPortType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__SerialPortType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__SerialPortType(struct soap *soap, enum tmd__SerialPortType *p) -{ - if (::soap_read_tmd__SerialPortType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDType_DEFINED -#define SOAP_TYPE_tt__OSDType_DEFINED - -inline void soap_default_tt__OSDType(struct soap *soap, enum tt__OSDType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__OSDType - *a = SOAP_DEFAULT_tt__OSDType; -#else - *a = (enum tt__OSDType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDType(struct soap*, const char*, int, const enum tt__OSDType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__OSDType2s(struct soap*, enum tt__OSDType); -SOAP_FMAC3 enum tt__OSDType * SOAP_FMAC4 soap_in_tt__OSDType(struct soap*, const char*, enum tt__OSDType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__OSDType(struct soap*, const char*, enum tt__OSDType *); - -SOAP_FMAC3 enum tt__OSDType * SOAP_FMAC4 soap_new_tt__OSDType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__OSDType(struct soap*, const enum tt__OSDType *, const char*, const char*); - -inline int soap_write_tt__OSDType(struct soap *soap, enum tt__OSDType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__OSDType(soap, p, "tt:OSDType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDType(struct soap *soap, const char *URL, enum tt__OSDType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__OSDType(soap, p, "tt:OSDType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDType(struct soap *soap, const char *URL, enum tt__OSDType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__OSDType(soap, p, "tt:OSDType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDType(struct soap *soap, const char *URL, enum tt__OSDType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__OSDType(soap, p, "tt:OSDType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__OSDType * SOAP_FMAC4 soap_get_tt__OSDType(struct soap*, enum tt__OSDType *, const char*, const char*); - -inline int soap_read_tt__OSDType(struct soap *soap, enum tt__OSDType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__OSDType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDType(struct soap *soap, const char *URL, enum tt__OSDType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDType(struct soap *soap, enum tt__OSDType *p) -{ - if (::soap_read_tt__OSDType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ModeOfOperation_DEFINED -#define SOAP_TYPE_tt__ModeOfOperation_DEFINED - -inline void soap_default_tt__ModeOfOperation(struct soap *soap, enum tt__ModeOfOperation *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ModeOfOperation - *a = SOAP_DEFAULT_tt__ModeOfOperation; -#else - *a = (enum tt__ModeOfOperation)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ModeOfOperation(struct soap*, const char*, int, const enum tt__ModeOfOperation *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ModeOfOperation2s(struct soap*, enum tt__ModeOfOperation); -SOAP_FMAC3 enum tt__ModeOfOperation * SOAP_FMAC4 soap_in_tt__ModeOfOperation(struct soap*, const char*, enum tt__ModeOfOperation *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ModeOfOperation(struct soap*, const char*, enum tt__ModeOfOperation *); - -SOAP_FMAC3 enum tt__ModeOfOperation * SOAP_FMAC4 soap_new_tt__ModeOfOperation(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ModeOfOperation(struct soap*, const enum tt__ModeOfOperation *, const char*, const char*); - -inline int soap_write_tt__ModeOfOperation(struct soap *soap, enum tt__ModeOfOperation const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ModeOfOperation(soap, p, "tt:ModeOfOperation", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ModeOfOperation(struct soap *soap, const char *URL, enum tt__ModeOfOperation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ModeOfOperation(soap, p, "tt:ModeOfOperation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ModeOfOperation(struct soap *soap, const char *URL, enum tt__ModeOfOperation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ModeOfOperation(soap, p, "tt:ModeOfOperation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ModeOfOperation(struct soap *soap, const char *URL, enum tt__ModeOfOperation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ModeOfOperation(soap, p, "tt:ModeOfOperation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ModeOfOperation * SOAP_FMAC4 soap_get_tt__ModeOfOperation(struct soap*, enum tt__ModeOfOperation *, const char*, const char*); - -inline int soap_read_tt__ModeOfOperation(struct soap *soap, enum tt__ModeOfOperation *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ModeOfOperation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ModeOfOperation(struct soap *soap, const char *URL, enum tt__ModeOfOperation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ModeOfOperation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ModeOfOperation(struct soap *soap, enum tt__ModeOfOperation *p) -{ - if (::soap_read_tt__ModeOfOperation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TrackType_DEFINED -#define SOAP_TYPE_tt__TrackType_DEFINED - -inline void soap_default_tt__TrackType(struct soap *soap, enum tt__TrackType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__TrackType - *a = SOAP_DEFAULT_tt__TrackType; -#else - *a = (enum tt__TrackType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackType(struct soap*, const char*, int, const enum tt__TrackType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__TrackType2s(struct soap*, enum tt__TrackType); -SOAP_FMAC3 enum tt__TrackType * SOAP_FMAC4 soap_in_tt__TrackType(struct soap*, const char*, enum tt__TrackType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__TrackType(struct soap*, const char*, enum tt__TrackType *); - -SOAP_FMAC3 enum tt__TrackType * SOAP_FMAC4 soap_new_tt__TrackType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__TrackType(struct soap*, const enum tt__TrackType *, const char*, const char*); - -inline int soap_write_tt__TrackType(struct soap *soap, enum tt__TrackType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__TrackType(soap, p, "tt:TrackType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__TrackType(struct soap *soap, const char *URL, enum tt__TrackType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__TrackType(soap, p, "tt:TrackType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TrackType(struct soap *soap, const char *URL, enum tt__TrackType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__TrackType(soap, p, "tt:TrackType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TrackType(struct soap *soap, const char *URL, enum tt__TrackType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__TrackType(soap, p, "tt:TrackType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__TrackType * SOAP_FMAC4 soap_get_tt__TrackType(struct soap*, enum tt__TrackType *, const char*, const char*); - -inline int soap_read_tt__TrackType(struct soap *soap, enum tt__TrackType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__TrackType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TrackType(struct soap *soap, const char *URL, enum tt__TrackType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TrackType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TrackType(struct soap *soap, enum tt__TrackType *p) -{ - if (::soap_read_tt__TrackType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingStatus_DEFINED -#define SOAP_TYPE_tt__RecordingStatus_DEFINED - -inline void soap_default_tt__RecordingStatus(struct soap *soap, enum tt__RecordingStatus *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__RecordingStatus - *a = SOAP_DEFAULT_tt__RecordingStatus; -#else - *a = (enum tt__RecordingStatus)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingStatus(struct soap*, const char*, int, const enum tt__RecordingStatus *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RecordingStatus2s(struct soap*, enum tt__RecordingStatus); -SOAP_FMAC3 enum tt__RecordingStatus * SOAP_FMAC4 soap_in_tt__RecordingStatus(struct soap*, const char*, enum tt__RecordingStatus *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RecordingStatus(struct soap*, const char*, enum tt__RecordingStatus *); - -SOAP_FMAC3 enum tt__RecordingStatus * SOAP_FMAC4 soap_new_tt__RecordingStatus(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RecordingStatus(struct soap*, const enum tt__RecordingStatus *, const char*, const char*); - -inline int soap_write_tt__RecordingStatus(struct soap *soap, enum tt__RecordingStatus const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__RecordingStatus(soap, p, "tt:RecordingStatus", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingStatus(struct soap *soap, const char *URL, enum tt__RecordingStatus const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingStatus(soap, p, "tt:RecordingStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingStatus(struct soap *soap, const char *URL, enum tt__RecordingStatus const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingStatus(soap, p, "tt:RecordingStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingStatus(struct soap *soap, const char *URL, enum tt__RecordingStatus const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingStatus(soap, p, "tt:RecordingStatus", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__RecordingStatus * SOAP_FMAC4 soap_get_tt__RecordingStatus(struct soap*, enum tt__RecordingStatus *, const char*, const char*); - -inline int soap_read_tt__RecordingStatus(struct soap *soap, enum tt__RecordingStatus *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__RecordingStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingStatus(struct soap *soap, const char *URL, enum tt__RecordingStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingStatus(struct soap *soap, enum tt__RecordingStatus *p) -{ - if (::soap_read_tt__RecordingStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SearchState_DEFINED -#define SOAP_TYPE_tt__SearchState_DEFINED - -inline void soap_default_tt__SearchState(struct soap *soap, enum tt__SearchState *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__SearchState - *a = SOAP_DEFAULT_tt__SearchState; -#else - *a = (enum tt__SearchState)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchState(struct soap*, const char*, int, const enum tt__SearchState *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SearchState2s(struct soap*, enum tt__SearchState); -SOAP_FMAC3 enum tt__SearchState * SOAP_FMAC4 soap_in_tt__SearchState(struct soap*, const char*, enum tt__SearchState *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SearchState(struct soap*, const char*, enum tt__SearchState *); - -SOAP_FMAC3 enum tt__SearchState * SOAP_FMAC4 soap_new_tt__SearchState(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SearchState(struct soap*, const enum tt__SearchState *, const char*, const char*); - -inline int soap_write_tt__SearchState(struct soap *soap, enum tt__SearchState const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__SearchState(soap, p, "tt:SearchState", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__SearchState(struct soap *soap, const char *URL, enum tt__SearchState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SearchState(soap, p, "tt:SearchState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SearchState(struct soap *soap, const char *URL, enum tt__SearchState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SearchState(soap, p, "tt:SearchState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SearchState(struct soap *soap, const char *URL, enum tt__SearchState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SearchState(soap, p, "tt:SearchState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__SearchState * SOAP_FMAC4 soap_get_tt__SearchState(struct soap*, enum tt__SearchState *, const char*, const char*); - -inline int soap_read_tt__SearchState(struct soap *soap, enum tt__SearchState *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__SearchState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SearchState(struct soap *soap, const char *URL, enum tt__SearchState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SearchState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SearchState(struct soap *soap, enum tt__SearchState *p) -{ - if (::soap_read_tt__SearchState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReceiverState_DEFINED -#define SOAP_TYPE_tt__ReceiverState_DEFINED - -inline void soap_default_tt__ReceiverState(struct soap *soap, enum tt__ReceiverState *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ReceiverState - *a = SOAP_DEFAULT_tt__ReceiverState; -#else - *a = (enum tt__ReceiverState)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverState(struct soap*, const char*, int, const enum tt__ReceiverState *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ReceiverState2s(struct soap*, enum tt__ReceiverState); -SOAP_FMAC3 enum tt__ReceiverState * SOAP_FMAC4 soap_in_tt__ReceiverState(struct soap*, const char*, enum tt__ReceiverState *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ReceiverState(struct soap*, const char*, enum tt__ReceiverState *); - -SOAP_FMAC3 enum tt__ReceiverState * SOAP_FMAC4 soap_new_tt__ReceiverState(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReceiverState(struct soap*, const enum tt__ReceiverState *, const char*, const char*); - -inline int soap_write_tt__ReceiverState(struct soap *soap, enum tt__ReceiverState const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ReceiverState(soap, p, "tt:ReceiverState", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverState(struct soap *soap, const char *URL, enum tt__ReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReceiverState(soap, p, "tt:ReceiverState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverState(struct soap *soap, const char *URL, enum tt__ReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReceiverState(soap, p, "tt:ReceiverState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverState(struct soap *soap, const char *URL, enum tt__ReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReceiverState(soap, p, "tt:ReceiverState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ReceiverState * SOAP_FMAC4 soap_get_tt__ReceiverState(struct soap*, enum tt__ReceiverState *, const char*, const char*); - -inline int soap_read_tt__ReceiverState(struct soap *soap, enum tt__ReceiverState *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverState(struct soap *soap, const char *URL, enum tt__ReceiverState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverState(struct soap *soap, enum tt__ReceiverState *p) -{ - if (::soap_read_tt__ReceiverState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReceiverMode_DEFINED -#define SOAP_TYPE_tt__ReceiverMode_DEFINED - -inline void soap_default_tt__ReceiverMode(struct soap *soap, enum tt__ReceiverMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ReceiverMode - *a = SOAP_DEFAULT_tt__ReceiverMode; -#else - *a = (enum tt__ReceiverMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverMode(struct soap*, const char*, int, const enum tt__ReceiverMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ReceiverMode2s(struct soap*, enum tt__ReceiverMode); -SOAP_FMAC3 enum tt__ReceiverMode * SOAP_FMAC4 soap_in_tt__ReceiverMode(struct soap*, const char*, enum tt__ReceiverMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ReceiverMode(struct soap*, const char*, enum tt__ReceiverMode *); - -SOAP_FMAC3 enum tt__ReceiverMode * SOAP_FMAC4 soap_new_tt__ReceiverMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReceiverMode(struct soap*, const enum tt__ReceiverMode *, const char*, const char*); - -inline int soap_write_tt__ReceiverMode(struct soap *soap, enum tt__ReceiverMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ReceiverMode(soap, p, "tt:ReceiverMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverMode(struct soap *soap, const char *URL, enum tt__ReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReceiverMode(soap, p, "tt:ReceiverMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverMode(struct soap *soap, const char *URL, enum tt__ReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReceiverMode(soap, p, "tt:ReceiverMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverMode(struct soap *soap, const char *URL, enum tt__ReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReceiverMode(soap, p, "tt:ReceiverMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ReceiverMode * SOAP_FMAC4 soap_get_tt__ReceiverMode(struct soap*, enum tt__ReceiverMode *, const char*, const char*); - -inline int soap_read_tt__ReceiverMode(struct soap *soap, enum tt__ReceiverMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverMode(struct soap *soap, const char *URL, enum tt__ReceiverMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverMode(struct soap *soap, enum tt__ReceiverMode *p) -{ - if (::soap_read_tt__ReceiverMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Direction_DEFINED -#define SOAP_TYPE_tt__Direction_DEFINED - -inline void soap_default_tt__Direction(struct soap *soap, enum tt__Direction *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Direction - *a = SOAP_DEFAULT_tt__Direction; -#else - *a = (enum tt__Direction)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Direction(struct soap*, const char*, int, const enum tt__Direction *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Direction2s(struct soap*, enum tt__Direction); -SOAP_FMAC3 enum tt__Direction * SOAP_FMAC4 soap_in_tt__Direction(struct soap*, const char*, enum tt__Direction *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Direction(struct soap*, const char*, enum tt__Direction *); - -SOAP_FMAC3 enum tt__Direction * SOAP_FMAC4 soap_new_tt__Direction(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Direction(struct soap*, const enum tt__Direction *, const char*, const char*); - -inline int soap_write_tt__Direction(struct soap *soap, enum tt__Direction const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Direction(soap, p, "tt:Direction", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Direction(struct soap *soap, const char *URL, enum tt__Direction const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Direction(soap, p, "tt:Direction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Direction(struct soap *soap, const char *URL, enum tt__Direction const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Direction(soap, p, "tt:Direction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Direction(struct soap *soap, const char *URL, enum tt__Direction const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Direction(soap, p, "tt:Direction", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Direction * SOAP_FMAC4 soap_get_tt__Direction(struct soap*, enum tt__Direction *, const char*, const char*); - -inline int soap_read_tt__Direction(struct soap *soap, enum tt__Direction *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Direction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Direction(struct soap *soap, const char *URL, enum tt__Direction *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Direction(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Direction(struct soap *soap, enum tt__Direction *p) -{ - if (::soap_read_tt__Direction(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PropertyOperation_DEFINED -#define SOAP_TYPE_tt__PropertyOperation_DEFINED - -inline void soap_default_tt__PropertyOperation(struct soap *soap, enum tt__PropertyOperation *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__PropertyOperation - *a = SOAP_DEFAULT_tt__PropertyOperation; -#else - *a = (enum tt__PropertyOperation)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PropertyOperation(struct soap*, const char*, int, const enum tt__PropertyOperation *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PropertyOperation2s(struct soap*, enum tt__PropertyOperation); -SOAP_FMAC3 enum tt__PropertyOperation * SOAP_FMAC4 soap_in_tt__PropertyOperation(struct soap*, const char*, enum tt__PropertyOperation *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PropertyOperation(struct soap*, const char*, enum tt__PropertyOperation *); - -SOAP_FMAC3 enum tt__PropertyOperation * SOAP_FMAC4 soap_new_tt__PropertyOperation(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PropertyOperation(struct soap*, const enum tt__PropertyOperation *, const char*, const char*); - -inline int soap_write_tt__PropertyOperation(struct soap *soap, enum tt__PropertyOperation const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__PropertyOperation(soap, p, "tt:PropertyOperation", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__PropertyOperation(struct soap *soap, const char *URL, enum tt__PropertyOperation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PropertyOperation(soap, p, "tt:PropertyOperation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PropertyOperation(struct soap *soap, const char *URL, enum tt__PropertyOperation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PropertyOperation(soap, p, "tt:PropertyOperation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PropertyOperation(struct soap *soap, const char *URL, enum tt__PropertyOperation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PropertyOperation(soap, p, "tt:PropertyOperation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__PropertyOperation * SOAP_FMAC4 soap_get_tt__PropertyOperation(struct soap*, enum tt__PropertyOperation *, const char*, const char*); - -inline int soap_read_tt__PropertyOperation(struct soap *soap, enum tt__PropertyOperation *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__PropertyOperation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PropertyOperation(struct soap *soap, const char *URL, enum tt__PropertyOperation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PropertyOperation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PropertyOperation(struct soap *soap, enum tt__PropertyOperation *p) -{ - if (::soap_read_tt__PropertyOperation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageSendingType_DEFINED -#define SOAP_TYPE_tt__ImageSendingType_DEFINED - -inline void soap_default_tt__ImageSendingType(struct soap *soap, enum tt__ImageSendingType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ImageSendingType - *a = SOAP_DEFAULT_tt__ImageSendingType; -#else - *a = (enum tt__ImageSendingType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageSendingType(struct soap*, const char*, int, const enum tt__ImageSendingType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ImageSendingType2s(struct soap*, enum tt__ImageSendingType); -SOAP_FMAC3 enum tt__ImageSendingType * SOAP_FMAC4 soap_in_tt__ImageSendingType(struct soap*, const char*, enum tt__ImageSendingType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ImageSendingType(struct soap*, const char*, enum tt__ImageSendingType *); - -SOAP_FMAC3 enum tt__ImageSendingType * SOAP_FMAC4 soap_new_tt__ImageSendingType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ImageSendingType(struct soap*, const enum tt__ImageSendingType *, const char*, const char*); - -inline int soap_write_tt__ImageSendingType(struct soap *soap, enum tt__ImageSendingType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ImageSendingType(soap, p, "tt:ImageSendingType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageSendingType(struct soap *soap, const char *URL, enum tt__ImageSendingType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ImageSendingType(soap, p, "tt:ImageSendingType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageSendingType(struct soap *soap, const char *URL, enum tt__ImageSendingType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ImageSendingType(soap, p, "tt:ImageSendingType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageSendingType(struct soap *soap, const char *URL, enum tt__ImageSendingType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ImageSendingType(soap, p, "tt:ImageSendingType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ImageSendingType * SOAP_FMAC4 soap_get_tt__ImageSendingType(struct soap*, enum tt__ImageSendingType *, const char*, const char*); - -inline int soap_read_tt__ImageSendingType(struct soap *soap, enum tt__ImageSendingType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ImageSendingType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageSendingType(struct soap *soap, const char *URL, enum tt__ImageSendingType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageSendingType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageSendingType(struct soap *soap, enum tt__ImageSendingType *p) -{ - if (::soap_read_tt__ImageSendingType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DefoggingMode_DEFINED -#define SOAP_TYPE_tt__DefoggingMode_DEFINED - -inline void soap_default_tt__DefoggingMode(struct soap *soap, enum tt__DefoggingMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__DefoggingMode - *a = SOAP_DEFAULT_tt__DefoggingMode; -#else - *a = (enum tt__DefoggingMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingMode(struct soap*, const char*, int, const enum tt__DefoggingMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DefoggingMode2s(struct soap*, enum tt__DefoggingMode); -SOAP_FMAC3 enum tt__DefoggingMode * SOAP_FMAC4 soap_in_tt__DefoggingMode(struct soap*, const char*, enum tt__DefoggingMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DefoggingMode(struct soap*, const char*, enum tt__DefoggingMode *); - -SOAP_FMAC3 enum tt__DefoggingMode * SOAP_FMAC4 soap_new_tt__DefoggingMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DefoggingMode(struct soap*, const enum tt__DefoggingMode *, const char*, const char*); - -inline int soap_write_tt__DefoggingMode(struct soap *soap, enum tt__DefoggingMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__DefoggingMode(soap, p, "tt:DefoggingMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__DefoggingMode(struct soap *soap, const char *URL, enum tt__DefoggingMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DefoggingMode(soap, p, "tt:DefoggingMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DefoggingMode(struct soap *soap, const char *URL, enum tt__DefoggingMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DefoggingMode(soap, p, "tt:DefoggingMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DefoggingMode(struct soap *soap, const char *URL, enum tt__DefoggingMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DefoggingMode(soap, p, "tt:DefoggingMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__DefoggingMode * SOAP_FMAC4 soap_get_tt__DefoggingMode(struct soap*, enum tt__DefoggingMode *, const char*, const char*); - -inline int soap_read_tt__DefoggingMode(struct soap *soap, enum tt__DefoggingMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__DefoggingMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DefoggingMode(struct soap *soap, const char *URL, enum tt__DefoggingMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DefoggingMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DefoggingMode(struct soap *soap, enum tt__DefoggingMode *p) -{ - if (::soap_read_tt__DefoggingMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ToneCompensationMode_DEFINED -#define SOAP_TYPE_tt__ToneCompensationMode_DEFINED - -inline void soap_default_tt__ToneCompensationMode(struct soap *soap, enum tt__ToneCompensationMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ToneCompensationMode - *a = SOAP_DEFAULT_tt__ToneCompensationMode; -#else - *a = (enum tt__ToneCompensationMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationMode(struct soap*, const char*, int, const enum tt__ToneCompensationMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ToneCompensationMode2s(struct soap*, enum tt__ToneCompensationMode); -SOAP_FMAC3 enum tt__ToneCompensationMode * SOAP_FMAC4 soap_in_tt__ToneCompensationMode(struct soap*, const char*, enum tt__ToneCompensationMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ToneCompensationMode(struct soap*, const char*, enum tt__ToneCompensationMode *); - -SOAP_FMAC3 enum tt__ToneCompensationMode * SOAP_FMAC4 soap_new_tt__ToneCompensationMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ToneCompensationMode(struct soap*, const enum tt__ToneCompensationMode *, const char*, const char*); - -inline int soap_write_tt__ToneCompensationMode(struct soap *soap, enum tt__ToneCompensationMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ToneCompensationMode(soap, p, "tt:ToneCompensationMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ToneCompensationMode(struct soap *soap, const char *URL, enum tt__ToneCompensationMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ToneCompensationMode(soap, p, "tt:ToneCompensationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ToneCompensationMode(struct soap *soap, const char *URL, enum tt__ToneCompensationMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ToneCompensationMode(soap, p, "tt:ToneCompensationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ToneCompensationMode(struct soap *soap, const char *URL, enum tt__ToneCompensationMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ToneCompensationMode(soap, p, "tt:ToneCompensationMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ToneCompensationMode * SOAP_FMAC4 soap_get_tt__ToneCompensationMode(struct soap*, enum tt__ToneCompensationMode *, const char*, const char*); - -inline int soap_read_tt__ToneCompensationMode(struct soap *soap, enum tt__ToneCompensationMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ToneCompensationMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ToneCompensationMode(struct soap *soap, const char *URL, enum tt__ToneCompensationMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ToneCompensationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ToneCompensationMode(struct soap *soap, enum tt__ToneCompensationMode *p) -{ - if (::soap_read_tt__ToneCompensationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_DEFINED -#define SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_DEFINED - -inline void soap_default_tt__IrCutFilterAutoBoundaryType(struct soap *soap, enum tt__IrCutFilterAutoBoundaryType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__IrCutFilterAutoBoundaryType - *a = SOAP_DEFAULT_tt__IrCutFilterAutoBoundaryType; -#else - *a = (enum tt__IrCutFilterAutoBoundaryType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoBoundaryType(struct soap*, const char*, int, const enum tt__IrCutFilterAutoBoundaryType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IrCutFilterAutoBoundaryType2s(struct soap*, enum tt__IrCutFilterAutoBoundaryType); -SOAP_FMAC3 enum tt__IrCutFilterAutoBoundaryType * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoBoundaryType(struct soap*, const char*, enum tt__IrCutFilterAutoBoundaryType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IrCutFilterAutoBoundaryType(struct soap*, const char*, enum tt__IrCutFilterAutoBoundaryType *); - -SOAP_FMAC3 enum tt__IrCutFilterAutoBoundaryType * SOAP_FMAC4 soap_new_tt__IrCutFilterAutoBoundaryType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IrCutFilterAutoBoundaryType(struct soap*, const enum tt__IrCutFilterAutoBoundaryType *, const char*, const char*); - -inline int soap_write_tt__IrCutFilterAutoBoundaryType(struct soap *soap, enum tt__IrCutFilterAutoBoundaryType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__IrCutFilterAutoBoundaryType(soap, p, "tt:IrCutFilterAutoBoundaryType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterAutoBoundaryType(struct soap *soap, const char *URL, enum tt__IrCutFilterAutoBoundaryType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IrCutFilterAutoBoundaryType(soap, p, "tt:IrCutFilterAutoBoundaryType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterAutoBoundaryType(struct soap *soap, const char *URL, enum tt__IrCutFilterAutoBoundaryType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IrCutFilterAutoBoundaryType(soap, p, "tt:IrCutFilterAutoBoundaryType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterAutoBoundaryType(struct soap *soap, const char *URL, enum tt__IrCutFilterAutoBoundaryType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IrCutFilterAutoBoundaryType(soap, p, "tt:IrCutFilterAutoBoundaryType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__IrCutFilterAutoBoundaryType * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoBoundaryType(struct soap*, enum tt__IrCutFilterAutoBoundaryType *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterAutoBoundaryType(struct soap *soap, enum tt__IrCutFilterAutoBoundaryType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterAutoBoundaryType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterAutoBoundaryType(struct soap *soap, const char *URL, enum tt__IrCutFilterAutoBoundaryType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterAutoBoundaryType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterAutoBoundaryType(struct soap *soap, enum tt__IrCutFilterAutoBoundaryType *p) -{ - if (::soap_read_tt__IrCutFilterAutoBoundaryType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageStabilizationMode_DEFINED -#define SOAP_TYPE_tt__ImageStabilizationMode_DEFINED - -inline void soap_default_tt__ImageStabilizationMode(struct soap *soap, enum tt__ImageStabilizationMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ImageStabilizationMode - *a = SOAP_DEFAULT_tt__ImageStabilizationMode; -#else - *a = (enum tt__ImageStabilizationMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationMode(struct soap*, const char*, int, const enum tt__ImageStabilizationMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ImageStabilizationMode2s(struct soap*, enum tt__ImageStabilizationMode); -SOAP_FMAC3 enum tt__ImageStabilizationMode * SOAP_FMAC4 soap_in_tt__ImageStabilizationMode(struct soap*, const char*, enum tt__ImageStabilizationMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ImageStabilizationMode(struct soap*, const char*, enum tt__ImageStabilizationMode *); - -SOAP_FMAC3 enum tt__ImageStabilizationMode * SOAP_FMAC4 soap_new_tt__ImageStabilizationMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ImageStabilizationMode(struct soap*, const enum tt__ImageStabilizationMode *, const char*, const char*); - -inline int soap_write_tt__ImageStabilizationMode(struct soap *soap, enum tt__ImageStabilizationMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ImageStabilizationMode(soap, p, "tt:ImageStabilizationMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageStabilizationMode(struct soap *soap, const char *URL, enum tt__ImageStabilizationMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ImageStabilizationMode(soap, p, "tt:ImageStabilizationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageStabilizationMode(struct soap *soap, const char *URL, enum tt__ImageStabilizationMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ImageStabilizationMode(soap, p, "tt:ImageStabilizationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageStabilizationMode(struct soap *soap, const char *URL, enum tt__ImageStabilizationMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ImageStabilizationMode(soap, p, "tt:ImageStabilizationMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ImageStabilizationMode * SOAP_FMAC4 soap_get_tt__ImageStabilizationMode(struct soap*, enum tt__ImageStabilizationMode *, const char*, const char*); - -inline int soap_read_tt__ImageStabilizationMode(struct soap *soap, enum tt__ImageStabilizationMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ImageStabilizationMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageStabilizationMode(struct soap *soap, const char *URL, enum tt__ImageStabilizationMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageStabilizationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageStabilizationMode(struct soap *soap, enum tt__ImageStabilizationMode *p) -{ - if (::soap_read_tt__ImageStabilizationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterMode_DEFINED -#define SOAP_TYPE_tt__IrCutFilterMode_DEFINED - -inline void soap_default_tt__IrCutFilterMode(struct soap *soap, enum tt__IrCutFilterMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__IrCutFilterMode - *a = SOAP_DEFAULT_tt__IrCutFilterMode; -#else - *a = (enum tt__IrCutFilterMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterMode(struct soap*, const char*, int, const enum tt__IrCutFilterMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IrCutFilterMode2s(struct soap*, enum tt__IrCutFilterMode); -SOAP_FMAC3 enum tt__IrCutFilterMode * SOAP_FMAC4 soap_in_tt__IrCutFilterMode(struct soap*, const char*, enum tt__IrCutFilterMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IrCutFilterMode(struct soap*, const char*, enum tt__IrCutFilterMode *); - -SOAP_FMAC3 enum tt__IrCutFilterMode * SOAP_FMAC4 soap_new_tt__IrCutFilterMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IrCutFilterMode(struct soap*, const enum tt__IrCutFilterMode *, const char*, const char*); - -inline int soap_write_tt__IrCutFilterMode(struct soap *soap, enum tt__IrCutFilterMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__IrCutFilterMode(soap, p, "tt:IrCutFilterMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterMode(struct soap *soap, const char *URL, enum tt__IrCutFilterMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IrCutFilterMode(soap, p, "tt:IrCutFilterMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterMode(struct soap *soap, const char *URL, enum tt__IrCutFilterMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IrCutFilterMode(soap, p, "tt:IrCutFilterMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterMode(struct soap *soap, const char *URL, enum tt__IrCutFilterMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IrCutFilterMode(soap, p, "tt:IrCutFilterMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__IrCutFilterMode * SOAP_FMAC4 soap_get_tt__IrCutFilterMode(struct soap*, enum tt__IrCutFilterMode *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterMode(struct soap *soap, enum tt__IrCutFilterMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterMode(struct soap *soap, const char *URL, enum tt__IrCutFilterMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterMode(struct soap *soap, enum tt__IrCutFilterMode *p) -{ - if (::soap_read_tt__IrCutFilterMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalanceMode_DEFINED -#define SOAP_TYPE_tt__WhiteBalanceMode_DEFINED - -inline void soap_default_tt__WhiteBalanceMode(struct soap *soap, enum tt__WhiteBalanceMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__WhiteBalanceMode - *a = SOAP_DEFAULT_tt__WhiteBalanceMode; -#else - *a = (enum tt__WhiteBalanceMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceMode(struct soap*, const char*, int, const enum tt__WhiteBalanceMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__WhiteBalanceMode2s(struct soap*, enum tt__WhiteBalanceMode); -SOAP_FMAC3 enum tt__WhiteBalanceMode * SOAP_FMAC4 soap_in_tt__WhiteBalanceMode(struct soap*, const char*, enum tt__WhiteBalanceMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__WhiteBalanceMode(struct soap*, const char*, enum tt__WhiteBalanceMode *); - -SOAP_FMAC3 enum tt__WhiteBalanceMode * SOAP_FMAC4 soap_new_tt__WhiteBalanceMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__WhiteBalanceMode(struct soap*, const enum tt__WhiteBalanceMode *, const char*, const char*); - -inline int soap_write_tt__WhiteBalanceMode(struct soap *soap, enum tt__WhiteBalanceMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__WhiteBalanceMode(soap, p, "tt:WhiteBalanceMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalanceMode(struct soap *soap, const char *URL, enum tt__WhiteBalanceMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__WhiteBalanceMode(soap, p, "tt:WhiteBalanceMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalanceMode(struct soap *soap, const char *URL, enum tt__WhiteBalanceMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__WhiteBalanceMode(soap, p, "tt:WhiteBalanceMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalanceMode(struct soap *soap, const char *URL, enum tt__WhiteBalanceMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__WhiteBalanceMode(soap, p, "tt:WhiteBalanceMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__WhiteBalanceMode * SOAP_FMAC4 soap_get_tt__WhiteBalanceMode(struct soap*, enum tt__WhiteBalanceMode *, const char*, const char*); - -inline int soap_read_tt__WhiteBalanceMode(struct soap *soap, enum tt__WhiteBalanceMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalanceMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalanceMode(struct soap *soap, const char *URL, enum tt__WhiteBalanceMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalanceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalanceMode(struct soap *soap, enum tt__WhiteBalanceMode *p) -{ - if (::soap_read_tt__WhiteBalanceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Enabled_DEFINED -#define SOAP_TYPE_tt__Enabled_DEFINED - -inline void soap_default_tt__Enabled(struct soap *soap, enum tt__Enabled *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Enabled - *a = SOAP_DEFAULT_tt__Enabled; -#else - *a = (enum tt__Enabled)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Enabled(struct soap*, const char*, int, const enum tt__Enabled *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Enabled2s(struct soap*, enum tt__Enabled); -SOAP_FMAC3 enum tt__Enabled * SOAP_FMAC4 soap_in_tt__Enabled(struct soap*, const char*, enum tt__Enabled *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Enabled(struct soap*, const char*, enum tt__Enabled *); - -SOAP_FMAC3 enum tt__Enabled * SOAP_FMAC4 soap_new_tt__Enabled(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Enabled(struct soap*, const enum tt__Enabled *, const char*, const char*); - -inline int soap_write_tt__Enabled(struct soap *soap, enum tt__Enabled const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Enabled(soap, p, "tt:Enabled", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Enabled(struct soap *soap, const char *URL, enum tt__Enabled const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Enabled(soap, p, "tt:Enabled", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Enabled(struct soap *soap, const char *URL, enum tt__Enabled const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Enabled(soap, p, "tt:Enabled", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Enabled(struct soap *soap, const char *URL, enum tt__Enabled const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Enabled(soap, p, "tt:Enabled", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Enabled * SOAP_FMAC4 soap_get_tt__Enabled(struct soap*, enum tt__Enabled *, const char*, const char*); - -inline int soap_read_tt__Enabled(struct soap *soap, enum tt__Enabled *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Enabled(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Enabled(struct soap *soap, const char *URL, enum tt__Enabled *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Enabled(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Enabled(struct soap *soap, enum tt__Enabled *p) -{ - if (::soap_read_tt__Enabled(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ExposureMode_DEFINED -#define SOAP_TYPE_tt__ExposureMode_DEFINED - -inline void soap_default_tt__ExposureMode(struct soap *soap, enum tt__ExposureMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ExposureMode - *a = SOAP_DEFAULT_tt__ExposureMode; -#else - *a = (enum tt__ExposureMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureMode(struct soap*, const char*, int, const enum tt__ExposureMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ExposureMode2s(struct soap*, enum tt__ExposureMode); -SOAP_FMAC3 enum tt__ExposureMode * SOAP_FMAC4 soap_in_tt__ExposureMode(struct soap*, const char*, enum tt__ExposureMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ExposureMode(struct soap*, const char*, enum tt__ExposureMode *); - -SOAP_FMAC3 enum tt__ExposureMode * SOAP_FMAC4 soap_new_tt__ExposureMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ExposureMode(struct soap*, const enum tt__ExposureMode *, const char*, const char*); - -inline int soap_write_tt__ExposureMode(struct soap *soap, enum tt__ExposureMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ExposureMode(soap, p, "tt:ExposureMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ExposureMode(struct soap *soap, const char *URL, enum tt__ExposureMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ExposureMode(soap, p, "tt:ExposureMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ExposureMode(struct soap *soap, const char *URL, enum tt__ExposureMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ExposureMode(soap, p, "tt:ExposureMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ExposureMode(struct soap *soap, const char *URL, enum tt__ExposureMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ExposureMode(soap, p, "tt:ExposureMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ExposureMode * SOAP_FMAC4 soap_get_tt__ExposureMode(struct soap*, enum tt__ExposureMode *, const char*, const char*); - -inline int soap_read_tt__ExposureMode(struct soap *soap, enum tt__ExposureMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ExposureMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ExposureMode(struct soap *soap, const char *URL, enum tt__ExposureMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ExposureMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ExposureMode(struct soap *soap, enum tt__ExposureMode *p) -{ - if (::soap_read_tt__ExposureMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ExposurePriority_DEFINED -#define SOAP_TYPE_tt__ExposurePriority_DEFINED - -inline void soap_default_tt__ExposurePriority(struct soap *soap, enum tt__ExposurePriority *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ExposurePriority - *a = SOAP_DEFAULT_tt__ExposurePriority; -#else - *a = (enum tt__ExposurePriority)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposurePriority(struct soap*, const char*, int, const enum tt__ExposurePriority *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ExposurePriority2s(struct soap*, enum tt__ExposurePriority); -SOAP_FMAC3 enum tt__ExposurePriority * SOAP_FMAC4 soap_in_tt__ExposurePriority(struct soap*, const char*, enum tt__ExposurePriority *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ExposurePriority(struct soap*, const char*, enum tt__ExposurePriority *); - -SOAP_FMAC3 enum tt__ExposurePriority * SOAP_FMAC4 soap_new_tt__ExposurePriority(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ExposurePriority(struct soap*, const enum tt__ExposurePriority *, const char*, const char*); - -inline int soap_write_tt__ExposurePriority(struct soap *soap, enum tt__ExposurePriority const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ExposurePriority(soap, p, "tt:ExposurePriority", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ExposurePriority(struct soap *soap, const char *URL, enum tt__ExposurePriority const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ExposurePriority(soap, p, "tt:ExposurePriority", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ExposurePriority(struct soap *soap, const char *URL, enum tt__ExposurePriority const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ExposurePriority(soap, p, "tt:ExposurePriority", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ExposurePriority(struct soap *soap, const char *URL, enum tt__ExposurePriority const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ExposurePriority(soap, p, "tt:ExposurePriority", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ExposurePriority * SOAP_FMAC4 soap_get_tt__ExposurePriority(struct soap*, enum tt__ExposurePriority *, const char*, const char*); - -inline int soap_read_tt__ExposurePriority(struct soap *soap, enum tt__ExposurePriority *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ExposurePriority(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ExposurePriority(struct soap *soap, const char *URL, enum tt__ExposurePriority *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ExposurePriority(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ExposurePriority(struct soap *soap, enum tt__ExposurePriority *p) -{ - if (::soap_read_tt__ExposurePriority(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BacklightCompensationMode_DEFINED -#define SOAP_TYPE_tt__BacklightCompensationMode_DEFINED - -inline void soap_default_tt__BacklightCompensationMode(struct soap *soap, enum tt__BacklightCompensationMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__BacklightCompensationMode - *a = SOAP_DEFAULT_tt__BacklightCompensationMode; -#else - *a = (enum tt__BacklightCompensationMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationMode(struct soap*, const char*, int, const enum tt__BacklightCompensationMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__BacklightCompensationMode2s(struct soap*, enum tt__BacklightCompensationMode); -SOAP_FMAC3 enum tt__BacklightCompensationMode * SOAP_FMAC4 soap_in_tt__BacklightCompensationMode(struct soap*, const char*, enum tt__BacklightCompensationMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__BacklightCompensationMode(struct soap*, const char*, enum tt__BacklightCompensationMode *); - -SOAP_FMAC3 enum tt__BacklightCompensationMode * SOAP_FMAC4 soap_new_tt__BacklightCompensationMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__BacklightCompensationMode(struct soap*, const enum tt__BacklightCompensationMode *, const char*, const char*); - -inline int soap_write_tt__BacklightCompensationMode(struct soap *soap, enum tt__BacklightCompensationMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__BacklightCompensationMode(soap, p, "tt:BacklightCompensationMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__BacklightCompensationMode(struct soap *soap, const char *URL, enum tt__BacklightCompensationMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__BacklightCompensationMode(soap, p, "tt:BacklightCompensationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BacklightCompensationMode(struct soap *soap, const char *URL, enum tt__BacklightCompensationMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__BacklightCompensationMode(soap, p, "tt:BacklightCompensationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BacklightCompensationMode(struct soap *soap, const char *URL, enum tt__BacklightCompensationMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__BacklightCompensationMode(soap, p, "tt:BacklightCompensationMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__BacklightCompensationMode * SOAP_FMAC4 soap_get_tt__BacklightCompensationMode(struct soap*, enum tt__BacklightCompensationMode *, const char*, const char*); - -inline int soap_read_tt__BacklightCompensationMode(struct soap *soap, enum tt__BacklightCompensationMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__BacklightCompensationMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BacklightCompensationMode(struct soap *soap, const char *URL, enum tt__BacklightCompensationMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BacklightCompensationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BacklightCompensationMode(struct soap *soap, enum tt__BacklightCompensationMode *p) -{ - if (::soap_read_tt__BacklightCompensationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WideDynamicMode_DEFINED -#define SOAP_TYPE_tt__WideDynamicMode_DEFINED - -inline void soap_default_tt__WideDynamicMode(struct soap *soap, enum tt__WideDynamicMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__WideDynamicMode - *a = SOAP_DEFAULT_tt__WideDynamicMode; -#else - *a = (enum tt__WideDynamicMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicMode(struct soap*, const char*, int, const enum tt__WideDynamicMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__WideDynamicMode2s(struct soap*, enum tt__WideDynamicMode); -SOAP_FMAC3 enum tt__WideDynamicMode * SOAP_FMAC4 soap_in_tt__WideDynamicMode(struct soap*, const char*, enum tt__WideDynamicMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__WideDynamicMode(struct soap*, const char*, enum tt__WideDynamicMode *); - -SOAP_FMAC3 enum tt__WideDynamicMode * SOAP_FMAC4 soap_new_tt__WideDynamicMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__WideDynamicMode(struct soap*, const enum tt__WideDynamicMode *, const char*, const char*); - -inline int soap_write_tt__WideDynamicMode(struct soap *soap, enum tt__WideDynamicMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__WideDynamicMode(soap, p, "tt:WideDynamicMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__WideDynamicMode(struct soap *soap, const char *URL, enum tt__WideDynamicMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__WideDynamicMode(soap, p, "tt:WideDynamicMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WideDynamicMode(struct soap *soap, const char *URL, enum tt__WideDynamicMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__WideDynamicMode(soap, p, "tt:WideDynamicMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WideDynamicMode(struct soap *soap, const char *URL, enum tt__WideDynamicMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__WideDynamicMode(soap, p, "tt:WideDynamicMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__WideDynamicMode * SOAP_FMAC4 soap_get_tt__WideDynamicMode(struct soap*, enum tt__WideDynamicMode *, const char*, const char*); - -inline int soap_read_tt__WideDynamicMode(struct soap *soap, enum tt__WideDynamicMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__WideDynamicMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WideDynamicMode(struct soap *soap, const char *URL, enum tt__WideDynamicMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WideDynamicMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WideDynamicMode(struct soap *soap, enum tt__WideDynamicMode *p) -{ - if (::soap_read_tt__WideDynamicMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AFModes_DEFINED -#define SOAP_TYPE_tt__AFModes_DEFINED - -inline void soap_default_tt__AFModes(struct soap *soap, enum tt__AFModes *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__AFModes - *a = SOAP_DEFAULT_tt__AFModes; -#else - *a = (enum tt__AFModes)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AFModes(struct soap*, const char*, int, const enum tt__AFModes *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AFModes2s(struct soap*, enum tt__AFModes); -SOAP_FMAC3 enum tt__AFModes * SOAP_FMAC4 soap_in_tt__AFModes(struct soap*, const char*, enum tt__AFModes *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AFModes(struct soap*, const char*, enum tt__AFModes *); - -SOAP_FMAC3 enum tt__AFModes * SOAP_FMAC4 soap_new_tt__AFModes(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AFModes(struct soap*, const enum tt__AFModes *, const char*, const char*); - -inline int soap_write_tt__AFModes(struct soap *soap, enum tt__AFModes const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__AFModes(soap, p, "tt:AFModes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__AFModes(struct soap *soap, const char *URL, enum tt__AFModes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AFModes(soap, p, "tt:AFModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AFModes(struct soap *soap, const char *URL, enum tt__AFModes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AFModes(soap, p, "tt:AFModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AFModes(struct soap *soap, const char *URL, enum tt__AFModes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AFModes(soap, p, "tt:AFModes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__AFModes * SOAP_FMAC4 soap_get_tt__AFModes(struct soap*, enum tt__AFModes *, const char*, const char*); - -inline int soap_read_tt__AFModes(struct soap *soap, enum tt__AFModes *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__AFModes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AFModes(struct soap *soap, const char *URL, enum tt__AFModes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AFModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AFModes(struct soap *soap, enum tt__AFModes *p) -{ - if (::soap_read_tt__AFModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AutoFocusMode_DEFINED -#define SOAP_TYPE_tt__AutoFocusMode_DEFINED - -inline void soap_default_tt__AutoFocusMode(struct soap *soap, enum tt__AutoFocusMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__AutoFocusMode - *a = SOAP_DEFAULT_tt__AutoFocusMode; -#else - *a = (enum tt__AutoFocusMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AutoFocusMode(struct soap*, const char*, int, const enum tt__AutoFocusMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AutoFocusMode2s(struct soap*, enum tt__AutoFocusMode); -SOAP_FMAC3 enum tt__AutoFocusMode * SOAP_FMAC4 soap_in_tt__AutoFocusMode(struct soap*, const char*, enum tt__AutoFocusMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AutoFocusMode(struct soap*, const char*, enum tt__AutoFocusMode *); - -SOAP_FMAC3 enum tt__AutoFocusMode * SOAP_FMAC4 soap_new_tt__AutoFocusMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AutoFocusMode(struct soap*, const enum tt__AutoFocusMode *, const char*, const char*); - -inline int soap_write_tt__AutoFocusMode(struct soap *soap, enum tt__AutoFocusMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__AutoFocusMode(soap, p, "tt:AutoFocusMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__AutoFocusMode(struct soap *soap, const char *URL, enum tt__AutoFocusMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AutoFocusMode(soap, p, "tt:AutoFocusMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AutoFocusMode(struct soap *soap, const char *URL, enum tt__AutoFocusMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AutoFocusMode(soap, p, "tt:AutoFocusMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AutoFocusMode(struct soap *soap, const char *URL, enum tt__AutoFocusMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AutoFocusMode(soap, p, "tt:AutoFocusMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__AutoFocusMode * SOAP_FMAC4 soap_get_tt__AutoFocusMode(struct soap*, enum tt__AutoFocusMode *, const char*, const char*); - -inline int soap_read_tt__AutoFocusMode(struct soap *soap, enum tt__AutoFocusMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__AutoFocusMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AutoFocusMode(struct soap *soap, const char *URL, enum tt__AutoFocusMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AutoFocusMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AutoFocusMode(struct soap *soap, enum tt__AutoFocusMode *p) -{ - if (::soap_read_tt__AutoFocusMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MoveAndTrackMethod_DEFINED -#define SOAP_TYPE_tt__MoveAndTrackMethod_DEFINED - -inline void soap_default_tt__MoveAndTrackMethod(struct soap *soap, enum tt__MoveAndTrackMethod *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__MoveAndTrackMethod - *a = SOAP_DEFAULT_tt__MoveAndTrackMethod; -#else - *a = (enum tt__MoveAndTrackMethod)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveAndTrackMethod(struct soap*, const char*, int, const enum tt__MoveAndTrackMethod *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__MoveAndTrackMethod2s(struct soap*, enum tt__MoveAndTrackMethod); -SOAP_FMAC3 enum tt__MoveAndTrackMethod * SOAP_FMAC4 soap_in_tt__MoveAndTrackMethod(struct soap*, const char*, enum tt__MoveAndTrackMethod *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__MoveAndTrackMethod(struct soap*, const char*, enum tt__MoveAndTrackMethod *); - -SOAP_FMAC3 enum tt__MoveAndTrackMethod * SOAP_FMAC4 soap_new_tt__MoveAndTrackMethod(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__MoveAndTrackMethod(struct soap*, const enum tt__MoveAndTrackMethod *, const char*, const char*); - -inline int soap_write_tt__MoveAndTrackMethod(struct soap *soap, enum tt__MoveAndTrackMethod const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__MoveAndTrackMethod(soap, p, "tt:MoveAndTrackMethod", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__MoveAndTrackMethod(struct soap *soap, const char *URL, enum tt__MoveAndTrackMethod const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MoveAndTrackMethod(soap, p, "tt:MoveAndTrackMethod", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MoveAndTrackMethod(struct soap *soap, const char *URL, enum tt__MoveAndTrackMethod const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MoveAndTrackMethod(soap, p, "tt:MoveAndTrackMethod", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MoveAndTrackMethod(struct soap *soap, const char *URL, enum tt__MoveAndTrackMethod const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MoveAndTrackMethod(soap, p, "tt:MoveAndTrackMethod", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__MoveAndTrackMethod * SOAP_FMAC4 soap_get_tt__MoveAndTrackMethod(struct soap*, enum tt__MoveAndTrackMethod *, const char*, const char*); - -inline int soap_read_tt__MoveAndTrackMethod(struct soap *soap, enum tt__MoveAndTrackMethod *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__MoveAndTrackMethod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MoveAndTrackMethod(struct soap *soap, const char *URL, enum tt__MoveAndTrackMethod *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MoveAndTrackMethod(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MoveAndTrackMethod(struct soap *soap, enum tt__MoveAndTrackMethod *p) -{ - if (::soap_read_tt__MoveAndTrackMethod(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourOperation_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourOperation_DEFINED - -inline void soap_default_tt__PTZPresetTourOperation(struct soap *soap, enum tt__PTZPresetTourOperation *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__PTZPresetTourOperation - *a = SOAP_DEFAULT_tt__PTZPresetTourOperation; -#else - *a = (enum tt__PTZPresetTourOperation)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourOperation(struct soap*, const char*, int, const enum tt__PTZPresetTourOperation *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PTZPresetTourOperation2s(struct soap*, enum tt__PTZPresetTourOperation); -SOAP_FMAC3 enum tt__PTZPresetTourOperation * SOAP_FMAC4 soap_in_tt__PTZPresetTourOperation(struct soap*, const char*, enum tt__PTZPresetTourOperation *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PTZPresetTourOperation(struct soap*, const char*, enum tt__PTZPresetTourOperation *); - -SOAP_FMAC3 enum tt__PTZPresetTourOperation * SOAP_FMAC4 soap_new_tt__PTZPresetTourOperation(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PTZPresetTourOperation(struct soap*, const enum tt__PTZPresetTourOperation *, const char*, const char*); - -inline int soap_write_tt__PTZPresetTourOperation(struct soap *soap, enum tt__PTZPresetTourOperation const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__PTZPresetTourOperation(soap, p, "tt:PTZPresetTourOperation", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourOperation(struct soap *soap, const char *URL, enum tt__PTZPresetTourOperation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourOperation(soap, p, "tt:PTZPresetTourOperation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourOperation(struct soap *soap, const char *URL, enum tt__PTZPresetTourOperation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourOperation(soap, p, "tt:PTZPresetTourOperation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourOperation(struct soap *soap, const char *URL, enum tt__PTZPresetTourOperation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourOperation(soap, p, "tt:PTZPresetTourOperation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__PTZPresetTourOperation * SOAP_FMAC4 soap_get_tt__PTZPresetTourOperation(struct soap*, enum tt__PTZPresetTourOperation *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourOperation(struct soap *soap, enum tt__PTZPresetTourOperation *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourOperation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourOperation(struct soap *soap, const char *URL, enum tt__PTZPresetTourOperation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourOperation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourOperation(struct soap *soap, enum tt__PTZPresetTourOperation *p) -{ - if (::soap_read_tt__PTZPresetTourOperation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourDirection_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourDirection_DEFINED - -inline void soap_default_tt__PTZPresetTourDirection(struct soap *soap, enum tt__PTZPresetTourDirection *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__PTZPresetTourDirection - *a = SOAP_DEFAULT_tt__PTZPresetTourDirection; -#else - *a = (enum tt__PTZPresetTourDirection)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourDirection(struct soap*, const char*, int, const enum tt__PTZPresetTourDirection *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PTZPresetTourDirection2s(struct soap*, enum tt__PTZPresetTourDirection); -SOAP_FMAC3 enum tt__PTZPresetTourDirection * SOAP_FMAC4 soap_in_tt__PTZPresetTourDirection(struct soap*, const char*, enum tt__PTZPresetTourDirection *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PTZPresetTourDirection(struct soap*, const char*, enum tt__PTZPresetTourDirection *); - -SOAP_FMAC3 enum tt__PTZPresetTourDirection * SOAP_FMAC4 soap_new_tt__PTZPresetTourDirection(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PTZPresetTourDirection(struct soap*, const enum tt__PTZPresetTourDirection *, const char*, const char*); - -inline int soap_write_tt__PTZPresetTourDirection(struct soap *soap, enum tt__PTZPresetTourDirection const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__PTZPresetTourDirection(soap, p, "tt:PTZPresetTourDirection", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourDirection(struct soap *soap, const char *URL, enum tt__PTZPresetTourDirection const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourDirection(soap, p, "tt:PTZPresetTourDirection", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourDirection(struct soap *soap, const char *URL, enum tt__PTZPresetTourDirection const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourDirection(soap, p, "tt:PTZPresetTourDirection", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourDirection(struct soap *soap, const char *URL, enum tt__PTZPresetTourDirection const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourDirection(soap, p, "tt:PTZPresetTourDirection", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__PTZPresetTourDirection * SOAP_FMAC4 soap_get_tt__PTZPresetTourDirection(struct soap*, enum tt__PTZPresetTourDirection *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourDirection(struct soap *soap, enum tt__PTZPresetTourDirection *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourDirection(struct soap *soap, const char *URL, enum tt__PTZPresetTourDirection *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourDirection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourDirection(struct soap *soap, enum tt__PTZPresetTourDirection *p) -{ - if (::soap_read_tt__PTZPresetTourDirection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourState_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourState_DEFINED - -inline void soap_default_tt__PTZPresetTourState(struct soap *soap, enum tt__PTZPresetTourState *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__PTZPresetTourState - *a = SOAP_DEFAULT_tt__PTZPresetTourState; -#else - *a = (enum tt__PTZPresetTourState)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourState(struct soap*, const char*, int, const enum tt__PTZPresetTourState *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__PTZPresetTourState2s(struct soap*, enum tt__PTZPresetTourState); -SOAP_FMAC3 enum tt__PTZPresetTourState * SOAP_FMAC4 soap_in_tt__PTZPresetTourState(struct soap*, const char*, enum tt__PTZPresetTourState *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__PTZPresetTourState(struct soap*, const char*, enum tt__PTZPresetTourState *); - -SOAP_FMAC3 enum tt__PTZPresetTourState * SOAP_FMAC4 soap_new_tt__PTZPresetTourState(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__PTZPresetTourState(struct soap*, const enum tt__PTZPresetTourState *, const char*, const char*); - -inline int soap_write_tt__PTZPresetTourState(struct soap *soap, enum tt__PTZPresetTourState const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__PTZPresetTourState(soap, p, "tt:PTZPresetTourState", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourState(struct soap *soap, const char *URL, enum tt__PTZPresetTourState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourState(soap, p, "tt:PTZPresetTourState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourState(struct soap *soap, const char *URL, enum tt__PTZPresetTourState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourState(soap, p, "tt:PTZPresetTourState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourState(struct soap *soap, const char *URL, enum tt__PTZPresetTourState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__PTZPresetTourState(soap, p, "tt:PTZPresetTourState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__PTZPresetTourState * SOAP_FMAC4 soap_get_tt__PTZPresetTourState(struct soap*, enum tt__PTZPresetTourState *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourState(struct soap *soap, enum tt__PTZPresetTourState *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourState(struct soap *soap, const char *URL, enum tt__PTZPresetTourState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourState(struct soap *soap, enum tt__PTZPresetTourState *p) -{ - if (::soap_read_tt__PTZPresetTourState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReverseMode_DEFINED -#define SOAP_TYPE_tt__ReverseMode_DEFINED - -inline void soap_default_tt__ReverseMode(struct soap *soap, enum tt__ReverseMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ReverseMode - *a = SOAP_DEFAULT_tt__ReverseMode; -#else - *a = (enum tt__ReverseMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseMode(struct soap*, const char*, int, const enum tt__ReverseMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ReverseMode2s(struct soap*, enum tt__ReverseMode); -SOAP_FMAC3 enum tt__ReverseMode * SOAP_FMAC4 soap_in_tt__ReverseMode(struct soap*, const char*, enum tt__ReverseMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ReverseMode(struct soap*, const char*, enum tt__ReverseMode *); - -SOAP_FMAC3 enum tt__ReverseMode * SOAP_FMAC4 soap_new_tt__ReverseMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReverseMode(struct soap*, const enum tt__ReverseMode *, const char*, const char*); - -inline int soap_write_tt__ReverseMode(struct soap *soap, enum tt__ReverseMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ReverseMode(soap, p, "tt:ReverseMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ReverseMode(struct soap *soap, const char *URL, enum tt__ReverseMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReverseMode(soap, p, "tt:ReverseMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReverseMode(struct soap *soap, const char *URL, enum tt__ReverseMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReverseMode(soap, p, "tt:ReverseMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReverseMode(struct soap *soap, const char *URL, enum tt__ReverseMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReverseMode(soap, p, "tt:ReverseMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ReverseMode * SOAP_FMAC4 soap_get_tt__ReverseMode(struct soap*, enum tt__ReverseMode *, const char*, const char*); - -inline int soap_read_tt__ReverseMode(struct soap *soap, enum tt__ReverseMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ReverseMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReverseMode(struct soap *soap, const char *URL, enum tt__ReverseMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReverseMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReverseMode(struct soap *soap, enum tt__ReverseMode *p) -{ - if (::soap_read_tt__ReverseMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EFlipMode_DEFINED -#define SOAP_TYPE_tt__EFlipMode_DEFINED - -inline void soap_default_tt__EFlipMode(struct soap *soap, enum tt__EFlipMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__EFlipMode - *a = SOAP_DEFAULT_tt__EFlipMode; -#else - *a = (enum tt__EFlipMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipMode(struct soap*, const char*, int, const enum tt__EFlipMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__EFlipMode2s(struct soap*, enum tt__EFlipMode); -SOAP_FMAC3 enum tt__EFlipMode * SOAP_FMAC4 soap_in_tt__EFlipMode(struct soap*, const char*, enum tt__EFlipMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__EFlipMode(struct soap*, const char*, enum tt__EFlipMode *); - -SOAP_FMAC3 enum tt__EFlipMode * SOAP_FMAC4 soap_new_tt__EFlipMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__EFlipMode(struct soap*, const enum tt__EFlipMode *, const char*, const char*); - -inline int soap_write_tt__EFlipMode(struct soap *soap, enum tt__EFlipMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__EFlipMode(soap, p, "tt:EFlipMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__EFlipMode(struct soap *soap, const char *URL, enum tt__EFlipMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__EFlipMode(soap, p, "tt:EFlipMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EFlipMode(struct soap *soap, const char *URL, enum tt__EFlipMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__EFlipMode(soap, p, "tt:EFlipMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EFlipMode(struct soap *soap, const char *URL, enum tt__EFlipMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__EFlipMode(soap, p, "tt:EFlipMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__EFlipMode * SOAP_FMAC4 soap_get_tt__EFlipMode(struct soap*, enum tt__EFlipMode *, const char*, const char*); - -inline int soap_read_tt__EFlipMode(struct soap *soap, enum tt__EFlipMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__EFlipMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EFlipMode(struct soap *soap, const char *URL, enum tt__EFlipMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EFlipMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EFlipMode(struct soap *soap, enum tt__EFlipMode *p) -{ - if (::soap_read_tt__EFlipMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DigitalIdleState_DEFINED -#define SOAP_TYPE_tt__DigitalIdleState_DEFINED - -inline void soap_default_tt__DigitalIdleState(struct soap *soap, enum tt__DigitalIdleState *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__DigitalIdleState - *a = SOAP_DEFAULT_tt__DigitalIdleState; -#else - *a = (enum tt__DigitalIdleState)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DigitalIdleState(struct soap*, const char*, int, const enum tt__DigitalIdleState *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DigitalIdleState2s(struct soap*, enum tt__DigitalIdleState); -SOAP_FMAC3 enum tt__DigitalIdleState * SOAP_FMAC4 soap_in_tt__DigitalIdleState(struct soap*, const char*, enum tt__DigitalIdleState *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DigitalIdleState(struct soap*, const char*, enum tt__DigitalIdleState *); - -SOAP_FMAC3 enum tt__DigitalIdleState * SOAP_FMAC4 soap_new_tt__DigitalIdleState(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DigitalIdleState(struct soap*, const enum tt__DigitalIdleState *, const char*, const char*); - -inline int soap_write_tt__DigitalIdleState(struct soap *soap, enum tt__DigitalIdleState const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__DigitalIdleState(soap, p, "tt:DigitalIdleState", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__DigitalIdleState(struct soap *soap, const char *URL, enum tt__DigitalIdleState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DigitalIdleState(soap, p, "tt:DigitalIdleState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DigitalIdleState(struct soap *soap, const char *URL, enum tt__DigitalIdleState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DigitalIdleState(soap, p, "tt:DigitalIdleState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DigitalIdleState(struct soap *soap, const char *URL, enum tt__DigitalIdleState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DigitalIdleState(soap, p, "tt:DigitalIdleState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__DigitalIdleState * SOAP_FMAC4 soap_get_tt__DigitalIdleState(struct soap*, enum tt__DigitalIdleState *, const char*, const char*); - -inline int soap_read_tt__DigitalIdleState(struct soap *soap, enum tt__DigitalIdleState *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__DigitalIdleState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DigitalIdleState(struct soap *soap, const char *URL, enum tt__DigitalIdleState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DigitalIdleState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DigitalIdleState(struct soap *soap, enum tt__DigitalIdleState *p) -{ - if (::soap_read_tt__DigitalIdleState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayMode_DEFINED -#define SOAP_TYPE_tt__RelayMode_DEFINED - -inline void soap_default_tt__RelayMode(struct soap *soap, enum tt__RelayMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__RelayMode - *a = SOAP_DEFAULT_tt__RelayMode; -#else - *a = (enum tt__RelayMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayMode(struct soap*, const char*, int, const enum tt__RelayMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RelayMode2s(struct soap*, enum tt__RelayMode); -SOAP_FMAC3 enum tt__RelayMode * SOAP_FMAC4 soap_in_tt__RelayMode(struct soap*, const char*, enum tt__RelayMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RelayMode(struct soap*, const char*, enum tt__RelayMode *); - -SOAP_FMAC3 enum tt__RelayMode * SOAP_FMAC4 soap_new_tt__RelayMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RelayMode(struct soap*, const enum tt__RelayMode *, const char*, const char*); - -inline int soap_write_tt__RelayMode(struct soap *soap, enum tt__RelayMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__RelayMode(soap, p, "tt:RelayMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayMode(struct soap *soap, const char *URL, enum tt__RelayMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayMode(soap, p, "tt:RelayMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayMode(struct soap *soap, const char *URL, enum tt__RelayMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayMode(soap, p, "tt:RelayMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayMode(struct soap *soap, const char *URL, enum tt__RelayMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayMode(soap, p, "tt:RelayMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__RelayMode * SOAP_FMAC4 soap_get_tt__RelayMode(struct soap*, enum tt__RelayMode *, const char*, const char*); - -inline int soap_read_tt__RelayMode(struct soap *soap, enum tt__RelayMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__RelayMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayMode(struct soap *soap, const char *URL, enum tt__RelayMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayMode(struct soap *soap, enum tt__RelayMode *p) -{ - if (::soap_read_tt__RelayMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayIdleState_DEFINED -#define SOAP_TYPE_tt__RelayIdleState_DEFINED - -inline void soap_default_tt__RelayIdleState(struct soap *soap, enum tt__RelayIdleState *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__RelayIdleState - *a = SOAP_DEFAULT_tt__RelayIdleState; -#else - *a = (enum tt__RelayIdleState)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayIdleState(struct soap*, const char*, int, const enum tt__RelayIdleState *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RelayIdleState2s(struct soap*, enum tt__RelayIdleState); -SOAP_FMAC3 enum tt__RelayIdleState * SOAP_FMAC4 soap_in_tt__RelayIdleState(struct soap*, const char*, enum tt__RelayIdleState *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RelayIdleState(struct soap*, const char*, enum tt__RelayIdleState *); - -SOAP_FMAC3 enum tt__RelayIdleState * SOAP_FMAC4 soap_new_tt__RelayIdleState(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RelayIdleState(struct soap*, const enum tt__RelayIdleState *, const char*, const char*); - -inline int soap_write_tt__RelayIdleState(struct soap *soap, enum tt__RelayIdleState const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__RelayIdleState(soap, p, "tt:RelayIdleState", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayIdleState(struct soap *soap, const char *URL, enum tt__RelayIdleState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayIdleState(soap, p, "tt:RelayIdleState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayIdleState(struct soap *soap, const char *URL, enum tt__RelayIdleState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayIdleState(soap, p, "tt:RelayIdleState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayIdleState(struct soap *soap, const char *URL, enum tt__RelayIdleState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayIdleState(soap, p, "tt:RelayIdleState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__RelayIdleState * SOAP_FMAC4 soap_get_tt__RelayIdleState(struct soap*, enum tt__RelayIdleState *, const char*, const char*); - -inline int soap_read_tt__RelayIdleState(struct soap *soap, enum tt__RelayIdleState *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__RelayIdleState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayIdleState(struct soap *soap, const char *URL, enum tt__RelayIdleState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayIdleState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayIdleState(struct soap *soap, enum tt__RelayIdleState *p) -{ - if (::soap_read_tt__RelayIdleState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayLogicalState_DEFINED -#define SOAP_TYPE_tt__RelayLogicalState_DEFINED - -inline void soap_default_tt__RelayLogicalState(struct soap *soap, enum tt__RelayLogicalState *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__RelayLogicalState - *a = SOAP_DEFAULT_tt__RelayLogicalState; -#else - *a = (enum tt__RelayLogicalState)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayLogicalState(struct soap*, const char*, int, const enum tt__RelayLogicalState *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RelayLogicalState2s(struct soap*, enum tt__RelayLogicalState); -SOAP_FMAC3 enum tt__RelayLogicalState * SOAP_FMAC4 soap_in_tt__RelayLogicalState(struct soap*, const char*, enum tt__RelayLogicalState *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RelayLogicalState(struct soap*, const char*, enum tt__RelayLogicalState *); - -SOAP_FMAC3 enum tt__RelayLogicalState * SOAP_FMAC4 soap_new_tt__RelayLogicalState(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RelayLogicalState(struct soap*, const enum tt__RelayLogicalState *, const char*, const char*); - -inline int soap_write_tt__RelayLogicalState(struct soap *soap, enum tt__RelayLogicalState const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__RelayLogicalState(soap, p, "tt:RelayLogicalState", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayLogicalState(struct soap *soap, const char *URL, enum tt__RelayLogicalState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayLogicalState(soap, p, "tt:RelayLogicalState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayLogicalState(struct soap *soap, const char *URL, enum tt__RelayLogicalState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayLogicalState(soap, p, "tt:RelayLogicalState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayLogicalState(struct soap *soap, const char *URL, enum tt__RelayLogicalState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RelayLogicalState(soap, p, "tt:RelayLogicalState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__RelayLogicalState * SOAP_FMAC4 soap_get_tt__RelayLogicalState(struct soap*, enum tt__RelayLogicalState *, const char*, const char*); - -inline int soap_read_tt__RelayLogicalState(struct soap *soap, enum tt__RelayLogicalState *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__RelayLogicalState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayLogicalState(struct soap *soap, const char *URL, enum tt__RelayLogicalState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayLogicalState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayLogicalState(struct soap *soap, enum tt__RelayLogicalState *p) -{ - if (::soap_read_tt__RelayLogicalState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__UserLevel_DEFINED -#define SOAP_TYPE_tt__UserLevel_DEFINED - -inline void soap_default_tt__UserLevel(struct soap *soap, enum tt__UserLevel *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__UserLevel - *a = SOAP_DEFAULT_tt__UserLevel; -#else - *a = (enum tt__UserLevel)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__UserLevel(struct soap*, const char*, int, const enum tt__UserLevel *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__UserLevel2s(struct soap*, enum tt__UserLevel); -SOAP_FMAC3 enum tt__UserLevel * SOAP_FMAC4 soap_in_tt__UserLevel(struct soap*, const char*, enum tt__UserLevel *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__UserLevel(struct soap*, const char*, enum tt__UserLevel *); - -SOAP_FMAC3 enum tt__UserLevel * SOAP_FMAC4 soap_new_tt__UserLevel(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__UserLevel(struct soap*, const enum tt__UserLevel *, const char*, const char*); - -inline int soap_write_tt__UserLevel(struct soap *soap, enum tt__UserLevel const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__UserLevel(soap, p, "tt:UserLevel", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__UserLevel(struct soap *soap, const char *URL, enum tt__UserLevel const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__UserLevel(soap, p, "tt:UserLevel", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__UserLevel(struct soap *soap, const char *URL, enum tt__UserLevel const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__UserLevel(soap, p, "tt:UserLevel", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__UserLevel(struct soap *soap, const char *URL, enum tt__UserLevel const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__UserLevel(soap, p, "tt:UserLevel", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__UserLevel * SOAP_FMAC4 soap_get_tt__UserLevel(struct soap*, enum tt__UserLevel *, const char*, const char*); - -inline int soap_read_tt__UserLevel(struct soap *soap, enum tt__UserLevel *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__UserLevel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__UserLevel(struct soap *soap, const char *URL, enum tt__UserLevel *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__UserLevel(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__UserLevel(struct soap *soap, enum tt__UserLevel *p) -{ - if (::soap_read_tt__UserLevel(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SetDateTimeType_DEFINED -#define SOAP_TYPE_tt__SetDateTimeType_DEFINED - -inline void soap_default_tt__SetDateTimeType(struct soap *soap, enum tt__SetDateTimeType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__SetDateTimeType - *a = SOAP_DEFAULT_tt__SetDateTimeType; -#else - *a = (enum tt__SetDateTimeType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SetDateTimeType(struct soap*, const char*, int, const enum tt__SetDateTimeType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SetDateTimeType2s(struct soap*, enum tt__SetDateTimeType); -SOAP_FMAC3 enum tt__SetDateTimeType * SOAP_FMAC4 soap_in_tt__SetDateTimeType(struct soap*, const char*, enum tt__SetDateTimeType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SetDateTimeType(struct soap*, const char*, enum tt__SetDateTimeType *); - -SOAP_FMAC3 enum tt__SetDateTimeType * SOAP_FMAC4 soap_new_tt__SetDateTimeType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SetDateTimeType(struct soap*, const enum tt__SetDateTimeType *, const char*, const char*); - -inline int soap_write_tt__SetDateTimeType(struct soap *soap, enum tt__SetDateTimeType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__SetDateTimeType(soap, p, "tt:SetDateTimeType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__SetDateTimeType(struct soap *soap, const char *URL, enum tt__SetDateTimeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SetDateTimeType(soap, p, "tt:SetDateTimeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SetDateTimeType(struct soap *soap, const char *URL, enum tt__SetDateTimeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SetDateTimeType(soap, p, "tt:SetDateTimeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SetDateTimeType(struct soap *soap, const char *URL, enum tt__SetDateTimeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SetDateTimeType(soap, p, "tt:SetDateTimeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__SetDateTimeType * SOAP_FMAC4 soap_get_tt__SetDateTimeType(struct soap*, enum tt__SetDateTimeType *, const char*, const char*); - -inline int soap_read_tt__SetDateTimeType(struct soap *soap, enum tt__SetDateTimeType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__SetDateTimeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SetDateTimeType(struct soap *soap, const char *URL, enum tt__SetDateTimeType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SetDateTimeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SetDateTimeType(struct soap *soap, enum tt__SetDateTimeType *p) -{ - if (::soap_read_tt__SetDateTimeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FactoryDefaultType_DEFINED -#define SOAP_TYPE_tt__FactoryDefaultType_DEFINED - -inline void soap_default_tt__FactoryDefaultType(struct soap *soap, enum tt__FactoryDefaultType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__FactoryDefaultType - *a = SOAP_DEFAULT_tt__FactoryDefaultType; -#else - *a = (enum tt__FactoryDefaultType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FactoryDefaultType(struct soap*, const char*, int, const enum tt__FactoryDefaultType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__FactoryDefaultType2s(struct soap*, enum tt__FactoryDefaultType); -SOAP_FMAC3 enum tt__FactoryDefaultType * SOAP_FMAC4 soap_in_tt__FactoryDefaultType(struct soap*, const char*, enum tt__FactoryDefaultType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__FactoryDefaultType(struct soap*, const char*, enum tt__FactoryDefaultType *); - -SOAP_FMAC3 enum tt__FactoryDefaultType * SOAP_FMAC4 soap_new_tt__FactoryDefaultType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__FactoryDefaultType(struct soap*, const enum tt__FactoryDefaultType *, const char*, const char*); - -inline int soap_write_tt__FactoryDefaultType(struct soap *soap, enum tt__FactoryDefaultType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__FactoryDefaultType(soap, p, "tt:FactoryDefaultType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__FactoryDefaultType(struct soap *soap, const char *URL, enum tt__FactoryDefaultType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__FactoryDefaultType(soap, p, "tt:FactoryDefaultType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FactoryDefaultType(struct soap *soap, const char *URL, enum tt__FactoryDefaultType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__FactoryDefaultType(soap, p, "tt:FactoryDefaultType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FactoryDefaultType(struct soap *soap, const char *URL, enum tt__FactoryDefaultType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__FactoryDefaultType(soap, p, "tt:FactoryDefaultType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__FactoryDefaultType * SOAP_FMAC4 soap_get_tt__FactoryDefaultType(struct soap*, enum tt__FactoryDefaultType *, const char*, const char*); - -inline int soap_read_tt__FactoryDefaultType(struct soap *soap, enum tt__FactoryDefaultType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__FactoryDefaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FactoryDefaultType(struct soap *soap, const char *URL, enum tt__FactoryDefaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FactoryDefaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FactoryDefaultType(struct soap *soap, enum tt__FactoryDefaultType *p) -{ - if (::soap_read_tt__FactoryDefaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemLogType_DEFINED -#define SOAP_TYPE_tt__SystemLogType_DEFINED - -inline void soap_default_tt__SystemLogType(struct soap *soap, enum tt__SystemLogType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__SystemLogType - *a = SOAP_DEFAULT_tt__SystemLogType; -#else - *a = (enum tt__SystemLogType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogType(struct soap*, const char*, int, const enum tt__SystemLogType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SystemLogType2s(struct soap*, enum tt__SystemLogType); -SOAP_FMAC3 enum tt__SystemLogType * SOAP_FMAC4 soap_in_tt__SystemLogType(struct soap*, const char*, enum tt__SystemLogType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SystemLogType(struct soap*, const char*, enum tt__SystemLogType *); - -SOAP_FMAC3 enum tt__SystemLogType * SOAP_FMAC4 soap_new_tt__SystemLogType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SystemLogType(struct soap*, const enum tt__SystemLogType *, const char*, const char*); - -inline int soap_write_tt__SystemLogType(struct soap *soap, enum tt__SystemLogType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__SystemLogType(soap, p, "tt:SystemLogType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemLogType(struct soap *soap, const char *URL, enum tt__SystemLogType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SystemLogType(soap, p, "tt:SystemLogType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemLogType(struct soap *soap, const char *URL, enum tt__SystemLogType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SystemLogType(soap, p, "tt:SystemLogType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemLogType(struct soap *soap, const char *URL, enum tt__SystemLogType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SystemLogType(soap, p, "tt:SystemLogType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__SystemLogType * SOAP_FMAC4 soap_get_tt__SystemLogType(struct soap*, enum tt__SystemLogType *, const char*, const char*); - -inline int soap_read_tt__SystemLogType(struct soap *soap, enum tt__SystemLogType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__SystemLogType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemLogType(struct soap *soap, const char *URL, enum tt__SystemLogType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemLogType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemLogType(struct soap *soap, enum tt__SystemLogType *p) -{ - if (::soap_read_tt__SystemLogType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CapabilityCategory_DEFINED -#define SOAP_TYPE_tt__CapabilityCategory_DEFINED - -inline void soap_default_tt__CapabilityCategory(struct soap *soap, enum tt__CapabilityCategory *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__CapabilityCategory - *a = SOAP_DEFAULT_tt__CapabilityCategory; -#else - *a = (enum tt__CapabilityCategory)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilityCategory(struct soap*, const char*, int, const enum tt__CapabilityCategory *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__CapabilityCategory2s(struct soap*, enum tt__CapabilityCategory); -SOAP_FMAC3 enum tt__CapabilityCategory * SOAP_FMAC4 soap_in_tt__CapabilityCategory(struct soap*, const char*, enum tt__CapabilityCategory *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__CapabilityCategory(struct soap*, const char*, enum tt__CapabilityCategory *); - -SOAP_FMAC3 enum tt__CapabilityCategory * SOAP_FMAC4 soap_new_tt__CapabilityCategory(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__CapabilityCategory(struct soap*, const enum tt__CapabilityCategory *, const char*, const char*); - -inline int soap_write_tt__CapabilityCategory(struct soap *soap, enum tt__CapabilityCategory const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__CapabilityCategory(soap, p, "tt:CapabilityCategory", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__CapabilityCategory(struct soap *soap, const char *URL, enum tt__CapabilityCategory const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__CapabilityCategory(soap, p, "tt:CapabilityCategory", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CapabilityCategory(struct soap *soap, const char *URL, enum tt__CapabilityCategory const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__CapabilityCategory(soap, p, "tt:CapabilityCategory", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CapabilityCategory(struct soap *soap, const char *URL, enum tt__CapabilityCategory const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__CapabilityCategory(soap, p, "tt:CapabilityCategory", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__CapabilityCategory * SOAP_FMAC4 soap_get_tt__CapabilityCategory(struct soap*, enum tt__CapabilityCategory *, const char*, const char*); - -inline int soap_read_tt__CapabilityCategory(struct soap *soap, enum tt__CapabilityCategory *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__CapabilityCategory(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CapabilityCategory(struct soap *soap, const char *URL, enum tt__CapabilityCategory *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CapabilityCategory(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CapabilityCategory(struct soap *soap, enum tt__CapabilityCategory *p) -{ - if (::soap_read_tt__CapabilityCategory(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11AuthAndMangementSuite_DEFINED -#define SOAP_TYPE_tt__Dot11AuthAndMangementSuite_DEFINED - -inline void soap_default_tt__Dot11AuthAndMangementSuite(struct soap *soap, enum tt__Dot11AuthAndMangementSuite *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Dot11AuthAndMangementSuite - *a = SOAP_DEFAULT_tt__Dot11AuthAndMangementSuite; -#else - *a = (enum tt__Dot11AuthAndMangementSuite)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AuthAndMangementSuite(struct soap*, const char*, int, const enum tt__Dot11AuthAndMangementSuite *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11AuthAndMangementSuite2s(struct soap*, enum tt__Dot11AuthAndMangementSuite); -SOAP_FMAC3 enum tt__Dot11AuthAndMangementSuite * SOAP_FMAC4 soap_in_tt__Dot11AuthAndMangementSuite(struct soap*, const char*, enum tt__Dot11AuthAndMangementSuite *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11AuthAndMangementSuite(struct soap*, const char*, enum tt__Dot11AuthAndMangementSuite *); - -SOAP_FMAC3 enum tt__Dot11AuthAndMangementSuite * SOAP_FMAC4 soap_new_tt__Dot11AuthAndMangementSuite(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11AuthAndMangementSuite(struct soap*, const enum tt__Dot11AuthAndMangementSuite *, const char*, const char*); - -inline int soap_write_tt__Dot11AuthAndMangementSuite(struct soap *soap, enum tt__Dot11AuthAndMangementSuite const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Dot11AuthAndMangementSuite(soap, p, "tt:Dot11AuthAndMangementSuite", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11AuthAndMangementSuite(struct soap *soap, const char *URL, enum tt__Dot11AuthAndMangementSuite const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11AuthAndMangementSuite(soap, p, "tt:Dot11AuthAndMangementSuite", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11AuthAndMangementSuite(struct soap *soap, const char *URL, enum tt__Dot11AuthAndMangementSuite const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11AuthAndMangementSuite(soap, p, "tt:Dot11AuthAndMangementSuite", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11AuthAndMangementSuite(struct soap *soap, const char *URL, enum tt__Dot11AuthAndMangementSuite const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11AuthAndMangementSuite(soap, p, "tt:Dot11AuthAndMangementSuite", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Dot11AuthAndMangementSuite * SOAP_FMAC4 soap_get_tt__Dot11AuthAndMangementSuite(struct soap*, enum tt__Dot11AuthAndMangementSuite *, const char*, const char*); - -inline int soap_read_tt__Dot11AuthAndMangementSuite(struct soap *soap, enum tt__Dot11AuthAndMangementSuite *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Dot11AuthAndMangementSuite(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11AuthAndMangementSuite(struct soap *soap, const char *URL, enum tt__Dot11AuthAndMangementSuite *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11AuthAndMangementSuite(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11AuthAndMangementSuite(struct soap *soap, enum tt__Dot11AuthAndMangementSuite *p) -{ - if (::soap_read_tt__Dot11AuthAndMangementSuite(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SignalStrength_DEFINED -#define SOAP_TYPE_tt__Dot11SignalStrength_DEFINED - -inline void soap_default_tt__Dot11SignalStrength(struct soap *soap, enum tt__Dot11SignalStrength *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Dot11SignalStrength - *a = SOAP_DEFAULT_tt__Dot11SignalStrength; -#else - *a = (enum tt__Dot11SignalStrength)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SignalStrength(struct soap*, const char*, int, const enum tt__Dot11SignalStrength *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11SignalStrength2s(struct soap*, enum tt__Dot11SignalStrength); -SOAP_FMAC3 enum tt__Dot11SignalStrength * SOAP_FMAC4 soap_in_tt__Dot11SignalStrength(struct soap*, const char*, enum tt__Dot11SignalStrength *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11SignalStrength(struct soap*, const char*, enum tt__Dot11SignalStrength *); - -SOAP_FMAC3 enum tt__Dot11SignalStrength * SOAP_FMAC4 soap_new_tt__Dot11SignalStrength(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11SignalStrength(struct soap*, const enum tt__Dot11SignalStrength *, const char*, const char*); - -inline int soap_write_tt__Dot11SignalStrength(struct soap *soap, enum tt__Dot11SignalStrength const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Dot11SignalStrength(soap, p, "tt:Dot11SignalStrength", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SignalStrength(struct soap *soap, const char *URL, enum tt__Dot11SignalStrength const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11SignalStrength(soap, p, "tt:Dot11SignalStrength", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SignalStrength(struct soap *soap, const char *URL, enum tt__Dot11SignalStrength const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11SignalStrength(soap, p, "tt:Dot11SignalStrength", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SignalStrength(struct soap *soap, const char *URL, enum tt__Dot11SignalStrength const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11SignalStrength(soap, p, "tt:Dot11SignalStrength", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Dot11SignalStrength * SOAP_FMAC4 soap_get_tt__Dot11SignalStrength(struct soap*, enum tt__Dot11SignalStrength *, const char*, const char*); - -inline int soap_read_tt__Dot11SignalStrength(struct soap *soap, enum tt__Dot11SignalStrength *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SignalStrength(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SignalStrength(struct soap *soap, const char *URL, enum tt__Dot11SignalStrength *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SignalStrength(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SignalStrength(struct soap *soap, enum tt__Dot11SignalStrength *p) -{ - if (::soap_read_tt__Dot11SignalStrength(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11Cipher_DEFINED -#define SOAP_TYPE_tt__Dot11Cipher_DEFINED - -inline void soap_default_tt__Dot11Cipher(struct soap *soap, enum tt__Dot11Cipher *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Dot11Cipher - *a = SOAP_DEFAULT_tt__Dot11Cipher; -#else - *a = (enum tt__Dot11Cipher)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Cipher(struct soap*, const char*, int, const enum tt__Dot11Cipher *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11Cipher2s(struct soap*, enum tt__Dot11Cipher); -SOAP_FMAC3 enum tt__Dot11Cipher * SOAP_FMAC4 soap_in_tt__Dot11Cipher(struct soap*, const char*, enum tt__Dot11Cipher *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11Cipher(struct soap*, const char*, enum tt__Dot11Cipher *); - -SOAP_FMAC3 enum tt__Dot11Cipher * SOAP_FMAC4 soap_new_tt__Dot11Cipher(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11Cipher(struct soap*, const enum tt__Dot11Cipher *, const char*, const char*); - -inline int soap_write_tt__Dot11Cipher(struct soap *soap, enum tt__Dot11Cipher const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Dot11Cipher(soap, p, "tt:Dot11Cipher", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11Cipher(struct soap *soap, const char *URL, enum tt__Dot11Cipher const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11Cipher(soap, p, "tt:Dot11Cipher", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11Cipher(struct soap *soap, const char *URL, enum tt__Dot11Cipher const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11Cipher(soap, p, "tt:Dot11Cipher", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11Cipher(struct soap *soap, const char *URL, enum tt__Dot11Cipher const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11Cipher(soap, p, "tt:Dot11Cipher", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Dot11Cipher * SOAP_FMAC4 soap_get_tt__Dot11Cipher(struct soap*, enum tt__Dot11Cipher *, const char*, const char*); - -inline int soap_read_tt__Dot11Cipher(struct soap *soap, enum tt__Dot11Cipher *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Dot11Cipher(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11Cipher(struct soap *soap, const char *URL, enum tt__Dot11Cipher *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11Cipher(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11Cipher(struct soap *soap, enum tt__Dot11Cipher *p) -{ - if (::soap_read_tt__Dot11Cipher(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SecurityMode_DEFINED -#define SOAP_TYPE_tt__Dot11SecurityMode_DEFINED - -inline void soap_default_tt__Dot11SecurityMode(struct soap *soap, enum tt__Dot11SecurityMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Dot11SecurityMode - *a = SOAP_DEFAULT_tt__Dot11SecurityMode; -#else - *a = (enum tt__Dot11SecurityMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityMode(struct soap*, const char*, int, const enum tt__Dot11SecurityMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11SecurityMode2s(struct soap*, enum tt__Dot11SecurityMode); -SOAP_FMAC3 enum tt__Dot11SecurityMode * SOAP_FMAC4 soap_in_tt__Dot11SecurityMode(struct soap*, const char*, enum tt__Dot11SecurityMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11SecurityMode(struct soap*, const char*, enum tt__Dot11SecurityMode *); - -SOAP_FMAC3 enum tt__Dot11SecurityMode * SOAP_FMAC4 soap_new_tt__Dot11SecurityMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11SecurityMode(struct soap*, const enum tt__Dot11SecurityMode *, const char*, const char*); - -inline int soap_write_tt__Dot11SecurityMode(struct soap *soap, enum tt__Dot11SecurityMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Dot11SecurityMode(soap, p, "tt:Dot11SecurityMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SecurityMode(struct soap *soap, const char *URL, enum tt__Dot11SecurityMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11SecurityMode(soap, p, "tt:Dot11SecurityMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SecurityMode(struct soap *soap, const char *URL, enum tt__Dot11SecurityMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11SecurityMode(soap, p, "tt:Dot11SecurityMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SecurityMode(struct soap *soap, const char *URL, enum tt__Dot11SecurityMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11SecurityMode(soap, p, "tt:Dot11SecurityMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Dot11SecurityMode * SOAP_FMAC4 soap_get_tt__Dot11SecurityMode(struct soap*, enum tt__Dot11SecurityMode *, const char*, const char*); - -inline int soap_read_tt__Dot11SecurityMode(struct soap *soap, enum tt__Dot11SecurityMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SecurityMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SecurityMode(struct soap *soap, const char *URL, enum tt__Dot11SecurityMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SecurityMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SecurityMode(struct soap *soap, enum tt__Dot11SecurityMode *p) -{ - if (::soap_read_tt__Dot11SecurityMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11StationMode_DEFINED -#define SOAP_TYPE_tt__Dot11StationMode_DEFINED - -inline void soap_default_tt__Dot11StationMode(struct soap *soap, enum tt__Dot11StationMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Dot11StationMode - *a = SOAP_DEFAULT_tt__Dot11StationMode; -#else - *a = (enum tt__Dot11StationMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11StationMode(struct soap*, const char*, int, const enum tt__Dot11StationMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11StationMode2s(struct soap*, enum tt__Dot11StationMode); -SOAP_FMAC3 enum tt__Dot11StationMode * SOAP_FMAC4 soap_in_tt__Dot11StationMode(struct soap*, const char*, enum tt__Dot11StationMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11StationMode(struct soap*, const char*, enum tt__Dot11StationMode *); - -SOAP_FMAC3 enum tt__Dot11StationMode * SOAP_FMAC4 soap_new_tt__Dot11StationMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11StationMode(struct soap*, const enum tt__Dot11StationMode *, const char*, const char*); - -inline int soap_write_tt__Dot11StationMode(struct soap *soap, enum tt__Dot11StationMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Dot11StationMode(soap, p, "tt:Dot11StationMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11StationMode(struct soap *soap, const char *URL, enum tt__Dot11StationMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11StationMode(soap, p, "tt:Dot11StationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11StationMode(struct soap *soap, const char *URL, enum tt__Dot11StationMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11StationMode(soap, p, "tt:Dot11StationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11StationMode(struct soap *soap, const char *URL, enum tt__Dot11StationMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11StationMode(soap, p, "tt:Dot11StationMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Dot11StationMode * SOAP_FMAC4 soap_get_tt__Dot11StationMode(struct soap*, enum tt__Dot11StationMode *, const char*, const char*); - -inline int soap_read_tt__Dot11StationMode(struct soap *soap, enum tt__Dot11StationMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Dot11StationMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11StationMode(struct soap *soap, const char *URL, enum tt__Dot11StationMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11StationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11StationMode(struct soap *soap, enum tt__Dot11StationMode *p) -{ - if (::soap_read_tt__Dot11StationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DynamicDNSType_DEFINED -#define SOAP_TYPE_tt__DynamicDNSType_DEFINED - -inline void soap_default_tt__DynamicDNSType(struct soap *soap, enum tt__DynamicDNSType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__DynamicDNSType - *a = SOAP_DEFAULT_tt__DynamicDNSType; -#else - *a = (enum tt__DynamicDNSType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSType(struct soap*, const char*, int, const enum tt__DynamicDNSType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DynamicDNSType2s(struct soap*, enum tt__DynamicDNSType); -SOAP_FMAC3 enum tt__DynamicDNSType * SOAP_FMAC4 soap_in_tt__DynamicDNSType(struct soap*, const char*, enum tt__DynamicDNSType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DynamicDNSType(struct soap*, const char*, enum tt__DynamicDNSType *); - -SOAP_FMAC3 enum tt__DynamicDNSType * SOAP_FMAC4 soap_new_tt__DynamicDNSType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DynamicDNSType(struct soap*, const enum tt__DynamicDNSType *, const char*, const char*); - -inline int soap_write_tt__DynamicDNSType(struct soap *soap, enum tt__DynamicDNSType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__DynamicDNSType(soap, p, "tt:DynamicDNSType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__DynamicDNSType(struct soap *soap, const char *URL, enum tt__DynamicDNSType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DynamicDNSType(soap, p, "tt:DynamicDNSType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DynamicDNSType(struct soap *soap, const char *URL, enum tt__DynamicDNSType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DynamicDNSType(soap, p, "tt:DynamicDNSType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DynamicDNSType(struct soap *soap, const char *URL, enum tt__DynamicDNSType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DynamicDNSType(soap, p, "tt:DynamicDNSType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__DynamicDNSType * SOAP_FMAC4 soap_get_tt__DynamicDNSType(struct soap*, enum tt__DynamicDNSType *, const char*, const char*); - -inline int soap_read_tt__DynamicDNSType(struct soap *soap, enum tt__DynamicDNSType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__DynamicDNSType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DynamicDNSType(struct soap *soap, const char *URL, enum tt__DynamicDNSType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DynamicDNSType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DynamicDNSType(struct soap *soap, enum tt__DynamicDNSType *p) -{ - if (::soap_read_tt__DynamicDNSType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPAddressFilterType_DEFINED -#define SOAP_TYPE_tt__IPAddressFilterType_DEFINED - -inline void soap_default_tt__IPAddressFilterType(struct soap *soap, enum tt__IPAddressFilterType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__IPAddressFilterType - *a = SOAP_DEFAULT_tt__IPAddressFilterType; -#else - *a = (enum tt__IPAddressFilterType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilterType(struct soap*, const char*, int, const enum tt__IPAddressFilterType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IPAddressFilterType2s(struct soap*, enum tt__IPAddressFilterType); -SOAP_FMAC3 enum tt__IPAddressFilterType * SOAP_FMAC4 soap_in_tt__IPAddressFilterType(struct soap*, const char*, enum tt__IPAddressFilterType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IPAddressFilterType(struct soap*, const char*, enum tt__IPAddressFilterType *); - -SOAP_FMAC3 enum tt__IPAddressFilterType * SOAP_FMAC4 soap_new_tt__IPAddressFilterType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IPAddressFilterType(struct soap*, const enum tt__IPAddressFilterType *, const char*, const char*); - -inline int soap_write_tt__IPAddressFilterType(struct soap *soap, enum tt__IPAddressFilterType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__IPAddressFilterType(soap, p, "tt:IPAddressFilterType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__IPAddressFilterType(struct soap *soap, const char *URL, enum tt__IPAddressFilterType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPAddressFilterType(soap, p, "tt:IPAddressFilterType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPAddressFilterType(struct soap *soap, const char *URL, enum tt__IPAddressFilterType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPAddressFilterType(soap, p, "tt:IPAddressFilterType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPAddressFilterType(struct soap *soap, const char *URL, enum tt__IPAddressFilterType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPAddressFilterType(soap, p, "tt:IPAddressFilterType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__IPAddressFilterType * SOAP_FMAC4 soap_get_tt__IPAddressFilterType(struct soap*, enum tt__IPAddressFilterType *, const char*, const char*); - -inline int soap_read_tt__IPAddressFilterType(struct soap *soap, enum tt__IPAddressFilterType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__IPAddressFilterType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPAddressFilterType(struct soap *soap, const char *URL, enum tt__IPAddressFilterType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPAddressFilterType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPAddressFilterType(struct soap *soap, enum tt__IPAddressFilterType *p) -{ - if (::soap_read_tt__IPAddressFilterType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPType_DEFINED -#define SOAP_TYPE_tt__IPType_DEFINED - -inline void soap_default_tt__IPType(struct soap *soap, enum tt__IPType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__IPType - *a = SOAP_DEFAULT_tt__IPType; -#else - *a = (enum tt__IPType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPType(struct soap*, const char*, int, const enum tt__IPType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IPType2s(struct soap*, enum tt__IPType); -SOAP_FMAC3 enum tt__IPType * SOAP_FMAC4 soap_in_tt__IPType(struct soap*, const char*, enum tt__IPType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IPType(struct soap*, const char*, enum tt__IPType *); - -SOAP_FMAC3 enum tt__IPType * SOAP_FMAC4 soap_new_tt__IPType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IPType(struct soap*, const enum tt__IPType *, const char*, const char*); - -inline int soap_write_tt__IPType(struct soap *soap, enum tt__IPType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__IPType(soap, p, "tt:IPType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__IPType(struct soap *soap, const char *URL, enum tt__IPType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPType(soap, p, "tt:IPType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPType(struct soap *soap, const char *URL, enum tt__IPType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPType(soap, p, "tt:IPType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPType(struct soap *soap, const char *URL, enum tt__IPType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPType(soap, p, "tt:IPType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__IPType * SOAP_FMAC4 soap_get_tt__IPType(struct soap*, enum tt__IPType *, const char*, const char*); - -inline int soap_read_tt__IPType(struct soap *soap, enum tt__IPType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__IPType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPType(struct soap *soap, const char *URL, enum tt__IPType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPType(struct soap *soap, enum tt__IPType *p) -{ - if (::soap_read_tt__IPType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkHostType_DEFINED -#define SOAP_TYPE_tt__NetworkHostType_DEFINED - -inline void soap_default_tt__NetworkHostType(struct soap *soap, enum tt__NetworkHostType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__NetworkHostType - *a = SOAP_DEFAULT_tt__NetworkHostType; -#else - *a = (enum tt__NetworkHostType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHostType(struct soap*, const char*, int, const enum tt__NetworkHostType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__NetworkHostType2s(struct soap*, enum tt__NetworkHostType); -SOAP_FMAC3 enum tt__NetworkHostType * SOAP_FMAC4 soap_in_tt__NetworkHostType(struct soap*, const char*, enum tt__NetworkHostType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__NetworkHostType(struct soap*, const char*, enum tt__NetworkHostType *); - -SOAP_FMAC3 enum tt__NetworkHostType * SOAP_FMAC4 soap_new_tt__NetworkHostType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__NetworkHostType(struct soap*, const enum tt__NetworkHostType *, const char*, const char*); - -inline int soap_write_tt__NetworkHostType(struct soap *soap, enum tt__NetworkHostType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__NetworkHostType(soap, p, "tt:NetworkHostType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkHostType(struct soap *soap, const char *URL, enum tt__NetworkHostType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__NetworkHostType(soap, p, "tt:NetworkHostType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkHostType(struct soap *soap, const char *URL, enum tt__NetworkHostType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__NetworkHostType(soap, p, "tt:NetworkHostType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkHostType(struct soap *soap, const char *URL, enum tt__NetworkHostType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__NetworkHostType(soap, p, "tt:NetworkHostType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__NetworkHostType * SOAP_FMAC4 soap_get_tt__NetworkHostType(struct soap*, enum tt__NetworkHostType *, const char*, const char*); - -inline int soap_read_tt__NetworkHostType(struct soap *soap, enum tt__NetworkHostType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__NetworkHostType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkHostType(struct soap *soap, const char *URL, enum tt__NetworkHostType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkHostType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkHostType(struct soap *soap, enum tt__NetworkHostType *p) -{ - if (::soap_read_tt__NetworkHostType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkProtocolType_DEFINED -#define SOAP_TYPE_tt__NetworkProtocolType_DEFINED - -inline void soap_default_tt__NetworkProtocolType(struct soap *soap, enum tt__NetworkProtocolType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__NetworkProtocolType - *a = SOAP_DEFAULT_tt__NetworkProtocolType; -#else - *a = (enum tt__NetworkProtocolType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocolType(struct soap*, const char*, int, const enum tt__NetworkProtocolType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__NetworkProtocolType2s(struct soap*, enum tt__NetworkProtocolType); -SOAP_FMAC3 enum tt__NetworkProtocolType * SOAP_FMAC4 soap_in_tt__NetworkProtocolType(struct soap*, const char*, enum tt__NetworkProtocolType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__NetworkProtocolType(struct soap*, const char*, enum tt__NetworkProtocolType *); - -SOAP_FMAC3 enum tt__NetworkProtocolType * SOAP_FMAC4 soap_new_tt__NetworkProtocolType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__NetworkProtocolType(struct soap*, const enum tt__NetworkProtocolType *, const char*, const char*); - -inline int soap_write_tt__NetworkProtocolType(struct soap *soap, enum tt__NetworkProtocolType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__NetworkProtocolType(soap, p, "tt:NetworkProtocolType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkProtocolType(struct soap *soap, const char *URL, enum tt__NetworkProtocolType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__NetworkProtocolType(soap, p, "tt:NetworkProtocolType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkProtocolType(struct soap *soap, const char *URL, enum tt__NetworkProtocolType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__NetworkProtocolType(soap, p, "tt:NetworkProtocolType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkProtocolType(struct soap *soap, const char *URL, enum tt__NetworkProtocolType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__NetworkProtocolType(soap, p, "tt:NetworkProtocolType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__NetworkProtocolType * SOAP_FMAC4 soap_get_tt__NetworkProtocolType(struct soap*, enum tt__NetworkProtocolType *, const char*, const char*); - -inline int soap_read_tt__NetworkProtocolType(struct soap *soap, enum tt__NetworkProtocolType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__NetworkProtocolType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkProtocolType(struct soap *soap, const char *URL, enum tt__NetworkProtocolType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkProtocolType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkProtocolType(struct soap *soap, enum tt__NetworkProtocolType *p) -{ - if (::soap_read_tt__NetworkProtocolType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv6DHCPConfiguration_DEFINED -#define SOAP_TYPE_tt__IPv6DHCPConfiguration_DEFINED - -inline void soap_default_tt__IPv6DHCPConfiguration(struct soap *soap, enum tt__IPv6DHCPConfiguration *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__IPv6DHCPConfiguration - *a = SOAP_DEFAULT_tt__IPv6DHCPConfiguration; -#else - *a = (enum tt__IPv6DHCPConfiguration)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6DHCPConfiguration(struct soap*, const char*, int, const enum tt__IPv6DHCPConfiguration *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__IPv6DHCPConfiguration2s(struct soap*, enum tt__IPv6DHCPConfiguration); -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration * SOAP_FMAC4 soap_in_tt__IPv6DHCPConfiguration(struct soap*, const char*, enum tt__IPv6DHCPConfiguration *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__IPv6DHCPConfiguration(struct soap*, const char*, enum tt__IPv6DHCPConfiguration *); - -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration * SOAP_FMAC4 soap_new_tt__IPv6DHCPConfiguration(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IPv6DHCPConfiguration(struct soap*, const enum tt__IPv6DHCPConfiguration *, const char*, const char*); - -inline int soap_write_tt__IPv6DHCPConfiguration(struct soap *soap, enum tt__IPv6DHCPConfiguration const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__IPv6DHCPConfiguration(soap, p, "tt:IPv6DHCPConfiguration", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv6DHCPConfiguration(struct soap *soap, const char *URL, enum tt__IPv6DHCPConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPv6DHCPConfiguration(soap, p, "tt:IPv6DHCPConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv6DHCPConfiguration(struct soap *soap, const char *URL, enum tt__IPv6DHCPConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPv6DHCPConfiguration(soap, p, "tt:IPv6DHCPConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv6DHCPConfiguration(struct soap *soap, const char *URL, enum tt__IPv6DHCPConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IPv6DHCPConfiguration(soap, p, "tt:IPv6DHCPConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration * SOAP_FMAC4 soap_get_tt__IPv6DHCPConfiguration(struct soap*, enum tt__IPv6DHCPConfiguration *, const char*, const char*); - -inline int soap_read_tt__IPv6DHCPConfiguration(struct soap *soap, enum tt__IPv6DHCPConfiguration *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__IPv6DHCPConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv6DHCPConfiguration(struct soap *soap, const char *URL, enum tt__IPv6DHCPConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv6DHCPConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv6DHCPConfiguration(struct soap *soap, enum tt__IPv6DHCPConfiguration *p) -{ - if (::soap_read_tt__IPv6DHCPConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Duplex_DEFINED -#define SOAP_TYPE_tt__Duplex_DEFINED - -inline void soap_default_tt__Duplex(struct soap *soap, enum tt__Duplex *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Duplex - *a = SOAP_DEFAULT_tt__Duplex; -#else - *a = (enum tt__Duplex)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Duplex(struct soap*, const char*, int, const enum tt__Duplex *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Duplex2s(struct soap*, enum tt__Duplex); -SOAP_FMAC3 enum tt__Duplex * SOAP_FMAC4 soap_in_tt__Duplex(struct soap*, const char*, enum tt__Duplex *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Duplex(struct soap*, const char*, enum tt__Duplex *); - -SOAP_FMAC3 enum tt__Duplex * SOAP_FMAC4 soap_new_tt__Duplex(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Duplex(struct soap*, const enum tt__Duplex *, const char*, const char*); - -inline int soap_write_tt__Duplex(struct soap *soap, enum tt__Duplex const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Duplex(soap, p, "tt:Duplex", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Duplex(struct soap *soap, const char *URL, enum tt__Duplex const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Duplex(soap, p, "tt:Duplex", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Duplex(struct soap *soap, const char *URL, enum tt__Duplex const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Duplex(soap, p, "tt:Duplex", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Duplex(struct soap *soap, const char *URL, enum tt__Duplex const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Duplex(soap, p, "tt:Duplex", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Duplex * SOAP_FMAC4 soap_get_tt__Duplex(struct soap*, enum tt__Duplex *, const char*, const char*); - -inline int soap_read_tt__Duplex(struct soap *soap, enum tt__Duplex *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Duplex(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Duplex(struct soap *soap, const char *URL, enum tt__Duplex *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Duplex(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Duplex(struct soap *soap, enum tt__Duplex *p) -{ - if (::soap_read_tt__Duplex(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DiscoveryMode_DEFINED -#define SOAP_TYPE_tt__DiscoveryMode_DEFINED - -inline void soap_default_tt__DiscoveryMode(struct soap *soap, enum tt__DiscoveryMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__DiscoveryMode - *a = SOAP_DEFAULT_tt__DiscoveryMode; -#else - *a = (enum tt__DiscoveryMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DiscoveryMode(struct soap*, const char*, int, const enum tt__DiscoveryMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__DiscoveryMode2s(struct soap*, enum tt__DiscoveryMode); -SOAP_FMAC3 enum tt__DiscoveryMode * SOAP_FMAC4 soap_in_tt__DiscoveryMode(struct soap*, const char*, enum tt__DiscoveryMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__DiscoveryMode(struct soap*, const char*, enum tt__DiscoveryMode *); - -SOAP_FMAC3 enum tt__DiscoveryMode * SOAP_FMAC4 soap_new_tt__DiscoveryMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__DiscoveryMode(struct soap*, const enum tt__DiscoveryMode *, const char*, const char*); - -inline int soap_write_tt__DiscoveryMode(struct soap *soap, enum tt__DiscoveryMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__DiscoveryMode(soap, p, "tt:DiscoveryMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__DiscoveryMode(struct soap *soap, const char *URL, enum tt__DiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DiscoveryMode(soap, p, "tt:DiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DiscoveryMode(struct soap *soap, const char *URL, enum tt__DiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DiscoveryMode(soap, p, "tt:DiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DiscoveryMode(struct soap *soap, const char *URL, enum tt__DiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__DiscoveryMode(soap, p, "tt:DiscoveryMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__DiscoveryMode * SOAP_FMAC4 soap_get_tt__DiscoveryMode(struct soap*, enum tt__DiscoveryMode *, const char*, const char*); - -inline int soap_read_tt__DiscoveryMode(struct soap *soap, enum tt__DiscoveryMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__DiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DiscoveryMode(struct soap *soap, const char *URL, enum tt__DiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DiscoveryMode(struct soap *soap, enum tt__DiscoveryMode *p) -{ - if (::soap_read_tt__DiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ScopeDefinition_DEFINED -#define SOAP_TYPE_tt__ScopeDefinition_DEFINED - -inline void soap_default_tt__ScopeDefinition(struct soap *soap, enum tt__ScopeDefinition *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ScopeDefinition - *a = SOAP_DEFAULT_tt__ScopeDefinition; -#else - *a = (enum tt__ScopeDefinition)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ScopeDefinition(struct soap*, const char*, int, const enum tt__ScopeDefinition *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ScopeDefinition2s(struct soap*, enum tt__ScopeDefinition); -SOAP_FMAC3 enum tt__ScopeDefinition * SOAP_FMAC4 soap_in_tt__ScopeDefinition(struct soap*, const char*, enum tt__ScopeDefinition *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ScopeDefinition(struct soap*, const char*, enum tt__ScopeDefinition *); - -SOAP_FMAC3 enum tt__ScopeDefinition * SOAP_FMAC4 soap_new_tt__ScopeDefinition(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ScopeDefinition(struct soap*, const enum tt__ScopeDefinition *, const char*, const char*); - -inline int soap_write_tt__ScopeDefinition(struct soap *soap, enum tt__ScopeDefinition const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ScopeDefinition(soap, p, "tt:ScopeDefinition", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ScopeDefinition(struct soap *soap, const char *URL, enum tt__ScopeDefinition const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ScopeDefinition(soap, p, "tt:ScopeDefinition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ScopeDefinition(struct soap *soap, const char *URL, enum tt__ScopeDefinition const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ScopeDefinition(soap, p, "tt:ScopeDefinition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ScopeDefinition(struct soap *soap, const char *URL, enum tt__ScopeDefinition const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ScopeDefinition(soap, p, "tt:ScopeDefinition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ScopeDefinition * SOAP_FMAC4 soap_get_tt__ScopeDefinition(struct soap*, enum tt__ScopeDefinition *, const char*, const char*); - -inline int soap_read_tt__ScopeDefinition(struct soap *soap, enum tt__ScopeDefinition *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ScopeDefinition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ScopeDefinition(struct soap *soap, const char *URL, enum tt__ScopeDefinition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ScopeDefinition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ScopeDefinition(struct soap *soap, enum tt__ScopeDefinition *p) -{ - if (::soap_read_tt__ScopeDefinition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TransportProtocol_DEFINED -#define SOAP_TYPE_tt__TransportProtocol_DEFINED - -inline void soap_default_tt__TransportProtocol(struct soap *soap, enum tt__TransportProtocol *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__TransportProtocol - *a = SOAP_DEFAULT_tt__TransportProtocol; -#else - *a = (enum tt__TransportProtocol)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TransportProtocol(struct soap*, const char*, int, const enum tt__TransportProtocol *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__TransportProtocol2s(struct soap*, enum tt__TransportProtocol); -SOAP_FMAC3 enum tt__TransportProtocol * SOAP_FMAC4 soap_in_tt__TransportProtocol(struct soap*, const char*, enum tt__TransportProtocol *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__TransportProtocol(struct soap*, const char*, enum tt__TransportProtocol *); - -SOAP_FMAC3 enum tt__TransportProtocol * SOAP_FMAC4 soap_new_tt__TransportProtocol(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__TransportProtocol(struct soap*, const enum tt__TransportProtocol *, const char*, const char*); - -inline int soap_write_tt__TransportProtocol(struct soap *soap, enum tt__TransportProtocol const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__TransportProtocol(soap, p, "tt:TransportProtocol", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__TransportProtocol(struct soap *soap, const char *URL, enum tt__TransportProtocol const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__TransportProtocol(soap, p, "tt:TransportProtocol", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TransportProtocol(struct soap *soap, const char *URL, enum tt__TransportProtocol const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__TransportProtocol(soap, p, "tt:TransportProtocol", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TransportProtocol(struct soap *soap, const char *URL, enum tt__TransportProtocol const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__TransportProtocol(soap, p, "tt:TransportProtocol", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__TransportProtocol * SOAP_FMAC4 soap_get_tt__TransportProtocol(struct soap*, enum tt__TransportProtocol *, const char*, const char*); - -inline int soap_read_tt__TransportProtocol(struct soap *soap, enum tt__TransportProtocol *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__TransportProtocol(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TransportProtocol(struct soap *soap, const char *URL, enum tt__TransportProtocol *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TransportProtocol(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TransportProtocol(struct soap *soap, enum tt__TransportProtocol *p) -{ - if (::soap_read_tt__TransportProtocol(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__StreamType_DEFINED -#define SOAP_TYPE_tt__StreamType_DEFINED - -inline void soap_default_tt__StreamType(struct soap *soap, enum tt__StreamType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__StreamType - *a = SOAP_DEFAULT_tt__StreamType; -#else - *a = (enum tt__StreamType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StreamType(struct soap*, const char*, int, const enum tt__StreamType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__StreamType2s(struct soap*, enum tt__StreamType); -SOAP_FMAC3 enum tt__StreamType * SOAP_FMAC4 soap_in_tt__StreamType(struct soap*, const char*, enum tt__StreamType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__StreamType(struct soap*, const char*, enum tt__StreamType *); - -SOAP_FMAC3 enum tt__StreamType * SOAP_FMAC4 soap_new_tt__StreamType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__StreamType(struct soap*, const enum tt__StreamType *, const char*, const char*); - -inline int soap_write_tt__StreamType(struct soap *soap, enum tt__StreamType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__StreamType(soap, p, "tt:StreamType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__StreamType(struct soap *soap, const char *URL, enum tt__StreamType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StreamType(soap, p, "tt:StreamType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__StreamType(struct soap *soap, const char *URL, enum tt__StreamType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StreamType(soap, p, "tt:StreamType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__StreamType(struct soap *soap, const char *URL, enum tt__StreamType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StreamType(soap, p, "tt:StreamType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__StreamType * SOAP_FMAC4 soap_get_tt__StreamType(struct soap*, enum tt__StreamType *, const char*, const char*); - -inline int soap_read_tt__StreamType(struct soap *soap, enum tt__StreamType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__StreamType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__StreamType(struct soap *soap, const char *URL, enum tt__StreamType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__StreamType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__StreamType(struct soap *soap, enum tt__StreamType *p) -{ - if (::soap_read_tt__StreamType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataCompressionType_DEFINED -#define SOAP_TYPE_tt__MetadataCompressionType_DEFINED - -inline void soap_default_tt__MetadataCompressionType(struct soap *soap, enum tt__MetadataCompressionType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__MetadataCompressionType - *a = SOAP_DEFAULT_tt__MetadataCompressionType; -#else - *a = (enum tt__MetadataCompressionType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataCompressionType(struct soap*, const char*, int, const enum tt__MetadataCompressionType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__MetadataCompressionType2s(struct soap*, enum tt__MetadataCompressionType); -SOAP_FMAC3 enum tt__MetadataCompressionType * SOAP_FMAC4 soap_in_tt__MetadataCompressionType(struct soap*, const char*, enum tt__MetadataCompressionType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__MetadataCompressionType(struct soap*, const char*, enum tt__MetadataCompressionType *); - -SOAP_FMAC3 enum tt__MetadataCompressionType * SOAP_FMAC4 soap_new_tt__MetadataCompressionType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__MetadataCompressionType(struct soap*, const enum tt__MetadataCompressionType *, const char*, const char*); - -inline int soap_write_tt__MetadataCompressionType(struct soap *soap, enum tt__MetadataCompressionType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__MetadataCompressionType(soap, p, "tt:MetadataCompressionType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataCompressionType(struct soap *soap, const char *URL, enum tt__MetadataCompressionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MetadataCompressionType(soap, p, "tt:MetadataCompressionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataCompressionType(struct soap *soap, const char *URL, enum tt__MetadataCompressionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MetadataCompressionType(soap, p, "tt:MetadataCompressionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataCompressionType(struct soap *soap, const char *URL, enum tt__MetadataCompressionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MetadataCompressionType(soap, p, "tt:MetadataCompressionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__MetadataCompressionType * SOAP_FMAC4 soap_get_tt__MetadataCompressionType(struct soap*, enum tt__MetadataCompressionType *, const char*, const char*); - -inline int soap_read_tt__MetadataCompressionType(struct soap *soap, enum tt__MetadataCompressionType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__MetadataCompressionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataCompressionType(struct soap *soap, const char *URL, enum tt__MetadataCompressionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataCompressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataCompressionType(struct soap *soap, enum tt__MetadataCompressionType *p) -{ - if (::soap_read_tt__MetadataCompressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncodingMimeNames_DEFINED -#define SOAP_TYPE_tt__AudioEncodingMimeNames_DEFINED - -inline void soap_default_tt__AudioEncodingMimeNames(struct soap *soap, enum tt__AudioEncodingMimeNames *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__AudioEncodingMimeNames - *a = SOAP_DEFAULT_tt__AudioEncodingMimeNames; -#else - *a = (enum tt__AudioEncodingMimeNames)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncodingMimeNames(struct soap*, const char*, int, const enum tt__AudioEncodingMimeNames *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AudioEncodingMimeNames2s(struct soap*, enum tt__AudioEncodingMimeNames); -SOAP_FMAC3 enum tt__AudioEncodingMimeNames * SOAP_FMAC4 soap_in_tt__AudioEncodingMimeNames(struct soap*, const char*, enum tt__AudioEncodingMimeNames *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AudioEncodingMimeNames(struct soap*, const char*, enum tt__AudioEncodingMimeNames *); - -SOAP_FMAC3 enum tt__AudioEncodingMimeNames * SOAP_FMAC4 soap_new_tt__AudioEncodingMimeNames(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AudioEncodingMimeNames(struct soap*, const enum tt__AudioEncodingMimeNames *, const char*, const char*); - -inline int soap_write_tt__AudioEncodingMimeNames(struct soap *soap, enum tt__AudioEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__AudioEncodingMimeNames(soap, p, "tt:AudioEncodingMimeNames", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncodingMimeNames(struct soap *soap, const char *URL, enum tt__AudioEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioEncodingMimeNames(soap, p, "tt:AudioEncodingMimeNames", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncodingMimeNames(struct soap *soap, const char *URL, enum tt__AudioEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioEncodingMimeNames(soap, p, "tt:AudioEncodingMimeNames", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncodingMimeNames(struct soap *soap, const char *URL, enum tt__AudioEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioEncodingMimeNames(soap, p, "tt:AudioEncodingMimeNames", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__AudioEncodingMimeNames * SOAP_FMAC4 soap_get_tt__AudioEncodingMimeNames(struct soap*, enum tt__AudioEncodingMimeNames *, const char*, const char*); - -inline int soap_read_tt__AudioEncodingMimeNames(struct soap *soap, enum tt__AudioEncodingMimeNames *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncodingMimeNames(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncodingMimeNames(struct soap *soap, const char *URL, enum tt__AudioEncodingMimeNames *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncodingMimeNames(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncodingMimeNames(struct soap *soap, enum tt__AudioEncodingMimeNames *p) -{ - if (::soap_read_tt__AudioEncodingMimeNames(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncoding_DEFINED -#define SOAP_TYPE_tt__AudioEncoding_DEFINED - -inline void soap_default_tt__AudioEncoding(struct soap *soap, enum tt__AudioEncoding *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__AudioEncoding - *a = SOAP_DEFAULT_tt__AudioEncoding; -#else - *a = (enum tt__AudioEncoding)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoding(struct soap*, const char*, int, const enum tt__AudioEncoding *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__AudioEncoding2s(struct soap*, enum tt__AudioEncoding); -SOAP_FMAC3 enum tt__AudioEncoding * SOAP_FMAC4 soap_in_tt__AudioEncoding(struct soap*, const char*, enum tt__AudioEncoding *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__AudioEncoding(struct soap*, const char*, enum tt__AudioEncoding *); - -SOAP_FMAC3 enum tt__AudioEncoding * SOAP_FMAC4 soap_new_tt__AudioEncoding(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AudioEncoding(struct soap*, const enum tt__AudioEncoding *, const char*, const char*); - -inline int soap_write_tt__AudioEncoding(struct soap *soap, enum tt__AudioEncoding const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__AudioEncoding(soap, p, "tt:AudioEncoding", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncoding(struct soap *soap, const char *URL, enum tt__AudioEncoding const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioEncoding(soap, p, "tt:AudioEncoding", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncoding(struct soap *soap, const char *URL, enum tt__AudioEncoding const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioEncoding(soap, p, "tt:AudioEncoding", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncoding(struct soap *soap, const char *URL, enum tt__AudioEncoding const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioEncoding(soap, p, "tt:AudioEncoding", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__AudioEncoding * SOAP_FMAC4 soap_get_tt__AudioEncoding(struct soap*, enum tt__AudioEncoding *, const char*, const char*); - -inline int soap_read_tt__AudioEncoding(struct soap *soap, enum tt__AudioEncoding *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncoding(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncoding(struct soap *soap, const char *URL, enum tt__AudioEncoding *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncoding(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncoding(struct soap *soap, enum tt__AudioEncoding *p) -{ - if (::soap_read_tt__AudioEncoding(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncodingProfiles_DEFINED -#define SOAP_TYPE_tt__VideoEncodingProfiles_DEFINED - -inline void soap_default_tt__VideoEncodingProfiles(struct soap *soap, enum tt__VideoEncodingProfiles *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__VideoEncodingProfiles - *a = SOAP_DEFAULT_tt__VideoEncodingProfiles; -#else - *a = (enum tt__VideoEncodingProfiles)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingProfiles(struct soap*, const char*, int, const enum tt__VideoEncodingProfiles *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__VideoEncodingProfiles2s(struct soap*, enum tt__VideoEncodingProfiles); -SOAP_FMAC3 enum tt__VideoEncodingProfiles * SOAP_FMAC4 soap_in_tt__VideoEncodingProfiles(struct soap*, const char*, enum tt__VideoEncodingProfiles *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__VideoEncodingProfiles(struct soap*, const char*, enum tt__VideoEncodingProfiles *); - -SOAP_FMAC3 enum tt__VideoEncodingProfiles * SOAP_FMAC4 soap_new_tt__VideoEncodingProfiles(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__VideoEncodingProfiles(struct soap*, const enum tt__VideoEncodingProfiles *, const char*, const char*); - -inline int soap_write_tt__VideoEncodingProfiles(struct soap *soap, enum tt__VideoEncodingProfiles const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__VideoEncodingProfiles(soap, p, "tt:VideoEncodingProfiles", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncodingProfiles(struct soap *soap, const char *URL, enum tt__VideoEncodingProfiles const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncodingProfiles(soap, p, "tt:VideoEncodingProfiles", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncodingProfiles(struct soap *soap, const char *URL, enum tt__VideoEncodingProfiles const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncodingProfiles(soap, p, "tt:VideoEncodingProfiles", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncodingProfiles(struct soap *soap, const char *URL, enum tt__VideoEncodingProfiles const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncodingProfiles(soap, p, "tt:VideoEncodingProfiles", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__VideoEncodingProfiles * SOAP_FMAC4 soap_get_tt__VideoEncodingProfiles(struct soap*, enum tt__VideoEncodingProfiles *, const char*, const char*); - -inline int soap_read_tt__VideoEncodingProfiles(struct soap *soap, enum tt__VideoEncodingProfiles *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncodingProfiles(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncodingProfiles(struct soap *soap, const char *URL, enum tt__VideoEncodingProfiles *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncodingProfiles(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncodingProfiles(struct soap *soap, enum tt__VideoEncodingProfiles *p) -{ - if (::soap_read_tt__VideoEncodingProfiles(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncodingMimeNames_DEFINED -#define SOAP_TYPE_tt__VideoEncodingMimeNames_DEFINED - -inline void soap_default_tt__VideoEncodingMimeNames(struct soap *soap, enum tt__VideoEncodingMimeNames *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__VideoEncodingMimeNames - *a = SOAP_DEFAULT_tt__VideoEncodingMimeNames; -#else - *a = (enum tt__VideoEncodingMimeNames)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingMimeNames(struct soap*, const char*, int, const enum tt__VideoEncodingMimeNames *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__VideoEncodingMimeNames2s(struct soap*, enum tt__VideoEncodingMimeNames); -SOAP_FMAC3 enum tt__VideoEncodingMimeNames * SOAP_FMAC4 soap_in_tt__VideoEncodingMimeNames(struct soap*, const char*, enum tt__VideoEncodingMimeNames *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__VideoEncodingMimeNames(struct soap*, const char*, enum tt__VideoEncodingMimeNames *); - -SOAP_FMAC3 enum tt__VideoEncodingMimeNames * SOAP_FMAC4 soap_new_tt__VideoEncodingMimeNames(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__VideoEncodingMimeNames(struct soap*, const enum tt__VideoEncodingMimeNames *, const char*, const char*); - -inline int soap_write_tt__VideoEncodingMimeNames(struct soap *soap, enum tt__VideoEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__VideoEncodingMimeNames(soap, p, "tt:VideoEncodingMimeNames", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncodingMimeNames(struct soap *soap, const char *URL, enum tt__VideoEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncodingMimeNames(soap, p, "tt:VideoEncodingMimeNames", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncodingMimeNames(struct soap *soap, const char *URL, enum tt__VideoEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncodingMimeNames(soap, p, "tt:VideoEncodingMimeNames", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncodingMimeNames(struct soap *soap, const char *URL, enum tt__VideoEncodingMimeNames const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncodingMimeNames(soap, p, "tt:VideoEncodingMimeNames", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__VideoEncodingMimeNames * SOAP_FMAC4 soap_get_tt__VideoEncodingMimeNames(struct soap*, enum tt__VideoEncodingMimeNames *, const char*, const char*); - -inline int soap_read_tt__VideoEncodingMimeNames(struct soap *soap, enum tt__VideoEncodingMimeNames *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncodingMimeNames(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncodingMimeNames(struct soap *soap, const char *URL, enum tt__VideoEncodingMimeNames *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncodingMimeNames(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncodingMimeNames(struct soap *soap, enum tt__VideoEncodingMimeNames *p) -{ - if (::soap_read_tt__VideoEncodingMimeNames(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__H264Profile_DEFINED -#define SOAP_TYPE_tt__H264Profile_DEFINED - -inline void soap_default_tt__H264Profile(struct soap *soap, enum tt__H264Profile *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__H264Profile - *a = SOAP_DEFAULT_tt__H264Profile; -#else - *a = (enum tt__H264Profile)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Profile(struct soap*, const char*, int, const enum tt__H264Profile *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__H264Profile2s(struct soap*, enum tt__H264Profile); -SOAP_FMAC3 enum tt__H264Profile * SOAP_FMAC4 soap_in_tt__H264Profile(struct soap*, const char*, enum tt__H264Profile *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__H264Profile(struct soap*, const char*, enum tt__H264Profile *); - -SOAP_FMAC3 enum tt__H264Profile * SOAP_FMAC4 soap_new_tt__H264Profile(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__H264Profile(struct soap*, const enum tt__H264Profile *, const char*, const char*); - -inline int soap_write_tt__H264Profile(struct soap *soap, enum tt__H264Profile const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__H264Profile(soap, p, "tt:H264Profile", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__H264Profile(struct soap *soap, const char *URL, enum tt__H264Profile const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__H264Profile(soap, p, "tt:H264Profile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__H264Profile(struct soap *soap, const char *URL, enum tt__H264Profile const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__H264Profile(soap, p, "tt:H264Profile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__H264Profile(struct soap *soap, const char *URL, enum tt__H264Profile const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__H264Profile(soap, p, "tt:H264Profile", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__H264Profile * SOAP_FMAC4 soap_get_tt__H264Profile(struct soap*, enum tt__H264Profile *, const char*, const char*); - -inline int soap_read_tt__H264Profile(struct soap *soap, enum tt__H264Profile *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__H264Profile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__H264Profile(struct soap *soap, const char *URL, enum tt__H264Profile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__H264Profile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__H264Profile(struct soap *soap, enum tt__H264Profile *p) -{ - if (::soap_read_tt__H264Profile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Mpeg4Profile_DEFINED -#define SOAP_TYPE_tt__Mpeg4Profile_DEFINED - -inline void soap_default_tt__Mpeg4Profile(struct soap *soap, enum tt__Mpeg4Profile *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Mpeg4Profile - *a = SOAP_DEFAULT_tt__Mpeg4Profile; -#else - *a = (enum tt__Mpeg4Profile)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Profile(struct soap*, const char*, int, const enum tt__Mpeg4Profile *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Mpeg4Profile2s(struct soap*, enum tt__Mpeg4Profile); -SOAP_FMAC3 enum tt__Mpeg4Profile * SOAP_FMAC4 soap_in_tt__Mpeg4Profile(struct soap*, const char*, enum tt__Mpeg4Profile *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Mpeg4Profile(struct soap*, const char*, enum tt__Mpeg4Profile *); - -SOAP_FMAC3 enum tt__Mpeg4Profile * SOAP_FMAC4 soap_new_tt__Mpeg4Profile(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Mpeg4Profile(struct soap*, const enum tt__Mpeg4Profile *, const char*, const char*); - -inline int soap_write_tt__Mpeg4Profile(struct soap *soap, enum tt__Mpeg4Profile const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Mpeg4Profile(soap, p, "tt:Mpeg4Profile", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Mpeg4Profile(struct soap *soap, const char *URL, enum tt__Mpeg4Profile const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Mpeg4Profile(soap, p, "tt:Mpeg4Profile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Mpeg4Profile(struct soap *soap, const char *URL, enum tt__Mpeg4Profile const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Mpeg4Profile(soap, p, "tt:Mpeg4Profile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Mpeg4Profile(struct soap *soap, const char *URL, enum tt__Mpeg4Profile const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Mpeg4Profile(soap, p, "tt:Mpeg4Profile", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Mpeg4Profile * SOAP_FMAC4 soap_get_tt__Mpeg4Profile(struct soap*, enum tt__Mpeg4Profile *, const char*, const char*); - -inline int soap_read_tt__Mpeg4Profile(struct soap *soap, enum tt__Mpeg4Profile *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Mpeg4Profile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Mpeg4Profile(struct soap *soap, const char *URL, enum tt__Mpeg4Profile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Mpeg4Profile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Mpeg4Profile(struct soap *soap, enum tt__Mpeg4Profile *p) -{ - if (::soap_read_tt__Mpeg4Profile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoding_DEFINED -#define SOAP_TYPE_tt__VideoEncoding_DEFINED - -inline void soap_default_tt__VideoEncoding(struct soap *soap, enum tt__VideoEncoding *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__VideoEncoding - *a = SOAP_DEFAULT_tt__VideoEncoding; -#else - *a = (enum tt__VideoEncoding)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoding(struct soap*, const char*, int, const enum tt__VideoEncoding *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__VideoEncoding2s(struct soap*, enum tt__VideoEncoding); -SOAP_FMAC3 enum tt__VideoEncoding * SOAP_FMAC4 soap_in_tt__VideoEncoding(struct soap*, const char*, enum tt__VideoEncoding *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__VideoEncoding(struct soap*, const char*, enum tt__VideoEncoding *); - -SOAP_FMAC3 enum tt__VideoEncoding * SOAP_FMAC4 soap_new_tt__VideoEncoding(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__VideoEncoding(struct soap*, const enum tt__VideoEncoding *, const char*, const char*); - -inline int soap_write_tt__VideoEncoding(struct soap *soap, enum tt__VideoEncoding const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__VideoEncoding(soap, p, "tt:VideoEncoding", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoding(struct soap *soap, const char *URL, enum tt__VideoEncoding const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncoding(soap, p, "tt:VideoEncoding", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoding(struct soap *soap, const char *URL, enum tt__VideoEncoding const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncoding(soap, p, "tt:VideoEncoding", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoding(struct soap *soap, const char *URL, enum tt__VideoEncoding const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__VideoEncoding(soap, p, "tt:VideoEncoding", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__VideoEncoding * SOAP_FMAC4 soap_get_tt__VideoEncoding(struct soap*, enum tt__VideoEncoding *, const char*, const char*); - -inline int soap_read_tt__VideoEncoding(struct soap *soap, enum tt__VideoEncoding *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoding(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoding(struct soap *soap, const char *URL, enum tt__VideoEncoding *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoding(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoding(struct soap *soap, enum tt__VideoEncoding *p) -{ - if (::soap_read_tt__VideoEncoding(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ViewModes_DEFINED -#define SOAP_TYPE_tt__ViewModes_DEFINED - -inline void soap_default_tt__ViewModes(struct soap *soap, enum tt__ViewModes *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__ViewModes - *a = SOAP_DEFAULT_tt__ViewModes; -#else - *a = (enum tt__ViewModes)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ViewModes(struct soap*, const char*, int, const enum tt__ViewModes *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__ViewModes2s(struct soap*, enum tt__ViewModes); -SOAP_FMAC3 enum tt__ViewModes * SOAP_FMAC4 soap_in_tt__ViewModes(struct soap*, const char*, enum tt__ViewModes *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__ViewModes(struct soap*, const char*, enum tt__ViewModes *); - -SOAP_FMAC3 enum tt__ViewModes * SOAP_FMAC4 soap_new_tt__ViewModes(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ViewModes(struct soap*, const enum tt__ViewModes *, const char*, const char*); - -inline int soap_write_tt__ViewModes(struct soap *soap, enum tt__ViewModes const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ViewModes(soap, p, "tt:ViewModes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ViewModes(struct soap *soap, const char *URL, enum tt__ViewModes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ViewModes(soap, p, "tt:ViewModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ViewModes(struct soap *soap, const char *URL, enum tt__ViewModes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ViewModes(soap, p, "tt:ViewModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ViewModes(struct soap *soap, const char *URL, enum tt__ViewModes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ViewModes(soap, p, "tt:ViewModes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__ViewModes * SOAP_FMAC4 soap_get_tt__ViewModes(struct soap*, enum tt__ViewModes *, const char*, const char*); - -inline int soap_read_tt__ViewModes(struct soap *soap, enum tt__ViewModes *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ViewModes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ViewModes(struct soap *soap, const char *URL, enum tt__ViewModes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ViewModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ViewModes(struct soap *soap, enum tt__ViewModes *p) -{ - if (::soap_read_tt__ViewModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SceneOrientationOption_DEFINED -#define SOAP_TYPE_tt__SceneOrientationOption_DEFINED - -inline void soap_default_tt__SceneOrientationOption(struct soap *soap, enum tt__SceneOrientationOption *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__SceneOrientationOption - *a = SOAP_DEFAULT_tt__SceneOrientationOption; -#else - *a = (enum tt__SceneOrientationOption)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationOption(struct soap*, const char*, int, const enum tt__SceneOrientationOption *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SceneOrientationOption2s(struct soap*, enum tt__SceneOrientationOption); -SOAP_FMAC3 enum tt__SceneOrientationOption * SOAP_FMAC4 soap_in_tt__SceneOrientationOption(struct soap*, const char*, enum tt__SceneOrientationOption *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SceneOrientationOption(struct soap*, const char*, enum tt__SceneOrientationOption *); - -SOAP_FMAC3 enum tt__SceneOrientationOption * SOAP_FMAC4 soap_new_tt__SceneOrientationOption(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SceneOrientationOption(struct soap*, const enum tt__SceneOrientationOption *, const char*, const char*); - -inline int soap_write_tt__SceneOrientationOption(struct soap *soap, enum tt__SceneOrientationOption const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__SceneOrientationOption(soap, p, "tt:SceneOrientationOption", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__SceneOrientationOption(struct soap *soap, const char *URL, enum tt__SceneOrientationOption const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SceneOrientationOption(soap, p, "tt:SceneOrientationOption", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SceneOrientationOption(struct soap *soap, const char *URL, enum tt__SceneOrientationOption const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SceneOrientationOption(soap, p, "tt:SceneOrientationOption", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SceneOrientationOption(struct soap *soap, const char *URL, enum tt__SceneOrientationOption const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SceneOrientationOption(soap, p, "tt:SceneOrientationOption", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__SceneOrientationOption * SOAP_FMAC4 soap_get_tt__SceneOrientationOption(struct soap*, enum tt__SceneOrientationOption *, const char*, const char*); - -inline int soap_read_tt__SceneOrientationOption(struct soap *soap, enum tt__SceneOrientationOption *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__SceneOrientationOption(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SceneOrientationOption(struct soap *soap, const char *URL, enum tt__SceneOrientationOption *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SceneOrientationOption(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SceneOrientationOption(struct soap *soap, enum tt__SceneOrientationOption *p) -{ - if (::soap_read_tt__SceneOrientationOption(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SceneOrientationMode_DEFINED -#define SOAP_TYPE_tt__SceneOrientationMode_DEFINED - -inline void soap_default_tt__SceneOrientationMode(struct soap *soap, enum tt__SceneOrientationMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__SceneOrientationMode - *a = SOAP_DEFAULT_tt__SceneOrientationMode; -#else - *a = (enum tt__SceneOrientationMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationMode(struct soap*, const char*, int, const enum tt__SceneOrientationMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__SceneOrientationMode2s(struct soap*, enum tt__SceneOrientationMode); -SOAP_FMAC3 enum tt__SceneOrientationMode * SOAP_FMAC4 soap_in_tt__SceneOrientationMode(struct soap*, const char*, enum tt__SceneOrientationMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__SceneOrientationMode(struct soap*, const char*, enum tt__SceneOrientationMode *); - -SOAP_FMAC3 enum tt__SceneOrientationMode * SOAP_FMAC4 soap_new_tt__SceneOrientationMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__SceneOrientationMode(struct soap*, const enum tt__SceneOrientationMode *, const char*, const char*); - -inline int soap_write_tt__SceneOrientationMode(struct soap *soap, enum tt__SceneOrientationMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__SceneOrientationMode(soap, p, "tt:SceneOrientationMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__SceneOrientationMode(struct soap *soap, const char *URL, enum tt__SceneOrientationMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SceneOrientationMode(soap, p, "tt:SceneOrientationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SceneOrientationMode(struct soap *soap, const char *URL, enum tt__SceneOrientationMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SceneOrientationMode(soap, p, "tt:SceneOrientationMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SceneOrientationMode(struct soap *soap, const char *URL, enum tt__SceneOrientationMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__SceneOrientationMode(soap, p, "tt:SceneOrientationMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__SceneOrientationMode * SOAP_FMAC4 soap_get_tt__SceneOrientationMode(struct soap*, enum tt__SceneOrientationMode *, const char*, const char*); - -inline int soap_read_tt__SceneOrientationMode(struct soap *soap, enum tt__SceneOrientationMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__SceneOrientationMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SceneOrientationMode(struct soap *soap, const char *URL, enum tt__SceneOrientationMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SceneOrientationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SceneOrientationMode(struct soap *soap, enum tt__SceneOrientationMode *p) -{ - if (::soap_read_tt__SceneOrientationMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RotateMode_DEFINED -#define SOAP_TYPE_tt__RotateMode_DEFINED - -inline void soap_default_tt__RotateMode(struct soap *soap, enum tt__RotateMode *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__RotateMode - *a = SOAP_DEFAULT_tt__RotateMode; -#else - *a = (enum tt__RotateMode)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateMode(struct soap*, const char*, int, const enum tt__RotateMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__RotateMode2s(struct soap*, enum tt__RotateMode); -SOAP_FMAC3 enum tt__RotateMode * SOAP_FMAC4 soap_in_tt__RotateMode(struct soap*, const char*, enum tt__RotateMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__RotateMode(struct soap*, const char*, enum tt__RotateMode *); - -SOAP_FMAC3 enum tt__RotateMode * SOAP_FMAC4 soap_new_tt__RotateMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RotateMode(struct soap*, const enum tt__RotateMode *, const char*, const char*); - -inline int soap_write_tt__RotateMode(struct soap *soap, enum tt__RotateMode const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__RotateMode(soap, p, "tt:RotateMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__RotateMode(struct soap *soap, const char *URL, enum tt__RotateMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RotateMode(soap, p, "tt:RotateMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RotateMode(struct soap *soap, const char *URL, enum tt__RotateMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RotateMode(soap, p, "tt:RotateMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RotateMode(struct soap *soap, const char *URL, enum tt__RotateMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RotateMode(soap, p, "tt:RotateMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__RotateMode * SOAP_FMAC4 soap_get_tt__RotateMode(struct soap*, enum tt__RotateMode *, const char*, const char*); - -inline int soap_read_tt__RotateMode(struct soap *soap, enum tt__RotateMode *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__RotateMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RotateMode(struct soap *soap, const char *URL, enum tt__RotateMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RotateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RotateMode(struct soap *soap, enum tt__RotateMode *p) -{ - if (::soap_read_tt__RotateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Entity_DEFINED -#define SOAP_TYPE_tt__Entity_DEFINED - -inline void soap_default_tt__Entity(struct soap *soap, enum tt__Entity *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__Entity - *a = SOAP_DEFAULT_tt__Entity; -#else - *a = (enum tt__Entity)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Entity(struct soap*, const char*, int, const enum tt__Entity *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Entity2s(struct soap*, enum tt__Entity); -SOAP_FMAC3 enum tt__Entity * SOAP_FMAC4 soap_in_tt__Entity(struct soap*, const char*, enum tt__Entity *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Entity(struct soap*, const char*, enum tt__Entity *); - -SOAP_FMAC3 enum tt__Entity * SOAP_FMAC4 soap_new_tt__Entity(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Entity(struct soap*, const enum tt__Entity *, const char*, const char*); - -inline int soap_write_tt__Entity(struct soap *soap, enum tt__Entity const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Entity(soap, p, "tt:Entity", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Entity(struct soap *soap, const char *URL, enum tt__Entity const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Entity(soap, p, "tt:Entity", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Entity(struct soap *soap, const char *URL, enum tt__Entity const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Entity(soap, p, "tt:Entity", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Entity(struct soap *soap, const char *URL, enum tt__Entity const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Entity(soap, p, "tt:Entity", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__Entity * SOAP_FMAC4 soap_get_tt__Entity(struct soap*, enum tt__Entity *, const char*, const char*); - -inline int soap_read_tt__Entity(struct soap *soap, enum tt__Entity *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Entity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Entity(struct soap *soap, const char *URL, enum tt__Entity *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Entity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Entity(struct soap *soap, enum tt__Entity *p) -{ - if (::soap_read_tt__Entity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MoveStatus_DEFINED -#define SOAP_TYPE_tt__MoveStatus_DEFINED - -inline void soap_default_tt__MoveStatus(struct soap *soap, enum tt__MoveStatus *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_tt__MoveStatus - *a = SOAP_DEFAULT_tt__MoveStatus; -#else - *a = (enum tt__MoveStatus)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveStatus(struct soap*, const char*, int, const enum tt__MoveStatus *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__MoveStatus2s(struct soap*, enum tt__MoveStatus); -SOAP_FMAC3 enum tt__MoveStatus * SOAP_FMAC4 soap_in_tt__MoveStatus(struct soap*, const char*, enum tt__MoveStatus *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__MoveStatus(struct soap*, const char*, enum tt__MoveStatus *); - -SOAP_FMAC3 enum tt__MoveStatus * SOAP_FMAC4 soap_new_tt__MoveStatus(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__MoveStatus(struct soap*, const enum tt__MoveStatus *, const char*, const char*); - -inline int soap_write_tt__MoveStatus(struct soap *soap, enum tt__MoveStatus const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__MoveStatus(soap, p, "tt:MoveStatus", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__MoveStatus(struct soap *soap, const char *URL, enum tt__MoveStatus const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MoveStatus(soap, p, "tt:MoveStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MoveStatus(struct soap *soap, const char *URL, enum tt__MoveStatus const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MoveStatus(soap, p, "tt:MoveStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MoveStatus(struct soap *soap, const char *URL, enum tt__MoveStatus const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__MoveStatus(soap, p, "tt:MoveStatus", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum tt__MoveStatus * SOAP_FMAC4 soap_get_tt__MoveStatus(struct soap*, enum tt__MoveStatus *, const char*, const char*); - -inline int soap_read_tt__MoveStatus(struct soap *soap, enum tt__MoveStatus *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__MoveStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MoveStatus(struct soap *soap, const char *URL, enum tt__MoveStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MoveStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MoveStatus(struct soap *soap, enum tt__MoveStatus *p) -{ - if (::soap_read_tt__MoveStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_bool_DEFINED -#define SOAP_TYPE_bool_DEFINED - -inline void soap_default_bool(struct soap *soap, bool *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_bool - *a = SOAP_DEFAULT_bool; -#else - *a = (bool)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_bool(struct soap*, const char*, int, const bool *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_bool2s(struct soap*, bool); -SOAP_FMAC3 bool * SOAP_FMAC4 soap_in_bool(struct soap*, const char*, bool *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2bool(struct soap*, const char*, bool *); - -SOAP_FMAC3 bool * SOAP_FMAC4 soap_new_bool(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_bool(struct soap*, const bool *, const char*, const char*); - -inline int soap_write_bool(struct soap *soap, bool const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_bool(soap, p, "boolean", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_bool(struct soap *soap, const char *URL, bool const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_bool(soap, p, "boolean", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_bool(struct soap *soap, const char *URL, bool const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_bool(soap, p, "boolean", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_bool(struct soap *soap, const char *URL, bool const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_bool(soap, p, "boolean", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 bool * SOAP_FMAC4 soap_get_bool(struct soap*, bool *, const char*, const char*); - -inline int soap_read_bool(struct soap *soap, bool *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_bool(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_bool(struct soap *soap, const char *URL, bool *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_bool(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_bool(struct soap *soap, bool *p) -{ - if (::soap_read_bool(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsa5__IsReferenceParameter_DEFINED -#define SOAP_TYPE__wsa5__IsReferenceParameter_DEFINED - -inline void soap_default__wsa5__IsReferenceParameter(struct soap *soap, enum _wsa5__IsReferenceParameter *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT__wsa5__IsReferenceParameter - *a = SOAP_DEFAULT__wsa5__IsReferenceParameter; -#else - *a = (enum _wsa5__IsReferenceParameter)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsa5__IsReferenceParameter(struct soap*, const char*, int, const enum _wsa5__IsReferenceParameter *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap__wsa5__IsReferenceParameter2s(struct soap*, enum _wsa5__IsReferenceParameter); -SOAP_FMAC3 enum _wsa5__IsReferenceParameter * SOAP_FMAC4 soap_in__wsa5__IsReferenceParameter(struct soap*, const char*, enum _wsa5__IsReferenceParameter *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2_wsa5__IsReferenceParameter(struct soap*, const char*, enum _wsa5__IsReferenceParameter *); - -SOAP_FMAC3 enum _wsa5__IsReferenceParameter * SOAP_FMAC4 soap_new__wsa5__IsReferenceParameter(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__IsReferenceParameter(struct soap*, const enum _wsa5__IsReferenceParameter *, const char*, const char*); - -inline int soap_write__wsa5__IsReferenceParameter(struct soap *soap, enum _wsa5__IsReferenceParameter const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa5__IsReferenceParameter(soap, p, "wsa5:IsReferenceParameter", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa5__IsReferenceParameter(struct soap *soap, const char *URL, enum _wsa5__IsReferenceParameter const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa5__IsReferenceParameter(soap, p, "wsa5:IsReferenceParameter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__IsReferenceParameter(struct soap *soap, const char *URL, enum _wsa5__IsReferenceParameter const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa5__IsReferenceParameter(soap, p, "wsa5:IsReferenceParameter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__IsReferenceParameter(struct soap *soap, const char *URL, enum _wsa5__IsReferenceParameter const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__wsa5__IsReferenceParameter(soap, p, "wsa5:IsReferenceParameter", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum _wsa5__IsReferenceParameter * SOAP_FMAC4 soap_get__wsa5__IsReferenceParameter(struct soap*, enum _wsa5__IsReferenceParameter *, const char*, const char*); - -inline int soap_read__wsa5__IsReferenceParameter(struct soap *soap, enum _wsa5__IsReferenceParameter *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get__wsa5__IsReferenceParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsa5__IsReferenceParameter(struct soap *soap, const char *URL, enum _wsa5__IsReferenceParameter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsa5__IsReferenceParameter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsa5__IsReferenceParameter(struct soap *soap, enum _wsa5__IsReferenceParameter *p) -{ - if (::soap_read__wsa5__IsReferenceParameter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__FaultCodesType_DEFINED -#define SOAP_TYPE_wsa5__FaultCodesType_DEFINED - -inline void soap_default_wsa5__FaultCodesType(struct soap *soap, enum wsa5__FaultCodesType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsa5__FaultCodesType - *a = SOAP_DEFAULT_wsa5__FaultCodesType; -#else - *a = (enum wsa5__FaultCodesType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__FaultCodesType(struct soap*, const char*, int, const enum wsa5__FaultCodesType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa5__FaultCodesType2s(struct soap*, enum wsa5__FaultCodesType); -SOAP_FMAC3 enum wsa5__FaultCodesType * SOAP_FMAC4 soap_in_wsa5__FaultCodesType(struct soap*, const char*, enum wsa5__FaultCodesType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa5__FaultCodesType(struct soap*, const char*, enum wsa5__FaultCodesType *); - -SOAP_FMAC3 enum wsa5__FaultCodesType * SOAP_FMAC4 soap_new_wsa5__FaultCodesType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__FaultCodesType(struct soap*, const enum wsa5__FaultCodesType *, const char*, const char*); - -inline int soap_write_wsa5__FaultCodesType(struct soap *soap, enum wsa5__FaultCodesType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsa5__FaultCodesType(soap, p, "wsa5:FaultCodesType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsa5__FaultCodesType(struct soap *soap, const char *URL, enum wsa5__FaultCodesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa5__FaultCodesType(soap, p, "wsa5:FaultCodesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__FaultCodesType(struct soap *soap, const char *URL, enum wsa5__FaultCodesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa5__FaultCodesType(soap, p, "wsa5:FaultCodesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__FaultCodesType(struct soap *soap, const char *URL, enum wsa5__FaultCodesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa5__FaultCodesType(soap, p, "wsa5:FaultCodesType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsa5__FaultCodesType * SOAP_FMAC4 soap_get_wsa5__FaultCodesType(struct soap*, enum wsa5__FaultCodesType *, const char*, const char*); - -inline int soap_read_wsa5__FaultCodesType(struct soap *soap, enum wsa5__FaultCodesType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsa5__FaultCodesType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__FaultCodesType(struct soap *soap, const char *URL, enum wsa5__FaultCodesType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__FaultCodesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__FaultCodesType(struct soap *soap, enum wsa5__FaultCodesType *p) -{ - if (::soap_read_wsa5__FaultCodesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__RelationshipType_DEFINED -#define SOAP_TYPE_wsa5__RelationshipType_DEFINED - -inline void soap_default_wsa5__RelationshipType(struct soap *soap, enum wsa5__RelationshipType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsa5__RelationshipType - *a = SOAP_DEFAULT_wsa5__RelationshipType; -#else - *a = (enum wsa5__RelationshipType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__RelationshipType(struct soap*, const char*, int, const enum wsa5__RelationshipType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa5__RelationshipType2s(struct soap*, enum wsa5__RelationshipType); -SOAP_FMAC3 enum wsa5__RelationshipType * SOAP_FMAC4 soap_in_wsa5__RelationshipType(struct soap*, const char*, enum wsa5__RelationshipType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa5__RelationshipType(struct soap*, const char*, enum wsa5__RelationshipType *); - -SOAP_FMAC3 enum wsa5__RelationshipType * SOAP_FMAC4 soap_new_wsa5__RelationshipType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__RelationshipType(struct soap*, const enum wsa5__RelationshipType *, const char*, const char*); - -inline int soap_write_wsa5__RelationshipType(struct soap *soap, enum wsa5__RelationshipType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsa5__RelationshipType(soap, p, "wsa5:RelationshipType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsa5__RelationshipType(struct soap *soap, const char *URL, enum wsa5__RelationshipType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa5__RelationshipType(soap, p, "wsa5:RelationshipType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__RelationshipType(struct soap *soap, const char *URL, enum wsa5__RelationshipType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa5__RelationshipType(soap, p, "wsa5:RelationshipType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__RelationshipType(struct soap *soap, const char *URL, enum wsa5__RelationshipType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa5__RelationshipType(soap, p, "wsa5:RelationshipType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsa5__RelationshipType * SOAP_FMAC4 soap_get_wsa5__RelationshipType(struct soap*, enum wsa5__RelationshipType *, const char*, const char*); - -inline int soap_read_wsa5__RelationshipType(struct soap *soap, enum wsa5__RelationshipType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsa5__RelationshipType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__RelationshipType(struct soap *soap, const char *URL, enum wsa5__RelationshipType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__RelationshipType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__RelationshipType(struct soap *soap, enum wsa5__RelationshipType *p) -{ - if (::soap_read_wsa5__RelationshipType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__DecisionType_DEFINED -#define SOAP_TYPE_saml2__DecisionType_DEFINED - -inline void soap_default_saml2__DecisionType(struct soap *soap, enum saml2__DecisionType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_saml2__DecisionType - *a = SOAP_DEFAULT_saml2__DecisionType; -#else - *a = (enum saml2__DecisionType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__DecisionType(struct soap*, const char*, int, const enum saml2__DecisionType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_saml2__DecisionType2s(struct soap*, enum saml2__DecisionType); -SOAP_FMAC3 enum saml2__DecisionType * SOAP_FMAC4 soap_in_saml2__DecisionType(struct soap*, const char*, enum saml2__DecisionType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2saml2__DecisionType(struct soap*, const char*, enum saml2__DecisionType *); - -SOAP_FMAC3 enum saml2__DecisionType * SOAP_FMAC4 soap_new_saml2__DecisionType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__DecisionType(struct soap*, const enum saml2__DecisionType *, const char*, const char*); - -inline int soap_write_saml2__DecisionType(struct soap *soap, enum saml2__DecisionType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_saml2__DecisionType(soap, p, "saml2:DecisionType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_saml2__DecisionType(struct soap *soap, const char *URL, enum saml2__DecisionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_saml2__DecisionType(soap, p, "saml2:DecisionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__DecisionType(struct soap *soap, const char *URL, enum saml2__DecisionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_saml2__DecisionType(soap, p, "saml2:DecisionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__DecisionType(struct soap *soap, const char *URL, enum saml2__DecisionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_saml2__DecisionType(soap, p, "saml2:DecisionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum saml2__DecisionType * SOAP_FMAC4 soap_get_saml2__DecisionType(struct soap*, enum saml2__DecisionType *, const char*, const char*); - -inline int soap_read_saml2__DecisionType(struct soap *soap, enum saml2__DecisionType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_saml2__DecisionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__DecisionType(struct soap *soap, const char *URL, enum saml2__DecisionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__DecisionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__DecisionType(struct soap *soap, enum saml2__DecisionType *p) -{ - if (::soap_read_saml2__DecisionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__DecisionType_DEFINED -#define SOAP_TYPE_saml1__DecisionType_DEFINED - -inline void soap_default_saml1__DecisionType(struct soap *soap, enum saml1__DecisionType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_saml1__DecisionType - *a = SOAP_DEFAULT_saml1__DecisionType; -#else - *a = (enum saml1__DecisionType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__DecisionType(struct soap*, const char*, int, const enum saml1__DecisionType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_saml1__DecisionType2s(struct soap*, enum saml1__DecisionType); -SOAP_FMAC3 enum saml1__DecisionType * SOAP_FMAC4 soap_in_saml1__DecisionType(struct soap*, const char*, enum saml1__DecisionType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2saml1__DecisionType(struct soap*, const char*, enum saml1__DecisionType *); - -SOAP_FMAC3 enum saml1__DecisionType * SOAP_FMAC4 soap_new_saml1__DecisionType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__DecisionType(struct soap*, const enum saml1__DecisionType *, const char*, const char*); - -inline int soap_write_saml1__DecisionType(struct soap *soap, enum saml1__DecisionType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_saml1__DecisionType(soap, p, "saml1:DecisionType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_saml1__DecisionType(struct soap *soap, const char *URL, enum saml1__DecisionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_saml1__DecisionType(soap, p, "saml1:DecisionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__DecisionType(struct soap *soap, const char *URL, enum saml1__DecisionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_saml1__DecisionType(soap, p, "saml1:DecisionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__DecisionType(struct soap *soap, const char *URL, enum saml1__DecisionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_saml1__DecisionType(soap, p, "saml1:DecisionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum saml1__DecisionType * SOAP_FMAC4 soap_get_saml1__DecisionType(struct soap*, enum saml1__DecisionType *, const char*, const char*); - -inline int soap_read_saml1__DecisionType(struct soap *soap, enum saml1__DecisionType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_saml1__DecisionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__DecisionType(struct soap *soap, const char *URL, enum saml1__DecisionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__DecisionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__DecisionType(struct soap *soap, enum saml1__DecisionType *p) -{ - if (::soap_read_saml1__DecisionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsc__FaultCodeType_DEFINED -#define SOAP_TYPE_wsc__FaultCodeType_DEFINED - -inline void soap_default_wsc__FaultCodeType(struct soap *soap, enum wsc__FaultCodeType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsc__FaultCodeType - *a = SOAP_DEFAULT_wsc__FaultCodeType; -#else - *a = (enum wsc__FaultCodeType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__FaultCodeType(struct soap*, const char*, int, const enum wsc__FaultCodeType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsc__FaultCodeType2s(struct soap*, enum wsc__FaultCodeType); -SOAP_FMAC3 enum wsc__FaultCodeType * SOAP_FMAC4 soap_in_wsc__FaultCodeType(struct soap*, const char*, enum wsc__FaultCodeType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsc__FaultCodeType(struct soap*, const char*, enum wsc__FaultCodeType *); - -SOAP_FMAC3 enum wsc__FaultCodeType * SOAP_FMAC4 soap_new_wsc__FaultCodeType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__FaultCodeType(struct soap*, const enum wsc__FaultCodeType *, const char*, const char*); - -inline int soap_write_wsc__FaultCodeType(struct soap *soap, enum wsc__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsc__FaultCodeType(soap, p, "wsc:FaultCodeType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsc__FaultCodeType(struct soap *soap, const char *URL, enum wsc__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsc__FaultCodeType(soap, p, "wsc:FaultCodeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsc__FaultCodeType(struct soap *soap, const char *URL, enum wsc__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsc__FaultCodeType(soap, p, "wsc:FaultCodeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsc__FaultCodeType(struct soap *soap, const char *URL, enum wsc__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsc__FaultCodeType(soap, p, "wsc:FaultCodeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsc__FaultCodeType * SOAP_FMAC4 soap_get_wsc__FaultCodeType(struct soap*, enum wsc__FaultCodeType *, const char*, const char*); - -inline int soap_read_wsc__FaultCodeType(struct soap *soap, enum wsc__FaultCodeType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsc__FaultCodeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsc__FaultCodeType(struct soap *soap, const char *URL, enum wsc__FaultCodeType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsc__FaultCodeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsc__FaultCodeType(struct soap *soap, enum wsc__FaultCodeType *p) -{ - if (::soap_read_wsc__FaultCodeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsse__FaultcodeEnum_DEFINED -#define SOAP_TYPE_wsse__FaultcodeEnum_DEFINED - -inline void soap_default_wsse__FaultcodeEnum(struct soap *soap, enum wsse__FaultcodeEnum *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsse__FaultcodeEnum - *a = SOAP_DEFAULT_wsse__FaultcodeEnum; -#else - *a = (enum wsse__FaultcodeEnum)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsse__FaultcodeEnum(struct soap*, const char*, int, const enum wsse__FaultcodeEnum *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsse__FaultcodeEnum2s(struct soap*, enum wsse__FaultcodeEnum); -SOAP_FMAC3 enum wsse__FaultcodeEnum * SOAP_FMAC4 soap_in_wsse__FaultcodeEnum(struct soap*, const char*, enum wsse__FaultcodeEnum *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsse__FaultcodeEnum(struct soap*, const char*, enum wsse__FaultcodeEnum *); - -SOAP_FMAC3 enum wsse__FaultcodeEnum * SOAP_FMAC4 soap_new_wsse__FaultcodeEnum(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsse__FaultcodeEnum(struct soap*, const enum wsse__FaultcodeEnum *, const char*, const char*); - -inline int soap_write_wsse__FaultcodeEnum(struct soap *soap, enum wsse__FaultcodeEnum const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsse__FaultcodeEnum(soap, p, "wsse:FaultcodeEnum", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsse__FaultcodeEnum(struct soap *soap, const char *URL, enum wsse__FaultcodeEnum const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsse__FaultcodeEnum(soap, p, "wsse:FaultcodeEnum", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsse__FaultcodeEnum(struct soap *soap, const char *URL, enum wsse__FaultcodeEnum const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsse__FaultcodeEnum(soap, p, "wsse:FaultcodeEnum", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsse__FaultcodeEnum(struct soap *soap, const char *URL, enum wsse__FaultcodeEnum const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsse__FaultcodeEnum(soap, p, "wsse:FaultcodeEnum", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsse__FaultcodeEnum * SOAP_FMAC4 soap_get_wsse__FaultcodeEnum(struct soap*, enum wsse__FaultcodeEnum *, const char*, const char*); - -inline int soap_read_wsse__FaultcodeEnum(struct soap *soap, enum wsse__FaultcodeEnum *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsse__FaultcodeEnum(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsse__FaultcodeEnum(struct soap *soap, const char *URL, enum wsse__FaultcodeEnum *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsse__FaultcodeEnum(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsse__FaultcodeEnum(struct soap *soap, enum wsse__FaultcodeEnum *p) -{ - if (::soap_read_wsse__FaultcodeEnum(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsu__tTimestampFault_DEFINED -#define SOAP_TYPE_wsu__tTimestampFault_DEFINED - -inline void soap_default_wsu__tTimestampFault(struct soap *soap, enum wsu__tTimestampFault *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsu__tTimestampFault - *a = SOAP_DEFAULT_wsu__tTimestampFault; -#else - *a = (enum wsu__tTimestampFault)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsu__tTimestampFault(struct soap*, const char*, int, const enum wsu__tTimestampFault *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsu__tTimestampFault2s(struct soap*, enum wsu__tTimestampFault); -SOAP_FMAC3 enum wsu__tTimestampFault * SOAP_FMAC4 soap_in_wsu__tTimestampFault(struct soap*, const char*, enum wsu__tTimestampFault *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsu__tTimestampFault(struct soap*, const char*, enum wsu__tTimestampFault *); - -SOAP_FMAC3 enum wsu__tTimestampFault * SOAP_FMAC4 soap_new_wsu__tTimestampFault(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsu__tTimestampFault(struct soap*, const enum wsu__tTimestampFault *, const char*, const char*); - -inline int soap_write_wsu__tTimestampFault(struct soap *soap, enum wsu__tTimestampFault const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsu__tTimestampFault(soap, p, "wsu:tTimestampFault", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsu__tTimestampFault(struct soap *soap, const char *URL, enum wsu__tTimestampFault const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsu__tTimestampFault(soap, p, "wsu:tTimestampFault", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsu__tTimestampFault(struct soap *soap, const char *URL, enum wsu__tTimestampFault const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsu__tTimestampFault(soap, p, "wsu:tTimestampFault", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsu__tTimestampFault(struct soap *soap, const char *URL, enum wsu__tTimestampFault const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsu__tTimestampFault(soap, p, "wsu:tTimestampFault", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsu__tTimestampFault * SOAP_FMAC4 soap_get_wsu__tTimestampFault(struct soap*, enum wsu__tTimestampFault *, const char*, const char*); - -inline int soap_read_wsu__tTimestampFault(struct soap *soap, enum wsu__tTimestampFault *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsu__tTimestampFault(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsu__tTimestampFault(struct soap *soap, const char *URL, enum wsu__tTimestampFault *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsu__tTimestampFault(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsu__tTimestampFault(struct soap *soap, enum wsu__tTimestampFault *p) -{ - if (::soap_read_wsu__tTimestampFault(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__FaultCodeType_DEFINED -#define SOAP_TYPE_wsdd__FaultCodeType_DEFINED - -inline void soap_default_wsdd__FaultCodeType(struct soap *soap, enum wsdd__FaultCodeType *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsdd__FaultCodeType - *a = SOAP_DEFAULT_wsdd__FaultCodeType; -#else - *a = (enum wsdd__FaultCodeType)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__FaultCodeType(struct soap*, const char*, int, const enum wsdd__FaultCodeType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsdd__FaultCodeType2s(struct soap*, enum wsdd__FaultCodeType); -SOAP_FMAC3 enum wsdd__FaultCodeType * SOAP_FMAC4 soap_in_wsdd__FaultCodeType(struct soap*, const char*, enum wsdd__FaultCodeType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsdd__FaultCodeType(struct soap*, const char*, enum wsdd__FaultCodeType *); - -SOAP_FMAC3 enum wsdd__FaultCodeType * SOAP_FMAC4 soap_new_wsdd__FaultCodeType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__FaultCodeType(struct soap*, const enum wsdd__FaultCodeType *, const char*, const char*); - -inline int soap_write_wsdd__FaultCodeType(struct soap *soap, enum wsdd__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsdd__FaultCodeType(soap, p, "wsdd:FaultCodeType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsdd__FaultCodeType(struct soap *soap, const char *URL, enum wsdd__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsdd__FaultCodeType(soap, p, "wsdd:FaultCodeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__FaultCodeType(struct soap *soap, const char *URL, enum wsdd__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsdd__FaultCodeType(soap, p, "wsdd:FaultCodeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__FaultCodeType(struct soap *soap, const char *URL, enum wsdd__FaultCodeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsdd__FaultCodeType(soap, p, "wsdd:FaultCodeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsdd__FaultCodeType * SOAP_FMAC4 soap_get_wsdd__FaultCodeType(struct soap*, enum wsdd__FaultCodeType *, const char*, const char*); - -inline int soap_read_wsdd__FaultCodeType(struct soap *soap, enum wsdd__FaultCodeType *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsdd__FaultCodeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__FaultCodeType(struct soap *soap, const char *URL, enum wsdd__FaultCodeType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__FaultCodeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__FaultCodeType(struct soap *soap, enum wsdd__FaultCodeType *p) -{ - if (::soap_read_wsdd__FaultCodeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa__FaultSubcodeValues_DEFINED -#define SOAP_TYPE_wsa__FaultSubcodeValues_DEFINED - -inline void soap_default_wsa__FaultSubcodeValues(struct soap *soap, enum wsa__FaultSubcodeValues *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsa__FaultSubcodeValues - *a = SOAP_DEFAULT_wsa__FaultSubcodeValues; -#else - *a = (enum wsa__FaultSubcodeValues)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__FaultSubcodeValues(struct soap*, const char*, int, const enum wsa__FaultSubcodeValues *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa__FaultSubcodeValues2s(struct soap*, enum wsa__FaultSubcodeValues); -SOAP_FMAC3 enum wsa__FaultSubcodeValues * SOAP_FMAC4 soap_in_wsa__FaultSubcodeValues(struct soap*, const char*, enum wsa__FaultSubcodeValues *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa__FaultSubcodeValues(struct soap*, const char*, enum wsa__FaultSubcodeValues *); - -SOAP_FMAC3 enum wsa__FaultSubcodeValues * SOAP_FMAC4 soap_new_wsa__FaultSubcodeValues(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__FaultSubcodeValues(struct soap*, const enum wsa__FaultSubcodeValues *, const char*, const char*); - -inline int soap_write_wsa__FaultSubcodeValues(struct soap *soap, enum wsa__FaultSubcodeValues const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsa__FaultSubcodeValues(soap, p, "wsa:FaultSubcodeValues", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsa__FaultSubcodeValues(struct soap *soap, const char *URL, enum wsa__FaultSubcodeValues const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa__FaultSubcodeValues(soap, p, "wsa:FaultSubcodeValues", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa__FaultSubcodeValues(struct soap *soap, const char *URL, enum wsa__FaultSubcodeValues const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa__FaultSubcodeValues(soap, p, "wsa:FaultSubcodeValues", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa__FaultSubcodeValues(struct soap *soap, const char *URL, enum wsa__FaultSubcodeValues const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa__FaultSubcodeValues(soap, p, "wsa:FaultSubcodeValues", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsa__FaultSubcodeValues * SOAP_FMAC4 soap_get_wsa__FaultSubcodeValues(struct soap*, enum wsa__FaultSubcodeValues *, const char*, const char*); - -inline int soap_read_wsa__FaultSubcodeValues(struct soap *soap, enum wsa__FaultSubcodeValues *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsa__FaultSubcodeValues(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa__FaultSubcodeValues(struct soap *soap, const char *URL, enum wsa__FaultSubcodeValues *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa__FaultSubcodeValues(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa__FaultSubcodeValues(struct soap *soap, enum wsa__FaultSubcodeValues *p) -{ - if (::soap_read_wsa__FaultSubcodeValues(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa__RelationshipTypeValues_DEFINED -#define SOAP_TYPE_wsa__RelationshipTypeValues_DEFINED - -inline void soap_default_wsa__RelationshipTypeValues(struct soap *soap, enum wsa__RelationshipTypeValues *a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsa__RelationshipTypeValues - *a = SOAP_DEFAULT_wsa__RelationshipTypeValues; -#else - *a = (enum wsa__RelationshipTypeValues)0; -#endif -} -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__RelationshipTypeValues(struct soap*, const char*, int, const enum wsa__RelationshipTypeValues *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_wsa__RelationshipTypeValues2s(struct soap*, enum wsa__RelationshipTypeValues); -SOAP_FMAC3 enum wsa__RelationshipTypeValues * SOAP_FMAC4 soap_in_wsa__RelationshipTypeValues(struct soap*, const char*, enum wsa__RelationshipTypeValues *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2wsa__RelationshipTypeValues(struct soap*, const char*, enum wsa__RelationshipTypeValues *); - -SOAP_FMAC3 enum wsa__RelationshipTypeValues * SOAP_FMAC4 soap_new_wsa__RelationshipTypeValues(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__RelationshipTypeValues(struct soap*, const enum wsa__RelationshipTypeValues *, const char*, const char*); - -inline int soap_write_wsa__RelationshipTypeValues(struct soap *soap, enum wsa__RelationshipTypeValues const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsa__RelationshipTypeValues(soap, p, "wsa:RelationshipTypeValues", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsa__RelationshipTypeValues(struct soap *soap, const char *URL, enum wsa__RelationshipTypeValues const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa__RelationshipTypeValues(soap, p, "wsa:RelationshipTypeValues", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa__RelationshipTypeValues(struct soap *soap, const char *URL, enum wsa__RelationshipTypeValues const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa__RelationshipTypeValues(soap, p, "wsa:RelationshipTypeValues", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa__RelationshipTypeValues(struct soap *soap, const char *URL, enum wsa__RelationshipTypeValues const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsa__RelationshipTypeValues(soap, p, "wsa:RelationshipTypeValues", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 enum wsa__RelationshipTypeValues * SOAP_FMAC4 soap_get_wsa__RelationshipTypeValues(struct soap*, enum wsa__RelationshipTypeValues *, const char*, const char*); - -inline int soap_read_wsa__RelationshipTypeValues(struct soap *soap, enum wsa__RelationshipTypeValues *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsa__RelationshipTypeValues(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa__RelationshipTypeValues(struct soap *soap, const char *URL, enum wsa__RelationshipTypeValues *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa__RelationshipTypeValues(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa__RelationshipTypeValues(struct soap *soap, enum wsa__RelationshipTypeValues *p) -{ - if (::soap_read_wsa__RelationshipTypeValues(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wstop__TopicNamespaceType_Topic_DEFINED -#define SOAP_TYPE__wstop__TopicNamespaceType_Topic_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wstop__TopicNamespaceType_Topic(struct soap*, const char*, int, const _wstop__TopicNamespaceType_Topic *, const char*); -SOAP_FMAC3 _wstop__TopicNamespaceType_Topic * SOAP_FMAC4 soap_in__wstop__TopicNamespaceType_Topic(struct soap*, const char*, _wstop__TopicNamespaceType_Topic *, const char*); -SOAP_FMAC1 _wstop__TopicNamespaceType_Topic * SOAP_FMAC2 soap_instantiate__wstop__TopicNamespaceType_Topic(struct soap*, int, const char*, const char*, size_t*); - -inline _wstop__TopicNamespaceType_Topic * soap_new__wstop__TopicNamespaceType_Topic(struct soap *soap, int n = -1) -{ - return soap_instantiate__wstop__TopicNamespaceType_Topic(soap, n, NULL, NULL, NULL); -} - -inline _wstop__TopicNamespaceType_Topic * soap_new_req__wstop__TopicNamespaceType_Topic( - struct soap *soap, - const std::string& name) -{ - _wstop__TopicNamespaceType_Topic *_p = ::soap_new__wstop__TopicNamespaceType_Topic(soap); - if (_p) - { _p->soap_default(soap); - _p->_wstop__TopicNamespaceType_Topic::name = name; - } - return _p; -} - -inline _wstop__TopicNamespaceType_Topic * soap_new_set__wstop__TopicNamespaceType_Topic( - struct soap *soap, - wstop__Documentation *documentation, - const struct soap_dom_attribute& __anyAttribute, - wstop__QueryExpressionType *MessagePattern, - const std::vector & Topic, - const std::vector & __any, - const std::string& name, - std::string *messageTypes, - bool final_, - std::string *parent) -{ - _wstop__TopicNamespaceType_Topic *_p = ::soap_new__wstop__TopicNamespaceType_Topic(soap); - if (_p) - { _p->soap_default(soap); - _p->_wstop__TopicNamespaceType_Topic::documentation = documentation; - _p->_wstop__TopicNamespaceType_Topic::__anyAttribute = __anyAttribute; - _p->_wstop__TopicNamespaceType_Topic::MessagePattern = MessagePattern; - _p->_wstop__TopicNamespaceType_Topic::Topic = Topic; - _p->_wstop__TopicNamespaceType_Topic::__any = __any; - _p->_wstop__TopicNamespaceType_Topic::name = name; - _p->_wstop__TopicNamespaceType_Topic::messageTypes = messageTypes; - _p->_wstop__TopicNamespaceType_Topic::final_ = final_; - _p->_wstop__TopicNamespaceType_Topic::parent = parent; - } - return _p; -} - -inline int soap_write__wstop__TopicNamespaceType_Topic(struct soap *soap, _wstop__TopicNamespaceType_Topic const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:TopicNamespaceType-Topic", p->soap_type() == SOAP_TYPE__wstop__TopicNamespaceType_Topic ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wstop__TopicNamespaceType_Topic(struct soap *soap, const char *URL, _wstop__TopicNamespaceType_Topic 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, "wstop:TopicNamespaceType-Topic", p->soap_type() == SOAP_TYPE__wstop__TopicNamespaceType_Topic ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wstop__TopicNamespaceType_Topic(struct soap *soap, const char *URL, _wstop__TopicNamespaceType_Topic 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, "wstop:TopicNamespaceType-Topic", p->soap_type() == SOAP_TYPE__wstop__TopicNamespaceType_Topic ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wstop__TopicNamespaceType_Topic(struct soap *soap, const char *URL, _wstop__TopicNamespaceType_Topic 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, "wstop:TopicNamespaceType-Topic", p->soap_type() == SOAP_TYPE__wstop__TopicNamespaceType_Topic ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wstop__TopicNamespaceType_Topic * SOAP_FMAC4 soap_get__wstop__TopicNamespaceType_Topic(struct soap*, _wstop__TopicNamespaceType_Topic *, const char*, const char*); - -inline int soap_read__wstop__TopicNamespaceType_Topic(struct soap *soap, _wstop__TopicNamespaceType_Topic *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wstop__TopicNamespaceType_Topic(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wstop__TopicNamespaceType_Topic(struct soap *soap, const char *URL, _wstop__TopicNamespaceType_Topic *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wstop__TopicNamespaceType_Topic(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wstop__TopicNamespaceType_Topic(struct soap *soap, _wstop__TopicNamespaceType_Topic *p) -{ - if (::soap_read__wstop__TopicNamespaceType_Topic(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__ExportRecordedDataResponse_Extension_DEFINED -#define SOAP_TYPE__trc__ExportRecordedDataResponse_Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__ExportRecordedDataResponse_Extension(struct soap*, const char*, int, const _trc__ExportRecordedDataResponse_Extension *, const char*); -SOAP_FMAC3 _trc__ExportRecordedDataResponse_Extension * SOAP_FMAC4 soap_in__trc__ExportRecordedDataResponse_Extension(struct soap*, const char*, _trc__ExportRecordedDataResponse_Extension *, const char*); -SOAP_FMAC1 _trc__ExportRecordedDataResponse_Extension * SOAP_FMAC2 soap_instantiate__trc__ExportRecordedDataResponse_Extension(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__ExportRecordedDataResponse_Extension * soap_new__trc__ExportRecordedDataResponse_Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__ExportRecordedDataResponse_Extension(soap, n, NULL, NULL, NULL); -} - -inline _trc__ExportRecordedDataResponse_Extension * soap_new_req__trc__ExportRecordedDataResponse_Extension( - struct soap *soap) -{ - _trc__ExportRecordedDataResponse_Extension *_p = ::soap_new__trc__ExportRecordedDataResponse_Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__ExportRecordedDataResponse_Extension * soap_new_set__trc__ExportRecordedDataResponse_Extension( - struct soap *soap, - const struct soap_dom_element& __any) -{ - _trc__ExportRecordedDataResponse_Extension *_p = ::soap_new__trc__ExportRecordedDataResponse_Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__ExportRecordedDataResponse_Extension::__any = __any; - } - return _p; -} - -inline int soap_write__trc__ExportRecordedDataResponse_Extension(struct soap *soap, _trc__ExportRecordedDataResponse_Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:ExportRecordedDataResponse-Extension", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse_Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__ExportRecordedDataResponse_Extension(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse_Extension 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, "trc:ExportRecordedDataResponse-Extension", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__ExportRecordedDataResponse_Extension(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse_Extension 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, "trc:ExportRecordedDataResponse-Extension", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__ExportRecordedDataResponse_Extension(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse_Extension 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, "trc:ExportRecordedDataResponse-Extension", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse_Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__ExportRecordedDataResponse_Extension * SOAP_FMAC4 soap_get__trc__ExportRecordedDataResponse_Extension(struct soap*, _trc__ExportRecordedDataResponse_Extension *, const char*, const char*); - -inline int soap_read__trc__ExportRecordedDataResponse_Extension(struct soap *soap, _trc__ExportRecordedDataResponse_Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__ExportRecordedDataResponse_Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__ExportRecordedDataResponse_Extension(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse_Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__ExportRecordedDataResponse_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__ExportRecordedDataResponse_Extension(struct soap *soap, _trc__ExportRecordedDataResponse_Extension *p) -{ - if (::soap_read__trc__ExportRecordedDataResponse_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemUrisResponse_Extension_DEFINED -#define SOAP_TYPE__tds__GetSystemUrisResponse_Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemUrisResponse_Extension(struct soap*, const char*, int, const _tds__GetSystemUrisResponse_Extension *, const char*); -SOAP_FMAC3 _tds__GetSystemUrisResponse_Extension * SOAP_FMAC4 soap_in__tds__GetSystemUrisResponse_Extension(struct soap*, const char*, _tds__GetSystemUrisResponse_Extension *, const char*); -SOAP_FMAC1 _tds__GetSystemUrisResponse_Extension * SOAP_FMAC2 soap_instantiate__tds__GetSystemUrisResponse_Extension(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemUrisResponse_Extension * soap_new__tds__GetSystemUrisResponse_Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemUrisResponse_Extension(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemUrisResponse_Extension * soap_new_req__tds__GetSystemUrisResponse_Extension( - struct soap *soap) -{ - _tds__GetSystemUrisResponse_Extension *_p = ::soap_new__tds__GetSystemUrisResponse_Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetSystemUrisResponse_Extension * soap_new_set__tds__GetSystemUrisResponse_Extension( - struct soap *soap, - const std::vector & __any) -{ - _tds__GetSystemUrisResponse_Extension *_p = ::soap_new__tds__GetSystemUrisResponse_Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemUrisResponse_Extension::__any = __any; - } - return _p; -} - -inline int soap_write__tds__GetSystemUrisResponse_Extension(struct soap *soap, _tds__GetSystemUrisResponse_Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemUrisResponse-Extension", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse_Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemUrisResponse_Extension(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse_Extension 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, "tds:GetSystemUrisResponse-Extension", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemUrisResponse_Extension(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse_Extension 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, "tds:GetSystemUrisResponse-Extension", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemUrisResponse_Extension(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse_Extension 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, "tds:GetSystemUrisResponse-Extension", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse_Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemUrisResponse_Extension * SOAP_FMAC4 soap_get__tds__GetSystemUrisResponse_Extension(struct soap*, _tds__GetSystemUrisResponse_Extension *, const char*, const char*); - -inline int soap_read__tds__GetSystemUrisResponse_Extension(struct soap *soap, _tds__GetSystemUrisResponse_Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemUrisResponse_Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemUrisResponse_Extension(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse_Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemUrisResponse_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemUrisResponse_Extension(struct soap *soap, _tds__GetSystemUrisResponse_Extension *p) -{ - if (::soap_read__tds__GetSystemUrisResponse_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__StorageConfigurationData_Extension_DEFINED -#define SOAP_TYPE__tds__StorageConfigurationData_Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StorageConfigurationData_Extension(struct soap*, const char*, int, const _tds__StorageConfigurationData_Extension *, const char*); -SOAP_FMAC3 _tds__StorageConfigurationData_Extension * SOAP_FMAC4 soap_in__tds__StorageConfigurationData_Extension(struct soap*, const char*, _tds__StorageConfigurationData_Extension *, const char*); -SOAP_FMAC1 _tds__StorageConfigurationData_Extension * SOAP_FMAC2 soap_instantiate__tds__StorageConfigurationData_Extension(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__StorageConfigurationData_Extension * soap_new__tds__StorageConfigurationData_Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__StorageConfigurationData_Extension(soap, n, NULL, NULL, NULL); -} - -inline _tds__StorageConfigurationData_Extension * soap_new_req__tds__StorageConfigurationData_Extension( - struct soap *soap) -{ - _tds__StorageConfigurationData_Extension *_p = ::soap_new__tds__StorageConfigurationData_Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__StorageConfigurationData_Extension * soap_new_set__tds__StorageConfigurationData_Extension( - struct soap *soap, - const std::vector & __any) -{ - _tds__StorageConfigurationData_Extension *_p = ::soap_new__tds__StorageConfigurationData_Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__StorageConfigurationData_Extension::__any = __any; - } - return _p; -} - -inline int soap_write__tds__StorageConfigurationData_Extension(struct soap *soap, _tds__StorageConfigurationData_Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StorageConfigurationData-Extension", p->soap_type() == SOAP_TYPE__tds__StorageConfigurationData_Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__StorageConfigurationData_Extension(struct soap *soap, const char *URL, _tds__StorageConfigurationData_Extension 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, "tds:StorageConfigurationData-Extension", p->soap_type() == SOAP_TYPE__tds__StorageConfigurationData_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__StorageConfigurationData_Extension(struct soap *soap, const char *URL, _tds__StorageConfigurationData_Extension 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, "tds:StorageConfigurationData-Extension", p->soap_type() == SOAP_TYPE__tds__StorageConfigurationData_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__StorageConfigurationData_Extension(struct soap *soap, const char *URL, _tds__StorageConfigurationData_Extension 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, "tds:StorageConfigurationData-Extension", p->soap_type() == SOAP_TYPE__tds__StorageConfigurationData_Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__StorageConfigurationData_Extension * SOAP_FMAC4 soap_get__tds__StorageConfigurationData_Extension(struct soap*, _tds__StorageConfigurationData_Extension *, const char*, const char*); - -inline int soap_read__tds__StorageConfigurationData_Extension(struct soap *soap, _tds__StorageConfigurationData_Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__StorageConfigurationData_Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__StorageConfigurationData_Extension(struct soap *soap, const char *URL, _tds__StorageConfigurationData_Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__StorageConfigurationData_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__StorageConfigurationData_Extension(struct soap *soap, _tds__StorageConfigurationData_Extension *p) -{ - if (::soap_read__tds__StorageConfigurationData_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__UserCredential_Extension_DEFINED -#define SOAP_TYPE__tds__UserCredential_Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__UserCredential_Extension(struct soap*, const char*, int, const _tds__UserCredential_Extension *, const char*); -SOAP_FMAC3 _tds__UserCredential_Extension * SOAP_FMAC4 soap_in__tds__UserCredential_Extension(struct soap*, const char*, _tds__UserCredential_Extension *, const char*); -SOAP_FMAC1 _tds__UserCredential_Extension * SOAP_FMAC2 soap_instantiate__tds__UserCredential_Extension(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__UserCredential_Extension * soap_new__tds__UserCredential_Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__UserCredential_Extension(soap, n, NULL, NULL, NULL); -} - -inline _tds__UserCredential_Extension * soap_new_req__tds__UserCredential_Extension( - struct soap *soap) -{ - _tds__UserCredential_Extension *_p = ::soap_new__tds__UserCredential_Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__UserCredential_Extension * soap_new_set__tds__UserCredential_Extension( - struct soap *soap, - const std::vector & __any) -{ - _tds__UserCredential_Extension *_p = ::soap_new__tds__UserCredential_Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__UserCredential_Extension::__any = __any; - } - return _p; -} - -inline int soap_write__tds__UserCredential_Extension(struct soap *soap, _tds__UserCredential_Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:UserCredential-Extension", p->soap_type() == SOAP_TYPE__tds__UserCredential_Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__UserCredential_Extension(struct soap *soap, const char *URL, _tds__UserCredential_Extension 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, "tds:UserCredential-Extension", p->soap_type() == SOAP_TYPE__tds__UserCredential_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__UserCredential_Extension(struct soap *soap, const char *URL, _tds__UserCredential_Extension 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, "tds:UserCredential-Extension", p->soap_type() == SOAP_TYPE__tds__UserCredential_Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__UserCredential_Extension(struct soap *soap, const char *URL, _tds__UserCredential_Extension 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, "tds:UserCredential-Extension", p->soap_type() == SOAP_TYPE__tds__UserCredential_Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__UserCredential_Extension * SOAP_FMAC4 soap_get__tds__UserCredential_Extension(struct soap*, _tds__UserCredential_Extension *, const char*, const char*); - -inline int soap_read__tds__UserCredential_Extension(struct soap *soap, _tds__UserCredential_Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__UserCredential_Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__UserCredential_Extension(struct soap *soap, const char *URL, _tds__UserCredential_Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__UserCredential_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__UserCredential_Extension(struct soap *soap, _tds__UserCredential_Extension *p) -{ - if (::soap_read__tds__UserCredential_Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__Service_Capabilities_DEFINED -#define SOAP_TYPE__tds__Service_Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__Service_Capabilities(struct soap*, const char*, int, const _tds__Service_Capabilities *, const char*); -SOAP_FMAC3 _tds__Service_Capabilities * SOAP_FMAC4 soap_in__tds__Service_Capabilities(struct soap*, const char*, _tds__Service_Capabilities *, const char*); -SOAP_FMAC1 _tds__Service_Capabilities * SOAP_FMAC2 soap_instantiate__tds__Service_Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__Service_Capabilities * soap_new__tds__Service_Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__Service_Capabilities(soap, n, NULL, NULL, NULL); -} - -inline _tds__Service_Capabilities * soap_new_req__tds__Service_Capabilities( - struct soap *soap) -{ - _tds__Service_Capabilities *_p = ::soap_new__tds__Service_Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__Service_Capabilities * soap_new_set__tds__Service_Capabilities( - struct soap *soap, - const struct soap_dom_element& __any) -{ - _tds__Service_Capabilities *_p = ::soap_new__tds__Service_Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__Service_Capabilities::__any = __any; - } - return _p; -} - -inline int soap_write__tds__Service_Capabilities(struct soap *soap, _tds__Service_Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:Service-Capabilities", p->soap_type() == SOAP_TYPE__tds__Service_Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__Service_Capabilities(struct soap *soap, const char *URL, _tds__Service_Capabilities 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, "tds:Service-Capabilities", p->soap_type() == SOAP_TYPE__tds__Service_Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__Service_Capabilities(struct soap *soap, const char *URL, _tds__Service_Capabilities 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, "tds:Service-Capabilities", p->soap_type() == SOAP_TYPE__tds__Service_Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__Service_Capabilities(struct soap *soap, const char *URL, _tds__Service_Capabilities 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, "tds:Service-Capabilities", p->soap_type() == SOAP_TYPE__tds__Service_Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__Service_Capabilities * SOAP_FMAC4 soap_get__tds__Service_Capabilities(struct soap*, _tds__Service_Capabilities *, const char*, const char*); - -inline int soap_read__tds__Service_Capabilities(struct soap *soap, _tds__Service_Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__Service_Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__Service_Capabilities(struct soap *soap, const char *URL, _tds__Service_Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__Service_Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__Service_Capabilities(struct soap *soap, _tds__Service_Capabilities *p) -{ - if (::soap_read__tds__Service_Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__ConfigDescription_Messages_DEFINED -#define SOAP_TYPE__tt__ConfigDescription_Messages_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ConfigDescription_Messages(struct soap*, const char*, int, const _tt__ConfigDescription_Messages *, const char*); -SOAP_FMAC3 _tt__ConfigDescription_Messages * SOAP_FMAC4 soap_in__tt__ConfigDescription_Messages(struct soap*, const char*, _tt__ConfigDescription_Messages *, const char*); -SOAP_FMAC1 _tt__ConfigDescription_Messages * SOAP_FMAC2 soap_instantiate__tt__ConfigDescription_Messages(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__ConfigDescription_Messages * soap_new__tt__ConfigDescription_Messages(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__ConfigDescription_Messages(soap, n, NULL, NULL, NULL); -} - -inline _tt__ConfigDescription_Messages * soap_new_req__tt__ConfigDescription_Messages( - struct soap *soap, - const std::string& ParentTopic) -{ - _tt__ConfigDescription_Messages *_p = ::soap_new__tt__ConfigDescription_Messages(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ConfigDescription_Messages::ParentTopic = ParentTopic; - } - return _p; -} - -inline _tt__ConfigDescription_Messages * soap_new_set__tt__ConfigDescription_Messages( - struct soap *soap, - tt__ItemListDescription *Source, - tt__ItemListDescription *Key, - tt__ItemListDescription *Data, - tt__MessageDescriptionExtension *Extension, - bool *IsProperty, - const struct soap_dom_attribute& __anyAttribute, - const std::string& ParentTopic) -{ - _tt__ConfigDescription_Messages *_p = ::soap_new__tt__ConfigDescription_Messages(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ConfigDescription_Messages::Source = Source; - _p->_tt__ConfigDescription_Messages::Key = Key; - _p->_tt__ConfigDescription_Messages::Data = Data; - _p->_tt__ConfigDescription_Messages::Extension = Extension; - _p->_tt__ConfigDescription_Messages::IsProperty = IsProperty; - _p->_tt__ConfigDescription_Messages::__anyAttribute = __anyAttribute; - _p->_tt__ConfigDescription_Messages::ParentTopic = ParentTopic; - } - return _p; -} - -inline int soap_write__tt__ConfigDescription_Messages(struct soap *soap, _tt__ConfigDescription_Messages const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ConfigDescription-Messages", p->soap_type() == SOAP_TYPE__tt__ConfigDescription_Messages ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__ConfigDescription_Messages(struct soap *soap, const char *URL, _tt__ConfigDescription_Messages 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, "tt:ConfigDescription-Messages", p->soap_type() == SOAP_TYPE__tt__ConfigDescription_Messages ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__ConfigDescription_Messages(struct soap *soap, const char *URL, _tt__ConfigDescription_Messages 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, "tt:ConfigDescription-Messages", p->soap_type() == SOAP_TYPE__tt__ConfigDescription_Messages ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__ConfigDescription_Messages(struct soap *soap, const char *URL, _tt__ConfigDescription_Messages 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, "tt:ConfigDescription-Messages", p->soap_type() == SOAP_TYPE__tt__ConfigDescription_Messages ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__ConfigDescription_Messages * SOAP_FMAC4 soap_get__tt__ConfigDescription_Messages(struct soap*, _tt__ConfigDescription_Messages *, const char*, const char*); - -inline int soap_read__tt__ConfigDescription_Messages(struct soap *soap, _tt__ConfigDescription_Messages *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__ConfigDescription_Messages(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__ConfigDescription_Messages(struct soap *soap, const char *URL, _tt__ConfigDescription_Messages *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__ConfigDescription_Messages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__ConfigDescription_Messages(struct soap *soap, _tt__ConfigDescription_Messages *p) -{ - if (::soap_read__tt__ConfigDescription_Messages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__ItemListDescription_ElementItemDescription_DEFINED -#define SOAP_TYPE__tt__ItemListDescription_ElementItemDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemListDescription_ElementItemDescription(struct soap*, const char*, int, const _tt__ItemListDescription_ElementItemDescription *, const char*); -SOAP_FMAC3 _tt__ItemListDescription_ElementItemDescription * SOAP_FMAC4 soap_in__tt__ItemListDescription_ElementItemDescription(struct soap*, const char*, _tt__ItemListDescription_ElementItemDescription *, const char*); -SOAP_FMAC1 _tt__ItemListDescription_ElementItemDescription * SOAP_FMAC2 soap_instantiate__tt__ItemListDescription_ElementItemDescription(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__ItemListDescription_ElementItemDescription * soap_new__tt__ItemListDescription_ElementItemDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__ItemListDescription_ElementItemDescription(soap, n, NULL, NULL, NULL); -} - -inline _tt__ItemListDescription_ElementItemDescription * soap_new_req__tt__ItemListDescription_ElementItemDescription( - struct soap *soap, - const std::string& Name, - const std::string& Type) -{ - _tt__ItemListDescription_ElementItemDescription *_p = ::soap_new__tt__ItemListDescription_ElementItemDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemListDescription_ElementItemDescription::Name = Name; - _p->_tt__ItemListDescription_ElementItemDescription::Type = Type; - } - return _p; -} - -inline _tt__ItemListDescription_ElementItemDescription * soap_new_set__tt__ItemListDescription_ElementItemDescription( - struct soap *soap, - const std::string& Name, - const std::string& Type) -{ - _tt__ItemListDescription_ElementItemDescription *_p = ::soap_new__tt__ItemListDescription_ElementItemDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemListDescription_ElementItemDescription::Name = Name; - _p->_tt__ItemListDescription_ElementItemDescription::Type = Type; - } - return _p; -} - -inline int soap_write__tt__ItemListDescription_ElementItemDescription(struct soap *soap, _tt__ItemListDescription_ElementItemDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemListDescription-ElementItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_ElementItemDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__ItemListDescription_ElementItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_ElementItemDescription 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, "tt:ItemListDescription-ElementItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_ElementItemDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__ItemListDescription_ElementItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_ElementItemDescription 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, "tt:ItemListDescription-ElementItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_ElementItemDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__ItemListDescription_ElementItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_ElementItemDescription 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, "tt:ItemListDescription-ElementItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_ElementItemDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__ItemListDescription_ElementItemDescription * SOAP_FMAC4 soap_get__tt__ItemListDescription_ElementItemDescription(struct soap*, _tt__ItemListDescription_ElementItemDescription *, const char*, const char*); - -inline int soap_read__tt__ItemListDescription_ElementItemDescription(struct soap *soap, _tt__ItemListDescription_ElementItemDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__ItemListDescription_ElementItemDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__ItemListDescription_ElementItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_ElementItemDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__ItemListDescription_ElementItemDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__ItemListDescription_ElementItemDescription(struct soap *soap, _tt__ItemListDescription_ElementItemDescription *p) -{ - if (::soap_read__tt__ItemListDescription_ElementItemDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription_DEFINED -#define SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemListDescription_SimpleItemDescription(struct soap*, const char*, int, const _tt__ItemListDescription_SimpleItemDescription *, const char*); -SOAP_FMAC3 _tt__ItemListDescription_SimpleItemDescription * SOAP_FMAC4 soap_in__tt__ItemListDescription_SimpleItemDescription(struct soap*, const char*, _tt__ItemListDescription_SimpleItemDescription *, const char*); -SOAP_FMAC1 _tt__ItemListDescription_SimpleItemDescription * SOAP_FMAC2 soap_instantiate__tt__ItemListDescription_SimpleItemDescription(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__ItemListDescription_SimpleItemDescription * soap_new__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__ItemListDescription_SimpleItemDescription(soap, n, NULL, NULL, NULL); -} - -inline _tt__ItemListDescription_SimpleItemDescription * soap_new_req__tt__ItemListDescription_SimpleItemDescription( - struct soap *soap, - const std::string& Name, - const std::string& Type) -{ - _tt__ItemListDescription_SimpleItemDescription *_p = ::soap_new__tt__ItemListDescription_SimpleItemDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemListDescription_SimpleItemDescription::Name = Name; - _p->_tt__ItemListDescription_SimpleItemDescription::Type = Type; - } - return _p; -} - -inline _tt__ItemListDescription_SimpleItemDescription * soap_new_set__tt__ItemListDescription_SimpleItemDescription( - struct soap *soap, - const std::string& Name, - const std::string& Type) -{ - _tt__ItemListDescription_SimpleItemDescription *_p = ::soap_new__tt__ItemListDescription_SimpleItemDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemListDescription_SimpleItemDescription::Name = Name; - _p->_tt__ItemListDescription_SimpleItemDescription::Type = Type; - } - return _p; -} - -inline int soap_write__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, _tt__ItemListDescription_SimpleItemDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemListDescription-SimpleItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_SimpleItemDescription 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, "tt:ItemListDescription-SimpleItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_SimpleItemDescription 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, "tt:ItemListDescription-SimpleItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_SimpleItemDescription 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, "tt:ItemListDescription-SimpleItemDescription", p->soap_type() == SOAP_TYPE__tt__ItemListDescription_SimpleItemDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__ItemListDescription_SimpleItemDescription * SOAP_FMAC4 soap_get__tt__ItemListDescription_SimpleItemDescription(struct soap*, _tt__ItemListDescription_SimpleItemDescription *, const char*, const char*); - -inline int soap_read__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, _tt__ItemListDescription_SimpleItemDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__ItemListDescription_SimpleItemDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, const char *URL, _tt__ItemListDescription_SimpleItemDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__ItemListDescription_SimpleItemDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__ItemListDescription_SimpleItemDescription(struct soap *soap, _tt__ItemListDescription_SimpleItemDescription *p) -{ - if (::soap_read__tt__ItemListDescription_SimpleItemDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__ItemList_ElementItem_DEFINED -#define SOAP_TYPE__tt__ItemList_ElementItem_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemList_ElementItem(struct soap*, const char*, int, const _tt__ItemList_ElementItem *, const char*); -SOAP_FMAC3 _tt__ItemList_ElementItem * SOAP_FMAC4 soap_in__tt__ItemList_ElementItem(struct soap*, const char*, _tt__ItemList_ElementItem *, const char*); -SOAP_FMAC1 _tt__ItemList_ElementItem * SOAP_FMAC2 soap_instantiate__tt__ItemList_ElementItem(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__ItemList_ElementItem * soap_new__tt__ItemList_ElementItem(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__ItemList_ElementItem(soap, n, NULL, NULL, NULL); -} - -inline _tt__ItemList_ElementItem * soap_new_req__tt__ItemList_ElementItem( - struct soap *soap, - const std::string& Name) -{ - _tt__ItemList_ElementItem *_p = ::soap_new__tt__ItemList_ElementItem(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemList_ElementItem::Name = Name; - } - return _p; -} - -inline _tt__ItemList_ElementItem * soap_new_set__tt__ItemList_ElementItem( - struct soap *soap, - const struct soap_dom_element& __any, - const std::string& Name) -{ - _tt__ItemList_ElementItem *_p = ::soap_new__tt__ItemList_ElementItem(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemList_ElementItem::__any = __any; - _p->_tt__ItemList_ElementItem::Name = Name; - } - return _p; -} - -inline int soap_write__tt__ItemList_ElementItem(struct soap *soap, _tt__ItemList_ElementItem const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemList-ElementItem", p->soap_type() == SOAP_TYPE__tt__ItemList_ElementItem ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__ItemList_ElementItem(struct soap *soap, const char *URL, _tt__ItemList_ElementItem 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, "tt:ItemList-ElementItem", p->soap_type() == SOAP_TYPE__tt__ItemList_ElementItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__ItemList_ElementItem(struct soap *soap, const char *URL, _tt__ItemList_ElementItem 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, "tt:ItemList-ElementItem", p->soap_type() == SOAP_TYPE__tt__ItemList_ElementItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__ItemList_ElementItem(struct soap *soap, const char *URL, _tt__ItemList_ElementItem 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, "tt:ItemList-ElementItem", p->soap_type() == SOAP_TYPE__tt__ItemList_ElementItem ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__ItemList_ElementItem * SOAP_FMAC4 soap_get__tt__ItemList_ElementItem(struct soap*, _tt__ItemList_ElementItem *, const char*, const char*); - -inline int soap_read__tt__ItemList_ElementItem(struct soap *soap, _tt__ItemList_ElementItem *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__ItemList_ElementItem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__ItemList_ElementItem(struct soap *soap, const char *URL, _tt__ItemList_ElementItem *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__ItemList_ElementItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__ItemList_ElementItem(struct soap *soap, _tt__ItemList_ElementItem *p) -{ - if (::soap_read__tt__ItemList_ElementItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__ItemList_SimpleItem_DEFINED -#define SOAP_TYPE__tt__ItemList_SimpleItem_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ItemList_SimpleItem(struct soap*, const char*, int, const _tt__ItemList_SimpleItem *, const char*); -SOAP_FMAC3 _tt__ItemList_SimpleItem * SOAP_FMAC4 soap_in__tt__ItemList_SimpleItem(struct soap*, const char*, _tt__ItemList_SimpleItem *, const char*); -SOAP_FMAC1 _tt__ItemList_SimpleItem * SOAP_FMAC2 soap_instantiate__tt__ItemList_SimpleItem(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__ItemList_SimpleItem * soap_new__tt__ItemList_SimpleItem(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__ItemList_SimpleItem(soap, n, NULL, NULL, NULL); -} - -inline _tt__ItemList_SimpleItem * soap_new_req__tt__ItemList_SimpleItem( - struct soap *soap, - const std::string& Name, - const std::string& Value) -{ - _tt__ItemList_SimpleItem *_p = ::soap_new__tt__ItemList_SimpleItem(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemList_SimpleItem::Name = Name; - _p->_tt__ItemList_SimpleItem::Value = Value; - } - return _p; -} - -inline _tt__ItemList_SimpleItem * soap_new_set__tt__ItemList_SimpleItem( - struct soap *soap, - const std::string& Name, - const std::string& Value) -{ - _tt__ItemList_SimpleItem *_p = ::soap_new__tt__ItemList_SimpleItem(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ItemList_SimpleItem::Name = Name; - _p->_tt__ItemList_SimpleItem::Value = Value; - } - return _p; -} - -inline int soap_write__tt__ItemList_SimpleItem(struct soap *soap, _tt__ItemList_SimpleItem const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemList-SimpleItem", p->soap_type() == SOAP_TYPE__tt__ItemList_SimpleItem ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__ItemList_SimpleItem(struct soap *soap, const char *URL, _tt__ItemList_SimpleItem 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, "tt:ItemList-SimpleItem", p->soap_type() == SOAP_TYPE__tt__ItemList_SimpleItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__ItemList_SimpleItem(struct soap *soap, const char *URL, _tt__ItemList_SimpleItem 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, "tt:ItemList-SimpleItem", p->soap_type() == SOAP_TYPE__tt__ItemList_SimpleItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__ItemList_SimpleItem(struct soap *soap, const char *URL, _tt__ItemList_SimpleItem 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, "tt:ItemList-SimpleItem", p->soap_type() == SOAP_TYPE__tt__ItemList_SimpleItem ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__ItemList_SimpleItem * SOAP_FMAC4 soap_get__tt__ItemList_SimpleItem(struct soap*, _tt__ItemList_SimpleItem *, const char*, const char*); - -inline int soap_read__tt__ItemList_SimpleItem(struct soap *soap, _tt__ItemList_SimpleItem *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__ItemList_SimpleItem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__ItemList_SimpleItem(struct soap *soap, const char *URL, _tt__ItemList_SimpleItem *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__ItemList_SimpleItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__ItemList_SimpleItem(struct soap *soap, _tt__ItemList_SimpleItem *p) -{ - if (::soap_read__tt__ItemList_SimpleItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy_DEFINED -#define SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__EventSubscription_SubscriptionPolicy(struct soap*, const char*, int, const _tt__EventSubscription_SubscriptionPolicy *, const char*); -SOAP_FMAC3 _tt__EventSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_in__tt__EventSubscription_SubscriptionPolicy(struct soap*, const char*, _tt__EventSubscription_SubscriptionPolicy *, const char*); -SOAP_FMAC1 _tt__EventSubscription_SubscriptionPolicy * SOAP_FMAC2 soap_instantiate__tt__EventSubscription_SubscriptionPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__EventSubscription_SubscriptionPolicy * soap_new__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__EventSubscription_SubscriptionPolicy(soap, n, NULL, NULL, NULL); -} - -inline _tt__EventSubscription_SubscriptionPolicy * soap_new_req__tt__EventSubscription_SubscriptionPolicy( - struct soap *soap) -{ - _tt__EventSubscription_SubscriptionPolicy *_p = ::soap_new__tt__EventSubscription_SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tt__EventSubscription_SubscriptionPolicy * soap_new_set__tt__EventSubscription_SubscriptionPolicy( - struct soap *soap, - const std::vector & __any) -{ - _tt__EventSubscription_SubscriptionPolicy *_p = ::soap_new__tt__EventSubscription_SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__EventSubscription_SubscriptionPolicy::__any = __any; - } - return _p; -} - -inline int soap_write__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, _tt__EventSubscription_SubscriptionPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EventSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tt__EventSubscription_SubscriptionPolicy 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, "tt:EventSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tt__EventSubscription_SubscriptionPolicy 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, "tt:EventSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tt__EventSubscription_SubscriptionPolicy 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, "tt:EventSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tt__EventSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__EventSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_get__tt__EventSubscription_SubscriptionPolicy(struct soap*, _tt__EventSubscription_SubscriptionPolicy *, const char*, const char*); - -inline int soap_read__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, _tt__EventSubscription_SubscriptionPolicy *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__EventSubscription_SubscriptionPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tt__EventSubscription_SubscriptionPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__EventSubscription_SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__EventSubscription_SubscriptionPolicy(struct soap *soap, _tt__EventSubscription_SubscriptionPolicy *p) -{ - if (::soap_read__tt__EventSubscription_SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__ColorDescriptor_ColorCluster_DEFINED -#define SOAP_TYPE__tt__ColorDescriptor_ColorCluster_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__ColorDescriptor_ColorCluster(struct soap*, const char*, int, const _tt__ColorDescriptor_ColorCluster *, const char*); -SOAP_FMAC3 _tt__ColorDescriptor_ColorCluster * SOAP_FMAC4 soap_in__tt__ColorDescriptor_ColorCluster(struct soap*, const char*, _tt__ColorDescriptor_ColorCluster *, const char*); -SOAP_FMAC1 _tt__ColorDescriptor_ColorCluster * SOAP_FMAC2 soap_instantiate__tt__ColorDescriptor_ColorCluster(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__ColorDescriptor_ColorCluster * soap_new__tt__ColorDescriptor_ColorCluster(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__ColorDescriptor_ColorCluster(soap, n, NULL, NULL, NULL); -} - -inline _tt__ColorDescriptor_ColorCluster * soap_new_req__tt__ColorDescriptor_ColorCluster( - struct soap *soap, - tt__Color *Color) -{ - _tt__ColorDescriptor_ColorCluster *_p = ::soap_new__tt__ColorDescriptor_ColorCluster(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ColorDescriptor_ColorCluster::Color = Color; - } - return _p; -} - -inline _tt__ColorDescriptor_ColorCluster * soap_new_set__tt__ColorDescriptor_ColorCluster( - struct soap *soap, - tt__Color *Color, - float *Weight, - tt__ColorCovariance *Covariance, - const std::vector & __any) -{ - _tt__ColorDescriptor_ColorCluster *_p = ::soap_new__tt__ColorDescriptor_ColorCluster(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__ColorDescriptor_ColorCluster::Color = Color; - _p->_tt__ColorDescriptor_ColorCluster::Weight = Weight; - _p->_tt__ColorDescriptor_ColorCluster::Covariance = Covariance; - _p->_tt__ColorDescriptor_ColorCluster::__any = __any; - } - return _p; -} - -inline int soap_write__tt__ColorDescriptor_ColorCluster(struct soap *soap, _tt__ColorDescriptor_ColorCluster const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ColorDescriptor-ColorCluster", p->soap_type() == SOAP_TYPE__tt__ColorDescriptor_ColorCluster ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__ColorDescriptor_ColorCluster(struct soap *soap, const char *URL, _tt__ColorDescriptor_ColorCluster 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, "tt:ColorDescriptor-ColorCluster", p->soap_type() == SOAP_TYPE__tt__ColorDescriptor_ColorCluster ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__ColorDescriptor_ColorCluster(struct soap *soap, const char *URL, _tt__ColorDescriptor_ColorCluster 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, "tt:ColorDescriptor-ColorCluster", p->soap_type() == SOAP_TYPE__tt__ColorDescriptor_ColorCluster ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__ColorDescriptor_ColorCluster(struct soap *soap, const char *URL, _tt__ColorDescriptor_ColorCluster 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, "tt:ColorDescriptor-ColorCluster", p->soap_type() == SOAP_TYPE__tt__ColorDescriptor_ColorCluster ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__ColorDescriptor_ColorCluster * SOAP_FMAC4 soap_get__tt__ColorDescriptor_ColorCluster(struct soap*, _tt__ColorDescriptor_ColorCluster *, const char*, const char*); - -inline int soap_read__tt__ColorDescriptor_ColorCluster(struct soap *soap, _tt__ColorDescriptor_ColorCluster *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__ColorDescriptor_ColorCluster(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__ColorDescriptor_ColorCluster(struct soap *soap, const char *URL, _tt__ColorDescriptor_ColorCluster *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__ColorDescriptor_ColorCluster(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__ColorDescriptor_ColorCluster(struct soap *soap, _tt__ColorDescriptor_ColorCluster *p) -{ - if (::soap_read__tt__ColorDescriptor_ColorCluster(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy_DEFINED -#define SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, const char*, int, const _tev__CreatePullPointSubscription_SubscriptionPolicy *, const char*); -SOAP_FMAC3 _tev__CreatePullPointSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_in__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, const char*, _tev__CreatePullPointSubscription_SubscriptionPolicy *, const char*); -SOAP_FMAC1 _tev__CreatePullPointSubscription_SubscriptionPolicy * SOAP_FMAC2 soap_instantiate__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__CreatePullPointSubscription_SubscriptionPolicy * soap_new__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, n, NULL, NULL, NULL); -} - -inline _tev__CreatePullPointSubscription_SubscriptionPolicy * soap_new_req__tev__CreatePullPointSubscription_SubscriptionPolicy( - struct soap *soap) -{ - _tev__CreatePullPointSubscription_SubscriptionPolicy *_p = ::soap_new__tev__CreatePullPointSubscription_SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tev__CreatePullPointSubscription_SubscriptionPolicy * soap_new_set__tev__CreatePullPointSubscription_SubscriptionPolicy( - struct soap *soap, - const std::vector & __any) -{ - _tev__CreatePullPointSubscription_SubscriptionPolicy *_p = ::soap_new__tev__CreatePullPointSubscription_SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__CreatePullPointSubscription_SubscriptionPolicy::__any = __any; - } - return _p; -} - -inline int soap_write__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, _tev__CreatePullPointSubscription_SubscriptionPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:CreatePullPointSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription_SubscriptionPolicy 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, "tev:CreatePullPointSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription_SubscriptionPolicy 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, "tev:CreatePullPointSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription_SubscriptionPolicy 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, "tev:CreatePullPointSubscription-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__CreatePullPointSubscription_SubscriptionPolicy * SOAP_FMAC4 soap_get__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, _tev__CreatePullPointSubscription_SubscriptionPolicy *, const char*, const char*); - -inline int soap_read__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, _tev__CreatePullPointSubscription_SubscriptionPolicy *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription_SubscriptionPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap *soap, _tev__CreatePullPointSubscription_SubscriptionPolicy *p) -{ - if (::soap_read__tev__CreatePullPointSubscription_SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause_DEFINED -#define SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsrfbf__BaseFaultType_FaultCause(struct soap*, const char*, int, const _wsrfbf__BaseFaultType_FaultCause *, const char*); -SOAP_FMAC3 _wsrfbf__BaseFaultType_FaultCause * SOAP_FMAC4 soap_in__wsrfbf__BaseFaultType_FaultCause(struct soap*, const char*, _wsrfbf__BaseFaultType_FaultCause *, const char*); -SOAP_FMAC1 _wsrfbf__BaseFaultType_FaultCause * SOAP_FMAC2 soap_instantiate__wsrfbf__BaseFaultType_FaultCause(struct soap*, int, const char*, const char*, size_t*); - -inline _wsrfbf__BaseFaultType_FaultCause * soap_new__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsrfbf__BaseFaultType_FaultCause(soap, n, NULL, NULL, NULL); -} - -inline _wsrfbf__BaseFaultType_FaultCause * soap_new_req__wsrfbf__BaseFaultType_FaultCause( - struct soap *soap) -{ - _wsrfbf__BaseFaultType_FaultCause *_p = ::soap_new__wsrfbf__BaseFaultType_FaultCause(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsrfbf__BaseFaultType_FaultCause * soap_new_set__wsrfbf__BaseFaultType_FaultCause( - struct soap *soap, - const struct soap_dom_element& __any) -{ - _wsrfbf__BaseFaultType_FaultCause *_p = ::soap_new__wsrfbf__BaseFaultType_FaultCause(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsrfbf__BaseFaultType_FaultCause::__any = __any; - } - return _p; -} - -inline int soap_write__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, _wsrfbf__BaseFaultType_FaultCause const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsrfbf:BaseFaultType-FaultCause", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_FaultCause 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, "wsrfbf:BaseFaultType-FaultCause", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_FaultCause 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, "wsrfbf:BaseFaultType-FaultCause", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_FaultCause 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, "wsrfbf:BaseFaultType-FaultCause", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_FaultCause ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsrfbf__BaseFaultType_FaultCause * SOAP_FMAC4 soap_get__wsrfbf__BaseFaultType_FaultCause(struct soap*, _wsrfbf__BaseFaultType_FaultCause *, const char*, const char*); - -inline int soap_read__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, _wsrfbf__BaseFaultType_FaultCause *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsrfbf__BaseFaultType_FaultCause(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_FaultCause *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsrfbf__BaseFaultType_FaultCause(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsrfbf__BaseFaultType_FaultCause(struct soap *soap, _wsrfbf__BaseFaultType_FaultCause *p) -{ - if (::soap_read__wsrfbf__BaseFaultType_FaultCause(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsrfbf__BaseFaultType_Description_DEFINED -#define SOAP_TYPE__wsrfbf__BaseFaultType_Description_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsrfbf__BaseFaultType_Description(struct soap*, const char*, int, const _wsrfbf__BaseFaultType_Description *, const char*); -SOAP_FMAC3 _wsrfbf__BaseFaultType_Description * SOAP_FMAC4 soap_in__wsrfbf__BaseFaultType_Description(struct soap*, const char*, _wsrfbf__BaseFaultType_Description *, const char*); -SOAP_FMAC1 _wsrfbf__BaseFaultType_Description * SOAP_FMAC2 soap_instantiate__wsrfbf__BaseFaultType_Description(struct soap*, int, const char*, const char*, size_t*); - -inline _wsrfbf__BaseFaultType_Description * soap_new__wsrfbf__BaseFaultType_Description(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsrfbf__BaseFaultType_Description(soap, n, NULL, NULL, NULL); -} - -inline _wsrfbf__BaseFaultType_Description * soap_new_req__wsrfbf__BaseFaultType_Description( - struct soap *soap, - const std::string& __item) -{ - _wsrfbf__BaseFaultType_Description *_p = ::soap_new__wsrfbf__BaseFaultType_Description(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsrfbf__BaseFaultType_Description::__item = __item; - } - return _p; -} - -inline _wsrfbf__BaseFaultType_Description * soap_new_set__wsrfbf__BaseFaultType_Description( - struct soap *soap, - const std::string& __item, - std::string *xml__lang) -{ - _wsrfbf__BaseFaultType_Description *_p = ::soap_new__wsrfbf__BaseFaultType_Description(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsrfbf__BaseFaultType_Description::__item = __item; - _p->_wsrfbf__BaseFaultType_Description::xml__lang = xml__lang; - } - return _p; -} - -inline int soap_write__wsrfbf__BaseFaultType_Description(struct soap *soap, _wsrfbf__BaseFaultType_Description const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsrfbf:BaseFaultType-Description", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_Description ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsrfbf__BaseFaultType_Description(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_Description 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, "wsrfbf:BaseFaultType-Description", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_Description ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsrfbf__BaseFaultType_Description(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_Description 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, "wsrfbf:BaseFaultType-Description", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_Description ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsrfbf__BaseFaultType_Description(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_Description 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, "wsrfbf:BaseFaultType-Description", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_Description ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsrfbf__BaseFaultType_Description * SOAP_FMAC4 soap_get__wsrfbf__BaseFaultType_Description(struct soap*, _wsrfbf__BaseFaultType_Description *, const char*, const char*); - -inline int soap_read__wsrfbf__BaseFaultType_Description(struct soap *soap, _wsrfbf__BaseFaultType_Description *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsrfbf__BaseFaultType_Description(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsrfbf__BaseFaultType_Description(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_Description *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsrfbf__BaseFaultType_Description(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsrfbf__BaseFaultType_Description(struct soap *soap, _wsrfbf__BaseFaultType_Description *p) -{ - if (::soap_read__wsrfbf__BaseFaultType_Description(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode_DEFINED -#define SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsrfbf__BaseFaultType_ErrorCode(struct soap*, const char*, int, const _wsrfbf__BaseFaultType_ErrorCode *, const char*); -SOAP_FMAC3 _wsrfbf__BaseFaultType_ErrorCode * SOAP_FMAC4 soap_in__wsrfbf__BaseFaultType_ErrorCode(struct soap*, const char*, _wsrfbf__BaseFaultType_ErrorCode *, const char*); -SOAP_FMAC1 _wsrfbf__BaseFaultType_ErrorCode * SOAP_FMAC2 soap_instantiate__wsrfbf__BaseFaultType_ErrorCode(struct soap*, int, const char*, const char*, size_t*); - -inline _wsrfbf__BaseFaultType_ErrorCode * soap_new__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsrfbf__BaseFaultType_ErrorCode(soap, n, NULL, NULL, NULL); -} - -inline _wsrfbf__BaseFaultType_ErrorCode * soap_new_req__wsrfbf__BaseFaultType_ErrorCode( - struct soap *soap, - const std::string& dialect) -{ - _wsrfbf__BaseFaultType_ErrorCode *_p = ::soap_new__wsrfbf__BaseFaultType_ErrorCode(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsrfbf__BaseFaultType_ErrorCode::dialect = dialect; - } - return _p; -} - -inline _wsrfbf__BaseFaultType_ErrorCode * soap_new_set__wsrfbf__BaseFaultType_ErrorCode( - struct soap *soap, - const std::string& dialect, - const struct soap_dom_element& __mixed) -{ - _wsrfbf__BaseFaultType_ErrorCode *_p = ::soap_new__wsrfbf__BaseFaultType_ErrorCode(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsrfbf__BaseFaultType_ErrorCode::dialect = dialect; - _p->_wsrfbf__BaseFaultType_ErrorCode::__mixed = __mixed; - } - return _p; -} - -inline int soap_write__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, _wsrfbf__BaseFaultType_ErrorCode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsrfbf:BaseFaultType-ErrorCode", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_ErrorCode 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, "wsrfbf:BaseFaultType-ErrorCode", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_ErrorCode 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, "wsrfbf:BaseFaultType-ErrorCode", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_ErrorCode 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, "wsrfbf:BaseFaultType-ErrorCode", p->soap_type() == SOAP_TYPE__wsrfbf__BaseFaultType_ErrorCode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsrfbf__BaseFaultType_ErrorCode * SOAP_FMAC4 soap_get__wsrfbf__BaseFaultType_ErrorCode(struct soap*, _wsrfbf__BaseFaultType_ErrorCode *, const char*, const char*); - -inline int soap_read__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, _wsrfbf__BaseFaultType_ErrorCode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsrfbf__BaseFaultType_ErrorCode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, const char *URL, _wsrfbf__BaseFaultType_ErrorCode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsrfbf__BaseFaultType_ErrorCode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsrfbf__BaseFaultType_ErrorCode(struct soap *soap, _wsrfbf__BaseFaultType_ErrorCode *p) -{ - if (::soap_read__wsrfbf__BaseFaultType_ErrorCode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy_DEFINED -#define SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Subscribe_SubscriptionPolicy(struct soap*, const char*, int, const _wsnt__Subscribe_SubscriptionPolicy *, const char*); -SOAP_FMAC3 _wsnt__Subscribe_SubscriptionPolicy * SOAP_FMAC4 soap_in__wsnt__Subscribe_SubscriptionPolicy(struct soap*, const char*, _wsnt__Subscribe_SubscriptionPolicy *, const char*); -SOAP_FMAC1 _wsnt__Subscribe_SubscriptionPolicy * SOAP_FMAC2 soap_instantiate__wsnt__Subscribe_SubscriptionPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__Subscribe_SubscriptionPolicy * soap_new__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__Subscribe_SubscriptionPolicy(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__Subscribe_SubscriptionPolicy * soap_new_req__wsnt__Subscribe_SubscriptionPolicy( - struct soap *soap) -{ - _wsnt__Subscribe_SubscriptionPolicy *_p = ::soap_new__wsnt__Subscribe_SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__Subscribe_SubscriptionPolicy * soap_new_set__wsnt__Subscribe_SubscriptionPolicy( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__Subscribe_SubscriptionPolicy *_p = ::soap_new__wsnt__Subscribe_SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Subscribe_SubscriptionPolicy::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, _wsnt__Subscribe_SubscriptionPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:Subscribe-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, const char *URL, _wsnt__Subscribe_SubscriptionPolicy 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, "wsnt:Subscribe-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, const char *URL, _wsnt__Subscribe_SubscriptionPolicy 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, "wsnt:Subscribe-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, const char *URL, _wsnt__Subscribe_SubscriptionPolicy 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, "wsnt:Subscribe-SubscriptionPolicy", p->soap_type() == SOAP_TYPE__wsnt__Subscribe_SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__Subscribe_SubscriptionPolicy * SOAP_FMAC4 soap_get__wsnt__Subscribe_SubscriptionPolicy(struct soap*, _wsnt__Subscribe_SubscriptionPolicy *, const char*, const char*); - -inline int soap_read__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, _wsnt__Subscribe_SubscriptionPolicy *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__Subscribe_SubscriptionPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, const char *URL, _wsnt__Subscribe_SubscriptionPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__Subscribe_SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__Subscribe_SubscriptionPolicy(struct soap *soap, _wsnt__Subscribe_SubscriptionPolicy *p) -{ - if (::soap_read__wsnt__Subscribe_SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__NotificationMessageHolderType_Message_DEFINED -#define SOAP_TYPE__wsnt__NotificationMessageHolderType_Message_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__NotificationMessageHolderType_Message(struct soap*, const char*, int, const _wsnt__NotificationMessageHolderType_Message *, const char*); -SOAP_FMAC3 _wsnt__NotificationMessageHolderType_Message * SOAP_FMAC4 soap_in__wsnt__NotificationMessageHolderType_Message(struct soap*, const char*, _wsnt__NotificationMessageHolderType_Message *, const char*); -SOAP_FMAC1 _wsnt__NotificationMessageHolderType_Message * SOAP_FMAC2 soap_instantiate__wsnt__NotificationMessageHolderType_Message(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__NotificationMessageHolderType_Message * soap_new__wsnt__NotificationMessageHolderType_Message(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__NotificationMessageHolderType_Message(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__NotificationMessageHolderType_Message * soap_new_req__wsnt__NotificationMessageHolderType_Message( - struct soap *soap) -{ - _wsnt__NotificationMessageHolderType_Message *_p = ::soap_new__wsnt__NotificationMessageHolderType_Message(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__NotificationMessageHolderType_Message * soap_new_set__wsnt__NotificationMessageHolderType_Message( - struct soap *soap, - const struct soap_dom_element& __any) -{ - _wsnt__NotificationMessageHolderType_Message *_p = ::soap_new__wsnt__NotificationMessageHolderType_Message(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__NotificationMessageHolderType_Message::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__NotificationMessageHolderType_Message(struct soap *soap, _wsnt__NotificationMessageHolderType_Message const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:NotificationMessageHolderType-Message", p->soap_type() == SOAP_TYPE__wsnt__NotificationMessageHolderType_Message ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__NotificationMessageHolderType_Message(struct soap *soap, const char *URL, _wsnt__NotificationMessageHolderType_Message 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, "wsnt:NotificationMessageHolderType-Message", p->soap_type() == SOAP_TYPE__wsnt__NotificationMessageHolderType_Message ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__NotificationMessageHolderType_Message(struct soap *soap, const char *URL, _wsnt__NotificationMessageHolderType_Message 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, "wsnt:NotificationMessageHolderType-Message", p->soap_type() == SOAP_TYPE__wsnt__NotificationMessageHolderType_Message ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__NotificationMessageHolderType_Message(struct soap *soap, const char *URL, _wsnt__NotificationMessageHolderType_Message 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, "wsnt:NotificationMessageHolderType-Message", p->soap_type() == SOAP_TYPE__wsnt__NotificationMessageHolderType_Message ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__NotificationMessageHolderType_Message * SOAP_FMAC4 soap_get__wsnt__NotificationMessageHolderType_Message(struct soap*, _wsnt__NotificationMessageHolderType_Message *, const char*, const char*); - -inline int soap_read__wsnt__NotificationMessageHolderType_Message(struct soap *soap, _wsnt__NotificationMessageHolderType_Message *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__NotificationMessageHolderType_Message(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__NotificationMessageHolderType_Message(struct soap *soap, const char *URL, _wsnt__NotificationMessageHolderType_Message *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__NotificationMessageHolderType_Message(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__NotificationMessageHolderType_Message(struct soap *soap, _wsnt__NotificationMessageHolderType_Message *p) -{ - if (::soap_read__wsnt__NotificationMessageHolderType_Message(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobReference___DEFINED -#define SOAP_TYPE_tt__RecordingJobReference___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobReference__(struct soap*, const char*, int, const tt__RecordingJobReference__ *, const char*); -SOAP_FMAC3 tt__RecordingJobReference__ * SOAP_FMAC4 soap_in_tt__RecordingJobReference__(struct soap*, const char*, tt__RecordingJobReference__ *, const char*); -SOAP_FMAC1 tt__RecordingJobReference__ * SOAP_FMAC2 soap_instantiate_tt__RecordingJobReference__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobReference__ * soap_new_tt__RecordingJobReference__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobReference__(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobReference__ * soap_new_req_tt__RecordingJobReference__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingJobReference__ *_p = ::soap_new_tt__RecordingJobReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobReference__::__item = __item; - } - return _p; -} - -inline tt__RecordingJobReference__ * soap_new_set_tt__RecordingJobReference__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingJobReference__ *_p = ::soap_new_tt__RecordingJobReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobReference__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RecordingJobReference__(struct soap *soap, tt__RecordingJobReference__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobReference", p->soap_type() == SOAP_TYPE_tt__RecordingJobReference__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobReference__(struct soap *soap, const char *URL, tt__RecordingJobReference__ 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, "tt:RecordingJobReference", p->soap_type() == SOAP_TYPE_tt__RecordingJobReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobReference__(struct soap *soap, const char *URL, tt__RecordingJobReference__ 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, "tt:RecordingJobReference", p->soap_type() == SOAP_TYPE_tt__RecordingJobReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobReference__(struct soap *soap, const char *URL, tt__RecordingJobReference__ 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, "tt:RecordingJobReference", p->soap_type() == SOAP_TYPE_tt__RecordingJobReference__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobReference__ * SOAP_FMAC4 soap_get_tt__RecordingJobReference__(struct soap*, tt__RecordingJobReference__ *, const char*, const char*); - -inline int soap_read_tt__RecordingJobReference__(struct soap *soap, tt__RecordingJobReference__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobReference__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobReference__(struct soap *soap, const char *URL, tt__RecordingJobReference__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobReference__(struct soap *soap, tt__RecordingJobReference__ *p) -{ - if (::soap_read_tt__RecordingJobReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__RecordingJobReference is a typedef synonym of tt__ReferenceToken */ - -#ifndef SOAP_TYPE_tt__RecordingJobReference_DEFINED -#define SOAP_TYPE_tt__RecordingJobReference_DEFINED - -#define soap_default_tt__RecordingJobReference soap_default_tt__ReferenceToken - - -#define soap_serialize_tt__RecordingJobReference soap_serialize_tt__ReferenceToken - - -#define soap_tt__RecordingJobReference2s(soap, a) ((a).c_str()) - -#define soap_out_tt__RecordingJobReference soap_out_tt__ReferenceToken - - -#define soap_s2tt__RecordingJobReference(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, NULL) - -#define soap_in_tt__RecordingJobReference soap_in_tt__ReferenceToken - - -#define soap_instantiate_tt__RecordingJobReference soap_instantiate_tt__ReferenceToken - - -#define soap_new_tt__RecordingJobReference soap_new_tt__ReferenceToken - - -#define soap_put_tt__RecordingJobReference soap_put_tt__ReferenceToken - - -#define soap_write_tt__RecordingJobReference soap_write_tt__ReferenceToken - - -#define soap_PUT_tt__RecordingJobReference soap_PUT_tt__ReferenceToken - - -#define soap_PATCH_tt__RecordingJobReference soap_PATCH_tt__ReferenceToken - - -#define soap_POST_send_tt__RecordingJobReference soap_POST_send_tt__ReferenceToken - - -#define soap_get_tt__RecordingJobReference soap_get_tt__ReferenceToken - - -#define soap_read_tt__RecordingJobReference soap_read_tt__ReferenceToken - - -#define soap_GET_tt__RecordingJobReference soap_GET_tt__ReferenceToken - - -#define soap_POST_recv_tt__RecordingJobReference soap_POST_recv_tt__ReferenceToken - -#endif - -#ifndef SOAP_TYPE_tt__JobToken___DEFINED -#define SOAP_TYPE_tt__JobToken___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JobToken__(struct soap*, const char*, int, const tt__JobToken__ *, const char*); -SOAP_FMAC3 tt__JobToken__ * SOAP_FMAC4 soap_in_tt__JobToken__(struct soap*, const char*, tt__JobToken__ *, const char*); -SOAP_FMAC1 tt__JobToken__ * SOAP_FMAC2 soap_instantiate_tt__JobToken__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__JobToken__ * soap_new_tt__JobToken__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__JobToken__(soap, n, NULL, NULL, NULL); -} - -inline tt__JobToken__ * soap_new_req_tt__JobToken__( - struct soap *soap, - const std::string& __item) -{ - tt__JobToken__ *_p = ::soap_new_tt__JobToken__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JobToken__::__item = __item; - } - return _p; -} - -inline tt__JobToken__ * soap_new_set_tt__JobToken__( - struct soap *soap, - const std::string& __item) -{ - tt__JobToken__ *_p = ::soap_new_tt__JobToken__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JobToken__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__JobToken__(struct soap *soap, tt__JobToken__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:JobToken", p->soap_type() == SOAP_TYPE_tt__JobToken__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__JobToken__(struct soap *soap, const char *URL, tt__JobToken__ 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, "tt:JobToken", p->soap_type() == SOAP_TYPE_tt__JobToken__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__JobToken__(struct soap *soap, const char *URL, tt__JobToken__ 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, "tt:JobToken", p->soap_type() == SOAP_TYPE_tt__JobToken__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__JobToken__(struct soap *soap, const char *URL, tt__JobToken__ 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, "tt:JobToken", p->soap_type() == SOAP_TYPE_tt__JobToken__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__JobToken__ * SOAP_FMAC4 soap_get_tt__JobToken__(struct soap*, tt__JobToken__ *, const char*, const char*); - -inline int soap_read_tt__JobToken__(struct soap *soap, tt__JobToken__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__JobToken__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__JobToken__(struct soap *soap, const char *URL, tt__JobToken__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__JobToken__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__JobToken__(struct soap *soap, tt__JobToken__ *p) -{ - if (::soap_read_tt__JobToken__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__JobToken is a typedef synonym of tt__ReferenceToken */ - -#ifndef SOAP_TYPE_tt__JobToken_DEFINED -#define SOAP_TYPE_tt__JobToken_DEFINED - -#define soap_default_tt__JobToken soap_default_tt__ReferenceToken - - -#define soap_serialize_tt__JobToken soap_serialize_tt__ReferenceToken - - -#define soap_tt__JobToken2s(soap, a) ((a).c_str()) - -#define soap_out_tt__JobToken soap_out_tt__ReferenceToken - - -#define soap_s2tt__JobToken(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, NULL) - -#define soap_in_tt__JobToken soap_in_tt__ReferenceToken - - -#define soap_instantiate_tt__JobToken soap_instantiate_tt__ReferenceToken - - -#define soap_new_tt__JobToken soap_new_tt__ReferenceToken - - -#define soap_put_tt__JobToken soap_put_tt__ReferenceToken - - -#define soap_write_tt__JobToken soap_write_tt__ReferenceToken - - -#define soap_PUT_tt__JobToken soap_PUT_tt__ReferenceToken - - -#define soap_PATCH_tt__JobToken soap_PATCH_tt__ReferenceToken - - -#define soap_POST_send_tt__JobToken soap_POST_send_tt__ReferenceToken - - -#define soap_get_tt__JobToken soap_get_tt__ReferenceToken - - -#define soap_read_tt__JobToken soap_read_tt__ReferenceToken - - -#define soap_GET_tt__JobToken soap_GET_tt__ReferenceToken - - -#define soap_POST_recv_tt__JobToken soap_POST_recv_tt__ReferenceToken - -#endif - -#ifndef SOAP_TYPE_tt__TrackReference___DEFINED -#define SOAP_TYPE_tt__TrackReference___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackReference__(struct soap*, const char*, int, const tt__TrackReference__ *, const char*); -SOAP_FMAC3 tt__TrackReference__ * SOAP_FMAC4 soap_in_tt__TrackReference__(struct soap*, const char*, tt__TrackReference__ *, const char*); -SOAP_FMAC1 tt__TrackReference__ * SOAP_FMAC2 soap_instantiate_tt__TrackReference__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TrackReference__ * soap_new_tt__TrackReference__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TrackReference__(soap, n, NULL, NULL, NULL); -} - -inline tt__TrackReference__ * soap_new_req_tt__TrackReference__( - struct soap *soap, - const std::string& __item) -{ - tt__TrackReference__ *_p = ::soap_new_tt__TrackReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackReference__::__item = __item; - } - return _p; -} - -inline tt__TrackReference__ * soap_new_set_tt__TrackReference__( - struct soap *soap, - const std::string& __item) -{ - tt__TrackReference__ *_p = ::soap_new_tt__TrackReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackReference__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__TrackReference__(struct soap *soap, tt__TrackReference__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TrackReference", p->soap_type() == SOAP_TYPE_tt__TrackReference__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TrackReference__(struct soap *soap, const char *URL, tt__TrackReference__ 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, "tt:TrackReference", p->soap_type() == SOAP_TYPE_tt__TrackReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TrackReference__(struct soap *soap, const char *URL, tt__TrackReference__ 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, "tt:TrackReference", p->soap_type() == SOAP_TYPE_tt__TrackReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TrackReference__(struct soap *soap, const char *URL, tt__TrackReference__ 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, "tt:TrackReference", p->soap_type() == SOAP_TYPE_tt__TrackReference__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TrackReference__ * SOAP_FMAC4 soap_get_tt__TrackReference__(struct soap*, tt__TrackReference__ *, const char*, const char*); - -inline int soap_read_tt__TrackReference__(struct soap *soap, tt__TrackReference__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TrackReference__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TrackReference__(struct soap *soap, const char *URL, tt__TrackReference__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TrackReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TrackReference__(struct soap *soap, tt__TrackReference__ *p) -{ - if (::soap_read_tt__TrackReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__TrackReference is a typedef synonym of tt__ReferenceToken */ - -#ifndef SOAP_TYPE_tt__TrackReference_DEFINED -#define SOAP_TYPE_tt__TrackReference_DEFINED - -#define soap_default_tt__TrackReference soap_default_tt__ReferenceToken - - -#define soap_serialize_tt__TrackReference soap_serialize_tt__ReferenceToken - - -#define soap_tt__TrackReference2s(soap, a) ((a).c_str()) - -#define soap_out_tt__TrackReference soap_out_tt__ReferenceToken - - -#define soap_s2tt__TrackReference(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, NULL) - -#define soap_in_tt__TrackReference soap_in_tt__ReferenceToken - - -#define soap_instantiate_tt__TrackReference soap_instantiate_tt__ReferenceToken - - -#define soap_new_tt__TrackReference soap_new_tt__ReferenceToken - - -#define soap_put_tt__TrackReference soap_put_tt__ReferenceToken - - -#define soap_write_tt__TrackReference soap_write_tt__ReferenceToken - - -#define soap_PUT_tt__TrackReference soap_PUT_tt__ReferenceToken - - -#define soap_PATCH_tt__TrackReference soap_PATCH_tt__ReferenceToken - - -#define soap_POST_send_tt__TrackReference soap_POST_send_tt__ReferenceToken - - -#define soap_get_tt__TrackReference soap_get_tt__ReferenceToken - - -#define soap_read_tt__TrackReference soap_read_tt__ReferenceToken - - -#define soap_GET_tt__TrackReference soap_GET_tt__ReferenceToken - - -#define soap_POST_recv_tt__TrackReference soap_POST_recv_tt__ReferenceToken - -#endif - -#ifndef SOAP_TYPE_tt__RecordingReference___DEFINED -#define SOAP_TYPE_tt__RecordingReference___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingReference__(struct soap*, const char*, int, const tt__RecordingReference__ *, const char*); -SOAP_FMAC3 tt__RecordingReference__ * SOAP_FMAC4 soap_in_tt__RecordingReference__(struct soap*, const char*, tt__RecordingReference__ *, const char*); -SOAP_FMAC1 tt__RecordingReference__ * SOAP_FMAC2 soap_instantiate_tt__RecordingReference__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingReference__ * soap_new_tt__RecordingReference__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingReference__(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingReference__ * soap_new_req_tt__RecordingReference__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingReference__ *_p = ::soap_new_tt__RecordingReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingReference__::__item = __item; - } - return _p; -} - -inline tt__RecordingReference__ * soap_new_set_tt__RecordingReference__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingReference__ *_p = ::soap_new_tt__RecordingReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingReference__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RecordingReference__(struct soap *soap, tt__RecordingReference__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingReference", p->soap_type() == SOAP_TYPE_tt__RecordingReference__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingReference__(struct soap *soap, const char *URL, tt__RecordingReference__ 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, "tt:RecordingReference", p->soap_type() == SOAP_TYPE_tt__RecordingReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingReference__(struct soap *soap, const char *URL, tt__RecordingReference__ 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, "tt:RecordingReference", p->soap_type() == SOAP_TYPE_tt__RecordingReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingReference__(struct soap *soap, const char *URL, tt__RecordingReference__ 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, "tt:RecordingReference", p->soap_type() == SOAP_TYPE_tt__RecordingReference__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingReference__ * SOAP_FMAC4 soap_get_tt__RecordingReference__(struct soap*, tt__RecordingReference__ *, const char*, const char*); - -inline int soap_read_tt__RecordingReference__(struct soap *soap, tt__RecordingReference__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingReference__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingReference__(struct soap *soap, const char *URL, tt__RecordingReference__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingReference__(struct soap *soap, tt__RecordingReference__ *p) -{ - if (::soap_read_tt__RecordingReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__RecordingReference is a typedef synonym of tt__ReferenceToken */ - -#ifndef SOAP_TYPE_tt__RecordingReference_DEFINED -#define SOAP_TYPE_tt__RecordingReference_DEFINED - -#define soap_default_tt__RecordingReference soap_default_tt__ReferenceToken - - -#define soap_serialize_tt__RecordingReference soap_serialize_tt__ReferenceToken - - -#define soap_tt__RecordingReference2s(soap, a) ((a).c_str()) - -#define soap_out_tt__RecordingReference soap_out_tt__ReferenceToken - - -#define soap_s2tt__RecordingReference(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, NULL) - -#define soap_in_tt__RecordingReference soap_in_tt__ReferenceToken - - -#define soap_instantiate_tt__RecordingReference soap_instantiate_tt__ReferenceToken - - -#define soap_new_tt__RecordingReference soap_new_tt__ReferenceToken - - -#define soap_put_tt__RecordingReference soap_put_tt__ReferenceToken - - -#define soap_write_tt__RecordingReference soap_write_tt__ReferenceToken - - -#define soap_PUT_tt__RecordingReference soap_PUT_tt__ReferenceToken - - -#define soap_PATCH_tt__RecordingReference soap_PATCH_tt__ReferenceToken - - -#define soap_POST_send_tt__RecordingReference soap_POST_send_tt__ReferenceToken - - -#define soap_get_tt__RecordingReference soap_get_tt__ReferenceToken - - -#define soap_read_tt__RecordingReference soap_read_tt__ReferenceToken - - -#define soap_GET_tt__RecordingReference soap_GET_tt__ReferenceToken - - -#define soap_POST_recv_tt__RecordingReference soap_POST_recv_tt__ReferenceToken - -#endif - -#ifndef SOAP_TYPE_tt__ReceiverReference___DEFINED -#define SOAP_TYPE_tt__ReceiverReference___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverReference__(struct soap*, const char*, int, const tt__ReceiverReference__ *, const char*); -SOAP_FMAC3 tt__ReceiverReference__ * SOAP_FMAC4 soap_in_tt__ReceiverReference__(struct soap*, const char*, tt__ReceiverReference__ *, const char*); -SOAP_FMAC1 tt__ReceiverReference__ * SOAP_FMAC2 soap_instantiate_tt__ReceiverReference__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReceiverReference__ * soap_new_tt__ReceiverReference__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReceiverReference__(soap, n, NULL, NULL, NULL); -} - -inline tt__ReceiverReference__ * soap_new_req_tt__ReceiverReference__( - struct soap *soap, - const std::string& __item) -{ - tt__ReceiverReference__ *_p = ::soap_new_tt__ReceiverReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverReference__::__item = __item; - } - return _p; -} - -inline tt__ReceiverReference__ * soap_new_set_tt__ReceiverReference__( - struct soap *soap, - const std::string& __item) -{ - tt__ReceiverReference__ *_p = ::soap_new_tt__ReceiverReference__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverReference__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ReceiverReference__(struct soap *soap, tt__ReceiverReference__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReceiverReference", p->soap_type() == SOAP_TYPE_tt__ReceiverReference__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverReference__(struct soap *soap, const char *URL, tt__ReceiverReference__ 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, "tt:ReceiverReference", p->soap_type() == SOAP_TYPE_tt__ReceiverReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverReference__(struct soap *soap, const char *URL, tt__ReceiverReference__ 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, "tt:ReceiverReference", p->soap_type() == SOAP_TYPE_tt__ReceiverReference__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverReference__(struct soap *soap, const char *URL, tt__ReceiverReference__ 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, "tt:ReceiverReference", p->soap_type() == SOAP_TYPE_tt__ReceiverReference__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReceiverReference__ * SOAP_FMAC4 soap_get_tt__ReceiverReference__(struct soap*, tt__ReceiverReference__ *, const char*, const char*); - -inline int soap_read_tt__ReceiverReference__(struct soap *soap, tt__ReceiverReference__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverReference__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverReference__(struct soap *soap, const char *URL, tt__ReceiverReference__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverReference__(struct soap *soap, tt__ReceiverReference__ *p) -{ - if (::soap_read_tt__ReceiverReference__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__ReceiverReference is a typedef synonym of tt__ReferenceToken */ - -#ifndef SOAP_TYPE_tt__ReceiverReference_DEFINED -#define SOAP_TYPE_tt__ReceiverReference_DEFINED - -#define soap_default_tt__ReceiverReference soap_default_tt__ReferenceToken - - -#define soap_serialize_tt__ReceiverReference soap_serialize_tt__ReferenceToken - - -#define soap_tt__ReceiverReference2s(soap, a) ((a).c_str()) - -#define soap_out_tt__ReceiverReference soap_out_tt__ReferenceToken - - -#define soap_s2tt__ReceiverReference(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, NULL) - -#define soap_in_tt__ReceiverReference soap_in_tt__ReferenceToken - - -#define soap_instantiate_tt__ReceiverReference soap_instantiate_tt__ReferenceToken - - -#define soap_new_tt__ReceiverReference soap_new_tt__ReferenceToken - - -#define soap_put_tt__ReceiverReference soap_put_tt__ReferenceToken - - -#define soap_write_tt__ReceiverReference soap_write_tt__ReferenceToken - - -#define soap_PUT_tt__ReceiverReference soap_PUT_tt__ReferenceToken - - -#define soap_PATCH_tt__ReceiverReference soap_PATCH_tt__ReferenceToken - - -#define soap_POST_send_tt__ReceiverReference soap_POST_send_tt__ReferenceToken - - -#define soap_get_tt__ReceiverReference soap_get_tt__ReferenceToken - - -#define soap_read_tt__ReceiverReference soap_read_tt__ReferenceToken - - -#define soap_GET_tt__ReceiverReference soap_GET_tt__ReferenceToken - - -#define soap_POST_recv_tt__ReceiverReference soap_POST_recv_tt__ReferenceToken - -#endif - -#ifndef SOAP_TYPE_wstop__SimpleTopicExpression___DEFINED -#define SOAP_TYPE_wstop__SimpleTopicExpression___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__SimpleTopicExpression__(struct soap*, const char*, int, const wstop__SimpleTopicExpression__ *, const char*); -SOAP_FMAC3 wstop__SimpleTopicExpression__ * SOAP_FMAC4 soap_in_wstop__SimpleTopicExpression__(struct soap*, const char*, wstop__SimpleTopicExpression__ *, const char*); -SOAP_FMAC1 wstop__SimpleTopicExpression__ * SOAP_FMAC2 soap_instantiate_wstop__SimpleTopicExpression__(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__SimpleTopicExpression__ * soap_new_wstop__SimpleTopicExpression__(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__SimpleTopicExpression__(soap, n, NULL, NULL, NULL); -} - -inline wstop__SimpleTopicExpression__ * soap_new_req_wstop__SimpleTopicExpression__( - struct soap *soap, - const std::string& __item) -{ - wstop__SimpleTopicExpression__ *_p = ::soap_new_wstop__SimpleTopicExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__SimpleTopicExpression__::__item = __item; - } - return _p; -} - -inline wstop__SimpleTopicExpression__ * soap_new_set_wstop__SimpleTopicExpression__( - struct soap *soap, - const std::string& __item) -{ - wstop__SimpleTopicExpression__ *_p = ::soap_new_wstop__SimpleTopicExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__SimpleTopicExpression__::__item = __item; - } - return _p; -} - -inline int soap_write_wstop__SimpleTopicExpression__(struct soap *soap, wstop__SimpleTopicExpression__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:SimpleTopicExpression", p->soap_type() == SOAP_TYPE_wstop__SimpleTopicExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__SimpleTopicExpression__(struct soap *soap, const char *URL, wstop__SimpleTopicExpression__ 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, "wstop:SimpleTopicExpression", p->soap_type() == SOAP_TYPE_wstop__SimpleTopicExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__SimpleTopicExpression__(struct soap *soap, const char *URL, wstop__SimpleTopicExpression__ 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, "wstop:SimpleTopicExpression", p->soap_type() == SOAP_TYPE_wstop__SimpleTopicExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__SimpleTopicExpression__(struct soap *soap, const char *URL, wstop__SimpleTopicExpression__ 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, "wstop:SimpleTopicExpression", p->soap_type() == SOAP_TYPE_wstop__SimpleTopicExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__SimpleTopicExpression__ * SOAP_FMAC4 soap_get_wstop__SimpleTopicExpression__(struct soap*, wstop__SimpleTopicExpression__ *, const char*, const char*); - -inline int soap_read_wstop__SimpleTopicExpression__(struct soap *soap, wstop__SimpleTopicExpression__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__SimpleTopicExpression__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__SimpleTopicExpression__(struct soap *soap, const char *URL, wstop__SimpleTopicExpression__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__SimpleTopicExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__SimpleTopicExpression__(struct soap *soap, wstop__SimpleTopicExpression__ *p) -{ - if (::soap_read_wstop__SimpleTopicExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* wstop__SimpleTopicExpression is a typedef synonym of xsd__QName */ - -#ifndef SOAP_TYPE_wstop__SimpleTopicExpression_DEFINED -#define SOAP_TYPE_wstop__SimpleTopicExpression_DEFINED - -#define soap_default_wstop__SimpleTopicExpression soap_default_xsd__QName - - -#define soap_serialize_wstop__SimpleTopicExpression soap_serialize_xsd__QName - - -#define soap_wstop__SimpleTopicExpression2s(soap, a) soap_QName2s((soap), (a).c_str()) - -#define soap_out_wstop__SimpleTopicExpression soap_out_xsd__QName - - -#define soap_s2wstop__SimpleTopicExpression(soap, s, a) soap_s2stdQName((soap), (s), (a), 0, -1, NULL) - -#define soap_in_wstop__SimpleTopicExpression soap_in_xsd__QName - - -#define soap_instantiate_wstop__SimpleTopicExpression soap_instantiate_xsd__QName - - -#define soap_new_wstop__SimpleTopicExpression soap_new_xsd__QName - - -#define soap_put_wstop__SimpleTopicExpression soap_put_xsd__QName - - -#define soap_write_wstop__SimpleTopicExpression soap_write_xsd__QName - - -#define soap_PUT_wstop__SimpleTopicExpression soap_PUT_xsd__QName - - -#define soap_PATCH_wstop__SimpleTopicExpression soap_PATCH_xsd__QName - - -#define soap_POST_send_wstop__SimpleTopicExpression soap_POST_send_xsd__QName - - -#define soap_get_wstop__SimpleTopicExpression soap_get_xsd__QName - - -#define soap_read_wstop__SimpleTopicExpression soap_read_xsd__QName - - -#define soap_GET_wstop__SimpleTopicExpression soap_GET_xsd__QName - - -#define soap_POST_recv_wstop__SimpleTopicExpression soap_POST_recv_xsd__QName - -#endif - -#ifndef SOAP_TYPE_wstop__ConcreteTopicExpression___DEFINED -#define SOAP_TYPE_wstop__ConcreteTopicExpression___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__ConcreteTopicExpression__(struct soap*, const char*, int, const wstop__ConcreteTopicExpression__ *, const char*); -SOAP_FMAC3 wstop__ConcreteTopicExpression__ * SOAP_FMAC4 soap_in_wstop__ConcreteTopicExpression__(struct soap*, const char*, wstop__ConcreteTopicExpression__ *, const char*); -SOAP_FMAC1 wstop__ConcreteTopicExpression__ * SOAP_FMAC2 soap_instantiate_wstop__ConcreteTopicExpression__(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__ConcreteTopicExpression__ * soap_new_wstop__ConcreteTopicExpression__(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__ConcreteTopicExpression__(soap, n, NULL, NULL, NULL); -} - -inline wstop__ConcreteTopicExpression__ * soap_new_req_wstop__ConcreteTopicExpression__( - struct soap *soap, - const std::string& __item) -{ - wstop__ConcreteTopicExpression__ *_p = ::soap_new_wstop__ConcreteTopicExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__ConcreteTopicExpression__::__item = __item; - } - return _p; -} - -inline wstop__ConcreteTopicExpression__ * soap_new_set_wstop__ConcreteTopicExpression__( - struct soap *soap, - const std::string& __item) -{ - wstop__ConcreteTopicExpression__ *_p = ::soap_new_wstop__ConcreteTopicExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__ConcreteTopicExpression__::__item = __item; - } - return _p; -} - -inline int soap_write_wstop__ConcreteTopicExpression__(struct soap *soap, wstop__ConcreteTopicExpression__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:ConcreteTopicExpression", p->soap_type() == SOAP_TYPE_wstop__ConcreteTopicExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__ConcreteTopicExpression__(struct soap *soap, const char *URL, wstop__ConcreteTopicExpression__ 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, "wstop:ConcreteTopicExpression", p->soap_type() == SOAP_TYPE_wstop__ConcreteTopicExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__ConcreteTopicExpression__(struct soap *soap, const char *URL, wstop__ConcreteTopicExpression__ 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, "wstop:ConcreteTopicExpression", p->soap_type() == SOAP_TYPE_wstop__ConcreteTopicExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__ConcreteTopicExpression__(struct soap *soap, const char *URL, wstop__ConcreteTopicExpression__ 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, "wstop:ConcreteTopicExpression", p->soap_type() == SOAP_TYPE_wstop__ConcreteTopicExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__ConcreteTopicExpression__ * SOAP_FMAC4 soap_get_wstop__ConcreteTopicExpression__(struct soap*, wstop__ConcreteTopicExpression__ *, const char*, const char*); - -inline int soap_read_wstop__ConcreteTopicExpression__(struct soap *soap, wstop__ConcreteTopicExpression__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__ConcreteTopicExpression__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__ConcreteTopicExpression__(struct soap *soap, const char *URL, wstop__ConcreteTopicExpression__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__ConcreteTopicExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__ConcreteTopicExpression__(struct soap *soap, wstop__ConcreteTopicExpression__ *p) -{ - if (::soap_read_wstop__ConcreteTopicExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* wstop__ConcreteTopicExpression is a typedef restriction of xsd__token */ - -#ifndef SOAP_TYPE_wstop__ConcreteTopicExpression_DEFINED -#define SOAP_TYPE_wstop__ConcreteTopicExpression_DEFINED - -#define soap_default_wstop__ConcreteTopicExpression soap_default_xsd__token - - -#define soap_serialize_wstop__ConcreteTopicExpression soap_serialize_xsd__token - - -#define soap_wstop__ConcreteTopicExpression2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__ConcreteTopicExpression(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2wstop__ConcreteTopicExpression(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, "(([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*)(/([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*)*") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_wstop__ConcreteTopicExpression(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_wstop__ConcreteTopicExpression soap_instantiate_xsd__token - - -#define soap_new_wstop__ConcreteTopicExpression soap_new_xsd__token - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wstop__ConcreteTopicExpression(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_wstop__ConcreteTopicExpression(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wstop__ConcreteTopicExpression(soap, p, "wstop:ConcreteTopicExpression", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wstop__ConcreteTopicExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wstop__ConcreteTopicExpression(soap, p, "wstop:ConcreteTopicExpression", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__ConcreteTopicExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wstop__ConcreteTopicExpression(soap, p, "wstop:ConcreteTopicExpression", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__ConcreteTopicExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wstop__ConcreteTopicExpression(soap, p, "wstop:ConcreteTopicExpression", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_wstop__ConcreteTopicExpression(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_wstop__ConcreteTopicExpression(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wstop__ConcreteTopicExpression(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__ConcreteTopicExpression(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__ConcreteTopicExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__ConcreteTopicExpression(struct soap *soap, std::string *p) -{ - if (::soap_read_wstop__ConcreteTopicExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wstop__FullTopicExpression___DEFINED -#define SOAP_TYPE_wstop__FullTopicExpression___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__FullTopicExpression__(struct soap*, const char*, int, const wstop__FullTopicExpression__ *, const char*); -SOAP_FMAC3 wstop__FullTopicExpression__ * SOAP_FMAC4 soap_in_wstop__FullTopicExpression__(struct soap*, const char*, wstop__FullTopicExpression__ *, const char*); -SOAP_FMAC1 wstop__FullTopicExpression__ * SOAP_FMAC2 soap_instantiate_wstop__FullTopicExpression__(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__FullTopicExpression__ * soap_new_wstop__FullTopicExpression__(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__FullTopicExpression__(soap, n, NULL, NULL, NULL); -} - -inline wstop__FullTopicExpression__ * soap_new_req_wstop__FullTopicExpression__( - struct soap *soap, - const std::string& __item) -{ - wstop__FullTopicExpression__ *_p = ::soap_new_wstop__FullTopicExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__FullTopicExpression__::__item = __item; - } - return _p; -} - -inline wstop__FullTopicExpression__ * soap_new_set_wstop__FullTopicExpression__( - struct soap *soap, - const std::string& __item) -{ - wstop__FullTopicExpression__ *_p = ::soap_new_wstop__FullTopicExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__FullTopicExpression__::__item = __item; - } - return _p; -} - -inline int soap_write_wstop__FullTopicExpression__(struct soap *soap, wstop__FullTopicExpression__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:FullTopicExpression", p->soap_type() == SOAP_TYPE_wstop__FullTopicExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__FullTopicExpression__(struct soap *soap, const char *URL, wstop__FullTopicExpression__ 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, "wstop:FullTopicExpression", p->soap_type() == SOAP_TYPE_wstop__FullTopicExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__FullTopicExpression__(struct soap *soap, const char *URL, wstop__FullTopicExpression__ 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, "wstop:FullTopicExpression", p->soap_type() == SOAP_TYPE_wstop__FullTopicExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__FullTopicExpression__(struct soap *soap, const char *URL, wstop__FullTopicExpression__ 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, "wstop:FullTopicExpression", p->soap_type() == SOAP_TYPE_wstop__FullTopicExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__FullTopicExpression__ * SOAP_FMAC4 soap_get_wstop__FullTopicExpression__(struct soap*, wstop__FullTopicExpression__ *, const char*, const char*); - -inline int soap_read_wstop__FullTopicExpression__(struct soap *soap, wstop__FullTopicExpression__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__FullTopicExpression__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__FullTopicExpression__(struct soap *soap, const char *URL, wstop__FullTopicExpression__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__FullTopicExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__FullTopicExpression__(struct soap *soap, wstop__FullTopicExpression__ *p) -{ - if (::soap_read_wstop__FullTopicExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* wstop__FullTopicExpression is a typedef restriction of xsd__token */ - -#ifndef SOAP_TYPE_wstop__FullTopicExpression_DEFINED -#define SOAP_TYPE_wstop__FullTopicExpression_DEFINED - -#define soap_default_wstop__FullTopicExpression soap_default_xsd__token - - -#define soap_serialize_wstop__FullTopicExpression soap_serialize_xsd__token - - -#define soap_wstop__FullTopicExpression2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__FullTopicExpression(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2wstop__FullTopicExpression(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, "([\\i-[:]][\\c-[:]]*:)?(//)?([\\i-[:]][\\c-[:]]*|\\*)((/|//)(([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*|\\*|[.]))*(\\|([\\i-[:]][\\c-[:]]*:)?(//)?([\\i-[:]][\\c-[:]]*|\\*)((/|//)(([\\i-[:]][\\c-[:]]*:)?[\\i-[:]][\\c-[:]]*|\\*|[.]))*)*") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_wstop__FullTopicExpression(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_wstop__FullTopicExpression soap_instantiate_xsd__token - - -#define soap_new_wstop__FullTopicExpression soap_new_xsd__token - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wstop__FullTopicExpression(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_wstop__FullTopicExpression(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wstop__FullTopicExpression(soap, p, "wstop:FullTopicExpression", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wstop__FullTopicExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wstop__FullTopicExpression(soap, p, "wstop:FullTopicExpression", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__FullTopicExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wstop__FullTopicExpression(soap, p, "wstop:FullTopicExpression", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__FullTopicExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wstop__FullTopicExpression(soap, p, "wstop:FullTopicExpression", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_wstop__FullTopicExpression(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_wstop__FullTopicExpression(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wstop__FullTopicExpression(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__FullTopicExpression(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__FullTopicExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__FullTopicExpression(struct soap *soap, std::string *p) -{ - if (::soap_read_wstop__FullTopicExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_timg__ImagingPresetType__DEFINED -#define SOAP_TYPE_timg__ImagingPresetType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__ImagingPresetType_(struct soap*, const char*, int, const timg__ImagingPresetType_ *, const char*); -SOAP_FMAC3 timg__ImagingPresetType_ * SOAP_FMAC4 soap_in_timg__ImagingPresetType_(struct soap*, const char*, timg__ImagingPresetType_ *, const char*); -SOAP_FMAC1 timg__ImagingPresetType_ * SOAP_FMAC2 soap_instantiate_timg__ImagingPresetType_(struct soap*, int, const char*, const char*, size_t*); - -inline timg__ImagingPresetType_ * soap_new_timg__ImagingPresetType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_timg__ImagingPresetType_(soap, n, NULL, NULL, NULL); -} - -inline timg__ImagingPresetType_ * soap_new_req_timg__ImagingPresetType_( - struct soap *soap, - enum timg__ImagingPresetType __item) -{ - timg__ImagingPresetType_ *_p = ::soap_new_timg__ImagingPresetType_(soap); - if (_p) - { _p->soap_default(soap); - _p->timg__ImagingPresetType_::__item = __item; - } - return _p; -} - -inline timg__ImagingPresetType_ * soap_new_set_timg__ImagingPresetType_( - struct soap *soap, - enum timg__ImagingPresetType __item) -{ - timg__ImagingPresetType_ *_p = ::soap_new_timg__ImagingPresetType_(soap); - if (_p) - { _p->soap_default(soap); - _p->timg__ImagingPresetType_::__item = __item; - } - return _p; -} - -inline int soap_write_timg__ImagingPresetType_(struct soap *soap, timg__ImagingPresetType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:ImagingPresetType", p->soap_type() == SOAP_TYPE_timg__ImagingPresetType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_timg__ImagingPresetType_(struct soap *soap, const char *URL, timg__ImagingPresetType_ 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, "timg:ImagingPresetType", p->soap_type() == SOAP_TYPE_timg__ImagingPresetType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_timg__ImagingPresetType_(struct soap *soap, const char *URL, timg__ImagingPresetType_ 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, "timg:ImagingPresetType", p->soap_type() == SOAP_TYPE_timg__ImagingPresetType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_timg__ImagingPresetType_(struct soap *soap, const char *URL, timg__ImagingPresetType_ 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, "timg:ImagingPresetType", p->soap_type() == SOAP_TYPE_timg__ImagingPresetType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 timg__ImagingPresetType_ * SOAP_FMAC4 soap_get_timg__ImagingPresetType_(struct soap*, timg__ImagingPresetType_ *, const char*, const char*); - -inline int soap_read_timg__ImagingPresetType_(struct soap *soap, timg__ImagingPresetType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_timg__ImagingPresetType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_timg__ImagingPresetType_(struct soap *soap, const char *URL, timg__ImagingPresetType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_timg__ImagingPresetType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_timg__ImagingPresetType_(struct soap *soap, timg__ImagingPresetType_ *p) -{ - if (::soap_read_timg__ImagingPresetType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__StorageType__DEFINED -#define SOAP_TYPE_tds__StorageType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageType_(struct soap*, const char*, int, const tds__StorageType_ *, const char*); -SOAP_FMAC3 tds__StorageType_ * SOAP_FMAC4 soap_in_tds__StorageType_(struct soap*, const char*, tds__StorageType_ *, const char*); -SOAP_FMAC1 tds__StorageType_ * SOAP_FMAC2 soap_instantiate_tds__StorageType_(struct soap*, int, const char*, const char*, size_t*); - -inline tds__StorageType_ * soap_new_tds__StorageType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__StorageType_(soap, n, NULL, NULL, NULL); -} - -inline tds__StorageType_ * soap_new_req_tds__StorageType_( - struct soap *soap, - enum tds__StorageType __item) -{ - tds__StorageType_ *_p = ::soap_new_tds__StorageType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__StorageType_::__item = __item; - } - return _p; -} - -inline tds__StorageType_ * soap_new_set_tds__StorageType_( - struct soap *soap, - enum tds__StorageType __item) -{ - tds__StorageType_ *_p = ::soap_new_tds__StorageType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__StorageType_::__item = __item; - } - return _p; -} - -inline int soap_write_tds__StorageType_(struct soap *soap, tds__StorageType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StorageType", p->soap_type() == SOAP_TYPE_tds__StorageType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__StorageType_(struct soap *soap, const char *URL, tds__StorageType_ 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, "tds:StorageType", p->soap_type() == SOAP_TYPE_tds__StorageType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__StorageType_(struct soap *soap, const char *URL, tds__StorageType_ 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, "tds:StorageType", p->soap_type() == SOAP_TYPE_tds__StorageType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__StorageType_(struct soap *soap, const char *URL, tds__StorageType_ 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, "tds:StorageType", p->soap_type() == SOAP_TYPE_tds__StorageType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__StorageType_ * SOAP_FMAC4 soap_get_tds__StorageType_(struct soap*, tds__StorageType_ *, const char*, const char*); - -inline int soap_read_tds__StorageType_(struct soap *soap, tds__StorageType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__StorageType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__StorageType_(struct soap *soap, const char *URL, tds__StorageType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__StorageType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__StorageType_(struct soap *soap, tds__StorageType_ *p) -{ - if (::soap_read_tds__StorageType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__AutoGeoModes__DEFINED -#define SOAP_TYPE_tds__AutoGeoModes__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__AutoGeoModes_(struct soap*, const char*, int, const tds__AutoGeoModes_ *, const char*); -SOAP_FMAC3 tds__AutoGeoModes_ * SOAP_FMAC4 soap_in_tds__AutoGeoModes_(struct soap*, const char*, tds__AutoGeoModes_ *, const char*); -SOAP_FMAC1 tds__AutoGeoModes_ * SOAP_FMAC2 soap_instantiate_tds__AutoGeoModes_(struct soap*, int, const char*, const char*, size_t*); - -inline tds__AutoGeoModes_ * soap_new_tds__AutoGeoModes_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__AutoGeoModes_(soap, n, NULL, NULL, NULL); -} - -inline tds__AutoGeoModes_ * soap_new_req_tds__AutoGeoModes_( - struct soap *soap, - enum tds__AutoGeoModes __item) -{ - tds__AutoGeoModes_ *_p = ::soap_new_tds__AutoGeoModes_(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__AutoGeoModes_::__item = __item; - } - return _p; -} - -inline tds__AutoGeoModes_ * soap_new_set_tds__AutoGeoModes_( - struct soap *soap, - enum tds__AutoGeoModes __item) -{ - tds__AutoGeoModes_ *_p = ::soap_new_tds__AutoGeoModes_(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__AutoGeoModes_::__item = __item; - } - return _p; -} - -inline int soap_write_tds__AutoGeoModes_(struct soap *soap, tds__AutoGeoModes_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:AutoGeoModes", p->soap_type() == SOAP_TYPE_tds__AutoGeoModes_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__AutoGeoModes_(struct soap *soap, const char *URL, tds__AutoGeoModes_ 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, "tds:AutoGeoModes", p->soap_type() == SOAP_TYPE_tds__AutoGeoModes_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__AutoGeoModes_(struct soap *soap, const char *URL, tds__AutoGeoModes_ 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, "tds:AutoGeoModes", p->soap_type() == SOAP_TYPE_tds__AutoGeoModes_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__AutoGeoModes_(struct soap *soap, const char *URL, tds__AutoGeoModes_ 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, "tds:AutoGeoModes", p->soap_type() == SOAP_TYPE_tds__AutoGeoModes_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__AutoGeoModes_ * SOAP_FMAC4 soap_get_tds__AutoGeoModes_(struct soap*, tds__AutoGeoModes_ *, const char*, const char*); - -inline int soap_read_tds__AutoGeoModes_(struct soap *soap, tds__AutoGeoModes_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__AutoGeoModes_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__AutoGeoModes_(struct soap *soap, const char *URL, tds__AutoGeoModes_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__AutoGeoModes_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__AutoGeoModes_(struct soap *soap, tds__AutoGeoModes_ *p) -{ - if (::soap_read_tds__AutoGeoModes_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__ParityBit__DEFINED -#define SOAP_TYPE_tmd__ParityBit__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__ParityBit_(struct soap*, const char*, int, const tmd__ParityBit_ *, const char*); -SOAP_FMAC3 tmd__ParityBit_ * SOAP_FMAC4 soap_in_tmd__ParityBit_(struct soap*, const char*, tmd__ParityBit_ *, const char*); -SOAP_FMAC1 tmd__ParityBit_ * SOAP_FMAC2 soap_instantiate_tmd__ParityBit_(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__ParityBit_ * soap_new_tmd__ParityBit_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__ParityBit_(soap, n, NULL, NULL, NULL); -} - -inline tmd__ParityBit_ * soap_new_req_tmd__ParityBit_( - struct soap *soap, - enum tmd__ParityBit __item) -{ - tmd__ParityBit_ *_p = ::soap_new_tmd__ParityBit_(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__ParityBit_::__item = __item; - } - return _p; -} - -inline tmd__ParityBit_ * soap_new_set_tmd__ParityBit_( - struct soap *soap, - enum tmd__ParityBit __item) -{ - tmd__ParityBit_ *_p = ::soap_new_tmd__ParityBit_(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__ParityBit_::__item = __item; - } - return _p; -} - -inline int soap_write_tmd__ParityBit_(struct soap *soap, tmd__ParityBit_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:ParityBit", p->soap_type() == SOAP_TYPE_tmd__ParityBit_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__ParityBit_(struct soap *soap, const char *URL, tmd__ParityBit_ 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, "tmd:ParityBit", p->soap_type() == SOAP_TYPE_tmd__ParityBit_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__ParityBit_(struct soap *soap, const char *URL, tmd__ParityBit_ 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, "tmd:ParityBit", p->soap_type() == SOAP_TYPE_tmd__ParityBit_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__ParityBit_(struct soap *soap, const char *URL, tmd__ParityBit_ 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, "tmd:ParityBit", p->soap_type() == SOAP_TYPE_tmd__ParityBit_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__ParityBit_ * SOAP_FMAC4 soap_get_tmd__ParityBit_(struct soap*, tmd__ParityBit_ *, const char*, const char*); - -inline int soap_read_tmd__ParityBit_(struct soap *soap, tmd__ParityBit_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__ParityBit_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__ParityBit_(struct soap *soap, const char *URL, tmd__ParityBit_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__ParityBit_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__ParityBit_(struct soap *soap, tmd__ParityBit_ *p) -{ - if (::soap_read_tmd__ParityBit_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__SerialPortType__DEFINED -#define SOAP_TYPE_tmd__SerialPortType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortType_(struct soap*, const char*, int, const tmd__SerialPortType_ *, const char*); -SOAP_FMAC3 tmd__SerialPortType_ * SOAP_FMAC4 soap_in_tmd__SerialPortType_(struct soap*, const char*, tmd__SerialPortType_ *, const char*); -SOAP_FMAC1 tmd__SerialPortType_ * SOAP_FMAC2 soap_instantiate_tmd__SerialPortType_(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__SerialPortType_ * soap_new_tmd__SerialPortType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__SerialPortType_(soap, n, NULL, NULL, NULL); -} - -inline tmd__SerialPortType_ * soap_new_req_tmd__SerialPortType_( - struct soap *soap, - enum tmd__SerialPortType __item) -{ - tmd__SerialPortType_ *_p = ::soap_new_tmd__SerialPortType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialPortType_::__item = __item; - } - return _p; -} - -inline tmd__SerialPortType_ * soap_new_set_tmd__SerialPortType_( - struct soap *soap, - enum tmd__SerialPortType __item) -{ - tmd__SerialPortType_ *_p = ::soap_new_tmd__SerialPortType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialPortType_::__item = __item; - } - return _p; -} - -inline int soap_write_tmd__SerialPortType_(struct soap *soap, tmd__SerialPortType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SerialPortType", p->soap_type() == SOAP_TYPE_tmd__SerialPortType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__SerialPortType_(struct soap *soap, const char *URL, tmd__SerialPortType_ 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, "tmd:SerialPortType", p->soap_type() == SOAP_TYPE_tmd__SerialPortType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__SerialPortType_(struct soap *soap, const char *URL, tmd__SerialPortType_ 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, "tmd:SerialPortType", p->soap_type() == SOAP_TYPE_tmd__SerialPortType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__SerialPortType_(struct soap *soap, const char *URL, tmd__SerialPortType_ 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, "tmd:SerialPortType", p->soap_type() == SOAP_TYPE_tmd__SerialPortType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__SerialPortType_ * SOAP_FMAC4 soap_get_tmd__SerialPortType_(struct soap*, tmd__SerialPortType_ *, const char*, const char*); - -inline int soap_read_tmd__SerialPortType_(struct soap *soap, tmd__SerialPortType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__SerialPortType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__SerialPortType_(struct soap *soap, const char *URL, tmd__SerialPortType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__SerialPortType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__SerialPortType_(struct soap *soap, tmd__SerialPortType_ *p) -{ - if (::soap_read_tmd__SerialPortType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDType__DEFINED -#define SOAP_TYPE_tt__OSDType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDType_(struct soap*, const char*, int, const tt__OSDType_ *, const char*); -SOAP_FMAC3 tt__OSDType_ * SOAP_FMAC4 soap_in_tt__OSDType_(struct soap*, const char*, tt__OSDType_ *, const char*); -SOAP_FMAC1 tt__OSDType_ * SOAP_FMAC2 soap_instantiate_tt__OSDType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDType_ * soap_new_tt__OSDType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDType_(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDType_ * soap_new_req_tt__OSDType_( - struct soap *soap, - enum tt__OSDType __item) -{ - tt__OSDType_ *_p = ::soap_new_tt__OSDType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDType_::__item = __item; - } - return _p; -} - -inline tt__OSDType_ * soap_new_set_tt__OSDType_( - struct soap *soap, - enum tt__OSDType __item) -{ - tt__OSDType_ *_p = ::soap_new_tt__OSDType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__OSDType_(struct soap *soap, tt__OSDType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDType", p->soap_type() == SOAP_TYPE_tt__OSDType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDType_(struct soap *soap, const char *URL, tt__OSDType_ 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, "tt:OSDType", p->soap_type() == SOAP_TYPE_tt__OSDType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDType_(struct soap *soap, const char *URL, tt__OSDType_ 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, "tt:OSDType", p->soap_type() == SOAP_TYPE_tt__OSDType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDType_(struct soap *soap, const char *URL, tt__OSDType_ 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, "tt:OSDType", p->soap_type() == SOAP_TYPE_tt__OSDType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDType_ * SOAP_FMAC4 soap_get_tt__OSDType_(struct soap*, tt__OSDType_ *, const char*, const char*); - -inline int soap_read_tt__OSDType_(struct soap *soap, tt__OSDType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDType_(struct soap *soap, const char *URL, tt__OSDType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDType_(struct soap *soap, tt__OSDType_ *p) -{ - if (::soap_read_tt__OSDType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioClassType___DEFINED -#define SOAP_TYPE_tt__AudioClassType___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassType__(struct soap*, const char*, int, const tt__AudioClassType__ *, const char*); -SOAP_FMAC3 tt__AudioClassType__ * SOAP_FMAC4 soap_in_tt__AudioClassType__(struct soap*, const char*, tt__AudioClassType__ *, const char*); -SOAP_FMAC1 tt__AudioClassType__ * SOAP_FMAC2 soap_instantiate_tt__AudioClassType__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioClassType__ * soap_new_tt__AudioClassType__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioClassType__(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioClassType__ * soap_new_req_tt__AudioClassType__( - struct soap *soap, - const std::string& __item) -{ - tt__AudioClassType__ *_p = ::soap_new_tt__AudioClassType__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioClassType__::__item = __item; - } - return _p; -} - -inline tt__AudioClassType__ * soap_new_set_tt__AudioClassType__( - struct soap *soap, - const std::string& __item) -{ - tt__AudioClassType__ *_p = ::soap_new_tt__AudioClassType__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioClassType__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__AudioClassType__(struct soap *soap, tt__AudioClassType__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioClassType", p->soap_type() == SOAP_TYPE_tt__AudioClassType__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioClassType__(struct soap *soap, const char *URL, tt__AudioClassType__ 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, "tt:AudioClassType", p->soap_type() == SOAP_TYPE_tt__AudioClassType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioClassType__(struct soap *soap, const char *URL, tt__AudioClassType__ 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, "tt:AudioClassType", p->soap_type() == SOAP_TYPE_tt__AudioClassType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioClassType__(struct soap *soap, const char *URL, tt__AudioClassType__ 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, "tt:AudioClassType", p->soap_type() == SOAP_TYPE_tt__AudioClassType__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioClassType__ * SOAP_FMAC4 soap_get_tt__AudioClassType__(struct soap*, tt__AudioClassType__ *, const char*, const char*); - -inline int soap_read_tt__AudioClassType__(struct soap *soap, tt__AudioClassType__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioClassType__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioClassType__(struct soap *soap, const char *URL, tt__AudioClassType__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioClassType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioClassType__(struct soap *soap, tt__AudioClassType__ *p) -{ - if (::soap_read_tt__AudioClassType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioClassType_DEFINED -#define SOAP_TYPE_tt__AudioClassType_DEFINED - -inline void soap_default_tt__AudioClassType(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__AudioClassType(struct soap*, const std::string *); - -#define soap_tt__AudioClassType2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassType(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__AudioClassType(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__AudioClassType(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__AudioClassType soap_instantiate_std__string - - -#define soap_new_tt__AudioClassType soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AudioClassType(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__AudioClassType(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__AudioClassType(soap, p, "tt:AudioClassType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioClassType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioClassType(soap, p, "tt:AudioClassType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioClassType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioClassType(soap, p, "tt:AudioClassType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioClassType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AudioClassType(soap, p, "tt:AudioClassType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__AudioClassType(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__AudioClassType(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__AudioClassType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioClassType(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioClassType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioClassType(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__AudioClassType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ModeOfOperation__DEFINED -#define SOAP_TYPE_tt__ModeOfOperation__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ModeOfOperation_(struct soap*, const char*, int, const tt__ModeOfOperation_ *, const char*); -SOAP_FMAC3 tt__ModeOfOperation_ * SOAP_FMAC4 soap_in_tt__ModeOfOperation_(struct soap*, const char*, tt__ModeOfOperation_ *, const char*); -SOAP_FMAC1 tt__ModeOfOperation_ * SOAP_FMAC2 soap_instantiate_tt__ModeOfOperation_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ModeOfOperation_ * soap_new_tt__ModeOfOperation_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ModeOfOperation_(soap, n, NULL, NULL, NULL); -} - -inline tt__ModeOfOperation_ * soap_new_req_tt__ModeOfOperation_( - struct soap *soap, - enum tt__ModeOfOperation __item) -{ - tt__ModeOfOperation_ *_p = ::soap_new_tt__ModeOfOperation_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ModeOfOperation_::__item = __item; - } - return _p; -} - -inline tt__ModeOfOperation_ * soap_new_set_tt__ModeOfOperation_( - struct soap *soap, - enum tt__ModeOfOperation __item) -{ - tt__ModeOfOperation_ *_p = ::soap_new_tt__ModeOfOperation_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ModeOfOperation_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ModeOfOperation_(struct soap *soap, tt__ModeOfOperation_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ModeOfOperation", p->soap_type() == SOAP_TYPE_tt__ModeOfOperation_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ModeOfOperation_(struct soap *soap, const char *URL, tt__ModeOfOperation_ 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, "tt:ModeOfOperation", p->soap_type() == SOAP_TYPE_tt__ModeOfOperation_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ModeOfOperation_(struct soap *soap, const char *URL, tt__ModeOfOperation_ 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, "tt:ModeOfOperation", p->soap_type() == SOAP_TYPE_tt__ModeOfOperation_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ModeOfOperation_(struct soap *soap, const char *URL, tt__ModeOfOperation_ 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, "tt:ModeOfOperation", p->soap_type() == SOAP_TYPE_tt__ModeOfOperation_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ModeOfOperation_ * SOAP_FMAC4 soap_get_tt__ModeOfOperation_(struct soap*, tt__ModeOfOperation_ *, const char*, const char*); - -inline int soap_read_tt__ModeOfOperation_(struct soap *soap, tt__ModeOfOperation_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ModeOfOperation_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ModeOfOperation_(struct soap *soap, const char *URL, tt__ModeOfOperation_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ModeOfOperation_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ModeOfOperation_(struct soap *soap, tt__ModeOfOperation_ *p) -{ - if (::soap_read_tt__ModeOfOperation_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobState___DEFINED -#define SOAP_TYPE_tt__RecordingJobState___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobState__(struct soap*, const char*, int, const tt__RecordingJobState__ *, const char*); -SOAP_FMAC3 tt__RecordingJobState__ * SOAP_FMAC4 soap_in_tt__RecordingJobState__(struct soap*, const char*, tt__RecordingJobState__ *, const char*); -SOAP_FMAC1 tt__RecordingJobState__ * SOAP_FMAC2 soap_instantiate_tt__RecordingJobState__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobState__ * soap_new_tt__RecordingJobState__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobState__(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobState__ * soap_new_req_tt__RecordingJobState__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingJobState__ *_p = ::soap_new_tt__RecordingJobState__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobState__::__item = __item; - } - return _p; -} - -inline tt__RecordingJobState__ * soap_new_set_tt__RecordingJobState__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingJobState__ *_p = ::soap_new_tt__RecordingJobState__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobState__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RecordingJobState__(struct soap *soap, tt__RecordingJobState__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobState", p->soap_type() == SOAP_TYPE_tt__RecordingJobState__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobState__(struct soap *soap, const char *URL, tt__RecordingJobState__ 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, "tt:RecordingJobState", p->soap_type() == SOAP_TYPE_tt__RecordingJobState__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobState__(struct soap *soap, const char *URL, tt__RecordingJobState__ 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, "tt:RecordingJobState", p->soap_type() == SOAP_TYPE_tt__RecordingJobState__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobState__(struct soap *soap, const char *URL, tt__RecordingJobState__ 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, "tt:RecordingJobState", p->soap_type() == SOAP_TYPE_tt__RecordingJobState__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobState__ * SOAP_FMAC4 soap_get_tt__RecordingJobState__(struct soap*, tt__RecordingJobState__ *, const char*, const char*); - -inline int soap_read_tt__RecordingJobState__(struct soap *soap, tt__RecordingJobState__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobState__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobState__(struct soap *soap, const char *URL, tt__RecordingJobState__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobState__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobState__(struct soap *soap, tt__RecordingJobState__ *p) -{ - if (::soap_read_tt__RecordingJobState__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobState_DEFINED -#define SOAP_TYPE_tt__RecordingJobState_DEFINED - -inline void soap_default_tt__RecordingJobState(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__RecordingJobState(struct soap*, const std::string *); - -#define soap_tt__RecordingJobState2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobState(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__RecordingJobState(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__RecordingJobState(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__RecordingJobState soap_instantiate_std__string - - -#define soap_new_tt__RecordingJobState soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RecordingJobState(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__RecordingJobState(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__RecordingJobState(soap, p, "tt:RecordingJobState", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobState(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingJobState(soap, p, "tt:RecordingJobState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobState(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingJobState(soap, p, "tt:RecordingJobState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobState(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingJobState(soap, p, "tt:RecordingJobState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__RecordingJobState(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__RecordingJobState(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobState(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobState(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__RecordingJobState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobMode___DEFINED -#define SOAP_TYPE_tt__RecordingJobMode___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobMode__(struct soap*, const char*, int, const tt__RecordingJobMode__ *, const char*); -SOAP_FMAC3 tt__RecordingJobMode__ * SOAP_FMAC4 soap_in_tt__RecordingJobMode__(struct soap*, const char*, tt__RecordingJobMode__ *, const char*); -SOAP_FMAC1 tt__RecordingJobMode__ * SOAP_FMAC2 soap_instantiate_tt__RecordingJobMode__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobMode__ * soap_new_tt__RecordingJobMode__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobMode__(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobMode__ * soap_new_req_tt__RecordingJobMode__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingJobMode__ *_p = ::soap_new_tt__RecordingJobMode__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobMode__::__item = __item; - } - return _p; -} - -inline tt__RecordingJobMode__ * soap_new_set_tt__RecordingJobMode__( - struct soap *soap, - const std::string& __item) -{ - tt__RecordingJobMode__ *_p = ::soap_new_tt__RecordingJobMode__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobMode__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RecordingJobMode__(struct soap *soap, tt__RecordingJobMode__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobMode", p->soap_type() == SOAP_TYPE_tt__RecordingJobMode__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobMode__(struct soap *soap, const char *URL, tt__RecordingJobMode__ 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, "tt:RecordingJobMode", p->soap_type() == SOAP_TYPE_tt__RecordingJobMode__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobMode__(struct soap *soap, const char *URL, tt__RecordingJobMode__ 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, "tt:RecordingJobMode", p->soap_type() == SOAP_TYPE_tt__RecordingJobMode__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobMode__(struct soap *soap, const char *URL, tt__RecordingJobMode__ 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, "tt:RecordingJobMode", p->soap_type() == SOAP_TYPE_tt__RecordingJobMode__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobMode__ * SOAP_FMAC4 soap_get_tt__RecordingJobMode__(struct soap*, tt__RecordingJobMode__ *, const char*, const char*); - -inline int soap_read_tt__RecordingJobMode__(struct soap *soap, tt__RecordingJobMode__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobMode__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobMode__(struct soap *soap, const char *URL, tt__RecordingJobMode__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobMode__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobMode__(struct soap *soap, tt__RecordingJobMode__ *p) -{ - if (::soap_read_tt__RecordingJobMode__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobMode_DEFINED -#define SOAP_TYPE_tt__RecordingJobMode_DEFINED - -inline void soap_default_tt__RecordingJobMode(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__RecordingJobMode(struct soap*, const std::string *); - -#define soap_tt__RecordingJobMode2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobMode(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__RecordingJobMode(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__RecordingJobMode(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__RecordingJobMode soap_instantiate_std__string - - -#define soap_new_tt__RecordingJobMode soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__RecordingJobMode(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__RecordingJobMode(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__RecordingJobMode(soap, p, "tt:RecordingJobMode", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobMode(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingJobMode(soap, p, "tt:RecordingJobMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobMode(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingJobMode(soap, p, "tt:RecordingJobMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobMode(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__RecordingJobMode(soap, p, "tt:RecordingJobMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__RecordingJobMode(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__RecordingJobMode(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobMode(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobMode(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__RecordingJobMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TrackType__DEFINED -#define SOAP_TYPE_tt__TrackType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackType_(struct soap*, const char*, int, const tt__TrackType_ *, const char*); -SOAP_FMAC3 tt__TrackType_ * SOAP_FMAC4 soap_in_tt__TrackType_(struct soap*, const char*, tt__TrackType_ *, const char*); -SOAP_FMAC1 tt__TrackType_ * SOAP_FMAC2 soap_instantiate_tt__TrackType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TrackType_ * soap_new_tt__TrackType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TrackType_(soap, n, NULL, NULL, NULL); -} - -inline tt__TrackType_ * soap_new_req_tt__TrackType_( - struct soap *soap, - enum tt__TrackType __item) -{ - tt__TrackType_ *_p = ::soap_new_tt__TrackType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackType_::__item = __item; - } - return _p; -} - -inline tt__TrackType_ * soap_new_set_tt__TrackType_( - struct soap *soap, - enum tt__TrackType __item) -{ - tt__TrackType_ *_p = ::soap_new_tt__TrackType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__TrackType_(struct soap *soap, tt__TrackType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TrackType", p->soap_type() == SOAP_TYPE_tt__TrackType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TrackType_(struct soap *soap, const char *URL, tt__TrackType_ 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, "tt:TrackType", p->soap_type() == SOAP_TYPE_tt__TrackType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TrackType_(struct soap *soap, const char *URL, tt__TrackType_ 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, "tt:TrackType", p->soap_type() == SOAP_TYPE_tt__TrackType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TrackType_(struct soap *soap, const char *URL, tt__TrackType_ 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, "tt:TrackType", p->soap_type() == SOAP_TYPE_tt__TrackType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TrackType_ * SOAP_FMAC4 soap_get_tt__TrackType_(struct soap*, tt__TrackType_ *, const char*, const char*); - -inline int soap_read_tt__TrackType_(struct soap *soap, tt__TrackType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TrackType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TrackType_(struct soap *soap, const char *URL, tt__TrackType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TrackType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TrackType_(struct soap *soap, tt__TrackType_ *p) -{ - if (::soap_read_tt__TrackType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingStatus__DEFINED -#define SOAP_TYPE_tt__RecordingStatus__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingStatus_(struct soap*, const char*, int, const tt__RecordingStatus_ *, const char*); -SOAP_FMAC3 tt__RecordingStatus_ * SOAP_FMAC4 soap_in_tt__RecordingStatus_(struct soap*, const char*, tt__RecordingStatus_ *, const char*); -SOAP_FMAC1 tt__RecordingStatus_ * SOAP_FMAC2 soap_instantiate_tt__RecordingStatus_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingStatus_ * soap_new_tt__RecordingStatus_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingStatus_(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingStatus_ * soap_new_req_tt__RecordingStatus_( - struct soap *soap, - enum tt__RecordingStatus __item) -{ - tt__RecordingStatus_ *_p = ::soap_new_tt__RecordingStatus_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingStatus_::__item = __item; - } - return _p; -} - -inline tt__RecordingStatus_ * soap_new_set_tt__RecordingStatus_( - struct soap *soap, - enum tt__RecordingStatus __item) -{ - tt__RecordingStatus_ *_p = ::soap_new_tt__RecordingStatus_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingStatus_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RecordingStatus_(struct soap *soap, tt__RecordingStatus_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingStatus", p->soap_type() == SOAP_TYPE_tt__RecordingStatus_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingStatus_(struct soap *soap, const char *URL, tt__RecordingStatus_ 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, "tt:RecordingStatus", p->soap_type() == SOAP_TYPE_tt__RecordingStatus_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingStatus_(struct soap *soap, const char *URL, tt__RecordingStatus_ 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, "tt:RecordingStatus", p->soap_type() == SOAP_TYPE_tt__RecordingStatus_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingStatus_(struct soap *soap, const char *URL, tt__RecordingStatus_ 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, "tt:RecordingStatus", p->soap_type() == SOAP_TYPE_tt__RecordingStatus_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingStatus_ * SOAP_FMAC4 soap_get_tt__RecordingStatus_(struct soap*, tt__RecordingStatus_ *, const char*, const char*); - -inline int soap_read_tt__RecordingStatus_(struct soap *soap, tt__RecordingStatus_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingStatus_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingStatus_(struct soap *soap, const char *URL, tt__RecordingStatus_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingStatus_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingStatus_(struct soap *soap, tt__RecordingStatus_ *p) -{ - if (::soap_read_tt__RecordingStatus_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SearchState__DEFINED -#define SOAP_TYPE_tt__SearchState__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchState_(struct soap*, const char*, int, const tt__SearchState_ *, const char*); -SOAP_FMAC3 tt__SearchState_ * SOAP_FMAC4 soap_in_tt__SearchState_(struct soap*, const char*, tt__SearchState_ *, const char*); -SOAP_FMAC1 tt__SearchState_ * SOAP_FMAC2 soap_instantiate_tt__SearchState_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SearchState_ * soap_new_tt__SearchState_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SearchState_(soap, n, NULL, NULL, NULL); -} - -inline tt__SearchState_ * soap_new_req_tt__SearchState_( - struct soap *soap, - enum tt__SearchState __item) -{ - tt__SearchState_ *_p = ::soap_new_tt__SearchState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SearchState_::__item = __item; - } - return _p; -} - -inline tt__SearchState_ * soap_new_set_tt__SearchState_( - struct soap *soap, - enum tt__SearchState __item) -{ - tt__SearchState_ *_p = ::soap_new_tt__SearchState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SearchState_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__SearchState_(struct soap *soap, tt__SearchState_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SearchState", p->soap_type() == SOAP_TYPE_tt__SearchState_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SearchState_(struct soap *soap, const char *URL, tt__SearchState_ 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, "tt:SearchState", p->soap_type() == SOAP_TYPE_tt__SearchState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SearchState_(struct soap *soap, const char *URL, tt__SearchState_ 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, "tt:SearchState", p->soap_type() == SOAP_TYPE_tt__SearchState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SearchState_(struct soap *soap, const char *URL, tt__SearchState_ 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, "tt:SearchState", p->soap_type() == SOAP_TYPE_tt__SearchState_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SearchState_ * SOAP_FMAC4 soap_get_tt__SearchState_(struct soap*, tt__SearchState_ *, const char*, const char*); - -inline int soap_read_tt__SearchState_(struct soap *soap, tt__SearchState_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SearchState_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SearchState_(struct soap *soap, const char *URL, tt__SearchState_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SearchState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SearchState_(struct soap *soap, tt__SearchState_ *p) -{ - if (::soap_read_tt__SearchState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__XPathExpression___DEFINED -#define SOAP_TYPE_tt__XPathExpression___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__XPathExpression__(struct soap*, const char*, int, const tt__XPathExpression__ *, const char*); -SOAP_FMAC3 tt__XPathExpression__ * SOAP_FMAC4 soap_in_tt__XPathExpression__(struct soap*, const char*, tt__XPathExpression__ *, const char*); -SOAP_FMAC1 tt__XPathExpression__ * SOAP_FMAC2 soap_instantiate_tt__XPathExpression__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__XPathExpression__ * soap_new_tt__XPathExpression__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__XPathExpression__(soap, n, NULL, NULL, NULL); -} - -inline tt__XPathExpression__ * soap_new_req_tt__XPathExpression__( - struct soap *soap, - const std::string& __item) -{ - tt__XPathExpression__ *_p = ::soap_new_tt__XPathExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__XPathExpression__::__item = __item; - } - return _p; -} - -inline tt__XPathExpression__ * soap_new_set_tt__XPathExpression__( - struct soap *soap, - const std::string& __item) -{ - tt__XPathExpression__ *_p = ::soap_new_tt__XPathExpression__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__XPathExpression__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__XPathExpression__(struct soap *soap, tt__XPathExpression__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:XPathExpression", p->soap_type() == SOAP_TYPE_tt__XPathExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__XPathExpression__(struct soap *soap, const char *URL, tt__XPathExpression__ 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, "tt:XPathExpression", p->soap_type() == SOAP_TYPE_tt__XPathExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__XPathExpression__(struct soap *soap, const char *URL, tt__XPathExpression__ 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, "tt:XPathExpression", p->soap_type() == SOAP_TYPE_tt__XPathExpression__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__XPathExpression__(struct soap *soap, const char *URL, tt__XPathExpression__ 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, "tt:XPathExpression", p->soap_type() == SOAP_TYPE_tt__XPathExpression__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__XPathExpression__ * SOAP_FMAC4 soap_get_tt__XPathExpression__(struct soap*, tt__XPathExpression__ *, const char*, const char*); - -inline int soap_read_tt__XPathExpression__(struct soap *soap, tt__XPathExpression__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__XPathExpression__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__XPathExpression__(struct soap *soap, const char *URL, tt__XPathExpression__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__XPathExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__XPathExpression__(struct soap *soap, tt__XPathExpression__ *p) -{ - if (::soap_read_tt__XPathExpression__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__XPathExpression_DEFINED -#define SOAP_TYPE_tt__XPathExpression_DEFINED - -inline void soap_default_tt__XPathExpression(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__XPathExpression(struct soap*, const std::string *); - -#define soap_tt__XPathExpression2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__XPathExpression(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__XPathExpression(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__XPathExpression(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__XPathExpression soap_instantiate_std__string - - -#define soap_new_tt__XPathExpression soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__XPathExpression(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__XPathExpression(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__XPathExpression(soap, p, "tt:XPathExpression", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__XPathExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__XPathExpression(soap, p, "tt:XPathExpression", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__XPathExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__XPathExpression(soap, p, "tt:XPathExpression", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__XPathExpression(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__XPathExpression(soap, p, "tt:XPathExpression", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__XPathExpression(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__XPathExpression(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__XPathExpression(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__XPathExpression(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__XPathExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__XPathExpression(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__XPathExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Description___DEFINED -#define SOAP_TYPE_tt__Description___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Description__(struct soap*, const char*, int, const tt__Description__ *, const char*); -SOAP_FMAC3 tt__Description__ * SOAP_FMAC4 soap_in_tt__Description__(struct soap*, const char*, tt__Description__ *, const char*); -SOAP_FMAC1 tt__Description__ * SOAP_FMAC2 soap_instantiate_tt__Description__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Description__ * soap_new_tt__Description__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Description__(soap, n, NULL, NULL, NULL); -} - -inline tt__Description__ * soap_new_req_tt__Description__( - struct soap *soap, - const std::string& __item) -{ - tt__Description__ *_p = ::soap_new_tt__Description__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Description__::__item = __item; - } - return _p; -} - -inline tt__Description__ * soap_new_set_tt__Description__( - struct soap *soap, - const std::string& __item) -{ - tt__Description__ *_p = ::soap_new_tt__Description__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Description__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Description__(struct soap *soap, tt__Description__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Description", p->soap_type() == SOAP_TYPE_tt__Description__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Description__(struct soap *soap, const char *URL, tt__Description__ 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, "tt:Description", p->soap_type() == SOAP_TYPE_tt__Description__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Description__(struct soap *soap, const char *URL, tt__Description__ 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, "tt:Description", p->soap_type() == SOAP_TYPE_tt__Description__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Description__(struct soap *soap, const char *URL, tt__Description__ 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, "tt:Description", p->soap_type() == SOAP_TYPE_tt__Description__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Description__ * SOAP_FMAC4 soap_get_tt__Description__(struct soap*, tt__Description__ *, const char*, const char*); - -inline int soap_read_tt__Description__(struct soap *soap, tt__Description__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Description__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Description__(struct soap *soap, const char *URL, tt__Description__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Description__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Description__(struct soap *soap, tt__Description__ *p) -{ - if (::soap_read_tt__Description__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Description_DEFINED -#define SOAP_TYPE_tt__Description_DEFINED - -inline void soap_default_tt__Description(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Description(struct soap*, const std::string *); - -#define soap_tt__Description2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Description(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__Description(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__Description(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__Description soap_instantiate_std__string - - -#define soap_new_tt__Description soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Description(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__Description(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Description(soap, p, "tt:Description", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Description(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Description(soap, p, "tt:Description", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Description(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Description(soap, p, "tt:Description", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Description(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Description(soap, p, "tt:Description", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__Description(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__Description(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Description(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Description(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Description(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Description(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__Description(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReceiverState__DEFINED -#define SOAP_TYPE_tt__ReceiverState__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverState_(struct soap*, const char*, int, const tt__ReceiverState_ *, const char*); -SOAP_FMAC3 tt__ReceiverState_ * SOAP_FMAC4 soap_in_tt__ReceiverState_(struct soap*, const char*, tt__ReceiverState_ *, const char*); -SOAP_FMAC1 tt__ReceiverState_ * SOAP_FMAC2 soap_instantiate_tt__ReceiverState_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReceiverState_ * soap_new_tt__ReceiverState_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReceiverState_(soap, n, NULL, NULL, NULL); -} - -inline tt__ReceiverState_ * soap_new_req_tt__ReceiverState_( - struct soap *soap, - enum tt__ReceiverState __item) -{ - tt__ReceiverState_ *_p = ::soap_new_tt__ReceiverState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverState_::__item = __item; - } - return _p; -} - -inline tt__ReceiverState_ * soap_new_set_tt__ReceiverState_( - struct soap *soap, - enum tt__ReceiverState __item) -{ - tt__ReceiverState_ *_p = ::soap_new_tt__ReceiverState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverState_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ReceiverState_(struct soap *soap, tt__ReceiverState_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReceiverState", p->soap_type() == SOAP_TYPE_tt__ReceiverState_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverState_(struct soap *soap, const char *URL, tt__ReceiverState_ 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, "tt:ReceiverState", p->soap_type() == SOAP_TYPE_tt__ReceiverState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverState_(struct soap *soap, const char *URL, tt__ReceiverState_ 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, "tt:ReceiverState", p->soap_type() == SOAP_TYPE_tt__ReceiverState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverState_(struct soap *soap, const char *URL, tt__ReceiverState_ 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, "tt:ReceiverState", p->soap_type() == SOAP_TYPE_tt__ReceiverState_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReceiverState_ * SOAP_FMAC4 soap_get_tt__ReceiverState_(struct soap*, tt__ReceiverState_ *, const char*, const char*); - -inline int soap_read_tt__ReceiverState_(struct soap *soap, tt__ReceiverState_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverState_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverState_(struct soap *soap, const char *URL, tt__ReceiverState_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverState_(struct soap *soap, tt__ReceiverState_ *p) -{ - if (::soap_read_tt__ReceiverState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReceiverMode__DEFINED -#define SOAP_TYPE_tt__ReceiverMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverMode_(struct soap*, const char*, int, const tt__ReceiverMode_ *, const char*); -SOAP_FMAC3 tt__ReceiverMode_ * SOAP_FMAC4 soap_in_tt__ReceiverMode_(struct soap*, const char*, tt__ReceiverMode_ *, const char*); -SOAP_FMAC1 tt__ReceiverMode_ * SOAP_FMAC2 soap_instantiate_tt__ReceiverMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReceiverMode_ * soap_new_tt__ReceiverMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReceiverMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__ReceiverMode_ * soap_new_req_tt__ReceiverMode_( - struct soap *soap, - enum tt__ReceiverMode __item) -{ - tt__ReceiverMode_ *_p = ::soap_new_tt__ReceiverMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverMode_::__item = __item; - } - return _p; -} - -inline tt__ReceiverMode_ * soap_new_set_tt__ReceiverMode_( - struct soap *soap, - enum tt__ReceiverMode __item) -{ - tt__ReceiverMode_ *_p = ::soap_new_tt__ReceiverMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ReceiverMode_(struct soap *soap, tt__ReceiverMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReceiverMode", p->soap_type() == SOAP_TYPE_tt__ReceiverMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverMode_(struct soap *soap, const char *URL, tt__ReceiverMode_ 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, "tt:ReceiverMode", p->soap_type() == SOAP_TYPE_tt__ReceiverMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverMode_(struct soap *soap, const char *URL, tt__ReceiverMode_ 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, "tt:ReceiverMode", p->soap_type() == SOAP_TYPE_tt__ReceiverMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverMode_(struct soap *soap, const char *URL, tt__ReceiverMode_ 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, "tt:ReceiverMode", p->soap_type() == SOAP_TYPE_tt__ReceiverMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReceiverMode_ * SOAP_FMAC4 soap_get_tt__ReceiverMode_(struct soap*, tt__ReceiverMode_ *, const char*, const char*); - -inline int soap_read_tt__ReceiverMode_(struct soap *soap, tt__ReceiverMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverMode_(struct soap *soap, const char *URL, tt__ReceiverMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverMode_(struct soap *soap, tt__ReceiverMode_ *p) -{ - if (::soap_read_tt__ReceiverMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Direction__DEFINED -#define SOAP_TYPE_tt__Direction__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Direction_(struct soap*, const char*, int, const tt__Direction_ *, const char*); -SOAP_FMAC3 tt__Direction_ * SOAP_FMAC4 soap_in_tt__Direction_(struct soap*, const char*, tt__Direction_ *, const char*); -SOAP_FMAC1 tt__Direction_ * SOAP_FMAC2 soap_instantiate_tt__Direction_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Direction_ * soap_new_tt__Direction_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Direction_(soap, n, NULL, NULL, NULL); -} - -inline tt__Direction_ * soap_new_req_tt__Direction_( - struct soap *soap, - enum tt__Direction __item) -{ - tt__Direction_ *_p = ::soap_new_tt__Direction_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Direction_::__item = __item; - } - return _p; -} - -inline tt__Direction_ * soap_new_set_tt__Direction_( - struct soap *soap, - enum tt__Direction __item) -{ - tt__Direction_ *_p = ::soap_new_tt__Direction_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Direction_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Direction_(struct soap *soap, tt__Direction_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Direction", p->soap_type() == SOAP_TYPE_tt__Direction_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Direction_(struct soap *soap, const char *URL, tt__Direction_ 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, "tt:Direction", p->soap_type() == SOAP_TYPE_tt__Direction_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Direction_(struct soap *soap, const char *URL, tt__Direction_ 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, "tt:Direction", p->soap_type() == SOAP_TYPE_tt__Direction_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Direction_(struct soap *soap, const char *URL, tt__Direction_ 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, "tt:Direction", p->soap_type() == SOAP_TYPE_tt__Direction_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Direction_ * SOAP_FMAC4 soap_get_tt__Direction_(struct soap*, tt__Direction_ *, const char*, const char*); - -inline int soap_read_tt__Direction_(struct soap *soap, tt__Direction_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Direction_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Direction_(struct soap *soap, const char *URL, tt__Direction_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Direction_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Direction_(struct soap *soap, tt__Direction_ *p) -{ - if (::soap_read_tt__Direction_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PropertyOperation__DEFINED -#define SOAP_TYPE_tt__PropertyOperation__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PropertyOperation_(struct soap*, const char*, int, const tt__PropertyOperation_ *, const char*); -SOAP_FMAC3 tt__PropertyOperation_ * SOAP_FMAC4 soap_in_tt__PropertyOperation_(struct soap*, const char*, tt__PropertyOperation_ *, const char*); -SOAP_FMAC1 tt__PropertyOperation_ * SOAP_FMAC2 soap_instantiate_tt__PropertyOperation_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PropertyOperation_ * soap_new_tt__PropertyOperation_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PropertyOperation_(soap, n, NULL, NULL, NULL); -} - -inline tt__PropertyOperation_ * soap_new_req_tt__PropertyOperation_( - struct soap *soap, - enum tt__PropertyOperation __item) -{ - tt__PropertyOperation_ *_p = ::soap_new_tt__PropertyOperation_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PropertyOperation_::__item = __item; - } - return _p; -} - -inline tt__PropertyOperation_ * soap_new_set_tt__PropertyOperation_( - struct soap *soap, - enum tt__PropertyOperation __item) -{ - tt__PropertyOperation_ *_p = ::soap_new_tt__PropertyOperation_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PropertyOperation_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__PropertyOperation_(struct soap *soap, tt__PropertyOperation_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PropertyOperation", p->soap_type() == SOAP_TYPE_tt__PropertyOperation_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PropertyOperation_(struct soap *soap, const char *URL, tt__PropertyOperation_ 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, "tt:PropertyOperation", p->soap_type() == SOAP_TYPE_tt__PropertyOperation_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PropertyOperation_(struct soap *soap, const char *URL, tt__PropertyOperation_ 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, "tt:PropertyOperation", p->soap_type() == SOAP_TYPE_tt__PropertyOperation_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PropertyOperation_(struct soap *soap, const char *URL, tt__PropertyOperation_ 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, "tt:PropertyOperation", p->soap_type() == SOAP_TYPE_tt__PropertyOperation_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PropertyOperation_ * SOAP_FMAC4 soap_get_tt__PropertyOperation_(struct soap*, tt__PropertyOperation_ *, const char*, const char*); - -inline int soap_read_tt__PropertyOperation_(struct soap *soap, tt__PropertyOperation_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PropertyOperation_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PropertyOperation_(struct soap *soap, const char *URL, tt__PropertyOperation_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PropertyOperation_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PropertyOperation_(struct soap *soap, tt__PropertyOperation_ *p) -{ - if (::soap_read_tt__PropertyOperation_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageSendingType__DEFINED -#define SOAP_TYPE_tt__ImageSendingType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageSendingType_(struct soap*, const char*, int, const tt__ImageSendingType_ *, const char*); -SOAP_FMAC3 tt__ImageSendingType_ * SOAP_FMAC4 soap_in_tt__ImageSendingType_(struct soap*, const char*, tt__ImageSendingType_ *, const char*); -SOAP_FMAC1 tt__ImageSendingType_ * SOAP_FMAC2 soap_instantiate_tt__ImageSendingType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImageSendingType_ * soap_new_tt__ImageSendingType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImageSendingType_(soap, n, NULL, NULL, NULL); -} - -inline tt__ImageSendingType_ * soap_new_req_tt__ImageSendingType_( - struct soap *soap, - enum tt__ImageSendingType __item) -{ - tt__ImageSendingType_ *_p = ::soap_new_tt__ImageSendingType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageSendingType_::__item = __item; - } - return _p; -} - -inline tt__ImageSendingType_ * soap_new_set_tt__ImageSendingType_( - struct soap *soap, - enum tt__ImageSendingType __item) -{ - tt__ImageSendingType_ *_p = ::soap_new_tt__ImageSendingType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageSendingType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ImageSendingType_(struct soap *soap, tt__ImageSendingType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImageSendingType", p->soap_type() == SOAP_TYPE_tt__ImageSendingType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageSendingType_(struct soap *soap, const char *URL, tt__ImageSendingType_ 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, "tt:ImageSendingType", p->soap_type() == SOAP_TYPE_tt__ImageSendingType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageSendingType_(struct soap *soap, const char *URL, tt__ImageSendingType_ 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, "tt:ImageSendingType", p->soap_type() == SOAP_TYPE_tt__ImageSendingType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageSendingType_(struct soap *soap, const char *URL, tt__ImageSendingType_ 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, "tt:ImageSendingType", p->soap_type() == SOAP_TYPE_tt__ImageSendingType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImageSendingType_ * SOAP_FMAC4 soap_get_tt__ImageSendingType_(struct soap*, tt__ImageSendingType_ *, const char*, const char*); - -inline int soap_read_tt__ImageSendingType_(struct soap *soap, tt__ImageSendingType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImageSendingType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageSendingType_(struct soap *soap, const char *URL, tt__ImageSendingType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageSendingType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageSendingType_(struct soap *soap, tt__ImageSendingType_ *p) -{ - if (::soap_read_tt__ImageSendingType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DefoggingMode__DEFINED -#define SOAP_TYPE_tt__DefoggingMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingMode_(struct soap*, const char*, int, const tt__DefoggingMode_ *, const char*); -SOAP_FMAC3 tt__DefoggingMode_ * SOAP_FMAC4 soap_in_tt__DefoggingMode_(struct soap*, const char*, tt__DefoggingMode_ *, const char*); -SOAP_FMAC1 tt__DefoggingMode_ * SOAP_FMAC2 soap_instantiate_tt__DefoggingMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DefoggingMode_ * soap_new_tt__DefoggingMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DefoggingMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__DefoggingMode_ * soap_new_req_tt__DefoggingMode_( - struct soap *soap, - enum tt__DefoggingMode __item) -{ - tt__DefoggingMode_ *_p = ::soap_new_tt__DefoggingMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DefoggingMode_::__item = __item; - } - return _p; -} - -inline tt__DefoggingMode_ * soap_new_set_tt__DefoggingMode_( - struct soap *soap, - enum tt__DefoggingMode __item) -{ - tt__DefoggingMode_ *_p = ::soap_new_tt__DefoggingMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DefoggingMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__DefoggingMode_(struct soap *soap, tt__DefoggingMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DefoggingMode", p->soap_type() == SOAP_TYPE_tt__DefoggingMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DefoggingMode_(struct soap *soap, const char *URL, tt__DefoggingMode_ 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, "tt:DefoggingMode", p->soap_type() == SOAP_TYPE_tt__DefoggingMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DefoggingMode_(struct soap *soap, const char *URL, tt__DefoggingMode_ 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, "tt:DefoggingMode", p->soap_type() == SOAP_TYPE_tt__DefoggingMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DefoggingMode_(struct soap *soap, const char *URL, tt__DefoggingMode_ 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, "tt:DefoggingMode", p->soap_type() == SOAP_TYPE_tt__DefoggingMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DefoggingMode_ * SOAP_FMAC4 soap_get_tt__DefoggingMode_(struct soap*, tt__DefoggingMode_ *, const char*, const char*); - -inline int soap_read_tt__DefoggingMode_(struct soap *soap, tt__DefoggingMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DefoggingMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DefoggingMode_(struct soap *soap, const char *URL, tt__DefoggingMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DefoggingMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DefoggingMode_(struct soap *soap, tt__DefoggingMode_ *p) -{ - if (::soap_read_tt__DefoggingMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ToneCompensationMode__DEFINED -#define SOAP_TYPE_tt__ToneCompensationMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationMode_(struct soap*, const char*, int, const tt__ToneCompensationMode_ *, const char*); -SOAP_FMAC3 tt__ToneCompensationMode_ * SOAP_FMAC4 soap_in_tt__ToneCompensationMode_(struct soap*, const char*, tt__ToneCompensationMode_ *, const char*); -SOAP_FMAC1 tt__ToneCompensationMode_ * SOAP_FMAC2 soap_instantiate_tt__ToneCompensationMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ToneCompensationMode_ * soap_new_tt__ToneCompensationMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ToneCompensationMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__ToneCompensationMode_ * soap_new_req_tt__ToneCompensationMode_( - struct soap *soap, - enum tt__ToneCompensationMode __item) -{ - tt__ToneCompensationMode_ *_p = ::soap_new_tt__ToneCompensationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ToneCompensationMode_::__item = __item; - } - return _p; -} - -inline tt__ToneCompensationMode_ * soap_new_set_tt__ToneCompensationMode_( - struct soap *soap, - enum tt__ToneCompensationMode __item) -{ - tt__ToneCompensationMode_ *_p = ::soap_new_tt__ToneCompensationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ToneCompensationMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ToneCompensationMode_(struct soap *soap, tt__ToneCompensationMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ToneCompensationMode", p->soap_type() == SOAP_TYPE_tt__ToneCompensationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ToneCompensationMode_(struct soap *soap, const char *URL, tt__ToneCompensationMode_ 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, "tt:ToneCompensationMode", p->soap_type() == SOAP_TYPE_tt__ToneCompensationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ToneCompensationMode_(struct soap *soap, const char *URL, tt__ToneCompensationMode_ 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, "tt:ToneCompensationMode", p->soap_type() == SOAP_TYPE_tt__ToneCompensationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ToneCompensationMode_(struct soap *soap, const char *URL, tt__ToneCompensationMode_ 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, "tt:ToneCompensationMode", p->soap_type() == SOAP_TYPE_tt__ToneCompensationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ToneCompensationMode_ * SOAP_FMAC4 soap_get_tt__ToneCompensationMode_(struct soap*, tt__ToneCompensationMode_ *, const char*, const char*); - -inline int soap_read_tt__ToneCompensationMode_(struct soap *soap, tt__ToneCompensationMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ToneCompensationMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ToneCompensationMode_(struct soap *soap, const char *URL, tt__ToneCompensationMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ToneCompensationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ToneCompensationMode_(struct soap *soap, tt__ToneCompensationMode_ *p) -{ - if (::soap_read_tt__ToneCompensationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterAutoBoundaryType__DEFINED -#define SOAP_TYPE_tt__IrCutFilterAutoBoundaryType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoBoundaryType_(struct soap*, const char*, int, const tt__IrCutFilterAutoBoundaryType_ *, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoBoundaryType_ * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoBoundaryType_(struct soap*, const char*, tt__IrCutFilterAutoBoundaryType_ *, const char*); -SOAP_FMAC1 tt__IrCutFilterAutoBoundaryType_ * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoBoundaryType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IrCutFilterAutoBoundaryType_ * soap_new_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IrCutFilterAutoBoundaryType_(soap, n, NULL, NULL, NULL); -} - -inline tt__IrCutFilterAutoBoundaryType_ * soap_new_req_tt__IrCutFilterAutoBoundaryType_( - struct soap *soap, - enum tt__IrCutFilterAutoBoundaryType __item) -{ - tt__IrCutFilterAutoBoundaryType_ *_p = ::soap_new_tt__IrCutFilterAutoBoundaryType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoBoundaryType_::__item = __item; - } - return _p; -} - -inline tt__IrCutFilterAutoBoundaryType_ * soap_new_set_tt__IrCutFilterAutoBoundaryType_( - struct soap *soap, - enum tt__IrCutFilterAutoBoundaryType __item) -{ - tt__IrCutFilterAutoBoundaryType_ *_p = ::soap_new_tt__IrCutFilterAutoBoundaryType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoBoundaryType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, tt__IrCutFilterAutoBoundaryType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IrCutFilterAutoBoundaryType", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, const char *URL, tt__IrCutFilterAutoBoundaryType_ 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, "tt:IrCutFilterAutoBoundaryType", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, const char *URL, tt__IrCutFilterAutoBoundaryType_ 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, "tt:IrCutFilterAutoBoundaryType", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, const char *URL, tt__IrCutFilterAutoBoundaryType_ 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, "tt:IrCutFilterAutoBoundaryType", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoBoundaryType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IrCutFilterAutoBoundaryType_ * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoBoundaryType_(struct soap*, tt__IrCutFilterAutoBoundaryType_ *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, tt__IrCutFilterAutoBoundaryType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterAutoBoundaryType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, const char *URL, tt__IrCutFilterAutoBoundaryType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterAutoBoundaryType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterAutoBoundaryType_(struct soap *soap, tt__IrCutFilterAutoBoundaryType_ *p) -{ - if (::soap_read_tt__IrCutFilterAutoBoundaryType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageStabilizationMode__DEFINED -#define SOAP_TYPE_tt__ImageStabilizationMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationMode_(struct soap*, const char*, int, const tt__ImageStabilizationMode_ *, const char*); -SOAP_FMAC3 tt__ImageStabilizationMode_ * SOAP_FMAC4 soap_in_tt__ImageStabilizationMode_(struct soap*, const char*, tt__ImageStabilizationMode_ *, const char*); -SOAP_FMAC1 tt__ImageStabilizationMode_ * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImageStabilizationMode_ * soap_new_tt__ImageStabilizationMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImageStabilizationMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__ImageStabilizationMode_ * soap_new_req_tt__ImageStabilizationMode_( - struct soap *soap, - enum tt__ImageStabilizationMode __item) -{ - tt__ImageStabilizationMode_ *_p = ::soap_new_tt__ImageStabilizationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilizationMode_::__item = __item; - } - return _p; -} - -inline tt__ImageStabilizationMode_ * soap_new_set_tt__ImageStabilizationMode_( - struct soap *soap, - enum tt__ImageStabilizationMode __item) -{ - tt__ImageStabilizationMode_ *_p = ::soap_new_tt__ImageStabilizationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilizationMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ImageStabilizationMode_(struct soap *soap, tt__ImageStabilizationMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImageStabilizationMode", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageStabilizationMode_(struct soap *soap, const char *URL, tt__ImageStabilizationMode_ 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, "tt:ImageStabilizationMode", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageStabilizationMode_(struct soap *soap, const char *URL, tt__ImageStabilizationMode_ 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, "tt:ImageStabilizationMode", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageStabilizationMode_(struct soap *soap, const char *URL, tt__ImageStabilizationMode_ 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, "tt:ImageStabilizationMode", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImageStabilizationMode_ * SOAP_FMAC4 soap_get_tt__ImageStabilizationMode_(struct soap*, tt__ImageStabilizationMode_ *, const char*, const char*); - -inline int soap_read_tt__ImageStabilizationMode_(struct soap *soap, tt__ImageStabilizationMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImageStabilizationMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageStabilizationMode_(struct soap *soap, const char *URL, tt__ImageStabilizationMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageStabilizationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageStabilizationMode_(struct soap *soap, tt__ImageStabilizationMode_ *p) -{ - if (::soap_read_tt__ImageStabilizationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterMode__DEFINED -#define SOAP_TYPE_tt__IrCutFilterMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterMode_(struct soap*, const char*, int, const tt__IrCutFilterMode_ *, const char*); -SOAP_FMAC3 tt__IrCutFilterMode_ * SOAP_FMAC4 soap_in_tt__IrCutFilterMode_(struct soap*, const char*, tt__IrCutFilterMode_ *, const char*); -SOAP_FMAC1 tt__IrCutFilterMode_ * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IrCutFilterMode_ * soap_new_tt__IrCutFilterMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IrCutFilterMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__IrCutFilterMode_ * soap_new_req_tt__IrCutFilterMode_( - struct soap *soap, - enum tt__IrCutFilterMode __item) -{ - tt__IrCutFilterMode_ *_p = ::soap_new_tt__IrCutFilterMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterMode_::__item = __item; - } - return _p; -} - -inline tt__IrCutFilterMode_ * soap_new_set_tt__IrCutFilterMode_( - struct soap *soap, - enum tt__IrCutFilterMode __item) -{ - tt__IrCutFilterMode_ *_p = ::soap_new_tt__IrCutFilterMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IrCutFilterMode_(struct soap *soap, tt__IrCutFilterMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IrCutFilterMode", p->soap_type() == SOAP_TYPE_tt__IrCutFilterMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterMode_(struct soap *soap, const char *URL, tt__IrCutFilterMode_ 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, "tt:IrCutFilterMode", p->soap_type() == SOAP_TYPE_tt__IrCutFilterMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterMode_(struct soap *soap, const char *URL, tt__IrCutFilterMode_ 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, "tt:IrCutFilterMode", p->soap_type() == SOAP_TYPE_tt__IrCutFilterMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterMode_(struct soap *soap, const char *URL, tt__IrCutFilterMode_ 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, "tt:IrCutFilterMode", p->soap_type() == SOAP_TYPE_tt__IrCutFilterMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IrCutFilterMode_ * SOAP_FMAC4 soap_get_tt__IrCutFilterMode_(struct soap*, tt__IrCutFilterMode_ *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterMode_(struct soap *soap, tt__IrCutFilterMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterMode_(struct soap *soap, const char *URL, tt__IrCutFilterMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterMode_(struct soap *soap, tt__IrCutFilterMode_ *p) -{ - if (::soap_read_tt__IrCutFilterMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalanceMode__DEFINED -#define SOAP_TYPE_tt__WhiteBalanceMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceMode_(struct soap*, const char*, int, const tt__WhiteBalanceMode_ *, const char*); -SOAP_FMAC3 tt__WhiteBalanceMode_ * SOAP_FMAC4 soap_in_tt__WhiteBalanceMode_(struct soap*, const char*, tt__WhiteBalanceMode_ *, const char*); -SOAP_FMAC1 tt__WhiteBalanceMode_ * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WhiteBalanceMode_ * soap_new_tt__WhiteBalanceMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WhiteBalanceMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__WhiteBalanceMode_ * soap_new_req_tt__WhiteBalanceMode_( - struct soap *soap, - enum tt__WhiteBalanceMode __item) -{ - tt__WhiteBalanceMode_ *_p = ::soap_new_tt__WhiteBalanceMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalanceMode_::__item = __item; - } - return _p; -} - -inline tt__WhiteBalanceMode_ * soap_new_set_tt__WhiteBalanceMode_( - struct soap *soap, - enum tt__WhiteBalanceMode __item) -{ - tt__WhiteBalanceMode_ *_p = ::soap_new_tt__WhiteBalanceMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalanceMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__WhiteBalanceMode_(struct soap *soap, tt__WhiteBalanceMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WhiteBalanceMode", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalanceMode_(struct soap *soap, const char *URL, tt__WhiteBalanceMode_ 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, "tt:WhiteBalanceMode", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalanceMode_(struct soap *soap, const char *URL, tt__WhiteBalanceMode_ 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, "tt:WhiteBalanceMode", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalanceMode_(struct soap *soap, const char *URL, tt__WhiteBalanceMode_ 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, "tt:WhiteBalanceMode", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WhiteBalanceMode_ * SOAP_FMAC4 soap_get_tt__WhiteBalanceMode_(struct soap*, tt__WhiteBalanceMode_ *, const char*, const char*); - -inline int soap_read_tt__WhiteBalanceMode_(struct soap *soap, tt__WhiteBalanceMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalanceMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalanceMode_(struct soap *soap, const char *URL, tt__WhiteBalanceMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalanceMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalanceMode_(struct soap *soap, tt__WhiteBalanceMode_ *p) -{ - if (::soap_read_tt__WhiteBalanceMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Enabled__DEFINED -#define SOAP_TYPE_tt__Enabled__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Enabled_(struct soap*, const char*, int, const tt__Enabled_ *, const char*); -SOAP_FMAC3 tt__Enabled_ * SOAP_FMAC4 soap_in_tt__Enabled_(struct soap*, const char*, tt__Enabled_ *, const char*); -SOAP_FMAC1 tt__Enabled_ * SOAP_FMAC2 soap_instantiate_tt__Enabled_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Enabled_ * soap_new_tt__Enabled_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Enabled_(soap, n, NULL, NULL, NULL); -} - -inline tt__Enabled_ * soap_new_req_tt__Enabled_( - struct soap *soap, - enum tt__Enabled __item) -{ - tt__Enabled_ *_p = ::soap_new_tt__Enabled_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Enabled_::__item = __item; - } - return _p; -} - -inline tt__Enabled_ * soap_new_set_tt__Enabled_( - struct soap *soap, - enum tt__Enabled __item) -{ - tt__Enabled_ *_p = ::soap_new_tt__Enabled_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Enabled_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Enabled_(struct soap *soap, tt__Enabled_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Enabled", p->soap_type() == SOAP_TYPE_tt__Enabled_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Enabled_(struct soap *soap, const char *URL, tt__Enabled_ 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, "tt:Enabled", p->soap_type() == SOAP_TYPE_tt__Enabled_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Enabled_(struct soap *soap, const char *URL, tt__Enabled_ 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, "tt:Enabled", p->soap_type() == SOAP_TYPE_tt__Enabled_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Enabled_(struct soap *soap, const char *URL, tt__Enabled_ 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, "tt:Enabled", p->soap_type() == SOAP_TYPE_tt__Enabled_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Enabled_ * SOAP_FMAC4 soap_get_tt__Enabled_(struct soap*, tt__Enabled_ *, const char*, const char*); - -inline int soap_read_tt__Enabled_(struct soap *soap, tt__Enabled_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Enabled_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Enabled_(struct soap *soap, const char *URL, tt__Enabled_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Enabled_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Enabled_(struct soap *soap, tt__Enabled_ *p) -{ - if (::soap_read_tt__Enabled_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ExposureMode__DEFINED -#define SOAP_TYPE_tt__ExposureMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureMode_(struct soap*, const char*, int, const tt__ExposureMode_ *, const char*); -SOAP_FMAC3 tt__ExposureMode_ * SOAP_FMAC4 soap_in_tt__ExposureMode_(struct soap*, const char*, tt__ExposureMode_ *, const char*); -SOAP_FMAC1 tt__ExposureMode_ * SOAP_FMAC2 soap_instantiate_tt__ExposureMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ExposureMode_ * soap_new_tt__ExposureMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ExposureMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__ExposureMode_ * soap_new_req_tt__ExposureMode_( - struct soap *soap, - enum tt__ExposureMode __item) -{ - tt__ExposureMode_ *_p = ::soap_new_tt__ExposureMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposureMode_::__item = __item; - } - return _p; -} - -inline tt__ExposureMode_ * soap_new_set_tt__ExposureMode_( - struct soap *soap, - enum tt__ExposureMode __item) -{ - tt__ExposureMode_ *_p = ::soap_new_tt__ExposureMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposureMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ExposureMode_(struct soap *soap, tt__ExposureMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ExposureMode", p->soap_type() == SOAP_TYPE_tt__ExposureMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ExposureMode_(struct soap *soap, const char *URL, tt__ExposureMode_ 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, "tt:ExposureMode", p->soap_type() == SOAP_TYPE_tt__ExposureMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ExposureMode_(struct soap *soap, const char *URL, tt__ExposureMode_ 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, "tt:ExposureMode", p->soap_type() == SOAP_TYPE_tt__ExposureMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ExposureMode_(struct soap *soap, const char *URL, tt__ExposureMode_ 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, "tt:ExposureMode", p->soap_type() == SOAP_TYPE_tt__ExposureMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ExposureMode_ * SOAP_FMAC4 soap_get_tt__ExposureMode_(struct soap*, tt__ExposureMode_ *, const char*, const char*); - -inline int soap_read_tt__ExposureMode_(struct soap *soap, tt__ExposureMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ExposureMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ExposureMode_(struct soap *soap, const char *URL, tt__ExposureMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ExposureMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ExposureMode_(struct soap *soap, tt__ExposureMode_ *p) -{ - if (::soap_read_tt__ExposureMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ExposurePriority__DEFINED -#define SOAP_TYPE_tt__ExposurePriority__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposurePriority_(struct soap*, const char*, int, const tt__ExposurePriority_ *, const char*); -SOAP_FMAC3 tt__ExposurePriority_ * SOAP_FMAC4 soap_in_tt__ExposurePriority_(struct soap*, const char*, tt__ExposurePriority_ *, const char*); -SOAP_FMAC1 tt__ExposurePriority_ * SOAP_FMAC2 soap_instantiate_tt__ExposurePriority_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ExposurePriority_ * soap_new_tt__ExposurePriority_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ExposurePriority_(soap, n, NULL, NULL, NULL); -} - -inline tt__ExposurePriority_ * soap_new_req_tt__ExposurePriority_( - struct soap *soap, - enum tt__ExposurePriority __item) -{ - tt__ExposurePriority_ *_p = ::soap_new_tt__ExposurePriority_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposurePriority_::__item = __item; - } - return _p; -} - -inline tt__ExposurePriority_ * soap_new_set_tt__ExposurePriority_( - struct soap *soap, - enum tt__ExposurePriority __item) -{ - tt__ExposurePriority_ *_p = ::soap_new_tt__ExposurePriority_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposurePriority_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ExposurePriority_(struct soap *soap, tt__ExposurePriority_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ExposurePriority", p->soap_type() == SOAP_TYPE_tt__ExposurePriority_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ExposurePriority_(struct soap *soap, const char *URL, tt__ExposurePriority_ 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, "tt:ExposurePriority", p->soap_type() == SOAP_TYPE_tt__ExposurePriority_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ExposurePriority_(struct soap *soap, const char *URL, tt__ExposurePriority_ 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, "tt:ExposurePriority", p->soap_type() == SOAP_TYPE_tt__ExposurePriority_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ExposurePriority_(struct soap *soap, const char *URL, tt__ExposurePriority_ 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, "tt:ExposurePriority", p->soap_type() == SOAP_TYPE_tt__ExposurePriority_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ExposurePriority_ * SOAP_FMAC4 soap_get_tt__ExposurePriority_(struct soap*, tt__ExposurePriority_ *, const char*, const char*); - -inline int soap_read_tt__ExposurePriority_(struct soap *soap, tt__ExposurePriority_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ExposurePriority_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ExposurePriority_(struct soap *soap, const char *URL, tt__ExposurePriority_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ExposurePriority_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ExposurePriority_(struct soap *soap, tt__ExposurePriority_ *p) -{ - if (::soap_read_tt__ExposurePriority_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BacklightCompensationMode__DEFINED -#define SOAP_TYPE_tt__BacklightCompensationMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationMode_(struct soap*, const char*, int, const tt__BacklightCompensationMode_ *, const char*); -SOAP_FMAC3 tt__BacklightCompensationMode_ * SOAP_FMAC4 soap_in_tt__BacklightCompensationMode_(struct soap*, const char*, tt__BacklightCompensationMode_ *, const char*); -SOAP_FMAC1 tt__BacklightCompensationMode_ * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensationMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__BacklightCompensationMode_ * soap_new_tt__BacklightCompensationMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__BacklightCompensationMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__BacklightCompensationMode_ * soap_new_req_tt__BacklightCompensationMode_( - struct soap *soap, - enum tt__BacklightCompensationMode __item) -{ - tt__BacklightCompensationMode_ *_p = ::soap_new_tt__BacklightCompensationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensationMode_::__item = __item; - } - return _p; -} - -inline tt__BacklightCompensationMode_ * soap_new_set_tt__BacklightCompensationMode_( - struct soap *soap, - enum tt__BacklightCompensationMode __item) -{ - tt__BacklightCompensationMode_ *_p = ::soap_new_tt__BacklightCompensationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensationMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__BacklightCompensationMode_(struct soap *soap, tt__BacklightCompensationMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:BacklightCompensationMode", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__BacklightCompensationMode_(struct soap *soap, const char *URL, tt__BacklightCompensationMode_ 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, "tt:BacklightCompensationMode", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BacklightCompensationMode_(struct soap *soap, const char *URL, tt__BacklightCompensationMode_ 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, "tt:BacklightCompensationMode", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BacklightCompensationMode_(struct soap *soap, const char *URL, tt__BacklightCompensationMode_ 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, "tt:BacklightCompensationMode", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__BacklightCompensationMode_ * SOAP_FMAC4 soap_get_tt__BacklightCompensationMode_(struct soap*, tt__BacklightCompensationMode_ *, const char*, const char*); - -inline int soap_read_tt__BacklightCompensationMode_(struct soap *soap, tt__BacklightCompensationMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__BacklightCompensationMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BacklightCompensationMode_(struct soap *soap, const char *URL, tt__BacklightCompensationMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BacklightCompensationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BacklightCompensationMode_(struct soap *soap, tt__BacklightCompensationMode_ *p) -{ - if (::soap_read_tt__BacklightCompensationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WideDynamicMode__DEFINED -#define SOAP_TYPE_tt__WideDynamicMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicMode_(struct soap*, const char*, int, const tt__WideDynamicMode_ *, const char*); -SOAP_FMAC3 tt__WideDynamicMode_ * SOAP_FMAC4 soap_in_tt__WideDynamicMode_(struct soap*, const char*, tt__WideDynamicMode_ *, const char*); -SOAP_FMAC1 tt__WideDynamicMode_ * SOAP_FMAC2 soap_instantiate_tt__WideDynamicMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WideDynamicMode_ * soap_new_tt__WideDynamicMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WideDynamicMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__WideDynamicMode_ * soap_new_req_tt__WideDynamicMode_( - struct soap *soap, - enum tt__WideDynamicMode __item) -{ - tt__WideDynamicMode_ *_p = ::soap_new_tt__WideDynamicMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicMode_::__item = __item; - } - return _p; -} - -inline tt__WideDynamicMode_ * soap_new_set_tt__WideDynamicMode_( - struct soap *soap, - enum tt__WideDynamicMode __item) -{ - tt__WideDynamicMode_ *_p = ::soap_new_tt__WideDynamicMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__WideDynamicMode_(struct soap *soap, tt__WideDynamicMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WideDynamicMode", p->soap_type() == SOAP_TYPE_tt__WideDynamicMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WideDynamicMode_(struct soap *soap, const char *URL, tt__WideDynamicMode_ 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, "tt:WideDynamicMode", p->soap_type() == SOAP_TYPE_tt__WideDynamicMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WideDynamicMode_(struct soap *soap, const char *URL, tt__WideDynamicMode_ 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, "tt:WideDynamicMode", p->soap_type() == SOAP_TYPE_tt__WideDynamicMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WideDynamicMode_(struct soap *soap, const char *URL, tt__WideDynamicMode_ 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, "tt:WideDynamicMode", p->soap_type() == SOAP_TYPE_tt__WideDynamicMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WideDynamicMode_ * SOAP_FMAC4 soap_get_tt__WideDynamicMode_(struct soap*, tt__WideDynamicMode_ *, const char*, const char*); - -inline int soap_read_tt__WideDynamicMode_(struct soap *soap, tt__WideDynamicMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WideDynamicMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WideDynamicMode_(struct soap *soap, const char *URL, tt__WideDynamicMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WideDynamicMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WideDynamicMode_(struct soap *soap, tt__WideDynamicMode_ *p) -{ - if (::soap_read_tt__WideDynamicMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AFModes__DEFINED -#define SOAP_TYPE_tt__AFModes__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AFModes_(struct soap*, const char*, int, const tt__AFModes_ *, const char*); -SOAP_FMAC3 tt__AFModes_ * SOAP_FMAC4 soap_in_tt__AFModes_(struct soap*, const char*, tt__AFModes_ *, const char*); -SOAP_FMAC1 tt__AFModes_ * SOAP_FMAC2 soap_instantiate_tt__AFModes_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AFModes_ * soap_new_tt__AFModes_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AFModes_(soap, n, NULL, NULL, NULL); -} - -inline tt__AFModes_ * soap_new_req_tt__AFModes_( - struct soap *soap, - enum tt__AFModes __item) -{ - tt__AFModes_ *_p = ::soap_new_tt__AFModes_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AFModes_::__item = __item; - } - return _p; -} - -inline tt__AFModes_ * soap_new_set_tt__AFModes_( - struct soap *soap, - enum tt__AFModes __item) -{ - tt__AFModes_ *_p = ::soap_new_tt__AFModes_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AFModes_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__AFModes_(struct soap *soap, tt__AFModes_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AFModes", p->soap_type() == SOAP_TYPE_tt__AFModes_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AFModes_(struct soap *soap, const char *URL, tt__AFModes_ 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, "tt:AFModes", p->soap_type() == SOAP_TYPE_tt__AFModes_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AFModes_(struct soap *soap, const char *URL, tt__AFModes_ 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, "tt:AFModes", p->soap_type() == SOAP_TYPE_tt__AFModes_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AFModes_(struct soap *soap, const char *URL, tt__AFModes_ 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, "tt:AFModes", p->soap_type() == SOAP_TYPE_tt__AFModes_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AFModes_ * SOAP_FMAC4 soap_get_tt__AFModes_(struct soap*, tt__AFModes_ *, const char*, const char*); - -inline int soap_read_tt__AFModes_(struct soap *soap, tt__AFModes_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AFModes_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AFModes_(struct soap *soap, const char *URL, tt__AFModes_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AFModes_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AFModes_(struct soap *soap, tt__AFModes_ *p) -{ - if (::soap_read_tt__AFModes_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AutoFocusMode__DEFINED -#define SOAP_TYPE_tt__AutoFocusMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AutoFocusMode_(struct soap*, const char*, int, const tt__AutoFocusMode_ *, const char*); -SOAP_FMAC3 tt__AutoFocusMode_ * SOAP_FMAC4 soap_in_tt__AutoFocusMode_(struct soap*, const char*, tt__AutoFocusMode_ *, const char*); -SOAP_FMAC1 tt__AutoFocusMode_ * SOAP_FMAC2 soap_instantiate_tt__AutoFocusMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AutoFocusMode_ * soap_new_tt__AutoFocusMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AutoFocusMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__AutoFocusMode_ * soap_new_req_tt__AutoFocusMode_( - struct soap *soap, - enum tt__AutoFocusMode __item) -{ - tt__AutoFocusMode_ *_p = ::soap_new_tt__AutoFocusMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AutoFocusMode_::__item = __item; - } - return _p; -} - -inline tt__AutoFocusMode_ * soap_new_set_tt__AutoFocusMode_( - struct soap *soap, - enum tt__AutoFocusMode __item) -{ - tt__AutoFocusMode_ *_p = ::soap_new_tt__AutoFocusMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AutoFocusMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__AutoFocusMode_(struct soap *soap, tt__AutoFocusMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AutoFocusMode", p->soap_type() == SOAP_TYPE_tt__AutoFocusMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AutoFocusMode_(struct soap *soap, const char *URL, tt__AutoFocusMode_ 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, "tt:AutoFocusMode", p->soap_type() == SOAP_TYPE_tt__AutoFocusMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AutoFocusMode_(struct soap *soap, const char *URL, tt__AutoFocusMode_ 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, "tt:AutoFocusMode", p->soap_type() == SOAP_TYPE_tt__AutoFocusMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AutoFocusMode_(struct soap *soap, const char *URL, tt__AutoFocusMode_ 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, "tt:AutoFocusMode", p->soap_type() == SOAP_TYPE_tt__AutoFocusMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AutoFocusMode_ * SOAP_FMAC4 soap_get_tt__AutoFocusMode_(struct soap*, tt__AutoFocusMode_ *, const char*, const char*); - -inline int soap_read_tt__AutoFocusMode_(struct soap *soap, tt__AutoFocusMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AutoFocusMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AutoFocusMode_(struct soap *soap, const char *URL, tt__AutoFocusMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AutoFocusMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AutoFocusMode_(struct soap *soap, tt__AutoFocusMode_ *p) -{ - if (::soap_read_tt__AutoFocusMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MoveAndTrackMethod__DEFINED -#define SOAP_TYPE_tt__MoveAndTrackMethod__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveAndTrackMethod_(struct soap*, const char*, int, const tt__MoveAndTrackMethod_ *, const char*); -SOAP_FMAC3 tt__MoveAndTrackMethod_ * SOAP_FMAC4 soap_in_tt__MoveAndTrackMethod_(struct soap*, const char*, tt__MoveAndTrackMethod_ *, const char*); -SOAP_FMAC1 tt__MoveAndTrackMethod_ * SOAP_FMAC2 soap_instantiate_tt__MoveAndTrackMethod_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MoveAndTrackMethod_ * soap_new_tt__MoveAndTrackMethod_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MoveAndTrackMethod_(soap, n, NULL, NULL, NULL); -} - -inline tt__MoveAndTrackMethod_ * soap_new_req_tt__MoveAndTrackMethod_( - struct soap *soap, - enum tt__MoveAndTrackMethod __item) -{ - tt__MoveAndTrackMethod_ *_p = ::soap_new_tt__MoveAndTrackMethod_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MoveAndTrackMethod_::__item = __item; - } - return _p; -} - -inline tt__MoveAndTrackMethod_ * soap_new_set_tt__MoveAndTrackMethod_( - struct soap *soap, - enum tt__MoveAndTrackMethod __item) -{ - tt__MoveAndTrackMethod_ *_p = ::soap_new_tt__MoveAndTrackMethod_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MoveAndTrackMethod_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__MoveAndTrackMethod_(struct soap *soap, tt__MoveAndTrackMethod_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MoveAndTrackMethod", p->soap_type() == SOAP_TYPE_tt__MoveAndTrackMethod_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MoveAndTrackMethod_(struct soap *soap, const char *URL, tt__MoveAndTrackMethod_ 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, "tt:MoveAndTrackMethod", p->soap_type() == SOAP_TYPE_tt__MoveAndTrackMethod_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MoveAndTrackMethod_(struct soap *soap, const char *URL, tt__MoveAndTrackMethod_ 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, "tt:MoveAndTrackMethod", p->soap_type() == SOAP_TYPE_tt__MoveAndTrackMethod_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MoveAndTrackMethod_(struct soap *soap, const char *URL, tt__MoveAndTrackMethod_ 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, "tt:MoveAndTrackMethod", p->soap_type() == SOAP_TYPE_tt__MoveAndTrackMethod_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MoveAndTrackMethod_ * SOAP_FMAC4 soap_get_tt__MoveAndTrackMethod_(struct soap*, tt__MoveAndTrackMethod_ *, const char*, const char*); - -inline int soap_read_tt__MoveAndTrackMethod_(struct soap *soap, tt__MoveAndTrackMethod_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MoveAndTrackMethod_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MoveAndTrackMethod_(struct soap *soap, const char *URL, tt__MoveAndTrackMethod_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MoveAndTrackMethod_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MoveAndTrackMethod_(struct soap *soap, tt__MoveAndTrackMethod_ *p) -{ - if (::soap_read_tt__MoveAndTrackMethod_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourOperation__DEFINED -#define SOAP_TYPE_tt__PTZPresetTourOperation__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourOperation_(struct soap*, const char*, int, const tt__PTZPresetTourOperation_ *, const char*); -SOAP_FMAC3 tt__PTZPresetTourOperation_ * SOAP_FMAC4 soap_in_tt__PTZPresetTourOperation_(struct soap*, const char*, tt__PTZPresetTourOperation_ *, const char*); -SOAP_FMAC1 tt__PTZPresetTourOperation_ * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourOperation_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourOperation_ * soap_new_tt__PTZPresetTourOperation_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourOperation_(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourOperation_ * soap_new_req_tt__PTZPresetTourOperation_( - struct soap *soap, - enum tt__PTZPresetTourOperation __item) -{ - tt__PTZPresetTourOperation_ *_p = ::soap_new_tt__PTZPresetTourOperation_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourOperation_::__item = __item; - } - return _p; -} - -inline tt__PTZPresetTourOperation_ * soap_new_set_tt__PTZPresetTourOperation_( - struct soap *soap, - enum tt__PTZPresetTourOperation __item) -{ - tt__PTZPresetTourOperation_ *_p = ::soap_new_tt__PTZPresetTourOperation_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourOperation_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourOperation_(struct soap *soap, tt__PTZPresetTourOperation_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourOperation", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOperation_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourOperation_(struct soap *soap, const char *URL, tt__PTZPresetTourOperation_ 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, "tt:PTZPresetTourOperation", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOperation_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourOperation_(struct soap *soap, const char *URL, tt__PTZPresetTourOperation_ 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, "tt:PTZPresetTourOperation", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOperation_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourOperation_(struct soap *soap, const char *URL, tt__PTZPresetTourOperation_ 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, "tt:PTZPresetTourOperation", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOperation_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourOperation_ * SOAP_FMAC4 soap_get_tt__PTZPresetTourOperation_(struct soap*, tt__PTZPresetTourOperation_ *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourOperation_(struct soap *soap, tt__PTZPresetTourOperation_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourOperation_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourOperation_(struct soap *soap, const char *URL, tt__PTZPresetTourOperation_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourOperation_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourOperation_(struct soap *soap, tt__PTZPresetTourOperation_ *p) -{ - if (::soap_read_tt__PTZPresetTourOperation_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourDirection__DEFINED -#define SOAP_TYPE_tt__PTZPresetTourDirection__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourDirection_(struct soap*, const char*, int, const tt__PTZPresetTourDirection_ *, const char*); -SOAP_FMAC3 tt__PTZPresetTourDirection_ * SOAP_FMAC4 soap_in_tt__PTZPresetTourDirection_(struct soap*, const char*, tt__PTZPresetTourDirection_ *, const char*); -SOAP_FMAC1 tt__PTZPresetTourDirection_ * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourDirection_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourDirection_ * soap_new_tt__PTZPresetTourDirection_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourDirection_(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourDirection_ * soap_new_req_tt__PTZPresetTourDirection_( - struct soap *soap, - enum tt__PTZPresetTourDirection __item) -{ - tt__PTZPresetTourDirection_ *_p = ::soap_new_tt__PTZPresetTourDirection_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourDirection_::__item = __item; - } - return _p; -} - -inline tt__PTZPresetTourDirection_ * soap_new_set_tt__PTZPresetTourDirection_( - struct soap *soap, - enum tt__PTZPresetTourDirection __item) -{ - tt__PTZPresetTourDirection_ *_p = ::soap_new_tt__PTZPresetTourDirection_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourDirection_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourDirection_(struct soap *soap, tt__PTZPresetTourDirection_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourDirection", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourDirection_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourDirection_(struct soap *soap, const char *URL, tt__PTZPresetTourDirection_ 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, "tt:PTZPresetTourDirection", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourDirection_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourDirection_(struct soap *soap, const char *URL, tt__PTZPresetTourDirection_ 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, "tt:PTZPresetTourDirection", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourDirection_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourDirection_(struct soap *soap, const char *URL, tt__PTZPresetTourDirection_ 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, "tt:PTZPresetTourDirection", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourDirection_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourDirection_ * SOAP_FMAC4 soap_get_tt__PTZPresetTourDirection_(struct soap*, tt__PTZPresetTourDirection_ *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourDirection_(struct soap *soap, tt__PTZPresetTourDirection_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourDirection_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourDirection_(struct soap *soap, const char *URL, tt__PTZPresetTourDirection_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourDirection_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourDirection_(struct soap *soap, tt__PTZPresetTourDirection_ *p) -{ - if (::soap_read_tt__PTZPresetTourDirection_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourState__DEFINED -#define SOAP_TYPE_tt__PTZPresetTourState__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourState_(struct soap*, const char*, int, const tt__PTZPresetTourState_ *, const char*); -SOAP_FMAC3 tt__PTZPresetTourState_ * SOAP_FMAC4 soap_in_tt__PTZPresetTourState_(struct soap*, const char*, tt__PTZPresetTourState_ *, const char*); -SOAP_FMAC1 tt__PTZPresetTourState_ * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourState_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourState_ * soap_new_tt__PTZPresetTourState_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourState_(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourState_ * soap_new_req_tt__PTZPresetTourState_( - struct soap *soap, - enum tt__PTZPresetTourState __item) -{ - tt__PTZPresetTourState_ *_p = ::soap_new_tt__PTZPresetTourState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourState_::__item = __item; - } - return _p; -} - -inline tt__PTZPresetTourState_ * soap_new_set_tt__PTZPresetTourState_( - struct soap *soap, - enum tt__PTZPresetTourState __item) -{ - tt__PTZPresetTourState_ *_p = ::soap_new_tt__PTZPresetTourState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourState_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourState_(struct soap *soap, tt__PTZPresetTourState_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourState", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourState_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourState_(struct soap *soap, const char *URL, tt__PTZPresetTourState_ 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, "tt:PTZPresetTourState", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourState_(struct soap *soap, const char *URL, tt__PTZPresetTourState_ 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, "tt:PTZPresetTourState", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourState_(struct soap *soap, const char *URL, tt__PTZPresetTourState_ 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, "tt:PTZPresetTourState", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourState_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourState_ * SOAP_FMAC4 soap_get_tt__PTZPresetTourState_(struct soap*, tt__PTZPresetTourState_ *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourState_(struct soap *soap, tt__PTZPresetTourState_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourState_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourState_(struct soap *soap, const char *URL, tt__PTZPresetTourState_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourState_(struct soap *soap, tt__PTZPresetTourState_ *p) -{ - if (::soap_read_tt__PTZPresetTourState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AuxiliaryData___DEFINED -#define SOAP_TYPE_tt__AuxiliaryData___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AuxiliaryData__(struct soap*, const char*, int, const tt__AuxiliaryData__ *, const char*); -SOAP_FMAC3 tt__AuxiliaryData__ * SOAP_FMAC4 soap_in_tt__AuxiliaryData__(struct soap*, const char*, tt__AuxiliaryData__ *, const char*); -SOAP_FMAC1 tt__AuxiliaryData__ * SOAP_FMAC2 soap_instantiate_tt__AuxiliaryData__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AuxiliaryData__ * soap_new_tt__AuxiliaryData__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AuxiliaryData__(soap, n, NULL, NULL, NULL); -} - -inline tt__AuxiliaryData__ * soap_new_req_tt__AuxiliaryData__( - struct soap *soap, - const std::string& __item) -{ - tt__AuxiliaryData__ *_p = ::soap_new_tt__AuxiliaryData__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AuxiliaryData__::__item = __item; - } - return _p; -} - -inline tt__AuxiliaryData__ * soap_new_set_tt__AuxiliaryData__( - struct soap *soap, - const std::string& __item) -{ - tt__AuxiliaryData__ *_p = ::soap_new_tt__AuxiliaryData__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AuxiliaryData__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__AuxiliaryData__(struct soap *soap, tt__AuxiliaryData__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AuxiliaryData", p->soap_type() == SOAP_TYPE_tt__AuxiliaryData__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AuxiliaryData__(struct soap *soap, const char *URL, tt__AuxiliaryData__ 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, "tt:AuxiliaryData", p->soap_type() == SOAP_TYPE_tt__AuxiliaryData__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AuxiliaryData__(struct soap *soap, const char *URL, tt__AuxiliaryData__ 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, "tt:AuxiliaryData", p->soap_type() == SOAP_TYPE_tt__AuxiliaryData__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AuxiliaryData__(struct soap *soap, const char *URL, tt__AuxiliaryData__ 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, "tt:AuxiliaryData", p->soap_type() == SOAP_TYPE_tt__AuxiliaryData__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AuxiliaryData__ * SOAP_FMAC4 soap_get_tt__AuxiliaryData__(struct soap*, tt__AuxiliaryData__ *, const char*, const char*); - -inline int soap_read_tt__AuxiliaryData__(struct soap *soap, tt__AuxiliaryData__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AuxiliaryData__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AuxiliaryData__(struct soap *soap, const char *URL, tt__AuxiliaryData__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AuxiliaryData__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AuxiliaryData__(struct soap *soap, tt__AuxiliaryData__ *p) -{ - if (::soap_read_tt__AuxiliaryData__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AuxiliaryData_DEFINED -#define SOAP_TYPE_tt__AuxiliaryData_DEFINED - -inline void soap_default_tt__AuxiliaryData(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__AuxiliaryData(struct soap*, const std::string *); - -#define soap_tt__AuxiliaryData2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AuxiliaryData(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__AuxiliaryData(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 128, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__AuxiliaryData(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__AuxiliaryData soap_instantiate_std__string - - -#define soap_new_tt__AuxiliaryData soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__AuxiliaryData(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__AuxiliaryData(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__AuxiliaryData(soap, p, "tt:AuxiliaryData", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__AuxiliaryData(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AuxiliaryData(soap, p, "tt:AuxiliaryData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AuxiliaryData(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AuxiliaryData(soap, p, "tt:AuxiliaryData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AuxiliaryData(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__AuxiliaryData(soap, p, "tt:AuxiliaryData", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__AuxiliaryData(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__AuxiliaryData(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__AuxiliaryData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AuxiliaryData(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AuxiliaryData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AuxiliaryData(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__AuxiliaryData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReverseMode__DEFINED -#define SOAP_TYPE_tt__ReverseMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseMode_(struct soap*, const char*, int, const tt__ReverseMode_ *, const char*); -SOAP_FMAC3 tt__ReverseMode_ * SOAP_FMAC4 soap_in_tt__ReverseMode_(struct soap*, const char*, tt__ReverseMode_ *, const char*); -SOAP_FMAC1 tt__ReverseMode_ * SOAP_FMAC2 soap_instantiate_tt__ReverseMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReverseMode_ * soap_new_tt__ReverseMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReverseMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__ReverseMode_ * soap_new_req_tt__ReverseMode_( - struct soap *soap, - enum tt__ReverseMode __item) -{ - tt__ReverseMode_ *_p = ::soap_new_tt__ReverseMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReverseMode_::__item = __item; - } - return _p; -} - -inline tt__ReverseMode_ * soap_new_set_tt__ReverseMode_( - struct soap *soap, - enum tt__ReverseMode __item) -{ - tt__ReverseMode_ *_p = ::soap_new_tt__ReverseMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReverseMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ReverseMode_(struct soap *soap, tt__ReverseMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReverseMode", p->soap_type() == SOAP_TYPE_tt__ReverseMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReverseMode_(struct soap *soap, const char *URL, tt__ReverseMode_ 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, "tt:ReverseMode", p->soap_type() == SOAP_TYPE_tt__ReverseMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReverseMode_(struct soap *soap, const char *URL, tt__ReverseMode_ 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, "tt:ReverseMode", p->soap_type() == SOAP_TYPE_tt__ReverseMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReverseMode_(struct soap *soap, const char *URL, tt__ReverseMode_ 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, "tt:ReverseMode", p->soap_type() == SOAP_TYPE_tt__ReverseMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReverseMode_ * SOAP_FMAC4 soap_get_tt__ReverseMode_(struct soap*, tt__ReverseMode_ *, const char*, const char*); - -inline int soap_read_tt__ReverseMode_(struct soap *soap, tt__ReverseMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReverseMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReverseMode_(struct soap *soap, const char *URL, tt__ReverseMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReverseMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReverseMode_(struct soap *soap, tt__ReverseMode_ *p) -{ - if (::soap_read_tt__ReverseMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EFlipMode__DEFINED -#define SOAP_TYPE_tt__EFlipMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipMode_(struct soap*, const char*, int, const tt__EFlipMode_ *, const char*); -SOAP_FMAC3 tt__EFlipMode_ * SOAP_FMAC4 soap_in_tt__EFlipMode_(struct soap*, const char*, tt__EFlipMode_ *, const char*); -SOAP_FMAC1 tt__EFlipMode_ * SOAP_FMAC2 soap_instantiate_tt__EFlipMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EFlipMode_ * soap_new_tt__EFlipMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EFlipMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__EFlipMode_ * soap_new_req_tt__EFlipMode_( - struct soap *soap, - enum tt__EFlipMode __item) -{ - tt__EFlipMode_ *_p = ::soap_new_tt__EFlipMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EFlipMode_::__item = __item; - } - return _p; -} - -inline tt__EFlipMode_ * soap_new_set_tt__EFlipMode_( - struct soap *soap, - enum tt__EFlipMode __item) -{ - tt__EFlipMode_ *_p = ::soap_new_tt__EFlipMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EFlipMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__EFlipMode_(struct soap *soap, tt__EFlipMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EFlipMode", p->soap_type() == SOAP_TYPE_tt__EFlipMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EFlipMode_(struct soap *soap, const char *URL, tt__EFlipMode_ 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, "tt:EFlipMode", p->soap_type() == SOAP_TYPE_tt__EFlipMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EFlipMode_(struct soap *soap, const char *URL, tt__EFlipMode_ 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, "tt:EFlipMode", p->soap_type() == SOAP_TYPE_tt__EFlipMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EFlipMode_(struct soap *soap, const char *URL, tt__EFlipMode_ 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, "tt:EFlipMode", p->soap_type() == SOAP_TYPE_tt__EFlipMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EFlipMode_ * SOAP_FMAC4 soap_get_tt__EFlipMode_(struct soap*, tt__EFlipMode_ *, const char*, const char*); - -inline int soap_read_tt__EFlipMode_(struct soap *soap, tt__EFlipMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EFlipMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EFlipMode_(struct soap *soap, const char *URL, tt__EFlipMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EFlipMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EFlipMode_(struct soap *soap, tt__EFlipMode_ *p) -{ - if (::soap_read_tt__EFlipMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DigitalIdleState__DEFINED -#define SOAP_TYPE_tt__DigitalIdleState__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DigitalIdleState_(struct soap*, const char*, int, const tt__DigitalIdleState_ *, const char*); -SOAP_FMAC3 tt__DigitalIdleState_ * SOAP_FMAC4 soap_in_tt__DigitalIdleState_(struct soap*, const char*, tt__DigitalIdleState_ *, const char*); -SOAP_FMAC1 tt__DigitalIdleState_ * SOAP_FMAC2 soap_instantiate_tt__DigitalIdleState_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DigitalIdleState_ * soap_new_tt__DigitalIdleState_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DigitalIdleState_(soap, n, NULL, NULL, NULL); -} - -inline tt__DigitalIdleState_ * soap_new_req_tt__DigitalIdleState_( - struct soap *soap, - enum tt__DigitalIdleState __item) -{ - tt__DigitalIdleState_ *_p = ::soap_new_tt__DigitalIdleState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DigitalIdleState_::__item = __item; - } - return _p; -} - -inline tt__DigitalIdleState_ * soap_new_set_tt__DigitalIdleState_( - struct soap *soap, - enum tt__DigitalIdleState __item) -{ - tt__DigitalIdleState_ *_p = ::soap_new_tt__DigitalIdleState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DigitalIdleState_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__DigitalIdleState_(struct soap *soap, tt__DigitalIdleState_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DigitalIdleState", p->soap_type() == SOAP_TYPE_tt__DigitalIdleState_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DigitalIdleState_(struct soap *soap, const char *URL, tt__DigitalIdleState_ 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, "tt:DigitalIdleState", p->soap_type() == SOAP_TYPE_tt__DigitalIdleState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DigitalIdleState_(struct soap *soap, const char *URL, tt__DigitalIdleState_ 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, "tt:DigitalIdleState", p->soap_type() == SOAP_TYPE_tt__DigitalIdleState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DigitalIdleState_(struct soap *soap, const char *URL, tt__DigitalIdleState_ 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, "tt:DigitalIdleState", p->soap_type() == SOAP_TYPE_tt__DigitalIdleState_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DigitalIdleState_ * SOAP_FMAC4 soap_get_tt__DigitalIdleState_(struct soap*, tt__DigitalIdleState_ *, const char*, const char*); - -inline int soap_read_tt__DigitalIdleState_(struct soap *soap, tt__DigitalIdleState_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DigitalIdleState_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DigitalIdleState_(struct soap *soap, const char *URL, tt__DigitalIdleState_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DigitalIdleState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DigitalIdleState_(struct soap *soap, tt__DigitalIdleState_ *p) -{ - if (::soap_read_tt__DigitalIdleState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayMode__DEFINED -#define SOAP_TYPE_tt__RelayMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayMode_(struct soap*, const char*, int, const tt__RelayMode_ *, const char*); -SOAP_FMAC3 tt__RelayMode_ * SOAP_FMAC4 soap_in_tt__RelayMode_(struct soap*, const char*, tt__RelayMode_ *, const char*); -SOAP_FMAC1 tt__RelayMode_ * SOAP_FMAC2 soap_instantiate_tt__RelayMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelayMode_ * soap_new_tt__RelayMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelayMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__RelayMode_ * soap_new_req_tt__RelayMode_( - struct soap *soap, - enum tt__RelayMode __item) -{ - tt__RelayMode_ *_p = ::soap_new_tt__RelayMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayMode_::__item = __item; - } - return _p; -} - -inline tt__RelayMode_ * soap_new_set_tt__RelayMode_( - struct soap *soap, - enum tt__RelayMode __item) -{ - tt__RelayMode_ *_p = ::soap_new_tt__RelayMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RelayMode_(struct soap *soap, tt__RelayMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelayMode", p->soap_type() == SOAP_TYPE_tt__RelayMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayMode_(struct soap *soap, const char *URL, tt__RelayMode_ 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, "tt:RelayMode", p->soap_type() == SOAP_TYPE_tt__RelayMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayMode_(struct soap *soap, const char *URL, tt__RelayMode_ 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, "tt:RelayMode", p->soap_type() == SOAP_TYPE_tt__RelayMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayMode_(struct soap *soap, const char *URL, tt__RelayMode_ 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, "tt:RelayMode", p->soap_type() == SOAP_TYPE_tt__RelayMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelayMode_ * SOAP_FMAC4 soap_get_tt__RelayMode_(struct soap*, tt__RelayMode_ *, const char*, const char*); - -inline int soap_read_tt__RelayMode_(struct soap *soap, tt__RelayMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelayMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayMode_(struct soap *soap, const char *URL, tt__RelayMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayMode_(struct soap *soap, tt__RelayMode_ *p) -{ - if (::soap_read_tt__RelayMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayIdleState__DEFINED -#define SOAP_TYPE_tt__RelayIdleState__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayIdleState_(struct soap*, const char*, int, const tt__RelayIdleState_ *, const char*); -SOAP_FMAC3 tt__RelayIdleState_ * SOAP_FMAC4 soap_in_tt__RelayIdleState_(struct soap*, const char*, tt__RelayIdleState_ *, const char*); -SOAP_FMAC1 tt__RelayIdleState_ * SOAP_FMAC2 soap_instantiate_tt__RelayIdleState_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelayIdleState_ * soap_new_tt__RelayIdleState_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelayIdleState_(soap, n, NULL, NULL, NULL); -} - -inline tt__RelayIdleState_ * soap_new_req_tt__RelayIdleState_( - struct soap *soap, - enum tt__RelayIdleState __item) -{ - tt__RelayIdleState_ *_p = ::soap_new_tt__RelayIdleState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayIdleState_::__item = __item; - } - return _p; -} - -inline tt__RelayIdleState_ * soap_new_set_tt__RelayIdleState_( - struct soap *soap, - enum tt__RelayIdleState __item) -{ - tt__RelayIdleState_ *_p = ::soap_new_tt__RelayIdleState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayIdleState_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RelayIdleState_(struct soap *soap, tt__RelayIdleState_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelayIdleState", p->soap_type() == SOAP_TYPE_tt__RelayIdleState_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayIdleState_(struct soap *soap, const char *URL, tt__RelayIdleState_ 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, "tt:RelayIdleState", p->soap_type() == SOAP_TYPE_tt__RelayIdleState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayIdleState_(struct soap *soap, const char *URL, tt__RelayIdleState_ 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, "tt:RelayIdleState", p->soap_type() == SOAP_TYPE_tt__RelayIdleState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayIdleState_(struct soap *soap, const char *URL, tt__RelayIdleState_ 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, "tt:RelayIdleState", p->soap_type() == SOAP_TYPE_tt__RelayIdleState_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelayIdleState_ * SOAP_FMAC4 soap_get_tt__RelayIdleState_(struct soap*, tt__RelayIdleState_ *, const char*, const char*); - -inline int soap_read_tt__RelayIdleState_(struct soap *soap, tt__RelayIdleState_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelayIdleState_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayIdleState_(struct soap *soap, const char *URL, tt__RelayIdleState_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayIdleState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayIdleState_(struct soap *soap, tt__RelayIdleState_ *p) -{ - if (::soap_read_tt__RelayIdleState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayLogicalState__DEFINED -#define SOAP_TYPE_tt__RelayLogicalState__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayLogicalState_(struct soap*, const char*, int, const tt__RelayLogicalState_ *, const char*); -SOAP_FMAC3 tt__RelayLogicalState_ * SOAP_FMAC4 soap_in_tt__RelayLogicalState_(struct soap*, const char*, tt__RelayLogicalState_ *, const char*); -SOAP_FMAC1 tt__RelayLogicalState_ * SOAP_FMAC2 soap_instantiate_tt__RelayLogicalState_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelayLogicalState_ * soap_new_tt__RelayLogicalState_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelayLogicalState_(soap, n, NULL, NULL, NULL); -} - -inline tt__RelayLogicalState_ * soap_new_req_tt__RelayLogicalState_( - struct soap *soap, - enum tt__RelayLogicalState __item) -{ - tt__RelayLogicalState_ *_p = ::soap_new_tt__RelayLogicalState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayLogicalState_::__item = __item; - } - return _p; -} - -inline tt__RelayLogicalState_ * soap_new_set_tt__RelayLogicalState_( - struct soap *soap, - enum tt__RelayLogicalState __item) -{ - tt__RelayLogicalState_ *_p = ::soap_new_tt__RelayLogicalState_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayLogicalState_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RelayLogicalState_(struct soap *soap, tt__RelayLogicalState_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelayLogicalState", p->soap_type() == SOAP_TYPE_tt__RelayLogicalState_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayLogicalState_(struct soap *soap, const char *URL, tt__RelayLogicalState_ 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, "tt:RelayLogicalState", p->soap_type() == SOAP_TYPE_tt__RelayLogicalState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayLogicalState_(struct soap *soap, const char *URL, tt__RelayLogicalState_ 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, "tt:RelayLogicalState", p->soap_type() == SOAP_TYPE_tt__RelayLogicalState_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayLogicalState_(struct soap *soap, const char *URL, tt__RelayLogicalState_ 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, "tt:RelayLogicalState", p->soap_type() == SOAP_TYPE_tt__RelayLogicalState_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelayLogicalState_ * SOAP_FMAC4 soap_get_tt__RelayLogicalState_(struct soap*, tt__RelayLogicalState_ *, const char*, const char*); - -inline int soap_read_tt__RelayLogicalState_(struct soap *soap, tt__RelayLogicalState_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelayLogicalState_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayLogicalState_(struct soap *soap, const char *URL, tt__RelayLogicalState_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayLogicalState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayLogicalState_(struct soap *soap, tt__RelayLogicalState_ *p) -{ - if (::soap_read_tt__RelayLogicalState_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__UserLevel__DEFINED -#define SOAP_TYPE_tt__UserLevel__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__UserLevel_(struct soap*, const char*, int, const tt__UserLevel_ *, const char*); -SOAP_FMAC3 tt__UserLevel_ * SOAP_FMAC4 soap_in_tt__UserLevel_(struct soap*, const char*, tt__UserLevel_ *, const char*); -SOAP_FMAC1 tt__UserLevel_ * SOAP_FMAC2 soap_instantiate_tt__UserLevel_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__UserLevel_ * soap_new_tt__UserLevel_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__UserLevel_(soap, n, NULL, NULL, NULL); -} - -inline tt__UserLevel_ * soap_new_req_tt__UserLevel_( - struct soap *soap, - enum tt__UserLevel __item) -{ - tt__UserLevel_ *_p = ::soap_new_tt__UserLevel_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__UserLevel_::__item = __item; - } - return _p; -} - -inline tt__UserLevel_ * soap_new_set_tt__UserLevel_( - struct soap *soap, - enum tt__UserLevel __item) -{ - tt__UserLevel_ *_p = ::soap_new_tt__UserLevel_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__UserLevel_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__UserLevel_(struct soap *soap, tt__UserLevel_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:UserLevel", p->soap_type() == SOAP_TYPE_tt__UserLevel_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__UserLevel_(struct soap *soap, const char *URL, tt__UserLevel_ 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, "tt:UserLevel", p->soap_type() == SOAP_TYPE_tt__UserLevel_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__UserLevel_(struct soap *soap, const char *URL, tt__UserLevel_ 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, "tt:UserLevel", p->soap_type() == SOAP_TYPE_tt__UserLevel_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__UserLevel_(struct soap *soap, const char *URL, tt__UserLevel_ 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, "tt:UserLevel", p->soap_type() == SOAP_TYPE_tt__UserLevel_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__UserLevel_ * SOAP_FMAC4 soap_get_tt__UserLevel_(struct soap*, tt__UserLevel_ *, const char*, const char*); - -inline int soap_read_tt__UserLevel_(struct soap *soap, tt__UserLevel_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__UserLevel_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__UserLevel_(struct soap *soap, const char *URL, tt__UserLevel_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__UserLevel_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__UserLevel_(struct soap *soap, tt__UserLevel_ *p) -{ - if (::soap_read_tt__UserLevel_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SetDateTimeType__DEFINED -#define SOAP_TYPE_tt__SetDateTimeType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SetDateTimeType_(struct soap*, const char*, int, const tt__SetDateTimeType_ *, const char*); -SOAP_FMAC3 tt__SetDateTimeType_ * SOAP_FMAC4 soap_in_tt__SetDateTimeType_(struct soap*, const char*, tt__SetDateTimeType_ *, const char*); -SOAP_FMAC1 tt__SetDateTimeType_ * SOAP_FMAC2 soap_instantiate_tt__SetDateTimeType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SetDateTimeType_ * soap_new_tt__SetDateTimeType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SetDateTimeType_(soap, n, NULL, NULL, NULL); -} - -inline tt__SetDateTimeType_ * soap_new_req_tt__SetDateTimeType_( - struct soap *soap, - enum tt__SetDateTimeType __item) -{ - tt__SetDateTimeType_ *_p = ::soap_new_tt__SetDateTimeType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SetDateTimeType_::__item = __item; - } - return _p; -} - -inline tt__SetDateTimeType_ * soap_new_set_tt__SetDateTimeType_( - struct soap *soap, - enum tt__SetDateTimeType __item) -{ - tt__SetDateTimeType_ *_p = ::soap_new_tt__SetDateTimeType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SetDateTimeType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__SetDateTimeType_(struct soap *soap, tt__SetDateTimeType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SetDateTimeType", p->soap_type() == SOAP_TYPE_tt__SetDateTimeType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SetDateTimeType_(struct soap *soap, const char *URL, tt__SetDateTimeType_ 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, "tt:SetDateTimeType", p->soap_type() == SOAP_TYPE_tt__SetDateTimeType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SetDateTimeType_(struct soap *soap, const char *URL, tt__SetDateTimeType_ 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, "tt:SetDateTimeType", p->soap_type() == SOAP_TYPE_tt__SetDateTimeType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SetDateTimeType_(struct soap *soap, const char *URL, tt__SetDateTimeType_ 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, "tt:SetDateTimeType", p->soap_type() == SOAP_TYPE_tt__SetDateTimeType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SetDateTimeType_ * SOAP_FMAC4 soap_get_tt__SetDateTimeType_(struct soap*, tt__SetDateTimeType_ *, const char*, const char*); - -inline int soap_read_tt__SetDateTimeType_(struct soap *soap, tt__SetDateTimeType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SetDateTimeType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SetDateTimeType_(struct soap *soap, const char *URL, tt__SetDateTimeType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SetDateTimeType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SetDateTimeType_(struct soap *soap, tt__SetDateTimeType_ *p) -{ - if (::soap_read_tt__SetDateTimeType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FactoryDefaultType__DEFINED -#define SOAP_TYPE_tt__FactoryDefaultType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FactoryDefaultType_(struct soap*, const char*, int, const tt__FactoryDefaultType_ *, const char*); -SOAP_FMAC3 tt__FactoryDefaultType_ * SOAP_FMAC4 soap_in_tt__FactoryDefaultType_(struct soap*, const char*, tt__FactoryDefaultType_ *, const char*); -SOAP_FMAC1 tt__FactoryDefaultType_ * SOAP_FMAC2 soap_instantiate_tt__FactoryDefaultType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FactoryDefaultType_ * soap_new_tt__FactoryDefaultType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FactoryDefaultType_(soap, n, NULL, NULL, NULL); -} - -inline tt__FactoryDefaultType_ * soap_new_req_tt__FactoryDefaultType_( - struct soap *soap, - enum tt__FactoryDefaultType __item) -{ - tt__FactoryDefaultType_ *_p = ::soap_new_tt__FactoryDefaultType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FactoryDefaultType_::__item = __item; - } - return _p; -} - -inline tt__FactoryDefaultType_ * soap_new_set_tt__FactoryDefaultType_( - struct soap *soap, - enum tt__FactoryDefaultType __item) -{ - tt__FactoryDefaultType_ *_p = ::soap_new_tt__FactoryDefaultType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FactoryDefaultType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__FactoryDefaultType_(struct soap *soap, tt__FactoryDefaultType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FactoryDefaultType", p->soap_type() == SOAP_TYPE_tt__FactoryDefaultType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FactoryDefaultType_(struct soap *soap, const char *URL, tt__FactoryDefaultType_ 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, "tt:FactoryDefaultType", p->soap_type() == SOAP_TYPE_tt__FactoryDefaultType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FactoryDefaultType_(struct soap *soap, const char *URL, tt__FactoryDefaultType_ 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, "tt:FactoryDefaultType", p->soap_type() == SOAP_TYPE_tt__FactoryDefaultType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FactoryDefaultType_(struct soap *soap, const char *URL, tt__FactoryDefaultType_ 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, "tt:FactoryDefaultType", p->soap_type() == SOAP_TYPE_tt__FactoryDefaultType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FactoryDefaultType_ * SOAP_FMAC4 soap_get_tt__FactoryDefaultType_(struct soap*, tt__FactoryDefaultType_ *, const char*, const char*); - -inline int soap_read_tt__FactoryDefaultType_(struct soap *soap, tt__FactoryDefaultType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FactoryDefaultType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FactoryDefaultType_(struct soap *soap, const char *URL, tt__FactoryDefaultType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FactoryDefaultType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FactoryDefaultType_(struct soap *soap, tt__FactoryDefaultType_ *p) -{ - if (::soap_read_tt__FactoryDefaultType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemLogType__DEFINED -#define SOAP_TYPE_tt__SystemLogType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogType_(struct soap*, const char*, int, const tt__SystemLogType_ *, const char*); -SOAP_FMAC3 tt__SystemLogType_ * SOAP_FMAC4 soap_in_tt__SystemLogType_(struct soap*, const char*, tt__SystemLogType_ *, const char*); -SOAP_FMAC1 tt__SystemLogType_ * SOAP_FMAC2 soap_instantiate_tt__SystemLogType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemLogType_ * soap_new_tt__SystemLogType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemLogType_(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemLogType_ * soap_new_req_tt__SystemLogType_( - struct soap *soap, - enum tt__SystemLogType __item) -{ - tt__SystemLogType_ *_p = ::soap_new_tt__SystemLogType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemLogType_::__item = __item; - } - return _p; -} - -inline tt__SystemLogType_ * soap_new_set_tt__SystemLogType_( - struct soap *soap, - enum tt__SystemLogType __item) -{ - tt__SystemLogType_ *_p = ::soap_new_tt__SystemLogType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemLogType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__SystemLogType_(struct soap *soap, tt__SystemLogType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemLogType", p->soap_type() == SOAP_TYPE_tt__SystemLogType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemLogType_(struct soap *soap, const char *URL, tt__SystemLogType_ 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, "tt:SystemLogType", p->soap_type() == SOAP_TYPE_tt__SystemLogType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemLogType_(struct soap *soap, const char *URL, tt__SystemLogType_ 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, "tt:SystemLogType", p->soap_type() == SOAP_TYPE_tt__SystemLogType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemLogType_(struct soap *soap, const char *URL, tt__SystemLogType_ 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, "tt:SystemLogType", p->soap_type() == SOAP_TYPE_tt__SystemLogType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemLogType_ * SOAP_FMAC4 soap_get_tt__SystemLogType_(struct soap*, tt__SystemLogType_ *, const char*, const char*); - -inline int soap_read_tt__SystemLogType_(struct soap *soap, tt__SystemLogType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemLogType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemLogType_(struct soap *soap, const char *URL, tt__SystemLogType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemLogType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemLogType_(struct soap *soap, tt__SystemLogType_ *p) -{ - if (::soap_read_tt__SystemLogType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CapabilityCategory__DEFINED -#define SOAP_TYPE_tt__CapabilityCategory__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilityCategory_(struct soap*, const char*, int, const tt__CapabilityCategory_ *, const char*); -SOAP_FMAC3 tt__CapabilityCategory_ * SOAP_FMAC4 soap_in_tt__CapabilityCategory_(struct soap*, const char*, tt__CapabilityCategory_ *, const char*); -SOAP_FMAC1 tt__CapabilityCategory_ * SOAP_FMAC2 soap_instantiate_tt__CapabilityCategory_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CapabilityCategory_ * soap_new_tt__CapabilityCategory_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CapabilityCategory_(soap, n, NULL, NULL, NULL); -} - -inline tt__CapabilityCategory_ * soap_new_req_tt__CapabilityCategory_( - struct soap *soap, - enum tt__CapabilityCategory __item) -{ - tt__CapabilityCategory_ *_p = ::soap_new_tt__CapabilityCategory_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CapabilityCategory_::__item = __item; - } - return _p; -} - -inline tt__CapabilityCategory_ * soap_new_set_tt__CapabilityCategory_( - struct soap *soap, - enum tt__CapabilityCategory __item) -{ - tt__CapabilityCategory_ *_p = ::soap_new_tt__CapabilityCategory_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CapabilityCategory_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__CapabilityCategory_(struct soap *soap, tt__CapabilityCategory_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CapabilityCategory", p->soap_type() == SOAP_TYPE_tt__CapabilityCategory_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CapabilityCategory_(struct soap *soap, const char *URL, tt__CapabilityCategory_ 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, "tt:CapabilityCategory", p->soap_type() == SOAP_TYPE_tt__CapabilityCategory_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CapabilityCategory_(struct soap *soap, const char *URL, tt__CapabilityCategory_ 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, "tt:CapabilityCategory", p->soap_type() == SOAP_TYPE_tt__CapabilityCategory_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CapabilityCategory_(struct soap *soap, const char *URL, tt__CapabilityCategory_ 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, "tt:CapabilityCategory", p->soap_type() == SOAP_TYPE_tt__CapabilityCategory_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CapabilityCategory_ * SOAP_FMAC4 soap_get_tt__CapabilityCategory_(struct soap*, tt__CapabilityCategory_ *, const char*, const char*); - -inline int soap_read_tt__CapabilityCategory_(struct soap *soap, tt__CapabilityCategory_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CapabilityCategory_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CapabilityCategory_(struct soap *soap, const char *URL, tt__CapabilityCategory_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CapabilityCategory_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CapabilityCategory_(struct soap *soap, tt__CapabilityCategory_ *p) -{ - if (::soap_read_tt__CapabilityCategory_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11AuthAndMangementSuite__DEFINED -#define SOAP_TYPE_tt__Dot11AuthAndMangementSuite__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AuthAndMangementSuite_(struct soap*, const char*, int, const tt__Dot11AuthAndMangementSuite_ *, const char*); -SOAP_FMAC3 tt__Dot11AuthAndMangementSuite_ * SOAP_FMAC4 soap_in_tt__Dot11AuthAndMangementSuite_(struct soap*, const char*, tt__Dot11AuthAndMangementSuite_ *, const char*); -SOAP_FMAC1 tt__Dot11AuthAndMangementSuite_ * SOAP_FMAC2 soap_instantiate_tt__Dot11AuthAndMangementSuite_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11AuthAndMangementSuite_ * soap_new_tt__Dot11AuthAndMangementSuite_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11AuthAndMangementSuite_(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11AuthAndMangementSuite_ * soap_new_req_tt__Dot11AuthAndMangementSuite_( - struct soap *soap, - enum tt__Dot11AuthAndMangementSuite __item) -{ - tt__Dot11AuthAndMangementSuite_ *_p = ::soap_new_tt__Dot11AuthAndMangementSuite_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11AuthAndMangementSuite_::__item = __item; - } - return _p; -} - -inline tt__Dot11AuthAndMangementSuite_ * soap_new_set_tt__Dot11AuthAndMangementSuite_( - struct soap *soap, - enum tt__Dot11AuthAndMangementSuite __item) -{ - tt__Dot11AuthAndMangementSuite_ *_p = ::soap_new_tt__Dot11AuthAndMangementSuite_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11AuthAndMangementSuite_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11AuthAndMangementSuite_(struct soap *soap, tt__Dot11AuthAndMangementSuite_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11AuthAndMangementSuite", p->soap_type() == SOAP_TYPE_tt__Dot11AuthAndMangementSuite_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11AuthAndMangementSuite_(struct soap *soap, const char *URL, tt__Dot11AuthAndMangementSuite_ 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, "tt:Dot11AuthAndMangementSuite", p->soap_type() == SOAP_TYPE_tt__Dot11AuthAndMangementSuite_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11AuthAndMangementSuite_(struct soap *soap, const char *URL, tt__Dot11AuthAndMangementSuite_ 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, "tt:Dot11AuthAndMangementSuite", p->soap_type() == SOAP_TYPE_tt__Dot11AuthAndMangementSuite_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11AuthAndMangementSuite_(struct soap *soap, const char *URL, tt__Dot11AuthAndMangementSuite_ 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, "tt:Dot11AuthAndMangementSuite", p->soap_type() == SOAP_TYPE_tt__Dot11AuthAndMangementSuite_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11AuthAndMangementSuite_ * SOAP_FMAC4 soap_get_tt__Dot11AuthAndMangementSuite_(struct soap*, tt__Dot11AuthAndMangementSuite_ *, const char*, const char*); - -inline int soap_read_tt__Dot11AuthAndMangementSuite_(struct soap *soap, tt__Dot11AuthAndMangementSuite_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11AuthAndMangementSuite_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11AuthAndMangementSuite_(struct soap *soap, const char *URL, tt__Dot11AuthAndMangementSuite_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11AuthAndMangementSuite_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11AuthAndMangementSuite_(struct soap *soap, tt__Dot11AuthAndMangementSuite_ *p) -{ - if (::soap_read_tt__Dot11AuthAndMangementSuite_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SignalStrength__DEFINED -#define SOAP_TYPE_tt__Dot11SignalStrength__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SignalStrength_(struct soap*, const char*, int, const tt__Dot11SignalStrength_ *, const char*); -SOAP_FMAC3 tt__Dot11SignalStrength_ * SOAP_FMAC4 soap_in_tt__Dot11SignalStrength_(struct soap*, const char*, tt__Dot11SignalStrength_ *, const char*); -SOAP_FMAC1 tt__Dot11SignalStrength_ * SOAP_FMAC2 soap_instantiate_tt__Dot11SignalStrength_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11SignalStrength_ * soap_new_tt__Dot11SignalStrength_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11SignalStrength_(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11SignalStrength_ * soap_new_req_tt__Dot11SignalStrength_( - struct soap *soap, - enum tt__Dot11SignalStrength __item) -{ - tt__Dot11SignalStrength_ *_p = ::soap_new_tt__Dot11SignalStrength_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SignalStrength_::__item = __item; - } - return _p; -} - -inline tt__Dot11SignalStrength_ * soap_new_set_tt__Dot11SignalStrength_( - struct soap *soap, - enum tt__Dot11SignalStrength __item) -{ - tt__Dot11SignalStrength_ *_p = ::soap_new_tt__Dot11SignalStrength_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SignalStrength_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11SignalStrength_(struct soap *soap, tt__Dot11SignalStrength_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11SignalStrength", p->soap_type() == SOAP_TYPE_tt__Dot11SignalStrength_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SignalStrength_(struct soap *soap, const char *URL, tt__Dot11SignalStrength_ 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, "tt:Dot11SignalStrength", p->soap_type() == SOAP_TYPE_tt__Dot11SignalStrength_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SignalStrength_(struct soap *soap, const char *URL, tt__Dot11SignalStrength_ 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, "tt:Dot11SignalStrength", p->soap_type() == SOAP_TYPE_tt__Dot11SignalStrength_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SignalStrength_(struct soap *soap, const char *URL, tt__Dot11SignalStrength_ 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, "tt:Dot11SignalStrength", p->soap_type() == SOAP_TYPE_tt__Dot11SignalStrength_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11SignalStrength_ * SOAP_FMAC4 soap_get_tt__Dot11SignalStrength_(struct soap*, tt__Dot11SignalStrength_ *, const char*, const char*); - -inline int soap_read_tt__Dot11SignalStrength_(struct soap *soap, tt__Dot11SignalStrength_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SignalStrength_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SignalStrength_(struct soap *soap, const char *URL, tt__Dot11SignalStrength_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SignalStrength_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SignalStrength_(struct soap *soap, tt__Dot11SignalStrength_ *p) -{ - if (::soap_read_tt__Dot11SignalStrength_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11PSKPassphrase___DEFINED -#define SOAP_TYPE_tt__Dot11PSKPassphrase___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKPassphrase__(struct soap*, const char*, int, const tt__Dot11PSKPassphrase__ *, const char*); -SOAP_FMAC3 tt__Dot11PSKPassphrase__ * SOAP_FMAC4 soap_in_tt__Dot11PSKPassphrase__(struct soap*, const char*, tt__Dot11PSKPassphrase__ *, const char*); -SOAP_FMAC1 tt__Dot11PSKPassphrase__ * SOAP_FMAC2 soap_instantiate_tt__Dot11PSKPassphrase__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11PSKPassphrase__ * soap_new_tt__Dot11PSKPassphrase__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11PSKPassphrase__(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11PSKPassphrase__ * soap_new_req_tt__Dot11PSKPassphrase__( - struct soap *soap, - const std::string& __item) -{ - tt__Dot11PSKPassphrase__ *_p = ::soap_new_tt__Dot11PSKPassphrase__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11PSKPassphrase__::__item = __item; - } - return _p; -} - -inline tt__Dot11PSKPassphrase__ * soap_new_set_tt__Dot11PSKPassphrase__( - struct soap *soap, - const std::string& __item) -{ - tt__Dot11PSKPassphrase__ *_p = ::soap_new_tt__Dot11PSKPassphrase__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11PSKPassphrase__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11PSKPassphrase__(struct soap *soap, tt__Dot11PSKPassphrase__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11PSKPassphrase", p->soap_type() == SOAP_TYPE_tt__Dot11PSKPassphrase__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11PSKPassphrase__(struct soap *soap, const char *URL, tt__Dot11PSKPassphrase__ 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, "tt:Dot11PSKPassphrase", p->soap_type() == SOAP_TYPE_tt__Dot11PSKPassphrase__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11PSKPassphrase__(struct soap *soap, const char *URL, tt__Dot11PSKPassphrase__ 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, "tt:Dot11PSKPassphrase", p->soap_type() == SOAP_TYPE_tt__Dot11PSKPassphrase__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11PSKPassphrase__(struct soap *soap, const char *URL, tt__Dot11PSKPassphrase__ 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, "tt:Dot11PSKPassphrase", p->soap_type() == SOAP_TYPE_tt__Dot11PSKPassphrase__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11PSKPassphrase__ * SOAP_FMAC4 soap_get_tt__Dot11PSKPassphrase__(struct soap*, tt__Dot11PSKPassphrase__ *, const char*, const char*); - -inline int soap_read_tt__Dot11PSKPassphrase__(struct soap *soap, tt__Dot11PSKPassphrase__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11PSKPassphrase__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11PSKPassphrase__(struct soap *soap, const char *URL, tt__Dot11PSKPassphrase__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11PSKPassphrase__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11PSKPassphrase__(struct soap *soap, tt__Dot11PSKPassphrase__ *p) -{ - if (::soap_read_tt__Dot11PSKPassphrase__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11PSKPassphrase_DEFINED -#define SOAP_TYPE_tt__Dot11PSKPassphrase_DEFINED - -inline void soap_default_tt__Dot11PSKPassphrase(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Dot11PSKPassphrase(struct soap*, const std::string *); - -#define soap_tt__Dot11PSKPassphrase2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKPassphrase(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__Dot11PSKPassphrase(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, "[ -~]{8,63}") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__Dot11PSKPassphrase(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__Dot11PSKPassphrase soap_instantiate_std__string - - -#define soap_new_tt__Dot11PSKPassphrase soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11PSKPassphrase(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__Dot11PSKPassphrase(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Dot11PSKPassphrase(soap, p, "tt:Dot11PSKPassphrase", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11PSKPassphrase(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11PSKPassphrase(soap, p, "tt:Dot11PSKPassphrase", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11PSKPassphrase(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11PSKPassphrase(soap, p, "tt:Dot11PSKPassphrase", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11PSKPassphrase(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Dot11PSKPassphrase(soap, p, "tt:Dot11PSKPassphrase", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__Dot11PSKPassphrase(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__Dot11PSKPassphrase(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Dot11PSKPassphrase(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11PSKPassphrase(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11PSKPassphrase(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11PSKPassphrase(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__Dot11PSKPassphrase(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11PSK___DEFINED -#define SOAP_TYPE_tt__Dot11PSK___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSK__(struct soap*, const char*, int, const tt__Dot11PSK__ *, const char*); -SOAP_FMAC3 tt__Dot11PSK__ * SOAP_FMAC4 soap_in_tt__Dot11PSK__(struct soap*, const char*, tt__Dot11PSK__ *, const char*); -SOAP_FMAC1 tt__Dot11PSK__ * SOAP_FMAC2 soap_instantiate_tt__Dot11PSK__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11PSK__ * soap_new_tt__Dot11PSK__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11PSK__(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11PSK__ * soap_new_req_tt__Dot11PSK__( - struct soap *soap, - const xsd__hexBinary& __item) -{ - tt__Dot11PSK__ *_p = ::soap_new_tt__Dot11PSK__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11PSK__::__item = __item; - } - return _p; -} - -inline tt__Dot11PSK__ * soap_new_set_tt__Dot11PSK__( - struct soap *soap, - const xsd__hexBinary& __item) -{ - tt__Dot11PSK__ *_p = ::soap_new_tt__Dot11PSK__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11PSK__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11PSK__(struct soap *soap, tt__Dot11PSK__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11PSK", p->soap_type() == SOAP_TYPE_tt__Dot11PSK__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11PSK__(struct soap *soap, const char *URL, tt__Dot11PSK__ 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, "tt:Dot11PSK", p->soap_type() == SOAP_TYPE_tt__Dot11PSK__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11PSK__(struct soap *soap, const char *URL, tt__Dot11PSK__ 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, "tt:Dot11PSK", p->soap_type() == SOAP_TYPE_tt__Dot11PSK__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11PSK__(struct soap *soap, const char *URL, tt__Dot11PSK__ 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, "tt:Dot11PSK", p->soap_type() == SOAP_TYPE_tt__Dot11PSK__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11PSK__ * SOAP_FMAC4 soap_get_tt__Dot11PSK__(struct soap*, tt__Dot11PSK__ *, const char*, const char*); - -inline int soap_read_tt__Dot11PSK__(struct soap *soap, tt__Dot11PSK__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11PSK__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11PSK__(struct soap *soap, const char *URL, tt__Dot11PSK__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11PSK__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11PSK__(struct soap *soap, tt__Dot11PSK__ *p) -{ - if (::soap_read_tt__Dot11PSK__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11PSK_DEFINED -#define SOAP_TYPE_tt__Dot11PSK_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_tt__Dot11PSK(struct soap*, xsd__hexBinary *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Dot11PSK(struct soap*, const xsd__hexBinary *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSK(struct soap*, const char*, int, const xsd__hexBinary *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11PSK2s(struct soap*, xsd__hexBinary); -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_in_tt__Dot11PSK(struct soap*, const char*, xsd__hexBinary *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11PSK(struct soap*, const char*, xsd__hexBinary *); - -#define soap_instantiate_tt__Dot11PSK soap_instantiate_xsd__hexBinary - - -#define soap_new_tt__Dot11PSK soap_new_xsd__hexBinary - - -#define soap_new_req_tt__Dot11PSK soap_new_req_xsd__hexBinary - - -#define soap_new_set_tt__Dot11PSK soap_new_set_xsd__hexBinary - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11PSK(struct soap*, const xsd__hexBinary *, const char*, const char*); - -inline int soap_write_tt__Dot11PSK(struct soap *soap, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_tt__Dot11PSK(soap, p), 0) || ::soap_put_tt__Dot11PSK(soap, p, "tt:Dot11PSK", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11PSK(struct soap *soap, const char *URL, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_tt__Dot11PSK(soap, p), 0) || ::soap_put_tt__Dot11PSK(soap, p, "tt:Dot11PSK", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11PSK(struct soap *soap, const char *URL, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_tt__Dot11PSK(soap, p), 0) || ::soap_put_tt__Dot11PSK(soap, p, "tt:Dot11PSK", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11PSK(struct soap *soap, const char *URL, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_tt__Dot11PSK(soap, p), 0) || ::soap_put_tt__Dot11PSK(soap, p, "tt:Dot11PSK", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_get_tt__Dot11PSK(struct soap*, xsd__hexBinary *, const char*, const char*); - -inline int soap_read_tt__Dot11PSK(struct soap *soap, xsd__hexBinary *p) -{ - if (p) - { ::soap_default_tt__Dot11PSK(soap, p); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11PSK(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11PSK(struct soap *soap, const char *URL, xsd__hexBinary *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11PSK(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11PSK(struct soap *soap, xsd__hexBinary *p) -{ - if (::soap_read_tt__Dot11PSK(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11Cipher__DEFINED -#define SOAP_TYPE_tt__Dot11Cipher__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Cipher_(struct soap*, const char*, int, const tt__Dot11Cipher_ *, const char*); -SOAP_FMAC3 tt__Dot11Cipher_ * SOAP_FMAC4 soap_in_tt__Dot11Cipher_(struct soap*, const char*, tt__Dot11Cipher_ *, const char*); -SOAP_FMAC1 tt__Dot11Cipher_ * SOAP_FMAC2 soap_instantiate_tt__Dot11Cipher_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11Cipher_ * soap_new_tt__Dot11Cipher_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11Cipher_(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11Cipher_ * soap_new_req_tt__Dot11Cipher_( - struct soap *soap, - enum tt__Dot11Cipher __item) -{ - tt__Dot11Cipher_ *_p = ::soap_new_tt__Dot11Cipher_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Cipher_::__item = __item; - } - return _p; -} - -inline tt__Dot11Cipher_ * soap_new_set_tt__Dot11Cipher_( - struct soap *soap, - enum tt__Dot11Cipher __item) -{ - tt__Dot11Cipher_ *_p = ::soap_new_tt__Dot11Cipher_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Cipher_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11Cipher_(struct soap *soap, tt__Dot11Cipher_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11Cipher", p->soap_type() == SOAP_TYPE_tt__Dot11Cipher_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11Cipher_(struct soap *soap, const char *URL, tt__Dot11Cipher_ 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, "tt:Dot11Cipher", p->soap_type() == SOAP_TYPE_tt__Dot11Cipher_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11Cipher_(struct soap *soap, const char *URL, tt__Dot11Cipher_ 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, "tt:Dot11Cipher", p->soap_type() == SOAP_TYPE_tt__Dot11Cipher_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11Cipher_(struct soap *soap, const char *URL, tt__Dot11Cipher_ 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, "tt:Dot11Cipher", p->soap_type() == SOAP_TYPE_tt__Dot11Cipher_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11Cipher_ * SOAP_FMAC4 soap_get_tt__Dot11Cipher_(struct soap*, tt__Dot11Cipher_ *, const char*, const char*); - -inline int soap_read_tt__Dot11Cipher_(struct soap *soap, tt__Dot11Cipher_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11Cipher_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11Cipher_(struct soap *soap, const char *URL, tt__Dot11Cipher_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11Cipher_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11Cipher_(struct soap *soap, tt__Dot11Cipher_ *p) -{ - if (::soap_read_tt__Dot11Cipher_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SecurityMode__DEFINED -#define SOAP_TYPE_tt__Dot11SecurityMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityMode_(struct soap*, const char*, int, const tt__Dot11SecurityMode_ *, const char*); -SOAP_FMAC3 tt__Dot11SecurityMode_ * SOAP_FMAC4 soap_in_tt__Dot11SecurityMode_(struct soap*, const char*, tt__Dot11SecurityMode_ *, const char*); -SOAP_FMAC1 tt__Dot11SecurityMode_ * SOAP_FMAC2 soap_instantiate_tt__Dot11SecurityMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11SecurityMode_ * soap_new_tt__Dot11SecurityMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11SecurityMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11SecurityMode_ * soap_new_req_tt__Dot11SecurityMode_( - struct soap *soap, - enum tt__Dot11SecurityMode __item) -{ - tt__Dot11SecurityMode_ *_p = ::soap_new_tt__Dot11SecurityMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SecurityMode_::__item = __item; - } - return _p; -} - -inline tt__Dot11SecurityMode_ * soap_new_set_tt__Dot11SecurityMode_( - struct soap *soap, - enum tt__Dot11SecurityMode __item) -{ - tt__Dot11SecurityMode_ *_p = ::soap_new_tt__Dot11SecurityMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SecurityMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11SecurityMode_(struct soap *soap, tt__Dot11SecurityMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11SecurityMode", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SecurityMode_(struct soap *soap, const char *URL, tt__Dot11SecurityMode_ 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, "tt:Dot11SecurityMode", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SecurityMode_(struct soap *soap, const char *URL, tt__Dot11SecurityMode_ 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, "tt:Dot11SecurityMode", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SecurityMode_(struct soap *soap, const char *URL, tt__Dot11SecurityMode_ 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, "tt:Dot11SecurityMode", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11SecurityMode_ * SOAP_FMAC4 soap_get_tt__Dot11SecurityMode_(struct soap*, tt__Dot11SecurityMode_ *, const char*, const char*); - -inline int soap_read_tt__Dot11SecurityMode_(struct soap *soap, tt__Dot11SecurityMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SecurityMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SecurityMode_(struct soap *soap, const char *URL, tt__Dot11SecurityMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SecurityMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SecurityMode_(struct soap *soap, tt__Dot11SecurityMode_ *p) -{ - if (::soap_read_tt__Dot11SecurityMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11StationMode__DEFINED -#define SOAP_TYPE_tt__Dot11StationMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11StationMode_(struct soap*, const char*, int, const tt__Dot11StationMode_ *, const char*); -SOAP_FMAC3 tt__Dot11StationMode_ * SOAP_FMAC4 soap_in_tt__Dot11StationMode_(struct soap*, const char*, tt__Dot11StationMode_ *, const char*); -SOAP_FMAC1 tt__Dot11StationMode_ * SOAP_FMAC2 soap_instantiate_tt__Dot11StationMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11StationMode_ * soap_new_tt__Dot11StationMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11StationMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11StationMode_ * soap_new_req_tt__Dot11StationMode_( - struct soap *soap, - enum tt__Dot11StationMode __item) -{ - tt__Dot11StationMode_ *_p = ::soap_new_tt__Dot11StationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11StationMode_::__item = __item; - } - return _p; -} - -inline tt__Dot11StationMode_ * soap_new_set_tt__Dot11StationMode_( - struct soap *soap, - enum tt__Dot11StationMode __item) -{ - tt__Dot11StationMode_ *_p = ::soap_new_tt__Dot11StationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11StationMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11StationMode_(struct soap *soap, tt__Dot11StationMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11StationMode", p->soap_type() == SOAP_TYPE_tt__Dot11StationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11StationMode_(struct soap *soap, const char *URL, tt__Dot11StationMode_ 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, "tt:Dot11StationMode", p->soap_type() == SOAP_TYPE_tt__Dot11StationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11StationMode_(struct soap *soap, const char *URL, tt__Dot11StationMode_ 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, "tt:Dot11StationMode", p->soap_type() == SOAP_TYPE_tt__Dot11StationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11StationMode_(struct soap *soap, const char *URL, tt__Dot11StationMode_ 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, "tt:Dot11StationMode", p->soap_type() == SOAP_TYPE_tt__Dot11StationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11StationMode_ * SOAP_FMAC4 soap_get_tt__Dot11StationMode_(struct soap*, tt__Dot11StationMode_ *, const char*, const char*); - -inline int soap_read_tt__Dot11StationMode_(struct soap *soap, tt__Dot11StationMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11StationMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11StationMode_(struct soap *soap, const char *URL, tt__Dot11StationMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11StationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11StationMode_(struct soap *soap, tt__Dot11StationMode_ *p) -{ - if (::soap_read_tt__Dot11StationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SSIDType___DEFINED -#define SOAP_TYPE_tt__Dot11SSIDType___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SSIDType__(struct soap*, const char*, int, const tt__Dot11SSIDType__ *, const char*); -SOAP_FMAC3 tt__Dot11SSIDType__ * SOAP_FMAC4 soap_in_tt__Dot11SSIDType__(struct soap*, const char*, tt__Dot11SSIDType__ *, const char*); -SOAP_FMAC1 tt__Dot11SSIDType__ * SOAP_FMAC2 soap_instantiate_tt__Dot11SSIDType__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11SSIDType__ * soap_new_tt__Dot11SSIDType__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11SSIDType__(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11SSIDType__ * soap_new_req_tt__Dot11SSIDType__( - struct soap *soap, - const xsd__hexBinary& __item) -{ - tt__Dot11SSIDType__ *_p = ::soap_new_tt__Dot11SSIDType__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SSIDType__::__item = __item; - } - return _p; -} - -inline tt__Dot11SSIDType__ * soap_new_set_tt__Dot11SSIDType__( - struct soap *soap, - const xsd__hexBinary& __item) -{ - tt__Dot11SSIDType__ *_p = ::soap_new_tt__Dot11SSIDType__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SSIDType__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Dot11SSIDType__(struct soap *soap, tt__Dot11SSIDType__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11SSIDType", p->soap_type() == SOAP_TYPE_tt__Dot11SSIDType__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SSIDType__(struct soap *soap, const char *URL, tt__Dot11SSIDType__ 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, "tt:Dot11SSIDType", p->soap_type() == SOAP_TYPE_tt__Dot11SSIDType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SSIDType__(struct soap *soap, const char *URL, tt__Dot11SSIDType__ 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, "tt:Dot11SSIDType", p->soap_type() == SOAP_TYPE_tt__Dot11SSIDType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SSIDType__(struct soap *soap, const char *URL, tt__Dot11SSIDType__ 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, "tt:Dot11SSIDType", p->soap_type() == SOAP_TYPE_tt__Dot11SSIDType__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11SSIDType__ * SOAP_FMAC4 soap_get_tt__Dot11SSIDType__(struct soap*, tt__Dot11SSIDType__ *, const char*, const char*); - -inline int soap_read_tt__Dot11SSIDType__(struct soap *soap, tt__Dot11SSIDType__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SSIDType__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SSIDType__(struct soap *soap, const char *URL, tt__Dot11SSIDType__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SSIDType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SSIDType__(struct soap *soap, tt__Dot11SSIDType__ *p) -{ - if (::soap_read_tt__Dot11SSIDType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SSIDType_DEFINED -#define SOAP_TYPE_tt__Dot11SSIDType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_tt__Dot11SSIDType(struct soap*, xsd__hexBinary *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Dot11SSIDType(struct soap*, const xsd__hexBinary *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SSIDType(struct soap*, const char*, int, const xsd__hexBinary *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_tt__Dot11SSIDType2s(struct soap*, xsd__hexBinary); -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_in_tt__Dot11SSIDType(struct soap*, const char*, xsd__hexBinary *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2tt__Dot11SSIDType(struct soap*, const char*, xsd__hexBinary *); - -#define soap_instantiate_tt__Dot11SSIDType soap_instantiate_xsd__hexBinary - - -#define soap_new_tt__Dot11SSIDType soap_new_xsd__hexBinary - - -#define soap_new_req_tt__Dot11SSIDType soap_new_req_xsd__hexBinary - - -#define soap_new_set_tt__Dot11SSIDType soap_new_set_xsd__hexBinary - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Dot11SSIDType(struct soap*, const xsd__hexBinary *, const char*, const char*); - -inline int soap_write_tt__Dot11SSIDType(struct soap *soap, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_tt__Dot11SSIDType(soap, p), 0) || ::soap_put_tt__Dot11SSIDType(soap, p, "tt:Dot11SSIDType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SSIDType(struct soap *soap, const char *URL, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_tt__Dot11SSIDType(soap, p), 0) || ::soap_put_tt__Dot11SSIDType(soap, p, "tt:Dot11SSIDType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SSIDType(struct soap *soap, const char *URL, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_tt__Dot11SSIDType(soap, p), 0) || ::soap_put_tt__Dot11SSIDType(soap, p, "tt:Dot11SSIDType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SSIDType(struct soap *soap, const char *URL, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_tt__Dot11SSIDType(soap, p), 0) || ::soap_put_tt__Dot11SSIDType(soap, p, "tt:Dot11SSIDType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_get_tt__Dot11SSIDType(struct soap*, xsd__hexBinary *, const char*, const char*); - -inline int soap_read_tt__Dot11SSIDType(struct soap *soap, xsd__hexBinary *p) -{ - if (p) - { ::soap_default_tt__Dot11SSIDType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SSIDType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SSIDType(struct soap *soap, const char *URL, xsd__hexBinary *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SSIDType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SSIDType(struct soap *soap, xsd__hexBinary *p) -{ - if (::soap_read_tt__Dot11SSIDType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DynamicDNSType__DEFINED -#define SOAP_TYPE_tt__DynamicDNSType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSType_(struct soap*, const char*, int, const tt__DynamicDNSType_ *, const char*); -SOAP_FMAC3 tt__DynamicDNSType_ * SOAP_FMAC4 soap_in_tt__DynamicDNSType_(struct soap*, const char*, tt__DynamicDNSType_ *, const char*); -SOAP_FMAC1 tt__DynamicDNSType_ * SOAP_FMAC2 soap_instantiate_tt__DynamicDNSType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DynamicDNSType_ * soap_new_tt__DynamicDNSType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DynamicDNSType_(soap, n, NULL, NULL, NULL); -} - -inline tt__DynamicDNSType_ * soap_new_req_tt__DynamicDNSType_( - struct soap *soap, - enum tt__DynamicDNSType __item) -{ - tt__DynamicDNSType_ *_p = ::soap_new_tt__DynamicDNSType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DynamicDNSType_::__item = __item; - } - return _p; -} - -inline tt__DynamicDNSType_ * soap_new_set_tt__DynamicDNSType_( - struct soap *soap, - enum tt__DynamicDNSType __item) -{ - tt__DynamicDNSType_ *_p = ::soap_new_tt__DynamicDNSType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DynamicDNSType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__DynamicDNSType_(struct soap *soap, tt__DynamicDNSType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DynamicDNSType", p->soap_type() == SOAP_TYPE_tt__DynamicDNSType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DynamicDNSType_(struct soap *soap, const char *URL, tt__DynamicDNSType_ 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, "tt:DynamicDNSType", p->soap_type() == SOAP_TYPE_tt__DynamicDNSType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DynamicDNSType_(struct soap *soap, const char *URL, tt__DynamicDNSType_ 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, "tt:DynamicDNSType", p->soap_type() == SOAP_TYPE_tt__DynamicDNSType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DynamicDNSType_(struct soap *soap, const char *URL, tt__DynamicDNSType_ 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, "tt:DynamicDNSType", p->soap_type() == SOAP_TYPE_tt__DynamicDNSType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DynamicDNSType_ * SOAP_FMAC4 soap_get_tt__DynamicDNSType_(struct soap*, tt__DynamicDNSType_ *, const char*, const char*); - -inline int soap_read_tt__DynamicDNSType_(struct soap *soap, tt__DynamicDNSType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DynamicDNSType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DynamicDNSType_(struct soap *soap, const char *URL, tt__DynamicDNSType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DynamicDNSType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DynamicDNSType_(struct soap *soap, tt__DynamicDNSType_ *p) -{ - if (::soap_read_tt__DynamicDNSType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPAddressFilterType__DEFINED -#define SOAP_TYPE_tt__IPAddressFilterType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilterType_(struct soap*, const char*, int, const tt__IPAddressFilterType_ *, const char*); -SOAP_FMAC3 tt__IPAddressFilterType_ * SOAP_FMAC4 soap_in_tt__IPAddressFilterType_(struct soap*, const char*, tt__IPAddressFilterType_ *, const char*); -SOAP_FMAC1 tt__IPAddressFilterType_ * SOAP_FMAC2 soap_instantiate_tt__IPAddressFilterType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPAddressFilterType_ * soap_new_tt__IPAddressFilterType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPAddressFilterType_(soap, n, NULL, NULL, NULL); -} - -inline tt__IPAddressFilterType_ * soap_new_req_tt__IPAddressFilterType_( - struct soap *soap, - enum tt__IPAddressFilterType __item) -{ - tt__IPAddressFilterType_ *_p = ::soap_new_tt__IPAddressFilterType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPAddressFilterType_::__item = __item; - } - return _p; -} - -inline tt__IPAddressFilterType_ * soap_new_set_tt__IPAddressFilterType_( - struct soap *soap, - enum tt__IPAddressFilterType __item) -{ - tt__IPAddressFilterType_ *_p = ::soap_new_tt__IPAddressFilterType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPAddressFilterType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IPAddressFilterType_(struct soap *soap, tt__IPAddressFilterType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPAddressFilterType", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPAddressFilterType_(struct soap *soap, const char *URL, tt__IPAddressFilterType_ 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, "tt:IPAddressFilterType", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPAddressFilterType_(struct soap *soap, const char *URL, tt__IPAddressFilterType_ 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, "tt:IPAddressFilterType", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPAddressFilterType_(struct soap *soap, const char *URL, tt__IPAddressFilterType_ 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, "tt:IPAddressFilterType", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPAddressFilterType_ * SOAP_FMAC4 soap_get_tt__IPAddressFilterType_(struct soap*, tt__IPAddressFilterType_ *, const char*, const char*); - -inline int soap_read_tt__IPAddressFilterType_(struct soap *soap, tt__IPAddressFilterType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPAddressFilterType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPAddressFilterType_(struct soap *soap, const char *URL, tt__IPAddressFilterType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPAddressFilterType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPAddressFilterType_(struct soap *soap, tt__IPAddressFilterType_ *p) -{ - if (::soap_read_tt__IPAddressFilterType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Domain___DEFINED -#define SOAP_TYPE_tt__Domain___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Domain__(struct soap*, const char*, int, const tt__Domain__ *, const char*); -SOAP_FMAC3 tt__Domain__ * SOAP_FMAC4 soap_in_tt__Domain__(struct soap*, const char*, tt__Domain__ *, const char*); -SOAP_FMAC1 tt__Domain__ * SOAP_FMAC2 soap_instantiate_tt__Domain__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Domain__ * soap_new_tt__Domain__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Domain__(soap, n, NULL, NULL, NULL); -} - -inline tt__Domain__ * soap_new_req_tt__Domain__( - struct soap *soap, - const std::string& __item) -{ - tt__Domain__ *_p = ::soap_new_tt__Domain__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Domain__::__item = __item; - } - return _p; -} - -inline tt__Domain__ * soap_new_set_tt__Domain__( - struct soap *soap, - const std::string& __item) -{ - tt__Domain__ *_p = ::soap_new_tt__Domain__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Domain__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Domain__(struct soap *soap, tt__Domain__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Domain", p->soap_type() == SOAP_TYPE_tt__Domain__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Domain__(struct soap *soap, const char *URL, tt__Domain__ 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, "tt:Domain", p->soap_type() == SOAP_TYPE_tt__Domain__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Domain__(struct soap *soap, const char *URL, tt__Domain__ 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, "tt:Domain", p->soap_type() == SOAP_TYPE_tt__Domain__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Domain__(struct soap *soap, const char *URL, tt__Domain__ 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, "tt:Domain", p->soap_type() == SOAP_TYPE_tt__Domain__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Domain__ * SOAP_FMAC4 soap_get_tt__Domain__(struct soap*, tt__Domain__ *, const char*, const char*); - -inline int soap_read_tt__Domain__(struct soap *soap, tt__Domain__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Domain__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Domain__(struct soap *soap, const char *URL, tt__Domain__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Domain__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Domain__(struct soap *soap, tt__Domain__ *p) -{ - if (::soap_read_tt__Domain__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__Domain is a typedef synonym of xsd__token */ - -#ifndef SOAP_TYPE_tt__Domain_DEFINED -#define SOAP_TYPE_tt__Domain_DEFINED - -#define soap_default_tt__Domain soap_default_xsd__token - - -#define soap_serialize_tt__Domain soap_serialize_xsd__token - - -#define soap_tt__Domain2s(soap, a) ((a).c_str()) - -#define soap_out_tt__Domain soap_out_xsd__token - - -#define soap_s2tt__Domain(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, NULL) - -#define soap_in_tt__Domain soap_in_xsd__token - - -#define soap_instantiate_tt__Domain soap_instantiate_xsd__token - - -#define soap_new_tt__Domain soap_new_xsd__token - - -#define soap_put_tt__Domain soap_put_xsd__token - - -#define soap_write_tt__Domain soap_write_xsd__token - - -#define soap_PUT_tt__Domain soap_PUT_xsd__token - - -#define soap_PATCH_tt__Domain soap_PATCH_xsd__token - - -#define soap_POST_send_tt__Domain soap_POST_send_xsd__token - - -#define soap_get_tt__Domain soap_get_xsd__token - - -#define soap_read_tt__Domain soap_read_xsd__token - - -#define soap_GET_tt__Domain soap_GET_xsd__token - - -#define soap_POST_recv_tt__Domain soap_POST_recv_xsd__token - -#endif - -#ifndef SOAP_TYPE_tt__DNSName___DEFINED -#define SOAP_TYPE_tt__DNSName___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DNSName__(struct soap*, const char*, int, const tt__DNSName__ *, const char*); -SOAP_FMAC3 tt__DNSName__ * SOAP_FMAC4 soap_in_tt__DNSName__(struct soap*, const char*, tt__DNSName__ *, const char*); -SOAP_FMAC1 tt__DNSName__ * SOAP_FMAC2 soap_instantiate_tt__DNSName__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DNSName__ * soap_new_tt__DNSName__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DNSName__(soap, n, NULL, NULL, NULL); -} - -inline tt__DNSName__ * soap_new_req_tt__DNSName__( - struct soap *soap, - const std::string& __item) -{ - tt__DNSName__ *_p = ::soap_new_tt__DNSName__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DNSName__::__item = __item; - } - return _p; -} - -inline tt__DNSName__ * soap_new_set_tt__DNSName__( - struct soap *soap, - const std::string& __item) -{ - tt__DNSName__ *_p = ::soap_new_tt__DNSName__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DNSName__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__DNSName__(struct soap *soap, tt__DNSName__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DNSName", p->soap_type() == SOAP_TYPE_tt__DNSName__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DNSName__(struct soap *soap, const char *URL, tt__DNSName__ 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, "tt:DNSName", p->soap_type() == SOAP_TYPE_tt__DNSName__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DNSName__(struct soap *soap, const char *URL, tt__DNSName__ 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, "tt:DNSName", p->soap_type() == SOAP_TYPE_tt__DNSName__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DNSName__(struct soap *soap, const char *URL, tt__DNSName__ 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, "tt:DNSName", p->soap_type() == SOAP_TYPE_tt__DNSName__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DNSName__ * SOAP_FMAC4 soap_get_tt__DNSName__(struct soap*, tt__DNSName__ *, const char*, const char*); - -inline int soap_read_tt__DNSName__(struct soap *soap, tt__DNSName__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DNSName__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DNSName__(struct soap *soap, const char *URL, tt__DNSName__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DNSName__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DNSName__(struct soap *soap, tt__DNSName__ *p) -{ - if (::soap_read_tt__DNSName__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__DNSName is a typedef synonym of xsd__token */ - -#ifndef SOAP_TYPE_tt__DNSName_DEFINED -#define SOAP_TYPE_tt__DNSName_DEFINED - -#define soap_default_tt__DNSName soap_default_xsd__token - - -#define soap_serialize_tt__DNSName soap_serialize_xsd__token - - -#define soap_tt__DNSName2s(soap, a) ((a).c_str()) - -#define soap_out_tt__DNSName soap_out_xsd__token - - -#define soap_s2tt__DNSName(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, NULL) - -#define soap_in_tt__DNSName soap_in_xsd__token - - -#define soap_instantiate_tt__DNSName soap_instantiate_xsd__token - - -#define soap_new_tt__DNSName soap_new_xsd__token - - -#define soap_put_tt__DNSName soap_put_xsd__token - - -#define soap_write_tt__DNSName soap_write_xsd__token - - -#define soap_PUT_tt__DNSName soap_PUT_xsd__token - - -#define soap_PATCH_tt__DNSName soap_PATCH_xsd__token - - -#define soap_POST_send_tt__DNSName soap_POST_send_xsd__token - - -#define soap_get_tt__DNSName soap_get_xsd__token - - -#define soap_read_tt__DNSName soap_read_xsd__token - - -#define soap_GET_tt__DNSName soap_GET_xsd__token - - -#define soap_POST_recv_tt__DNSName soap_POST_recv_xsd__token - -#endif - -#ifndef SOAP_TYPE_tt__IPType__DEFINED -#define SOAP_TYPE_tt__IPType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPType_(struct soap*, const char*, int, const tt__IPType_ *, const char*); -SOAP_FMAC3 tt__IPType_ * SOAP_FMAC4 soap_in_tt__IPType_(struct soap*, const char*, tt__IPType_ *, const char*); -SOAP_FMAC1 tt__IPType_ * SOAP_FMAC2 soap_instantiate_tt__IPType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPType_ * soap_new_tt__IPType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPType_(soap, n, NULL, NULL, NULL); -} - -inline tt__IPType_ * soap_new_req_tt__IPType_( - struct soap *soap, - enum tt__IPType __item) -{ - tt__IPType_ *_p = ::soap_new_tt__IPType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPType_::__item = __item; - } - return _p; -} - -inline tt__IPType_ * soap_new_set_tt__IPType_( - struct soap *soap, - enum tt__IPType __item) -{ - tt__IPType_ *_p = ::soap_new_tt__IPType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IPType_(struct soap *soap, tt__IPType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPType", p->soap_type() == SOAP_TYPE_tt__IPType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPType_(struct soap *soap, const char *URL, tt__IPType_ 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, "tt:IPType", p->soap_type() == SOAP_TYPE_tt__IPType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPType_(struct soap *soap, const char *URL, tt__IPType_ 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, "tt:IPType", p->soap_type() == SOAP_TYPE_tt__IPType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPType_(struct soap *soap, const char *URL, tt__IPType_ 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, "tt:IPType", p->soap_type() == SOAP_TYPE_tt__IPType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPType_ * SOAP_FMAC4 soap_get_tt__IPType_(struct soap*, tt__IPType_ *, const char*, const char*); - -inline int soap_read_tt__IPType_(struct soap *soap, tt__IPType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPType_(struct soap *soap, const char *URL, tt__IPType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPType_(struct soap *soap, tt__IPType_ *p) -{ - if (::soap_read_tt__IPType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__HwAddress___DEFINED -#define SOAP_TYPE_tt__HwAddress___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__HwAddress__(struct soap*, const char*, int, const tt__HwAddress__ *, const char*); -SOAP_FMAC3 tt__HwAddress__ * SOAP_FMAC4 soap_in_tt__HwAddress__(struct soap*, const char*, tt__HwAddress__ *, const char*); -SOAP_FMAC1 tt__HwAddress__ * SOAP_FMAC2 soap_instantiate_tt__HwAddress__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__HwAddress__ * soap_new_tt__HwAddress__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__HwAddress__(soap, n, NULL, NULL, NULL); -} - -inline tt__HwAddress__ * soap_new_req_tt__HwAddress__( - struct soap *soap, - const std::string& __item) -{ - tt__HwAddress__ *_p = ::soap_new_tt__HwAddress__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__HwAddress__::__item = __item; - } - return _p; -} - -inline tt__HwAddress__ * soap_new_set_tt__HwAddress__( - struct soap *soap, - const std::string& __item) -{ - tt__HwAddress__ *_p = ::soap_new_tt__HwAddress__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__HwAddress__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__HwAddress__(struct soap *soap, tt__HwAddress__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:HwAddress", p->soap_type() == SOAP_TYPE_tt__HwAddress__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__HwAddress__(struct soap *soap, const char *URL, tt__HwAddress__ 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, "tt:HwAddress", p->soap_type() == SOAP_TYPE_tt__HwAddress__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__HwAddress__(struct soap *soap, const char *URL, tt__HwAddress__ 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, "tt:HwAddress", p->soap_type() == SOAP_TYPE_tt__HwAddress__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__HwAddress__(struct soap *soap, const char *URL, tt__HwAddress__ 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, "tt:HwAddress", p->soap_type() == SOAP_TYPE_tt__HwAddress__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__HwAddress__ * SOAP_FMAC4 soap_get_tt__HwAddress__(struct soap*, tt__HwAddress__ *, const char*, const char*); - -inline int soap_read_tt__HwAddress__(struct soap *soap, tt__HwAddress__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__HwAddress__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__HwAddress__(struct soap *soap, const char *URL, tt__HwAddress__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__HwAddress__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__HwAddress__(struct soap *soap, tt__HwAddress__ *p) -{ - if (::soap_read_tt__HwAddress__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__HwAddress is a typedef synonym of xsd__token */ - -#ifndef SOAP_TYPE_tt__HwAddress_DEFINED -#define SOAP_TYPE_tt__HwAddress_DEFINED - -#define soap_default_tt__HwAddress soap_default_xsd__token - - -#define soap_serialize_tt__HwAddress soap_serialize_xsd__token - - -#define soap_tt__HwAddress2s(soap, a) ((a).c_str()) - -#define soap_out_tt__HwAddress soap_out_xsd__token - - -#define soap_s2tt__HwAddress(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, NULL) - -#define soap_in_tt__HwAddress soap_in_xsd__token - - -#define soap_instantiate_tt__HwAddress soap_instantiate_xsd__token - - -#define soap_new_tt__HwAddress soap_new_xsd__token - - -#define soap_put_tt__HwAddress soap_put_xsd__token - - -#define soap_write_tt__HwAddress soap_write_xsd__token - - -#define soap_PUT_tt__HwAddress soap_PUT_xsd__token - - -#define soap_PATCH_tt__HwAddress soap_PATCH_xsd__token - - -#define soap_POST_send_tt__HwAddress soap_POST_send_xsd__token - - -#define soap_get_tt__HwAddress soap_get_xsd__token - - -#define soap_read_tt__HwAddress soap_read_xsd__token - - -#define soap_GET_tt__HwAddress soap_GET_xsd__token - - -#define soap_POST_recv_tt__HwAddress soap_POST_recv_xsd__token - -#endif - -#ifndef SOAP_TYPE_tt__IPv6Address___DEFINED -#define SOAP_TYPE_tt__IPv6Address___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6Address__(struct soap*, const char*, int, const tt__IPv6Address__ *, const char*); -SOAP_FMAC3 tt__IPv6Address__ * SOAP_FMAC4 soap_in_tt__IPv6Address__(struct soap*, const char*, tt__IPv6Address__ *, const char*); -SOAP_FMAC1 tt__IPv6Address__ * SOAP_FMAC2 soap_instantiate_tt__IPv6Address__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv6Address__ * soap_new_tt__IPv6Address__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv6Address__(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv6Address__ * soap_new_req_tt__IPv6Address__( - struct soap *soap, - const std::string& __item) -{ - tt__IPv6Address__ *_p = ::soap_new_tt__IPv6Address__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6Address__::__item = __item; - } - return _p; -} - -inline tt__IPv6Address__ * soap_new_set_tt__IPv6Address__( - struct soap *soap, - const std::string& __item) -{ - tt__IPv6Address__ *_p = ::soap_new_tt__IPv6Address__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6Address__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IPv6Address__(struct soap *soap, tt__IPv6Address__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv6Address", p->soap_type() == SOAP_TYPE_tt__IPv6Address__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv6Address__(struct soap *soap, const char *URL, tt__IPv6Address__ 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, "tt:IPv6Address", p->soap_type() == SOAP_TYPE_tt__IPv6Address__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv6Address__(struct soap *soap, const char *URL, tt__IPv6Address__ 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, "tt:IPv6Address", p->soap_type() == SOAP_TYPE_tt__IPv6Address__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv6Address__(struct soap *soap, const char *URL, tt__IPv6Address__ 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, "tt:IPv6Address", p->soap_type() == SOAP_TYPE_tt__IPv6Address__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv6Address__ * SOAP_FMAC4 soap_get_tt__IPv6Address__(struct soap*, tt__IPv6Address__ *, const char*, const char*); - -inline int soap_read_tt__IPv6Address__(struct soap *soap, tt__IPv6Address__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv6Address__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv6Address__(struct soap *soap, const char *URL, tt__IPv6Address__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv6Address__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv6Address__(struct soap *soap, tt__IPv6Address__ *p) -{ - if (::soap_read_tt__IPv6Address__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__IPv6Address is a typedef synonym of xsd__token */ - -#ifndef SOAP_TYPE_tt__IPv6Address_DEFINED -#define SOAP_TYPE_tt__IPv6Address_DEFINED - -#define soap_default_tt__IPv6Address soap_default_xsd__token - - -#define soap_serialize_tt__IPv6Address soap_serialize_xsd__token - - -#define soap_tt__IPv6Address2s(soap, a) ((a).c_str()) - -#define soap_out_tt__IPv6Address soap_out_xsd__token - - -#define soap_s2tt__IPv6Address(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, NULL) - -#define soap_in_tt__IPv6Address soap_in_xsd__token - - -#define soap_instantiate_tt__IPv6Address soap_instantiate_xsd__token - - -#define soap_new_tt__IPv6Address soap_new_xsd__token - - -#define soap_put_tt__IPv6Address soap_put_xsd__token - - -#define soap_write_tt__IPv6Address soap_write_xsd__token - - -#define soap_PUT_tt__IPv6Address soap_PUT_xsd__token - - -#define soap_PATCH_tt__IPv6Address soap_PATCH_xsd__token - - -#define soap_POST_send_tt__IPv6Address soap_POST_send_xsd__token - - -#define soap_get_tt__IPv6Address soap_get_xsd__token - - -#define soap_read_tt__IPv6Address soap_read_xsd__token - - -#define soap_GET_tt__IPv6Address soap_GET_xsd__token - - -#define soap_POST_recv_tt__IPv6Address soap_POST_recv_xsd__token - -#endif - -#ifndef SOAP_TYPE_tt__IPv4Address___DEFINED -#define SOAP_TYPE_tt__IPv4Address___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4Address__(struct soap*, const char*, int, const tt__IPv4Address__ *, const char*); -SOAP_FMAC3 tt__IPv4Address__ * SOAP_FMAC4 soap_in_tt__IPv4Address__(struct soap*, const char*, tt__IPv4Address__ *, const char*); -SOAP_FMAC1 tt__IPv4Address__ * SOAP_FMAC2 soap_instantiate_tt__IPv4Address__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv4Address__ * soap_new_tt__IPv4Address__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv4Address__(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv4Address__ * soap_new_req_tt__IPv4Address__( - struct soap *soap, - const std::string& __item) -{ - tt__IPv4Address__ *_p = ::soap_new_tt__IPv4Address__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv4Address__::__item = __item; - } - return _p; -} - -inline tt__IPv4Address__ * soap_new_set_tt__IPv4Address__( - struct soap *soap, - const std::string& __item) -{ - tt__IPv4Address__ *_p = ::soap_new_tt__IPv4Address__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv4Address__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IPv4Address__(struct soap *soap, tt__IPv4Address__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv4Address", p->soap_type() == SOAP_TYPE_tt__IPv4Address__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv4Address__(struct soap *soap, const char *URL, tt__IPv4Address__ 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, "tt:IPv4Address", p->soap_type() == SOAP_TYPE_tt__IPv4Address__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv4Address__(struct soap *soap, const char *URL, tt__IPv4Address__ 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, "tt:IPv4Address", p->soap_type() == SOAP_TYPE_tt__IPv4Address__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv4Address__(struct soap *soap, const char *URL, tt__IPv4Address__ 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, "tt:IPv4Address", p->soap_type() == SOAP_TYPE_tt__IPv4Address__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv4Address__ * SOAP_FMAC4 soap_get_tt__IPv4Address__(struct soap*, tt__IPv4Address__ *, const char*, const char*); - -inline int soap_read_tt__IPv4Address__(struct soap *soap, tt__IPv4Address__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv4Address__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv4Address__(struct soap *soap, const char *URL, tt__IPv4Address__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv4Address__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv4Address__(struct soap *soap, tt__IPv4Address__ *p) -{ - if (::soap_read_tt__IPv4Address__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__IPv4Address is a typedef synonym of xsd__token */ - -#ifndef SOAP_TYPE_tt__IPv4Address_DEFINED -#define SOAP_TYPE_tt__IPv4Address_DEFINED - -#define soap_default_tt__IPv4Address soap_default_xsd__token - - -#define soap_serialize_tt__IPv4Address soap_serialize_xsd__token - - -#define soap_tt__IPv4Address2s(soap, a) ((a).c_str()) - -#define soap_out_tt__IPv4Address soap_out_xsd__token - - -#define soap_s2tt__IPv4Address(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, NULL) - -#define soap_in_tt__IPv4Address soap_in_xsd__token - - -#define soap_instantiate_tt__IPv4Address soap_instantiate_xsd__token - - -#define soap_new_tt__IPv4Address soap_new_xsd__token - - -#define soap_put_tt__IPv4Address soap_put_xsd__token - - -#define soap_write_tt__IPv4Address soap_write_xsd__token - - -#define soap_PUT_tt__IPv4Address soap_PUT_xsd__token - - -#define soap_PATCH_tt__IPv4Address soap_PATCH_xsd__token - - -#define soap_POST_send_tt__IPv4Address soap_POST_send_xsd__token - - -#define soap_get_tt__IPv4Address soap_get_xsd__token - - -#define soap_read_tt__IPv4Address soap_read_xsd__token - - -#define soap_GET_tt__IPv4Address soap_GET_xsd__token - - -#define soap_POST_recv_tt__IPv4Address soap_POST_recv_xsd__token - -#endif - -#ifndef SOAP_TYPE_tt__NetworkHostType__DEFINED -#define SOAP_TYPE_tt__NetworkHostType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHostType_(struct soap*, const char*, int, const tt__NetworkHostType_ *, const char*); -SOAP_FMAC3 tt__NetworkHostType_ * SOAP_FMAC4 soap_in_tt__NetworkHostType_(struct soap*, const char*, tt__NetworkHostType_ *, const char*); -SOAP_FMAC1 tt__NetworkHostType_ * SOAP_FMAC2 soap_instantiate_tt__NetworkHostType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkHostType_ * soap_new_tt__NetworkHostType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkHostType_(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkHostType_ * soap_new_req_tt__NetworkHostType_( - struct soap *soap, - enum tt__NetworkHostType __item) -{ - tt__NetworkHostType_ *_p = ::soap_new_tt__NetworkHostType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkHostType_::__item = __item; - } - return _p; -} - -inline tt__NetworkHostType_ * soap_new_set_tt__NetworkHostType_( - struct soap *soap, - enum tt__NetworkHostType __item) -{ - tt__NetworkHostType_ *_p = ::soap_new_tt__NetworkHostType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkHostType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__NetworkHostType_(struct soap *soap, tt__NetworkHostType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkHostType", p->soap_type() == SOAP_TYPE_tt__NetworkHostType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkHostType_(struct soap *soap, const char *URL, tt__NetworkHostType_ 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, "tt:NetworkHostType", p->soap_type() == SOAP_TYPE_tt__NetworkHostType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkHostType_(struct soap *soap, const char *URL, tt__NetworkHostType_ 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, "tt:NetworkHostType", p->soap_type() == SOAP_TYPE_tt__NetworkHostType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkHostType_(struct soap *soap, const char *URL, tt__NetworkHostType_ 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, "tt:NetworkHostType", p->soap_type() == SOAP_TYPE_tt__NetworkHostType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkHostType_ * SOAP_FMAC4 soap_get_tt__NetworkHostType_(struct soap*, tt__NetworkHostType_ *, const char*, const char*); - -inline int soap_read_tt__NetworkHostType_(struct soap *soap, tt__NetworkHostType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkHostType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkHostType_(struct soap *soap, const char *URL, tt__NetworkHostType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkHostType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkHostType_(struct soap *soap, tt__NetworkHostType_ *p) -{ - if (::soap_read_tt__NetworkHostType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkProtocolType__DEFINED -#define SOAP_TYPE_tt__NetworkProtocolType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocolType_(struct soap*, const char*, int, const tt__NetworkProtocolType_ *, const char*); -SOAP_FMAC3 tt__NetworkProtocolType_ * SOAP_FMAC4 soap_in_tt__NetworkProtocolType_(struct soap*, const char*, tt__NetworkProtocolType_ *, const char*); -SOAP_FMAC1 tt__NetworkProtocolType_ * SOAP_FMAC2 soap_instantiate_tt__NetworkProtocolType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkProtocolType_ * soap_new_tt__NetworkProtocolType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkProtocolType_(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkProtocolType_ * soap_new_req_tt__NetworkProtocolType_( - struct soap *soap, - enum tt__NetworkProtocolType __item) -{ - tt__NetworkProtocolType_ *_p = ::soap_new_tt__NetworkProtocolType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkProtocolType_::__item = __item; - } - return _p; -} - -inline tt__NetworkProtocolType_ * soap_new_set_tt__NetworkProtocolType_( - struct soap *soap, - enum tt__NetworkProtocolType __item) -{ - tt__NetworkProtocolType_ *_p = ::soap_new_tt__NetworkProtocolType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkProtocolType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__NetworkProtocolType_(struct soap *soap, tt__NetworkProtocolType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkProtocolType", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkProtocolType_(struct soap *soap, const char *URL, tt__NetworkProtocolType_ 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, "tt:NetworkProtocolType", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkProtocolType_(struct soap *soap, const char *URL, tt__NetworkProtocolType_ 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, "tt:NetworkProtocolType", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkProtocolType_(struct soap *soap, const char *URL, tt__NetworkProtocolType_ 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, "tt:NetworkProtocolType", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkProtocolType_ * SOAP_FMAC4 soap_get_tt__NetworkProtocolType_(struct soap*, tt__NetworkProtocolType_ *, const char*, const char*); - -inline int soap_read_tt__NetworkProtocolType_(struct soap *soap, tt__NetworkProtocolType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkProtocolType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkProtocolType_(struct soap *soap, const char *URL, tt__NetworkProtocolType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkProtocolType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkProtocolType_(struct soap *soap, tt__NetworkProtocolType_ *p) -{ - if (::soap_read_tt__NetworkProtocolType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv6DHCPConfiguration__DEFINED -#define SOAP_TYPE_tt__IPv6DHCPConfiguration__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6DHCPConfiguration_(struct soap*, const char*, int, const tt__IPv6DHCPConfiguration_ *, const char*); -SOAP_FMAC3 tt__IPv6DHCPConfiguration_ * SOAP_FMAC4 soap_in_tt__IPv6DHCPConfiguration_(struct soap*, const char*, tt__IPv6DHCPConfiguration_ *, const char*); -SOAP_FMAC1 tt__IPv6DHCPConfiguration_ * SOAP_FMAC2 soap_instantiate_tt__IPv6DHCPConfiguration_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv6DHCPConfiguration_ * soap_new_tt__IPv6DHCPConfiguration_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv6DHCPConfiguration_(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv6DHCPConfiguration_ * soap_new_req_tt__IPv6DHCPConfiguration_( - struct soap *soap, - enum tt__IPv6DHCPConfiguration __item) -{ - tt__IPv6DHCPConfiguration_ *_p = ::soap_new_tt__IPv6DHCPConfiguration_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6DHCPConfiguration_::__item = __item; - } - return _p; -} - -inline tt__IPv6DHCPConfiguration_ * soap_new_set_tt__IPv6DHCPConfiguration_( - struct soap *soap, - enum tt__IPv6DHCPConfiguration __item) -{ - tt__IPv6DHCPConfiguration_ *_p = ::soap_new_tt__IPv6DHCPConfiguration_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6DHCPConfiguration_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IPv6DHCPConfiguration_(struct soap *soap, tt__IPv6DHCPConfiguration_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv6DHCPConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6DHCPConfiguration_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv6DHCPConfiguration_(struct soap *soap, const char *URL, tt__IPv6DHCPConfiguration_ 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, "tt:IPv6DHCPConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6DHCPConfiguration_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv6DHCPConfiguration_(struct soap *soap, const char *URL, tt__IPv6DHCPConfiguration_ 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, "tt:IPv6DHCPConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6DHCPConfiguration_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv6DHCPConfiguration_(struct soap *soap, const char *URL, tt__IPv6DHCPConfiguration_ 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, "tt:IPv6DHCPConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6DHCPConfiguration_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv6DHCPConfiguration_ * SOAP_FMAC4 soap_get_tt__IPv6DHCPConfiguration_(struct soap*, tt__IPv6DHCPConfiguration_ *, const char*, const char*); - -inline int soap_read_tt__IPv6DHCPConfiguration_(struct soap *soap, tt__IPv6DHCPConfiguration_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv6DHCPConfiguration_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv6DHCPConfiguration_(struct soap *soap, const char *URL, tt__IPv6DHCPConfiguration_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv6DHCPConfiguration_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv6DHCPConfiguration_(struct soap *soap, tt__IPv6DHCPConfiguration_ *p) -{ - if (::soap_read_tt__IPv6DHCPConfiguration_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IANA_IfTypes___DEFINED -#define SOAP_TYPE_tt__IANA_IfTypes___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IANA_IfTypes__(struct soap*, const char*, int, const tt__IANA_IfTypes__ *, const char*); -SOAP_FMAC3 tt__IANA_IfTypes__ * SOAP_FMAC4 soap_in_tt__IANA_IfTypes__(struct soap*, const char*, tt__IANA_IfTypes__ *, const char*); -SOAP_FMAC1 tt__IANA_IfTypes__ * SOAP_FMAC2 soap_instantiate_tt__IANA_IfTypes__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IANA_IfTypes__ * soap_new_tt__IANA_IfTypes__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IANA_IfTypes__(soap, n, NULL, NULL, NULL); -} - -inline tt__IANA_IfTypes__ * soap_new_req_tt__IANA_IfTypes__( - struct soap *soap, - int __item) -{ - tt__IANA_IfTypes__ *_p = ::soap_new_tt__IANA_IfTypes__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IANA_IfTypes__::__item = __item; - } - return _p; -} - -inline tt__IANA_IfTypes__ * soap_new_set_tt__IANA_IfTypes__( - struct soap *soap, - int __item) -{ - tt__IANA_IfTypes__ *_p = ::soap_new_tt__IANA_IfTypes__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IANA_IfTypes__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__IANA_IfTypes__(struct soap *soap, tt__IANA_IfTypes__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IANA-IfTypes", p->soap_type() == SOAP_TYPE_tt__IANA_IfTypes__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IANA_IfTypes__(struct soap *soap, const char *URL, tt__IANA_IfTypes__ 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, "tt:IANA-IfTypes", p->soap_type() == SOAP_TYPE_tt__IANA_IfTypes__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IANA_IfTypes__(struct soap *soap, const char *URL, tt__IANA_IfTypes__ 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, "tt:IANA-IfTypes", p->soap_type() == SOAP_TYPE_tt__IANA_IfTypes__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IANA_IfTypes__(struct soap *soap, const char *URL, tt__IANA_IfTypes__ 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, "tt:IANA-IfTypes", p->soap_type() == SOAP_TYPE_tt__IANA_IfTypes__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IANA_IfTypes__ * SOAP_FMAC4 soap_get_tt__IANA_IfTypes__(struct soap*, tt__IANA_IfTypes__ *, const char*, const char*); - -inline int soap_read_tt__IANA_IfTypes__(struct soap *soap, tt__IANA_IfTypes__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IANA_IfTypes__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IANA_IfTypes__(struct soap *soap, const char *URL, tt__IANA_IfTypes__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IANA_IfTypes__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IANA_IfTypes__(struct soap *soap, tt__IANA_IfTypes__ *p) -{ - if (::soap_read_tt__IANA_IfTypes__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Duplex__DEFINED -#define SOAP_TYPE_tt__Duplex__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Duplex_(struct soap*, const char*, int, const tt__Duplex_ *, const char*); -SOAP_FMAC3 tt__Duplex_ * SOAP_FMAC4 soap_in_tt__Duplex_(struct soap*, const char*, tt__Duplex_ *, const char*); -SOAP_FMAC1 tt__Duplex_ * SOAP_FMAC2 soap_instantiate_tt__Duplex_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Duplex_ * soap_new_tt__Duplex_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Duplex_(soap, n, NULL, NULL, NULL); -} - -inline tt__Duplex_ * soap_new_req_tt__Duplex_( - struct soap *soap, - enum tt__Duplex __item) -{ - tt__Duplex_ *_p = ::soap_new_tt__Duplex_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Duplex_::__item = __item; - } - return _p; -} - -inline tt__Duplex_ * soap_new_set_tt__Duplex_( - struct soap *soap, - enum tt__Duplex __item) -{ - tt__Duplex_ *_p = ::soap_new_tt__Duplex_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Duplex_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Duplex_(struct soap *soap, tt__Duplex_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Duplex", p->soap_type() == SOAP_TYPE_tt__Duplex_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Duplex_(struct soap *soap, const char *URL, tt__Duplex_ 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, "tt:Duplex", p->soap_type() == SOAP_TYPE_tt__Duplex_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Duplex_(struct soap *soap, const char *URL, tt__Duplex_ 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, "tt:Duplex", p->soap_type() == SOAP_TYPE_tt__Duplex_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Duplex_(struct soap *soap, const char *URL, tt__Duplex_ 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, "tt:Duplex", p->soap_type() == SOAP_TYPE_tt__Duplex_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Duplex_ * SOAP_FMAC4 soap_get_tt__Duplex_(struct soap*, tt__Duplex_ *, const char*, const char*); - -inline int soap_read_tt__Duplex_(struct soap *soap, tt__Duplex_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Duplex_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Duplex_(struct soap *soap, const char *URL, tt__Duplex_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Duplex_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Duplex_(struct soap *soap, tt__Duplex_ *p) -{ - if (::soap_read_tt__Duplex_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceConfigPriority___DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceConfigPriority___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceConfigPriority__(struct soap*, const char*, int, const tt__NetworkInterfaceConfigPriority__ *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceConfigPriority__ * SOAP_FMAC4 soap_in_tt__NetworkInterfaceConfigPriority__(struct soap*, const char*, tt__NetworkInterfaceConfigPriority__ *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceConfigPriority__ * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceConfigPriority__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceConfigPriority__ * soap_new_tt__NetworkInterfaceConfigPriority__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceConfigPriority__(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceConfigPriority__ * soap_new_req_tt__NetworkInterfaceConfigPriority__( - struct soap *soap, - const std::string& __item) -{ - tt__NetworkInterfaceConfigPriority__ *_p = ::soap_new_tt__NetworkInterfaceConfigPriority__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceConfigPriority__::__item = __item; - } - return _p; -} - -inline tt__NetworkInterfaceConfigPriority__ * soap_new_set_tt__NetworkInterfaceConfigPriority__( - struct soap *soap, - const std::string& __item) -{ - tt__NetworkInterfaceConfigPriority__ *_p = ::soap_new_tt__NetworkInterfaceConfigPriority__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceConfigPriority__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceConfigPriority__(struct soap *soap, tt__NetworkInterfaceConfigPriority__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceConfigPriority", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConfigPriority__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceConfigPriority__(struct soap *soap, const char *URL, tt__NetworkInterfaceConfigPriority__ 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, "tt:NetworkInterfaceConfigPriority", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConfigPriority__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceConfigPriority__(struct soap *soap, const char *URL, tt__NetworkInterfaceConfigPriority__ 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, "tt:NetworkInterfaceConfigPriority", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConfigPriority__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceConfigPriority__(struct soap *soap, const char *URL, tt__NetworkInterfaceConfigPriority__ 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, "tt:NetworkInterfaceConfigPriority", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConfigPriority__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceConfigPriority__ * SOAP_FMAC4 soap_get_tt__NetworkInterfaceConfigPriority__(struct soap*, tt__NetworkInterfaceConfigPriority__ *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceConfigPriority__(struct soap *soap, tt__NetworkInterfaceConfigPriority__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceConfigPriority__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceConfigPriority__(struct soap *soap, const char *URL, tt__NetworkInterfaceConfigPriority__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceConfigPriority__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceConfigPriority__(struct soap *soap, tt__NetworkInterfaceConfigPriority__ *p) -{ - if (::soap_read_tt__NetworkInterfaceConfigPriority__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* tt__NetworkInterfaceConfigPriority is a typedef synonym of xsd__integer */ - -#ifndef SOAP_TYPE_tt__NetworkInterfaceConfigPriority_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceConfigPriority_DEFINED - -#define soap_default_tt__NetworkInterfaceConfigPriority soap_default_xsd__integer - - -#define soap_serialize_tt__NetworkInterfaceConfigPriority soap_serialize_xsd__integer - - -#define soap_tt__NetworkInterfaceConfigPriority2s(soap, a) ((a).c_str()) - -#define soap_out_tt__NetworkInterfaceConfigPriority soap_out_xsd__integer - - -#define soap_s2tt__NetworkInterfaceConfigPriority(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, "[-+]?\\d+") - -#define soap_in_tt__NetworkInterfaceConfigPriority soap_in_xsd__integer - - -#define soap_instantiate_tt__NetworkInterfaceConfigPriority soap_instantiate_xsd__integer - - -#define soap_new_tt__NetworkInterfaceConfigPriority soap_new_xsd__integer - - -#define soap_put_tt__NetworkInterfaceConfigPriority soap_put_xsd__integer - - -#define soap_write_tt__NetworkInterfaceConfigPriority soap_write_xsd__integer - - -#define soap_PUT_tt__NetworkInterfaceConfigPriority soap_PUT_xsd__integer - - -#define soap_PATCH_tt__NetworkInterfaceConfigPriority soap_PATCH_xsd__integer - - -#define soap_POST_send_tt__NetworkInterfaceConfigPriority soap_POST_send_xsd__integer - - -#define soap_get_tt__NetworkInterfaceConfigPriority soap_get_xsd__integer - - -#define soap_read_tt__NetworkInterfaceConfigPriority soap_read_xsd__integer - - -#define soap_GET_tt__NetworkInterfaceConfigPriority soap_GET_xsd__integer - - -#define soap_POST_recv_tt__NetworkInterfaceConfigPriority soap_POST_recv_xsd__integer - -#endif - -#ifndef SOAP_TYPE_tt__DiscoveryMode__DEFINED -#define SOAP_TYPE_tt__DiscoveryMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DiscoveryMode_(struct soap*, const char*, int, const tt__DiscoveryMode_ *, const char*); -SOAP_FMAC3 tt__DiscoveryMode_ * SOAP_FMAC4 soap_in_tt__DiscoveryMode_(struct soap*, const char*, tt__DiscoveryMode_ *, const char*); -SOAP_FMAC1 tt__DiscoveryMode_ * SOAP_FMAC2 soap_instantiate_tt__DiscoveryMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DiscoveryMode_ * soap_new_tt__DiscoveryMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DiscoveryMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__DiscoveryMode_ * soap_new_req_tt__DiscoveryMode_( - struct soap *soap, - enum tt__DiscoveryMode __item) -{ - tt__DiscoveryMode_ *_p = ::soap_new_tt__DiscoveryMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DiscoveryMode_::__item = __item; - } - return _p; -} - -inline tt__DiscoveryMode_ * soap_new_set_tt__DiscoveryMode_( - struct soap *soap, - enum tt__DiscoveryMode __item) -{ - tt__DiscoveryMode_ *_p = ::soap_new_tt__DiscoveryMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DiscoveryMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__DiscoveryMode_(struct soap *soap, tt__DiscoveryMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DiscoveryMode", p->soap_type() == SOAP_TYPE_tt__DiscoveryMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DiscoveryMode_(struct soap *soap, const char *URL, tt__DiscoveryMode_ 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, "tt:DiscoveryMode", p->soap_type() == SOAP_TYPE_tt__DiscoveryMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DiscoveryMode_(struct soap *soap, const char *URL, tt__DiscoveryMode_ 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, "tt:DiscoveryMode", p->soap_type() == SOAP_TYPE_tt__DiscoveryMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DiscoveryMode_(struct soap *soap, const char *URL, tt__DiscoveryMode_ 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, "tt:DiscoveryMode", p->soap_type() == SOAP_TYPE_tt__DiscoveryMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DiscoveryMode_ * SOAP_FMAC4 soap_get_tt__DiscoveryMode_(struct soap*, tt__DiscoveryMode_ *, const char*, const char*); - -inline int soap_read_tt__DiscoveryMode_(struct soap *soap, tt__DiscoveryMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DiscoveryMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DiscoveryMode_(struct soap *soap, const char *URL, tt__DiscoveryMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DiscoveryMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DiscoveryMode_(struct soap *soap, tt__DiscoveryMode_ *p) -{ - if (::soap_read_tt__DiscoveryMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ScopeDefinition__DEFINED -#define SOAP_TYPE_tt__ScopeDefinition__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ScopeDefinition_(struct soap*, const char*, int, const tt__ScopeDefinition_ *, const char*); -SOAP_FMAC3 tt__ScopeDefinition_ * SOAP_FMAC4 soap_in_tt__ScopeDefinition_(struct soap*, const char*, tt__ScopeDefinition_ *, const char*); -SOAP_FMAC1 tt__ScopeDefinition_ * SOAP_FMAC2 soap_instantiate_tt__ScopeDefinition_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ScopeDefinition_ * soap_new_tt__ScopeDefinition_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ScopeDefinition_(soap, n, NULL, NULL, NULL); -} - -inline tt__ScopeDefinition_ * soap_new_req_tt__ScopeDefinition_( - struct soap *soap, - enum tt__ScopeDefinition __item) -{ - tt__ScopeDefinition_ *_p = ::soap_new_tt__ScopeDefinition_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ScopeDefinition_::__item = __item; - } - return _p; -} - -inline tt__ScopeDefinition_ * soap_new_set_tt__ScopeDefinition_( - struct soap *soap, - enum tt__ScopeDefinition __item) -{ - tt__ScopeDefinition_ *_p = ::soap_new_tt__ScopeDefinition_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ScopeDefinition_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ScopeDefinition_(struct soap *soap, tt__ScopeDefinition_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ScopeDefinition", p->soap_type() == SOAP_TYPE_tt__ScopeDefinition_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ScopeDefinition_(struct soap *soap, const char *URL, tt__ScopeDefinition_ 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, "tt:ScopeDefinition", p->soap_type() == SOAP_TYPE_tt__ScopeDefinition_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ScopeDefinition_(struct soap *soap, const char *URL, tt__ScopeDefinition_ 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, "tt:ScopeDefinition", p->soap_type() == SOAP_TYPE_tt__ScopeDefinition_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ScopeDefinition_(struct soap *soap, const char *URL, tt__ScopeDefinition_ 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, "tt:ScopeDefinition", p->soap_type() == SOAP_TYPE_tt__ScopeDefinition_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ScopeDefinition_ * SOAP_FMAC4 soap_get_tt__ScopeDefinition_(struct soap*, tt__ScopeDefinition_ *, const char*, const char*); - -inline int soap_read_tt__ScopeDefinition_(struct soap *soap, tt__ScopeDefinition_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ScopeDefinition_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ScopeDefinition_(struct soap *soap, const char *URL, tt__ScopeDefinition_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ScopeDefinition_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ScopeDefinition_(struct soap *soap, tt__ScopeDefinition_ *p) -{ - if (::soap_read_tt__ScopeDefinition_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TransportProtocol__DEFINED -#define SOAP_TYPE_tt__TransportProtocol__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TransportProtocol_(struct soap*, const char*, int, const tt__TransportProtocol_ *, const char*); -SOAP_FMAC3 tt__TransportProtocol_ * SOAP_FMAC4 soap_in_tt__TransportProtocol_(struct soap*, const char*, tt__TransportProtocol_ *, const char*); -SOAP_FMAC1 tt__TransportProtocol_ * SOAP_FMAC2 soap_instantiate_tt__TransportProtocol_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TransportProtocol_ * soap_new_tt__TransportProtocol_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TransportProtocol_(soap, n, NULL, NULL, NULL); -} - -inline tt__TransportProtocol_ * soap_new_req_tt__TransportProtocol_( - struct soap *soap, - enum tt__TransportProtocol __item) -{ - tt__TransportProtocol_ *_p = ::soap_new_tt__TransportProtocol_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TransportProtocol_::__item = __item; - } - return _p; -} - -inline tt__TransportProtocol_ * soap_new_set_tt__TransportProtocol_( - struct soap *soap, - enum tt__TransportProtocol __item) -{ - tt__TransportProtocol_ *_p = ::soap_new_tt__TransportProtocol_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TransportProtocol_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__TransportProtocol_(struct soap *soap, tt__TransportProtocol_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TransportProtocol", p->soap_type() == SOAP_TYPE_tt__TransportProtocol_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TransportProtocol_(struct soap *soap, const char *URL, tt__TransportProtocol_ 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, "tt:TransportProtocol", p->soap_type() == SOAP_TYPE_tt__TransportProtocol_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TransportProtocol_(struct soap *soap, const char *URL, tt__TransportProtocol_ 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, "tt:TransportProtocol", p->soap_type() == SOAP_TYPE_tt__TransportProtocol_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TransportProtocol_(struct soap *soap, const char *URL, tt__TransportProtocol_ 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, "tt:TransportProtocol", p->soap_type() == SOAP_TYPE_tt__TransportProtocol_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TransportProtocol_ * SOAP_FMAC4 soap_get_tt__TransportProtocol_(struct soap*, tt__TransportProtocol_ *, const char*, const char*); - -inline int soap_read_tt__TransportProtocol_(struct soap *soap, tt__TransportProtocol_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TransportProtocol_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TransportProtocol_(struct soap *soap, const char *URL, tt__TransportProtocol_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TransportProtocol_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TransportProtocol_(struct soap *soap, tt__TransportProtocol_ *p) -{ - if (::soap_read_tt__TransportProtocol_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__StreamType__DEFINED -#define SOAP_TYPE_tt__StreamType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StreamType_(struct soap*, const char*, int, const tt__StreamType_ *, const char*); -SOAP_FMAC3 tt__StreamType_ * SOAP_FMAC4 soap_in_tt__StreamType_(struct soap*, const char*, tt__StreamType_ *, const char*); -SOAP_FMAC1 tt__StreamType_ * SOAP_FMAC2 soap_instantiate_tt__StreamType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__StreamType_ * soap_new_tt__StreamType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__StreamType_(soap, n, NULL, NULL, NULL); -} - -inline tt__StreamType_ * soap_new_req_tt__StreamType_( - struct soap *soap, - enum tt__StreamType __item) -{ - tt__StreamType_ *_p = ::soap_new_tt__StreamType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__StreamType_::__item = __item; - } - return _p; -} - -inline tt__StreamType_ * soap_new_set_tt__StreamType_( - struct soap *soap, - enum tt__StreamType __item) -{ - tt__StreamType_ *_p = ::soap_new_tt__StreamType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__StreamType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__StreamType_(struct soap *soap, tt__StreamType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:StreamType", p->soap_type() == SOAP_TYPE_tt__StreamType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__StreamType_(struct soap *soap, const char *URL, tt__StreamType_ 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, "tt:StreamType", p->soap_type() == SOAP_TYPE_tt__StreamType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__StreamType_(struct soap *soap, const char *URL, tt__StreamType_ 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, "tt:StreamType", p->soap_type() == SOAP_TYPE_tt__StreamType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__StreamType_(struct soap *soap, const char *URL, tt__StreamType_ 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, "tt:StreamType", p->soap_type() == SOAP_TYPE_tt__StreamType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__StreamType_ * SOAP_FMAC4 soap_get_tt__StreamType_(struct soap*, tt__StreamType_ *, const char*, const char*); - -inline int soap_read_tt__StreamType_(struct soap *soap, tt__StreamType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__StreamType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__StreamType_(struct soap *soap, const char *URL, tt__StreamType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__StreamType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__StreamType_(struct soap *soap, tt__StreamType_ *p) -{ - if (::soap_read_tt__StreamType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataCompressionType__DEFINED -#define SOAP_TYPE_tt__MetadataCompressionType__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataCompressionType_(struct soap*, const char*, int, const tt__MetadataCompressionType_ *, const char*); -SOAP_FMAC3 tt__MetadataCompressionType_ * SOAP_FMAC4 soap_in_tt__MetadataCompressionType_(struct soap*, const char*, tt__MetadataCompressionType_ *, const char*); -SOAP_FMAC1 tt__MetadataCompressionType_ * SOAP_FMAC2 soap_instantiate_tt__MetadataCompressionType_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataCompressionType_ * soap_new_tt__MetadataCompressionType_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataCompressionType_(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataCompressionType_ * soap_new_req_tt__MetadataCompressionType_( - struct soap *soap, - enum tt__MetadataCompressionType __item) -{ - tt__MetadataCompressionType_ *_p = ::soap_new_tt__MetadataCompressionType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataCompressionType_::__item = __item; - } - return _p; -} - -inline tt__MetadataCompressionType_ * soap_new_set_tt__MetadataCompressionType_( - struct soap *soap, - enum tt__MetadataCompressionType __item) -{ - tt__MetadataCompressionType_ *_p = ::soap_new_tt__MetadataCompressionType_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataCompressionType_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__MetadataCompressionType_(struct soap *soap, tt__MetadataCompressionType_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataCompressionType", p->soap_type() == SOAP_TYPE_tt__MetadataCompressionType_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataCompressionType_(struct soap *soap, const char *URL, tt__MetadataCompressionType_ 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, "tt:MetadataCompressionType", p->soap_type() == SOAP_TYPE_tt__MetadataCompressionType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataCompressionType_(struct soap *soap, const char *URL, tt__MetadataCompressionType_ 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, "tt:MetadataCompressionType", p->soap_type() == SOAP_TYPE_tt__MetadataCompressionType_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataCompressionType_(struct soap *soap, const char *URL, tt__MetadataCompressionType_ 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, "tt:MetadataCompressionType", p->soap_type() == SOAP_TYPE_tt__MetadataCompressionType_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataCompressionType_ * SOAP_FMAC4 soap_get_tt__MetadataCompressionType_(struct soap*, tt__MetadataCompressionType_ *, const char*, const char*); - -inline int soap_read_tt__MetadataCompressionType_(struct soap *soap, tt__MetadataCompressionType_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataCompressionType_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataCompressionType_(struct soap *soap, const char *URL, tt__MetadataCompressionType_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataCompressionType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataCompressionType_(struct soap *soap, tt__MetadataCompressionType_ *p) -{ - if (::soap_read_tt__MetadataCompressionType_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncodingMimeNames__DEFINED -#define SOAP_TYPE_tt__AudioEncodingMimeNames__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncodingMimeNames_(struct soap*, const char*, int, const tt__AudioEncodingMimeNames_ *, const char*); -SOAP_FMAC3 tt__AudioEncodingMimeNames_ * SOAP_FMAC4 soap_in_tt__AudioEncodingMimeNames_(struct soap*, const char*, tt__AudioEncodingMimeNames_ *, const char*); -SOAP_FMAC1 tt__AudioEncodingMimeNames_ * SOAP_FMAC2 soap_instantiate_tt__AudioEncodingMimeNames_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioEncodingMimeNames_ * soap_new_tt__AudioEncodingMimeNames_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioEncodingMimeNames_(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioEncodingMimeNames_ * soap_new_req_tt__AudioEncodingMimeNames_( - struct soap *soap, - enum tt__AudioEncodingMimeNames __item) -{ - tt__AudioEncodingMimeNames_ *_p = ::soap_new_tt__AudioEncodingMimeNames_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncodingMimeNames_::__item = __item; - } - return _p; -} - -inline tt__AudioEncodingMimeNames_ * soap_new_set_tt__AudioEncodingMimeNames_( - struct soap *soap, - enum tt__AudioEncodingMimeNames __item) -{ - tt__AudioEncodingMimeNames_ *_p = ::soap_new_tt__AudioEncodingMimeNames_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncodingMimeNames_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__AudioEncodingMimeNames_(struct soap *soap, tt__AudioEncodingMimeNames_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__AudioEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncodingMimeNames_(struct soap *soap, const char *URL, tt__AudioEncodingMimeNames_ 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, "tt:AudioEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__AudioEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncodingMimeNames_(struct soap *soap, const char *URL, tt__AudioEncodingMimeNames_ 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, "tt:AudioEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__AudioEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncodingMimeNames_(struct soap *soap, const char *URL, tt__AudioEncodingMimeNames_ 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, "tt:AudioEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__AudioEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioEncodingMimeNames_ * SOAP_FMAC4 soap_get_tt__AudioEncodingMimeNames_(struct soap*, tt__AudioEncodingMimeNames_ *, const char*, const char*); - -inline int soap_read_tt__AudioEncodingMimeNames_(struct soap *soap, tt__AudioEncodingMimeNames_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncodingMimeNames_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncodingMimeNames_(struct soap *soap, const char *URL, tt__AudioEncodingMimeNames_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncodingMimeNames_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncodingMimeNames_(struct soap *soap, tt__AudioEncodingMimeNames_ *p) -{ - if (::soap_read_tt__AudioEncodingMimeNames_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncoding__DEFINED -#define SOAP_TYPE_tt__AudioEncoding__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoding_(struct soap*, const char*, int, const tt__AudioEncoding_ *, const char*); -SOAP_FMAC3 tt__AudioEncoding_ * SOAP_FMAC4 soap_in_tt__AudioEncoding_(struct soap*, const char*, tt__AudioEncoding_ *, const char*); -SOAP_FMAC1 tt__AudioEncoding_ * SOAP_FMAC2 soap_instantiate_tt__AudioEncoding_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioEncoding_ * soap_new_tt__AudioEncoding_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioEncoding_(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioEncoding_ * soap_new_req_tt__AudioEncoding_( - struct soap *soap, - enum tt__AudioEncoding __item) -{ - tt__AudioEncoding_ *_p = ::soap_new_tt__AudioEncoding_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoding_::__item = __item; - } - return _p; -} - -inline tt__AudioEncoding_ * soap_new_set_tt__AudioEncoding_( - struct soap *soap, - enum tt__AudioEncoding __item) -{ - tt__AudioEncoding_ *_p = ::soap_new_tt__AudioEncoding_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoding_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__AudioEncoding_(struct soap *soap, tt__AudioEncoding_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioEncoding", p->soap_type() == SOAP_TYPE_tt__AudioEncoding_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncoding_(struct soap *soap, const char *URL, tt__AudioEncoding_ 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, "tt:AudioEncoding", p->soap_type() == SOAP_TYPE_tt__AudioEncoding_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncoding_(struct soap *soap, const char *URL, tt__AudioEncoding_ 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, "tt:AudioEncoding", p->soap_type() == SOAP_TYPE_tt__AudioEncoding_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncoding_(struct soap *soap, const char *URL, tt__AudioEncoding_ 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, "tt:AudioEncoding", p->soap_type() == SOAP_TYPE_tt__AudioEncoding_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioEncoding_ * SOAP_FMAC4 soap_get_tt__AudioEncoding_(struct soap*, tt__AudioEncoding_ *, const char*, const char*); - -inline int soap_read_tt__AudioEncoding_(struct soap *soap, tt__AudioEncoding_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncoding_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncoding_(struct soap *soap, const char *URL, tt__AudioEncoding_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncoding_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncoding_(struct soap *soap, tt__AudioEncoding_ *p) -{ - if (::soap_read_tt__AudioEncoding_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncodingProfiles__DEFINED -#define SOAP_TYPE_tt__VideoEncodingProfiles__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingProfiles_(struct soap*, const char*, int, const tt__VideoEncodingProfiles_ *, const char*); -SOAP_FMAC3 tt__VideoEncodingProfiles_ * SOAP_FMAC4 soap_in_tt__VideoEncodingProfiles_(struct soap*, const char*, tt__VideoEncodingProfiles_ *, const char*); -SOAP_FMAC1 tt__VideoEncodingProfiles_ * SOAP_FMAC2 soap_instantiate_tt__VideoEncodingProfiles_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncodingProfiles_ * soap_new_tt__VideoEncodingProfiles_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncodingProfiles_(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncodingProfiles_ * soap_new_req_tt__VideoEncodingProfiles_( - struct soap *soap, - enum tt__VideoEncodingProfiles __item) -{ - tt__VideoEncodingProfiles_ *_p = ::soap_new_tt__VideoEncodingProfiles_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncodingProfiles_::__item = __item; - } - return _p; -} - -inline tt__VideoEncodingProfiles_ * soap_new_set_tt__VideoEncodingProfiles_( - struct soap *soap, - enum tt__VideoEncodingProfiles __item) -{ - tt__VideoEncodingProfiles_ *_p = ::soap_new_tt__VideoEncodingProfiles_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncodingProfiles_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__VideoEncodingProfiles_(struct soap *soap, tt__VideoEncodingProfiles_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncodingProfiles", p->soap_type() == SOAP_TYPE_tt__VideoEncodingProfiles_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncodingProfiles_(struct soap *soap, const char *URL, tt__VideoEncodingProfiles_ 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, "tt:VideoEncodingProfiles", p->soap_type() == SOAP_TYPE_tt__VideoEncodingProfiles_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncodingProfiles_(struct soap *soap, const char *URL, tt__VideoEncodingProfiles_ 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, "tt:VideoEncodingProfiles", p->soap_type() == SOAP_TYPE_tt__VideoEncodingProfiles_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncodingProfiles_(struct soap *soap, const char *URL, tt__VideoEncodingProfiles_ 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, "tt:VideoEncodingProfiles", p->soap_type() == SOAP_TYPE_tt__VideoEncodingProfiles_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncodingProfiles_ * SOAP_FMAC4 soap_get_tt__VideoEncodingProfiles_(struct soap*, tt__VideoEncodingProfiles_ *, const char*, const char*); - -inline int soap_read_tt__VideoEncodingProfiles_(struct soap *soap, tt__VideoEncodingProfiles_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncodingProfiles_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncodingProfiles_(struct soap *soap, const char *URL, tt__VideoEncodingProfiles_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncodingProfiles_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncodingProfiles_(struct soap *soap, tt__VideoEncodingProfiles_ *p) -{ - if (::soap_read_tt__VideoEncodingProfiles_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncodingMimeNames__DEFINED -#define SOAP_TYPE_tt__VideoEncodingMimeNames__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncodingMimeNames_(struct soap*, const char*, int, const tt__VideoEncodingMimeNames_ *, const char*); -SOAP_FMAC3 tt__VideoEncodingMimeNames_ * SOAP_FMAC4 soap_in_tt__VideoEncodingMimeNames_(struct soap*, const char*, tt__VideoEncodingMimeNames_ *, const char*); -SOAP_FMAC1 tt__VideoEncodingMimeNames_ * SOAP_FMAC2 soap_instantiate_tt__VideoEncodingMimeNames_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncodingMimeNames_ * soap_new_tt__VideoEncodingMimeNames_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncodingMimeNames_(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncodingMimeNames_ * soap_new_req_tt__VideoEncodingMimeNames_( - struct soap *soap, - enum tt__VideoEncodingMimeNames __item) -{ - tt__VideoEncodingMimeNames_ *_p = ::soap_new_tt__VideoEncodingMimeNames_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncodingMimeNames_::__item = __item; - } - return _p; -} - -inline tt__VideoEncodingMimeNames_ * soap_new_set_tt__VideoEncodingMimeNames_( - struct soap *soap, - enum tt__VideoEncodingMimeNames __item) -{ - tt__VideoEncodingMimeNames_ *_p = ::soap_new_tt__VideoEncodingMimeNames_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncodingMimeNames_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__VideoEncodingMimeNames_(struct soap *soap, tt__VideoEncodingMimeNames_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__VideoEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncodingMimeNames_(struct soap *soap, const char *URL, tt__VideoEncodingMimeNames_ 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, "tt:VideoEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__VideoEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncodingMimeNames_(struct soap *soap, const char *URL, tt__VideoEncodingMimeNames_ 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, "tt:VideoEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__VideoEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncodingMimeNames_(struct soap *soap, const char *URL, tt__VideoEncodingMimeNames_ 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, "tt:VideoEncodingMimeNames", p->soap_type() == SOAP_TYPE_tt__VideoEncodingMimeNames_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncodingMimeNames_ * SOAP_FMAC4 soap_get_tt__VideoEncodingMimeNames_(struct soap*, tt__VideoEncodingMimeNames_ *, const char*, const char*); - -inline int soap_read_tt__VideoEncodingMimeNames_(struct soap *soap, tt__VideoEncodingMimeNames_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncodingMimeNames_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncodingMimeNames_(struct soap *soap, const char *URL, tt__VideoEncodingMimeNames_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncodingMimeNames_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncodingMimeNames_(struct soap *soap, tt__VideoEncodingMimeNames_ *p) -{ - if (::soap_read_tt__VideoEncodingMimeNames_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__H264Profile__DEFINED -#define SOAP_TYPE_tt__H264Profile__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Profile_(struct soap*, const char*, int, const tt__H264Profile_ *, const char*); -SOAP_FMAC3 tt__H264Profile_ * SOAP_FMAC4 soap_in_tt__H264Profile_(struct soap*, const char*, tt__H264Profile_ *, const char*); -SOAP_FMAC1 tt__H264Profile_ * SOAP_FMAC2 soap_instantiate_tt__H264Profile_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__H264Profile_ * soap_new_tt__H264Profile_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__H264Profile_(soap, n, NULL, NULL, NULL); -} - -inline tt__H264Profile_ * soap_new_req_tt__H264Profile_( - struct soap *soap, - enum tt__H264Profile __item) -{ - tt__H264Profile_ *_p = ::soap_new_tt__H264Profile_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Profile_::__item = __item; - } - return _p; -} - -inline tt__H264Profile_ * soap_new_set_tt__H264Profile_( - struct soap *soap, - enum tt__H264Profile __item) -{ - tt__H264Profile_ *_p = ::soap_new_tt__H264Profile_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Profile_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__H264Profile_(struct soap *soap, tt__H264Profile_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:H264Profile", p->soap_type() == SOAP_TYPE_tt__H264Profile_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__H264Profile_(struct soap *soap, const char *URL, tt__H264Profile_ 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, "tt:H264Profile", p->soap_type() == SOAP_TYPE_tt__H264Profile_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__H264Profile_(struct soap *soap, const char *URL, tt__H264Profile_ 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, "tt:H264Profile", p->soap_type() == SOAP_TYPE_tt__H264Profile_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__H264Profile_(struct soap *soap, const char *URL, tt__H264Profile_ 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, "tt:H264Profile", p->soap_type() == SOAP_TYPE_tt__H264Profile_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__H264Profile_ * SOAP_FMAC4 soap_get_tt__H264Profile_(struct soap*, tt__H264Profile_ *, const char*, const char*); - -inline int soap_read_tt__H264Profile_(struct soap *soap, tt__H264Profile_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__H264Profile_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__H264Profile_(struct soap *soap, const char *URL, tt__H264Profile_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__H264Profile_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__H264Profile_(struct soap *soap, tt__H264Profile_ *p) -{ - if (::soap_read_tt__H264Profile_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Mpeg4Profile__DEFINED -#define SOAP_TYPE_tt__Mpeg4Profile__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Profile_(struct soap*, const char*, int, const tt__Mpeg4Profile_ *, const char*); -SOAP_FMAC3 tt__Mpeg4Profile_ * SOAP_FMAC4 soap_in_tt__Mpeg4Profile_(struct soap*, const char*, tt__Mpeg4Profile_ *, const char*); -SOAP_FMAC1 tt__Mpeg4Profile_ * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Profile_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Mpeg4Profile_ * soap_new_tt__Mpeg4Profile_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Mpeg4Profile_(soap, n, NULL, NULL, NULL); -} - -inline tt__Mpeg4Profile_ * soap_new_req_tt__Mpeg4Profile_( - struct soap *soap, - enum tt__Mpeg4Profile __item) -{ - tt__Mpeg4Profile_ *_p = ::soap_new_tt__Mpeg4Profile_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Profile_::__item = __item; - } - return _p; -} - -inline tt__Mpeg4Profile_ * soap_new_set_tt__Mpeg4Profile_( - struct soap *soap, - enum tt__Mpeg4Profile __item) -{ - tt__Mpeg4Profile_ *_p = ::soap_new_tt__Mpeg4Profile_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Profile_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Mpeg4Profile_(struct soap *soap, tt__Mpeg4Profile_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Mpeg4Profile", p->soap_type() == SOAP_TYPE_tt__Mpeg4Profile_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Mpeg4Profile_(struct soap *soap, const char *URL, tt__Mpeg4Profile_ 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, "tt:Mpeg4Profile", p->soap_type() == SOAP_TYPE_tt__Mpeg4Profile_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Mpeg4Profile_(struct soap *soap, const char *URL, tt__Mpeg4Profile_ 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, "tt:Mpeg4Profile", p->soap_type() == SOAP_TYPE_tt__Mpeg4Profile_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Mpeg4Profile_(struct soap *soap, const char *URL, tt__Mpeg4Profile_ 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, "tt:Mpeg4Profile", p->soap_type() == SOAP_TYPE_tt__Mpeg4Profile_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Mpeg4Profile_ * SOAP_FMAC4 soap_get_tt__Mpeg4Profile_(struct soap*, tt__Mpeg4Profile_ *, const char*, const char*); - -inline int soap_read_tt__Mpeg4Profile_(struct soap *soap, tt__Mpeg4Profile_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Mpeg4Profile_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Mpeg4Profile_(struct soap *soap, const char *URL, tt__Mpeg4Profile_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Mpeg4Profile_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Mpeg4Profile_(struct soap *soap, tt__Mpeg4Profile_ *p) -{ - if (::soap_read_tt__Mpeg4Profile_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoding__DEFINED -#define SOAP_TYPE_tt__VideoEncoding__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoding_(struct soap*, const char*, int, const tt__VideoEncoding_ *, const char*); -SOAP_FMAC3 tt__VideoEncoding_ * SOAP_FMAC4 soap_in_tt__VideoEncoding_(struct soap*, const char*, tt__VideoEncoding_ *, const char*); -SOAP_FMAC1 tt__VideoEncoding_ * SOAP_FMAC2 soap_instantiate_tt__VideoEncoding_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncoding_ * soap_new_tt__VideoEncoding_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncoding_(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncoding_ * soap_new_req_tt__VideoEncoding_( - struct soap *soap, - enum tt__VideoEncoding __item) -{ - tt__VideoEncoding_ *_p = ::soap_new_tt__VideoEncoding_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoding_::__item = __item; - } - return _p; -} - -inline tt__VideoEncoding_ * soap_new_set_tt__VideoEncoding_( - struct soap *soap, - enum tt__VideoEncoding __item) -{ - tt__VideoEncoding_ *_p = ::soap_new_tt__VideoEncoding_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoding_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__VideoEncoding_(struct soap *soap, tt__VideoEncoding_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncoding", p->soap_type() == SOAP_TYPE_tt__VideoEncoding_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoding_(struct soap *soap, const char *URL, tt__VideoEncoding_ 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, "tt:VideoEncoding", p->soap_type() == SOAP_TYPE_tt__VideoEncoding_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoding_(struct soap *soap, const char *URL, tt__VideoEncoding_ 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, "tt:VideoEncoding", p->soap_type() == SOAP_TYPE_tt__VideoEncoding_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoding_(struct soap *soap, const char *URL, tt__VideoEncoding_ 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, "tt:VideoEncoding", p->soap_type() == SOAP_TYPE_tt__VideoEncoding_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncoding_ * SOAP_FMAC4 soap_get_tt__VideoEncoding_(struct soap*, tt__VideoEncoding_ *, const char*, const char*); - -inline int soap_read_tt__VideoEncoding_(struct soap *soap, tt__VideoEncoding_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoding_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoding_(struct soap *soap, const char *URL, tt__VideoEncoding_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoding_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoding_(struct soap *soap, tt__VideoEncoding_ *p) -{ - if (::soap_read_tt__VideoEncoding_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ViewModes__DEFINED -#define SOAP_TYPE_tt__ViewModes__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ViewModes_(struct soap*, const char*, int, const tt__ViewModes_ *, const char*); -SOAP_FMAC3 tt__ViewModes_ * SOAP_FMAC4 soap_in_tt__ViewModes_(struct soap*, const char*, tt__ViewModes_ *, const char*); -SOAP_FMAC1 tt__ViewModes_ * SOAP_FMAC2 soap_instantiate_tt__ViewModes_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ViewModes_ * soap_new_tt__ViewModes_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ViewModes_(soap, n, NULL, NULL, NULL); -} - -inline tt__ViewModes_ * soap_new_req_tt__ViewModes_( - struct soap *soap, - enum tt__ViewModes __item) -{ - tt__ViewModes_ *_p = ::soap_new_tt__ViewModes_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ViewModes_::__item = __item; - } - return _p; -} - -inline tt__ViewModes_ * soap_new_set_tt__ViewModes_( - struct soap *soap, - enum tt__ViewModes __item) -{ - tt__ViewModes_ *_p = ::soap_new_tt__ViewModes_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ViewModes_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ViewModes_(struct soap *soap, tt__ViewModes_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ViewModes", p->soap_type() == SOAP_TYPE_tt__ViewModes_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ViewModes_(struct soap *soap, const char *URL, tt__ViewModes_ 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, "tt:ViewModes", p->soap_type() == SOAP_TYPE_tt__ViewModes_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ViewModes_(struct soap *soap, const char *URL, tt__ViewModes_ 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, "tt:ViewModes", p->soap_type() == SOAP_TYPE_tt__ViewModes_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ViewModes_(struct soap *soap, const char *URL, tt__ViewModes_ 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, "tt:ViewModes", p->soap_type() == SOAP_TYPE_tt__ViewModes_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ViewModes_ * SOAP_FMAC4 soap_get_tt__ViewModes_(struct soap*, tt__ViewModes_ *, const char*, const char*); - -inline int soap_read_tt__ViewModes_(struct soap *soap, tt__ViewModes_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ViewModes_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ViewModes_(struct soap *soap, const char *URL, tt__ViewModes_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ViewModes_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ViewModes_(struct soap *soap, tt__ViewModes_ *p) -{ - if (::soap_read_tt__ViewModes_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SceneOrientationOption__DEFINED -#define SOAP_TYPE_tt__SceneOrientationOption__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationOption_(struct soap*, const char*, int, const tt__SceneOrientationOption_ *, const char*); -SOAP_FMAC3 tt__SceneOrientationOption_ * SOAP_FMAC4 soap_in_tt__SceneOrientationOption_(struct soap*, const char*, tt__SceneOrientationOption_ *, const char*); -SOAP_FMAC1 tt__SceneOrientationOption_ * SOAP_FMAC2 soap_instantiate_tt__SceneOrientationOption_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SceneOrientationOption_ * soap_new_tt__SceneOrientationOption_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SceneOrientationOption_(soap, n, NULL, NULL, NULL); -} - -inline tt__SceneOrientationOption_ * soap_new_req_tt__SceneOrientationOption_( - struct soap *soap, - enum tt__SceneOrientationOption __item) -{ - tt__SceneOrientationOption_ *_p = ::soap_new_tt__SceneOrientationOption_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SceneOrientationOption_::__item = __item; - } - return _p; -} - -inline tt__SceneOrientationOption_ * soap_new_set_tt__SceneOrientationOption_( - struct soap *soap, - enum tt__SceneOrientationOption __item) -{ - tt__SceneOrientationOption_ *_p = ::soap_new_tt__SceneOrientationOption_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SceneOrientationOption_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__SceneOrientationOption_(struct soap *soap, tt__SceneOrientationOption_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SceneOrientationOption", p->soap_type() == SOAP_TYPE_tt__SceneOrientationOption_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SceneOrientationOption_(struct soap *soap, const char *URL, tt__SceneOrientationOption_ 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, "tt:SceneOrientationOption", p->soap_type() == SOAP_TYPE_tt__SceneOrientationOption_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SceneOrientationOption_(struct soap *soap, const char *URL, tt__SceneOrientationOption_ 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, "tt:SceneOrientationOption", p->soap_type() == SOAP_TYPE_tt__SceneOrientationOption_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SceneOrientationOption_(struct soap *soap, const char *URL, tt__SceneOrientationOption_ 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, "tt:SceneOrientationOption", p->soap_type() == SOAP_TYPE_tt__SceneOrientationOption_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SceneOrientationOption_ * SOAP_FMAC4 soap_get_tt__SceneOrientationOption_(struct soap*, tt__SceneOrientationOption_ *, const char*, const char*); - -inline int soap_read_tt__SceneOrientationOption_(struct soap *soap, tt__SceneOrientationOption_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SceneOrientationOption_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SceneOrientationOption_(struct soap *soap, const char *URL, tt__SceneOrientationOption_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SceneOrientationOption_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SceneOrientationOption_(struct soap *soap, tt__SceneOrientationOption_ *p) -{ - if (::soap_read_tt__SceneOrientationOption_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SceneOrientationMode__DEFINED -#define SOAP_TYPE_tt__SceneOrientationMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientationMode_(struct soap*, const char*, int, const tt__SceneOrientationMode_ *, const char*); -SOAP_FMAC3 tt__SceneOrientationMode_ * SOAP_FMAC4 soap_in_tt__SceneOrientationMode_(struct soap*, const char*, tt__SceneOrientationMode_ *, const char*); -SOAP_FMAC1 tt__SceneOrientationMode_ * SOAP_FMAC2 soap_instantiate_tt__SceneOrientationMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SceneOrientationMode_ * soap_new_tt__SceneOrientationMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SceneOrientationMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__SceneOrientationMode_ * soap_new_req_tt__SceneOrientationMode_( - struct soap *soap, - enum tt__SceneOrientationMode __item) -{ - tt__SceneOrientationMode_ *_p = ::soap_new_tt__SceneOrientationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SceneOrientationMode_::__item = __item; - } - return _p; -} - -inline tt__SceneOrientationMode_ * soap_new_set_tt__SceneOrientationMode_( - struct soap *soap, - enum tt__SceneOrientationMode __item) -{ - tt__SceneOrientationMode_ *_p = ::soap_new_tt__SceneOrientationMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SceneOrientationMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__SceneOrientationMode_(struct soap *soap, tt__SceneOrientationMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SceneOrientationMode", p->soap_type() == SOAP_TYPE_tt__SceneOrientationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SceneOrientationMode_(struct soap *soap, const char *URL, tt__SceneOrientationMode_ 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, "tt:SceneOrientationMode", p->soap_type() == SOAP_TYPE_tt__SceneOrientationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SceneOrientationMode_(struct soap *soap, const char *URL, tt__SceneOrientationMode_ 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, "tt:SceneOrientationMode", p->soap_type() == SOAP_TYPE_tt__SceneOrientationMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SceneOrientationMode_(struct soap *soap, const char *URL, tt__SceneOrientationMode_ 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, "tt:SceneOrientationMode", p->soap_type() == SOAP_TYPE_tt__SceneOrientationMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SceneOrientationMode_ * SOAP_FMAC4 soap_get_tt__SceneOrientationMode_(struct soap*, tt__SceneOrientationMode_ *, const char*, const char*); - -inline int soap_read_tt__SceneOrientationMode_(struct soap *soap, tt__SceneOrientationMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SceneOrientationMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SceneOrientationMode_(struct soap *soap, const char *URL, tt__SceneOrientationMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SceneOrientationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SceneOrientationMode_(struct soap *soap, tt__SceneOrientationMode_ *p) -{ - if (::soap_read_tt__SceneOrientationMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RotateMode__DEFINED -#define SOAP_TYPE_tt__RotateMode__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateMode_(struct soap*, const char*, int, const tt__RotateMode_ *, const char*); -SOAP_FMAC3 tt__RotateMode_ * SOAP_FMAC4 soap_in_tt__RotateMode_(struct soap*, const char*, tt__RotateMode_ *, const char*); -SOAP_FMAC1 tt__RotateMode_ * SOAP_FMAC2 soap_instantiate_tt__RotateMode_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RotateMode_ * soap_new_tt__RotateMode_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RotateMode_(soap, n, NULL, NULL, NULL); -} - -inline tt__RotateMode_ * soap_new_req_tt__RotateMode_( - struct soap *soap, - enum tt__RotateMode __item) -{ - tt__RotateMode_ *_p = ::soap_new_tt__RotateMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RotateMode_::__item = __item; - } - return _p; -} - -inline tt__RotateMode_ * soap_new_set_tt__RotateMode_( - struct soap *soap, - enum tt__RotateMode __item) -{ - tt__RotateMode_ *_p = ::soap_new_tt__RotateMode_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RotateMode_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__RotateMode_(struct soap *soap, tt__RotateMode_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RotateMode", p->soap_type() == SOAP_TYPE_tt__RotateMode_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RotateMode_(struct soap *soap, const char *URL, tt__RotateMode_ 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, "tt:RotateMode", p->soap_type() == SOAP_TYPE_tt__RotateMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RotateMode_(struct soap *soap, const char *URL, tt__RotateMode_ 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, "tt:RotateMode", p->soap_type() == SOAP_TYPE_tt__RotateMode_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RotateMode_(struct soap *soap, const char *URL, tt__RotateMode_ 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, "tt:RotateMode", p->soap_type() == SOAP_TYPE_tt__RotateMode_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RotateMode_ * SOAP_FMAC4 soap_get_tt__RotateMode_(struct soap*, tt__RotateMode_ *, const char*, const char*); - -inline int soap_read_tt__RotateMode_(struct soap *soap, tt__RotateMode_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RotateMode_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RotateMode_(struct soap *soap, const char *URL, tt__RotateMode_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RotateMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RotateMode_(struct soap *soap, tt__RotateMode_ *p) -{ - if (::soap_read_tt__RotateMode_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Name___DEFINED -#define SOAP_TYPE_tt__Name___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Name__(struct soap*, const char*, int, const tt__Name__ *, const char*); -SOAP_FMAC3 tt__Name__ * SOAP_FMAC4 soap_in_tt__Name__(struct soap*, const char*, tt__Name__ *, const char*); -SOAP_FMAC1 tt__Name__ * SOAP_FMAC2 soap_instantiate_tt__Name__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Name__ * soap_new_tt__Name__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Name__(soap, n, NULL, NULL, NULL); -} - -inline tt__Name__ * soap_new_req_tt__Name__( - struct soap *soap, - const std::string& __item) -{ - tt__Name__ *_p = ::soap_new_tt__Name__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Name__::__item = __item; - } - return _p; -} - -inline tt__Name__ * soap_new_set_tt__Name__( - struct soap *soap, - const std::string& __item) -{ - tt__Name__ *_p = ::soap_new_tt__Name__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Name__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Name__(struct soap *soap, tt__Name__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Name", p->soap_type() == SOAP_TYPE_tt__Name__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Name__(struct soap *soap, const char *URL, tt__Name__ 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, "tt:Name", p->soap_type() == SOAP_TYPE_tt__Name__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Name__(struct soap *soap, const char *URL, tt__Name__ 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, "tt:Name", p->soap_type() == SOAP_TYPE_tt__Name__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Name__(struct soap *soap, const char *URL, tt__Name__ 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, "tt:Name", p->soap_type() == SOAP_TYPE_tt__Name__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Name__ * SOAP_FMAC4 soap_get_tt__Name__(struct soap*, tt__Name__ *, const char*, const char*); - -inline int soap_read_tt__Name__(struct soap *soap, tt__Name__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Name__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Name__(struct soap *soap, const char *URL, tt__Name__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Name__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Name__(struct soap *soap, tt__Name__ *p) -{ - if (::soap_read_tt__Name__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Name_DEFINED -#define SOAP_TYPE_tt__Name_DEFINED - -inline void soap_default_tt__Name(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__Name(struct soap*, const std::string *); - -#define soap_tt__Name2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Name(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__Name(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__Name(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__Name soap_instantiate_std__string - - -#define soap_new_tt__Name soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__Name(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__Name(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__Name(soap, p, "tt:Name", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__Name(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Name(soap, p, "tt:Name", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Name(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Name(soap, p, "tt:Name", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Name(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__Name(soap, p, "tt:Name", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__Name(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__Name(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__Name(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Name(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Name(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Name(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__Name(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Entity__DEFINED -#define SOAP_TYPE_tt__Entity__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Entity_(struct soap*, const char*, int, const tt__Entity_ *, const char*); -SOAP_FMAC3 tt__Entity_ * SOAP_FMAC4 soap_in_tt__Entity_(struct soap*, const char*, tt__Entity_ *, const char*); -SOAP_FMAC1 tt__Entity_ * SOAP_FMAC2 soap_instantiate_tt__Entity_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Entity_ * soap_new_tt__Entity_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Entity_(soap, n, NULL, NULL, NULL); -} - -inline tt__Entity_ * soap_new_req_tt__Entity_( - struct soap *soap, - enum tt__Entity __item) -{ - tt__Entity_ *_p = ::soap_new_tt__Entity_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Entity_::__item = __item; - } - return _p; -} - -inline tt__Entity_ * soap_new_set_tt__Entity_( - struct soap *soap, - enum tt__Entity __item) -{ - tt__Entity_ *_p = ::soap_new_tt__Entity_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Entity_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__Entity_(struct soap *soap, tt__Entity_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Entity", p->soap_type() == SOAP_TYPE_tt__Entity_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Entity_(struct soap *soap, const char *URL, tt__Entity_ 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, "tt:Entity", p->soap_type() == SOAP_TYPE_tt__Entity_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Entity_(struct soap *soap, const char *URL, tt__Entity_ 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, "tt:Entity", p->soap_type() == SOAP_TYPE_tt__Entity_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Entity_(struct soap *soap, const char *URL, tt__Entity_ 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, "tt:Entity", p->soap_type() == SOAP_TYPE_tt__Entity_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Entity_ * SOAP_FMAC4 soap_get_tt__Entity_(struct soap*, tt__Entity_ *, const char*, const char*); - -inline int soap_read_tt__Entity_(struct soap *soap, tt__Entity_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Entity_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Entity_(struct soap *soap, const char *URL, tt__Entity_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Entity_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Entity_(struct soap *soap, tt__Entity_ *p) -{ - if (::soap_read_tt__Entity_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MoveStatus__DEFINED -#define SOAP_TYPE_tt__MoveStatus__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveStatus_(struct soap*, const char*, int, const tt__MoveStatus_ *, const char*); -SOAP_FMAC3 tt__MoveStatus_ * SOAP_FMAC4 soap_in_tt__MoveStatus_(struct soap*, const char*, tt__MoveStatus_ *, const char*); -SOAP_FMAC1 tt__MoveStatus_ * SOAP_FMAC2 soap_instantiate_tt__MoveStatus_(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MoveStatus_ * soap_new_tt__MoveStatus_(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MoveStatus_(soap, n, NULL, NULL, NULL); -} - -inline tt__MoveStatus_ * soap_new_req_tt__MoveStatus_( - struct soap *soap, - enum tt__MoveStatus __item) -{ - tt__MoveStatus_ *_p = ::soap_new_tt__MoveStatus_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MoveStatus_::__item = __item; - } - return _p; -} - -inline tt__MoveStatus_ * soap_new_set_tt__MoveStatus_( - struct soap *soap, - enum tt__MoveStatus __item) -{ - tt__MoveStatus_ *_p = ::soap_new_tt__MoveStatus_(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MoveStatus_::__item = __item; - } - return _p; -} - -inline int soap_write_tt__MoveStatus_(struct soap *soap, tt__MoveStatus_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MoveStatus", p->soap_type() == SOAP_TYPE_tt__MoveStatus_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MoveStatus_(struct soap *soap, const char *URL, tt__MoveStatus_ 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, "tt:MoveStatus", p->soap_type() == SOAP_TYPE_tt__MoveStatus_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MoveStatus_(struct soap *soap, const char *URL, tt__MoveStatus_ 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, "tt:MoveStatus", p->soap_type() == SOAP_TYPE_tt__MoveStatus_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MoveStatus_(struct soap *soap, const char *URL, tt__MoveStatus_ 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, "tt:MoveStatus", p->soap_type() == SOAP_TYPE_tt__MoveStatus_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MoveStatus_ * SOAP_FMAC4 soap_get_tt__MoveStatus_(struct soap*, tt__MoveStatus_ *, const char*, const char*); - -inline int soap_read_tt__MoveStatus_(struct soap *soap, tt__MoveStatus_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MoveStatus_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MoveStatus_(struct soap *soap, const char *URL, tt__MoveStatus_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MoveStatus_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MoveStatus_(struct soap *soap, tt__MoveStatus_ *p) -{ - if (::soap_read_tt__MoveStatus_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReferenceToken___DEFINED -#define SOAP_TYPE_tt__ReferenceToken___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReferenceToken__(struct soap*, const char*, int, const tt__ReferenceToken__ *, const char*); -SOAP_FMAC3 tt__ReferenceToken__ * SOAP_FMAC4 soap_in_tt__ReferenceToken__(struct soap*, const char*, tt__ReferenceToken__ *, const char*); -SOAP_FMAC1 tt__ReferenceToken__ * SOAP_FMAC2 soap_instantiate_tt__ReferenceToken__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReferenceToken__ * soap_new_tt__ReferenceToken__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReferenceToken__(soap, n, NULL, NULL, NULL); -} - -inline tt__ReferenceToken__ * soap_new_req_tt__ReferenceToken__( - struct soap *soap, - const std::string& __item) -{ - tt__ReferenceToken__ *_p = ::soap_new_tt__ReferenceToken__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReferenceToken__::__item = __item; - } - return _p; -} - -inline tt__ReferenceToken__ * soap_new_set_tt__ReferenceToken__( - struct soap *soap, - const std::string& __item) -{ - tt__ReferenceToken__ *_p = ::soap_new_tt__ReferenceToken__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReferenceToken__::__item = __item; - } - return _p; -} - -inline int soap_write_tt__ReferenceToken__(struct soap *soap, tt__ReferenceToken__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReferenceToken", p->soap_type() == SOAP_TYPE_tt__ReferenceToken__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReferenceToken__(struct soap *soap, const char *URL, tt__ReferenceToken__ 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, "tt:ReferenceToken", p->soap_type() == SOAP_TYPE_tt__ReferenceToken__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReferenceToken__(struct soap *soap, const char *URL, tt__ReferenceToken__ 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, "tt:ReferenceToken", p->soap_type() == SOAP_TYPE_tt__ReferenceToken__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReferenceToken__(struct soap *soap, const char *URL, tt__ReferenceToken__ 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, "tt:ReferenceToken", p->soap_type() == SOAP_TYPE_tt__ReferenceToken__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReferenceToken__ * SOAP_FMAC4 soap_get_tt__ReferenceToken__(struct soap*, tt__ReferenceToken__ *, const char*, const char*); - -inline int soap_read_tt__ReferenceToken__(struct soap *soap, tt__ReferenceToken__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReferenceToken__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReferenceToken__(struct soap *soap, const char *URL, tt__ReferenceToken__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReferenceToken__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReferenceToken__(struct soap *soap, tt__ReferenceToken__ *p) -{ - if (::soap_read_tt__ReferenceToken__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReferenceToken_DEFINED -#define SOAP_TYPE_tt__ReferenceToken_DEFINED - -inline void soap_default_tt__ReferenceToken(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__ReferenceToken(struct soap*, const std::string *); - -#define soap_tt__ReferenceToken2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReferenceToken(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__ReferenceToken(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__ReferenceToken(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__ReferenceToken soap_instantiate_std__string - - -#define soap_new_tt__ReferenceToken soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReferenceToken(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__ReferenceToken(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ReferenceToken(soap, p, "tt:ReferenceToken", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ReferenceToken(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReferenceToken(soap, p, "tt:ReferenceToken", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReferenceToken(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReferenceToken(soap, p, "tt:ReferenceToken", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReferenceToken(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReferenceToken(soap, p, "tt:ReferenceToken", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__ReferenceToken(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__ReferenceToken(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ReferenceToken(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReferenceToken(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReferenceToken(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReferenceToken(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__ReferenceToken(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trc__EncodingTypes_DEFINED -#define SOAP_TYPE_trc__EncodingTypes_DEFINED - -inline void soap_default_trc__EncodingTypes(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_trc__EncodingTypes(struct soap*, const std::string *); - -#define soap_trc__EncodingTypes2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__EncodingTypes(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2trc__EncodingTypes(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_trc__EncodingTypes(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_trc__EncodingTypes soap_instantiate_std__string - - -#define soap_new_trc__EncodingTypes soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_trc__EncodingTypes(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_trc__EncodingTypes(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_trc__EncodingTypes(soap, p, "trc:EncodingTypes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_trc__EncodingTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_trc__EncodingTypes(soap, p, "trc:EncodingTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trc__EncodingTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_trc__EncodingTypes(soap, p, "trc:EncodingTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trc__EncodingTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_trc__EncodingTypes(soap, p, "trc:EncodingTypes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_trc__EncodingTypes(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_trc__EncodingTypes(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_trc__EncodingTypes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trc__EncodingTypes(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trc__EncodingTypes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trc__EncodingTypes(struct soap *soap, std::string *p) -{ - if (::soap_read_trc__EncodingTypes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trt__EncodingTypes_DEFINED -#define SOAP_TYPE_trt__EncodingTypes_DEFINED - -inline void soap_default_trt__EncodingTypes(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_trt__EncodingTypes(struct soap*, const std::string *); - -#define soap_trt__EncodingTypes2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__EncodingTypes(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2trt__EncodingTypes(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_trt__EncodingTypes(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_trt__EncodingTypes soap_instantiate_std__string - - -#define soap_new_trt__EncodingTypes soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_trt__EncodingTypes(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_trt__EncodingTypes(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_trt__EncodingTypes(soap, p, "trt:EncodingTypes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_trt__EncodingTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_trt__EncodingTypes(soap, p, "trt:EncodingTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trt__EncodingTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_trt__EncodingTypes(soap, p, "trt:EncodingTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trt__EncodingTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_trt__EncodingTypes(soap, p, "trt:EncodingTypes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_trt__EncodingTypes(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_trt__EncodingTypes(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_trt__EncodingTypes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trt__EncodingTypes(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trt__EncodingTypes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trt__EncodingTypes(struct soap *soap, std::string *p) -{ - if (::soap_read_trt__EncodingTypes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__EAPMethodTypes_DEFINED -#define SOAP_TYPE_tds__EAPMethodTypes_DEFINED - -inline void soap_default_tds__EAPMethodTypes(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tds__EAPMethodTypes(struct soap*, const std::string *); - -#define soap_tds__EAPMethodTypes2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__EAPMethodTypes(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tds__EAPMethodTypes(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tds__EAPMethodTypes(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tds__EAPMethodTypes soap_instantiate_std__string - - -#define soap_new_tds__EAPMethodTypes soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tds__EAPMethodTypes(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tds__EAPMethodTypes(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tds__EAPMethodTypes(soap, p, "tds:EAPMethodTypes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tds__EAPMethodTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__EAPMethodTypes(soap, p, "tds:EAPMethodTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__EAPMethodTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__EAPMethodTypes(soap, p, "tds:EAPMethodTypes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__EAPMethodTypes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tds__EAPMethodTypes(soap, p, "tds:EAPMethodTypes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tds__EAPMethodTypes(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tds__EAPMethodTypes(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tds__EAPMethodTypes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__EAPMethodTypes(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__EAPMethodTypes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__EAPMethodTypes(struct soap *soap, std::string *p) -{ - if (::soap_read_tds__EAPMethodTypes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__DelayTimes_DEFINED -#define SOAP_TYPE_tmd__DelayTimes_DEFINED - -inline void soap_default_tmd__DelayTimes(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tmd__DelayTimes(struct soap*, const std::string *); - -#define soap_tmd__DelayTimes2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__DelayTimes(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tmd__DelayTimes(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tmd__DelayTimes(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tmd__DelayTimes soap_instantiate_std__string - - -#define soap_new_tmd__DelayTimes soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tmd__DelayTimes(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tmd__DelayTimes(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tmd__DelayTimes(soap, p, "tmd:DelayTimes", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tmd__DelayTimes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__DelayTimes(soap, p, "tmd:DelayTimes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__DelayTimes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__DelayTimes(soap, p, "tmd:DelayTimes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__DelayTimes(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tmd__DelayTimes(soap, p, "tmd:DelayTimes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tmd__DelayTimes(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tmd__DelayTimes(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tmd__DelayTimes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__DelayTimes(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__DelayTimes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__DelayTimes(struct soap *soap, std::string *p) -{ - if (::soap_read_tmd__DelayTimes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReferenceTokenList_DEFINED -#define SOAP_TYPE_tt__ReferenceTokenList_DEFINED - -inline void soap_default_tt__ReferenceTokenList(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__ReferenceTokenList(struct soap*, const std::string *); - -#define soap_tt__ReferenceTokenList2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReferenceTokenList(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__ReferenceTokenList(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__ReferenceTokenList(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__ReferenceTokenList soap_instantiate_std__string - - -#define soap_new_tt__ReferenceTokenList soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__ReferenceTokenList(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__ReferenceTokenList(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__ReferenceTokenList(soap, p, "tt:ReferenceTokenList", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__ReferenceTokenList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReferenceTokenList(soap, p, "tt:ReferenceTokenList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReferenceTokenList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReferenceTokenList(soap, p, "tt:ReferenceTokenList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReferenceTokenList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__ReferenceTokenList(soap, p, "tt:ReferenceTokenList", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__ReferenceTokenList(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__ReferenceTokenList(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__ReferenceTokenList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReferenceTokenList(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReferenceTokenList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReferenceTokenList(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__ReferenceTokenList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__StringList_DEFINED -#define SOAP_TYPE_tt__StringList_DEFINED - -inline void soap_default_tt__StringList(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__StringList(struct soap*, const std::string *); - -#define soap_tt__StringList2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StringList(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__StringList(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__StringList(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__StringList soap_instantiate_std__string - - -#define soap_new_tt__StringList soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__StringList(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__StringList(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__StringList(soap, p, "tt:StringList", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__StringList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StringList(soap, p, "tt:StringList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__StringList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StringList(soap, p, "tt:StringList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__StringList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StringList(soap, p, "tt:StringList", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__StringList(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__StringList(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__StringList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__StringList(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__StringList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__StringList(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__StringList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__StringAttrList_DEFINED -#define SOAP_TYPE_tt__StringAttrList_DEFINED - -inline void soap_default_tt__StringAttrList(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__StringAttrList(struct soap*, const std::string *); - -#define soap_tt__StringAttrList2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StringAttrList(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__StringAttrList(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__StringAttrList(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__StringAttrList soap_instantiate_std__string - - -#define soap_new_tt__StringAttrList soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__StringAttrList(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__StringAttrList(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__StringAttrList(soap, p, "tt:StringAttrList", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__StringAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StringAttrList(soap, p, "tt:StringAttrList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__StringAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StringAttrList(soap, p, "tt:StringAttrList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__StringAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__StringAttrList(soap, p, "tt:StringAttrList", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__StringAttrList(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__StringAttrList(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__StringAttrList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__StringAttrList(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__StringAttrList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__StringAttrList(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__StringAttrList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FloatAttrList_DEFINED -#define SOAP_TYPE_tt__FloatAttrList_DEFINED - -inline void soap_default_tt__FloatAttrList(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__FloatAttrList(struct soap*, const std::string *); - -#define soap_tt__FloatAttrList2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatAttrList(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__FloatAttrList(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__FloatAttrList(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__FloatAttrList soap_instantiate_std__string - - -#define soap_new_tt__FloatAttrList soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__FloatAttrList(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__FloatAttrList(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__FloatAttrList(soap, p, "tt:FloatAttrList", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__FloatAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__FloatAttrList(soap, p, "tt:FloatAttrList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FloatAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__FloatAttrList(soap, p, "tt:FloatAttrList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FloatAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__FloatAttrList(soap, p, "tt:FloatAttrList", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__FloatAttrList(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__FloatAttrList(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__FloatAttrList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FloatAttrList(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FloatAttrList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FloatAttrList(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__FloatAttrList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IntAttrList_DEFINED -#define SOAP_TYPE_tt__IntAttrList_DEFINED - -inline void soap_default_tt__IntAttrList(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_tt__IntAttrList(struct soap*, const std::string *); - -#define soap_tt__IntAttrList2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntAttrList(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2tt__IntAttrList(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_tt__IntAttrList(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_tt__IntAttrList soap_instantiate_std__string - - -#define soap_new_tt__IntAttrList soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_tt__IntAttrList(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_tt__IntAttrList(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_tt__IntAttrList(soap, p, "tt:IntAttrList", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_tt__IntAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IntAttrList(soap, p, "tt:IntAttrList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IntAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IntAttrList(soap, p, "tt:IntAttrList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IntAttrList(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_tt__IntAttrList(soap, p, "tt:IntAttrList", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_tt__IntAttrList(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_tt__IntAttrList(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_tt__IntAttrList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IntAttrList(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IntAttrList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IntAttrList(struct soap *soap, std::string *p) -{ - if (::soap_read_tt__IntAttrList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType_DEFINED -#define SOAP_TYPE_wsnt__AbsoluteOrRelativeTimeType_DEFINED - -inline void soap_default_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsnt__AbsoluteOrRelativeTimeType(struct soap*, const std::string *); - -#define soap_wsnt__AbsoluteOrRelativeTimeType2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__AbsoluteOrRelativeTimeType(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2wsnt__AbsoluteOrRelativeTimeType(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_wsnt__AbsoluteOrRelativeTimeType(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_wsnt__AbsoluteOrRelativeTimeType soap_instantiate_std__string - - -#define soap_new_wsnt__AbsoluteOrRelativeTimeType soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsnt__AbsoluteOrRelativeTimeType(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsnt__AbsoluteOrRelativeTimeType(soap, p, "wsnt:AbsoluteOrRelativeTimeType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsnt__AbsoluteOrRelativeTimeType(soap, p, "wsnt:AbsoluteOrRelativeTimeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsnt__AbsoluteOrRelativeTimeType(soap, p, "wsnt:AbsoluteOrRelativeTimeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_wsnt__AbsoluteOrRelativeTimeType(soap, p, "wsnt:AbsoluteOrRelativeTimeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_wsnt__AbsoluteOrRelativeTimeType(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsnt__AbsoluteOrRelativeTimeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__AbsoluteOrRelativeTimeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__AbsoluteOrRelativeTimeType(struct soap *soap, std::string *p) -{ - if (::soap_read_wsnt__AbsoluteOrRelativeTimeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wstop__TopicSetType_DEFINED -#define SOAP_TYPE_wstop__TopicSetType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__TopicSetType(struct soap*, const char*, int, const wstop__TopicSetType *, const char*); -SOAP_FMAC3 wstop__TopicSetType * SOAP_FMAC4 soap_in_wstop__TopicSetType(struct soap*, const char*, wstop__TopicSetType *, const char*); -SOAP_FMAC1 wstop__TopicSetType * SOAP_FMAC2 soap_instantiate_wstop__TopicSetType(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__TopicSetType * soap_new_wstop__TopicSetType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__TopicSetType(soap, n, NULL, NULL, NULL); -} - -inline wstop__TopicSetType * soap_new_req_wstop__TopicSetType( - struct soap *soap) -{ - wstop__TopicSetType *_p = ::soap_new_wstop__TopicSetType(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline wstop__TopicSetType * soap_new_set_wstop__TopicSetType( - struct soap *soap, - const std::vector & __any, - wstop__Documentation *documentation__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wstop__TopicSetType *_p = ::soap_new_wstop__TopicSetType(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__TopicSetType::__any = __any; - _p->wstop__ExtensibleDocumented::documentation = documentation__1; - _p->wstop__ExtensibleDocumented::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wstop__TopicSetType(struct soap *soap, wstop__TopicSetType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:TopicSetType", p->soap_type() == SOAP_TYPE_wstop__TopicSetType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__TopicSetType(struct soap *soap, const char *URL, wstop__TopicSetType 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, "wstop:TopicSetType", p->soap_type() == SOAP_TYPE_wstop__TopicSetType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__TopicSetType(struct soap *soap, const char *URL, wstop__TopicSetType 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, "wstop:TopicSetType", p->soap_type() == SOAP_TYPE_wstop__TopicSetType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__TopicSetType(struct soap *soap, const char *URL, wstop__TopicSetType 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, "wstop:TopicSetType", p->soap_type() == SOAP_TYPE_wstop__TopicSetType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__TopicSetType * SOAP_FMAC4 soap_get_wstop__TopicSetType(struct soap*, wstop__TopicSetType *, const char*, const char*); - -inline int soap_read_wstop__TopicSetType(struct soap *soap, wstop__TopicSetType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__TopicSetType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__TopicSetType(struct soap *soap, const char *URL, wstop__TopicSetType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__TopicSetType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__TopicSetType(struct soap *soap, wstop__TopicSetType *p) -{ - if (::soap_read_wstop__TopicSetType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wstop__TopicType_DEFINED -#define SOAP_TYPE_wstop__TopicType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__TopicType(struct soap*, const char*, int, const wstop__TopicType *, const char*); -SOAP_FMAC3 wstop__TopicType * SOAP_FMAC4 soap_in_wstop__TopicType(struct soap*, const char*, wstop__TopicType *, const char*); -SOAP_FMAC1 wstop__TopicType * SOAP_FMAC2 soap_instantiate_wstop__TopicType(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__TopicType * soap_new_wstop__TopicType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__TopicType(soap, n, NULL, NULL, NULL); -} - -inline wstop__TopicType * soap_new_req_wstop__TopicType( - struct soap *soap, - const std::string& name) -{ - wstop__TopicType *_p = ::soap_new_wstop__TopicType(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__TopicType::name = name; - } - return _p; -} - -inline wstop__TopicType * soap_new_set_wstop__TopicType( - struct soap *soap, - wstop__QueryExpressionType *MessagePattern, - const std::vector & Topic, - const std::vector & __any, - const std::string& name, - std::string *messageTypes, - bool final_, - wstop__Documentation *documentation__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wstop__TopicType *_p = ::soap_new_wstop__TopicType(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__TopicType::MessagePattern = MessagePattern; - _p->wstop__TopicType::Topic = Topic; - _p->wstop__TopicType::__any = __any; - _p->wstop__TopicType::name = name; - _p->wstop__TopicType::messageTypes = messageTypes; - _p->wstop__TopicType::final_ = final_; - _p->wstop__ExtensibleDocumented::documentation = documentation__1; - _p->wstop__ExtensibleDocumented::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wstop__TopicType(struct soap *soap, wstop__TopicType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:TopicType", p->soap_type() == SOAP_TYPE_wstop__TopicType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__TopicType(struct soap *soap, const char *URL, wstop__TopicType 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, "wstop:TopicType", p->soap_type() == SOAP_TYPE_wstop__TopicType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__TopicType(struct soap *soap, const char *URL, wstop__TopicType 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, "wstop:TopicType", p->soap_type() == SOAP_TYPE_wstop__TopicType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__TopicType(struct soap *soap, const char *URL, wstop__TopicType 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, "wstop:TopicType", p->soap_type() == SOAP_TYPE_wstop__TopicType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__TopicType * SOAP_FMAC4 soap_get_wstop__TopicType(struct soap*, wstop__TopicType *, const char*, const char*); - -inline int soap_read_wstop__TopicType(struct soap *soap, wstop__TopicType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__TopicType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__TopicType(struct soap *soap, const char *URL, wstop__TopicType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__TopicType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__TopicType(struct soap *soap, wstop__TopicType *p) -{ - if (::soap_read_wstop__TopicType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wstop__TopicNamespaceType_DEFINED -#define SOAP_TYPE_wstop__TopicNamespaceType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__TopicNamespaceType(struct soap*, const char*, int, const wstop__TopicNamespaceType *, const char*); -SOAP_FMAC3 wstop__TopicNamespaceType * SOAP_FMAC4 soap_in_wstop__TopicNamespaceType(struct soap*, const char*, wstop__TopicNamespaceType *, const char*); -SOAP_FMAC1 wstop__TopicNamespaceType * SOAP_FMAC2 soap_instantiate_wstop__TopicNamespaceType(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__TopicNamespaceType * soap_new_wstop__TopicNamespaceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__TopicNamespaceType(soap, n, NULL, NULL, NULL); -} - -inline wstop__TopicNamespaceType * soap_new_req_wstop__TopicNamespaceType( - struct soap *soap, - const std::string& targetNamespace) -{ - wstop__TopicNamespaceType *_p = ::soap_new_wstop__TopicNamespaceType(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__TopicNamespaceType::targetNamespace = targetNamespace; - } - return _p; -} - -inline wstop__TopicNamespaceType * soap_new_set_wstop__TopicNamespaceType( - struct soap *soap, - const std::vector<_wstop__TopicNamespaceType_Topic> & Topic, - const std::vector & __any, - std::string *name, - const std::string& targetNamespace, - bool final_, - wstop__Documentation *documentation__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wstop__TopicNamespaceType *_p = ::soap_new_wstop__TopicNamespaceType(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__TopicNamespaceType::Topic = Topic; - _p->wstop__TopicNamespaceType::__any = __any; - _p->wstop__TopicNamespaceType::name = name; - _p->wstop__TopicNamespaceType::targetNamespace = targetNamespace; - _p->wstop__TopicNamespaceType::final_ = final_; - _p->wstop__ExtensibleDocumented::documentation = documentation__1; - _p->wstop__ExtensibleDocumented::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wstop__TopicNamespaceType(struct soap *soap, wstop__TopicNamespaceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:TopicNamespaceType", p->soap_type() == SOAP_TYPE_wstop__TopicNamespaceType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__TopicNamespaceType(struct soap *soap, const char *URL, wstop__TopicNamespaceType 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, "wstop:TopicNamespaceType", p->soap_type() == SOAP_TYPE_wstop__TopicNamespaceType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__TopicNamespaceType(struct soap *soap, const char *URL, wstop__TopicNamespaceType 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, "wstop:TopicNamespaceType", p->soap_type() == SOAP_TYPE_wstop__TopicNamespaceType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__TopicNamespaceType(struct soap *soap, const char *URL, wstop__TopicNamespaceType 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, "wstop:TopicNamespaceType", p->soap_type() == SOAP_TYPE_wstop__TopicNamespaceType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__TopicNamespaceType * SOAP_FMAC4 soap_get_wstop__TopicNamespaceType(struct soap*, wstop__TopicNamespaceType *, const char*, const char*); - -inline int soap_read_wstop__TopicNamespaceType(struct soap *soap, wstop__TopicNamespaceType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__TopicNamespaceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__TopicNamespaceType(struct soap *soap, const char *URL, wstop__TopicNamespaceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__TopicNamespaceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__TopicNamespaceType(struct soap *soap, wstop__TopicNamespaceType *p) -{ - if (::soap_read_wstop__TopicNamespaceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wstop__QueryExpressionType_DEFINED -#define SOAP_TYPE_wstop__QueryExpressionType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__QueryExpressionType(struct soap*, const char*, int, const wstop__QueryExpressionType *, const char*); -SOAP_FMAC3 wstop__QueryExpressionType * SOAP_FMAC4 soap_in_wstop__QueryExpressionType(struct soap*, const char*, wstop__QueryExpressionType *, const char*); -SOAP_FMAC1 wstop__QueryExpressionType * SOAP_FMAC2 soap_instantiate_wstop__QueryExpressionType(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__QueryExpressionType * soap_new_wstop__QueryExpressionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__QueryExpressionType(soap, n, NULL, NULL, NULL); -} - -inline wstop__QueryExpressionType * soap_new_req_wstop__QueryExpressionType( - struct soap *soap, - const std::string& Dialect) -{ - wstop__QueryExpressionType *_p = ::soap_new_wstop__QueryExpressionType(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__QueryExpressionType::Dialect = Dialect; - } - return _p; -} - -inline wstop__QueryExpressionType * soap_new_set_wstop__QueryExpressionType( - struct soap *soap, - const struct soap_dom_element& __any, - const std::string& Dialect, - const struct soap_dom_element& __mixed) -{ - wstop__QueryExpressionType *_p = ::soap_new_wstop__QueryExpressionType(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__QueryExpressionType::__any = __any; - _p->wstop__QueryExpressionType::Dialect = Dialect; - _p->wstop__QueryExpressionType::__mixed = __mixed; - } - return _p; -} - -inline int soap_write_wstop__QueryExpressionType(struct soap *soap, wstop__QueryExpressionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:QueryExpressionType", p->soap_type() == SOAP_TYPE_wstop__QueryExpressionType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__QueryExpressionType(struct soap *soap, const char *URL, wstop__QueryExpressionType 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, "wstop:QueryExpressionType", p->soap_type() == SOAP_TYPE_wstop__QueryExpressionType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__QueryExpressionType(struct soap *soap, const char *URL, wstop__QueryExpressionType 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, "wstop:QueryExpressionType", p->soap_type() == SOAP_TYPE_wstop__QueryExpressionType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__QueryExpressionType(struct soap *soap, const char *URL, wstop__QueryExpressionType 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, "wstop:QueryExpressionType", p->soap_type() == SOAP_TYPE_wstop__QueryExpressionType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__QueryExpressionType * SOAP_FMAC4 soap_get_wstop__QueryExpressionType(struct soap*, wstop__QueryExpressionType *, const char*, const char*); - -inline int soap_read_wstop__QueryExpressionType(struct soap *soap, wstop__QueryExpressionType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__QueryExpressionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__QueryExpressionType(struct soap *soap, const char *URL, wstop__QueryExpressionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__QueryExpressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__QueryExpressionType(struct soap *soap, wstop__QueryExpressionType *p) -{ - if (::soap_read_wstop__QueryExpressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wstop__ExtensibleDocumented_DEFINED -#define SOAP_TYPE_wstop__ExtensibleDocumented_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__ExtensibleDocumented(struct soap*, const char*, int, const wstop__ExtensibleDocumented *, const char*); -SOAP_FMAC3 wstop__ExtensibleDocumented * SOAP_FMAC4 soap_in_wstop__ExtensibleDocumented(struct soap*, const char*, wstop__ExtensibleDocumented *, const char*); -SOAP_FMAC1 wstop__ExtensibleDocumented * SOAP_FMAC2 soap_instantiate_wstop__ExtensibleDocumented(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__ExtensibleDocumented * soap_new_wstop__ExtensibleDocumented(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__ExtensibleDocumented(soap, n, NULL, NULL, NULL); -} - -inline wstop__ExtensibleDocumented * soap_new_req_wstop__ExtensibleDocumented( - struct soap *soap) -{ - wstop__ExtensibleDocumented *_p = ::soap_new_wstop__ExtensibleDocumented(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline wstop__ExtensibleDocumented * soap_new_set_wstop__ExtensibleDocumented( - struct soap *soap, - wstop__Documentation *documentation, - const struct soap_dom_attribute& __anyAttribute) -{ - wstop__ExtensibleDocumented *_p = ::soap_new_wstop__ExtensibleDocumented(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__ExtensibleDocumented::documentation = documentation; - _p->wstop__ExtensibleDocumented::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_wstop__ExtensibleDocumented(struct soap *soap, wstop__ExtensibleDocumented const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:ExtensibleDocumented", p->soap_type() == SOAP_TYPE_wstop__ExtensibleDocumented ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__ExtensibleDocumented(struct soap *soap, const char *URL, wstop__ExtensibleDocumented 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, "wstop:ExtensibleDocumented", p->soap_type() == SOAP_TYPE_wstop__ExtensibleDocumented ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__ExtensibleDocumented(struct soap *soap, const char *URL, wstop__ExtensibleDocumented 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, "wstop:ExtensibleDocumented", p->soap_type() == SOAP_TYPE_wstop__ExtensibleDocumented ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__ExtensibleDocumented(struct soap *soap, const char *URL, wstop__ExtensibleDocumented 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, "wstop:ExtensibleDocumented", p->soap_type() == SOAP_TYPE_wstop__ExtensibleDocumented ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__ExtensibleDocumented * SOAP_FMAC4 soap_get_wstop__ExtensibleDocumented(struct soap*, wstop__ExtensibleDocumented *, const char*, const char*); - -inline int soap_read_wstop__ExtensibleDocumented(struct soap *soap, wstop__ExtensibleDocumented *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__ExtensibleDocumented(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__ExtensibleDocumented(struct soap *soap, const char *URL, wstop__ExtensibleDocumented *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__ExtensibleDocumented(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__ExtensibleDocumented(struct soap *soap, wstop__ExtensibleDocumented *p) -{ - if (::soap_read_wstop__ExtensibleDocumented(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wstop__Documentation_DEFINED -#define SOAP_TYPE_wstop__Documentation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wstop__Documentation(struct soap*, const char*, int, const wstop__Documentation *, const char*); -SOAP_FMAC3 wstop__Documentation * SOAP_FMAC4 soap_in_wstop__Documentation(struct soap*, const char*, wstop__Documentation *, const char*); -SOAP_FMAC1 wstop__Documentation * SOAP_FMAC2 soap_instantiate_wstop__Documentation(struct soap*, int, const char*, const char*, size_t*); - -inline wstop__Documentation * soap_new_wstop__Documentation(struct soap *soap, int n = -1) -{ - return soap_instantiate_wstop__Documentation(soap, n, NULL, NULL, NULL); -} - -inline wstop__Documentation * soap_new_req_wstop__Documentation( - struct soap *soap) -{ - wstop__Documentation *_p = ::soap_new_wstop__Documentation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline wstop__Documentation * soap_new_set_wstop__Documentation( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_element& __mixed) -{ - wstop__Documentation *_p = ::soap_new_wstop__Documentation(soap); - if (_p) - { _p->soap_default(soap); - _p->wstop__Documentation::__any = __any; - _p->wstop__Documentation::__mixed = __mixed; - } - return _p; -} - -inline int soap_write_wstop__Documentation(struct soap *soap, wstop__Documentation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wstop:Documentation", p->soap_type() == SOAP_TYPE_wstop__Documentation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wstop__Documentation(struct soap *soap, const char *URL, wstop__Documentation 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, "wstop:Documentation", p->soap_type() == SOAP_TYPE_wstop__Documentation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wstop__Documentation(struct soap *soap, const char *URL, wstop__Documentation 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, "wstop:Documentation", p->soap_type() == SOAP_TYPE_wstop__Documentation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wstop__Documentation(struct soap *soap, const char *URL, wstop__Documentation 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, "wstop:Documentation", p->soap_type() == SOAP_TYPE_wstop__Documentation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wstop__Documentation * SOAP_FMAC4 soap_get_wstop__Documentation(struct soap*, wstop__Documentation *, const char*, const char*); - -inline int soap_read_wstop__Documentation(struct soap *soap, wstop__Documentation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wstop__Documentation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wstop__Documentation(struct soap *soap, const char *URL, wstop__Documentation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wstop__Documentation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wstop__Documentation(struct soap *soap, wstop__Documentation *p) -{ - if (::soap_read_wstop__Documentation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__EndSearchResponse_DEFINED -#define SOAP_TYPE__tse__EndSearchResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__EndSearchResponse(struct soap*, const char*, int, const _tse__EndSearchResponse *, const char*); -SOAP_FMAC3 _tse__EndSearchResponse * SOAP_FMAC4 soap_in__tse__EndSearchResponse(struct soap*, const char*, _tse__EndSearchResponse *, const char*); -SOAP_FMAC1 _tse__EndSearchResponse * SOAP_FMAC2 soap_instantiate__tse__EndSearchResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__EndSearchResponse * soap_new__tse__EndSearchResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__EndSearchResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__EndSearchResponse * soap_new_req__tse__EndSearchResponse( - struct soap *soap, - const struct timeval& Endpoint) -{ - _tse__EndSearchResponse *_p = ::soap_new__tse__EndSearchResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__EndSearchResponse::Endpoint = Endpoint; - } - return _p; -} - -inline _tse__EndSearchResponse * soap_new_set__tse__EndSearchResponse( - struct soap *soap, - const struct timeval& Endpoint) -{ - _tse__EndSearchResponse *_p = ::soap_new__tse__EndSearchResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__EndSearchResponse::Endpoint = Endpoint; - } - return _p; -} - -inline int soap_write__tse__EndSearchResponse(struct soap *soap, _tse__EndSearchResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:EndSearchResponse", p->soap_type() == SOAP_TYPE__tse__EndSearchResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__EndSearchResponse(struct soap *soap, const char *URL, _tse__EndSearchResponse 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, "tse:EndSearchResponse", p->soap_type() == SOAP_TYPE__tse__EndSearchResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__EndSearchResponse(struct soap *soap, const char *URL, _tse__EndSearchResponse 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, "tse:EndSearchResponse", p->soap_type() == SOAP_TYPE__tse__EndSearchResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__EndSearchResponse(struct soap *soap, const char *URL, _tse__EndSearchResponse 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, "tse:EndSearchResponse", p->soap_type() == SOAP_TYPE__tse__EndSearchResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__EndSearchResponse * SOAP_FMAC4 soap_get__tse__EndSearchResponse(struct soap*, _tse__EndSearchResponse *, const char*, const char*); - -inline int soap_read__tse__EndSearchResponse(struct soap *soap, _tse__EndSearchResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__EndSearchResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__EndSearchResponse(struct soap *soap, const char *URL, _tse__EndSearchResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__EndSearchResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__EndSearchResponse(struct soap *soap, _tse__EndSearchResponse *p) -{ - if (::soap_read__tse__EndSearchResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__EndSearch_DEFINED -#define SOAP_TYPE__tse__EndSearch_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__EndSearch(struct soap*, const char*, int, const _tse__EndSearch *, const char*); -SOAP_FMAC3 _tse__EndSearch * SOAP_FMAC4 soap_in__tse__EndSearch(struct soap*, const char*, _tse__EndSearch *, const char*); -SOAP_FMAC1 _tse__EndSearch * SOAP_FMAC2 soap_instantiate__tse__EndSearch(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__EndSearch * soap_new__tse__EndSearch(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__EndSearch(soap, n, NULL, NULL, NULL); -} - -inline _tse__EndSearch * soap_new_req__tse__EndSearch( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__EndSearch *_p = ::soap_new__tse__EndSearch(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__EndSearch::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__EndSearch * soap_new_set__tse__EndSearch( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__EndSearch *_p = ::soap_new__tse__EndSearch(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__EndSearch::SearchToken = SearchToken; - } - return _p; -} - -inline int soap_write__tse__EndSearch(struct soap *soap, _tse__EndSearch const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:EndSearch", p->soap_type() == SOAP_TYPE__tse__EndSearch ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__EndSearch(struct soap *soap, const char *URL, _tse__EndSearch 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, "tse:EndSearch", p->soap_type() == SOAP_TYPE__tse__EndSearch ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__EndSearch(struct soap *soap, const char *URL, _tse__EndSearch 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, "tse:EndSearch", p->soap_type() == SOAP_TYPE__tse__EndSearch ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__EndSearch(struct soap *soap, const char *URL, _tse__EndSearch 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, "tse:EndSearch", p->soap_type() == SOAP_TYPE__tse__EndSearch ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__EndSearch * SOAP_FMAC4 soap_get__tse__EndSearch(struct soap*, _tse__EndSearch *, const char*, const char*); - -inline int soap_read__tse__EndSearch(struct soap *soap, _tse__EndSearch *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__EndSearch(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__EndSearch(struct soap *soap, const char *URL, _tse__EndSearch *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__EndSearch(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__EndSearch(struct soap *soap, _tse__EndSearch *p) -{ - if (::soap_read__tse__EndSearch(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetSearchStateResponse_DEFINED -#define SOAP_TYPE__tse__GetSearchStateResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetSearchStateResponse(struct soap*, const char*, int, const _tse__GetSearchStateResponse *, const char*); -SOAP_FMAC3 _tse__GetSearchStateResponse * SOAP_FMAC4 soap_in__tse__GetSearchStateResponse(struct soap*, const char*, _tse__GetSearchStateResponse *, const char*); -SOAP_FMAC1 _tse__GetSearchStateResponse * SOAP_FMAC2 soap_instantiate__tse__GetSearchStateResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetSearchStateResponse * soap_new__tse__GetSearchStateResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetSearchStateResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetSearchStateResponse * soap_new_req__tse__GetSearchStateResponse( - struct soap *soap, - enum tt__SearchState State) -{ - _tse__GetSearchStateResponse *_p = ::soap_new__tse__GetSearchStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetSearchStateResponse::State = State; - } - return _p; -} - -inline _tse__GetSearchStateResponse * soap_new_set__tse__GetSearchStateResponse( - struct soap *soap, - enum tt__SearchState State) -{ - _tse__GetSearchStateResponse *_p = ::soap_new__tse__GetSearchStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetSearchStateResponse::State = State; - } - return _p; -} - -inline int soap_write__tse__GetSearchStateResponse(struct soap *soap, _tse__GetSearchStateResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetSearchStateResponse", p->soap_type() == SOAP_TYPE__tse__GetSearchStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetSearchStateResponse(struct soap *soap, const char *URL, _tse__GetSearchStateResponse 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, "tse:GetSearchStateResponse", p->soap_type() == SOAP_TYPE__tse__GetSearchStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetSearchStateResponse(struct soap *soap, const char *URL, _tse__GetSearchStateResponse 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, "tse:GetSearchStateResponse", p->soap_type() == SOAP_TYPE__tse__GetSearchStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetSearchStateResponse(struct soap *soap, const char *URL, _tse__GetSearchStateResponse 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, "tse:GetSearchStateResponse", p->soap_type() == SOAP_TYPE__tse__GetSearchStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetSearchStateResponse * SOAP_FMAC4 soap_get__tse__GetSearchStateResponse(struct soap*, _tse__GetSearchStateResponse *, const char*, const char*); - -inline int soap_read__tse__GetSearchStateResponse(struct soap *soap, _tse__GetSearchStateResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetSearchStateResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetSearchStateResponse(struct soap *soap, const char *URL, _tse__GetSearchStateResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetSearchStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetSearchStateResponse(struct soap *soap, _tse__GetSearchStateResponse *p) -{ - if (::soap_read__tse__GetSearchStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetSearchState_DEFINED -#define SOAP_TYPE__tse__GetSearchState_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetSearchState(struct soap*, const char*, int, const _tse__GetSearchState *, const char*); -SOAP_FMAC3 _tse__GetSearchState * SOAP_FMAC4 soap_in__tse__GetSearchState(struct soap*, const char*, _tse__GetSearchState *, const char*); -SOAP_FMAC1 _tse__GetSearchState * SOAP_FMAC2 soap_instantiate__tse__GetSearchState(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetSearchState * soap_new__tse__GetSearchState(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetSearchState(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetSearchState * soap_new_req__tse__GetSearchState( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__GetSearchState *_p = ::soap_new__tse__GetSearchState(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetSearchState::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__GetSearchState * soap_new_set__tse__GetSearchState( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__GetSearchState *_p = ::soap_new__tse__GetSearchState(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetSearchState::SearchToken = SearchToken; - } - return _p; -} - -inline int soap_write__tse__GetSearchState(struct soap *soap, _tse__GetSearchState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetSearchState", p->soap_type() == SOAP_TYPE__tse__GetSearchState ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetSearchState(struct soap *soap, const char *URL, _tse__GetSearchState 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, "tse:GetSearchState", p->soap_type() == SOAP_TYPE__tse__GetSearchState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetSearchState(struct soap *soap, const char *URL, _tse__GetSearchState 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, "tse:GetSearchState", p->soap_type() == SOAP_TYPE__tse__GetSearchState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetSearchState(struct soap *soap, const char *URL, _tse__GetSearchState 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, "tse:GetSearchState", p->soap_type() == SOAP_TYPE__tse__GetSearchState ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetSearchState * SOAP_FMAC4 soap_get__tse__GetSearchState(struct soap*, _tse__GetSearchState *, const char*, const char*); - -inline int soap_read__tse__GetSearchState(struct soap *soap, _tse__GetSearchState *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetSearchState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetSearchState(struct soap *soap, const char *URL, _tse__GetSearchState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetSearchState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetSearchState(struct soap *soap, _tse__GetSearchState *p) -{ - if (::soap_read__tse__GetSearchState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetMetadataSearchResultsResponse_DEFINED -#define SOAP_TYPE__tse__GetMetadataSearchResultsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMetadataSearchResultsResponse(struct soap*, const char*, int, const _tse__GetMetadataSearchResultsResponse *, const char*); -SOAP_FMAC3 _tse__GetMetadataSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetMetadataSearchResultsResponse(struct soap*, const char*, _tse__GetMetadataSearchResultsResponse *, const char*); -SOAP_FMAC1 _tse__GetMetadataSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetMetadataSearchResultsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetMetadataSearchResultsResponse * soap_new__tse__GetMetadataSearchResultsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetMetadataSearchResultsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetMetadataSearchResultsResponse * soap_new_req__tse__GetMetadataSearchResultsResponse( - struct soap *soap, - tt__FindMetadataResultList *ResultList) -{ - _tse__GetMetadataSearchResultsResponse *_p = ::soap_new__tse__GetMetadataSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetMetadataSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline _tse__GetMetadataSearchResultsResponse * soap_new_set__tse__GetMetadataSearchResultsResponse( - struct soap *soap, - tt__FindMetadataResultList *ResultList) -{ - _tse__GetMetadataSearchResultsResponse *_p = ::soap_new__tse__GetMetadataSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetMetadataSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline int soap_write__tse__GetMetadataSearchResultsResponse(struct soap *soap, _tse__GetMetadataSearchResultsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetMetadataSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetMetadataSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetMetadataSearchResultsResponse 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, "tse:GetMetadataSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetMetadataSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetMetadataSearchResultsResponse 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, "tse:GetMetadataSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetMetadataSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetMetadataSearchResultsResponse 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, "tse:GetMetadataSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetMetadataSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetMetadataSearchResultsResponse(struct soap*, _tse__GetMetadataSearchResultsResponse *, const char*, const char*); - -inline int soap_read__tse__GetMetadataSearchResultsResponse(struct soap *soap, _tse__GetMetadataSearchResultsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetMetadataSearchResultsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetMetadataSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetMetadataSearchResultsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetMetadataSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetMetadataSearchResultsResponse(struct soap *soap, _tse__GetMetadataSearchResultsResponse *p) -{ - if (::soap_read__tse__GetMetadataSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetMetadataSearchResults_DEFINED -#define SOAP_TYPE__tse__GetMetadataSearchResults_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMetadataSearchResults(struct soap*, const char*, int, const _tse__GetMetadataSearchResults *, const char*); -SOAP_FMAC3 _tse__GetMetadataSearchResults * SOAP_FMAC4 soap_in__tse__GetMetadataSearchResults(struct soap*, const char*, _tse__GetMetadataSearchResults *, const char*); -SOAP_FMAC1 _tse__GetMetadataSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetMetadataSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetMetadataSearchResults * soap_new__tse__GetMetadataSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetMetadataSearchResults(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetMetadataSearchResults * soap_new_req__tse__GetMetadataSearchResults( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__GetMetadataSearchResults *_p = ::soap_new__tse__GetMetadataSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetMetadataSearchResults::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__GetMetadataSearchResults * soap_new_set__tse__GetMetadataSearchResults( - struct soap *soap, - const std::string& SearchToken, - int *MinResults, - int *MaxResults, - std::string *WaitTime) -{ - _tse__GetMetadataSearchResults *_p = ::soap_new__tse__GetMetadataSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetMetadataSearchResults::SearchToken = SearchToken; - _p->_tse__GetMetadataSearchResults::MinResults = MinResults; - _p->_tse__GetMetadataSearchResults::MaxResults = MaxResults; - _p->_tse__GetMetadataSearchResults::WaitTime = WaitTime; - } - return _p; -} - -inline int soap_write__tse__GetMetadataSearchResults(struct soap *soap, _tse__GetMetadataSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetMetadataSearchResults", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetMetadataSearchResults(struct soap *soap, const char *URL, _tse__GetMetadataSearchResults 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, "tse:GetMetadataSearchResults", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetMetadataSearchResults(struct soap *soap, const char *URL, _tse__GetMetadataSearchResults 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, "tse:GetMetadataSearchResults", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetMetadataSearchResults(struct soap *soap, const char *URL, _tse__GetMetadataSearchResults 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, "tse:GetMetadataSearchResults", p->soap_type() == SOAP_TYPE__tse__GetMetadataSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetMetadataSearchResults * SOAP_FMAC4 soap_get__tse__GetMetadataSearchResults(struct soap*, _tse__GetMetadataSearchResults *, const char*, const char*); - -inline int soap_read__tse__GetMetadataSearchResults(struct soap *soap, _tse__GetMetadataSearchResults *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetMetadataSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetMetadataSearchResults(struct soap *soap, const char *URL, _tse__GetMetadataSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetMetadataSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetMetadataSearchResults(struct soap *soap, _tse__GetMetadataSearchResults *p) -{ - if (::soap_read__tse__GetMetadataSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindMetadataResponse_DEFINED -#define SOAP_TYPE__tse__FindMetadataResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindMetadataResponse(struct soap*, const char*, int, const _tse__FindMetadataResponse *, const char*); -SOAP_FMAC3 _tse__FindMetadataResponse * SOAP_FMAC4 soap_in__tse__FindMetadataResponse(struct soap*, const char*, _tse__FindMetadataResponse *, const char*); -SOAP_FMAC1 _tse__FindMetadataResponse * SOAP_FMAC2 soap_instantiate__tse__FindMetadataResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindMetadataResponse * soap_new__tse__FindMetadataResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindMetadataResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindMetadataResponse * soap_new_req__tse__FindMetadataResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindMetadataResponse *_p = ::soap_new__tse__FindMetadataResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindMetadataResponse::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__FindMetadataResponse * soap_new_set__tse__FindMetadataResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindMetadataResponse *_p = ::soap_new__tse__FindMetadataResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindMetadataResponse::SearchToken = SearchToken; - } - return _p; -} - -inline int soap_write__tse__FindMetadataResponse(struct soap *soap, _tse__FindMetadataResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindMetadataResponse", p->soap_type() == SOAP_TYPE__tse__FindMetadataResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindMetadataResponse(struct soap *soap, const char *URL, _tse__FindMetadataResponse 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, "tse:FindMetadataResponse", p->soap_type() == SOAP_TYPE__tse__FindMetadataResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindMetadataResponse(struct soap *soap, const char *URL, _tse__FindMetadataResponse 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, "tse:FindMetadataResponse", p->soap_type() == SOAP_TYPE__tse__FindMetadataResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindMetadataResponse(struct soap *soap, const char *URL, _tse__FindMetadataResponse 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, "tse:FindMetadataResponse", p->soap_type() == SOAP_TYPE__tse__FindMetadataResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindMetadataResponse * SOAP_FMAC4 soap_get__tse__FindMetadataResponse(struct soap*, _tse__FindMetadataResponse *, const char*, const char*); - -inline int soap_read__tse__FindMetadataResponse(struct soap *soap, _tse__FindMetadataResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindMetadataResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindMetadataResponse(struct soap *soap, const char *URL, _tse__FindMetadataResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindMetadataResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindMetadataResponse(struct soap *soap, _tse__FindMetadataResponse *p) -{ - if (::soap_read__tse__FindMetadataResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindMetadata_DEFINED -#define SOAP_TYPE__tse__FindMetadata_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindMetadata(struct soap*, const char*, int, const _tse__FindMetadata *, const char*); -SOAP_FMAC3 _tse__FindMetadata * SOAP_FMAC4 soap_in__tse__FindMetadata(struct soap*, const char*, _tse__FindMetadata *, const char*); -SOAP_FMAC1 _tse__FindMetadata * SOAP_FMAC2 soap_instantiate__tse__FindMetadata(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindMetadata * soap_new__tse__FindMetadata(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindMetadata(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindMetadata * soap_new_req__tse__FindMetadata( - struct soap *soap, - const struct timeval& StartPoint, - tt__SearchScope *Scope, - tt__MetadataFilter *MetadataFilter, - const std::string& KeepAliveTime) -{ - _tse__FindMetadata *_p = ::soap_new__tse__FindMetadata(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindMetadata::StartPoint = StartPoint; - _p->_tse__FindMetadata::Scope = Scope; - _p->_tse__FindMetadata::MetadataFilter = MetadataFilter; - _p->_tse__FindMetadata::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline _tse__FindMetadata * soap_new_set__tse__FindMetadata( - struct soap *soap, - const struct timeval& StartPoint, - struct timeval *EndPoint, - tt__SearchScope *Scope, - tt__MetadataFilter *MetadataFilter, - int *MaxMatches, - const std::string& KeepAliveTime) -{ - _tse__FindMetadata *_p = ::soap_new__tse__FindMetadata(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindMetadata::StartPoint = StartPoint; - _p->_tse__FindMetadata::EndPoint = EndPoint; - _p->_tse__FindMetadata::Scope = Scope; - _p->_tse__FindMetadata::MetadataFilter = MetadataFilter; - _p->_tse__FindMetadata::MaxMatches = MaxMatches; - _p->_tse__FindMetadata::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline int soap_write__tse__FindMetadata(struct soap *soap, _tse__FindMetadata const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindMetadata", p->soap_type() == SOAP_TYPE__tse__FindMetadata ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindMetadata(struct soap *soap, const char *URL, _tse__FindMetadata 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, "tse:FindMetadata", p->soap_type() == SOAP_TYPE__tse__FindMetadata ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindMetadata(struct soap *soap, const char *URL, _tse__FindMetadata 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, "tse:FindMetadata", p->soap_type() == SOAP_TYPE__tse__FindMetadata ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindMetadata(struct soap *soap, const char *URL, _tse__FindMetadata 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, "tse:FindMetadata", p->soap_type() == SOAP_TYPE__tse__FindMetadata ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindMetadata * SOAP_FMAC4 soap_get__tse__FindMetadata(struct soap*, _tse__FindMetadata *, const char*, const char*); - -inline int soap_read__tse__FindMetadata(struct soap *soap, _tse__FindMetadata *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindMetadata(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindMetadata(struct soap *soap, const char *URL, _tse__FindMetadata *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindMetadata(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindMetadata(struct soap *soap, _tse__FindMetadata *p) -{ - if (::soap_read__tse__FindMetadata(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse_DEFINED -#define SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetPTZPositionSearchResultsResponse(struct soap*, const char*, int, const _tse__GetPTZPositionSearchResultsResponse *, const char*); -SOAP_FMAC3 _tse__GetPTZPositionSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetPTZPositionSearchResultsResponse(struct soap*, const char*, _tse__GetPTZPositionSearchResultsResponse *, const char*); -SOAP_FMAC1 _tse__GetPTZPositionSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetPTZPositionSearchResultsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetPTZPositionSearchResultsResponse * soap_new__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetPTZPositionSearchResultsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetPTZPositionSearchResultsResponse * soap_new_req__tse__GetPTZPositionSearchResultsResponse( - struct soap *soap, - tt__FindPTZPositionResultList *ResultList) -{ - _tse__GetPTZPositionSearchResultsResponse *_p = ::soap_new__tse__GetPTZPositionSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetPTZPositionSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline _tse__GetPTZPositionSearchResultsResponse * soap_new_set__tse__GetPTZPositionSearchResultsResponse( - struct soap *soap, - tt__FindPTZPositionResultList *ResultList) -{ - _tse__GetPTZPositionSearchResultsResponse *_p = ::soap_new__tse__GetPTZPositionSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetPTZPositionSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline int soap_write__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, _tse__GetPTZPositionSearchResultsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetPTZPositionSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResultsResponse 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, "tse:GetPTZPositionSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResultsResponse 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, "tse:GetPTZPositionSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResultsResponse 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, "tse:GetPTZPositionSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetPTZPositionSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetPTZPositionSearchResultsResponse(struct soap*, _tse__GetPTZPositionSearchResultsResponse *, const char*, const char*); - -inline int soap_read__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, _tse__GetPTZPositionSearchResultsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetPTZPositionSearchResultsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResultsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetPTZPositionSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetPTZPositionSearchResultsResponse(struct soap *soap, _tse__GetPTZPositionSearchResultsResponse *p) -{ - if (::soap_read__tse__GetPTZPositionSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetPTZPositionSearchResults_DEFINED -#define SOAP_TYPE__tse__GetPTZPositionSearchResults_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetPTZPositionSearchResults(struct soap*, const char*, int, const _tse__GetPTZPositionSearchResults *, const char*); -SOAP_FMAC3 _tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_in__tse__GetPTZPositionSearchResults(struct soap*, const char*, _tse__GetPTZPositionSearchResults *, const char*); -SOAP_FMAC1 _tse__GetPTZPositionSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetPTZPositionSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetPTZPositionSearchResults * soap_new__tse__GetPTZPositionSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetPTZPositionSearchResults(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetPTZPositionSearchResults * soap_new_req__tse__GetPTZPositionSearchResults( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__GetPTZPositionSearchResults *_p = ::soap_new__tse__GetPTZPositionSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetPTZPositionSearchResults::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__GetPTZPositionSearchResults * soap_new_set__tse__GetPTZPositionSearchResults( - struct soap *soap, - const std::string& SearchToken, - int *MinResults, - int *MaxResults, - std::string *WaitTime) -{ - _tse__GetPTZPositionSearchResults *_p = ::soap_new__tse__GetPTZPositionSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetPTZPositionSearchResults::SearchToken = SearchToken; - _p->_tse__GetPTZPositionSearchResults::MinResults = MinResults; - _p->_tse__GetPTZPositionSearchResults::MaxResults = MaxResults; - _p->_tse__GetPTZPositionSearchResults::WaitTime = WaitTime; - } - return _p; -} - -inline int soap_write__tse__GetPTZPositionSearchResults(struct soap *soap, _tse__GetPTZPositionSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetPTZPositionSearchResults", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResults 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, "tse:GetPTZPositionSearchResults", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResults 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, "tse:GetPTZPositionSearchResults", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResults 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, "tse:GetPTZPositionSearchResults", p->soap_type() == SOAP_TYPE__tse__GetPTZPositionSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_get__tse__GetPTZPositionSearchResults(struct soap*, _tse__GetPTZPositionSearchResults *, const char*, const char*); - -inline int soap_read__tse__GetPTZPositionSearchResults(struct soap *soap, _tse__GetPTZPositionSearchResults *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetPTZPositionSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, _tse__GetPTZPositionSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetPTZPositionSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetPTZPositionSearchResults(struct soap *soap, _tse__GetPTZPositionSearchResults *p) -{ - if (::soap_read__tse__GetPTZPositionSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindPTZPositionResponse_DEFINED -#define SOAP_TYPE__tse__FindPTZPositionResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindPTZPositionResponse(struct soap*, const char*, int, const _tse__FindPTZPositionResponse *, const char*); -SOAP_FMAC3 _tse__FindPTZPositionResponse * SOAP_FMAC4 soap_in__tse__FindPTZPositionResponse(struct soap*, const char*, _tse__FindPTZPositionResponse *, const char*); -SOAP_FMAC1 _tse__FindPTZPositionResponse * SOAP_FMAC2 soap_instantiate__tse__FindPTZPositionResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindPTZPositionResponse * soap_new__tse__FindPTZPositionResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindPTZPositionResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindPTZPositionResponse * soap_new_req__tse__FindPTZPositionResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindPTZPositionResponse *_p = ::soap_new__tse__FindPTZPositionResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindPTZPositionResponse::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__FindPTZPositionResponse * soap_new_set__tse__FindPTZPositionResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindPTZPositionResponse *_p = ::soap_new__tse__FindPTZPositionResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindPTZPositionResponse::SearchToken = SearchToken; - } - return _p; -} - -inline int soap_write__tse__FindPTZPositionResponse(struct soap *soap, _tse__FindPTZPositionResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindPTZPositionResponse", p->soap_type() == SOAP_TYPE__tse__FindPTZPositionResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindPTZPositionResponse(struct soap *soap, const char *URL, _tse__FindPTZPositionResponse 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, "tse:FindPTZPositionResponse", p->soap_type() == SOAP_TYPE__tse__FindPTZPositionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindPTZPositionResponse(struct soap *soap, const char *URL, _tse__FindPTZPositionResponse 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, "tse:FindPTZPositionResponse", p->soap_type() == SOAP_TYPE__tse__FindPTZPositionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindPTZPositionResponse(struct soap *soap, const char *URL, _tse__FindPTZPositionResponse 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, "tse:FindPTZPositionResponse", p->soap_type() == SOAP_TYPE__tse__FindPTZPositionResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindPTZPositionResponse * SOAP_FMAC4 soap_get__tse__FindPTZPositionResponse(struct soap*, _tse__FindPTZPositionResponse *, const char*, const char*); - -inline int soap_read__tse__FindPTZPositionResponse(struct soap *soap, _tse__FindPTZPositionResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindPTZPositionResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindPTZPositionResponse(struct soap *soap, const char *URL, _tse__FindPTZPositionResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindPTZPositionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindPTZPositionResponse(struct soap *soap, _tse__FindPTZPositionResponse *p) -{ - if (::soap_read__tse__FindPTZPositionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindPTZPosition_DEFINED -#define SOAP_TYPE__tse__FindPTZPosition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindPTZPosition(struct soap*, const char*, int, const _tse__FindPTZPosition *, const char*); -SOAP_FMAC3 _tse__FindPTZPosition * SOAP_FMAC4 soap_in__tse__FindPTZPosition(struct soap*, const char*, _tse__FindPTZPosition *, const char*); -SOAP_FMAC1 _tse__FindPTZPosition * SOAP_FMAC2 soap_instantiate__tse__FindPTZPosition(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindPTZPosition * soap_new__tse__FindPTZPosition(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindPTZPosition(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindPTZPosition * soap_new_req__tse__FindPTZPosition( - struct soap *soap, - const struct timeval& StartPoint, - tt__SearchScope *Scope, - tt__PTZPositionFilter *SearchFilter, - const std::string& KeepAliveTime) -{ - _tse__FindPTZPosition *_p = ::soap_new__tse__FindPTZPosition(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindPTZPosition::StartPoint = StartPoint; - _p->_tse__FindPTZPosition::Scope = Scope; - _p->_tse__FindPTZPosition::SearchFilter = SearchFilter; - _p->_tse__FindPTZPosition::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline _tse__FindPTZPosition * soap_new_set__tse__FindPTZPosition( - struct soap *soap, - const struct timeval& StartPoint, - struct timeval *EndPoint, - tt__SearchScope *Scope, - tt__PTZPositionFilter *SearchFilter, - int *MaxMatches, - const std::string& KeepAliveTime) -{ - _tse__FindPTZPosition *_p = ::soap_new__tse__FindPTZPosition(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindPTZPosition::StartPoint = StartPoint; - _p->_tse__FindPTZPosition::EndPoint = EndPoint; - _p->_tse__FindPTZPosition::Scope = Scope; - _p->_tse__FindPTZPosition::SearchFilter = SearchFilter; - _p->_tse__FindPTZPosition::MaxMatches = MaxMatches; - _p->_tse__FindPTZPosition::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline int soap_write__tse__FindPTZPosition(struct soap *soap, _tse__FindPTZPosition const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindPTZPosition", p->soap_type() == SOAP_TYPE__tse__FindPTZPosition ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindPTZPosition(struct soap *soap, const char *URL, _tse__FindPTZPosition 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, "tse:FindPTZPosition", p->soap_type() == SOAP_TYPE__tse__FindPTZPosition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindPTZPosition(struct soap *soap, const char *URL, _tse__FindPTZPosition 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, "tse:FindPTZPosition", p->soap_type() == SOAP_TYPE__tse__FindPTZPosition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindPTZPosition(struct soap *soap, const char *URL, _tse__FindPTZPosition 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, "tse:FindPTZPosition", p->soap_type() == SOAP_TYPE__tse__FindPTZPosition ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindPTZPosition * SOAP_FMAC4 soap_get__tse__FindPTZPosition(struct soap*, _tse__FindPTZPosition *, const char*, const char*); - -inline int soap_read__tse__FindPTZPosition(struct soap *soap, _tse__FindPTZPosition *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindPTZPosition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindPTZPosition(struct soap *soap, const char *URL, _tse__FindPTZPosition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindPTZPosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindPTZPosition(struct soap *soap, _tse__FindPTZPosition *p) -{ - if (::soap_read__tse__FindPTZPosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetEventSearchResultsResponse_DEFINED -#define SOAP_TYPE__tse__GetEventSearchResultsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetEventSearchResultsResponse(struct soap*, const char*, int, const _tse__GetEventSearchResultsResponse *, const char*); -SOAP_FMAC3 _tse__GetEventSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetEventSearchResultsResponse(struct soap*, const char*, _tse__GetEventSearchResultsResponse *, const char*); -SOAP_FMAC1 _tse__GetEventSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetEventSearchResultsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetEventSearchResultsResponse * soap_new__tse__GetEventSearchResultsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetEventSearchResultsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetEventSearchResultsResponse * soap_new_req__tse__GetEventSearchResultsResponse( - struct soap *soap, - tt__FindEventResultList *ResultList) -{ - _tse__GetEventSearchResultsResponse *_p = ::soap_new__tse__GetEventSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetEventSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline _tse__GetEventSearchResultsResponse * soap_new_set__tse__GetEventSearchResultsResponse( - struct soap *soap, - tt__FindEventResultList *ResultList) -{ - _tse__GetEventSearchResultsResponse *_p = ::soap_new__tse__GetEventSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetEventSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline int soap_write__tse__GetEventSearchResultsResponse(struct soap *soap, _tse__GetEventSearchResultsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetEventSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetEventSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetEventSearchResultsResponse 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, "tse:GetEventSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetEventSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetEventSearchResultsResponse 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, "tse:GetEventSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetEventSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetEventSearchResultsResponse 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, "tse:GetEventSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetEventSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetEventSearchResultsResponse(struct soap*, _tse__GetEventSearchResultsResponse *, const char*, const char*); - -inline int soap_read__tse__GetEventSearchResultsResponse(struct soap *soap, _tse__GetEventSearchResultsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetEventSearchResultsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetEventSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetEventSearchResultsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetEventSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetEventSearchResultsResponse(struct soap *soap, _tse__GetEventSearchResultsResponse *p) -{ - if (::soap_read__tse__GetEventSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetEventSearchResults_DEFINED -#define SOAP_TYPE__tse__GetEventSearchResults_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetEventSearchResults(struct soap*, const char*, int, const _tse__GetEventSearchResults *, const char*); -SOAP_FMAC3 _tse__GetEventSearchResults * SOAP_FMAC4 soap_in__tse__GetEventSearchResults(struct soap*, const char*, _tse__GetEventSearchResults *, const char*); -SOAP_FMAC1 _tse__GetEventSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetEventSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetEventSearchResults * soap_new__tse__GetEventSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetEventSearchResults(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetEventSearchResults * soap_new_req__tse__GetEventSearchResults( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__GetEventSearchResults *_p = ::soap_new__tse__GetEventSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetEventSearchResults::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__GetEventSearchResults * soap_new_set__tse__GetEventSearchResults( - struct soap *soap, - const std::string& SearchToken, - int *MinResults, - int *MaxResults, - std::string *WaitTime) -{ - _tse__GetEventSearchResults *_p = ::soap_new__tse__GetEventSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetEventSearchResults::SearchToken = SearchToken; - _p->_tse__GetEventSearchResults::MinResults = MinResults; - _p->_tse__GetEventSearchResults::MaxResults = MaxResults; - _p->_tse__GetEventSearchResults::WaitTime = WaitTime; - } - return _p; -} - -inline int soap_write__tse__GetEventSearchResults(struct soap *soap, _tse__GetEventSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetEventSearchResults", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetEventSearchResults(struct soap *soap, const char *URL, _tse__GetEventSearchResults 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, "tse:GetEventSearchResults", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetEventSearchResults(struct soap *soap, const char *URL, _tse__GetEventSearchResults 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, "tse:GetEventSearchResults", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetEventSearchResults(struct soap *soap, const char *URL, _tse__GetEventSearchResults 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, "tse:GetEventSearchResults", p->soap_type() == SOAP_TYPE__tse__GetEventSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetEventSearchResults * SOAP_FMAC4 soap_get__tse__GetEventSearchResults(struct soap*, _tse__GetEventSearchResults *, const char*, const char*); - -inline int soap_read__tse__GetEventSearchResults(struct soap *soap, _tse__GetEventSearchResults *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetEventSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetEventSearchResults(struct soap *soap, const char *URL, _tse__GetEventSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetEventSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetEventSearchResults(struct soap *soap, _tse__GetEventSearchResults *p) -{ - if (::soap_read__tse__GetEventSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindEventsResponse_DEFINED -#define SOAP_TYPE__tse__FindEventsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindEventsResponse(struct soap*, const char*, int, const _tse__FindEventsResponse *, const char*); -SOAP_FMAC3 _tse__FindEventsResponse * SOAP_FMAC4 soap_in__tse__FindEventsResponse(struct soap*, const char*, _tse__FindEventsResponse *, const char*); -SOAP_FMAC1 _tse__FindEventsResponse * SOAP_FMAC2 soap_instantiate__tse__FindEventsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindEventsResponse * soap_new__tse__FindEventsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindEventsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindEventsResponse * soap_new_req__tse__FindEventsResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindEventsResponse *_p = ::soap_new__tse__FindEventsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindEventsResponse::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__FindEventsResponse * soap_new_set__tse__FindEventsResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindEventsResponse *_p = ::soap_new__tse__FindEventsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindEventsResponse::SearchToken = SearchToken; - } - return _p; -} - -inline int soap_write__tse__FindEventsResponse(struct soap *soap, _tse__FindEventsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindEventsResponse", p->soap_type() == SOAP_TYPE__tse__FindEventsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindEventsResponse(struct soap *soap, const char *URL, _tse__FindEventsResponse 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, "tse:FindEventsResponse", p->soap_type() == SOAP_TYPE__tse__FindEventsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindEventsResponse(struct soap *soap, const char *URL, _tse__FindEventsResponse 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, "tse:FindEventsResponse", p->soap_type() == SOAP_TYPE__tse__FindEventsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindEventsResponse(struct soap *soap, const char *URL, _tse__FindEventsResponse 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, "tse:FindEventsResponse", p->soap_type() == SOAP_TYPE__tse__FindEventsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindEventsResponse * SOAP_FMAC4 soap_get__tse__FindEventsResponse(struct soap*, _tse__FindEventsResponse *, const char*, const char*); - -inline int soap_read__tse__FindEventsResponse(struct soap *soap, _tse__FindEventsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindEventsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindEventsResponse(struct soap *soap, const char *URL, _tse__FindEventsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindEventsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindEventsResponse(struct soap *soap, _tse__FindEventsResponse *p) -{ - if (::soap_read__tse__FindEventsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindEvents_DEFINED -#define SOAP_TYPE__tse__FindEvents_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindEvents(struct soap*, const char*, int, const _tse__FindEvents *, const char*); -SOAP_FMAC3 _tse__FindEvents * SOAP_FMAC4 soap_in__tse__FindEvents(struct soap*, const char*, _tse__FindEvents *, const char*); -SOAP_FMAC1 _tse__FindEvents * SOAP_FMAC2 soap_instantiate__tse__FindEvents(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindEvents * soap_new__tse__FindEvents(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindEvents(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindEvents * soap_new_req__tse__FindEvents( - struct soap *soap, - const struct timeval& StartPoint, - tt__SearchScope *Scope, - tt__EventFilter *SearchFilter, - bool IncludeStartState, - const std::string& KeepAliveTime) -{ - _tse__FindEvents *_p = ::soap_new__tse__FindEvents(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindEvents::StartPoint = StartPoint; - _p->_tse__FindEvents::Scope = Scope; - _p->_tse__FindEvents::SearchFilter = SearchFilter; - _p->_tse__FindEvents::IncludeStartState = IncludeStartState; - _p->_tse__FindEvents::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline _tse__FindEvents * soap_new_set__tse__FindEvents( - struct soap *soap, - const struct timeval& StartPoint, - struct timeval *EndPoint, - tt__SearchScope *Scope, - tt__EventFilter *SearchFilter, - bool IncludeStartState, - int *MaxMatches, - const std::string& KeepAliveTime) -{ - _tse__FindEvents *_p = ::soap_new__tse__FindEvents(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindEvents::StartPoint = StartPoint; - _p->_tse__FindEvents::EndPoint = EndPoint; - _p->_tse__FindEvents::Scope = Scope; - _p->_tse__FindEvents::SearchFilter = SearchFilter; - _p->_tse__FindEvents::IncludeStartState = IncludeStartState; - _p->_tse__FindEvents::MaxMatches = MaxMatches; - _p->_tse__FindEvents::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline int soap_write__tse__FindEvents(struct soap *soap, _tse__FindEvents const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindEvents", p->soap_type() == SOAP_TYPE__tse__FindEvents ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindEvents(struct soap *soap, const char *URL, _tse__FindEvents 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, "tse:FindEvents", p->soap_type() == SOAP_TYPE__tse__FindEvents ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindEvents(struct soap *soap, const char *URL, _tse__FindEvents 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, "tse:FindEvents", p->soap_type() == SOAP_TYPE__tse__FindEvents ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindEvents(struct soap *soap, const char *URL, _tse__FindEvents 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, "tse:FindEvents", p->soap_type() == SOAP_TYPE__tse__FindEvents ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindEvents * SOAP_FMAC4 soap_get__tse__FindEvents(struct soap*, _tse__FindEvents *, const char*, const char*); - -inline int soap_read__tse__FindEvents(struct soap *soap, _tse__FindEvents *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindEvents(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindEvents(struct soap *soap, const char *URL, _tse__FindEvents *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindEvents(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindEvents(struct soap *soap, _tse__FindEvents *p) -{ - if (::soap_read__tse__FindEvents(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetRecordingSearchResultsResponse_DEFINED -#define SOAP_TYPE__tse__GetRecordingSearchResultsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSearchResultsResponse(struct soap*, const char*, int, const _tse__GetRecordingSearchResultsResponse *, const char*); -SOAP_FMAC3 _tse__GetRecordingSearchResultsResponse * SOAP_FMAC4 soap_in__tse__GetRecordingSearchResultsResponse(struct soap*, const char*, _tse__GetRecordingSearchResultsResponse *, const char*); -SOAP_FMAC1 _tse__GetRecordingSearchResultsResponse * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSearchResultsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetRecordingSearchResultsResponse * soap_new__tse__GetRecordingSearchResultsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetRecordingSearchResultsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetRecordingSearchResultsResponse * soap_new_req__tse__GetRecordingSearchResultsResponse( - struct soap *soap, - tt__FindRecordingResultList *ResultList) -{ - _tse__GetRecordingSearchResultsResponse *_p = ::soap_new__tse__GetRecordingSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline _tse__GetRecordingSearchResultsResponse * soap_new_set__tse__GetRecordingSearchResultsResponse( - struct soap *soap, - tt__FindRecordingResultList *ResultList) -{ - _tse__GetRecordingSearchResultsResponse *_p = ::soap_new__tse__GetRecordingSearchResultsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingSearchResultsResponse::ResultList = ResultList; - } - return _p; -} - -inline int soap_write__tse__GetRecordingSearchResultsResponse(struct soap *soap, _tse__GetRecordingSearchResultsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetRecordingSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetRecordingSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetRecordingSearchResultsResponse 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, "tse:GetRecordingSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetRecordingSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetRecordingSearchResultsResponse 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, "tse:GetRecordingSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResultsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetRecordingSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetRecordingSearchResultsResponse 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, "tse:GetRecordingSearchResultsResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResultsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetRecordingSearchResultsResponse * SOAP_FMAC4 soap_get__tse__GetRecordingSearchResultsResponse(struct soap*, _tse__GetRecordingSearchResultsResponse *, const char*, const char*); - -inline int soap_read__tse__GetRecordingSearchResultsResponse(struct soap *soap, _tse__GetRecordingSearchResultsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetRecordingSearchResultsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetRecordingSearchResultsResponse(struct soap *soap, const char *URL, _tse__GetRecordingSearchResultsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetRecordingSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetRecordingSearchResultsResponse(struct soap *soap, _tse__GetRecordingSearchResultsResponse *p) -{ - if (::soap_read__tse__GetRecordingSearchResultsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetRecordingSearchResults_DEFINED -#define SOAP_TYPE__tse__GetRecordingSearchResults_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSearchResults(struct soap*, const char*, int, const _tse__GetRecordingSearchResults *, const char*); -SOAP_FMAC3 _tse__GetRecordingSearchResults * SOAP_FMAC4 soap_in__tse__GetRecordingSearchResults(struct soap*, const char*, _tse__GetRecordingSearchResults *, const char*); -SOAP_FMAC1 _tse__GetRecordingSearchResults * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetRecordingSearchResults * soap_new__tse__GetRecordingSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetRecordingSearchResults(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetRecordingSearchResults * soap_new_req__tse__GetRecordingSearchResults( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__GetRecordingSearchResults *_p = ::soap_new__tse__GetRecordingSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingSearchResults::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__GetRecordingSearchResults * soap_new_set__tse__GetRecordingSearchResults( - struct soap *soap, - const std::string& SearchToken, - int *MinResults, - int *MaxResults, - std::string *WaitTime) -{ - _tse__GetRecordingSearchResults *_p = ::soap_new__tse__GetRecordingSearchResults(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingSearchResults::SearchToken = SearchToken; - _p->_tse__GetRecordingSearchResults::MinResults = MinResults; - _p->_tse__GetRecordingSearchResults::MaxResults = MaxResults; - _p->_tse__GetRecordingSearchResults::WaitTime = WaitTime; - } - return _p; -} - -inline int soap_write__tse__GetRecordingSearchResults(struct soap *soap, _tse__GetRecordingSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetRecordingSearchResults", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetRecordingSearchResults(struct soap *soap, const char *URL, _tse__GetRecordingSearchResults 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, "tse:GetRecordingSearchResults", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetRecordingSearchResults(struct soap *soap, const char *URL, _tse__GetRecordingSearchResults 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, "tse:GetRecordingSearchResults", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResults ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetRecordingSearchResults(struct soap *soap, const char *URL, _tse__GetRecordingSearchResults 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, "tse:GetRecordingSearchResults", p->soap_type() == SOAP_TYPE__tse__GetRecordingSearchResults ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetRecordingSearchResults * SOAP_FMAC4 soap_get__tse__GetRecordingSearchResults(struct soap*, _tse__GetRecordingSearchResults *, const char*, const char*); - -inline int soap_read__tse__GetRecordingSearchResults(struct soap *soap, _tse__GetRecordingSearchResults *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetRecordingSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetRecordingSearchResults(struct soap *soap, const char *URL, _tse__GetRecordingSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetRecordingSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetRecordingSearchResults(struct soap *soap, _tse__GetRecordingSearchResults *p) -{ - if (::soap_read__tse__GetRecordingSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindRecordingsResponse_DEFINED -#define SOAP_TYPE__tse__FindRecordingsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindRecordingsResponse(struct soap*, const char*, int, const _tse__FindRecordingsResponse *, const char*); -SOAP_FMAC3 _tse__FindRecordingsResponse * SOAP_FMAC4 soap_in__tse__FindRecordingsResponse(struct soap*, const char*, _tse__FindRecordingsResponse *, const char*); -SOAP_FMAC1 _tse__FindRecordingsResponse * SOAP_FMAC2 soap_instantiate__tse__FindRecordingsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindRecordingsResponse * soap_new__tse__FindRecordingsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindRecordingsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindRecordingsResponse * soap_new_req__tse__FindRecordingsResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindRecordingsResponse *_p = ::soap_new__tse__FindRecordingsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindRecordingsResponse::SearchToken = SearchToken; - } - return _p; -} - -inline _tse__FindRecordingsResponse * soap_new_set__tse__FindRecordingsResponse( - struct soap *soap, - const std::string& SearchToken) -{ - _tse__FindRecordingsResponse *_p = ::soap_new__tse__FindRecordingsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindRecordingsResponse::SearchToken = SearchToken; - } - return _p; -} - -inline int soap_write__tse__FindRecordingsResponse(struct soap *soap, _tse__FindRecordingsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindRecordingsResponse", p->soap_type() == SOAP_TYPE__tse__FindRecordingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindRecordingsResponse(struct soap *soap, const char *URL, _tse__FindRecordingsResponse 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, "tse:FindRecordingsResponse", p->soap_type() == SOAP_TYPE__tse__FindRecordingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindRecordingsResponse(struct soap *soap, const char *URL, _tse__FindRecordingsResponse 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, "tse:FindRecordingsResponse", p->soap_type() == SOAP_TYPE__tse__FindRecordingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindRecordingsResponse(struct soap *soap, const char *URL, _tse__FindRecordingsResponse 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, "tse:FindRecordingsResponse", p->soap_type() == SOAP_TYPE__tse__FindRecordingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindRecordingsResponse * SOAP_FMAC4 soap_get__tse__FindRecordingsResponse(struct soap*, _tse__FindRecordingsResponse *, const char*, const char*); - -inline int soap_read__tse__FindRecordingsResponse(struct soap *soap, _tse__FindRecordingsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindRecordingsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindRecordingsResponse(struct soap *soap, const char *URL, _tse__FindRecordingsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindRecordingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindRecordingsResponse(struct soap *soap, _tse__FindRecordingsResponse *p) -{ - if (::soap_read__tse__FindRecordingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__FindRecordings_DEFINED -#define SOAP_TYPE__tse__FindRecordings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__FindRecordings(struct soap*, const char*, int, const _tse__FindRecordings *, const char*); -SOAP_FMAC3 _tse__FindRecordings * SOAP_FMAC4 soap_in__tse__FindRecordings(struct soap*, const char*, _tse__FindRecordings *, const char*); -SOAP_FMAC1 _tse__FindRecordings * SOAP_FMAC2 soap_instantiate__tse__FindRecordings(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__FindRecordings * soap_new__tse__FindRecordings(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__FindRecordings(soap, n, NULL, NULL, NULL); -} - -inline _tse__FindRecordings * soap_new_req__tse__FindRecordings( - struct soap *soap, - tt__SearchScope *Scope, - const std::string& KeepAliveTime) -{ - _tse__FindRecordings *_p = ::soap_new__tse__FindRecordings(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindRecordings::Scope = Scope; - _p->_tse__FindRecordings::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline _tse__FindRecordings * soap_new_set__tse__FindRecordings( - struct soap *soap, - tt__SearchScope *Scope, - int *MaxMatches, - const std::string& KeepAliveTime) -{ - _tse__FindRecordings *_p = ::soap_new__tse__FindRecordings(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__FindRecordings::Scope = Scope; - _p->_tse__FindRecordings::MaxMatches = MaxMatches; - _p->_tse__FindRecordings::KeepAliveTime = KeepAliveTime; - } - return _p; -} - -inline int soap_write__tse__FindRecordings(struct soap *soap, _tse__FindRecordings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:FindRecordings", p->soap_type() == SOAP_TYPE__tse__FindRecordings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__FindRecordings(struct soap *soap, const char *URL, _tse__FindRecordings 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, "tse:FindRecordings", p->soap_type() == SOAP_TYPE__tse__FindRecordings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__FindRecordings(struct soap *soap, const char *URL, _tse__FindRecordings 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, "tse:FindRecordings", p->soap_type() == SOAP_TYPE__tse__FindRecordings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__FindRecordings(struct soap *soap, const char *URL, _tse__FindRecordings 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, "tse:FindRecordings", p->soap_type() == SOAP_TYPE__tse__FindRecordings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__FindRecordings * SOAP_FMAC4 soap_get__tse__FindRecordings(struct soap*, _tse__FindRecordings *, const char*, const char*); - -inline int soap_read__tse__FindRecordings(struct soap *soap, _tse__FindRecordings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__FindRecordings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__FindRecordings(struct soap *soap, const char *URL, _tse__FindRecordings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__FindRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__FindRecordings(struct soap *soap, _tse__FindRecordings *p) -{ - if (::soap_read__tse__FindRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetMediaAttributesResponse_DEFINED -#define SOAP_TYPE__tse__GetMediaAttributesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMediaAttributesResponse(struct soap*, const char*, int, const _tse__GetMediaAttributesResponse *, const char*); -SOAP_FMAC3 _tse__GetMediaAttributesResponse * SOAP_FMAC4 soap_in__tse__GetMediaAttributesResponse(struct soap*, const char*, _tse__GetMediaAttributesResponse *, const char*); -SOAP_FMAC1 _tse__GetMediaAttributesResponse * SOAP_FMAC2 soap_instantiate__tse__GetMediaAttributesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetMediaAttributesResponse * soap_new__tse__GetMediaAttributesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetMediaAttributesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetMediaAttributesResponse * soap_new_req__tse__GetMediaAttributesResponse( - struct soap *soap) -{ - _tse__GetMediaAttributesResponse *_p = ::soap_new__tse__GetMediaAttributesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tse__GetMediaAttributesResponse * soap_new_set__tse__GetMediaAttributesResponse( - struct soap *soap, - const std::vector & MediaAttributes) -{ - _tse__GetMediaAttributesResponse *_p = ::soap_new__tse__GetMediaAttributesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetMediaAttributesResponse::MediaAttributes = MediaAttributes; - } - return _p; -} - -inline int soap_write__tse__GetMediaAttributesResponse(struct soap *soap, _tse__GetMediaAttributesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetMediaAttributesResponse", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetMediaAttributesResponse(struct soap *soap, const char *URL, _tse__GetMediaAttributesResponse 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, "tse:GetMediaAttributesResponse", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetMediaAttributesResponse(struct soap *soap, const char *URL, _tse__GetMediaAttributesResponse 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, "tse:GetMediaAttributesResponse", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetMediaAttributesResponse(struct soap *soap, const char *URL, _tse__GetMediaAttributesResponse 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, "tse:GetMediaAttributesResponse", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetMediaAttributesResponse * SOAP_FMAC4 soap_get__tse__GetMediaAttributesResponse(struct soap*, _tse__GetMediaAttributesResponse *, const char*, const char*); - -inline int soap_read__tse__GetMediaAttributesResponse(struct soap *soap, _tse__GetMediaAttributesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetMediaAttributesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetMediaAttributesResponse(struct soap *soap, const char *URL, _tse__GetMediaAttributesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetMediaAttributesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetMediaAttributesResponse(struct soap *soap, _tse__GetMediaAttributesResponse *p) -{ - if (::soap_read__tse__GetMediaAttributesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetMediaAttributes_DEFINED -#define SOAP_TYPE__tse__GetMediaAttributes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetMediaAttributes(struct soap*, const char*, int, const _tse__GetMediaAttributes *, const char*); -SOAP_FMAC3 _tse__GetMediaAttributes * SOAP_FMAC4 soap_in__tse__GetMediaAttributes(struct soap*, const char*, _tse__GetMediaAttributes *, const char*); -SOAP_FMAC1 _tse__GetMediaAttributes * SOAP_FMAC2 soap_instantiate__tse__GetMediaAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetMediaAttributes * soap_new__tse__GetMediaAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetMediaAttributes(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetMediaAttributes * soap_new_req__tse__GetMediaAttributes( - struct soap *soap, - const struct timeval& Time) -{ - _tse__GetMediaAttributes *_p = ::soap_new__tse__GetMediaAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetMediaAttributes::Time = Time; - } - return _p; -} - -inline _tse__GetMediaAttributes * soap_new_set__tse__GetMediaAttributes( - struct soap *soap, - const std::vector & RecordingTokens, - const struct timeval& Time) -{ - _tse__GetMediaAttributes *_p = ::soap_new__tse__GetMediaAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetMediaAttributes::RecordingTokens = RecordingTokens; - _p->_tse__GetMediaAttributes::Time = Time; - } - return _p; -} - -inline int soap_write__tse__GetMediaAttributes(struct soap *soap, _tse__GetMediaAttributes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetMediaAttributes", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetMediaAttributes(struct soap *soap, const char *URL, _tse__GetMediaAttributes 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, "tse:GetMediaAttributes", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetMediaAttributes(struct soap *soap, const char *URL, _tse__GetMediaAttributes 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, "tse:GetMediaAttributes", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetMediaAttributes(struct soap *soap, const char *URL, _tse__GetMediaAttributes 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, "tse:GetMediaAttributes", p->soap_type() == SOAP_TYPE__tse__GetMediaAttributes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetMediaAttributes * SOAP_FMAC4 soap_get__tse__GetMediaAttributes(struct soap*, _tse__GetMediaAttributes *, const char*, const char*); - -inline int soap_read__tse__GetMediaAttributes(struct soap *soap, _tse__GetMediaAttributes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetMediaAttributes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetMediaAttributes(struct soap *soap, const char *URL, _tse__GetMediaAttributes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetMediaAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetMediaAttributes(struct soap *soap, _tse__GetMediaAttributes *p) -{ - if (::soap_read__tse__GetMediaAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetRecordingInformationResponse_DEFINED -#define SOAP_TYPE__tse__GetRecordingInformationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingInformationResponse(struct soap*, const char*, int, const _tse__GetRecordingInformationResponse *, const char*); -SOAP_FMAC3 _tse__GetRecordingInformationResponse * SOAP_FMAC4 soap_in__tse__GetRecordingInformationResponse(struct soap*, const char*, _tse__GetRecordingInformationResponse *, const char*); -SOAP_FMAC1 _tse__GetRecordingInformationResponse * SOAP_FMAC2 soap_instantiate__tse__GetRecordingInformationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetRecordingInformationResponse * soap_new__tse__GetRecordingInformationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetRecordingInformationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetRecordingInformationResponse * soap_new_req__tse__GetRecordingInformationResponse( - struct soap *soap, - tt__RecordingInformation *RecordingInformation) -{ - _tse__GetRecordingInformationResponse *_p = ::soap_new__tse__GetRecordingInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingInformationResponse::RecordingInformation = RecordingInformation; - } - return _p; -} - -inline _tse__GetRecordingInformationResponse * soap_new_set__tse__GetRecordingInformationResponse( - struct soap *soap, - tt__RecordingInformation *RecordingInformation) -{ - _tse__GetRecordingInformationResponse *_p = ::soap_new__tse__GetRecordingInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingInformationResponse::RecordingInformation = RecordingInformation; - } - return _p; -} - -inline int soap_write__tse__GetRecordingInformationResponse(struct soap *soap, _tse__GetRecordingInformationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetRecordingInformationResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetRecordingInformationResponse(struct soap *soap, const char *URL, _tse__GetRecordingInformationResponse 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, "tse:GetRecordingInformationResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetRecordingInformationResponse(struct soap *soap, const char *URL, _tse__GetRecordingInformationResponse 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, "tse:GetRecordingInformationResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetRecordingInformationResponse(struct soap *soap, const char *URL, _tse__GetRecordingInformationResponse 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, "tse:GetRecordingInformationResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetRecordingInformationResponse * SOAP_FMAC4 soap_get__tse__GetRecordingInformationResponse(struct soap*, _tse__GetRecordingInformationResponse *, const char*, const char*); - -inline int soap_read__tse__GetRecordingInformationResponse(struct soap *soap, _tse__GetRecordingInformationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetRecordingInformationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetRecordingInformationResponse(struct soap *soap, const char *URL, _tse__GetRecordingInformationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetRecordingInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetRecordingInformationResponse(struct soap *soap, _tse__GetRecordingInformationResponse *p) -{ - if (::soap_read__tse__GetRecordingInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetRecordingInformation_DEFINED -#define SOAP_TYPE__tse__GetRecordingInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingInformation(struct soap*, const char*, int, const _tse__GetRecordingInformation *, const char*); -SOAP_FMAC3 _tse__GetRecordingInformation * SOAP_FMAC4 soap_in__tse__GetRecordingInformation(struct soap*, const char*, _tse__GetRecordingInformation *, const char*); -SOAP_FMAC1 _tse__GetRecordingInformation * SOAP_FMAC2 soap_instantiate__tse__GetRecordingInformation(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetRecordingInformation * soap_new__tse__GetRecordingInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetRecordingInformation(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetRecordingInformation * soap_new_req__tse__GetRecordingInformation( - struct soap *soap, - const std::string& RecordingToken) -{ - _tse__GetRecordingInformation *_p = ::soap_new__tse__GetRecordingInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingInformation::RecordingToken = RecordingToken; - } - return _p; -} - -inline _tse__GetRecordingInformation * soap_new_set__tse__GetRecordingInformation( - struct soap *soap, - const std::string& RecordingToken) -{ - _tse__GetRecordingInformation *_p = ::soap_new__tse__GetRecordingInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingInformation::RecordingToken = RecordingToken; - } - return _p; -} - -inline int soap_write__tse__GetRecordingInformation(struct soap *soap, _tse__GetRecordingInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetRecordingInformation", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetRecordingInformation(struct soap *soap, const char *URL, _tse__GetRecordingInformation 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, "tse:GetRecordingInformation", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetRecordingInformation(struct soap *soap, const char *URL, _tse__GetRecordingInformation 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, "tse:GetRecordingInformation", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetRecordingInformation(struct soap *soap, const char *URL, _tse__GetRecordingInformation 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, "tse:GetRecordingInformation", p->soap_type() == SOAP_TYPE__tse__GetRecordingInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetRecordingInformation * SOAP_FMAC4 soap_get__tse__GetRecordingInformation(struct soap*, _tse__GetRecordingInformation *, const char*, const char*); - -inline int soap_read__tse__GetRecordingInformation(struct soap *soap, _tse__GetRecordingInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetRecordingInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetRecordingInformation(struct soap *soap, const char *URL, _tse__GetRecordingInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetRecordingInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetRecordingInformation(struct soap *soap, _tse__GetRecordingInformation *p) -{ - if (::soap_read__tse__GetRecordingInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetRecordingSummaryResponse_DEFINED -#define SOAP_TYPE__tse__GetRecordingSummaryResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSummaryResponse(struct soap*, const char*, int, const _tse__GetRecordingSummaryResponse *, const char*); -SOAP_FMAC3 _tse__GetRecordingSummaryResponse * SOAP_FMAC4 soap_in__tse__GetRecordingSummaryResponse(struct soap*, const char*, _tse__GetRecordingSummaryResponse *, const char*); -SOAP_FMAC1 _tse__GetRecordingSummaryResponse * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSummaryResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetRecordingSummaryResponse * soap_new__tse__GetRecordingSummaryResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetRecordingSummaryResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetRecordingSummaryResponse * soap_new_req__tse__GetRecordingSummaryResponse( - struct soap *soap, - tt__RecordingSummary *Summary) -{ - _tse__GetRecordingSummaryResponse *_p = ::soap_new__tse__GetRecordingSummaryResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingSummaryResponse::Summary = Summary; - } - return _p; -} - -inline _tse__GetRecordingSummaryResponse * soap_new_set__tse__GetRecordingSummaryResponse( - struct soap *soap, - tt__RecordingSummary *Summary) -{ - _tse__GetRecordingSummaryResponse *_p = ::soap_new__tse__GetRecordingSummaryResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetRecordingSummaryResponse::Summary = Summary; - } - return _p; -} - -inline int soap_write__tse__GetRecordingSummaryResponse(struct soap *soap, _tse__GetRecordingSummaryResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetRecordingSummaryResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummaryResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetRecordingSummaryResponse(struct soap *soap, const char *URL, _tse__GetRecordingSummaryResponse 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, "tse:GetRecordingSummaryResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummaryResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetRecordingSummaryResponse(struct soap *soap, const char *URL, _tse__GetRecordingSummaryResponse 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, "tse:GetRecordingSummaryResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummaryResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetRecordingSummaryResponse(struct soap *soap, const char *URL, _tse__GetRecordingSummaryResponse 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, "tse:GetRecordingSummaryResponse", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummaryResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetRecordingSummaryResponse * SOAP_FMAC4 soap_get__tse__GetRecordingSummaryResponse(struct soap*, _tse__GetRecordingSummaryResponse *, const char*, const char*); - -inline int soap_read__tse__GetRecordingSummaryResponse(struct soap *soap, _tse__GetRecordingSummaryResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetRecordingSummaryResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetRecordingSummaryResponse(struct soap *soap, const char *URL, _tse__GetRecordingSummaryResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetRecordingSummaryResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetRecordingSummaryResponse(struct soap *soap, _tse__GetRecordingSummaryResponse *p) -{ - if (::soap_read__tse__GetRecordingSummaryResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetRecordingSummary_DEFINED -#define SOAP_TYPE__tse__GetRecordingSummary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetRecordingSummary(struct soap*, const char*, int, const _tse__GetRecordingSummary *, const char*); -SOAP_FMAC3 _tse__GetRecordingSummary * SOAP_FMAC4 soap_in__tse__GetRecordingSummary(struct soap*, const char*, _tse__GetRecordingSummary *, const char*); -SOAP_FMAC1 _tse__GetRecordingSummary * SOAP_FMAC2 soap_instantiate__tse__GetRecordingSummary(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetRecordingSummary * soap_new__tse__GetRecordingSummary(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetRecordingSummary(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetRecordingSummary * soap_new_req__tse__GetRecordingSummary( - struct soap *soap) -{ - _tse__GetRecordingSummary *_p = ::soap_new__tse__GetRecordingSummary(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tse__GetRecordingSummary * soap_new_set__tse__GetRecordingSummary( - struct soap *soap) -{ - _tse__GetRecordingSummary *_p = ::soap_new__tse__GetRecordingSummary(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tse__GetRecordingSummary(struct soap *soap, _tse__GetRecordingSummary const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetRecordingSummary", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummary ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetRecordingSummary(struct soap *soap, const char *URL, _tse__GetRecordingSummary 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, "tse:GetRecordingSummary", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetRecordingSummary(struct soap *soap, const char *URL, _tse__GetRecordingSummary 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, "tse:GetRecordingSummary", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetRecordingSummary(struct soap *soap, const char *URL, _tse__GetRecordingSummary 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, "tse:GetRecordingSummary", p->soap_type() == SOAP_TYPE__tse__GetRecordingSummary ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetRecordingSummary * SOAP_FMAC4 soap_get__tse__GetRecordingSummary(struct soap*, _tse__GetRecordingSummary *, const char*, const char*); - -inline int soap_read__tse__GetRecordingSummary(struct soap *soap, _tse__GetRecordingSummary *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetRecordingSummary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetRecordingSummary(struct soap *soap, const char *URL, _tse__GetRecordingSummary *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetRecordingSummary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetRecordingSummary(struct soap *soap, _tse__GetRecordingSummary *p) -{ - if (::soap_read__tse__GetRecordingSummary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__tse__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _tse__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _tse__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tse__GetServiceCapabilitiesResponse(struct soap*, const char*, _tse__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _tse__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tse__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetServiceCapabilitiesResponse * soap_new__tse__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetServiceCapabilitiesResponse * soap_new_req__tse__GetServiceCapabilitiesResponse( - struct soap *soap, - tse__Capabilities *Capabilities) -{ - _tse__GetServiceCapabilitiesResponse *_p = ::soap_new__tse__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tse__GetServiceCapabilitiesResponse * soap_new_set__tse__GetServiceCapabilitiesResponse( - struct soap *soap, - tse__Capabilities *Capabilities) -{ - _tse__GetServiceCapabilitiesResponse *_p = ::soap_new__tse__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tse__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tse__GetServiceCapabilitiesResponse(struct soap *soap, _tse__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tse__GetServiceCapabilitiesResponse 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, "tse:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tse__GetServiceCapabilitiesResponse 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, "tse:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tse__GetServiceCapabilitiesResponse 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, "tse:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tse__GetServiceCapabilitiesResponse(struct soap*, _tse__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tse__GetServiceCapabilitiesResponse(struct soap *soap, _tse__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tse__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetServiceCapabilitiesResponse(struct soap *soap, _tse__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__tse__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tse__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__tse__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tse__GetServiceCapabilities(struct soap*, const char*, int, const _tse__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _tse__GetServiceCapabilities * SOAP_FMAC4 soap_in__tse__GetServiceCapabilities(struct soap*, const char*, _tse__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _tse__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tse__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tse__GetServiceCapabilities * soap_new__tse__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tse__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _tse__GetServiceCapabilities * soap_new_req__tse__GetServiceCapabilities( - struct soap *soap) -{ - _tse__GetServiceCapabilities *_p = ::soap_new__tse__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tse__GetServiceCapabilities * soap_new_set__tse__GetServiceCapabilities( - struct soap *soap) -{ - _tse__GetServiceCapabilities *_p = ::soap_new__tse__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tse__GetServiceCapabilities(struct soap *soap, _tse__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tse__GetServiceCapabilities(struct soap *soap, const char *URL, _tse__GetServiceCapabilities 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, "tse:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tse__GetServiceCapabilities(struct soap *soap, const char *URL, _tse__GetServiceCapabilities 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, "tse:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tse__GetServiceCapabilities(struct soap *soap, const char *URL, _tse__GetServiceCapabilities 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, "tse:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tse__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tse__GetServiceCapabilities * SOAP_FMAC4 soap_get__tse__GetServiceCapabilities(struct soap*, _tse__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__tse__GetServiceCapabilities(struct soap *soap, _tse__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tse__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tse__GetServiceCapabilities(struct soap *soap, const char *URL, _tse__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tse__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tse__GetServiceCapabilities(struct soap *soap, _tse__GetServiceCapabilities *p) -{ - if (::soap_read__tse__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tse__Capabilities_DEFINED -#define SOAP_TYPE_tse__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tse__Capabilities(struct soap*, const char*, int, const tse__Capabilities *, const char*); -SOAP_FMAC3 tse__Capabilities * SOAP_FMAC4 soap_in_tse__Capabilities(struct soap*, const char*, tse__Capabilities *, const char*); -SOAP_FMAC1 tse__Capabilities * SOAP_FMAC2 soap_instantiate_tse__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tse__Capabilities * soap_new_tse__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tse__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline tse__Capabilities * soap_new_req_tse__Capabilities( - struct soap *soap) -{ - tse__Capabilities *_p = ::soap_new_tse__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tse__Capabilities * soap_new_set_tse__Capabilities( - struct soap *soap, - const std::vector & __any, - bool *MetadataSearch, - bool *GeneralStartEvents, - const struct soap_dom_attribute& __anyAttribute) -{ - tse__Capabilities *_p = ::soap_new_tse__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tse__Capabilities::__any = __any; - _p->tse__Capabilities::MetadataSearch = MetadataSearch; - _p->tse__Capabilities::GeneralStartEvents = GeneralStartEvents; - _p->tse__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tse__Capabilities(struct soap *soap, tse__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tse:Capabilities", p->soap_type() == SOAP_TYPE_tse__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tse__Capabilities(struct soap *soap, const char *URL, tse__Capabilities 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, "tse:Capabilities", p->soap_type() == SOAP_TYPE_tse__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tse__Capabilities(struct soap *soap, const char *URL, tse__Capabilities 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, "tse:Capabilities", p->soap_type() == SOAP_TYPE_tse__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tse__Capabilities(struct soap *soap, const char *URL, tse__Capabilities 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, "tse:Capabilities", p->soap_type() == SOAP_TYPE_tse__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tse__Capabilities * SOAP_FMAC4 soap_get_tse__Capabilities(struct soap*, tse__Capabilities *, const char*, const char*); - -inline int soap_read_tse__Capabilities(struct soap *soap, tse__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tse__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tse__Capabilities(struct soap *soap, const char *URL, tse__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tse__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tse__Capabilities(struct soap *soap, tse__Capabilities *p) -{ - if (::soap_read_tse__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__GetReplayConfigurationResponse_DEFINED -#define SOAP_TYPE__trp__GetReplayConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayConfigurationResponse(struct soap*, const char*, int, const _trp__GetReplayConfigurationResponse *, const char*); -SOAP_FMAC3 _trp__GetReplayConfigurationResponse * SOAP_FMAC4 soap_in__trp__GetReplayConfigurationResponse(struct soap*, const char*, _trp__GetReplayConfigurationResponse *, const char*); -SOAP_FMAC1 _trp__GetReplayConfigurationResponse * SOAP_FMAC2 soap_instantiate__trp__GetReplayConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__GetReplayConfigurationResponse * soap_new__trp__GetReplayConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__GetReplayConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trp__GetReplayConfigurationResponse * soap_new_req__trp__GetReplayConfigurationResponse( - struct soap *soap, - tt__ReplayConfiguration *Configuration) -{ - _trp__GetReplayConfigurationResponse *_p = ::soap_new__trp__GetReplayConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetReplayConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trp__GetReplayConfigurationResponse * soap_new_set__trp__GetReplayConfigurationResponse( - struct soap *soap, - tt__ReplayConfiguration *Configuration) -{ - _trp__GetReplayConfigurationResponse *_p = ::soap_new__trp__GetReplayConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetReplayConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trp__GetReplayConfigurationResponse(struct soap *soap, _trp__GetReplayConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:GetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__GetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__GetReplayConfigurationResponse 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, "trp:GetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__GetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__GetReplayConfigurationResponse 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, "trp:GetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__GetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__GetReplayConfigurationResponse 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, "trp:GetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__GetReplayConfigurationResponse * SOAP_FMAC4 soap_get__trp__GetReplayConfigurationResponse(struct soap*, _trp__GetReplayConfigurationResponse *, const char*, const char*); - -inline int soap_read__trp__GetReplayConfigurationResponse(struct soap *soap, _trp__GetReplayConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__GetReplayConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__GetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__GetReplayConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__GetReplayConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__GetReplayConfigurationResponse(struct soap *soap, _trp__GetReplayConfigurationResponse *p) -{ - if (::soap_read__trp__GetReplayConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__GetReplayConfiguration_DEFINED -#define SOAP_TYPE__trp__GetReplayConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayConfiguration(struct soap*, const char*, int, const _trp__GetReplayConfiguration *, const char*); -SOAP_FMAC3 _trp__GetReplayConfiguration * SOAP_FMAC4 soap_in__trp__GetReplayConfiguration(struct soap*, const char*, _trp__GetReplayConfiguration *, const char*); -SOAP_FMAC1 _trp__GetReplayConfiguration * SOAP_FMAC2 soap_instantiate__trp__GetReplayConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__GetReplayConfiguration * soap_new__trp__GetReplayConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__GetReplayConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trp__GetReplayConfiguration * soap_new_req__trp__GetReplayConfiguration( - struct soap *soap) -{ - _trp__GetReplayConfiguration *_p = ::soap_new__trp__GetReplayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trp__GetReplayConfiguration * soap_new_set__trp__GetReplayConfiguration( - struct soap *soap) -{ - _trp__GetReplayConfiguration *_p = ::soap_new__trp__GetReplayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trp__GetReplayConfiguration(struct soap *soap, _trp__GetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:GetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__GetReplayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__GetReplayConfiguration(struct soap *soap, const char *URL, _trp__GetReplayConfiguration 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, "trp:GetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__GetReplayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__GetReplayConfiguration(struct soap *soap, const char *URL, _trp__GetReplayConfiguration 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, "trp:GetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__GetReplayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__GetReplayConfiguration(struct soap *soap, const char *URL, _trp__GetReplayConfiguration 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, "trp:GetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__GetReplayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__GetReplayConfiguration * SOAP_FMAC4 soap_get__trp__GetReplayConfiguration(struct soap*, _trp__GetReplayConfiguration *, const char*, const char*); - -inline int soap_read__trp__GetReplayConfiguration(struct soap *soap, _trp__GetReplayConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__GetReplayConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__GetReplayConfiguration(struct soap *soap, const char *URL, _trp__GetReplayConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__GetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__GetReplayConfiguration(struct soap *soap, _trp__GetReplayConfiguration *p) -{ - if (::soap_read__trp__GetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__SetReplayConfigurationResponse_DEFINED -#define SOAP_TYPE__trp__SetReplayConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__SetReplayConfigurationResponse(struct soap*, const char*, int, const _trp__SetReplayConfigurationResponse *, const char*); -SOAP_FMAC3 _trp__SetReplayConfigurationResponse * SOAP_FMAC4 soap_in__trp__SetReplayConfigurationResponse(struct soap*, const char*, _trp__SetReplayConfigurationResponse *, const char*); -SOAP_FMAC1 _trp__SetReplayConfigurationResponse * SOAP_FMAC2 soap_instantiate__trp__SetReplayConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__SetReplayConfigurationResponse * soap_new__trp__SetReplayConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__SetReplayConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trp__SetReplayConfigurationResponse * soap_new_req__trp__SetReplayConfigurationResponse( - struct soap *soap) -{ - _trp__SetReplayConfigurationResponse *_p = ::soap_new__trp__SetReplayConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trp__SetReplayConfigurationResponse * soap_new_set__trp__SetReplayConfigurationResponse( - struct soap *soap) -{ - _trp__SetReplayConfigurationResponse *_p = ::soap_new__trp__SetReplayConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trp__SetReplayConfigurationResponse(struct soap *soap, _trp__SetReplayConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:SetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__SetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__SetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__SetReplayConfigurationResponse 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, "trp:SetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__SetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__SetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__SetReplayConfigurationResponse 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, "trp:SetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__SetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__SetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__SetReplayConfigurationResponse 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, "trp:SetReplayConfigurationResponse", p->soap_type() == SOAP_TYPE__trp__SetReplayConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__SetReplayConfigurationResponse * SOAP_FMAC4 soap_get__trp__SetReplayConfigurationResponse(struct soap*, _trp__SetReplayConfigurationResponse *, const char*, const char*); - -inline int soap_read__trp__SetReplayConfigurationResponse(struct soap *soap, _trp__SetReplayConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__SetReplayConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__SetReplayConfigurationResponse(struct soap *soap, const char *URL, _trp__SetReplayConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__SetReplayConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__SetReplayConfigurationResponse(struct soap *soap, _trp__SetReplayConfigurationResponse *p) -{ - if (::soap_read__trp__SetReplayConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__SetReplayConfiguration_DEFINED -#define SOAP_TYPE__trp__SetReplayConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__SetReplayConfiguration(struct soap*, const char*, int, const _trp__SetReplayConfiguration *, const char*); -SOAP_FMAC3 _trp__SetReplayConfiguration * SOAP_FMAC4 soap_in__trp__SetReplayConfiguration(struct soap*, const char*, _trp__SetReplayConfiguration *, const char*); -SOAP_FMAC1 _trp__SetReplayConfiguration * SOAP_FMAC2 soap_instantiate__trp__SetReplayConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__SetReplayConfiguration * soap_new__trp__SetReplayConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__SetReplayConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trp__SetReplayConfiguration * soap_new_req__trp__SetReplayConfiguration( - struct soap *soap, - tt__ReplayConfiguration *Configuration) -{ - _trp__SetReplayConfiguration *_p = ::soap_new__trp__SetReplayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__SetReplayConfiguration::Configuration = Configuration; - } - return _p; -} - -inline _trp__SetReplayConfiguration * soap_new_set__trp__SetReplayConfiguration( - struct soap *soap, - tt__ReplayConfiguration *Configuration) -{ - _trp__SetReplayConfiguration *_p = ::soap_new__trp__SetReplayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__SetReplayConfiguration::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trp__SetReplayConfiguration(struct soap *soap, _trp__SetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:SetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__SetReplayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__SetReplayConfiguration(struct soap *soap, const char *URL, _trp__SetReplayConfiguration 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, "trp:SetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__SetReplayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__SetReplayConfiguration(struct soap *soap, const char *URL, _trp__SetReplayConfiguration 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, "trp:SetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__SetReplayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__SetReplayConfiguration(struct soap *soap, const char *URL, _trp__SetReplayConfiguration 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, "trp:SetReplayConfiguration", p->soap_type() == SOAP_TYPE__trp__SetReplayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__SetReplayConfiguration * SOAP_FMAC4 soap_get__trp__SetReplayConfiguration(struct soap*, _trp__SetReplayConfiguration *, const char*, const char*); - -inline int soap_read__trp__SetReplayConfiguration(struct soap *soap, _trp__SetReplayConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__SetReplayConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__SetReplayConfiguration(struct soap *soap, const char *URL, _trp__SetReplayConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__SetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__SetReplayConfiguration(struct soap *soap, _trp__SetReplayConfiguration *p) -{ - if (::soap_read__trp__SetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__GetReplayUriResponse_DEFINED -#define SOAP_TYPE__trp__GetReplayUriResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayUriResponse(struct soap*, const char*, int, const _trp__GetReplayUriResponse *, const char*); -SOAP_FMAC3 _trp__GetReplayUriResponse * SOAP_FMAC4 soap_in__trp__GetReplayUriResponse(struct soap*, const char*, _trp__GetReplayUriResponse *, const char*); -SOAP_FMAC1 _trp__GetReplayUriResponse * SOAP_FMAC2 soap_instantiate__trp__GetReplayUriResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__GetReplayUriResponse * soap_new__trp__GetReplayUriResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__GetReplayUriResponse(soap, n, NULL, NULL, NULL); -} - -inline _trp__GetReplayUriResponse * soap_new_req__trp__GetReplayUriResponse( - struct soap *soap, - const std::string& Uri) -{ - _trp__GetReplayUriResponse *_p = ::soap_new__trp__GetReplayUriResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetReplayUriResponse::Uri = Uri; - } - return _p; -} - -inline _trp__GetReplayUriResponse * soap_new_set__trp__GetReplayUriResponse( - struct soap *soap, - const std::string& Uri) -{ - _trp__GetReplayUriResponse *_p = ::soap_new__trp__GetReplayUriResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetReplayUriResponse::Uri = Uri; - } - return _p; -} - -inline int soap_write__trp__GetReplayUriResponse(struct soap *soap, _trp__GetReplayUriResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:GetReplayUriResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayUriResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__GetReplayUriResponse(struct soap *soap, const char *URL, _trp__GetReplayUriResponse 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, "trp:GetReplayUriResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayUriResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__GetReplayUriResponse(struct soap *soap, const char *URL, _trp__GetReplayUriResponse 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, "trp:GetReplayUriResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayUriResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__GetReplayUriResponse(struct soap *soap, const char *URL, _trp__GetReplayUriResponse 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, "trp:GetReplayUriResponse", p->soap_type() == SOAP_TYPE__trp__GetReplayUriResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__GetReplayUriResponse * SOAP_FMAC4 soap_get__trp__GetReplayUriResponse(struct soap*, _trp__GetReplayUriResponse *, const char*, const char*); - -inline int soap_read__trp__GetReplayUriResponse(struct soap *soap, _trp__GetReplayUriResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__GetReplayUriResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__GetReplayUriResponse(struct soap *soap, const char *URL, _trp__GetReplayUriResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__GetReplayUriResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__GetReplayUriResponse(struct soap *soap, _trp__GetReplayUriResponse *p) -{ - if (::soap_read__trp__GetReplayUriResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__GetReplayUri_DEFINED -#define SOAP_TYPE__trp__GetReplayUri_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetReplayUri(struct soap*, const char*, int, const _trp__GetReplayUri *, const char*); -SOAP_FMAC3 _trp__GetReplayUri * SOAP_FMAC4 soap_in__trp__GetReplayUri(struct soap*, const char*, _trp__GetReplayUri *, const char*); -SOAP_FMAC1 _trp__GetReplayUri * SOAP_FMAC2 soap_instantiate__trp__GetReplayUri(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__GetReplayUri * soap_new__trp__GetReplayUri(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__GetReplayUri(soap, n, NULL, NULL, NULL); -} - -inline _trp__GetReplayUri * soap_new_req__trp__GetReplayUri( - struct soap *soap, - tt__StreamSetup *StreamSetup, - const std::string& RecordingToken) -{ - _trp__GetReplayUri *_p = ::soap_new__trp__GetReplayUri(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetReplayUri::StreamSetup = StreamSetup; - _p->_trp__GetReplayUri::RecordingToken = RecordingToken; - } - return _p; -} - -inline _trp__GetReplayUri * soap_new_set__trp__GetReplayUri( - struct soap *soap, - tt__StreamSetup *StreamSetup, - const std::string& RecordingToken) -{ - _trp__GetReplayUri *_p = ::soap_new__trp__GetReplayUri(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetReplayUri::StreamSetup = StreamSetup; - _p->_trp__GetReplayUri::RecordingToken = RecordingToken; - } - return _p; -} - -inline int soap_write__trp__GetReplayUri(struct soap *soap, _trp__GetReplayUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:GetReplayUri", p->soap_type() == SOAP_TYPE__trp__GetReplayUri ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__GetReplayUri(struct soap *soap, const char *URL, _trp__GetReplayUri 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, "trp:GetReplayUri", p->soap_type() == SOAP_TYPE__trp__GetReplayUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__GetReplayUri(struct soap *soap, const char *URL, _trp__GetReplayUri 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, "trp:GetReplayUri", p->soap_type() == SOAP_TYPE__trp__GetReplayUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__GetReplayUri(struct soap *soap, const char *URL, _trp__GetReplayUri 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, "trp:GetReplayUri", p->soap_type() == SOAP_TYPE__trp__GetReplayUri ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__GetReplayUri * SOAP_FMAC4 soap_get__trp__GetReplayUri(struct soap*, _trp__GetReplayUri *, const char*, const char*); - -inline int soap_read__trp__GetReplayUri(struct soap *soap, _trp__GetReplayUri *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__GetReplayUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__GetReplayUri(struct soap *soap, const char *URL, _trp__GetReplayUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__GetReplayUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__GetReplayUri(struct soap *soap, _trp__GetReplayUri *p) -{ - if (::soap_read__trp__GetReplayUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__trp__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _trp__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _trp__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trp__GetServiceCapabilitiesResponse(struct soap*, const char*, _trp__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _trp__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trp__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__GetServiceCapabilitiesResponse * soap_new__trp__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trp__GetServiceCapabilitiesResponse * soap_new_req__trp__GetServiceCapabilitiesResponse( - struct soap *soap, - trp__Capabilities *Capabilities) -{ - _trp__GetServiceCapabilitiesResponse *_p = ::soap_new__trp__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _trp__GetServiceCapabilitiesResponse * soap_new_set__trp__GetServiceCapabilitiesResponse( - struct soap *soap, - trp__Capabilities *Capabilities) -{ - _trp__GetServiceCapabilitiesResponse *_p = ::soap_new__trp__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trp__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__trp__GetServiceCapabilitiesResponse(struct soap *soap, _trp__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trp__GetServiceCapabilitiesResponse 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, "trp:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trp__GetServiceCapabilitiesResponse 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, "trp:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trp__GetServiceCapabilitiesResponse 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, "trp:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trp__GetServiceCapabilitiesResponse(struct soap*, _trp__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__trp__GetServiceCapabilitiesResponse(struct soap *soap, _trp__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trp__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__GetServiceCapabilitiesResponse(struct soap *soap, _trp__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__trp__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trp__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__trp__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trp__GetServiceCapabilities(struct soap*, const char*, int, const _trp__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _trp__GetServiceCapabilities * SOAP_FMAC4 soap_in__trp__GetServiceCapabilities(struct soap*, const char*, _trp__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _trp__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trp__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _trp__GetServiceCapabilities * soap_new__trp__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__trp__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _trp__GetServiceCapabilities * soap_new_req__trp__GetServiceCapabilities( - struct soap *soap) -{ - _trp__GetServiceCapabilities *_p = ::soap_new__trp__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trp__GetServiceCapabilities * soap_new_set__trp__GetServiceCapabilities( - struct soap *soap) -{ - _trp__GetServiceCapabilities *_p = ::soap_new__trp__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trp__GetServiceCapabilities(struct soap *soap, _trp__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trp__GetServiceCapabilities(struct soap *soap, const char *URL, _trp__GetServiceCapabilities 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, "trp:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trp__GetServiceCapabilities(struct soap *soap, const char *URL, _trp__GetServiceCapabilities 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, "trp:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trp__GetServiceCapabilities(struct soap *soap, const char *URL, _trp__GetServiceCapabilities 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, "trp:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trp__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trp__GetServiceCapabilities * SOAP_FMAC4 soap_get__trp__GetServiceCapabilities(struct soap*, _trp__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__trp__GetServiceCapabilities(struct soap *soap, _trp__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trp__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trp__GetServiceCapabilities(struct soap *soap, const char *URL, _trp__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trp__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trp__GetServiceCapabilities(struct soap *soap, _trp__GetServiceCapabilities *p) -{ - if (::soap_read__trp__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trp__Capabilities_DEFINED -#define SOAP_TYPE_trp__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trp__Capabilities(struct soap*, const char*, int, const trp__Capabilities *, const char*); -SOAP_FMAC3 trp__Capabilities * SOAP_FMAC4 soap_in_trp__Capabilities(struct soap*, const char*, trp__Capabilities *, const char*); -SOAP_FMAC1 trp__Capabilities * SOAP_FMAC2 soap_instantiate_trp__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline trp__Capabilities * soap_new_trp__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_trp__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline trp__Capabilities * soap_new_req_trp__Capabilities( - struct soap *soap) -{ - trp__Capabilities *_p = ::soap_new_trp__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline trp__Capabilities * soap_new_set_trp__Capabilities( - struct soap *soap, - const std::vector & __any, - bool ReversePlayback, - std::string *SessionTimeoutRange, - bool *RTP_USCORERTSP_USCORETCP, - const struct soap_dom_attribute& __anyAttribute) -{ - trp__Capabilities *_p = ::soap_new_trp__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trp__Capabilities::__any = __any; - _p->trp__Capabilities::ReversePlayback = ReversePlayback; - _p->trp__Capabilities::SessionTimeoutRange = SessionTimeoutRange; - _p->trp__Capabilities::RTP_USCORERTSP_USCORETCP = RTP_USCORERTSP_USCORETCP; - _p->trp__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trp__Capabilities(struct soap *soap, trp__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trp:Capabilities", p->soap_type() == SOAP_TYPE_trp__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trp__Capabilities(struct soap *soap, const char *URL, trp__Capabilities 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, "trp:Capabilities", p->soap_type() == SOAP_TYPE_trp__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trp__Capabilities(struct soap *soap, const char *URL, trp__Capabilities 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, "trp:Capabilities", p->soap_type() == SOAP_TYPE_trp__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trp__Capabilities(struct soap *soap, const char *URL, trp__Capabilities 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, "trp:Capabilities", p->soap_type() == SOAP_TYPE_trp__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trp__Capabilities * SOAP_FMAC4 soap_get_trp__Capabilities(struct soap*, trp__Capabilities *, const char*, const char*); - -inline int soap_read_trp__Capabilities(struct soap *soap, trp__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trp__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trp__Capabilities(struct soap *soap, const char *URL, trp__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trp__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trp__Capabilities(struct soap *soap, trp__Capabilities *p) -{ - if (::soap_read_trp__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetExportRecordedDataStateResponse_DEFINED -#define SOAP_TYPE__trc__GetExportRecordedDataStateResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetExportRecordedDataStateResponse(struct soap*, const char*, int, const _trc__GetExportRecordedDataStateResponse *, const char*); -SOAP_FMAC3 _trc__GetExportRecordedDataStateResponse * SOAP_FMAC4 soap_in__trc__GetExportRecordedDataStateResponse(struct soap*, const char*, _trc__GetExportRecordedDataStateResponse *, const char*); -SOAP_FMAC1 _trc__GetExportRecordedDataStateResponse * SOAP_FMAC2 soap_instantiate__trc__GetExportRecordedDataStateResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetExportRecordedDataStateResponse * soap_new__trc__GetExportRecordedDataStateResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetExportRecordedDataStateResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetExportRecordedDataStateResponse * soap_new_req__trc__GetExportRecordedDataStateResponse( - struct soap *soap, - float Progress, - tt__ArrayOfFileProgress *FileProgressStatus) -{ - _trc__GetExportRecordedDataStateResponse *_p = ::soap_new__trc__GetExportRecordedDataStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetExportRecordedDataStateResponse::Progress = Progress; - _p->_trc__GetExportRecordedDataStateResponse::FileProgressStatus = FileProgressStatus; - } - return _p; -} - -inline _trc__GetExportRecordedDataStateResponse * soap_new_set__trc__GetExportRecordedDataStateResponse( - struct soap *soap, - float Progress, - tt__ArrayOfFileProgress *FileProgressStatus, - const struct soap_dom_element& __any) -{ - _trc__GetExportRecordedDataStateResponse *_p = ::soap_new__trc__GetExportRecordedDataStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetExportRecordedDataStateResponse::Progress = Progress; - _p->_trc__GetExportRecordedDataStateResponse::FileProgressStatus = FileProgressStatus; - _p->_trc__GetExportRecordedDataStateResponse::__any = __any; - } - return _p; -} - -inline int soap_write__trc__GetExportRecordedDataStateResponse(struct soap *soap, _trc__GetExportRecordedDataStateResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetExportRecordedDataStateResponse", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetExportRecordedDataStateResponse(struct soap *soap, const char *URL, _trc__GetExportRecordedDataStateResponse 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, "trc:GetExportRecordedDataStateResponse", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetExportRecordedDataStateResponse(struct soap *soap, const char *URL, _trc__GetExportRecordedDataStateResponse 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, "trc:GetExportRecordedDataStateResponse", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetExportRecordedDataStateResponse(struct soap *soap, const char *URL, _trc__GetExportRecordedDataStateResponse 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, "trc:GetExportRecordedDataStateResponse", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetExportRecordedDataStateResponse * SOAP_FMAC4 soap_get__trc__GetExportRecordedDataStateResponse(struct soap*, _trc__GetExportRecordedDataStateResponse *, const char*, const char*); - -inline int soap_read__trc__GetExportRecordedDataStateResponse(struct soap *soap, _trc__GetExportRecordedDataStateResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetExportRecordedDataStateResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetExportRecordedDataStateResponse(struct soap *soap, const char *URL, _trc__GetExportRecordedDataStateResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetExportRecordedDataStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetExportRecordedDataStateResponse(struct soap *soap, _trc__GetExportRecordedDataStateResponse *p) -{ - if (::soap_read__trc__GetExportRecordedDataStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetExportRecordedDataState_DEFINED -#define SOAP_TYPE__trc__GetExportRecordedDataState_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetExportRecordedDataState(struct soap*, const char*, int, const _trc__GetExportRecordedDataState *, const char*); -SOAP_FMAC3 _trc__GetExportRecordedDataState * SOAP_FMAC4 soap_in__trc__GetExportRecordedDataState(struct soap*, const char*, _trc__GetExportRecordedDataState *, const char*); -SOAP_FMAC1 _trc__GetExportRecordedDataState * SOAP_FMAC2 soap_instantiate__trc__GetExportRecordedDataState(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetExportRecordedDataState * soap_new__trc__GetExportRecordedDataState(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetExportRecordedDataState(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetExportRecordedDataState * soap_new_req__trc__GetExportRecordedDataState( - struct soap *soap, - const std::string& OperationToken) -{ - _trc__GetExportRecordedDataState *_p = ::soap_new__trc__GetExportRecordedDataState(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetExportRecordedDataState::OperationToken = OperationToken; - } - return _p; -} - -inline _trc__GetExportRecordedDataState * soap_new_set__trc__GetExportRecordedDataState( - struct soap *soap, - const std::string& OperationToken) -{ - _trc__GetExportRecordedDataState *_p = ::soap_new__trc__GetExportRecordedDataState(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetExportRecordedDataState::OperationToken = OperationToken; - } - return _p; -} - -inline int soap_write__trc__GetExportRecordedDataState(struct soap *soap, _trc__GetExportRecordedDataState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetExportRecordedDataState", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataState ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetExportRecordedDataState(struct soap *soap, const char *URL, _trc__GetExportRecordedDataState 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, "trc:GetExportRecordedDataState", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetExportRecordedDataState(struct soap *soap, const char *URL, _trc__GetExportRecordedDataState 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, "trc:GetExportRecordedDataState", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetExportRecordedDataState(struct soap *soap, const char *URL, _trc__GetExportRecordedDataState 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, "trc:GetExportRecordedDataState", p->soap_type() == SOAP_TYPE__trc__GetExportRecordedDataState ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetExportRecordedDataState * SOAP_FMAC4 soap_get__trc__GetExportRecordedDataState(struct soap*, _trc__GetExportRecordedDataState *, const char*, const char*); - -inline int soap_read__trc__GetExportRecordedDataState(struct soap *soap, _trc__GetExportRecordedDataState *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetExportRecordedDataState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetExportRecordedDataState(struct soap *soap, const char *URL, _trc__GetExportRecordedDataState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetExportRecordedDataState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetExportRecordedDataState(struct soap *soap, _trc__GetExportRecordedDataState *p) -{ - if (::soap_read__trc__GetExportRecordedDataState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__StopExportRecordedDataResponse_DEFINED -#define SOAP_TYPE__trc__StopExportRecordedDataResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__StopExportRecordedDataResponse(struct soap*, const char*, int, const _trc__StopExportRecordedDataResponse *, const char*); -SOAP_FMAC3 _trc__StopExportRecordedDataResponse * SOAP_FMAC4 soap_in__trc__StopExportRecordedDataResponse(struct soap*, const char*, _trc__StopExportRecordedDataResponse *, const char*); -SOAP_FMAC1 _trc__StopExportRecordedDataResponse * SOAP_FMAC2 soap_instantiate__trc__StopExportRecordedDataResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__StopExportRecordedDataResponse * soap_new__trc__StopExportRecordedDataResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__StopExportRecordedDataResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__StopExportRecordedDataResponse * soap_new_req__trc__StopExportRecordedDataResponse( - struct soap *soap, - float Progress, - tt__ArrayOfFileProgress *FileProgressStatus) -{ - _trc__StopExportRecordedDataResponse *_p = ::soap_new__trc__StopExportRecordedDataResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__StopExportRecordedDataResponse::Progress = Progress; - _p->_trc__StopExportRecordedDataResponse::FileProgressStatus = FileProgressStatus; - } - return _p; -} - -inline _trc__StopExportRecordedDataResponse * soap_new_set__trc__StopExportRecordedDataResponse( - struct soap *soap, - float Progress, - tt__ArrayOfFileProgress *FileProgressStatus, - const struct soap_dom_element& __any) -{ - _trc__StopExportRecordedDataResponse *_p = ::soap_new__trc__StopExportRecordedDataResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__StopExportRecordedDataResponse::Progress = Progress; - _p->_trc__StopExportRecordedDataResponse::FileProgressStatus = FileProgressStatus; - _p->_trc__StopExportRecordedDataResponse::__any = __any; - } - return _p; -} - -inline int soap_write__trc__StopExportRecordedDataResponse(struct soap *soap, _trc__StopExportRecordedDataResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:StopExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__StopExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__StopExportRecordedDataResponse 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, "trc:StopExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__StopExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__StopExportRecordedDataResponse 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, "trc:StopExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__StopExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__StopExportRecordedDataResponse 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, "trc:StopExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__StopExportRecordedDataResponse * SOAP_FMAC4 soap_get__trc__StopExportRecordedDataResponse(struct soap*, _trc__StopExportRecordedDataResponse *, const char*, const char*); - -inline int soap_read__trc__StopExportRecordedDataResponse(struct soap *soap, _trc__StopExportRecordedDataResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__StopExportRecordedDataResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__StopExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__StopExportRecordedDataResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__StopExportRecordedDataResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__StopExportRecordedDataResponse(struct soap *soap, _trc__StopExportRecordedDataResponse *p) -{ - if (::soap_read__trc__StopExportRecordedDataResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__StopExportRecordedData_DEFINED -#define SOAP_TYPE__trc__StopExportRecordedData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__StopExportRecordedData(struct soap*, const char*, int, const _trc__StopExportRecordedData *, const char*); -SOAP_FMAC3 _trc__StopExportRecordedData * SOAP_FMAC4 soap_in__trc__StopExportRecordedData(struct soap*, const char*, _trc__StopExportRecordedData *, const char*); -SOAP_FMAC1 _trc__StopExportRecordedData * SOAP_FMAC2 soap_instantiate__trc__StopExportRecordedData(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__StopExportRecordedData * soap_new__trc__StopExportRecordedData(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__StopExportRecordedData(soap, n, NULL, NULL, NULL); -} - -inline _trc__StopExportRecordedData * soap_new_req__trc__StopExportRecordedData( - struct soap *soap, - const std::string& OperationToken) -{ - _trc__StopExportRecordedData *_p = ::soap_new__trc__StopExportRecordedData(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__StopExportRecordedData::OperationToken = OperationToken; - } - return _p; -} - -inline _trc__StopExportRecordedData * soap_new_set__trc__StopExportRecordedData( - struct soap *soap, - const std::string& OperationToken) -{ - _trc__StopExportRecordedData *_p = ::soap_new__trc__StopExportRecordedData(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__StopExportRecordedData::OperationToken = OperationToken; - } - return _p; -} - -inline int soap_write__trc__StopExportRecordedData(struct soap *soap, _trc__StopExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:StopExportRecordedData", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedData ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__StopExportRecordedData(struct soap *soap, const char *URL, _trc__StopExportRecordedData 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, "trc:StopExportRecordedData", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__StopExportRecordedData(struct soap *soap, const char *URL, _trc__StopExportRecordedData 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, "trc:StopExportRecordedData", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__StopExportRecordedData(struct soap *soap, const char *URL, _trc__StopExportRecordedData 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, "trc:StopExportRecordedData", p->soap_type() == SOAP_TYPE__trc__StopExportRecordedData ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__StopExportRecordedData * SOAP_FMAC4 soap_get__trc__StopExportRecordedData(struct soap*, _trc__StopExportRecordedData *, const char*, const char*); - -inline int soap_read__trc__StopExportRecordedData(struct soap *soap, _trc__StopExportRecordedData *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__StopExportRecordedData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__StopExportRecordedData(struct soap *soap, const char *URL, _trc__StopExportRecordedData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__StopExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__StopExportRecordedData(struct soap *soap, _trc__StopExportRecordedData *p) -{ - if (::soap_read__trc__StopExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__ExportRecordedDataResponse_DEFINED -#define SOAP_TYPE__trc__ExportRecordedDataResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__ExportRecordedDataResponse(struct soap*, const char*, int, const _trc__ExportRecordedDataResponse *, const char*); -SOAP_FMAC3 _trc__ExportRecordedDataResponse * SOAP_FMAC4 soap_in__trc__ExportRecordedDataResponse(struct soap*, const char*, _trc__ExportRecordedDataResponse *, const char*); -SOAP_FMAC1 _trc__ExportRecordedDataResponse * SOAP_FMAC2 soap_instantiate__trc__ExportRecordedDataResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__ExportRecordedDataResponse * soap_new__trc__ExportRecordedDataResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__ExportRecordedDataResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__ExportRecordedDataResponse * soap_new_req__trc__ExportRecordedDataResponse( - struct soap *soap, - const std::string& OperationToken) -{ - _trc__ExportRecordedDataResponse *_p = ::soap_new__trc__ExportRecordedDataResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__ExportRecordedDataResponse::OperationToken = OperationToken; - } - return _p; -} - -inline _trc__ExportRecordedDataResponse * soap_new_set__trc__ExportRecordedDataResponse( - struct soap *soap, - const std::string& OperationToken, - const std::vector & FileNames, - _trc__ExportRecordedDataResponse_Extension *Extension) -{ - _trc__ExportRecordedDataResponse *_p = ::soap_new__trc__ExportRecordedDataResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__ExportRecordedDataResponse::OperationToken = OperationToken; - _p->_trc__ExportRecordedDataResponse::FileNames = FileNames; - _p->_trc__ExportRecordedDataResponse::Extension = Extension; - } - return _p; -} - -inline int soap_write__trc__ExportRecordedDataResponse(struct soap *soap, _trc__ExportRecordedDataResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:ExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__ExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse 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, "trc:ExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__ExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse 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, "trc:ExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__ExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse 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, "trc:ExportRecordedDataResponse", p->soap_type() == SOAP_TYPE__trc__ExportRecordedDataResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__ExportRecordedDataResponse * SOAP_FMAC4 soap_get__trc__ExportRecordedDataResponse(struct soap*, _trc__ExportRecordedDataResponse *, const char*, const char*); - -inline int soap_read__trc__ExportRecordedDataResponse(struct soap *soap, _trc__ExportRecordedDataResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__ExportRecordedDataResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__ExportRecordedDataResponse(struct soap *soap, const char *URL, _trc__ExportRecordedDataResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__ExportRecordedDataResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__ExportRecordedDataResponse(struct soap *soap, _trc__ExportRecordedDataResponse *p) -{ - if (::soap_read__trc__ExportRecordedDataResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__ExportRecordedData_DEFINED -#define SOAP_TYPE__trc__ExportRecordedData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__ExportRecordedData(struct soap*, const char*, int, const _trc__ExportRecordedData *, const char*); -SOAP_FMAC3 _trc__ExportRecordedData * SOAP_FMAC4 soap_in__trc__ExportRecordedData(struct soap*, const char*, _trc__ExportRecordedData *, const char*); -SOAP_FMAC1 _trc__ExportRecordedData * SOAP_FMAC2 soap_instantiate__trc__ExportRecordedData(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__ExportRecordedData * soap_new__trc__ExportRecordedData(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__ExportRecordedData(soap, n, NULL, NULL, NULL); -} - -inline _trc__ExportRecordedData * soap_new_req__trc__ExportRecordedData( - struct soap *soap, - tt__SearchScope *SearchScope, - const std::string& FileFormat, - tt__StorageReferencePath *StorageDestination) -{ - _trc__ExportRecordedData *_p = ::soap_new__trc__ExportRecordedData(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__ExportRecordedData::SearchScope = SearchScope; - _p->_trc__ExportRecordedData::FileFormat = FileFormat; - _p->_trc__ExportRecordedData::StorageDestination = StorageDestination; - } - return _p; -} - -inline _trc__ExportRecordedData * soap_new_set__trc__ExportRecordedData( - struct soap *soap, - tt__SearchScope *SearchScope, - const std::string& FileFormat, - tt__StorageReferencePath *StorageDestination) -{ - _trc__ExportRecordedData *_p = ::soap_new__trc__ExportRecordedData(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__ExportRecordedData::SearchScope = SearchScope; - _p->_trc__ExportRecordedData::FileFormat = FileFormat; - _p->_trc__ExportRecordedData::StorageDestination = StorageDestination; - } - return _p; -} - -inline int soap_write__trc__ExportRecordedData(struct soap *soap, _trc__ExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:ExportRecordedData", p->soap_type() == SOAP_TYPE__trc__ExportRecordedData ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__ExportRecordedData(struct soap *soap, const char *URL, _trc__ExportRecordedData 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, "trc:ExportRecordedData", p->soap_type() == SOAP_TYPE__trc__ExportRecordedData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__ExportRecordedData(struct soap *soap, const char *URL, _trc__ExportRecordedData 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, "trc:ExportRecordedData", p->soap_type() == SOAP_TYPE__trc__ExportRecordedData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__ExportRecordedData(struct soap *soap, const char *URL, _trc__ExportRecordedData 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, "trc:ExportRecordedData", p->soap_type() == SOAP_TYPE__trc__ExportRecordedData ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__ExportRecordedData * SOAP_FMAC4 soap_get__trc__ExportRecordedData(struct soap*, _trc__ExportRecordedData *, const char*, const char*); - -inline int soap_read__trc__ExportRecordedData(struct soap *soap, _trc__ExportRecordedData *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__ExportRecordedData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__ExportRecordedData(struct soap *soap, const char *URL, _trc__ExportRecordedData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__ExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__ExportRecordedData(struct soap *soap, _trc__ExportRecordedData *p) -{ - if (::soap_read__trc__ExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingOptionsResponse_DEFINED -#define SOAP_TYPE__trc__GetRecordingOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingOptionsResponse(struct soap*, const char*, int, const _trc__GetRecordingOptionsResponse *, const char*); -SOAP_FMAC3 _trc__GetRecordingOptionsResponse * SOAP_FMAC4 soap_in__trc__GetRecordingOptionsResponse(struct soap*, const char*, _trc__GetRecordingOptionsResponse *, const char*); -SOAP_FMAC1 _trc__GetRecordingOptionsResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingOptionsResponse * soap_new__trc__GetRecordingOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingOptionsResponse * soap_new_req__trc__GetRecordingOptionsResponse( - struct soap *soap, - trc__RecordingOptions *Options) -{ - _trc__GetRecordingOptionsResponse *_p = ::soap_new__trc__GetRecordingOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingOptionsResponse::Options = Options; - } - return _p; -} - -inline _trc__GetRecordingOptionsResponse * soap_new_set__trc__GetRecordingOptionsResponse( - struct soap *soap, - trc__RecordingOptions *Options) -{ - _trc__GetRecordingOptionsResponse *_p = ::soap_new__trc__GetRecordingOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trc__GetRecordingOptionsResponse(struct soap *soap, _trc__GetRecordingOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingOptionsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingOptionsResponse(struct soap *soap, const char *URL, _trc__GetRecordingOptionsResponse 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, "trc:GetRecordingOptionsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingOptionsResponse(struct soap *soap, const char *URL, _trc__GetRecordingOptionsResponse 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, "trc:GetRecordingOptionsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingOptionsResponse(struct soap *soap, const char *URL, _trc__GetRecordingOptionsResponse 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, "trc:GetRecordingOptionsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingOptionsResponse * SOAP_FMAC4 soap_get__trc__GetRecordingOptionsResponse(struct soap*, _trc__GetRecordingOptionsResponse *, const char*, const char*); - -inline int soap_read__trc__GetRecordingOptionsResponse(struct soap *soap, _trc__GetRecordingOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingOptionsResponse(struct soap *soap, const char *URL, _trc__GetRecordingOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingOptionsResponse(struct soap *soap, _trc__GetRecordingOptionsResponse *p) -{ - if (::soap_read__trc__GetRecordingOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingOptions_DEFINED -#define SOAP_TYPE__trc__GetRecordingOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingOptions(struct soap*, const char*, int, const _trc__GetRecordingOptions *, const char*); -SOAP_FMAC3 _trc__GetRecordingOptions * SOAP_FMAC4 soap_in__trc__GetRecordingOptions(struct soap*, const char*, _trc__GetRecordingOptions *, const char*); -SOAP_FMAC1 _trc__GetRecordingOptions * SOAP_FMAC2 soap_instantiate__trc__GetRecordingOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingOptions * soap_new__trc__GetRecordingOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingOptions(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingOptions * soap_new_req__trc__GetRecordingOptions( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__GetRecordingOptions *_p = ::soap_new__trc__GetRecordingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingOptions::RecordingToken = RecordingToken; - } - return _p; -} - -inline _trc__GetRecordingOptions * soap_new_set__trc__GetRecordingOptions( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__GetRecordingOptions *_p = ::soap_new__trc__GetRecordingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingOptions::RecordingToken = RecordingToken; - } - return _p; -} - -inline int soap_write__trc__GetRecordingOptions(struct soap *soap, _trc__GetRecordingOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingOptions", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingOptions(struct soap *soap, const char *URL, _trc__GetRecordingOptions 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, "trc:GetRecordingOptions", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingOptions(struct soap *soap, const char *URL, _trc__GetRecordingOptions 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, "trc:GetRecordingOptions", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingOptions(struct soap *soap, const char *URL, _trc__GetRecordingOptions 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, "trc:GetRecordingOptions", p->soap_type() == SOAP_TYPE__trc__GetRecordingOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingOptions * SOAP_FMAC4 soap_get__trc__GetRecordingOptions(struct soap*, _trc__GetRecordingOptions *, const char*, const char*); - -inline int soap_read__trc__GetRecordingOptions(struct soap *soap, _trc__GetRecordingOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingOptions(struct soap *soap, const char *URL, _trc__GetRecordingOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingOptions(struct soap *soap, _trc__GetRecordingOptions *p) -{ - if (::soap_read__trc__GetRecordingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingJobStateResponse_DEFINED -#define SOAP_TYPE__trc__GetRecordingJobStateResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobStateResponse(struct soap*, const char*, int, const _trc__GetRecordingJobStateResponse *, const char*); -SOAP_FMAC3 _trc__GetRecordingJobStateResponse * SOAP_FMAC4 soap_in__trc__GetRecordingJobStateResponse(struct soap*, const char*, _trc__GetRecordingJobStateResponse *, const char*); -SOAP_FMAC1 _trc__GetRecordingJobStateResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobStateResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingJobStateResponse * soap_new__trc__GetRecordingJobStateResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingJobStateResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingJobStateResponse * soap_new_req__trc__GetRecordingJobStateResponse( - struct soap *soap, - tt__RecordingJobStateInformation *State) -{ - _trc__GetRecordingJobStateResponse *_p = ::soap_new__trc__GetRecordingJobStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobStateResponse::State = State; - } - return _p; -} - -inline _trc__GetRecordingJobStateResponse * soap_new_set__trc__GetRecordingJobStateResponse( - struct soap *soap, - tt__RecordingJobStateInformation *State) -{ - _trc__GetRecordingJobStateResponse *_p = ::soap_new__trc__GetRecordingJobStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobStateResponse::State = State; - } - return _p; -} - -inline int soap_write__trc__GetRecordingJobStateResponse(struct soap *soap, _trc__GetRecordingJobStateResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingJobStateResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingJobStateResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobStateResponse 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, "trc:GetRecordingJobStateResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingJobStateResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobStateResponse 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, "trc:GetRecordingJobStateResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingJobStateResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobStateResponse 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, "trc:GetRecordingJobStateResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingJobStateResponse * SOAP_FMAC4 soap_get__trc__GetRecordingJobStateResponse(struct soap*, _trc__GetRecordingJobStateResponse *, const char*, const char*); - -inline int soap_read__trc__GetRecordingJobStateResponse(struct soap *soap, _trc__GetRecordingJobStateResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingJobStateResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingJobStateResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobStateResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingJobStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingJobStateResponse(struct soap *soap, _trc__GetRecordingJobStateResponse *p) -{ - if (::soap_read__trc__GetRecordingJobStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingJobState_DEFINED -#define SOAP_TYPE__trc__GetRecordingJobState_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobState(struct soap*, const char*, int, const _trc__GetRecordingJobState *, const char*); -SOAP_FMAC3 _trc__GetRecordingJobState * SOAP_FMAC4 soap_in__trc__GetRecordingJobState(struct soap*, const char*, _trc__GetRecordingJobState *, const char*); -SOAP_FMAC1 _trc__GetRecordingJobState * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobState(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingJobState * soap_new__trc__GetRecordingJobState(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingJobState(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingJobState * soap_new_req__trc__GetRecordingJobState( - struct soap *soap, - const std::string& JobToken) -{ - _trc__GetRecordingJobState *_p = ::soap_new__trc__GetRecordingJobState(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobState::JobToken = JobToken; - } - return _p; -} - -inline _trc__GetRecordingJobState * soap_new_set__trc__GetRecordingJobState( - struct soap *soap, - const std::string& JobToken) -{ - _trc__GetRecordingJobState *_p = ::soap_new__trc__GetRecordingJobState(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobState::JobToken = JobToken; - } - return _p; -} - -inline int soap_write__trc__GetRecordingJobState(struct soap *soap, _trc__GetRecordingJobState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingJobState", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobState ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingJobState(struct soap *soap, const char *URL, _trc__GetRecordingJobState 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, "trc:GetRecordingJobState", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingJobState(struct soap *soap, const char *URL, _trc__GetRecordingJobState 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, "trc:GetRecordingJobState", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingJobState(struct soap *soap, const char *URL, _trc__GetRecordingJobState 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, "trc:GetRecordingJobState", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobState ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingJobState * SOAP_FMAC4 soap_get__trc__GetRecordingJobState(struct soap*, _trc__GetRecordingJobState *, const char*, const char*); - -inline int soap_read__trc__GetRecordingJobState(struct soap *soap, _trc__GetRecordingJobState *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingJobState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingJobState(struct soap *soap, const char *URL, _trc__GetRecordingJobState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingJobState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingJobState(struct soap *soap, _trc__GetRecordingJobState *p) -{ - if (::soap_read__trc__GetRecordingJobState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetRecordingJobModeResponse_DEFINED -#define SOAP_TYPE__trc__SetRecordingJobModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobModeResponse(struct soap*, const char*, int, const _trc__SetRecordingJobModeResponse *, const char*); -SOAP_FMAC3 _trc__SetRecordingJobModeResponse * SOAP_FMAC4 soap_in__trc__SetRecordingJobModeResponse(struct soap*, const char*, _trc__SetRecordingJobModeResponse *, const char*); -SOAP_FMAC1 _trc__SetRecordingJobModeResponse * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetRecordingJobModeResponse * soap_new__trc__SetRecordingJobModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetRecordingJobModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetRecordingJobModeResponse * soap_new_req__trc__SetRecordingJobModeResponse( - struct soap *soap) -{ - _trc__SetRecordingJobModeResponse *_p = ::soap_new__trc__SetRecordingJobModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__SetRecordingJobModeResponse * soap_new_set__trc__SetRecordingJobModeResponse( - struct soap *soap) -{ - _trc__SetRecordingJobModeResponse *_p = ::soap_new__trc__SetRecordingJobModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__SetRecordingJobModeResponse(struct soap *soap, _trc__SetRecordingJobModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetRecordingJobModeResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetRecordingJobModeResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobModeResponse 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, "trc:SetRecordingJobModeResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetRecordingJobModeResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobModeResponse 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, "trc:SetRecordingJobModeResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetRecordingJobModeResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobModeResponse 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, "trc:SetRecordingJobModeResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetRecordingJobModeResponse * SOAP_FMAC4 soap_get__trc__SetRecordingJobModeResponse(struct soap*, _trc__SetRecordingJobModeResponse *, const char*, const char*); - -inline int soap_read__trc__SetRecordingJobModeResponse(struct soap *soap, _trc__SetRecordingJobModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetRecordingJobModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetRecordingJobModeResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetRecordingJobModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetRecordingJobModeResponse(struct soap *soap, _trc__SetRecordingJobModeResponse *p) -{ - if (::soap_read__trc__SetRecordingJobModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetRecordingJobMode_DEFINED -#define SOAP_TYPE__trc__SetRecordingJobMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobMode(struct soap*, const char*, int, const _trc__SetRecordingJobMode *, const char*); -SOAP_FMAC3 _trc__SetRecordingJobMode * SOAP_FMAC4 soap_in__trc__SetRecordingJobMode(struct soap*, const char*, _trc__SetRecordingJobMode *, const char*); -SOAP_FMAC1 _trc__SetRecordingJobMode * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobMode(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetRecordingJobMode * soap_new__trc__SetRecordingJobMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetRecordingJobMode(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetRecordingJobMode * soap_new_req__trc__SetRecordingJobMode( - struct soap *soap, - const std::string& JobToken, - const std::string& Mode) -{ - _trc__SetRecordingJobMode *_p = ::soap_new__trc__SetRecordingJobMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingJobMode::JobToken = JobToken; - _p->_trc__SetRecordingJobMode::Mode = Mode; - } - return _p; -} - -inline _trc__SetRecordingJobMode * soap_new_set__trc__SetRecordingJobMode( - struct soap *soap, - const std::string& JobToken, - const std::string& Mode) -{ - _trc__SetRecordingJobMode *_p = ::soap_new__trc__SetRecordingJobMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingJobMode::JobToken = JobToken; - _p->_trc__SetRecordingJobMode::Mode = Mode; - } - return _p; -} - -inline int soap_write__trc__SetRecordingJobMode(struct soap *soap, _trc__SetRecordingJobMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetRecordingJobMode", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetRecordingJobMode(struct soap *soap, const char *URL, _trc__SetRecordingJobMode 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, "trc:SetRecordingJobMode", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetRecordingJobMode(struct soap *soap, const char *URL, _trc__SetRecordingJobMode 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, "trc:SetRecordingJobMode", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetRecordingJobMode(struct soap *soap, const char *URL, _trc__SetRecordingJobMode 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, "trc:SetRecordingJobMode", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetRecordingJobMode * SOAP_FMAC4 soap_get__trc__SetRecordingJobMode(struct soap*, _trc__SetRecordingJobMode *, const char*, const char*); - -inline int soap_read__trc__SetRecordingJobMode(struct soap *soap, _trc__SetRecordingJobMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetRecordingJobMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetRecordingJobMode(struct soap *soap, const char *URL, _trc__SetRecordingJobMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetRecordingJobMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetRecordingJobMode(struct soap *soap, _trc__SetRecordingJobMode *p) -{ - if (::soap_read__trc__SetRecordingJobMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingJobConfigurationResponse_DEFINED -#define SOAP_TYPE__trc__GetRecordingJobConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobConfigurationResponse(struct soap*, const char*, int, const _trc__GetRecordingJobConfigurationResponse *, const char*); -SOAP_FMAC3 _trc__GetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_in__trc__GetRecordingJobConfigurationResponse(struct soap*, const char*, _trc__GetRecordingJobConfigurationResponse *, const char*); -SOAP_FMAC1 _trc__GetRecordingJobConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingJobConfigurationResponse * soap_new__trc__GetRecordingJobConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingJobConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingJobConfigurationResponse * soap_new_req__trc__GetRecordingJobConfigurationResponse( - struct soap *soap, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__GetRecordingJobConfigurationResponse *_p = ::soap_new__trc__GetRecordingJobConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobConfigurationResponse::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline _trc__GetRecordingJobConfigurationResponse * soap_new_set__trc__GetRecordingJobConfigurationResponse( - struct soap *soap, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__GetRecordingJobConfigurationResponse *_p = ::soap_new__trc__GetRecordingJobConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobConfigurationResponse::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline int soap_write__trc__GetRecordingJobConfigurationResponse(struct soap *soap, _trc__GetRecordingJobConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobConfigurationResponse 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, "trc:GetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobConfigurationResponse 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, "trc:GetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobConfigurationResponse 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, "trc:GetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_get__trc__GetRecordingJobConfigurationResponse(struct soap*, _trc__GetRecordingJobConfigurationResponse *, const char*, const char*); - -inline int soap_read__trc__GetRecordingJobConfigurationResponse(struct soap *soap, _trc__GetRecordingJobConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingJobConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingJobConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingJobConfigurationResponse(struct soap *soap, _trc__GetRecordingJobConfigurationResponse *p) -{ - if (::soap_read__trc__GetRecordingJobConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingJobConfiguration_DEFINED -#define SOAP_TYPE__trc__GetRecordingJobConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobConfiguration(struct soap*, const char*, int, const _trc__GetRecordingJobConfiguration *, const char*); -SOAP_FMAC3 _trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_in__trc__GetRecordingJobConfiguration(struct soap*, const char*, _trc__GetRecordingJobConfiguration *, const char*); -SOAP_FMAC1 _trc__GetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingJobConfiguration * soap_new__trc__GetRecordingJobConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingJobConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingJobConfiguration * soap_new_req__trc__GetRecordingJobConfiguration( - struct soap *soap, - const std::string& JobToken) -{ - _trc__GetRecordingJobConfiguration *_p = ::soap_new__trc__GetRecordingJobConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobConfiguration::JobToken = JobToken; - } - return _p; -} - -inline _trc__GetRecordingJobConfiguration * soap_new_set__trc__GetRecordingJobConfiguration( - struct soap *soap, - const std::string& JobToken) -{ - _trc__GetRecordingJobConfiguration *_p = ::soap_new__trc__GetRecordingJobConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobConfiguration::JobToken = JobToken; - } - return _p; -} - -inline int soap_write__trc__GetRecordingJobConfiguration(struct soap *soap, _trc__GetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingJobConfiguration 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, "trc:GetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingJobConfiguration 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, "trc:GetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingJobConfiguration 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, "trc:GetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_get__trc__GetRecordingJobConfiguration(struct soap*, _trc__GetRecordingJobConfiguration *, const char*, const char*); - -inline int soap_read__trc__GetRecordingJobConfiguration(struct soap *soap, _trc__GetRecordingJobConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingJobConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingJobConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingJobConfiguration(struct soap *soap, _trc__GetRecordingJobConfiguration *p) -{ - if (::soap_read__trc__GetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetRecordingJobConfigurationResponse_DEFINED -#define SOAP_TYPE__trc__SetRecordingJobConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobConfigurationResponse(struct soap*, const char*, int, const _trc__SetRecordingJobConfigurationResponse *, const char*); -SOAP_FMAC3 _trc__SetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_in__trc__SetRecordingJobConfigurationResponse(struct soap*, const char*, _trc__SetRecordingJobConfigurationResponse *, const char*); -SOAP_FMAC1 _trc__SetRecordingJobConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetRecordingJobConfigurationResponse * soap_new__trc__SetRecordingJobConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetRecordingJobConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetRecordingJobConfigurationResponse * soap_new_req__trc__SetRecordingJobConfigurationResponse( - struct soap *soap, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__SetRecordingJobConfigurationResponse *_p = ::soap_new__trc__SetRecordingJobConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingJobConfigurationResponse::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline _trc__SetRecordingJobConfigurationResponse * soap_new_set__trc__SetRecordingJobConfigurationResponse( - struct soap *soap, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__SetRecordingJobConfigurationResponse *_p = ::soap_new__trc__SetRecordingJobConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingJobConfigurationResponse::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline int soap_write__trc__SetRecordingJobConfigurationResponse(struct soap *soap, _trc__SetRecordingJobConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobConfigurationResponse 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, "trc:SetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobConfigurationResponse 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, "trc:SetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobConfigurationResponse 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, "trc:SetRecordingJobConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetRecordingJobConfigurationResponse * SOAP_FMAC4 soap_get__trc__SetRecordingJobConfigurationResponse(struct soap*, _trc__SetRecordingJobConfigurationResponse *, const char*, const char*); - -inline int soap_read__trc__SetRecordingJobConfigurationResponse(struct soap *soap, _trc__SetRecordingJobConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetRecordingJobConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetRecordingJobConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingJobConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetRecordingJobConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetRecordingJobConfigurationResponse(struct soap *soap, _trc__SetRecordingJobConfigurationResponse *p) -{ - if (::soap_read__trc__SetRecordingJobConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetRecordingJobConfiguration_DEFINED -#define SOAP_TYPE__trc__SetRecordingJobConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingJobConfiguration(struct soap*, const char*, int, const _trc__SetRecordingJobConfiguration *, const char*); -SOAP_FMAC3 _trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_in__trc__SetRecordingJobConfiguration(struct soap*, const char*, _trc__SetRecordingJobConfiguration *, const char*); -SOAP_FMAC1 _trc__SetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate__trc__SetRecordingJobConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetRecordingJobConfiguration * soap_new__trc__SetRecordingJobConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetRecordingJobConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetRecordingJobConfiguration * soap_new_req__trc__SetRecordingJobConfiguration( - struct soap *soap, - const std::string& JobToken, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__SetRecordingJobConfiguration *_p = ::soap_new__trc__SetRecordingJobConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingJobConfiguration::JobToken = JobToken; - _p->_trc__SetRecordingJobConfiguration::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline _trc__SetRecordingJobConfiguration * soap_new_set__trc__SetRecordingJobConfiguration( - struct soap *soap, - const std::string& JobToken, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__SetRecordingJobConfiguration *_p = ::soap_new__trc__SetRecordingJobConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingJobConfiguration::JobToken = JobToken; - _p->_trc__SetRecordingJobConfiguration::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline int soap_write__trc__SetRecordingJobConfiguration(struct soap *soap, _trc__SetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingJobConfiguration 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, "trc:SetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingJobConfiguration 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, "trc:SetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingJobConfiguration 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, "trc:SetRecordingJobConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingJobConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_get__trc__SetRecordingJobConfiguration(struct soap*, _trc__SetRecordingJobConfiguration *, const char*, const char*); - -inline int soap_read__trc__SetRecordingJobConfiguration(struct soap *soap, _trc__SetRecordingJobConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetRecordingJobConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingJobConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetRecordingJobConfiguration(struct soap *soap, _trc__SetRecordingJobConfiguration *p) -{ - if (::soap_read__trc__SetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingJobsResponse_DEFINED -#define SOAP_TYPE__trc__GetRecordingJobsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobsResponse(struct soap*, const char*, int, const _trc__GetRecordingJobsResponse *, const char*); -SOAP_FMAC3 _trc__GetRecordingJobsResponse * SOAP_FMAC4 soap_in__trc__GetRecordingJobsResponse(struct soap*, const char*, _trc__GetRecordingJobsResponse *, const char*); -SOAP_FMAC1 _trc__GetRecordingJobsResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingJobsResponse * soap_new__trc__GetRecordingJobsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingJobsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingJobsResponse * soap_new_req__trc__GetRecordingJobsResponse( - struct soap *soap) -{ - _trc__GetRecordingJobsResponse *_p = ::soap_new__trc__GetRecordingJobsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__GetRecordingJobsResponse * soap_new_set__trc__GetRecordingJobsResponse( - struct soap *soap, - const std::vector & JobItem) -{ - _trc__GetRecordingJobsResponse *_p = ::soap_new__trc__GetRecordingJobsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingJobsResponse::JobItem = JobItem; - } - return _p; -} - -inline int soap_write__trc__GetRecordingJobsResponse(struct soap *soap, _trc__GetRecordingJobsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingJobsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingJobsResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobsResponse 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, "trc:GetRecordingJobsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingJobsResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobsResponse 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, "trc:GetRecordingJobsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingJobsResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobsResponse 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, "trc:GetRecordingJobsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingJobsResponse * SOAP_FMAC4 soap_get__trc__GetRecordingJobsResponse(struct soap*, _trc__GetRecordingJobsResponse *, const char*, const char*); - -inline int soap_read__trc__GetRecordingJobsResponse(struct soap *soap, _trc__GetRecordingJobsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingJobsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingJobsResponse(struct soap *soap, const char *URL, _trc__GetRecordingJobsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingJobsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingJobsResponse(struct soap *soap, _trc__GetRecordingJobsResponse *p) -{ - if (::soap_read__trc__GetRecordingJobsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingJobs_DEFINED -#define SOAP_TYPE__trc__GetRecordingJobs_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingJobs(struct soap*, const char*, int, const _trc__GetRecordingJobs *, const char*); -SOAP_FMAC3 _trc__GetRecordingJobs * SOAP_FMAC4 soap_in__trc__GetRecordingJobs(struct soap*, const char*, _trc__GetRecordingJobs *, const char*); -SOAP_FMAC1 _trc__GetRecordingJobs * SOAP_FMAC2 soap_instantiate__trc__GetRecordingJobs(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingJobs * soap_new__trc__GetRecordingJobs(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingJobs(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingJobs * soap_new_req__trc__GetRecordingJobs( - struct soap *soap) -{ - _trc__GetRecordingJobs *_p = ::soap_new__trc__GetRecordingJobs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__GetRecordingJobs * soap_new_set__trc__GetRecordingJobs( - struct soap *soap) -{ - _trc__GetRecordingJobs *_p = ::soap_new__trc__GetRecordingJobs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__GetRecordingJobs(struct soap *soap, _trc__GetRecordingJobs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingJobs", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobs ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingJobs(struct soap *soap, const char *URL, _trc__GetRecordingJobs 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, "trc:GetRecordingJobs", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingJobs(struct soap *soap, const char *URL, _trc__GetRecordingJobs 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, "trc:GetRecordingJobs", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingJobs(struct soap *soap, const char *URL, _trc__GetRecordingJobs 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, "trc:GetRecordingJobs", p->soap_type() == SOAP_TYPE__trc__GetRecordingJobs ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingJobs * SOAP_FMAC4 soap_get__trc__GetRecordingJobs(struct soap*, _trc__GetRecordingJobs *, const char*, const char*); - -inline int soap_read__trc__GetRecordingJobs(struct soap *soap, _trc__GetRecordingJobs *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingJobs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingJobs(struct soap *soap, const char *URL, _trc__GetRecordingJobs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingJobs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingJobs(struct soap *soap, _trc__GetRecordingJobs *p) -{ - if (::soap_read__trc__GetRecordingJobs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__DeleteRecordingJobResponse_DEFINED -#define SOAP_TYPE__trc__DeleteRecordingJobResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecordingJobResponse(struct soap*, const char*, int, const _trc__DeleteRecordingJobResponse *, const char*); -SOAP_FMAC3 _trc__DeleteRecordingJobResponse * SOAP_FMAC4 soap_in__trc__DeleteRecordingJobResponse(struct soap*, const char*, _trc__DeleteRecordingJobResponse *, const char*); -SOAP_FMAC1 _trc__DeleteRecordingJobResponse * SOAP_FMAC2 soap_instantiate__trc__DeleteRecordingJobResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__DeleteRecordingJobResponse * soap_new__trc__DeleteRecordingJobResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__DeleteRecordingJobResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__DeleteRecordingJobResponse * soap_new_req__trc__DeleteRecordingJobResponse( - struct soap *soap) -{ - _trc__DeleteRecordingJobResponse *_p = ::soap_new__trc__DeleteRecordingJobResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__DeleteRecordingJobResponse * soap_new_set__trc__DeleteRecordingJobResponse( - struct soap *soap) -{ - _trc__DeleteRecordingJobResponse *_p = ::soap_new__trc__DeleteRecordingJobResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__DeleteRecordingJobResponse(struct soap *soap, _trc__DeleteRecordingJobResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:DeleteRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJobResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__DeleteRecordingJobResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingJobResponse 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, "trc:DeleteRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJobResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__DeleteRecordingJobResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingJobResponse 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, "trc:DeleteRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJobResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__DeleteRecordingJobResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingJobResponse 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, "trc:DeleteRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJobResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__DeleteRecordingJobResponse * SOAP_FMAC4 soap_get__trc__DeleteRecordingJobResponse(struct soap*, _trc__DeleteRecordingJobResponse *, const char*, const char*); - -inline int soap_read__trc__DeleteRecordingJobResponse(struct soap *soap, _trc__DeleteRecordingJobResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__DeleteRecordingJobResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__DeleteRecordingJobResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingJobResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__DeleteRecordingJobResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__DeleteRecordingJobResponse(struct soap *soap, _trc__DeleteRecordingJobResponse *p) -{ - if (::soap_read__trc__DeleteRecordingJobResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__DeleteRecordingJob_DEFINED -#define SOAP_TYPE__trc__DeleteRecordingJob_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecordingJob(struct soap*, const char*, int, const _trc__DeleteRecordingJob *, const char*); -SOAP_FMAC3 _trc__DeleteRecordingJob * SOAP_FMAC4 soap_in__trc__DeleteRecordingJob(struct soap*, const char*, _trc__DeleteRecordingJob *, const char*); -SOAP_FMAC1 _trc__DeleteRecordingJob * SOAP_FMAC2 soap_instantiate__trc__DeleteRecordingJob(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__DeleteRecordingJob * soap_new__trc__DeleteRecordingJob(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__DeleteRecordingJob(soap, n, NULL, NULL, NULL); -} - -inline _trc__DeleteRecordingJob * soap_new_req__trc__DeleteRecordingJob( - struct soap *soap, - const std::string& JobToken) -{ - _trc__DeleteRecordingJob *_p = ::soap_new__trc__DeleteRecordingJob(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__DeleteRecordingJob::JobToken = JobToken; - } - return _p; -} - -inline _trc__DeleteRecordingJob * soap_new_set__trc__DeleteRecordingJob( - struct soap *soap, - const std::string& JobToken) -{ - _trc__DeleteRecordingJob *_p = ::soap_new__trc__DeleteRecordingJob(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__DeleteRecordingJob::JobToken = JobToken; - } - return _p; -} - -inline int soap_write__trc__DeleteRecordingJob(struct soap *soap, _trc__DeleteRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:DeleteRecordingJob", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJob ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__DeleteRecordingJob(struct soap *soap, const char *URL, _trc__DeleteRecordingJob 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, "trc:DeleteRecordingJob", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__DeleteRecordingJob(struct soap *soap, const char *URL, _trc__DeleteRecordingJob 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, "trc:DeleteRecordingJob", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__DeleteRecordingJob(struct soap *soap, const char *URL, _trc__DeleteRecordingJob 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, "trc:DeleteRecordingJob", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingJob ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__DeleteRecordingJob * SOAP_FMAC4 soap_get__trc__DeleteRecordingJob(struct soap*, _trc__DeleteRecordingJob *, const char*, const char*); - -inline int soap_read__trc__DeleteRecordingJob(struct soap *soap, _trc__DeleteRecordingJob *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__DeleteRecordingJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__DeleteRecordingJob(struct soap *soap, const char *URL, _trc__DeleteRecordingJob *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__DeleteRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__DeleteRecordingJob(struct soap *soap, _trc__DeleteRecordingJob *p) -{ - if (::soap_read__trc__DeleteRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__CreateRecordingJobResponse_DEFINED -#define SOAP_TYPE__trc__CreateRecordingJobResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecordingJobResponse(struct soap*, const char*, int, const _trc__CreateRecordingJobResponse *, const char*); -SOAP_FMAC3 _trc__CreateRecordingJobResponse * SOAP_FMAC4 soap_in__trc__CreateRecordingJobResponse(struct soap*, const char*, _trc__CreateRecordingJobResponse *, const char*); -SOAP_FMAC1 _trc__CreateRecordingJobResponse * SOAP_FMAC2 soap_instantiate__trc__CreateRecordingJobResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__CreateRecordingJobResponse * soap_new__trc__CreateRecordingJobResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__CreateRecordingJobResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__CreateRecordingJobResponse * soap_new_req__trc__CreateRecordingJobResponse( - struct soap *soap, - const std::string& JobToken, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__CreateRecordingJobResponse *_p = ::soap_new__trc__CreateRecordingJobResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecordingJobResponse::JobToken = JobToken; - _p->_trc__CreateRecordingJobResponse::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline _trc__CreateRecordingJobResponse * soap_new_set__trc__CreateRecordingJobResponse( - struct soap *soap, - const std::string& JobToken, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__CreateRecordingJobResponse *_p = ::soap_new__trc__CreateRecordingJobResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecordingJobResponse::JobToken = JobToken; - _p->_trc__CreateRecordingJobResponse::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline int soap_write__trc__CreateRecordingJobResponse(struct soap *soap, _trc__CreateRecordingJobResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:CreateRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJobResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__CreateRecordingJobResponse(struct soap *soap, const char *URL, _trc__CreateRecordingJobResponse 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, "trc:CreateRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJobResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__CreateRecordingJobResponse(struct soap *soap, const char *URL, _trc__CreateRecordingJobResponse 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, "trc:CreateRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJobResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__CreateRecordingJobResponse(struct soap *soap, const char *URL, _trc__CreateRecordingJobResponse 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, "trc:CreateRecordingJobResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJobResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__CreateRecordingJobResponse * SOAP_FMAC4 soap_get__trc__CreateRecordingJobResponse(struct soap*, _trc__CreateRecordingJobResponse *, const char*, const char*); - -inline int soap_read__trc__CreateRecordingJobResponse(struct soap *soap, _trc__CreateRecordingJobResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__CreateRecordingJobResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__CreateRecordingJobResponse(struct soap *soap, const char *URL, _trc__CreateRecordingJobResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__CreateRecordingJobResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__CreateRecordingJobResponse(struct soap *soap, _trc__CreateRecordingJobResponse *p) -{ - if (::soap_read__trc__CreateRecordingJobResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__CreateRecordingJob_DEFINED -#define SOAP_TYPE__trc__CreateRecordingJob_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecordingJob(struct soap*, const char*, int, const _trc__CreateRecordingJob *, const char*); -SOAP_FMAC3 _trc__CreateRecordingJob * SOAP_FMAC4 soap_in__trc__CreateRecordingJob(struct soap*, const char*, _trc__CreateRecordingJob *, const char*); -SOAP_FMAC1 _trc__CreateRecordingJob * SOAP_FMAC2 soap_instantiate__trc__CreateRecordingJob(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__CreateRecordingJob * soap_new__trc__CreateRecordingJob(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__CreateRecordingJob(soap, n, NULL, NULL, NULL); -} - -inline _trc__CreateRecordingJob * soap_new_req__trc__CreateRecordingJob( - struct soap *soap, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__CreateRecordingJob *_p = ::soap_new__trc__CreateRecordingJob(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecordingJob::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline _trc__CreateRecordingJob * soap_new_set__trc__CreateRecordingJob( - struct soap *soap, - tt__RecordingJobConfiguration *JobConfiguration) -{ - _trc__CreateRecordingJob *_p = ::soap_new__trc__CreateRecordingJob(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecordingJob::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline int soap_write__trc__CreateRecordingJob(struct soap *soap, _trc__CreateRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:CreateRecordingJob", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJob ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__CreateRecordingJob(struct soap *soap, const char *URL, _trc__CreateRecordingJob 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, "trc:CreateRecordingJob", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__CreateRecordingJob(struct soap *soap, const char *URL, _trc__CreateRecordingJob 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, "trc:CreateRecordingJob", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__CreateRecordingJob(struct soap *soap, const char *URL, _trc__CreateRecordingJob 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, "trc:CreateRecordingJob", p->soap_type() == SOAP_TYPE__trc__CreateRecordingJob ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__CreateRecordingJob * SOAP_FMAC4 soap_get__trc__CreateRecordingJob(struct soap*, _trc__CreateRecordingJob *, const char*, const char*); - -inline int soap_read__trc__CreateRecordingJob(struct soap *soap, _trc__CreateRecordingJob *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__CreateRecordingJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__CreateRecordingJob(struct soap *soap, const char *URL, _trc__CreateRecordingJob *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__CreateRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__CreateRecordingJob(struct soap *soap, _trc__CreateRecordingJob *p) -{ - if (::soap_read__trc__CreateRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetTrackConfigurationResponse_DEFINED -#define SOAP_TYPE__trc__SetTrackConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetTrackConfigurationResponse(struct soap*, const char*, int, const _trc__SetTrackConfigurationResponse *, const char*); -SOAP_FMAC3 _trc__SetTrackConfigurationResponse * SOAP_FMAC4 soap_in__trc__SetTrackConfigurationResponse(struct soap*, const char*, _trc__SetTrackConfigurationResponse *, const char*); -SOAP_FMAC1 _trc__SetTrackConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__SetTrackConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetTrackConfigurationResponse * soap_new__trc__SetTrackConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetTrackConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetTrackConfigurationResponse * soap_new_req__trc__SetTrackConfigurationResponse( - struct soap *soap) -{ - _trc__SetTrackConfigurationResponse *_p = ::soap_new__trc__SetTrackConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__SetTrackConfigurationResponse * soap_new_set__trc__SetTrackConfigurationResponse( - struct soap *soap) -{ - _trc__SetTrackConfigurationResponse *_p = ::soap_new__trc__SetTrackConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__SetTrackConfigurationResponse(struct soap *soap, _trc__SetTrackConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__SetTrackConfigurationResponse 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, "trc:SetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__SetTrackConfigurationResponse 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, "trc:SetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__SetTrackConfigurationResponse 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, "trc:SetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetTrackConfigurationResponse * SOAP_FMAC4 soap_get__trc__SetTrackConfigurationResponse(struct soap*, _trc__SetTrackConfigurationResponse *, const char*, const char*); - -inline int soap_read__trc__SetTrackConfigurationResponse(struct soap *soap, _trc__SetTrackConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetTrackConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__SetTrackConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetTrackConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetTrackConfigurationResponse(struct soap *soap, _trc__SetTrackConfigurationResponse *p) -{ - if (::soap_read__trc__SetTrackConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetTrackConfiguration_DEFINED -#define SOAP_TYPE__trc__SetTrackConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetTrackConfiguration(struct soap*, const char*, int, const _trc__SetTrackConfiguration *, const char*); -SOAP_FMAC3 _trc__SetTrackConfiguration * SOAP_FMAC4 soap_in__trc__SetTrackConfiguration(struct soap*, const char*, _trc__SetTrackConfiguration *, const char*); -SOAP_FMAC1 _trc__SetTrackConfiguration * SOAP_FMAC2 soap_instantiate__trc__SetTrackConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetTrackConfiguration * soap_new__trc__SetTrackConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetTrackConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetTrackConfiguration * soap_new_req__trc__SetTrackConfiguration( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - tt__TrackConfiguration *TrackConfiguration) -{ - _trc__SetTrackConfiguration *_p = ::soap_new__trc__SetTrackConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetTrackConfiguration::RecordingToken = RecordingToken; - _p->_trc__SetTrackConfiguration::TrackToken = TrackToken; - _p->_trc__SetTrackConfiguration::TrackConfiguration = TrackConfiguration; - } - return _p; -} - -inline _trc__SetTrackConfiguration * soap_new_set__trc__SetTrackConfiguration( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - tt__TrackConfiguration *TrackConfiguration) -{ - _trc__SetTrackConfiguration *_p = ::soap_new__trc__SetTrackConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetTrackConfiguration::RecordingToken = RecordingToken; - _p->_trc__SetTrackConfiguration::TrackToken = TrackToken; - _p->_trc__SetTrackConfiguration::TrackConfiguration = TrackConfiguration; - } - return _p; -} - -inline int soap_write__trc__SetTrackConfiguration(struct soap *soap, _trc__SetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__SetTrackConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetTrackConfiguration(struct soap *soap, const char *URL, _trc__SetTrackConfiguration 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, "trc:SetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__SetTrackConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetTrackConfiguration(struct soap *soap, const char *URL, _trc__SetTrackConfiguration 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, "trc:SetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__SetTrackConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetTrackConfiguration(struct soap *soap, const char *URL, _trc__SetTrackConfiguration 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, "trc:SetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__SetTrackConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetTrackConfiguration * SOAP_FMAC4 soap_get__trc__SetTrackConfiguration(struct soap*, _trc__SetTrackConfiguration *, const char*, const char*); - -inline int soap_read__trc__SetTrackConfiguration(struct soap *soap, _trc__SetTrackConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetTrackConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetTrackConfiguration(struct soap *soap, const char *URL, _trc__SetTrackConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetTrackConfiguration(struct soap *soap, _trc__SetTrackConfiguration *p) -{ - if (::soap_read__trc__SetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetTrackConfigurationResponse_DEFINED -#define SOAP_TYPE__trc__GetTrackConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetTrackConfigurationResponse(struct soap*, const char*, int, const _trc__GetTrackConfigurationResponse *, const char*); -SOAP_FMAC3 _trc__GetTrackConfigurationResponse * SOAP_FMAC4 soap_in__trc__GetTrackConfigurationResponse(struct soap*, const char*, _trc__GetTrackConfigurationResponse *, const char*); -SOAP_FMAC1 _trc__GetTrackConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__GetTrackConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetTrackConfigurationResponse * soap_new__trc__GetTrackConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetTrackConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetTrackConfigurationResponse * soap_new_req__trc__GetTrackConfigurationResponse( - struct soap *soap, - tt__TrackConfiguration *TrackConfiguration) -{ - _trc__GetTrackConfigurationResponse *_p = ::soap_new__trc__GetTrackConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetTrackConfigurationResponse::TrackConfiguration = TrackConfiguration; - } - return _p; -} - -inline _trc__GetTrackConfigurationResponse * soap_new_set__trc__GetTrackConfigurationResponse( - struct soap *soap, - tt__TrackConfiguration *TrackConfiguration) -{ - _trc__GetTrackConfigurationResponse *_p = ::soap_new__trc__GetTrackConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetTrackConfigurationResponse::TrackConfiguration = TrackConfiguration; - } - return _p; -} - -inline int soap_write__trc__GetTrackConfigurationResponse(struct soap *soap, _trc__GetTrackConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__GetTrackConfigurationResponse 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, "trc:GetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__GetTrackConfigurationResponse 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, "trc:GetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__GetTrackConfigurationResponse 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, "trc:GetTrackConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetTrackConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetTrackConfigurationResponse * SOAP_FMAC4 soap_get__trc__GetTrackConfigurationResponse(struct soap*, _trc__GetTrackConfigurationResponse *, const char*, const char*); - -inline int soap_read__trc__GetTrackConfigurationResponse(struct soap *soap, _trc__GetTrackConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetTrackConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetTrackConfigurationResponse(struct soap *soap, const char *URL, _trc__GetTrackConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetTrackConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetTrackConfigurationResponse(struct soap *soap, _trc__GetTrackConfigurationResponse *p) -{ - if (::soap_read__trc__GetTrackConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetTrackConfiguration_DEFINED -#define SOAP_TYPE__trc__GetTrackConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetTrackConfiguration(struct soap*, const char*, int, const _trc__GetTrackConfiguration *, const char*); -SOAP_FMAC3 _trc__GetTrackConfiguration * SOAP_FMAC4 soap_in__trc__GetTrackConfiguration(struct soap*, const char*, _trc__GetTrackConfiguration *, const char*); -SOAP_FMAC1 _trc__GetTrackConfiguration * SOAP_FMAC2 soap_instantiate__trc__GetTrackConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetTrackConfiguration * soap_new__trc__GetTrackConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetTrackConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetTrackConfiguration * soap_new_req__trc__GetTrackConfiguration( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken) -{ - _trc__GetTrackConfiguration *_p = ::soap_new__trc__GetTrackConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetTrackConfiguration::RecordingToken = RecordingToken; - _p->_trc__GetTrackConfiguration::TrackToken = TrackToken; - } - return _p; -} - -inline _trc__GetTrackConfiguration * soap_new_set__trc__GetTrackConfiguration( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken) -{ - _trc__GetTrackConfiguration *_p = ::soap_new__trc__GetTrackConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetTrackConfiguration::RecordingToken = RecordingToken; - _p->_trc__GetTrackConfiguration::TrackToken = TrackToken; - } - return _p; -} - -inline int soap_write__trc__GetTrackConfiguration(struct soap *soap, _trc__GetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__GetTrackConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetTrackConfiguration(struct soap *soap, const char *URL, _trc__GetTrackConfiguration 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, "trc:GetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__GetTrackConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetTrackConfiguration(struct soap *soap, const char *URL, _trc__GetTrackConfiguration 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, "trc:GetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__GetTrackConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetTrackConfiguration(struct soap *soap, const char *URL, _trc__GetTrackConfiguration 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, "trc:GetTrackConfiguration", p->soap_type() == SOAP_TYPE__trc__GetTrackConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetTrackConfiguration * SOAP_FMAC4 soap_get__trc__GetTrackConfiguration(struct soap*, _trc__GetTrackConfiguration *, const char*, const char*); - -inline int soap_read__trc__GetTrackConfiguration(struct soap *soap, _trc__GetTrackConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetTrackConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetTrackConfiguration(struct soap *soap, const char *URL, _trc__GetTrackConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetTrackConfiguration(struct soap *soap, _trc__GetTrackConfiguration *p) -{ - if (::soap_read__trc__GetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__DeleteTrackResponse_DEFINED -#define SOAP_TYPE__trc__DeleteTrackResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteTrackResponse(struct soap*, const char*, int, const _trc__DeleteTrackResponse *, const char*); -SOAP_FMAC3 _trc__DeleteTrackResponse * SOAP_FMAC4 soap_in__trc__DeleteTrackResponse(struct soap*, const char*, _trc__DeleteTrackResponse *, const char*); -SOAP_FMAC1 _trc__DeleteTrackResponse * SOAP_FMAC2 soap_instantiate__trc__DeleteTrackResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__DeleteTrackResponse * soap_new__trc__DeleteTrackResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__DeleteTrackResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__DeleteTrackResponse * soap_new_req__trc__DeleteTrackResponse( - struct soap *soap) -{ - _trc__DeleteTrackResponse *_p = ::soap_new__trc__DeleteTrackResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__DeleteTrackResponse * soap_new_set__trc__DeleteTrackResponse( - struct soap *soap) -{ - _trc__DeleteTrackResponse *_p = ::soap_new__trc__DeleteTrackResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__DeleteTrackResponse(struct soap *soap, _trc__DeleteTrackResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:DeleteTrackResponse", p->soap_type() == SOAP_TYPE__trc__DeleteTrackResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__DeleteTrackResponse(struct soap *soap, const char *URL, _trc__DeleteTrackResponse 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, "trc:DeleteTrackResponse", p->soap_type() == SOAP_TYPE__trc__DeleteTrackResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__DeleteTrackResponse(struct soap *soap, const char *URL, _trc__DeleteTrackResponse 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, "trc:DeleteTrackResponse", p->soap_type() == SOAP_TYPE__trc__DeleteTrackResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__DeleteTrackResponse(struct soap *soap, const char *URL, _trc__DeleteTrackResponse 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, "trc:DeleteTrackResponse", p->soap_type() == SOAP_TYPE__trc__DeleteTrackResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__DeleteTrackResponse * SOAP_FMAC4 soap_get__trc__DeleteTrackResponse(struct soap*, _trc__DeleteTrackResponse *, const char*, const char*); - -inline int soap_read__trc__DeleteTrackResponse(struct soap *soap, _trc__DeleteTrackResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__DeleteTrackResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__DeleteTrackResponse(struct soap *soap, const char *URL, _trc__DeleteTrackResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__DeleteTrackResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__DeleteTrackResponse(struct soap *soap, _trc__DeleteTrackResponse *p) -{ - if (::soap_read__trc__DeleteTrackResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__DeleteTrack_DEFINED -#define SOAP_TYPE__trc__DeleteTrack_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteTrack(struct soap*, const char*, int, const _trc__DeleteTrack *, const char*); -SOAP_FMAC3 _trc__DeleteTrack * SOAP_FMAC4 soap_in__trc__DeleteTrack(struct soap*, const char*, _trc__DeleteTrack *, const char*); -SOAP_FMAC1 _trc__DeleteTrack * SOAP_FMAC2 soap_instantiate__trc__DeleteTrack(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__DeleteTrack * soap_new__trc__DeleteTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__DeleteTrack(soap, n, NULL, NULL, NULL); -} - -inline _trc__DeleteTrack * soap_new_req__trc__DeleteTrack( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken) -{ - _trc__DeleteTrack *_p = ::soap_new__trc__DeleteTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__DeleteTrack::RecordingToken = RecordingToken; - _p->_trc__DeleteTrack::TrackToken = TrackToken; - } - return _p; -} - -inline _trc__DeleteTrack * soap_new_set__trc__DeleteTrack( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken) -{ - _trc__DeleteTrack *_p = ::soap_new__trc__DeleteTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__DeleteTrack::RecordingToken = RecordingToken; - _p->_trc__DeleteTrack::TrackToken = TrackToken; - } - return _p; -} - -inline int soap_write__trc__DeleteTrack(struct soap *soap, _trc__DeleteTrack const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:DeleteTrack", p->soap_type() == SOAP_TYPE__trc__DeleteTrack ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__DeleteTrack(struct soap *soap, const char *URL, _trc__DeleteTrack 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, "trc:DeleteTrack", p->soap_type() == SOAP_TYPE__trc__DeleteTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__DeleteTrack(struct soap *soap, const char *URL, _trc__DeleteTrack 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, "trc:DeleteTrack", p->soap_type() == SOAP_TYPE__trc__DeleteTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__DeleteTrack(struct soap *soap, const char *URL, _trc__DeleteTrack 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, "trc:DeleteTrack", p->soap_type() == SOAP_TYPE__trc__DeleteTrack ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__DeleteTrack * SOAP_FMAC4 soap_get__trc__DeleteTrack(struct soap*, _trc__DeleteTrack *, const char*, const char*); - -inline int soap_read__trc__DeleteTrack(struct soap *soap, _trc__DeleteTrack *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__DeleteTrack(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__DeleteTrack(struct soap *soap, const char *URL, _trc__DeleteTrack *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__DeleteTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__DeleteTrack(struct soap *soap, _trc__DeleteTrack *p) -{ - if (::soap_read__trc__DeleteTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__CreateTrackResponse_DEFINED -#define SOAP_TYPE__trc__CreateTrackResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateTrackResponse(struct soap*, const char*, int, const _trc__CreateTrackResponse *, const char*); -SOAP_FMAC3 _trc__CreateTrackResponse * SOAP_FMAC4 soap_in__trc__CreateTrackResponse(struct soap*, const char*, _trc__CreateTrackResponse *, const char*); -SOAP_FMAC1 _trc__CreateTrackResponse * SOAP_FMAC2 soap_instantiate__trc__CreateTrackResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__CreateTrackResponse * soap_new__trc__CreateTrackResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__CreateTrackResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__CreateTrackResponse * soap_new_req__trc__CreateTrackResponse( - struct soap *soap, - const std::string& TrackToken) -{ - _trc__CreateTrackResponse *_p = ::soap_new__trc__CreateTrackResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateTrackResponse::TrackToken = TrackToken; - } - return _p; -} - -inline _trc__CreateTrackResponse * soap_new_set__trc__CreateTrackResponse( - struct soap *soap, - const std::string& TrackToken) -{ - _trc__CreateTrackResponse *_p = ::soap_new__trc__CreateTrackResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateTrackResponse::TrackToken = TrackToken; - } - return _p; -} - -inline int soap_write__trc__CreateTrackResponse(struct soap *soap, _trc__CreateTrackResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:CreateTrackResponse", p->soap_type() == SOAP_TYPE__trc__CreateTrackResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__CreateTrackResponse(struct soap *soap, const char *URL, _trc__CreateTrackResponse 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, "trc:CreateTrackResponse", p->soap_type() == SOAP_TYPE__trc__CreateTrackResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__CreateTrackResponse(struct soap *soap, const char *URL, _trc__CreateTrackResponse 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, "trc:CreateTrackResponse", p->soap_type() == SOAP_TYPE__trc__CreateTrackResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__CreateTrackResponse(struct soap *soap, const char *URL, _trc__CreateTrackResponse 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, "trc:CreateTrackResponse", p->soap_type() == SOAP_TYPE__trc__CreateTrackResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__CreateTrackResponse * SOAP_FMAC4 soap_get__trc__CreateTrackResponse(struct soap*, _trc__CreateTrackResponse *, const char*, const char*); - -inline int soap_read__trc__CreateTrackResponse(struct soap *soap, _trc__CreateTrackResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__CreateTrackResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__CreateTrackResponse(struct soap *soap, const char *URL, _trc__CreateTrackResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__CreateTrackResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__CreateTrackResponse(struct soap *soap, _trc__CreateTrackResponse *p) -{ - if (::soap_read__trc__CreateTrackResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__CreateTrack_DEFINED -#define SOAP_TYPE__trc__CreateTrack_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateTrack(struct soap*, const char*, int, const _trc__CreateTrack *, const char*); -SOAP_FMAC3 _trc__CreateTrack * SOAP_FMAC4 soap_in__trc__CreateTrack(struct soap*, const char*, _trc__CreateTrack *, const char*); -SOAP_FMAC1 _trc__CreateTrack * SOAP_FMAC2 soap_instantiate__trc__CreateTrack(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__CreateTrack * soap_new__trc__CreateTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__CreateTrack(soap, n, NULL, NULL, NULL); -} - -inline _trc__CreateTrack * soap_new_req__trc__CreateTrack( - struct soap *soap, - const std::string& RecordingToken, - tt__TrackConfiguration *TrackConfiguration) -{ - _trc__CreateTrack *_p = ::soap_new__trc__CreateTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateTrack::RecordingToken = RecordingToken; - _p->_trc__CreateTrack::TrackConfiguration = TrackConfiguration; - } - return _p; -} - -inline _trc__CreateTrack * soap_new_set__trc__CreateTrack( - struct soap *soap, - const std::string& RecordingToken, - tt__TrackConfiguration *TrackConfiguration) -{ - _trc__CreateTrack *_p = ::soap_new__trc__CreateTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateTrack::RecordingToken = RecordingToken; - _p->_trc__CreateTrack::TrackConfiguration = TrackConfiguration; - } - return _p; -} - -inline int soap_write__trc__CreateTrack(struct soap *soap, _trc__CreateTrack const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:CreateTrack", p->soap_type() == SOAP_TYPE__trc__CreateTrack ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__CreateTrack(struct soap *soap, const char *URL, _trc__CreateTrack 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, "trc:CreateTrack", p->soap_type() == SOAP_TYPE__trc__CreateTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__CreateTrack(struct soap *soap, const char *URL, _trc__CreateTrack 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, "trc:CreateTrack", p->soap_type() == SOAP_TYPE__trc__CreateTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__CreateTrack(struct soap *soap, const char *URL, _trc__CreateTrack 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, "trc:CreateTrack", p->soap_type() == SOAP_TYPE__trc__CreateTrack ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__CreateTrack * SOAP_FMAC4 soap_get__trc__CreateTrack(struct soap*, _trc__CreateTrack *, const char*, const char*); - -inline int soap_read__trc__CreateTrack(struct soap *soap, _trc__CreateTrack *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__CreateTrack(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__CreateTrack(struct soap *soap, const char *URL, _trc__CreateTrack *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__CreateTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__CreateTrack(struct soap *soap, _trc__CreateTrack *p) -{ - if (::soap_read__trc__CreateTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingConfigurationResponse_DEFINED -#define SOAP_TYPE__trc__GetRecordingConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingConfigurationResponse(struct soap*, const char*, int, const _trc__GetRecordingConfigurationResponse *, const char*); -SOAP_FMAC3 _trc__GetRecordingConfigurationResponse * SOAP_FMAC4 soap_in__trc__GetRecordingConfigurationResponse(struct soap*, const char*, _trc__GetRecordingConfigurationResponse *, const char*); -SOAP_FMAC1 _trc__GetRecordingConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingConfigurationResponse * soap_new__trc__GetRecordingConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingConfigurationResponse * soap_new_req__trc__GetRecordingConfigurationResponse( - struct soap *soap, - tt__RecordingConfiguration *RecordingConfiguration) -{ - _trc__GetRecordingConfigurationResponse *_p = ::soap_new__trc__GetRecordingConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingConfigurationResponse::RecordingConfiguration = RecordingConfiguration; - } - return _p; -} - -inline _trc__GetRecordingConfigurationResponse * soap_new_set__trc__GetRecordingConfigurationResponse( - struct soap *soap, - tt__RecordingConfiguration *RecordingConfiguration) -{ - _trc__GetRecordingConfigurationResponse *_p = ::soap_new__trc__GetRecordingConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingConfigurationResponse::RecordingConfiguration = RecordingConfiguration; - } - return _p; -} - -inline int soap_write__trc__GetRecordingConfigurationResponse(struct soap *soap, _trc__GetRecordingConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingConfigurationResponse 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, "trc:GetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingConfigurationResponse 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, "trc:GetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingConfigurationResponse 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, "trc:GetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingConfigurationResponse * SOAP_FMAC4 soap_get__trc__GetRecordingConfigurationResponse(struct soap*, _trc__GetRecordingConfigurationResponse *, const char*, const char*); - -inline int soap_read__trc__GetRecordingConfigurationResponse(struct soap *soap, _trc__GetRecordingConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__GetRecordingConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingConfigurationResponse(struct soap *soap, _trc__GetRecordingConfigurationResponse *p) -{ - if (::soap_read__trc__GetRecordingConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingConfiguration_DEFINED -#define SOAP_TYPE__trc__GetRecordingConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingConfiguration(struct soap*, const char*, int, const _trc__GetRecordingConfiguration *, const char*); -SOAP_FMAC3 _trc__GetRecordingConfiguration * SOAP_FMAC4 soap_in__trc__GetRecordingConfiguration(struct soap*, const char*, _trc__GetRecordingConfiguration *, const char*); -SOAP_FMAC1 _trc__GetRecordingConfiguration * SOAP_FMAC2 soap_instantiate__trc__GetRecordingConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingConfiguration * soap_new__trc__GetRecordingConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingConfiguration * soap_new_req__trc__GetRecordingConfiguration( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__GetRecordingConfiguration *_p = ::soap_new__trc__GetRecordingConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingConfiguration::RecordingToken = RecordingToken; - } - return _p; -} - -inline _trc__GetRecordingConfiguration * soap_new_set__trc__GetRecordingConfiguration( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__GetRecordingConfiguration *_p = ::soap_new__trc__GetRecordingConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingConfiguration::RecordingToken = RecordingToken; - } - return _p; -} - -inline int soap_write__trc__GetRecordingConfiguration(struct soap *soap, _trc__GetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingConfiguration 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, "trc:GetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingConfiguration 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, "trc:GetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingConfiguration 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, "trc:GetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__GetRecordingConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingConfiguration * SOAP_FMAC4 soap_get__trc__GetRecordingConfiguration(struct soap*, _trc__GetRecordingConfiguration *, const char*, const char*); - -inline int soap_read__trc__GetRecordingConfiguration(struct soap *soap, _trc__GetRecordingConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingConfiguration(struct soap *soap, const char *URL, _trc__GetRecordingConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingConfiguration(struct soap *soap, _trc__GetRecordingConfiguration *p) -{ - if (::soap_read__trc__GetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetRecordingConfigurationResponse_DEFINED -#define SOAP_TYPE__trc__SetRecordingConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingConfigurationResponse(struct soap*, const char*, int, const _trc__SetRecordingConfigurationResponse *, const char*); -SOAP_FMAC3 _trc__SetRecordingConfigurationResponse * SOAP_FMAC4 soap_in__trc__SetRecordingConfigurationResponse(struct soap*, const char*, _trc__SetRecordingConfigurationResponse *, const char*); -SOAP_FMAC1 _trc__SetRecordingConfigurationResponse * SOAP_FMAC2 soap_instantiate__trc__SetRecordingConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetRecordingConfigurationResponse * soap_new__trc__SetRecordingConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetRecordingConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetRecordingConfigurationResponse * soap_new_req__trc__SetRecordingConfigurationResponse( - struct soap *soap) -{ - _trc__SetRecordingConfigurationResponse *_p = ::soap_new__trc__SetRecordingConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__SetRecordingConfigurationResponse * soap_new_set__trc__SetRecordingConfigurationResponse( - struct soap *soap) -{ - _trc__SetRecordingConfigurationResponse *_p = ::soap_new__trc__SetRecordingConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__SetRecordingConfigurationResponse(struct soap *soap, _trc__SetRecordingConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingConfigurationResponse 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, "trc:SetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingConfigurationResponse 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, "trc:SetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingConfigurationResponse 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, "trc:SetRecordingConfigurationResponse", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetRecordingConfigurationResponse * SOAP_FMAC4 soap_get__trc__SetRecordingConfigurationResponse(struct soap*, _trc__SetRecordingConfigurationResponse *, const char*, const char*); - -inline int soap_read__trc__SetRecordingConfigurationResponse(struct soap *soap, _trc__SetRecordingConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetRecordingConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetRecordingConfigurationResponse(struct soap *soap, const char *URL, _trc__SetRecordingConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetRecordingConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetRecordingConfigurationResponse(struct soap *soap, _trc__SetRecordingConfigurationResponse *p) -{ - if (::soap_read__trc__SetRecordingConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__SetRecordingConfiguration_DEFINED -#define SOAP_TYPE__trc__SetRecordingConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__SetRecordingConfiguration(struct soap*, const char*, int, const _trc__SetRecordingConfiguration *, const char*); -SOAP_FMAC3 _trc__SetRecordingConfiguration * SOAP_FMAC4 soap_in__trc__SetRecordingConfiguration(struct soap*, const char*, _trc__SetRecordingConfiguration *, const char*); -SOAP_FMAC1 _trc__SetRecordingConfiguration * SOAP_FMAC2 soap_instantiate__trc__SetRecordingConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__SetRecordingConfiguration * soap_new__trc__SetRecordingConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__SetRecordingConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trc__SetRecordingConfiguration * soap_new_req__trc__SetRecordingConfiguration( - struct soap *soap, - const std::string& RecordingToken, - tt__RecordingConfiguration *RecordingConfiguration) -{ - _trc__SetRecordingConfiguration *_p = ::soap_new__trc__SetRecordingConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingConfiguration::RecordingToken = RecordingToken; - _p->_trc__SetRecordingConfiguration::RecordingConfiguration = RecordingConfiguration; - } - return _p; -} - -inline _trc__SetRecordingConfiguration * soap_new_set__trc__SetRecordingConfiguration( - struct soap *soap, - const std::string& RecordingToken, - tt__RecordingConfiguration *RecordingConfiguration) -{ - _trc__SetRecordingConfiguration *_p = ::soap_new__trc__SetRecordingConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__SetRecordingConfiguration::RecordingToken = RecordingToken; - _p->_trc__SetRecordingConfiguration::RecordingConfiguration = RecordingConfiguration; - } - return _p; -} - -inline int soap_write__trc__SetRecordingConfiguration(struct soap *soap, _trc__SetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:SetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__SetRecordingConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingConfiguration 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, "trc:SetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__SetRecordingConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingConfiguration 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, "trc:SetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__SetRecordingConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingConfiguration 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, "trc:SetRecordingConfiguration", p->soap_type() == SOAP_TYPE__trc__SetRecordingConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__SetRecordingConfiguration * SOAP_FMAC4 soap_get__trc__SetRecordingConfiguration(struct soap*, _trc__SetRecordingConfiguration *, const char*, const char*); - -inline int soap_read__trc__SetRecordingConfiguration(struct soap *soap, _trc__SetRecordingConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__SetRecordingConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__SetRecordingConfiguration(struct soap *soap, const char *URL, _trc__SetRecordingConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__SetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__SetRecordingConfiguration(struct soap *soap, _trc__SetRecordingConfiguration *p) -{ - if (::soap_read__trc__SetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordingsResponse_DEFINED -#define SOAP_TYPE__trc__GetRecordingsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordingsResponse(struct soap*, const char*, int, const _trc__GetRecordingsResponse *, const char*); -SOAP_FMAC3 _trc__GetRecordingsResponse * SOAP_FMAC4 soap_in__trc__GetRecordingsResponse(struct soap*, const char*, _trc__GetRecordingsResponse *, const char*); -SOAP_FMAC1 _trc__GetRecordingsResponse * SOAP_FMAC2 soap_instantiate__trc__GetRecordingsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordingsResponse * soap_new__trc__GetRecordingsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordingsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordingsResponse * soap_new_req__trc__GetRecordingsResponse( - struct soap *soap) -{ - _trc__GetRecordingsResponse *_p = ::soap_new__trc__GetRecordingsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__GetRecordingsResponse * soap_new_set__trc__GetRecordingsResponse( - struct soap *soap, - const std::vector & RecordingItem) -{ - _trc__GetRecordingsResponse *_p = ::soap_new__trc__GetRecordingsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetRecordingsResponse::RecordingItem = RecordingItem; - } - return _p; -} - -inline int soap_write__trc__GetRecordingsResponse(struct soap *soap, _trc__GetRecordingsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordingsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordingsResponse(struct soap *soap, const char *URL, _trc__GetRecordingsResponse 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, "trc:GetRecordingsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordingsResponse(struct soap *soap, const char *URL, _trc__GetRecordingsResponse 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, "trc:GetRecordingsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordingsResponse(struct soap *soap, const char *URL, _trc__GetRecordingsResponse 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, "trc:GetRecordingsResponse", p->soap_type() == SOAP_TYPE__trc__GetRecordingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordingsResponse * SOAP_FMAC4 soap_get__trc__GetRecordingsResponse(struct soap*, _trc__GetRecordingsResponse *, const char*, const char*); - -inline int soap_read__trc__GetRecordingsResponse(struct soap *soap, _trc__GetRecordingsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordingsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordingsResponse(struct soap *soap, const char *URL, _trc__GetRecordingsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordingsResponse(struct soap *soap, _trc__GetRecordingsResponse *p) -{ - if (::soap_read__trc__GetRecordingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetRecordings_DEFINED -#define SOAP_TYPE__trc__GetRecordings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetRecordings(struct soap*, const char*, int, const _trc__GetRecordings *, const char*); -SOAP_FMAC3 _trc__GetRecordings * SOAP_FMAC4 soap_in__trc__GetRecordings(struct soap*, const char*, _trc__GetRecordings *, const char*); -SOAP_FMAC1 _trc__GetRecordings * SOAP_FMAC2 soap_instantiate__trc__GetRecordings(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetRecordings * soap_new__trc__GetRecordings(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetRecordings(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetRecordings * soap_new_req__trc__GetRecordings( - struct soap *soap) -{ - _trc__GetRecordings *_p = ::soap_new__trc__GetRecordings(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__GetRecordings * soap_new_set__trc__GetRecordings( - struct soap *soap) -{ - _trc__GetRecordings *_p = ::soap_new__trc__GetRecordings(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__GetRecordings(struct soap *soap, _trc__GetRecordings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetRecordings", p->soap_type() == SOAP_TYPE__trc__GetRecordings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetRecordings(struct soap *soap, const char *URL, _trc__GetRecordings 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, "trc:GetRecordings", p->soap_type() == SOAP_TYPE__trc__GetRecordings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetRecordings(struct soap *soap, const char *URL, _trc__GetRecordings 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, "trc:GetRecordings", p->soap_type() == SOAP_TYPE__trc__GetRecordings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetRecordings(struct soap *soap, const char *URL, _trc__GetRecordings 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, "trc:GetRecordings", p->soap_type() == SOAP_TYPE__trc__GetRecordings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetRecordings * SOAP_FMAC4 soap_get__trc__GetRecordings(struct soap*, _trc__GetRecordings *, const char*, const char*); - -inline int soap_read__trc__GetRecordings(struct soap *soap, _trc__GetRecordings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetRecordings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetRecordings(struct soap *soap, const char *URL, _trc__GetRecordings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetRecordings(struct soap *soap, _trc__GetRecordings *p) -{ - if (::soap_read__trc__GetRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__DeleteRecordingResponse_DEFINED -#define SOAP_TYPE__trc__DeleteRecordingResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecordingResponse(struct soap*, const char*, int, const _trc__DeleteRecordingResponse *, const char*); -SOAP_FMAC3 _trc__DeleteRecordingResponse * SOAP_FMAC4 soap_in__trc__DeleteRecordingResponse(struct soap*, const char*, _trc__DeleteRecordingResponse *, const char*); -SOAP_FMAC1 _trc__DeleteRecordingResponse * SOAP_FMAC2 soap_instantiate__trc__DeleteRecordingResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__DeleteRecordingResponse * soap_new__trc__DeleteRecordingResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__DeleteRecordingResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__DeleteRecordingResponse * soap_new_req__trc__DeleteRecordingResponse( - struct soap *soap) -{ - _trc__DeleteRecordingResponse *_p = ::soap_new__trc__DeleteRecordingResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__DeleteRecordingResponse * soap_new_set__trc__DeleteRecordingResponse( - struct soap *soap) -{ - _trc__DeleteRecordingResponse *_p = ::soap_new__trc__DeleteRecordingResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__DeleteRecordingResponse(struct soap *soap, _trc__DeleteRecordingResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:DeleteRecordingResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__DeleteRecordingResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingResponse 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, "trc:DeleteRecordingResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__DeleteRecordingResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingResponse 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, "trc:DeleteRecordingResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__DeleteRecordingResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingResponse 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, "trc:DeleteRecordingResponse", p->soap_type() == SOAP_TYPE__trc__DeleteRecordingResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__DeleteRecordingResponse * SOAP_FMAC4 soap_get__trc__DeleteRecordingResponse(struct soap*, _trc__DeleteRecordingResponse *, const char*, const char*); - -inline int soap_read__trc__DeleteRecordingResponse(struct soap *soap, _trc__DeleteRecordingResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__DeleteRecordingResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__DeleteRecordingResponse(struct soap *soap, const char *URL, _trc__DeleteRecordingResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__DeleteRecordingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__DeleteRecordingResponse(struct soap *soap, _trc__DeleteRecordingResponse *p) -{ - if (::soap_read__trc__DeleteRecordingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__DeleteRecording_DEFINED -#define SOAP_TYPE__trc__DeleteRecording_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__DeleteRecording(struct soap*, const char*, int, const _trc__DeleteRecording *, const char*); -SOAP_FMAC3 _trc__DeleteRecording * SOAP_FMAC4 soap_in__trc__DeleteRecording(struct soap*, const char*, _trc__DeleteRecording *, const char*); -SOAP_FMAC1 _trc__DeleteRecording * SOAP_FMAC2 soap_instantiate__trc__DeleteRecording(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__DeleteRecording * soap_new__trc__DeleteRecording(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__DeleteRecording(soap, n, NULL, NULL, NULL); -} - -inline _trc__DeleteRecording * soap_new_req__trc__DeleteRecording( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__DeleteRecording *_p = ::soap_new__trc__DeleteRecording(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__DeleteRecording::RecordingToken = RecordingToken; - } - return _p; -} - -inline _trc__DeleteRecording * soap_new_set__trc__DeleteRecording( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__DeleteRecording *_p = ::soap_new__trc__DeleteRecording(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__DeleteRecording::RecordingToken = RecordingToken; - } - return _p; -} - -inline int soap_write__trc__DeleteRecording(struct soap *soap, _trc__DeleteRecording const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:DeleteRecording", p->soap_type() == SOAP_TYPE__trc__DeleteRecording ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__DeleteRecording(struct soap *soap, const char *URL, _trc__DeleteRecording 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, "trc:DeleteRecording", p->soap_type() == SOAP_TYPE__trc__DeleteRecording ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__DeleteRecording(struct soap *soap, const char *URL, _trc__DeleteRecording 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, "trc:DeleteRecording", p->soap_type() == SOAP_TYPE__trc__DeleteRecording ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__DeleteRecording(struct soap *soap, const char *URL, _trc__DeleteRecording 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, "trc:DeleteRecording", p->soap_type() == SOAP_TYPE__trc__DeleteRecording ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__DeleteRecording * SOAP_FMAC4 soap_get__trc__DeleteRecording(struct soap*, _trc__DeleteRecording *, const char*, const char*); - -inline int soap_read__trc__DeleteRecording(struct soap *soap, _trc__DeleteRecording *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__DeleteRecording(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__DeleteRecording(struct soap *soap, const char *URL, _trc__DeleteRecording *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__DeleteRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__DeleteRecording(struct soap *soap, _trc__DeleteRecording *p) -{ - if (::soap_read__trc__DeleteRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__CreateRecordingResponse_DEFINED -#define SOAP_TYPE__trc__CreateRecordingResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecordingResponse(struct soap*, const char*, int, const _trc__CreateRecordingResponse *, const char*); -SOAP_FMAC3 _trc__CreateRecordingResponse * SOAP_FMAC4 soap_in__trc__CreateRecordingResponse(struct soap*, const char*, _trc__CreateRecordingResponse *, const char*); -SOAP_FMAC1 _trc__CreateRecordingResponse * SOAP_FMAC2 soap_instantiate__trc__CreateRecordingResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__CreateRecordingResponse * soap_new__trc__CreateRecordingResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__CreateRecordingResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__CreateRecordingResponse * soap_new_req__trc__CreateRecordingResponse( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__CreateRecordingResponse *_p = ::soap_new__trc__CreateRecordingResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecordingResponse::RecordingToken = RecordingToken; - } - return _p; -} - -inline _trc__CreateRecordingResponse * soap_new_set__trc__CreateRecordingResponse( - struct soap *soap, - const std::string& RecordingToken) -{ - _trc__CreateRecordingResponse *_p = ::soap_new__trc__CreateRecordingResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecordingResponse::RecordingToken = RecordingToken; - } - return _p; -} - -inline int soap_write__trc__CreateRecordingResponse(struct soap *soap, _trc__CreateRecordingResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:CreateRecordingResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__CreateRecordingResponse(struct soap *soap, const char *URL, _trc__CreateRecordingResponse 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, "trc:CreateRecordingResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__CreateRecordingResponse(struct soap *soap, const char *URL, _trc__CreateRecordingResponse 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, "trc:CreateRecordingResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__CreateRecordingResponse(struct soap *soap, const char *URL, _trc__CreateRecordingResponse 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, "trc:CreateRecordingResponse", p->soap_type() == SOAP_TYPE__trc__CreateRecordingResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__CreateRecordingResponse * SOAP_FMAC4 soap_get__trc__CreateRecordingResponse(struct soap*, _trc__CreateRecordingResponse *, const char*, const char*); - -inline int soap_read__trc__CreateRecordingResponse(struct soap *soap, _trc__CreateRecordingResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__CreateRecordingResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__CreateRecordingResponse(struct soap *soap, const char *URL, _trc__CreateRecordingResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__CreateRecordingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__CreateRecordingResponse(struct soap *soap, _trc__CreateRecordingResponse *p) -{ - if (::soap_read__trc__CreateRecordingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__CreateRecording_DEFINED -#define SOAP_TYPE__trc__CreateRecording_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__CreateRecording(struct soap*, const char*, int, const _trc__CreateRecording *, const char*); -SOAP_FMAC3 _trc__CreateRecording * SOAP_FMAC4 soap_in__trc__CreateRecording(struct soap*, const char*, _trc__CreateRecording *, const char*); -SOAP_FMAC1 _trc__CreateRecording * SOAP_FMAC2 soap_instantiate__trc__CreateRecording(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__CreateRecording * soap_new__trc__CreateRecording(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__CreateRecording(soap, n, NULL, NULL, NULL); -} - -inline _trc__CreateRecording * soap_new_req__trc__CreateRecording( - struct soap *soap, - tt__RecordingConfiguration *RecordingConfiguration) -{ - _trc__CreateRecording *_p = ::soap_new__trc__CreateRecording(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecording::RecordingConfiguration = RecordingConfiguration; - } - return _p; -} - -inline _trc__CreateRecording * soap_new_set__trc__CreateRecording( - struct soap *soap, - tt__RecordingConfiguration *RecordingConfiguration) -{ - _trc__CreateRecording *_p = ::soap_new__trc__CreateRecording(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__CreateRecording::RecordingConfiguration = RecordingConfiguration; - } - return _p; -} - -inline int soap_write__trc__CreateRecording(struct soap *soap, _trc__CreateRecording const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:CreateRecording", p->soap_type() == SOAP_TYPE__trc__CreateRecording ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__CreateRecording(struct soap *soap, const char *URL, _trc__CreateRecording 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, "trc:CreateRecording", p->soap_type() == SOAP_TYPE__trc__CreateRecording ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__CreateRecording(struct soap *soap, const char *URL, _trc__CreateRecording 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, "trc:CreateRecording", p->soap_type() == SOAP_TYPE__trc__CreateRecording ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__CreateRecording(struct soap *soap, const char *URL, _trc__CreateRecording 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, "trc:CreateRecording", p->soap_type() == SOAP_TYPE__trc__CreateRecording ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__CreateRecording * SOAP_FMAC4 soap_get__trc__CreateRecording(struct soap*, _trc__CreateRecording *, const char*, const char*); - -inline int soap_read__trc__CreateRecording(struct soap *soap, _trc__CreateRecording *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__CreateRecording(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__CreateRecording(struct soap *soap, const char *URL, _trc__CreateRecording *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__CreateRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__CreateRecording(struct soap *soap, _trc__CreateRecording *p) -{ - if (::soap_read__trc__CreateRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__trc__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _trc__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _trc__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trc__GetServiceCapabilitiesResponse(struct soap*, const char*, _trc__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _trc__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trc__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetServiceCapabilitiesResponse * soap_new__trc__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetServiceCapabilitiesResponse * soap_new_req__trc__GetServiceCapabilitiesResponse( - struct soap *soap, - trc__Capabilities *Capabilities) -{ - _trc__GetServiceCapabilitiesResponse *_p = ::soap_new__trc__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _trc__GetServiceCapabilitiesResponse * soap_new_set__trc__GetServiceCapabilitiesResponse( - struct soap *soap, - trc__Capabilities *Capabilities) -{ - _trc__GetServiceCapabilitiesResponse *_p = ::soap_new__trc__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trc__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__trc__GetServiceCapabilitiesResponse(struct soap *soap, _trc__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trc__GetServiceCapabilitiesResponse 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, "trc:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trc__GetServiceCapabilitiesResponse 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, "trc:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trc__GetServiceCapabilitiesResponse 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, "trc:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trc__GetServiceCapabilitiesResponse(struct soap*, _trc__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__trc__GetServiceCapabilitiesResponse(struct soap *soap, _trc__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trc__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetServiceCapabilitiesResponse(struct soap *soap, _trc__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__trc__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trc__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__trc__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trc__GetServiceCapabilities(struct soap*, const char*, int, const _trc__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _trc__GetServiceCapabilities * SOAP_FMAC4 soap_in__trc__GetServiceCapabilities(struct soap*, const char*, _trc__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _trc__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trc__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _trc__GetServiceCapabilities * soap_new__trc__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__trc__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _trc__GetServiceCapabilities * soap_new_req__trc__GetServiceCapabilities( - struct soap *soap) -{ - _trc__GetServiceCapabilities *_p = ::soap_new__trc__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trc__GetServiceCapabilities * soap_new_set__trc__GetServiceCapabilities( - struct soap *soap) -{ - _trc__GetServiceCapabilities *_p = ::soap_new__trc__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trc__GetServiceCapabilities(struct soap *soap, _trc__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trc__GetServiceCapabilities(struct soap *soap, const char *URL, _trc__GetServiceCapabilities 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, "trc:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trc__GetServiceCapabilities(struct soap *soap, const char *URL, _trc__GetServiceCapabilities 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, "trc:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trc__GetServiceCapabilities(struct soap *soap, const char *URL, _trc__GetServiceCapabilities 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, "trc:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trc__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trc__GetServiceCapabilities * SOAP_FMAC4 soap_get__trc__GetServiceCapabilities(struct soap*, _trc__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__trc__GetServiceCapabilities(struct soap *soap, _trc__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trc__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trc__GetServiceCapabilities(struct soap *soap, const char *URL, _trc__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trc__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trc__GetServiceCapabilities(struct soap *soap, _trc__GetServiceCapabilities *p) -{ - if (::soap_read__trc__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trc__TrackOptions_DEFINED -#define SOAP_TYPE_trc__TrackOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__TrackOptions(struct soap*, const char*, int, const trc__TrackOptions *, const char*); -SOAP_FMAC3 trc__TrackOptions * SOAP_FMAC4 soap_in_trc__TrackOptions(struct soap*, const char*, trc__TrackOptions *, const char*); -SOAP_FMAC1 trc__TrackOptions * SOAP_FMAC2 soap_instantiate_trc__TrackOptions(struct soap*, int, const char*, const char*, size_t*); - -inline trc__TrackOptions * soap_new_trc__TrackOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_trc__TrackOptions(soap, n, NULL, NULL, NULL); -} - -inline trc__TrackOptions * soap_new_req_trc__TrackOptions( - struct soap *soap) -{ - trc__TrackOptions *_p = ::soap_new_trc__TrackOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline trc__TrackOptions * soap_new_set_trc__TrackOptions( - struct soap *soap, - int *SpareTotal, - int *SpareVideo, - int *SpareAudio, - int *SpareMetadata, - const struct soap_dom_attribute& __anyAttribute) -{ - trc__TrackOptions *_p = ::soap_new_trc__TrackOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->trc__TrackOptions::SpareTotal = SpareTotal; - _p->trc__TrackOptions::SpareVideo = SpareVideo; - _p->trc__TrackOptions::SpareAudio = SpareAudio; - _p->trc__TrackOptions::SpareMetadata = SpareMetadata; - _p->trc__TrackOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trc__TrackOptions(struct soap *soap, trc__TrackOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:TrackOptions", p->soap_type() == SOAP_TYPE_trc__TrackOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trc__TrackOptions(struct soap *soap, const char *URL, trc__TrackOptions 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, "trc:TrackOptions", p->soap_type() == SOAP_TYPE_trc__TrackOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trc__TrackOptions(struct soap *soap, const char *URL, trc__TrackOptions 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, "trc:TrackOptions", p->soap_type() == SOAP_TYPE_trc__TrackOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trc__TrackOptions(struct soap *soap, const char *URL, trc__TrackOptions 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, "trc:TrackOptions", p->soap_type() == SOAP_TYPE_trc__TrackOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trc__TrackOptions * SOAP_FMAC4 soap_get_trc__TrackOptions(struct soap*, trc__TrackOptions *, const char*, const char*); - -inline int soap_read_trc__TrackOptions(struct soap *soap, trc__TrackOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trc__TrackOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trc__TrackOptions(struct soap *soap, const char *URL, trc__TrackOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trc__TrackOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trc__TrackOptions(struct soap *soap, trc__TrackOptions *p) -{ - if (::soap_read_trc__TrackOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trc__JobOptions_DEFINED -#define SOAP_TYPE_trc__JobOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__JobOptions(struct soap*, const char*, int, const trc__JobOptions *, const char*); -SOAP_FMAC3 trc__JobOptions * SOAP_FMAC4 soap_in_trc__JobOptions(struct soap*, const char*, trc__JobOptions *, const char*); -SOAP_FMAC1 trc__JobOptions * SOAP_FMAC2 soap_instantiate_trc__JobOptions(struct soap*, int, const char*, const char*, size_t*); - -inline trc__JobOptions * soap_new_trc__JobOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_trc__JobOptions(soap, n, NULL, NULL, NULL); -} - -inline trc__JobOptions * soap_new_req_trc__JobOptions( - struct soap *soap) -{ - trc__JobOptions *_p = ::soap_new_trc__JobOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline trc__JobOptions * soap_new_set_trc__JobOptions( - struct soap *soap, - int *Spare, - std::string *CompatibleSources, - const struct soap_dom_attribute& __anyAttribute) -{ - trc__JobOptions *_p = ::soap_new_trc__JobOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->trc__JobOptions::Spare = Spare; - _p->trc__JobOptions::CompatibleSources = CompatibleSources; - _p->trc__JobOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trc__JobOptions(struct soap *soap, trc__JobOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:JobOptions", p->soap_type() == SOAP_TYPE_trc__JobOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trc__JobOptions(struct soap *soap, const char *URL, trc__JobOptions 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, "trc:JobOptions", p->soap_type() == SOAP_TYPE_trc__JobOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trc__JobOptions(struct soap *soap, const char *URL, trc__JobOptions 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, "trc:JobOptions", p->soap_type() == SOAP_TYPE_trc__JobOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trc__JobOptions(struct soap *soap, const char *URL, trc__JobOptions 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, "trc:JobOptions", p->soap_type() == SOAP_TYPE_trc__JobOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trc__JobOptions * SOAP_FMAC4 soap_get_trc__JobOptions(struct soap*, trc__JobOptions *, const char*, const char*); - -inline int soap_read_trc__JobOptions(struct soap *soap, trc__JobOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trc__JobOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trc__JobOptions(struct soap *soap, const char *URL, trc__JobOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trc__JobOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trc__JobOptions(struct soap *soap, trc__JobOptions *p) -{ - if (::soap_read_trc__JobOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trc__RecordingOptions_DEFINED -#define SOAP_TYPE_trc__RecordingOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__RecordingOptions(struct soap*, const char*, int, const trc__RecordingOptions *, const char*); -SOAP_FMAC3 trc__RecordingOptions * SOAP_FMAC4 soap_in_trc__RecordingOptions(struct soap*, const char*, trc__RecordingOptions *, const char*); -SOAP_FMAC1 trc__RecordingOptions * SOAP_FMAC2 soap_instantiate_trc__RecordingOptions(struct soap*, int, const char*, const char*, size_t*); - -inline trc__RecordingOptions * soap_new_trc__RecordingOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_trc__RecordingOptions(soap, n, NULL, NULL, NULL); -} - -inline trc__RecordingOptions * soap_new_req_trc__RecordingOptions( - struct soap *soap, - trc__JobOptions *Job, - trc__TrackOptions *Track) -{ - trc__RecordingOptions *_p = ::soap_new_trc__RecordingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->trc__RecordingOptions::Job = Job; - _p->trc__RecordingOptions::Track = Track; - } - return _p; -} - -inline trc__RecordingOptions * soap_new_set_trc__RecordingOptions( - struct soap *soap, - trc__JobOptions *Job, - trc__TrackOptions *Track, - const std::vector & __any) -{ - trc__RecordingOptions *_p = ::soap_new_trc__RecordingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->trc__RecordingOptions::Job = Job; - _p->trc__RecordingOptions::Track = Track; - _p->trc__RecordingOptions::__any = __any; - } - return _p; -} - -inline int soap_write_trc__RecordingOptions(struct soap *soap, trc__RecordingOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:RecordingOptions", p->soap_type() == SOAP_TYPE_trc__RecordingOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trc__RecordingOptions(struct soap *soap, const char *URL, trc__RecordingOptions 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, "trc:RecordingOptions", p->soap_type() == SOAP_TYPE_trc__RecordingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trc__RecordingOptions(struct soap *soap, const char *URL, trc__RecordingOptions 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, "trc:RecordingOptions", p->soap_type() == SOAP_TYPE_trc__RecordingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trc__RecordingOptions(struct soap *soap, const char *URL, trc__RecordingOptions 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, "trc:RecordingOptions", p->soap_type() == SOAP_TYPE_trc__RecordingOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trc__RecordingOptions * SOAP_FMAC4 soap_get_trc__RecordingOptions(struct soap*, trc__RecordingOptions *, const char*, const char*); - -inline int soap_read_trc__RecordingOptions(struct soap *soap, trc__RecordingOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trc__RecordingOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trc__RecordingOptions(struct soap *soap, const char *URL, trc__RecordingOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trc__RecordingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trc__RecordingOptions(struct soap *soap, trc__RecordingOptions *p) -{ - if (::soap_read_trc__RecordingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trc__Capabilities_DEFINED -#define SOAP_TYPE_trc__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trc__Capabilities(struct soap*, const char*, int, const trc__Capabilities *, const char*); -SOAP_FMAC3 trc__Capabilities * SOAP_FMAC4 soap_in_trc__Capabilities(struct soap*, const char*, trc__Capabilities *, const char*); -SOAP_FMAC1 trc__Capabilities * SOAP_FMAC2 soap_instantiate_trc__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline trc__Capabilities * soap_new_trc__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_trc__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline trc__Capabilities * soap_new_req_trc__Capabilities( - struct soap *soap) -{ - trc__Capabilities *_p = ::soap_new_trc__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline trc__Capabilities * soap_new_set_trc__Capabilities( - struct soap *soap, - const std::vector & __any, - bool *DynamicRecordings, - bool *DynamicTracks, - std::string *Encoding, - float *MaxRate, - float *MaxTotalRate, - float *MaxRecordings, - int *MaxRecordingJobs, - bool *Options, - bool *MetadataRecording, - std::string *SupportedExportFileFormats, - const struct soap_dom_attribute& __anyAttribute) -{ - trc__Capabilities *_p = ::soap_new_trc__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trc__Capabilities::__any = __any; - _p->trc__Capabilities::DynamicRecordings = DynamicRecordings; - _p->trc__Capabilities::DynamicTracks = DynamicTracks; - _p->trc__Capabilities::Encoding = Encoding; - _p->trc__Capabilities::MaxRate = MaxRate; - _p->trc__Capabilities::MaxTotalRate = MaxTotalRate; - _p->trc__Capabilities::MaxRecordings = MaxRecordings; - _p->trc__Capabilities::MaxRecordingJobs = MaxRecordingJobs; - _p->trc__Capabilities::Options = Options; - _p->trc__Capabilities::MetadataRecording = MetadataRecording; - _p->trc__Capabilities::SupportedExportFileFormats = SupportedExportFileFormats; - _p->trc__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trc__Capabilities(struct soap *soap, trc__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trc:Capabilities", p->soap_type() == SOAP_TYPE_trc__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trc__Capabilities(struct soap *soap, const char *URL, trc__Capabilities 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, "trc:Capabilities", p->soap_type() == SOAP_TYPE_trc__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trc__Capabilities(struct soap *soap, const char *URL, trc__Capabilities 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, "trc:Capabilities", p->soap_type() == SOAP_TYPE_trc__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trc__Capabilities(struct soap *soap, const char *URL, trc__Capabilities 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, "trc:Capabilities", p->soap_type() == SOAP_TYPE_trc__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trc__Capabilities * SOAP_FMAC4 soap_get_trc__Capabilities(struct soap*, trc__Capabilities *, const char*, const char*); - -inline int soap_read_trc__Capabilities(struct soap *soap, trc__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trc__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trc__Capabilities(struct soap *soap, const char *URL, trc__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trc__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trc__Capabilities(struct soap *soap, trc__Capabilities *p) -{ - if (::soap_read_trc__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetReceiverStateResponse_DEFINED -#define SOAP_TYPE__trv__GetReceiverStateResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiverStateResponse(struct soap*, const char*, int, const _trv__GetReceiverStateResponse *, const char*); -SOAP_FMAC3 _trv__GetReceiverStateResponse * SOAP_FMAC4 soap_in__trv__GetReceiverStateResponse(struct soap*, const char*, _trv__GetReceiverStateResponse *, const char*); -SOAP_FMAC1 _trv__GetReceiverStateResponse * SOAP_FMAC2 soap_instantiate__trv__GetReceiverStateResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetReceiverStateResponse * soap_new__trv__GetReceiverStateResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetReceiverStateResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetReceiverStateResponse * soap_new_req__trv__GetReceiverStateResponse( - struct soap *soap, - tt__ReceiverStateInformation *ReceiverState) -{ - _trv__GetReceiverStateResponse *_p = ::soap_new__trv__GetReceiverStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiverStateResponse::ReceiverState = ReceiverState; - } - return _p; -} - -inline _trv__GetReceiverStateResponse * soap_new_set__trv__GetReceiverStateResponse( - struct soap *soap, - tt__ReceiverStateInformation *ReceiverState) -{ - _trv__GetReceiverStateResponse *_p = ::soap_new__trv__GetReceiverStateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiverStateResponse::ReceiverState = ReceiverState; - } - return _p; -} - -inline int soap_write__trv__GetReceiverStateResponse(struct soap *soap, _trv__GetReceiverStateResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetReceiverStateResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetReceiverStateResponse(struct soap *soap, const char *URL, _trv__GetReceiverStateResponse 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, "trv:GetReceiverStateResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetReceiverStateResponse(struct soap *soap, const char *URL, _trv__GetReceiverStateResponse 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, "trv:GetReceiverStateResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetReceiverStateResponse(struct soap *soap, const char *URL, _trv__GetReceiverStateResponse 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, "trv:GetReceiverStateResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetReceiverStateResponse * SOAP_FMAC4 soap_get__trv__GetReceiverStateResponse(struct soap*, _trv__GetReceiverStateResponse *, const char*, const char*); - -inline int soap_read__trv__GetReceiverStateResponse(struct soap *soap, _trv__GetReceiverStateResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetReceiverStateResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetReceiverStateResponse(struct soap *soap, const char *URL, _trv__GetReceiverStateResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetReceiverStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetReceiverStateResponse(struct soap *soap, _trv__GetReceiverStateResponse *p) -{ - if (::soap_read__trv__GetReceiverStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetReceiverState_DEFINED -#define SOAP_TYPE__trv__GetReceiverState_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiverState(struct soap*, const char*, int, const _trv__GetReceiverState *, const char*); -SOAP_FMAC3 _trv__GetReceiverState * SOAP_FMAC4 soap_in__trv__GetReceiverState(struct soap*, const char*, _trv__GetReceiverState *, const char*); -SOAP_FMAC1 _trv__GetReceiverState * SOAP_FMAC2 soap_instantiate__trv__GetReceiverState(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetReceiverState * soap_new__trv__GetReceiverState(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetReceiverState(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetReceiverState * soap_new_req__trv__GetReceiverState( - struct soap *soap, - const std::string& ReceiverToken) -{ - _trv__GetReceiverState *_p = ::soap_new__trv__GetReceiverState(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiverState::ReceiverToken = ReceiverToken; - } - return _p; -} - -inline _trv__GetReceiverState * soap_new_set__trv__GetReceiverState( - struct soap *soap, - const std::string& ReceiverToken) -{ - _trv__GetReceiverState *_p = ::soap_new__trv__GetReceiverState(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiverState::ReceiverToken = ReceiverToken; - } - return _p; -} - -inline int soap_write__trv__GetReceiverState(struct soap *soap, _trv__GetReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetReceiverState", p->soap_type() == SOAP_TYPE__trv__GetReceiverState ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetReceiverState(struct soap *soap, const char *URL, _trv__GetReceiverState 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, "trv:GetReceiverState", p->soap_type() == SOAP_TYPE__trv__GetReceiverState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetReceiverState(struct soap *soap, const char *URL, _trv__GetReceiverState 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, "trv:GetReceiverState", p->soap_type() == SOAP_TYPE__trv__GetReceiverState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetReceiverState(struct soap *soap, const char *URL, _trv__GetReceiverState 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, "trv:GetReceiverState", p->soap_type() == SOAP_TYPE__trv__GetReceiverState ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetReceiverState * SOAP_FMAC4 soap_get__trv__GetReceiverState(struct soap*, _trv__GetReceiverState *, const char*, const char*); - -inline int soap_read__trv__GetReceiverState(struct soap *soap, _trv__GetReceiverState *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetReceiverState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetReceiverState(struct soap *soap, const char *URL, _trv__GetReceiverState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetReceiverState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetReceiverState(struct soap *soap, _trv__GetReceiverState *p) -{ - if (::soap_read__trv__GetReceiverState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__SetReceiverModeResponse_DEFINED -#define SOAP_TYPE__trv__SetReceiverModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__SetReceiverModeResponse(struct soap*, const char*, int, const _trv__SetReceiverModeResponse *, const char*); -SOAP_FMAC3 _trv__SetReceiverModeResponse * SOAP_FMAC4 soap_in__trv__SetReceiverModeResponse(struct soap*, const char*, _trv__SetReceiverModeResponse *, const char*); -SOAP_FMAC1 _trv__SetReceiverModeResponse * SOAP_FMAC2 soap_instantiate__trv__SetReceiverModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__SetReceiverModeResponse * soap_new__trv__SetReceiverModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__SetReceiverModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__SetReceiverModeResponse * soap_new_req__trv__SetReceiverModeResponse( - struct soap *soap) -{ - _trv__SetReceiverModeResponse *_p = ::soap_new__trv__SetReceiverModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trv__SetReceiverModeResponse * soap_new_set__trv__SetReceiverModeResponse( - struct soap *soap) -{ - _trv__SetReceiverModeResponse *_p = ::soap_new__trv__SetReceiverModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trv__SetReceiverModeResponse(struct soap *soap, _trv__SetReceiverModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:SetReceiverModeResponse", p->soap_type() == SOAP_TYPE__trv__SetReceiverModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__SetReceiverModeResponse(struct soap *soap, const char *URL, _trv__SetReceiverModeResponse 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, "trv:SetReceiverModeResponse", p->soap_type() == SOAP_TYPE__trv__SetReceiverModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__SetReceiverModeResponse(struct soap *soap, const char *URL, _trv__SetReceiverModeResponse 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, "trv:SetReceiverModeResponse", p->soap_type() == SOAP_TYPE__trv__SetReceiverModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__SetReceiverModeResponse(struct soap *soap, const char *URL, _trv__SetReceiverModeResponse 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, "trv:SetReceiverModeResponse", p->soap_type() == SOAP_TYPE__trv__SetReceiverModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__SetReceiverModeResponse * SOAP_FMAC4 soap_get__trv__SetReceiverModeResponse(struct soap*, _trv__SetReceiverModeResponse *, const char*, const char*); - -inline int soap_read__trv__SetReceiverModeResponse(struct soap *soap, _trv__SetReceiverModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__SetReceiverModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__SetReceiverModeResponse(struct soap *soap, const char *URL, _trv__SetReceiverModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__SetReceiverModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__SetReceiverModeResponse(struct soap *soap, _trv__SetReceiverModeResponse *p) -{ - if (::soap_read__trv__SetReceiverModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__SetReceiverMode_DEFINED -#define SOAP_TYPE__trv__SetReceiverMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__SetReceiverMode(struct soap*, const char*, int, const _trv__SetReceiverMode *, const char*); -SOAP_FMAC3 _trv__SetReceiverMode * SOAP_FMAC4 soap_in__trv__SetReceiverMode(struct soap*, const char*, _trv__SetReceiverMode *, const char*); -SOAP_FMAC1 _trv__SetReceiverMode * SOAP_FMAC2 soap_instantiate__trv__SetReceiverMode(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__SetReceiverMode * soap_new__trv__SetReceiverMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__SetReceiverMode(soap, n, NULL, NULL, NULL); -} - -inline _trv__SetReceiverMode * soap_new_req__trv__SetReceiverMode( - struct soap *soap, - const std::string& ReceiverToken, - enum tt__ReceiverMode Mode) -{ - _trv__SetReceiverMode *_p = ::soap_new__trv__SetReceiverMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__SetReceiverMode::ReceiverToken = ReceiverToken; - _p->_trv__SetReceiverMode::Mode = Mode; - } - return _p; -} - -inline _trv__SetReceiverMode * soap_new_set__trv__SetReceiverMode( - struct soap *soap, - const std::string& ReceiverToken, - enum tt__ReceiverMode Mode) -{ - _trv__SetReceiverMode *_p = ::soap_new__trv__SetReceiverMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__SetReceiverMode::ReceiverToken = ReceiverToken; - _p->_trv__SetReceiverMode::Mode = Mode; - } - return _p; -} - -inline int soap_write__trv__SetReceiverMode(struct soap *soap, _trv__SetReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:SetReceiverMode", p->soap_type() == SOAP_TYPE__trv__SetReceiverMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__SetReceiverMode(struct soap *soap, const char *URL, _trv__SetReceiverMode 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, "trv:SetReceiverMode", p->soap_type() == SOAP_TYPE__trv__SetReceiverMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__SetReceiverMode(struct soap *soap, const char *URL, _trv__SetReceiverMode 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, "trv:SetReceiverMode", p->soap_type() == SOAP_TYPE__trv__SetReceiverMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__SetReceiverMode(struct soap *soap, const char *URL, _trv__SetReceiverMode 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, "trv:SetReceiverMode", p->soap_type() == SOAP_TYPE__trv__SetReceiverMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__SetReceiverMode * SOAP_FMAC4 soap_get__trv__SetReceiverMode(struct soap*, _trv__SetReceiverMode *, const char*, const char*); - -inline int soap_read__trv__SetReceiverMode(struct soap *soap, _trv__SetReceiverMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__SetReceiverMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__SetReceiverMode(struct soap *soap, const char *URL, _trv__SetReceiverMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__SetReceiverMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__SetReceiverMode(struct soap *soap, _trv__SetReceiverMode *p) -{ - if (::soap_read__trv__SetReceiverMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__ConfigureReceiverResponse_DEFINED -#define SOAP_TYPE__trv__ConfigureReceiverResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__ConfigureReceiverResponse(struct soap*, const char*, int, const _trv__ConfigureReceiverResponse *, const char*); -SOAP_FMAC3 _trv__ConfigureReceiverResponse * SOAP_FMAC4 soap_in__trv__ConfigureReceiverResponse(struct soap*, const char*, _trv__ConfigureReceiverResponse *, const char*); -SOAP_FMAC1 _trv__ConfigureReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__ConfigureReceiverResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__ConfigureReceiverResponse * soap_new__trv__ConfigureReceiverResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__ConfigureReceiverResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__ConfigureReceiverResponse * soap_new_req__trv__ConfigureReceiverResponse( - struct soap *soap) -{ - _trv__ConfigureReceiverResponse *_p = ::soap_new__trv__ConfigureReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trv__ConfigureReceiverResponse * soap_new_set__trv__ConfigureReceiverResponse( - struct soap *soap) -{ - _trv__ConfigureReceiverResponse *_p = ::soap_new__trv__ConfigureReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trv__ConfigureReceiverResponse(struct soap *soap, _trv__ConfigureReceiverResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:ConfigureReceiverResponse", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__ConfigureReceiverResponse(struct soap *soap, const char *URL, _trv__ConfigureReceiverResponse 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, "trv:ConfigureReceiverResponse", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__ConfigureReceiverResponse(struct soap *soap, const char *URL, _trv__ConfigureReceiverResponse 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, "trv:ConfigureReceiverResponse", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__ConfigureReceiverResponse(struct soap *soap, const char *URL, _trv__ConfigureReceiverResponse 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, "trv:ConfigureReceiverResponse", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__ConfigureReceiverResponse * SOAP_FMAC4 soap_get__trv__ConfigureReceiverResponse(struct soap*, _trv__ConfigureReceiverResponse *, const char*, const char*); - -inline int soap_read__trv__ConfigureReceiverResponse(struct soap *soap, _trv__ConfigureReceiverResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__ConfigureReceiverResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__ConfigureReceiverResponse(struct soap *soap, const char *URL, _trv__ConfigureReceiverResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__ConfigureReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__ConfigureReceiverResponse(struct soap *soap, _trv__ConfigureReceiverResponse *p) -{ - if (::soap_read__trv__ConfigureReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__ConfigureReceiver_DEFINED -#define SOAP_TYPE__trv__ConfigureReceiver_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__ConfigureReceiver(struct soap*, const char*, int, const _trv__ConfigureReceiver *, const char*); -SOAP_FMAC3 _trv__ConfigureReceiver * SOAP_FMAC4 soap_in__trv__ConfigureReceiver(struct soap*, const char*, _trv__ConfigureReceiver *, const char*); -SOAP_FMAC1 _trv__ConfigureReceiver * SOAP_FMAC2 soap_instantiate__trv__ConfigureReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__ConfigureReceiver * soap_new__trv__ConfigureReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__ConfigureReceiver(soap, n, NULL, NULL, NULL); -} - -inline _trv__ConfigureReceiver * soap_new_req__trv__ConfigureReceiver( - struct soap *soap, - const std::string& ReceiverToken, - tt__ReceiverConfiguration *Configuration) -{ - _trv__ConfigureReceiver *_p = ::soap_new__trv__ConfigureReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__ConfigureReceiver::ReceiverToken = ReceiverToken; - _p->_trv__ConfigureReceiver::Configuration = Configuration; - } - return _p; -} - -inline _trv__ConfigureReceiver * soap_new_set__trv__ConfigureReceiver( - struct soap *soap, - const std::string& ReceiverToken, - tt__ReceiverConfiguration *Configuration) -{ - _trv__ConfigureReceiver *_p = ::soap_new__trv__ConfigureReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__ConfigureReceiver::ReceiverToken = ReceiverToken; - _p->_trv__ConfigureReceiver::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trv__ConfigureReceiver(struct soap *soap, _trv__ConfigureReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:ConfigureReceiver", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiver ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__ConfigureReceiver(struct soap *soap, const char *URL, _trv__ConfigureReceiver 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, "trv:ConfigureReceiver", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__ConfigureReceiver(struct soap *soap, const char *URL, _trv__ConfigureReceiver 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, "trv:ConfigureReceiver", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__ConfigureReceiver(struct soap *soap, const char *URL, _trv__ConfigureReceiver 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, "trv:ConfigureReceiver", p->soap_type() == SOAP_TYPE__trv__ConfigureReceiver ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__ConfigureReceiver * SOAP_FMAC4 soap_get__trv__ConfigureReceiver(struct soap*, _trv__ConfigureReceiver *, const char*, const char*); - -inline int soap_read__trv__ConfigureReceiver(struct soap *soap, _trv__ConfigureReceiver *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__ConfigureReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__ConfigureReceiver(struct soap *soap, const char *URL, _trv__ConfigureReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__ConfigureReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__ConfigureReceiver(struct soap *soap, _trv__ConfigureReceiver *p) -{ - if (::soap_read__trv__ConfigureReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__DeleteReceiverResponse_DEFINED -#define SOAP_TYPE__trv__DeleteReceiverResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__DeleteReceiverResponse(struct soap*, const char*, int, const _trv__DeleteReceiverResponse *, const char*); -SOAP_FMAC3 _trv__DeleteReceiverResponse * SOAP_FMAC4 soap_in__trv__DeleteReceiverResponse(struct soap*, const char*, _trv__DeleteReceiverResponse *, const char*); -SOAP_FMAC1 _trv__DeleteReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__DeleteReceiverResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__DeleteReceiverResponse * soap_new__trv__DeleteReceiverResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__DeleteReceiverResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__DeleteReceiverResponse * soap_new_req__trv__DeleteReceiverResponse( - struct soap *soap) -{ - _trv__DeleteReceiverResponse *_p = ::soap_new__trv__DeleteReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trv__DeleteReceiverResponse * soap_new_set__trv__DeleteReceiverResponse( - struct soap *soap) -{ - _trv__DeleteReceiverResponse *_p = ::soap_new__trv__DeleteReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trv__DeleteReceiverResponse(struct soap *soap, _trv__DeleteReceiverResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:DeleteReceiverResponse", p->soap_type() == SOAP_TYPE__trv__DeleteReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__DeleteReceiverResponse(struct soap *soap, const char *URL, _trv__DeleteReceiverResponse 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, "trv:DeleteReceiverResponse", p->soap_type() == SOAP_TYPE__trv__DeleteReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__DeleteReceiverResponse(struct soap *soap, const char *URL, _trv__DeleteReceiverResponse 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, "trv:DeleteReceiverResponse", p->soap_type() == SOAP_TYPE__trv__DeleteReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__DeleteReceiverResponse(struct soap *soap, const char *URL, _trv__DeleteReceiverResponse 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, "trv:DeleteReceiverResponse", p->soap_type() == SOAP_TYPE__trv__DeleteReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__DeleteReceiverResponse * SOAP_FMAC4 soap_get__trv__DeleteReceiverResponse(struct soap*, _trv__DeleteReceiverResponse *, const char*, const char*); - -inline int soap_read__trv__DeleteReceiverResponse(struct soap *soap, _trv__DeleteReceiverResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__DeleteReceiverResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__DeleteReceiverResponse(struct soap *soap, const char *URL, _trv__DeleteReceiverResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__DeleteReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__DeleteReceiverResponse(struct soap *soap, _trv__DeleteReceiverResponse *p) -{ - if (::soap_read__trv__DeleteReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__DeleteReceiver_DEFINED -#define SOAP_TYPE__trv__DeleteReceiver_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__DeleteReceiver(struct soap*, const char*, int, const _trv__DeleteReceiver *, const char*); -SOAP_FMAC3 _trv__DeleteReceiver * SOAP_FMAC4 soap_in__trv__DeleteReceiver(struct soap*, const char*, _trv__DeleteReceiver *, const char*); -SOAP_FMAC1 _trv__DeleteReceiver * SOAP_FMAC2 soap_instantiate__trv__DeleteReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__DeleteReceiver * soap_new__trv__DeleteReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__DeleteReceiver(soap, n, NULL, NULL, NULL); -} - -inline _trv__DeleteReceiver * soap_new_req__trv__DeleteReceiver( - struct soap *soap, - const std::string& ReceiverToken) -{ - _trv__DeleteReceiver *_p = ::soap_new__trv__DeleteReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__DeleteReceiver::ReceiverToken = ReceiverToken; - } - return _p; -} - -inline _trv__DeleteReceiver * soap_new_set__trv__DeleteReceiver( - struct soap *soap, - const std::string& ReceiverToken) -{ - _trv__DeleteReceiver *_p = ::soap_new__trv__DeleteReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__DeleteReceiver::ReceiverToken = ReceiverToken; - } - return _p; -} - -inline int soap_write__trv__DeleteReceiver(struct soap *soap, _trv__DeleteReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:DeleteReceiver", p->soap_type() == SOAP_TYPE__trv__DeleteReceiver ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__DeleteReceiver(struct soap *soap, const char *URL, _trv__DeleteReceiver 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, "trv:DeleteReceiver", p->soap_type() == SOAP_TYPE__trv__DeleteReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__DeleteReceiver(struct soap *soap, const char *URL, _trv__DeleteReceiver 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, "trv:DeleteReceiver", p->soap_type() == SOAP_TYPE__trv__DeleteReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__DeleteReceiver(struct soap *soap, const char *URL, _trv__DeleteReceiver 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, "trv:DeleteReceiver", p->soap_type() == SOAP_TYPE__trv__DeleteReceiver ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__DeleteReceiver * SOAP_FMAC4 soap_get__trv__DeleteReceiver(struct soap*, _trv__DeleteReceiver *, const char*, const char*); - -inline int soap_read__trv__DeleteReceiver(struct soap *soap, _trv__DeleteReceiver *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__DeleteReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__DeleteReceiver(struct soap *soap, const char *URL, _trv__DeleteReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__DeleteReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__DeleteReceiver(struct soap *soap, _trv__DeleteReceiver *p) -{ - if (::soap_read__trv__DeleteReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__CreateReceiverResponse_DEFINED -#define SOAP_TYPE__trv__CreateReceiverResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__CreateReceiverResponse(struct soap*, const char*, int, const _trv__CreateReceiverResponse *, const char*); -SOAP_FMAC3 _trv__CreateReceiverResponse * SOAP_FMAC4 soap_in__trv__CreateReceiverResponse(struct soap*, const char*, _trv__CreateReceiverResponse *, const char*); -SOAP_FMAC1 _trv__CreateReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__CreateReceiverResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__CreateReceiverResponse * soap_new__trv__CreateReceiverResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__CreateReceiverResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__CreateReceiverResponse * soap_new_req__trv__CreateReceiverResponse( - struct soap *soap, - tt__Receiver *Receiver) -{ - _trv__CreateReceiverResponse *_p = ::soap_new__trv__CreateReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__CreateReceiverResponse::Receiver = Receiver; - } - return _p; -} - -inline _trv__CreateReceiverResponse * soap_new_set__trv__CreateReceiverResponse( - struct soap *soap, - tt__Receiver *Receiver) -{ - _trv__CreateReceiverResponse *_p = ::soap_new__trv__CreateReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__CreateReceiverResponse::Receiver = Receiver; - } - return _p; -} - -inline int soap_write__trv__CreateReceiverResponse(struct soap *soap, _trv__CreateReceiverResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:CreateReceiverResponse", p->soap_type() == SOAP_TYPE__trv__CreateReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__CreateReceiverResponse(struct soap *soap, const char *URL, _trv__CreateReceiverResponse 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, "trv:CreateReceiverResponse", p->soap_type() == SOAP_TYPE__trv__CreateReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__CreateReceiverResponse(struct soap *soap, const char *URL, _trv__CreateReceiverResponse 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, "trv:CreateReceiverResponse", p->soap_type() == SOAP_TYPE__trv__CreateReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__CreateReceiverResponse(struct soap *soap, const char *URL, _trv__CreateReceiverResponse 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, "trv:CreateReceiverResponse", p->soap_type() == SOAP_TYPE__trv__CreateReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__CreateReceiverResponse * SOAP_FMAC4 soap_get__trv__CreateReceiverResponse(struct soap*, _trv__CreateReceiverResponse *, const char*, const char*); - -inline int soap_read__trv__CreateReceiverResponse(struct soap *soap, _trv__CreateReceiverResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__CreateReceiverResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__CreateReceiverResponse(struct soap *soap, const char *URL, _trv__CreateReceiverResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__CreateReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__CreateReceiverResponse(struct soap *soap, _trv__CreateReceiverResponse *p) -{ - if (::soap_read__trv__CreateReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__CreateReceiver_DEFINED -#define SOAP_TYPE__trv__CreateReceiver_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__CreateReceiver(struct soap*, const char*, int, const _trv__CreateReceiver *, const char*); -SOAP_FMAC3 _trv__CreateReceiver * SOAP_FMAC4 soap_in__trv__CreateReceiver(struct soap*, const char*, _trv__CreateReceiver *, const char*); -SOAP_FMAC1 _trv__CreateReceiver * SOAP_FMAC2 soap_instantiate__trv__CreateReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__CreateReceiver * soap_new__trv__CreateReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__CreateReceiver(soap, n, NULL, NULL, NULL); -} - -inline _trv__CreateReceiver * soap_new_req__trv__CreateReceiver( - struct soap *soap, - tt__ReceiverConfiguration *Configuration) -{ - _trv__CreateReceiver *_p = ::soap_new__trv__CreateReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__CreateReceiver::Configuration = Configuration; - } - return _p; -} - -inline _trv__CreateReceiver * soap_new_set__trv__CreateReceiver( - struct soap *soap, - tt__ReceiverConfiguration *Configuration) -{ - _trv__CreateReceiver *_p = ::soap_new__trv__CreateReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__CreateReceiver::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trv__CreateReceiver(struct soap *soap, _trv__CreateReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:CreateReceiver", p->soap_type() == SOAP_TYPE__trv__CreateReceiver ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__CreateReceiver(struct soap *soap, const char *URL, _trv__CreateReceiver 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, "trv:CreateReceiver", p->soap_type() == SOAP_TYPE__trv__CreateReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__CreateReceiver(struct soap *soap, const char *URL, _trv__CreateReceiver 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, "trv:CreateReceiver", p->soap_type() == SOAP_TYPE__trv__CreateReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__CreateReceiver(struct soap *soap, const char *URL, _trv__CreateReceiver 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, "trv:CreateReceiver", p->soap_type() == SOAP_TYPE__trv__CreateReceiver ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__CreateReceiver * SOAP_FMAC4 soap_get__trv__CreateReceiver(struct soap*, _trv__CreateReceiver *, const char*, const char*); - -inline int soap_read__trv__CreateReceiver(struct soap *soap, _trv__CreateReceiver *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__CreateReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__CreateReceiver(struct soap *soap, const char *URL, _trv__CreateReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__CreateReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__CreateReceiver(struct soap *soap, _trv__CreateReceiver *p) -{ - if (::soap_read__trv__CreateReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetReceiverResponse_DEFINED -#define SOAP_TYPE__trv__GetReceiverResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiverResponse(struct soap*, const char*, int, const _trv__GetReceiverResponse *, const char*); -SOAP_FMAC3 _trv__GetReceiverResponse * SOAP_FMAC4 soap_in__trv__GetReceiverResponse(struct soap*, const char*, _trv__GetReceiverResponse *, const char*); -SOAP_FMAC1 _trv__GetReceiverResponse * SOAP_FMAC2 soap_instantiate__trv__GetReceiverResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetReceiverResponse * soap_new__trv__GetReceiverResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetReceiverResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetReceiverResponse * soap_new_req__trv__GetReceiverResponse( - struct soap *soap, - tt__Receiver *Receiver) -{ - _trv__GetReceiverResponse *_p = ::soap_new__trv__GetReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiverResponse::Receiver = Receiver; - } - return _p; -} - -inline _trv__GetReceiverResponse * soap_new_set__trv__GetReceiverResponse( - struct soap *soap, - tt__Receiver *Receiver) -{ - _trv__GetReceiverResponse *_p = ::soap_new__trv__GetReceiverResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiverResponse::Receiver = Receiver; - } - return _p; -} - -inline int soap_write__trv__GetReceiverResponse(struct soap *soap, _trv__GetReceiverResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetReceiverResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetReceiverResponse(struct soap *soap, const char *URL, _trv__GetReceiverResponse 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, "trv:GetReceiverResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetReceiverResponse(struct soap *soap, const char *URL, _trv__GetReceiverResponse 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, "trv:GetReceiverResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetReceiverResponse(struct soap *soap, const char *URL, _trv__GetReceiverResponse 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, "trv:GetReceiverResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiverResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetReceiverResponse * SOAP_FMAC4 soap_get__trv__GetReceiverResponse(struct soap*, _trv__GetReceiverResponse *, const char*, const char*); - -inline int soap_read__trv__GetReceiverResponse(struct soap *soap, _trv__GetReceiverResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetReceiverResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetReceiverResponse(struct soap *soap, const char *URL, _trv__GetReceiverResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetReceiverResponse(struct soap *soap, _trv__GetReceiverResponse *p) -{ - if (::soap_read__trv__GetReceiverResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetReceiver_DEFINED -#define SOAP_TYPE__trv__GetReceiver_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiver(struct soap*, const char*, int, const _trv__GetReceiver *, const char*); -SOAP_FMAC3 _trv__GetReceiver * SOAP_FMAC4 soap_in__trv__GetReceiver(struct soap*, const char*, _trv__GetReceiver *, const char*); -SOAP_FMAC1 _trv__GetReceiver * SOAP_FMAC2 soap_instantiate__trv__GetReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetReceiver * soap_new__trv__GetReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetReceiver(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetReceiver * soap_new_req__trv__GetReceiver( - struct soap *soap, - const std::string& ReceiverToken) -{ - _trv__GetReceiver *_p = ::soap_new__trv__GetReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiver::ReceiverToken = ReceiverToken; - } - return _p; -} - -inline _trv__GetReceiver * soap_new_set__trv__GetReceiver( - struct soap *soap, - const std::string& ReceiverToken) -{ - _trv__GetReceiver *_p = ::soap_new__trv__GetReceiver(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiver::ReceiverToken = ReceiverToken; - } - return _p; -} - -inline int soap_write__trv__GetReceiver(struct soap *soap, _trv__GetReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetReceiver", p->soap_type() == SOAP_TYPE__trv__GetReceiver ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetReceiver(struct soap *soap, const char *URL, _trv__GetReceiver 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, "trv:GetReceiver", p->soap_type() == SOAP_TYPE__trv__GetReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetReceiver(struct soap *soap, const char *URL, _trv__GetReceiver 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, "trv:GetReceiver", p->soap_type() == SOAP_TYPE__trv__GetReceiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetReceiver(struct soap *soap, const char *URL, _trv__GetReceiver 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, "trv:GetReceiver", p->soap_type() == SOAP_TYPE__trv__GetReceiver ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetReceiver * SOAP_FMAC4 soap_get__trv__GetReceiver(struct soap*, _trv__GetReceiver *, const char*, const char*); - -inline int soap_read__trv__GetReceiver(struct soap *soap, _trv__GetReceiver *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetReceiver(struct soap *soap, const char *URL, _trv__GetReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetReceiver(struct soap *soap, _trv__GetReceiver *p) -{ - if (::soap_read__trv__GetReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetReceiversResponse_DEFINED -#define SOAP_TYPE__trv__GetReceiversResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceiversResponse(struct soap*, const char*, int, const _trv__GetReceiversResponse *, const char*); -SOAP_FMAC3 _trv__GetReceiversResponse * SOAP_FMAC4 soap_in__trv__GetReceiversResponse(struct soap*, const char*, _trv__GetReceiversResponse *, const char*); -SOAP_FMAC1 _trv__GetReceiversResponse * SOAP_FMAC2 soap_instantiate__trv__GetReceiversResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetReceiversResponse * soap_new__trv__GetReceiversResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetReceiversResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetReceiversResponse * soap_new_req__trv__GetReceiversResponse( - struct soap *soap) -{ - _trv__GetReceiversResponse *_p = ::soap_new__trv__GetReceiversResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trv__GetReceiversResponse * soap_new_set__trv__GetReceiversResponse( - struct soap *soap, - const std::vector & Receivers) -{ - _trv__GetReceiversResponse *_p = ::soap_new__trv__GetReceiversResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetReceiversResponse::Receivers = Receivers; - } - return _p; -} - -inline int soap_write__trv__GetReceiversResponse(struct soap *soap, _trv__GetReceiversResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetReceiversResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiversResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetReceiversResponse(struct soap *soap, const char *URL, _trv__GetReceiversResponse 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, "trv:GetReceiversResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiversResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetReceiversResponse(struct soap *soap, const char *URL, _trv__GetReceiversResponse 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, "trv:GetReceiversResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiversResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetReceiversResponse(struct soap *soap, const char *URL, _trv__GetReceiversResponse 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, "trv:GetReceiversResponse", p->soap_type() == SOAP_TYPE__trv__GetReceiversResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetReceiversResponse * SOAP_FMAC4 soap_get__trv__GetReceiversResponse(struct soap*, _trv__GetReceiversResponse *, const char*, const char*); - -inline int soap_read__trv__GetReceiversResponse(struct soap *soap, _trv__GetReceiversResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetReceiversResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetReceiversResponse(struct soap *soap, const char *URL, _trv__GetReceiversResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetReceiversResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetReceiversResponse(struct soap *soap, _trv__GetReceiversResponse *p) -{ - if (::soap_read__trv__GetReceiversResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetReceivers_DEFINED -#define SOAP_TYPE__trv__GetReceivers_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetReceivers(struct soap*, const char*, int, const _trv__GetReceivers *, const char*); -SOAP_FMAC3 _trv__GetReceivers * SOAP_FMAC4 soap_in__trv__GetReceivers(struct soap*, const char*, _trv__GetReceivers *, const char*); -SOAP_FMAC1 _trv__GetReceivers * SOAP_FMAC2 soap_instantiate__trv__GetReceivers(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetReceivers * soap_new__trv__GetReceivers(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetReceivers(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetReceivers * soap_new_req__trv__GetReceivers( - struct soap *soap) -{ - _trv__GetReceivers *_p = ::soap_new__trv__GetReceivers(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trv__GetReceivers * soap_new_set__trv__GetReceivers( - struct soap *soap) -{ - _trv__GetReceivers *_p = ::soap_new__trv__GetReceivers(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trv__GetReceivers(struct soap *soap, _trv__GetReceivers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetReceivers", p->soap_type() == SOAP_TYPE__trv__GetReceivers ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetReceivers(struct soap *soap, const char *URL, _trv__GetReceivers 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, "trv:GetReceivers", p->soap_type() == SOAP_TYPE__trv__GetReceivers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetReceivers(struct soap *soap, const char *URL, _trv__GetReceivers 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, "trv:GetReceivers", p->soap_type() == SOAP_TYPE__trv__GetReceivers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetReceivers(struct soap *soap, const char *URL, _trv__GetReceivers 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, "trv:GetReceivers", p->soap_type() == SOAP_TYPE__trv__GetReceivers ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetReceivers * SOAP_FMAC4 soap_get__trv__GetReceivers(struct soap*, _trv__GetReceivers *, const char*, const char*); - -inline int soap_read__trv__GetReceivers(struct soap *soap, _trv__GetReceivers *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetReceivers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetReceivers(struct soap *soap, const char *URL, _trv__GetReceivers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetReceivers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetReceivers(struct soap *soap, _trv__GetReceivers *p) -{ - if (::soap_read__trv__GetReceivers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__trv__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _trv__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _trv__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trv__GetServiceCapabilitiesResponse(struct soap*, const char*, _trv__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _trv__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trv__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetServiceCapabilitiesResponse * soap_new__trv__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetServiceCapabilitiesResponse * soap_new_req__trv__GetServiceCapabilitiesResponse( - struct soap *soap, - trv__Capabilities *Capabilities) -{ - _trv__GetServiceCapabilitiesResponse *_p = ::soap_new__trv__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _trv__GetServiceCapabilitiesResponse * soap_new_set__trv__GetServiceCapabilitiesResponse( - struct soap *soap, - trv__Capabilities *Capabilities) -{ - _trv__GetServiceCapabilitiesResponse *_p = ::soap_new__trv__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trv__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__trv__GetServiceCapabilitiesResponse(struct soap *soap, _trv__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trv__GetServiceCapabilitiesResponse 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, "trv:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trv__GetServiceCapabilitiesResponse 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, "trv:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trv__GetServiceCapabilitiesResponse 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, "trv:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trv__GetServiceCapabilitiesResponse(struct soap*, _trv__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__trv__GetServiceCapabilitiesResponse(struct soap *soap, _trv__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trv__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetServiceCapabilitiesResponse(struct soap *soap, _trv__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__trv__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trv__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__trv__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trv__GetServiceCapabilities(struct soap*, const char*, int, const _trv__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _trv__GetServiceCapabilities * SOAP_FMAC4 soap_in__trv__GetServiceCapabilities(struct soap*, const char*, _trv__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _trv__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trv__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _trv__GetServiceCapabilities * soap_new__trv__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__trv__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _trv__GetServiceCapabilities * soap_new_req__trv__GetServiceCapabilities( - struct soap *soap) -{ - _trv__GetServiceCapabilities *_p = ::soap_new__trv__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trv__GetServiceCapabilities * soap_new_set__trv__GetServiceCapabilities( - struct soap *soap) -{ - _trv__GetServiceCapabilities *_p = ::soap_new__trv__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trv__GetServiceCapabilities(struct soap *soap, _trv__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trv__GetServiceCapabilities(struct soap *soap, const char *URL, _trv__GetServiceCapabilities 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, "trv:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trv__GetServiceCapabilities(struct soap *soap, const char *URL, _trv__GetServiceCapabilities 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, "trv:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trv__GetServiceCapabilities(struct soap *soap, const char *URL, _trv__GetServiceCapabilities 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, "trv:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trv__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trv__GetServiceCapabilities * SOAP_FMAC4 soap_get__trv__GetServiceCapabilities(struct soap*, _trv__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__trv__GetServiceCapabilities(struct soap *soap, _trv__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trv__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trv__GetServiceCapabilities(struct soap *soap, const char *URL, _trv__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trv__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trv__GetServiceCapabilities(struct soap *soap, _trv__GetServiceCapabilities *p) -{ - if (::soap_read__trv__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trv__Capabilities_DEFINED -#define SOAP_TYPE_trv__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trv__Capabilities(struct soap*, const char*, int, const trv__Capabilities *, const char*); -SOAP_FMAC3 trv__Capabilities * SOAP_FMAC4 soap_in_trv__Capabilities(struct soap*, const char*, trv__Capabilities *, const char*); -SOAP_FMAC1 trv__Capabilities * SOAP_FMAC2 soap_instantiate_trv__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline trv__Capabilities * soap_new_trv__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_trv__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline trv__Capabilities * soap_new_req_trv__Capabilities( - struct soap *soap, - int SupportedReceivers) -{ - trv__Capabilities *_p = ::soap_new_trv__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trv__Capabilities::SupportedReceivers = SupportedReceivers; - } - return _p; -} - -inline trv__Capabilities * soap_new_set_trv__Capabilities( - struct soap *soap, - const std::vector & __any, - bool *RTP_USCOREMulticast, - bool *RTP_USCORETCP, - bool *RTP_USCORERTSP_USCORETCP, - int SupportedReceivers, - int *MaximumRTSPURILength, - const struct soap_dom_attribute& __anyAttribute) -{ - trv__Capabilities *_p = ::soap_new_trv__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trv__Capabilities::__any = __any; - _p->trv__Capabilities::RTP_USCOREMulticast = RTP_USCOREMulticast; - _p->trv__Capabilities::RTP_USCORETCP = RTP_USCORETCP; - _p->trv__Capabilities::RTP_USCORERTSP_USCORETCP = RTP_USCORERTSP_USCORETCP; - _p->trv__Capabilities::SupportedReceivers = SupportedReceivers; - _p->trv__Capabilities::MaximumRTSPURILength = MaximumRTSPURILength; - _p->trv__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trv__Capabilities(struct soap *soap, trv__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trv:Capabilities", p->soap_type() == SOAP_TYPE_trv__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trv__Capabilities(struct soap *soap, const char *URL, trv__Capabilities 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, "trv:Capabilities", p->soap_type() == SOAP_TYPE_trv__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trv__Capabilities(struct soap *soap, const char *URL, trv__Capabilities 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, "trv:Capabilities", p->soap_type() == SOAP_TYPE_trv__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trv__Capabilities(struct soap *soap, const char *URL, trv__Capabilities 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, "trv:Capabilities", p->soap_type() == SOAP_TYPE_trv__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trv__Capabilities * SOAP_FMAC4 soap_get_trv__Capabilities(struct soap*, trv__Capabilities *, const char*, const char*); - -inline int soap_read_trv__Capabilities(struct soap *soap, trv__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trv__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trv__Capabilities(struct soap *soap, const char *URL, trv__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trv__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trv__Capabilities(struct soap *soap, trv__Capabilities *p) -{ - if (::soap_read_trv__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsrfr__ResourceUnavailableFaultType_DEFINED -#define SOAP_TYPE_wsrfr__ResourceUnavailableFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsrfr__ResourceUnavailableFaultType(struct soap*, const char*, int, const wsrfr__ResourceUnavailableFaultType *, const char*); -SOAP_FMAC3 wsrfr__ResourceUnavailableFaultType * SOAP_FMAC4 soap_in_wsrfr__ResourceUnavailableFaultType(struct soap*, const char*, wsrfr__ResourceUnavailableFaultType *, const char*); -SOAP_FMAC1 wsrfr__ResourceUnavailableFaultType * SOAP_FMAC2 soap_instantiate_wsrfr__ResourceUnavailableFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsrfr__ResourceUnavailableFaultType * soap_new_wsrfr__ResourceUnavailableFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsrfr__ResourceUnavailableFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsrfr__ResourceUnavailableFaultType * soap_new_req_wsrfr__ResourceUnavailableFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsrfr__ResourceUnavailableFaultType *_p = ::soap_new_wsrfr__ResourceUnavailableFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsrfr__ResourceUnavailableFaultType * soap_new_set_wsrfr__ResourceUnavailableFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsrfr__ResourceUnavailableFaultType *_p = ::soap_new_wsrfr__ResourceUnavailableFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsrfr__ResourceUnavailableFaultType(struct soap *soap, wsrfr__ResourceUnavailableFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsrfr:ResourceUnavailableFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnavailableFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsrfr__ResourceUnavailableFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnavailableFaultType 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, "wsrfr:ResourceUnavailableFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnavailableFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsrfr__ResourceUnavailableFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnavailableFaultType 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, "wsrfr:ResourceUnavailableFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnavailableFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsrfr__ResourceUnavailableFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnavailableFaultType 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, "wsrfr:ResourceUnavailableFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnavailableFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsrfr__ResourceUnavailableFaultType * SOAP_FMAC4 soap_get_wsrfr__ResourceUnavailableFaultType(struct soap*, wsrfr__ResourceUnavailableFaultType *, const char*, const char*); - -inline int soap_read_wsrfr__ResourceUnavailableFaultType(struct soap *soap, wsrfr__ResourceUnavailableFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsrfr__ResourceUnavailableFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsrfr__ResourceUnavailableFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnavailableFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsrfr__ResourceUnavailableFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsrfr__ResourceUnavailableFaultType(struct soap *soap, wsrfr__ResourceUnavailableFaultType *p) -{ - if (::soap_read_wsrfr__ResourceUnavailableFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsrfr__ResourceUnknownFaultType_DEFINED -#define SOAP_TYPE_wsrfr__ResourceUnknownFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsrfr__ResourceUnknownFaultType(struct soap*, const char*, int, const wsrfr__ResourceUnknownFaultType *, const char*); -SOAP_FMAC3 wsrfr__ResourceUnknownFaultType * SOAP_FMAC4 soap_in_wsrfr__ResourceUnknownFaultType(struct soap*, const char*, wsrfr__ResourceUnknownFaultType *, const char*); -SOAP_FMAC1 wsrfr__ResourceUnknownFaultType * SOAP_FMAC2 soap_instantiate_wsrfr__ResourceUnknownFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsrfr__ResourceUnknownFaultType * soap_new_wsrfr__ResourceUnknownFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsrfr__ResourceUnknownFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsrfr__ResourceUnknownFaultType * soap_new_req_wsrfr__ResourceUnknownFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsrfr__ResourceUnknownFaultType *_p = ::soap_new_wsrfr__ResourceUnknownFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsrfr__ResourceUnknownFaultType * soap_new_set_wsrfr__ResourceUnknownFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsrfr__ResourceUnknownFaultType *_p = ::soap_new_wsrfr__ResourceUnknownFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsrfr__ResourceUnknownFaultType(struct soap *soap, wsrfr__ResourceUnknownFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsrfr:ResourceUnknownFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnknownFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsrfr__ResourceUnknownFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnknownFaultType 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, "wsrfr:ResourceUnknownFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnknownFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsrfr__ResourceUnknownFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnknownFaultType 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, "wsrfr:ResourceUnknownFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnknownFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsrfr__ResourceUnknownFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnknownFaultType 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, "wsrfr:ResourceUnknownFaultType", p->soap_type() == SOAP_TYPE_wsrfr__ResourceUnknownFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsrfr__ResourceUnknownFaultType * SOAP_FMAC4 soap_get_wsrfr__ResourceUnknownFaultType(struct soap*, wsrfr__ResourceUnknownFaultType *, const char*, const char*); - -inline int soap_read_wsrfr__ResourceUnknownFaultType(struct soap *soap, wsrfr__ResourceUnknownFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsrfr__ResourceUnknownFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsrfr__ResourceUnknownFaultType(struct soap *soap, const char *URL, wsrfr__ResourceUnknownFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsrfr__ResourceUnknownFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsrfr__ResourceUnknownFaultType(struct soap *soap, wsrfr__ResourceUnknownFaultType *p) -{ - if (::soap_read_wsrfr__ResourceUnknownFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse_DEFINED -#define SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetCompatibleConfigurationsResponse(struct soap*, const char*, int, const _tptz__GetCompatibleConfigurationsResponse *, const char*); -SOAP_FMAC3 _tptz__GetCompatibleConfigurationsResponse * SOAP_FMAC4 soap_in__tptz__GetCompatibleConfigurationsResponse(struct soap*, const char*, _tptz__GetCompatibleConfigurationsResponse *, const char*); -SOAP_FMAC1 _tptz__GetCompatibleConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetCompatibleConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetCompatibleConfigurationsResponse * soap_new__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetCompatibleConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetCompatibleConfigurationsResponse * soap_new_req__tptz__GetCompatibleConfigurationsResponse( - struct soap *soap) -{ - _tptz__GetCompatibleConfigurationsResponse *_p = ::soap_new__tptz__GetCompatibleConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetCompatibleConfigurationsResponse * soap_new_set__tptz__GetCompatibleConfigurationsResponse( - struct soap *soap, - const std::vector & PTZConfiguration) -{ - _tptz__GetCompatibleConfigurationsResponse *_p = ::soap_new__tptz__GetCompatibleConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetCompatibleConfigurationsResponse::PTZConfiguration = PTZConfiguration; - } - return _p; -} - -inline int soap_write__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, _tptz__GetCompatibleConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetCompatibleConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurationsResponse 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, "tptz:GetCompatibleConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurationsResponse 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, "tptz:GetCompatibleConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurationsResponse 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, "tptz:GetCompatibleConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetCompatibleConfigurationsResponse * SOAP_FMAC4 soap_get__tptz__GetCompatibleConfigurationsResponse(struct soap*, _tptz__GetCompatibleConfigurationsResponse *, const char*, const char*); - -inline int soap_read__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, _tptz__GetCompatibleConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetCompatibleConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetCompatibleConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetCompatibleConfigurationsResponse(struct soap *soap, _tptz__GetCompatibleConfigurationsResponse *p) -{ - if (::soap_read__tptz__GetCompatibleConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetCompatibleConfigurations_DEFINED -#define SOAP_TYPE__tptz__GetCompatibleConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetCompatibleConfigurations(struct soap*, const char*, int, const _tptz__GetCompatibleConfigurations *, const char*); -SOAP_FMAC3 _tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_in__tptz__GetCompatibleConfigurations(struct soap*, const char*, _tptz__GetCompatibleConfigurations *, const char*); -SOAP_FMAC1 _tptz__GetCompatibleConfigurations * SOAP_FMAC2 soap_instantiate__tptz__GetCompatibleConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetCompatibleConfigurations * soap_new__tptz__GetCompatibleConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetCompatibleConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetCompatibleConfigurations * soap_new_req__tptz__GetCompatibleConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetCompatibleConfigurations *_p = ::soap_new__tptz__GetCompatibleConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetCompatibleConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__GetCompatibleConfigurations * soap_new_set__tptz__GetCompatibleConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetCompatibleConfigurations *_p = ::soap_new__tptz__GetCompatibleConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetCompatibleConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__tptz__GetCompatibleConfigurations(struct soap *soap, _tptz__GetCompatibleConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetCompatibleConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurations 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, "tptz:GetCompatibleConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurations 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, "tptz:GetCompatibleConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurations 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, "tptz:GetCompatibleConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetCompatibleConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_get__tptz__GetCompatibleConfigurations(struct soap*, _tptz__GetCompatibleConfigurations *, const char*, const char*); - -inline int soap_read__tptz__GetCompatibleConfigurations(struct soap *soap, _tptz__GetCompatibleConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetCompatibleConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, _tptz__GetCompatibleConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetCompatibleConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetCompatibleConfigurations(struct soap *soap, _tptz__GetCompatibleConfigurations *p) -{ - if (::soap_read__tptz__GetCompatibleConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__RemovePresetTourResponse_DEFINED -#define SOAP_TYPE__tptz__RemovePresetTourResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePresetTourResponse(struct soap*, const char*, int, const _tptz__RemovePresetTourResponse *, const char*); -SOAP_FMAC3 _tptz__RemovePresetTourResponse * SOAP_FMAC4 soap_in__tptz__RemovePresetTourResponse(struct soap*, const char*, _tptz__RemovePresetTourResponse *, const char*); -SOAP_FMAC1 _tptz__RemovePresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__RemovePresetTourResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__RemovePresetTourResponse * soap_new__tptz__RemovePresetTourResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__RemovePresetTourResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__RemovePresetTourResponse * soap_new_req__tptz__RemovePresetTourResponse( - struct soap *soap) -{ - _tptz__RemovePresetTourResponse *_p = ::soap_new__tptz__RemovePresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__RemovePresetTourResponse * soap_new_set__tptz__RemovePresetTourResponse( - struct soap *soap) -{ - _tptz__RemovePresetTourResponse *_p = ::soap_new__tptz__RemovePresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__RemovePresetTourResponse(struct soap *soap, _tptz__RemovePresetTourResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:RemovePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__RemovePresetTourResponse(struct soap *soap, const char *URL, _tptz__RemovePresetTourResponse 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, "tptz:RemovePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__RemovePresetTourResponse(struct soap *soap, const char *URL, _tptz__RemovePresetTourResponse 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, "tptz:RemovePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__RemovePresetTourResponse(struct soap *soap, const char *URL, _tptz__RemovePresetTourResponse 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, "tptz:RemovePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__RemovePresetTourResponse * SOAP_FMAC4 soap_get__tptz__RemovePresetTourResponse(struct soap*, _tptz__RemovePresetTourResponse *, const char*, const char*); - -inline int soap_read__tptz__RemovePresetTourResponse(struct soap *soap, _tptz__RemovePresetTourResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__RemovePresetTourResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__RemovePresetTourResponse(struct soap *soap, const char *URL, _tptz__RemovePresetTourResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__RemovePresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__RemovePresetTourResponse(struct soap *soap, _tptz__RemovePresetTourResponse *p) -{ - if (::soap_read__tptz__RemovePresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__RemovePresetTour_DEFINED -#define SOAP_TYPE__tptz__RemovePresetTour_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePresetTour(struct soap*, const char*, int, const _tptz__RemovePresetTour *, const char*); -SOAP_FMAC3 _tptz__RemovePresetTour * SOAP_FMAC4 soap_in__tptz__RemovePresetTour(struct soap*, const char*, _tptz__RemovePresetTour *, const char*); -SOAP_FMAC1 _tptz__RemovePresetTour * SOAP_FMAC2 soap_instantiate__tptz__RemovePresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__RemovePresetTour * soap_new__tptz__RemovePresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__RemovePresetTour(soap, n, NULL, NULL, NULL); -} - -inline _tptz__RemovePresetTour * soap_new_req__tptz__RemovePresetTour( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetTourToken) -{ - _tptz__RemovePresetTour *_p = ::soap_new__tptz__RemovePresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__RemovePresetTour::ProfileToken = ProfileToken; - _p->_tptz__RemovePresetTour::PresetTourToken = PresetTourToken; - } - return _p; -} - -inline _tptz__RemovePresetTour * soap_new_set__tptz__RemovePresetTour( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetTourToken) -{ - _tptz__RemovePresetTour *_p = ::soap_new__tptz__RemovePresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__RemovePresetTour::ProfileToken = ProfileToken; - _p->_tptz__RemovePresetTour::PresetTourToken = PresetTourToken; - } - return _p; -} - -inline int soap_write__tptz__RemovePresetTour(struct soap *soap, _tptz__RemovePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:RemovePresetTour", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTour ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__RemovePresetTour(struct soap *soap, const char *URL, _tptz__RemovePresetTour 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, "tptz:RemovePresetTour", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__RemovePresetTour(struct soap *soap, const char *URL, _tptz__RemovePresetTour 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, "tptz:RemovePresetTour", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__RemovePresetTour(struct soap *soap, const char *URL, _tptz__RemovePresetTour 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, "tptz:RemovePresetTour", p->soap_type() == SOAP_TYPE__tptz__RemovePresetTour ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__RemovePresetTour * SOAP_FMAC4 soap_get__tptz__RemovePresetTour(struct soap*, _tptz__RemovePresetTour *, const char*, const char*); - -inline int soap_read__tptz__RemovePresetTour(struct soap *soap, _tptz__RemovePresetTour *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__RemovePresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__RemovePresetTour(struct soap *soap, const char *URL, _tptz__RemovePresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__RemovePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__RemovePresetTour(struct soap *soap, _tptz__RemovePresetTour *p) -{ - if (::soap_read__tptz__RemovePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__OperatePresetTourResponse_DEFINED -#define SOAP_TYPE__tptz__OperatePresetTourResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__OperatePresetTourResponse(struct soap*, const char*, int, const _tptz__OperatePresetTourResponse *, const char*); -SOAP_FMAC3 _tptz__OperatePresetTourResponse * SOAP_FMAC4 soap_in__tptz__OperatePresetTourResponse(struct soap*, const char*, _tptz__OperatePresetTourResponse *, const char*); -SOAP_FMAC1 _tptz__OperatePresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__OperatePresetTourResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__OperatePresetTourResponse * soap_new__tptz__OperatePresetTourResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__OperatePresetTourResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__OperatePresetTourResponse * soap_new_req__tptz__OperatePresetTourResponse( - struct soap *soap) -{ - _tptz__OperatePresetTourResponse *_p = ::soap_new__tptz__OperatePresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__OperatePresetTourResponse * soap_new_set__tptz__OperatePresetTourResponse( - struct soap *soap) -{ - _tptz__OperatePresetTourResponse *_p = ::soap_new__tptz__OperatePresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__OperatePresetTourResponse(struct soap *soap, _tptz__OperatePresetTourResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:OperatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__OperatePresetTourResponse(struct soap *soap, const char *URL, _tptz__OperatePresetTourResponse 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, "tptz:OperatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__OperatePresetTourResponse(struct soap *soap, const char *URL, _tptz__OperatePresetTourResponse 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, "tptz:OperatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__OperatePresetTourResponse(struct soap *soap, const char *URL, _tptz__OperatePresetTourResponse 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, "tptz:OperatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__OperatePresetTourResponse * SOAP_FMAC4 soap_get__tptz__OperatePresetTourResponse(struct soap*, _tptz__OperatePresetTourResponse *, const char*, const char*); - -inline int soap_read__tptz__OperatePresetTourResponse(struct soap *soap, _tptz__OperatePresetTourResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__OperatePresetTourResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__OperatePresetTourResponse(struct soap *soap, const char *URL, _tptz__OperatePresetTourResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__OperatePresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__OperatePresetTourResponse(struct soap *soap, _tptz__OperatePresetTourResponse *p) -{ - if (::soap_read__tptz__OperatePresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__OperatePresetTour_DEFINED -#define SOAP_TYPE__tptz__OperatePresetTour_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__OperatePresetTour(struct soap*, const char*, int, const _tptz__OperatePresetTour *, const char*); -SOAP_FMAC3 _tptz__OperatePresetTour * SOAP_FMAC4 soap_in__tptz__OperatePresetTour(struct soap*, const char*, _tptz__OperatePresetTour *, const char*); -SOAP_FMAC1 _tptz__OperatePresetTour * SOAP_FMAC2 soap_instantiate__tptz__OperatePresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__OperatePresetTour * soap_new__tptz__OperatePresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__OperatePresetTour(soap, n, NULL, NULL, NULL); -} - -inline _tptz__OperatePresetTour * soap_new_req__tptz__OperatePresetTour( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetTourToken, - enum tt__PTZPresetTourOperation Operation) -{ - _tptz__OperatePresetTour *_p = ::soap_new__tptz__OperatePresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__OperatePresetTour::ProfileToken = ProfileToken; - _p->_tptz__OperatePresetTour::PresetTourToken = PresetTourToken; - _p->_tptz__OperatePresetTour::Operation = Operation; - } - return _p; -} - -inline _tptz__OperatePresetTour * soap_new_set__tptz__OperatePresetTour( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetTourToken, - enum tt__PTZPresetTourOperation Operation) -{ - _tptz__OperatePresetTour *_p = ::soap_new__tptz__OperatePresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__OperatePresetTour::ProfileToken = ProfileToken; - _p->_tptz__OperatePresetTour::PresetTourToken = PresetTourToken; - _p->_tptz__OperatePresetTour::Operation = Operation; - } - return _p; -} - -inline int soap_write__tptz__OperatePresetTour(struct soap *soap, _tptz__OperatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:OperatePresetTour", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTour ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__OperatePresetTour(struct soap *soap, const char *URL, _tptz__OperatePresetTour 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, "tptz:OperatePresetTour", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__OperatePresetTour(struct soap *soap, const char *URL, _tptz__OperatePresetTour 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, "tptz:OperatePresetTour", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__OperatePresetTour(struct soap *soap, const char *URL, _tptz__OperatePresetTour 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, "tptz:OperatePresetTour", p->soap_type() == SOAP_TYPE__tptz__OperatePresetTour ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__OperatePresetTour * SOAP_FMAC4 soap_get__tptz__OperatePresetTour(struct soap*, _tptz__OperatePresetTour *, const char*, const char*); - -inline int soap_read__tptz__OperatePresetTour(struct soap *soap, _tptz__OperatePresetTour *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__OperatePresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__OperatePresetTour(struct soap *soap, const char *URL, _tptz__OperatePresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__OperatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__OperatePresetTour(struct soap *soap, _tptz__OperatePresetTour *p) -{ - if (::soap_read__tptz__OperatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__ModifyPresetTourResponse_DEFINED -#define SOAP_TYPE__tptz__ModifyPresetTourResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ModifyPresetTourResponse(struct soap*, const char*, int, const _tptz__ModifyPresetTourResponse *, const char*); -SOAP_FMAC3 _tptz__ModifyPresetTourResponse * SOAP_FMAC4 soap_in__tptz__ModifyPresetTourResponse(struct soap*, const char*, _tptz__ModifyPresetTourResponse *, const char*); -SOAP_FMAC1 _tptz__ModifyPresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__ModifyPresetTourResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__ModifyPresetTourResponse * soap_new__tptz__ModifyPresetTourResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__ModifyPresetTourResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__ModifyPresetTourResponse * soap_new_req__tptz__ModifyPresetTourResponse( - struct soap *soap) -{ - _tptz__ModifyPresetTourResponse *_p = ::soap_new__tptz__ModifyPresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__ModifyPresetTourResponse * soap_new_set__tptz__ModifyPresetTourResponse( - struct soap *soap) -{ - _tptz__ModifyPresetTourResponse *_p = ::soap_new__tptz__ModifyPresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__ModifyPresetTourResponse(struct soap *soap, _tptz__ModifyPresetTourResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:ModifyPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__ModifyPresetTourResponse(struct soap *soap, const char *URL, _tptz__ModifyPresetTourResponse 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, "tptz:ModifyPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__ModifyPresetTourResponse(struct soap *soap, const char *URL, _tptz__ModifyPresetTourResponse 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, "tptz:ModifyPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__ModifyPresetTourResponse(struct soap *soap, const char *URL, _tptz__ModifyPresetTourResponse 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, "tptz:ModifyPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__ModifyPresetTourResponse * SOAP_FMAC4 soap_get__tptz__ModifyPresetTourResponse(struct soap*, _tptz__ModifyPresetTourResponse *, const char*, const char*); - -inline int soap_read__tptz__ModifyPresetTourResponse(struct soap *soap, _tptz__ModifyPresetTourResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__ModifyPresetTourResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__ModifyPresetTourResponse(struct soap *soap, const char *URL, _tptz__ModifyPresetTourResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__ModifyPresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__ModifyPresetTourResponse(struct soap *soap, _tptz__ModifyPresetTourResponse *p) -{ - if (::soap_read__tptz__ModifyPresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__ModifyPresetTour_DEFINED -#define SOAP_TYPE__tptz__ModifyPresetTour_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ModifyPresetTour(struct soap*, const char*, int, const _tptz__ModifyPresetTour *, const char*); -SOAP_FMAC3 _tptz__ModifyPresetTour * SOAP_FMAC4 soap_in__tptz__ModifyPresetTour(struct soap*, const char*, _tptz__ModifyPresetTour *, const char*); -SOAP_FMAC1 _tptz__ModifyPresetTour * SOAP_FMAC2 soap_instantiate__tptz__ModifyPresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__ModifyPresetTour * soap_new__tptz__ModifyPresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__ModifyPresetTour(soap, n, NULL, NULL, NULL); -} - -inline _tptz__ModifyPresetTour * soap_new_req__tptz__ModifyPresetTour( - struct soap *soap, - const std::string& ProfileToken, - tt__PresetTour *PresetTour) -{ - _tptz__ModifyPresetTour *_p = ::soap_new__tptz__ModifyPresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__ModifyPresetTour::ProfileToken = ProfileToken; - _p->_tptz__ModifyPresetTour::PresetTour = PresetTour; - } - return _p; -} - -inline _tptz__ModifyPresetTour * soap_new_set__tptz__ModifyPresetTour( - struct soap *soap, - const std::string& ProfileToken, - tt__PresetTour *PresetTour) -{ - _tptz__ModifyPresetTour *_p = ::soap_new__tptz__ModifyPresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__ModifyPresetTour::ProfileToken = ProfileToken; - _p->_tptz__ModifyPresetTour::PresetTour = PresetTour; - } - return _p; -} - -inline int soap_write__tptz__ModifyPresetTour(struct soap *soap, _tptz__ModifyPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:ModifyPresetTour", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTour ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__ModifyPresetTour(struct soap *soap, const char *URL, _tptz__ModifyPresetTour 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, "tptz:ModifyPresetTour", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__ModifyPresetTour(struct soap *soap, const char *URL, _tptz__ModifyPresetTour 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, "tptz:ModifyPresetTour", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__ModifyPresetTour(struct soap *soap, const char *URL, _tptz__ModifyPresetTour 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, "tptz:ModifyPresetTour", p->soap_type() == SOAP_TYPE__tptz__ModifyPresetTour ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__ModifyPresetTour * SOAP_FMAC4 soap_get__tptz__ModifyPresetTour(struct soap*, _tptz__ModifyPresetTour *, const char*, const char*); - -inline int soap_read__tptz__ModifyPresetTour(struct soap *soap, _tptz__ModifyPresetTour *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__ModifyPresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__ModifyPresetTour(struct soap *soap, const char *URL, _tptz__ModifyPresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__ModifyPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__ModifyPresetTour(struct soap *soap, _tptz__ModifyPresetTour *p) -{ - if (::soap_read__tptz__ModifyPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__CreatePresetTourResponse_DEFINED -#define SOAP_TYPE__tptz__CreatePresetTourResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__CreatePresetTourResponse(struct soap*, const char*, int, const _tptz__CreatePresetTourResponse *, const char*); -SOAP_FMAC3 _tptz__CreatePresetTourResponse * SOAP_FMAC4 soap_in__tptz__CreatePresetTourResponse(struct soap*, const char*, _tptz__CreatePresetTourResponse *, const char*); -SOAP_FMAC1 _tptz__CreatePresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__CreatePresetTourResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__CreatePresetTourResponse * soap_new__tptz__CreatePresetTourResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__CreatePresetTourResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__CreatePresetTourResponse * soap_new_req__tptz__CreatePresetTourResponse( - struct soap *soap, - const std::string& PresetTourToken) -{ - _tptz__CreatePresetTourResponse *_p = ::soap_new__tptz__CreatePresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__CreatePresetTourResponse::PresetTourToken = PresetTourToken; - } - return _p; -} - -inline _tptz__CreatePresetTourResponse * soap_new_set__tptz__CreatePresetTourResponse( - struct soap *soap, - const std::string& PresetTourToken) -{ - _tptz__CreatePresetTourResponse *_p = ::soap_new__tptz__CreatePresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__CreatePresetTourResponse::PresetTourToken = PresetTourToken; - } - return _p; -} - -inline int soap_write__tptz__CreatePresetTourResponse(struct soap *soap, _tptz__CreatePresetTourResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:CreatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__CreatePresetTourResponse(struct soap *soap, const char *URL, _tptz__CreatePresetTourResponse 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, "tptz:CreatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__CreatePresetTourResponse(struct soap *soap, const char *URL, _tptz__CreatePresetTourResponse 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, "tptz:CreatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__CreatePresetTourResponse(struct soap *soap, const char *URL, _tptz__CreatePresetTourResponse 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, "tptz:CreatePresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__CreatePresetTourResponse * SOAP_FMAC4 soap_get__tptz__CreatePresetTourResponse(struct soap*, _tptz__CreatePresetTourResponse *, const char*, const char*); - -inline int soap_read__tptz__CreatePresetTourResponse(struct soap *soap, _tptz__CreatePresetTourResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__CreatePresetTourResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__CreatePresetTourResponse(struct soap *soap, const char *URL, _tptz__CreatePresetTourResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__CreatePresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__CreatePresetTourResponse(struct soap *soap, _tptz__CreatePresetTourResponse *p) -{ - if (::soap_read__tptz__CreatePresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__CreatePresetTour_DEFINED -#define SOAP_TYPE__tptz__CreatePresetTour_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__CreatePresetTour(struct soap*, const char*, int, const _tptz__CreatePresetTour *, const char*); -SOAP_FMAC3 _tptz__CreatePresetTour * SOAP_FMAC4 soap_in__tptz__CreatePresetTour(struct soap*, const char*, _tptz__CreatePresetTour *, const char*); -SOAP_FMAC1 _tptz__CreatePresetTour * SOAP_FMAC2 soap_instantiate__tptz__CreatePresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__CreatePresetTour * soap_new__tptz__CreatePresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__CreatePresetTour(soap, n, NULL, NULL, NULL); -} - -inline _tptz__CreatePresetTour * soap_new_req__tptz__CreatePresetTour( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__CreatePresetTour *_p = ::soap_new__tptz__CreatePresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__CreatePresetTour::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__CreatePresetTour * soap_new_set__tptz__CreatePresetTour( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__CreatePresetTour *_p = ::soap_new__tptz__CreatePresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__CreatePresetTour::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__tptz__CreatePresetTour(struct soap *soap, _tptz__CreatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:CreatePresetTour", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTour ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__CreatePresetTour(struct soap *soap, const char *URL, _tptz__CreatePresetTour 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, "tptz:CreatePresetTour", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__CreatePresetTour(struct soap *soap, const char *URL, _tptz__CreatePresetTour 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, "tptz:CreatePresetTour", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__CreatePresetTour(struct soap *soap, const char *URL, _tptz__CreatePresetTour 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, "tptz:CreatePresetTour", p->soap_type() == SOAP_TYPE__tptz__CreatePresetTour ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__CreatePresetTour * SOAP_FMAC4 soap_get__tptz__CreatePresetTour(struct soap*, _tptz__CreatePresetTour *, const char*, const char*); - -inline int soap_read__tptz__CreatePresetTour(struct soap *soap, _tptz__CreatePresetTour *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__CreatePresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__CreatePresetTour(struct soap *soap, const char *URL, _tptz__CreatePresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__CreatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__CreatePresetTour(struct soap *soap, _tptz__CreatePresetTour *p) -{ - if (::soap_read__tptz__CreatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresetTourOptionsResponse_DEFINED -#define SOAP_TYPE__tptz__GetPresetTourOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTourOptionsResponse(struct soap*, const char*, int, const _tptz__GetPresetTourOptionsResponse *, const char*); -SOAP_FMAC3 _tptz__GetPresetTourOptionsResponse * SOAP_FMAC4 soap_in__tptz__GetPresetTourOptionsResponse(struct soap*, const char*, _tptz__GetPresetTourOptionsResponse *, const char*); -SOAP_FMAC1 _tptz__GetPresetTourOptionsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTourOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresetTourOptionsResponse * soap_new__tptz__GetPresetTourOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresetTourOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresetTourOptionsResponse * soap_new_req__tptz__GetPresetTourOptionsResponse( - struct soap *soap, - tt__PTZPresetTourOptions *Options) -{ - _tptz__GetPresetTourOptionsResponse *_p = ::soap_new__tptz__GetPresetTourOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTourOptionsResponse::Options = Options; - } - return _p; -} - -inline _tptz__GetPresetTourOptionsResponse * soap_new_set__tptz__GetPresetTourOptionsResponse( - struct soap *soap, - tt__PTZPresetTourOptions *Options) -{ - _tptz__GetPresetTourOptionsResponse *_p = ::soap_new__tptz__GetPresetTourOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTourOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__tptz__GetPresetTourOptionsResponse(struct soap *soap, _tptz__GetPresetTourOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresetTourOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresetTourOptionsResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourOptionsResponse 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, "tptz:GetPresetTourOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresetTourOptionsResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourOptionsResponse 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, "tptz:GetPresetTourOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresetTourOptionsResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourOptionsResponse 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, "tptz:GetPresetTourOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresetTourOptionsResponse * SOAP_FMAC4 soap_get__tptz__GetPresetTourOptionsResponse(struct soap*, _tptz__GetPresetTourOptionsResponse *, const char*, const char*); - -inline int soap_read__tptz__GetPresetTourOptionsResponse(struct soap *soap, _tptz__GetPresetTourOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresetTourOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresetTourOptionsResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresetTourOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresetTourOptionsResponse(struct soap *soap, _tptz__GetPresetTourOptionsResponse *p) -{ - if (::soap_read__tptz__GetPresetTourOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresetTourOptions_DEFINED -#define SOAP_TYPE__tptz__GetPresetTourOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTourOptions(struct soap*, const char*, int, const _tptz__GetPresetTourOptions *, const char*); -SOAP_FMAC3 _tptz__GetPresetTourOptions * SOAP_FMAC4 soap_in__tptz__GetPresetTourOptions(struct soap*, const char*, _tptz__GetPresetTourOptions *, const char*); -SOAP_FMAC1 _tptz__GetPresetTourOptions * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTourOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresetTourOptions * soap_new__tptz__GetPresetTourOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresetTourOptions(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresetTourOptions * soap_new_req__tptz__GetPresetTourOptions( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetPresetTourOptions *_p = ::soap_new__tptz__GetPresetTourOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTourOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__GetPresetTourOptions * soap_new_set__tptz__GetPresetTourOptions( - struct soap *soap, - const std::string& ProfileToken, - std::string *PresetTourToken) -{ - _tptz__GetPresetTourOptions *_p = ::soap_new__tptz__GetPresetTourOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTourOptions::ProfileToken = ProfileToken; - _p->_tptz__GetPresetTourOptions::PresetTourToken = PresetTourToken; - } - return _p; -} - -inline int soap_write__tptz__GetPresetTourOptions(struct soap *soap, _tptz__GetPresetTourOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresetTourOptions", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresetTourOptions(struct soap *soap, const char *URL, _tptz__GetPresetTourOptions 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, "tptz:GetPresetTourOptions", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresetTourOptions(struct soap *soap, const char *URL, _tptz__GetPresetTourOptions 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, "tptz:GetPresetTourOptions", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresetTourOptions(struct soap *soap, const char *URL, _tptz__GetPresetTourOptions 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, "tptz:GetPresetTourOptions", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresetTourOptions * SOAP_FMAC4 soap_get__tptz__GetPresetTourOptions(struct soap*, _tptz__GetPresetTourOptions *, const char*, const char*); - -inline int soap_read__tptz__GetPresetTourOptions(struct soap *soap, _tptz__GetPresetTourOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresetTourOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresetTourOptions(struct soap *soap, const char *URL, _tptz__GetPresetTourOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresetTourOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresetTourOptions(struct soap *soap, _tptz__GetPresetTourOptions *p) -{ - if (::soap_read__tptz__GetPresetTourOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresetTourResponse_DEFINED -#define SOAP_TYPE__tptz__GetPresetTourResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTourResponse(struct soap*, const char*, int, const _tptz__GetPresetTourResponse *, const char*); -SOAP_FMAC3 _tptz__GetPresetTourResponse * SOAP_FMAC4 soap_in__tptz__GetPresetTourResponse(struct soap*, const char*, _tptz__GetPresetTourResponse *, const char*); -SOAP_FMAC1 _tptz__GetPresetTourResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTourResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresetTourResponse * soap_new__tptz__GetPresetTourResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresetTourResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresetTourResponse * soap_new_req__tptz__GetPresetTourResponse( - struct soap *soap, - tt__PresetTour *PresetTour) -{ - _tptz__GetPresetTourResponse *_p = ::soap_new__tptz__GetPresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTourResponse::PresetTour = PresetTour; - } - return _p; -} - -inline _tptz__GetPresetTourResponse * soap_new_set__tptz__GetPresetTourResponse( - struct soap *soap, - tt__PresetTour *PresetTour) -{ - _tptz__GetPresetTourResponse *_p = ::soap_new__tptz__GetPresetTourResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTourResponse::PresetTour = PresetTour; - } - return _p; -} - -inline int soap_write__tptz__GetPresetTourResponse(struct soap *soap, _tptz__GetPresetTourResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresetTourResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourResponse 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, "tptz:GetPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresetTourResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourResponse 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, "tptz:GetPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresetTourResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourResponse 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, "tptz:GetPresetTourResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetTourResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresetTourResponse * SOAP_FMAC4 soap_get__tptz__GetPresetTourResponse(struct soap*, _tptz__GetPresetTourResponse *, const char*, const char*); - -inline int soap_read__tptz__GetPresetTourResponse(struct soap *soap, _tptz__GetPresetTourResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresetTourResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresetTourResponse(struct soap *soap, const char *URL, _tptz__GetPresetTourResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresetTourResponse(struct soap *soap, _tptz__GetPresetTourResponse *p) -{ - if (::soap_read__tptz__GetPresetTourResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresetTour_DEFINED -#define SOAP_TYPE__tptz__GetPresetTour_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTour(struct soap*, const char*, int, const _tptz__GetPresetTour *, const char*); -SOAP_FMAC3 _tptz__GetPresetTour * SOAP_FMAC4 soap_in__tptz__GetPresetTour(struct soap*, const char*, _tptz__GetPresetTour *, const char*); -SOAP_FMAC1 _tptz__GetPresetTour * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresetTour * soap_new__tptz__GetPresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresetTour(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresetTour * soap_new_req__tptz__GetPresetTour( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetTourToken) -{ - _tptz__GetPresetTour *_p = ::soap_new__tptz__GetPresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTour::ProfileToken = ProfileToken; - _p->_tptz__GetPresetTour::PresetTourToken = PresetTourToken; - } - return _p; -} - -inline _tptz__GetPresetTour * soap_new_set__tptz__GetPresetTour( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetTourToken) -{ - _tptz__GetPresetTour *_p = ::soap_new__tptz__GetPresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTour::ProfileToken = ProfileToken; - _p->_tptz__GetPresetTour::PresetTourToken = PresetTourToken; - } - return _p; -} - -inline int soap_write__tptz__GetPresetTour(struct soap *soap, _tptz__GetPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresetTour", p->soap_type() == SOAP_TYPE__tptz__GetPresetTour ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresetTour(struct soap *soap, const char *URL, _tptz__GetPresetTour 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, "tptz:GetPresetTour", p->soap_type() == SOAP_TYPE__tptz__GetPresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresetTour(struct soap *soap, const char *URL, _tptz__GetPresetTour 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, "tptz:GetPresetTour", p->soap_type() == SOAP_TYPE__tptz__GetPresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresetTour(struct soap *soap, const char *URL, _tptz__GetPresetTour 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, "tptz:GetPresetTour", p->soap_type() == SOAP_TYPE__tptz__GetPresetTour ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresetTour * SOAP_FMAC4 soap_get__tptz__GetPresetTour(struct soap*, _tptz__GetPresetTour *, const char*, const char*); - -inline int soap_read__tptz__GetPresetTour(struct soap *soap, _tptz__GetPresetTour *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresetTour(struct soap *soap, const char *URL, _tptz__GetPresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresetTour(struct soap *soap, _tptz__GetPresetTour *p) -{ - if (::soap_read__tptz__GetPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresetToursResponse_DEFINED -#define SOAP_TYPE__tptz__GetPresetToursResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetToursResponse(struct soap*, const char*, int, const _tptz__GetPresetToursResponse *, const char*); -SOAP_FMAC3 _tptz__GetPresetToursResponse * SOAP_FMAC4 soap_in__tptz__GetPresetToursResponse(struct soap*, const char*, _tptz__GetPresetToursResponse *, const char*); -SOAP_FMAC1 _tptz__GetPresetToursResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetToursResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresetToursResponse * soap_new__tptz__GetPresetToursResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresetToursResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresetToursResponse * soap_new_req__tptz__GetPresetToursResponse( - struct soap *soap) -{ - _tptz__GetPresetToursResponse *_p = ::soap_new__tptz__GetPresetToursResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetPresetToursResponse * soap_new_set__tptz__GetPresetToursResponse( - struct soap *soap, - const std::vector & PresetTour) -{ - _tptz__GetPresetToursResponse *_p = ::soap_new__tptz__GetPresetToursResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetToursResponse::PresetTour = PresetTour; - } - return _p; -} - -inline int soap_write__tptz__GetPresetToursResponse(struct soap *soap, _tptz__GetPresetToursResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresetToursResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetToursResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresetToursResponse(struct soap *soap, const char *URL, _tptz__GetPresetToursResponse 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, "tptz:GetPresetToursResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetToursResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresetToursResponse(struct soap *soap, const char *URL, _tptz__GetPresetToursResponse 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, "tptz:GetPresetToursResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetToursResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresetToursResponse(struct soap *soap, const char *URL, _tptz__GetPresetToursResponse 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, "tptz:GetPresetToursResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetToursResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresetToursResponse * SOAP_FMAC4 soap_get__tptz__GetPresetToursResponse(struct soap*, _tptz__GetPresetToursResponse *, const char*, const char*); - -inline int soap_read__tptz__GetPresetToursResponse(struct soap *soap, _tptz__GetPresetToursResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresetToursResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresetToursResponse(struct soap *soap, const char *URL, _tptz__GetPresetToursResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresetToursResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresetToursResponse(struct soap *soap, _tptz__GetPresetToursResponse *p) -{ - if (::soap_read__tptz__GetPresetToursResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresetTours_DEFINED -#define SOAP_TYPE__tptz__GetPresetTours_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetTours(struct soap*, const char*, int, const _tptz__GetPresetTours *, const char*); -SOAP_FMAC3 _tptz__GetPresetTours * SOAP_FMAC4 soap_in__tptz__GetPresetTours(struct soap*, const char*, _tptz__GetPresetTours *, const char*); -SOAP_FMAC1 _tptz__GetPresetTours * SOAP_FMAC2 soap_instantiate__tptz__GetPresetTours(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresetTours * soap_new__tptz__GetPresetTours(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresetTours(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresetTours * soap_new_req__tptz__GetPresetTours( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetPresetTours *_p = ::soap_new__tptz__GetPresetTours(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTours::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__GetPresetTours * soap_new_set__tptz__GetPresetTours( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetPresetTours *_p = ::soap_new__tptz__GetPresetTours(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetTours::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__tptz__GetPresetTours(struct soap *soap, _tptz__GetPresetTours const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresetTours", p->soap_type() == SOAP_TYPE__tptz__GetPresetTours ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresetTours(struct soap *soap, const char *URL, _tptz__GetPresetTours 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, "tptz:GetPresetTours", p->soap_type() == SOAP_TYPE__tptz__GetPresetTours ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresetTours(struct soap *soap, const char *URL, _tptz__GetPresetTours 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, "tptz:GetPresetTours", p->soap_type() == SOAP_TYPE__tptz__GetPresetTours ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresetTours(struct soap *soap, const char *URL, _tptz__GetPresetTours 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, "tptz:GetPresetTours", p->soap_type() == SOAP_TYPE__tptz__GetPresetTours ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresetTours * SOAP_FMAC4 soap_get__tptz__GetPresetTours(struct soap*, _tptz__GetPresetTours *, const char*, const char*); - -inline int soap_read__tptz__GetPresetTours(struct soap *soap, _tptz__GetPresetTours *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresetTours(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresetTours(struct soap *soap, const char *URL, _tptz__GetPresetTours *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresetTours(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresetTours(struct soap *soap, _tptz__GetPresetTours *p) -{ - if (::soap_read__tptz__GetPresetTours(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__StopResponse_DEFINED -#define SOAP_TYPE__tptz__StopResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__StopResponse(struct soap*, const char*, int, const _tptz__StopResponse *, const char*); -SOAP_FMAC3 _tptz__StopResponse * SOAP_FMAC4 soap_in__tptz__StopResponse(struct soap*, const char*, _tptz__StopResponse *, const char*); -SOAP_FMAC1 _tptz__StopResponse * SOAP_FMAC2 soap_instantiate__tptz__StopResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__StopResponse * soap_new__tptz__StopResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__StopResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__StopResponse * soap_new_req__tptz__StopResponse( - struct soap *soap) -{ - _tptz__StopResponse *_p = ::soap_new__tptz__StopResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__StopResponse * soap_new_set__tptz__StopResponse( - struct soap *soap) -{ - _tptz__StopResponse *_p = ::soap_new__tptz__StopResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__StopResponse(struct soap *soap, _tptz__StopResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:StopResponse", p->soap_type() == SOAP_TYPE__tptz__StopResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__StopResponse(struct soap *soap, const char *URL, _tptz__StopResponse 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, "tptz:StopResponse", p->soap_type() == SOAP_TYPE__tptz__StopResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__StopResponse(struct soap *soap, const char *URL, _tptz__StopResponse 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, "tptz:StopResponse", p->soap_type() == SOAP_TYPE__tptz__StopResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__StopResponse(struct soap *soap, const char *URL, _tptz__StopResponse 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, "tptz:StopResponse", p->soap_type() == SOAP_TYPE__tptz__StopResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__StopResponse * SOAP_FMAC4 soap_get__tptz__StopResponse(struct soap*, _tptz__StopResponse *, const char*, const char*); - -inline int soap_read__tptz__StopResponse(struct soap *soap, _tptz__StopResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__StopResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__StopResponse(struct soap *soap, const char *URL, _tptz__StopResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__StopResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__StopResponse(struct soap *soap, _tptz__StopResponse *p) -{ - if (::soap_read__tptz__StopResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__Stop_DEFINED -#define SOAP_TYPE__tptz__Stop_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__Stop(struct soap*, const char*, int, const _tptz__Stop *, const char*); -SOAP_FMAC3 _tptz__Stop * SOAP_FMAC4 soap_in__tptz__Stop(struct soap*, const char*, _tptz__Stop *, const char*); -SOAP_FMAC1 _tptz__Stop * SOAP_FMAC2 soap_instantiate__tptz__Stop(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__Stop * soap_new__tptz__Stop(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__Stop(soap, n, NULL, NULL, NULL); -} - -inline _tptz__Stop * soap_new_req__tptz__Stop( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__Stop *_p = ::soap_new__tptz__Stop(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__Stop::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__Stop * soap_new_set__tptz__Stop( - struct soap *soap, - const std::string& ProfileToken, - bool *PanTilt, - bool *Zoom) -{ - _tptz__Stop *_p = ::soap_new__tptz__Stop(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__Stop::ProfileToken = ProfileToken; - _p->_tptz__Stop::PanTilt = PanTilt; - _p->_tptz__Stop::Zoom = Zoom; - } - return _p; -} - -inline int soap_write__tptz__Stop(struct soap *soap, _tptz__Stop const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:Stop", p->soap_type() == SOAP_TYPE__tptz__Stop ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__Stop(struct soap *soap, const char *URL, _tptz__Stop 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, "tptz:Stop", p->soap_type() == SOAP_TYPE__tptz__Stop ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__Stop(struct soap *soap, const char *URL, _tptz__Stop 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, "tptz:Stop", p->soap_type() == SOAP_TYPE__tptz__Stop ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__Stop(struct soap *soap, const char *URL, _tptz__Stop 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, "tptz:Stop", p->soap_type() == SOAP_TYPE__tptz__Stop ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__Stop * SOAP_FMAC4 soap_get__tptz__Stop(struct soap*, _tptz__Stop *, const char*, const char*); - -inline int soap_read__tptz__Stop(struct soap *soap, _tptz__Stop *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__Stop(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__Stop(struct soap *soap, const char *URL, _tptz__Stop *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__Stop(struct soap *soap, _tptz__Stop *p) -{ - if (::soap_read__tptz__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__AbsoluteMoveResponse_DEFINED -#define SOAP_TYPE__tptz__AbsoluteMoveResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__AbsoluteMoveResponse(struct soap*, const char*, int, const _tptz__AbsoluteMoveResponse *, const char*); -SOAP_FMAC3 _tptz__AbsoluteMoveResponse * SOAP_FMAC4 soap_in__tptz__AbsoluteMoveResponse(struct soap*, const char*, _tptz__AbsoluteMoveResponse *, const char*); -SOAP_FMAC1 _tptz__AbsoluteMoveResponse * SOAP_FMAC2 soap_instantiate__tptz__AbsoluteMoveResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__AbsoluteMoveResponse * soap_new__tptz__AbsoluteMoveResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__AbsoluteMoveResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__AbsoluteMoveResponse * soap_new_req__tptz__AbsoluteMoveResponse( - struct soap *soap) -{ - _tptz__AbsoluteMoveResponse *_p = ::soap_new__tptz__AbsoluteMoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__AbsoluteMoveResponse * soap_new_set__tptz__AbsoluteMoveResponse( - struct soap *soap) -{ - _tptz__AbsoluteMoveResponse *_p = ::soap_new__tptz__AbsoluteMoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__AbsoluteMoveResponse(struct soap *soap, _tptz__AbsoluteMoveResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:AbsoluteMoveResponse", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__AbsoluteMoveResponse(struct soap *soap, const char *URL, _tptz__AbsoluteMoveResponse 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, "tptz:AbsoluteMoveResponse", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__AbsoluteMoveResponse(struct soap *soap, const char *URL, _tptz__AbsoluteMoveResponse 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, "tptz:AbsoluteMoveResponse", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__AbsoluteMoveResponse(struct soap *soap, const char *URL, _tptz__AbsoluteMoveResponse 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, "tptz:AbsoluteMoveResponse", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__AbsoluteMoveResponse * SOAP_FMAC4 soap_get__tptz__AbsoluteMoveResponse(struct soap*, _tptz__AbsoluteMoveResponse *, const char*, const char*); - -inline int soap_read__tptz__AbsoluteMoveResponse(struct soap *soap, _tptz__AbsoluteMoveResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__AbsoluteMoveResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__AbsoluteMoveResponse(struct soap *soap, const char *URL, _tptz__AbsoluteMoveResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__AbsoluteMoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__AbsoluteMoveResponse(struct soap *soap, _tptz__AbsoluteMoveResponse *p) -{ - if (::soap_read__tptz__AbsoluteMoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__AbsoluteMove_DEFINED -#define SOAP_TYPE__tptz__AbsoluteMove_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__AbsoluteMove(struct soap*, const char*, int, const _tptz__AbsoluteMove *, const char*); -SOAP_FMAC3 _tptz__AbsoluteMove * SOAP_FMAC4 soap_in__tptz__AbsoluteMove(struct soap*, const char*, _tptz__AbsoluteMove *, const char*); -SOAP_FMAC1 _tptz__AbsoluteMove * SOAP_FMAC2 soap_instantiate__tptz__AbsoluteMove(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__AbsoluteMove * soap_new__tptz__AbsoluteMove(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__AbsoluteMove(soap, n, NULL, NULL, NULL); -} - -inline _tptz__AbsoluteMove * soap_new_req__tptz__AbsoluteMove( - struct soap *soap, - const std::string& ProfileToken, - tt__PTZVector *Position) -{ - _tptz__AbsoluteMove *_p = ::soap_new__tptz__AbsoluteMove(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__AbsoluteMove::ProfileToken = ProfileToken; - _p->_tptz__AbsoluteMove::Position = Position; - } - return _p; -} - -inline _tptz__AbsoluteMove * soap_new_set__tptz__AbsoluteMove( - struct soap *soap, - const std::string& ProfileToken, - tt__PTZVector *Position, - tt__PTZSpeed *Speed) -{ - _tptz__AbsoluteMove *_p = ::soap_new__tptz__AbsoluteMove(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__AbsoluteMove::ProfileToken = ProfileToken; - _p->_tptz__AbsoluteMove::Position = Position; - _p->_tptz__AbsoluteMove::Speed = Speed; - } - return _p; -} - -inline int soap_write__tptz__AbsoluteMove(struct soap *soap, _tptz__AbsoluteMove const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:AbsoluteMove", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMove ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__AbsoluteMove(struct soap *soap, const char *URL, _tptz__AbsoluteMove 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, "tptz:AbsoluteMove", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__AbsoluteMove(struct soap *soap, const char *URL, _tptz__AbsoluteMove 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, "tptz:AbsoluteMove", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__AbsoluteMove(struct soap *soap, const char *URL, _tptz__AbsoluteMove 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, "tptz:AbsoluteMove", p->soap_type() == SOAP_TYPE__tptz__AbsoluteMove ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__AbsoluteMove * SOAP_FMAC4 soap_get__tptz__AbsoluteMove(struct soap*, _tptz__AbsoluteMove *, const char*, const char*); - -inline int soap_read__tptz__AbsoluteMove(struct soap *soap, _tptz__AbsoluteMove *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__AbsoluteMove(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__AbsoluteMove(struct soap *soap, const char *URL, _tptz__AbsoluteMove *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__AbsoluteMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__AbsoluteMove(struct soap *soap, _tptz__AbsoluteMove *p) -{ - if (::soap_read__tptz__AbsoluteMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__RelativeMoveResponse_DEFINED -#define SOAP_TYPE__tptz__RelativeMoveResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RelativeMoveResponse(struct soap*, const char*, int, const _tptz__RelativeMoveResponse *, const char*); -SOAP_FMAC3 _tptz__RelativeMoveResponse * SOAP_FMAC4 soap_in__tptz__RelativeMoveResponse(struct soap*, const char*, _tptz__RelativeMoveResponse *, const char*); -SOAP_FMAC1 _tptz__RelativeMoveResponse * SOAP_FMAC2 soap_instantiate__tptz__RelativeMoveResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__RelativeMoveResponse * soap_new__tptz__RelativeMoveResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__RelativeMoveResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__RelativeMoveResponse * soap_new_req__tptz__RelativeMoveResponse( - struct soap *soap) -{ - _tptz__RelativeMoveResponse *_p = ::soap_new__tptz__RelativeMoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__RelativeMoveResponse * soap_new_set__tptz__RelativeMoveResponse( - struct soap *soap) -{ - _tptz__RelativeMoveResponse *_p = ::soap_new__tptz__RelativeMoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__RelativeMoveResponse(struct soap *soap, _tptz__RelativeMoveResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:RelativeMoveResponse", p->soap_type() == SOAP_TYPE__tptz__RelativeMoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__RelativeMoveResponse(struct soap *soap, const char *URL, _tptz__RelativeMoveResponse 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, "tptz:RelativeMoveResponse", p->soap_type() == SOAP_TYPE__tptz__RelativeMoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__RelativeMoveResponse(struct soap *soap, const char *URL, _tptz__RelativeMoveResponse 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, "tptz:RelativeMoveResponse", p->soap_type() == SOAP_TYPE__tptz__RelativeMoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__RelativeMoveResponse(struct soap *soap, const char *URL, _tptz__RelativeMoveResponse 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, "tptz:RelativeMoveResponse", p->soap_type() == SOAP_TYPE__tptz__RelativeMoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__RelativeMoveResponse * SOAP_FMAC4 soap_get__tptz__RelativeMoveResponse(struct soap*, _tptz__RelativeMoveResponse *, const char*, const char*); - -inline int soap_read__tptz__RelativeMoveResponse(struct soap *soap, _tptz__RelativeMoveResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__RelativeMoveResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__RelativeMoveResponse(struct soap *soap, const char *URL, _tptz__RelativeMoveResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__RelativeMoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__RelativeMoveResponse(struct soap *soap, _tptz__RelativeMoveResponse *p) -{ - if (::soap_read__tptz__RelativeMoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__RelativeMove_DEFINED -#define SOAP_TYPE__tptz__RelativeMove_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RelativeMove(struct soap*, const char*, int, const _tptz__RelativeMove *, const char*); -SOAP_FMAC3 _tptz__RelativeMove * SOAP_FMAC4 soap_in__tptz__RelativeMove(struct soap*, const char*, _tptz__RelativeMove *, const char*); -SOAP_FMAC1 _tptz__RelativeMove * SOAP_FMAC2 soap_instantiate__tptz__RelativeMove(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__RelativeMove * soap_new__tptz__RelativeMove(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__RelativeMove(soap, n, NULL, NULL, NULL); -} - -inline _tptz__RelativeMove * soap_new_req__tptz__RelativeMove( - struct soap *soap, - const std::string& ProfileToken, - tt__PTZVector *Translation) -{ - _tptz__RelativeMove *_p = ::soap_new__tptz__RelativeMove(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__RelativeMove::ProfileToken = ProfileToken; - _p->_tptz__RelativeMove::Translation = Translation; - } - return _p; -} - -inline _tptz__RelativeMove * soap_new_set__tptz__RelativeMove( - struct soap *soap, - const std::string& ProfileToken, - tt__PTZVector *Translation, - tt__PTZSpeed *Speed) -{ - _tptz__RelativeMove *_p = ::soap_new__tptz__RelativeMove(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__RelativeMove::ProfileToken = ProfileToken; - _p->_tptz__RelativeMove::Translation = Translation; - _p->_tptz__RelativeMove::Speed = Speed; - } - return _p; -} - -inline int soap_write__tptz__RelativeMove(struct soap *soap, _tptz__RelativeMove const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:RelativeMove", p->soap_type() == SOAP_TYPE__tptz__RelativeMove ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__RelativeMove(struct soap *soap, const char *URL, _tptz__RelativeMove 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, "tptz:RelativeMove", p->soap_type() == SOAP_TYPE__tptz__RelativeMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__RelativeMove(struct soap *soap, const char *URL, _tptz__RelativeMove 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, "tptz:RelativeMove", p->soap_type() == SOAP_TYPE__tptz__RelativeMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__RelativeMove(struct soap *soap, const char *URL, _tptz__RelativeMove 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, "tptz:RelativeMove", p->soap_type() == SOAP_TYPE__tptz__RelativeMove ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__RelativeMove * SOAP_FMAC4 soap_get__tptz__RelativeMove(struct soap*, _tptz__RelativeMove *, const char*, const char*); - -inline int soap_read__tptz__RelativeMove(struct soap *soap, _tptz__RelativeMove *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__RelativeMove(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__RelativeMove(struct soap *soap, const char *URL, _tptz__RelativeMove *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__RelativeMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__RelativeMove(struct soap *soap, _tptz__RelativeMove *p) -{ - if (::soap_read__tptz__RelativeMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__ContinuousMoveResponse_DEFINED -#define SOAP_TYPE__tptz__ContinuousMoveResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ContinuousMoveResponse(struct soap*, const char*, int, const _tptz__ContinuousMoveResponse *, const char*); -SOAP_FMAC3 _tptz__ContinuousMoveResponse * SOAP_FMAC4 soap_in__tptz__ContinuousMoveResponse(struct soap*, const char*, _tptz__ContinuousMoveResponse *, const char*); -SOAP_FMAC1 _tptz__ContinuousMoveResponse * SOAP_FMAC2 soap_instantiate__tptz__ContinuousMoveResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__ContinuousMoveResponse * soap_new__tptz__ContinuousMoveResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__ContinuousMoveResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__ContinuousMoveResponse * soap_new_req__tptz__ContinuousMoveResponse( - struct soap *soap) -{ - _tptz__ContinuousMoveResponse *_p = ::soap_new__tptz__ContinuousMoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__ContinuousMoveResponse * soap_new_set__tptz__ContinuousMoveResponse( - struct soap *soap) -{ - _tptz__ContinuousMoveResponse *_p = ::soap_new__tptz__ContinuousMoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__ContinuousMoveResponse(struct soap *soap, _tptz__ContinuousMoveResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:ContinuousMoveResponse", p->soap_type() == SOAP_TYPE__tptz__ContinuousMoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__ContinuousMoveResponse(struct soap *soap, const char *URL, _tptz__ContinuousMoveResponse 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, "tptz:ContinuousMoveResponse", p->soap_type() == SOAP_TYPE__tptz__ContinuousMoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__ContinuousMoveResponse(struct soap *soap, const char *URL, _tptz__ContinuousMoveResponse 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, "tptz:ContinuousMoveResponse", p->soap_type() == SOAP_TYPE__tptz__ContinuousMoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__ContinuousMoveResponse(struct soap *soap, const char *URL, _tptz__ContinuousMoveResponse 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, "tptz:ContinuousMoveResponse", p->soap_type() == SOAP_TYPE__tptz__ContinuousMoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__ContinuousMoveResponse * SOAP_FMAC4 soap_get__tptz__ContinuousMoveResponse(struct soap*, _tptz__ContinuousMoveResponse *, const char*, const char*); - -inline int soap_read__tptz__ContinuousMoveResponse(struct soap *soap, _tptz__ContinuousMoveResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__ContinuousMoveResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__ContinuousMoveResponse(struct soap *soap, const char *URL, _tptz__ContinuousMoveResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__ContinuousMoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__ContinuousMoveResponse(struct soap *soap, _tptz__ContinuousMoveResponse *p) -{ - if (::soap_read__tptz__ContinuousMoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__ContinuousMove_DEFINED -#define SOAP_TYPE__tptz__ContinuousMove_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__ContinuousMove(struct soap*, const char*, int, const _tptz__ContinuousMove *, const char*); -SOAP_FMAC3 _tptz__ContinuousMove * SOAP_FMAC4 soap_in__tptz__ContinuousMove(struct soap*, const char*, _tptz__ContinuousMove *, const char*); -SOAP_FMAC1 _tptz__ContinuousMove * SOAP_FMAC2 soap_instantiate__tptz__ContinuousMove(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__ContinuousMove * soap_new__tptz__ContinuousMove(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__ContinuousMove(soap, n, NULL, NULL, NULL); -} - -inline _tptz__ContinuousMove * soap_new_req__tptz__ContinuousMove( - struct soap *soap, - const std::string& ProfileToken, - tt__PTZSpeed *Velocity) -{ - _tptz__ContinuousMove *_p = ::soap_new__tptz__ContinuousMove(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__ContinuousMove::ProfileToken = ProfileToken; - _p->_tptz__ContinuousMove::Velocity = Velocity; - } - return _p; -} - -inline _tptz__ContinuousMove * soap_new_set__tptz__ContinuousMove( - struct soap *soap, - const std::string& ProfileToken, - tt__PTZSpeed *Velocity, - std::string *Timeout) -{ - _tptz__ContinuousMove *_p = ::soap_new__tptz__ContinuousMove(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__ContinuousMove::ProfileToken = ProfileToken; - _p->_tptz__ContinuousMove::Velocity = Velocity; - _p->_tptz__ContinuousMove::Timeout = Timeout; - } - return _p; -} - -inline int soap_write__tptz__ContinuousMove(struct soap *soap, _tptz__ContinuousMove const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:ContinuousMove", p->soap_type() == SOAP_TYPE__tptz__ContinuousMove ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__ContinuousMove(struct soap *soap, const char *URL, _tptz__ContinuousMove 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, "tptz:ContinuousMove", p->soap_type() == SOAP_TYPE__tptz__ContinuousMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__ContinuousMove(struct soap *soap, const char *URL, _tptz__ContinuousMove 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, "tptz:ContinuousMove", p->soap_type() == SOAP_TYPE__tptz__ContinuousMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__ContinuousMove(struct soap *soap, const char *URL, _tptz__ContinuousMove 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, "tptz:ContinuousMove", p->soap_type() == SOAP_TYPE__tptz__ContinuousMove ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__ContinuousMove * SOAP_FMAC4 soap_get__tptz__ContinuousMove(struct soap*, _tptz__ContinuousMove *, const char*, const char*); - -inline int soap_read__tptz__ContinuousMove(struct soap *soap, _tptz__ContinuousMove *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__ContinuousMove(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__ContinuousMove(struct soap *soap, const char *URL, _tptz__ContinuousMove *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__ContinuousMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__ContinuousMove(struct soap *soap, _tptz__ContinuousMove *p) -{ - if (::soap_read__tptz__ContinuousMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SetHomePositionResponse_DEFINED -#define SOAP_TYPE__tptz__SetHomePositionResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetHomePositionResponse(struct soap*, const char*, int, const _tptz__SetHomePositionResponse *, const char*); -SOAP_FMAC3 _tptz__SetHomePositionResponse * SOAP_FMAC4 soap_in__tptz__SetHomePositionResponse(struct soap*, const char*, _tptz__SetHomePositionResponse *, const char*); -SOAP_FMAC1 _tptz__SetHomePositionResponse * SOAP_FMAC2 soap_instantiate__tptz__SetHomePositionResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SetHomePositionResponse * soap_new__tptz__SetHomePositionResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SetHomePositionResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SetHomePositionResponse * soap_new_req__tptz__SetHomePositionResponse( - struct soap *soap) -{ - _tptz__SetHomePositionResponse *_p = ::soap_new__tptz__SetHomePositionResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__SetHomePositionResponse * soap_new_set__tptz__SetHomePositionResponse( - struct soap *soap) -{ - _tptz__SetHomePositionResponse *_p = ::soap_new__tptz__SetHomePositionResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__SetHomePositionResponse(struct soap *soap, _tptz__SetHomePositionResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SetHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__SetHomePositionResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SetHomePositionResponse(struct soap *soap, const char *URL, _tptz__SetHomePositionResponse 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, "tptz:SetHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__SetHomePositionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SetHomePositionResponse(struct soap *soap, const char *URL, _tptz__SetHomePositionResponse 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, "tptz:SetHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__SetHomePositionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SetHomePositionResponse(struct soap *soap, const char *URL, _tptz__SetHomePositionResponse 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, "tptz:SetHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__SetHomePositionResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SetHomePositionResponse * SOAP_FMAC4 soap_get__tptz__SetHomePositionResponse(struct soap*, _tptz__SetHomePositionResponse *, const char*, const char*); - -inline int soap_read__tptz__SetHomePositionResponse(struct soap *soap, _tptz__SetHomePositionResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SetHomePositionResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SetHomePositionResponse(struct soap *soap, const char *URL, _tptz__SetHomePositionResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SetHomePositionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SetHomePositionResponse(struct soap *soap, _tptz__SetHomePositionResponse *p) -{ - if (::soap_read__tptz__SetHomePositionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SetHomePosition_DEFINED -#define SOAP_TYPE__tptz__SetHomePosition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetHomePosition(struct soap*, const char*, int, const _tptz__SetHomePosition *, const char*); -SOAP_FMAC3 _tptz__SetHomePosition * SOAP_FMAC4 soap_in__tptz__SetHomePosition(struct soap*, const char*, _tptz__SetHomePosition *, const char*); -SOAP_FMAC1 _tptz__SetHomePosition * SOAP_FMAC2 soap_instantiate__tptz__SetHomePosition(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SetHomePosition * soap_new__tptz__SetHomePosition(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SetHomePosition(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SetHomePosition * soap_new_req__tptz__SetHomePosition( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__SetHomePosition *_p = ::soap_new__tptz__SetHomePosition(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetHomePosition::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__SetHomePosition * soap_new_set__tptz__SetHomePosition( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__SetHomePosition *_p = ::soap_new__tptz__SetHomePosition(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetHomePosition::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__tptz__SetHomePosition(struct soap *soap, _tptz__SetHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SetHomePosition", p->soap_type() == SOAP_TYPE__tptz__SetHomePosition ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SetHomePosition(struct soap *soap, const char *URL, _tptz__SetHomePosition 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, "tptz:SetHomePosition", p->soap_type() == SOAP_TYPE__tptz__SetHomePosition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SetHomePosition(struct soap *soap, const char *URL, _tptz__SetHomePosition 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, "tptz:SetHomePosition", p->soap_type() == SOAP_TYPE__tptz__SetHomePosition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SetHomePosition(struct soap *soap, const char *URL, _tptz__SetHomePosition 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, "tptz:SetHomePosition", p->soap_type() == SOAP_TYPE__tptz__SetHomePosition ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SetHomePosition * SOAP_FMAC4 soap_get__tptz__SetHomePosition(struct soap*, _tptz__SetHomePosition *, const char*, const char*); - -inline int soap_read__tptz__SetHomePosition(struct soap *soap, _tptz__SetHomePosition *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SetHomePosition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SetHomePosition(struct soap *soap, const char *URL, _tptz__SetHomePosition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SetHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SetHomePosition(struct soap *soap, _tptz__SetHomePosition *p) -{ - if (::soap_read__tptz__SetHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GotoHomePositionResponse_DEFINED -#define SOAP_TYPE__tptz__GotoHomePositionResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoHomePositionResponse(struct soap*, const char*, int, const _tptz__GotoHomePositionResponse *, const char*); -SOAP_FMAC3 _tptz__GotoHomePositionResponse * SOAP_FMAC4 soap_in__tptz__GotoHomePositionResponse(struct soap*, const char*, _tptz__GotoHomePositionResponse *, const char*); -SOAP_FMAC1 _tptz__GotoHomePositionResponse * SOAP_FMAC2 soap_instantiate__tptz__GotoHomePositionResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GotoHomePositionResponse * soap_new__tptz__GotoHomePositionResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GotoHomePositionResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GotoHomePositionResponse * soap_new_req__tptz__GotoHomePositionResponse( - struct soap *soap) -{ - _tptz__GotoHomePositionResponse *_p = ::soap_new__tptz__GotoHomePositionResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GotoHomePositionResponse * soap_new_set__tptz__GotoHomePositionResponse( - struct soap *soap) -{ - _tptz__GotoHomePositionResponse *_p = ::soap_new__tptz__GotoHomePositionResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__GotoHomePositionResponse(struct soap *soap, _tptz__GotoHomePositionResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GotoHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__GotoHomePositionResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GotoHomePositionResponse(struct soap *soap, const char *URL, _tptz__GotoHomePositionResponse 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, "tptz:GotoHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__GotoHomePositionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GotoHomePositionResponse(struct soap *soap, const char *URL, _tptz__GotoHomePositionResponse 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, "tptz:GotoHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__GotoHomePositionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GotoHomePositionResponse(struct soap *soap, const char *URL, _tptz__GotoHomePositionResponse 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, "tptz:GotoHomePositionResponse", p->soap_type() == SOAP_TYPE__tptz__GotoHomePositionResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GotoHomePositionResponse * SOAP_FMAC4 soap_get__tptz__GotoHomePositionResponse(struct soap*, _tptz__GotoHomePositionResponse *, const char*, const char*); - -inline int soap_read__tptz__GotoHomePositionResponse(struct soap *soap, _tptz__GotoHomePositionResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GotoHomePositionResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GotoHomePositionResponse(struct soap *soap, const char *URL, _tptz__GotoHomePositionResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GotoHomePositionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GotoHomePositionResponse(struct soap *soap, _tptz__GotoHomePositionResponse *p) -{ - if (::soap_read__tptz__GotoHomePositionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GotoHomePosition_DEFINED -#define SOAP_TYPE__tptz__GotoHomePosition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoHomePosition(struct soap*, const char*, int, const _tptz__GotoHomePosition *, const char*); -SOAP_FMAC3 _tptz__GotoHomePosition * SOAP_FMAC4 soap_in__tptz__GotoHomePosition(struct soap*, const char*, _tptz__GotoHomePosition *, const char*); -SOAP_FMAC1 _tptz__GotoHomePosition * SOAP_FMAC2 soap_instantiate__tptz__GotoHomePosition(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GotoHomePosition * soap_new__tptz__GotoHomePosition(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GotoHomePosition(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GotoHomePosition * soap_new_req__tptz__GotoHomePosition( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GotoHomePosition *_p = ::soap_new__tptz__GotoHomePosition(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GotoHomePosition::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__GotoHomePosition * soap_new_set__tptz__GotoHomePosition( - struct soap *soap, - const std::string& ProfileToken, - tt__PTZSpeed *Speed) -{ - _tptz__GotoHomePosition *_p = ::soap_new__tptz__GotoHomePosition(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GotoHomePosition::ProfileToken = ProfileToken; - _p->_tptz__GotoHomePosition::Speed = Speed; - } - return _p; -} - -inline int soap_write__tptz__GotoHomePosition(struct soap *soap, _tptz__GotoHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GotoHomePosition", p->soap_type() == SOAP_TYPE__tptz__GotoHomePosition ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GotoHomePosition(struct soap *soap, const char *URL, _tptz__GotoHomePosition 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, "tptz:GotoHomePosition", p->soap_type() == SOAP_TYPE__tptz__GotoHomePosition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GotoHomePosition(struct soap *soap, const char *URL, _tptz__GotoHomePosition 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, "tptz:GotoHomePosition", p->soap_type() == SOAP_TYPE__tptz__GotoHomePosition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GotoHomePosition(struct soap *soap, const char *URL, _tptz__GotoHomePosition 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, "tptz:GotoHomePosition", p->soap_type() == SOAP_TYPE__tptz__GotoHomePosition ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GotoHomePosition * SOAP_FMAC4 soap_get__tptz__GotoHomePosition(struct soap*, _tptz__GotoHomePosition *, const char*, const char*); - -inline int soap_read__tptz__GotoHomePosition(struct soap *soap, _tptz__GotoHomePosition *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GotoHomePosition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GotoHomePosition(struct soap *soap, const char *URL, _tptz__GotoHomePosition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GotoHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GotoHomePosition(struct soap *soap, _tptz__GotoHomePosition *p) -{ - if (::soap_read__tptz__GotoHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetStatusResponse_DEFINED -#define SOAP_TYPE__tptz__GetStatusResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetStatusResponse(struct soap*, const char*, int, const _tptz__GetStatusResponse *, const char*); -SOAP_FMAC3 _tptz__GetStatusResponse * SOAP_FMAC4 soap_in__tptz__GetStatusResponse(struct soap*, const char*, _tptz__GetStatusResponse *, const char*); -SOAP_FMAC1 _tptz__GetStatusResponse * SOAP_FMAC2 soap_instantiate__tptz__GetStatusResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetStatusResponse * soap_new__tptz__GetStatusResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetStatusResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetStatusResponse * soap_new_req__tptz__GetStatusResponse( - struct soap *soap, - tt__PTZStatus *PTZStatus) -{ - _tptz__GetStatusResponse *_p = ::soap_new__tptz__GetStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetStatusResponse::PTZStatus = PTZStatus; - } - return _p; -} - -inline _tptz__GetStatusResponse * soap_new_set__tptz__GetStatusResponse( - struct soap *soap, - tt__PTZStatus *PTZStatus) -{ - _tptz__GetStatusResponse *_p = ::soap_new__tptz__GetStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetStatusResponse::PTZStatus = PTZStatus; - } - return _p; -} - -inline int soap_write__tptz__GetStatusResponse(struct soap *soap, _tptz__GetStatusResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetStatusResponse", p->soap_type() == SOAP_TYPE__tptz__GetStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetStatusResponse(struct soap *soap, const char *URL, _tptz__GetStatusResponse 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, "tptz:GetStatusResponse", p->soap_type() == SOAP_TYPE__tptz__GetStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetStatusResponse(struct soap *soap, const char *URL, _tptz__GetStatusResponse 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, "tptz:GetStatusResponse", p->soap_type() == SOAP_TYPE__tptz__GetStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetStatusResponse(struct soap *soap, const char *URL, _tptz__GetStatusResponse 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, "tptz:GetStatusResponse", p->soap_type() == SOAP_TYPE__tptz__GetStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetStatusResponse * SOAP_FMAC4 soap_get__tptz__GetStatusResponse(struct soap*, _tptz__GetStatusResponse *, const char*, const char*); - -inline int soap_read__tptz__GetStatusResponse(struct soap *soap, _tptz__GetStatusResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetStatusResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetStatusResponse(struct soap *soap, const char *URL, _tptz__GetStatusResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetStatusResponse(struct soap *soap, _tptz__GetStatusResponse *p) -{ - if (::soap_read__tptz__GetStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetStatus_DEFINED -#define SOAP_TYPE__tptz__GetStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetStatus(struct soap*, const char*, int, const _tptz__GetStatus *, const char*); -SOAP_FMAC3 _tptz__GetStatus * SOAP_FMAC4 soap_in__tptz__GetStatus(struct soap*, const char*, _tptz__GetStatus *, const char*); -SOAP_FMAC1 _tptz__GetStatus * SOAP_FMAC2 soap_instantiate__tptz__GetStatus(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetStatus * soap_new__tptz__GetStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetStatus(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetStatus * soap_new_req__tptz__GetStatus( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetStatus *_p = ::soap_new__tptz__GetStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetStatus::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__GetStatus * soap_new_set__tptz__GetStatus( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetStatus *_p = ::soap_new__tptz__GetStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetStatus::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__tptz__GetStatus(struct soap *soap, _tptz__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetStatus", p->soap_type() == SOAP_TYPE__tptz__GetStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetStatus(struct soap *soap, const char *URL, _tptz__GetStatus 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, "tptz:GetStatus", p->soap_type() == SOAP_TYPE__tptz__GetStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetStatus(struct soap *soap, const char *URL, _tptz__GetStatus 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, "tptz:GetStatus", p->soap_type() == SOAP_TYPE__tptz__GetStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetStatus(struct soap *soap, const char *URL, _tptz__GetStatus 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, "tptz:GetStatus", p->soap_type() == SOAP_TYPE__tptz__GetStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetStatus * SOAP_FMAC4 soap_get__tptz__GetStatus(struct soap*, _tptz__GetStatus *, const char*, const char*); - -inline int soap_read__tptz__GetStatus(struct soap *soap, _tptz__GetStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetStatus(struct soap *soap, const char *URL, _tptz__GetStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetStatus(struct soap *soap, _tptz__GetStatus *p) -{ - if (::soap_read__tptz__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GotoPresetResponse_DEFINED -#define SOAP_TYPE__tptz__GotoPresetResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoPresetResponse(struct soap*, const char*, int, const _tptz__GotoPresetResponse *, const char*); -SOAP_FMAC3 _tptz__GotoPresetResponse * SOAP_FMAC4 soap_in__tptz__GotoPresetResponse(struct soap*, const char*, _tptz__GotoPresetResponse *, const char*); -SOAP_FMAC1 _tptz__GotoPresetResponse * SOAP_FMAC2 soap_instantiate__tptz__GotoPresetResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GotoPresetResponse * soap_new__tptz__GotoPresetResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GotoPresetResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GotoPresetResponse * soap_new_req__tptz__GotoPresetResponse( - struct soap *soap) -{ - _tptz__GotoPresetResponse *_p = ::soap_new__tptz__GotoPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GotoPresetResponse * soap_new_set__tptz__GotoPresetResponse( - struct soap *soap) -{ - _tptz__GotoPresetResponse *_p = ::soap_new__tptz__GotoPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__GotoPresetResponse(struct soap *soap, _tptz__GotoPresetResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GotoPresetResponse", p->soap_type() == SOAP_TYPE__tptz__GotoPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GotoPresetResponse(struct soap *soap, const char *URL, _tptz__GotoPresetResponse 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, "tptz:GotoPresetResponse", p->soap_type() == SOAP_TYPE__tptz__GotoPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GotoPresetResponse(struct soap *soap, const char *URL, _tptz__GotoPresetResponse 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, "tptz:GotoPresetResponse", p->soap_type() == SOAP_TYPE__tptz__GotoPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GotoPresetResponse(struct soap *soap, const char *URL, _tptz__GotoPresetResponse 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, "tptz:GotoPresetResponse", p->soap_type() == SOAP_TYPE__tptz__GotoPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GotoPresetResponse * SOAP_FMAC4 soap_get__tptz__GotoPresetResponse(struct soap*, _tptz__GotoPresetResponse *, const char*, const char*); - -inline int soap_read__tptz__GotoPresetResponse(struct soap *soap, _tptz__GotoPresetResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GotoPresetResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GotoPresetResponse(struct soap *soap, const char *URL, _tptz__GotoPresetResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GotoPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GotoPresetResponse(struct soap *soap, _tptz__GotoPresetResponse *p) -{ - if (::soap_read__tptz__GotoPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GotoPreset_DEFINED -#define SOAP_TYPE__tptz__GotoPreset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GotoPreset(struct soap*, const char*, int, const _tptz__GotoPreset *, const char*); -SOAP_FMAC3 _tptz__GotoPreset * SOAP_FMAC4 soap_in__tptz__GotoPreset(struct soap*, const char*, _tptz__GotoPreset *, const char*); -SOAP_FMAC1 _tptz__GotoPreset * SOAP_FMAC2 soap_instantiate__tptz__GotoPreset(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GotoPreset * soap_new__tptz__GotoPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GotoPreset(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GotoPreset * soap_new_req__tptz__GotoPreset( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetToken) -{ - _tptz__GotoPreset *_p = ::soap_new__tptz__GotoPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GotoPreset::ProfileToken = ProfileToken; - _p->_tptz__GotoPreset::PresetToken = PresetToken; - } - return _p; -} - -inline _tptz__GotoPreset * soap_new_set__tptz__GotoPreset( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetToken, - tt__PTZSpeed *Speed) -{ - _tptz__GotoPreset *_p = ::soap_new__tptz__GotoPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GotoPreset::ProfileToken = ProfileToken; - _p->_tptz__GotoPreset::PresetToken = PresetToken; - _p->_tptz__GotoPreset::Speed = Speed; - } - return _p; -} - -inline int soap_write__tptz__GotoPreset(struct soap *soap, _tptz__GotoPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GotoPreset", p->soap_type() == SOAP_TYPE__tptz__GotoPreset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GotoPreset(struct soap *soap, const char *URL, _tptz__GotoPreset 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, "tptz:GotoPreset", p->soap_type() == SOAP_TYPE__tptz__GotoPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GotoPreset(struct soap *soap, const char *URL, _tptz__GotoPreset 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, "tptz:GotoPreset", p->soap_type() == SOAP_TYPE__tptz__GotoPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GotoPreset(struct soap *soap, const char *URL, _tptz__GotoPreset 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, "tptz:GotoPreset", p->soap_type() == SOAP_TYPE__tptz__GotoPreset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GotoPreset * SOAP_FMAC4 soap_get__tptz__GotoPreset(struct soap*, _tptz__GotoPreset *, const char*, const char*); - -inline int soap_read__tptz__GotoPreset(struct soap *soap, _tptz__GotoPreset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GotoPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GotoPreset(struct soap *soap, const char *URL, _tptz__GotoPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GotoPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GotoPreset(struct soap *soap, _tptz__GotoPreset *p) -{ - if (::soap_read__tptz__GotoPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__RemovePresetResponse_DEFINED -#define SOAP_TYPE__tptz__RemovePresetResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePresetResponse(struct soap*, const char*, int, const _tptz__RemovePresetResponse *, const char*); -SOAP_FMAC3 _tptz__RemovePresetResponse * SOAP_FMAC4 soap_in__tptz__RemovePresetResponse(struct soap*, const char*, _tptz__RemovePresetResponse *, const char*); -SOAP_FMAC1 _tptz__RemovePresetResponse * SOAP_FMAC2 soap_instantiate__tptz__RemovePresetResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__RemovePresetResponse * soap_new__tptz__RemovePresetResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__RemovePresetResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__RemovePresetResponse * soap_new_req__tptz__RemovePresetResponse( - struct soap *soap) -{ - _tptz__RemovePresetResponse *_p = ::soap_new__tptz__RemovePresetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__RemovePresetResponse * soap_new_set__tptz__RemovePresetResponse( - struct soap *soap) -{ - _tptz__RemovePresetResponse *_p = ::soap_new__tptz__RemovePresetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__RemovePresetResponse(struct soap *soap, _tptz__RemovePresetResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:RemovePresetResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__RemovePresetResponse(struct soap *soap, const char *URL, _tptz__RemovePresetResponse 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, "tptz:RemovePresetResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__RemovePresetResponse(struct soap *soap, const char *URL, _tptz__RemovePresetResponse 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, "tptz:RemovePresetResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__RemovePresetResponse(struct soap *soap, const char *URL, _tptz__RemovePresetResponse 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, "tptz:RemovePresetResponse", p->soap_type() == SOAP_TYPE__tptz__RemovePresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__RemovePresetResponse * SOAP_FMAC4 soap_get__tptz__RemovePresetResponse(struct soap*, _tptz__RemovePresetResponse *, const char*, const char*); - -inline int soap_read__tptz__RemovePresetResponse(struct soap *soap, _tptz__RemovePresetResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__RemovePresetResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__RemovePresetResponse(struct soap *soap, const char *URL, _tptz__RemovePresetResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__RemovePresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__RemovePresetResponse(struct soap *soap, _tptz__RemovePresetResponse *p) -{ - if (::soap_read__tptz__RemovePresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__RemovePreset_DEFINED -#define SOAP_TYPE__tptz__RemovePreset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__RemovePreset(struct soap*, const char*, int, const _tptz__RemovePreset *, const char*); -SOAP_FMAC3 _tptz__RemovePreset * SOAP_FMAC4 soap_in__tptz__RemovePreset(struct soap*, const char*, _tptz__RemovePreset *, const char*); -SOAP_FMAC1 _tptz__RemovePreset * SOAP_FMAC2 soap_instantiate__tptz__RemovePreset(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__RemovePreset * soap_new__tptz__RemovePreset(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__RemovePreset(soap, n, NULL, NULL, NULL); -} - -inline _tptz__RemovePreset * soap_new_req__tptz__RemovePreset( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetToken) -{ - _tptz__RemovePreset *_p = ::soap_new__tptz__RemovePreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__RemovePreset::ProfileToken = ProfileToken; - _p->_tptz__RemovePreset::PresetToken = PresetToken; - } - return _p; -} - -inline _tptz__RemovePreset * soap_new_set__tptz__RemovePreset( - struct soap *soap, - const std::string& ProfileToken, - const std::string& PresetToken) -{ - _tptz__RemovePreset *_p = ::soap_new__tptz__RemovePreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__RemovePreset::ProfileToken = ProfileToken; - _p->_tptz__RemovePreset::PresetToken = PresetToken; - } - return _p; -} - -inline int soap_write__tptz__RemovePreset(struct soap *soap, _tptz__RemovePreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:RemovePreset", p->soap_type() == SOAP_TYPE__tptz__RemovePreset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__RemovePreset(struct soap *soap, const char *URL, _tptz__RemovePreset 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, "tptz:RemovePreset", p->soap_type() == SOAP_TYPE__tptz__RemovePreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__RemovePreset(struct soap *soap, const char *URL, _tptz__RemovePreset 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, "tptz:RemovePreset", p->soap_type() == SOAP_TYPE__tptz__RemovePreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__RemovePreset(struct soap *soap, const char *URL, _tptz__RemovePreset 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, "tptz:RemovePreset", p->soap_type() == SOAP_TYPE__tptz__RemovePreset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__RemovePreset * SOAP_FMAC4 soap_get__tptz__RemovePreset(struct soap*, _tptz__RemovePreset *, const char*, const char*); - -inline int soap_read__tptz__RemovePreset(struct soap *soap, _tptz__RemovePreset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__RemovePreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__RemovePreset(struct soap *soap, const char *URL, _tptz__RemovePreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__RemovePreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__RemovePreset(struct soap *soap, _tptz__RemovePreset *p) -{ - if (::soap_read__tptz__RemovePreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SetPresetResponse_DEFINED -#define SOAP_TYPE__tptz__SetPresetResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetPresetResponse(struct soap*, const char*, int, const _tptz__SetPresetResponse *, const char*); -SOAP_FMAC3 _tptz__SetPresetResponse * SOAP_FMAC4 soap_in__tptz__SetPresetResponse(struct soap*, const char*, _tptz__SetPresetResponse *, const char*); -SOAP_FMAC1 _tptz__SetPresetResponse * SOAP_FMAC2 soap_instantiate__tptz__SetPresetResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SetPresetResponse * soap_new__tptz__SetPresetResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SetPresetResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SetPresetResponse * soap_new_req__tptz__SetPresetResponse( - struct soap *soap, - const std::string& PresetToken) -{ - _tptz__SetPresetResponse *_p = ::soap_new__tptz__SetPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetPresetResponse::PresetToken = PresetToken; - } - return _p; -} - -inline _tptz__SetPresetResponse * soap_new_set__tptz__SetPresetResponse( - struct soap *soap, - const std::string& PresetToken) -{ - _tptz__SetPresetResponse *_p = ::soap_new__tptz__SetPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetPresetResponse::PresetToken = PresetToken; - } - return _p; -} - -inline int soap_write__tptz__SetPresetResponse(struct soap *soap, _tptz__SetPresetResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SetPresetResponse", p->soap_type() == SOAP_TYPE__tptz__SetPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SetPresetResponse(struct soap *soap, const char *URL, _tptz__SetPresetResponse 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, "tptz:SetPresetResponse", p->soap_type() == SOAP_TYPE__tptz__SetPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SetPresetResponse(struct soap *soap, const char *URL, _tptz__SetPresetResponse 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, "tptz:SetPresetResponse", p->soap_type() == SOAP_TYPE__tptz__SetPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SetPresetResponse(struct soap *soap, const char *URL, _tptz__SetPresetResponse 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, "tptz:SetPresetResponse", p->soap_type() == SOAP_TYPE__tptz__SetPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SetPresetResponse * SOAP_FMAC4 soap_get__tptz__SetPresetResponse(struct soap*, _tptz__SetPresetResponse *, const char*, const char*); - -inline int soap_read__tptz__SetPresetResponse(struct soap *soap, _tptz__SetPresetResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SetPresetResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SetPresetResponse(struct soap *soap, const char *URL, _tptz__SetPresetResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SetPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SetPresetResponse(struct soap *soap, _tptz__SetPresetResponse *p) -{ - if (::soap_read__tptz__SetPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SetPreset_DEFINED -#define SOAP_TYPE__tptz__SetPreset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetPreset(struct soap*, const char*, int, const _tptz__SetPreset *, const char*); -SOAP_FMAC3 _tptz__SetPreset * SOAP_FMAC4 soap_in__tptz__SetPreset(struct soap*, const char*, _tptz__SetPreset *, const char*); -SOAP_FMAC1 _tptz__SetPreset * SOAP_FMAC2 soap_instantiate__tptz__SetPreset(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SetPreset * soap_new__tptz__SetPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SetPreset(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SetPreset * soap_new_req__tptz__SetPreset( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__SetPreset *_p = ::soap_new__tptz__SetPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetPreset::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__SetPreset * soap_new_set__tptz__SetPreset( - struct soap *soap, - const std::string& ProfileToken, - std::string *PresetName, - std::string *PresetToken) -{ - _tptz__SetPreset *_p = ::soap_new__tptz__SetPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetPreset::ProfileToken = ProfileToken; - _p->_tptz__SetPreset::PresetName = PresetName; - _p->_tptz__SetPreset::PresetToken = PresetToken; - } - return _p; -} - -inline int soap_write__tptz__SetPreset(struct soap *soap, _tptz__SetPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SetPreset", p->soap_type() == SOAP_TYPE__tptz__SetPreset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SetPreset(struct soap *soap, const char *URL, _tptz__SetPreset 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, "tptz:SetPreset", p->soap_type() == SOAP_TYPE__tptz__SetPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SetPreset(struct soap *soap, const char *URL, _tptz__SetPreset 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, "tptz:SetPreset", p->soap_type() == SOAP_TYPE__tptz__SetPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SetPreset(struct soap *soap, const char *URL, _tptz__SetPreset 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, "tptz:SetPreset", p->soap_type() == SOAP_TYPE__tptz__SetPreset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SetPreset * SOAP_FMAC4 soap_get__tptz__SetPreset(struct soap*, _tptz__SetPreset *, const char*, const char*); - -inline int soap_read__tptz__SetPreset(struct soap *soap, _tptz__SetPreset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SetPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SetPreset(struct soap *soap, const char *URL, _tptz__SetPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SetPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SetPreset(struct soap *soap, _tptz__SetPreset *p) -{ - if (::soap_read__tptz__SetPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresetsResponse_DEFINED -#define SOAP_TYPE__tptz__GetPresetsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresetsResponse(struct soap*, const char*, int, const _tptz__GetPresetsResponse *, const char*); -SOAP_FMAC3 _tptz__GetPresetsResponse * SOAP_FMAC4 soap_in__tptz__GetPresetsResponse(struct soap*, const char*, _tptz__GetPresetsResponse *, const char*); -SOAP_FMAC1 _tptz__GetPresetsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetPresetsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresetsResponse * soap_new__tptz__GetPresetsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresetsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresetsResponse * soap_new_req__tptz__GetPresetsResponse( - struct soap *soap) -{ - _tptz__GetPresetsResponse *_p = ::soap_new__tptz__GetPresetsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetPresetsResponse * soap_new_set__tptz__GetPresetsResponse( - struct soap *soap, - const std::vector & Preset) -{ - _tptz__GetPresetsResponse *_p = ::soap_new__tptz__GetPresetsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresetsResponse::Preset = Preset; - } - return _p; -} - -inline int soap_write__tptz__GetPresetsResponse(struct soap *soap, _tptz__GetPresetsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresetsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresetsResponse(struct soap *soap, const char *URL, _tptz__GetPresetsResponse 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, "tptz:GetPresetsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresetsResponse(struct soap *soap, const char *URL, _tptz__GetPresetsResponse 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, "tptz:GetPresetsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresetsResponse(struct soap *soap, const char *URL, _tptz__GetPresetsResponse 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, "tptz:GetPresetsResponse", p->soap_type() == SOAP_TYPE__tptz__GetPresetsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresetsResponse * SOAP_FMAC4 soap_get__tptz__GetPresetsResponse(struct soap*, _tptz__GetPresetsResponse *, const char*, const char*); - -inline int soap_read__tptz__GetPresetsResponse(struct soap *soap, _tptz__GetPresetsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresetsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresetsResponse(struct soap *soap, const char *URL, _tptz__GetPresetsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresetsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresetsResponse(struct soap *soap, _tptz__GetPresetsResponse *p) -{ - if (::soap_read__tptz__GetPresetsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetPresets_DEFINED -#define SOAP_TYPE__tptz__GetPresets_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetPresets(struct soap*, const char*, int, const _tptz__GetPresets *, const char*); -SOAP_FMAC3 _tptz__GetPresets * SOAP_FMAC4 soap_in__tptz__GetPresets(struct soap*, const char*, _tptz__GetPresets *, const char*); -SOAP_FMAC1 _tptz__GetPresets * SOAP_FMAC2 soap_instantiate__tptz__GetPresets(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetPresets * soap_new__tptz__GetPresets(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetPresets(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetPresets * soap_new_req__tptz__GetPresets( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetPresets *_p = ::soap_new__tptz__GetPresets(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresets::ProfileToken = ProfileToken; - } - return _p; -} - -inline _tptz__GetPresets * soap_new_set__tptz__GetPresets( - struct soap *soap, - const std::string& ProfileToken) -{ - _tptz__GetPresets *_p = ::soap_new__tptz__GetPresets(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetPresets::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__tptz__GetPresets(struct soap *soap, _tptz__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetPresets", p->soap_type() == SOAP_TYPE__tptz__GetPresets ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetPresets(struct soap *soap, const char *URL, _tptz__GetPresets 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, "tptz:GetPresets", p->soap_type() == SOAP_TYPE__tptz__GetPresets ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetPresets(struct soap *soap, const char *URL, _tptz__GetPresets 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, "tptz:GetPresets", p->soap_type() == SOAP_TYPE__tptz__GetPresets ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetPresets(struct soap *soap, const char *URL, _tptz__GetPresets 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, "tptz:GetPresets", p->soap_type() == SOAP_TYPE__tptz__GetPresets ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetPresets * SOAP_FMAC4 soap_get__tptz__GetPresets(struct soap*, _tptz__GetPresets *, const char*, const char*); - -inline int soap_read__tptz__GetPresets(struct soap *soap, _tptz__GetPresets *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetPresets(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetPresets(struct soap *soap, const char *URL, _tptz__GetPresets *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetPresets(struct soap *soap, _tptz__GetPresets *p) -{ - if (::soap_read__tptz__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SendAuxiliaryCommandResponse_DEFINED -#define SOAP_TYPE__tptz__SendAuxiliaryCommandResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SendAuxiliaryCommandResponse(struct soap*, const char*, int, const _tptz__SendAuxiliaryCommandResponse *, const char*); -SOAP_FMAC3 _tptz__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_in__tptz__SendAuxiliaryCommandResponse(struct soap*, const char*, _tptz__SendAuxiliaryCommandResponse *, const char*); -SOAP_FMAC1 _tptz__SendAuxiliaryCommandResponse * SOAP_FMAC2 soap_instantiate__tptz__SendAuxiliaryCommandResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SendAuxiliaryCommandResponse * soap_new__tptz__SendAuxiliaryCommandResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SendAuxiliaryCommandResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SendAuxiliaryCommandResponse * soap_new_req__tptz__SendAuxiliaryCommandResponse( - struct soap *soap, - const std::string& AuxiliaryResponse) -{ - _tptz__SendAuxiliaryCommandResponse *_p = ::soap_new__tptz__SendAuxiliaryCommandResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SendAuxiliaryCommandResponse::AuxiliaryResponse = AuxiliaryResponse; - } - return _p; -} - -inline _tptz__SendAuxiliaryCommandResponse * soap_new_set__tptz__SendAuxiliaryCommandResponse( - struct soap *soap, - const std::string& AuxiliaryResponse) -{ - _tptz__SendAuxiliaryCommandResponse *_p = ::soap_new__tptz__SendAuxiliaryCommandResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SendAuxiliaryCommandResponse::AuxiliaryResponse = AuxiliaryResponse; - } - return _p; -} - -inline int soap_write__tptz__SendAuxiliaryCommandResponse(struct soap *soap, _tptz__SendAuxiliaryCommandResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommandResponse 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, "tptz:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommandResponse 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, "tptz:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommandResponse 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, "tptz:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_get__tptz__SendAuxiliaryCommandResponse(struct soap*, _tptz__SendAuxiliaryCommandResponse *, const char*, const char*); - -inline int soap_read__tptz__SendAuxiliaryCommandResponse(struct soap *soap, _tptz__SendAuxiliaryCommandResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SendAuxiliaryCommandResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommandResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SendAuxiliaryCommandResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SendAuxiliaryCommandResponse(struct soap *soap, _tptz__SendAuxiliaryCommandResponse *p) -{ - if (::soap_read__tptz__SendAuxiliaryCommandResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SendAuxiliaryCommand_DEFINED -#define SOAP_TYPE__tptz__SendAuxiliaryCommand_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SendAuxiliaryCommand(struct soap*, const char*, int, const _tptz__SendAuxiliaryCommand *, const char*); -SOAP_FMAC3 _tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_in__tptz__SendAuxiliaryCommand(struct soap*, const char*, _tptz__SendAuxiliaryCommand *, const char*); -SOAP_FMAC1 _tptz__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate__tptz__SendAuxiliaryCommand(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SendAuxiliaryCommand * soap_new__tptz__SendAuxiliaryCommand(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SendAuxiliaryCommand(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SendAuxiliaryCommand * soap_new_req__tptz__SendAuxiliaryCommand( - struct soap *soap, - const std::string& ProfileToken, - const std::string& AuxiliaryData) -{ - _tptz__SendAuxiliaryCommand *_p = ::soap_new__tptz__SendAuxiliaryCommand(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SendAuxiliaryCommand::ProfileToken = ProfileToken; - _p->_tptz__SendAuxiliaryCommand::AuxiliaryData = AuxiliaryData; - } - return _p; -} - -inline _tptz__SendAuxiliaryCommand * soap_new_set__tptz__SendAuxiliaryCommand( - struct soap *soap, - const std::string& ProfileToken, - const std::string& AuxiliaryData) -{ - _tptz__SendAuxiliaryCommand *_p = ::soap_new__tptz__SendAuxiliaryCommand(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SendAuxiliaryCommand::ProfileToken = ProfileToken; - _p->_tptz__SendAuxiliaryCommand::AuxiliaryData = AuxiliaryData; - } - return _p; -} - -inline int soap_write__tptz__SendAuxiliaryCommand(struct soap *soap, _tptz__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommand 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, "tptz:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommand 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, "tptz:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommand 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, "tptz:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tptz__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_get__tptz__SendAuxiliaryCommand(struct soap*, _tptz__SendAuxiliaryCommand *, const char*, const char*); - -inline int soap_read__tptz__SendAuxiliaryCommand(struct soap *soap, _tptz__SendAuxiliaryCommand *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SendAuxiliaryCommand(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tptz__SendAuxiliaryCommand *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SendAuxiliaryCommand(struct soap *soap, _tptz__SendAuxiliaryCommand *p) -{ - if (::soap_read__tptz__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__tptz__GetConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationOptionsResponse(struct soap*, const char*, int, const _tptz__GetConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _tptz__GetConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tptz__GetConfigurationOptionsResponse(struct soap*, const char*, _tptz__GetConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _tptz__GetConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetConfigurationOptionsResponse * soap_new__tptz__GetConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetConfigurationOptionsResponse * soap_new_req__tptz__GetConfigurationOptionsResponse( - struct soap *soap, - tt__PTZConfigurationOptions *PTZConfigurationOptions) -{ - _tptz__GetConfigurationOptionsResponse *_p = ::soap_new__tptz__GetConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions = PTZConfigurationOptions; - } - return _p; -} - -inline _tptz__GetConfigurationOptionsResponse * soap_new_set__tptz__GetConfigurationOptionsResponse( - struct soap *soap, - tt__PTZConfigurationOptions *PTZConfigurationOptions) -{ - _tptz__GetConfigurationOptionsResponse *_p = ::soap_new__tptz__GetConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfigurationOptionsResponse::PTZConfigurationOptions = PTZConfigurationOptions; - } - return _p; -} - -inline int soap_write__tptz__GetConfigurationOptionsResponse(struct soap *soap, _tptz__GetConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetConfigurationOptionsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationOptionsResponse 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, "tptz:GetConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetConfigurationOptionsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationOptionsResponse 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, "tptz:GetConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetConfigurationOptionsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationOptionsResponse 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, "tptz:GetConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tptz__GetConfigurationOptionsResponse(struct soap*, _tptz__GetConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__tptz__GetConfigurationOptionsResponse(struct soap *soap, _tptz__GetConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetConfigurationOptionsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetConfigurationOptionsResponse(struct soap *soap, _tptz__GetConfigurationOptionsResponse *p) -{ - if (::soap_read__tptz__GetConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetConfigurationOptions_DEFINED -#define SOAP_TYPE__tptz__GetConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationOptions(struct soap*, const char*, int, const _tptz__GetConfigurationOptions *, const char*); -SOAP_FMAC3 _tptz__GetConfigurationOptions * SOAP_FMAC4 soap_in__tptz__GetConfigurationOptions(struct soap*, const char*, _tptz__GetConfigurationOptions *, const char*); -SOAP_FMAC1 _tptz__GetConfigurationOptions * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetConfigurationOptions * soap_new__tptz__GetConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetConfigurationOptions * soap_new_req__tptz__GetConfigurationOptions( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _tptz__GetConfigurationOptions *_p = ::soap_new__tptz__GetConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfigurationOptions::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _tptz__GetConfigurationOptions * soap_new_set__tptz__GetConfigurationOptions( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _tptz__GetConfigurationOptions *_p = ::soap_new__tptz__GetConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfigurationOptions::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__tptz__GetConfigurationOptions(struct soap *soap, _tptz__GetConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetConfigurationOptions", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetConfigurationOptions(struct soap *soap, const char *URL, _tptz__GetConfigurationOptions 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, "tptz:GetConfigurationOptions", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetConfigurationOptions(struct soap *soap, const char *URL, _tptz__GetConfigurationOptions 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, "tptz:GetConfigurationOptions", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetConfigurationOptions(struct soap *soap, const char *URL, _tptz__GetConfigurationOptions 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, "tptz:GetConfigurationOptions", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetConfigurationOptions * SOAP_FMAC4 soap_get__tptz__GetConfigurationOptions(struct soap*, _tptz__GetConfigurationOptions *, const char*, const char*); - -inline int soap_read__tptz__GetConfigurationOptions(struct soap *soap, _tptz__GetConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetConfigurationOptions(struct soap *soap, const char *URL, _tptz__GetConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetConfigurationOptions(struct soap *soap, _tptz__GetConfigurationOptions *p) -{ - if (::soap_read__tptz__GetConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SetConfigurationResponse_DEFINED -#define SOAP_TYPE__tptz__SetConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetConfigurationResponse(struct soap*, const char*, int, const _tptz__SetConfigurationResponse *, const char*); -SOAP_FMAC3 _tptz__SetConfigurationResponse * SOAP_FMAC4 soap_in__tptz__SetConfigurationResponse(struct soap*, const char*, _tptz__SetConfigurationResponse *, const char*); -SOAP_FMAC1 _tptz__SetConfigurationResponse * SOAP_FMAC2 soap_instantiate__tptz__SetConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SetConfigurationResponse * soap_new__tptz__SetConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SetConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SetConfigurationResponse * soap_new_req__tptz__SetConfigurationResponse( - struct soap *soap) -{ - _tptz__SetConfigurationResponse *_p = ::soap_new__tptz__SetConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__SetConfigurationResponse * soap_new_set__tptz__SetConfigurationResponse( - struct soap *soap, - struct __tptz__SetConfigurationResponse_sequence *__SetConfigurationResponse_sequence) -{ - _tptz__SetConfigurationResponse *_p = ::soap_new__tptz__SetConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetConfigurationResponse::__SetConfigurationResponse_sequence = __SetConfigurationResponse_sequence; - } - return _p; -} - -inline int soap_write__tptz__SetConfigurationResponse(struct soap *soap, _tptz__SetConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__SetConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SetConfigurationResponse(struct soap *soap, const char *URL, _tptz__SetConfigurationResponse 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, "tptz:SetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__SetConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SetConfigurationResponse(struct soap *soap, const char *URL, _tptz__SetConfigurationResponse 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, "tptz:SetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__SetConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SetConfigurationResponse(struct soap *soap, const char *URL, _tptz__SetConfigurationResponse 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, "tptz:SetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__SetConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SetConfigurationResponse * SOAP_FMAC4 soap_get__tptz__SetConfigurationResponse(struct soap*, _tptz__SetConfigurationResponse *, const char*, const char*); - -inline int soap_read__tptz__SetConfigurationResponse(struct soap *soap, _tptz__SetConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SetConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SetConfigurationResponse(struct soap *soap, const char *URL, _tptz__SetConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SetConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SetConfigurationResponse(struct soap *soap, _tptz__SetConfigurationResponse *p) -{ - if (::soap_read__tptz__SetConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__SetConfiguration_DEFINED -#define SOAP_TYPE__tptz__SetConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__SetConfiguration(struct soap*, const char*, int, const _tptz__SetConfiguration *, const char*); -SOAP_FMAC3 _tptz__SetConfiguration * SOAP_FMAC4 soap_in__tptz__SetConfiguration(struct soap*, const char*, _tptz__SetConfiguration *, const char*); -SOAP_FMAC1 _tptz__SetConfiguration * SOAP_FMAC2 soap_instantiate__tptz__SetConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__SetConfiguration * soap_new__tptz__SetConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__SetConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tptz__SetConfiguration * soap_new_req__tptz__SetConfiguration( - struct soap *soap, - tt__PTZConfiguration *PTZConfiguration, - bool ForcePersistence) -{ - _tptz__SetConfiguration *_p = ::soap_new__tptz__SetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetConfiguration::PTZConfiguration = PTZConfiguration; - _p->_tptz__SetConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _tptz__SetConfiguration * soap_new_set__tptz__SetConfiguration( - struct soap *soap, - tt__PTZConfiguration *PTZConfiguration, - bool ForcePersistence) -{ - _tptz__SetConfiguration *_p = ::soap_new__tptz__SetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__SetConfiguration::PTZConfiguration = PTZConfiguration; - _p->_tptz__SetConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__tptz__SetConfiguration(struct soap *soap, _tptz__SetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:SetConfiguration", p->soap_type() == SOAP_TYPE__tptz__SetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__SetConfiguration(struct soap *soap, const char *URL, _tptz__SetConfiguration 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, "tptz:SetConfiguration", p->soap_type() == SOAP_TYPE__tptz__SetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__SetConfiguration(struct soap *soap, const char *URL, _tptz__SetConfiguration 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, "tptz:SetConfiguration", p->soap_type() == SOAP_TYPE__tptz__SetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__SetConfiguration(struct soap *soap, const char *URL, _tptz__SetConfiguration 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, "tptz:SetConfiguration", p->soap_type() == SOAP_TYPE__tptz__SetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__SetConfiguration * SOAP_FMAC4 soap_get__tptz__SetConfiguration(struct soap*, _tptz__SetConfiguration *, const char*, const char*); - -inline int soap_read__tptz__SetConfiguration(struct soap *soap, _tptz__SetConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__SetConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__SetConfiguration(struct soap *soap, const char *URL, _tptz__SetConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__SetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__SetConfiguration(struct soap *soap, _tptz__SetConfiguration *p) -{ - if (::soap_read__tptz__SetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetConfigurationResponse_DEFINED -#define SOAP_TYPE__tptz__GetConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationResponse(struct soap*, const char*, int, const _tptz__GetConfigurationResponse *, const char*); -SOAP_FMAC3 _tptz__GetConfigurationResponse * SOAP_FMAC4 soap_in__tptz__GetConfigurationResponse(struct soap*, const char*, _tptz__GetConfigurationResponse *, const char*); -SOAP_FMAC1 _tptz__GetConfigurationResponse * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetConfigurationResponse * soap_new__tptz__GetConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetConfigurationResponse * soap_new_req__tptz__GetConfigurationResponse( - struct soap *soap, - tt__PTZConfiguration *PTZConfiguration) -{ - _tptz__GetConfigurationResponse *_p = ::soap_new__tptz__GetConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfigurationResponse::PTZConfiguration = PTZConfiguration; - } - return _p; -} - -inline _tptz__GetConfigurationResponse * soap_new_set__tptz__GetConfigurationResponse( - struct soap *soap, - tt__PTZConfiguration *PTZConfiguration) -{ - _tptz__GetConfigurationResponse *_p = ::soap_new__tptz__GetConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfigurationResponse::PTZConfiguration = PTZConfiguration; - } - return _p; -} - -inline int soap_write__tptz__GetConfigurationResponse(struct soap *soap, _tptz__GetConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetConfigurationResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationResponse 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, "tptz:GetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetConfigurationResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationResponse 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, "tptz:GetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetConfigurationResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationResponse 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, "tptz:GetConfigurationResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetConfigurationResponse * SOAP_FMAC4 soap_get__tptz__GetConfigurationResponse(struct soap*, _tptz__GetConfigurationResponse *, const char*, const char*); - -inline int soap_read__tptz__GetConfigurationResponse(struct soap *soap, _tptz__GetConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetConfigurationResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetConfigurationResponse(struct soap *soap, _tptz__GetConfigurationResponse *p) -{ - if (::soap_read__tptz__GetConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetConfiguration_DEFINED -#define SOAP_TYPE__tptz__GetConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfiguration(struct soap*, const char*, int, const _tptz__GetConfiguration *, const char*); -SOAP_FMAC3 _tptz__GetConfiguration * SOAP_FMAC4 soap_in__tptz__GetConfiguration(struct soap*, const char*, _tptz__GetConfiguration *, const char*); -SOAP_FMAC1 _tptz__GetConfiguration * SOAP_FMAC2 soap_instantiate__tptz__GetConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetConfiguration * soap_new__tptz__GetConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetConfiguration * soap_new_req__tptz__GetConfiguration( - struct soap *soap, - const std::string& PTZConfigurationToken) -{ - _tptz__GetConfiguration *_p = ::soap_new__tptz__GetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfiguration::PTZConfigurationToken = PTZConfigurationToken; - } - return _p; -} - -inline _tptz__GetConfiguration * soap_new_set__tptz__GetConfiguration( - struct soap *soap, - const std::string& PTZConfigurationToken) -{ - _tptz__GetConfiguration *_p = ::soap_new__tptz__GetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfiguration::PTZConfigurationToken = PTZConfigurationToken; - } - return _p; -} - -inline int soap_write__tptz__GetConfiguration(struct soap *soap, _tptz__GetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetConfiguration", p->soap_type() == SOAP_TYPE__tptz__GetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetConfiguration(struct soap *soap, const char *URL, _tptz__GetConfiguration 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, "tptz:GetConfiguration", p->soap_type() == SOAP_TYPE__tptz__GetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetConfiguration(struct soap *soap, const char *URL, _tptz__GetConfiguration 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, "tptz:GetConfiguration", p->soap_type() == SOAP_TYPE__tptz__GetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetConfiguration(struct soap *soap, const char *URL, _tptz__GetConfiguration 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, "tptz:GetConfiguration", p->soap_type() == SOAP_TYPE__tptz__GetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetConfiguration * SOAP_FMAC4 soap_get__tptz__GetConfiguration(struct soap*, _tptz__GetConfiguration *, const char*, const char*); - -inline int soap_read__tptz__GetConfiguration(struct soap *soap, _tptz__GetConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetConfiguration(struct soap *soap, const char *URL, _tptz__GetConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetConfiguration(struct soap *soap, _tptz__GetConfiguration *p) -{ - if (::soap_read__tptz__GetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetConfigurationsResponse_DEFINED -#define SOAP_TYPE__tptz__GetConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurationsResponse(struct soap*, const char*, int, const _tptz__GetConfigurationsResponse *, const char*); -SOAP_FMAC3 _tptz__GetConfigurationsResponse * SOAP_FMAC4 soap_in__tptz__GetConfigurationsResponse(struct soap*, const char*, _tptz__GetConfigurationsResponse *, const char*); -SOAP_FMAC1 _tptz__GetConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetConfigurationsResponse * soap_new__tptz__GetConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetConfigurationsResponse * soap_new_req__tptz__GetConfigurationsResponse( - struct soap *soap) -{ - _tptz__GetConfigurationsResponse *_p = ::soap_new__tptz__GetConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetConfigurationsResponse * soap_new_set__tptz__GetConfigurationsResponse( - struct soap *soap, - const std::vector & PTZConfiguration) -{ - _tptz__GetConfigurationsResponse *_p = ::soap_new__tptz__GetConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetConfigurationsResponse::PTZConfiguration = PTZConfiguration; - } - return _p; -} - -inline int soap_write__tptz__GetConfigurationsResponse(struct soap *soap, _tptz__GetConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationsResponse 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, "tptz:GetConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationsResponse 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, "tptz:GetConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationsResponse 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, "tptz:GetConfigurationsResponse", p->soap_type() == SOAP_TYPE__tptz__GetConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetConfigurationsResponse * SOAP_FMAC4 soap_get__tptz__GetConfigurationsResponse(struct soap*, _tptz__GetConfigurationsResponse *, const char*, const char*); - -inline int soap_read__tptz__GetConfigurationsResponse(struct soap *soap, _tptz__GetConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetConfigurationsResponse(struct soap *soap, const char *URL, _tptz__GetConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetConfigurationsResponse(struct soap *soap, _tptz__GetConfigurationsResponse *p) -{ - if (::soap_read__tptz__GetConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetConfigurations_DEFINED -#define SOAP_TYPE__tptz__GetConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetConfigurations(struct soap*, const char*, int, const _tptz__GetConfigurations *, const char*); -SOAP_FMAC3 _tptz__GetConfigurations * SOAP_FMAC4 soap_in__tptz__GetConfigurations(struct soap*, const char*, _tptz__GetConfigurations *, const char*); -SOAP_FMAC1 _tptz__GetConfigurations * SOAP_FMAC2 soap_instantiate__tptz__GetConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetConfigurations * soap_new__tptz__GetConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetConfigurations * soap_new_req__tptz__GetConfigurations( - struct soap *soap) -{ - _tptz__GetConfigurations *_p = ::soap_new__tptz__GetConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetConfigurations * soap_new_set__tptz__GetConfigurations( - struct soap *soap) -{ - _tptz__GetConfigurations *_p = ::soap_new__tptz__GetConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__GetConfigurations(struct soap *soap, _tptz__GetConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetConfigurations(struct soap *soap, const char *URL, _tptz__GetConfigurations 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, "tptz:GetConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetConfigurations(struct soap *soap, const char *URL, _tptz__GetConfigurations 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, "tptz:GetConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetConfigurations(struct soap *soap, const char *URL, _tptz__GetConfigurations 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, "tptz:GetConfigurations", p->soap_type() == SOAP_TYPE__tptz__GetConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetConfigurations * SOAP_FMAC4 soap_get__tptz__GetConfigurations(struct soap*, _tptz__GetConfigurations *, const char*, const char*); - -inline int soap_read__tptz__GetConfigurations(struct soap *soap, _tptz__GetConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetConfigurations(struct soap *soap, const char *URL, _tptz__GetConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetConfigurations(struct soap *soap, _tptz__GetConfigurations *p) -{ - if (::soap_read__tptz__GetConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetNodeResponse_DEFINED -#define SOAP_TYPE__tptz__GetNodeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNodeResponse(struct soap*, const char*, int, const _tptz__GetNodeResponse *, const char*); -SOAP_FMAC3 _tptz__GetNodeResponse * SOAP_FMAC4 soap_in__tptz__GetNodeResponse(struct soap*, const char*, _tptz__GetNodeResponse *, const char*); -SOAP_FMAC1 _tptz__GetNodeResponse * SOAP_FMAC2 soap_instantiate__tptz__GetNodeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetNodeResponse * soap_new__tptz__GetNodeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetNodeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetNodeResponse * soap_new_req__tptz__GetNodeResponse( - struct soap *soap, - tt__PTZNode *PTZNode) -{ - _tptz__GetNodeResponse *_p = ::soap_new__tptz__GetNodeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetNodeResponse::PTZNode = PTZNode; - } - return _p; -} - -inline _tptz__GetNodeResponse * soap_new_set__tptz__GetNodeResponse( - struct soap *soap, - tt__PTZNode *PTZNode) -{ - _tptz__GetNodeResponse *_p = ::soap_new__tptz__GetNodeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetNodeResponse::PTZNode = PTZNode; - } - return _p; -} - -inline int soap_write__tptz__GetNodeResponse(struct soap *soap, _tptz__GetNodeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetNodeResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetNodeResponse(struct soap *soap, const char *URL, _tptz__GetNodeResponse 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, "tptz:GetNodeResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetNodeResponse(struct soap *soap, const char *URL, _tptz__GetNodeResponse 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, "tptz:GetNodeResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetNodeResponse(struct soap *soap, const char *URL, _tptz__GetNodeResponse 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, "tptz:GetNodeResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetNodeResponse * SOAP_FMAC4 soap_get__tptz__GetNodeResponse(struct soap*, _tptz__GetNodeResponse *, const char*, const char*); - -inline int soap_read__tptz__GetNodeResponse(struct soap *soap, _tptz__GetNodeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetNodeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetNodeResponse(struct soap *soap, const char *URL, _tptz__GetNodeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetNodeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetNodeResponse(struct soap *soap, _tptz__GetNodeResponse *p) -{ - if (::soap_read__tptz__GetNodeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetNode_DEFINED -#define SOAP_TYPE__tptz__GetNode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNode(struct soap*, const char*, int, const _tptz__GetNode *, const char*); -SOAP_FMAC3 _tptz__GetNode * SOAP_FMAC4 soap_in__tptz__GetNode(struct soap*, const char*, _tptz__GetNode *, const char*); -SOAP_FMAC1 _tptz__GetNode * SOAP_FMAC2 soap_instantiate__tptz__GetNode(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetNode * soap_new__tptz__GetNode(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetNode(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetNode * soap_new_req__tptz__GetNode( - struct soap *soap, - const std::string& NodeToken) -{ - _tptz__GetNode *_p = ::soap_new__tptz__GetNode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetNode::NodeToken = NodeToken; - } - return _p; -} - -inline _tptz__GetNode * soap_new_set__tptz__GetNode( - struct soap *soap, - const std::string& NodeToken) -{ - _tptz__GetNode *_p = ::soap_new__tptz__GetNode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetNode::NodeToken = NodeToken; - } - return _p; -} - -inline int soap_write__tptz__GetNode(struct soap *soap, _tptz__GetNode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetNode", p->soap_type() == SOAP_TYPE__tptz__GetNode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetNode(struct soap *soap, const char *URL, _tptz__GetNode 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, "tptz:GetNode", p->soap_type() == SOAP_TYPE__tptz__GetNode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetNode(struct soap *soap, const char *URL, _tptz__GetNode 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, "tptz:GetNode", p->soap_type() == SOAP_TYPE__tptz__GetNode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetNode(struct soap *soap, const char *URL, _tptz__GetNode 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, "tptz:GetNode", p->soap_type() == SOAP_TYPE__tptz__GetNode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetNode * SOAP_FMAC4 soap_get__tptz__GetNode(struct soap*, _tptz__GetNode *, const char*, const char*); - -inline int soap_read__tptz__GetNode(struct soap *soap, _tptz__GetNode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetNode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetNode(struct soap *soap, const char *URL, _tptz__GetNode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetNode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetNode(struct soap *soap, _tptz__GetNode *p) -{ - if (::soap_read__tptz__GetNode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetNodesResponse_DEFINED -#define SOAP_TYPE__tptz__GetNodesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNodesResponse(struct soap*, const char*, int, const _tptz__GetNodesResponse *, const char*); -SOAP_FMAC3 _tptz__GetNodesResponse * SOAP_FMAC4 soap_in__tptz__GetNodesResponse(struct soap*, const char*, _tptz__GetNodesResponse *, const char*); -SOAP_FMAC1 _tptz__GetNodesResponse * SOAP_FMAC2 soap_instantiate__tptz__GetNodesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetNodesResponse * soap_new__tptz__GetNodesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetNodesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetNodesResponse * soap_new_req__tptz__GetNodesResponse( - struct soap *soap) -{ - _tptz__GetNodesResponse *_p = ::soap_new__tptz__GetNodesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetNodesResponse * soap_new_set__tptz__GetNodesResponse( - struct soap *soap, - const std::vector & PTZNode) -{ - _tptz__GetNodesResponse *_p = ::soap_new__tptz__GetNodesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetNodesResponse::PTZNode = PTZNode; - } - return _p; -} - -inline int soap_write__tptz__GetNodesResponse(struct soap *soap, _tptz__GetNodesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetNodesResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetNodesResponse(struct soap *soap, const char *URL, _tptz__GetNodesResponse 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, "tptz:GetNodesResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetNodesResponse(struct soap *soap, const char *URL, _tptz__GetNodesResponse 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, "tptz:GetNodesResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetNodesResponse(struct soap *soap, const char *URL, _tptz__GetNodesResponse 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, "tptz:GetNodesResponse", p->soap_type() == SOAP_TYPE__tptz__GetNodesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetNodesResponse * SOAP_FMAC4 soap_get__tptz__GetNodesResponse(struct soap*, _tptz__GetNodesResponse *, const char*, const char*); - -inline int soap_read__tptz__GetNodesResponse(struct soap *soap, _tptz__GetNodesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetNodesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetNodesResponse(struct soap *soap, const char *URL, _tptz__GetNodesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetNodesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetNodesResponse(struct soap *soap, _tptz__GetNodesResponse *p) -{ - if (::soap_read__tptz__GetNodesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetNodes_DEFINED -#define SOAP_TYPE__tptz__GetNodes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetNodes(struct soap*, const char*, int, const _tptz__GetNodes *, const char*); -SOAP_FMAC3 _tptz__GetNodes * SOAP_FMAC4 soap_in__tptz__GetNodes(struct soap*, const char*, _tptz__GetNodes *, const char*); -SOAP_FMAC1 _tptz__GetNodes * SOAP_FMAC2 soap_instantiate__tptz__GetNodes(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetNodes * soap_new__tptz__GetNodes(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetNodes(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetNodes * soap_new_req__tptz__GetNodes( - struct soap *soap) -{ - _tptz__GetNodes *_p = ::soap_new__tptz__GetNodes(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetNodes * soap_new_set__tptz__GetNodes( - struct soap *soap) -{ - _tptz__GetNodes *_p = ::soap_new__tptz__GetNodes(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__GetNodes(struct soap *soap, _tptz__GetNodes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetNodes", p->soap_type() == SOAP_TYPE__tptz__GetNodes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetNodes(struct soap *soap, const char *URL, _tptz__GetNodes 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, "tptz:GetNodes", p->soap_type() == SOAP_TYPE__tptz__GetNodes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetNodes(struct soap *soap, const char *URL, _tptz__GetNodes 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, "tptz:GetNodes", p->soap_type() == SOAP_TYPE__tptz__GetNodes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetNodes(struct soap *soap, const char *URL, _tptz__GetNodes 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, "tptz:GetNodes", p->soap_type() == SOAP_TYPE__tptz__GetNodes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetNodes * SOAP_FMAC4 soap_get__tptz__GetNodes(struct soap*, _tptz__GetNodes *, const char*, const char*); - -inline int soap_read__tptz__GetNodes(struct soap *soap, _tptz__GetNodes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetNodes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetNodes(struct soap *soap, const char *URL, _tptz__GetNodes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetNodes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetNodes(struct soap *soap, _tptz__GetNodes *p) -{ - if (::soap_read__tptz__GetNodes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__tptz__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _tptz__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _tptz__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tptz__GetServiceCapabilitiesResponse(struct soap*, const char*, _tptz__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _tptz__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tptz__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetServiceCapabilitiesResponse * soap_new__tptz__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetServiceCapabilitiesResponse * soap_new_req__tptz__GetServiceCapabilitiesResponse( - struct soap *soap, - tptz__Capabilities *Capabilities) -{ - _tptz__GetServiceCapabilitiesResponse *_p = ::soap_new__tptz__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tptz__GetServiceCapabilitiesResponse * soap_new_set__tptz__GetServiceCapabilitiesResponse( - struct soap *soap, - tptz__Capabilities *Capabilities) -{ - _tptz__GetServiceCapabilitiesResponse *_p = ::soap_new__tptz__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tptz__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tptz__GetServiceCapabilitiesResponse(struct soap *soap, _tptz__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tptz__GetServiceCapabilitiesResponse 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, "tptz:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tptz__GetServiceCapabilitiesResponse 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, "tptz:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tptz__GetServiceCapabilitiesResponse 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, "tptz:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tptz__GetServiceCapabilitiesResponse(struct soap*, _tptz__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tptz__GetServiceCapabilitiesResponse(struct soap *soap, _tptz__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tptz__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetServiceCapabilitiesResponse(struct soap *soap, _tptz__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__tptz__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tptz__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__tptz__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tptz__GetServiceCapabilities(struct soap*, const char*, int, const _tptz__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _tptz__GetServiceCapabilities * SOAP_FMAC4 soap_in__tptz__GetServiceCapabilities(struct soap*, const char*, _tptz__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _tptz__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tptz__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tptz__GetServiceCapabilities * soap_new__tptz__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tptz__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _tptz__GetServiceCapabilities * soap_new_req__tptz__GetServiceCapabilities( - struct soap *soap) -{ - _tptz__GetServiceCapabilities *_p = ::soap_new__tptz__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tptz__GetServiceCapabilities * soap_new_set__tptz__GetServiceCapabilities( - struct soap *soap) -{ - _tptz__GetServiceCapabilities *_p = ::soap_new__tptz__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tptz__GetServiceCapabilities(struct soap *soap, _tptz__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tptz__GetServiceCapabilities(struct soap *soap, const char *URL, _tptz__GetServiceCapabilities 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, "tptz:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tptz__GetServiceCapabilities(struct soap *soap, const char *URL, _tptz__GetServiceCapabilities 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, "tptz:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tptz__GetServiceCapabilities(struct soap *soap, const char *URL, _tptz__GetServiceCapabilities 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, "tptz:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tptz__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tptz__GetServiceCapabilities * SOAP_FMAC4 soap_get__tptz__GetServiceCapabilities(struct soap*, _tptz__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__tptz__GetServiceCapabilities(struct soap *soap, _tptz__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tptz__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tptz__GetServiceCapabilities(struct soap *soap, const char *URL, _tptz__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tptz__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tptz__GetServiceCapabilities(struct soap *soap, _tptz__GetServiceCapabilities *p) -{ - if (::soap_read__tptz__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tptz__Capabilities_DEFINED -#define SOAP_TYPE_tptz__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tptz__Capabilities(struct soap*, const char*, int, const tptz__Capabilities *, const char*); -SOAP_FMAC3 tptz__Capabilities * SOAP_FMAC4 soap_in_tptz__Capabilities(struct soap*, const char*, tptz__Capabilities *, const char*); -SOAP_FMAC1 tptz__Capabilities * SOAP_FMAC2 soap_instantiate_tptz__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tptz__Capabilities * soap_new_tptz__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tptz__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline tptz__Capabilities * soap_new_req_tptz__Capabilities( - struct soap *soap) -{ - tptz__Capabilities *_p = ::soap_new_tptz__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tptz__Capabilities * soap_new_set_tptz__Capabilities( - struct soap *soap, - const std::vector & __any, - bool *EFlip, - bool *Reverse, - bool *GetCompatibleConfigurations, - bool *MoveStatus, - bool *StatusPosition, - const struct soap_dom_attribute& __anyAttribute) -{ - tptz__Capabilities *_p = ::soap_new_tptz__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tptz__Capabilities::__any = __any; - _p->tptz__Capabilities::EFlip = EFlip; - _p->tptz__Capabilities::Reverse = Reverse; - _p->tptz__Capabilities::GetCompatibleConfigurations = GetCompatibleConfigurations; - _p->tptz__Capabilities::MoveStatus = MoveStatus; - _p->tptz__Capabilities::StatusPosition = StatusPosition; - _p->tptz__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tptz__Capabilities(struct soap *soap, tptz__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tptz:Capabilities", p->soap_type() == SOAP_TYPE_tptz__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tptz__Capabilities(struct soap *soap, const char *URL, tptz__Capabilities 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, "tptz:Capabilities", p->soap_type() == SOAP_TYPE_tptz__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tptz__Capabilities(struct soap *soap, const char *URL, tptz__Capabilities 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, "tptz:Capabilities", p->soap_type() == SOAP_TYPE_tptz__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tptz__Capabilities(struct soap *soap, const char *URL, tptz__Capabilities 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, "tptz:Capabilities", p->soap_type() == SOAP_TYPE_tptz__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tptz__Capabilities * SOAP_FMAC4 soap_get_tptz__Capabilities(struct soap*, tptz__Capabilities *, const char*, const char*); - -inline int soap_read_tptz__Capabilities(struct soap *soap, tptz__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tptz__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tptz__Capabilities(struct soap *soap, const char *URL, tptz__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tptz__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tptz__Capabilities(struct soap *soap, tptz__Capabilities *p) -{ - if (::soap_read_tptz__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__DeleteOSDResponse_DEFINED -#define SOAP_TYPE__trt__DeleteOSDResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteOSDResponse(struct soap*, const char*, int, const _trt__DeleteOSDResponse *, const char*); -SOAP_FMAC3 _trt__DeleteOSDResponse * SOAP_FMAC4 soap_in__trt__DeleteOSDResponse(struct soap*, const char*, _trt__DeleteOSDResponse *, const char*); -SOAP_FMAC1 _trt__DeleteOSDResponse * SOAP_FMAC2 soap_instantiate__trt__DeleteOSDResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__DeleteOSDResponse * soap_new__trt__DeleteOSDResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__DeleteOSDResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__DeleteOSDResponse * soap_new_req__trt__DeleteOSDResponse( - struct soap *soap) -{ - _trt__DeleteOSDResponse *_p = ::soap_new__trt__DeleteOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__DeleteOSDResponse * soap_new_set__trt__DeleteOSDResponse( - struct soap *soap, - const std::vector & __any) -{ - _trt__DeleteOSDResponse *_p = ::soap_new__trt__DeleteOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__DeleteOSDResponse::__any = __any; - } - return _p; -} - -inline int soap_write__trt__DeleteOSDResponse(struct soap *soap, _trt__DeleteOSDResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:DeleteOSDResponse", p->soap_type() == SOAP_TYPE__trt__DeleteOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__DeleteOSDResponse(struct soap *soap, const char *URL, _trt__DeleteOSDResponse 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, "trt:DeleteOSDResponse", p->soap_type() == SOAP_TYPE__trt__DeleteOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__DeleteOSDResponse(struct soap *soap, const char *URL, _trt__DeleteOSDResponse 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, "trt:DeleteOSDResponse", p->soap_type() == SOAP_TYPE__trt__DeleteOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__DeleteOSDResponse(struct soap *soap, const char *URL, _trt__DeleteOSDResponse 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, "trt:DeleteOSDResponse", p->soap_type() == SOAP_TYPE__trt__DeleteOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__DeleteOSDResponse * SOAP_FMAC4 soap_get__trt__DeleteOSDResponse(struct soap*, _trt__DeleteOSDResponse *, const char*, const char*); - -inline int soap_read__trt__DeleteOSDResponse(struct soap *soap, _trt__DeleteOSDResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__DeleteOSDResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__DeleteOSDResponse(struct soap *soap, const char *URL, _trt__DeleteOSDResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__DeleteOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__DeleteOSDResponse(struct soap *soap, _trt__DeleteOSDResponse *p) -{ - if (::soap_read__trt__DeleteOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__DeleteOSD_DEFINED -#define SOAP_TYPE__trt__DeleteOSD_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteOSD(struct soap*, const char*, int, const _trt__DeleteOSD *, const char*); -SOAP_FMAC3 _trt__DeleteOSD * SOAP_FMAC4 soap_in__trt__DeleteOSD(struct soap*, const char*, _trt__DeleteOSD *, const char*); -SOAP_FMAC1 _trt__DeleteOSD * SOAP_FMAC2 soap_instantiate__trt__DeleteOSD(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__DeleteOSD * soap_new__trt__DeleteOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__DeleteOSD(soap, n, NULL, NULL, NULL); -} - -inline _trt__DeleteOSD * soap_new_req__trt__DeleteOSD( - struct soap *soap, - const std::string& OSDToken) -{ - _trt__DeleteOSD *_p = ::soap_new__trt__DeleteOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__DeleteOSD::OSDToken = OSDToken; - } - return _p; -} - -inline _trt__DeleteOSD * soap_new_set__trt__DeleteOSD( - struct soap *soap, - const std::string& OSDToken, - const std::vector & __any) -{ - _trt__DeleteOSD *_p = ::soap_new__trt__DeleteOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__DeleteOSD::OSDToken = OSDToken; - _p->_trt__DeleteOSD::__any = __any; - } - return _p; -} - -inline int soap_write__trt__DeleteOSD(struct soap *soap, _trt__DeleteOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:DeleteOSD", p->soap_type() == SOAP_TYPE__trt__DeleteOSD ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__DeleteOSD(struct soap *soap, const char *URL, _trt__DeleteOSD 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, "trt:DeleteOSD", p->soap_type() == SOAP_TYPE__trt__DeleteOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__DeleteOSD(struct soap *soap, const char *URL, _trt__DeleteOSD 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, "trt:DeleteOSD", p->soap_type() == SOAP_TYPE__trt__DeleteOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__DeleteOSD(struct soap *soap, const char *URL, _trt__DeleteOSD 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, "trt:DeleteOSD", p->soap_type() == SOAP_TYPE__trt__DeleteOSD ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__DeleteOSD * SOAP_FMAC4 soap_get__trt__DeleteOSD(struct soap*, _trt__DeleteOSD *, const char*, const char*); - -inline int soap_read__trt__DeleteOSD(struct soap *soap, _trt__DeleteOSD *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__DeleteOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__DeleteOSD(struct soap *soap, const char *URL, _trt__DeleteOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__DeleteOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__DeleteOSD(struct soap *soap, _trt__DeleteOSD *p) -{ - if (::soap_read__trt__DeleteOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__CreateOSDResponse_DEFINED -#define SOAP_TYPE__trt__CreateOSDResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateOSDResponse(struct soap*, const char*, int, const _trt__CreateOSDResponse *, const char*); -SOAP_FMAC3 _trt__CreateOSDResponse * SOAP_FMAC4 soap_in__trt__CreateOSDResponse(struct soap*, const char*, _trt__CreateOSDResponse *, const char*); -SOAP_FMAC1 _trt__CreateOSDResponse * SOAP_FMAC2 soap_instantiate__trt__CreateOSDResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__CreateOSDResponse * soap_new__trt__CreateOSDResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__CreateOSDResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__CreateOSDResponse * soap_new_req__trt__CreateOSDResponse( - struct soap *soap, - const std::string& OSDToken) -{ - _trt__CreateOSDResponse *_p = ::soap_new__trt__CreateOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateOSDResponse::OSDToken = OSDToken; - } - return _p; -} - -inline _trt__CreateOSDResponse * soap_new_set__trt__CreateOSDResponse( - struct soap *soap, - const std::string& OSDToken, - const std::vector & __any) -{ - _trt__CreateOSDResponse *_p = ::soap_new__trt__CreateOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateOSDResponse::OSDToken = OSDToken; - _p->_trt__CreateOSDResponse::__any = __any; - } - return _p; -} - -inline int soap_write__trt__CreateOSDResponse(struct soap *soap, _trt__CreateOSDResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:CreateOSDResponse", p->soap_type() == SOAP_TYPE__trt__CreateOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__CreateOSDResponse(struct soap *soap, const char *URL, _trt__CreateOSDResponse 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, "trt:CreateOSDResponse", p->soap_type() == SOAP_TYPE__trt__CreateOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__CreateOSDResponse(struct soap *soap, const char *URL, _trt__CreateOSDResponse 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, "trt:CreateOSDResponse", p->soap_type() == SOAP_TYPE__trt__CreateOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__CreateOSDResponse(struct soap *soap, const char *URL, _trt__CreateOSDResponse 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, "trt:CreateOSDResponse", p->soap_type() == SOAP_TYPE__trt__CreateOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__CreateOSDResponse * SOAP_FMAC4 soap_get__trt__CreateOSDResponse(struct soap*, _trt__CreateOSDResponse *, const char*, const char*); - -inline int soap_read__trt__CreateOSDResponse(struct soap *soap, _trt__CreateOSDResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__CreateOSDResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__CreateOSDResponse(struct soap *soap, const char *URL, _trt__CreateOSDResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__CreateOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__CreateOSDResponse(struct soap *soap, _trt__CreateOSDResponse *p) -{ - if (::soap_read__trt__CreateOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__CreateOSD_DEFINED -#define SOAP_TYPE__trt__CreateOSD_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateOSD(struct soap*, const char*, int, const _trt__CreateOSD *, const char*); -SOAP_FMAC3 _trt__CreateOSD * SOAP_FMAC4 soap_in__trt__CreateOSD(struct soap*, const char*, _trt__CreateOSD *, const char*); -SOAP_FMAC1 _trt__CreateOSD * SOAP_FMAC2 soap_instantiate__trt__CreateOSD(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__CreateOSD * soap_new__trt__CreateOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__CreateOSD(soap, n, NULL, NULL, NULL); -} - -inline _trt__CreateOSD * soap_new_req__trt__CreateOSD( - struct soap *soap, - tt__OSDConfiguration *OSD) -{ - _trt__CreateOSD *_p = ::soap_new__trt__CreateOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateOSD::OSD = OSD; - } - return _p; -} - -inline _trt__CreateOSD * soap_new_set__trt__CreateOSD( - struct soap *soap, - tt__OSDConfiguration *OSD, - const std::vector & __any) -{ - _trt__CreateOSD *_p = ::soap_new__trt__CreateOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateOSD::OSD = OSD; - _p->_trt__CreateOSD::__any = __any; - } - return _p; -} - -inline int soap_write__trt__CreateOSD(struct soap *soap, _trt__CreateOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:CreateOSD", p->soap_type() == SOAP_TYPE__trt__CreateOSD ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__CreateOSD(struct soap *soap, const char *URL, _trt__CreateOSD 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, "trt:CreateOSD", p->soap_type() == SOAP_TYPE__trt__CreateOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__CreateOSD(struct soap *soap, const char *URL, _trt__CreateOSD 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, "trt:CreateOSD", p->soap_type() == SOAP_TYPE__trt__CreateOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__CreateOSD(struct soap *soap, const char *URL, _trt__CreateOSD 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, "trt:CreateOSD", p->soap_type() == SOAP_TYPE__trt__CreateOSD ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__CreateOSD * SOAP_FMAC4 soap_get__trt__CreateOSD(struct soap*, _trt__CreateOSD *, const char*, const char*); - -inline int soap_read__trt__CreateOSD(struct soap *soap, _trt__CreateOSD *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__CreateOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__CreateOSD(struct soap *soap, const char *URL, _trt__CreateOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__CreateOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__CreateOSD(struct soap *soap, _trt__CreateOSD *p) -{ - if (::soap_read__trt__CreateOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetOSDOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetOSDOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDOptionsResponse(struct soap*, const char*, int, const _trt__GetOSDOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetOSDOptionsResponse * SOAP_FMAC4 soap_in__trt__GetOSDOptionsResponse(struct soap*, const char*, _trt__GetOSDOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetOSDOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetOSDOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetOSDOptionsResponse * soap_new__trt__GetOSDOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetOSDOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetOSDOptionsResponse * soap_new_req__trt__GetOSDOptionsResponse( - struct soap *soap, - tt__OSDConfigurationOptions *OSDOptions) -{ - _trt__GetOSDOptionsResponse *_p = ::soap_new__trt__GetOSDOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDOptionsResponse::OSDOptions = OSDOptions; - } - return _p; -} - -inline _trt__GetOSDOptionsResponse * soap_new_set__trt__GetOSDOptionsResponse( - struct soap *soap, - tt__OSDConfigurationOptions *OSDOptions, - const std::vector & __any) -{ - _trt__GetOSDOptionsResponse *_p = ::soap_new__trt__GetOSDOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDOptionsResponse::OSDOptions = OSDOptions; - _p->_trt__GetOSDOptionsResponse::__any = __any; - } - return _p; -} - -inline int soap_write__trt__GetOSDOptionsResponse(struct soap *soap, _trt__GetOSDOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetOSDOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetOSDOptionsResponse(struct soap *soap, const char *URL, _trt__GetOSDOptionsResponse 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, "trt:GetOSDOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetOSDOptionsResponse(struct soap *soap, const char *URL, _trt__GetOSDOptionsResponse 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, "trt:GetOSDOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetOSDOptionsResponse(struct soap *soap, const char *URL, _trt__GetOSDOptionsResponse 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, "trt:GetOSDOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetOSDOptionsResponse * SOAP_FMAC4 soap_get__trt__GetOSDOptionsResponse(struct soap*, _trt__GetOSDOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetOSDOptionsResponse(struct soap *soap, _trt__GetOSDOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetOSDOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetOSDOptionsResponse(struct soap *soap, const char *URL, _trt__GetOSDOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetOSDOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetOSDOptionsResponse(struct soap *soap, _trt__GetOSDOptionsResponse *p) -{ - if (::soap_read__trt__GetOSDOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetOSDOptions_DEFINED -#define SOAP_TYPE__trt__GetOSDOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDOptions(struct soap*, const char*, int, const _trt__GetOSDOptions *, const char*); -SOAP_FMAC3 _trt__GetOSDOptions * SOAP_FMAC4 soap_in__trt__GetOSDOptions(struct soap*, const char*, _trt__GetOSDOptions *, const char*); -SOAP_FMAC1 _trt__GetOSDOptions * SOAP_FMAC2 soap_instantiate__trt__GetOSDOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetOSDOptions * soap_new__trt__GetOSDOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetOSDOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetOSDOptions * soap_new_req__trt__GetOSDOptions( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetOSDOptions *_p = ::soap_new__trt__GetOSDOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDOptions::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetOSDOptions * soap_new_set__trt__GetOSDOptions( - struct soap *soap, - const std::string& ConfigurationToken, - const std::vector & __any) -{ - _trt__GetOSDOptions *_p = ::soap_new__trt__GetOSDOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetOSDOptions::__any = __any; - } - return _p; -} - -inline int soap_write__trt__GetOSDOptions(struct soap *soap, _trt__GetOSDOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetOSDOptions", p->soap_type() == SOAP_TYPE__trt__GetOSDOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetOSDOptions(struct soap *soap, const char *URL, _trt__GetOSDOptions 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, "trt:GetOSDOptions", p->soap_type() == SOAP_TYPE__trt__GetOSDOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetOSDOptions(struct soap *soap, const char *URL, _trt__GetOSDOptions 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, "trt:GetOSDOptions", p->soap_type() == SOAP_TYPE__trt__GetOSDOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetOSDOptions(struct soap *soap, const char *URL, _trt__GetOSDOptions 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, "trt:GetOSDOptions", p->soap_type() == SOAP_TYPE__trt__GetOSDOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetOSDOptions * SOAP_FMAC4 soap_get__trt__GetOSDOptions(struct soap*, _trt__GetOSDOptions *, const char*, const char*); - -inline int soap_read__trt__GetOSDOptions(struct soap *soap, _trt__GetOSDOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetOSDOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetOSDOptions(struct soap *soap, const char *URL, _trt__GetOSDOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetOSDOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetOSDOptions(struct soap *soap, _trt__GetOSDOptions *p) -{ - if (::soap_read__trt__GetOSDOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetOSDResponse_DEFINED -#define SOAP_TYPE__trt__SetOSDResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetOSDResponse(struct soap*, const char*, int, const _trt__SetOSDResponse *, const char*); -SOAP_FMAC3 _trt__SetOSDResponse * SOAP_FMAC4 soap_in__trt__SetOSDResponse(struct soap*, const char*, _trt__SetOSDResponse *, const char*); -SOAP_FMAC1 _trt__SetOSDResponse * SOAP_FMAC2 soap_instantiate__trt__SetOSDResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetOSDResponse * soap_new__trt__SetOSDResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetOSDResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetOSDResponse * soap_new_req__trt__SetOSDResponse( - struct soap *soap) -{ - _trt__SetOSDResponse *_p = ::soap_new__trt__SetOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetOSDResponse * soap_new_set__trt__SetOSDResponse( - struct soap *soap, - const std::vector & __any) -{ - _trt__SetOSDResponse *_p = ::soap_new__trt__SetOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetOSDResponse::__any = __any; - } - return _p; -} - -inline int soap_write__trt__SetOSDResponse(struct soap *soap, _trt__SetOSDResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetOSDResponse", p->soap_type() == SOAP_TYPE__trt__SetOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetOSDResponse(struct soap *soap, const char *URL, _trt__SetOSDResponse 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, "trt:SetOSDResponse", p->soap_type() == SOAP_TYPE__trt__SetOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetOSDResponse(struct soap *soap, const char *URL, _trt__SetOSDResponse 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, "trt:SetOSDResponse", p->soap_type() == SOAP_TYPE__trt__SetOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetOSDResponse(struct soap *soap, const char *URL, _trt__SetOSDResponse 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, "trt:SetOSDResponse", p->soap_type() == SOAP_TYPE__trt__SetOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetOSDResponse * SOAP_FMAC4 soap_get__trt__SetOSDResponse(struct soap*, _trt__SetOSDResponse *, const char*, const char*); - -inline int soap_read__trt__SetOSDResponse(struct soap *soap, _trt__SetOSDResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetOSDResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetOSDResponse(struct soap *soap, const char *URL, _trt__SetOSDResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetOSDResponse(struct soap *soap, _trt__SetOSDResponse *p) -{ - if (::soap_read__trt__SetOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetOSD_DEFINED -#define SOAP_TYPE__trt__SetOSD_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetOSD(struct soap*, const char*, int, const _trt__SetOSD *, const char*); -SOAP_FMAC3 _trt__SetOSD * SOAP_FMAC4 soap_in__trt__SetOSD(struct soap*, const char*, _trt__SetOSD *, const char*); -SOAP_FMAC1 _trt__SetOSD * SOAP_FMAC2 soap_instantiate__trt__SetOSD(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetOSD * soap_new__trt__SetOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetOSD(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetOSD * soap_new_req__trt__SetOSD( - struct soap *soap, - tt__OSDConfiguration *OSD) -{ - _trt__SetOSD *_p = ::soap_new__trt__SetOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetOSD::OSD = OSD; - } - return _p; -} - -inline _trt__SetOSD * soap_new_set__trt__SetOSD( - struct soap *soap, - tt__OSDConfiguration *OSD, - const std::vector & __any) -{ - _trt__SetOSD *_p = ::soap_new__trt__SetOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetOSD::OSD = OSD; - _p->_trt__SetOSD::__any = __any; - } - return _p; -} - -inline int soap_write__trt__SetOSD(struct soap *soap, _trt__SetOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetOSD", p->soap_type() == SOAP_TYPE__trt__SetOSD ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetOSD(struct soap *soap, const char *URL, _trt__SetOSD 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, "trt:SetOSD", p->soap_type() == SOAP_TYPE__trt__SetOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetOSD(struct soap *soap, const char *URL, _trt__SetOSD 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, "trt:SetOSD", p->soap_type() == SOAP_TYPE__trt__SetOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetOSD(struct soap *soap, const char *URL, _trt__SetOSD 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, "trt:SetOSD", p->soap_type() == SOAP_TYPE__trt__SetOSD ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetOSD * SOAP_FMAC4 soap_get__trt__SetOSD(struct soap*, _trt__SetOSD *, const char*, const char*); - -inline int soap_read__trt__SetOSD(struct soap *soap, _trt__SetOSD *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetOSD(struct soap *soap, const char *URL, _trt__SetOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetOSD(struct soap *soap, _trt__SetOSD *p) -{ - if (::soap_read__trt__SetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetOSDResponse_DEFINED -#define SOAP_TYPE__trt__GetOSDResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDResponse(struct soap*, const char*, int, const _trt__GetOSDResponse *, const char*); -SOAP_FMAC3 _trt__GetOSDResponse * SOAP_FMAC4 soap_in__trt__GetOSDResponse(struct soap*, const char*, _trt__GetOSDResponse *, const char*); -SOAP_FMAC1 _trt__GetOSDResponse * SOAP_FMAC2 soap_instantiate__trt__GetOSDResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetOSDResponse * soap_new__trt__GetOSDResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetOSDResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetOSDResponse * soap_new_req__trt__GetOSDResponse( - struct soap *soap, - tt__OSDConfiguration *OSD) -{ - _trt__GetOSDResponse *_p = ::soap_new__trt__GetOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDResponse::OSD = OSD; - } - return _p; -} - -inline _trt__GetOSDResponse * soap_new_set__trt__GetOSDResponse( - struct soap *soap, - tt__OSDConfiguration *OSD, - const std::vector & __any) -{ - _trt__GetOSDResponse *_p = ::soap_new__trt__GetOSDResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDResponse::OSD = OSD; - _p->_trt__GetOSDResponse::__any = __any; - } - return _p; -} - -inline int soap_write__trt__GetOSDResponse(struct soap *soap, _trt__GetOSDResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetOSDResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetOSDResponse(struct soap *soap, const char *URL, _trt__GetOSDResponse 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, "trt:GetOSDResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetOSDResponse(struct soap *soap, const char *URL, _trt__GetOSDResponse 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, "trt:GetOSDResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetOSDResponse(struct soap *soap, const char *URL, _trt__GetOSDResponse 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, "trt:GetOSDResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetOSDResponse * SOAP_FMAC4 soap_get__trt__GetOSDResponse(struct soap*, _trt__GetOSDResponse *, const char*, const char*); - -inline int soap_read__trt__GetOSDResponse(struct soap *soap, _trt__GetOSDResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetOSDResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetOSDResponse(struct soap *soap, const char *URL, _trt__GetOSDResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetOSDResponse(struct soap *soap, _trt__GetOSDResponse *p) -{ - if (::soap_read__trt__GetOSDResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetOSD_DEFINED -#define SOAP_TYPE__trt__GetOSD_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSD(struct soap*, const char*, int, const _trt__GetOSD *, const char*); -SOAP_FMAC3 _trt__GetOSD * SOAP_FMAC4 soap_in__trt__GetOSD(struct soap*, const char*, _trt__GetOSD *, const char*); -SOAP_FMAC1 _trt__GetOSD * SOAP_FMAC2 soap_instantiate__trt__GetOSD(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetOSD * soap_new__trt__GetOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetOSD(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetOSD * soap_new_req__trt__GetOSD( - struct soap *soap, - const std::string& OSDToken) -{ - _trt__GetOSD *_p = ::soap_new__trt__GetOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSD::OSDToken = OSDToken; - } - return _p; -} - -inline _trt__GetOSD * soap_new_set__trt__GetOSD( - struct soap *soap, - const std::string& OSDToken, - const std::vector & __any) -{ - _trt__GetOSD *_p = ::soap_new__trt__GetOSD(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSD::OSDToken = OSDToken; - _p->_trt__GetOSD::__any = __any; - } - return _p; -} - -inline int soap_write__trt__GetOSD(struct soap *soap, _trt__GetOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetOSD", p->soap_type() == SOAP_TYPE__trt__GetOSD ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetOSD(struct soap *soap, const char *URL, _trt__GetOSD 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, "trt:GetOSD", p->soap_type() == SOAP_TYPE__trt__GetOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetOSD(struct soap *soap, const char *URL, _trt__GetOSD 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, "trt:GetOSD", p->soap_type() == SOAP_TYPE__trt__GetOSD ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetOSD(struct soap *soap, const char *URL, _trt__GetOSD 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, "trt:GetOSD", p->soap_type() == SOAP_TYPE__trt__GetOSD ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetOSD * SOAP_FMAC4 soap_get__trt__GetOSD(struct soap*, _trt__GetOSD *, const char*, const char*); - -inline int soap_read__trt__GetOSD(struct soap *soap, _trt__GetOSD *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetOSD(struct soap *soap, const char *URL, _trt__GetOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetOSD(struct soap *soap, _trt__GetOSD *p) -{ - if (::soap_read__trt__GetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetOSDsResponse_DEFINED -#define SOAP_TYPE__trt__GetOSDsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDsResponse(struct soap*, const char*, int, const _trt__GetOSDsResponse *, const char*); -SOAP_FMAC3 _trt__GetOSDsResponse * SOAP_FMAC4 soap_in__trt__GetOSDsResponse(struct soap*, const char*, _trt__GetOSDsResponse *, const char*); -SOAP_FMAC1 _trt__GetOSDsResponse * SOAP_FMAC2 soap_instantiate__trt__GetOSDsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetOSDsResponse * soap_new__trt__GetOSDsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetOSDsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetOSDsResponse * soap_new_req__trt__GetOSDsResponse( - struct soap *soap) -{ - _trt__GetOSDsResponse *_p = ::soap_new__trt__GetOSDsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetOSDsResponse * soap_new_set__trt__GetOSDsResponse( - struct soap *soap, - const std::vector & OSDs) -{ - _trt__GetOSDsResponse *_p = ::soap_new__trt__GetOSDsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDsResponse::OSDs = OSDs; - } - return _p; -} - -inline int soap_write__trt__GetOSDsResponse(struct soap *soap, _trt__GetOSDsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetOSDsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetOSDsResponse(struct soap *soap, const char *URL, _trt__GetOSDsResponse 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, "trt:GetOSDsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetOSDsResponse(struct soap *soap, const char *URL, _trt__GetOSDsResponse 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, "trt:GetOSDsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetOSDsResponse(struct soap *soap, const char *URL, _trt__GetOSDsResponse 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, "trt:GetOSDsResponse", p->soap_type() == SOAP_TYPE__trt__GetOSDsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetOSDsResponse * SOAP_FMAC4 soap_get__trt__GetOSDsResponse(struct soap*, _trt__GetOSDsResponse *, const char*, const char*); - -inline int soap_read__trt__GetOSDsResponse(struct soap *soap, _trt__GetOSDsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetOSDsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetOSDsResponse(struct soap *soap, const char *URL, _trt__GetOSDsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetOSDsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetOSDsResponse(struct soap *soap, _trt__GetOSDsResponse *p) -{ - if (::soap_read__trt__GetOSDsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetOSDs_DEFINED -#define SOAP_TYPE__trt__GetOSDs_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetOSDs(struct soap*, const char*, int, const _trt__GetOSDs *, const char*); -SOAP_FMAC3 _trt__GetOSDs * SOAP_FMAC4 soap_in__trt__GetOSDs(struct soap*, const char*, _trt__GetOSDs *, const char*); -SOAP_FMAC1 _trt__GetOSDs * SOAP_FMAC2 soap_instantiate__trt__GetOSDs(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetOSDs * soap_new__trt__GetOSDs(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetOSDs(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetOSDs * soap_new_req__trt__GetOSDs( - struct soap *soap) -{ - _trt__GetOSDs *_p = ::soap_new__trt__GetOSDs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetOSDs * soap_new_set__trt__GetOSDs( - struct soap *soap, - std::string *ConfigurationToken) -{ - _trt__GetOSDs *_p = ::soap_new__trt__GetOSDs(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetOSDs::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetOSDs(struct soap *soap, _trt__GetOSDs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetOSDs", p->soap_type() == SOAP_TYPE__trt__GetOSDs ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetOSDs(struct soap *soap, const char *URL, _trt__GetOSDs 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, "trt:GetOSDs", p->soap_type() == SOAP_TYPE__trt__GetOSDs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetOSDs(struct soap *soap, const char *URL, _trt__GetOSDs 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, "trt:GetOSDs", p->soap_type() == SOAP_TYPE__trt__GetOSDs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetOSDs(struct soap *soap, const char *URL, _trt__GetOSDs 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, "trt:GetOSDs", p->soap_type() == SOAP_TYPE__trt__GetOSDs ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetOSDs * SOAP_FMAC4 soap_get__trt__GetOSDs(struct soap*, _trt__GetOSDs *, const char*, const char*); - -inline int soap_read__trt__GetOSDs(struct soap *soap, _trt__GetOSDs *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetOSDs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetOSDs(struct soap *soap, const char *URL, _trt__GetOSDs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetOSDs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetOSDs(struct soap *soap, _trt__GetOSDs *p) -{ - if (::soap_read__trt__GetOSDs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoSourceModeResponse_DEFINED -#define SOAP_TYPE__trt__SetVideoSourceModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceModeResponse(struct soap*, const char*, int, const _trt__SetVideoSourceModeResponse *, const char*); -SOAP_FMAC3 _trt__SetVideoSourceModeResponse * SOAP_FMAC4 soap_in__trt__SetVideoSourceModeResponse(struct soap*, const char*, _trt__SetVideoSourceModeResponse *, const char*); -SOAP_FMAC1 _trt__SetVideoSourceModeResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoSourceModeResponse * soap_new__trt__SetVideoSourceModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoSourceModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoSourceModeResponse * soap_new_req__trt__SetVideoSourceModeResponse( - struct soap *soap, - bool Reboot) -{ - _trt__SetVideoSourceModeResponse *_p = ::soap_new__trt__SetVideoSourceModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoSourceModeResponse::Reboot = Reboot; - } - return _p; -} - -inline _trt__SetVideoSourceModeResponse * soap_new_set__trt__SetVideoSourceModeResponse( - struct soap *soap, - bool Reboot) -{ - _trt__SetVideoSourceModeResponse *_p = ::soap_new__trt__SetVideoSourceModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoSourceModeResponse::Reboot = Reboot; - } - return _p; -} - -inline int soap_write__trt__SetVideoSourceModeResponse(struct soap *soap, _trt__SetVideoSourceModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoSourceModeResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoSourceModeResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceModeResponse 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, "trt:SetVideoSourceModeResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoSourceModeResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceModeResponse 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, "trt:SetVideoSourceModeResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoSourceModeResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceModeResponse 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, "trt:SetVideoSourceModeResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoSourceModeResponse * SOAP_FMAC4 soap_get__trt__SetVideoSourceModeResponse(struct soap*, _trt__SetVideoSourceModeResponse *, const char*, const char*); - -inline int soap_read__trt__SetVideoSourceModeResponse(struct soap *soap, _trt__SetVideoSourceModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoSourceModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoSourceModeResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoSourceModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoSourceModeResponse(struct soap *soap, _trt__SetVideoSourceModeResponse *p) -{ - if (::soap_read__trt__SetVideoSourceModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoSourceMode_DEFINED -#define SOAP_TYPE__trt__SetVideoSourceMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceMode(struct soap*, const char*, int, const _trt__SetVideoSourceMode *, const char*); -SOAP_FMAC3 _trt__SetVideoSourceMode * SOAP_FMAC4 soap_in__trt__SetVideoSourceMode(struct soap*, const char*, _trt__SetVideoSourceMode *, const char*); -SOAP_FMAC1 _trt__SetVideoSourceMode * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceMode(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoSourceMode * soap_new__trt__SetVideoSourceMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoSourceMode(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoSourceMode * soap_new_req__trt__SetVideoSourceMode( - struct soap *soap, - const std::string& VideoSourceToken, - const std::string& VideoSourceModeToken) -{ - _trt__SetVideoSourceMode *_p = ::soap_new__trt__SetVideoSourceMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoSourceMode::VideoSourceToken = VideoSourceToken; - _p->_trt__SetVideoSourceMode::VideoSourceModeToken = VideoSourceModeToken; - } - return _p; -} - -inline _trt__SetVideoSourceMode * soap_new_set__trt__SetVideoSourceMode( - struct soap *soap, - const std::string& VideoSourceToken, - const std::string& VideoSourceModeToken) -{ - _trt__SetVideoSourceMode *_p = ::soap_new__trt__SetVideoSourceMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoSourceMode::VideoSourceToken = VideoSourceToken; - _p->_trt__SetVideoSourceMode::VideoSourceModeToken = VideoSourceModeToken; - } - return _p; -} - -inline int soap_write__trt__SetVideoSourceMode(struct soap *soap, _trt__SetVideoSourceMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoSourceMode", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoSourceMode(struct soap *soap, const char *URL, _trt__SetVideoSourceMode 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, "trt:SetVideoSourceMode", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoSourceMode(struct soap *soap, const char *URL, _trt__SetVideoSourceMode 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, "trt:SetVideoSourceMode", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoSourceMode(struct soap *soap, const char *URL, _trt__SetVideoSourceMode 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, "trt:SetVideoSourceMode", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoSourceMode * SOAP_FMAC4 soap_get__trt__SetVideoSourceMode(struct soap*, _trt__SetVideoSourceMode *, const char*, const char*); - -inline int soap_read__trt__SetVideoSourceMode(struct soap *soap, _trt__SetVideoSourceMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoSourceMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoSourceMode(struct soap *soap, const char *URL, _trt__SetVideoSourceMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoSourceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoSourceMode(struct soap *soap, _trt__SetVideoSourceMode *p) -{ - if (::soap_read__trt__SetVideoSourceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceModesResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceModesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceModesResponse(struct soap*, const char*, int, const _trt__GetVideoSourceModesResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceModesResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceModesResponse(struct soap*, const char*, _trt__GetVideoSourceModesResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceModesResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceModesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceModesResponse * soap_new__trt__GetVideoSourceModesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceModesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceModesResponse * soap_new_req__trt__GetVideoSourceModesResponse( - struct soap *soap, - const std::vector & VideoSourceModes) -{ - _trt__GetVideoSourceModesResponse *_p = ::soap_new__trt__GetVideoSourceModesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceModesResponse::VideoSourceModes = VideoSourceModes; - } - return _p; -} - -inline _trt__GetVideoSourceModesResponse * soap_new_set__trt__GetVideoSourceModesResponse( - struct soap *soap, - const std::vector & VideoSourceModes) -{ - _trt__GetVideoSourceModesResponse *_p = ::soap_new__trt__GetVideoSourceModesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceModesResponse::VideoSourceModes = VideoSourceModes; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceModesResponse(struct soap *soap, _trt__GetVideoSourceModesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceModesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceModesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceModesResponse 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, "trt:GetVideoSourceModesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceModesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceModesResponse 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, "trt:GetVideoSourceModesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceModesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceModesResponse 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, "trt:GetVideoSourceModesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceModesResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceModesResponse(struct soap*, _trt__GetVideoSourceModesResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceModesResponse(struct soap *soap, _trt__GetVideoSourceModesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceModesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceModesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceModesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceModesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceModesResponse(struct soap *soap, _trt__GetVideoSourceModesResponse *p) -{ - if (::soap_read__trt__GetVideoSourceModesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceModes_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceModes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceModes(struct soap*, const char*, int, const _trt__GetVideoSourceModes *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceModes * SOAP_FMAC4 soap_in__trt__GetVideoSourceModes(struct soap*, const char*, _trt__GetVideoSourceModes *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceModes * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceModes(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceModes * soap_new__trt__GetVideoSourceModes(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceModes(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceModes * soap_new_req__trt__GetVideoSourceModes( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _trt__GetVideoSourceModes *_p = ::soap_new__trt__GetVideoSourceModes(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceModes::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _trt__GetVideoSourceModes * soap_new_set__trt__GetVideoSourceModes( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _trt__GetVideoSourceModes *_p = ::soap_new__trt__GetVideoSourceModes(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceModes::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceModes(struct soap *soap, _trt__GetVideoSourceModes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceModes", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceModes(struct soap *soap, const char *URL, _trt__GetVideoSourceModes 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, "trt:GetVideoSourceModes", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceModes(struct soap *soap, const char *URL, _trt__GetVideoSourceModes 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, "trt:GetVideoSourceModes", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceModes(struct soap *soap, const char *URL, _trt__GetVideoSourceModes 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, "trt:GetVideoSourceModes", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceModes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceModes * SOAP_FMAC4 soap_get__trt__GetVideoSourceModes(struct soap*, _trt__GetVideoSourceModes *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceModes(struct soap *soap, _trt__GetVideoSourceModes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceModes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceModes(struct soap *soap, const char *URL, _trt__GetVideoSourceModes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceModes(struct soap *soap, _trt__GetVideoSourceModes *p) -{ - if (::soap_read__trt__GetVideoSourceModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetSnapshotUriResponse_DEFINED -#define SOAP_TYPE__trt__GetSnapshotUriResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetSnapshotUriResponse(struct soap*, const char*, int, const _trt__GetSnapshotUriResponse *, const char*); -SOAP_FMAC3 _trt__GetSnapshotUriResponse * SOAP_FMAC4 soap_in__trt__GetSnapshotUriResponse(struct soap*, const char*, _trt__GetSnapshotUriResponse *, const char*); -SOAP_FMAC1 _trt__GetSnapshotUriResponse * SOAP_FMAC2 soap_instantiate__trt__GetSnapshotUriResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetSnapshotUriResponse * soap_new__trt__GetSnapshotUriResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetSnapshotUriResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetSnapshotUriResponse * soap_new_req__trt__GetSnapshotUriResponse( - struct soap *soap, - tt__MediaUri *MediaUri) -{ - _trt__GetSnapshotUriResponse *_p = ::soap_new__trt__GetSnapshotUriResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetSnapshotUriResponse::MediaUri = MediaUri; - } - return _p; -} - -inline _trt__GetSnapshotUriResponse * soap_new_set__trt__GetSnapshotUriResponse( - struct soap *soap, - tt__MediaUri *MediaUri) -{ - _trt__GetSnapshotUriResponse *_p = ::soap_new__trt__GetSnapshotUriResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetSnapshotUriResponse::MediaUri = MediaUri; - } - return _p; -} - -inline int soap_write__trt__GetSnapshotUriResponse(struct soap *soap, _trt__GetSnapshotUriResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetSnapshotUriResponse", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUriResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetSnapshotUriResponse(struct soap *soap, const char *URL, _trt__GetSnapshotUriResponse 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, "trt:GetSnapshotUriResponse", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUriResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetSnapshotUriResponse(struct soap *soap, const char *URL, _trt__GetSnapshotUriResponse 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, "trt:GetSnapshotUriResponse", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUriResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetSnapshotUriResponse(struct soap *soap, const char *URL, _trt__GetSnapshotUriResponse 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, "trt:GetSnapshotUriResponse", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUriResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetSnapshotUriResponse * SOAP_FMAC4 soap_get__trt__GetSnapshotUriResponse(struct soap*, _trt__GetSnapshotUriResponse *, const char*, const char*); - -inline int soap_read__trt__GetSnapshotUriResponse(struct soap *soap, _trt__GetSnapshotUriResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetSnapshotUriResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetSnapshotUriResponse(struct soap *soap, const char *URL, _trt__GetSnapshotUriResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetSnapshotUriResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetSnapshotUriResponse(struct soap *soap, _trt__GetSnapshotUriResponse *p) -{ - if (::soap_read__trt__GetSnapshotUriResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetSnapshotUri_DEFINED -#define SOAP_TYPE__trt__GetSnapshotUri_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetSnapshotUri(struct soap*, const char*, int, const _trt__GetSnapshotUri *, const char*); -SOAP_FMAC3 _trt__GetSnapshotUri * SOAP_FMAC4 soap_in__trt__GetSnapshotUri(struct soap*, const char*, _trt__GetSnapshotUri *, const char*); -SOAP_FMAC1 _trt__GetSnapshotUri * SOAP_FMAC2 soap_instantiate__trt__GetSnapshotUri(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetSnapshotUri * soap_new__trt__GetSnapshotUri(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetSnapshotUri(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetSnapshotUri * soap_new_req__trt__GetSnapshotUri( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetSnapshotUri *_p = ::soap_new__trt__GetSnapshotUri(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetSnapshotUri::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetSnapshotUri * soap_new_set__trt__GetSnapshotUri( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetSnapshotUri *_p = ::soap_new__trt__GetSnapshotUri(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetSnapshotUri::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetSnapshotUri(struct soap *soap, _trt__GetSnapshotUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetSnapshotUri", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUri ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetSnapshotUri(struct soap *soap, const char *URL, _trt__GetSnapshotUri 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, "trt:GetSnapshotUri", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetSnapshotUri(struct soap *soap, const char *URL, _trt__GetSnapshotUri 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, "trt:GetSnapshotUri", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetSnapshotUri(struct soap *soap, const char *URL, _trt__GetSnapshotUri 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, "trt:GetSnapshotUri", p->soap_type() == SOAP_TYPE__trt__GetSnapshotUri ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetSnapshotUri * SOAP_FMAC4 soap_get__trt__GetSnapshotUri(struct soap*, _trt__GetSnapshotUri *, const char*, const char*); - -inline int soap_read__trt__GetSnapshotUri(struct soap *soap, _trt__GetSnapshotUri *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetSnapshotUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetSnapshotUri(struct soap *soap, const char *URL, _trt__GetSnapshotUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetSnapshotUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetSnapshotUri(struct soap *soap, _trt__GetSnapshotUri *p) -{ - if (::soap_read__trt__GetSnapshotUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetSynchronizationPointResponse_DEFINED -#define SOAP_TYPE__trt__SetSynchronizationPointResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetSynchronizationPointResponse(struct soap*, const char*, int, const _trt__SetSynchronizationPointResponse *, const char*); -SOAP_FMAC3 _trt__SetSynchronizationPointResponse * SOAP_FMAC4 soap_in__trt__SetSynchronizationPointResponse(struct soap*, const char*, _trt__SetSynchronizationPointResponse *, const char*); -SOAP_FMAC1 _trt__SetSynchronizationPointResponse * SOAP_FMAC2 soap_instantiate__trt__SetSynchronizationPointResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetSynchronizationPointResponse * soap_new__trt__SetSynchronizationPointResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetSynchronizationPointResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetSynchronizationPointResponse * soap_new_req__trt__SetSynchronizationPointResponse( - struct soap *soap) -{ - _trt__SetSynchronizationPointResponse *_p = ::soap_new__trt__SetSynchronizationPointResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetSynchronizationPointResponse * soap_new_set__trt__SetSynchronizationPointResponse( - struct soap *soap) -{ - _trt__SetSynchronizationPointResponse *_p = ::soap_new__trt__SetSynchronizationPointResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetSynchronizationPointResponse(struct soap *soap, _trt__SetSynchronizationPointResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _trt__SetSynchronizationPointResponse 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, "trt:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _trt__SetSynchronizationPointResponse 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, "trt:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _trt__SetSynchronizationPointResponse 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, "trt:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetSynchronizationPointResponse * SOAP_FMAC4 soap_get__trt__SetSynchronizationPointResponse(struct soap*, _trt__SetSynchronizationPointResponse *, const char*, const char*); - -inline int soap_read__trt__SetSynchronizationPointResponse(struct soap *soap, _trt__SetSynchronizationPointResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetSynchronizationPointResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _trt__SetSynchronizationPointResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetSynchronizationPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetSynchronizationPointResponse(struct soap *soap, _trt__SetSynchronizationPointResponse *p) -{ - if (::soap_read__trt__SetSynchronizationPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetSynchronizationPoint_DEFINED -#define SOAP_TYPE__trt__SetSynchronizationPoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetSynchronizationPoint(struct soap*, const char*, int, const _trt__SetSynchronizationPoint *, const char*); -SOAP_FMAC3 _trt__SetSynchronizationPoint * SOAP_FMAC4 soap_in__trt__SetSynchronizationPoint(struct soap*, const char*, _trt__SetSynchronizationPoint *, const char*); -SOAP_FMAC1 _trt__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate__trt__SetSynchronizationPoint(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetSynchronizationPoint * soap_new__trt__SetSynchronizationPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetSynchronizationPoint(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetSynchronizationPoint * soap_new_req__trt__SetSynchronizationPoint( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__SetSynchronizationPoint *_p = ::soap_new__trt__SetSynchronizationPoint(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetSynchronizationPoint::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__SetSynchronizationPoint * soap_new_set__trt__SetSynchronizationPoint( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__SetSynchronizationPoint *_p = ::soap_new__trt__SetSynchronizationPoint(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetSynchronizationPoint::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__SetSynchronizationPoint(struct soap *soap, _trt__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetSynchronizationPoint(struct soap *soap, const char *URL, _trt__SetSynchronizationPoint 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, "trt:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetSynchronizationPoint(struct soap *soap, const char *URL, _trt__SetSynchronizationPoint 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, "trt:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetSynchronizationPoint(struct soap *soap, const char *URL, _trt__SetSynchronizationPoint 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, "trt:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__trt__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetSynchronizationPoint * SOAP_FMAC4 soap_get__trt__SetSynchronizationPoint(struct soap*, _trt__SetSynchronizationPoint *, const char*, const char*); - -inline int soap_read__trt__SetSynchronizationPoint(struct soap *soap, _trt__SetSynchronizationPoint *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetSynchronizationPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetSynchronizationPoint(struct soap *soap, const char *URL, _trt__SetSynchronizationPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetSynchronizationPoint(struct soap *soap, _trt__SetSynchronizationPoint *p) -{ - if (::soap_read__trt__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__StopMulticastStreamingResponse_DEFINED -#define SOAP_TYPE__trt__StopMulticastStreamingResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StopMulticastStreamingResponse(struct soap*, const char*, int, const _trt__StopMulticastStreamingResponse *, const char*); -SOAP_FMAC3 _trt__StopMulticastStreamingResponse * SOAP_FMAC4 soap_in__trt__StopMulticastStreamingResponse(struct soap*, const char*, _trt__StopMulticastStreamingResponse *, const char*); -SOAP_FMAC1 _trt__StopMulticastStreamingResponse * SOAP_FMAC2 soap_instantiate__trt__StopMulticastStreamingResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__StopMulticastStreamingResponse * soap_new__trt__StopMulticastStreamingResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__StopMulticastStreamingResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__StopMulticastStreamingResponse * soap_new_req__trt__StopMulticastStreamingResponse( - struct soap *soap) -{ - _trt__StopMulticastStreamingResponse *_p = ::soap_new__trt__StopMulticastStreamingResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__StopMulticastStreamingResponse * soap_new_set__trt__StopMulticastStreamingResponse( - struct soap *soap) -{ - _trt__StopMulticastStreamingResponse *_p = ::soap_new__trt__StopMulticastStreamingResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__StopMulticastStreamingResponse(struct soap *soap, _trt__StopMulticastStreamingResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:StopMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__StopMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StopMulticastStreamingResponse 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, "trt:StopMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__StopMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StopMulticastStreamingResponse 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, "trt:StopMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__StopMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StopMulticastStreamingResponse 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, "trt:StopMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__StopMulticastStreamingResponse * SOAP_FMAC4 soap_get__trt__StopMulticastStreamingResponse(struct soap*, _trt__StopMulticastStreamingResponse *, const char*, const char*); - -inline int soap_read__trt__StopMulticastStreamingResponse(struct soap *soap, _trt__StopMulticastStreamingResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__StopMulticastStreamingResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__StopMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StopMulticastStreamingResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__StopMulticastStreamingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__StopMulticastStreamingResponse(struct soap *soap, _trt__StopMulticastStreamingResponse *p) -{ - if (::soap_read__trt__StopMulticastStreamingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__StopMulticastStreaming_DEFINED -#define SOAP_TYPE__trt__StopMulticastStreaming_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StopMulticastStreaming(struct soap*, const char*, int, const _trt__StopMulticastStreaming *, const char*); -SOAP_FMAC3 _trt__StopMulticastStreaming * SOAP_FMAC4 soap_in__trt__StopMulticastStreaming(struct soap*, const char*, _trt__StopMulticastStreaming *, const char*); -SOAP_FMAC1 _trt__StopMulticastStreaming * SOAP_FMAC2 soap_instantiate__trt__StopMulticastStreaming(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__StopMulticastStreaming * soap_new__trt__StopMulticastStreaming(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__StopMulticastStreaming(soap, n, NULL, NULL, NULL); -} - -inline _trt__StopMulticastStreaming * soap_new_req__trt__StopMulticastStreaming( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__StopMulticastStreaming *_p = ::soap_new__trt__StopMulticastStreaming(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__StopMulticastStreaming::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__StopMulticastStreaming * soap_new_set__trt__StopMulticastStreaming( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__StopMulticastStreaming *_p = ::soap_new__trt__StopMulticastStreaming(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__StopMulticastStreaming::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__StopMulticastStreaming(struct soap *soap, _trt__StopMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:StopMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreaming ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__StopMulticastStreaming(struct soap *soap, const char *URL, _trt__StopMulticastStreaming 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, "trt:StopMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreaming ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__StopMulticastStreaming(struct soap *soap, const char *URL, _trt__StopMulticastStreaming 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, "trt:StopMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreaming ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__StopMulticastStreaming(struct soap *soap, const char *URL, _trt__StopMulticastStreaming 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, "trt:StopMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StopMulticastStreaming ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__StopMulticastStreaming * SOAP_FMAC4 soap_get__trt__StopMulticastStreaming(struct soap*, _trt__StopMulticastStreaming *, const char*, const char*); - -inline int soap_read__trt__StopMulticastStreaming(struct soap *soap, _trt__StopMulticastStreaming *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__StopMulticastStreaming(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__StopMulticastStreaming(struct soap *soap, const char *URL, _trt__StopMulticastStreaming *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__StopMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__StopMulticastStreaming(struct soap *soap, _trt__StopMulticastStreaming *p) -{ - if (::soap_read__trt__StopMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__StartMulticastStreamingResponse_DEFINED -#define SOAP_TYPE__trt__StartMulticastStreamingResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StartMulticastStreamingResponse(struct soap*, const char*, int, const _trt__StartMulticastStreamingResponse *, const char*); -SOAP_FMAC3 _trt__StartMulticastStreamingResponse * SOAP_FMAC4 soap_in__trt__StartMulticastStreamingResponse(struct soap*, const char*, _trt__StartMulticastStreamingResponse *, const char*); -SOAP_FMAC1 _trt__StartMulticastStreamingResponse * SOAP_FMAC2 soap_instantiate__trt__StartMulticastStreamingResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__StartMulticastStreamingResponse * soap_new__trt__StartMulticastStreamingResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__StartMulticastStreamingResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__StartMulticastStreamingResponse * soap_new_req__trt__StartMulticastStreamingResponse( - struct soap *soap) -{ - _trt__StartMulticastStreamingResponse *_p = ::soap_new__trt__StartMulticastStreamingResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__StartMulticastStreamingResponse * soap_new_set__trt__StartMulticastStreamingResponse( - struct soap *soap) -{ - _trt__StartMulticastStreamingResponse *_p = ::soap_new__trt__StartMulticastStreamingResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__StartMulticastStreamingResponse(struct soap *soap, _trt__StartMulticastStreamingResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:StartMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__StartMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StartMulticastStreamingResponse 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, "trt:StartMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__StartMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StartMulticastStreamingResponse 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, "trt:StartMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__StartMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StartMulticastStreamingResponse 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, "trt:StartMulticastStreamingResponse", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreamingResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__StartMulticastStreamingResponse * SOAP_FMAC4 soap_get__trt__StartMulticastStreamingResponse(struct soap*, _trt__StartMulticastStreamingResponse *, const char*, const char*); - -inline int soap_read__trt__StartMulticastStreamingResponse(struct soap *soap, _trt__StartMulticastStreamingResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__StartMulticastStreamingResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__StartMulticastStreamingResponse(struct soap *soap, const char *URL, _trt__StartMulticastStreamingResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__StartMulticastStreamingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__StartMulticastStreamingResponse(struct soap *soap, _trt__StartMulticastStreamingResponse *p) -{ - if (::soap_read__trt__StartMulticastStreamingResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__StartMulticastStreaming_DEFINED -#define SOAP_TYPE__trt__StartMulticastStreaming_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__StartMulticastStreaming(struct soap*, const char*, int, const _trt__StartMulticastStreaming *, const char*); -SOAP_FMAC3 _trt__StartMulticastStreaming * SOAP_FMAC4 soap_in__trt__StartMulticastStreaming(struct soap*, const char*, _trt__StartMulticastStreaming *, const char*); -SOAP_FMAC1 _trt__StartMulticastStreaming * SOAP_FMAC2 soap_instantiate__trt__StartMulticastStreaming(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__StartMulticastStreaming * soap_new__trt__StartMulticastStreaming(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__StartMulticastStreaming(soap, n, NULL, NULL, NULL); -} - -inline _trt__StartMulticastStreaming * soap_new_req__trt__StartMulticastStreaming( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__StartMulticastStreaming *_p = ::soap_new__trt__StartMulticastStreaming(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__StartMulticastStreaming::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__StartMulticastStreaming * soap_new_set__trt__StartMulticastStreaming( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__StartMulticastStreaming *_p = ::soap_new__trt__StartMulticastStreaming(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__StartMulticastStreaming::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__StartMulticastStreaming(struct soap *soap, _trt__StartMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:StartMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreaming ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__StartMulticastStreaming(struct soap *soap, const char *URL, _trt__StartMulticastStreaming 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, "trt:StartMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreaming ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__StartMulticastStreaming(struct soap *soap, const char *URL, _trt__StartMulticastStreaming 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, "trt:StartMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreaming ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__StartMulticastStreaming(struct soap *soap, const char *URL, _trt__StartMulticastStreaming 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, "trt:StartMulticastStreaming", p->soap_type() == SOAP_TYPE__trt__StartMulticastStreaming ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__StartMulticastStreaming * SOAP_FMAC4 soap_get__trt__StartMulticastStreaming(struct soap*, _trt__StartMulticastStreaming *, const char*, const char*); - -inline int soap_read__trt__StartMulticastStreaming(struct soap *soap, _trt__StartMulticastStreaming *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__StartMulticastStreaming(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__StartMulticastStreaming(struct soap *soap, const char *URL, _trt__StartMulticastStreaming *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__StartMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__StartMulticastStreaming(struct soap *soap, _trt__StartMulticastStreaming *p) -{ - if (::soap_read__trt__StartMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetStreamUriResponse_DEFINED -#define SOAP_TYPE__trt__GetStreamUriResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetStreamUriResponse(struct soap*, const char*, int, const _trt__GetStreamUriResponse *, const char*); -SOAP_FMAC3 _trt__GetStreamUriResponse * SOAP_FMAC4 soap_in__trt__GetStreamUriResponse(struct soap*, const char*, _trt__GetStreamUriResponse *, const char*); -SOAP_FMAC1 _trt__GetStreamUriResponse * SOAP_FMAC2 soap_instantiate__trt__GetStreamUriResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetStreamUriResponse * soap_new__trt__GetStreamUriResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetStreamUriResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetStreamUriResponse * soap_new_req__trt__GetStreamUriResponse( - struct soap *soap, - tt__MediaUri *MediaUri) -{ - _trt__GetStreamUriResponse *_p = ::soap_new__trt__GetStreamUriResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetStreamUriResponse::MediaUri = MediaUri; - } - return _p; -} - -inline _trt__GetStreamUriResponse * soap_new_set__trt__GetStreamUriResponse( - struct soap *soap, - tt__MediaUri *MediaUri) -{ - _trt__GetStreamUriResponse *_p = ::soap_new__trt__GetStreamUriResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetStreamUriResponse::MediaUri = MediaUri; - } - return _p; -} - -inline int soap_write__trt__GetStreamUriResponse(struct soap *soap, _trt__GetStreamUriResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetStreamUriResponse", p->soap_type() == SOAP_TYPE__trt__GetStreamUriResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetStreamUriResponse(struct soap *soap, const char *URL, _trt__GetStreamUriResponse 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, "trt:GetStreamUriResponse", p->soap_type() == SOAP_TYPE__trt__GetStreamUriResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetStreamUriResponse(struct soap *soap, const char *URL, _trt__GetStreamUriResponse 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, "trt:GetStreamUriResponse", p->soap_type() == SOAP_TYPE__trt__GetStreamUriResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetStreamUriResponse(struct soap *soap, const char *URL, _trt__GetStreamUriResponse 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, "trt:GetStreamUriResponse", p->soap_type() == SOAP_TYPE__trt__GetStreamUriResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetStreamUriResponse * SOAP_FMAC4 soap_get__trt__GetStreamUriResponse(struct soap*, _trt__GetStreamUriResponse *, const char*, const char*); - -inline int soap_read__trt__GetStreamUriResponse(struct soap *soap, _trt__GetStreamUriResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetStreamUriResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetStreamUriResponse(struct soap *soap, const char *URL, _trt__GetStreamUriResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetStreamUriResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetStreamUriResponse(struct soap *soap, _trt__GetStreamUriResponse *p) -{ - if (::soap_read__trt__GetStreamUriResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetStreamUri_DEFINED -#define SOAP_TYPE__trt__GetStreamUri_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetStreamUri(struct soap*, const char*, int, const _trt__GetStreamUri *, const char*); -SOAP_FMAC3 _trt__GetStreamUri * SOAP_FMAC4 soap_in__trt__GetStreamUri(struct soap*, const char*, _trt__GetStreamUri *, const char*); -SOAP_FMAC1 _trt__GetStreamUri * SOAP_FMAC2 soap_instantiate__trt__GetStreamUri(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetStreamUri * soap_new__trt__GetStreamUri(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetStreamUri(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetStreamUri * soap_new_req__trt__GetStreamUri( - struct soap *soap, - tt__StreamSetup *StreamSetup, - const std::string& ProfileToken) -{ - _trt__GetStreamUri *_p = ::soap_new__trt__GetStreamUri(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetStreamUri::StreamSetup = StreamSetup; - _p->_trt__GetStreamUri::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetStreamUri * soap_new_set__trt__GetStreamUri( - struct soap *soap, - tt__StreamSetup *StreamSetup, - const std::string& ProfileToken) -{ - _trt__GetStreamUri *_p = ::soap_new__trt__GetStreamUri(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetStreamUri::StreamSetup = StreamSetup; - _p->_trt__GetStreamUri::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetStreamUri(struct soap *soap, _trt__GetStreamUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetStreamUri", p->soap_type() == SOAP_TYPE__trt__GetStreamUri ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetStreamUri(struct soap *soap, const char *URL, _trt__GetStreamUri 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, "trt:GetStreamUri", p->soap_type() == SOAP_TYPE__trt__GetStreamUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetStreamUri(struct soap *soap, const char *URL, _trt__GetStreamUri 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, "trt:GetStreamUri", p->soap_type() == SOAP_TYPE__trt__GetStreamUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetStreamUri(struct soap *soap, const char *URL, _trt__GetStreamUri 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, "trt:GetStreamUri", p->soap_type() == SOAP_TYPE__trt__GetStreamUri ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetStreamUri * SOAP_FMAC4 soap_get__trt__GetStreamUri(struct soap*, _trt__GetStreamUri *, const char*, const char*); - -inline int soap_read__trt__GetStreamUri(struct soap *soap, _trt__GetStreamUri *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetStreamUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetStreamUri(struct soap *soap, const char *URL, _trt__GetStreamUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetStreamUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetStreamUri(struct soap *soap, _trt__GetStreamUri *p) -{ - if (::soap_read__trt__GetStreamUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse_DEFINED -#define SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap*, const char*, int, const _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *, const char*); -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * SOAP_FMAC4 soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap*, const char*, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *, const char*); -SOAP_FMAC1 _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * SOAP_FMAC2 soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * soap_new__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * soap_new_req__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse( - struct soap *soap, - int TotalNumber) -{ - _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *_p = ::soap_new__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::TotalNumber = TotalNumber; - } - return _p; -} - -inline _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * soap_new_set__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse( - struct soap *soap, - int TotalNumber, - int *JPEG, - int *H264, - int *MPEG4) -{ - _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *_p = ::soap_new__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::TotalNumber = TotalNumber; - _p->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::JPEG = JPEG; - _p->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::H264 = H264; - _p->_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse::MPEG4 = MPEG4; - } - return _p; -} - -inline int soap_write__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse 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, "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse 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, "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse 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, "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse * SOAP_FMAC4 soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap*, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *, const char*, const char*); - -inline int soap_read__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse *p) -{ - if (::soap_read__trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances_DEFINED -#define SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const char*, int, const _trt__GetGuaranteedNumberOfVideoEncoderInstances *, const char*); -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_in__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const char*, _trt__GetGuaranteedNumberOfVideoEncoderInstances *, const char*); -SOAP_FMAC1 _trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC2 soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetGuaranteedNumberOfVideoEncoderInstances * soap_new__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetGuaranteedNumberOfVideoEncoderInstances * soap_new_req__trt__GetGuaranteedNumberOfVideoEncoderInstances( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetGuaranteedNumberOfVideoEncoderInstances *_p = ::soap_new__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetGuaranteedNumberOfVideoEncoderInstances::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetGuaranteedNumberOfVideoEncoderInstances * soap_new_set__trt__GetGuaranteedNumberOfVideoEncoderInstances( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetGuaranteedNumberOfVideoEncoderInstances *_p = ::soap_new__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetGuaranteedNumberOfVideoEncoderInstances::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetGuaranteedNumberOfVideoEncoderInstances", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstances 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, "trt:GetGuaranteedNumberOfVideoEncoderInstances", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstances 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, "trt:GetGuaranteedNumberOfVideoEncoderInstances", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstances 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, "trt:GetGuaranteedNumberOfVideoEncoderInstances", p->soap_type() == SOAP_TYPE__trt__GetGuaranteedNumberOfVideoEncoderInstances ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, _trt__GetGuaranteedNumberOfVideoEncoderInstances *, const char*, const char*); - -inline int soap_read__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, _trt__GetGuaranteedNumberOfVideoEncoderInstances *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, _trt__GetGuaranteedNumberOfVideoEncoderInstances *p) -{ - if (::soap_read__trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap*, const char*, int, const _trt__GetAudioDecoderConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap*, const char*, _trt__GetAudioDecoderConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioDecoderConfigurationOptionsResponse * soap_new__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioDecoderConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioDecoderConfigurationOptionsResponse * soap_new_req__trt__GetAudioDecoderConfigurationOptionsResponse( - struct soap *soap, - tt__AudioDecoderConfigurationOptions *Options) -{ - _trt__GetAudioDecoderConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioDecoderConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline _trt__GetAudioDecoderConfigurationOptionsResponse * soap_new_set__trt__GetAudioDecoderConfigurationOptionsResponse( - struct soap *soap, - tt__AudioDecoderConfigurationOptions *Options) -{ - _trt__GetAudioDecoderConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioDecoderConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioDecoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptionsResponse 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, "trt:GetAudioDecoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptionsResponse 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, "trt:GetAudioDecoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptionsResponse 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, "trt:GetAudioDecoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap*, _trt__GetAudioDecoderConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioDecoderConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioDecoderConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioDecoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationOptionsResponse *p) -{ - if (::soap_read__trt__GetAudioDecoderConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions_DEFINED -#define SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationOptions(struct soap*, const char*, int, const _trt__GetAudioDecoderConfigurationOptions *, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationOptions(struct soap*, const char*, _trt__GetAudioDecoderConfigurationOptions *, const char*); -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioDecoderConfigurationOptions * soap_new__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioDecoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioDecoderConfigurationOptions * soap_new_req__trt__GetAudioDecoderConfigurationOptions( - struct soap *soap) -{ - _trt__GetAudioDecoderConfigurationOptions *_p = ::soap_new__trt__GetAudioDecoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioDecoderConfigurationOptions * soap_new_set__trt__GetAudioDecoderConfigurationOptions( - struct soap *soap, - std::string *ConfigurationToken, - std::string *ProfileToken) -{ - _trt__GetAudioDecoderConfigurationOptions *_p = ::soap_new__trt__GetAudioDecoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfigurationOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetAudioDecoderConfigurationOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, _trt__GetAudioDecoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptions 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, "trt:GetAudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptions 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, "trt:GetAudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptions 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, "trt:GetAudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationOptions(struct soap*, _trt__GetAudioDecoderConfigurationOptions *, const char*, const char*); - -inline int soap_read__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, _trt__GetAudioDecoderConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioDecoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioDecoderConfigurationOptions(struct soap *soap, _trt__GetAudioDecoderConfigurationOptions *p) -{ - if (::soap_read__trt__GetAudioDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationOptionsResponse(struct soap*, const char*, int, const _trt__GetAudioOutputConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationOptionsResponse(struct soap*, const char*, _trt__GetAudioOutputConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputConfigurationOptionsResponse * soap_new__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputConfigurationOptionsResponse * soap_new_req__trt__GetAudioOutputConfigurationOptionsResponse( - struct soap *soap, - tt__AudioOutputConfigurationOptions *Options) -{ - _trt__GetAudioOutputConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioOutputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline _trt__GetAudioOutputConfigurationOptionsResponse * soap_new_set__trt__GetAudioOutputConfigurationOptionsResponse( - struct soap *soap, - tt__AudioOutputConfigurationOptions *Options) -{ - _trt__GetAudioOutputConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioOutputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptionsResponse 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, "trt:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptionsResponse 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, "trt:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptionsResponse 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, "trt:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationOptionsResponse(struct soap*, _trt__GetAudioOutputConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationOptionsResponse *p) -{ - if (::soap_read__trt__GetAudioOutputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationOptions(struct soap*, const char*, int, const _trt__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationOptions(struct soap*, const char*, _trt__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputConfigurationOptions * soap_new__trt__GetAudioOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputConfigurationOptions * soap_new_req__trt__GetAudioOutputConfigurationOptions( - struct soap *soap) -{ - _trt__GetAudioOutputConfigurationOptions *_p = ::soap_new__trt__GetAudioOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioOutputConfigurationOptions * soap_new_set__trt__GetAudioOutputConfigurationOptions( - struct soap *soap, - std::string *ConfigurationToken, - std::string *ProfileToken) -{ - _trt__GetAudioOutputConfigurationOptions *_p = ::soap_new__trt__GetAudioOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfigurationOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetAudioOutputConfigurationOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputConfigurationOptions(struct soap *soap, _trt__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptions 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, "trt:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptions 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, "trt:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptions 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, "trt:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationOptions(struct soap*, _trt__GetAudioOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputConfigurationOptions(struct soap *soap, _trt__GetAudioOutputConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputConfigurationOptions(struct soap *soap, _trt__GetAudioOutputConfigurationOptions *p) -{ - if (::soap_read__trt__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationOptionsResponse(struct soap*, const char*, int, const _trt__GetMetadataConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetMetadataConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationOptionsResponse(struct soap*, const char*, _trt__GetMetadataConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetMetadataConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetMetadataConfigurationOptionsResponse * soap_new__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetMetadataConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetMetadataConfigurationOptionsResponse * soap_new_req__trt__GetMetadataConfigurationOptionsResponse( - struct soap *soap, - tt__MetadataConfigurationOptions *Options) -{ - _trt__GetMetadataConfigurationOptionsResponse *_p = ::soap_new__trt__GetMetadataConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline _trt__GetMetadataConfigurationOptionsResponse * soap_new_set__trt__GetMetadataConfigurationOptionsResponse( - struct soap *soap, - tt__MetadataConfigurationOptions *Options) -{ - _trt__GetMetadataConfigurationOptionsResponse *_p = ::soap_new__trt__GetMetadataConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, _trt__GetMetadataConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetMetadataConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptionsResponse 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, "trt:GetMetadataConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptionsResponse 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, "trt:GetMetadataConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptionsResponse 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, "trt:GetMetadataConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetMetadataConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationOptionsResponse(struct soap*, _trt__GetMetadataConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, _trt__GetMetadataConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetMetadataConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetMetadataConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetMetadataConfigurationOptionsResponse(struct soap *soap, _trt__GetMetadataConfigurationOptionsResponse *p) -{ - if (::soap_read__trt__GetMetadataConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetMetadataConfigurationOptions_DEFINED -#define SOAP_TYPE__trt__GetMetadataConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationOptions(struct soap*, const char*, int, const _trt__GetMetadataConfigurationOptions *, const char*); -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationOptions(struct soap*, const char*, _trt__GetMetadataConfigurationOptions *, const char*); -SOAP_FMAC1 _trt__GetMetadataConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetMetadataConfigurationOptions * soap_new__trt__GetMetadataConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetMetadataConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetMetadataConfigurationOptions * soap_new_req__trt__GetMetadataConfigurationOptions( - struct soap *soap) -{ - _trt__GetMetadataConfigurationOptions *_p = ::soap_new__trt__GetMetadataConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetMetadataConfigurationOptions * soap_new_set__trt__GetMetadataConfigurationOptions( - struct soap *soap, - std::string *ConfigurationToken, - std::string *ProfileToken) -{ - _trt__GetMetadataConfigurationOptions *_p = ::soap_new__trt__GetMetadataConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfigurationOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetMetadataConfigurationOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetMetadataConfigurationOptions(struct soap *soap, _trt__GetMetadataConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetMetadataConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptions 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, "trt:GetMetadataConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptions 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, "trt:GetMetadataConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptions 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, "trt:GetMetadataConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationOptions(struct soap*, _trt__GetMetadataConfigurationOptions *, const char*, const char*); - -inline int soap_read__trt__GetMetadataConfigurationOptions(struct soap *soap, _trt__GetMetadataConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetMetadataConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetMetadataConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetMetadataConfigurationOptions(struct soap *soap, _trt__GetMetadataConfigurationOptions *p) -{ - if (::soap_read__trt__GetMetadataConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap*, const char*, int, const _trt__GetAudioEncoderConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap*, const char*, _trt__GetAudioEncoderConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioEncoderConfigurationOptionsResponse * soap_new__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioEncoderConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioEncoderConfigurationOptionsResponse * soap_new_req__trt__GetAudioEncoderConfigurationOptionsResponse( - struct soap *soap, - tt__AudioEncoderConfigurationOptions *Options) -{ - _trt__GetAudioEncoderConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioEncoderConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline _trt__GetAudioEncoderConfigurationOptionsResponse * soap_new_set__trt__GetAudioEncoderConfigurationOptionsResponse( - struct soap *soap, - tt__AudioEncoderConfigurationOptions *Options) -{ - _trt__GetAudioEncoderConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioEncoderConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptionsResponse 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, "trt:GetAudioEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptionsResponse 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, "trt:GetAudioEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptionsResponse 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, "trt:GetAudioEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap*, _trt__GetAudioEncoderConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioEncoderConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioEncoderConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationOptionsResponse *p) -{ - if (::soap_read__trt__GetAudioEncoderConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationOptions(struct soap*, const char*, int, const _trt__GetAudioEncoderConfigurationOptions *, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationOptions(struct soap*, const char*, _trt__GetAudioEncoderConfigurationOptions *, const char*); -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioEncoderConfigurationOptions * soap_new__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioEncoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioEncoderConfigurationOptions * soap_new_req__trt__GetAudioEncoderConfigurationOptions( - struct soap *soap) -{ - _trt__GetAudioEncoderConfigurationOptions *_p = ::soap_new__trt__GetAudioEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioEncoderConfigurationOptions * soap_new_set__trt__GetAudioEncoderConfigurationOptions( - struct soap *soap, - std::string *ConfigurationToken, - std::string *ProfileToken) -{ - _trt__GetAudioEncoderConfigurationOptions *_p = ::soap_new__trt__GetAudioEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfigurationOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetAudioEncoderConfigurationOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, _trt__GetAudioEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptions 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, "trt:GetAudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptions 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, "trt:GetAudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptions 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, "trt:GetAudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationOptions(struct soap*, _trt__GetAudioEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_read__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, _trt__GetAudioEncoderConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioEncoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioEncoderConfigurationOptions(struct soap *soap, _trt__GetAudioEncoderConfigurationOptions *p) -{ - if (::soap_read__trt__GetAudioEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationOptionsResponse(struct soap*, const char*, int, const _trt__GetAudioSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationOptionsResponse(struct soap*, const char*, _trt__GetAudioSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSourceConfigurationOptionsResponse * soap_new__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSourceConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSourceConfigurationOptionsResponse * soap_new_req__trt__GetAudioSourceConfigurationOptionsResponse( - struct soap *soap, - tt__AudioSourceConfigurationOptions *Options) -{ - _trt__GetAudioSourceConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline _trt__GetAudioSourceConfigurationOptionsResponse * soap_new_set__trt__GetAudioSourceConfigurationOptionsResponse( - struct soap *soap, - tt__AudioSourceConfigurationOptions *Options) -{ - _trt__GetAudioSourceConfigurationOptionsResponse *_p = ::soap_new__trt__GetAudioSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptionsResponse 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, "trt:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptionsResponse 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, "trt:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptionsResponse 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, "trt:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationOptionsResponse(struct soap*, _trt__GetAudioSourceConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSourceConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationOptionsResponse *p) -{ - if (::soap_read__trt__GetAudioSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE__trt__GetAudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationOptions(struct soap*, const char*, int, const _trt__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationOptions(struct soap*, const char*, _trt__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC1 _trt__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSourceConfigurationOptions * soap_new__trt__GetAudioSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSourceConfigurationOptions * soap_new_req__trt__GetAudioSourceConfigurationOptions( - struct soap *soap) -{ - _trt__GetAudioSourceConfigurationOptions *_p = ::soap_new__trt__GetAudioSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioSourceConfigurationOptions * soap_new_set__trt__GetAudioSourceConfigurationOptions( - struct soap *soap, - std::string *ConfigurationToken, - std::string *ProfileToken) -{ - _trt__GetAudioSourceConfigurationOptions *_p = ::soap_new__trt__GetAudioSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfigurationOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetAudioSourceConfigurationOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioSourceConfigurationOptions(struct soap *soap, _trt__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptions 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, "trt:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptions 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, "trt:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptions 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, "trt:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationOptions(struct soap*, _trt__GetAudioSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read__trt__GetAudioSourceConfigurationOptions(struct soap *soap, _trt__GetAudioSourceConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSourceConfigurationOptions(struct soap *soap, _trt__GetAudioSourceConfigurationOptions *p) -{ - if (::soap_read__trt__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap*, const char*, int, const _trt__GetVideoEncoderConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap*, const char*, _trt__GetVideoEncoderConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoEncoderConfigurationOptionsResponse * soap_new__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoEncoderConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoEncoderConfigurationOptionsResponse * soap_new_req__trt__GetVideoEncoderConfigurationOptionsResponse( - struct soap *soap, - tt__VideoEncoderConfigurationOptions *Options) -{ - _trt__GetVideoEncoderConfigurationOptionsResponse *_p = ::soap_new__trt__GetVideoEncoderConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline _trt__GetVideoEncoderConfigurationOptionsResponse * soap_new_set__trt__GetVideoEncoderConfigurationOptionsResponse( - struct soap *soap, - tt__VideoEncoderConfigurationOptions *Options) -{ - _trt__GetVideoEncoderConfigurationOptionsResponse *_p = ::soap_new__trt__GetVideoEncoderConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptionsResponse 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, "trt:GetVideoEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptionsResponse 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, "trt:GetVideoEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptionsResponse 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, "trt:GetVideoEncoderConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap*, _trt__GetVideoEncoderConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoEncoderConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoEncoderConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoEncoderConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationOptionsResponse *p) -{ - if (::soap_read__trt__GetVideoEncoderConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationOptions(struct soap*, const char*, int, const _trt__GetVideoEncoderConfigurationOptions *, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationOptions(struct soap*, const char*, _trt__GetVideoEncoderConfigurationOptions *, const char*); -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoEncoderConfigurationOptions * soap_new__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoEncoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoEncoderConfigurationOptions * soap_new_req__trt__GetVideoEncoderConfigurationOptions( - struct soap *soap) -{ - _trt__GetVideoEncoderConfigurationOptions *_p = ::soap_new__trt__GetVideoEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoEncoderConfigurationOptions * soap_new_set__trt__GetVideoEncoderConfigurationOptions( - struct soap *soap, - std::string *ConfigurationToken, - std::string *ProfileToken) -{ - _trt__GetVideoEncoderConfigurationOptions *_p = ::soap_new__trt__GetVideoEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfigurationOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetVideoEncoderConfigurationOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, _trt__GetVideoEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptions 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, "trt:GetVideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptions 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, "trt:GetVideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptions 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, "trt:GetVideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationOptions(struct soap*, _trt__GetVideoEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_read__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, _trt__GetVideoEncoderConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoEncoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoEncoderConfigurationOptions(struct soap *soap, _trt__GetVideoEncoderConfigurationOptions *p) -{ - if (::soap_read__trt__GetVideoEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationOptionsResponse(struct soap*, const char*, int, const _trt__GetVideoSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationOptionsResponse(struct soap*, const char*, _trt__GetVideoSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceConfigurationOptionsResponse * soap_new__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceConfigurationOptionsResponse * soap_new_req__trt__GetVideoSourceConfigurationOptionsResponse( - struct soap *soap, - tt__VideoSourceConfigurationOptions *Options) -{ - _trt__GetVideoSourceConfigurationOptionsResponse *_p = ::soap_new__trt__GetVideoSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline _trt__GetVideoSourceConfigurationOptionsResponse * soap_new_set__trt__GetVideoSourceConfigurationOptionsResponse( - struct soap *soap, - tt__VideoSourceConfigurationOptions *Options) -{ - _trt__GetVideoSourceConfigurationOptionsResponse *_p = ::soap_new__trt__GetVideoSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfigurationOptionsResponse::Options = Options; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptionsResponse 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, "trt:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptionsResponse 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, "trt:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptionsResponse 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, "trt:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationOptionsResponse(struct soap*, _trt__GetVideoSourceConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationOptionsResponse *p) -{ - if (::soap_read__trt__GetVideoSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationOptions(struct soap*, const char*, int, const _trt__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationOptions(struct soap*, const char*, _trt__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceConfigurationOptions * soap_new__trt__GetVideoSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceConfigurationOptions * soap_new_req__trt__GetVideoSourceConfigurationOptions( - struct soap *soap) -{ - _trt__GetVideoSourceConfigurationOptions *_p = ::soap_new__trt__GetVideoSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoSourceConfigurationOptions * soap_new_set__trt__GetVideoSourceConfigurationOptions( - struct soap *soap, - std::string *ConfigurationToken, - std::string *ProfileToken) -{ - _trt__GetVideoSourceConfigurationOptions *_p = ::soap_new__trt__GetVideoSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfigurationOptions::ConfigurationToken = ConfigurationToken; - _p->_trt__GetVideoSourceConfigurationOptions::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceConfigurationOptions(struct soap *soap, _trt__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptions 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, "trt:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptions 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, "trt:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptions 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, "trt:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationOptions(struct soap*, _trt__GetVideoSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceConfigurationOptions(struct soap *soap, _trt__GetVideoSourceConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceConfigurationOptions(struct soap *soap, _trt__GetVideoSourceConfigurationOptions *p) -{ - if (::soap_read__trt__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioDecoderConfigurationResponse(struct soap*, const char*, int, const _trt__SetAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioDecoderConfigurationResponse(struct soap*, const char*, _trt__SetAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioDecoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioDecoderConfigurationResponse * soap_new__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioDecoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioDecoderConfigurationResponse * soap_new_req__trt__SetAudioDecoderConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioDecoderConfigurationResponse *_p = ::soap_new__trt__SetAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetAudioDecoderConfigurationResponse * soap_new_set__trt__SetAudioDecoderConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioDecoderConfigurationResponse *_p = ::soap_new__trt__SetAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, _trt__SetAudioDecoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfigurationResponse 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, "trt:SetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfigurationResponse 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, "trt:SetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfigurationResponse 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, "trt:SetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioDecoderConfigurationResponse(struct soap*, _trt__SetAudioDecoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, _trt__SetAudioDecoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioDecoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioDecoderConfigurationResponse(struct soap *soap, _trt__SetAudioDecoderConfigurationResponse *p) -{ - if (::soap_read__trt__SetAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE__trt__SetAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioDecoderConfiguration(struct soap*, const char*, int, const _trt__SetAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioDecoderConfiguration(struct soap*, const char*, _trt__SetAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 _trt__SetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioDecoderConfiguration * soap_new__trt__SetAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioDecoderConfiguration * soap_new_req__trt__SetAudioDecoderConfiguration( - struct soap *soap, - tt__AudioDecoderConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioDecoderConfiguration *_p = ::soap_new__trt__SetAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioDecoderConfiguration::Configuration = Configuration; - _p->_trt__SetAudioDecoderConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetAudioDecoderConfiguration * soap_new_set__trt__SetAudioDecoderConfiguration( - struct soap *soap, - tt__AudioDecoderConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioDecoderConfiguration *_p = ::soap_new__trt__SetAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioDecoderConfiguration::Configuration = Configuration; - _p->_trt__SetAudioDecoderConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetAudioDecoderConfiguration(struct soap *soap, _trt__SetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfiguration 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, "trt:SetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfiguration 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, "trt:SetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfiguration 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, "trt:SetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioDecoderConfiguration(struct soap*, _trt__SetAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetAudioDecoderConfiguration(struct soap *soap, _trt__SetAudioDecoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioDecoderConfiguration(struct soap *soap, _trt__SetAudioDecoderConfiguration *p) -{ - if (::soap_read__trt__SetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetAudioOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioOutputConfigurationResponse(struct soap*, const char*, int, const _trt__SetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioOutputConfigurationResponse(struct soap*, const char*, _trt__SetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioOutputConfigurationResponse * soap_new__trt__SetAudioOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioOutputConfigurationResponse * soap_new_req__trt__SetAudioOutputConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioOutputConfigurationResponse *_p = ::soap_new__trt__SetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetAudioOutputConfigurationResponse * soap_new_set__trt__SetAudioOutputConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioOutputConfigurationResponse *_p = ::soap_new__trt__SetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetAudioOutputConfigurationResponse(struct soap *soap, _trt__SetAudioOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioOutputConfigurationResponse 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, "trt:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioOutputConfigurationResponse 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, "trt:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioOutputConfigurationResponse 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, "trt:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioOutputConfigurationResponse(struct soap*, _trt__SetAudioOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetAudioOutputConfigurationResponse(struct soap *soap, _trt__SetAudioOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioOutputConfigurationResponse(struct soap *soap, _trt__SetAudioOutputConfigurationResponse *p) -{ - if (::soap_read__trt__SetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE__trt__SetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioOutputConfiguration(struct soap*, const char*, int, const _trt__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 _trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioOutputConfiguration(struct soap*, const char*, _trt__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 _trt__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioOutputConfiguration * soap_new__trt__SetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioOutputConfiguration * soap_new_req__trt__SetAudioOutputConfiguration( - struct soap *soap, - tt__AudioOutputConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioOutputConfiguration *_p = ::soap_new__trt__SetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioOutputConfiguration::Configuration = Configuration; - _p->_trt__SetAudioOutputConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetAudioOutputConfiguration * soap_new_set__trt__SetAudioOutputConfiguration( - struct soap *soap, - tt__AudioOutputConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioOutputConfiguration *_p = ::soap_new__trt__SetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioOutputConfiguration::Configuration = Configuration; - _p->_trt__SetAudioOutputConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetAudioOutputConfiguration(struct soap *soap, _trt__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__SetAudioOutputConfiguration 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, "trt:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__SetAudioOutputConfiguration 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, "trt:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__SetAudioOutputConfiguration 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, "trt:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioOutputConfiguration(struct soap*, _trt__SetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetAudioOutputConfiguration(struct soap *soap, _trt__SetAudioOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__SetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioOutputConfiguration(struct soap *soap, _trt__SetAudioOutputConfiguration *p) -{ - if (::soap_read__trt__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetMetadataConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetMetadataConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetMetadataConfigurationResponse(struct soap*, const char*, int, const _trt__SetMetadataConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetMetadataConfigurationResponse(struct soap*, const char*, _trt__SetMetadataConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetMetadataConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetMetadataConfigurationResponse * soap_new__trt__SetMetadataConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetMetadataConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetMetadataConfigurationResponse * soap_new_req__trt__SetMetadataConfigurationResponse( - struct soap *soap) -{ - _trt__SetMetadataConfigurationResponse *_p = ::soap_new__trt__SetMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetMetadataConfigurationResponse * soap_new_set__trt__SetMetadataConfigurationResponse( - struct soap *soap) -{ - _trt__SetMetadataConfigurationResponse *_p = ::soap_new__trt__SetMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetMetadataConfigurationResponse(struct soap *soap, _trt__SetMetadataConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__SetMetadataConfigurationResponse 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, "trt:SetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__SetMetadataConfigurationResponse 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, "trt:SetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__SetMetadataConfigurationResponse 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, "trt:SetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetMetadataConfigurationResponse(struct soap*, _trt__SetMetadataConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetMetadataConfigurationResponse(struct soap *soap, _trt__SetMetadataConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetMetadataConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__SetMetadataConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetMetadataConfigurationResponse(struct soap *soap, _trt__SetMetadataConfigurationResponse *p) -{ - if (::soap_read__trt__SetMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetMetadataConfiguration_DEFINED -#define SOAP_TYPE__trt__SetMetadataConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetMetadataConfiguration(struct soap*, const char*, int, const _trt__SetMetadataConfiguration *, const char*); -SOAP_FMAC3 _trt__SetMetadataConfiguration * SOAP_FMAC4 soap_in__trt__SetMetadataConfiguration(struct soap*, const char*, _trt__SetMetadataConfiguration *, const char*); -SOAP_FMAC1 _trt__SetMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetMetadataConfiguration * soap_new__trt__SetMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetMetadataConfiguration * soap_new_req__trt__SetMetadataConfiguration( - struct soap *soap, - tt__MetadataConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetMetadataConfiguration *_p = ::soap_new__trt__SetMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetMetadataConfiguration::Configuration = Configuration; - _p->_trt__SetMetadataConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetMetadataConfiguration * soap_new_set__trt__SetMetadataConfiguration( - struct soap *soap, - tt__MetadataConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetMetadataConfiguration *_p = ::soap_new__trt__SetMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetMetadataConfiguration::Configuration = Configuration; - _p->_trt__SetMetadataConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetMetadataConfiguration(struct soap *soap, _trt__SetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetMetadataConfiguration(struct soap *soap, const char *URL, _trt__SetMetadataConfiguration 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, "trt:SetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetMetadataConfiguration(struct soap *soap, const char *URL, _trt__SetMetadataConfiguration 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, "trt:SetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetMetadataConfiguration(struct soap *soap, const char *URL, _trt__SetMetadataConfiguration 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, "trt:SetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__SetMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetMetadataConfiguration * SOAP_FMAC4 soap_get__trt__SetMetadataConfiguration(struct soap*, _trt__SetMetadataConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetMetadataConfiguration(struct soap *soap, _trt__SetMetadataConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetMetadataConfiguration(struct soap *soap, const char *URL, _trt__SetMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetMetadataConfiguration(struct soap *soap, _trt__SetMetadataConfiguration *p) -{ - if (::soap_read__trt__SetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoAnalyticsConfigurationResponse(struct soap*, const char*, int, const _trt__SetVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetVideoAnalyticsConfigurationResponse(struct soap*, const char*, _trt__SetVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoAnalyticsConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoAnalyticsConfigurationResponse * soap_new__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoAnalyticsConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoAnalyticsConfigurationResponse * soap_new_req__trt__SetVideoAnalyticsConfigurationResponse( - struct soap *soap) -{ - _trt__SetVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__SetVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetVideoAnalyticsConfigurationResponse * soap_new_set__trt__SetVideoAnalyticsConfigurationResponse( - struct soap *soap) -{ - _trt__SetVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__SetVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__SetVideoAnalyticsConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfigurationResponse 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, "trt:SetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfigurationResponse 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, "trt:SetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfigurationResponse 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, "trt:SetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetVideoAnalyticsConfigurationResponse(struct soap*, _trt__SetVideoAnalyticsConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__SetVideoAnalyticsConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoAnalyticsConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__SetVideoAnalyticsConfigurationResponse *p) -{ - if (::soap_read__trt__SetVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE__trt__SetVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoAnalyticsConfiguration(struct soap*, const char*, int, const _trt__SetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__SetVideoAnalyticsConfiguration(struct soap*, const char*, _trt__SetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 _trt__SetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoAnalyticsConfiguration * soap_new__trt__SetVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoAnalyticsConfiguration * soap_new_req__trt__SetVideoAnalyticsConfiguration( - struct soap *soap, - tt__VideoAnalyticsConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetVideoAnalyticsConfiguration *_p = ::soap_new__trt__SetVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoAnalyticsConfiguration::Configuration = Configuration; - _p->_trt__SetVideoAnalyticsConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetVideoAnalyticsConfiguration * soap_new_set__trt__SetVideoAnalyticsConfiguration( - struct soap *soap, - tt__VideoAnalyticsConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetVideoAnalyticsConfiguration *_p = ::soap_new__trt__SetVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoAnalyticsConfiguration::Configuration = Configuration; - _p->_trt__SetVideoAnalyticsConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetVideoAnalyticsConfiguration(struct soap *soap, _trt__SetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfiguration 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, "trt:SetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfiguration 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, "trt:SetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfiguration 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, "trt:SetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__SetVideoAnalyticsConfiguration(struct soap*, _trt__SetVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetVideoAnalyticsConfiguration(struct soap *soap, _trt__SetVideoAnalyticsConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__SetVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoAnalyticsConfiguration(struct soap *soap, _trt__SetVideoAnalyticsConfiguration *p) -{ - if (::soap_read__trt__SetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetAudioSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioSourceConfigurationResponse(struct soap*, const char*, int, const _trt__SetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioSourceConfigurationResponse(struct soap*, const char*, _trt__SetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioSourceConfigurationResponse * soap_new__trt__SetAudioSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioSourceConfigurationResponse * soap_new_req__trt__SetAudioSourceConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioSourceConfigurationResponse *_p = ::soap_new__trt__SetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetAudioSourceConfigurationResponse * soap_new_set__trt__SetAudioSourceConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioSourceConfigurationResponse *_p = ::soap_new__trt__SetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetAudioSourceConfigurationResponse(struct soap *soap, _trt__SetAudioSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioSourceConfigurationResponse 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, "trt:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioSourceConfigurationResponse 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, "trt:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioSourceConfigurationResponse 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, "trt:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioSourceConfigurationResponse(struct soap*, _trt__SetAudioSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetAudioSourceConfigurationResponse(struct soap *soap, _trt__SetAudioSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioSourceConfigurationResponse(struct soap *soap, _trt__SetAudioSourceConfigurationResponse *p) -{ - if (::soap_read__trt__SetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__SetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioSourceConfiguration(struct soap*, const char*, int, const _trt__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioSourceConfiguration(struct soap*, const char*, _trt__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioSourceConfiguration * soap_new__trt__SetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioSourceConfiguration * soap_new_req__trt__SetAudioSourceConfiguration( - struct soap *soap, - tt__AudioSourceConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioSourceConfiguration *_p = ::soap_new__trt__SetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioSourceConfiguration::Configuration = Configuration; - _p->_trt__SetAudioSourceConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetAudioSourceConfiguration * soap_new_set__trt__SetAudioSourceConfiguration( - struct soap *soap, - tt__AudioSourceConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioSourceConfiguration *_p = ::soap_new__trt__SetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioSourceConfiguration::Configuration = Configuration; - _p->_trt__SetAudioSourceConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetAudioSourceConfiguration(struct soap *soap, _trt__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__SetAudioSourceConfiguration 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, "trt:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__SetAudioSourceConfiguration 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, "trt:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__SetAudioSourceConfiguration 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, "trt:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioSourceConfiguration(struct soap*, _trt__SetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetAudioSourceConfiguration(struct soap *soap, _trt__SetAudioSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__SetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioSourceConfiguration(struct soap *soap, _trt__SetAudioSourceConfiguration *p) -{ - if (::soap_read__trt__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__SetAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetAudioEncoderConfigurationResponse(struct soap*, const char*, _trt__SetAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetAudioEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioEncoderConfigurationResponse * soap_new__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioEncoderConfigurationResponse * soap_new_req__trt__SetAudioEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioEncoderConfigurationResponse *_p = ::soap_new__trt__SetAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetAudioEncoderConfigurationResponse * soap_new_set__trt__SetAudioEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__SetAudioEncoderConfigurationResponse *_p = ::soap_new__trt__SetAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, _trt__SetAudioEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfigurationResponse 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, "trt:SetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfigurationResponse 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, "trt:SetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfigurationResponse 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, "trt:SetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetAudioEncoderConfigurationResponse(struct soap*, _trt__SetAudioEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, _trt__SetAudioEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioEncoderConfigurationResponse(struct soap *soap, _trt__SetAudioEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__SetAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__SetAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetAudioEncoderConfiguration(struct soap*, const char*, int, const _trt__SetAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__SetAudioEncoderConfiguration(struct soap*, const char*, _trt__SetAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__SetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetAudioEncoderConfiguration * soap_new__trt__SetAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetAudioEncoderConfiguration * soap_new_req__trt__SetAudioEncoderConfiguration( - struct soap *soap, - tt__AudioEncoderConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioEncoderConfiguration *_p = ::soap_new__trt__SetAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioEncoderConfiguration::Configuration = Configuration; - _p->_trt__SetAudioEncoderConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetAudioEncoderConfiguration * soap_new_set__trt__SetAudioEncoderConfiguration( - struct soap *soap, - tt__AudioEncoderConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetAudioEncoderConfiguration *_p = ::soap_new__trt__SetAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetAudioEncoderConfiguration::Configuration = Configuration; - _p->_trt__SetAudioEncoderConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetAudioEncoderConfiguration(struct soap *soap, _trt__SetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfiguration 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, "trt:SetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfiguration 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, "trt:SetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfiguration 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, "trt:SetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__SetAudioEncoderConfiguration(struct soap*, _trt__SetAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetAudioEncoderConfiguration(struct soap *soap, _trt__SetAudioEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetAudioEncoderConfiguration(struct soap *soap, _trt__SetAudioEncoderConfiguration *p) -{ - if (::soap_read__trt__SetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetVideoSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceConfigurationResponse(struct soap*, const char*, int, const _trt__SetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetVideoSourceConfigurationResponse(struct soap*, const char*, _trt__SetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoSourceConfigurationResponse * soap_new__trt__SetVideoSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoSourceConfigurationResponse * soap_new_req__trt__SetVideoSourceConfigurationResponse( - struct soap *soap) -{ - _trt__SetVideoSourceConfigurationResponse *_p = ::soap_new__trt__SetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetVideoSourceConfigurationResponse * soap_new_set__trt__SetVideoSourceConfigurationResponse( - struct soap *soap) -{ - _trt__SetVideoSourceConfigurationResponse *_p = ::soap_new__trt__SetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetVideoSourceConfigurationResponse(struct soap *soap, _trt__SetVideoSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceConfigurationResponse 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, "trt:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceConfigurationResponse 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, "trt:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceConfigurationResponse 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, "trt:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetVideoSourceConfigurationResponse(struct soap*, _trt__SetVideoSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetVideoSourceConfigurationResponse(struct soap *soap, _trt__SetVideoSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoSourceConfigurationResponse(struct soap *soap, _trt__SetVideoSourceConfigurationResponse *p) -{ - if (::soap_read__trt__SetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__SetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoSourceConfiguration(struct soap*, const char*, int, const _trt__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__SetVideoSourceConfiguration(struct soap*, const char*, _trt__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoSourceConfiguration * soap_new__trt__SetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoSourceConfiguration * soap_new_req__trt__SetVideoSourceConfiguration( - struct soap *soap, - tt__VideoSourceConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetVideoSourceConfiguration *_p = ::soap_new__trt__SetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoSourceConfiguration::Configuration = Configuration; - _p->_trt__SetVideoSourceConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetVideoSourceConfiguration * soap_new_set__trt__SetVideoSourceConfiguration( - struct soap *soap, - tt__VideoSourceConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetVideoSourceConfiguration *_p = ::soap_new__trt__SetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoSourceConfiguration::Configuration = Configuration; - _p->_trt__SetVideoSourceConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetVideoSourceConfiguration(struct soap *soap, _trt__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__SetVideoSourceConfiguration 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, "trt:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__SetVideoSourceConfiguration 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, "trt:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__SetVideoSourceConfiguration 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, "trt:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__SetVideoSourceConfiguration(struct soap*, _trt__SetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetVideoSourceConfiguration(struct soap *soap, _trt__SetVideoSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__SetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoSourceConfiguration(struct soap *soap, _trt__SetVideoSourceConfiguration *p) -{ - if (::soap_read__trt__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__SetVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__SetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__SetVideoEncoderConfigurationResponse(struct soap*, const char*, _trt__SetVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__SetVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__SetVideoEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoEncoderConfigurationResponse * soap_new__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoEncoderConfigurationResponse * soap_new_req__trt__SetVideoEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__SetVideoEncoderConfigurationResponse *_p = ::soap_new__trt__SetVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__SetVideoEncoderConfigurationResponse * soap_new_set__trt__SetVideoEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__SetVideoEncoderConfigurationResponse *_p = ::soap_new__trt__SetVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, _trt__SetVideoEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfigurationResponse 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, "trt:SetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfigurationResponse 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, "trt:SetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfigurationResponse 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, "trt:SetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__SetVideoEncoderConfigurationResponse(struct soap*, _trt__SetVideoEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, _trt__SetVideoEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoEncoderConfigurationResponse(struct soap *soap, _trt__SetVideoEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__SetVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__SetVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__SetVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__SetVideoEncoderConfiguration(struct soap*, const char*, int, const _trt__SetVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__SetVideoEncoderConfiguration(struct soap*, const char*, _trt__SetVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__SetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__SetVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__SetVideoEncoderConfiguration * soap_new__trt__SetVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__SetVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__SetVideoEncoderConfiguration * soap_new_req__trt__SetVideoEncoderConfiguration( - struct soap *soap, - tt__VideoEncoderConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetVideoEncoderConfiguration *_p = ::soap_new__trt__SetVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoEncoderConfiguration::Configuration = Configuration; - _p->_trt__SetVideoEncoderConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _trt__SetVideoEncoderConfiguration * soap_new_set__trt__SetVideoEncoderConfiguration( - struct soap *soap, - tt__VideoEncoderConfiguration *Configuration, - bool ForcePersistence) -{ - _trt__SetVideoEncoderConfiguration *_p = ::soap_new__trt__SetVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__SetVideoEncoderConfiguration::Configuration = Configuration; - _p->_trt__SetVideoEncoderConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__trt__SetVideoEncoderConfiguration(struct soap *soap, _trt__SetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:SetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfiguration 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, "trt:SetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfiguration 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, "trt:SetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfiguration 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, "trt:SetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__SetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__SetVideoEncoderConfiguration(struct soap*, _trt__SetVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__SetVideoEncoderConfiguration(struct soap *soap, _trt__SetVideoEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__SetVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__SetVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__SetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__SetVideoEncoderConfiguration(struct soap *soap, _trt__SetVideoEncoderConfiguration *p) -{ - if (::soap_read__trt__SetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleAudioDecoderConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleAudioDecoderConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioDecoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioDecoderConfigurationsResponse * soap_new__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioDecoderConfigurationsResponse * soap_new_req__trt__GetCompatibleAudioDecoderConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleAudioDecoderConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleAudioDecoderConfigurationsResponse * soap_new_set__trt__GetCompatibleAudioDecoderConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleAudioDecoderConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioDecoderConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurationsResponse 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, "trt:GetCompatibleAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurationsResponse 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, "trt:GetCompatibleAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurationsResponse 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, "trt:GetCompatibleAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap*, _trt__GetCompatibleAudioDecoderConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleAudioDecoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleAudioDecoderConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioDecoderConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioDecoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioDecoderConfigurations * soap_new__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioDecoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioDecoderConfigurations * soap_new_req__trt__GetCompatibleAudioDecoderConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioDecoderConfigurations *_p = ::soap_new__trt__GetCompatibleAudioDecoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioDecoderConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleAudioDecoderConfigurations * soap_new_set__trt__GetCompatibleAudioDecoderConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioDecoderConfigurations *_p = ::soap_new__trt__GetCompatibleAudioDecoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioDecoderConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurations 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, "trt:GetCompatibleAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurations 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, "trt:GetCompatibleAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurations 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, "trt:GetCompatibleAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioDecoderConfigurations(struct soap*, _trt__GetCompatibleAudioDecoderConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioDecoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioDecoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioDecoderConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleAudioOutputConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleAudioOutputConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioOutputConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioOutputConfigurationsResponse * soap_new__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioOutputConfigurationsResponse * soap_new_req__trt__GetCompatibleAudioOutputConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleAudioOutputConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioOutputConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleAudioOutputConfigurationsResponse * soap_new_set__trt__GetCompatibleAudioOutputConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleAudioOutputConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioOutputConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioOutputConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurationsResponse 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, "trt:GetCompatibleAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurationsResponse 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, "trt:GetCompatibleAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurationsResponse 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, "trt:GetCompatibleAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap*, _trt__GetCompatibleAudioOutputConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleAudioOutputConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioOutputConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleAudioOutputConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioOutputConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioOutputConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioOutputConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioOutputConfigurations * soap_new__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioOutputConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioOutputConfigurations * soap_new_req__trt__GetCompatibleAudioOutputConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioOutputConfigurations *_p = ::soap_new__trt__GetCompatibleAudioOutputConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioOutputConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleAudioOutputConfigurations * soap_new_set__trt__GetCompatibleAudioOutputConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioOutputConfigurations *_p = ::soap_new__trt__GetCompatibleAudioOutputConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioOutputConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurations 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, "trt:GetCompatibleAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurations 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, "trt:GetCompatibleAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurations 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, "trt:GetCompatibleAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioOutputConfigurations(struct soap*, _trt__GetCompatibleAudioOutputConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioOutputConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioOutputConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, _trt__GetCompatibleAudioOutputConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleMetadataConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleMetadataConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleMetadataConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleMetadataConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleMetadataConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleMetadataConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleMetadataConfigurationsResponse * soap_new__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleMetadataConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleMetadataConfigurationsResponse * soap_new_req__trt__GetCompatibleMetadataConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleMetadataConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleMetadataConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleMetadataConfigurationsResponse * soap_new_set__trt__GetCompatibleMetadataConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleMetadataConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleMetadataConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleMetadataConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, _trt__GetCompatibleMetadataConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurationsResponse 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, "trt:GetCompatibleMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurationsResponse 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, "trt:GetCompatibleMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurationsResponse 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, "trt:GetCompatibleMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleMetadataConfigurationsResponse(struct soap*, _trt__GetCompatibleMetadataConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, _trt__GetCompatibleMetadataConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleMetadataConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleMetadataConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleMetadataConfigurationsResponse(struct soap *soap, _trt__GetCompatibleMetadataConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleMetadataConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleMetadataConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleMetadataConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleMetadataConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleMetadataConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleMetadataConfigurations(struct soap*, const char*, _trt__GetCompatibleMetadataConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleMetadataConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleMetadataConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleMetadataConfigurations * soap_new__trt__GetCompatibleMetadataConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleMetadataConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleMetadataConfigurations * soap_new_req__trt__GetCompatibleMetadataConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleMetadataConfigurations *_p = ::soap_new__trt__GetCompatibleMetadataConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleMetadataConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleMetadataConfigurations * soap_new_set__trt__GetCompatibleMetadataConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleMetadataConfigurations *_p = ::soap_new__trt__GetCompatibleMetadataConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleMetadataConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleMetadataConfigurations(struct soap *soap, _trt__GetCompatibleMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurations 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, "trt:GetCompatibleMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurations 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, "trt:GetCompatibleMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurations 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, "trt:GetCompatibleMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleMetadataConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleMetadataConfigurations(struct soap*, _trt__GetCompatibleMetadataConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleMetadataConfigurations(struct soap *soap, _trt__GetCompatibleMetadataConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleMetadataConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleMetadataConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleMetadataConfigurations(struct soap *soap, _trt__GetCompatibleMetadataConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * soap_new__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * soap_new_req__trt__GetCompatibleVideoAnalyticsConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * soap_new_set__trt__GetCompatibleVideoAnalyticsConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoAnalyticsConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse 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, "trt:GetCompatibleVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse 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, "trt:GetCompatibleVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse 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, "trt:GetCompatibleVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap*, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleVideoAnalyticsConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const char*, _trt__GetCompatibleVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleVideoAnalyticsConfigurations * soap_new__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleVideoAnalyticsConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleVideoAnalyticsConfigurations * soap_new_req__trt__GetCompatibleVideoAnalyticsConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleVideoAnalyticsConfigurations *_p = ::soap_new__trt__GetCompatibleVideoAnalyticsConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoAnalyticsConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleVideoAnalyticsConfigurations * soap_new_set__trt__GetCompatibleVideoAnalyticsConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleVideoAnalyticsConfigurations *_p = ::soap_new__trt__GetCompatibleVideoAnalyticsConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoAnalyticsConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurations 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, "trt:GetCompatibleVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurations 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, "trt:GetCompatibleVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurations 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, "trt:GetCompatibleVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, _trt__GetCompatibleVideoAnalyticsConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleVideoAnalyticsConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoAnalyticsConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, _trt__GetCompatibleVideoAnalyticsConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleAudioSourceConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleAudioSourceConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioSourceConfigurationsResponse * soap_new__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioSourceConfigurationsResponse * soap_new_req__trt__GetCompatibleAudioSourceConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleAudioSourceConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleAudioSourceConfigurationsResponse * soap_new_set__trt__GetCompatibleAudioSourceConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleAudioSourceConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioSourceConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurationsResponse 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, "trt:GetCompatibleAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurationsResponse 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, "trt:GetCompatibleAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurationsResponse 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, "trt:GetCompatibleAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap*, _trt__GetCompatibleAudioSourceConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleAudioSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioSourceConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleAudioSourceConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioSourceConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioSourceConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioSourceConfigurations * soap_new__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioSourceConfigurations * soap_new_req__trt__GetCompatibleAudioSourceConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioSourceConfigurations *_p = ::soap_new__trt__GetCompatibleAudioSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioSourceConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleAudioSourceConfigurations * soap_new_set__trt__GetCompatibleAudioSourceConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioSourceConfigurations *_p = ::soap_new__trt__GetCompatibleAudioSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioSourceConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurations 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, "trt:GetCompatibleAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurations 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, "trt:GetCompatibleAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurations 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, "trt:GetCompatibleAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioSourceConfigurations(struct soap*, _trt__GetCompatibleAudioSourceConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, _trt__GetCompatibleAudioSourceConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleAudioEncoderConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleAudioEncoderConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioEncoderConfigurationsResponse * soap_new__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioEncoderConfigurationsResponse * soap_new_req__trt__GetCompatibleAudioEncoderConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleAudioEncoderConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleAudioEncoderConfigurationsResponse * soap_new_set__trt__GetCompatibleAudioEncoderConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleAudioEncoderConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioEncoderConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurationsResponse 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, "trt:GetCompatibleAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurationsResponse 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, "trt:GetCompatibleAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurationsResponse 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, "trt:GetCompatibleAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap*, _trt__GetCompatibleAudioEncoderConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleAudioEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleAudioEncoderConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioEncoderConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleAudioEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleAudioEncoderConfigurations * soap_new__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleAudioEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleAudioEncoderConfigurations * soap_new_req__trt__GetCompatibleAudioEncoderConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioEncoderConfigurations *_p = ::soap_new__trt__GetCompatibleAudioEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioEncoderConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleAudioEncoderConfigurations * soap_new_set__trt__GetCompatibleAudioEncoderConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleAudioEncoderConfigurations *_p = ::soap_new__trt__GetCompatibleAudioEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleAudioEncoderConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurations 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, "trt:GetCompatibleAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurations 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, "trt:GetCompatibleAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurations 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, "trt:GetCompatibleAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleAudioEncoderConfigurations(struct soap*, _trt__GetCompatibleAudioEncoderConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleAudioEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleAudioEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, _trt__GetCompatibleAudioEncoderConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleVideoSourceConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleVideoSourceConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleVideoSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleVideoSourceConfigurationsResponse * soap_new__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleVideoSourceConfigurationsResponse * soap_new_req__trt__GetCompatibleVideoSourceConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleVideoSourceConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleVideoSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleVideoSourceConfigurationsResponse * soap_new_set__trt__GetCompatibleVideoSourceConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleVideoSourceConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleVideoSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoSourceConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurationsResponse 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, "trt:GetCompatibleVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurationsResponse 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, "trt:GetCompatibleVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurationsResponse 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, "trt:GetCompatibleVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap*, _trt__GetCompatibleVideoSourceConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleVideoSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoSourceConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleVideoSourceConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoSourceConfigurations(struct soap*, const char*, _trt__GetCompatibleVideoSourceConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleVideoSourceConfigurations * soap_new__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleVideoSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleVideoSourceConfigurations * soap_new_req__trt__GetCompatibleVideoSourceConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleVideoSourceConfigurations *_p = ::soap_new__trt__GetCompatibleVideoSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoSourceConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleVideoSourceConfigurations * soap_new_set__trt__GetCompatibleVideoSourceConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleVideoSourceConfigurations *_p = ::soap_new__trt__GetCompatibleVideoSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoSourceConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurations 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, "trt:GetCompatibleVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurations 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, "trt:GetCompatibleVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurations 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, "trt:GetCompatibleVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoSourceConfigurations(struct soap*, _trt__GetCompatibleVideoSourceConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleVideoSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, _trt__GetCompatibleVideoSourceConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap*, const char*, int, const _trt__GetCompatibleVideoEncoderConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap*, const char*, _trt__GetCompatibleVideoEncoderConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetCompatibleVideoEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleVideoEncoderConfigurationsResponse * soap_new__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleVideoEncoderConfigurationsResponse * soap_new_req__trt__GetCompatibleVideoEncoderConfigurationsResponse( - struct soap *soap) -{ - _trt__GetCompatibleVideoEncoderConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetCompatibleVideoEncoderConfigurationsResponse * soap_new_set__trt__GetCompatibleVideoEncoderConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetCompatibleVideoEncoderConfigurationsResponse *_p = ::soap_new__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoEncoderConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurationsResponse 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, "trt:GetCompatibleVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurationsResponse 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, "trt:GetCompatibleVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurationsResponse 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, "trt:GetCompatibleVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap*, _trt__GetCompatibleVideoEncoderConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurationsResponse *p) -{ - if (::soap_read__trt__GetCompatibleVideoEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations_DEFINED -#define SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const char*, int, const _trt__GetCompatibleVideoEncoderConfigurations *, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const char*, _trt__GetCompatibleVideoEncoderConfigurations *, const char*); -SOAP_FMAC1 _trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetCompatibleVideoEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetCompatibleVideoEncoderConfigurations * soap_new__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetCompatibleVideoEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetCompatibleVideoEncoderConfigurations * soap_new_req__trt__GetCompatibleVideoEncoderConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleVideoEncoderConfigurations *_p = ::soap_new__trt__GetCompatibleVideoEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoEncoderConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetCompatibleVideoEncoderConfigurations * soap_new_set__trt__GetCompatibleVideoEncoderConfigurations( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetCompatibleVideoEncoderConfigurations *_p = ::soap_new__trt__GetCompatibleVideoEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetCompatibleVideoEncoderConfigurations::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetCompatibleVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurations 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, "trt:GetCompatibleVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurations 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, "trt:GetCompatibleVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurations 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, "trt:GetCompatibleVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetCompatibleVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetCompatibleVideoEncoderConfigurations(struct soap*, _trt__GetCompatibleVideoEncoderConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetCompatibleVideoEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetCompatibleVideoEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetCompatibleVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, _trt__GetCompatibleVideoEncoderConfigurations *p) -{ - if (::soap_read__trt__GetCompatibleVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationResponse(struct soap*, const char*, int, const _trt__GetAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationResponse(struct soap*, const char*, _trt__GetAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioDecoderConfigurationResponse * soap_new__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioDecoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioDecoderConfigurationResponse * soap_new_req__trt__GetAudioDecoderConfigurationResponse( - struct soap *soap, - tt__AudioDecoderConfiguration *Configuration) -{ - _trt__GetAudioDecoderConfigurationResponse *_p = ::soap_new__trt__GetAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetAudioDecoderConfigurationResponse * soap_new_set__trt__GetAudioDecoderConfigurationResponse( - struct soap *soap, - tt__AudioDecoderConfiguration *Configuration) -{ - _trt__GetAudioDecoderConfigurationResponse *_p = ::soap_new__trt__GetAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationResponse 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, "trt:GetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationResponse 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, "trt:GetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationResponse 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, "trt:GetAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationResponse(struct soap*, _trt__GetAudioDecoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioDecoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioDecoderConfigurationResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationResponse *p) -{ - if (::soap_read__trt__GetAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE__trt__GetAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfiguration(struct soap*, const char*, int, const _trt__GetAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfiguration(struct soap*, const char*, _trt__GetAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 _trt__GetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioDecoderConfiguration * soap_new__trt__GetAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioDecoderConfiguration * soap_new_req__trt__GetAudioDecoderConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioDecoderConfiguration *_p = ::soap_new__trt__GetAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetAudioDecoderConfiguration * soap_new_set__trt__GetAudioDecoderConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioDecoderConfiguration *_p = ::soap_new__trt__GetAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioDecoderConfiguration(struct soap *soap, _trt__GetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfiguration 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, "trt:GetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfiguration 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, "trt:GetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfiguration 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, "trt:GetAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfiguration(struct soap*, _trt__GetAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetAudioDecoderConfiguration(struct soap *soap, _trt__GetAudioDecoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioDecoderConfiguration(struct soap *soap, _trt__GetAudioDecoderConfiguration *p) -{ - if (::soap_read__trt__GetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationResponse(struct soap*, const char*, int, const _trt__GetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationResponse(struct soap*, const char*, _trt__GetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputConfigurationResponse * soap_new__trt__GetAudioOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputConfigurationResponse * soap_new_req__trt__GetAudioOutputConfigurationResponse( - struct soap *soap, - tt__AudioOutputConfiguration *Configuration) -{ - _trt__GetAudioOutputConfigurationResponse *_p = ::soap_new__trt__GetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetAudioOutputConfigurationResponse * soap_new_set__trt__GetAudioOutputConfigurationResponse( - struct soap *soap, - tt__AudioOutputConfiguration *Configuration) -{ - _trt__GetAudioOutputConfigurationResponse *_p = ::soap_new__trt__GetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputConfigurationResponse(struct soap *soap, _trt__GetAudioOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationResponse 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, "trt:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationResponse 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, "trt:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationResponse 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, "trt:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationResponse(struct soap*, _trt__GetAudioOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputConfigurationResponse(struct soap *soap, _trt__GetAudioOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputConfigurationResponse(struct soap *soap, _trt__GetAudioOutputConfigurationResponse *p) -{ - if (::soap_read__trt__GetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfiguration(struct soap*, const char*, int, const _trt__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfiguration(struct soap*, const char*, _trt__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputConfiguration * soap_new__trt__GetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputConfiguration * soap_new_req__trt__GetAudioOutputConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioOutputConfiguration *_p = ::soap_new__trt__GetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetAudioOutputConfiguration * soap_new_set__trt__GetAudioOutputConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioOutputConfiguration *_p = ::soap_new__trt__GetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputConfiguration(struct soap *soap, _trt__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__GetAudioOutputConfiguration 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, "trt:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__GetAudioOutputConfiguration 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, "trt:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__GetAudioOutputConfiguration 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, "trt:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfiguration(struct soap*, _trt__GetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputConfiguration(struct soap *soap, _trt__GetAudioOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__GetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputConfiguration(struct soap *soap, _trt__GetAudioOutputConfiguration *p) -{ - if (::soap_read__trt__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetMetadataConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetMetadataConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationResponse(struct soap*, const char*, int, const _trt__GetMetadataConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationResponse(struct soap*, const char*, _trt__GetMetadataConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetMetadataConfigurationResponse * soap_new__trt__GetMetadataConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetMetadataConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetMetadataConfigurationResponse * soap_new_req__trt__GetMetadataConfigurationResponse( - struct soap *soap, - tt__MetadataConfiguration *Configuration) -{ - _trt__GetMetadataConfigurationResponse *_p = ::soap_new__trt__GetMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetMetadataConfigurationResponse * soap_new_set__trt__GetMetadataConfigurationResponse( - struct soap *soap, - tt__MetadataConfiguration *Configuration) -{ - _trt__GetMetadataConfigurationResponse *_p = ::soap_new__trt__GetMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetMetadataConfigurationResponse(struct soap *soap, _trt__GetMetadataConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationResponse 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, "trt:GetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationResponse 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, "trt:GetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationResponse 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, "trt:GetMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationResponse(struct soap*, _trt__GetMetadataConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetMetadataConfigurationResponse(struct soap *soap, _trt__GetMetadataConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetMetadataConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetMetadataConfigurationResponse(struct soap *soap, _trt__GetMetadataConfigurationResponse *p) -{ - if (::soap_read__trt__GetMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetMetadataConfiguration_DEFINED -#define SOAP_TYPE__trt__GetMetadataConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfiguration(struct soap*, const char*, int, const _trt__GetMetadataConfiguration *, const char*); -SOAP_FMAC3 _trt__GetMetadataConfiguration * SOAP_FMAC4 soap_in__trt__GetMetadataConfiguration(struct soap*, const char*, _trt__GetMetadataConfiguration *, const char*); -SOAP_FMAC1 _trt__GetMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetMetadataConfiguration * soap_new__trt__GetMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetMetadataConfiguration * soap_new_req__trt__GetMetadataConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetMetadataConfiguration *_p = ::soap_new__trt__GetMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetMetadataConfiguration * soap_new_set__trt__GetMetadataConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetMetadataConfiguration *_p = ::soap_new__trt__GetMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetMetadataConfiguration(struct soap *soap, _trt__GetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetMetadataConfiguration(struct soap *soap, const char *URL, _trt__GetMetadataConfiguration 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, "trt:GetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetMetadataConfiguration(struct soap *soap, const char *URL, _trt__GetMetadataConfiguration 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, "trt:GetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetMetadataConfiguration(struct soap *soap, const char *URL, _trt__GetMetadataConfiguration 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, "trt:GetMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetMetadataConfiguration * SOAP_FMAC4 soap_get__trt__GetMetadataConfiguration(struct soap*, _trt__GetMetadataConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetMetadataConfiguration(struct soap *soap, _trt__GetMetadataConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetMetadataConfiguration(struct soap *soap, const char *URL, _trt__GetMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetMetadataConfiguration(struct soap *soap, _trt__GetMetadataConfiguration *p) -{ - if (::soap_read__trt__GetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfigurationResponse(struct soap*, const char*, int, const _trt__GetVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfigurationResponse(struct soap*, const char*, _trt__GetVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoAnalyticsConfigurationResponse * soap_new__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoAnalyticsConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoAnalyticsConfigurationResponse * soap_new_req__trt__GetVideoAnalyticsConfigurationResponse( - struct soap *soap, - tt__VideoAnalyticsConfiguration *Configuration) -{ - _trt__GetVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__GetVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoAnalyticsConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetVideoAnalyticsConfigurationResponse * soap_new_set__trt__GetVideoAnalyticsConfigurationResponse( - struct soap *soap, - tt__VideoAnalyticsConfiguration *Configuration) -{ - _trt__GetVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__GetVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoAnalyticsConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationResponse 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, "trt:GetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationResponse 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, "trt:GetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationResponse 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, "trt:GetVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfigurationResponse(struct soap*, _trt__GetVideoAnalyticsConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoAnalyticsConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationResponse *p) -{ - if (::soap_read__trt__GetVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE__trt__GetVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfiguration(struct soap*, const char*, int, const _trt__GetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfiguration(struct soap*, const char*, _trt__GetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 _trt__GetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoAnalyticsConfiguration * soap_new__trt__GetVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoAnalyticsConfiguration * soap_new_req__trt__GetVideoAnalyticsConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetVideoAnalyticsConfiguration *_p = ::soap_new__trt__GetVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoAnalyticsConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetVideoAnalyticsConfiguration * soap_new_set__trt__GetVideoAnalyticsConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetVideoAnalyticsConfiguration *_p = ::soap_new__trt__GetVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoAnalyticsConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetVideoAnalyticsConfiguration(struct soap *soap, _trt__GetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfiguration 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, "trt:GetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfiguration 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, "trt:GetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfiguration 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, "trt:GetVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfiguration(struct soap*, _trt__GetVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetVideoAnalyticsConfiguration(struct soap *soap, _trt__GetVideoAnalyticsConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoAnalyticsConfiguration(struct soap *soap, _trt__GetVideoAnalyticsConfiguration *p) -{ - if (::soap_read__trt__GetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__GetAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationResponse(struct soap*, const char*, _trt__GetAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioEncoderConfigurationResponse * soap_new__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioEncoderConfigurationResponse * soap_new_req__trt__GetAudioEncoderConfigurationResponse( - struct soap *soap, - tt__AudioEncoderConfiguration *Configuration) -{ - _trt__GetAudioEncoderConfigurationResponse *_p = ::soap_new__trt__GetAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetAudioEncoderConfigurationResponse * soap_new_set__trt__GetAudioEncoderConfigurationResponse( - struct soap *soap, - tt__AudioEncoderConfiguration *Configuration) -{ - _trt__GetAudioEncoderConfigurationResponse *_p = ::soap_new__trt__GetAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationResponse 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, "trt:GetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationResponse 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, "trt:GetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationResponse 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, "trt:GetAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationResponse(struct soap*, _trt__GetAudioEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioEncoderConfigurationResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__GetAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__GetAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfiguration(struct soap*, const char*, int, const _trt__GetAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfiguration(struct soap*, const char*, _trt__GetAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__GetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioEncoderConfiguration * soap_new__trt__GetAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioEncoderConfiguration * soap_new_req__trt__GetAudioEncoderConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioEncoderConfiguration *_p = ::soap_new__trt__GetAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetAudioEncoderConfiguration * soap_new_set__trt__GetAudioEncoderConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioEncoderConfiguration *_p = ::soap_new__trt__GetAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioEncoderConfiguration(struct soap *soap, _trt__GetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfiguration 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, "trt:GetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfiguration 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, "trt:GetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfiguration 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, "trt:GetAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfiguration(struct soap*, _trt__GetAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetAudioEncoderConfiguration(struct soap *soap, _trt__GetAudioEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioEncoderConfiguration(struct soap *soap, _trt__GetAudioEncoderConfiguration *p) -{ - if (::soap_read__trt__GetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationResponse(struct soap*, const char*, int, const _trt__GetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationResponse(struct soap*, const char*, _trt__GetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSourceConfigurationResponse * soap_new__trt__GetAudioSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSourceConfigurationResponse * soap_new_req__trt__GetAudioSourceConfigurationResponse( - struct soap *soap, - tt__AudioSourceConfiguration *Configuration) -{ - _trt__GetAudioSourceConfigurationResponse *_p = ::soap_new__trt__GetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetAudioSourceConfigurationResponse * soap_new_set__trt__GetAudioSourceConfigurationResponse( - struct soap *soap, - tt__AudioSourceConfiguration *Configuration) -{ - _trt__GetAudioSourceConfigurationResponse *_p = ::soap_new__trt__GetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetAudioSourceConfigurationResponse(struct soap *soap, _trt__GetAudioSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationResponse 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, "trt:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationResponse 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, "trt:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationResponse 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, "trt:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationResponse(struct soap*, _trt__GetAudioSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioSourceConfigurationResponse(struct soap *soap, _trt__GetAudioSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSourceConfigurationResponse(struct soap *soap, _trt__GetAudioSourceConfigurationResponse *p) -{ - if (::soap_read__trt__GetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__GetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfiguration(struct soap*, const char*, int, const _trt__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfiguration(struct soap*, const char*, _trt__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSourceConfiguration * soap_new__trt__GetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSourceConfiguration * soap_new_req__trt__GetAudioSourceConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioSourceConfiguration *_p = ::soap_new__trt__GetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetAudioSourceConfiguration * soap_new_set__trt__GetAudioSourceConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetAudioSourceConfiguration *_p = ::soap_new__trt__GetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetAudioSourceConfiguration(struct soap *soap, _trt__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__GetAudioSourceConfiguration 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, "trt:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__GetAudioSourceConfiguration 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, "trt:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__GetAudioSourceConfiguration 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, "trt:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfiguration(struct soap*, _trt__GetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetAudioSourceConfiguration(struct soap *soap, _trt__GetAudioSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__GetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSourceConfiguration(struct soap *soap, _trt__GetAudioSourceConfiguration *p) -{ - if (::soap_read__trt__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__GetVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationResponse(struct soap*, const char*, _trt__GetVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoEncoderConfigurationResponse * soap_new__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoEncoderConfigurationResponse * soap_new_req__trt__GetVideoEncoderConfigurationResponse( - struct soap *soap, - tt__VideoEncoderConfiguration *Configuration) -{ - _trt__GetVideoEncoderConfigurationResponse *_p = ::soap_new__trt__GetVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetVideoEncoderConfigurationResponse * soap_new_set__trt__GetVideoEncoderConfigurationResponse( - struct soap *soap, - tt__VideoEncoderConfiguration *Configuration) -{ - _trt__GetVideoEncoderConfigurationResponse *_p = ::soap_new__trt__GetVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationResponse 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, "trt:GetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationResponse 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, "trt:GetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationResponse 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, "trt:GetVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationResponse(struct soap*, _trt__GetVideoEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoEncoderConfigurationResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__GetVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__GetVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfiguration(struct soap*, const char*, int, const _trt__GetVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfiguration(struct soap*, const char*, _trt__GetVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__GetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoEncoderConfiguration * soap_new__trt__GetVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoEncoderConfiguration * soap_new_req__trt__GetVideoEncoderConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetVideoEncoderConfiguration *_p = ::soap_new__trt__GetVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetVideoEncoderConfiguration * soap_new_set__trt__GetVideoEncoderConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetVideoEncoderConfiguration *_p = ::soap_new__trt__GetVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetVideoEncoderConfiguration(struct soap *soap, _trt__GetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfiguration 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, "trt:GetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfiguration 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, "trt:GetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfiguration 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, "trt:GetVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfiguration(struct soap*, _trt__GetVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetVideoEncoderConfiguration(struct soap *soap, _trt__GetVideoEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoEncoderConfiguration(struct soap *soap, _trt__GetVideoEncoderConfiguration *p) -{ - if (::soap_read__trt__GetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationResponse(struct soap*, const char*, int, const _trt__GetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationResponse(struct soap*, const char*, _trt__GetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceConfigurationResponse * soap_new__trt__GetVideoSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceConfigurationResponse * soap_new_req__trt__GetVideoSourceConfigurationResponse( - struct soap *soap, - tt__VideoSourceConfiguration *Configuration) -{ - _trt__GetVideoSourceConfigurationResponse *_p = ::soap_new__trt__GetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline _trt__GetVideoSourceConfigurationResponse * soap_new_set__trt__GetVideoSourceConfigurationResponse( - struct soap *soap, - tt__VideoSourceConfiguration *Configuration) -{ - _trt__GetVideoSourceConfigurationResponse *_p = ::soap_new__trt__GetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfigurationResponse::Configuration = Configuration; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceConfigurationResponse(struct soap *soap, _trt__GetVideoSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationResponse 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, "trt:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationResponse 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, "trt:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationResponse 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, "trt:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationResponse(struct soap*, _trt__GetVideoSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceConfigurationResponse(struct soap *soap, _trt__GetVideoSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceConfigurationResponse(struct soap *soap, _trt__GetVideoSourceConfigurationResponse *p) -{ - if (::soap_read__trt__GetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfiguration(struct soap*, const char*, int, const _trt__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfiguration(struct soap*, const char*, _trt__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceConfiguration * soap_new__trt__GetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceConfiguration * soap_new_req__trt__GetVideoSourceConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetVideoSourceConfiguration *_p = ::soap_new__trt__GetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__GetVideoSourceConfiguration * soap_new_set__trt__GetVideoSourceConfiguration( - struct soap *soap, - const std::string& ConfigurationToken) -{ - _trt__GetVideoSourceConfiguration *_p = ::soap_new__trt__GetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceConfiguration(struct soap *soap, _trt__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__GetVideoSourceConfiguration 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, "trt:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__GetVideoSourceConfiguration 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, "trt:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__GetVideoSourceConfiguration 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, "trt:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfiguration(struct soap*, _trt__GetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceConfiguration(struct soap *soap, _trt__GetVideoSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__GetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceConfiguration(struct soap *soap, _trt__GetVideoSourceConfiguration *p) -{ - if (::soap_read__trt__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurationsResponse(struct soap*, const char*, int, const _trt__GetAudioDecoderConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurationsResponse(struct soap*, const char*, _trt__GetAudioDecoderConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioDecoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioDecoderConfigurationsResponse * soap_new__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioDecoderConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioDecoderConfigurationsResponse * soap_new_req__trt__GetAudioDecoderConfigurationsResponse( - struct soap *soap) -{ - _trt__GetAudioDecoderConfigurationsResponse *_p = ::soap_new__trt__GetAudioDecoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioDecoderConfigurationsResponse * soap_new_set__trt__GetAudioDecoderConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetAudioDecoderConfigurationsResponse *_p = ::soap_new__trt__GetAudioDecoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioDecoderConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationsResponse 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, "trt:GetAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationsResponse 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, "trt:GetAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationsResponse 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, "trt:GetAudioDecoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurationsResponse(struct soap*, _trt__GetAudioDecoderConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioDecoderConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioDecoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioDecoderConfigurationsResponse(struct soap *soap, _trt__GetAudioDecoderConfigurationsResponse *p) -{ - if (::soap_read__trt__GetAudioDecoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioDecoderConfigurations_DEFINED -#define SOAP_TYPE__trt__GetAudioDecoderConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioDecoderConfigurations(struct soap*, const char*, int, const _trt__GetAudioDecoderConfigurations *, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioDecoderConfigurations(struct soap*, const char*, _trt__GetAudioDecoderConfigurations *, const char*); -SOAP_FMAC1 _trt__GetAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioDecoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioDecoderConfigurations * soap_new__trt__GetAudioDecoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioDecoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioDecoderConfigurations * soap_new_req__trt__GetAudioDecoderConfigurations( - struct soap *soap) -{ - _trt__GetAudioDecoderConfigurations *_p = ::soap_new__trt__GetAudioDecoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioDecoderConfigurations * soap_new_set__trt__GetAudioDecoderConfigurations( - struct soap *soap) -{ - _trt__GetAudioDecoderConfigurations *_p = ::soap_new__trt__GetAudioDecoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetAudioDecoderConfigurations(struct soap *soap, _trt__GetAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurations 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, "trt:GetAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurations 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, "trt:GetAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurations 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, "trt:GetAudioDecoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioDecoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioDecoderConfigurations(struct soap*, _trt__GetAudioDecoderConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetAudioDecoderConfigurations(struct soap *soap, _trt__GetAudioDecoderConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioDecoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioDecoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioDecoderConfigurations(struct soap *soap, _trt__GetAudioDecoderConfigurations *p) -{ - if (::soap_read__trt__GetAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurationsResponse(struct soap*, const char*, int, const _trt__GetAudioOutputConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurationsResponse(struct soap*, const char*, _trt__GetAudioOutputConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputConfigurationsResponse * soap_new__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputConfigurationsResponse * soap_new_req__trt__GetAudioOutputConfigurationsResponse( - struct soap *soap) -{ - _trt__GetAudioOutputConfigurationsResponse *_p = ::soap_new__trt__GetAudioOutputConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioOutputConfigurationsResponse * soap_new_set__trt__GetAudioOutputConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetAudioOutputConfigurationsResponse *_p = ::soap_new__trt__GetAudioOutputConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationsResponse 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, "trt:GetAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationsResponse 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, "trt:GetAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationsResponse 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, "trt:GetAudioOutputConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurationsResponse(struct soap*, _trt__GetAudioOutputConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputConfigurationsResponse(struct soap *soap, _trt__GetAudioOutputConfigurationsResponse *p) -{ - if (::soap_read__trt__GetAudioOutputConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputConfigurations_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputConfigurations(struct soap*, const char*, int, const _trt__GetAudioOutputConfigurations *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioOutputConfigurations(struct soap*, const char*, _trt__GetAudioOutputConfigurations *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputConfigurations * soap_new__trt__GetAudioOutputConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputConfigurations * soap_new_req__trt__GetAudioOutputConfigurations( - struct soap *soap) -{ - _trt__GetAudioOutputConfigurations *_p = ::soap_new__trt__GetAudioOutputConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioOutputConfigurations * soap_new_set__trt__GetAudioOutputConfigurations( - struct soap *soap) -{ - _trt__GetAudioOutputConfigurations *_p = ::soap_new__trt__GetAudioOutputConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputConfigurations(struct soap *soap, _trt__GetAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurations 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, "trt:GetAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurations 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, "trt:GetAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurations 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, "trt:GetAudioOutputConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioOutputConfigurations(struct soap*, _trt__GetAudioOutputConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputConfigurations(struct soap *soap, _trt__GetAudioOutputConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, _trt__GetAudioOutputConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputConfigurations(struct soap *soap, _trt__GetAudioOutputConfigurations *p) -{ - if (::soap_read__trt__GetAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetMetadataConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetMetadataConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurationsResponse(struct soap*, const char*, int, const _trt__GetMetadataConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetMetadataConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurationsResponse(struct soap*, const char*, _trt__GetMetadataConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetMetadataConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetMetadataConfigurationsResponse * soap_new__trt__GetMetadataConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetMetadataConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetMetadataConfigurationsResponse * soap_new_req__trt__GetMetadataConfigurationsResponse( - struct soap *soap) -{ - _trt__GetMetadataConfigurationsResponse *_p = ::soap_new__trt__GetMetadataConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetMetadataConfigurationsResponse * soap_new_set__trt__GetMetadataConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetMetadataConfigurationsResponse *_p = ::soap_new__trt__GetMetadataConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetMetadataConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetMetadataConfigurationsResponse(struct soap *soap, _trt__GetMetadataConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationsResponse 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, "trt:GetMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationsResponse 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, "trt:GetMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationsResponse 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, "trt:GetMetadataConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetMetadataConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurationsResponse(struct soap*, _trt__GetMetadataConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetMetadataConfigurationsResponse(struct soap *soap, _trt__GetMetadataConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetMetadataConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetMetadataConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetMetadataConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetMetadataConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetMetadataConfigurationsResponse(struct soap *soap, _trt__GetMetadataConfigurationsResponse *p) -{ - if (::soap_read__trt__GetMetadataConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetMetadataConfigurations_DEFINED -#define SOAP_TYPE__trt__GetMetadataConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetMetadataConfigurations(struct soap*, const char*, int, const _trt__GetMetadataConfigurations *, const char*); -SOAP_FMAC3 _trt__GetMetadataConfigurations * SOAP_FMAC4 soap_in__trt__GetMetadataConfigurations(struct soap*, const char*, _trt__GetMetadataConfigurations *, const char*); -SOAP_FMAC1 _trt__GetMetadataConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetMetadataConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetMetadataConfigurations * soap_new__trt__GetMetadataConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetMetadataConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetMetadataConfigurations * soap_new_req__trt__GetMetadataConfigurations( - struct soap *soap) -{ - _trt__GetMetadataConfigurations *_p = ::soap_new__trt__GetMetadataConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetMetadataConfigurations * soap_new_set__trt__GetMetadataConfigurations( - struct soap *soap) -{ - _trt__GetMetadataConfigurations *_p = ::soap_new__trt__GetMetadataConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetMetadataConfigurations(struct soap *soap, _trt__GetMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetMetadataConfigurations 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, "trt:GetMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetMetadataConfigurations 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, "trt:GetMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetMetadataConfigurations 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, "trt:GetMetadataConfigurations", p->soap_type() == SOAP_TYPE__trt__GetMetadataConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetMetadataConfigurations * SOAP_FMAC4 soap_get__trt__GetMetadataConfigurations(struct soap*, _trt__GetMetadataConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetMetadataConfigurations(struct soap *soap, _trt__GetMetadataConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetMetadataConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetMetadataConfigurations(struct soap *soap, const char *URL, _trt__GetMetadataConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetMetadataConfigurations(struct soap *soap, _trt__GetMetadataConfigurations *p) -{ - if (::soap_read__trt__GetMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfigurationsResponse(struct soap*, const char*, int, const _trt__GetVideoAnalyticsConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfigurationsResponse(struct soap*, const char*, _trt__GetVideoAnalyticsConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoAnalyticsConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoAnalyticsConfigurationsResponse * soap_new__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoAnalyticsConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoAnalyticsConfigurationsResponse * soap_new_req__trt__GetVideoAnalyticsConfigurationsResponse( - struct soap *soap) -{ - _trt__GetVideoAnalyticsConfigurationsResponse *_p = ::soap_new__trt__GetVideoAnalyticsConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoAnalyticsConfigurationsResponse * soap_new_set__trt__GetVideoAnalyticsConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetVideoAnalyticsConfigurationsResponse *_p = ::soap_new__trt__GetVideoAnalyticsConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoAnalyticsConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationsResponse 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, "trt:GetVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationsResponse 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, "trt:GetVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationsResponse 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, "trt:GetVideoAnalyticsConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfigurationsResponse(struct soap*, _trt__GetVideoAnalyticsConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoAnalyticsConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoAnalyticsConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoAnalyticsConfigurationsResponse(struct soap *soap, _trt__GetVideoAnalyticsConfigurationsResponse *p) -{ - if (::soap_read__trt__GetVideoAnalyticsConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoAnalyticsConfigurations_DEFINED -#define SOAP_TYPE__trt__GetVideoAnalyticsConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoAnalyticsConfigurations(struct soap*, const char*, int, const _trt__GetVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in__trt__GetVideoAnalyticsConfigurations(struct soap*, const char*, _trt__GetVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC1 _trt__GetVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetVideoAnalyticsConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoAnalyticsConfigurations * soap_new__trt__GetVideoAnalyticsConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoAnalyticsConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoAnalyticsConfigurations * soap_new_req__trt__GetVideoAnalyticsConfigurations( - struct soap *soap) -{ - _trt__GetVideoAnalyticsConfigurations *_p = ::soap_new__trt__GetVideoAnalyticsConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoAnalyticsConfigurations * soap_new_set__trt__GetVideoAnalyticsConfigurations( - struct soap *soap) -{ - _trt__GetVideoAnalyticsConfigurations *_p = ::soap_new__trt__GetVideoAnalyticsConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetVideoAnalyticsConfigurations(struct soap *soap, _trt__GetVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurations 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, "trt:GetVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurations 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, "trt:GetVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurations 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, "trt:GetVideoAnalyticsConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoAnalyticsConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get__trt__GetVideoAnalyticsConfigurations(struct soap*, _trt__GetVideoAnalyticsConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetVideoAnalyticsConfigurations(struct soap *soap, _trt__GetVideoAnalyticsConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoAnalyticsConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, _trt__GetVideoAnalyticsConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoAnalyticsConfigurations(struct soap *soap, _trt__GetVideoAnalyticsConfigurations *p) -{ - if (::soap_read__trt__GetVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurationsResponse(struct soap*, const char*, int, const _trt__GetAudioSourceConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurationsResponse(struct soap*, const char*, _trt__GetAudioSourceConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSourceConfigurationsResponse * soap_new__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSourceConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSourceConfigurationsResponse * soap_new_req__trt__GetAudioSourceConfigurationsResponse( - struct soap *soap) -{ - _trt__GetAudioSourceConfigurationsResponse *_p = ::soap_new__trt__GetAudioSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioSourceConfigurationsResponse * soap_new_set__trt__GetAudioSourceConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetAudioSourceConfigurationsResponse *_p = ::soap_new__trt__GetAudioSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourceConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationsResponse 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, "trt:GetAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationsResponse 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, "trt:GetAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationsResponse 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, "trt:GetAudioSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurationsResponse(struct soap*, _trt__GetAudioSourceConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSourceConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSourceConfigurationsResponse(struct soap *soap, _trt__GetAudioSourceConfigurationsResponse *p) -{ - if (::soap_read__trt__GetAudioSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSourceConfigurations_DEFINED -#define SOAP_TYPE__trt__GetAudioSourceConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourceConfigurations(struct soap*, const char*, int, const _trt__GetAudioSourceConfigurations *, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioSourceConfigurations(struct soap*, const char*, _trt__GetAudioSourceConfigurations *, const char*); -SOAP_FMAC1 _trt__GetAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSourceConfigurations * soap_new__trt__GetAudioSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSourceConfigurations * soap_new_req__trt__GetAudioSourceConfigurations( - struct soap *soap) -{ - _trt__GetAudioSourceConfigurations *_p = ::soap_new__trt__GetAudioSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioSourceConfigurations * soap_new_set__trt__GetAudioSourceConfigurations( - struct soap *soap) -{ - _trt__GetAudioSourceConfigurations *_p = ::soap_new__trt__GetAudioSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetAudioSourceConfigurations(struct soap *soap, _trt__GetAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurations 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, "trt:GetAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurations 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, "trt:GetAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurations 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, "trt:GetAudioSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioSourceConfigurations(struct soap*, _trt__GetAudioSourceConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetAudioSourceConfigurations(struct soap *soap, _trt__GetAudioSourceConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, _trt__GetAudioSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSourceConfigurations(struct soap *soap, _trt__GetAudioSourceConfigurations *p) -{ - if (::soap_read__trt__GetAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurationsResponse(struct soap*, const char*, int, const _trt__GetAudioEncoderConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurationsResponse(struct soap*, const char*, _trt__GetAudioEncoderConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioEncoderConfigurationsResponse * soap_new__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioEncoderConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioEncoderConfigurationsResponse * soap_new_req__trt__GetAudioEncoderConfigurationsResponse( - struct soap *soap) -{ - _trt__GetAudioEncoderConfigurationsResponse *_p = ::soap_new__trt__GetAudioEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioEncoderConfigurationsResponse * soap_new_set__trt__GetAudioEncoderConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetAudioEncoderConfigurationsResponse *_p = ::soap_new__trt__GetAudioEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioEncoderConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationsResponse 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, "trt:GetAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationsResponse 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, "trt:GetAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationsResponse 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, "trt:GetAudioEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurationsResponse(struct soap*, _trt__GetAudioEncoderConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioEncoderConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioEncoderConfigurationsResponse(struct soap *soap, _trt__GetAudioEncoderConfigurationsResponse *p) -{ - if (::soap_read__trt__GetAudioEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioEncoderConfigurations_DEFINED -#define SOAP_TYPE__trt__GetAudioEncoderConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioEncoderConfigurations(struct soap*, const char*, int, const _trt__GetAudioEncoderConfigurations *, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetAudioEncoderConfigurations(struct soap*, const char*, _trt__GetAudioEncoderConfigurations *, const char*); -SOAP_FMAC1 _trt__GetAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetAudioEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioEncoderConfigurations * soap_new__trt__GetAudioEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioEncoderConfigurations * soap_new_req__trt__GetAudioEncoderConfigurations( - struct soap *soap) -{ - _trt__GetAudioEncoderConfigurations *_p = ::soap_new__trt__GetAudioEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioEncoderConfigurations * soap_new_set__trt__GetAudioEncoderConfigurations( - struct soap *soap) -{ - _trt__GetAudioEncoderConfigurations *_p = ::soap_new__trt__GetAudioEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetAudioEncoderConfigurations(struct soap *soap, _trt__GetAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurations 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, "trt:GetAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurations 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, "trt:GetAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurations 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, "trt:GetAudioEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetAudioEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetAudioEncoderConfigurations(struct soap*, _trt__GetAudioEncoderConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetAudioEncoderConfigurations(struct soap *soap, _trt__GetAudioEncoderConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetAudioEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioEncoderConfigurations(struct soap *soap, _trt__GetAudioEncoderConfigurations *p) -{ - if (::soap_read__trt__GetAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurationsResponse(struct soap*, const char*, int, const _trt__GetVideoSourceConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurationsResponse(struct soap*, const char*, _trt__GetVideoSourceConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceConfigurationsResponse * soap_new__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceConfigurationsResponse * soap_new_req__trt__GetVideoSourceConfigurationsResponse( - struct soap *soap) -{ - _trt__GetVideoSourceConfigurationsResponse *_p = ::soap_new__trt__GetVideoSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoSourceConfigurationsResponse * soap_new_set__trt__GetVideoSourceConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetVideoSourceConfigurationsResponse *_p = ::soap_new__trt__GetVideoSourceConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourceConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationsResponse 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, "trt:GetVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationsResponse 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, "trt:GetVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationsResponse 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, "trt:GetVideoSourceConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurationsResponse(struct soap*, _trt__GetVideoSourceConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceConfigurationsResponse(struct soap *soap, _trt__GetVideoSourceConfigurationsResponse *p) -{ - if (::soap_read__trt__GetVideoSourceConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourceConfigurations_DEFINED -#define SOAP_TYPE__trt__GetVideoSourceConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourceConfigurations(struct soap*, const char*, int, const _trt__GetVideoSourceConfigurations *, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_in__trt__GetVideoSourceConfigurations(struct soap*, const char*, _trt__GetVideoSourceConfigurations *, const char*); -SOAP_FMAC1 _trt__GetVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourceConfigurations * soap_new__trt__GetVideoSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourceConfigurations * soap_new_req__trt__GetVideoSourceConfigurations( - struct soap *soap) -{ - _trt__GetVideoSourceConfigurations *_p = ::soap_new__trt__GetVideoSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoSourceConfigurations * soap_new_set__trt__GetVideoSourceConfigurations( - struct soap *soap) -{ - _trt__GetVideoSourceConfigurations *_p = ::soap_new__trt__GetVideoSourceConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetVideoSourceConfigurations(struct soap *soap, _trt__GetVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurations 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, "trt:GetVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurations 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, "trt:GetVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurations 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, "trt:GetVideoSourceConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoSourceConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_get__trt__GetVideoSourceConfigurations(struct soap*, _trt__GetVideoSourceConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourceConfigurations(struct soap *soap, _trt__GetVideoSourceConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, _trt__GetVideoSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourceConfigurations(struct soap *soap, _trt__GetVideoSourceConfigurations *p) -{ - if (::soap_read__trt__GetVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurationsResponse(struct soap*, const char*, int, const _trt__GetVideoEncoderConfigurationsResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurationsResponse(struct soap*, const char*, _trt__GetVideoEncoderConfigurationsResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoEncoderConfigurationsResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoEncoderConfigurationsResponse * soap_new__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoEncoderConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoEncoderConfigurationsResponse * soap_new_req__trt__GetVideoEncoderConfigurationsResponse( - struct soap *soap) -{ - _trt__GetVideoEncoderConfigurationsResponse *_p = ::soap_new__trt__GetVideoEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoEncoderConfigurationsResponse * soap_new_set__trt__GetVideoEncoderConfigurationsResponse( - struct soap *soap, - const std::vector & Configurations) -{ - _trt__GetVideoEncoderConfigurationsResponse *_p = ::soap_new__trt__GetVideoEncoderConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoEncoderConfigurationsResponse::Configurations = Configurations; - } - return _p; -} - -inline int soap_write__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationsResponse 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, "trt:GetVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationsResponse 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, "trt:GetVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationsResponse 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, "trt:GetVideoEncoderConfigurationsResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationsResponse * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurationsResponse(struct soap*, _trt__GetVideoEncoderConfigurationsResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoEncoderConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoEncoderConfigurationsResponse(struct soap *soap, _trt__GetVideoEncoderConfigurationsResponse *p) -{ - if (::soap_read__trt__GetVideoEncoderConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoEncoderConfigurations_DEFINED -#define SOAP_TYPE__trt__GetVideoEncoderConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoEncoderConfigurations(struct soap*, const char*, int, const _trt__GetVideoEncoderConfigurations *, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_in__trt__GetVideoEncoderConfigurations(struct soap*, const char*, _trt__GetVideoEncoderConfigurations *, const char*); -SOAP_FMAC1 _trt__GetVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate__trt__GetVideoEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoEncoderConfigurations * soap_new__trt__GetVideoEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoEncoderConfigurations * soap_new_req__trt__GetVideoEncoderConfigurations( - struct soap *soap) -{ - _trt__GetVideoEncoderConfigurations *_p = ::soap_new__trt__GetVideoEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoEncoderConfigurations * soap_new_set__trt__GetVideoEncoderConfigurations( - struct soap *soap) -{ - _trt__GetVideoEncoderConfigurations *_p = ::soap_new__trt__GetVideoEncoderConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetVideoEncoderConfigurations(struct soap *soap, _trt__GetVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurations 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, "trt:GetVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurations 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, "trt:GetVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurations 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, "trt:GetVideoEncoderConfigurations", p->soap_type() == SOAP_TYPE__trt__GetVideoEncoderConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_get__trt__GetVideoEncoderConfigurations(struct soap*, _trt__GetVideoEncoderConfigurations *, const char*, const char*); - -inline int soap_read__trt__GetVideoEncoderConfigurations(struct soap *soap, _trt__GetVideoEncoderConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, _trt__GetVideoEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoEncoderConfigurations(struct soap *soap, _trt__GetVideoEncoderConfigurations *p) -{ - if (::soap_read__trt__GetVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__DeleteProfileResponse_DEFINED -#define SOAP_TYPE__trt__DeleteProfileResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteProfileResponse(struct soap*, const char*, int, const _trt__DeleteProfileResponse *, const char*); -SOAP_FMAC3 _trt__DeleteProfileResponse * SOAP_FMAC4 soap_in__trt__DeleteProfileResponse(struct soap*, const char*, _trt__DeleteProfileResponse *, const char*); -SOAP_FMAC1 _trt__DeleteProfileResponse * SOAP_FMAC2 soap_instantiate__trt__DeleteProfileResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__DeleteProfileResponse * soap_new__trt__DeleteProfileResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__DeleteProfileResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__DeleteProfileResponse * soap_new_req__trt__DeleteProfileResponse( - struct soap *soap) -{ - _trt__DeleteProfileResponse *_p = ::soap_new__trt__DeleteProfileResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__DeleteProfileResponse * soap_new_set__trt__DeleteProfileResponse( - struct soap *soap) -{ - _trt__DeleteProfileResponse *_p = ::soap_new__trt__DeleteProfileResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__DeleteProfileResponse(struct soap *soap, _trt__DeleteProfileResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:DeleteProfileResponse", p->soap_type() == SOAP_TYPE__trt__DeleteProfileResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__DeleteProfileResponse(struct soap *soap, const char *URL, _trt__DeleteProfileResponse 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, "trt:DeleteProfileResponse", p->soap_type() == SOAP_TYPE__trt__DeleteProfileResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__DeleteProfileResponse(struct soap *soap, const char *URL, _trt__DeleteProfileResponse 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, "trt:DeleteProfileResponse", p->soap_type() == SOAP_TYPE__trt__DeleteProfileResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__DeleteProfileResponse(struct soap *soap, const char *URL, _trt__DeleteProfileResponse 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, "trt:DeleteProfileResponse", p->soap_type() == SOAP_TYPE__trt__DeleteProfileResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__DeleteProfileResponse * SOAP_FMAC4 soap_get__trt__DeleteProfileResponse(struct soap*, _trt__DeleteProfileResponse *, const char*, const char*); - -inline int soap_read__trt__DeleteProfileResponse(struct soap *soap, _trt__DeleteProfileResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__DeleteProfileResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__DeleteProfileResponse(struct soap *soap, const char *URL, _trt__DeleteProfileResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__DeleteProfileResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__DeleteProfileResponse(struct soap *soap, _trt__DeleteProfileResponse *p) -{ - if (::soap_read__trt__DeleteProfileResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__DeleteProfile_DEFINED -#define SOAP_TYPE__trt__DeleteProfile_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__DeleteProfile(struct soap*, const char*, int, const _trt__DeleteProfile *, const char*); -SOAP_FMAC3 _trt__DeleteProfile * SOAP_FMAC4 soap_in__trt__DeleteProfile(struct soap*, const char*, _trt__DeleteProfile *, const char*); -SOAP_FMAC1 _trt__DeleteProfile * SOAP_FMAC2 soap_instantiate__trt__DeleteProfile(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__DeleteProfile * soap_new__trt__DeleteProfile(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__DeleteProfile(soap, n, NULL, NULL, NULL); -} - -inline _trt__DeleteProfile * soap_new_req__trt__DeleteProfile( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__DeleteProfile *_p = ::soap_new__trt__DeleteProfile(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__DeleteProfile::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__DeleteProfile * soap_new_set__trt__DeleteProfile( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__DeleteProfile *_p = ::soap_new__trt__DeleteProfile(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__DeleteProfile::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__DeleteProfile(struct soap *soap, _trt__DeleteProfile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:DeleteProfile", p->soap_type() == SOAP_TYPE__trt__DeleteProfile ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__DeleteProfile(struct soap *soap, const char *URL, _trt__DeleteProfile 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, "trt:DeleteProfile", p->soap_type() == SOAP_TYPE__trt__DeleteProfile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__DeleteProfile(struct soap *soap, const char *URL, _trt__DeleteProfile 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, "trt:DeleteProfile", p->soap_type() == SOAP_TYPE__trt__DeleteProfile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__DeleteProfile(struct soap *soap, const char *URL, _trt__DeleteProfile 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, "trt:DeleteProfile", p->soap_type() == SOAP_TYPE__trt__DeleteProfile ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__DeleteProfile * SOAP_FMAC4 soap_get__trt__DeleteProfile(struct soap*, _trt__DeleteProfile *, const char*, const char*); - -inline int soap_read__trt__DeleteProfile(struct soap *soap, _trt__DeleteProfile *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__DeleteProfile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__DeleteProfile(struct soap *soap, const char *URL, _trt__DeleteProfile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__DeleteProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__DeleteProfile(struct soap *soap, _trt__DeleteProfile *p) -{ - if (::soap_read__trt__DeleteProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioDecoderConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioDecoderConfigurationResponse(struct soap*, const char*, _trt__RemoveAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioDecoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioDecoderConfigurationResponse * soap_new__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioDecoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioDecoderConfigurationResponse * soap_new_req__trt__RemoveAudioDecoderConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioDecoderConfigurationResponse *_p = ::soap_new__trt__RemoveAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveAudioDecoderConfigurationResponse * soap_new_set__trt__RemoveAudioDecoderConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioDecoderConfigurationResponse *_p = ::soap_new__trt__RemoveAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioDecoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfigurationResponse 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, "trt:RemoveAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfigurationResponse 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, "trt:RemoveAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfigurationResponse 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, "trt:RemoveAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioDecoderConfigurationResponse(struct soap*, _trt__RemoveAudioDecoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioDecoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioDecoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioDecoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioDecoderConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioDecoderConfiguration(struct soap*, const char*, int, const _trt__RemoveAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioDecoderConfiguration(struct soap*, const char*, _trt__RemoveAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioDecoderConfiguration * soap_new__trt__RemoveAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioDecoderConfiguration * soap_new_req__trt__RemoveAudioDecoderConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioDecoderConfiguration *_p = ::soap_new__trt__RemoveAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioDecoderConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveAudioDecoderConfiguration * soap_new_set__trt__RemoveAudioDecoderConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioDecoderConfiguration *_p = ::soap_new__trt__RemoveAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioDecoderConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveAudioDecoderConfiguration(struct soap *soap, _trt__RemoveAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfiguration 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, "trt:RemoveAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfiguration 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, "trt:RemoveAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfiguration 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, "trt:RemoveAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioDecoderConfiguration(struct soap*, _trt__RemoveAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioDecoderConfiguration(struct soap *soap, _trt__RemoveAudioDecoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioDecoderConfiguration(struct soap *soap, _trt__RemoveAudioDecoderConfiguration *p) -{ - if (::soap_read__trt__RemoveAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioDecoderConfigurationResponse(struct soap*, const char*, int, const _trt__AddAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioDecoderConfigurationResponse(struct soap*, const char*, _trt__AddAudioDecoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddAudioDecoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioDecoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioDecoderConfigurationResponse * soap_new__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioDecoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioDecoderConfigurationResponse * soap_new_req__trt__AddAudioDecoderConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioDecoderConfigurationResponse *_p = ::soap_new__trt__AddAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddAudioDecoderConfigurationResponse * soap_new_set__trt__AddAudioDecoderConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioDecoderConfigurationResponse *_p = ::soap_new__trt__AddAudioDecoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, _trt__AddAudioDecoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfigurationResponse 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, "trt:AddAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfigurationResponse 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, "trt:AddAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfigurationResponse 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, "trt:AddAudioDecoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioDecoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioDecoderConfigurationResponse(struct soap*, _trt__AddAudioDecoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, _trt__AddAudioDecoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioDecoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioDecoderConfigurationResponse(struct soap *soap, _trt__AddAudioDecoderConfigurationResponse *p) -{ - if (::soap_read__trt__AddAudioDecoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE__trt__AddAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioDecoderConfiguration(struct soap*, const char*, int, const _trt__AddAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 _trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioDecoderConfiguration(struct soap*, const char*, _trt__AddAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 _trt__AddAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioDecoderConfiguration * soap_new__trt__AddAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioDecoderConfiguration * soap_new_req__trt__AddAudioDecoderConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioDecoderConfiguration *_p = ::soap_new__trt__AddAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioDecoderConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioDecoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddAudioDecoderConfiguration * soap_new_set__trt__AddAudioDecoderConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioDecoderConfiguration *_p = ::soap_new__trt__AddAudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioDecoderConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioDecoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddAudioDecoderConfiguration(struct soap *soap, _trt__AddAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfiguration 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, "trt:AddAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfiguration 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, "trt:AddAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfiguration 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, "trt:AddAudioDecoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioDecoderConfiguration(struct soap*, _trt__AddAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddAudioDecoderConfiguration(struct soap *soap, _trt__AddAudioDecoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioDecoderConfiguration(struct soap *soap, _trt__AddAudioDecoderConfiguration *p) -{ - if (::soap_read__trt__AddAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioOutputConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioOutputConfigurationResponse(struct soap*, const char*, _trt__RemoveAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioOutputConfigurationResponse * soap_new__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioOutputConfigurationResponse * soap_new_req__trt__RemoveAudioOutputConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioOutputConfigurationResponse *_p = ::soap_new__trt__RemoveAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveAudioOutputConfigurationResponse * soap_new_set__trt__RemoveAudioOutputConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioOutputConfigurationResponse *_p = ::soap_new__trt__RemoveAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, _trt__RemoveAudioOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfigurationResponse 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, "trt:RemoveAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfigurationResponse 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, "trt:RemoveAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfigurationResponse 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, "trt:RemoveAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioOutputConfigurationResponse(struct soap*, _trt__RemoveAudioOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, _trt__RemoveAudioOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioOutputConfigurationResponse(struct soap *soap, _trt__RemoveAudioOutputConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioOutputConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveAudioOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioOutputConfiguration(struct soap*, const char*, int, const _trt__RemoveAudioOutputConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioOutputConfiguration(struct soap*, const char*, _trt__RemoveAudioOutputConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioOutputConfiguration * soap_new__trt__RemoveAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioOutputConfiguration * soap_new_req__trt__RemoveAudioOutputConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioOutputConfiguration *_p = ::soap_new__trt__RemoveAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioOutputConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveAudioOutputConfiguration * soap_new_set__trt__RemoveAudioOutputConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioOutputConfiguration *_p = ::soap_new__trt__RemoveAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioOutputConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveAudioOutputConfiguration(struct soap *soap, _trt__RemoveAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfiguration 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, "trt:RemoveAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfiguration 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, "trt:RemoveAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfiguration 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, "trt:RemoveAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioOutputConfiguration(struct soap*, _trt__RemoveAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioOutputConfiguration(struct soap *soap, _trt__RemoveAudioOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioOutputConfiguration(struct soap *soap, _trt__RemoveAudioOutputConfiguration *p) -{ - if (::soap_read__trt__RemoveAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddAudioOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioOutputConfigurationResponse(struct soap*, const char*, int, const _trt__AddAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioOutputConfigurationResponse(struct soap*, const char*, _trt__AddAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioOutputConfigurationResponse * soap_new__trt__AddAudioOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioOutputConfigurationResponse * soap_new_req__trt__AddAudioOutputConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioOutputConfigurationResponse *_p = ::soap_new__trt__AddAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddAudioOutputConfigurationResponse * soap_new_set__trt__AddAudioOutputConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioOutputConfigurationResponse *_p = ::soap_new__trt__AddAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddAudioOutputConfigurationResponse(struct soap *soap, _trt__AddAudioOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioOutputConfigurationResponse 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, "trt:AddAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioOutputConfigurationResponse 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, "trt:AddAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioOutputConfigurationResponse 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, "trt:AddAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioOutputConfigurationResponse(struct soap*, _trt__AddAudioOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddAudioOutputConfigurationResponse(struct soap *soap, _trt__AddAudioOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioOutputConfigurationResponse(struct soap *soap, _trt__AddAudioOutputConfigurationResponse *p) -{ - if (::soap_read__trt__AddAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioOutputConfiguration_DEFINED -#define SOAP_TYPE__trt__AddAudioOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioOutputConfiguration(struct soap*, const char*, int, const _trt__AddAudioOutputConfiguration *, const char*); -SOAP_FMAC3 _trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioOutputConfiguration(struct soap*, const char*, _trt__AddAudioOutputConfiguration *, const char*); -SOAP_FMAC1 _trt__AddAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioOutputConfiguration * soap_new__trt__AddAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioOutputConfiguration * soap_new_req__trt__AddAudioOutputConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioOutputConfiguration *_p = ::soap_new__trt__AddAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioOutputConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioOutputConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddAudioOutputConfiguration * soap_new_set__trt__AddAudioOutputConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioOutputConfiguration *_p = ::soap_new__trt__AddAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioOutputConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioOutputConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddAudioOutputConfiguration(struct soap *soap, _trt__AddAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__AddAudioOutputConfiguration 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, "trt:AddAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__AddAudioOutputConfiguration 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, "trt:AddAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__AddAudioOutputConfiguration 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, "trt:AddAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioOutputConfiguration(struct soap*, _trt__AddAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddAudioOutputConfiguration(struct soap *soap, _trt__AddAudioOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, _trt__AddAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioOutputConfiguration(struct soap *soap, _trt__AddAudioOutputConfiguration *p) -{ - if (::soap_read__trt__AddAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveMetadataConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveMetadataConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveMetadataConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveMetadataConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveMetadataConfigurationResponse(struct soap*, const char*, _trt__RemoveMetadataConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveMetadataConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveMetadataConfigurationResponse * soap_new__trt__RemoveMetadataConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveMetadataConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveMetadataConfigurationResponse * soap_new_req__trt__RemoveMetadataConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveMetadataConfigurationResponse *_p = ::soap_new__trt__RemoveMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveMetadataConfigurationResponse * soap_new_set__trt__RemoveMetadataConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveMetadataConfigurationResponse *_p = ::soap_new__trt__RemoveMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveMetadataConfigurationResponse(struct soap *soap, _trt__RemoveMetadataConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveMetadataConfigurationResponse 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, "trt:RemoveMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveMetadataConfigurationResponse 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, "trt:RemoveMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveMetadataConfigurationResponse 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, "trt:RemoveMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveMetadataConfigurationResponse(struct soap*, _trt__RemoveMetadataConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveMetadataConfigurationResponse(struct soap *soap, _trt__RemoveMetadataConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveMetadataConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveMetadataConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveMetadataConfigurationResponse(struct soap *soap, _trt__RemoveMetadataConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveMetadataConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveMetadataConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveMetadataConfiguration(struct soap*, const char*, int, const _trt__RemoveMetadataConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_in__trt__RemoveMetadataConfiguration(struct soap*, const char*, _trt__RemoveMetadataConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveMetadataConfiguration * soap_new__trt__RemoveMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveMetadataConfiguration * soap_new_req__trt__RemoveMetadataConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveMetadataConfiguration *_p = ::soap_new__trt__RemoveMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveMetadataConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveMetadataConfiguration * soap_new_set__trt__RemoveMetadataConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveMetadataConfiguration *_p = ::soap_new__trt__RemoveMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveMetadataConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveMetadataConfiguration(struct soap *soap, _trt__RemoveMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, _trt__RemoveMetadataConfiguration 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, "trt:RemoveMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, _trt__RemoveMetadataConfiguration 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, "trt:RemoveMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, _trt__RemoveMetadataConfiguration 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, "trt:RemoveMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_get__trt__RemoveMetadataConfiguration(struct soap*, _trt__RemoveMetadataConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveMetadataConfiguration(struct soap *soap, _trt__RemoveMetadataConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, _trt__RemoveMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveMetadataConfiguration(struct soap *soap, _trt__RemoveMetadataConfiguration *p) -{ - if (::soap_read__trt__RemoveMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddMetadataConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddMetadataConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddMetadataConfigurationResponse(struct soap*, const char*, int, const _trt__AddMetadataConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddMetadataConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddMetadataConfigurationResponse(struct soap*, const char*, _trt__AddMetadataConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddMetadataConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddMetadataConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddMetadataConfigurationResponse * soap_new__trt__AddMetadataConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddMetadataConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddMetadataConfigurationResponse * soap_new_req__trt__AddMetadataConfigurationResponse( - struct soap *soap) -{ - _trt__AddMetadataConfigurationResponse *_p = ::soap_new__trt__AddMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddMetadataConfigurationResponse * soap_new_set__trt__AddMetadataConfigurationResponse( - struct soap *soap) -{ - _trt__AddMetadataConfigurationResponse *_p = ::soap_new__trt__AddMetadataConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddMetadataConfigurationResponse(struct soap *soap, _trt__AddMetadataConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__AddMetadataConfigurationResponse 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, "trt:AddMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__AddMetadataConfigurationResponse 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, "trt:AddMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__AddMetadataConfigurationResponse 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, "trt:AddMetadataConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddMetadataConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddMetadataConfigurationResponse(struct soap*, _trt__AddMetadataConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddMetadataConfigurationResponse(struct soap *soap, _trt__AddMetadataConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddMetadataConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddMetadataConfigurationResponse(struct soap *soap, const char *URL, _trt__AddMetadataConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddMetadataConfigurationResponse(struct soap *soap, _trt__AddMetadataConfigurationResponse *p) -{ - if (::soap_read__trt__AddMetadataConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddMetadataConfiguration_DEFINED -#define SOAP_TYPE__trt__AddMetadataConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddMetadataConfiguration(struct soap*, const char*, int, const _trt__AddMetadataConfiguration *, const char*); -SOAP_FMAC3 _trt__AddMetadataConfiguration * SOAP_FMAC4 soap_in__trt__AddMetadataConfiguration(struct soap*, const char*, _trt__AddMetadataConfiguration *, const char*); -SOAP_FMAC1 _trt__AddMetadataConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddMetadataConfiguration * soap_new__trt__AddMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddMetadataConfiguration * soap_new_req__trt__AddMetadataConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddMetadataConfiguration *_p = ::soap_new__trt__AddMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddMetadataConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddMetadataConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddMetadataConfiguration * soap_new_set__trt__AddMetadataConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddMetadataConfiguration *_p = ::soap_new__trt__AddMetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddMetadataConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddMetadataConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddMetadataConfiguration(struct soap *soap, _trt__AddMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddMetadataConfiguration(struct soap *soap, const char *URL, _trt__AddMetadataConfiguration 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, "trt:AddMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddMetadataConfiguration(struct soap *soap, const char *URL, _trt__AddMetadataConfiguration 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, "trt:AddMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddMetadataConfiguration(struct soap *soap, const char *URL, _trt__AddMetadataConfiguration 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, "trt:AddMetadataConfiguration", p->soap_type() == SOAP_TYPE__trt__AddMetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddMetadataConfiguration * SOAP_FMAC4 soap_get__trt__AddMetadataConfiguration(struct soap*, _trt__AddMetadataConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddMetadataConfiguration(struct soap *soap, _trt__AddMetadataConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddMetadataConfiguration(struct soap *soap, const char *URL, _trt__AddMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddMetadataConfiguration(struct soap *soap, _trt__AddMetadataConfiguration *p) -{ - if (::soap_read__trt__AddMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap*, const char*, _trt__RemoveVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveVideoAnalyticsConfigurationResponse * soap_new__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveVideoAnalyticsConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveVideoAnalyticsConfigurationResponse * soap_new_req__trt__RemoveVideoAnalyticsConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__RemoveVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveVideoAnalyticsConfigurationResponse * soap_new_set__trt__RemoveVideoAnalyticsConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__RemoveVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__RemoveVideoAnalyticsConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfigurationResponse 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, "trt:RemoveVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfigurationResponse 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, "trt:RemoveVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfigurationResponse 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, "trt:RemoveVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap*, _trt__RemoveVideoAnalyticsConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__RemoveVideoAnalyticsConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveVideoAnalyticsConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__RemoveVideoAnalyticsConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoAnalyticsConfiguration(struct soap*, const char*, int, const _trt__RemoveVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__RemoveVideoAnalyticsConfiguration(struct soap*, const char*, _trt__RemoveVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveVideoAnalyticsConfiguration * soap_new__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveVideoAnalyticsConfiguration * soap_new_req__trt__RemoveVideoAnalyticsConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveVideoAnalyticsConfiguration *_p = ::soap_new__trt__RemoveVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveVideoAnalyticsConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveVideoAnalyticsConfiguration * soap_new_set__trt__RemoveVideoAnalyticsConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveVideoAnalyticsConfiguration *_p = ::soap_new__trt__RemoveVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveVideoAnalyticsConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, _trt__RemoveVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfiguration 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, "trt:RemoveVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfiguration 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, "trt:RemoveVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfiguration 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, "trt:RemoveVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__RemoveVideoAnalyticsConfiguration(struct soap*, _trt__RemoveVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, _trt__RemoveVideoAnalyticsConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, _trt__RemoveVideoAnalyticsConfiguration *p) -{ - if (::soap_read__trt__RemoveVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoAnalyticsConfigurationResponse(struct soap*, const char*, int, const _trt__AddVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddVideoAnalyticsConfigurationResponse(struct soap*, const char*, _trt__AddVideoAnalyticsConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddVideoAnalyticsConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddVideoAnalyticsConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddVideoAnalyticsConfigurationResponse * soap_new__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddVideoAnalyticsConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddVideoAnalyticsConfigurationResponse * soap_new_req__trt__AddVideoAnalyticsConfigurationResponse( - struct soap *soap) -{ - _trt__AddVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__AddVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddVideoAnalyticsConfigurationResponse * soap_new_set__trt__AddVideoAnalyticsConfigurationResponse( - struct soap *soap) -{ - _trt__AddVideoAnalyticsConfigurationResponse *_p = ::soap_new__trt__AddVideoAnalyticsConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__AddVideoAnalyticsConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfigurationResponse 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, "trt:AddVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfigurationResponse 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, "trt:AddVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfigurationResponse 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, "trt:AddVideoAnalyticsConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddVideoAnalyticsConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddVideoAnalyticsConfigurationResponse(struct soap*, _trt__AddVideoAnalyticsConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__AddVideoAnalyticsConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddVideoAnalyticsConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddVideoAnalyticsConfigurationResponse(struct soap *soap, _trt__AddVideoAnalyticsConfigurationResponse *p) -{ - if (::soap_read__trt__AddVideoAnalyticsConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE__trt__AddVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoAnalyticsConfiguration(struct soap*, const char*, int, const _trt__AddVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 _trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in__trt__AddVideoAnalyticsConfiguration(struct soap*, const char*, _trt__AddVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 _trt__AddVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddVideoAnalyticsConfiguration * soap_new__trt__AddVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddVideoAnalyticsConfiguration * soap_new_req__trt__AddVideoAnalyticsConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddVideoAnalyticsConfiguration *_p = ::soap_new__trt__AddVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddVideoAnalyticsConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddVideoAnalyticsConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddVideoAnalyticsConfiguration * soap_new_set__trt__AddVideoAnalyticsConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddVideoAnalyticsConfiguration *_p = ::soap_new__trt__AddVideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddVideoAnalyticsConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddVideoAnalyticsConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddVideoAnalyticsConfiguration(struct soap *soap, _trt__AddVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfiguration 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, "trt:AddVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfiguration 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, "trt:AddVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfiguration 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, "trt:AddVideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get__trt__AddVideoAnalyticsConfiguration(struct soap*, _trt__AddVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddVideoAnalyticsConfiguration(struct soap *soap, _trt__AddVideoAnalyticsConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, _trt__AddVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddVideoAnalyticsConfiguration(struct soap *soap, _trt__AddVideoAnalyticsConfiguration *p) -{ - if (::soap_read__trt__AddVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemovePTZConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemovePTZConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemovePTZConfigurationResponse(struct soap*, const char*, int, const _trt__RemovePTZConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemovePTZConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemovePTZConfigurationResponse(struct soap*, const char*, _trt__RemovePTZConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemovePTZConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemovePTZConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemovePTZConfigurationResponse * soap_new__trt__RemovePTZConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemovePTZConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemovePTZConfigurationResponse * soap_new_req__trt__RemovePTZConfigurationResponse( - struct soap *soap) -{ - _trt__RemovePTZConfigurationResponse *_p = ::soap_new__trt__RemovePTZConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemovePTZConfigurationResponse * soap_new_set__trt__RemovePTZConfigurationResponse( - struct soap *soap) -{ - _trt__RemovePTZConfigurationResponse *_p = ::soap_new__trt__RemovePTZConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemovePTZConfigurationResponse(struct soap *soap, _trt__RemovePTZConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemovePTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemovePTZConfigurationResponse(struct soap *soap, const char *URL, _trt__RemovePTZConfigurationResponse 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, "trt:RemovePTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemovePTZConfigurationResponse(struct soap *soap, const char *URL, _trt__RemovePTZConfigurationResponse 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, "trt:RemovePTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemovePTZConfigurationResponse(struct soap *soap, const char *URL, _trt__RemovePTZConfigurationResponse 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, "trt:RemovePTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemovePTZConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemovePTZConfigurationResponse(struct soap*, _trt__RemovePTZConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemovePTZConfigurationResponse(struct soap *soap, _trt__RemovePTZConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemovePTZConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemovePTZConfigurationResponse(struct soap *soap, const char *URL, _trt__RemovePTZConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemovePTZConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemovePTZConfigurationResponse(struct soap *soap, _trt__RemovePTZConfigurationResponse *p) -{ - if (::soap_read__trt__RemovePTZConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemovePTZConfiguration_DEFINED -#define SOAP_TYPE__trt__RemovePTZConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemovePTZConfiguration(struct soap*, const char*, int, const _trt__RemovePTZConfiguration *, const char*); -SOAP_FMAC3 _trt__RemovePTZConfiguration * SOAP_FMAC4 soap_in__trt__RemovePTZConfiguration(struct soap*, const char*, _trt__RemovePTZConfiguration *, const char*); -SOAP_FMAC1 _trt__RemovePTZConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemovePTZConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemovePTZConfiguration * soap_new__trt__RemovePTZConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemovePTZConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemovePTZConfiguration * soap_new_req__trt__RemovePTZConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemovePTZConfiguration *_p = ::soap_new__trt__RemovePTZConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemovePTZConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemovePTZConfiguration * soap_new_set__trt__RemovePTZConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemovePTZConfiguration *_p = ::soap_new__trt__RemovePTZConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemovePTZConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemovePTZConfiguration(struct soap *soap, _trt__RemovePTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemovePTZConfiguration", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemovePTZConfiguration(struct soap *soap, const char *URL, _trt__RemovePTZConfiguration 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, "trt:RemovePTZConfiguration", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemovePTZConfiguration(struct soap *soap, const char *URL, _trt__RemovePTZConfiguration 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, "trt:RemovePTZConfiguration", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemovePTZConfiguration(struct soap *soap, const char *URL, _trt__RemovePTZConfiguration 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, "trt:RemovePTZConfiguration", p->soap_type() == SOAP_TYPE__trt__RemovePTZConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemovePTZConfiguration * SOAP_FMAC4 soap_get__trt__RemovePTZConfiguration(struct soap*, _trt__RemovePTZConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemovePTZConfiguration(struct soap *soap, _trt__RemovePTZConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemovePTZConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemovePTZConfiguration(struct soap *soap, const char *URL, _trt__RemovePTZConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemovePTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemovePTZConfiguration(struct soap *soap, _trt__RemovePTZConfiguration *p) -{ - if (::soap_read__trt__RemovePTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddPTZConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddPTZConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddPTZConfigurationResponse(struct soap*, const char*, int, const _trt__AddPTZConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddPTZConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddPTZConfigurationResponse(struct soap*, const char*, _trt__AddPTZConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddPTZConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddPTZConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddPTZConfigurationResponse * soap_new__trt__AddPTZConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddPTZConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddPTZConfigurationResponse * soap_new_req__trt__AddPTZConfigurationResponse( - struct soap *soap) -{ - _trt__AddPTZConfigurationResponse *_p = ::soap_new__trt__AddPTZConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddPTZConfigurationResponse * soap_new_set__trt__AddPTZConfigurationResponse( - struct soap *soap) -{ - _trt__AddPTZConfigurationResponse *_p = ::soap_new__trt__AddPTZConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddPTZConfigurationResponse(struct soap *soap, _trt__AddPTZConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddPTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddPTZConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddPTZConfigurationResponse(struct soap *soap, const char *URL, _trt__AddPTZConfigurationResponse 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, "trt:AddPTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddPTZConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddPTZConfigurationResponse(struct soap *soap, const char *URL, _trt__AddPTZConfigurationResponse 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, "trt:AddPTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddPTZConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddPTZConfigurationResponse(struct soap *soap, const char *URL, _trt__AddPTZConfigurationResponse 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, "trt:AddPTZConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddPTZConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddPTZConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddPTZConfigurationResponse(struct soap*, _trt__AddPTZConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddPTZConfigurationResponse(struct soap *soap, _trt__AddPTZConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddPTZConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddPTZConfigurationResponse(struct soap *soap, const char *URL, _trt__AddPTZConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddPTZConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddPTZConfigurationResponse(struct soap *soap, _trt__AddPTZConfigurationResponse *p) -{ - if (::soap_read__trt__AddPTZConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddPTZConfiguration_DEFINED -#define SOAP_TYPE__trt__AddPTZConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddPTZConfiguration(struct soap*, const char*, int, const _trt__AddPTZConfiguration *, const char*); -SOAP_FMAC3 _trt__AddPTZConfiguration * SOAP_FMAC4 soap_in__trt__AddPTZConfiguration(struct soap*, const char*, _trt__AddPTZConfiguration *, const char*); -SOAP_FMAC1 _trt__AddPTZConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddPTZConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddPTZConfiguration * soap_new__trt__AddPTZConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddPTZConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddPTZConfiguration * soap_new_req__trt__AddPTZConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddPTZConfiguration *_p = ::soap_new__trt__AddPTZConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddPTZConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddPTZConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddPTZConfiguration * soap_new_set__trt__AddPTZConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddPTZConfiguration *_p = ::soap_new__trt__AddPTZConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddPTZConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddPTZConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddPTZConfiguration(struct soap *soap, _trt__AddPTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddPTZConfiguration", p->soap_type() == SOAP_TYPE__trt__AddPTZConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddPTZConfiguration(struct soap *soap, const char *URL, _trt__AddPTZConfiguration 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, "trt:AddPTZConfiguration", p->soap_type() == SOAP_TYPE__trt__AddPTZConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddPTZConfiguration(struct soap *soap, const char *URL, _trt__AddPTZConfiguration 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, "trt:AddPTZConfiguration", p->soap_type() == SOAP_TYPE__trt__AddPTZConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddPTZConfiguration(struct soap *soap, const char *URL, _trt__AddPTZConfiguration 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, "trt:AddPTZConfiguration", p->soap_type() == SOAP_TYPE__trt__AddPTZConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddPTZConfiguration * SOAP_FMAC4 soap_get__trt__AddPTZConfiguration(struct soap*, _trt__AddPTZConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddPTZConfiguration(struct soap *soap, _trt__AddPTZConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddPTZConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddPTZConfiguration(struct soap *soap, const char *URL, _trt__AddPTZConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddPTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddPTZConfiguration(struct soap *soap, _trt__AddPTZConfiguration *p) -{ - if (::soap_read__trt__AddPTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioSourceConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioSourceConfigurationResponse(struct soap*, const char*, _trt__RemoveAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioSourceConfigurationResponse * soap_new__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioSourceConfigurationResponse * soap_new_req__trt__RemoveAudioSourceConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioSourceConfigurationResponse *_p = ::soap_new__trt__RemoveAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveAudioSourceConfigurationResponse * soap_new_set__trt__RemoveAudioSourceConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioSourceConfigurationResponse *_p = ::soap_new__trt__RemoveAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, _trt__RemoveAudioSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfigurationResponse 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, "trt:RemoveAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfigurationResponse 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, "trt:RemoveAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfigurationResponse 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, "trt:RemoveAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioSourceConfigurationResponse(struct soap*, _trt__RemoveAudioSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, _trt__RemoveAudioSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioSourceConfigurationResponse(struct soap *soap, _trt__RemoveAudioSourceConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveAudioSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioSourceConfiguration(struct soap*, const char*, int, const _trt__RemoveAudioSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioSourceConfiguration(struct soap*, const char*, _trt__RemoveAudioSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioSourceConfiguration * soap_new__trt__RemoveAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioSourceConfiguration * soap_new_req__trt__RemoveAudioSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioSourceConfiguration *_p = ::soap_new__trt__RemoveAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioSourceConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveAudioSourceConfiguration * soap_new_set__trt__RemoveAudioSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioSourceConfiguration *_p = ::soap_new__trt__RemoveAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioSourceConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveAudioSourceConfiguration(struct soap *soap, _trt__RemoveAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfiguration 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, "trt:RemoveAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfiguration 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, "trt:RemoveAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfiguration 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, "trt:RemoveAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioSourceConfiguration(struct soap*, _trt__RemoveAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioSourceConfiguration(struct soap *soap, _trt__RemoveAudioSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioSourceConfiguration(struct soap *soap, _trt__RemoveAudioSourceConfiguration *p) -{ - if (::soap_read__trt__RemoveAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddAudioSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioSourceConfigurationResponse(struct soap*, const char*, int, const _trt__AddAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioSourceConfigurationResponse(struct soap*, const char*, _trt__AddAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioSourceConfigurationResponse * soap_new__trt__AddAudioSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioSourceConfigurationResponse * soap_new_req__trt__AddAudioSourceConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioSourceConfigurationResponse *_p = ::soap_new__trt__AddAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddAudioSourceConfigurationResponse * soap_new_set__trt__AddAudioSourceConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioSourceConfigurationResponse *_p = ::soap_new__trt__AddAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddAudioSourceConfigurationResponse(struct soap *soap, _trt__AddAudioSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioSourceConfigurationResponse 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, "trt:AddAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioSourceConfigurationResponse 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, "trt:AddAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioSourceConfigurationResponse 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, "trt:AddAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioSourceConfigurationResponse(struct soap*, _trt__AddAudioSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddAudioSourceConfigurationResponse(struct soap *soap, _trt__AddAudioSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioSourceConfigurationResponse(struct soap *soap, _trt__AddAudioSourceConfigurationResponse *p) -{ - if (::soap_read__trt__AddAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__AddAudioSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioSourceConfiguration(struct soap*, const char*, int, const _trt__AddAudioSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioSourceConfiguration(struct soap*, const char*, _trt__AddAudioSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__AddAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioSourceConfiguration * soap_new__trt__AddAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioSourceConfiguration * soap_new_req__trt__AddAudioSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioSourceConfiguration *_p = ::soap_new__trt__AddAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioSourceConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddAudioSourceConfiguration * soap_new_set__trt__AddAudioSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioSourceConfiguration *_p = ::soap_new__trt__AddAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioSourceConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddAudioSourceConfiguration(struct soap *soap, _trt__AddAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__AddAudioSourceConfiguration 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, "trt:AddAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__AddAudioSourceConfiguration 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, "trt:AddAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__AddAudioSourceConfiguration 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, "trt:AddAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioSourceConfiguration(struct soap*, _trt__AddAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddAudioSourceConfiguration(struct soap *soap, _trt__AddAudioSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, _trt__AddAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioSourceConfiguration(struct soap *soap, _trt__AddAudioSourceConfiguration *p) -{ - if (::soap_read__trt__AddAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveAudioEncoderConfigurationResponse(struct soap*, const char*, _trt__RemoveAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioEncoderConfigurationResponse * soap_new__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioEncoderConfigurationResponse * soap_new_req__trt__RemoveAudioEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioEncoderConfigurationResponse *_p = ::soap_new__trt__RemoveAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveAudioEncoderConfigurationResponse * soap_new_set__trt__RemoveAudioEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveAudioEncoderConfigurationResponse *_p = ::soap_new__trt__RemoveAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfigurationResponse 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, "trt:RemoveAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfigurationResponse 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, "trt:RemoveAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfigurationResponse 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, "trt:RemoveAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveAudioEncoderConfigurationResponse(struct soap*, _trt__RemoveAudioEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioEncoderConfigurationResponse(struct soap *soap, _trt__RemoveAudioEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveAudioEncoderConfiguration(struct soap*, const char*, int, const _trt__RemoveAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__RemoveAudioEncoderConfiguration(struct soap*, const char*, _trt__RemoveAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveAudioEncoderConfiguration * soap_new__trt__RemoveAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveAudioEncoderConfiguration * soap_new_req__trt__RemoveAudioEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioEncoderConfiguration *_p = ::soap_new__trt__RemoveAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioEncoderConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveAudioEncoderConfiguration * soap_new_set__trt__RemoveAudioEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveAudioEncoderConfiguration *_p = ::soap_new__trt__RemoveAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveAudioEncoderConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveAudioEncoderConfiguration(struct soap *soap, _trt__RemoveAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfiguration 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, "trt:RemoveAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfiguration 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, "trt:RemoveAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfiguration 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, "trt:RemoveAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__RemoveAudioEncoderConfiguration(struct soap*, _trt__RemoveAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveAudioEncoderConfiguration(struct soap *soap, _trt__RemoveAudioEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveAudioEncoderConfiguration(struct soap *soap, _trt__RemoveAudioEncoderConfiguration *p) -{ - if (::soap_read__trt__RemoveAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__AddAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddAudioEncoderConfigurationResponse(struct soap*, const char*, _trt__AddAudioEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddAudioEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddAudioEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioEncoderConfigurationResponse * soap_new__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioEncoderConfigurationResponse * soap_new_req__trt__AddAudioEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioEncoderConfigurationResponse *_p = ::soap_new__trt__AddAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddAudioEncoderConfigurationResponse * soap_new_set__trt__AddAudioEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__AddAudioEncoderConfigurationResponse *_p = ::soap_new__trt__AddAudioEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, _trt__AddAudioEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfigurationResponse 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, "trt:AddAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfigurationResponse 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, "trt:AddAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfigurationResponse 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, "trt:AddAudioEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddAudioEncoderConfigurationResponse(struct soap*, _trt__AddAudioEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, _trt__AddAudioEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioEncoderConfigurationResponse(struct soap *soap, _trt__AddAudioEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__AddAudioEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__AddAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddAudioEncoderConfiguration(struct soap*, const char*, int, const _trt__AddAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_in__trt__AddAudioEncoderConfiguration(struct soap*, const char*, _trt__AddAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__AddAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddAudioEncoderConfiguration * soap_new__trt__AddAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddAudioEncoderConfiguration * soap_new_req__trt__AddAudioEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioEncoderConfiguration *_p = ::soap_new__trt__AddAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioEncoderConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddAudioEncoderConfiguration * soap_new_set__trt__AddAudioEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddAudioEncoderConfiguration *_p = ::soap_new__trt__AddAudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddAudioEncoderConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddAudioEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddAudioEncoderConfiguration(struct soap *soap, _trt__AddAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfiguration 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, "trt:AddAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfiguration 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, "trt:AddAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfiguration 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, "trt:AddAudioEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddAudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_get__trt__AddAudioEncoderConfiguration(struct soap*, _trt__AddAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddAudioEncoderConfiguration(struct soap *soap, _trt__AddAudioEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddAudioEncoderConfiguration(struct soap *soap, _trt__AddAudioEncoderConfiguration *p) -{ - if (::soap_read__trt__AddAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoSourceConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveVideoSourceConfigurationResponse(struct soap*, const char*, _trt__RemoveVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveVideoSourceConfigurationResponse * soap_new__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveVideoSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveVideoSourceConfigurationResponse * soap_new_req__trt__RemoveVideoSourceConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveVideoSourceConfigurationResponse *_p = ::soap_new__trt__RemoveVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveVideoSourceConfigurationResponse * soap_new_set__trt__RemoveVideoSourceConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveVideoSourceConfigurationResponse *_p = ::soap_new__trt__RemoveVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, _trt__RemoveVideoSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfigurationResponse 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, "trt:RemoveVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfigurationResponse 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, "trt:RemoveVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfigurationResponse 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, "trt:RemoveVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveVideoSourceConfigurationResponse(struct soap*, _trt__RemoveVideoSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, _trt__RemoveVideoSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveVideoSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveVideoSourceConfigurationResponse(struct soap *soap, _trt__RemoveVideoSourceConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveVideoSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveVideoSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoSourceConfiguration(struct soap*, const char*, int, const _trt__RemoveVideoSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__RemoveVideoSourceConfiguration(struct soap*, const char*, _trt__RemoveVideoSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveVideoSourceConfiguration * soap_new__trt__RemoveVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveVideoSourceConfiguration * soap_new_req__trt__RemoveVideoSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveVideoSourceConfiguration *_p = ::soap_new__trt__RemoveVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveVideoSourceConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveVideoSourceConfiguration * soap_new_set__trt__RemoveVideoSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveVideoSourceConfiguration *_p = ::soap_new__trt__RemoveVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveVideoSourceConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveVideoSourceConfiguration(struct soap *soap, _trt__RemoveVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfiguration 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, "trt:RemoveVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfiguration 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, "trt:RemoveVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfiguration 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, "trt:RemoveVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__RemoveVideoSourceConfiguration(struct soap*, _trt__RemoveVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveVideoSourceConfiguration(struct soap *soap, _trt__RemoveVideoSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveVideoSourceConfiguration(struct soap *soap, _trt__RemoveVideoSourceConfiguration *p) -{ - if (::soap_read__trt__RemoveVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddVideoSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddVideoSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoSourceConfigurationResponse(struct soap*, const char*, int, const _trt__AddVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddVideoSourceConfigurationResponse(struct soap*, const char*, _trt__AddVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddVideoSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddVideoSourceConfigurationResponse * soap_new__trt__AddVideoSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddVideoSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddVideoSourceConfigurationResponse * soap_new_req__trt__AddVideoSourceConfigurationResponse( - struct soap *soap) -{ - _trt__AddVideoSourceConfigurationResponse *_p = ::soap_new__trt__AddVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddVideoSourceConfigurationResponse * soap_new_set__trt__AddVideoSourceConfigurationResponse( - struct soap *soap) -{ - _trt__AddVideoSourceConfigurationResponse *_p = ::soap_new__trt__AddVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddVideoSourceConfigurationResponse(struct soap *soap, _trt__AddVideoSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoSourceConfigurationResponse 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, "trt:AddVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoSourceConfigurationResponse 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, "trt:AddVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoSourceConfigurationResponse 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, "trt:AddVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddVideoSourceConfigurationResponse(struct soap*, _trt__AddVideoSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddVideoSourceConfigurationResponse(struct soap *soap, _trt__AddVideoSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddVideoSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddVideoSourceConfigurationResponse(struct soap *soap, _trt__AddVideoSourceConfigurationResponse *p) -{ - if (::soap_read__trt__AddVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddVideoSourceConfiguration_DEFINED -#define SOAP_TYPE__trt__AddVideoSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoSourceConfiguration(struct soap*, const char*, int, const _trt__AddVideoSourceConfiguration *, const char*); -SOAP_FMAC3 _trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_in__trt__AddVideoSourceConfiguration(struct soap*, const char*, _trt__AddVideoSourceConfiguration *, const char*); -SOAP_FMAC1 _trt__AddVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddVideoSourceConfiguration * soap_new__trt__AddVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddVideoSourceConfiguration * soap_new_req__trt__AddVideoSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddVideoSourceConfiguration *_p = ::soap_new__trt__AddVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddVideoSourceConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddVideoSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddVideoSourceConfiguration * soap_new_set__trt__AddVideoSourceConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddVideoSourceConfiguration *_p = ::soap_new__trt__AddVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddVideoSourceConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddVideoSourceConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddVideoSourceConfiguration(struct soap *soap, _trt__AddVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__AddVideoSourceConfiguration 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, "trt:AddVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__AddVideoSourceConfiguration 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, "trt:AddVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__AddVideoSourceConfiguration 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, "trt:AddVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_get__trt__AddVideoSourceConfiguration(struct soap*, _trt__AddVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddVideoSourceConfiguration(struct soap *soap, _trt__AddVideoSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, _trt__AddVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddVideoSourceConfiguration(struct soap *soap, _trt__AddVideoSourceConfiguration *p) -{ - if (::soap_read__trt__AddVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__RemoveVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__RemoveVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__RemoveVideoEncoderConfigurationResponse(struct soap*, const char*, _trt__RemoveVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__RemoveVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveVideoEncoderConfigurationResponse * soap_new__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveVideoEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveVideoEncoderConfigurationResponse * soap_new_req__trt__RemoveVideoEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveVideoEncoderConfigurationResponse *_p = ::soap_new__trt__RemoveVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__RemoveVideoEncoderConfigurationResponse * soap_new_set__trt__RemoveVideoEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__RemoveVideoEncoderConfigurationResponse *_p = ::soap_new__trt__RemoveVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, _trt__RemoveVideoEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfigurationResponse 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, "trt:RemoveVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfigurationResponse 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, "trt:RemoveVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfigurationResponse 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, "trt:RemoveVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__RemoveVideoEncoderConfigurationResponse(struct soap*, _trt__RemoveVideoEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, _trt__RemoveVideoEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveVideoEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveVideoEncoderConfigurationResponse(struct soap *soap, _trt__RemoveVideoEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__RemoveVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__RemoveVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__RemoveVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__RemoveVideoEncoderConfiguration(struct soap*, const char*, int, const _trt__RemoveVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__RemoveVideoEncoderConfiguration(struct soap*, const char*, _trt__RemoveVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__RemoveVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__RemoveVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__RemoveVideoEncoderConfiguration * soap_new__trt__RemoveVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__RemoveVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__RemoveVideoEncoderConfiguration * soap_new_req__trt__RemoveVideoEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveVideoEncoderConfiguration *_p = ::soap_new__trt__RemoveVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveVideoEncoderConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__RemoveVideoEncoderConfiguration * soap_new_set__trt__RemoveVideoEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__RemoveVideoEncoderConfiguration *_p = ::soap_new__trt__RemoveVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__RemoveVideoEncoderConfiguration::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__RemoveVideoEncoderConfiguration(struct soap *soap, _trt__RemoveVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:RemoveVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfiguration 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, "trt:RemoveVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfiguration 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, "trt:RemoveVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfiguration 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, "trt:RemoveVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__RemoveVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__RemoveVideoEncoderConfiguration(struct soap*, _trt__RemoveVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__RemoveVideoEncoderConfiguration(struct soap *soap, _trt__RemoveVideoEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__RemoveVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__RemoveVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__RemoveVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__RemoveVideoEncoderConfiguration(struct soap *soap, _trt__RemoveVideoEncoderConfiguration *p) -{ - if (::soap_read__trt__RemoveVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse_DEFINED -#define SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoEncoderConfigurationResponse(struct soap*, const char*, int, const _trt__AddVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC3 _trt__AddVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_in__trt__AddVideoEncoderConfigurationResponse(struct soap*, const char*, _trt__AddVideoEncoderConfigurationResponse *, const char*); -SOAP_FMAC1 _trt__AddVideoEncoderConfigurationResponse * SOAP_FMAC2 soap_instantiate__trt__AddVideoEncoderConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddVideoEncoderConfigurationResponse * soap_new__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddVideoEncoderConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddVideoEncoderConfigurationResponse * soap_new_req__trt__AddVideoEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__AddVideoEncoderConfigurationResponse *_p = ::soap_new__trt__AddVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__AddVideoEncoderConfigurationResponse * soap_new_set__trt__AddVideoEncoderConfigurationResponse( - struct soap *soap) -{ - _trt__AddVideoEncoderConfigurationResponse *_p = ::soap_new__trt__AddVideoEncoderConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, _trt__AddVideoEncoderConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfigurationResponse 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, "trt:AddVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfigurationResponse 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, "trt:AddVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfigurationResponse 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, "trt:AddVideoEncoderConfigurationResponse", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddVideoEncoderConfigurationResponse * SOAP_FMAC4 soap_get__trt__AddVideoEncoderConfigurationResponse(struct soap*, _trt__AddVideoEncoderConfigurationResponse *, const char*, const char*); - -inline int soap_read__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, _trt__AddVideoEncoderConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddVideoEncoderConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddVideoEncoderConfigurationResponse(struct soap *soap, _trt__AddVideoEncoderConfigurationResponse *p) -{ - if (::soap_read__trt__AddVideoEncoderConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__AddVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE__trt__AddVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__AddVideoEncoderConfiguration(struct soap*, const char*, int, const _trt__AddVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 _trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_in__trt__AddVideoEncoderConfiguration(struct soap*, const char*, _trt__AddVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 _trt__AddVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate__trt__AddVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__AddVideoEncoderConfiguration * soap_new__trt__AddVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__AddVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _trt__AddVideoEncoderConfiguration * soap_new_req__trt__AddVideoEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddVideoEncoderConfiguration *_p = ::soap_new__trt__AddVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddVideoEncoderConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddVideoEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline _trt__AddVideoEncoderConfiguration * soap_new_set__trt__AddVideoEncoderConfiguration( - struct soap *soap, - const std::string& ProfileToken, - const std::string& ConfigurationToken) -{ - _trt__AddVideoEncoderConfiguration *_p = ::soap_new__trt__AddVideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__AddVideoEncoderConfiguration::ProfileToken = ProfileToken; - _p->_trt__AddVideoEncoderConfiguration::ConfigurationToken = ConfigurationToken; - } - return _p; -} - -inline int soap_write__trt__AddVideoEncoderConfiguration(struct soap *soap, _trt__AddVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:AddVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfiguration 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, "trt:AddVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfiguration 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, "trt:AddVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfiguration 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, "trt:AddVideoEncoderConfiguration", p->soap_type() == SOAP_TYPE__trt__AddVideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_get__trt__AddVideoEncoderConfiguration(struct soap*, _trt__AddVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read__trt__AddVideoEncoderConfiguration(struct soap *soap, _trt__AddVideoEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__AddVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, _trt__AddVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__AddVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__AddVideoEncoderConfiguration(struct soap *soap, _trt__AddVideoEncoderConfiguration *p) -{ - if (::soap_read__trt__AddVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetProfilesResponse_DEFINED -#define SOAP_TYPE__trt__GetProfilesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfilesResponse(struct soap*, const char*, int, const _trt__GetProfilesResponse *, const char*); -SOAP_FMAC3 _trt__GetProfilesResponse * SOAP_FMAC4 soap_in__trt__GetProfilesResponse(struct soap*, const char*, _trt__GetProfilesResponse *, const char*); -SOAP_FMAC1 _trt__GetProfilesResponse * SOAP_FMAC2 soap_instantiate__trt__GetProfilesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetProfilesResponse * soap_new__trt__GetProfilesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetProfilesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetProfilesResponse * soap_new_req__trt__GetProfilesResponse( - struct soap *soap) -{ - _trt__GetProfilesResponse *_p = ::soap_new__trt__GetProfilesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetProfilesResponse * soap_new_set__trt__GetProfilesResponse( - struct soap *soap, - const std::vector & Profiles) -{ - _trt__GetProfilesResponse *_p = ::soap_new__trt__GetProfilesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetProfilesResponse::Profiles = Profiles; - } - return _p; -} - -inline int soap_write__trt__GetProfilesResponse(struct soap *soap, _trt__GetProfilesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetProfilesResponse", p->soap_type() == SOAP_TYPE__trt__GetProfilesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetProfilesResponse(struct soap *soap, const char *URL, _trt__GetProfilesResponse 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, "trt:GetProfilesResponse", p->soap_type() == SOAP_TYPE__trt__GetProfilesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetProfilesResponse(struct soap *soap, const char *URL, _trt__GetProfilesResponse 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, "trt:GetProfilesResponse", p->soap_type() == SOAP_TYPE__trt__GetProfilesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetProfilesResponse(struct soap *soap, const char *URL, _trt__GetProfilesResponse 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, "trt:GetProfilesResponse", p->soap_type() == SOAP_TYPE__trt__GetProfilesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetProfilesResponse * SOAP_FMAC4 soap_get__trt__GetProfilesResponse(struct soap*, _trt__GetProfilesResponse *, const char*, const char*); - -inline int soap_read__trt__GetProfilesResponse(struct soap *soap, _trt__GetProfilesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetProfilesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetProfilesResponse(struct soap *soap, const char *URL, _trt__GetProfilesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetProfilesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetProfilesResponse(struct soap *soap, _trt__GetProfilesResponse *p) -{ - if (::soap_read__trt__GetProfilesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetProfiles_DEFINED -#define SOAP_TYPE__trt__GetProfiles_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfiles(struct soap*, const char*, int, const _trt__GetProfiles *, const char*); -SOAP_FMAC3 _trt__GetProfiles * SOAP_FMAC4 soap_in__trt__GetProfiles(struct soap*, const char*, _trt__GetProfiles *, const char*); -SOAP_FMAC1 _trt__GetProfiles * SOAP_FMAC2 soap_instantiate__trt__GetProfiles(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetProfiles * soap_new__trt__GetProfiles(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetProfiles(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetProfiles * soap_new_req__trt__GetProfiles( - struct soap *soap) -{ - _trt__GetProfiles *_p = ::soap_new__trt__GetProfiles(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetProfiles * soap_new_set__trt__GetProfiles( - struct soap *soap) -{ - _trt__GetProfiles *_p = ::soap_new__trt__GetProfiles(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetProfiles(struct soap *soap, _trt__GetProfiles const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetProfiles", p->soap_type() == SOAP_TYPE__trt__GetProfiles ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetProfiles(struct soap *soap, const char *URL, _trt__GetProfiles 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, "trt:GetProfiles", p->soap_type() == SOAP_TYPE__trt__GetProfiles ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetProfiles(struct soap *soap, const char *URL, _trt__GetProfiles 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, "trt:GetProfiles", p->soap_type() == SOAP_TYPE__trt__GetProfiles ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetProfiles(struct soap *soap, const char *URL, _trt__GetProfiles 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, "trt:GetProfiles", p->soap_type() == SOAP_TYPE__trt__GetProfiles ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetProfiles * SOAP_FMAC4 soap_get__trt__GetProfiles(struct soap*, _trt__GetProfiles *, const char*, const char*); - -inline int soap_read__trt__GetProfiles(struct soap *soap, _trt__GetProfiles *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetProfiles(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetProfiles(struct soap *soap, const char *URL, _trt__GetProfiles *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetProfiles(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetProfiles(struct soap *soap, _trt__GetProfiles *p) -{ - if (::soap_read__trt__GetProfiles(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetProfileResponse_DEFINED -#define SOAP_TYPE__trt__GetProfileResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfileResponse(struct soap*, const char*, int, const _trt__GetProfileResponse *, const char*); -SOAP_FMAC3 _trt__GetProfileResponse * SOAP_FMAC4 soap_in__trt__GetProfileResponse(struct soap*, const char*, _trt__GetProfileResponse *, const char*); -SOAP_FMAC1 _trt__GetProfileResponse * SOAP_FMAC2 soap_instantiate__trt__GetProfileResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetProfileResponse * soap_new__trt__GetProfileResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetProfileResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetProfileResponse * soap_new_req__trt__GetProfileResponse( - struct soap *soap, - tt__Profile *Profile) -{ - _trt__GetProfileResponse *_p = ::soap_new__trt__GetProfileResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetProfileResponse::Profile = Profile; - } - return _p; -} - -inline _trt__GetProfileResponse * soap_new_set__trt__GetProfileResponse( - struct soap *soap, - tt__Profile *Profile) -{ - _trt__GetProfileResponse *_p = ::soap_new__trt__GetProfileResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetProfileResponse::Profile = Profile; - } - return _p; -} - -inline int soap_write__trt__GetProfileResponse(struct soap *soap, _trt__GetProfileResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetProfileResponse", p->soap_type() == SOAP_TYPE__trt__GetProfileResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetProfileResponse(struct soap *soap, const char *URL, _trt__GetProfileResponse 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, "trt:GetProfileResponse", p->soap_type() == SOAP_TYPE__trt__GetProfileResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetProfileResponse(struct soap *soap, const char *URL, _trt__GetProfileResponse 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, "trt:GetProfileResponse", p->soap_type() == SOAP_TYPE__trt__GetProfileResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetProfileResponse(struct soap *soap, const char *URL, _trt__GetProfileResponse 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, "trt:GetProfileResponse", p->soap_type() == SOAP_TYPE__trt__GetProfileResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetProfileResponse * SOAP_FMAC4 soap_get__trt__GetProfileResponse(struct soap*, _trt__GetProfileResponse *, const char*, const char*); - -inline int soap_read__trt__GetProfileResponse(struct soap *soap, _trt__GetProfileResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetProfileResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetProfileResponse(struct soap *soap, const char *URL, _trt__GetProfileResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetProfileResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetProfileResponse(struct soap *soap, _trt__GetProfileResponse *p) -{ - if (::soap_read__trt__GetProfileResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetProfile_DEFINED -#define SOAP_TYPE__trt__GetProfile_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetProfile(struct soap*, const char*, int, const _trt__GetProfile *, const char*); -SOAP_FMAC3 _trt__GetProfile * SOAP_FMAC4 soap_in__trt__GetProfile(struct soap*, const char*, _trt__GetProfile *, const char*); -SOAP_FMAC1 _trt__GetProfile * SOAP_FMAC2 soap_instantiate__trt__GetProfile(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetProfile * soap_new__trt__GetProfile(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetProfile(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetProfile * soap_new_req__trt__GetProfile( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetProfile *_p = ::soap_new__trt__GetProfile(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetProfile::ProfileToken = ProfileToken; - } - return _p; -} - -inline _trt__GetProfile * soap_new_set__trt__GetProfile( - struct soap *soap, - const std::string& ProfileToken) -{ - _trt__GetProfile *_p = ::soap_new__trt__GetProfile(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetProfile::ProfileToken = ProfileToken; - } - return _p; -} - -inline int soap_write__trt__GetProfile(struct soap *soap, _trt__GetProfile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetProfile", p->soap_type() == SOAP_TYPE__trt__GetProfile ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetProfile(struct soap *soap, const char *URL, _trt__GetProfile 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, "trt:GetProfile", p->soap_type() == SOAP_TYPE__trt__GetProfile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetProfile(struct soap *soap, const char *URL, _trt__GetProfile 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, "trt:GetProfile", p->soap_type() == SOAP_TYPE__trt__GetProfile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetProfile(struct soap *soap, const char *URL, _trt__GetProfile 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, "trt:GetProfile", p->soap_type() == SOAP_TYPE__trt__GetProfile ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetProfile * SOAP_FMAC4 soap_get__trt__GetProfile(struct soap*, _trt__GetProfile *, const char*, const char*); - -inline int soap_read__trt__GetProfile(struct soap *soap, _trt__GetProfile *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetProfile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetProfile(struct soap *soap, const char *URL, _trt__GetProfile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetProfile(struct soap *soap, _trt__GetProfile *p) -{ - if (::soap_read__trt__GetProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__CreateProfileResponse_DEFINED -#define SOAP_TYPE__trt__CreateProfileResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateProfileResponse(struct soap*, const char*, int, const _trt__CreateProfileResponse *, const char*); -SOAP_FMAC3 _trt__CreateProfileResponse * SOAP_FMAC4 soap_in__trt__CreateProfileResponse(struct soap*, const char*, _trt__CreateProfileResponse *, const char*); -SOAP_FMAC1 _trt__CreateProfileResponse * SOAP_FMAC2 soap_instantiate__trt__CreateProfileResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__CreateProfileResponse * soap_new__trt__CreateProfileResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__CreateProfileResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__CreateProfileResponse * soap_new_req__trt__CreateProfileResponse( - struct soap *soap, - tt__Profile *Profile) -{ - _trt__CreateProfileResponse *_p = ::soap_new__trt__CreateProfileResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateProfileResponse::Profile = Profile; - } - return _p; -} - -inline _trt__CreateProfileResponse * soap_new_set__trt__CreateProfileResponse( - struct soap *soap, - tt__Profile *Profile) -{ - _trt__CreateProfileResponse *_p = ::soap_new__trt__CreateProfileResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateProfileResponse::Profile = Profile; - } - return _p; -} - -inline int soap_write__trt__CreateProfileResponse(struct soap *soap, _trt__CreateProfileResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:CreateProfileResponse", p->soap_type() == SOAP_TYPE__trt__CreateProfileResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__CreateProfileResponse(struct soap *soap, const char *URL, _trt__CreateProfileResponse 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, "trt:CreateProfileResponse", p->soap_type() == SOAP_TYPE__trt__CreateProfileResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__CreateProfileResponse(struct soap *soap, const char *URL, _trt__CreateProfileResponse 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, "trt:CreateProfileResponse", p->soap_type() == SOAP_TYPE__trt__CreateProfileResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__CreateProfileResponse(struct soap *soap, const char *URL, _trt__CreateProfileResponse 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, "trt:CreateProfileResponse", p->soap_type() == SOAP_TYPE__trt__CreateProfileResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__CreateProfileResponse * SOAP_FMAC4 soap_get__trt__CreateProfileResponse(struct soap*, _trt__CreateProfileResponse *, const char*, const char*); - -inline int soap_read__trt__CreateProfileResponse(struct soap *soap, _trt__CreateProfileResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__CreateProfileResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__CreateProfileResponse(struct soap *soap, const char *URL, _trt__CreateProfileResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__CreateProfileResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__CreateProfileResponse(struct soap *soap, _trt__CreateProfileResponse *p) -{ - if (::soap_read__trt__CreateProfileResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__CreateProfile_DEFINED -#define SOAP_TYPE__trt__CreateProfile_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__CreateProfile(struct soap*, const char*, int, const _trt__CreateProfile *, const char*); -SOAP_FMAC3 _trt__CreateProfile * SOAP_FMAC4 soap_in__trt__CreateProfile(struct soap*, const char*, _trt__CreateProfile *, const char*); -SOAP_FMAC1 _trt__CreateProfile * SOAP_FMAC2 soap_instantiate__trt__CreateProfile(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__CreateProfile * soap_new__trt__CreateProfile(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__CreateProfile(soap, n, NULL, NULL, NULL); -} - -inline _trt__CreateProfile * soap_new_req__trt__CreateProfile( - struct soap *soap, - const std::string& Name) -{ - _trt__CreateProfile *_p = ::soap_new__trt__CreateProfile(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateProfile::Name = Name; - } - return _p; -} - -inline _trt__CreateProfile * soap_new_set__trt__CreateProfile( - struct soap *soap, - const std::string& Name, - std::string *Token) -{ - _trt__CreateProfile *_p = ::soap_new__trt__CreateProfile(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__CreateProfile::Name = Name; - _p->_trt__CreateProfile::Token = Token; - } - return _p; -} - -inline int soap_write__trt__CreateProfile(struct soap *soap, _trt__CreateProfile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:CreateProfile", p->soap_type() == SOAP_TYPE__trt__CreateProfile ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__CreateProfile(struct soap *soap, const char *URL, _trt__CreateProfile 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, "trt:CreateProfile", p->soap_type() == SOAP_TYPE__trt__CreateProfile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__CreateProfile(struct soap *soap, const char *URL, _trt__CreateProfile 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, "trt:CreateProfile", p->soap_type() == SOAP_TYPE__trt__CreateProfile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__CreateProfile(struct soap *soap, const char *URL, _trt__CreateProfile 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, "trt:CreateProfile", p->soap_type() == SOAP_TYPE__trt__CreateProfile ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__CreateProfile * SOAP_FMAC4 soap_get__trt__CreateProfile(struct soap*, _trt__CreateProfile *, const char*, const char*); - -inline int soap_read__trt__CreateProfile(struct soap *soap, _trt__CreateProfile *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__CreateProfile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__CreateProfile(struct soap *soap, const char *URL, _trt__CreateProfile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__CreateProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__CreateProfile(struct soap *soap, _trt__CreateProfile *p) -{ - if (::soap_read__trt__CreateProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputsResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputsResponse(struct soap*, const char*, int, const _trt__GetAudioOutputsResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputsResponse * SOAP_FMAC4 soap_in__trt__GetAudioOutputsResponse(struct soap*, const char*, _trt__GetAudioOutputsResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputsResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputsResponse * soap_new__trt__GetAudioOutputsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputsResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputsResponse * soap_new_req__trt__GetAudioOutputsResponse( - struct soap *soap) -{ - _trt__GetAudioOutputsResponse *_p = ::soap_new__trt__GetAudioOutputsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioOutputsResponse * soap_new_set__trt__GetAudioOutputsResponse( - struct soap *soap, - const std::vector & AudioOutputs) -{ - _trt__GetAudioOutputsResponse *_p = ::soap_new__trt__GetAudioOutputsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioOutputsResponse::AudioOutputs = AudioOutputs; - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputsResponse(struct soap *soap, _trt__GetAudioOutputsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputsResponse 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, "trt:GetAudioOutputsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputsResponse 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, "trt:GetAudioOutputsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputsResponse 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, "trt:GetAudioOutputsResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputsResponse * SOAP_FMAC4 soap_get__trt__GetAudioOutputsResponse(struct soap*, _trt__GetAudioOutputsResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputsResponse(struct soap *soap, _trt__GetAudioOutputsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputsResponse(struct soap *soap, const char *URL, _trt__GetAudioOutputsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputsResponse(struct soap *soap, _trt__GetAudioOutputsResponse *p) -{ - if (::soap_read__trt__GetAudioOutputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioOutputs_DEFINED -#define SOAP_TYPE__trt__GetAudioOutputs_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioOutputs(struct soap*, const char*, int, const _trt__GetAudioOutputs *, const char*); -SOAP_FMAC3 _trt__GetAudioOutputs * SOAP_FMAC4 soap_in__trt__GetAudioOutputs(struct soap*, const char*, _trt__GetAudioOutputs *, const char*); -SOAP_FMAC1 _trt__GetAudioOutputs * SOAP_FMAC2 soap_instantiate__trt__GetAudioOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioOutputs * soap_new__trt__GetAudioOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioOutputs(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioOutputs * soap_new_req__trt__GetAudioOutputs( - struct soap *soap) -{ - _trt__GetAudioOutputs *_p = ::soap_new__trt__GetAudioOutputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioOutputs * soap_new_set__trt__GetAudioOutputs( - struct soap *soap) -{ - _trt__GetAudioOutputs *_p = ::soap_new__trt__GetAudioOutputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetAudioOutputs(struct soap *soap, _trt__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioOutputs", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputs ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioOutputs(struct soap *soap, const char *URL, _trt__GetAudioOutputs 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, "trt:GetAudioOutputs", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioOutputs(struct soap *soap, const char *URL, _trt__GetAudioOutputs 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, "trt:GetAudioOutputs", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioOutputs(struct soap *soap, const char *URL, _trt__GetAudioOutputs 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, "trt:GetAudioOutputs", p->soap_type() == SOAP_TYPE__trt__GetAudioOutputs ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioOutputs * SOAP_FMAC4 soap_get__trt__GetAudioOutputs(struct soap*, _trt__GetAudioOutputs *, const char*, const char*); - -inline int soap_read__trt__GetAudioOutputs(struct soap *soap, _trt__GetAudioOutputs *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioOutputs(struct soap *soap, const char *URL, _trt__GetAudioOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioOutputs(struct soap *soap, _trt__GetAudioOutputs *p) -{ - if (::soap_read__trt__GetAudioOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSourcesResponse_DEFINED -#define SOAP_TYPE__trt__GetAudioSourcesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSourcesResponse(struct soap*, const char*, int, const _trt__GetAudioSourcesResponse *, const char*); -SOAP_FMAC3 _trt__GetAudioSourcesResponse * SOAP_FMAC4 soap_in__trt__GetAudioSourcesResponse(struct soap*, const char*, _trt__GetAudioSourcesResponse *, const char*); -SOAP_FMAC1 _trt__GetAudioSourcesResponse * SOAP_FMAC2 soap_instantiate__trt__GetAudioSourcesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSourcesResponse * soap_new__trt__GetAudioSourcesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSourcesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSourcesResponse * soap_new_req__trt__GetAudioSourcesResponse( - struct soap *soap) -{ - _trt__GetAudioSourcesResponse *_p = ::soap_new__trt__GetAudioSourcesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioSourcesResponse * soap_new_set__trt__GetAudioSourcesResponse( - struct soap *soap, - const std::vector & AudioSources) -{ - _trt__GetAudioSourcesResponse *_p = ::soap_new__trt__GetAudioSourcesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetAudioSourcesResponse::AudioSources = AudioSources; - } - return _p; -} - -inline int soap_write__trt__GetAudioSourcesResponse(struct soap *soap, _trt__GetAudioSourcesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourcesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSourcesResponse(struct soap *soap, const char *URL, _trt__GetAudioSourcesResponse 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, "trt:GetAudioSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourcesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSourcesResponse(struct soap *soap, const char *URL, _trt__GetAudioSourcesResponse 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, "trt:GetAudioSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourcesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSourcesResponse(struct soap *soap, const char *URL, _trt__GetAudioSourcesResponse 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, "trt:GetAudioSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetAudioSourcesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSourcesResponse * SOAP_FMAC4 soap_get__trt__GetAudioSourcesResponse(struct soap*, _trt__GetAudioSourcesResponse *, const char*, const char*); - -inline int soap_read__trt__GetAudioSourcesResponse(struct soap *soap, _trt__GetAudioSourcesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSourcesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSourcesResponse(struct soap *soap, const char *URL, _trt__GetAudioSourcesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSourcesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSourcesResponse(struct soap *soap, _trt__GetAudioSourcesResponse *p) -{ - if (::soap_read__trt__GetAudioSourcesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetAudioSources_DEFINED -#define SOAP_TYPE__trt__GetAudioSources_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetAudioSources(struct soap*, const char*, int, const _trt__GetAudioSources *, const char*); -SOAP_FMAC3 _trt__GetAudioSources * SOAP_FMAC4 soap_in__trt__GetAudioSources(struct soap*, const char*, _trt__GetAudioSources *, const char*); -SOAP_FMAC1 _trt__GetAudioSources * SOAP_FMAC2 soap_instantiate__trt__GetAudioSources(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetAudioSources * soap_new__trt__GetAudioSources(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetAudioSources(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetAudioSources * soap_new_req__trt__GetAudioSources( - struct soap *soap) -{ - _trt__GetAudioSources *_p = ::soap_new__trt__GetAudioSources(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetAudioSources * soap_new_set__trt__GetAudioSources( - struct soap *soap) -{ - _trt__GetAudioSources *_p = ::soap_new__trt__GetAudioSources(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetAudioSources(struct soap *soap, _trt__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetAudioSources", p->soap_type() == SOAP_TYPE__trt__GetAudioSources ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetAudioSources(struct soap *soap, const char *URL, _trt__GetAudioSources 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, "trt:GetAudioSources", p->soap_type() == SOAP_TYPE__trt__GetAudioSources ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetAudioSources(struct soap *soap, const char *URL, _trt__GetAudioSources 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, "trt:GetAudioSources", p->soap_type() == SOAP_TYPE__trt__GetAudioSources ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetAudioSources(struct soap *soap, const char *URL, _trt__GetAudioSources 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, "trt:GetAudioSources", p->soap_type() == SOAP_TYPE__trt__GetAudioSources ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetAudioSources * SOAP_FMAC4 soap_get__trt__GetAudioSources(struct soap*, _trt__GetAudioSources *, const char*, const char*); - -inline int soap_read__trt__GetAudioSources(struct soap *soap, _trt__GetAudioSources *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetAudioSources(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetAudioSources(struct soap *soap, const char *URL, _trt__GetAudioSources *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetAudioSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetAudioSources(struct soap *soap, _trt__GetAudioSources *p) -{ - if (::soap_read__trt__GetAudioSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSourcesResponse_DEFINED -#define SOAP_TYPE__trt__GetVideoSourcesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSourcesResponse(struct soap*, const char*, int, const _trt__GetVideoSourcesResponse *, const char*); -SOAP_FMAC3 _trt__GetVideoSourcesResponse * SOAP_FMAC4 soap_in__trt__GetVideoSourcesResponse(struct soap*, const char*, _trt__GetVideoSourcesResponse *, const char*); -SOAP_FMAC1 _trt__GetVideoSourcesResponse * SOAP_FMAC2 soap_instantiate__trt__GetVideoSourcesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSourcesResponse * soap_new__trt__GetVideoSourcesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSourcesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSourcesResponse * soap_new_req__trt__GetVideoSourcesResponse( - struct soap *soap) -{ - _trt__GetVideoSourcesResponse *_p = ::soap_new__trt__GetVideoSourcesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoSourcesResponse * soap_new_set__trt__GetVideoSourcesResponse( - struct soap *soap, - const std::vector & VideoSources) -{ - _trt__GetVideoSourcesResponse *_p = ::soap_new__trt__GetVideoSourcesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetVideoSourcesResponse::VideoSources = VideoSources; - } - return _p; -} - -inline int soap_write__trt__GetVideoSourcesResponse(struct soap *soap, _trt__GetVideoSourcesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourcesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSourcesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourcesResponse 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, "trt:GetVideoSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourcesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSourcesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourcesResponse 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, "trt:GetVideoSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourcesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSourcesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourcesResponse 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, "trt:GetVideoSourcesResponse", p->soap_type() == SOAP_TYPE__trt__GetVideoSourcesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSourcesResponse * SOAP_FMAC4 soap_get__trt__GetVideoSourcesResponse(struct soap*, _trt__GetVideoSourcesResponse *, const char*, const char*); - -inline int soap_read__trt__GetVideoSourcesResponse(struct soap *soap, _trt__GetVideoSourcesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSourcesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSourcesResponse(struct soap *soap, const char *URL, _trt__GetVideoSourcesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSourcesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSourcesResponse(struct soap *soap, _trt__GetVideoSourcesResponse *p) -{ - if (::soap_read__trt__GetVideoSourcesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetVideoSources_DEFINED -#define SOAP_TYPE__trt__GetVideoSources_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetVideoSources(struct soap*, const char*, int, const _trt__GetVideoSources *, const char*); -SOAP_FMAC3 _trt__GetVideoSources * SOAP_FMAC4 soap_in__trt__GetVideoSources(struct soap*, const char*, _trt__GetVideoSources *, const char*); -SOAP_FMAC1 _trt__GetVideoSources * SOAP_FMAC2 soap_instantiate__trt__GetVideoSources(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetVideoSources * soap_new__trt__GetVideoSources(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetVideoSources(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetVideoSources * soap_new_req__trt__GetVideoSources( - struct soap *soap) -{ - _trt__GetVideoSources *_p = ::soap_new__trt__GetVideoSources(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetVideoSources * soap_new_set__trt__GetVideoSources( - struct soap *soap) -{ - _trt__GetVideoSources *_p = ::soap_new__trt__GetVideoSources(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetVideoSources(struct soap *soap, _trt__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetVideoSources", p->soap_type() == SOAP_TYPE__trt__GetVideoSources ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetVideoSources(struct soap *soap, const char *URL, _trt__GetVideoSources 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, "trt:GetVideoSources", p->soap_type() == SOAP_TYPE__trt__GetVideoSources ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetVideoSources(struct soap *soap, const char *URL, _trt__GetVideoSources 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, "trt:GetVideoSources", p->soap_type() == SOAP_TYPE__trt__GetVideoSources ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetVideoSources(struct soap *soap, const char *URL, _trt__GetVideoSources 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, "trt:GetVideoSources", p->soap_type() == SOAP_TYPE__trt__GetVideoSources ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetVideoSources * SOAP_FMAC4 soap_get__trt__GetVideoSources(struct soap*, _trt__GetVideoSources *, const char*, const char*); - -inline int soap_read__trt__GetVideoSources(struct soap *soap, _trt__GetVideoSources *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetVideoSources(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetVideoSources(struct soap *soap, const char *URL, _trt__GetVideoSources *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetVideoSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetVideoSources(struct soap *soap, _trt__GetVideoSources *p) -{ - if (::soap_read__trt__GetVideoSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__trt__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _trt__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _trt__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__trt__GetServiceCapabilitiesResponse(struct soap*, const char*, _trt__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _trt__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__trt__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetServiceCapabilitiesResponse * soap_new__trt__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetServiceCapabilitiesResponse * soap_new_req__trt__GetServiceCapabilitiesResponse( - struct soap *soap, - trt__Capabilities *Capabilities) -{ - _trt__GetServiceCapabilitiesResponse *_p = ::soap_new__trt__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _trt__GetServiceCapabilitiesResponse * soap_new_set__trt__GetServiceCapabilitiesResponse( - struct soap *soap, - trt__Capabilities *Capabilities) -{ - _trt__GetServiceCapabilitiesResponse *_p = ::soap_new__trt__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_trt__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__trt__GetServiceCapabilitiesResponse(struct soap *soap, _trt__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trt__GetServiceCapabilitiesResponse 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, "trt:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trt__GetServiceCapabilitiesResponse 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, "trt:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trt__GetServiceCapabilitiesResponse 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, "trt:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__trt__GetServiceCapabilitiesResponse(struct soap*, _trt__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__trt__GetServiceCapabilitiesResponse(struct soap *soap, _trt__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _trt__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetServiceCapabilitiesResponse(struct soap *soap, _trt__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__trt__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__trt__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__trt__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__trt__GetServiceCapabilities(struct soap*, const char*, int, const _trt__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _trt__GetServiceCapabilities * SOAP_FMAC4 soap_in__trt__GetServiceCapabilities(struct soap*, const char*, _trt__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _trt__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__trt__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _trt__GetServiceCapabilities * soap_new__trt__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__trt__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _trt__GetServiceCapabilities * soap_new_req__trt__GetServiceCapabilities( - struct soap *soap) -{ - _trt__GetServiceCapabilities *_p = ::soap_new__trt__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _trt__GetServiceCapabilities * soap_new_set__trt__GetServiceCapabilities( - struct soap *soap) -{ - _trt__GetServiceCapabilities *_p = ::soap_new__trt__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__trt__GetServiceCapabilities(struct soap *soap, _trt__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__trt__GetServiceCapabilities(struct soap *soap, const char *URL, _trt__GetServiceCapabilities 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, "trt:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__trt__GetServiceCapabilities(struct soap *soap, const char *URL, _trt__GetServiceCapabilities 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, "trt:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__trt__GetServiceCapabilities(struct soap *soap, const char *URL, _trt__GetServiceCapabilities 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, "trt:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__trt__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _trt__GetServiceCapabilities * SOAP_FMAC4 soap_get__trt__GetServiceCapabilities(struct soap*, _trt__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__trt__GetServiceCapabilities(struct soap *soap, _trt__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__trt__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__trt__GetServiceCapabilities(struct soap *soap, const char *URL, _trt__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__trt__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__trt__GetServiceCapabilities(struct soap *soap, _trt__GetServiceCapabilities *p) -{ - if (::soap_read__trt__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trt__VideoSourceModeExtension_DEFINED -#define SOAP_TYPE_trt__VideoSourceModeExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__VideoSourceModeExtension(struct soap*, const char*, int, const trt__VideoSourceModeExtension *, const char*); -SOAP_FMAC3 trt__VideoSourceModeExtension * SOAP_FMAC4 soap_in_trt__VideoSourceModeExtension(struct soap*, const char*, trt__VideoSourceModeExtension *, const char*); -SOAP_FMAC1 trt__VideoSourceModeExtension * SOAP_FMAC2 soap_instantiate_trt__VideoSourceModeExtension(struct soap*, int, const char*, const char*, size_t*); - -inline trt__VideoSourceModeExtension * soap_new_trt__VideoSourceModeExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_trt__VideoSourceModeExtension(soap, n, NULL, NULL, NULL); -} - -inline trt__VideoSourceModeExtension * soap_new_req_trt__VideoSourceModeExtension( - struct soap *soap) -{ - trt__VideoSourceModeExtension *_p = ::soap_new_trt__VideoSourceModeExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline trt__VideoSourceModeExtension * soap_new_set_trt__VideoSourceModeExtension( - struct soap *soap, - const std::vector & __any) -{ - trt__VideoSourceModeExtension *_p = ::soap_new_trt__VideoSourceModeExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->trt__VideoSourceModeExtension::__any = __any; - } - return _p; -} - -inline int soap_write_trt__VideoSourceModeExtension(struct soap *soap, trt__VideoSourceModeExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:VideoSourceModeExtension", p->soap_type() == SOAP_TYPE_trt__VideoSourceModeExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trt__VideoSourceModeExtension(struct soap *soap, const char *URL, trt__VideoSourceModeExtension 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, "trt:VideoSourceModeExtension", p->soap_type() == SOAP_TYPE_trt__VideoSourceModeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trt__VideoSourceModeExtension(struct soap *soap, const char *URL, trt__VideoSourceModeExtension 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, "trt:VideoSourceModeExtension", p->soap_type() == SOAP_TYPE_trt__VideoSourceModeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trt__VideoSourceModeExtension(struct soap *soap, const char *URL, trt__VideoSourceModeExtension 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, "trt:VideoSourceModeExtension", p->soap_type() == SOAP_TYPE_trt__VideoSourceModeExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trt__VideoSourceModeExtension * SOAP_FMAC4 soap_get_trt__VideoSourceModeExtension(struct soap*, trt__VideoSourceModeExtension *, const char*, const char*); - -inline int soap_read_trt__VideoSourceModeExtension(struct soap *soap, trt__VideoSourceModeExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trt__VideoSourceModeExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trt__VideoSourceModeExtension(struct soap *soap, const char *URL, trt__VideoSourceModeExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trt__VideoSourceModeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trt__VideoSourceModeExtension(struct soap *soap, trt__VideoSourceModeExtension *p) -{ - if (::soap_read_trt__VideoSourceModeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trt__VideoSourceMode_DEFINED -#define SOAP_TYPE_trt__VideoSourceMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__VideoSourceMode(struct soap*, const char*, int, const trt__VideoSourceMode *, const char*); -SOAP_FMAC3 trt__VideoSourceMode * SOAP_FMAC4 soap_in_trt__VideoSourceMode(struct soap*, const char*, trt__VideoSourceMode *, const char*); -SOAP_FMAC1 trt__VideoSourceMode * SOAP_FMAC2 soap_instantiate_trt__VideoSourceMode(struct soap*, int, const char*, const char*, size_t*); - -inline trt__VideoSourceMode * soap_new_trt__VideoSourceMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_trt__VideoSourceMode(soap, n, NULL, NULL, NULL); -} - -inline trt__VideoSourceMode * soap_new_req_trt__VideoSourceMode( - struct soap *soap, - float MaxFramerate, - tt__VideoResolution *MaxResolution, - const std::string& Encodings, - bool Reboot, - const std::string& token) -{ - trt__VideoSourceMode *_p = ::soap_new_trt__VideoSourceMode(soap); - if (_p) - { _p->soap_default(soap); - _p->trt__VideoSourceMode::MaxFramerate = MaxFramerate; - _p->trt__VideoSourceMode::MaxResolution = MaxResolution; - _p->trt__VideoSourceMode::Encodings = Encodings; - _p->trt__VideoSourceMode::Reboot = Reboot; - _p->trt__VideoSourceMode::token = token; - } - return _p; -} - -inline trt__VideoSourceMode * soap_new_set_trt__VideoSourceMode( - struct soap *soap, - float MaxFramerate, - tt__VideoResolution *MaxResolution, - const std::string& Encodings, - bool Reboot, - std::string *Description, - trt__VideoSourceModeExtension *Extension, - const std::string& token, - bool *Enabled, - const struct soap_dom_attribute& __anyAttribute) -{ - trt__VideoSourceMode *_p = ::soap_new_trt__VideoSourceMode(soap); - if (_p) - { _p->soap_default(soap); - _p->trt__VideoSourceMode::MaxFramerate = MaxFramerate; - _p->trt__VideoSourceMode::MaxResolution = MaxResolution; - _p->trt__VideoSourceMode::Encodings = Encodings; - _p->trt__VideoSourceMode::Reboot = Reboot; - _p->trt__VideoSourceMode::Description = Description; - _p->trt__VideoSourceMode::Extension = Extension; - _p->trt__VideoSourceMode::token = token; - _p->trt__VideoSourceMode::Enabled = Enabled; - _p->trt__VideoSourceMode::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trt__VideoSourceMode(struct soap *soap, trt__VideoSourceMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:VideoSourceMode", p->soap_type() == SOAP_TYPE_trt__VideoSourceMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trt__VideoSourceMode(struct soap *soap, const char *URL, trt__VideoSourceMode 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, "trt:VideoSourceMode", p->soap_type() == SOAP_TYPE_trt__VideoSourceMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trt__VideoSourceMode(struct soap *soap, const char *URL, trt__VideoSourceMode 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, "trt:VideoSourceMode", p->soap_type() == SOAP_TYPE_trt__VideoSourceMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trt__VideoSourceMode(struct soap *soap, const char *URL, trt__VideoSourceMode 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, "trt:VideoSourceMode", p->soap_type() == SOAP_TYPE_trt__VideoSourceMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trt__VideoSourceMode * SOAP_FMAC4 soap_get_trt__VideoSourceMode(struct soap*, trt__VideoSourceMode *, const char*, const char*); - -inline int soap_read_trt__VideoSourceMode(struct soap *soap, trt__VideoSourceMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trt__VideoSourceMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trt__VideoSourceMode(struct soap *soap, const char *URL, trt__VideoSourceMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trt__VideoSourceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trt__VideoSourceMode(struct soap *soap, trt__VideoSourceMode *p) -{ - if (::soap_read_trt__VideoSourceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trt__StreamingCapabilities_DEFINED -#define SOAP_TYPE_trt__StreamingCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__StreamingCapabilities(struct soap*, const char*, int, const trt__StreamingCapabilities *, const char*); -SOAP_FMAC3 trt__StreamingCapabilities * SOAP_FMAC4 soap_in_trt__StreamingCapabilities(struct soap*, const char*, trt__StreamingCapabilities *, const char*); -SOAP_FMAC1 trt__StreamingCapabilities * SOAP_FMAC2 soap_instantiate_trt__StreamingCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline trt__StreamingCapabilities * soap_new_trt__StreamingCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_trt__StreamingCapabilities(soap, n, NULL, NULL, NULL); -} - -inline trt__StreamingCapabilities * soap_new_req_trt__StreamingCapabilities( - struct soap *soap) -{ - trt__StreamingCapabilities *_p = ::soap_new_trt__StreamingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline trt__StreamingCapabilities * soap_new_set_trt__StreamingCapabilities( - struct soap *soap, - const std::vector & __any, - bool *RTPMulticast, - bool *RTP_USCORETCP, - bool *RTP_USCORERTSP_USCORETCP, - bool *NonAggregateControl, - bool *NoRTSPStreaming, - const struct soap_dom_attribute& __anyAttribute) -{ - trt__StreamingCapabilities *_p = ::soap_new_trt__StreamingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trt__StreamingCapabilities::__any = __any; - _p->trt__StreamingCapabilities::RTPMulticast = RTPMulticast; - _p->trt__StreamingCapabilities::RTP_USCORETCP = RTP_USCORETCP; - _p->trt__StreamingCapabilities::RTP_USCORERTSP_USCORETCP = RTP_USCORERTSP_USCORETCP; - _p->trt__StreamingCapabilities::NonAggregateControl = NonAggregateControl; - _p->trt__StreamingCapabilities::NoRTSPStreaming = NoRTSPStreaming; - _p->trt__StreamingCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trt__StreamingCapabilities(struct soap *soap, trt__StreamingCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:StreamingCapabilities", p->soap_type() == SOAP_TYPE_trt__StreamingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trt__StreamingCapabilities(struct soap *soap, const char *URL, trt__StreamingCapabilities 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, "trt:StreamingCapabilities", p->soap_type() == SOAP_TYPE_trt__StreamingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trt__StreamingCapabilities(struct soap *soap, const char *URL, trt__StreamingCapabilities 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, "trt:StreamingCapabilities", p->soap_type() == SOAP_TYPE_trt__StreamingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trt__StreamingCapabilities(struct soap *soap, const char *URL, trt__StreamingCapabilities 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, "trt:StreamingCapabilities", p->soap_type() == SOAP_TYPE_trt__StreamingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trt__StreamingCapabilities * SOAP_FMAC4 soap_get_trt__StreamingCapabilities(struct soap*, trt__StreamingCapabilities *, const char*, const char*); - -inline int soap_read_trt__StreamingCapabilities(struct soap *soap, trt__StreamingCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trt__StreamingCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trt__StreamingCapabilities(struct soap *soap, const char *URL, trt__StreamingCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trt__StreamingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trt__StreamingCapabilities(struct soap *soap, trt__StreamingCapabilities *p) -{ - if (::soap_read_trt__StreamingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trt__ProfileCapabilities_DEFINED -#define SOAP_TYPE_trt__ProfileCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__ProfileCapabilities(struct soap*, const char*, int, const trt__ProfileCapabilities *, const char*); -SOAP_FMAC3 trt__ProfileCapabilities * SOAP_FMAC4 soap_in_trt__ProfileCapabilities(struct soap*, const char*, trt__ProfileCapabilities *, const char*); -SOAP_FMAC1 trt__ProfileCapabilities * SOAP_FMAC2 soap_instantiate_trt__ProfileCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline trt__ProfileCapabilities * soap_new_trt__ProfileCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_trt__ProfileCapabilities(soap, n, NULL, NULL, NULL); -} - -inline trt__ProfileCapabilities * soap_new_req_trt__ProfileCapabilities( - struct soap *soap) -{ - trt__ProfileCapabilities *_p = ::soap_new_trt__ProfileCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline trt__ProfileCapabilities * soap_new_set_trt__ProfileCapabilities( - struct soap *soap, - const std::vector & __any, - int *MaximumNumberOfProfiles, - const struct soap_dom_attribute& __anyAttribute) -{ - trt__ProfileCapabilities *_p = ::soap_new_trt__ProfileCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trt__ProfileCapabilities::__any = __any; - _p->trt__ProfileCapabilities::MaximumNumberOfProfiles = MaximumNumberOfProfiles; - _p->trt__ProfileCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trt__ProfileCapabilities(struct soap *soap, trt__ProfileCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_trt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trt__ProfileCapabilities(struct soap *soap, const char *URL, trt__ProfileCapabilities 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, "trt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_trt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trt__ProfileCapabilities(struct soap *soap, const char *URL, trt__ProfileCapabilities 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, "trt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_trt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trt__ProfileCapabilities(struct soap *soap, const char *URL, trt__ProfileCapabilities 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, "trt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_trt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trt__ProfileCapabilities * SOAP_FMAC4 soap_get_trt__ProfileCapabilities(struct soap*, trt__ProfileCapabilities *, const char*, const char*); - -inline int soap_read_trt__ProfileCapabilities(struct soap *soap, trt__ProfileCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trt__ProfileCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trt__ProfileCapabilities(struct soap *soap, const char *URL, trt__ProfileCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trt__ProfileCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trt__ProfileCapabilities(struct soap *soap, trt__ProfileCapabilities *p) -{ - if (::soap_read_trt__ProfileCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_trt__Capabilities_DEFINED -#define SOAP_TYPE_trt__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_trt__Capabilities(struct soap*, const char*, int, const trt__Capabilities *, const char*); -SOAP_FMAC3 trt__Capabilities * SOAP_FMAC4 soap_in_trt__Capabilities(struct soap*, const char*, trt__Capabilities *, const char*); -SOAP_FMAC1 trt__Capabilities * SOAP_FMAC2 soap_instantiate_trt__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline trt__Capabilities * soap_new_trt__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_trt__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline trt__Capabilities * soap_new_req_trt__Capabilities( - struct soap *soap, - trt__ProfileCapabilities *ProfileCapabilities, - trt__StreamingCapabilities *StreamingCapabilities) -{ - trt__Capabilities *_p = ::soap_new_trt__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trt__Capabilities::ProfileCapabilities = ProfileCapabilities; - _p->trt__Capabilities::StreamingCapabilities = StreamingCapabilities; - } - return _p; -} - -inline trt__Capabilities * soap_new_set_trt__Capabilities( - struct soap *soap, - trt__ProfileCapabilities *ProfileCapabilities, - trt__StreamingCapabilities *StreamingCapabilities, - const std::vector & __any, - bool *SnapshotUri, - bool *Rotation, - bool *VideoSourceMode, - bool *OSD, - bool *EXICompression, - const struct soap_dom_attribute& __anyAttribute) -{ - trt__Capabilities *_p = ::soap_new_trt__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->trt__Capabilities::ProfileCapabilities = ProfileCapabilities; - _p->trt__Capabilities::StreamingCapabilities = StreamingCapabilities; - _p->trt__Capabilities::__any = __any; - _p->trt__Capabilities::SnapshotUri = SnapshotUri; - _p->trt__Capabilities::Rotation = Rotation; - _p->trt__Capabilities::VideoSourceMode = VideoSourceMode; - _p->trt__Capabilities::OSD = OSD; - _p->trt__Capabilities::EXICompression = EXICompression; - _p->trt__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_trt__Capabilities(struct soap *soap, trt__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "trt:Capabilities", p->soap_type() == SOAP_TYPE_trt__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_trt__Capabilities(struct soap *soap, const char *URL, trt__Capabilities 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, "trt:Capabilities", p->soap_type() == SOAP_TYPE_trt__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_trt__Capabilities(struct soap *soap, const char *URL, trt__Capabilities 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, "trt:Capabilities", p->soap_type() == SOAP_TYPE_trt__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_trt__Capabilities(struct soap *soap, const char *URL, trt__Capabilities 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, "trt:Capabilities", p->soap_type() == SOAP_TYPE_trt__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 trt__Capabilities * SOAP_FMAC4 soap_get_trt__Capabilities(struct soap*, trt__Capabilities *, const char*, const char*); - -inline int soap_read_trt__Capabilities(struct soap *soap, trt__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_trt__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_trt__Capabilities(struct soap *soap, const char *URL, trt__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_trt__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_trt__Capabilities(struct soap *soap, trt__Capabilities *p) -{ - if (::soap_read_trt__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xop__Include_DEFINED -#define SOAP_TYPE_xop__Include_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xop__Include(struct soap*, const char*, int, const xop__Include *, const char*); -SOAP_FMAC3 xop__Include * SOAP_FMAC4 soap_in_xop__Include(struct soap*, const char*, xop__Include *, const char*); -SOAP_FMAC1 xop__Include * SOAP_FMAC2 soap_instantiate_xop__Include(struct soap*, int, const char*, const char*, size_t*); - -inline xop__Include * soap_new_xop__Include(struct soap *soap, int n = -1) -{ - return soap_instantiate_xop__Include(soap, n, NULL, NULL, NULL); -} - -inline xop__Include * soap_new_req_xop__Include( - struct soap *soap, - const std::string& href) -{ - xop__Include *_p = ::soap_new_xop__Include(soap); - if (_p) - { _p->soap_default(soap); - _p->xop__Include::href = href; - } - return _p; -} - -inline xop__Include * soap_new_set_xop__Include( - struct soap *soap, - const std::vector & __any, - const std::string& href, - const struct soap_dom_attribute& __anyAttribute) -{ - xop__Include *_p = ::soap_new_xop__Include(soap); - if (_p) - { _p->soap_default(soap); - _p->xop__Include::__any = __any; - _p->xop__Include::href = href; - _p->xop__Include::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_xop__Include(struct soap *soap, xop__Include const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xop:Include", p->soap_type() == SOAP_TYPE_xop__Include ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xop__Include(struct soap *soap, const char *URL, xop__Include 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, "xop:Include", p->soap_type() == SOAP_TYPE_xop__Include ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xop__Include(struct soap *soap, const char *URL, xop__Include 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, "xop:Include", p->soap_type() == SOAP_TYPE_xop__Include ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xop__Include(struct soap *soap, const char *URL, xop__Include 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, "xop:Include", p->soap_type() == SOAP_TYPE_xop__Include ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xop__Include * SOAP_FMAC4 soap_get_xop__Include(struct soap*, xop__Include *, const char*, const char*); - -inline int soap_read_xop__Include(struct soap *soap, xop__Include *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xop__Include(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xop__Include(struct soap *soap, const char *URL, xop__Include *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xop__Include(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xop__Include(struct soap *soap, xop__Include *p) -{ - if (::soap_read_xop__Include(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__SetCurrentPresetResponse_DEFINED -#define SOAP_TYPE__timg__SetCurrentPresetResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetCurrentPresetResponse(struct soap*, const char*, int, const _timg__SetCurrentPresetResponse *, const char*); -SOAP_FMAC3 _timg__SetCurrentPresetResponse * SOAP_FMAC4 soap_in__timg__SetCurrentPresetResponse(struct soap*, const char*, _timg__SetCurrentPresetResponse *, const char*); -SOAP_FMAC1 _timg__SetCurrentPresetResponse * SOAP_FMAC2 soap_instantiate__timg__SetCurrentPresetResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__SetCurrentPresetResponse * soap_new__timg__SetCurrentPresetResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__SetCurrentPresetResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__SetCurrentPresetResponse * soap_new_req__timg__SetCurrentPresetResponse( - struct soap *soap) -{ - _timg__SetCurrentPresetResponse *_p = ::soap_new__timg__SetCurrentPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _timg__SetCurrentPresetResponse * soap_new_set__timg__SetCurrentPresetResponse( - struct soap *soap) -{ - _timg__SetCurrentPresetResponse *_p = ::soap_new__timg__SetCurrentPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__timg__SetCurrentPresetResponse(struct soap *soap, _timg__SetCurrentPresetResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:SetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__SetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__SetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__SetCurrentPresetResponse 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, "timg:SetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__SetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__SetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__SetCurrentPresetResponse 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, "timg:SetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__SetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__SetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__SetCurrentPresetResponse 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, "timg:SetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__SetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__SetCurrentPresetResponse * SOAP_FMAC4 soap_get__timg__SetCurrentPresetResponse(struct soap*, _timg__SetCurrentPresetResponse *, const char*, const char*); - -inline int soap_read__timg__SetCurrentPresetResponse(struct soap *soap, _timg__SetCurrentPresetResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__SetCurrentPresetResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__SetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__SetCurrentPresetResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__SetCurrentPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__SetCurrentPresetResponse(struct soap *soap, _timg__SetCurrentPresetResponse *p) -{ - if (::soap_read__timg__SetCurrentPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__SetCurrentPreset_DEFINED -#define SOAP_TYPE__timg__SetCurrentPreset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetCurrentPreset(struct soap*, const char*, int, const _timg__SetCurrentPreset *, const char*); -SOAP_FMAC3 _timg__SetCurrentPreset * SOAP_FMAC4 soap_in__timg__SetCurrentPreset(struct soap*, const char*, _timg__SetCurrentPreset *, const char*); -SOAP_FMAC1 _timg__SetCurrentPreset * SOAP_FMAC2 soap_instantiate__timg__SetCurrentPreset(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__SetCurrentPreset * soap_new__timg__SetCurrentPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__SetCurrentPreset(soap, n, NULL, NULL, NULL); -} - -inline _timg__SetCurrentPreset * soap_new_req__timg__SetCurrentPreset( - struct soap *soap, - const std::string& VideoSourceToken, - const std::string& PresetToken) -{ - _timg__SetCurrentPreset *_p = ::soap_new__timg__SetCurrentPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__SetCurrentPreset::VideoSourceToken = VideoSourceToken; - _p->_timg__SetCurrentPreset::PresetToken = PresetToken; - } - return _p; -} - -inline _timg__SetCurrentPreset * soap_new_set__timg__SetCurrentPreset( - struct soap *soap, - const std::string& VideoSourceToken, - const std::string& PresetToken) -{ - _timg__SetCurrentPreset *_p = ::soap_new__timg__SetCurrentPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__SetCurrentPreset::VideoSourceToken = VideoSourceToken; - _p->_timg__SetCurrentPreset::PresetToken = PresetToken; - } - return _p; -} - -inline int soap_write__timg__SetCurrentPreset(struct soap *soap, _timg__SetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:SetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__SetCurrentPreset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__SetCurrentPreset(struct soap *soap, const char *URL, _timg__SetCurrentPreset 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, "timg:SetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__SetCurrentPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__SetCurrentPreset(struct soap *soap, const char *URL, _timg__SetCurrentPreset 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, "timg:SetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__SetCurrentPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__SetCurrentPreset(struct soap *soap, const char *URL, _timg__SetCurrentPreset 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, "timg:SetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__SetCurrentPreset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__SetCurrentPreset * SOAP_FMAC4 soap_get__timg__SetCurrentPreset(struct soap*, _timg__SetCurrentPreset *, const char*, const char*); - -inline int soap_read__timg__SetCurrentPreset(struct soap *soap, _timg__SetCurrentPreset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__SetCurrentPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__SetCurrentPreset(struct soap *soap, const char *URL, _timg__SetCurrentPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__SetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__SetCurrentPreset(struct soap *soap, _timg__SetCurrentPreset *p) -{ - if (::soap_read__timg__SetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetCurrentPresetResponse_DEFINED -#define SOAP_TYPE__timg__GetCurrentPresetResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetCurrentPresetResponse(struct soap*, const char*, int, const _timg__GetCurrentPresetResponse *, const char*); -SOAP_FMAC3 _timg__GetCurrentPresetResponse * SOAP_FMAC4 soap_in__timg__GetCurrentPresetResponse(struct soap*, const char*, _timg__GetCurrentPresetResponse *, const char*); -SOAP_FMAC1 _timg__GetCurrentPresetResponse * SOAP_FMAC2 soap_instantiate__timg__GetCurrentPresetResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetCurrentPresetResponse * soap_new__timg__GetCurrentPresetResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetCurrentPresetResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetCurrentPresetResponse * soap_new_req__timg__GetCurrentPresetResponse( - struct soap *soap) -{ - _timg__GetCurrentPresetResponse *_p = ::soap_new__timg__GetCurrentPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _timg__GetCurrentPresetResponse * soap_new_set__timg__GetCurrentPresetResponse( - struct soap *soap, - timg__ImagingPreset *Preset) -{ - _timg__GetCurrentPresetResponse *_p = ::soap_new__timg__GetCurrentPresetResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetCurrentPresetResponse::Preset = Preset; - } - return _p; -} - -inline int soap_write__timg__GetCurrentPresetResponse(struct soap *soap, _timg__GetCurrentPresetResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__GetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__GetCurrentPresetResponse 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, "timg:GetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__GetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__GetCurrentPresetResponse 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, "timg:GetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__GetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__GetCurrentPresetResponse 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, "timg:GetCurrentPresetResponse", p->soap_type() == SOAP_TYPE__timg__GetCurrentPresetResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetCurrentPresetResponse * SOAP_FMAC4 soap_get__timg__GetCurrentPresetResponse(struct soap*, _timg__GetCurrentPresetResponse *, const char*, const char*); - -inline int soap_read__timg__GetCurrentPresetResponse(struct soap *soap, _timg__GetCurrentPresetResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetCurrentPresetResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetCurrentPresetResponse(struct soap *soap, const char *URL, _timg__GetCurrentPresetResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetCurrentPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetCurrentPresetResponse(struct soap *soap, _timg__GetCurrentPresetResponse *p) -{ - if (::soap_read__timg__GetCurrentPresetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetCurrentPreset_DEFINED -#define SOAP_TYPE__timg__GetCurrentPreset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetCurrentPreset(struct soap*, const char*, int, const _timg__GetCurrentPreset *, const char*); -SOAP_FMAC3 _timg__GetCurrentPreset * SOAP_FMAC4 soap_in__timg__GetCurrentPreset(struct soap*, const char*, _timg__GetCurrentPreset *, const char*); -SOAP_FMAC1 _timg__GetCurrentPreset * SOAP_FMAC2 soap_instantiate__timg__GetCurrentPreset(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetCurrentPreset * soap_new__timg__GetCurrentPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetCurrentPreset(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetCurrentPreset * soap_new_req__timg__GetCurrentPreset( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetCurrentPreset *_p = ::soap_new__timg__GetCurrentPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetCurrentPreset::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _timg__GetCurrentPreset * soap_new_set__timg__GetCurrentPreset( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetCurrentPreset *_p = ::soap_new__timg__GetCurrentPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetCurrentPreset::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__timg__GetCurrentPreset(struct soap *soap, _timg__GetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__GetCurrentPreset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetCurrentPreset(struct soap *soap, const char *URL, _timg__GetCurrentPreset 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, "timg:GetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__GetCurrentPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetCurrentPreset(struct soap *soap, const char *URL, _timg__GetCurrentPreset 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, "timg:GetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__GetCurrentPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetCurrentPreset(struct soap *soap, const char *URL, _timg__GetCurrentPreset 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, "timg:GetCurrentPreset", p->soap_type() == SOAP_TYPE__timg__GetCurrentPreset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetCurrentPreset * SOAP_FMAC4 soap_get__timg__GetCurrentPreset(struct soap*, _timg__GetCurrentPreset *, const char*, const char*); - -inline int soap_read__timg__GetCurrentPreset(struct soap *soap, _timg__GetCurrentPreset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetCurrentPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetCurrentPreset(struct soap *soap, const char *URL, _timg__GetCurrentPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetCurrentPreset(struct soap *soap, _timg__GetCurrentPreset *p) -{ - if (::soap_read__timg__GetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetPresetsResponse_DEFINED -#define SOAP_TYPE__timg__GetPresetsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetPresetsResponse(struct soap*, const char*, int, const _timg__GetPresetsResponse *, const char*); -SOAP_FMAC3 _timg__GetPresetsResponse * SOAP_FMAC4 soap_in__timg__GetPresetsResponse(struct soap*, const char*, _timg__GetPresetsResponse *, const char*); -SOAP_FMAC1 _timg__GetPresetsResponse * SOAP_FMAC2 soap_instantiate__timg__GetPresetsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetPresetsResponse * soap_new__timg__GetPresetsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetPresetsResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetPresetsResponse * soap_new_req__timg__GetPresetsResponse( - struct soap *soap, - const std::vector & Preset) -{ - _timg__GetPresetsResponse *_p = ::soap_new__timg__GetPresetsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetPresetsResponse::Preset = Preset; - } - return _p; -} - -inline _timg__GetPresetsResponse * soap_new_set__timg__GetPresetsResponse( - struct soap *soap, - const std::vector & Preset) -{ - _timg__GetPresetsResponse *_p = ::soap_new__timg__GetPresetsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetPresetsResponse::Preset = Preset; - } - return _p; -} - -inline int soap_write__timg__GetPresetsResponse(struct soap *soap, _timg__GetPresetsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetPresetsResponse", p->soap_type() == SOAP_TYPE__timg__GetPresetsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetPresetsResponse(struct soap *soap, const char *URL, _timg__GetPresetsResponse 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, "timg:GetPresetsResponse", p->soap_type() == SOAP_TYPE__timg__GetPresetsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetPresetsResponse(struct soap *soap, const char *URL, _timg__GetPresetsResponse 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, "timg:GetPresetsResponse", p->soap_type() == SOAP_TYPE__timg__GetPresetsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetPresetsResponse(struct soap *soap, const char *URL, _timg__GetPresetsResponse 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, "timg:GetPresetsResponse", p->soap_type() == SOAP_TYPE__timg__GetPresetsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetPresetsResponse * SOAP_FMAC4 soap_get__timg__GetPresetsResponse(struct soap*, _timg__GetPresetsResponse *, const char*, const char*); - -inline int soap_read__timg__GetPresetsResponse(struct soap *soap, _timg__GetPresetsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetPresetsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetPresetsResponse(struct soap *soap, const char *URL, _timg__GetPresetsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetPresetsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetPresetsResponse(struct soap *soap, _timg__GetPresetsResponse *p) -{ - if (::soap_read__timg__GetPresetsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetPresets_DEFINED -#define SOAP_TYPE__timg__GetPresets_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetPresets(struct soap*, const char*, int, const _timg__GetPresets *, const char*); -SOAP_FMAC3 _timg__GetPresets * SOAP_FMAC4 soap_in__timg__GetPresets(struct soap*, const char*, _timg__GetPresets *, const char*); -SOAP_FMAC1 _timg__GetPresets * SOAP_FMAC2 soap_instantiate__timg__GetPresets(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetPresets * soap_new__timg__GetPresets(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetPresets(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetPresets * soap_new_req__timg__GetPresets( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetPresets *_p = ::soap_new__timg__GetPresets(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetPresets::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _timg__GetPresets * soap_new_set__timg__GetPresets( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetPresets *_p = ::soap_new__timg__GetPresets(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetPresets::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__timg__GetPresets(struct soap *soap, _timg__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetPresets", p->soap_type() == SOAP_TYPE__timg__GetPresets ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetPresets(struct soap *soap, const char *URL, _timg__GetPresets 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, "timg:GetPresets", p->soap_type() == SOAP_TYPE__timg__GetPresets ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetPresets(struct soap *soap, const char *URL, _timg__GetPresets 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, "timg:GetPresets", p->soap_type() == SOAP_TYPE__timg__GetPresets ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetPresets(struct soap *soap, const char *URL, _timg__GetPresets 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, "timg:GetPresets", p->soap_type() == SOAP_TYPE__timg__GetPresets ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetPresets * SOAP_FMAC4 soap_get__timg__GetPresets(struct soap*, _timg__GetPresets *, const char*, const char*); - -inline int soap_read__timg__GetPresets(struct soap *soap, _timg__GetPresets *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetPresets(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetPresets(struct soap *soap, const char *URL, _timg__GetPresets *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetPresets(struct soap *soap, _timg__GetPresets *p) -{ - if (::soap_read__timg__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetStatusResponse_DEFINED -#define SOAP_TYPE__timg__GetStatusResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetStatusResponse(struct soap*, const char*, int, const _timg__GetStatusResponse *, const char*); -SOAP_FMAC3 _timg__GetStatusResponse * SOAP_FMAC4 soap_in__timg__GetStatusResponse(struct soap*, const char*, _timg__GetStatusResponse *, const char*); -SOAP_FMAC1 _timg__GetStatusResponse * SOAP_FMAC2 soap_instantiate__timg__GetStatusResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetStatusResponse * soap_new__timg__GetStatusResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetStatusResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetStatusResponse * soap_new_req__timg__GetStatusResponse( - struct soap *soap, - tt__ImagingStatus20 *Status) -{ - _timg__GetStatusResponse *_p = ::soap_new__timg__GetStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetStatusResponse::Status = Status; - } - return _p; -} - -inline _timg__GetStatusResponse * soap_new_set__timg__GetStatusResponse( - struct soap *soap, - tt__ImagingStatus20 *Status) -{ - _timg__GetStatusResponse *_p = ::soap_new__timg__GetStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetStatusResponse::Status = Status; - } - return _p; -} - -inline int soap_write__timg__GetStatusResponse(struct soap *soap, _timg__GetStatusResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetStatusResponse", p->soap_type() == SOAP_TYPE__timg__GetStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetStatusResponse(struct soap *soap, const char *URL, _timg__GetStatusResponse 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, "timg:GetStatusResponse", p->soap_type() == SOAP_TYPE__timg__GetStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetStatusResponse(struct soap *soap, const char *URL, _timg__GetStatusResponse 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, "timg:GetStatusResponse", p->soap_type() == SOAP_TYPE__timg__GetStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetStatusResponse(struct soap *soap, const char *URL, _timg__GetStatusResponse 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, "timg:GetStatusResponse", p->soap_type() == SOAP_TYPE__timg__GetStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetStatusResponse * SOAP_FMAC4 soap_get__timg__GetStatusResponse(struct soap*, _timg__GetStatusResponse *, const char*, const char*); - -inline int soap_read__timg__GetStatusResponse(struct soap *soap, _timg__GetStatusResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetStatusResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetStatusResponse(struct soap *soap, const char *URL, _timg__GetStatusResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetStatusResponse(struct soap *soap, _timg__GetStatusResponse *p) -{ - if (::soap_read__timg__GetStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetStatus_DEFINED -#define SOAP_TYPE__timg__GetStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetStatus(struct soap*, const char*, int, const _timg__GetStatus *, const char*); -SOAP_FMAC3 _timg__GetStatus * SOAP_FMAC4 soap_in__timg__GetStatus(struct soap*, const char*, _timg__GetStatus *, const char*); -SOAP_FMAC1 _timg__GetStatus * SOAP_FMAC2 soap_instantiate__timg__GetStatus(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetStatus * soap_new__timg__GetStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetStatus(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetStatus * soap_new_req__timg__GetStatus( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetStatus *_p = ::soap_new__timg__GetStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetStatus::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _timg__GetStatus * soap_new_set__timg__GetStatus( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetStatus *_p = ::soap_new__timg__GetStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetStatus::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__timg__GetStatus(struct soap *soap, _timg__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetStatus", p->soap_type() == SOAP_TYPE__timg__GetStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetStatus(struct soap *soap, const char *URL, _timg__GetStatus 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, "timg:GetStatus", p->soap_type() == SOAP_TYPE__timg__GetStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetStatus(struct soap *soap, const char *URL, _timg__GetStatus 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, "timg:GetStatus", p->soap_type() == SOAP_TYPE__timg__GetStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetStatus(struct soap *soap, const char *URL, _timg__GetStatus 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, "timg:GetStatus", p->soap_type() == SOAP_TYPE__timg__GetStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetStatus * SOAP_FMAC4 soap_get__timg__GetStatus(struct soap*, _timg__GetStatus *, const char*, const char*); - -inline int soap_read__timg__GetStatus(struct soap *soap, _timg__GetStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetStatus(struct soap *soap, const char *URL, _timg__GetStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetStatus(struct soap *soap, _timg__GetStatus *p) -{ - if (::soap_read__timg__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__StopResponse_DEFINED -#define SOAP_TYPE__timg__StopResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__StopResponse(struct soap*, const char*, int, const _timg__StopResponse *, const char*); -SOAP_FMAC3 _timg__StopResponse * SOAP_FMAC4 soap_in__timg__StopResponse(struct soap*, const char*, _timg__StopResponse *, const char*); -SOAP_FMAC1 _timg__StopResponse * SOAP_FMAC2 soap_instantiate__timg__StopResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__StopResponse * soap_new__timg__StopResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__StopResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__StopResponse * soap_new_req__timg__StopResponse( - struct soap *soap) -{ - _timg__StopResponse *_p = ::soap_new__timg__StopResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _timg__StopResponse * soap_new_set__timg__StopResponse( - struct soap *soap) -{ - _timg__StopResponse *_p = ::soap_new__timg__StopResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__timg__StopResponse(struct soap *soap, _timg__StopResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:StopResponse", p->soap_type() == SOAP_TYPE__timg__StopResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__StopResponse(struct soap *soap, const char *URL, _timg__StopResponse 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, "timg:StopResponse", p->soap_type() == SOAP_TYPE__timg__StopResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__StopResponse(struct soap *soap, const char *URL, _timg__StopResponse 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, "timg:StopResponse", p->soap_type() == SOAP_TYPE__timg__StopResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__StopResponse(struct soap *soap, const char *URL, _timg__StopResponse 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, "timg:StopResponse", p->soap_type() == SOAP_TYPE__timg__StopResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__StopResponse * SOAP_FMAC4 soap_get__timg__StopResponse(struct soap*, _timg__StopResponse *, const char*, const char*); - -inline int soap_read__timg__StopResponse(struct soap *soap, _timg__StopResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__StopResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__StopResponse(struct soap *soap, const char *URL, _timg__StopResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__StopResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__StopResponse(struct soap *soap, _timg__StopResponse *p) -{ - if (::soap_read__timg__StopResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__Stop_DEFINED -#define SOAP_TYPE__timg__Stop_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__Stop(struct soap*, const char*, int, const _timg__Stop *, const char*); -SOAP_FMAC3 _timg__Stop * SOAP_FMAC4 soap_in__timg__Stop(struct soap*, const char*, _timg__Stop *, const char*); -SOAP_FMAC1 _timg__Stop * SOAP_FMAC2 soap_instantiate__timg__Stop(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__Stop * soap_new__timg__Stop(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__Stop(soap, n, NULL, NULL, NULL); -} - -inline _timg__Stop * soap_new_req__timg__Stop( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__Stop *_p = ::soap_new__timg__Stop(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__Stop::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _timg__Stop * soap_new_set__timg__Stop( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__Stop *_p = ::soap_new__timg__Stop(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__Stop::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__timg__Stop(struct soap *soap, _timg__Stop const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:Stop", p->soap_type() == SOAP_TYPE__timg__Stop ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__Stop(struct soap *soap, const char *URL, _timg__Stop 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, "timg:Stop", p->soap_type() == SOAP_TYPE__timg__Stop ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__Stop(struct soap *soap, const char *URL, _timg__Stop 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, "timg:Stop", p->soap_type() == SOAP_TYPE__timg__Stop ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__Stop(struct soap *soap, const char *URL, _timg__Stop 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, "timg:Stop", p->soap_type() == SOAP_TYPE__timg__Stop ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__Stop * SOAP_FMAC4 soap_get__timg__Stop(struct soap*, _timg__Stop *, const char*, const char*); - -inline int soap_read__timg__Stop(struct soap *soap, _timg__Stop *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__Stop(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__Stop(struct soap *soap, const char *URL, _timg__Stop *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__Stop(struct soap *soap, _timg__Stop *p) -{ - if (::soap_read__timg__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetMoveOptionsResponse_DEFINED -#define SOAP_TYPE__timg__GetMoveOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetMoveOptionsResponse(struct soap*, const char*, int, const _timg__GetMoveOptionsResponse *, const char*); -SOAP_FMAC3 _timg__GetMoveOptionsResponse * SOAP_FMAC4 soap_in__timg__GetMoveOptionsResponse(struct soap*, const char*, _timg__GetMoveOptionsResponse *, const char*); -SOAP_FMAC1 _timg__GetMoveOptionsResponse * SOAP_FMAC2 soap_instantiate__timg__GetMoveOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetMoveOptionsResponse * soap_new__timg__GetMoveOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetMoveOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetMoveOptionsResponse * soap_new_req__timg__GetMoveOptionsResponse( - struct soap *soap, - tt__MoveOptions20 *MoveOptions) -{ - _timg__GetMoveOptionsResponse *_p = ::soap_new__timg__GetMoveOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetMoveOptionsResponse::MoveOptions = MoveOptions; - } - return _p; -} - -inline _timg__GetMoveOptionsResponse * soap_new_set__timg__GetMoveOptionsResponse( - struct soap *soap, - tt__MoveOptions20 *MoveOptions) -{ - _timg__GetMoveOptionsResponse *_p = ::soap_new__timg__GetMoveOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetMoveOptionsResponse::MoveOptions = MoveOptions; - } - return _p; -} - -inline int soap_write__timg__GetMoveOptionsResponse(struct soap *soap, _timg__GetMoveOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetMoveOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetMoveOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetMoveOptionsResponse(struct soap *soap, const char *URL, _timg__GetMoveOptionsResponse 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, "timg:GetMoveOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetMoveOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetMoveOptionsResponse(struct soap *soap, const char *URL, _timg__GetMoveOptionsResponse 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, "timg:GetMoveOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetMoveOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetMoveOptionsResponse(struct soap *soap, const char *URL, _timg__GetMoveOptionsResponse 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, "timg:GetMoveOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetMoveOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetMoveOptionsResponse * SOAP_FMAC4 soap_get__timg__GetMoveOptionsResponse(struct soap*, _timg__GetMoveOptionsResponse *, const char*, const char*); - -inline int soap_read__timg__GetMoveOptionsResponse(struct soap *soap, _timg__GetMoveOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetMoveOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetMoveOptionsResponse(struct soap *soap, const char *URL, _timg__GetMoveOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetMoveOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetMoveOptionsResponse(struct soap *soap, _timg__GetMoveOptionsResponse *p) -{ - if (::soap_read__timg__GetMoveOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetMoveOptions_DEFINED -#define SOAP_TYPE__timg__GetMoveOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetMoveOptions(struct soap*, const char*, int, const _timg__GetMoveOptions *, const char*); -SOAP_FMAC3 _timg__GetMoveOptions * SOAP_FMAC4 soap_in__timg__GetMoveOptions(struct soap*, const char*, _timg__GetMoveOptions *, const char*); -SOAP_FMAC1 _timg__GetMoveOptions * SOAP_FMAC2 soap_instantiate__timg__GetMoveOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetMoveOptions * soap_new__timg__GetMoveOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetMoveOptions(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetMoveOptions * soap_new_req__timg__GetMoveOptions( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetMoveOptions *_p = ::soap_new__timg__GetMoveOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetMoveOptions::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _timg__GetMoveOptions * soap_new_set__timg__GetMoveOptions( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetMoveOptions *_p = ::soap_new__timg__GetMoveOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetMoveOptions::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__timg__GetMoveOptions(struct soap *soap, _timg__GetMoveOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetMoveOptions", p->soap_type() == SOAP_TYPE__timg__GetMoveOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetMoveOptions(struct soap *soap, const char *URL, _timg__GetMoveOptions 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, "timg:GetMoveOptions", p->soap_type() == SOAP_TYPE__timg__GetMoveOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetMoveOptions(struct soap *soap, const char *URL, _timg__GetMoveOptions 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, "timg:GetMoveOptions", p->soap_type() == SOAP_TYPE__timg__GetMoveOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetMoveOptions(struct soap *soap, const char *URL, _timg__GetMoveOptions 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, "timg:GetMoveOptions", p->soap_type() == SOAP_TYPE__timg__GetMoveOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetMoveOptions * SOAP_FMAC4 soap_get__timg__GetMoveOptions(struct soap*, _timg__GetMoveOptions *, const char*, const char*); - -inline int soap_read__timg__GetMoveOptions(struct soap *soap, _timg__GetMoveOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetMoveOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetMoveOptions(struct soap *soap, const char *URL, _timg__GetMoveOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetMoveOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetMoveOptions(struct soap *soap, _timg__GetMoveOptions *p) -{ - if (::soap_read__timg__GetMoveOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__MoveResponse_DEFINED -#define SOAP_TYPE__timg__MoveResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__MoveResponse(struct soap*, const char*, int, const _timg__MoveResponse *, const char*); -SOAP_FMAC3 _timg__MoveResponse * SOAP_FMAC4 soap_in__timg__MoveResponse(struct soap*, const char*, _timg__MoveResponse *, const char*); -SOAP_FMAC1 _timg__MoveResponse * SOAP_FMAC2 soap_instantiate__timg__MoveResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__MoveResponse * soap_new__timg__MoveResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__MoveResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__MoveResponse * soap_new_req__timg__MoveResponse( - struct soap *soap) -{ - _timg__MoveResponse *_p = ::soap_new__timg__MoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _timg__MoveResponse * soap_new_set__timg__MoveResponse( - struct soap *soap) -{ - _timg__MoveResponse *_p = ::soap_new__timg__MoveResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__timg__MoveResponse(struct soap *soap, _timg__MoveResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:MoveResponse", p->soap_type() == SOAP_TYPE__timg__MoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__MoveResponse(struct soap *soap, const char *URL, _timg__MoveResponse 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, "timg:MoveResponse", p->soap_type() == SOAP_TYPE__timg__MoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__MoveResponse(struct soap *soap, const char *URL, _timg__MoveResponse 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, "timg:MoveResponse", p->soap_type() == SOAP_TYPE__timg__MoveResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__MoveResponse(struct soap *soap, const char *URL, _timg__MoveResponse 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, "timg:MoveResponse", p->soap_type() == SOAP_TYPE__timg__MoveResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__MoveResponse * SOAP_FMAC4 soap_get__timg__MoveResponse(struct soap*, _timg__MoveResponse *, const char*, const char*); - -inline int soap_read__timg__MoveResponse(struct soap *soap, _timg__MoveResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__MoveResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__MoveResponse(struct soap *soap, const char *URL, _timg__MoveResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__MoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__MoveResponse(struct soap *soap, _timg__MoveResponse *p) -{ - if (::soap_read__timg__MoveResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__Move_DEFINED -#define SOAP_TYPE__timg__Move_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__Move(struct soap*, const char*, int, const _timg__Move *, const char*); -SOAP_FMAC3 _timg__Move * SOAP_FMAC4 soap_in__timg__Move(struct soap*, const char*, _timg__Move *, const char*); -SOAP_FMAC1 _timg__Move * SOAP_FMAC2 soap_instantiate__timg__Move(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__Move * soap_new__timg__Move(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__Move(soap, n, NULL, NULL, NULL); -} - -inline _timg__Move * soap_new_req__timg__Move( - struct soap *soap, - const std::string& VideoSourceToken, - tt__FocusMove *Focus) -{ - _timg__Move *_p = ::soap_new__timg__Move(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__Move::VideoSourceToken = VideoSourceToken; - _p->_timg__Move::Focus = Focus; - } - return _p; -} - -inline _timg__Move * soap_new_set__timg__Move( - struct soap *soap, - const std::string& VideoSourceToken, - tt__FocusMove *Focus) -{ - _timg__Move *_p = ::soap_new__timg__Move(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__Move::VideoSourceToken = VideoSourceToken; - _p->_timg__Move::Focus = Focus; - } - return _p; -} - -inline int soap_write__timg__Move(struct soap *soap, _timg__Move const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:Move", p->soap_type() == SOAP_TYPE__timg__Move ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__Move(struct soap *soap, const char *URL, _timg__Move 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, "timg:Move", p->soap_type() == SOAP_TYPE__timg__Move ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__Move(struct soap *soap, const char *URL, _timg__Move 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, "timg:Move", p->soap_type() == SOAP_TYPE__timg__Move ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__Move(struct soap *soap, const char *URL, _timg__Move 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, "timg:Move", p->soap_type() == SOAP_TYPE__timg__Move ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__Move * SOAP_FMAC4 soap_get__timg__Move(struct soap*, _timg__Move *, const char*, const char*); - -inline int soap_read__timg__Move(struct soap *soap, _timg__Move *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__Move(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__Move(struct soap *soap, const char *URL, _timg__Move *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__Move(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__Move(struct soap *soap, _timg__Move *p) -{ - if (::soap_read__timg__Move(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetOptionsResponse_DEFINED -#define SOAP_TYPE__timg__GetOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetOptionsResponse(struct soap*, const char*, int, const _timg__GetOptionsResponse *, const char*); -SOAP_FMAC3 _timg__GetOptionsResponse * SOAP_FMAC4 soap_in__timg__GetOptionsResponse(struct soap*, const char*, _timg__GetOptionsResponse *, const char*); -SOAP_FMAC1 _timg__GetOptionsResponse * SOAP_FMAC2 soap_instantiate__timg__GetOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetOptionsResponse * soap_new__timg__GetOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetOptionsResponse * soap_new_req__timg__GetOptionsResponse( - struct soap *soap, - tt__ImagingOptions20 *ImagingOptions) -{ - _timg__GetOptionsResponse *_p = ::soap_new__timg__GetOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetOptionsResponse::ImagingOptions = ImagingOptions; - } - return _p; -} - -inline _timg__GetOptionsResponse * soap_new_set__timg__GetOptionsResponse( - struct soap *soap, - tt__ImagingOptions20 *ImagingOptions) -{ - _timg__GetOptionsResponse *_p = ::soap_new__timg__GetOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetOptionsResponse::ImagingOptions = ImagingOptions; - } - return _p; -} - -inline int soap_write__timg__GetOptionsResponse(struct soap *soap, _timg__GetOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetOptionsResponse(struct soap *soap, const char *URL, _timg__GetOptionsResponse 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, "timg:GetOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetOptionsResponse(struct soap *soap, const char *URL, _timg__GetOptionsResponse 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, "timg:GetOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetOptionsResponse(struct soap *soap, const char *URL, _timg__GetOptionsResponse 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, "timg:GetOptionsResponse", p->soap_type() == SOAP_TYPE__timg__GetOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetOptionsResponse * SOAP_FMAC4 soap_get__timg__GetOptionsResponse(struct soap*, _timg__GetOptionsResponse *, const char*, const char*); - -inline int soap_read__timg__GetOptionsResponse(struct soap *soap, _timg__GetOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetOptionsResponse(struct soap *soap, const char *URL, _timg__GetOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetOptionsResponse(struct soap *soap, _timg__GetOptionsResponse *p) -{ - if (::soap_read__timg__GetOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetOptions_DEFINED -#define SOAP_TYPE__timg__GetOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetOptions(struct soap*, const char*, int, const _timg__GetOptions *, const char*); -SOAP_FMAC3 _timg__GetOptions * SOAP_FMAC4 soap_in__timg__GetOptions(struct soap*, const char*, _timg__GetOptions *, const char*); -SOAP_FMAC1 _timg__GetOptions * SOAP_FMAC2 soap_instantiate__timg__GetOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetOptions * soap_new__timg__GetOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetOptions(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetOptions * soap_new_req__timg__GetOptions( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetOptions *_p = ::soap_new__timg__GetOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetOptions::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _timg__GetOptions * soap_new_set__timg__GetOptions( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetOptions *_p = ::soap_new__timg__GetOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetOptions::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__timg__GetOptions(struct soap *soap, _timg__GetOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetOptions", p->soap_type() == SOAP_TYPE__timg__GetOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetOptions(struct soap *soap, const char *URL, _timg__GetOptions 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, "timg:GetOptions", p->soap_type() == SOAP_TYPE__timg__GetOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetOptions(struct soap *soap, const char *URL, _timg__GetOptions 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, "timg:GetOptions", p->soap_type() == SOAP_TYPE__timg__GetOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetOptions(struct soap *soap, const char *URL, _timg__GetOptions 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, "timg:GetOptions", p->soap_type() == SOAP_TYPE__timg__GetOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetOptions * SOAP_FMAC4 soap_get__timg__GetOptions(struct soap*, _timg__GetOptions *, const char*, const char*); - -inline int soap_read__timg__GetOptions(struct soap *soap, _timg__GetOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetOptions(struct soap *soap, const char *URL, _timg__GetOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetOptions(struct soap *soap, _timg__GetOptions *p) -{ - if (::soap_read__timg__GetOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__SetImagingSettingsResponse_DEFINED -#define SOAP_TYPE__timg__SetImagingSettingsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetImagingSettingsResponse(struct soap*, const char*, int, const _timg__SetImagingSettingsResponse *, const char*); -SOAP_FMAC3 _timg__SetImagingSettingsResponse * SOAP_FMAC4 soap_in__timg__SetImagingSettingsResponse(struct soap*, const char*, _timg__SetImagingSettingsResponse *, const char*); -SOAP_FMAC1 _timg__SetImagingSettingsResponse * SOAP_FMAC2 soap_instantiate__timg__SetImagingSettingsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__SetImagingSettingsResponse * soap_new__timg__SetImagingSettingsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__SetImagingSettingsResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__SetImagingSettingsResponse * soap_new_req__timg__SetImagingSettingsResponse( - struct soap *soap) -{ - _timg__SetImagingSettingsResponse *_p = ::soap_new__timg__SetImagingSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _timg__SetImagingSettingsResponse * soap_new_set__timg__SetImagingSettingsResponse( - struct soap *soap) -{ - _timg__SetImagingSettingsResponse *_p = ::soap_new__timg__SetImagingSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__timg__SetImagingSettingsResponse(struct soap *soap, _timg__SetImagingSettingsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:SetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__SetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__SetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__SetImagingSettingsResponse 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, "timg:SetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__SetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__SetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__SetImagingSettingsResponse 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, "timg:SetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__SetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__SetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__SetImagingSettingsResponse 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, "timg:SetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__SetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__SetImagingSettingsResponse * SOAP_FMAC4 soap_get__timg__SetImagingSettingsResponse(struct soap*, _timg__SetImagingSettingsResponse *, const char*, const char*); - -inline int soap_read__timg__SetImagingSettingsResponse(struct soap *soap, _timg__SetImagingSettingsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__SetImagingSettingsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__SetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__SetImagingSettingsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__SetImagingSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__SetImagingSettingsResponse(struct soap *soap, _timg__SetImagingSettingsResponse *p) -{ - if (::soap_read__timg__SetImagingSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__SetImagingSettings_DEFINED -#define SOAP_TYPE__timg__SetImagingSettings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__SetImagingSettings(struct soap*, const char*, int, const _timg__SetImagingSettings *, const char*); -SOAP_FMAC3 _timg__SetImagingSettings * SOAP_FMAC4 soap_in__timg__SetImagingSettings(struct soap*, const char*, _timg__SetImagingSettings *, const char*); -SOAP_FMAC1 _timg__SetImagingSettings * SOAP_FMAC2 soap_instantiate__timg__SetImagingSettings(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__SetImagingSettings * soap_new__timg__SetImagingSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__SetImagingSettings(soap, n, NULL, NULL, NULL); -} - -inline _timg__SetImagingSettings * soap_new_req__timg__SetImagingSettings( - struct soap *soap, - const std::string& VideoSourceToken, - tt__ImagingSettings20 *ImagingSettings) -{ - _timg__SetImagingSettings *_p = ::soap_new__timg__SetImagingSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__SetImagingSettings::VideoSourceToken = VideoSourceToken; - _p->_timg__SetImagingSettings::ImagingSettings = ImagingSettings; - } - return _p; -} - -inline _timg__SetImagingSettings * soap_new_set__timg__SetImagingSettings( - struct soap *soap, - const std::string& VideoSourceToken, - tt__ImagingSettings20 *ImagingSettings, - bool *ForcePersistence) -{ - _timg__SetImagingSettings *_p = ::soap_new__timg__SetImagingSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__SetImagingSettings::VideoSourceToken = VideoSourceToken; - _p->_timg__SetImagingSettings::ImagingSettings = ImagingSettings; - _p->_timg__SetImagingSettings::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline int soap_write__timg__SetImagingSettings(struct soap *soap, _timg__SetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:SetImagingSettings", p->soap_type() == SOAP_TYPE__timg__SetImagingSettings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__SetImagingSettings(struct soap *soap, const char *URL, _timg__SetImagingSettings 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, "timg:SetImagingSettings", p->soap_type() == SOAP_TYPE__timg__SetImagingSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__SetImagingSettings(struct soap *soap, const char *URL, _timg__SetImagingSettings 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, "timg:SetImagingSettings", p->soap_type() == SOAP_TYPE__timg__SetImagingSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__SetImagingSettings(struct soap *soap, const char *URL, _timg__SetImagingSettings 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, "timg:SetImagingSettings", p->soap_type() == SOAP_TYPE__timg__SetImagingSettings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__SetImagingSettings * SOAP_FMAC4 soap_get__timg__SetImagingSettings(struct soap*, _timg__SetImagingSettings *, const char*, const char*); - -inline int soap_read__timg__SetImagingSettings(struct soap *soap, _timg__SetImagingSettings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__SetImagingSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__SetImagingSettings(struct soap *soap, const char *URL, _timg__SetImagingSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__SetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__SetImagingSettings(struct soap *soap, _timg__SetImagingSettings *p) -{ - if (::soap_read__timg__SetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetImagingSettingsResponse_DEFINED -#define SOAP_TYPE__timg__GetImagingSettingsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetImagingSettingsResponse(struct soap*, const char*, int, const _timg__GetImagingSettingsResponse *, const char*); -SOAP_FMAC3 _timg__GetImagingSettingsResponse * SOAP_FMAC4 soap_in__timg__GetImagingSettingsResponse(struct soap*, const char*, _timg__GetImagingSettingsResponse *, const char*); -SOAP_FMAC1 _timg__GetImagingSettingsResponse * SOAP_FMAC2 soap_instantiate__timg__GetImagingSettingsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetImagingSettingsResponse * soap_new__timg__GetImagingSettingsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetImagingSettingsResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetImagingSettingsResponse * soap_new_req__timg__GetImagingSettingsResponse( - struct soap *soap, - tt__ImagingSettings20 *ImagingSettings) -{ - _timg__GetImagingSettingsResponse *_p = ::soap_new__timg__GetImagingSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetImagingSettingsResponse::ImagingSettings = ImagingSettings; - } - return _p; -} - -inline _timg__GetImagingSettingsResponse * soap_new_set__timg__GetImagingSettingsResponse( - struct soap *soap, - tt__ImagingSettings20 *ImagingSettings) -{ - _timg__GetImagingSettingsResponse *_p = ::soap_new__timg__GetImagingSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetImagingSettingsResponse::ImagingSettings = ImagingSettings; - } - return _p; -} - -inline int soap_write__timg__GetImagingSettingsResponse(struct soap *soap, _timg__GetImagingSettingsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__GetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__GetImagingSettingsResponse 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, "timg:GetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__GetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__GetImagingSettingsResponse 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, "timg:GetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__GetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__GetImagingSettingsResponse 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, "timg:GetImagingSettingsResponse", p->soap_type() == SOAP_TYPE__timg__GetImagingSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetImagingSettingsResponse * SOAP_FMAC4 soap_get__timg__GetImagingSettingsResponse(struct soap*, _timg__GetImagingSettingsResponse *, const char*, const char*); - -inline int soap_read__timg__GetImagingSettingsResponse(struct soap *soap, _timg__GetImagingSettingsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetImagingSettingsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetImagingSettingsResponse(struct soap *soap, const char *URL, _timg__GetImagingSettingsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetImagingSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetImagingSettingsResponse(struct soap *soap, _timg__GetImagingSettingsResponse *p) -{ - if (::soap_read__timg__GetImagingSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetImagingSettings_DEFINED -#define SOAP_TYPE__timg__GetImagingSettings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetImagingSettings(struct soap*, const char*, int, const _timg__GetImagingSettings *, const char*); -SOAP_FMAC3 _timg__GetImagingSettings * SOAP_FMAC4 soap_in__timg__GetImagingSettings(struct soap*, const char*, _timg__GetImagingSettings *, const char*); -SOAP_FMAC1 _timg__GetImagingSettings * SOAP_FMAC2 soap_instantiate__timg__GetImagingSettings(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetImagingSettings * soap_new__timg__GetImagingSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetImagingSettings(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetImagingSettings * soap_new_req__timg__GetImagingSettings( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetImagingSettings *_p = ::soap_new__timg__GetImagingSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetImagingSettings::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _timg__GetImagingSettings * soap_new_set__timg__GetImagingSettings( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _timg__GetImagingSettings *_p = ::soap_new__timg__GetImagingSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetImagingSettings::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline int soap_write__timg__GetImagingSettings(struct soap *soap, _timg__GetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetImagingSettings", p->soap_type() == SOAP_TYPE__timg__GetImagingSettings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetImagingSettings(struct soap *soap, const char *URL, _timg__GetImagingSettings 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, "timg:GetImagingSettings", p->soap_type() == SOAP_TYPE__timg__GetImagingSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetImagingSettings(struct soap *soap, const char *URL, _timg__GetImagingSettings 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, "timg:GetImagingSettings", p->soap_type() == SOAP_TYPE__timg__GetImagingSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetImagingSettings(struct soap *soap, const char *URL, _timg__GetImagingSettings 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, "timg:GetImagingSettings", p->soap_type() == SOAP_TYPE__timg__GetImagingSettings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetImagingSettings * SOAP_FMAC4 soap_get__timg__GetImagingSettings(struct soap*, _timg__GetImagingSettings *, const char*, const char*); - -inline int soap_read__timg__GetImagingSettings(struct soap *soap, _timg__GetImagingSettings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetImagingSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetImagingSettings(struct soap *soap, const char *URL, _timg__GetImagingSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetImagingSettings(struct soap *soap, _timg__GetImagingSettings *p) -{ - if (::soap_read__timg__GetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__timg__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _timg__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _timg__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__timg__GetServiceCapabilitiesResponse(struct soap*, const char*, _timg__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _timg__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__timg__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetServiceCapabilitiesResponse * soap_new__timg__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetServiceCapabilitiesResponse * soap_new_req__timg__GetServiceCapabilitiesResponse( - struct soap *soap, - timg__Capabilities *Capabilities) -{ - _timg__GetServiceCapabilitiesResponse *_p = ::soap_new__timg__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _timg__GetServiceCapabilitiesResponse * soap_new_set__timg__GetServiceCapabilitiesResponse( - struct soap *soap, - timg__Capabilities *Capabilities) -{ - _timg__GetServiceCapabilitiesResponse *_p = ::soap_new__timg__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_timg__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__timg__GetServiceCapabilitiesResponse(struct soap *soap, _timg__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _timg__GetServiceCapabilitiesResponse 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, "timg:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _timg__GetServiceCapabilitiesResponse 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, "timg:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _timg__GetServiceCapabilitiesResponse 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, "timg:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__timg__GetServiceCapabilitiesResponse(struct soap*, _timg__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__timg__GetServiceCapabilitiesResponse(struct soap *soap, _timg__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _timg__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetServiceCapabilitiesResponse(struct soap *soap, _timg__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__timg__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__timg__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__timg__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__timg__GetServiceCapabilities(struct soap*, const char*, int, const _timg__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _timg__GetServiceCapabilities * SOAP_FMAC4 soap_in__timg__GetServiceCapabilities(struct soap*, const char*, _timg__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _timg__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__timg__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _timg__GetServiceCapabilities * soap_new__timg__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__timg__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _timg__GetServiceCapabilities * soap_new_req__timg__GetServiceCapabilities( - struct soap *soap) -{ - _timg__GetServiceCapabilities *_p = ::soap_new__timg__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _timg__GetServiceCapabilities * soap_new_set__timg__GetServiceCapabilities( - struct soap *soap) -{ - _timg__GetServiceCapabilities *_p = ::soap_new__timg__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__timg__GetServiceCapabilities(struct soap *soap, _timg__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__timg__GetServiceCapabilities(struct soap *soap, const char *URL, _timg__GetServiceCapabilities 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, "timg:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__timg__GetServiceCapabilities(struct soap *soap, const char *URL, _timg__GetServiceCapabilities 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, "timg:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__timg__GetServiceCapabilities(struct soap *soap, const char *URL, _timg__GetServiceCapabilities 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, "timg:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__timg__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _timg__GetServiceCapabilities * SOAP_FMAC4 soap_get__timg__GetServiceCapabilities(struct soap*, _timg__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__timg__GetServiceCapabilities(struct soap *soap, _timg__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__timg__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__timg__GetServiceCapabilities(struct soap *soap, const char *URL, _timg__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__timg__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__timg__GetServiceCapabilities(struct soap *soap, _timg__GetServiceCapabilities *p) -{ - if (::soap_read__timg__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_timg__ImagingPreset_DEFINED -#define SOAP_TYPE_timg__ImagingPreset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__ImagingPreset(struct soap*, const char*, int, const timg__ImagingPreset *, const char*); -SOAP_FMAC3 timg__ImagingPreset * SOAP_FMAC4 soap_in_timg__ImagingPreset(struct soap*, const char*, timg__ImagingPreset *, const char*); -SOAP_FMAC1 timg__ImagingPreset * SOAP_FMAC2 soap_instantiate_timg__ImagingPreset(struct soap*, int, const char*, const char*, size_t*); - -inline timg__ImagingPreset * soap_new_timg__ImagingPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate_timg__ImagingPreset(soap, n, NULL, NULL, NULL); -} - -inline timg__ImagingPreset * soap_new_req_timg__ImagingPreset( - struct soap *soap, - const std::string& Name, - const std::string& token, - const std::string& type) -{ - timg__ImagingPreset *_p = ::soap_new_timg__ImagingPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->timg__ImagingPreset::Name = Name; - _p->timg__ImagingPreset::token = token; - _p->timg__ImagingPreset::type = type; - } - return _p; -} - -inline timg__ImagingPreset * soap_new_set_timg__ImagingPreset( - struct soap *soap, - const std::string& Name, - const std::string& token, - const std::string& type, - const struct soap_dom_attribute& __anyAttribute) -{ - timg__ImagingPreset *_p = ::soap_new_timg__ImagingPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->timg__ImagingPreset::Name = Name; - _p->timg__ImagingPreset::token = token; - _p->timg__ImagingPreset::type = type; - _p->timg__ImagingPreset::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_timg__ImagingPreset(struct soap *soap, timg__ImagingPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:ImagingPreset", p->soap_type() == SOAP_TYPE_timg__ImagingPreset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_timg__ImagingPreset(struct soap *soap, const char *URL, timg__ImagingPreset 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, "timg:ImagingPreset", p->soap_type() == SOAP_TYPE_timg__ImagingPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_timg__ImagingPreset(struct soap *soap, const char *URL, timg__ImagingPreset 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, "timg:ImagingPreset", p->soap_type() == SOAP_TYPE_timg__ImagingPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_timg__ImagingPreset(struct soap *soap, const char *URL, timg__ImagingPreset 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, "timg:ImagingPreset", p->soap_type() == SOAP_TYPE_timg__ImagingPreset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 timg__ImagingPreset * SOAP_FMAC4 soap_get_timg__ImagingPreset(struct soap*, timg__ImagingPreset *, const char*, const char*); - -inline int soap_read_timg__ImagingPreset(struct soap *soap, timg__ImagingPreset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_timg__ImagingPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_timg__ImagingPreset(struct soap *soap, const char *URL, timg__ImagingPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_timg__ImagingPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_timg__ImagingPreset(struct soap *soap, timg__ImagingPreset *p) -{ - if (::soap_read_timg__ImagingPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_timg__Capabilities_DEFINED -#define SOAP_TYPE_timg__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_timg__Capabilities(struct soap*, const char*, int, const timg__Capabilities *, const char*); -SOAP_FMAC3 timg__Capabilities * SOAP_FMAC4 soap_in_timg__Capabilities(struct soap*, const char*, timg__Capabilities *, const char*); -SOAP_FMAC1 timg__Capabilities * SOAP_FMAC2 soap_instantiate_timg__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline timg__Capabilities * soap_new_timg__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_timg__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline timg__Capabilities * soap_new_req_timg__Capabilities( - struct soap *soap) -{ - timg__Capabilities *_p = ::soap_new_timg__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline timg__Capabilities * soap_new_set_timg__Capabilities( - struct soap *soap, - const std::vector & __any, - bool *ImageStabilization, - bool *Presets, - const struct soap_dom_attribute& __anyAttribute) -{ - timg__Capabilities *_p = ::soap_new_timg__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->timg__Capabilities::__any = __any; - _p->timg__Capabilities::ImageStabilization = ImageStabilization; - _p->timg__Capabilities::Presets = Presets; - _p->timg__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_timg__Capabilities(struct soap *soap, timg__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "timg:Capabilities", p->soap_type() == SOAP_TYPE_timg__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_timg__Capabilities(struct soap *soap, const char *URL, timg__Capabilities 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, "timg:Capabilities", p->soap_type() == SOAP_TYPE_timg__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_timg__Capabilities(struct soap *soap, const char *URL, timg__Capabilities 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, "timg:Capabilities", p->soap_type() == SOAP_TYPE_timg__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_timg__Capabilities(struct soap *soap, const char *URL, timg__Capabilities 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, "timg:Capabilities", p->soap_type() == SOAP_TYPE_timg__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 timg__Capabilities * SOAP_FMAC4 soap_get_timg__Capabilities(struct soap*, timg__Capabilities *, const char*, const char*); - -inline int soap_read_timg__Capabilities(struct soap *soap, timg__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_timg__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_timg__Capabilities(struct soap *soap, const char *URL, timg__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_timg__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_timg__Capabilities(struct soap *soap, timg__Capabilities *p) -{ - if (::soap_read_timg__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__DeletePaneConfigurationResponse_DEFINED -#define SOAP_TYPE__tls__DeletePaneConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__DeletePaneConfigurationResponse(struct soap*, const char*, int, const _tls__DeletePaneConfigurationResponse *, const char*); -SOAP_FMAC3 _tls__DeletePaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__DeletePaneConfigurationResponse(struct soap*, const char*, _tls__DeletePaneConfigurationResponse *, const char*); -SOAP_FMAC1 _tls__DeletePaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__DeletePaneConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__DeletePaneConfigurationResponse * soap_new__tls__DeletePaneConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__DeletePaneConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__DeletePaneConfigurationResponse * soap_new_req__tls__DeletePaneConfigurationResponse( - struct soap *soap) -{ - _tls__DeletePaneConfigurationResponse *_p = ::soap_new__tls__DeletePaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tls__DeletePaneConfigurationResponse * soap_new_set__tls__DeletePaneConfigurationResponse( - struct soap *soap, - const std::vector & __any) -{ - _tls__DeletePaneConfigurationResponse *_p = ::soap_new__tls__DeletePaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__DeletePaneConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__DeletePaneConfigurationResponse(struct soap *soap, _tls__DeletePaneConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:DeletePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__DeletePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__DeletePaneConfigurationResponse 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, "tls:DeletePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__DeletePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__DeletePaneConfigurationResponse 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, "tls:DeletePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__DeletePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__DeletePaneConfigurationResponse 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, "tls:DeletePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__DeletePaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__DeletePaneConfigurationResponse(struct soap*, _tls__DeletePaneConfigurationResponse *, const char*, const char*); - -inline int soap_read__tls__DeletePaneConfigurationResponse(struct soap *soap, _tls__DeletePaneConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__DeletePaneConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__DeletePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__DeletePaneConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__DeletePaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__DeletePaneConfigurationResponse(struct soap *soap, _tls__DeletePaneConfigurationResponse *p) -{ - if (::soap_read__tls__DeletePaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__DeletePaneConfiguration_DEFINED -#define SOAP_TYPE__tls__DeletePaneConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__DeletePaneConfiguration(struct soap*, const char*, int, const _tls__DeletePaneConfiguration *, const char*); -SOAP_FMAC3 _tls__DeletePaneConfiguration * SOAP_FMAC4 soap_in__tls__DeletePaneConfiguration(struct soap*, const char*, _tls__DeletePaneConfiguration *, const char*); -SOAP_FMAC1 _tls__DeletePaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__DeletePaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__DeletePaneConfiguration * soap_new__tls__DeletePaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__DeletePaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tls__DeletePaneConfiguration * soap_new_req__tls__DeletePaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - const std::string& PaneToken) -{ - _tls__DeletePaneConfiguration *_p = ::soap_new__tls__DeletePaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__DeletePaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__DeletePaneConfiguration::PaneToken = PaneToken; - } - return _p; -} - -inline _tls__DeletePaneConfiguration * soap_new_set__tls__DeletePaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - const std::string& PaneToken, - const std::vector & __any) -{ - _tls__DeletePaneConfiguration *_p = ::soap_new__tls__DeletePaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__DeletePaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__DeletePaneConfiguration::PaneToken = PaneToken; - _p->_tls__DeletePaneConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tls__DeletePaneConfiguration(struct soap *soap, _tls__DeletePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:DeletePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__DeletePaneConfiguration(struct soap *soap, const char *URL, _tls__DeletePaneConfiguration 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, "tls:DeletePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__DeletePaneConfiguration(struct soap *soap, const char *URL, _tls__DeletePaneConfiguration 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, "tls:DeletePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__DeletePaneConfiguration(struct soap *soap, const char *URL, _tls__DeletePaneConfiguration 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, "tls:DeletePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__DeletePaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__DeletePaneConfiguration * SOAP_FMAC4 soap_get__tls__DeletePaneConfiguration(struct soap*, _tls__DeletePaneConfiguration *, const char*, const char*); - -inline int soap_read__tls__DeletePaneConfiguration(struct soap *soap, _tls__DeletePaneConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__DeletePaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__DeletePaneConfiguration(struct soap *soap, const char *URL, _tls__DeletePaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__DeletePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__DeletePaneConfiguration(struct soap *soap, _tls__DeletePaneConfiguration *p) -{ - if (::soap_read__tls__DeletePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__CreatePaneConfigurationResponse_DEFINED -#define SOAP_TYPE__tls__CreatePaneConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__CreatePaneConfigurationResponse(struct soap*, const char*, int, const _tls__CreatePaneConfigurationResponse *, const char*); -SOAP_FMAC3 _tls__CreatePaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__CreatePaneConfigurationResponse(struct soap*, const char*, _tls__CreatePaneConfigurationResponse *, const char*); -SOAP_FMAC1 _tls__CreatePaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__CreatePaneConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__CreatePaneConfigurationResponse * soap_new__tls__CreatePaneConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__CreatePaneConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__CreatePaneConfigurationResponse * soap_new_req__tls__CreatePaneConfigurationResponse( - struct soap *soap, - const std::string& PaneToken) -{ - _tls__CreatePaneConfigurationResponse *_p = ::soap_new__tls__CreatePaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__CreatePaneConfigurationResponse::PaneToken = PaneToken; - } - return _p; -} - -inline _tls__CreatePaneConfigurationResponse * soap_new_set__tls__CreatePaneConfigurationResponse( - struct soap *soap, - const std::string& PaneToken, - const std::vector & __any) -{ - _tls__CreatePaneConfigurationResponse *_p = ::soap_new__tls__CreatePaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__CreatePaneConfigurationResponse::PaneToken = PaneToken; - _p->_tls__CreatePaneConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__CreatePaneConfigurationResponse(struct soap *soap, _tls__CreatePaneConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:CreatePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__CreatePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__CreatePaneConfigurationResponse 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, "tls:CreatePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__CreatePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__CreatePaneConfigurationResponse 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, "tls:CreatePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__CreatePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__CreatePaneConfigurationResponse 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, "tls:CreatePaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__CreatePaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__CreatePaneConfigurationResponse(struct soap*, _tls__CreatePaneConfigurationResponse *, const char*, const char*); - -inline int soap_read__tls__CreatePaneConfigurationResponse(struct soap *soap, _tls__CreatePaneConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__CreatePaneConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__CreatePaneConfigurationResponse(struct soap *soap, const char *URL, _tls__CreatePaneConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__CreatePaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__CreatePaneConfigurationResponse(struct soap *soap, _tls__CreatePaneConfigurationResponse *p) -{ - if (::soap_read__tls__CreatePaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__CreatePaneConfiguration_DEFINED -#define SOAP_TYPE__tls__CreatePaneConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__CreatePaneConfiguration(struct soap*, const char*, int, const _tls__CreatePaneConfiguration *, const char*); -SOAP_FMAC3 _tls__CreatePaneConfiguration * SOAP_FMAC4 soap_in__tls__CreatePaneConfiguration(struct soap*, const char*, _tls__CreatePaneConfiguration *, const char*); -SOAP_FMAC1 _tls__CreatePaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__CreatePaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__CreatePaneConfiguration * soap_new__tls__CreatePaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__CreatePaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tls__CreatePaneConfiguration * soap_new_req__tls__CreatePaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - tt__PaneConfiguration *PaneConfiguration) -{ - _tls__CreatePaneConfiguration *_p = ::soap_new__tls__CreatePaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__CreatePaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__CreatePaneConfiguration::PaneConfiguration = PaneConfiguration; - } - return _p; -} - -inline _tls__CreatePaneConfiguration * soap_new_set__tls__CreatePaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - tt__PaneConfiguration *PaneConfiguration, - const std::vector & __any) -{ - _tls__CreatePaneConfiguration *_p = ::soap_new__tls__CreatePaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__CreatePaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__CreatePaneConfiguration::PaneConfiguration = PaneConfiguration; - _p->_tls__CreatePaneConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tls__CreatePaneConfiguration(struct soap *soap, _tls__CreatePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:CreatePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__CreatePaneConfiguration(struct soap *soap, const char *URL, _tls__CreatePaneConfiguration 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, "tls:CreatePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__CreatePaneConfiguration(struct soap *soap, const char *URL, _tls__CreatePaneConfiguration 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, "tls:CreatePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__CreatePaneConfiguration(struct soap *soap, const char *URL, _tls__CreatePaneConfiguration 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, "tls:CreatePaneConfiguration", p->soap_type() == SOAP_TYPE__tls__CreatePaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__CreatePaneConfiguration * SOAP_FMAC4 soap_get__tls__CreatePaneConfiguration(struct soap*, _tls__CreatePaneConfiguration *, const char*, const char*); - -inline int soap_read__tls__CreatePaneConfiguration(struct soap *soap, _tls__CreatePaneConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__CreatePaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__CreatePaneConfiguration(struct soap *soap, const char *URL, _tls__CreatePaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__CreatePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__CreatePaneConfiguration(struct soap *soap, _tls__CreatePaneConfiguration *p) -{ - if (::soap_read__tls__CreatePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__SetPaneConfigurationResponse_DEFINED -#define SOAP_TYPE__tls__SetPaneConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfigurationResponse(struct soap*, const char*, int, const _tls__SetPaneConfigurationResponse *, const char*); -SOAP_FMAC3 _tls__SetPaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__SetPaneConfigurationResponse(struct soap*, const char*, _tls__SetPaneConfigurationResponse *, const char*); -SOAP_FMAC1 _tls__SetPaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__SetPaneConfigurationResponse * soap_new__tls__SetPaneConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__SetPaneConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__SetPaneConfigurationResponse * soap_new_req__tls__SetPaneConfigurationResponse( - struct soap *soap) -{ - _tls__SetPaneConfigurationResponse *_p = ::soap_new__tls__SetPaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tls__SetPaneConfigurationResponse * soap_new_set__tls__SetPaneConfigurationResponse( - struct soap *soap, - const std::vector & __any) -{ - _tls__SetPaneConfigurationResponse *_p = ::soap_new__tls__SetPaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetPaneConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__SetPaneConfigurationResponse(struct soap *soap, _tls__SetPaneConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:SetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__SetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationResponse 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, "tls:SetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__SetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationResponse 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, "tls:SetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__SetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationResponse 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, "tls:SetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__SetPaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__SetPaneConfigurationResponse(struct soap*, _tls__SetPaneConfigurationResponse *, const char*, const char*); - -inline int soap_read__tls__SetPaneConfigurationResponse(struct soap *soap, _tls__SetPaneConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__SetPaneConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__SetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__SetPaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__SetPaneConfigurationResponse(struct soap *soap, _tls__SetPaneConfigurationResponse *p) -{ - if (::soap_read__tls__SetPaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__SetPaneConfiguration_DEFINED -#define SOAP_TYPE__tls__SetPaneConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfiguration(struct soap*, const char*, int, const _tls__SetPaneConfiguration *, const char*); -SOAP_FMAC3 _tls__SetPaneConfiguration * SOAP_FMAC4 soap_in__tls__SetPaneConfiguration(struct soap*, const char*, _tls__SetPaneConfiguration *, const char*); -SOAP_FMAC1 _tls__SetPaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__SetPaneConfiguration * soap_new__tls__SetPaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__SetPaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tls__SetPaneConfiguration * soap_new_req__tls__SetPaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - tt__PaneConfiguration *PaneConfiguration) -{ - _tls__SetPaneConfiguration *_p = ::soap_new__tls__SetPaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetPaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__SetPaneConfiguration::PaneConfiguration = PaneConfiguration; - } - return _p; -} - -inline _tls__SetPaneConfiguration * soap_new_set__tls__SetPaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - tt__PaneConfiguration *PaneConfiguration, - const std::vector & __any) -{ - _tls__SetPaneConfiguration *_p = ::soap_new__tls__SetPaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetPaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__SetPaneConfiguration::PaneConfiguration = PaneConfiguration; - _p->_tls__SetPaneConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tls__SetPaneConfiguration(struct soap *soap, _tls__SetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:SetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__SetPaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__SetPaneConfiguration(struct soap *soap, const char *URL, _tls__SetPaneConfiguration 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, "tls:SetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__SetPaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__SetPaneConfiguration(struct soap *soap, const char *URL, _tls__SetPaneConfiguration 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, "tls:SetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__SetPaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__SetPaneConfiguration(struct soap *soap, const char *URL, _tls__SetPaneConfiguration 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, "tls:SetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__SetPaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__SetPaneConfiguration * SOAP_FMAC4 soap_get__tls__SetPaneConfiguration(struct soap*, _tls__SetPaneConfiguration *, const char*, const char*); - -inline int soap_read__tls__SetPaneConfiguration(struct soap *soap, _tls__SetPaneConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__SetPaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__SetPaneConfiguration(struct soap *soap, const char *URL, _tls__SetPaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__SetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__SetPaneConfiguration(struct soap *soap, _tls__SetPaneConfiguration *p) -{ - if (::soap_read__tls__SetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__SetPaneConfigurationsResponse_DEFINED -#define SOAP_TYPE__tls__SetPaneConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfigurationsResponse(struct soap*, const char*, int, const _tls__SetPaneConfigurationsResponse *, const char*); -SOAP_FMAC3 _tls__SetPaneConfigurationsResponse * SOAP_FMAC4 soap_in__tls__SetPaneConfigurationsResponse(struct soap*, const char*, _tls__SetPaneConfigurationsResponse *, const char*); -SOAP_FMAC1 _tls__SetPaneConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__SetPaneConfigurationsResponse * soap_new__tls__SetPaneConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__SetPaneConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__SetPaneConfigurationsResponse * soap_new_req__tls__SetPaneConfigurationsResponse( - struct soap *soap) -{ - _tls__SetPaneConfigurationsResponse *_p = ::soap_new__tls__SetPaneConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tls__SetPaneConfigurationsResponse * soap_new_set__tls__SetPaneConfigurationsResponse( - struct soap *soap, - const std::vector & __any) -{ - _tls__SetPaneConfigurationsResponse *_p = ::soap_new__tls__SetPaneConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetPaneConfigurationsResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__SetPaneConfigurationsResponse(struct soap *soap, _tls__SetPaneConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:SetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__SetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationsResponse 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, "tls:SetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__SetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationsResponse 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, "tls:SetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__SetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationsResponse 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, "tls:SetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__SetPaneConfigurationsResponse * SOAP_FMAC4 soap_get__tls__SetPaneConfigurationsResponse(struct soap*, _tls__SetPaneConfigurationsResponse *, const char*, const char*); - -inline int soap_read__tls__SetPaneConfigurationsResponse(struct soap *soap, _tls__SetPaneConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__SetPaneConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__SetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__SetPaneConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__SetPaneConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__SetPaneConfigurationsResponse(struct soap *soap, _tls__SetPaneConfigurationsResponse *p) -{ - if (::soap_read__tls__SetPaneConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__SetPaneConfigurations_DEFINED -#define SOAP_TYPE__tls__SetPaneConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetPaneConfigurations(struct soap*, const char*, int, const _tls__SetPaneConfigurations *, const char*); -SOAP_FMAC3 _tls__SetPaneConfigurations * SOAP_FMAC4 soap_in__tls__SetPaneConfigurations(struct soap*, const char*, _tls__SetPaneConfigurations *, const char*); -SOAP_FMAC1 _tls__SetPaneConfigurations * SOAP_FMAC2 soap_instantiate__tls__SetPaneConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__SetPaneConfigurations * soap_new__tls__SetPaneConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__SetPaneConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _tls__SetPaneConfigurations * soap_new_req__tls__SetPaneConfigurations( - struct soap *soap, - const std::string& VideoOutput, - const std::vector & PaneConfiguration) -{ - _tls__SetPaneConfigurations *_p = ::soap_new__tls__SetPaneConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetPaneConfigurations::VideoOutput = VideoOutput; - _p->_tls__SetPaneConfigurations::PaneConfiguration = PaneConfiguration; - } - return _p; -} - -inline _tls__SetPaneConfigurations * soap_new_set__tls__SetPaneConfigurations( - struct soap *soap, - const std::string& VideoOutput, - const std::vector & PaneConfiguration) -{ - _tls__SetPaneConfigurations *_p = ::soap_new__tls__SetPaneConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetPaneConfigurations::VideoOutput = VideoOutput; - _p->_tls__SetPaneConfigurations::PaneConfiguration = PaneConfiguration; - } - return _p; -} - -inline int soap_write__tls__SetPaneConfigurations(struct soap *soap, _tls__SetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:SetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__SetPaneConfigurations(struct soap *soap, const char *URL, _tls__SetPaneConfigurations 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, "tls:SetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__SetPaneConfigurations(struct soap *soap, const char *URL, _tls__SetPaneConfigurations 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, "tls:SetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__SetPaneConfigurations(struct soap *soap, const char *URL, _tls__SetPaneConfigurations 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, "tls:SetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__SetPaneConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__SetPaneConfigurations * SOAP_FMAC4 soap_get__tls__SetPaneConfigurations(struct soap*, _tls__SetPaneConfigurations *, const char*, const char*); - -inline int soap_read__tls__SetPaneConfigurations(struct soap *soap, _tls__SetPaneConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__SetPaneConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__SetPaneConfigurations(struct soap *soap, const char *URL, _tls__SetPaneConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__SetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__SetPaneConfigurations(struct soap *soap, _tls__SetPaneConfigurations *p) -{ - if (::soap_read__tls__SetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetPaneConfigurationResponse_DEFINED -#define SOAP_TYPE__tls__GetPaneConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfigurationResponse(struct soap*, const char*, int, const _tls__GetPaneConfigurationResponse *, const char*); -SOAP_FMAC3 _tls__GetPaneConfigurationResponse * SOAP_FMAC4 soap_in__tls__GetPaneConfigurationResponse(struct soap*, const char*, _tls__GetPaneConfigurationResponse *, const char*); -SOAP_FMAC1 _tls__GetPaneConfigurationResponse * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetPaneConfigurationResponse * soap_new__tls__GetPaneConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetPaneConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetPaneConfigurationResponse * soap_new_req__tls__GetPaneConfigurationResponse( - struct soap *soap, - tt__PaneConfiguration *PaneConfiguration) -{ - _tls__GetPaneConfigurationResponse *_p = ::soap_new__tls__GetPaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfigurationResponse::PaneConfiguration = PaneConfiguration; - } - return _p; -} - -inline _tls__GetPaneConfigurationResponse * soap_new_set__tls__GetPaneConfigurationResponse( - struct soap *soap, - tt__PaneConfiguration *PaneConfiguration, - const std::vector & __any) -{ - _tls__GetPaneConfigurationResponse *_p = ::soap_new__tls__GetPaneConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfigurationResponse::PaneConfiguration = PaneConfiguration; - _p->_tls__GetPaneConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__GetPaneConfigurationResponse(struct soap *soap, _tls__GetPaneConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationResponse 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, "tls:GetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationResponse 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, "tls:GetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationResponse 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, "tls:GetPaneConfigurationResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetPaneConfigurationResponse * SOAP_FMAC4 soap_get__tls__GetPaneConfigurationResponse(struct soap*, _tls__GetPaneConfigurationResponse *, const char*, const char*); - -inline int soap_read__tls__GetPaneConfigurationResponse(struct soap *soap, _tls__GetPaneConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetPaneConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetPaneConfigurationResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetPaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetPaneConfigurationResponse(struct soap *soap, _tls__GetPaneConfigurationResponse *p) -{ - if (::soap_read__tls__GetPaneConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetPaneConfiguration_DEFINED -#define SOAP_TYPE__tls__GetPaneConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfiguration(struct soap*, const char*, int, const _tls__GetPaneConfiguration *, const char*); -SOAP_FMAC3 _tls__GetPaneConfiguration * SOAP_FMAC4 soap_in__tls__GetPaneConfiguration(struct soap*, const char*, _tls__GetPaneConfiguration *, const char*); -SOAP_FMAC1 _tls__GetPaneConfiguration * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetPaneConfiguration * soap_new__tls__GetPaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetPaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetPaneConfiguration * soap_new_req__tls__GetPaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - const std::string& Pane) -{ - _tls__GetPaneConfiguration *_p = ::soap_new__tls__GetPaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__GetPaneConfiguration::Pane = Pane; - } - return _p; -} - -inline _tls__GetPaneConfiguration * soap_new_set__tls__GetPaneConfiguration( - struct soap *soap, - const std::string& VideoOutput, - const std::string& Pane, - const std::vector & __any) -{ - _tls__GetPaneConfiguration *_p = ::soap_new__tls__GetPaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfiguration::VideoOutput = VideoOutput; - _p->_tls__GetPaneConfiguration::Pane = Pane; - _p->_tls__GetPaneConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tls__GetPaneConfiguration(struct soap *soap, _tls__GetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__GetPaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetPaneConfiguration(struct soap *soap, const char *URL, _tls__GetPaneConfiguration 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, "tls:GetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__GetPaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetPaneConfiguration(struct soap *soap, const char *URL, _tls__GetPaneConfiguration 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, "tls:GetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__GetPaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetPaneConfiguration(struct soap *soap, const char *URL, _tls__GetPaneConfiguration 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, "tls:GetPaneConfiguration", p->soap_type() == SOAP_TYPE__tls__GetPaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetPaneConfiguration * SOAP_FMAC4 soap_get__tls__GetPaneConfiguration(struct soap*, _tls__GetPaneConfiguration *, const char*, const char*); - -inline int soap_read__tls__GetPaneConfiguration(struct soap *soap, _tls__GetPaneConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetPaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetPaneConfiguration(struct soap *soap, const char *URL, _tls__GetPaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetPaneConfiguration(struct soap *soap, _tls__GetPaneConfiguration *p) -{ - if (::soap_read__tls__GetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetPaneConfigurationsResponse_DEFINED -#define SOAP_TYPE__tls__GetPaneConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfigurationsResponse(struct soap*, const char*, int, const _tls__GetPaneConfigurationsResponse *, const char*); -SOAP_FMAC3 _tls__GetPaneConfigurationsResponse * SOAP_FMAC4 soap_in__tls__GetPaneConfigurationsResponse(struct soap*, const char*, _tls__GetPaneConfigurationsResponse *, const char*); -SOAP_FMAC1 _tls__GetPaneConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetPaneConfigurationsResponse * soap_new__tls__GetPaneConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetPaneConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetPaneConfigurationsResponse * soap_new_req__tls__GetPaneConfigurationsResponse( - struct soap *soap, - const std::vector & PaneConfiguration) -{ - _tls__GetPaneConfigurationsResponse *_p = ::soap_new__tls__GetPaneConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfigurationsResponse::PaneConfiguration = PaneConfiguration; - } - return _p; -} - -inline _tls__GetPaneConfigurationsResponse * soap_new_set__tls__GetPaneConfigurationsResponse( - struct soap *soap, - const std::vector & PaneConfiguration) -{ - _tls__GetPaneConfigurationsResponse *_p = ::soap_new__tls__GetPaneConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfigurationsResponse::PaneConfiguration = PaneConfiguration; - } - return _p; -} - -inline int soap_write__tls__GetPaneConfigurationsResponse(struct soap *soap, _tls__GetPaneConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationsResponse 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, "tls:GetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationsResponse 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, "tls:GetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationsResponse 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, "tls:GetPaneConfigurationsResponse", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetPaneConfigurationsResponse * SOAP_FMAC4 soap_get__tls__GetPaneConfigurationsResponse(struct soap*, _tls__GetPaneConfigurationsResponse *, const char*, const char*); - -inline int soap_read__tls__GetPaneConfigurationsResponse(struct soap *soap, _tls__GetPaneConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetPaneConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetPaneConfigurationsResponse(struct soap *soap, const char *URL, _tls__GetPaneConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetPaneConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetPaneConfigurationsResponse(struct soap *soap, _tls__GetPaneConfigurationsResponse *p) -{ - if (::soap_read__tls__GetPaneConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetPaneConfigurations_DEFINED -#define SOAP_TYPE__tls__GetPaneConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetPaneConfigurations(struct soap*, const char*, int, const _tls__GetPaneConfigurations *, const char*); -SOAP_FMAC3 _tls__GetPaneConfigurations * SOAP_FMAC4 soap_in__tls__GetPaneConfigurations(struct soap*, const char*, _tls__GetPaneConfigurations *, const char*); -SOAP_FMAC1 _tls__GetPaneConfigurations * SOAP_FMAC2 soap_instantiate__tls__GetPaneConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetPaneConfigurations * soap_new__tls__GetPaneConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetPaneConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetPaneConfigurations * soap_new_req__tls__GetPaneConfigurations( - struct soap *soap, - const std::string& VideoOutput) -{ - _tls__GetPaneConfigurations *_p = ::soap_new__tls__GetPaneConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfigurations::VideoOutput = VideoOutput; - } - return _p; -} - -inline _tls__GetPaneConfigurations * soap_new_set__tls__GetPaneConfigurations( - struct soap *soap, - const std::string& VideoOutput, - const std::vector & __any) -{ - _tls__GetPaneConfigurations *_p = ::soap_new__tls__GetPaneConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetPaneConfigurations::VideoOutput = VideoOutput; - _p->_tls__GetPaneConfigurations::__any = __any; - } - return _p; -} - -inline int soap_write__tls__GetPaneConfigurations(struct soap *soap, _tls__GetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetPaneConfigurations(struct soap *soap, const char *URL, _tls__GetPaneConfigurations 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, "tls:GetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetPaneConfigurations(struct soap *soap, const char *URL, _tls__GetPaneConfigurations 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, "tls:GetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetPaneConfigurations(struct soap *soap, const char *URL, _tls__GetPaneConfigurations 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, "tls:GetPaneConfigurations", p->soap_type() == SOAP_TYPE__tls__GetPaneConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetPaneConfigurations * SOAP_FMAC4 soap_get__tls__GetPaneConfigurations(struct soap*, _tls__GetPaneConfigurations *, const char*, const char*); - -inline int soap_read__tls__GetPaneConfigurations(struct soap *soap, _tls__GetPaneConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetPaneConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetPaneConfigurations(struct soap *soap, const char *URL, _tls__GetPaneConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetPaneConfigurations(struct soap *soap, _tls__GetPaneConfigurations *p) -{ - if (::soap_read__tls__GetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetDisplayOptionsResponse_DEFINED -#define SOAP_TYPE__tls__GetDisplayOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetDisplayOptionsResponse(struct soap*, const char*, int, const _tls__GetDisplayOptionsResponse *, const char*); -SOAP_FMAC3 _tls__GetDisplayOptionsResponse * SOAP_FMAC4 soap_in__tls__GetDisplayOptionsResponse(struct soap*, const char*, _tls__GetDisplayOptionsResponse *, const char*); -SOAP_FMAC1 _tls__GetDisplayOptionsResponse * SOAP_FMAC2 soap_instantiate__tls__GetDisplayOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetDisplayOptionsResponse * soap_new__tls__GetDisplayOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetDisplayOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetDisplayOptionsResponse * soap_new_req__tls__GetDisplayOptionsResponse( - struct soap *soap, - tt__CodingCapabilities *CodingCapabilities) -{ - _tls__GetDisplayOptionsResponse *_p = ::soap_new__tls__GetDisplayOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetDisplayOptionsResponse::CodingCapabilities = CodingCapabilities; - } - return _p; -} - -inline _tls__GetDisplayOptionsResponse * soap_new_set__tls__GetDisplayOptionsResponse( - struct soap *soap, - tt__LayoutOptions *LayoutOptions, - tt__CodingCapabilities *CodingCapabilities, - const std::vector & __any) -{ - _tls__GetDisplayOptionsResponse *_p = ::soap_new__tls__GetDisplayOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetDisplayOptionsResponse::LayoutOptions = LayoutOptions; - _p->_tls__GetDisplayOptionsResponse::CodingCapabilities = CodingCapabilities; - _p->_tls__GetDisplayOptionsResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__GetDisplayOptionsResponse(struct soap *soap, _tls__GetDisplayOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetDisplayOptionsResponse", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetDisplayOptionsResponse(struct soap *soap, const char *URL, _tls__GetDisplayOptionsResponse 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, "tls:GetDisplayOptionsResponse", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetDisplayOptionsResponse(struct soap *soap, const char *URL, _tls__GetDisplayOptionsResponse 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, "tls:GetDisplayOptionsResponse", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetDisplayOptionsResponse(struct soap *soap, const char *URL, _tls__GetDisplayOptionsResponse 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, "tls:GetDisplayOptionsResponse", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetDisplayOptionsResponse * SOAP_FMAC4 soap_get__tls__GetDisplayOptionsResponse(struct soap*, _tls__GetDisplayOptionsResponse *, const char*, const char*); - -inline int soap_read__tls__GetDisplayOptionsResponse(struct soap *soap, _tls__GetDisplayOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetDisplayOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetDisplayOptionsResponse(struct soap *soap, const char *URL, _tls__GetDisplayOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetDisplayOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetDisplayOptionsResponse(struct soap *soap, _tls__GetDisplayOptionsResponse *p) -{ - if (::soap_read__tls__GetDisplayOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetDisplayOptions_DEFINED -#define SOAP_TYPE__tls__GetDisplayOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetDisplayOptions(struct soap*, const char*, int, const _tls__GetDisplayOptions *, const char*); -SOAP_FMAC3 _tls__GetDisplayOptions * SOAP_FMAC4 soap_in__tls__GetDisplayOptions(struct soap*, const char*, _tls__GetDisplayOptions *, const char*); -SOAP_FMAC1 _tls__GetDisplayOptions * SOAP_FMAC2 soap_instantiate__tls__GetDisplayOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetDisplayOptions * soap_new__tls__GetDisplayOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetDisplayOptions(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetDisplayOptions * soap_new_req__tls__GetDisplayOptions( - struct soap *soap, - const std::string& VideoOutput) -{ - _tls__GetDisplayOptions *_p = ::soap_new__tls__GetDisplayOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetDisplayOptions::VideoOutput = VideoOutput; - } - return _p; -} - -inline _tls__GetDisplayOptions * soap_new_set__tls__GetDisplayOptions( - struct soap *soap, - const std::string& VideoOutput, - const std::vector & __any) -{ - _tls__GetDisplayOptions *_p = ::soap_new__tls__GetDisplayOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetDisplayOptions::VideoOutput = VideoOutput; - _p->_tls__GetDisplayOptions::__any = __any; - } - return _p; -} - -inline int soap_write__tls__GetDisplayOptions(struct soap *soap, _tls__GetDisplayOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetDisplayOptions", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetDisplayOptions(struct soap *soap, const char *URL, _tls__GetDisplayOptions 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, "tls:GetDisplayOptions", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetDisplayOptions(struct soap *soap, const char *URL, _tls__GetDisplayOptions 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, "tls:GetDisplayOptions", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetDisplayOptions(struct soap *soap, const char *URL, _tls__GetDisplayOptions 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, "tls:GetDisplayOptions", p->soap_type() == SOAP_TYPE__tls__GetDisplayOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetDisplayOptions * SOAP_FMAC4 soap_get__tls__GetDisplayOptions(struct soap*, _tls__GetDisplayOptions *, const char*, const char*); - -inline int soap_read__tls__GetDisplayOptions(struct soap *soap, _tls__GetDisplayOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetDisplayOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetDisplayOptions(struct soap *soap, const char *URL, _tls__GetDisplayOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetDisplayOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetDisplayOptions(struct soap *soap, _tls__GetDisplayOptions *p) -{ - if (::soap_read__tls__GetDisplayOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__SetLayoutResponse_DEFINED -#define SOAP_TYPE__tls__SetLayoutResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetLayoutResponse(struct soap*, const char*, int, const _tls__SetLayoutResponse *, const char*); -SOAP_FMAC3 _tls__SetLayoutResponse * SOAP_FMAC4 soap_in__tls__SetLayoutResponse(struct soap*, const char*, _tls__SetLayoutResponse *, const char*); -SOAP_FMAC1 _tls__SetLayoutResponse * SOAP_FMAC2 soap_instantiate__tls__SetLayoutResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__SetLayoutResponse * soap_new__tls__SetLayoutResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__SetLayoutResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__SetLayoutResponse * soap_new_req__tls__SetLayoutResponse( - struct soap *soap) -{ - _tls__SetLayoutResponse *_p = ::soap_new__tls__SetLayoutResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tls__SetLayoutResponse * soap_new_set__tls__SetLayoutResponse( - struct soap *soap, - const std::vector & __any) -{ - _tls__SetLayoutResponse *_p = ::soap_new__tls__SetLayoutResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetLayoutResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__SetLayoutResponse(struct soap *soap, _tls__SetLayoutResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:SetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__SetLayoutResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__SetLayoutResponse(struct soap *soap, const char *URL, _tls__SetLayoutResponse 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, "tls:SetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__SetLayoutResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__SetLayoutResponse(struct soap *soap, const char *URL, _tls__SetLayoutResponse 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, "tls:SetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__SetLayoutResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__SetLayoutResponse(struct soap *soap, const char *URL, _tls__SetLayoutResponse 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, "tls:SetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__SetLayoutResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__SetLayoutResponse * SOAP_FMAC4 soap_get__tls__SetLayoutResponse(struct soap*, _tls__SetLayoutResponse *, const char*, const char*); - -inline int soap_read__tls__SetLayoutResponse(struct soap *soap, _tls__SetLayoutResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__SetLayoutResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__SetLayoutResponse(struct soap *soap, const char *URL, _tls__SetLayoutResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__SetLayoutResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__SetLayoutResponse(struct soap *soap, _tls__SetLayoutResponse *p) -{ - if (::soap_read__tls__SetLayoutResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__SetLayout_DEFINED -#define SOAP_TYPE__tls__SetLayout_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__SetLayout(struct soap*, const char*, int, const _tls__SetLayout *, const char*); -SOAP_FMAC3 _tls__SetLayout * SOAP_FMAC4 soap_in__tls__SetLayout(struct soap*, const char*, _tls__SetLayout *, const char*); -SOAP_FMAC1 _tls__SetLayout * SOAP_FMAC2 soap_instantiate__tls__SetLayout(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__SetLayout * soap_new__tls__SetLayout(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__SetLayout(soap, n, NULL, NULL, NULL); -} - -inline _tls__SetLayout * soap_new_req__tls__SetLayout( - struct soap *soap, - const std::string& VideoOutput, - tt__Layout *Layout) -{ - _tls__SetLayout *_p = ::soap_new__tls__SetLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetLayout::VideoOutput = VideoOutput; - _p->_tls__SetLayout::Layout = Layout; - } - return _p; -} - -inline _tls__SetLayout * soap_new_set__tls__SetLayout( - struct soap *soap, - const std::string& VideoOutput, - tt__Layout *Layout, - const std::vector & __any) -{ - _tls__SetLayout *_p = ::soap_new__tls__SetLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__SetLayout::VideoOutput = VideoOutput; - _p->_tls__SetLayout::Layout = Layout; - _p->_tls__SetLayout::__any = __any; - } - return _p; -} - -inline int soap_write__tls__SetLayout(struct soap *soap, _tls__SetLayout const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:SetLayout", p->soap_type() == SOAP_TYPE__tls__SetLayout ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__SetLayout(struct soap *soap, const char *URL, _tls__SetLayout 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, "tls:SetLayout", p->soap_type() == SOAP_TYPE__tls__SetLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__SetLayout(struct soap *soap, const char *URL, _tls__SetLayout 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, "tls:SetLayout", p->soap_type() == SOAP_TYPE__tls__SetLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__SetLayout(struct soap *soap, const char *URL, _tls__SetLayout 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, "tls:SetLayout", p->soap_type() == SOAP_TYPE__tls__SetLayout ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__SetLayout * SOAP_FMAC4 soap_get__tls__SetLayout(struct soap*, _tls__SetLayout *, const char*, const char*); - -inline int soap_read__tls__SetLayout(struct soap *soap, _tls__SetLayout *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__SetLayout(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__SetLayout(struct soap *soap, const char *URL, _tls__SetLayout *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__SetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__SetLayout(struct soap *soap, _tls__SetLayout *p) -{ - if (::soap_read__tls__SetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetLayoutResponse_DEFINED -#define SOAP_TYPE__tls__GetLayoutResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetLayoutResponse(struct soap*, const char*, int, const _tls__GetLayoutResponse *, const char*); -SOAP_FMAC3 _tls__GetLayoutResponse * SOAP_FMAC4 soap_in__tls__GetLayoutResponse(struct soap*, const char*, _tls__GetLayoutResponse *, const char*); -SOAP_FMAC1 _tls__GetLayoutResponse * SOAP_FMAC2 soap_instantiate__tls__GetLayoutResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetLayoutResponse * soap_new__tls__GetLayoutResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetLayoutResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetLayoutResponse * soap_new_req__tls__GetLayoutResponse( - struct soap *soap, - tt__Layout *Layout) -{ - _tls__GetLayoutResponse *_p = ::soap_new__tls__GetLayoutResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetLayoutResponse::Layout = Layout; - } - return _p; -} - -inline _tls__GetLayoutResponse * soap_new_set__tls__GetLayoutResponse( - struct soap *soap, - tt__Layout *Layout, - const std::vector & __any) -{ - _tls__GetLayoutResponse *_p = ::soap_new__tls__GetLayoutResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetLayoutResponse::Layout = Layout; - _p->_tls__GetLayoutResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tls__GetLayoutResponse(struct soap *soap, _tls__GetLayoutResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__GetLayoutResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetLayoutResponse(struct soap *soap, const char *URL, _tls__GetLayoutResponse 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, "tls:GetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__GetLayoutResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetLayoutResponse(struct soap *soap, const char *URL, _tls__GetLayoutResponse 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, "tls:GetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__GetLayoutResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetLayoutResponse(struct soap *soap, const char *URL, _tls__GetLayoutResponse 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, "tls:GetLayoutResponse", p->soap_type() == SOAP_TYPE__tls__GetLayoutResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetLayoutResponse * SOAP_FMAC4 soap_get__tls__GetLayoutResponse(struct soap*, _tls__GetLayoutResponse *, const char*, const char*); - -inline int soap_read__tls__GetLayoutResponse(struct soap *soap, _tls__GetLayoutResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetLayoutResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetLayoutResponse(struct soap *soap, const char *URL, _tls__GetLayoutResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetLayoutResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetLayoutResponse(struct soap *soap, _tls__GetLayoutResponse *p) -{ - if (::soap_read__tls__GetLayoutResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetLayout_DEFINED -#define SOAP_TYPE__tls__GetLayout_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetLayout(struct soap*, const char*, int, const _tls__GetLayout *, const char*); -SOAP_FMAC3 _tls__GetLayout * SOAP_FMAC4 soap_in__tls__GetLayout(struct soap*, const char*, _tls__GetLayout *, const char*); -SOAP_FMAC1 _tls__GetLayout * SOAP_FMAC2 soap_instantiate__tls__GetLayout(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetLayout * soap_new__tls__GetLayout(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetLayout(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetLayout * soap_new_req__tls__GetLayout( - struct soap *soap, - const std::string& VideoOutput) -{ - _tls__GetLayout *_p = ::soap_new__tls__GetLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetLayout::VideoOutput = VideoOutput; - } - return _p; -} - -inline _tls__GetLayout * soap_new_set__tls__GetLayout( - struct soap *soap, - const std::string& VideoOutput, - const std::vector & __any) -{ - _tls__GetLayout *_p = ::soap_new__tls__GetLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetLayout::VideoOutput = VideoOutput; - _p->_tls__GetLayout::__any = __any; - } - return _p; -} - -inline int soap_write__tls__GetLayout(struct soap *soap, _tls__GetLayout const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetLayout", p->soap_type() == SOAP_TYPE__tls__GetLayout ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetLayout(struct soap *soap, const char *URL, _tls__GetLayout 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, "tls:GetLayout", p->soap_type() == SOAP_TYPE__tls__GetLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetLayout(struct soap *soap, const char *URL, _tls__GetLayout 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, "tls:GetLayout", p->soap_type() == SOAP_TYPE__tls__GetLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetLayout(struct soap *soap, const char *URL, _tls__GetLayout 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, "tls:GetLayout", p->soap_type() == SOAP_TYPE__tls__GetLayout ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetLayout * SOAP_FMAC4 soap_get__tls__GetLayout(struct soap*, _tls__GetLayout *, const char*, const char*); - -inline int soap_read__tls__GetLayout(struct soap *soap, _tls__GetLayout *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetLayout(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetLayout(struct soap *soap, const char *URL, _tls__GetLayout *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetLayout(struct soap *soap, _tls__GetLayout *p) -{ - if (::soap_read__tls__GetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__tls__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _tls__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _tls__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tls__GetServiceCapabilitiesResponse(struct soap*, const char*, _tls__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _tls__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tls__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetServiceCapabilitiesResponse * soap_new__tls__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetServiceCapabilitiesResponse * soap_new_req__tls__GetServiceCapabilitiesResponse( - struct soap *soap, - tls__Capabilities *Capabilities) -{ - _tls__GetServiceCapabilitiesResponse *_p = ::soap_new__tls__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tls__GetServiceCapabilitiesResponse * soap_new_set__tls__GetServiceCapabilitiesResponse( - struct soap *soap, - tls__Capabilities *Capabilities) -{ - _tls__GetServiceCapabilitiesResponse *_p = ::soap_new__tls__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tls__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tls__GetServiceCapabilitiesResponse(struct soap *soap, _tls__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tls__GetServiceCapabilitiesResponse 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, "tls:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tls__GetServiceCapabilitiesResponse 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, "tls:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tls__GetServiceCapabilitiesResponse 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, "tls:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tls__GetServiceCapabilitiesResponse(struct soap*, _tls__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tls__GetServiceCapabilitiesResponse(struct soap *soap, _tls__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tls__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetServiceCapabilitiesResponse(struct soap *soap, _tls__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__tls__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tls__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__tls__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tls__GetServiceCapabilities(struct soap*, const char*, int, const _tls__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _tls__GetServiceCapabilities * SOAP_FMAC4 soap_in__tls__GetServiceCapabilities(struct soap*, const char*, _tls__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _tls__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tls__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tls__GetServiceCapabilities * soap_new__tls__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tls__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _tls__GetServiceCapabilities * soap_new_req__tls__GetServiceCapabilities( - struct soap *soap) -{ - _tls__GetServiceCapabilities *_p = ::soap_new__tls__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tls__GetServiceCapabilities * soap_new_set__tls__GetServiceCapabilities( - struct soap *soap) -{ - _tls__GetServiceCapabilities *_p = ::soap_new__tls__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tls__GetServiceCapabilities(struct soap *soap, _tls__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tls__GetServiceCapabilities(struct soap *soap, const char *URL, _tls__GetServiceCapabilities 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, "tls:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tls__GetServiceCapabilities(struct soap *soap, const char *URL, _tls__GetServiceCapabilities 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, "tls:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tls__GetServiceCapabilities(struct soap *soap, const char *URL, _tls__GetServiceCapabilities 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, "tls:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tls__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tls__GetServiceCapabilities * SOAP_FMAC4 soap_get__tls__GetServiceCapabilities(struct soap*, _tls__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__tls__GetServiceCapabilities(struct soap *soap, _tls__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tls__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tls__GetServiceCapabilities(struct soap *soap, const char *URL, _tls__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tls__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tls__GetServiceCapabilities(struct soap *soap, _tls__GetServiceCapabilities *p) -{ - if (::soap_read__tls__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tls__Capabilities_DEFINED -#define SOAP_TYPE_tls__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tls__Capabilities(struct soap*, const char*, int, const tls__Capabilities *, const char*); -SOAP_FMAC3 tls__Capabilities * SOAP_FMAC4 soap_in_tls__Capabilities(struct soap*, const char*, tls__Capabilities *, const char*); -SOAP_FMAC1 tls__Capabilities * SOAP_FMAC2 soap_instantiate_tls__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tls__Capabilities * soap_new_tls__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tls__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline tls__Capabilities * soap_new_req_tls__Capabilities( - struct soap *soap) -{ - tls__Capabilities *_p = ::soap_new_tls__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tls__Capabilities * soap_new_set_tls__Capabilities( - struct soap *soap, - const std::vector & __any, - bool *FixedLayout, - const struct soap_dom_attribute& __anyAttribute) -{ - tls__Capabilities *_p = ::soap_new_tls__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tls__Capabilities::__any = __any; - _p->tls__Capabilities::FixedLayout = FixedLayout; - _p->tls__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tls__Capabilities(struct soap *soap, tls__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tls:Capabilities", p->soap_type() == SOAP_TYPE_tls__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tls__Capabilities(struct soap *soap, const char *URL, tls__Capabilities 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, "tls:Capabilities", p->soap_type() == SOAP_TYPE_tls__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tls__Capabilities(struct soap *soap, const char *URL, tls__Capabilities 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, "tls:Capabilities", p->soap_type() == SOAP_TYPE_tls__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tls__Capabilities(struct soap *soap, const char *URL, tls__Capabilities 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, "tls:Capabilities", p->soap_type() == SOAP_TYPE_tls__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tls__Capabilities * SOAP_FMAC4 soap_get_tls__Capabilities(struct soap*, tls__Capabilities *, const char*, const char*); - -inline int soap_read_tls__Capabilities(struct soap *soap, tls__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tls__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tls__Capabilities(struct soap *soap, const char *URL, tls__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tls__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tls__Capabilities(struct soap *soap, tls__Capabilities *p) -{ - if (::soap_read_tls__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteGeoLocationResponse_DEFINED -#define SOAP_TYPE__tds__DeleteGeoLocationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteGeoLocationResponse(struct soap*, const char*, int, const _tds__DeleteGeoLocationResponse *, const char*); -SOAP_FMAC3 _tds__DeleteGeoLocationResponse * SOAP_FMAC4 soap_in__tds__DeleteGeoLocationResponse(struct soap*, const char*, _tds__DeleteGeoLocationResponse *, const char*); -SOAP_FMAC1 _tds__DeleteGeoLocationResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteGeoLocationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteGeoLocationResponse * soap_new__tds__DeleteGeoLocationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteGeoLocationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteGeoLocationResponse * soap_new_req__tds__DeleteGeoLocationResponse( - struct soap *soap) -{ - _tds__DeleteGeoLocationResponse *_p = ::soap_new__tds__DeleteGeoLocationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__DeleteGeoLocationResponse * soap_new_set__tds__DeleteGeoLocationResponse( - struct soap *soap) -{ - _tds__DeleteGeoLocationResponse *_p = ::soap_new__tds__DeleteGeoLocationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__DeleteGeoLocationResponse(struct soap *soap, _tds__DeleteGeoLocationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteGeoLocationResponse(struct soap *soap, const char *URL, _tds__DeleteGeoLocationResponse 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, "tds:DeleteGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteGeoLocationResponse(struct soap *soap, const char *URL, _tds__DeleteGeoLocationResponse 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, "tds:DeleteGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteGeoLocationResponse(struct soap *soap, const char *URL, _tds__DeleteGeoLocationResponse 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, "tds:DeleteGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteGeoLocationResponse * SOAP_FMAC4 soap_get__tds__DeleteGeoLocationResponse(struct soap*, _tds__DeleteGeoLocationResponse *, const char*, const char*); - -inline int soap_read__tds__DeleteGeoLocationResponse(struct soap *soap, _tds__DeleteGeoLocationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteGeoLocationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteGeoLocationResponse(struct soap *soap, const char *URL, _tds__DeleteGeoLocationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteGeoLocationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteGeoLocationResponse(struct soap *soap, _tds__DeleteGeoLocationResponse *p) -{ - if (::soap_read__tds__DeleteGeoLocationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteGeoLocation_DEFINED -#define SOAP_TYPE__tds__DeleteGeoLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteGeoLocation(struct soap*, const char*, int, const _tds__DeleteGeoLocation *, const char*); -SOAP_FMAC3 _tds__DeleteGeoLocation * SOAP_FMAC4 soap_in__tds__DeleteGeoLocation(struct soap*, const char*, _tds__DeleteGeoLocation *, const char*); -SOAP_FMAC1 _tds__DeleteGeoLocation * SOAP_FMAC2 soap_instantiate__tds__DeleteGeoLocation(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteGeoLocation * soap_new__tds__DeleteGeoLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteGeoLocation(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteGeoLocation * soap_new_req__tds__DeleteGeoLocation( - struct soap *soap, - const std::vector & Location) -{ - _tds__DeleteGeoLocation *_p = ::soap_new__tds__DeleteGeoLocation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteGeoLocation::Location = Location; - } - return _p; -} - -inline _tds__DeleteGeoLocation * soap_new_set__tds__DeleteGeoLocation( - struct soap *soap, - const std::vector & Location) -{ - _tds__DeleteGeoLocation *_p = ::soap_new__tds__DeleteGeoLocation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteGeoLocation::Location = Location; - } - return _p; -} - -inline int soap_write__tds__DeleteGeoLocation(struct soap *soap, _tds__DeleteGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteGeoLocation", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteGeoLocation(struct soap *soap, const char *URL, _tds__DeleteGeoLocation 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, "tds:DeleteGeoLocation", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteGeoLocation(struct soap *soap, const char *URL, _tds__DeleteGeoLocation 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, "tds:DeleteGeoLocation", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteGeoLocation(struct soap *soap, const char *URL, _tds__DeleteGeoLocation 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, "tds:DeleteGeoLocation", p->soap_type() == SOAP_TYPE__tds__DeleteGeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteGeoLocation * SOAP_FMAC4 soap_get__tds__DeleteGeoLocation(struct soap*, _tds__DeleteGeoLocation *, const char*, const char*); - -inline int soap_read__tds__DeleteGeoLocation(struct soap *soap, _tds__DeleteGeoLocation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteGeoLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteGeoLocation(struct soap *soap, const char *URL, _tds__DeleteGeoLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteGeoLocation(struct soap *soap, _tds__DeleteGeoLocation *p) -{ - if (::soap_read__tds__DeleteGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetGeoLocationResponse_DEFINED -#define SOAP_TYPE__tds__SetGeoLocationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetGeoLocationResponse(struct soap*, const char*, int, const _tds__SetGeoLocationResponse *, const char*); -SOAP_FMAC3 _tds__SetGeoLocationResponse * SOAP_FMAC4 soap_in__tds__SetGeoLocationResponse(struct soap*, const char*, _tds__SetGeoLocationResponse *, const char*); -SOAP_FMAC1 _tds__SetGeoLocationResponse * SOAP_FMAC2 soap_instantiate__tds__SetGeoLocationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetGeoLocationResponse * soap_new__tds__SetGeoLocationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetGeoLocationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetGeoLocationResponse * soap_new_req__tds__SetGeoLocationResponse( - struct soap *soap) -{ - _tds__SetGeoLocationResponse *_p = ::soap_new__tds__SetGeoLocationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetGeoLocationResponse * soap_new_set__tds__SetGeoLocationResponse( - struct soap *soap) -{ - _tds__SetGeoLocationResponse *_p = ::soap_new__tds__SetGeoLocationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetGeoLocationResponse(struct soap *soap, _tds__SetGeoLocationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__SetGeoLocationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetGeoLocationResponse(struct soap *soap, const char *URL, _tds__SetGeoLocationResponse 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, "tds:SetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__SetGeoLocationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetGeoLocationResponse(struct soap *soap, const char *URL, _tds__SetGeoLocationResponse 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, "tds:SetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__SetGeoLocationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetGeoLocationResponse(struct soap *soap, const char *URL, _tds__SetGeoLocationResponse 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, "tds:SetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__SetGeoLocationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetGeoLocationResponse * SOAP_FMAC4 soap_get__tds__SetGeoLocationResponse(struct soap*, _tds__SetGeoLocationResponse *, const char*, const char*); - -inline int soap_read__tds__SetGeoLocationResponse(struct soap *soap, _tds__SetGeoLocationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetGeoLocationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetGeoLocationResponse(struct soap *soap, const char *URL, _tds__SetGeoLocationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetGeoLocationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetGeoLocationResponse(struct soap *soap, _tds__SetGeoLocationResponse *p) -{ - if (::soap_read__tds__SetGeoLocationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetGeoLocation_DEFINED -#define SOAP_TYPE__tds__SetGeoLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetGeoLocation(struct soap*, const char*, int, const _tds__SetGeoLocation *, const char*); -SOAP_FMAC3 _tds__SetGeoLocation * SOAP_FMAC4 soap_in__tds__SetGeoLocation(struct soap*, const char*, _tds__SetGeoLocation *, const char*); -SOAP_FMAC1 _tds__SetGeoLocation * SOAP_FMAC2 soap_instantiate__tds__SetGeoLocation(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetGeoLocation * soap_new__tds__SetGeoLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetGeoLocation(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetGeoLocation * soap_new_req__tds__SetGeoLocation( - struct soap *soap, - const std::vector & Location) -{ - _tds__SetGeoLocation *_p = ::soap_new__tds__SetGeoLocation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetGeoLocation::Location = Location; - } - return _p; -} - -inline _tds__SetGeoLocation * soap_new_set__tds__SetGeoLocation( - struct soap *soap, - const std::vector & Location) -{ - _tds__SetGeoLocation *_p = ::soap_new__tds__SetGeoLocation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetGeoLocation::Location = Location; - } - return _p; -} - -inline int soap_write__tds__SetGeoLocation(struct soap *soap, _tds__SetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetGeoLocation", p->soap_type() == SOAP_TYPE__tds__SetGeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetGeoLocation(struct soap *soap, const char *URL, _tds__SetGeoLocation 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, "tds:SetGeoLocation", p->soap_type() == SOAP_TYPE__tds__SetGeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetGeoLocation(struct soap *soap, const char *URL, _tds__SetGeoLocation 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, "tds:SetGeoLocation", p->soap_type() == SOAP_TYPE__tds__SetGeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetGeoLocation(struct soap *soap, const char *URL, _tds__SetGeoLocation 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, "tds:SetGeoLocation", p->soap_type() == SOAP_TYPE__tds__SetGeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetGeoLocation * SOAP_FMAC4 soap_get__tds__SetGeoLocation(struct soap*, _tds__SetGeoLocation *, const char*, const char*); - -inline int soap_read__tds__SetGeoLocation(struct soap *soap, _tds__SetGeoLocation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetGeoLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetGeoLocation(struct soap *soap, const char *URL, _tds__SetGeoLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetGeoLocation(struct soap *soap, _tds__SetGeoLocation *p) -{ - if (::soap_read__tds__SetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetGeoLocationResponse_DEFINED -#define SOAP_TYPE__tds__GetGeoLocationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetGeoLocationResponse(struct soap*, const char*, int, const _tds__GetGeoLocationResponse *, const char*); -SOAP_FMAC3 _tds__GetGeoLocationResponse * SOAP_FMAC4 soap_in__tds__GetGeoLocationResponse(struct soap*, const char*, _tds__GetGeoLocationResponse *, const char*); -SOAP_FMAC1 _tds__GetGeoLocationResponse * SOAP_FMAC2 soap_instantiate__tds__GetGeoLocationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetGeoLocationResponse * soap_new__tds__GetGeoLocationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetGeoLocationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetGeoLocationResponse * soap_new_req__tds__GetGeoLocationResponse( - struct soap *soap) -{ - _tds__GetGeoLocationResponse *_p = ::soap_new__tds__GetGeoLocationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetGeoLocationResponse * soap_new_set__tds__GetGeoLocationResponse( - struct soap *soap, - const std::vector & Location) -{ - _tds__GetGeoLocationResponse *_p = ::soap_new__tds__GetGeoLocationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetGeoLocationResponse::Location = Location; - } - return _p; -} - -inline int soap_write__tds__GetGeoLocationResponse(struct soap *soap, _tds__GetGeoLocationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__GetGeoLocationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetGeoLocationResponse(struct soap *soap, const char *URL, _tds__GetGeoLocationResponse 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, "tds:GetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__GetGeoLocationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetGeoLocationResponse(struct soap *soap, const char *URL, _tds__GetGeoLocationResponse 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, "tds:GetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__GetGeoLocationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetGeoLocationResponse(struct soap *soap, const char *URL, _tds__GetGeoLocationResponse 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, "tds:GetGeoLocationResponse", p->soap_type() == SOAP_TYPE__tds__GetGeoLocationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetGeoLocationResponse * SOAP_FMAC4 soap_get__tds__GetGeoLocationResponse(struct soap*, _tds__GetGeoLocationResponse *, const char*, const char*); - -inline int soap_read__tds__GetGeoLocationResponse(struct soap *soap, _tds__GetGeoLocationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetGeoLocationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetGeoLocationResponse(struct soap *soap, const char *URL, _tds__GetGeoLocationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetGeoLocationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetGeoLocationResponse(struct soap *soap, _tds__GetGeoLocationResponse *p) -{ - if (::soap_read__tds__GetGeoLocationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetGeoLocation_DEFINED -#define SOAP_TYPE__tds__GetGeoLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetGeoLocation(struct soap*, const char*, int, const _tds__GetGeoLocation *, const char*); -SOAP_FMAC3 _tds__GetGeoLocation * SOAP_FMAC4 soap_in__tds__GetGeoLocation(struct soap*, const char*, _tds__GetGeoLocation *, const char*); -SOAP_FMAC1 _tds__GetGeoLocation * SOAP_FMAC2 soap_instantiate__tds__GetGeoLocation(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetGeoLocation * soap_new__tds__GetGeoLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetGeoLocation(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetGeoLocation * soap_new_req__tds__GetGeoLocation( - struct soap *soap) -{ - _tds__GetGeoLocation *_p = ::soap_new__tds__GetGeoLocation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetGeoLocation * soap_new_set__tds__GetGeoLocation( - struct soap *soap) -{ - _tds__GetGeoLocation *_p = ::soap_new__tds__GetGeoLocation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetGeoLocation(struct soap *soap, _tds__GetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetGeoLocation", p->soap_type() == SOAP_TYPE__tds__GetGeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetGeoLocation(struct soap *soap, const char *URL, _tds__GetGeoLocation 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, "tds:GetGeoLocation", p->soap_type() == SOAP_TYPE__tds__GetGeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetGeoLocation(struct soap *soap, const char *URL, _tds__GetGeoLocation 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, "tds:GetGeoLocation", p->soap_type() == SOAP_TYPE__tds__GetGeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetGeoLocation(struct soap *soap, const char *URL, _tds__GetGeoLocation 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, "tds:GetGeoLocation", p->soap_type() == SOAP_TYPE__tds__GetGeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetGeoLocation * SOAP_FMAC4 soap_get__tds__GetGeoLocation(struct soap*, _tds__GetGeoLocation *, const char*, const char*); - -inline int soap_read__tds__GetGeoLocation(struct soap *soap, _tds__GetGeoLocation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetGeoLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetGeoLocation(struct soap *soap, const char *URL, _tds__GetGeoLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetGeoLocation(struct soap *soap, _tds__GetGeoLocation *p) -{ - if (::soap_read__tds__GetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteStorageConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__DeleteStorageConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteStorageConfigurationResponse(struct soap*, const char*, int, const _tds__DeleteStorageConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__DeleteStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__DeleteStorageConfigurationResponse(struct soap*, const char*, _tds__DeleteStorageConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__DeleteStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteStorageConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteStorageConfigurationResponse * soap_new__tds__DeleteStorageConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteStorageConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteStorageConfigurationResponse * soap_new_req__tds__DeleteStorageConfigurationResponse( - struct soap *soap) -{ - _tds__DeleteStorageConfigurationResponse *_p = ::soap_new__tds__DeleteStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__DeleteStorageConfigurationResponse * soap_new_set__tds__DeleteStorageConfigurationResponse( - struct soap *soap) -{ - _tds__DeleteStorageConfigurationResponse *_p = ::soap_new__tds__DeleteStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__DeleteStorageConfigurationResponse(struct soap *soap, _tds__DeleteStorageConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteStorageConfigurationResponse 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, "tds:DeleteStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteStorageConfigurationResponse 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, "tds:DeleteStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteStorageConfigurationResponse 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, "tds:DeleteStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__DeleteStorageConfigurationResponse(struct soap*, _tds__DeleteStorageConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__DeleteStorageConfigurationResponse(struct soap *soap, _tds__DeleteStorageConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteStorageConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteStorageConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteStorageConfigurationResponse(struct soap *soap, _tds__DeleteStorageConfigurationResponse *p) -{ - if (::soap_read__tds__DeleteStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteStorageConfiguration_DEFINED -#define SOAP_TYPE__tds__DeleteStorageConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteStorageConfiguration(struct soap*, const char*, int, const _tds__DeleteStorageConfiguration *, const char*); -SOAP_FMAC3 _tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_in__tds__DeleteStorageConfiguration(struct soap*, const char*, _tds__DeleteStorageConfiguration *, const char*); -SOAP_FMAC1 _tds__DeleteStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__DeleteStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteStorageConfiguration * soap_new__tds__DeleteStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteStorageConfiguration * soap_new_req__tds__DeleteStorageConfiguration( - struct soap *soap, - const std::string& Token) -{ - _tds__DeleteStorageConfiguration *_p = ::soap_new__tds__DeleteStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteStorageConfiguration::Token = Token; - } - return _p; -} - -inline _tds__DeleteStorageConfiguration * soap_new_set__tds__DeleteStorageConfiguration( - struct soap *soap, - const std::string& Token) -{ - _tds__DeleteStorageConfiguration *_p = ::soap_new__tds__DeleteStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteStorageConfiguration::Token = Token; - } - return _p; -} - -inline int soap_write__tds__DeleteStorageConfiguration(struct soap *soap, _tds__DeleteStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, _tds__DeleteStorageConfiguration 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, "tds:DeleteStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, _tds__DeleteStorageConfiguration 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, "tds:DeleteStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, _tds__DeleteStorageConfiguration 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, "tds:DeleteStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_get__tds__DeleteStorageConfiguration(struct soap*, _tds__DeleteStorageConfiguration *, const char*, const char*); - -inline int soap_read__tds__DeleteStorageConfiguration(struct soap *soap, _tds__DeleteStorageConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, _tds__DeleteStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteStorageConfiguration(struct soap *soap, _tds__DeleteStorageConfiguration *p) -{ - if (::soap_read__tds__DeleteStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetStorageConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__SetStorageConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetStorageConfigurationResponse(struct soap*, const char*, int, const _tds__SetStorageConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__SetStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__SetStorageConfigurationResponse(struct soap*, const char*, _tds__SetStorageConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__SetStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__SetStorageConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetStorageConfigurationResponse * soap_new__tds__SetStorageConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetStorageConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetStorageConfigurationResponse * soap_new_req__tds__SetStorageConfigurationResponse( - struct soap *soap) -{ - _tds__SetStorageConfigurationResponse *_p = ::soap_new__tds__SetStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetStorageConfigurationResponse * soap_new_set__tds__SetStorageConfigurationResponse( - struct soap *soap) -{ - _tds__SetStorageConfigurationResponse *_p = ::soap_new__tds__SetStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetStorageConfigurationResponse(struct soap *soap, _tds__SetStorageConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__SetStorageConfigurationResponse 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, "tds:SetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__SetStorageConfigurationResponse 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, "tds:SetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__SetStorageConfigurationResponse 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, "tds:SetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__SetStorageConfigurationResponse(struct soap*, _tds__SetStorageConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__SetStorageConfigurationResponse(struct soap *soap, _tds__SetStorageConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetStorageConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__SetStorageConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetStorageConfigurationResponse(struct soap *soap, _tds__SetStorageConfigurationResponse *p) -{ - if (::soap_read__tds__SetStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetStorageConfiguration_DEFINED -#define SOAP_TYPE__tds__SetStorageConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetStorageConfiguration(struct soap*, const char*, int, const _tds__SetStorageConfiguration *, const char*); -SOAP_FMAC3 _tds__SetStorageConfiguration * SOAP_FMAC4 soap_in__tds__SetStorageConfiguration(struct soap*, const char*, _tds__SetStorageConfiguration *, const char*); -SOAP_FMAC1 _tds__SetStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__SetStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetStorageConfiguration * soap_new__tds__SetStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetStorageConfiguration * soap_new_req__tds__SetStorageConfiguration( - struct soap *soap, - tds__StorageConfiguration *StorageConfiguration) -{ - _tds__SetStorageConfiguration *_p = ::soap_new__tds__SetStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetStorageConfiguration::StorageConfiguration = StorageConfiguration; - } - return _p; -} - -inline _tds__SetStorageConfiguration * soap_new_set__tds__SetStorageConfiguration( - struct soap *soap, - tds__StorageConfiguration *StorageConfiguration) -{ - _tds__SetStorageConfiguration *_p = ::soap_new__tds__SetStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetStorageConfiguration::StorageConfiguration = StorageConfiguration; - } - return _p; -} - -inline int soap_write__tds__SetStorageConfiguration(struct soap *soap, _tds__SetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__SetStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetStorageConfiguration(struct soap *soap, const char *URL, _tds__SetStorageConfiguration 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, "tds:SetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__SetStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetStorageConfiguration(struct soap *soap, const char *URL, _tds__SetStorageConfiguration 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, "tds:SetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__SetStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetStorageConfiguration(struct soap *soap, const char *URL, _tds__SetStorageConfiguration 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, "tds:SetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__SetStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetStorageConfiguration * SOAP_FMAC4 soap_get__tds__SetStorageConfiguration(struct soap*, _tds__SetStorageConfiguration *, const char*, const char*); - -inline int soap_read__tds__SetStorageConfiguration(struct soap *soap, _tds__SetStorageConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetStorageConfiguration(struct soap *soap, const char *URL, _tds__SetStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetStorageConfiguration(struct soap *soap, _tds__SetStorageConfiguration *p) -{ - if (::soap_read__tds__SetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetStorageConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__GetStorageConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfigurationResponse(struct soap*, const char*, int, const _tds__GetStorageConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__GetStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__GetStorageConfigurationResponse(struct soap*, const char*, _tds__GetStorageConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__GetStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetStorageConfigurationResponse * soap_new__tds__GetStorageConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetStorageConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetStorageConfigurationResponse * soap_new_req__tds__GetStorageConfigurationResponse( - struct soap *soap, - tds__StorageConfiguration *StorageConfiguration) -{ - _tds__GetStorageConfigurationResponse *_p = ::soap_new__tds__GetStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetStorageConfigurationResponse::StorageConfiguration = StorageConfiguration; - } - return _p; -} - -inline _tds__GetStorageConfigurationResponse * soap_new_set__tds__GetStorageConfigurationResponse( - struct soap *soap, - tds__StorageConfiguration *StorageConfiguration) -{ - _tds__GetStorageConfigurationResponse *_p = ::soap_new__tds__GetStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetStorageConfigurationResponse::StorageConfiguration = StorageConfiguration; - } - return _p; -} - -inline int soap_write__tds__GetStorageConfigurationResponse(struct soap *soap, _tds__GetStorageConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationResponse 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, "tds:GetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationResponse 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, "tds:GetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationResponse 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, "tds:GetStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__GetStorageConfigurationResponse(struct soap*, _tds__GetStorageConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__GetStorageConfigurationResponse(struct soap *soap, _tds__GetStorageConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetStorageConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetStorageConfigurationResponse(struct soap *soap, _tds__GetStorageConfigurationResponse *p) -{ - if (::soap_read__tds__GetStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetStorageConfiguration_DEFINED -#define SOAP_TYPE__tds__GetStorageConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfiguration(struct soap*, const char*, int, const _tds__GetStorageConfiguration *, const char*); -SOAP_FMAC3 _tds__GetStorageConfiguration * SOAP_FMAC4 soap_in__tds__GetStorageConfiguration(struct soap*, const char*, _tds__GetStorageConfiguration *, const char*); -SOAP_FMAC1 _tds__GetStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetStorageConfiguration * soap_new__tds__GetStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetStorageConfiguration * soap_new_req__tds__GetStorageConfiguration( - struct soap *soap, - const std::string& Token) -{ - _tds__GetStorageConfiguration *_p = ::soap_new__tds__GetStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetStorageConfiguration::Token = Token; - } - return _p; -} - -inline _tds__GetStorageConfiguration * soap_new_set__tds__GetStorageConfiguration( - struct soap *soap, - const std::string& Token) -{ - _tds__GetStorageConfiguration *_p = ::soap_new__tds__GetStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetStorageConfiguration::Token = Token; - } - return _p; -} - -inline int soap_write__tds__GetStorageConfiguration(struct soap *soap, _tds__GetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__GetStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetStorageConfiguration(struct soap *soap, const char *URL, _tds__GetStorageConfiguration 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, "tds:GetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__GetStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetStorageConfiguration(struct soap *soap, const char *URL, _tds__GetStorageConfiguration 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, "tds:GetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__GetStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetStorageConfiguration(struct soap *soap, const char *URL, _tds__GetStorageConfiguration 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, "tds:GetStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__GetStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetStorageConfiguration * SOAP_FMAC4 soap_get__tds__GetStorageConfiguration(struct soap*, _tds__GetStorageConfiguration *, const char*, const char*); - -inline int soap_read__tds__GetStorageConfiguration(struct soap *soap, _tds__GetStorageConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetStorageConfiguration(struct soap *soap, const char *URL, _tds__GetStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetStorageConfiguration(struct soap *soap, _tds__GetStorageConfiguration *p) -{ - if (::soap_read__tds__GetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateStorageConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__CreateStorageConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateStorageConfigurationResponse(struct soap*, const char*, int, const _tds__CreateStorageConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__CreateStorageConfigurationResponse * SOAP_FMAC4 soap_in__tds__CreateStorageConfigurationResponse(struct soap*, const char*, _tds__CreateStorageConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__CreateStorageConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__CreateStorageConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateStorageConfigurationResponse * soap_new__tds__CreateStorageConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateStorageConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateStorageConfigurationResponse * soap_new_req__tds__CreateStorageConfigurationResponse( - struct soap *soap, - const std::string& Token) -{ - _tds__CreateStorageConfigurationResponse *_p = ::soap_new__tds__CreateStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateStorageConfigurationResponse::Token = Token; - } - return _p; -} - -inline _tds__CreateStorageConfigurationResponse * soap_new_set__tds__CreateStorageConfigurationResponse( - struct soap *soap, - const std::string& Token) -{ - _tds__CreateStorageConfigurationResponse *_p = ::soap_new__tds__CreateStorageConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateStorageConfigurationResponse::Token = Token; - } - return _p; -} - -inline int soap_write__tds__CreateStorageConfigurationResponse(struct soap *soap, _tds__CreateStorageConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateStorageConfigurationResponse 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, "tds:CreateStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateStorageConfigurationResponse 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, "tds:CreateStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateStorageConfigurationResponse 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, "tds:CreateStorageConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateStorageConfigurationResponse * SOAP_FMAC4 soap_get__tds__CreateStorageConfigurationResponse(struct soap*, _tds__CreateStorageConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__CreateStorageConfigurationResponse(struct soap *soap, _tds__CreateStorageConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateStorageConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateStorageConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateStorageConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateStorageConfigurationResponse(struct soap *soap, _tds__CreateStorageConfigurationResponse *p) -{ - if (::soap_read__tds__CreateStorageConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateStorageConfiguration_DEFINED -#define SOAP_TYPE__tds__CreateStorageConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateStorageConfiguration(struct soap*, const char*, int, const _tds__CreateStorageConfiguration *, const char*); -SOAP_FMAC3 _tds__CreateStorageConfiguration * SOAP_FMAC4 soap_in__tds__CreateStorageConfiguration(struct soap*, const char*, _tds__CreateStorageConfiguration *, const char*); -SOAP_FMAC1 _tds__CreateStorageConfiguration * SOAP_FMAC2 soap_instantiate__tds__CreateStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateStorageConfiguration * soap_new__tds__CreateStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateStorageConfiguration * soap_new_req__tds__CreateStorageConfiguration( - struct soap *soap, - tds__StorageConfigurationData *StorageConfiguration) -{ - _tds__CreateStorageConfiguration *_p = ::soap_new__tds__CreateStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateStorageConfiguration::StorageConfiguration = StorageConfiguration; - } - return _p; -} - -inline _tds__CreateStorageConfiguration * soap_new_set__tds__CreateStorageConfiguration( - struct soap *soap, - tds__StorageConfigurationData *StorageConfiguration) -{ - _tds__CreateStorageConfiguration *_p = ::soap_new__tds__CreateStorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateStorageConfiguration::StorageConfiguration = StorageConfiguration; - } - return _p; -} - -inline int soap_write__tds__CreateStorageConfiguration(struct soap *soap, _tds__CreateStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateStorageConfiguration(struct soap *soap, const char *URL, _tds__CreateStorageConfiguration 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, "tds:CreateStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateStorageConfiguration(struct soap *soap, const char *URL, _tds__CreateStorageConfiguration 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, "tds:CreateStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateStorageConfiguration(struct soap *soap, const char *URL, _tds__CreateStorageConfiguration 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, "tds:CreateStorageConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateStorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateStorageConfiguration * SOAP_FMAC4 soap_get__tds__CreateStorageConfiguration(struct soap*, _tds__CreateStorageConfiguration *, const char*, const char*); - -inline int soap_read__tds__CreateStorageConfiguration(struct soap *soap, _tds__CreateStorageConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateStorageConfiguration(struct soap *soap, const char *URL, _tds__CreateStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateStorageConfiguration(struct soap *soap, _tds__CreateStorageConfiguration *p) -{ - if (::soap_read__tds__CreateStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetStorageConfigurationsResponse_DEFINED -#define SOAP_TYPE__tds__GetStorageConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfigurationsResponse(struct soap*, const char*, int, const _tds__GetStorageConfigurationsResponse *, const char*); -SOAP_FMAC3 _tds__GetStorageConfigurationsResponse * SOAP_FMAC4 soap_in__tds__GetStorageConfigurationsResponse(struct soap*, const char*, _tds__GetStorageConfigurationsResponse *, const char*); -SOAP_FMAC1 _tds__GetStorageConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetStorageConfigurationsResponse * soap_new__tds__GetStorageConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetStorageConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetStorageConfigurationsResponse * soap_new_req__tds__GetStorageConfigurationsResponse( - struct soap *soap) -{ - _tds__GetStorageConfigurationsResponse *_p = ::soap_new__tds__GetStorageConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetStorageConfigurationsResponse * soap_new_set__tds__GetStorageConfigurationsResponse( - struct soap *soap, - const std::vector & StorageConfigurations) -{ - _tds__GetStorageConfigurationsResponse *_p = ::soap_new__tds__GetStorageConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetStorageConfigurationsResponse::StorageConfigurations = StorageConfigurations; - } - return _p; -} - -inline int soap_write__tds__GetStorageConfigurationsResponse(struct soap *soap, _tds__GetStorageConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetStorageConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetStorageConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationsResponse 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, "tds:GetStorageConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetStorageConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationsResponse 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, "tds:GetStorageConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetStorageConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationsResponse 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, "tds:GetStorageConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetStorageConfigurationsResponse * SOAP_FMAC4 soap_get__tds__GetStorageConfigurationsResponse(struct soap*, _tds__GetStorageConfigurationsResponse *, const char*, const char*); - -inline int soap_read__tds__GetStorageConfigurationsResponse(struct soap *soap, _tds__GetStorageConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetStorageConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetStorageConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetStorageConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetStorageConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetStorageConfigurationsResponse(struct soap *soap, _tds__GetStorageConfigurationsResponse *p) -{ - if (::soap_read__tds__GetStorageConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetStorageConfigurations_DEFINED -#define SOAP_TYPE__tds__GetStorageConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetStorageConfigurations(struct soap*, const char*, int, const _tds__GetStorageConfigurations *, const char*); -SOAP_FMAC3 _tds__GetStorageConfigurations * SOAP_FMAC4 soap_in__tds__GetStorageConfigurations(struct soap*, const char*, _tds__GetStorageConfigurations *, const char*); -SOAP_FMAC1 _tds__GetStorageConfigurations * SOAP_FMAC2 soap_instantiate__tds__GetStorageConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetStorageConfigurations * soap_new__tds__GetStorageConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetStorageConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetStorageConfigurations * soap_new_req__tds__GetStorageConfigurations( - struct soap *soap) -{ - _tds__GetStorageConfigurations *_p = ::soap_new__tds__GetStorageConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetStorageConfigurations * soap_new_set__tds__GetStorageConfigurations( - struct soap *soap) -{ - _tds__GetStorageConfigurations *_p = ::soap_new__tds__GetStorageConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetStorageConfigurations(struct soap *soap, _tds__GetStorageConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetStorageConfigurations", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetStorageConfigurations(struct soap *soap, const char *URL, _tds__GetStorageConfigurations 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, "tds:GetStorageConfigurations", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetStorageConfigurations(struct soap *soap, const char *URL, _tds__GetStorageConfigurations 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, "tds:GetStorageConfigurations", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetStorageConfigurations(struct soap *soap, const char *URL, _tds__GetStorageConfigurations 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, "tds:GetStorageConfigurations", p->soap_type() == SOAP_TYPE__tds__GetStorageConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetStorageConfigurations * SOAP_FMAC4 soap_get__tds__GetStorageConfigurations(struct soap*, _tds__GetStorageConfigurations *, const char*, const char*); - -inline int soap_read__tds__GetStorageConfigurations(struct soap *soap, _tds__GetStorageConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetStorageConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetStorageConfigurations(struct soap *soap, const char *URL, _tds__GetStorageConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetStorageConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetStorageConfigurations(struct soap *soap, _tds__GetStorageConfigurations *p) -{ - if (::soap_read__tds__GetStorageConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__StartSystemRestoreResponse_DEFINED -#define SOAP_TYPE__tds__StartSystemRestoreResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartSystemRestoreResponse(struct soap*, const char*, int, const _tds__StartSystemRestoreResponse *, const char*); -SOAP_FMAC3 _tds__StartSystemRestoreResponse * SOAP_FMAC4 soap_in__tds__StartSystemRestoreResponse(struct soap*, const char*, _tds__StartSystemRestoreResponse *, const char*); -SOAP_FMAC1 _tds__StartSystemRestoreResponse * SOAP_FMAC2 soap_instantiate__tds__StartSystemRestoreResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__StartSystemRestoreResponse * soap_new__tds__StartSystemRestoreResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__StartSystemRestoreResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__StartSystemRestoreResponse * soap_new_req__tds__StartSystemRestoreResponse( - struct soap *soap, - const std::string& UploadUri, - const std::string& ExpectedDownTime) -{ - _tds__StartSystemRestoreResponse *_p = ::soap_new__tds__StartSystemRestoreResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__StartSystemRestoreResponse::UploadUri = UploadUri; - _p->_tds__StartSystemRestoreResponse::ExpectedDownTime = ExpectedDownTime; - } - return _p; -} - -inline _tds__StartSystemRestoreResponse * soap_new_set__tds__StartSystemRestoreResponse( - struct soap *soap, - const std::string& UploadUri, - const std::string& ExpectedDownTime) -{ - _tds__StartSystemRestoreResponse *_p = ::soap_new__tds__StartSystemRestoreResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__StartSystemRestoreResponse::UploadUri = UploadUri; - _p->_tds__StartSystemRestoreResponse::ExpectedDownTime = ExpectedDownTime; - } - return _p; -} - -inline int soap_write__tds__StartSystemRestoreResponse(struct soap *soap, _tds__StartSystemRestoreResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StartSystemRestoreResponse", p->soap_type() == SOAP_TYPE__tds__StartSystemRestoreResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__StartSystemRestoreResponse(struct soap *soap, const char *URL, _tds__StartSystemRestoreResponse 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, "tds:StartSystemRestoreResponse", p->soap_type() == SOAP_TYPE__tds__StartSystemRestoreResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__StartSystemRestoreResponse(struct soap *soap, const char *URL, _tds__StartSystemRestoreResponse 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, "tds:StartSystemRestoreResponse", p->soap_type() == SOAP_TYPE__tds__StartSystemRestoreResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__StartSystemRestoreResponse(struct soap *soap, const char *URL, _tds__StartSystemRestoreResponse 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, "tds:StartSystemRestoreResponse", p->soap_type() == SOAP_TYPE__tds__StartSystemRestoreResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__StartSystemRestoreResponse * SOAP_FMAC4 soap_get__tds__StartSystemRestoreResponse(struct soap*, _tds__StartSystemRestoreResponse *, const char*, const char*); - -inline int soap_read__tds__StartSystemRestoreResponse(struct soap *soap, _tds__StartSystemRestoreResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__StartSystemRestoreResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__StartSystemRestoreResponse(struct soap *soap, const char *URL, _tds__StartSystemRestoreResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__StartSystemRestoreResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__StartSystemRestoreResponse(struct soap *soap, _tds__StartSystemRestoreResponse *p) -{ - if (::soap_read__tds__StartSystemRestoreResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__StartSystemRestore_DEFINED -#define SOAP_TYPE__tds__StartSystemRestore_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartSystemRestore(struct soap*, const char*, int, const _tds__StartSystemRestore *, const char*); -SOAP_FMAC3 _tds__StartSystemRestore * SOAP_FMAC4 soap_in__tds__StartSystemRestore(struct soap*, const char*, _tds__StartSystemRestore *, const char*); -SOAP_FMAC1 _tds__StartSystemRestore * SOAP_FMAC2 soap_instantiate__tds__StartSystemRestore(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__StartSystemRestore * soap_new__tds__StartSystemRestore(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__StartSystemRestore(soap, n, NULL, NULL, NULL); -} - -inline _tds__StartSystemRestore * soap_new_req__tds__StartSystemRestore( - struct soap *soap) -{ - _tds__StartSystemRestore *_p = ::soap_new__tds__StartSystemRestore(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__StartSystemRestore * soap_new_set__tds__StartSystemRestore( - struct soap *soap) -{ - _tds__StartSystemRestore *_p = ::soap_new__tds__StartSystemRestore(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__StartSystemRestore(struct soap *soap, _tds__StartSystemRestore const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StartSystemRestore", p->soap_type() == SOAP_TYPE__tds__StartSystemRestore ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__StartSystemRestore(struct soap *soap, const char *URL, _tds__StartSystemRestore 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, "tds:StartSystemRestore", p->soap_type() == SOAP_TYPE__tds__StartSystemRestore ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__StartSystemRestore(struct soap *soap, const char *URL, _tds__StartSystemRestore 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, "tds:StartSystemRestore", p->soap_type() == SOAP_TYPE__tds__StartSystemRestore ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__StartSystemRestore(struct soap *soap, const char *URL, _tds__StartSystemRestore 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, "tds:StartSystemRestore", p->soap_type() == SOAP_TYPE__tds__StartSystemRestore ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__StartSystemRestore * SOAP_FMAC4 soap_get__tds__StartSystemRestore(struct soap*, _tds__StartSystemRestore *, const char*, const char*); - -inline int soap_read__tds__StartSystemRestore(struct soap *soap, _tds__StartSystemRestore *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__StartSystemRestore(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__StartSystemRestore(struct soap *soap, const char *URL, _tds__StartSystemRestore *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__StartSystemRestore(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__StartSystemRestore(struct soap *soap, _tds__StartSystemRestore *p) -{ - if (::soap_read__tds__StartSystemRestore(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__StartFirmwareUpgradeResponse_DEFINED -#define SOAP_TYPE__tds__StartFirmwareUpgradeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartFirmwareUpgradeResponse(struct soap*, const char*, int, const _tds__StartFirmwareUpgradeResponse *, const char*); -SOAP_FMAC3 _tds__StartFirmwareUpgradeResponse * SOAP_FMAC4 soap_in__tds__StartFirmwareUpgradeResponse(struct soap*, const char*, _tds__StartFirmwareUpgradeResponse *, const char*); -SOAP_FMAC1 _tds__StartFirmwareUpgradeResponse * SOAP_FMAC2 soap_instantiate__tds__StartFirmwareUpgradeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__StartFirmwareUpgradeResponse * soap_new__tds__StartFirmwareUpgradeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__StartFirmwareUpgradeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__StartFirmwareUpgradeResponse * soap_new_req__tds__StartFirmwareUpgradeResponse( - struct soap *soap, - const std::string& UploadUri, - const std::string& UploadDelay, - const std::string& ExpectedDownTime) -{ - _tds__StartFirmwareUpgradeResponse *_p = ::soap_new__tds__StartFirmwareUpgradeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__StartFirmwareUpgradeResponse::UploadUri = UploadUri; - _p->_tds__StartFirmwareUpgradeResponse::UploadDelay = UploadDelay; - _p->_tds__StartFirmwareUpgradeResponse::ExpectedDownTime = ExpectedDownTime; - } - return _p; -} - -inline _tds__StartFirmwareUpgradeResponse * soap_new_set__tds__StartFirmwareUpgradeResponse( - struct soap *soap, - const std::string& UploadUri, - const std::string& UploadDelay, - const std::string& ExpectedDownTime) -{ - _tds__StartFirmwareUpgradeResponse *_p = ::soap_new__tds__StartFirmwareUpgradeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__StartFirmwareUpgradeResponse::UploadUri = UploadUri; - _p->_tds__StartFirmwareUpgradeResponse::UploadDelay = UploadDelay; - _p->_tds__StartFirmwareUpgradeResponse::ExpectedDownTime = ExpectedDownTime; - } - return _p; -} - -inline int soap_write__tds__StartFirmwareUpgradeResponse(struct soap *soap, _tds__StartFirmwareUpgradeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StartFirmwareUpgradeResponse", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgradeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__StartFirmwareUpgradeResponse(struct soap *soap, const char *URL, _tds__StartFirmwareUpgradeResponse 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, "tds:StartFirmwareUpgradeResponse", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgradeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__StartFirmwareUpgradeResponse(struct soap *soap, const char *URL, _tds__StartFirmwareUpgradeResponse 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, "tds:StartFirmwareUpgradeResponse", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgradeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__StartFirmwareUpgradeResponse(struct soap *soap, const char *URL, _tds__StartFirmwareUpgradeResponse 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, "tds:StartFirmwareUpgradeResponse", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgradeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__StartFirmwareUpgradeResponse * SOAP_FMAC4 soap_get__tds__StartFirmwareUpgradeResponse(struct soap*, _tds__StartFirmwareUpgradeResponse *, const char*, const char*); - -inline int soap_read__tds__StartFirmwareUpgradeResponse(struct soap *soap, _tds__StartFirmwareUpgradeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__StartFirmwareUpgradeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__StartFirmwareUpgradeResponse(struct soap *soap, const char *URL, _tds__StartFirmwareUpgradeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__StartFirmwareUpgradeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__StartFirmwareUpgradeResponse(struct soap *soap, _tds__StartFirmwareUpgradeResponse *p) -{ - if (::soap_read__tds__StartFirmwareUpgradeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__StartFirmwareUpgrade_DEFINED -#define SOAP_TYPE__tds__StartFirmwareUpgrade_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__StartFirmwareUpgrade(struct soap*, const char*, int, const _tds__StartFirmwareUpgrade *, const char*); -SOAP_FMAC3 _tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_in__tds__StartFirmwareUpgrade(struct soap*, const char*, _tds__StartFirmwareUpgrade *, const char*); -SOAP_FMAC1 _tds__StartFirmwareUpgrade * SOAP_FMAC2 soap_instantiate__tds__StartFirmwareUpgrade(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__StartFirmwareUpgrade * soap_new__tds__StartFirmwareUpgrade(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__StartFirmwareUpgrade(soap, n, NULL, NULL, NULL); -} - -inline _tds__StartFirmwareUpgrade * soap_new_req__tds__StartFirmwareUpgrade( - struct soap *soap) -{ - _tds__StartFirmwareUpgrade *_p = ::soap_new__tds__StartFirmwareUpgrade(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__StartFirmwareUpgrade * soap_new_set__tds__StartFirmwareUpgrade( - struct soap *soap) -{ - _tds__StartFirmwareUpgrade *_p = ::soap_new__tds__StartFirmwareUpgrade(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__StartFirmwareUpgrade(struct soap *soap, _tds__StartFirmwareUpgrade const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StartFirmwareUpgrade", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgrade ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, _tds__StartFirmwareUpgrade 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, "tds:StartFirmwareUpgrade", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgrade ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, _tds__StartFirmwareUpgrade 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, "tds:StartFirmwareUpgrade", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgrade ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, _tds__StartFirmwareUpgrade 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, "tds:StartFirmwareUpgrade", p->soap_type() == SOAP_TYPE__tds__StartFirmwareUpgrade ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_get__tds__StartFirmwareUpgrade(struct soap*, _tds__StartFirmwareUpgrade *, const char*, const char*); - -inline int soap_read__tds__StartFirmwareUpgrade(struct soap *soap, _tds__StartFirmwareUpgrade *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__StartFirmwareUpgrade(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, _tds__StartFirmwareUpgrade *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__StartFirmwareUpgrade(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__StartFirmwareUpgrade(struct soap *soap, _tds__StartFirmwareUpgrade *p) -{ - if (::soap_read__tds__StartFirmwareUpgrade(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemUrisResponse_DEFINED -#define SOAP_TYPE__tds__GetSystemUrisResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemUrisResponse(struct soap*, const char*, int, const _tds__GetSystemUrisResponse *, const char*); -SOAP_FMAC3 _tds__GetSystemUrisResponse * SOAP_FMAC4 soap_in__tds__GetSystemUrisResponse(struct soap*, const char*, _tds__GetSystemUrisResponse *, const char*); -SOAP_FMAC1 _tds__GetSystemUrisResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemUrisResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemUrisResponse * soap_new__tds__GetSystemUrisResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemUrisResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemUrisResponse * soap_new_req__tds__GetSystemUrisResponse( - struct soap *soap) -{ - _tds__GetSystemUrisResponse *_p = ::soap_new__tds__GetSystemUrisResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetSystemUrisResponse * soap_new_set__tds__GetSystemUrisResponse( - struct soap *soap, - tt__SystemLogUriList *SystemLogUris, - std::string *SupportInfoUri, - std::string *SystemBackupUri, - _tds__GetSystemUrisResponse_Extension *Extension) -{ - _tds__GetSystemUrisResponse *_p = ::soap_new__tds__GetSystemUrisResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemUrisResponse::SystemLogUris = SystemLogUris; - _p->_tds__GetSystemUrisResponse::SupportInfoUri = SupportInfoUri; - _p->_tds__GetSystemUrisResponse::SystemBackupUri = SystemBackupUri; - _p->_tds__GetSystemUrisResponse::Extension = Extension; - } - return _p; -} - -inline int soap_write__tds__GetSystemUrisResponse(struct soap *soap, _tds__GetSystemUrisResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemUrisResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemUrisResponse(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse 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, "tds:GetSystemUrisResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemUrisResponse(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse 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, "tds:GetSystemUrisResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemUrisResponse(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse 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, "tds:GetSystemUrisResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemUrisResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemUrisResponse * SOAP_FMAC4 soap_get__tds__GetSystemUrisResponse(struct soap*, _tds__GetSystemUrisResponse *, const char*, const char*); - -inline int soap_read__tds__GetSystemUrisResponse(struct soap *soap, _tds__GetSystemUrisResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemUrisResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemUrisResponse(struct soap *soap, const char *URL, _tds__GetSystemUrisResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemUrisResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemUrisResponse(struct soap *soap, _tds__GetSystemUrisResponse *p) -{ - if (::soap_read__tds__GetSystemUrisResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemUris_DEFINED -#define SOAP_TYPE__tds__GetSystemUris_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemUris(struct soap*, const char*, int, const _tds__GetSystemUris *, const char*); -SOAP_FMAC3 _tds__GetSystemUris * SOAP_FMAC4 soap_in__tds__GetSystemUris(struct soap*, const char*, _tds__GetSystemUris *, const char*); -SOAP_FMAC1 _tds__GetSystemUris * SOAP_FMAC2 soap_instantiate__tds__GetSystemUris(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemUris * soap_new__tds__GetSystemUris(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemUris(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemUris * soap_new_req__tds__GetSystemUris( - struct soap *soap) -{ - _tds__GetSystemUris *_p = ::soap_new__tds__GetSystemUris(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetSystemUris * soap_new_set__tds__GetSystemUris( - struct soap *soap) -{ - _tds__GetSystemUris *_p = ::soap_new__tds__GetSystemUris(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetSystemUris(struct soap *soap, _tds__GetSystemUris const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemUris", p->soap_type() == SOAP_TYPE__tds__GetSystemUris ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemUris(struct soap *soap, const char *URL, _tds__GetSystemUris 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, "tds:GetSystemUris", p->soap_type() == SOAP_TYPE__tds__GetSystemUris ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemUris(struct soap *soap, const char *URL, _tds__GetSystemUris 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, "tds:GetSystemUris", p->soap_type() == SOAP_TYPE__tds__GetSystemUris ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemUris(struct soap *soap, const char *URL, _tds__GetSystemUris 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, "tds:GetSystemUris", p->soap_type() == SOAP_TYPE__tds__GetSystemUris ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemUris * SOAP_FMAC4 soap_get__tds__GetSystemUris(struct soap*, _tds__GetSystemUris *, const char*, const char*); - -inline int soap_read__tds__GetSystemUris(struct soap *soap, _tds__GetSystemUris *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemUris(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemUris(struct soap *soap, const char *URL, _tds__GetSystemUris *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemUris(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemUris(struct soap *soap, _tds__GetSystemUris *p) -{ - if (::soap_read__tds__GetSystemUris(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse_DEFINED -#define SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__ScanAvailableDot11NetworksResponse(struct soap*, const char*, int, const _tds__ScanAvailableDot11NetworksResponse *, const char*); -SOAP_FMAC3 _tds__ScanAvailableDot11NetworksResponse * SOAP_FMAC4 soap_in__tds__ScanAvailableDot11NetworksResponse(struct soap*, const char*, _tds__ScanAvailableDot11NetworksResponse *, const char*); -SOAP_FMAC1 _tds__ScanAvailableDot11NetworksResponse * SOAP_FMAC2 soap_instantiate__tds__ScanAvailableDot11NetworksResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__ScanAvailableDot11NetworksResponse * soap_new__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__ScanAvailableDot11NetworksResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__ScanAvailableDot11NetworksResponse * soap_new_req__tds__ScanAvailableDot11NetworksResponse( - struct soap *soap) -{ - _tds__ScanAvailableDot11NetworksResponse *_p = ::soap_new__tds__ScanAvailableDot11NetworksResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__ScanAvailableDot11NetworksResponse * soap_new_set__tds__ScanAvailableDot11NetworksResponse( - struct soap *soap, - const std::vector & Networks) -{ - _tds__ScanAvailableDot11NetworksResponse *_p = ::soap_new__tds__ScanAvailableDot11NetworksResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__ScanAvailableDot11NetworksResponse::Networks = Networks; - } - return _p; -} - -inline int soap_write__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, _tds__ScanAvailableDot11NetworksResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:ScanAvailableDot11NetworksResponse", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, const char *URL, _tds__ScanAvailableDot11NetworksResponse 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, "tds:ScanAvailableDot11NetworksResponse", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, const char *URL, _tds__ScanAvailableDot11NetworksResponse 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, "tds:ScanAvailableDot11NetworksResponse", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, const char *URL, _tds__ScanAvailableDot11NetworksResponse 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, "tds:ScanAvailableDot11NetworksResponse", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11NetworksResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__ScanAvailableDot11NetworksResponse * SOAP_FMAC4 soap_get__tds__ScanAvailableDot11NetworksResponse(struct soap*, _tds__ScanAvailableDot11NetworksResponse *, const char*, const char*); - -inline int soap_read__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, _tds__ScanAvailableDot11NetworksResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__ScanAvailableDot11NetworksResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, const char *URL, _tds__ScanAvailableDot11NetworksResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__ScanAvailableDot11NetworksResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__ScanAvailableDot11NetworksResponse(struct soap *soap, _tds__ScanAvailableDot11NetworksResponse *p) -{ - if (::soap_read__tds__ScanAvailableDot11NetworksResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__ScanAvailableDot11Networks_DEFINED -#define SOAP_TYPE__tds__ScanAvailableDot11Networks_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__ScanAvailableDot11Networks(struct soap*, const char*, int, const _tds__ScanAvailableDot11Networks *, const char*); -SOAP_FMAC3 _tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_in__tds__ScanAvailableDot11Networks(struct soap*, const char*, _tds__ScanAvailableDot11Networks *, const char*); -SOAP_FMAC1 _tds__ScanAvailableDot11Networks * SOAP_FMAC2 soap_instantiate__tds__ScanAvailableDot11Networks(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__ScanAvailableDot11Networks * soap_new__tds__ScanAvailableDot11Networks(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__ScanAvailableDot11Networks(soap, n, NULL, NULL, NULL); -} - -inline _tds__ScanAvailableDot11Networks * soap_new_req__tds__ScanAvailableDot11Networks( - struct soap *soap, - const std::string& InterfaceToken) -{ - _tds__ScanAvailableDot11Networks *_p = ::soap_new__tds__ScanAvailableDot11Networks(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__ScanAvailableDot11Networks::InterfaceToken = InterfaceToken; - } - return _p; -} - -inline _tds__ScanAvailableDot11Networks * soap_new_set__tds__ScanAvailableDot11Networks( - struct soap *soap, - const std::string& InterfaceToken) -{ - _tds__ScanAvailableDot11Networks *_p = ::soap_new__tds__ScanAvailableDot11Networks(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__ScanAvailableDot11Networks::InterfaceToken = InterfaceToken; - } - return _p; -} - -inline int soap_write__tds__ScanAvailableDot11Networks(struct soap *soap, _tds__ScanAvailableDot11Networks const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:ScanAvailableDot11Networks", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11Networks ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, _tds__ScanAvailableDot11Networks 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, "tds:ScanAvailableDot11Networks", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11Networks ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, _tds__ScanAvailableDot11Networks 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, "tds:ScanAvailableDot11Networks", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11Networks ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, _tds__ScanAvailableDot11Networks 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, "tds:ScanAvailableDot11Networks", p->soap_type() == SOAP_TYPE__tds__ScanAvailableDot11Networks ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_get__tds__ScanAvailableDot11Networks(struct soap*, _tds__ScanAvailableDot11Networks *, const char*, const char*); - -inline int soap_read__tds__ScanAvailableDot11Networks(struct soap *soap, _tds__ScanAvailableDot11Networks *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__ScanAvailableDot11Networks(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, _tds__ScanAvailableDot11Networks *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__ScanAvailableDot11Networks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__ScanAvailableDot11Networks(struct soap *soap, _tds__ScanAvailableDot11Networks *p) -{ - if (::soap_read__tds__ScanAvailableDot11Networks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot11StatusResponse_DEFINED -#define SOAP_TYPE__tds__GetDot11StatusResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11StatusResponse(struct soap*, const char*, int, const _tds__GetDot11StatusResponse *, const char*); -SOAP_FMAC3 _tds__GetDot11StatusResponse * SOAP_FMAC4 soap_in__tds__GetDot11StatusResponse(struct soap*, const char*, _tds__GetDot11StatusResponse *, const char*); -SOAP_FMAC1 _tds__GetDot11StatusResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot11StatusResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot11StatusResponse * soap_new__tds__GetDot11StatusResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot11StatusResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot11StatusResponse * soap_new_req__tds__GetDot11StatusResponse( - struct soap *soap, - tt__Dot11Status *Status) -{ - _tds__GetDot11StatusResponse *_p = ::soap_new__tds__GetDot11StatusResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot11StatusResponse::Status = Status; - } - return _p; -} - -inline _tds__GetDot11StatusResponse * soap_new_set__tds__GetDot11StatusResponse( - struct soap *soap, - tt__Dot11Status *Status) -{ - _tds__GetDot11StatusResponse *_p = ::soap_new__tds__GetDot11StatusResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot11StatusResponse::Status = Status; - } - return _p; -} - -inline int soap_write__tds__GetDot11StatusResponse(struct soap *soap, _tds__GetDot11StatusResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot11StatusResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11StatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot11StatusResponse(struct soap *soap, const char *URL, _tds__GetDot11StatusResponse 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, "tds:GetDot11StatusResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11StatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot11StatusResponse(struct soap *soap, const char *URL, _tds__GetDot11StatusResponse 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, "tds:GetDot11StatusResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11StatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot11StatusResponse(struct soap *soap, const char *URL, _tds__GetDot11StatusResponse 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, "tds:GetDot11StatusResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11StatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot11StatusResponse * SOAP_FMAC4 soap_get__tds__GetDot11StatusResponse(struct soap*, _tds__GetDot11StatusResponse *, const char*, const char*); - -inline int soap_read__tds__GetDot11StatusResponse(struct soap *soap, _tds__GetDot11StatusResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot11StatusResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot11StatusResponse(struct soap *soap, const char *URL, _tds__GetDot11StatusResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot11StatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot11StatusResponse(struct soap *soap, _tds__GetDot11StatusResponse *p) -{ - if (::soap_read__tds__GetDot11StatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot11Status_DEFINED -#define SOAP_TYPE__tds__GetDot11Status_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11Status(struct soap*, const char*, int, const _tds__GetDot11Status *, const char*); -SOAP_FMAC3 _tds__GetDot11Status * SOAP_FMAC4 soap_in__tds__GetDot11Status(struct soap*, const char*, _tds__GetDot11Status *, const char*); -SOAP_FMAC1 _tds__GetDot11Status * SOAP_FMAC2 soap_instantiate__tds__GetDot11Status(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot11Status * soap_new__tds__GetDot11Status(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot11Status(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot11Status * soap_new_req__tds__GetDot11Status( - struct soap *soap, - const std::string& InterfaceToken) -{ - _tds__GetDot11Status *_p = ::soap_new__tds__GetDot11Status(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot11Status::InterfaceToken = InterfaceToken; - } - return _p; -} - -inline _tds__GetDot11Status * soap_new_set__tds__GetDot11Status( - struct soap *soap, - const std::string& InterfaceToken) -{ - _tds__GetDot11Status *_p = ::soap_new__tds__GetDot11Status(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot11Status::InterfaceToken = InterfaceToken; - } - return _p; -} - -inline int soap_write__tds__GetDot11Status(struct soap *soap, _tds__GetDot11Status const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot11Status", p->soap_type() == SOAP_TYPE__tds__GetDot11Status ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot11Status(struct soap *soap, const char *URL, _tds__GetDot11Status 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, "tds:GetDot11Status", p->soap_type() == SOAP_TYPE__tds__GetDot11Status ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot11Status(struct soap *soap, const char *URL, _tds__GetDot11Status 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, "tds:GetDot11Status", p->soap_type() == SOAP_TYPE__tds__GetDot11Status ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot11Status(struct soap *soap, const char *URL, _tds__GetDot11Status 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, "tds:GetDot11Status", p->soap_type() == SOAP_TYPE__tds__GetDot11Status ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot11Status * SOAP_FMAC4 soap_get__tds__GetDot11Status(struct soap*, _tds__GetDot11Status *, const char*, const char*); - -inline int soap_read__tds__GetDot11Status(struct soap *soap, _tds__GetDot11Status *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot11Status(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot11Status(struct soap *soap, const char *URL, _tds__GetDot11Status *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot11Status(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot11Status(struct soap *soap, _tds__GetDot11Status *p) -{ - if (::soap_read__tds__GetDot11Status(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot11CapabilitiesResponse_DEFINED -#define SOAP_TYPE__tds__GetDot11CapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11CapabilitiesResponse(struct soap*, const char*, int, const _tds__GetDot11CapabilitiesResponse *, const char*); -SOAP_FMAC3 _tds__GetDot11CapabilitiesResponse * SOAP_FMAC4 soap_in__tds__GetDot11CapabilitiesResponse(struct soap*, const char*, _tds__GetDot11CapabilitiesResponse *, const char*); -SOAP_FMAC1 _tds__GetDot11CapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot11CapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot11CapabilitiesResponse * soap_new__tds__GetDot11CapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot11CapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot11CapabilitiesResponse * soap_new_req__tds__GetDot11CapabilitiesResponse( - struct soap *soap, - tt__Dot11Capabilities *Capabilities) -{ - _tds__GetDot11CapabilitiesResponse *_p = ::soap_new__tds__GetDot11CapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot11CapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tds__GetDot11CapabilitiesResponse * soap_new_set__tds__GetDot11CapabilitiesResponse( - struct soap *soap, - tt__Dot11Capabilities *Capabilities) -{ - _tds__GetDot11CapabilitiesResponse *_p = ::soap_new__tds__GetDot11CapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot11CapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tds__GetDot11CapabilitiesResponse(struct soap *soap, _tds__GetDot11CapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot11CapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11CapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot11CapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetDot11CapabilitiesResponse 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, "tds:GetDot11CapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11CapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot11CapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetDot11CapabilitiesResponse 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, "tds:GetDot11CapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11CapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot11CapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetDot11CapabilitiesResponse 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, "tds:GetDot11CapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetDot11CapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot11CapabilitiesResponse * SOAP_FMAC4 soap_get__tds__GetDot11CapabilitiesResponse(struct soap*, _tds__GetDot11CapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tds__GetDot11CapabilitiesResponse(struct soap *soap, _tds__GetDot11CapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot11CapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot11CapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetDot11CapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot11CapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot11CapabilitiesResponse(struct soap *soap, _tds__GetDot11CapabilitiesResponse *p) -{ - if (::soap_read__tds__GetDot11CapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot11Capabilities_DEFINED -#define SOAP_TYPE__tds__GetDot11Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot11Capabilities(struct soap*, const char*, int, const _tds__GetDot11Capabilities *, const char*); -SOAP_FMAC3 _tds__GetDot11Capabilities * SOAP_FMAC4 soap_in__tds__GetDot11Capabilities(struct soap*, const char*, _tds__GetDot11Capabilities *, const char*); -SOAP_FMAC1 _tds__GetDot11Capabilities * SOAP_FMAC2 soap_instantiate__tds__GetDot11Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot11Capabilities * soap_new__tds__GetDot11Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot11Capabilities(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot11Capabilities * soap_new_req__tds__GetDot11Capabilities( - struct soap *soap) -{ - _tds__GetDot11Capabilities *_p = ::soap_new__tds__GetDot11Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDot11Capabilities * soap_new_set__tds__GetDot11Capabilities( - struct soap *soap, - const std::vector & __any) -{ - _tds__GetDot11Capabilities *_p = ::soap_new__tds__GetDot11Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot11Capabilities::__any = __any; - } - return _p; -} - -inline int soap_write__tds__GetDot11Capabilities(struct soap *soap, _tds__GetDot11Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot11Capabilities", p->soap_type() == SOAP_TYPE__tds__GetDot11Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot11Capabilities(struct soap *soap, const char *URL, _tds__GetDot11Capabilities 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, "tds:GetDot11Capabilities", p->soap_type() == SOAP_TYPE__tds__GetDot11Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot11Capabilities(struct soap *soap, const char *URL, _tds__GetDot11Capabilities 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, "tds:GetDot11Capabilities", p->soap_type() == SOAP_TYPE__tds__GetDot11Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot11Capabilities(struct soap *soap, const char *URL, _tds__GetDot11Capabilities 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, "tds:GetDot11Capabilities", p->soap_type() == SOAP_TYPE__tds__GetDot11Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot11Capabilities * SOAP_FMAC4 soap_get__tds__GetDot11Capabilities(struct soap*, _tds__GetDot11Capabilities *, const char*, const char*); - -inline int soap_read__tds__GetDot11Capabilities(struct soap *soap, _tds__GetDot11Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot11Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot11Capabilities(struct soap *soap, const char *URL, _tds__GetDot11Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot11Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot11Capabilities(struct soap *soap, _tds__GetDot11Capabilities *p) -{ - if (::soap_read__tds__GetDot11Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SendAuxiliaryCommandResponse_DEFINED -#define SOAP_TYPE__tds__SendAuxiliaryCommandResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SendAuxiliaryCommandResponse(struct soap*, const char*, int, const _tds__SendAuxiliaryCommandResponse *, const char*); -SOAP_FMAC3 _tds__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_in__tds__SendAuxiliaryCommandResponse(struct soap*, const char*, _tds__SendAuxiliaryCommandResponse *, const char*); -SOAP_FMAC1 _tds__SendAuxiliaryCommandResponse * SOAP_FMAC2 soap_instantiate__tds__SendAuxiliaryCommandResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SendAuxiliaryCommandResponse * soap_new__tds__SendAuxiliaryCommandResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SendAuxiliaryCommandResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SendAuxiliaryCommandResponse * soap_new_req__tds__SendAuxiliaryCommandResponse( - struct soap *soap) -{ - _tds__SendAuxiliaryCommandResponse *_p = ::soap_new__tds__SendAuxiliaryCommandResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SendAuxiliaryCommandResponse * soap_new_set__tds__SendAuxiliaryCommandResponse( - struct soap *soap, - std::string *AuxiliaryCommandResponse) -{ - _tds__SendAuxiliaryCommandResponse *_p = ::soap_new__tds__SendAuxiliaryCommandResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SendAuxiliaryCommandResponse::AuxiliaryCommandResponse = AuxiliaryCommandResponse; - } - return _p; -} - -inline int soap_write__tds__SendAuxiliaryCommandResponse(struct soap *soap, _tds__SendAuxiliaryCommandResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommandResponse 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, "tds:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommandResponse 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, "tds:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommandResponse 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, "tds:SendAuxiliaryCommandResponse", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommandResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SendAuxiliaryCommandResponse * SOAP_FMAC4 soap_get__tds__SendAuxiliaryCommandResponse(struct soap*, _tds__SendAuxiliaryCommandResponse *, const char*, const char*); - -inline int soap_read__tds__SendAuxiliaryCommandResponse(struct soap *soap, _tds__SendAuxiliaryCommandResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SendAuxiliaryCommandResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SendAuxiliaryCommandResponse(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommandResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SendAuxiliaryCommandResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SendAuxiliaryCommandResponse(struct soap *soap, _tds__SendAuxiliaryCommandResponse *p) -{ - if (::soap_read__tds__SendAuxiliaryCommandResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SendAuxiliaryCommand_DEFINED -#define SOAP_TYPE__tds__SendAuxiliaryCommand_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SendAuxiliaryCommand(struct soap*, const char*, int, const _tds__SendAuxiliaryCommand *, const char*); -SOAP_FMAC3 _tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_in__tds__SendAuxiliaryCommand(struct soap*, const char*, _tds__SendAuxiliaryCommand *, const char*); -SOAP_FMAC1 _tds__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate__tds__SendAuxiliaryCommand(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SendAuxiliaryCommand * soap_new__tds__SendAuxiliaryCommand(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SendAuxiliaryCommand(soap, n, NULL, NULL, NULL); -} - -inline _tds__SendAuxiliaryCommand * soap_new_req__tds__SendAuxiliaryCommand( - struct soap *soap, - const std::string& AuxiliaryCommand) -{ - _tds__SendAuxiliaryCommand *_p = ::soap_new__tds__SendAuxiliaryCommand(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SendAuxiliaryCommand::AuxiliaryCommand = AuxiliaryCommand; - } - return _p; -} - -inline _tds__SendAuxiliaryCommand * soap_new_set__tds__SendAuxiliaryCommand( - struct soap *soap, - const std::string& AuxiliaryCommand) -{ - _tds__SendAuxiliaryCommand *_p = ::soap_new__tds__SendAuxiliaryCommand(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SendAuxiliaryCommand::AuxiliaryCommand = AuxiliaryCommand; - } - return _p; -} - -inline int soap_write__tds__SendAuxiliaryCommand(struct soap *soap, _tds__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommand 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, "tds:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommand 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, "tds:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommand 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, "tds:SendAuxiliaryCommand", p->soap_type() == SOAP_TYPE__tds__SendAuxiliaryCommand ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_get__tds__SendAuxiliaryCommand(struct soap*, _tds__SendAuxiliaryCommand *, const char*, const char*); - -inline int soap_read__tds__SendAuxiliaryCommand(struct soap *soap, _tds__SendAuxiliaryCommand *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SendAuxiliaryCommand(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, _tds__SendAuxiliaryCommand *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SendAuxiliaryCommand(struct soap *soap, _tds__SendAuxiliaryCommand *p) -{ - if (::soap_read__tds__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRelayOutputStateResponse_DEFINED -#define SOAP_TYPE__tds__SetRelayOutputStateResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputStateResponse(struct soap*, const char*, int, const _tds__SetRelayOutputStateResponse *, const char*); -SOAP_FMAC3 _tds__SetRelayOutputStateResponse * SOAP_FMAC4 soap_in__tds__SetRelayOutputStateResponse(struct soap*, const char*, _tds__SetRelayOutputStateResponse *, const char*); -SOAP_FMAC1 _tds__SetRelayOutputStateResponse * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputStateResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRelayOutputStateResponse * soap_new__tds__SetRelayOutputStateResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRelayOutputStateResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRelayOutputStateResponse * soap_new_req__tds__SetRelayOutputStateResponse( - struct soap *soap) -{ - _tds__SetRelayOutputStateResponse *_p = ::soap_new__tds__SetRelayOutputStateResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetRelayOutputStateResponse * soap_new_set__tds__SetRelayOutputStateResponse( - struct soap *soap) -{ - _tds__SetRelayOutputStateResponse *_p = ::soap_new__tds__SetRelayOutputStateResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetRelayOutputStateResponse(struct soap *soap, _tds__SetRelayOutputStateResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRelayOutputStateResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRelayOutputStateResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputStateResponse 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, "tds:SetRelayOutputStateResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRelayOutputStateResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputStateResponse 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, "tds:SetRelayOutputStateResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputStateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRelayOutputStateResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputStateResponse 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, "tds:SetRelayOutputStateResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputStateResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRelayOutputStateResponse * SOAP_FMAC4 soap_get__tds__SetRelayOutputStateResponse(struct soap*, _tds__SetRelayOutputStateResponse *, const char*, const char*); - -inline int soap_read__tds__SetRelayOutputStateResponse(struct soap *soap, _tds__SetRelayOutputStateResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRelayOutputStateResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRelayOutputStateResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputStateResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRelayOutputStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRelayOutputStateResponse(struct soap *soap, _tds__SetRelayOutputStateResponse *p) -{ - if (::soap_read__tds__SetRelayOutputStateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRelayOutputState_DEFINED -#define SOAP_TYPE__tds__SetRelayOutputState_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputState(struct soap*, const char*, int, const _tds__SetRelayOutputState *, const char*); -SOAP_FMAC3 _tds__SetRelayOutputState * SOAP_FMAC4 soap_in__tds__SetRelayOutputState(struct soap*, const char*, _tds__SetRelayOutputState *, const char*); -SOAP_FMAC1 _tds__SetRelayOutputState * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputState(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRelayOutputState * soap_new__tds__SetRelayOutputState(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRelayOutputState(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRelayOutputState * soap_new_req__tds__SetRelayOutputState( - struct soap *soap, - const std::string& RelayOutputToken, - enum tt__RelayLogicalState LogicalState) -{ - _tds__SetRelayOutputState *_p = ::soap_new__tds__SetRelayOutputState(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetRelayOutputState::RelayOutputToken = RelayOutputToken; - _p->_tds__SetRelayOutputState::LogicalState = LogicalState; - } - return _p; -} - -inline _tds__SetRelayOutputState * soap_new_set__tds__SetRelayOutputState( - struct soap *soap, - const std::string& RelayOutputToken, - enum tt__RelayLogicalState LogicalState) -{ - _tds__SetRelayOutputState *_p = ::soap_new__tds__SetRelayOutputState(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetRelayOutputState::RelayOutputToken = RelayOutputToken; - _p->_tds__SetRelayOutputState::LogicalState = LogicalState; - } - return _p; -} - -inline int soap_write__tds__SetRelayOutputState(struct soap *soap, _tds__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRelayOutputState", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputState ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRelayOutputState(struct soap *soap, const char *URL, _tds__SetRelayOutputState 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, "tds:SetRelayOutputState", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRelayOutputState(struct soap *soap, const char *URL, _tds__SetRelayOutputState 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, "tds:SetRelayOutputState", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRelayOutputState(struct soap *soap, const char *URL, _tds__SetRelayOutputState 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, "tds:SetRelayOutputState", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputState ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRelayOutputState * SOAP_FMAC4 soap_get__tds__SetRelayOutputState(struct soap*, _tds__SetRelayOutputState *, const char*, const char*); - -inline int soap_read__tds__SetRelayOutputState(struct soap *soap, _tds__SetRelayOutputState *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRelayOutputState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRelayOutputState(struct soap *soap, const char *URL, _tds__SetRelayOutputState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRelayOutputState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRelayOutputState(struct soap *soap, _tds__SetRelayOutputState *p) -{ - if (::soap_read__tds__SetRelayOutputState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRelayOutputSettingsResponse_DEFINED -#define SOAP_TYPE__tds__SetRelayOutputSettingsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputSettingsResponse(struct soap*, const char*, int, const _tds__SetRelayOutputSettingsResponse *, const char*); -SOAP_FMAC3 _tds__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_in__tds__SetRelayOutputSettingsResponse(struct soap*, const char*, _tds__SetRelayOutputSettingsResponse *, const char*); -SOAP_FMAC1 _tds__SetRelayOutputSettingsResponse * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputSettingsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRelayOutputSettingsResponse * soap_new__tds__SetRelayOutputSettingsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRelayOutputSettingsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRelayOutputSettingsResponse * soap_new_req__tds__SetRelayOutputSettingsResponse( - struct soap *soap) -{ - _tds__SetRelayOutputSettingsResponse *_p = ::soap_new__tds__SetRelayOutputSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetRelayOutputSettingsResponse * soap_new_set__tds__SetRelayOutputSettingsResponse( - struct soap *soap) -{ - _tds__SetRelayOutputSettingsResponse *_p = ::soap_new__tds__SetRelayOutputSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetRelayOutputSettingsResponse(struct soap *soap, _tds__SetRelayOutputSettingsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputSettingsResponse 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, "tds:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputSettingsResponse 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, "tds:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputSettingsResponse 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, "tds:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_get__tds__SetRelayOutputSettingsResponse(struct soap*, _tds__SetRelayOutputSettingsResponse *, const char*, const char*); - -inline int soap_read__tds__SetRelayOutputSettingsResponse(struct soap *soap, _tds__SetRelayOutputSettingsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRelayOutputSettingsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tds__SetRelayOutputSettingsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRelayOutputSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRelayOutputSettingsResponse(struct soap *soap, _tds__SetRelayOutputSettingsResponse *p) -{ - if (::soap_read__tds__SetRelayOutputSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRelayOutputSettings_DEFINED -#define SOAP_TYPE__tds__SetRelayOutputSettings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRelayOutputSettings(struct soap*, const char*, int, const _tds__SetRelayOutputSettings *, const char*); -SOAP_FMAC3 _tds__SetRelayOutputSettings * SOAP_FMAC4 soap_in__tds__SetRelayOutputSettings(struct soap*, const char*, _tds__SetRelayOutputSettings *, const char*); -SOAP_FMAC1 _tds__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate__tds__SetRelayOutputSettings(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRelayOutputSettings * soap_new__tds__SetRelayOutputSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRelayOutputSettings(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRelayOutputSettings * soap_new_req__tds__SetRelayOutputSettings( - struct soap *soap, - const std::string& RelayOutputToken, - tt__RelayOutputSettings *Properties) -{ - _tds__SetRelayOutputSettings *_p = ::soap_new__tds__SetRelayOutputSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetRelayOutputSettings::RelayOutputToken = RelayOutputToken; - _p->_tds__SetRelayOutputSettings::Properties = Properties; - } - return _p; -} - -inline _tds__SetRelayOutputSettings * soap_new_set__tds__SetRelayOutputSettings( - struct soap *soap, - const std::string& RelayOutputToken, - tt__RelayOutputSettings *Properties) -{ - _tds__SetRelayOutputSettings *_p = ::soap_new__tds__SetRelayOutputSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetRelayOutputSettings::RelayOutputToken = RelayOutputToken; - _p->_tds__SetRelayOutputSettings::Properties = Properties; - } - return _p; -} - -inline int soap_write__tds__SetRelayOutputSettings(struct soap *soap, _tds__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRelayOutputSettings(struct soap *soap, const char *URL, _tds__SetRelayOutputSettings 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, "tds:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRelayOutputSettings(struct soap *soap, const char *URL, _tds__SetRelayOutputSettings 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, "tds:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRelayOutputSettings(struct soap *soap, const char *URL, _tds__SetRelayOutputSettings 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, "tds:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tds__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRelayOutputSettings * SOAP_FMAC4 soap_get__tds__SetRelayOutputSettings(struct soap*, _tds__SetRelayOutputSettings *, const char*, const char*); - -inline int soap_read__tds__SetRelayOutputSettings(struct soap *soap, _tds__SetRelayOutputSettings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRelayOutputSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRelayOutputSettings(struct soap *soap, const char *URL, _tds__SetRelayOutputSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRelayOutputSettings(struct soap *soap, _tds__SetRelayOutputSettings *p) -{ - if (::soap_read__tds__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetRelayOutputsResponse_DEFINED -#define SOAP_TYPE__tds__GetRelayOutputsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRelayOutputsResponse(struct soap*, const char*, int, const _tds__GetRelayOutputsResponse *, const char*); -SOAP_FMAC3 _tds__GetRelayOutputsResponse * SOAP_FMAC4 soap_in__tds__GetRelayOutputsResponse(struct soap*, const char*, _tds__GetRelayOutputsResponse *, const char*); -SOAP_FMAC1 _tds__GetRelayOutputsResponse * SOAP_FMAC2 soap_instantiate__tds__GetRelayOutputsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetRelayOutputsResponse * soap_new__tds__GetRelayOutputsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetRelayOutputsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetRelayOutputsResponse * soap_new_req__tds__GetRelayOutputsResponse( - struct soap *soap) -{ - _tds__GetRelayOutputsResponse *_p = ::soap_new__tds__GetRelayOutputsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetRelayOutputsResponse * soap_new_set__tds__GetRelayOutputsResponse( - struct soap *soap, - const std::vector & RelayOutputs) -{ - _tds__GetRelayOutputsResponse *_p = ::soap_new__tds__GetRelayOutputsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetRelayOutputsResponse::RelayOutputs = RelayOutputs; - } - return _p; -} - -inline int soap_write__tds__GetRelayOutputsResponse(struct soap *soap, _tds__GetRelayOutputsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetRelayOutputsResponse", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetRelayOutputsResponse(struct soap *soap, const char *URL, _tds__GetRelayOutputsResponse 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, "tds:GetRelayOutputsResponse", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetRelayOutputsResponse(struct soap *soap, const char *URL, _tds__GetRelayOutputsResponse 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, "tds:GetRelayOutputsResponse", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetRelayOutputsResponse(struct soap *soap, const char *URL, _tds__GetRelayOutputsResponse 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, "tds:GetRelayOutputsResponse", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetRelayOutputsResponse * SOAP_FMAC4 soap_get__tds__GetRelayOutputsResponse(struct soap*, _tds__GetRelayOutputsResponse *, const char*, const char*); - -inline int soap_read__tds__GetRelayOutputsResponse(struct soap *soap, _tds__GetRelayOutputsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetRelayOutputsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetRelayOutputsResponse(struct soap *soap, const char *URL, _tds__GetRelayOutputsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetRelayOutputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetRelayOutputsResponse(struct soap *soap, _tds__GetRelayOutputsResponse *p) -{ - if (::soap_read__tds__GetRelayOutputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetRelayOutputs_DEFINED -#define SOAP_TYPE__tds__GetRelayOutputs_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRelayOutputs(struct soap*, const char*, int, const _tds__GetRelayOutputs *, const char*); -SOAP_FMAC3 _tds__GetRelayOutputs * SOAP_FMAC4 soap_in__tds__GetRelayOutputs(struct soap*, const char*, _tds__GetRelayOutputs *, const char*); -SOAP_FMAC1 _tds__GetRelayOutputs * SOAP_FMAC2 soap_instantiate__tds__GetRelayOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetRelayOutputs * soap_new__tds__GetRelayOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetRelayOutputs(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetRelayOutputs * soap_new_req__tds__GetRelayOutputs( - struct soap *soap) -{ - _tds__GetRelayOutputs *_p = ::soap_new__tds__GetRelayOutputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetRelayOutputs * soap_new_set__tds__GetRelayOutputs( - struct soap *soap) -{ - _tds__GetRelayOutputs *_p = ::soap_new__tds__GetRelayOutputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetRelayOutputs(struct soap *soap, _tds__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetRelayOutputs", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputs ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetRelayOutputs(struct soap *soap, const char *URL, _tds__GetRelayOutputs 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, "tds:GetRelayOutputs", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetRelayOutputs(struct soap *soap, const char *URL, _tds__GetRelayOutputs 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, "tds:GetRelayOutputs", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetRelayOutputs(struct soap *soap, const char *URL, _tds__GetRelayOutputs 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, "tds:GetRelayOutputs", p->soap_type() == SOAP_TYPE__tds__GetRelayOutputs ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetRelayOutputs * SOAP_FMAC4 soap_get__tds__GetRelayOutputs(struct soap*, _tds__GetRelayOutputs *, const char*, const char*); - -inline int soap_read__tds__GetRelayOutputs(struct soap *soap, _tds__GetRelayOutputs *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetRelayOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetRelayOutputs(struct soap *soap, const char *URL, _tds__GetRelayOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetRelayOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetRelayOutputs(struct soap *soap, _tds__GetRelayOutputs *p) -{ - if (::soap_read__tds__GetRelayOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteDot1XConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__DeleteDot1XConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteDot1XConfigurationResponse(struct soap*, const char*, int, const _tds__DeleteDot1XConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__DeleteDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__DeleteDot1XConfigurationResponse(struct soap*, const char*, _tds__DeleteDot1XConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__DeleteDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteDot1XConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteDot1XConfigurationResponse * soap_new__tds__DeleteDot1XConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteDot1XConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteDot1XConfigurationResponse * soap_new_req__tds__DeleteDot1XConfigurationResponse( - struct soap *soap) -{ - _tds__DeleteDot1XConfigurationResponse *_p = ::soap_new__tds__DeleteDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__DeleteDot1XConfigurationResponse * soap_new_set__tds__DeleteDot1XConfigurationResponse( - struct soap *soap) -{ - _tds__DeleteDot1XConfigurationResponse *_p = ::soap_new__tds__DeleteDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__DeleteDot1XConfigurationResponse(struct soap *soap, _tds__DeleteDot1XConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteDot1XConfigurationResponse 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, "tds:DeleteDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteDot1XConfigurationResponse 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, "tds:DeleteDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteDot1XConfigurationResponse 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, "tds:DeleteDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__DeleteDot1XConfigurationResponse(struct soap*, _tds__DeleteDot1XConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__DeleteDot1XConfigurationResponse(struct soap *soap, _tds__DeleteDot1XConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteDot1XConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__DeleteDot1XConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteDot1XConfigurationResponse(struct soap *soap, _tds__DeleteDot1XConfigurationResponse *p) -{ - if (::soap_read__tds__DeleteDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteDot1XConfiguration_DEFINED -#define SOAP_TYPE__tds__DeleteDot1XConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteDot1XConfiguration(struct soap*, const char*, int, const _tds__DeleteDot1XConfiguration *, const char*); -SOAP_FMAC3 _tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_in__tds__DeleteDot1XConfiguration(struct soap*, const char*, _tds__DeleteDot1XConfiguration *, const char*); -SOAP_FMAC1 _tds__DeleteDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__DeleteDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteDot1XConfiguration * soap_new__tds__DeleteDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteDot1XConfiguration * soap_new_req__tds__DeleteDot1XConfiguration( - struct soap *soap) -{ - _tds__DeleteDot1XConfiguration *_p = ::soap_new__tds__DeleteDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__DeleteDot1XConfiguration * soap_new_set__tds__DeleteDot1XConfiguration( - struct soap *soap, - const std::vector & Dot1XConfigurationToken) -{ - _tds__DeleteDot1XConfiguration *_p = ::soap_new__tds__DeleteDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteDot1XConfiguration::Dot1XConfigurationToken = Dot1XConfigurationToken; - } - return _p; -} - -inline int soap_write__tds__DeleteDot1XConfiguration(struct soap *soap, _tds__DeleteDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, _tds__DeleteDot1XConfiguration 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, "tds:DeleteDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, _tds__DeleteDot1XConfiguration 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, "tds:DeleteDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, _tds__DeleteDot1XConfiguration 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, "tds:DeleteDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__DeleteDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_get__tds__DeleteDot1XConfiguration(struct soap*, _tds__DeleteDot1XConfiguration *, const char*, const char*); - -inline int soap_read__tds__DeleteDot1XConfiguration(struct soap *soap, _tds__DeleteDot1XConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, _tds__DeleteDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteDot1XConfiguration(struct soap *soap, _tds__DeleteDot1XConfiguration *p) -{ - if (::soap_read__tds__DeleteDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot1XConfigurationsResponse_DEFINED -#define SOAP_TYPE__tds__GetDot1XConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfigurationsResponse(struct soap*, const char*, int, const _tds__GetDot1XConfigurationsResponse *, const char*); -SOAP_FMAC3 _tds__GetDot1XConfigurationsResponse * SOAP_FMAC4 soap_in__tds__GetDot1XConfigurationsResponse(struct soap*, const char*, _tds__GetDot1XConfigurationsResponse *, const char*); -SOAP_FMAC1 _tds__GetDot1XConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot1XConfigurationsResponse * soap_new__tds__GetDot1XConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot1XConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot1XConfigurationsResponse * soap_new_req__tds__GetDot1XConfigurationsResponse( - struct soap *soap) -{ - _tds__GetDot1XConfigurationsResponse *_p = ::soap_new__tds__GetDot1XConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDot1XConfigurationsResponse * soap_new_set__tds__GetDot1XConfigurationsResponse( - struct soap *soap, - const std::vector & Dot1XConfiguration) -{ - _tds__GetDot1XConfigurationsResponse *_p = ::soap_new__tds__GetDot1XConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot1XConfigurationsResponse::Dot1XConfiguration = Dot1XConfiguration; - } - return _p; -} - -inline int soap_write__tds__GetDot1XConfigurationsResponse(struct soap *soap, _tds__GetDot1XConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot1XConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot1XConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationsResponse 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, "tds:GetDot1XConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot1XConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationsResponse 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, "tds:GetDot1XConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot1XConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationsResponse 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, "tds:GetDot1XConfigurationsResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot1XConfigurationsResponse * SOAP_FMAC4 soap_get__tds__GetDot1XConfigurationsResponse(struct soap*, _tds__GetDot1XConfigurationsResponse *, const char*, const char*); - -inline int soap_read__tds__GetDot1XConfigurationsResponse(struct soap *soap, _tds__GetDot1XConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot1XConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot1XConfigurationsResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot1XConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot1XConfigurationsResponse(struct soap *soap, _tds__GetDot1XConfigurationsResponse *p) -{ - if (::soap_read__tds__GetDot1XConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot1XConfigurations_DEFINED -#define SOAP_TYPE__tds__GetDot1XConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfigurations(struct soap*, const char*, int, const _tds__GetDot1XConfigurations *, const char*); -SOAP_FMAC3 _tds__GetDot1XConfigurations * SOAP_FMAC4 soap_in__tds__GetDot1XConfigurations(struct soap*, const char*, _tds__GetDot1XConfigurations *, const char*); -SOAP_FMAC1 _tds__GetDot1XConfigurations * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot1XConfigurations * soap_new__tds__GetDot1XConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot1XConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot1XConfigurations * soap_new_req__tds__GetDot1XConfigurations( - struct soap *soap) -{ - _tds__GetDot1XConfigurations *_p = ::soap_new__tds__GetDot1XConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDot1XConfigurations * soap_new_set__tds__GetDot1XConfigurations( - struct soap *soap) -{ - _tds__GetDot1XConfigurations *_p = ::soap_new__tds__GetDot1XConfigurations(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetDot1XConfigurations(struct soap *soap, _tds__GetDot1XConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot1XConfigurations", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot1XConfigurations(struct soap *soap, const char *URL, _tds__GetDot1XConfigurations 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, "tds:GetDot1XConfigurations", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot1XConfigurations(struct soap *soap, const char *URL, _tds__GetDot1XConfigurations 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, "tds:GetDot1XConfigurations", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot1XConfigurations(struct soap *soap, const char *URL, _tds__GetDot1XConfigurations 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, "tds:GetDot1XConfigurations", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot1XConfigurations * SOAP_FMAC4 soap_get__tds__GetDot1XConfigurations(struct soap*, _tds__GetDot1XConfigurations *, const char*, const char*); - -inline int soap_read__tds__GetDot1XConfigurations(struct soap *soap, _tds__GetDot1XConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot1XConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot1XConfigurations(struct soap *soap, const char *URL, _tds__GetDot1XConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot1XConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot1XConfigurations(struct soap *soap, _tds__GetDot1XConfigurations *p) -{ - if (::soap_read__tds__GetDot1XConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot1XConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__GetDot1XConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfigurationResponse(struct soap*, const char*, int, const _tds__GetDot1XConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__GetDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__GetDot1XConfigurationResponse(struct soap*, const char*, _tds__GetDot1XConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__GetDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot1XConfigurationResponse * soap_new__tds__GetDot1XConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot1XConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot1XConfigurationResponse * soap_new_req__tds__GetDot1XConfigurationResponse( - struct soap *soap, - tt__Dot1XConfiguration *Dot1XConfiguration) -{ - _tds__GetDot1XConfigurationResponse *_p = ::soap_new__tds__GetDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration = Dot1XConfiguration; - } - return _p; -} - -inline _tds__GetDot1XConfigurationResponse * soap_new_set__tds__GetDot1XConfigurationResponse( - struct soap *soap, - tt__Dot1XConfiguration *Dot1XConfiguration) -{ - _tds__GetDot1XConfigurationResponse *_p = ::soap_new__tds__GetDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot1XConfigurationResponse::Dot1XConfiguration = Dot1XConfiguration; - } - return _p; -} - -inline int soap_write__tds__GetDot1XConfigurationResponse(struct soap *soap, _tds__GetDot1XConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationResponse 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, "tds:GetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationResponse 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, "tds:GetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationResponse 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, "tds:GetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__GetDot1XConfigurationResponse(struct soap*, _tds__GetDot1XConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__GetDot1XConfigurationResponse(struct soap *soap, _tds__GetDot1XConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot1XConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__GetDot1XConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot1XConfigurationResponse(struct soap *soap, _tds__GetDot1XConfigurationResponse *p) -{ - if (::soap_read__tds__GetDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDot1XConfiguration_DEFINED -#define SOAP_TYPE__tds__GetDot1XConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDot1XConfiguration(struct soap*, const char*, int, const _tds__GetDot1XConfiguration *, const char*); -SOAP_FMAC3 _tds__GetDot1XConfiguration * SOAP_FMAC4 soap_in__tds__GetDot1XConfiguration(struct soap*, const char*, _tds__GetDot1XConfiguration *, const char*); -SOAP_FMAC1 _tds__GetDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__GetDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDot1XConfiguration * soap_new__tds__GetDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDot1XConfiguration * soap_new_req__tds__GetDot1XConfiguration( - struct soap *soap, - const std::string& Dot1XConfigurationToken) -{ - _tds__GetDot1XConfiguration *_p = ::soap_new__tds__GetDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot1XConfiguration::Dot1XConfigurationToken = Dot1XConfigurationToken; - } - return _p; -} - -inline _tds__GetDot1XConfiguration * soap_new_set__tds__GetDot1XConfiguration( - struct soap *soap, - const std::string& Dot1XConfigurationToken) -{ - _tds__GetDot1XConfiguration *_p = ::soap_new__tds__GetDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDot1XConfiguration::Dot1XConfigurationToken = Dot1XConfigurationToken; - } - return _p; -} - -inline int soap_write__tds__GetDot1XConfiguration(struct soap *soap, _tds__GetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDot1XConfiguration(struct soap *soap, const char *URL, _tds__GetDot1XConfiguration 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, "tds:GetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDot1XConfiguration(struct soap *soap, const char *URL, _tds__GetDot1XConfiguration 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, "tds:GetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDot1XConfiguration(struct soap *soap, const char *URL, _tds__GetDot1XConfiguration 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, "tds:GetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__GetDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDot1XConfiguration * SOAP_FMAC4 soap_get__tds__GetDot1XConfiguration(struct soap*, _tds__GetDot1XConfiguration *, const char*, const char*); - -inline int soap_read__tds__GetDot1XConfiguration(struct soap *soap, _tds__GetDot1XConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDot1XConfiguration(struct soap *soap, const char *URL, _tds__GetDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDot1XConfiguration(struct soap *soap, _tds__GetDot1XConfiguration *p) -{ - if (::soap_read__tds__GetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDot1XConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__SetDot1XConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDot1XConfigurationResponse(struct soap*, const char*, int, const _tds__SetDot1XConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__SetDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__SetDot1XConfigurationResponse(struct soap*, const char*, _tds__SetDot1XConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__SetDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__SetDot1XConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDot1XConfigurationResponse * soap_new__tds__SetDot1XConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDot1XConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDot1XConfigurationResponse * soap_new_req__tds__SetDot1XConfigurationResponse( - struct soap *soap) -{ - _tds__SetDot1XConfigurationResponse *_p = ::soap_new__tds__SetDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetDot1XConfigurationResponse * soap_new_set__tds__SetDot1XConfigurationResponse( - struct soap *soap) -{ - _tds__SetDot1XConfigurationResponse *_p = ::soap_new__tds__SetDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetDot1XConfigurationResponse(struct soap *soap, _tds__SetDot1XConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__SetDot1XConfigurationResponse 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, "tds:SetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__SetDot1XConfigurationResponse 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, "tds:SetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__SetDot1XConfigurationResponse 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, "tds:SetDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__SetDot1XConfigurationResponse(struct soap*, _tds__SetDot1XConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__SetDot1XConfigurationResponse(struct soap *soap, _tds__SetDot1XConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDot1XConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__SetDot1XConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDot1XConfigurationResponse(struct soap *soap, _tds__SetDot1XConfigurationResponse *p) -{ - if (::soap_read__tds__SetDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDot1XConfiguration_DEFINED -#define SOAP_TYPE__tds__SetDot1XConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDot1XConfiguration(struct soap*, const char*, int, const _tds__SetDot1XConfiguration *, const char*); -SOAP_FMAC3 _tds__SetDot1XConfiguration * SOAP_FMAC4 soap_in__tds__SetDot1XConfiguration(struct soap*, const char*, _tds__SetDot1XConfiguration *, const char*); -SOAP_FMAC1 _tds__SetDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__SetDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDot1XConfiguration * soap_new__tds__SetDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDot1XConfiguration * soap_new_req__tds__SetDot1XConfiguration( - struct soap *soap, - tt__Dot1XConfiguration *Dot1XConfiguration) -{ - _tds__SetDot1XConfiguration *_p = ::soap_new__tds__SetDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDot1XConfiguration::Dot1XConfiguration = Dot1XConfiguration; - } - return _p; -} - -inline _tds__SetDot1XConfiguration * soap_new_set__tds__SetDot1XConfiguration( - struct soap *soap, - tt__Dot1XConfiguration *Dot1XConfiguration) -{ - _tds__SetDot1XConfiguration *_p = ::soap_new__tds__SetDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDot1XConfiguration::Dot1XConfiguration = Dot1XConfiguration; - } - return _p; -} - -inline int soap_write__tds__SetDot1XConfiguration(struct soap *soap, _tds__SetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDot1XConfiguration(struct soap *soap, const char *URL, _tds__SetDot1XConfiguration 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, "tds:SetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDot1XConfiguration(struct soap *soap, const char *URL, _tds__SetDot1XConfiguration 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, "tds:SetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDot1XConfiguration(struct soap *soap, const char *URL, _tds__SetDot1XConfiguration 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, "tds:SetDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__SetDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDot1XConfiguration * SOAP_FMAC4 soap_get__tds__SetDot1XConfiguration(struct soap*, _tds__SetDot1XConfiguration *, const char*, const char*); - -inline int soap_read__tds__SetDot1XConfiguration(struct soap *soap, _tds__SetDot1XConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDot1XConfiguration(struct soap *soap, const char *URL, _tds__SetDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDot1XConfiguration(struct soap *soap, _tds__SetDot1XConfiguration *p) -{ - if (::soap_read__tds__SetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateDot1XConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__CreateDot1XConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateDot1XConfigurationResponse(struct soap*, const char*, int, const _tds__CreateDot1XConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__CreateDot1XConfigurationResponse * SOAP_FMAC4 soap_in__tds__CreateDot1XConfigurationResponse(struct soap*, const char*, _tds__CreateDot1XConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__CreateDot1XConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__CreateDot1XConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateDot1XConfigurationResponse * soap_new__tds__CreateDot1XConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateDot1XConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateDot1XConfigurationResponse * soap_new_req__tds__CreateDot1XConfigurationResponse( - struct soap *soap) -{ - _tds__CreateDot1XConfigurationResponse *_p = ::soap_new__tds__CreateDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__CreateDot1XConfigurationResponse * soap_new_set__tds__CreateDot1XConfigurationResponse( - struct soap *soap) -{ - _tds__CreateDot1XConfigurationResponse *_p = ::soap_new__tds__CreateDot1XConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__CreateDot1XConfigurationResponse(struct soap *soap, _tds__CreateDot1XConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateDot1XConfigurationResponse 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, "tds:CreateDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateDot1XConfigurationResponse 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, "tds:CreateDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateDot1XConfigurationResponse 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, "tds:CreateDot1XConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateDot1XConfigurationResponse * SOAP_FMAC4 soap_get__tds__CreateDot1XConfigurationResponse(struct soap*, _tds__CreateDot1XConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__CreateDot1XConfigurationResponse(struct soap *soap, _tds__CreateDot1XConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateDot1XConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateDot1XConfigurationResponse(struct soap *soap, const char *URL, _tds__CreateDot1XConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateDot1XConfigurationResponse(struct soap *soap, _tds__CreateDot1XConfigurationResponse *p) -{ - if (::soap_read__tds__CreateDot1XConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateDot1XConfiguration_DEFINED -#define SOAP_TYPE__tds__CreateDot1XConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateDot1XConfiguration(struct soap*, const char*, int, const _tds__CreateDot1XConfiguration *, const char*); -SOAP_FMAC3 _tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_in__tds__CreateDot1XConfiguration(struct soap*, const char*, _tds__CreateDot1XConfiguration *, const char*); -SOAP_FMAC1 _tds__CreateDot1XConfiguration * SOAP_FMAC2 soap_instantiate__tds__CreateDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateDot1XConfiguration * soap_new__tds__CreateDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateDot1XConfiguration * soap_new_req__tds__CreateDot1XConfiguration( - struct soap *soap, - tt__Dot1XConfiguration *Dot1XConfiguration) -{ - _tds__CreateDot1XConfiguration *_p = ::soap_new__tds__CreateDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateDot1XConfiguration::Dot1XConfiguration = Dot1XConfiguration; - } - return _p; -} - -inline _tds__CreateDot1XConfiguration * soap_new_set__tds__CreateDot1XConfiguration( - struct soap *soap, - tt__Dot1XConfiguration *Dot1XConfiguration) -{ - _tds__CreateDot1XConfiguration *_p = ::soap_new__tds__CreateDot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateDot1XConfiguration::Dot1XConfiguration = Dot1XConfiguration; - } - return _p; -} - -inline int soap_write__tds__CreateDot1XConfiguration(struct soap *soap, _tds__CreateDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, _tds__CreateDot1XConfiguration 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, "tds:CreateDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, _tds__CreateDot1XConfiguration 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, "tds:CreateDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, _tds__CreateDot1XConfiguration 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, "tds:CreateDot1XConfiguration", p->soap_type() == SOAP_TYPE__tds__CreateDot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_get__tds__CreateDot1XConfiguration(struct soap*, _tds__CreateDot1XConfiguration *, const char*, const char*); - -inline int soap_read__tds__CreateDot1XConfiguration(struct soap *soap, _tds__CreateDot1XConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, _tds__CreateDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateDot1XConfiguration(struct soap *soap, _tds__CreateDot1XConfiguration *p) -{ - if (::soap_read__tds__CreateDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__LoadCACertificatesResponse_DEFINED -#define SOAP_TYPE__tds__LoadCACertificatesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCACertificatesResponse(struct soap*, const char*, int, const _tds__LoadCACertificatesResponse *, const char*); -SOAP_FMAC3 _tds__LoadCACertificatesResponse * SOAP_FMAC4 soap_in__tds__LoadCACertificatesResponse(struct soap*, const char*, _tds__LoadCACertificatesResponse *, const char*); -SOAP_FMAC1 _tds__LoadCACertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__LoadCACertificatesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__LoadCACertificatesResponse * soap_new__tds__LoadCACertificatesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__LoadCACertificatesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__LoadCACertificatesResponse * soap_new_req__tds__LoadCACertificatesResponse( - struct soap *soap) -{ - _tds__LoadCACertificatesResponse *_p = ::soap_new__tds__LoadCACertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__LoadCACertificatesResponse * soap_new_set__tds__LoadCACertificatesResponse( - struct soap *soap) -{ - _tds__LoadCACertificatesResponse *_p = ::soap_new__tds__LoadCACertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__LoadCACertificatesResponse(struct soap *soap, _tds__LoadCACertificatesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:LoadCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCACertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__LoadCACertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCACertificatesResponse 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, "tds:LoadCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCACertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__LoadCACertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCACertificatesResponse 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, "tds:LoadCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCACertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__LoadCACertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCACertificatesResponse 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, "tds:LoadCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCACertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__LoadCACertificatesResponse * SOAP_FMAC4 soap_get__tds__LoadCACertificatesResponse(struct soap*, _tds__LoadCACertificatesResponse *, const char*, const char*); - -inline int soap_read__tds__LoadCACertificatesResponse(struct soap *soap, _tds__LoadCACertificatesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__LoadCACertificatesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__LoadCACertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCACertificatesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__LoadCACertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__LoadCACertificatesResponse(struct soap *soap, _tds__LoadCACertificatesResponse *p) -{ - if (::soap_read__tds__LoadCACertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__LoadCACertificates_DEFINED -#define SOAP_TYPE__tds__LoadCACertificates_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCACertificates(struct soap*, const char*, int, const _tds__LoadCACertificates *, const char*); -SOAP_FMAC3 _tds__LoadCACertificates * SOAP_FMAC4 soap_in__tds__LoadCACertificates(struct soap*, const char*, _tds__LoadCACertificates *, const char*); -SOAP_FMAC1 _tds__LoadCACertificates * SOAP_FMAC2 soap_instantiate__tds__LoadCACertificates(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__LoadCACertificates * soap_new__tds__LoadCACertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__LoadCACertificates(soap, n, NULL, NULL, NULL); -} - -inline _tds__LoadCACertificates * soap_new_req__tds__LoadCACertificates( - struct soap *soap, - const std::vector & CACertificate) -{ - _tds__LoadCACertificates *_p = ::soap_new__tds__LoadCACertificates(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__LoadCACertificates::CACertificate = CACertificate; - } - return _p; -} - -inline _tds__LoadCACertificates * soap_new_set__tds__LoadCACertificates( - struct soap *soap, - const std::vector & CACertificate) -{ - _tds__LoadCACertificates *_p = ::soap_new__tds__LoadCACertificates(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__LoadCACertificates::CACertificate = CACertificate; - } - return _p; -} - -inline int soap_write__tds__LoadCACertificates(struct soap *soap, _tds__LoadCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:LoadCACertificates", p->soap_type() == SOAP_TYPE__tds__LoadCACertificates ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__LoadCACertificates(struct soap *soap, const char *URL, _tds__LoadCACertificates 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, "tds:LoadCACertificates", p->soap_type() == SOAP_TYPE__tds__LoadCACertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__LoadCACertificates(struct soap *soap, const char *URL, _tds__LoadCACertificates 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, "tds:LoadCACertificates", p->soap_type() == SOAP_TYPE__tds__LoadCACertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__LoadCACertificates(struct soap *soap, const char *URL, _tds__LoadCACertificates 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, "tds:LoadCACertificates", p->soap_type() == SOAP_TYPE__tds__LoadCACertificates ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__LoadCACertificates * SOAP_FMAC4 soap_get__tds__LoadCACertificates(struct soap*, _tds__LoadCACertificates *, const char*, const char*); - -inline int soap_read__tds__LoadCACertificates(struct soap *soap, _tds__LoadCACertificates *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__LoadCACertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__LoadCACertificates(struct soap *soap, const char *URL, _tds__LoadCACertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__LoadCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__LoadCACertificates(struct soap *soap, _tds__LoadCACertificates *p) -{ - if (::soap_read__tds__LoadCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCertificateInformationResponse_DEFINED -#define SOAP_TYPE__tds__GetCertificateInformationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificateInformationResponse(struct soap*, const char*, int, const _tds__GetCertificateInformationResponse *, const char*); -SOAP_FMAC3 _tds__GetCertificateInformationResponse * SOAP_FMAC4 soap_in__tds__GetCertificateInformationResponse(struct soap*, const char*, _tds__GetCertificateInformationResponse *, const char*); -SOAP_FMAC1 _tds__GetCertificateInformationResponse * SOAP_FMAC2 soap_instantiate__tds__GetCertificateInformationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCertificateInformationResponse * soap_new__tds__GetCertificateInformationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCertificateInformationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCertificateInformationResponse * soap_new_req__tds__GetCertificateInformationResponse( - struct soap *soap, - tt__CertificateInformation *CertificateInformation) -{ - _tds__GetCertificateInformationResponse *_p = ::soap_new__tds__GetCertificateInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCertificateInformationResponse::CertificateInformation = CertificateInformation; - } - return _p; -} - -inline _tds__GetCertificateInformationResponse * soap_new_set__tds__GetCertificateInformationResponse( - struct soap *soap, - tt__CertificateInformation *CertificateInformation) -{ - _tds__GetCertificateInformationResponse *_p = ::soap_new__tds__GetCertificateInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCertificateInformationResponse::CertificateInformation = CertificateInformation; - } - return _p; -} - -inline int soap_write__tds__GetCertificateInformationResponse(struct soap *soap, _tds__GetCertificateInformationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCertificateInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCertificateInformationResponse(struct soap *soap, const char *URL, _tds__GetCertificateInformationResponse 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, "tds:GetCertificateInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCertificateInformationResponse(struct soap *soap, const char *URL, _tds__GetCertificateInformationResponse 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, "tds:GetCertificateInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCertificateInformationResponse(struct soap *soap, const char *URL, _tds__GetCertificateInformationResponse 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, "tds:GetCertificateInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCertificateInformationResponse * SOAP_FMAC4 soap_get__tds__GetCertificateInformationResponse(struct soap*, _tds__GetCertificateInformationResponse *, const char*, const char*); - -inline int soap_read__tds__GetCertificateInformationResponse(struct soap *soap, _tds__GetCertificateInformationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCertificateInformationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCertificateInformationResponse(struct soap *soap, const char *URL, _tds__GetCertificateInformationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCertificateInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCertificateInformationResponse(struct soap *soap, _tds__GetCertificateInformationResponse *p) -{ - if (::soap_read__tds__GetCertificateInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCertificateInformation_DEFINED -#define SOAP_TYPE__tds__GetCertificateInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificateInformation(struct soap*, const char*, int, const _tds__GetCertificateInformation *, const char*); -SOAP_FMAC3 _tds__GetCertificateInformation * SOAP_FMAC4 soap_in__tds__GetCertificateInformation(struct soap*, const char*, _tds__GetCertificateInformation *, const char*); -SOAP_FMAC1 _tds__GetCertificateInformation * SOAP_FMAC2 soap_instantiate__tds__GetCertificateInformation(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCertificateInformation * soap_new__tds__GetCertificateInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCertificateInformation(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCertificateInformation * soap_new_req__tds__GetCertificateInformation( - struct soap *soap, - const std::string& CertificateID) -{ - _tds__GetCertificateInformation *_p = ::soap_new__tds__GetCertificateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCertificateInformation::CertificateID = CertificateID; - } - return _p; -} - -inline _tds__GetCertificateInformation * soap_new_set__tds__GetCertificateInformation( - struct soap *soap, - const std::string& CertificateID) -{ - _tds__GetCertificateInformation *_p = ::soap_new__tds__GetCertificateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCertificateInformation::CertificateID = CertificateID; - } - return _p; -} - -inline int soap_write__tds__GetCertificateInformation(struct soap *soap, _tds__GetCertificateInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCertificateInformation", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCertificateInformation(struct soap *soap, const char *URL, _tds__GetCertificateInformation 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, "tds:GetCertificateInformation", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCertificateInformation(struct soap *soap, const char *URL, _tds__GetCertificateInformation 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, "tds:GetCertificateInformation", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCertificateInformation(struct soap *soap, const char *URL, _tds__GetCertificateInformation 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, "tds:GetCertificateInformation", p->soap_type() == SOAP_TYPE__tds__GetCertificateInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCertificateInformation * SOAP_FMAC4 soap_get__tds__GetCertificateInformation(struct soap*, _tds__GetCertificateInformation *, const char*, const char*); - -inline int soap_read__tds__GetCertificateInformation(struct soap *soap, _tds__GetCertificateInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCertificateInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCertificateInformation(struct soap *soap, const char *URL, _tds__GetCertificateInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCertificateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCertificateInformation(struct soap *soap, _tds__GetCertificateInformation *p) -{ - if (::soap_read__tds__GetCertificateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse_DEFINED -#define SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificateWithPrivateKeyResponse(struct soap*, const char*, int, const _tds__LoadCertificateWithPrivateKeyResponse *, const char*); -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKeyResponse * SOAP_FMAC4 soap_in__tds__LoadCertificateWithPrivateKeyResponse(struct soap*, const char*, _tds__LoadCertificateWithPrivateKeyResponse *, const char*); -SOAP_FMAC1 _tds__LoadCertificateWithPrivateKeyResponse * SOAP_FMAC2 soap_instantiate__tds__LoadCertificateWithPrivateKeyResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__LoadCertificateWithPrivateKeyResponse * soap_new__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__LoadCertificateWithPrivateKeyResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__LoadCertificateWithPrivateKeyResponse * soap_new_req__tds__LoadCertificateWithPrivateKeyResponse( - struct soap *soap) -{ - _tds__LoadCertificateWithPrivateKeyResponse *_p = ::soap_new__tds__LoadCertificateWithPrivateKeyResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__LoadCertificateWithPrivateKeyResponse * soap_new_set__tds__LoadCertificateWithPrivateKeyResponse( - struct soap *soap) -{ - _tds__LoadCertificateWithPrivateKeyResponse *_p = ::soap_new__tds__LoadCertificateWithPrivateKeyResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, _tds__LoadCertificateWithPrivateKeyResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:LoadCertificateWithPrivateKeyResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKeyResponse 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, "tds:LoadCertificateWithPrivateKeyResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKeyResponse 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, "tds:LoadCertificateWithPrivateKeyResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKeyResponse 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, "tds:LoadCertificateWithPrivateKeyResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKeyResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKeyResponse * SOAP_FMAC4 soap_get__tds__LoadCertificateWithPrivateKeyResponse(struct soap*, _tds__LoadCertificateWithPrivateKeyResponse *, const char*, const char*); - -inline int soap_read__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, _tds__LoadCertificateWithPrivateKeyResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__LoadCertificateWithPrivateKeyResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKeyResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__LoadCertificateWithPrivateKeyResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__LoadCertificateWithPrivateKeyResponse(struct soap *soap, _tds__LoadCertificateWithPrivateKeyResponse *p) -{ - if (::soap_read__tds__LoadCertificateWithPrivateKeyResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__LoadCertificateWithPrivateKey_DEFINED -#define SOAP_TYPE__tds__LoadCertificateWithPrivateKey_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificateWithPrivateKey(struct soap*, const char*, int, const _tds__LoadCertificateWithPrivateKey *, const char*); -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_in__tds__LoadCertificateWithPrivateKey(struct soap*, const char*, _tds__LoadCertificateWithPrivateKey *, const char*); -SOAP_FMAC1 _tds__LoadCertificateWithPrivateKey * SOAP_FMAC2 soap_instantiate__tds__LoadCertificateWithPrivateKey(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__LoadCertificateWithPrivateKey * soap_new__tds__LoadCertificateWithPrivateKey(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__LoadCertificateWithPrivateKey(soap, n, NULL, NULL, NULL); -} - -inline _tds__LoadCertificateWithPrivateKey * soap_new_req__tds__LoadCertificateWithPrivateKey( - struct soap *soap, - const std::vector & CertificateWithPrivateKey) -{ - _tds__LoadCertificateWithPrivateKey *_p = ::soap_new__tds__LoadCertificateWithPrivateKey(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__LoadCertificateWithPrivateKey::CertificateWithPrivateKey = CertificateWithPrivateKey; - } - return _p; -} - -inline _tds__LoadCertificateWithPrivateKey * soap_new_set__tds__LoadCertificateWithPrivateKey( - struct soap *soap, - const std::vector & CertificateWithPrivateKey) -{ - _tds__LoadCertificateWithPrivateKey *_p = ::soap_new__tds__LoadCertificateWithPrivateKey(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__LoadCertificateWithPrivateKey::CertificateWithPrivateKey = CertificateWithPrivateKey; - } - return _p; -} - -inline int soap_write__tds__LoadCertificateWithPrivateKey(struct soap *soap, _tds__LoadCertificateWithPrivateKey const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:LoadCertificateWithPrivateKey", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKey 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, "tds:LoadCertificateWithPrivateKey", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKey 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, "tds:LoadCertificateWithPrivateKey", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKey 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, "tds:LoadCertificateWithPrivateKey", p->soap_type() == SOAP_TYPE__tds__LoadCertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_get__tds__LoadCertificateWithPrivateKey(struct soap*, _tds__LoadCertificateWithPrivateKey *, const char*, const char*); - -inline int soap_read__tds__LoadCertificateWithPrivateKey(struct soap *soap, _tds__LoadCertificateWithPrivateKey *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__LoadCertificateWithPrivateKey(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, _tds__LoadCertificateWithPrivateKey *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__LoadCertificateWithPrivateKey(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__LoadCertificateWithPrivateKey(struct soap *soap, _tds__LoadCertificateWithPrivateKey *p) -{ - if (::soap_read__tds__LoadCertificateWithPrivateKey(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCACertificatesResponse_DEFINED -#define SOAP_TYPE__tds__GetCACertificatesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCACertificatesResponse(struct soap*, const char*, int, const _tds__GetCACertificatesResponse *, const char*); -SOAP_FMAC3 _tds__GetCACertificatesResponse * SOAP_FMAC4 soap_in__tds__GetCACertificatesResponse(struct soap*, const char*, _tds__GetCACertificatesResponse *, const char*); -SOAP_FMAC1 _tds__GetCACertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__GetCACertificatesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCACertificatesResponse * soap_new__tds__GetCACertificatesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCACertificatesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCACertificatesResponse * soap_new_req__tds__GetCACertificatesResponse( - struct soap *soap) -{ - _tds__GetCACertificatesResponse *_p = ::soap_new__tds__GetCACertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetCACertificatesResponse * soap_new_set__tds__GetCACertificatesResponse( - struct soap *soap, - const std::vector & CACertificate) -{ - _tds__GetCACertificatesResponse *_p = ::soap_new__tds__GetCACertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCACertificatesResponse::CACertificate = CACertificate; - } - return _p; -} - -inline int soap_write__tds__GetCACertificatesResponse(struct soap *soap, _tds__GetCACertificatesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCACertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCACertificatesResponse(struct soap *soap, const char *URL, _tds__GetCACertificatesResponse 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, "tds:GetCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCACertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCACertificatesResponse(struct soap *soap, const char *URL, _tds__GetCACertificatesResponse 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, "tds:GetCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCACertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCACertificatesResponse(struct soap *soap, const char *URL, _tds__GetCACertificatesResponse 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, "tds:GetCACertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCACertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCACertificatesResponse * SOAP_FMAC4 soap_get__tds__GetCACertificatesResponse(struct soap*, _tds__GetCACertificatesResponse *, const char*, const char*); - -inline int soap_read__tds__GetCACertificatesResponse(struct soap *soap, _tds__GetCACertificatesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCACertificatesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCACertificatesResponse(struct soap *soap, const char *URL, _tds__GetCACertificatesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCACertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCACertificatesResponse(struct soap *soap, _tds__GetCACertificatesResponse *p) -{ - if (::soap_read__tds__GetCACertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCACertificates_DEFINED -#define SOAP_TYPE__tds__GetCACertificates_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCACertificates(struct soap*, const char*, int, const _tds__GetCACertificates *, const char*); -SOAP_FMAC3 _tds__GetCACertificates * SOAP_FMAC4 soap_in__tds__GetCACertificates(struct soap*, const char*, _tds__GetCACertificates *, const char*); -SOAP_FMAC1 _tds__GetCACertificates * SOAP_FMAC2 soap_instantiate__tds__GetCACertificates(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCACertificates * soap_new__tds__GetCACertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCACertificates(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCACertificates * soap_new_req__tds__GetCACertificates( - struct soap *soap) -{ - _tds__GetCACertificates *_p = ::soap_new__tds__GetCACertificates(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetCACertificates * soap_new_set__tds__GetCACertificates( - struct soap *soap) -{ - _tds__GetCACertificates *_p = ::soap_new__tds__GetCACertificates(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetCACertificates(struct soap *soap, _tds__GetCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCACertificates", p->soap_type() == SOAP_TYPE__tds__GetCACertificates ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCACertificates(struct soap *soap, const char *URL, _tds__GetCACertificates 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, "tds:GetCACertificates", p->soap_type() == SOAP_TYPE__tds__GetCACertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCACertificates(struct soap *soap, const char *URL, _tds__GetCACertificates 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, "tds:GetCACertificates", p->soap_type() == SOAP_TYPE__tds__GetCACertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCACertificates(struct soap *soap, const char *URL, _tds__GetCACertificates 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, "tds:GetCACertificates", p->soap_type() == SOAP_TYPE__tds__GetCACertificates ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCACertificates * SOAP_FMAC4 soap_get__tds__GetCACertificates(struct soap*, _tds__GetCACertificates *, const char*, const char*); - -inline int soap_read__tds__GetCACertificates(struct soap *soap, _tds__GetCACertificates *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCACertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCACertificates(struct soap *soap, const char *URL, _tds__GetCACertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCACertificates(struct soap *soap, _tds__GetCACertificates *p) -{ - if (::soap_read__tds__GetCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetClientCertificateModeResponse_DEFINED -#define SOAP_TYPE__tds__SetClientCertificateModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetClientCertificateModeResponse(struct soap*, const char*, int, const _tds__SetClientCertificateModeResponse *, const char*); -SOAP_FMAC3 _tds__SetClientCertificateModeResponse * SOAP_FMAC4 soap_in__tds__SetClientCertificateModeResponse(struct soap*, const char*, _tds__SetClientCertificateModeResponse *, const char*); -SOAP_FMAC1 _tds__SetClientCertificateModeResponse * SOAP_FMAC2 soap_instantiate__tds__SetClientCertificateModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetClientCertificateModeResponse * soap_new__tds__SetClientCertificateModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetClientCertificateModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetClientCertificateModeResponse * soap_new_req__tds__SetClientCertificateModeResponse( - struct soap *soap) -{ - _tds__SetClientCertificateModeResponse *_p = ::soap_new__tds__SetClientCertificateModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetClientCertificateModeResponse * soap_new_set__tds__SetClientCertificateModeResponse( - struct soap *soap) -{ - _tds__SetClientCertificateModeResponse *_p = ::soap_new__tds__SetClientCertificateModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetClientCertificateModeResponse(struct soap *soap, _tds__SetClientCertificateModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__SetClientCertificateModeResponse 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, "tds:SetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__SetClientCertificateModeResponse 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, "tds:SetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__SetClientCertificateModeResponse 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, "tds:SetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetClientCertificateModeResponse * SOAP_FMAC4 soap_get__tds__SetClientCertificateModeResponse(struct soap*, _tds__SetClientCertificateModeResponse *, const char*, const char*); - -inline int soap_read__tds__SetClientCertificateModeResponse(struct soap *soap, _tds__SetClientCertificateModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetClientCertificateModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__SetClientCertificateModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetClientCertificateModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetClientCertificateModeResponse(struct soap *soap, _tds__SetClientCertificateModeResponse *p) -{ - if (::soap_read__tds__SetClientCertificateModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetClientCertificateMode_DEFINED -#define SOAP_TYPE__tds__SetClientCertificateMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetClientCertificateMode(struct soap*, const char*, int, const _tds__SetClientCertificateMode *, const char*); -SOAP_FMAC3 _tds__SetClientCertificateMode * SOAP_FMAC4 soap_in__tds__SetClientCertificateMode(struct soap*, const char*, _tds__SetClientCertificateMode *, const char*); -SOAP_FMAC1 _tds__SetClientCertificateMode * SOAP_FMAC2 soap_instantiate__tds__SetClientCertificateMode(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetClientCertificateMode * soap_new__tds__SetClientCertificateMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetClientCertificateMode(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetClientCertificateMode * soap_new_req__tds__SetClientCertificateMode( - struct soap *soap, - bool Enabled) -{ - _tds__SetClientCertificateMode *_p = ::soap_new__tds__SetClientCertificateMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetClientCertificateMode::Enabled = Enabled; - } - return _p; -} - -inline _tds__SetClientCertificateMode * soap_new_set__tds__SetClientCertificateMode( - struct soap *soap, - bool Enabled) -{ - _tds__SetClientCertificateMode *_p = ::soap_new__tds__SetClientCertificateMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetClientCertificateMode::Enabled = Enabled; - } - return _p; -} - -inline int soap_write__tds__SetClientCertificateMode(struct soap *soap, _tds__SetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetClientCertificateMode(struct soap *soap, const char *URL, _tds__SetClientCertificateMode 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, "tds:SetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetClientCertificateMode(struct soap *soap, const char *URL, _tds__SetClientCertificateMode 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, "tds:SetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetClientCertificateMode(struct soap *soap, const char *URL, _tds__SetClientCertificateMode 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, "tds:SetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__SetClientCertificateMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetClientCertificateMode * SOAP_FMAC4 soap_get__tds__SetClientCertificateMode(struct soap*, _tds__SetClientCertificateMode *, const char*, const char*); - -inline int soap_read__tds__SetClientCertificateMode(struct soap *soap, _tds__SetClientCertificateMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetClientCertificateMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetClientCertificateMode(struct soap *soap, const char *URL, _tds__SetClientCertificateMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetClientCertificateMode(struct soap *soap, _tds__SetClientCertificateMode *p) -{ - if (::soap_read__tds__SetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetClientCertificateModeResponse_DEFINED -#define SOAP_TYPE__tds__GetClientCertificateModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetClientCertificateModeResponse(struct soap*, const char*, int, const _tds__GetClientCertificateModeResponse *, const char*); -SOAP_FMAC3 _tds__GetClientCertificateModeResponse * SOAP_FMAC4 soap_in__tds__GetClientCertificateModeResponse(struct soap*, const char*, _tds__GetClientCertificateModeResponse *, const char*); -SOAP_FMAC1 _tds__GetClientCertificateModeResponse * SOAP_FMAC2 soap_instantiate__tds__GetClientCertificateModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetClientCertificateModeResponse * soap_new__tds__GetClientCertificateModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetClientCertificateModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetClientCertificateModeResponse * soap_new_req__tds__GetClientCertificateModeResponse( - struct soap *soap, - bool Enabled) -{ - _tds__GetClientCertificateModeResponse *_p = ::soap_new__tds__GetClientCertificateModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetClientCertificateModeResponse::Enabled = Enabled; - } - return _p; -} - -inline _tds__GetClientCertificateModeResponse * soap_new_set__tds__GetClientCertificateModeResponse( - struct soap *soap, - bool Enabled) -{ - _tds__GetClientCertificateModeResponse *_p = ::soap_new__tds__GetClientCertificateModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetClientCertificateModeResponse::Enabled = Enabled; - } - return _p; -} - -inline int soap_write__tds__GetClientCertificateModeResponse(struct soap *soap, _tds__GetClientCertificateModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__GetClientCertificateModeResponse 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, "tds:GetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__GetClientCertificateModeResponse 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, "tds:GetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__GetClientCertificateModeResponse 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, "tds:GetClientCertificateModeResponse", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetClientCertificateModeResponse * SOAP_FMAC4 soap_get__tds__GetClientCertificateModeResponse(struct soap*, _tds__GetClientCertificateModeResponse *, const char*, const char*); - -inline int soap_read__tds__GetClientCertificateModeResponse(struct soap *soap, _tds__GetClientCertificateModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetClientCertificateModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetClientCertificateModeResponse(struct soap *soap, const char *URL, _tds__GetClientCertificateModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetClientCertificateModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetClientCertificateModeResponse(struct soap *soap, _tds__GetClientCertificateModeResponse *p) -{ - if (::soap_read__tds__GetClientCertificateModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetClientCertificateMode_DEFINED -#define SOAP_TYPE__tds__GetClientCertificateMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetClientCertificateMode(struct soap*, const char*, int, const _tds__GetClientCertificateMode *, const char*); -SOAP_FMAC3 _tds__GetClientCertificateMode * SOAP_FMAC4 soap_in__tds__GetClientCertificateMode(struct soap*, const char*, _tds__GetClientCertificateMode *, const char*); -SOAP_FMAC1 _tds__GetClientCertificateMode * SOAP_FMAC2 soap_instantiate__tds__GetClientCertificateMode(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetClientCertificateMode * soap_new__tds__GetClientCertificateMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetClientCertificateMode(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetClientCertificateMode * soap_new_req__tds__GetClientCertificateMode( - struct soap *soap) -{ - _tds__GetClientCertificateMode *_p = ::soap_new__tds__GetClientCertificateMode(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetClientCertificateMode * soap_new_set__tds__GetClientCertificateMode( - struct soap *soap) -{ - _tds__GetClientCertificateMode *_p = ::soap_new__tds__GetClientCertificateMode(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetClientCertificateMode(struct soap *soap, _tds__GetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetClientCertificateMode(struct soap *soap, const char *URL, _tds__GetClientCertificateMode 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, "tds:GetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetClientCertificateMode(struct soap *soap, const char *URL, _tds__GetClientCertificateMode 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, "tds:GetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetClientCertificateMode(struct soap *soap, const char *URL, _tds__GetClientCertificateMode 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, "tds:GetClientCertificateMode", p->soap_type() == SOAP_TYPE__tds__GetClientCertificateMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetClientCertificateMode * SOAP_FMAC4 soap_get__tds__GetClientCertificateMode(struct soap*, _tds__GetClientCertificateMode *, const char*, const char*); - -inline int soap_read__tds__GetClientCertificateMode(struct soap *soap, _tds__GetClientCertificateMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetClientCertificateMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetClientCertificateMode(struct soap *soap, const char *URL, _tds__GetClientCertificateMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetClientCertificateMode(struct soap *soap, _tds__GetClientCertificateMode *p) -{ - if (::soap_read__tds__GetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__LoadCertificatesResponse_DEFINED -#define SOAP_TYPE__tds__LoadCertificatesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificatesResponse(struct soap*, const char*, int, const _tds__LoadCertificatesResponse *, const char*); -SOAP_FMAC3 _tds__LoadCertificatesResponse * SOAP_FMAC4 soap_in__tds__LoadCertificatesResponse(struct soap*, const char*, _tds__LoadCertificatesResponse *, const char*); -SOAP_FMAC1 _tds__LoadCertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__LoadCertificatesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__LoadCertificatesResponse * soap_new__tds__LoadCertificatesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__LoadCertificatesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__LoadCertificatesResponse * soap_new_req__tds__LoadCertificatesResponse( - struct soap *soap) -{ - _tds__LoadCertificatesResponse *_p = ::soap_new__tds__LoadCertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__LoadCertificatesResponse * soap_new_set__tds__LoadCertificatesResponse( - struct soap *soap) -{ - _tds__LoadCertificatesResponse *_p = ::soap_new__tds__LoadCertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__LoadCertificatesResponse(struct soap *soap, _tds__LoadCertificatesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:LoadCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__LoadCertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCertificatesResponse 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, "tds:LoadCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__LoadCertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCertificatesResponse 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, "tds:LoadCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__LoadCertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCertificatesResponse 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, "tds:LoadCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__LoadCertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__LoadCertificatesResponse * SOAP_FMAC4 soap_get__tds__LoadCertificatesResponse(struct soap*, _tds__LoadCertificatesResponse *, const char*, const char*); - -inline int soap_read__tds__LoadCertificatesResponse(struct soap *soap, _tds__LoadCertificatesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__LoadCertificatesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__LoadCertificatesResponse(struct soap *soap, const char *URL, _tds__LoadCertificatesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__LoadCertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__LoadCertificatesResponse(struct soap *soap, _tds__LoadCertificatesResponse *p) -{ - if (::soap_read__tds__LoadCertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__LoadCertificates_DEFINED -#define SOAP_TYPE__tds__LoadCertificates_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__LoadCertificates(struct soap*, const char*, int, const _tds__LoadCertificates *, const char*); -SOAP_FMAC3 _tds__LoadCertificates * SOAP_FMAC4 soap_in__tds__LoadCertificates(struct soap*, const char*, _tds__LoadCertificates *, const char*); -SOAP_FMAC1 _tds__LoadCertificates * SOAP_FMAC2 soap_instantiate__tds__LoadCertificates(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__LoadCertificates * soap_new__tds__LoadCertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__LoadCertificates(soap, n, NULL, NULL, NULL); -} - -inline _tds__LoadCertificates * soap_new_req__tds__LoadCertificates( - struct soap *soap, - const std::vector & NVTCertificate) -{ - _tds__LoadCertificates *_p = ::soap_new__tds__LoadCertificates(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__LoadCertificates::NVTCertificate = NVTCertificate; - } - return _p; -} - -inline _tds__LoadCertificates * soap_new_set__tds__LoadCertificates( - struct soap *soap, - const std::vector & NVTCertificate) -{ - _tds__LoadCertificates *_p = ::soap_new__tds__LoadCertificates(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__LoadCertificates::NVTCertificate = NVTCertificate; - } - return _p; -} - -inline int soap_write__tds__LoadCertificates(struct soap *soap, _tds__LoadCertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:LoadCertificates", p->soap_type() == SOAP_TYPE__tds__LoadCertificates ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__LoadCertificates(struct soap *soap, const char *URL, _tds__LoadCertificates 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, "tds:LoadCertificates", p->soap_type() == SOAP_TYPE__tds__LoadCertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__LoadCertificates(struct soap *soap, const char *URL, _tds__LoadCertificates 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, "tds:LoadCertificates", p->soap_type() == SOAP_TYPE__tds__LoadCertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__LoadCertificates(struct soap *soap, const char *URL, _tds__LoadCertificates 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, "tds:LoadCertificates", p->soap_type() == SOAP_TYPE__tds__LoadCertificates ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__LoadCertificates * SOAP_FMAC4 soap_get__tds__LoadCertificates(struct soap*, _tds__LoadCertificates *, const char*, const char*); - -inline int soap_read__tds__LoadCertificates(struct soap *soap, _tds__LoadCertificates *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__LoadCertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__LoadCertificates(struct soap *soap, const char *URL, _tds__LoadCertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__LoadCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__LoadCertificates(struct soap *soap, _tds__LoadCertificates *p) -{ - if (::soap_read__tds__LoadCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetPkcs10RequestResponse_DEFINED -#define SOAP_TYPE__tds__GetPkcs10RequestResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetPkcs10RequestResponse(struct soap*, const char*, int, const _tds__GetPkcs10RequestResponse *, const char*); -SOAP_FMAC3 _tds__GetPkcs10RequestResponse * SOAP_FMAC4 soap_in__tds__GetPkcs10RequestResponse(struct soap*, const char*, _tds__GetPkcs10RequestResponse *, const char*); -SOAP_FMAC1 _tds__GetPkcs10RequestResponse * SOAP_FMAC2 soap_instantiate__tds__GetPkcs10RequestResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetPkcs10RequestResponse * soap_new__tds__GetPkcs10RequestResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetPkcs10RequestResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetPkcs10RequestResponse * soap_new_req__tds__GetPkcs10RequestResponse( - struct soap *soap, - tt__BinaryData *Pkcs10Request) -{ - _tds__GetPkcs10RequestResponse *_p = ::soap_new__tds__GetPkcs10RequestResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetPkcs10RequestResponse::Pkcs10Request = Pkcs10Request; - } - return _p; -} - -inline _tds__GetPkcs10RequestResponse * soap_new_set__tds__GetPkcs10RequestResponse( - struct soap *soap, - tt__BinaryData *Pkcs10Request) -{ - _tds__GetPkcs10RequestResponse *_p = ::soap_new__tds__GetPkcs10RequestResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetPkcs10RequestResponse::Pkcs10Request = Pkcs10Request; - } - return _p; -} - -inline int soap_write__tds__GetPkcs10RequestResponse(struct soap *soap, _tds__GetPkcs10RequestResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetPkcs10RequestResponse", p->soap_type() == SOAP_TYPE__tds__GetPkcs10RequestResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetPkcs10RequestResponse(struct soap *soap, const char *URL, _tds__GetPkcs10RequestResponse 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, "tds:GetPkcs10RequestResponse", p->soap_type() == SOAP_TYPE__tds__GetPkcs10RequestResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetPkcs10RequestResponse(struct soap *soap, const char *URL, _tds__GetPkcs10RequestResponse 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, "tds:GetPkcs10RequestResponse", p->soap_type() == SOAP_TYPE__tds__GetPkcs10RequestResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetPkcs10RequestResponse(struct soap *soap, const char *URL, _tds__GetPkcs10RequestResponse 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, "tds:GetPkcs10RequestResponse", p->soap_type() == SOAP_TYPE__tds__GetPkcs10RequestResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetPkcs10RequestResponse * SOAP_FMAC4 soap_get__tds__GetPkcs10RequestResponse(struct soap*, _tds__GetPkcs10RequestResponse *, const char*, const char*); - -inline int soap_read__tds__GetPkcs10RequestResponse(struct soap *soap, _tds__GetPkcs10RequestResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetPkcs10RequestResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetPkcs10RequestResponse(struct soap *soap, const char *URL, _tds__GetPkcs10RequestResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetPkcs10RequestResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetPkcs10RequestResponse(struct soap *soap, _tds__GetPkcs10RequestResponse *p) -{ - if (::soap_read__tds__GetPkcs10RequestResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetPkcs10Request_DEFINED -#define SOAP_TYPE__tds__GetPkcs10Request_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetPkcs10Request(struct soap*, const char*, int, const _tds__GetPkcs10Request *, const char*); -SOAP_FMAC3 _tds__GetPkcs10Request * SOAP_FMAC4 soap_in__tds__GetPkcs10Request(struct soap*, const char*, _tds__GetPkcs10Request *, const char*); -SOAP_FMAC1 _tds__GetPkcs10Request * SOAP_FMAC2 soap_instantiate__tds__GetPkcs10Request(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetPkcs10Request * soap_new__tds__GetPkcs10Request(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetPkcs10Request(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetPkcs10Request * soap_new_req__tds__GetPkcs10Request( - struct soap *soap, - const std::string& CertificateID) -{ - _tds__GetPkcs10Request *_p = ::soap_new__tds__GetPkcs10Request(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetPkcs10Request::CertificateID = CertificateID; - } - return _p; -} - -inline _tds__GetPkcs10Request * soap_new_set__tds__GetPkcs10Request( - struct soap *soap, - const std::string& CertificateID, - std::string *Subject, - tt__BinaryData *Attributes) -{ - _tds__GetPkcs10Request *_p = ::soap_new__tds__GetPkcs10Request(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetPkcs10Request::CertificateID = CertificateID; - _p->_tds__GetPkcs10Request::Subject = Subject; - _p->_tds__GetPkcs10Request::Attributes = Attributes; - } - return _p; -} - -inline int soap_write__tds__GetPkcs10Request(struct soap *soap, _tds__GetPkcs10Request const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetPkcs10Request", p->soap_type() == SOAP_TYPE__tds__GetPkcs10Request ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetPkcs10Request(struct soap *soap, const char *URL, _tds__GetPkcs10Request 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, "tds:GetPkcs10Request", p->soap_type() == SOAP_TYPE__tds__GetPkcs10Request ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetPkcs10Request(struct soap *soap, const char *URL, _tds__GetPkcs10Request 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, "tds:GetPkcs10Request", p->soap_type() == SOAP_TYPE__tds__GetPkcs10Request ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetPkcs10Request(struct soap *soap, const char *URL, _tds__GetPkcs10Request 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, "tds:GetPkcs10Request", p->soap_type() == SOAP_TYPE__tds__GetPkcs10Request ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetPkcs10Request * SOAP_FMAC4 soap_get__tds__GetPkcs10Request(struct soap*, _tds__GetPkcs10Request *, const char*, const char*); - -inline int soap_read__tds__GetPkcs10Request(struct soap *soap, _tds__GetPkcs10Request *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetPkcs10Request(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetPkcs10Request(struct soap *soap, const char *URL, _tds__GetPkcs10Request *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetPkcs10Request(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetPkcs10Request(struct soap *soap, _tds__GetPkcs10Request *p) -{ - if (::soap_read__tds__GetPkcs10Request(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteCertificatesResponse_DEFINED -#define SOAP_TYPE__tds__DeleteCertificatesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteCertificatesResponse(struct soap*, const char*, int, const _tds__DeleteCertificatesResponse *, const char*); -SOAP_FMAC3 _tds__DeleteCertificatesResponse * SOAP_FMAC4 soap_in__tds__DeleteCertificatesResponse(struct soap*, const char*, _tds__DeleteCertificatesResponse *, const char*); -SOAP_FMAC1 _tds__DeleteCertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteCertificatesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteCertificatesResponse * soap_new__tds__DeleteCertificatesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteCertificatesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteCertificatesResponse * soap_new_req__tds__DeleteCertificatesResponse( - struct soap *soap) -{ - _tds__DeleteCertificatesResponse *_p = ::soap_new__tds__DeleteCertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__DeleteCertificatesResponse * soap_new_set__tds__DeleteCertificatesResponse( - struct soap *soap) -{ - _tds__DeleteCertificatesResponse *_p = ::soap_new__tds__DeleteCertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__DeleteCertificatesResponse(struct soap *soap, _tds__DeleteCertificatesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__DeleteCertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteCertificatesResponse(struct soap *soap, const char *URL, _tds__DeleteCertificatesResponse 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, "tds:DeleteCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__DeleteCertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteCertificatesResponse(struct soap *soap, const char *URL, _tds__DeleteCertificatesResponse 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, "tds:DeleteCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__DeleteCertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteCertificatesResponse(struct soap *soap, const char *URL, _tds__DeleteCertificatesResponse 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, "tds:DeleteCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__DeleteCertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteCertificatesResponse * SOAP_FMAC4 soap_get__tds__DeleteCertificatesResponse(struct soap*, _tds__DeleteCertificatesResponse *, const char*, const char*); - -inline int soap_read__tds__DeleteCertificatesResponse(struct soap *soap, _tds__DeleteCertificatesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteCertificatesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteCertificatesResponse(struct soap *soap, const char *URL, _tds__DeleteCertificatesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteCertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteCertificatesResponse(struct soap *soap, _tds__DeleteCertificatesResponse *p) -{ - if (::soap_read__tds__DeleteCertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteCertificates_DEFINED -#define SOAP_TYPE__tds__DeleteCertificates_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteCertificates(struct soap*, const char*, int, const _tds__DeleteCertificates *, const char*); -SOAP_FMAC3 _tds__DeleteCertificates * SOAP_FMAC4 soap_in__tds__DeleteCertificates(struct soap*, const char*, _tds__DeleteCertificates *, const char*); -SOAP_FMAC1 _tds__DeleteCertificates * SOAP_FMAC2 soap_instantiate__tds__DeleteCertificates(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteCertificates * soap_new__tds__DeleteCertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteCertificates(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteCertificates * soap_new_req__tds__DeleteCertificates( - struct soap *soap, - const std::vector & CertificateID) -{ - _tds__DeleteCertificates *_p = ::soap_new__tds__DeleteCertificates(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteCertificates::CertificateID = CertificateID; - } - return _p; -} - -inline _tds__DeleteCertificates * soap_new_set__tds__DeleteCertificates( - struct soap *soap, - const std::vector & CertificateID) -{ - _tds__DeleteCertificates *_p = ::soap_new__tds__DeleteCertificates(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteCertificates::CertificateID = CertificateID; - } - return _p; -} - -inline int soap_write__tds__DeleteCertificates(struct soap *soap, _tds__DeleteCertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteCertificates", p->soap_type() == SOAP_TYPE__tds__DeleteCertificates ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteCertificates(struct soap *soap, const char *URL, _tds__DeleteCertificates 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, "tds:DeleteCertificates", p->soap_type() == SOAP_TYPE__tds__DeleteCertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteCertificates(struct soap *soap, const char *URL, _tds__DeleteCertificates 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, "tds:DeleteCertificates", p->soap_type() == SOAP_TYPE__tds__DeleteCertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteCertificates(struct soap *soap, const char *URL, _tds__DeleteCertificates 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, "tds:DeleteCertificates", p->soap_type() == SOAP_TYPE__tds__DeleteCertificates ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteCertificates * SOAP_FMAC4 soap_get__tds__DeleteCertificates(struct soap*, _tds__DeleteCertificates *, const char*, const char*); - -inline int soap_read__tds__DeleteCertificates(struct soap *soap, _tds__DeleteCertificates *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteCertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteCertificates(struct soap *soap, const char *URL, _tds__DeleteCertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteCertificates(struct soap *soap, _tds__DeleteCertificates *p) -{ - if (::soap_read__tds__DeleteCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetCertificatesStatusResponse_DEFINED -#define SOAP_TYPE__tds__SetCertificatesStatusResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetCertificatesStatusResponse(struct soap*, const char*, int, const _tds__SetCertificatesStatusResponse *, const char*); -SOAP_FMAC3 _tds__SetCertificatesStatusResponse * SOAP_FMAC4 soap_in__tds__SetCertificatesStatusResponse(struct soap*, const char*, _tds__SetCertificatesStatusResponse *, const char*); -SOAP_FMAC1 _tds__SetCertificatesStatusResponse * SOAP_FMAC2 soap_instantiate__tds__SetCertificatesStatusResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetCertificatesStatusResponse * soap_new__tds__SetCertificatesStatusResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetCertificatesStatusResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetCertificatesStatusResponse * soap_new_req__tds__SetCertificatesStatusResponse( - struct soap *soap) -{ - _tds__SetCertificatesStatusResponse *_p = ::soap_new__tds__SetCertificatesStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetCertificatesStatusResponse * soap_new_set__tds__SetCertificatesStatusResponse( - struct soap *soap) -{ - _tds__SetCertificatesStatusResponse *_p = ::soap_new__tds__SetCertificatesStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetCertificatesStatusResponse(struct soap *soap, _tds__SetCertificatesStatusResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__SetCertificatesStatusResponse 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, "tds:SetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__SetCertificatesStatusResponse 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, "tds:SetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__SetCertificatesStatusResponse 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, "tds:SetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetCertificatesStatusResponse * SOAP_FMAC4 soap_get__tds__SetCertificatesStatusResponse(struct soap*, _tds__SetCertificatesStatusResponse *, const char*, const char*); - -inline int soap_read__tds__SetCertificatesStatusResponse(struct soap *soap, _tds__SetCertificatesStatusResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetCertificatesStatusResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__SetCertificatesStatusResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetCertificatesStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetCertificatesStatusResponse(struct soap *soap, _tds__SetCertificatesStatusResponse *p) -{ - if (::soap_read__tds__SetCertificatesStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetCertificatesStatus_DEFINED -#define SOAP_TYPE__tds__SetCertificatesStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetCertificatesStatus(struct soap*, const char*, int, const _tds__SetCertificatesStatus *, const char*); -SOAP_FMAC3 _tds__SetCertificatesStatus * SOAP_FMAC4 soap_in__tds__SetCertificatesStatus(struct soap*, const char*, _tds__SetCertificatesStatus *, const char*); -SOAP_FMAC1 _tds__SetCertificatesStatus * SOAP_FMAC2 soap_instantiate__tds__SetCertificatesStatus(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetCertificatesStatus * soap_new__tds__SetCertificatesStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetCertificatesStatus(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetCertificatesStatus * soap_new_req__tds__SetCertificatesStatus( - struct soap *soap) -{ - _tds__SetCertificatesStatus *_p = ::soap_new__tds__SetCertificatesStatus(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetCertificatesStatus * soap_new_set__tds__SetCertificatesStatus( - struct soap *soap, - const std::vector & CertificateStatus) -{ - _tds__SetCertificatesStatus *_p = ::soap_new__tds__SetCertificatesStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetCertificatesStatus::CertificateStatus = CertificateStatus; - } - return _p; -} - -inline int soap_write__tds__SetCertificatesStatus(struct soap *soap, _tds__SetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetCertificatesStatus(struct soap *soap, const char *URL, _tds__SetCertificatesStatus 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, "tds:SetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetCertificatesStatus(struct soap *soap, const char *URL, _tds__SetCertificatesStatus 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, "tds:SetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetCertificatesStatus(struct soap *soap, const char *URL, _tds__SetCertificatesStatus 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, "tds:SetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__SetCertificatesStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetCertificatesStatus * SOAP_FMAC4 soap_get__tds__SetCertificatesStatus(struct soap*, _tds__SetCertificatesStatus *, const char*, const char*); - -inline int soap_read__tds__SetCertificatesStatus(struct soap *soap, _tds__SetCertificatesStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetCertificatesStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetCertificatesStatus(struct soap *soap, const char *URL, _tds__SetCertificatesStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetCertificatesStatus(struct soap *soap, _tds__SetCertificatesStatus *p) -{ - if (::soap_read__tds__SetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCertificatesStatusResponse_DEFINED -#define SOAP_TYPE__tds__GetCertificatesStatusResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificatesStatusResponse(struct soap*, const char*, int, const _tds__GetCertificatesStatusResponse *, const char*); -SOAP_FMAC3 _tds__GetCertificatesStatusResponse * SOAP_FMAC4 soap_in__tds__GetCertificatesStatusResponse(struct soap*, const char*, _tds__GetCertificatesStatusResponse *, const char*); -SOAP_FMAC1 _tds__GetCertificatesStatusResponse * SOAP_FMAC2 soap_instantiate__tds__GetCertificatesStatusResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCertificatesStatusResponse * soap_new__tds__GetCertificatesStatusResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCertificatesStatusResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCertificatesStatusResponse * soap_new_req__tds__GetCertificatesStatusResponse( - struct soap *soap) -{ - _tds__GetCertificatesStatusResponse *_p = ::soap_new__tds__GetCertificatesStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetCertificatesStatusResponse * soap_new_set__tds__GetCertificatesStatusResponse( - struct soap *soap, - const std::vector & CertificateStatus) -{ - _tds__GetCertificatesStatusResponse *_p = ::soap_new__tds__GetCertificatesStatusResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCertificatesStatusResponse::CertificateStatus = CertificateStatus; - } - return _p; -} - -inline int soap_write__tds__GetCertificatesStatusResponse(struct soap *soap, _tds__GetCertificatesStatusResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__GetCertificatesStatusResponse 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, "tds:GetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__GetCertificatesStatusResponse 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, "tds:GetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__GetCertificatesStatusResponse 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, "tds:GetCertificatesStatusResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatusResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCertificatesStatusResponse * SOAP_FMAC4 soap_get__tds__GetCertificatesStatusResponse(struct soap*, _tds__GetCertificatesStatusResponse *, const char*, const char*); - -inline int soap_read__tds__GetCertificatesStatusResponse(struct soap *soap, _tds__GetCertificatesStatusResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCertificatesStatusResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCertificatesStatusResponse(struct soap *soap, const char *URL, _tds__GetCertificatesStatusResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCertificatesStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCertificatesStatusResponse(struct soap *soap, _tds__GetCertificatesStatusResponse *p) -{ - if (::soap_read__tds__GetCertificatesStatusResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCertificatesStatus_DEFINED -#define SOAP_TYPE__tds__GetCertificatesStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificatesStatus(struct soap*, const char*, int, const _tds__GetCertificatesStatus *, const char*); -SOAP_FMAC3 _tds__GetCertificatesStatus * SOAP_FMAC4 soap_in__tds__GetCertificatesStatus(struct soap*, const char*, _tds__GetCertificatesStatus *, const char*); -SOAP_FMAC1 _tds__GetCertificatesStatus * SOAP_FMAC2 soap_instantiate__tds__GetCertificatesStatus(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCertificatesStatus * soap_new__tds__GetCertificatesStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCertificatesStatus(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCertificatesStatus * soap_new_req__tds__GetCertificatesStatus( - struct soap *soap) -{ - _tds__GetCertificatesStatus *_p = ::soap_new__tds__GetCertificatesStatus(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetCertificatesStatus * soap_new_set__tds__GetCertificatesStatus( - struct soap *soap) -{ - _tds__GetCertificatesStatus *_p = ::soap_new__tds__GetCertificatesStatus(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetCertificatesStatus(struct soap *soap, _tds__GetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCertificatesStatus(struct soap *soap, const char *URL, _tds__GetCertificatesStatus 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, "tds:GetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCertificatesStatus(struct soap *soap, const char *URL, _tds__GetCertificatesStatus 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, "tds:GetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCertificatesStatus(struct soap *soap, const char *URL, _tds__GetCertificatesStatus 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, "tds:GetCertificatesStatus", p->soap_type() == SOAP_TYPE__tds__GetCertificatesStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCertificatesStatus * SOAP_FMAC4 soap_get__tds__GetCertificatesStatus(struct soap*, _tds__GetCertificatesStatus *, const char*, const char*); - -inline int soap_read__tds__GetCertificatesStatus(struct soap *soap, _tds__GetCertificatesStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCertificatesStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCertificatesStatus(struct soap *soap, const char *URL, _tds__GetCertificatesStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCertificatesStatus(struct soap *soap, _tds__GetCertificatesStatus *p) -{ - if (::soap_read__tds__GetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCertificatesResponse_DEFINED -#define SOAP_TYPE__tds__GetCertificatesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificatesResponse(struct soap*, const char*, int, const _tds__GetCertificatesResponse *, const char*); -SOAP_FMAC3 _tds__GetCertificatesResponse * SOAP_FMAC4 soap_in__tds__GetCertificatesResponse(struct soap*, const char*, _tds__GetCertificatesResponse *, const char*); -SOAP_FMAC1 _tds__GetCertificatesResponse * SOAP_FMAC2 soap_instantiate__tds__GetCertificatesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCertificatesResponse * soap_new__tds__GetCertificatesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCertificatesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCertificatesResponse * soap_new_req__tds__GetCertificatesResponse( - struct soap *soap) -{ - _tds__GetCertificatesResponse *_p = ::soap_new__tds__GetCertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetCertificatesResponse * soap_new_set__tds__GetCertificatesResponse( - struct soap *soap, - const std::vector & NvtCertificate) -{ - _tds__GetCertificatesResponse *_p = ::soap_new__tds__GetCertificatesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCertificatesResponse::NvtCertificate = NvtCertificate; - } - return _p; -} - -inline int soap_write__tds__GetCertificatesResponse(struct soap *soap, _tds__GetCertificatesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCertificatesResponse(struct soap *soap, const char *URL, _tds__GetCertificatesResponse 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, "tds:GetCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCertificatesResponse(struct soap *soap, const char *URL, _tds__GetCertificatesResponse 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, "tds:GetCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCertificatesResponse(struct soap *soap, const char *URL, _tds__GetCertificatesResponse 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, "tds:GetCertificatesResponse", p->soap_type() == SOAP_TYPE__tds__GetCertificatesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCertificatesResponse * SOAP_FMAC4 soap_get__tds__GetCertificatesResponse(struct soap*, _tds__GetCertificatesResponse *, const char*, const char*); - -inline int soap_read__tds__GetCertificatesResponse(struct soap *soap, _tds__GetCertificatesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCertificatesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCertificatesResponse(struct soap *soap, const char *URL, _tds__GetCertificatesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCertificatesResponse(struct soap *soap, _tds__GetCertificatesResponse *p) -{ - if (::soap_read__tds__GetCertificatesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCertificates_DEFINED -#define SOAP_TYPE__tds__GetCertificates_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCertificates(struct soap*, const char*, int, const _tds__GetCertificates *, const char*); -SOAP_FMAC3 _tds__GetCertificates * SOAP_FMAC4 soap_in__tds__GetCertificates(struct soap*, const char*, _tds__GetCertificates *, const char*); -SOAP_FMAC1 _tds__GetCertificates * SOAP_FMAC2 soap_instantiate__tds__GetCertificates(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCertificates * soap_new__tds__GetCertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCertificates(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCertificates * soap_new_req__tds__GetCertificates( - struct soap *soap) -{ - _tds__GetCertificates *_p = ::soap_new__tds__GetCertificates(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetCertificates * soap_new_set__tds__GetCertificates( - struct soap *soap) -{ - _tds__GetCertificates *_p = ::soap_new__tds__GetCertificates(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetCertificates(struct soap *soap, _tds__GetCertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCertificates", p->soap_type() == SOAP_TYPE__tds__GetCertificates ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCertificates(struct soap *soap, const char *URL, _tds__GetCertificates 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, "tds:GetCertificates", p->soap_type() == SOAP_TYPE__tds__GetCertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCertificates(struct soap *soap, const char *URL, _tds__GetCertificates 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, "tds:GetCertificates", p->soap_type() == SOAP_TYPE__tds__GetCertificates ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCertificates(struct soap *soap, const char *URL, _tds__GetCertificates 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, "tds:GetCertificates", p->soap_type() == SOAP_TYPE__tds__GetCertificates ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCertificates * SOAP_FMAC4 soap_get__tds__GetCertificates(struct soap*, _tds__GetCertificates *, const char*, const char*); - -inline int soap_read__tds__GetCertificates(struct soap *soap, _tds__GetCertificates *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCertificates(struct soap *soap, const char *URL, _tds__GetCertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCertificates(struct soap *soap, _tds__GetCertificates *p) -{ - if (::soap_read__tds__GetCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateCertificateResponse_DEFINED -#define SOAP_TYPE__tds__CreateCertificateResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateCertificateResponse(struct soap*, const char*, int, const _tds__CreateCertificateResponse *, const char*); -SOAP_FMAC3 _tds__CreateCertificateResponse * SOAP_FMAC4 soap_in__tds__CreateCertificateResponse(struct soap*, const char*, _tds__CreateCertificateResponse *, const char*); -SOAP_FMAC1 _tds__CreateCertificateResponse * SOAP_FMAC2 soap_instantiate__tds__CreateCertificateResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateCertificateResponse * soap_new__tds__CreateCertificateResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateCertificateResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateCertificateResponse * soap_new_req__tds__CreateCertificateResponse( - struct soap *soap, - tt__Certificate *NvtCertificate) -{ - _tds__CreateCertificateResponse *_p = ::soap_new__tds__CreateCertificateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateCertificateResponse::NvtCertificate = NvtCertificate; - } - return _p; -} - -inline _tds__CreateCertificateResponse * soap_new_set__tds__CreateCertificateResponse( - struct soap *soap, - tt__Certificate *NvtCertificate) -{ - _tds__CreateCertificateResponse *_p = ::soap_new__tds__CreateCertificateResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateCertificateResponse::NvtCertificate = NvtCertificate; - } - return _p; -} - -inline int soap_write__tds__CreateCertificateResponse(struct soap *soap, _tds__CreateCertificateResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateCertificateResponse", p->soap_type() == SOAP_TYPE__tds__CreateCertificateResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateCertificateResponse(struct soap *soap, const char *URL, _tds__CreateCertificateResponse 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, "tds:CreateCertificateResponse", p->soap_type() == SOAP_TYPE__tds__CreateCertificateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateCertificateResponse(struct soap *soap, const char *URL, _tds__CreateCertificateResponse 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, "tds:CreateCertificateResponse", p->soap_type() == SOAP_TYPE__tds__CreateCertificateResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateCertificateResponse(struct soap *soap, const char *URL, _tds__CreateCertificateResponse 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, "tds:CreateCertificateResponse", p->soap_type() == SOAP_TYPE__tds__CreateCertificateResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateCertificateResponse * SOAP_FMAC4 soap_get__tds__CreateCertificateResponse(struct soap*, _tds__CreateCertificateResponse *, const char*, const char*); - -inline int soap_read__tds__CreateCertificateResponse(struct soap *soap, _tds__CreateCertificateResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateCertificateResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateCertificateResponse(struct soap *soap, const char *URL, _tds__CreateCertificateResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateCertificateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateCertificateResponse(struct soap *soap, _tds__CreateCertificateResponse *p) -{ - if (::soap_read__tds__CreateCertificateResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateCertificate_DEFINED -#define SOAP_TYPE__tds__CreateCertificate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateCertificate(struct soap*, const char*, int, const _tds__CreateCertificate *, const char*); -SOAP_FMAC3 _tds__CreateCertificate * SOAP_FMAC4 soap_in__tds__CreateCertificate(struct soap*, const char*, _tds__CreateCertificate *, const char*); -SOAP_FMAC1 _tds__CreateCertificate * SOAP_FMAC2 soap_instantiate__tds__CreateCertificate(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateCertificate * soap_new__tds__CreateCertificate(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateCertificate(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateCertificate * soap_new_req__tds__CreateCertificate( - struct soap *soap) -{ - _tds__CreateCertificate *_p = ::soap_new__tds__CreateCertificate(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__CreateCertificate * soap_new_set__tds__CreateCertificate( - struct soap *soap, - std::string *CertificateID, - std::string *Subject, - struct timeval *ValidNotBefore, - struct timeval *ValidNotAfter) -{ - _tds__CreateCertificate *_p = ::soap_new__tds__CreateCertificate(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateCertificate::CertificateID = CertificateID; - _p->_tds__CreateCertificate::Subject = Subject; - _p->_tds__CreateCertificate::ValidNotBefore = ValidNotBefore; - _p->_tds__CreateCertificate::ValidNotAfter = ValidNotAfter; - } - return _p; -} - -inline int soap_write__tds__CreateCertificate(struct soap *soap, _tds__CreateCertificate const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateCertificate", p->soap_type() == SOAP_TYPE__tds__CreateCertificate ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateCertificate(struct soap *soap, const char *URL, _tds__CreateCertificate 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, "tds:CreateCertificate", p->soap_type() == SOAP_TYPE__tds__CreateCertificate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateCertificate(struct soap *soap, const char *URL, _tds__CreateCertificate 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, "tds:CreateCertificate", p->soap_type() == SOAP_TYPE__tds__CreateCertificate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateCertificate(struct soap *soap, const char *URL, _tds__CreateCertificate 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, "tds:CreateCertificate", p->soap_type() == SOAP_TYPE__tds__CreateCertificate ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateCertificate * SOAP_FMAC4 soap_get__tds__CreateCertificate(struct soap*, _tds__CreateCertificate *, const char*, const char*); - -inline int soap_read__tds__CreateCertificate(struct soap *soap, _tds__CreateCertificate *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateCertificate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateCertificate(struct soap *soap, const char *URL, _tds__CreateCertificate *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateCertificate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateCertificate(struct soap *soap, _tds__CreateCertificate *p) -{ - if (::soap_read__tds__CreateCertificate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetAccessPolicyResponse_DEFINED -#define SOAP_TYPE__tds__SetAccessPolicyResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetAccessPolicyResponse(struct soap*, const char*, int, const _tds__SetAccessPolicyResponse *, const char*); -SOAP_FMAC3 _tds__SetAccessPolicyResponse * SOAP_FMAC4 soap_in__tds__SetAccessPolicyResponse(struct soap*, const char*, _tds__SetAccessPolicyResponse *, const char*); -SOAP_FMAC1 _tds__SetAccessPolicyResponse * SOAP_FMAC2 soap_instantiate__tds__SetAccessPolicyResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetAccessPolicyResponse * soap_new__tds__SetAccessPolicyResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetAccessPolicyResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetAccessPolicyResponse * soap_new_req__tds__SetAccessPolicyResponse( - struct soap *soap) -{ - _tds__SetAccessPolicyResponse *_p = ::soap_new__tds__SetAccessPolicyResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetAccessPolicyResponse * soap_new_set__tds__SetAccessPolicyResponse( - struct soap *soap) -{ - _tds__SetAccessPolicyResponse *_p = ::soap_new__tds__SetAccessPolicyResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetAccessPolicyResponse(struct soap *soap, _tds__SetAccessPolicyResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__SetAccessPolicyResponse 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, "tds:SetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__SetAccessPolicyResponse 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, "tds:SetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__SetAccessPolicyResponse 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, "tds:SetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetAccessPolicyResponse * SOAP_FMAC4 soap_get__tds__SetAccessPolicyResponse(struct soap*, _tds__SetAccessPolicyResponse *, const char*, const char*); - -inline int soap_read__tds__SetAccessPolicyResponse(struct soap *soap, _tds__SetAccessPolicyResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetAccessPolicyResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__SetAccessPolicyResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetAccessPolicyResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetAccessPolicyResponse(struct soap *soap, _tds__SetAccessPolicyResponse *p) -{ - if (::soap_read__tds__SetAccessPolicyResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetAccessPolicy_DEFINED -#define SOAP_TYPE__tds__SetAccessPolicy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetAccessPolicy(struct soap*, const char*, int, const _tds__SetAccessPolicy *, const char*); -SOAP_FMAC3 _tds__SetAccessPolicy * SOAP_FMAC4 soap_in__tds__SetAccessPolicy(struct soap*, const char*, _tds__SetAccessPolicy *, const char*); -SOAP_FMAC1 _tds__SetAccessPolicy * SOAP_FMAC2 soap_instantiate__tds__SetAccessPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetAccessPolicy * soap_new__tds__SetAccessPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetAccessPolicy(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetAccessPolicy * soap_new_req__tds__SetAccessPolicy( - struct soap *soap, - tt__BinaryData *PolicyFile) -{ - _tds__SetAccessPolicy *_p = ::soap_new__tds__SetAccessPolicy(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetAccessPolicy::PolicyFile = PolicyFile; - } - return _p; -} - -inline _tds__SetAccessPolicy * soap_new_set__tds__SetAccessPolicy( - struct soap *soap, - tt__BinaryData *PolicyFile) -{ - _tds__SetAccessPolicy *_p = ::soap_new__tds__SetAccessPolicy(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetAccessPolicy::PolicyFile = PolicyFile; - } - return _p; -} - -inline int soap_write__tds__SetAccessPolicy(struct soap *soap, _tds__SetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicy ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetAccessPolicy(struct soap *soap, const char *URL, _tds__SetAccessPolicy 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, "tds:SetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetAccessPolicy(struct soap *soap, const char *URL, _tds__SetAccessPolicy 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, "tds:SetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetAccessPolicy(struct soap *soap, const char *URL, _tds__SetAccessPolicy 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, "tds:SetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__SetAccessPolicy ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetAccessPolicy * SOAP_FMAC4 soap_get__tds__SetAccessPolicy(struct soap*, _tds__SetAccessPolicy *, const char*, const char*); - -inline int soap_read__tds__SetAccessPolicy(struct soap *soap, _tds__SetAccessPolicy *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetAccessPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetAccessPolicy(struct soap *soap, const char *URL, _tds__SetAccessPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetAccessPolicy(struct soap *soap, _tds__SetAccessPolicy *p) -{ - if (::soap_read__tds__SetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetAccessPolicyResponse_DEFINED -#define SOAP_TYPE__tds__GetAccessPolicyResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetAccessPolicyResponse(struct soap*, const char*, int, const _tds__GetAccessPolicyResponse *, const char*); -SOAP_FMAC3 _tds__GetAccessPolicyResponse * SOAP_FMAC4 soap_in__tds__GetAccessPolicyResponse(struct soap*, const char*, _tds__GetAccessPolicyResponse *, const char*); -SOAP_FMAC1 _tds__GetAccessPolicyResponse * SOAP_FMAC2 soap_instantiate__tds__GetAccessPolicyResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetAccessPolicyResponse * soap_new__tds__GetAccessPolicyResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetAccessPolicyResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetAccessPolicyResponse * soap_new_req__tds__GetAccessPolicyResponse( - struct soap *soap, - tt__BinaryData *PolicyFile) -{ - _tds__GetAccessPolicyResponse *_p = ::soap_new__tds__GetAccessPolicyResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetAccessPolicyResponse::PolicyFile = PolicyFile; - } - return _p; -} - -inline _tds__GetAccessPolicyResponse * soap_new_set__tds__GetAccessPolicyResponse( - struct soap *soap, - tt__BinaryData *PolicyFile) -{ - _tds__GetAccessPolicyResponse *_p = ::soap_new__tds__GetAccessPolicyResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetAccessPolicyResponse::PolicyFile = PolicyFile; - } - return _p; -} - -inline int soap_write__tds__GetAccessPolicyResponse(struct soap *soap, _tds__GetAccessPolicyResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__GetAccessPolicyResponse 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, "tds:GetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__GetAccessPolicyResponse 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, "tds:GetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__GetAccessPolicyResponse 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, "tds:GetAccessPolicyResponse", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicyResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetAccessPolicyResponse * SOAP_FMAC4 soap_get__tds__GetAccessPolicyResponse(struct soap*, _tds__GetAccessPolicyResponse *, const char*, const char*); - -inline int soap_read__tds__GetAccessPolicyResponse(struct soap *soap, _tds__GetAccessPolicyResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetAccessPolicyResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetAccessPolicyResponse(struct soap *soap, const char *URL, _tds__GetAccessPolicyResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetAccessPolicyResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetAccessPolicyResponse(struct soap *soap, _tds__GetAccessPolicyResponse *p) -{ - if (::soap_read__tds__GetAccessPolicyResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetAccessPolicy_DEFINED -#define SOAP_TYPE__tds__GetAccessPolicy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetAccessPolicy(struct soap*, const char*, int, const _tds__GetAccessPolicy *, const char*); -SOAP_FMAC3 _tds__GetAccessPolicy * SOAP_FMAC4 soap_in__tds__GetAccessPolicy(struct soap*, const char*, _tds__GetAccessPolicy *, const char*); -SOAP_FMAC1 _tds__GetAccessPolicy * SOAP_FMAC2 soap_instantiate__tds__GetAccessPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetAccessPolicy * soap_new__tds__GetAccessPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetAccessPolicy(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetAccessPolicy * soap_new_req__tds__GetAccessPolicy( - struct soap *soap) -{ - _tds__GetAccessPolicy *_p = ::soap_new__tds__GetAccessPolicy(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetAccessPolicy * soap_new_set__tds__GetAccessPolicy( - struct soap *soap) -{ - _tds__GetAccessPolicy *_p = ::soap_new__tds__GetAccessPolicy(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetAccessPolicy(struct soap *soap, _tds__GetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicy ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetAccessPolicy(struct soap *soap, const char *URL, _tds__GetAccessPolicy 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, "tds:GetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetAccessPolicy(struct soap *soap, const char *URL, _tds__GetAccessPolicy 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, "tds:GetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetAccessPolicy(struct soap *soap, const char *URL, _tds__GetAccessPolicy 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, "tds:GetAccessPolicy", p->soap_type() == SOAP_TYPE__tds__GetAccessPolicy ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetAccessPolicy * SOAP_FMAC4 soap_get__tds__GetAccessPolicy(struct soap*, _tds__GetAccessPolicy *, const char*, const char*); - -inline int soap_read__tds__GetAccessPolicy(struct soap *soap, _tds__GetAccessPolicy *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetAccessPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetAccessPolicy(struct soap *soap, const char *URL, _tds__GetAccessPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetAccessPolicy(struct soap *soap, _tds__GetAccessPolicy *p) -{ - if (::soap_read__tds__GetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__RemoveIPAddressFilterResponse_DEFINED -#define SOAP_TYPE__tds__RemoveIPAddressFilterResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveIPAddressFilterResponse(struct soap*, const char*, int, const _tds__RemoveIPAddressFilterResponse *, const char*); -SOAP_FMAC3 _tds__RemoveIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__RemoveIPAddressFilterResponse(struct soap*, const char*, _tds__RemoveIPAddressFilterResponse *, const char*); -SOAP_FMAC1 _tds__RemoveIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__RemoveIPAddressFilterResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__RemoveIPAddressFilterResponse * soap_new__tds__RemoveIPAddressFilterResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__RemoveIPAddressFilterResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__RemoveIPAddressFilterResponse * soap_new_req__tds__RemoveIPAddressFilterResponse( - struct soap *soap) -{ - _tds__RemoveIPAddressFilterResponse *_p = ::soap_new__tds__RemoveIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__RemoveIPAddressFilterResponse * soap_new_set__tds__RemoveIPAddressFilterResponse( - struct soap *soap) -{ - _tds__RemoveIPAddressFilterResponse *_p = ::soap_new__tds__RemoveIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__RemoveIPAddressFilterResponse(struct soap *soap, _tds__RemoveIPAddressFilterResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:RemoveIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__RemoveIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilterResponse 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, "tds:RemoveIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__RemoveIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilterResponse 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, "tds:RemoveIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__RemoveIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilterResponse 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, "tds:RemoveIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__RemoveIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__RemoveIPAddressFilterResponse(struct soap*, _tds__RemoveIPAddressFilterResponse *, const char*, const char*); - -inline int soap_read__tds__RemoveIPAddressFilterResponse(struct soap *soap, _tds__RemoveIPAddressFilterResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__RemoveIPAddressFilterResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__RemoveIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilterResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__RemoveIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__RemoveIPAddressFilterResponse(struct soap *soap, _tds__RemoveIPAddressFilterResponse *p) -{ - if (::soap_read__tds__RemoveIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__RemoveIPAddressFilter_DEFINED -#define SOAP_TYPE__tds__RemoveIPAddressFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveIPAddressFilter(struct soap*, const char*, int, const _tds__RemoveIPAddressFilter *, const char*); -SOAP_FMAC3 _tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_in__tds__RemoveIPAddressFilter(struct soap*, const char*, _tds__RemoveIPAddressFilter *, const char*); -SOAP_FMAC1 _tds__RemoveIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__RemoveIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__RemoveIPAddressFilter * soap_new__tds__RemoveIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__RemoveIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline _tds__RemoveIPAddressFilter * soap_new_req__tds__RemoveIPAddressFilter( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__RemoveIPAddressFilter *_p = ::soap_new__tds__RemoveIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__RemoveIPAddressFilter::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline _tds__RemoveIPAddressFilter * soap_new_set__tds__RemoveIPAddressFilter( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__RemoveIPAddressFilter *_p = ::soap_new__tds__RemoveIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__RemoveIPAddressFilter::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline int soap_write__tds__RemoveIPAddressFilter(struct soap *soap, _tds__RemoveIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:RemoveIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilter 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, "tds:RemoveIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilter 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, "tds:RemoveIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilter 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, "tds:RemoveIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__RemoveIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_get__tds__RemoveIPAddressFilter(struct soap*, _tds__RemoveIPAddressFilter *, const char*, const char*); - -inline int soap_read__tds__RemoveIPAddressFilter(struct soap *soap, _tds__RemoveIPAddressFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__RemoveIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, _tds__RemoveIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__RemoveIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__RemoveIPAddressFilter(struct soap *soap, _tds__RemoveIPAddressFilter *p) -{ - if (::soap_read__tds__RemoveIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__AddIPAddressFilterResponse_DEFINED -#define SOAP_TYPE__tds__AddIPAddressFilterResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddIPAddressFilterResponse(struct soap*, const char*, int, const _tds__AddIPAddressFilterResponse *, const char*); -SOAP_FMAC3 _tds__AddIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__AddIPAddressFilterResponse(struct soap*, const char*, _tds__AddIPAddressFilterResponse *, const char*); -SOAP_FMAC1 _tds__AddIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__AddIPAddressFilterResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__AddIPAddressFilterResponse * soap_new__tds__AddIPAddressFilterResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__AddIPAddressFilterResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__AddIPAddressFilterResponse * soap_new_req__tds__AddIPAddressFilterResponse( - struct soap *soap) -{ - _tds__AddIPAddressFilterResponse *_p = ::soap_new__tds__AddIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__AddIPAddressFilterResponse * soap_new_set__tds__AddIPAddressFilterResponse( - struct soap *soap) -{ - _tds__AddIPAddressFilterResponse *_p = ::soap_new__tds__AddIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__AddIPAddressFilterResponse(struct soap *soap, _tds__AddIPAddressFilterResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:AddIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__AddIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__AddIPAddressFilterResponse 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, "tds:AddIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__AddIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__AddIPAddressFilterResponse 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, "tds:AddIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__AddIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__AddIPAddressFilterResponse 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, "tds:AddIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__AddIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__AddIPAddressFilterResponse(struct soap*, _tds__AddIPAddressFilterResponse *, const char*, const char*); - -inline int soap_read__tds__AddIPAddressFilterResponse(struct soap *soap, _tds__AddIPAddressFilterResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__AddIPAddressFilterResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__AddIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__AddIPAddressFilterResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__AddIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__AddIPAddressFilterResponse(struct soap *soap, _tds__AddIPAddressFilterResponse *p) -{ - if (::soap_read__tds__AddIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__AddIPAddressFilter_DEFINED -#define SOAP_TYPE__tds__AddIPAddressFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddIPAddressFilter(struct soap*, const char*, int, const _tds__AddIPAddressFilter *, const char*); -SOAP_FMAC3 _tds__AddIPAddressFilter * SOAP_FMAC4 soap_in__tds__AddIPAddressFilter(struct soap*, const char*, _tds__AddIPAddressFilter *, const char*); -SOAP_FMAC1 _tds__AddIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__AddIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__AddIPAddressFilter * soap_new__tds__AddIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__AddIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline _tds__AddIPAddressFilter * soap_new_req__tds__AddIPAddressFilter( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__AddIPAddressFilter *_p = ::soap_new__tds__AddIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__AddIPAddressFilter::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline _tds__AddIPAddressFilter * soap_new_set__tds__AddIPAddressFilter( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__AddIPAddressFilter *_p = ::soap_new__tds__AddIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__AddIPAddressFilter::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline int soap_write__tds__AddIPAddressFilter(struct soap *soap, _tds__AddIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:AddIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__AddIPAddressFilter(struct soap *soap, const char *URL, _tds__AddIPAddressFilter 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, "tds:AddIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__AddIPAddressFilter(struct soap *soap, const char *URL, _tds__AddIPAddressFilter 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, "tds:AddIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__AddIPAddressFilter(struct soap *soap, const char *URL, _tds__AddIPAddressFilter 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, "tds:AddIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__AddIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__AddIPAddressFilter * SOAP_FMAC4 soap_get__tds__AddIPAddressFilter(struct soap*, _tds__AddIPAddressFilter *, const char*, const char*); - -inline int soap_read__tds__AddIPAddressFilter(struct soap *soap, _tds__AddIPAddressFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__AddIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__AddIPAddressFilter(struct soap *soap, const char *URL, _tds__AddIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__AddIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__AddIPAddressFilter(struct soap *soap, _tds__AddIPAddressFilter *p) -{ - if (::soap_read__tds__AddIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetIPAddressFilterResponse_DEFINED -#define SOAP_TYPE__tds__SetIPAddressFilterResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetIPAddressFilterResponse(struct soap*, const char*, int, const _tds__SetIPAddressFilterResponse *, const char*); -SOAP_FMAC3 _tds__SetIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__SetIPAddressFilterResponse(struct soap*, const char*, _tds__SetIPAddressFilterResponse *, const char*); -SOAP_FMAC1 _tds__SetIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__SetIPAddressFilterResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetIPAddressFilterResponse * soap_new__tds__SetIPAddressFilterResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetIPAddressFilterResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetIPAddressFilterResponse * soap_new_req__tds__SetIPAddressFilterResponse( - struct soap *soap) -{ - _tds__SetIPAddressFilterResponse *_p = ::soap_new__tds__SetIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetIPAddressFilterResponse * soap_new_set__tds__SetIPAddressFilterResponse( - struct soap *soap) -{ - _tds__SetIPAddressFilterResponse *_p = ::soap_new__tds__SetIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetIPAddressFilterResponse(struct soap *soap, _tds__SetIPAddressFilterResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__SetIPAddressFilterResponse 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, "tds:SetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__SetIPAddressFilterResponse 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, "tds:SetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__SetIPAddressFilterResponse 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, "tds:SetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__SetIPAddressFilterResponse(struct soap*, _tds__SetIPAddressFilterResponse *, const char*, const char*); - -inline int soap_read__tds__SetIPAddressFilterResponse(struct soap *soap, _tds__SetIPAddressFilterResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetIPAddressFilterResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__SetIPAddressFilterResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetIPAddressFilterResponse(struct soap *soap, _tds__SetIPAddressFilterResponse *p) -{ - if (::soap_read__tds__SetIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetIPAddressFilter_DEFINED -#define SOAP_TYPE__tds__SetIPAddressFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetIPAddressFilter(struct soap*, const char*, int, const _tds__SetIPAddressFilter *, const char*); -SOAP_FMAC3 _tds__SetIPAddressFilter * SOAP_FMAC4 soap_in__tds__SetIPAddressFilter(struct soap*, const char*, _tds__SetIPAddressFilter *, const char*); -SOAP_FMAC1 _tds__SetIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__SetIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetIPAddressFilter * soap_new__tds__SetIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetIPAddressFilter * soap_new_req__tds__SetIPAddressFilter( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__SetIPAddressFilter *_p = ::soap_new__tds__SetIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetIPAddressFilter::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline _tds__SetIPAddressFilter * soap_new_set__tds__SetIPAddressFilter( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__SetIPAddressFilter *_p = ::soap_new__tds__SetIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetIPAddressFilter::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline int soap_write__tds__SetIPAddressFilter(struct soap *soap, _tds__SetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetIPAddressFilter(struct soap *soap, const char *URL, _tds__SetIPAddressFilter 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, "tds:SetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetIPAddressFilter(struct soap *soap, const char *URL, _tds__SetIPAddressFilter 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, "tds:SetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetIPAddressFilter(struct soap *soap, const char *URL, _tds__SetIPAddressFilter 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, "tds:SetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__SetIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetIPAddressFilter * SOAP_FMAC4 soap_get__tds__SetIPAddressFilter(struct soap*, _tds__SetIPAddressFilter *, const char*, const char*); - -inline int soap_read__tds__SetIPAddressFilter(struct soap *soap, _tds__SetIPAddressFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetIPAddressFilter(struct soap *soap, const char *URL, _tds__SetIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetIPAddressFilter(struct soap *soap, _tds__SetIPAddressFilter *p) -{ - if (::soap_read__tds__SetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetIPAddressFilterResponse_DEFINED -#define SOAP_TYPE__tds__GetIPAddressFilterResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetIPAddressFilterResponse(struct soap*, const char*, int, const _tds__GetIPAddressFilterResponse *, const char*); -SOAP_FMAC3 _tds__GetIPAddressFilterResponse * SOAP_FMAC4 soap_in__tds__GetIPAddressFilterResponse(struct soap*, const char*, _tds__GetIPAddressFilterResponse *, const char*); -SOAP_FMAC1 _tds__GetIPAddressFilterResponse * SOAP_FMAC2 soap_instantiate__tds__GetIPAddressFilterResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetIPAddressFilterResponse * soap_new__tds__GetIPAddressFilterResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetIPAddressFilterResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetIPAddressFilterResponse * soap_new_req__tds__GetIPAddressFilterResponse( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__GetIPAddressFilterResponse *_p = ::soap_new__tds__GetIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetIPAddressFilterResponse::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline _tds__GetIPAddressFilterResponse * soap_new_set__tds__GetIPAddressFilterResponse( - struct soap *soap, - tt__IPAddressFilter *IPAddressFilter) -{ - _tds__GetIPAddressFilterResponse *_p = ::soap_new__tds__GetIPAddressFilterResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetIPAddressFilterResponse::IPAddressFilter = IPAddressFilter; - } - return _p; -} - -inline int soap_write__tds__GetIPAddressFilterResponse(struct soap *soap, _tds__GetIPAddressFilterResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__GetIPAddressFilterResponse 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, "tds:GetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__GetIPAddressFilterResponse 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, "tds:GetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__GetIPAddressFilterResponse 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, "tds:GetIPAddressFilterResponse", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilterResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetIPAddressFilterResponse * SOAP_FMAC4 soap_get__tds__GetIPAddressFilterResponse(struct soap*, _tds__GetIPAddressFilterResponse *, const char*, const char*); - -inline int soap_read__tds__GetIPAddressFilterResponse(struct soap *soap, _tds__GetIPAddressFilterResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetIPAddressFilterResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetIPAddressFilterResponse(struct soap *soap, const char *URL, _tds__GetIPAddressFilterResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetIPAddressFilterResponse(struct soap *soap, _tds__GetIPAddressFilterResponse *p) -{ - if (::soap_read__tds__GetIPAddressFilterResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetIPAddressFilter_DEFINED -#define SOAP_TYPE__tds__GetIPAddressFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetIPAddressFilter(struct soap*, const char*, int, const _tds__GetIPAddressFilter *, const char*); -SOAP_FMAC3 _tds__GetIPAddressFilter * SOAP_FMAC4 soap_in__tds__GetIPAddressFilter(struct soap*, const char*, _tds__GetIPAddressFilter *, const char*); -SOAP_FMAC1 _tds__GetIPAddressFilter * SOAP_FMAC2 soap_instantiate__tds__GetIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetIPAddressFilter * soap_new__tds__GetIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetIPAddressFilter * soap_new_req__tds__GetIPAddressFilter( - struct soap *soap) -{ - _tds__GetIPAddressFilter *_p = ::soap_new__tds__GetIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetIPAddressFilter * soap_new_set__tds__GetIPAddressFilter( - struct soap *soap) -{ - _tds__GetIPAddressFilter *_p = ::soap_new__tds__GetIPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetIPAddressFilter(struct soap *soap, _tds__GetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetIPAddressFilter(struct soap *soap, const char *URL, _tds__GetIPAddressFilter 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, "tds:GetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetIPAddressFilter(struct soap *soap, const char *URL, _tds__GetIPAddressFilter 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, "tds:GetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetIPAddressFilter(struct soap *soap, const char *URL, _tds__GetIPAddressFilter 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, "tds:GetIPAddressFilter", p->soap_type() == SOAP_TYPE__tds__GetIPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetIPAddressFilter * SOAP_FMAC4 soap_get__tds__GetIPAddressFilter(struct soap*, _tds__GetIPAddressFilter *, const char*, const char*); - -inline int soap_read__tds__GetIPAddressFilter(struct soap *soap, _tds__GetIPAddressFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetIPAddressFilter(struct soap *soap, const char *URL, _tds__GetIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetIPAddressFilter(struct soap *soap, _tds__GetIPAddressFilter *p) -{ - if (::soap_read__tds__GetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetZeroConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__SetZeroConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetZeroConfigurationResponse(struct soap*, const char*, int, const _tds__SetZeroConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__SetZeroConfigurationResponse * SOAP_FMAC4 soap_in__tds__SetZeroConfigurationResponse(struct soap*, const char*, _tds__SetZeroConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__SetZeroConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__SetZeroConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetZeroConfigurationResponse * soap_new__tds__SetZeroConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetZeroConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetZeroConfigurationResponse * soap_new_req__tds__SetZeroConfigurationResponse( - struct soap *soap) -{ - _tds__SetZeroConfigurationResponse *_p = ::soap_new__tds__SetZeroConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetZeroConfigurationResponse * soap_new_set__tds__SetZeroConfigurationResponse( - struct soap *soap) -{ - _tds__SetZeroConfigurationResponse *_p = ::soap_new__tds__SetZeroConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetZeroConfigurationResponse(struct soap *soap, _tds__SetZeroConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__SetZeroConfigurationResponse 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, "tds:SetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__SetZeroConfigurationResponse 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, "tds:SetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__SetZeroConfigurationResponse 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, "tds:SetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__SetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetZeroConfigurationResponse * SOAP_FMAC4 soap_get__tds__SetZeroConfigurationResponse(struct soap*, _tds__SetZeroConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__SetZeroConfigurationResponse(struct soap *soap, _tds__SetZeroConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetZeroConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__SetZeroConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetZeroConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetZeroConfigurationResponse(struct soap *soap, _tds__SetZeroConfigurationResponse *p) -{ - if (::soap_read__tds__SetZeroConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetZeroConfiguration_DEFINED -#define SOAP_TYPE__tds__SetZeroConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetZeroConfiguration(struct soap*, const char*, int, const _tds__SetZeroConfiguration *, const char*); -SOAP_FMAC3 _tds__SetZeroConfiguration * SOAP_FMAC4 soap_in__tds__SetZeroConfiguration(struct soap*, const char*, _tds__SetZeroConfiguration *, const char*); -SOAP_FMAC1 _tds__SetZeroConfiguration * SOAP_FMAC2 soap_instantiate__tds__SetZeroConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetZeroConfiguration * soap_new__tds__SetZeroConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetZeroConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetZeroConfiguration * soap_new_req__tds__SetZeroConfiguration( - struct soap *soap, - const std::string& InterfaceToken, - bool Enabled) -{ - _tds__SetZeroConfiguration *_p = ::soap_new__tds__SetZeroConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetZeroConfiguration::InterfaceToken = InterfaceToken; - _p->_tds__SetZeroConfiguration::Enabled = Enabled; - } - return _p; -} - -inline _tds__SetZeroConfiguration * soap_new_set__tds__SetZeroConfiguration( - struct soap *soap, - const std::string& InterfaceToken, - bool Enabled) -{ - _tds__SetZeroConfiguration *_p = ::soap_new__tds__SetZeroConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetZeroConfiguration::InterfaceToken = InterfaceToken; - _p->_tds__SetZeroConfiguration::Enabled = Enabled; - } - return _p; -} - -inline int soap_write__tds__SetZeroConfiguration(struct soap *soap, _tds__SetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__SetZeroConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetZeroConfiguration(struct soap *soap, const char *URL, _tds__SetZeroConfiguration 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, "tds:SetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__SetZeroConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetZeroConfiguration(struct soap *soap, const char *URL, _tds__SetZeroConfiguration 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, "tds:SetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__SetZeroConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetZeroConfiguration(struct soap *soap, const char *URL, _tds__SetZeroConfiguration 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, "tds:SetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__SetZeroConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetZeroConfiguration * SOAP_FMAC4 soap_get__tds__SetZeroConfiguration(struct soap*, _tds__SetZeroConfiguration *, const char*, const char*); - -inline int soap_read__tds__SetZeroConfiguration(struct soap *soap, _tds__SetZeroConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetZeroConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetZeroConfiguration(struct soap *soap, const char *URL, _tds__SetZeroConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetZeroConfiguration(struct soap *soap, _tds__SetZeroConfiguration *p) -{ - if (::soap_read__tds__SetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetZeroConfigurationResponse_DEFINED -#define SOAP_TYPE__tds__GetZeroConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetZeroConfigurationResponse(struct soap*, const char*, int, const _tds__GetZeroConfigurationResponse *, const char*); -SOAP_FMAC3 _tds__GetZeroConfigurationResponse * SOAP_FMAC4 soap_in__tds__GetZeroConfigurationResponse(struct soap*, const char*, _tds__GetZeroConfigurationResponse *, const char*); -SOAP_FMAC1 _tds__GetZeroConfigurationResponse * SOAP_FMAC2 soap_instantiate__tds__GetZeroConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetZeroConfigurationResponse * soap_new__tds__GetZeroConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetZeroConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetZeroConfigurationResponse * soap_new_req__tds__GetZeroConfigurationResponse( - struct soap *soap, - tt__NetworkZeroConfiguration *ZeroConfiguration) -{ - _tds__GetZeroConfigurationResponse *_p = ::soap_new__tds__GetZeroConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetZeroConfigurationResponse::ZeroConfiguration = ZeroConfiguration; - } - return _p; -} - -inline _tds__GetZeroConfigurationResponse * soap_new_set__tds__GetZeroConfigurationResponse( - struct soap *soap, - tt__NetworkZeroConfiguration *ZeroConfiguration) -{ - _tds__GetZeroConfigurationResponse *_p = ::soap_new__tds__GetZeroConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetZeroConfigurationResponse::ZeroConfiguration = ZeroConfiguration; - } - return _p; -} - -inline int soap_write__tds__GetZeroConfigurationResponse(struct soap *soap, _tds__GetZeroConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__GetZeroConfigurationResponse 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, "tds:GetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__GetZeroConfigurationResponse 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, "tds:GetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__GetZeroConfigurationResponse 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, "tds:GetZeroConfigurationResponse", p->soap_type() == SOAP_TYPE__tds__GetZeroConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetZeroConfigurationResponse * SOAP_FMAC4 soap_get__tds__GetZeroConfigurationResponse(struct soap*, _tds__GetZeroConfigurationResponse *, const char*, const char*); - -inline int soap_read__tds__GetZeroConfigurationResponse(struct soap *soap, _tds__GetZeroConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetZeroConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetZeroConfigurationResponse(struct soap *soap, const char *URL, _tds__GetZeroConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetZeroConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetZeroConfigurationResponse(struct soap *soap, _tds__GetZeroConfigurationResponse *p) -{ - if (::soap_read__tds__GetZeroConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetZeroConfiguration_DEFINED -#define SOAP_TYPE__tds__GetZeroConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetZeroConfiguration(struct soap*, const char*, int, const _tds__GetZeroConfiguration *, const char*); -SOAP_FMAC3 _tds__GetZeroConfiguration * SOAP_FMAC4 soap_in__tds__GetZeroConfiguration(struct soap*, const char*, _tds__GetZeroConfiguration *, const char*); -SOAP_FMAC1 _tds__GetZeroConfiguration * SOAP_FMAC2 soap_instantiate__tds__GetZeroConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetZeroConfiguration * soap_new__tds__GetZeroConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetZeroConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetZeroConfiguration * soap_new_req__tds__GetZeroConfiguration( - struct soap *soap) -{ - _tds__GetZeroConfiguration *_p = ::soap_new__tds__GetZeroConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetZeroConfiguration * soap_new_set__tds__GetZeroConfiguration( - struct soap *soap) -{ - _tds__GetZeroConfiguration *_p = ::soap_new__tds__GetZeroConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetZeroConfiguration(struct soap *soap, _tds__GetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__GetZeroConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetZeroConfiguration(struct soap *soap, const char *URL, _tds__GetZeroConfiguration 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, "tds:GetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__GetZeroConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetZeroConfiguration(struct soap *soap, const char *URL, _tds__GetZeroConfiguration 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, "tds:GetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__GetZeroConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetZeroConfiguration(struct soap *soap, const char *URL, _tds__GetZeroConfiguration 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, "tds:GetZeroConfiguration", p->soap_type() == SOAP_TYPE__tds__GetZeroConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetZeroConfiguration * SOAP_FMAC4 soap_get__tds__GetZeroConfiguration(struct soap*, _tds__GetZeroConfiguration *, const char*, const char*); - -inline int soap_read__tds__GetZeroConfiguration(struct soap *soap, _tds__GetZeroConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetZeroConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetZeroConfiguration(struct soap *soap, const char *URL, _tds__GetZeroConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetZeroConfiguration(struct soap *soap, _tds__GetZeroConfiguration *p) -{ - if (::soap_read__tds__GetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse_DEFINED -#define SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkDefaultGatewayResponse(struct soap*, const char*, int, const _tds__SetNetworkDefaultGatewayResponse *, const char*); -SOAP_FMAC3 _tds__SetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_in__tds__SetNetworkDefaultGatewayResponse(struct soap*, const char*, _tds__SetNetworkDefaultGatewayResponse *, const char*); -SOAP_FMAC1 _tds__SetNetworkDefaultGatewayResponse * SOAP_FMAC2 soap_instantiate__tds__SetNetworkDefaultGatewayResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNetworkDefaultGatewayResponse * soap_new__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNetworkDefaultGatewayResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNetworkDefaultGatewayResponse * soap_new_req__tds__SetNetworkDefaultGatewayResponse( - struct soap *soap) -{ - _tds__SetNetworkDefaultGatewayResponse *_p = ::soap_new__tds__SetNetworkDefaultGatewayResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetNetworkDefaultGatewayResponse * soap_new_set__tds__SetNetworkDefaultGatewayResponse( - struct soap *soap) -{ - _tds__SetNetworkDefaultGatewayResponse *_p = ::soap_new__tds__SetNetworkDefaultGatewayResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, _tds__SetNetworkDefaultGatewayResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGatewayResponse 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, "tds:SetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGatewayResponse 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, "tds:SetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGatewayResponse 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, "tds:SetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_get__tds__SetNetworkDefaultGatewayResponse(struct soap*, _tds__SetNetworkDefaultGatewayResponse *, const char*, const char*); - -inline int soap_read__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, _tds__SetNetworkDefaultGatewayResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNetworkDefaultGatewayResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGatewayResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNetworkDefaultGatewayResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNetworkDefaultGatewayResponse(struct soap *soap, _tds__SetNetworkDefaultGatewayResponse *p) -{ - if (::soap_read__tds__SetNetworkDefaultGatewayResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNetworkDefaultGateway_DEFINED -#define SOAP_TYPE__tds__SetNetworkDefaultGateway_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkDefaultGateway(struct soap*, const char*, int, const _tds__SetNetworkDefaultGateway *, const char*); -SOAP_FMAC3 _tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_in__tds__SetNetworkDefaultGateway(struct soap*, const char*, _tds__SetNetworkDefaultGateway *, const char*); -SOAP_FMAC1 _tds__SetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate__tds__SetNetworkDefaultGateway(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNetworkDefaultGateway * soap_new__tds__SetNetworkDefaultGateway(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNetworkDefaultGateway(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNetworkDefaultGateway * soap_new_req__tds__SetNetworkDefaultGateway( - struct soap *soap) -{ - _tds__SetNetworkDefaultGateway *_p = ::soap_new__tds__SetNetworkDefaultGateway(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetNetworkDefaultGateway * soap_new_set__tds__SetNetworkDefaultGateway( - struct soap *soap, - const std::vector & IPv4Address, - const std::vector & IPv6Address) -{ - _tds__SetNetworkDefaultGateway *_p = ::soap_new__tds__SetNetworkDefaultGateway(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNetworkDefaultGateway::IPv4Address = IPv4Address; - _p->_tds__SetNetworkDefaultGateway::IPv6Address = IPv6Address; - } - return _p; -} - -inline int soap_write__tds__SetNetworkDefaultGateway(struct soap *soap, _tds__SetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGateway 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, "tds:SetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGateway 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, "tds:SetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGateway 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, "tds:SetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__SetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_get__tds__SetNetworkDefaultGateway(struct soap*, _tds__SetNetworkDefaultGateway *, const char*, const char*); - -inline int soap_read__tds__SetNetworkDefaultGateway(struct soap *soap, _tds__SetNetworkDefaultGateway *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNetworkDefaultGateway(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__SetNetworkDefaultGateway *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNetworkDefaultGateway(struct soap *soap, _tds__SetNetworkDefaultGateway *p) -{ - if (::soap_read__tds__SetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse_DEFINED -#define SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkDefaultGatewayResponse(struct soap*, const char*, int, const _tds__GetNetworkDefaultGatewayResponse *, const char*); -SOAP_FMAC3 _tds__GetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_in__tds__GetNetworkDefaultGatewayResponse(struct soap*, const char*, _tds__GetNetworkDefaultGatewayResponse *, const char*); -SOAP_FMAC1 _tds__GetNetworkDefaultGatewayResponse * SOAP_FMAC2 soap_instantiate__tds__GetNetworkDefaultGatewayResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNetworkDefaultGatewayResponse * soap_new__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNetworkDefaultGatewayResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNetworkDefaultGatewayResponse * soap_new_req__tds__GetNetworkDefaultGatewayResponse( - struct soap *soap, - tt__NetworkGateway *NetworkGateway) -{ - _tds__GetNetworkDefaultGatewayResponse *_p = ::soap_new__tds__GetNetworkDefaultGatewayResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway = NetworkGateway; - } - return _p; -} - -inline _tds__GetNetworkDefaultGatewayResponse * soap_new_set__tds__GetNetworkDefaultGatewayResponse( - struct soap *soap, - tt__NetworkGateway *NetworkGateway) -{ - _tds__GetNetworkDefaultGatewayResponse *_p = ::soap_new__tds__GetNetworkDefaultGatewayResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetNetworkDefaultGatewayResponse::NetworkGateway = NetworkGateway; - } - return _p; -} - -inline int soap_write__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, _tds__GetNetworkDefaultGatewayResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGatewayResponse 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, "tds:GetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGatewayResponse 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, "tds:GetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGatewayResponse 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, "tds:GetNetworkDefaultGatewayResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGatewayResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNetworkDefaultGatewayResponse * SOAP_FMAC4 soap_get__tds__GetNetworkDefaultGatewayResponse(struct soap*, _tds__GetNetworkDefaultGatewayResponse *, const char*, const char*); - -inline int soap_read__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, _tds__GetNetworkDefaultGatewayResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNetworkDefaultGatewayResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGatewayResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNetworkDefaultGatewayResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNetworkDefaultGatewayResponse(struct soap *soap, _tds__GetNetworkDefaultGatewayResponse *p) -{ - if (::soap_read__tds__GetNetworkDefaultGatewayResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNetworkDefaultGateway_DEFINED -#define SOAP_TYPE__tds__GetNetworkDefaultGateway_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkDefaultGateway(struct soap*, const char*, int, const _tds__GetNetworkDefaultGateway *, const char*); -SOAP_FMAC3 _tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_in__tds__GetNetworkDefaultGateway(struct soap*, const char*, _tds__GetNetworkDefaultGateway *, const char*); -SOAP_FMAC1 _tds__GetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate__tds__GetNetworkDefaultGateway(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNetworkDefaultGateway * soap_new__tds__GetNetworkDefaultGateway(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNetworkDefaultGateway(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNetworkDefaultGateway * soap_new_req__tds__GetNetworkDefaultGateway( - struct soap *soap) -{ - _tds__GetNetworkDefaultGateway *_p = ::soap_new__tds__GetNetworkDefaultGateway(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetNetworkDefaultGateway * soap_new_set__tds__GetNetworkDefaultGateway( - struct soap *soap) -{ - _tds__GetNetworkDefaultGateway *_p = ::soap_new__tds__GetNetworkDefaultGateway(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetNetworkDefaultGateway(struct soap *soap, _tds__GetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGateway 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, "tds:GetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGateway 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, "tds:GetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGateway 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, "tds:GetNetworkDefaultGateway", p->soap_type() == SOAP_TYPE__tds__GetNetworkDefaultGateway ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_get__tds__GetNetworkDefaultGateway(struct soap*, _tds__GetNetworkDefaultGateway *, const char*, const char*); - -inline int soap_read__tds__GetNetworkDefaultGateway(struct soap *soap, _tds__GetNetworkDefaultGateway *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNetworkDefaultGateway(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, _tds__GetNetworkDefaultGateway *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNetworkDefaultGateway(struct soap *soap, _tds__GetNetworkDefaultGateway *p) -{ - if (::soap_read__tds__GetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNetworkProtocolsResponse_DEFINED -#define SOAP_TYPE__tds__SetNetworkProtocolsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkProtocolsResponse(struct soap*, const char*, int, const _tds__SetNetworkProtocolsResponse *, const char*); -SOAP_FMAC3 _tds__SetNetworkProtocolsResponse * SOAP_FMAC4 soap_in__tds__SetNetworkProtocolsResponse(struct soap*, const char*, _tds__SetNetworkProtocolsResponse *, const char*); -SOAP_FMAC1 _tds__SetNetworkProtocolsResponse * SOAP_FMAC2 soap_instantiate__tds__SetNetworkProtocolsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNetworkProtocolsResponse * soap_new__tds__SetNetworkProtocolsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNetworkProtocolsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNetworkProtocolsResponse * soap_new_req__tds__SetNetworkProtocolsResponse( - struct soap *soap) -{ - _tds__SetNetworkProtocolsResponse *_p = ::soap_new__tds__SetNetworkProtocolsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetNetworkProtocolsResponse * soap_new_set__tds__SetNetworkProtocolsResponse( - struct soap *soap) -{ - _tds__SetNetworkProtocolsResponse *_p = ::soap_new__tds__SetNetworkProtocolsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetNetworkProtocolsResponse(struct soap *soap, _tds__SetNetworkProtocolsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__SetNetworkProtocolsResponse 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, "tds:SetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__SetNetworkProtocolsResponse 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, "tds:SetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__SetNetworkProtocolsResponse 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, "tds:SetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNetworkProtocolsResponse * SOAP_FMAC4 soap_get__tds__SetNetworkProtocolsResponse(struct soap*, _tds__SetNetworkProtocolsResponse *, const char*, const char*); - -inline int soap_read__tds__SetNetworkProtocolsResponse(struct soap *soap, _tds__SetNetworkProtocolsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNetworkProtocolsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__SetNetworkProtocolsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNetworkProtocolsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNetworkProtocolsResponse(struct soap *soap, _tds__SetNetworkProtocolsResponse *p) -{ - if (::soap_read__tds__SetNetworkProtocolsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNetworkProtocols_DEFINED -#define SOAP_TYPE__tds__SetNetworkProtocols_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkProtocols(struct soap*, const char*, int, const _tds__SetNetworkProtocols *, const char*); -SOAP_FMAC3 _tds__SetNetworkProtocols * SOAP_FMAC4 soap_in__tds__SetNetworkProtocols(struct soap*, const char*, _tds__SetNetworkProtocols *, const char*); -SOAP_FMAC1 _tds__SetNetworkProtocols * SOAP_FMAC2 soap_instantiate__tds__SetNetworkProtocols(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNetworkProtocols * soap_new__tds__SetNetworkProtocols(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNetworkProtocols(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNetworkProtocols * soap_new_req__tds__SetNetworkProtocols( - struct soap *soap, - const std::vector & NetworkProtocols) -{ - _tds__SetNetworkProtocols *_p = ::soap_new__tds__SetNetworkProtocols(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNetworkProtocols::NetworkProtocols = NetworkProtocols; - } - return _p; -} - -inline _tds__SetNetworkProtocols * soap_new_set__tds__SetNetworkProtocols( - struct soap *soap, - const std::vector & NetworkProtocols) -{ - _tds__SetNetworkProtocols *_p = ::soap_new__tds__SetNetworkProtocols(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNetworkProtocols::NetworkProtocols = NetworkProtocols; - } - return _p; -} - -inline int soap_write__tds__SetNetworkProtocols(struct soap *soap, _tds__SetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocols ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNetworkProtocols(struct soap *soap, const char *URL, _tds__SetNetworkProtocols 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, "tds:SetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocols ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNetworkProtocols(struct soap *soap, const char *URL, _tds__SetNetworkProtocols 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, "tds:SetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocols ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNetworkProtocols(struct soap *soap, const char *URL, _tds__SetNetworkProtocols 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, "tds:SetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__SetNetworkProtocols ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNetworkProtocols * SOAP_FMAC4 soap_get__tds__SetNetworkProtocols(struct soap*, _tds__SetNetworkProtocols *, const char*, const char*); - -inline int soap_read__tds__SetNetworkProtocols(struct soap *soap, _tds__SetNetworkProtocols *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNetworkProtocols(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNetworkProtocols(struct soap *soap, const char *URL, _tds__SetNetworkProtocols *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNetworkProtocols(struct soap *soap, _tds__SetNetworkProtocols *p) -{ - if (::soap_read__tds__SetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNetworkProtocolsResponse_DEFINED -#define SOAP_TYPE__tds__GetNetworkProtocolsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkProtocolsResponse(struct soap*, const char*, int, const _tds__GetNetworkProtocolsResponse *, const char*); -SOAP_FMAC3 _tds__GetNetworkProtocolsResponse * SOAP_FMAC4 soap_in__tds__GetNetworkProtocolsResponse(struct soap*, const char*, _tds__GetNetworkProtocolsResponse *, const char*); -SOAP_FMAC1 _tds__GetNetworkProtocolsResponse * SOAP_FMAC2 soap_instantiate__tds__GetNetworkProtocolsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNetworkProtocolsResponse * soap_new__tds__GetNetworkProtocolsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNetworkProtocolsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNetworkProtocolsResponse * soap_new_req__tds__GetNetworkProtocolsResponse( - struct soap *soap) -{ - _tds__GetNetworkProtocolsResponse *_p = ::soap_new__tds__GetNetworkProtocolsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetNetworkProtocolsResponse * soap_new_set__tds__GetNetworkProtocolsResponse( - struct soap *soap, - const std::vector & NetworkProtocols) -{ - _tds__GetNetworkProtocolsResponse *_p = ::soap_new__tds__GetNetworkProtocolsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetNetworkProtocolsResponse::NetworkProtocols = NetworkProtocols; - } - return _p; -} - -inline int soap_write__tds__GetNetworkProtocolsResponse(struct soap *soap, _tds__GetNetworkProtocolsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__GetNetworkProtocolsResponse 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, "tds:GetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__GetNetworkProtocolsResponse 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, "tds:GetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__GetNetworkProtocolsResponse 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, "tds:GetNetworkProtocolsResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocolsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNetworkProtocolsResponse * SOAP_FMAC4 soap_get__tds__GetNetworkProtocolsResponse(struct soap*, _tds__GetNetworkProtocolsResponse *, const char*, const char*); - -inline int soap_read__tds__GetNetworkProtocolsResponse(struct soap *soap, _tds__GetNetworkProtocolsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNetworkProtocolsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNetworkProtocolsResponse(struct soap *soap, const char *URL, _tds__GetNetworkProtocolsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNetworkProtocolsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNetworkProtocolsResponse(struct soap *soap, _tds__GetNetworkProtocolsResponse *p) -{ - if (::soap_read__tds__GetNetworkProtocolsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNetworkProtocols_DEFINED -#define SOAP_TYPE__tds__GetNetworkProtocols_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkProtocols(struct soap*, const char*, int, const _tds__GetNetworkProtocols *, const char*); -SOAP_FMAC3 _tds__GetNetworkProtocols * SOAP_FMAC4 soap_in__tds__GetNetworkProtocols(struct soap*, const char*, _tds__GetNetworkProtocols *, const char*); -SOAP_FMAC1 _tds__GetNetworkProtocols * SOAP_FMAC2 soap_instantiate__tds__GetNetworkProtocols(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNetworkProtocols * soap_new__tds__GetNetworkProtocols(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNetworkProtocols(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNetworkProtocols * soap_new_req__tds__GetNetworkProtocols( - struct soap *soap) -{ - _tds__GetNetworkProtocols *_p = ::soap_new__tds__GetNetworkProtocols(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetNetworkProtocols * soap_new_set__tds__GetNetworkProtocols( - struct soap *soap) -{ - _tds__GetNetworkProtocols *_p = ::soap_new__tds__GetNetworkProtocols(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetNetworkProtocols(struct soap *soap, _tds__GetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocols ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNetworkProtocols(struct soap *soap, const char *URL, _tds__GetNetworkProtocols 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, "tds:GetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocols ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNetworkProtocols(struct soap *soap, const char *URL, _tds__GetNetworkProtocols 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, "tds:GetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocols ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNetworkProtocols(struct soap *soap, const char *URL, _tds__GetNetworkProtocols 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, "tds:GetNetworkProtocols", p->soap_type() == SOAP_TYPE__tds__GetNetworkProtocols ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNetworkProtocols * SOAP_FMAC4 soap_get__tds__GetNetworkProtocols(struct soap*, _tds__GetNetworkProtocols *, const char*, const char*); - -inline int soap_read__tds__GetNetworkProtocols(struct soap *soap, _tds__GetNetworkProtocols *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNetworkProtocols(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNetworkProtocols(struct soap *soap, const char *URL, _tds__GetNetworkProtocols *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNetworkProtocols(struct soap *soap, _tds__GetNetworkProtocols *p) -{ - if (::soap_read__tds__GetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNetworkInterfacesResponse_DEFINED -#define SOAP_TYPE__tds__SetNetworkInterfacesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkInterfacesResponse(struct soap*, const char*, int, const _tds__SetNetworkInterfacesResponse *, const char*); -SOAP_FMAC3 _tds__SetNetworkInterfacesResponse * SOAP_FMAC4 soap_in__tds__SetNetworkInterfacesResponse(struct soap*, const char*, _tds__SetNetworkInterfacesResponse *, const char*); -SOAP_FMAC1 _tds__SetNetworkInterfacesResponse * SOAP_FMAC2 soap_instantiate__tds__SetNetworkInterfacesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNetworkInterfacesResponse * soap_new__tds__SetNetworkInterfacesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNetworkInterfacesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNetworkInterfacesResponse * soap_new_req__tds__SetNetworkInterfacesResponse( - struct soap *soap, - bool RebootNeeded) -{ - _tds__SetNetworkInterfacesResponse *_p = ::soap_new__tds__SetNetworkInterfacesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNetworkInterfacesResponse::RebootNeeded = RebootNeeded; - } - return _p; -} - -inline _tds__SetNetworkInterfacesResponse * soap_new_set__tds__SetNetworkInterfacesResponse( - struct soap *soap, - bool RebootNeeded) -{ - _tds__SetNetworkInterfacesResponse *_p = ::soap_new__tds__SetNetworkInterfacesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNetworkInterfacesResponse::RebootNeeded = RebootNeeded; - } - return _p; -} - -inline int soap_write__tds__SetNetworkInterfacesResponse(struct soap *soap, _tds__SetNetworkInterfacesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__SetNetworkInterfacesResponse 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, "tds:SetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__SetNetworkInterfacesResponse 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, "tds:SetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__SetNetworkInterfacesResponse 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, "tds:SetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNetworkInterfacesResponse * SOAP_FMAC4 soap_get__tds__SetNetworkInterfacesResponse(struct soap*, _tds__SetNetworkInterfacesResponse *, const char*, const char*); - -inline int soap_read__tds__SetNetworkInterfacesResponse(struct soap *soap, _tds__SetNetworkInterfacesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNetworkInterfacesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__SetNetworkInterfacesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNetworkInterfacesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNetworkInterfacesResponse(struct soap *soap, _tds__SetNetworkInterfacesResponse *p) -{ - if (::soap_read__tds__SetNetworkInterfacesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNetworkInterfaces_DEFINED -#define SOAP_TYPE__tds__SetNetworkInterfaces_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNetworkInterfaces(struct soap*, const char*, int, const _tds__SetNetworkInterfaces *, const char*); -SOAP_FMAC3 _tds__SetNetworkInterfaces * SOAP_FMAC4 soap_in__tds__SetNetworkInterfaces(struct soap*, const char*, _tds__SetNetworkInterfaces *, const char*); -SOAP_FMAC1 _tds__SetNetworkInterfaces * SOAP_FMAC2 soap_instantiate__tds__SetNetworkInterfaces(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNetworkInterfaces * soap_new__tds__SetNetworkInterfaces(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNetworkInterfaces(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNetworkInterfaces * soap_new_req__tds__SetNetworkInterfaces( - struct soap *soap, - const std::string& InterfaceToken, - tt__NetworkInterfaceSetConfiguration *NetworkInterface) -{ - _tds__SetNetworkInterfaces *_p = ::soap_new__tds__SetNetworkInterfaces(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNetworkInterfaces::InterfaceToken = InterfaceToken; - _p->_tds__SetNetworkInterfaces::NetworkInterface = NetworkInterface; - } - return _p; -} - -inline _tds__SetNetworkInterfaces * soap_new_set__tds__SetNetworkInterfaces( - struct soap *soap, - const std::string& InterfaceToken, - tt__NetworkInterfaceSetConfiguration *NetworkInterface) -{ - _tds__SetNetworkInterfaces *_p = ::soap_new__tds__SetNetworkInterfaces(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNetworkInterfaces::InterfaceToken = InterfaceToken; - _p->_tds__SetNetworkInterfaces::NetworkInterface = NetworkInterface; - } - return _p; -} - -inline int soap_write__tds__SetNetworkInterfaces(struct soap *soap, _tds__SetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfaces ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNetworkInterfaces(struct soap *soap, const char *URL, _tds__SetNetworkInterfaces 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, "tds:SetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfaces ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNetworkInterfaces(struct soap *soap, const char *URL, _tds__SetNetworkInterfaces 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, "tds:SetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfaces ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNetworkInterfaces(struct soap *soap, const char *URL, _tds__SetNetworkInterfaces 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, "tds:SetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__SetNetworkInterfaces ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNetworkInterfaces * SOAP_FMAC4 soap_get__tds__SetNetworkInterfaces(struct soap*, _tds__SetNetworkInterfaces *, const char*, const char*); - -inline int soap_read__tds__SetNetworkInterfaces(struct soap *soap, _tds__SetNetworkInterfaces *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNetworkInterfaces(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNetworkInterfaces(struct soap *soap, const char *URL, _tds__SetNetworkInterfaces *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNetworkInterfaces(struct soap *soap, _tds__SetNetworkInterfaces *p) -{ - if (::soap_read__tds__SetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNetworkInterfacesResponse_DEFINED -#define SOAP_TYPE__tds__GetNetworkInterfacesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkInterfacesResponse(struct soap*, const char*, int, const _tds__GetNetworkInterfacesResponse *, const char*); -SOAP_FMAC3 _tds__GetNetworkInterfacesResponse * SOAP_FMAC4 soap_in__tds__GetNetworkInterfacesResponse(struct soap*, const char*, _tds__GetNetworkInterfacesResponse *, const char*); -SOAP_FMAC1 _tds__GetNetworkInterfacesResponse * SOAP_FMAC2 soap_instantiate__tds__GetNetworkInterfacesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNetworkInterfacesResponse * soap_new__tds__GetNetworkInterfacesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNetworkInterfacesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNetworkInterfacesResponse * soap_new_req__tds__GetNetworkInterfacesResponse( - struct soap *soap, - const std::vector & NetworkInterfaces) -{ - _tds__GetNetworkInterfacesResponse *_p = ::soap_new__tds__GetNetworkInterfacesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetNetworkInterfacesResponse::NetworkInterfaces = NetworkInterfaces; - } - return _p; -} - -inline _tds__GetNetworkInterfacesResponse * soap_new_set__tds__GetNetworkInterfacesResponse( - struct soap *soap, - const std::vector & NetworkInterfaces) -{ - _tds__GetNetworkInterfacesResponse *_p = ::soap_new__tds__GetNetworkInterfacesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetNetworkInterfacesResponse::NetworkInterfaces = NetworkInterfaces; - } - return _p; -} - -inline int soap_write__tds__GetNetworkInterfacesResponse(struct soap *soap, _tds__GetNetworkInterfacesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__GetNetworkInterfacesResponse 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, "tds:GetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__GetNetworkInterfacesResponse 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, "tds:GetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__GetNetworkInterfacesResponse 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, "tds:GetNetworkInterfacesResponse", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfacesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNetworkInterfacesResponse * SOAP_FMAC4 soap_get__tds__GetNetworkInterfacesResponse(struct soap*, _tds__GetNetworkInterfacesResponse *, const char*, const char*); - -inline int soap_read__tds__GetNetworkInterfacesResponse(struct soap *soap, _tds__GetNetworkInterfacesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNetworkInterfacesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNetworkInterfacesResponse(struct soap *soap, const char *URL, _tds__GetNetworkInterfacesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNetworkInterfacesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNetworkInterfacesResponse(struct soap *soap, _tds__GetNetworkInterfacesResponse *p) -{ - if (::soap_read__tds__GetNetworkInterfacesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNetworkInterfaces_DEFINED -#define SOAP_TYPE__tds__GetNetworkInterfaces_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNetworkInterfaces(struct soap*, const char*, int, const _tds__GetNetworkInterfaces *, const char*); -SOAP_FMAC3 _tds__GetNetworkInterfaces * SOAP_FMAC4 soap_in__tds__GetNetworkInterfaces(struct soap*, const char*, _tds__GetNetworkInterfaces *, const char*); -SOAP_FMAC1 _tds__GetNetworkInterfaces * SOAP_FMAC2 soap_instantiate__tds__GetNetworkInterfaces(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNetworkInterfaces * soap_new__tds__GetNetworkInterfaces(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNetworkInterfaces(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNetworkInterfaces * soap_new_req__tds__GetNetworkInterfaces( - struct soap *soap) -{ - _tds__GetNetworkInterfaces *_p = ::soap_new__tds__GetNetworkInterfaces(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetNetworkInterfaces * soap_new_set__tds__GetNetworkInterfaces( - struct soap *soap) -{ - _tds__GetNetworkInterfaces *_p = ::soap_new__tds__GetNetworkInterfaces(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetNetworkInterfaces(struct soap *soap, _tds__GetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfaces ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNetworkInterfaces(struct soap *soap, const char *URL, _tds__GetNetworkInterfaces 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, "tds:GetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfaces ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNetworkInterfaces(struct soap *soap, const char *URL, _tds__GetNetworkInterfaces 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, "tds:GetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfaces ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNetworkInterfaces(struct soap *soap, const char *URL, _tds__GetNetworkInterfaces 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, "tds:GetNetworkInterfaces", p->soap_type() == SOAP_TYPE__tds__GetNetworkInterfaces ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNetworkInterfaces * SOAP_FMAC4 soap_get__tds__GetNetworkInterfaces(struct soap*, _tds__GetNetworkInterfaces *, const char*, const char*); - -inline int soap_read__tds__GetNetworkInterfaces(struct soap *soap, _tds__GetNetworkInterfaces *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNetworkInterfaces(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNetworkInterfaces(struct soap *soap, const char *URL, _tds__GetNetworkInterfaces *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNetworkInterfaces(struct soap *soap, _tds__GetNetworkInterfaces *p) -{ - if (::soap_read__tds__GetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDynamicDNSResponse_DEFINED -#define SOAP_TYPE__tds__SetDynamicDNSResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDynamicDNSResponse(struct soap*, const char*, int, const _tds__SetDynamicDNSResponse *, const char*); -SOAP_FMAC3 _tds__SetDynamicDNSResponse * SOAP_FMAC4 soap_in__tds__SetDynamicDNSResponse(struct soap*, const char*, _tds__SetDynamicDNSResponse *, const char*); -SOAP_FMAC1 _tds__SetDynamicDNSResponse * SOAP_FMAC2 soap_instantiate__tds__SetDynamicDNSResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDynamicDNSResponse * soap_new__tds__SetDynamicDNSResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDynamicDNSResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDynamicDNSResponse * soap_new_req__tds__SetDynamicDNSResponse( - struct soap *soap) -{ - _tds__SetDynamicDNSResponse *_p = ::soap_new__tds__SetDynamicDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetDynamicDNSResponse * soap_new_set__tds__SetDynamicDNSResponse( - struct soap *soap) -{ - _tds__SetDynamicDNSResponse *_p = ::soap_new__tds__SetDynamicDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetDynamicDNSResponse(struct soap *soap, _tds__SetDynamicDNSResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__SetDynamicDNSResponse 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, "tds:SetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__SetDynamicDNSResponse 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, "tds:SetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__SetDynamicDNSResponse 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, "tds:SetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDynamicDNSResponse * SOAP_FMAC4 soap_get__tds__SetDynamicDNSResponse(struct soap*, _tds__SetDynamicDNSResponse *, const char*, const char*); - -inline int soap_read__tds__SetDynamicDNSResponse(struct soap *soap, _tds__SetDynamicDNSResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDynamicDNSResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__SetDynamicDNSResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDynamicDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDynamicDNSResponse(struct soap *soap, _tds__SetDynamicDNSResponse *p) -{ - if (::soap_read__tds__SetDynamicDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDynamicDNS_DEFINED -#define SOAP_TYPE__tds__SetDynamicDNS_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDynamicDNS(struct soap*, const char*, int, const _tds__SetDynamicDNS *, const char*); -SOAP_FMAC3 _tds__SetDynamicDNS * SOAP_FMAC4 soap_in__tds__SetDynamicDNS(struct soap*, const char*, _tds__SetDynamicDNS *, const char*); -SOAP_FMAC1 _tds__SetDynamicDNS * SOAP_FMAC2 soap_instantiate__tds__SetDynamicDNS(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDynamicDNS * soap_new__tds__SetDynamicDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDynamicDNS(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDynamicDNS * soap_new_req__tds__SetDynamicDNS( - struct soap *soap, - enum tt__DynamicDNSType Type) -{ - _tds__SetDynamicDNS *_p = ::soap_new__tds__SetDynamicDNS(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDynamicDNS::Type = Type; - } - return _p; -} - -inline _tds__SetDynamicDNS * soap_new_set__tds__SetDynamicDNS( - struct soap *soap, - enum tt__DynamicDNSType Type, - std::string *Name, - std::string *TTL) -{ - _tds__SetDynamicDNS *_p = ::soap_new__tds__SetDynamicDNS(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDynamicDNS::Type = Type; - _p->_tds__SetDynamicDNS::Name = Name; - _p->_tds__SetDynamicDNS::TTL = TTL; - } - return _p; -} - -inline int soap_write__tds__SetDynamicDNS(struct soap *soap, _tds__SetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNS ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDynamicDNS(struct soap *soap, const char *URL, _tds__SetDynamicDNS 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, "tds:SetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDynamicDNS(struct soap *soap, const char *URL, _tds__SetDynamicDNS 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, "tds:SetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDynamicDNS(struct soap *soap, const char *URL, _tds__SetDynamicDNS 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, "tds:SetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__SetDynamicDNS ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDynamicDNS * SOAP_FMAC4 soap_get__tds__SetDynamicDNS(struct soap*, _tds__SetDynamicDNS *, const char*, const char*); - -inline int soap_read__tds__SetDynamicDNS(struct soap *soap, _tds__SetDynamicDNS *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDynamicDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDynamicDNS(struct soap *soap, const char *URL, _tds__SetDynamicDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDynamicDNS(struct soap *soap, _tds__SetDynamicDNS *p) -{ - if (::soap_read__tds__SetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDynamicDNSResponse_DEFINED -#define SOAP_TYPE__tds__GetDynamicDNSResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDynamicDNSResponse(struct soap*, const char*, int, const _tds__GetDynamicDNSResponse *, const char*); -SOAP_FMAC3 _tds__GetDynamicDNSResponse * SOAP_FMAC4 soap_in__tds__GetDynamicDNSResponse(struct soap*, const char*, _tds__GetDynamicDNSResponse *, const char*); -SOAP_FMAC1 _tds__GetDynamicDNSResponse * SOAP_FMAC2 soap_instantiate__tds__GetDynamicDNSResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDynamicDNSResponse * soap_new__tds__GetDynamicDNSResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDynamicDNSResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDynamicDNSResponse * soap_new_req__tds__GetDynamicDNSResponse( - struct soap *soap, - tt__DynamicDNSInformation *DynamicDNSInformation) -{ - _tds__GetDynamicDNSResponse *_p = ::soap_new__tds__GetDynamicDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDynamicDNSResponse::DynamicDNSInformation = DynamicDNSInformation; - } - return _p; -} - -inline _tds__GetDynamicDNSResponse * soap_new_set__tds__GetDynamicDNSResponse( - struct soap *soap, - tt__DynamicDNSInformation *DynamicDNSInformation) -{ - _tds__GetDynamicDNSResponse *_p = ::soap_new__tds__GetDynamicDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDynamicDNSResponse::DynamicDNSInformation = DynamicDNSInformation; - } - return _p; -} - -inline int soap_write__tds__GetDynamicDNSResponse(struct soap *soap, _tds__GetDynamicDNSResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__GetDynamicDNSResponse 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, "tds:GetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__GetDynamicDNSResponse 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, "tds:GetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__GetDynamicDNSResponse 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, "tds:GetDynamicDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDynamicDNSResponse * SOAP_FMAC4 soap_get__tds__GetDynamicDNSResponse(struct soap*, _tds__GetDynamicDNSResponse *, const char*, const char*); - -inline int soap_read__tds__GetDynamicDNSResponse(struct soap *soap, _tds__GetDynamicDNSResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDynamicDNSResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDynamicDNSResponse(struct soap *soap, const char *URL, _tds__GetDynamicDNSResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDynamicDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDynamicDNSResponse(struct soap *soap, _tds__GetDynamicDNSResponse *p) -{ - if (::soap_read__tds__GetDynamicDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDynamicDNS_DEFINED -#define SOAP_TYPE__tds__GetDynamicDNS_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDynamicDNS(struct soap*, const char*, int, const _tds__GetDynamicDNS *, const char*); -SOAP_FMAC3 _tds__GetDynamicDNS * SOAP_FMAC4 soap_in__tds__GetDynamicDNS(struct soap*, const char*, _tds__GetDynamicDNS *, const char*); -SOAP_FMAC1 _tds__GetDynamicDNS * SOAP_FMAC2 soap_instantiate__tds__GetDynamicDNS(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDynamicDNS * soap_new__tds__GetDynamicDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDynamicDNS(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDynamicDNS * soap_new_req__tds__GetDynamicDNS( - struct soap *soap) -{ - _tds__GetDynamicDNS *_p = ::soap_new__tds__GetDynamicDNS(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDynamicDNS * soap_new_set__tds__GetDynamicDNS( - struct soap *soap) -{ - _tds__GetDynamicDNS *_p = ::soap_new__tds__GetDynamicDNS(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetDynamicDNS(struct soap *soap, _tds__GetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNS ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDynamicDNS(struct soap *soap, const char *URL, _tds__GetDynamicDNS 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, "tds:GetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDynamicDNS(struct soap *soap, const char *URL, _tds__GetDynamicDNS 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, "tds:GetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDynamicDNS(struct soap *soap, const char *URL, _tds__GetDynamicDNS 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, "tds:GetDynamicDNS", p->soap_type() == SOAP_TYPE__tds__GetDynamicDNS ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDynamicDNS * SOAP_FMAC4 soap_get__tds__GetDynamicDNS(struct soap*, _tds__GetDynamicDNS *, const char*, const char*); - -inline int soap_read__tds__GetDynamicDNS(struct soap *soap, _tds__GetDynamicDNS *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDynamicDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDynamicDNS(struct soap *soap, const char *URL, _tds__GetDynamicDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDynamicDNS(struct soap *soap, _tds__GetDynamicDNS *p) -{ - if (::soap_read__tds__GetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNTPResponse_DEFINED -#define SOAP_TYPE__tds__SetNTPResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNTPResponse(struct soap*, const char*, int, const _tds__SetNTPResponse *, const char*); -SOAP_FMAC3 _tds__SetNTPResponse * SOAP_FMAC4 soap_in__tds__SetNTPResponse(struct soap*, const char*, _tds__SetNTPResponse *, const char*); -SOAP_FMAC1 _tds__SetNTPResponse * SOAP_FMAC2 soap_instantiate__tds__SetNTPResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNTPResponse * soap_new__tds__SetNTPResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNTPResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNTPResponse * soap_new_req__tds__SetNTPResponse( - struct soap *soap) -{ - _tds__SetNTPResponse *_p = ::soap_new__tds__SetNTPResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetNTPResponse * soap_new_set__tds__SetNTPResponse( - struct soap *soap) -{ - _tds__SetNTPResponse *_p = ::soap_new__tds__SetNTPResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetNTPResponse(struct soap *soap, _tds__SetNTPResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNTPResponse", p->soap_type() == SOAP_TYPE__tds__SetNTPResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNTPResponse(struct soap *soap, const char *URL, _tds__SetNTPResponse 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, "tds:SetNTPResponse", p->soap_type() == SOAP_TYPE__tds__SetNTPResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNTPResponse(struct soap *soap, const char *URL, _tds__SetNTPResponse 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, "tds:SetNTPResponse", p->soap_type() == SOAP_TYPE__tds__SetNTPResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNTPResponse(struct soap *soap, const char *URL, _tds__SetNTPResponse 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, "tds:SetNTPResponse", p->soap_type() == SOAP_TYPE__tds__SetNTPResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNTPResponse * SOAP_FMAC4 soap_get__tds__SetNTPResponse(struct soap*, _tds__SetNTPResponse *, const char*, const char*); - -inline int soap_read__tds__SetNTPResponse(struct soap *soap, _tds__SetNTPResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNTPResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNTPResponse(struct soap *soap, const char *URL, _tds__SetNTPResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNTPResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNTPResponse(struct soap *soap, _tds__SetNTPResponse *p) -{ - if (::soap_read__tds__SetNTPResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetNTP_DEFINED -#define SOAP_TYPE__tds__SetNTP_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetNTP(struct soap*, const char*, int, const _tds__SetNTP *, const char*); -SOAP_FMAC3 _tds__SetNTP * SOAP_FMAC4 soap_in__tds__SetNTP(struct soap*, const char*, _tds__SetNTP *, const char*); -SOAP_FMAC1 _tds__SetNTP * SOAP_FMAC2 soap_instantiate__tds__SetNTP(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetNTP * soap_new__tds__SetNTP(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetNTP(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetNTP * soap_new_req__tds__SetNTP( - struct soap *soap, - bool FromDHCP) -{ - _tds__SetNTP *_p = ::soap_new__tds__SetNTP(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNTP::FromDHCP = FromDHCP; - } - return _p; -} - -inline _tds__SetNTP * soap_new_set__tds__SetNTP( - struct soap *soap, - bool FromDHCP, - const std::vector & NTPManual) -{ - _tds__SetNTP *_p = ::soap_new__tds__SetNTP(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetNTP::FromDHCP = FromDHCP; - _p->_tds__SetNTP::NTPManual = NTPManual; - } - return _p; -} - -inline int soap_write__tds__SetNTP(struct soap *soap, _tds__SetNTP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetNTP", p->soap_type() == SOAP_TYPE__tds__SetNTP ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetNTP(struct soap *soap, const char *URL, _tds__SetNTP 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, "tds:SetNTP", p->soap_type() == SOAP_TYPE__tds__SetNTP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetNTP(struct soap *soap, const char *URL, _tds__SetNTP 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, "tds:SetNTP", p->soap_type() == SOAP_TYPE__tds__SetNTP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetNTP(struct soap *soap, const char *URL, _tds__SetNTP 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, "tds:SetNTP", p->soap_type() == SOAP_TYPE__tds__SetNTP ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetNTP * SOAP_FMAC4 soap_get__tds__SetNTP(struct soap*, _tds__SetNTP *, const char*, const char*); - -inline int soap_read__tds__SetNTP(struct soap *soap, _tds__SetNTP *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetNTP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetNTP(struct soap *soap, const char *URL, _tds__SetNTP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetNTP(struct soap *soap, _tds__SetNTP *p) -{ - if (::soap_read__tds__SetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNTPResponse_DEFINED -#define SOAP_TYPE__tds__GetNTPResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNTPResponse(struct soap*, const char*, int, const _tds__GetNTPResponse *, const char*); -SOAP_FMAC3 _tds__GetNTPResponse * SOAP_FMAC4 soap_in__tds__GetNTPResponse(struct soap*, const char*, _tds__GetNTPResponse *, const char*); -SOAP_FMAC1 _tds__GetNTPResponse * SOAP_FMAC2 soap_instantiate__tds__GetNTPResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNTPResponse * soap_new__tds__GetNTPResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNTPResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNTPResponse * soap_new_req__tds__GetNTPResponse( - struct soap *soap, - tt__NTPInformation *NTPInformation) -{ - _tds__GetNTPResponse *_p = ::soap_new__tds__GetNTPResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetNTPResponse::NTPInformation = NTPInformation; - } - return _p; -} - -inline _tds__GetNTPResponse * soap_new_set__tds__GetNTPResponse( - struct soap *soap, - tt__NTPInformation *NTPInformation) -{ - _tds__GetNTPResponse *_p = ::soap_new__tds__GetNTPResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetNTPResponse::NTPInformation = NTPInformation; - } - return _p; -} - -inline int soap_write__tds__GetNTPResponse(struct soap *soap, _tds__GetNTPResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNTPResponse", p->soap_type() == SOAP_TYPE__tds__GetNTPResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNTPResponse(struct soap *soap, const char *URL, _tds__GetNTPResponse 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, "tds:GetNTPResponse", p->soap_type() == SOAP_TYPE__tds__GetNTPResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNTPResponse(struct soap *soap, const char *URL, _tds__GetNTPResponse 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, "tds:GetNTPResponse", p->soap_type() == SOAP_TYPE__tds__GetNTPResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNTPResponse(struct soap *soap, const char *URL, _tds__GetNTPResponse 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, "tds:GetNTPResponse", p->soap_type() == SOAP_TYPE__tds__GetNTPResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNTPResponse * SOAP_FMAC4 soap_get__tds__GetNTPResponse(struct soap*, _tds__GetNTPResponse *, const char*, const char*); - -inline int soap_read__tds__GetNTPResponse(struct soap *soap, _tds__GetNTPResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNTPResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNTPResponse(struct soap *soap, const char *URL, _tds__GetNTPResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNTPResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNTPResponse(struct soap *soap, _tds__GetNTPResponse *p) -{ - if (::soap_read__tds__GetNTPResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetNTP_DEFINED -#define SOAP_TYPE__tds__GetNTP_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetNTP(struct soap*, const char*, int, const _tds__GetNTP *, const char*); -SOAP_FMAC3 _tds__GetNTP * SOAP_FMAC4 soap_in__tds__GetNTP(struct soap*, const char*, _tds__GetNTP *, const char*); -SOAP_FMAC1 _tds__GetNTP * SOAP_FMAC2 soap_instantiate__tds__GetNTP(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetNTP * soap_new__tds__GetNTP(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetNTP(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetNTP * soap_new_req__tds__GetNTP( - struct soap *soap) -{ - _tds__GetNTP *_p = ::soap_new__tds__GetNTP(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetNTP * soap_new_set__tds__GetNTP( - struct soap *soap) -{ - _tds__GetNTP *_p = ::soap_new__tds__GetNTP(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetNTP(struct soap *soap, _tds__GetNTP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetNTP", p->soap_type() == SOAP_TYPE__tds__GetNTP ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetNTP(struct soap *soap, const char *URL, _tds__GetNTP 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, "tds:GetNTP", p->soap_type() == SOAP_TYPE__tds__GetNTP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetNTP(struct soap *soap, const char *URL, _tds__GetNTP 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, "tds:GetNTP", p->soap_type() == SOAP_TYPE__tds__GetNTP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetNTP(struct soap *soap, const char *URL, _tds__GetNTP 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, "tds:GetNTP", p->soap_type() == SOAP_TYPE__tds__GetNTP ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetNTP * SOAP_FMAC4 soap_get__tds__GetNTP(struct soap*, _tds__GetNTP *, const char*, const char*); - -inline int soap_read__tds__GetNTP(struct soap *soap, _tds__GetNTP *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetNTP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetNTP(struct soap *soap, const char *URL, _tds__GetNTP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetNTP(struct soap *soap, _tds__GetNTP *p) -{ - if (::soap_read__tds__GetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDNSResponse_DEFINED -#define SOAP_TYPE__tds__SetDNSResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDNSResponse(struct soap*, const char*, int, const _tds__SetDNSResponse *, const char*); -SOAP_FMAC3 _tds__SetDNSResponse * SOAP_FMAC4 soap_in__tds__SetDNSResponse(struct soap*, const char*, _tds__SetDNSResponse *, const char*); -SOAP_FMAC1 _tds__SetDNSResponse * SOAP_FMAC2 soap_instantiate__tds__SetDNSResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDNSResponse * soap_new__tds__SetDNSResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDNSResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDNSResponse * soap_new_req__tds__SetDNSResponse( - struct soap *soap) -{ - _tds__SetDNSResponse *_p = ::soap_new__tds__SetDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetDNSResponse * soap_new_set__tds__SetDNSResponse( - struct soap *soap) -{ - _tds__SetDNSResponse *_p = ::soap_new__tds__SetDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetDNSResponse(struct soap *soap, _tds__SetDNSResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDNSResponse(struct soap *soap, const char *URL, _tds__SetDNSResponse 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, "tds:SetDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDNSResponse(struct soap *soap, const char *URL, _tds__SetDNSResponse 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, "tds:SetDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDNSResponse(struct soap *soap, const char *URL, _tds__SetDNSResponse 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, "tds:SetDNSResponse", p->soap_type() == SOAP_TYPE__tds__SetDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDNSResponse * SOAP_FMAC4 soap_get__tds__SetDNSResponse(struct soap*, _tds__SetDNSResponse *, const char*, const char*); - -inline int soap_read__tds__SetDNSResponse(struct soap *soap, _tds__SetDNSResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDNSResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDNSResponse(struct soap *soap, const char *URL, _tds__SetDNSResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDNSResponse(struct soap *soap, _tds__SetDNSResponse *p) -{ - if (::soap_read__tds__SetDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDNS_DEFINED -#define SOAP_TYPE__tds__SetDNS_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDNS(struct soap*, const char*, int, const _tds__SetDNS *, const char*); -SOAP_FMAC3 _tds__SetDNS * SOAP_FMAC4 soap_in__tds__SetDNS(struct soap*, const char*, _tds__SetDNS *, const char*); -SOAP_FMAC1 _tds__SetDNS * SOAP_FMAC2 soap_instantiate__tds__SetDNS(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDNS * soap_new__tds__SetDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDNS(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDNS * soap_new_req__tds__SetDNS( - struct soap *soap, - bool FromDHCP) -{ - _tds__SetDNS *_p = ::soap_new__tds__SetDNS(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDNS::FromDHCP = FromDHCP; - } - return _p; -} - -inline _tds__SetDNS * soap_new_set__tds__SetDNS( - struct soap *soap, - bool FromDHCP, - const std::vector & SearchDomain, - const std::vector & DNSManual) -{ - _tds__SetDNS *_p = ::soap_new__tds__SetDNS(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDNS::FromDHCP = FromDHCP; - _p->_tds__SetDNS::SearchDomain = SearchDomain; - _p->_tds__SetDNS::DNSManual = DNSManual; - } - return _p; -} - -inline int soap_write__tds__SetDNS(struct soap *soap, _tds__SetDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDNS", p->soap_type() == SOAP_TYPE__tds__SetDNS ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDNS(struct soap *soap, const char *URL, _tds__SetDNS 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, "tds:SetDNS", p->soap_type() == SOAP_TYPE__tds__SetDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDNS(struct soap *soap, const char *URL, _tds__SetDNS 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, "tds:SetDNS", p->soap_type() == SOAP_TYPE__tds__SetDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDNS(struct soap *soap, const char *URL, _tds__SetDNS 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, "tds:SetDNS", p->soap_type() == SOAP_TYPE__tds__SetDNS ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDNS * SOAP_FMAC4 soap_get__tds__SetDNS(struct soap*, _tds__SetDNS *, const char*, const char*); - -inline int soap_read__tds__SetDNS(struct soap *soap, _tds__SetDNS *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDNS(struct soap *soap, const char *URL, _tds__SetDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDNS(struct soap *soap, _tds__SetDNS *p) -{ - if (::soap_read__tds__SetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDNSResponse_DEFINED -#define SOAP_TYPE__tds__GetDNSResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDNSResponse(struct soap*, const char*, int, const _tds__GetDNSResponse *, const char*); -SOAP_FMAC3 _tds__GetDNSResponse * SOAP_FMAC4 soap_in__tds__GetDNSResponse(struct soap*, const char*, _tds__GetDNSResponse *, const char*); -SOAP_FMAC1 _tds__GetDNSResponse * SOAP_FMAC2 soap_instantiate__tds__GetDNSResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDNSResponse * soap_new__tds__GetDNSResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDNSResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDNSResponse * soap_new_req__tds__GetDNSResponse( - struct soap *soap, - tt__DNSInformation *DNSInformation) -{ - _tds__GetDNSResponse *_p = ::soap_new__tds__GetDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDNSResponse::DNSInformation = DNSInformation; - } - return _p; -} - -inline _tds__GetDNSResponse * soap_new_set__tds__GetDNSResponse( - struct soap *soap, - tt__DNSInformation *DNSInformation) -{ - _tds__GetDNSResponse *_p = ::soap_new__tds__GetDNSResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDNSResponse::DNSInformation = DNSInformation; - } - return _p; -} - -inline int soap_write__tds__GetDNSResponse(struct soap *soap, _tds__GetDNSResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDNSResponse(struct soap *soap, const char *URL, _tds__GetDNSResponse 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, "tds:GetDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDNSResponse(struct soap *soap, const char *URL, _tds__GetDNSResponse 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, "tds:GetDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDNSResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDNSResponse(struct soap *soap, const char *URL, _tds__GetDNSResponse 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, "tds:GetDNSResponse", p->soap_type() == SOAP_TYPE__tds__GetDNSResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDNSResponse * SOAP_FMAC4 soap_get__tds__GetDNSResponse(struct soap*, _tds__GetDNSResponse *, const char*, const char*); - -inline int soap_read__tds__GetDNSResponse(struct soap *soap, _tds__GetDNSResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDNSResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDNSResponse(struct soap *soap, const char *URL, _tds__GetDNSResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDNSResponse(struct soap *soap, _tds__GetDNSResponse *p) -{ - if (::soap_read__tds__GetDNSResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDNS_DEFINED -#define SOAP_TYPE__tds__GetDNS_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDNS(struct soap*, const char*, int, const _tds__GetDNS *, const char*); -SOAP_FMAC3 _tds__GetDNS * SOAP_FMAC4 soap_in__tds__GetDNS(struct soap*, const char*, _tds__GetDNS *, const char*); -SOAP_FMAC1 _tds__GetDNS * SOAP_FMAC2 soap_instantiate__tds__GetDNS(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDNS * soap_new__tds__GetDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDNS(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDNS * soap_new_req__tds__GetDNS( - struct soap *soap) -{ - _tds__GetDNS *_p = ::soap_new__tds__GetDNS(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDNS * soap_new_set__tds__GetDNS( - struct soap *soap) -{ - _tds__GetDNS *_p = ::soap_new__tds__GetDNS(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetDNS(struct soap *soap, _tds__GetDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDNS", p->soap_type() == SOAP_TYPE__tds__GetDNS ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDNS(struct soap *soap, const char *URL, _tds__GetDNS 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, "tds:GetDNS", p->soap_type() == SOAP_TYPE__tds__GetDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDNS(struct soap *soap, const char *URL, _tds__GetDNS 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, "tds:GetDNS", p->soap_type() == SOAP_TYPE__tds__GetDNS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDNS(struct soap *soap, const char *URL, _tds__GetDNS 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, "tds:GetDNS", p->soap_type() == SOAP_TYPE__tds__GetDNS ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDNS * SOAP_FMAC4 soap_get__tds__GetDNS(struct soap*, _tds__GetDNS *, const char*, const char*); - -inline int soap_read__tds__GetDNS(struct soap *soap, _tds__GetDNS *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDNS(struct soap *soap, const char *URL, _tds__GetDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDNS(struct soap *soap, _tds__GetDNS *p) -{ - if (::soap_read__tds__GetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetHostnameFromDHCPResponse_DEFINED -#define SOAP_TYPE__tds__SetHostnameFromDHCPResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostnameFromDHCPResponse(struct soap*, const char*, int, const _tds__SetHostnameFromDHCPResponse *, const char*); -SOAP_FMAC3 _tds__SetHostnameFromDHCPResponse * SOAP_FMAC4 soap_in__tds__SetHostnameFromDHCPResponse(struct soap*, const char*, _tds__SetHostnameFromDHCPResponse *, const char*); -SOAP_FMAC1 _tds__SetHostnameFromDHCPResponse * SOAP_FMAC2 soap_instantiate__tds__SetHostnameFromDHCPResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetHostnameFromDHCPResponse * soap_new__tds__SetHostnameFromDHCPResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetHostnameFromDHCPResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetHostnameFromDHCPResponse * soap_new_req__tds__SetHostnameFromDHCPResponse( - struct soap *soap, - bool RebootNeeded) -{ - _tds__SetHostnameFromDHCPResponse *_p = ::soap_new__tds__SetHostnameFromDHCPResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetHostnameFromDHCPResponse::RebootNeeded = RebootNeeded; - } - return _p; -} - -inline _tds__SetHostnameFromDHCPResponse * soap_new_set__tds__SetHostnameFromDHCPResponse( - struct soap *soap, - bool RebootNeeded) -{ - _tds__SetHostnameFromDHCPResponse *_p = ::soap_new__tds__SetHostnameFromDHCPResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetHostnameFromDHCPResponse::RebootNeeded = RebootNeeded; - } - return _p; -} - -inline int soap_write__tds__SetHostnameFromDHCPResponse(struct soap *soap, _tds__SetHostnameFromDHCPResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetHostnameFromDHCPResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCPResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetHostnameFromDHCPResponse(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCPResponse 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, "tds:SetHostnameFromDHCPResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCPResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetHostnameFromDHCPResponse(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCPResponse 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, "tds:SetHostnameFromDHCPResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCPResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetHostnameFromDHCPResponse(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCPResponse 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, "tds:SetHostnameFromDHCPResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCPResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetHostnameFromDHCPResponse * SOAP_FMAC4 soap_get__tds__SetHostnameFromDHCPResponse(struct soap*, _tds__SetHostnameFromDHCPResponse *, const char*, const char*); - -inline int soap_read__tds__SetHostnameFromDHCPResponse(struct soap *soap, _tds__SetHostnameFromDHCPResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetHostnameFromDHCPResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetHostnameFromDHCPResponse(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCPResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetHostnameFromDHCPResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetHostnameFromDHCPResponse(struct soap *soap, _tds__SetHostnameFromDHCPResponse *p) -{ - if (::soap_read__tds__SetHostnameFromDHCPResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetHostnameFromDHCP_DEFINED -#define SOAP_TYPE__tds__SetHostnameFromDHCP_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostnameFromDHCP(struct soap*, const char*, int, const _tds__SetHostnameFromDHCP *, const char*); -SOAP_FMAC3 _tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_in__tds__SetHostnameFromDHCP(struct soap*, const char*, _tds__SetHostnameFromDHCP *, const char*); -SOAP_FMAC1 _tds__SetHostnameFromDHCP * SOAP_FMAC2 soap_instantiate__tds__SetHostnameFromDHCP(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetHostnameFromDHCP * soap_new__tds__SetHostnameFromDHCP(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetHostnameFromDHCP(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetHostnameFromDHCP * soap_new_req__tds__SetHostnameFromDHCP( - struct soap *soap, - bool FromDHCP) -{ - _tds__SetHostnameFromDHCP *_p = ::soap_new__tds__SetHostnameFromDHCP(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetHostnameFromDHCP::FromDHCP = FromDHCP; - } - return _p; -} - -inline _tds__SetHostnameFromDHCP * soap_new_set__tds__SetHostnameFromDHCP( - struct soap *soap, - bool FromDHCP) -{ - _tds__SetHostnameFromDHCP *_p = ::soap_new__tds__SetHostnameFromDHCP(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetHostnameFromDHCP::FromDHCP = FromDHCP; - } - return _p; -} - -inline int soap_write__tds__SetHostnameFromDHCP(struct soap *soap, _tds__SetHostnameFromDHCP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetHostnameFromDHCP", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCP ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCP 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, "tds:SetHostnameFromDHCP", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCP 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, "tds:SetHostnameFromDHCP", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCP 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, "tds:SetHostnameFromDHCP", p->soap_type() == SOAP_TYPE__tds__SetHostnameFromDHCP ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_get__tds__SetHostnameFromDHCP(struct soap*, _tds__SetHostnameFromDHCP *, const char*, const char*); - -inline int soap_read__tds__SetHostnameFromDHCP(struct soap *soap, _tds__SetHostnameFromDHCP *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetHostnameFromDHCP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, _tds__SetHostnameFromDHCP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetHostnameFromDHCP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetHostnameFromDHCP(struct soap *soap, _tds__SetHostnameFromDHCP *p) -{ - if (::soap_read__tds__SetHostnameFromDHCP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetHostnameResponse_DEFINED -#define SOAP_TYPE__tds__SetHostnameResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostnameResponse(struct soap*, const char*, int, const _tds__SetHostnameResponse *, const char*); -SOAP_FMAC3 _tds__SetHostnameResponse * SOAP_FMAC4 soap_in__tds__SetHostnameResponse(struct soap*, const char*, _tds__SetHostnameResponse *, const char*); -SOAP_FMAC1 _tds__SetHostnameResponse * SOAP_FMAC2 soap_instantiate__tds__SetHostnameResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetHostnameResponse * soap_new__tds__SetHostnameResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetHostnameResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetHostnameResponse * soap_new_req__tds__SetHostnameResponse( - struct soap *soap) -{ - _tds__SetHostnameResponse *_p = ::soap_new__tds__SetHostnameResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetHostnameResponse * soap_new_set__tds__SetHostnameResponse( - struct soap *soap) -{ - _tds__SetHostnameResponse *_p = ::soap_new__tds__SetHostnameResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetHostnameResponse(struct soap *soap, _tds__SetHostnameResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetHostnameResponse(struct soap *soap, const char *URL, _tds__SetHostnameResponse 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, "tds:SetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetHostnameResponse(struct soap *soap, const char *URL, _tds__SetHostnameResponse 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, "tds:SetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetHostnameResponse(struct soap *soap, const char *URL, _tds__SetHostnameResponse 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, "tds:SetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__SetHostnameResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetHostnameResponse * SOAP_FMAC4 soap_get__tds__SetHostnameResponse(struct soap*, _tds__SetHostnameResponse *, const char*, const char*); - -inline int soap_read__tds__SetHostnameResponse(struct soap *soap, _tds__SetHostnameResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetHostnameResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetHostnameResponse(struct soap *soap, const char *URL, _tds__SetHostnameResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetHostnameResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetHostnameResponse(struct soap *soap, _tds__SetHostnameResponse *p) -{ - if (::soap_read__tds__SetHostnameResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetHostname_DEFINED -#define SOAP_TYPE__tds__SetHostname_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetHostname(struct soap*, const char*, int, const _tds__SetHostname *, const char*); -SOAP_FMAC3 _tds__SetHostname * SOAP_FMAC4 soap_in__tds__SetHostname(struct soap*, const char*, _tds__SetHostname *, const char*); -SOAP_FMAC1 _tds__SetHostname * SOAP_FMAC2 soap_instantiate__tds__SetHostname(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetHostname * soap_new__tds__SetHostname(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetHostname(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetHostname * soap_new_req__tds__SetHostname( - struct soap *soap, - const std::string& Name) -{ - _tds__SetHostname *_p = ::soap_new__tds__SetHostname(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetHostname::Name = Name; - } - return _p; -} - -inline _tds__SetHostname * soap_new_set__tds__SetHostname( - struct soap *soap, - const std::string& Name) -{ - _tds__SetHostname *_p = ::soap_new__tds__SetHostname(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetHostname::Name = Name; - } - return _p; -} - -inline int soap_write__tds__SetHostname(struct soap *soap, _tds__SetHostname const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetHostname", p->soap_type() == SOAP_TYPE__tds__SetHostname ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetHostname(struct soap *soap, const char *URL, _tds__SetHostname 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, "tds:SetHostname", p->soap_type() == SOAP_TYPE__tds__SetHostname ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetHostname(struct soap *soap, const char *URL, _tds__SetHostname 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, "tds:SetHostname", p->soap_type() == SOAP_TYPE__tds__SetHostname ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetHostname(struct soap *soap, const char *URL, _tds__SetHostname 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, "tds:SetHostname", p->soap_type() == SOAP_TYPE__tds__SetHostname ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetHostname * SOAP_FMAC4 soap_get__tds__SetHostname(struct soap*, _tds__SetHostname *, const char*, const char*); - -inline int soap_read__tds__SetHostname(struct soap *soap, _tds__SetHostname *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetHostname(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetHostname(struct soap *soap, const char *URL, _tds__SetHostname *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetHostname(struct soap *soap, _tds__SetHostname *p) -{ - if (::soap_read__tds__SetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetHostnameResponse_DEFINED -#define SOAP_TYPE__tds__GetHostnameResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetHostnameResponse(struct soap*, const char*, int, const _tds__GetHostnameResponse *, const char*); -SOAP_FMAC3 _tds__GetHostnameResponse * SOAP_FMAC4 soap_in__tds__GetHostnameResponse(struct soap*, const char*, _tds__GetHostnameResponse *, const char*); -SOAP_FMAC1 _tds__GetHostnameResponse * SOAP_FMAC2 soap_instantiate__tds__GetHostnameResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetHostnameResponse * soap_new__tds__GetHostnameResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetHostnameResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetHostnameResponse * soap_new_req__tds__GetHostnameResponse( - struct soap *soap, - tt__HostnameInformation *HostnameInformation) -{ - _tds__GetHostnameResponse *_p = ::soap_new__tds__GetHostnameResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetHostnameResponse::HostnameInformation = HostnameInformation; - } - return _p; -} - -inline _tds__GetHostnameResponse * soap_new_set__tds__GetHostnameResponse( - struct soap *soap, - tt__HostnameInformation *HostnameInformation) -{ - _tds__GetHostnameResponse *_p = ::soap_new__tds__GetHostnameResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetHostnameResponse::HostnameInformation = HostnameInformation; - } - return _p; -} - -inline int soap_write__tds__GetHostnameResponse(struct soap *soap, _tds__GetHostnameResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__GetHostnameResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetHostnameResponse(struct soap *soap, const char *URL, _tds__GetHostnameResponse 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, "tds:GetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__GetHostnameResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetHostnameResponse(struct soap *soap, const char *URL, _tds__GetHostnameResponse 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, "tds:GetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__GetHostnameResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetHostnameResponse(struct soap *soap, const char *URL, _tds__GetHostnameResponse 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, "tds:GetHostnameResponse", p->soap_type() == SOAP_TYPE__tds__GetHostnameResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetHostnameResponse * SOAP_FMAC4 soap_get__tds__GetHostnameResponse(struct soap*, _tds__GetHostnameResponse *, const char*, const char*); - -inline int soap_read__tds__GetHostnameResponse(struct soap *soap, _tds__GetHostnameResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetHostnameResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetHostnameResponse(struct soap *soap, const char *URL, _tds__GetHostnameResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetHostnameResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetHostnameResponse(struct soap *soap, _tds__GetHostnameResponse *p) -{ - if (::soap_read__tds__GetHostnameResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetHostname_DEFINED -#define SOAP_TYPE__tds__GetHostname_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetHostname(struct soap*, const char*, int, const _tds__GetHostname *, const char*); -SOAP_FMAC3 _tds__GetHostname * SOAP_FMAC4 soap_in__tds__GetHostname(struct soap*, const char*, _tds__GetHostname *, const char*); -SOAP_FMAC1 _tds__GetHostname * SOAP_FMAC2 soap_instantiate__tds__GetHostname(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetHostname * soap_new__tds__GetHostname(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetHostname(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetHostname * soap_new_req__tds__GetHostname( - struct soap *soap) -{ - _tds__GetHostname *_p = ::soap_new__tds__GetHostname(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetHostname * soap_new_set__tds__GetHostname( - struct soap *soap) -{ - _tds__GetHostname *_p = ::soap_new__tds__GetHostname(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetHostname(struct soap *soap, _tds__GetHostname const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetHostname", p->soap_type() == SOAP_TYPE__tds__GetHostname ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetHostname(struct soap *soap, const char *URL, _tds__GetHostname 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, "tds:GetHostname", p->soap_type() == SOAP_TYPE__tds__GetHostname ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetHostname(struct soap *soap, const char *URL, _tds__GetHostname 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, "tds:GetHostname", p->soap_type() == SOAP_TYPE__tds__GetHostname ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetHostname(struct soap *soap, const char *URL, _tds__GetHostname 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, "tds:GetHostname", p->soap_type() == SOAP_TYPE__tds__GetHostname ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetHostname * SOAP_FMAC4 soap_get__tds__GetHostname(struct soap*, _tds__GetHostname *, const char*, const char*); - -inline int soap_read__tds__GetHostname(struct soap *soap, _tds__GetHostname *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetHostname(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetHostname(struct soap *soap, const char *URL, _tds__GetHostname *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetHostname(struct soap *soap, _tds__GetHostname *p) -{ - if (::soap_read__tds__GetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCapabilitiesResponse_DEFINED -#define SOAP_TYPE__tds__GetCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCapabilitiesResponse(struct soap*, const char*, int, const _tds__GetCapabilitiesResponse *, const char*); -SOAP_FMAC3 _tds__GetCapabilitiesResponse * SOAP_FMAC4 soap_in__tds__GetCapabilitiesResponse(struct soap*, const char*, _tds__GetCapabilitiesResponse *, const char*); -SOAP_FMAC1 _tds__GetCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tds__GetCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCapabilitiesResponse * soap_new__tds__GetCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCapabilitiesResponse * soap_new_req__tds__GetCapabilitiesResponse( - struct soap *soap, - tt__Capabilities *Capabilities) -{ - _tds__GetCapabilitiesResponse *_p = ::soap_new__tds__GetCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tds__GetCapabilitiesResponse * soap_new_set__tds__GetCapabilitiesResponse( - struct soap *soap, - tt__Capabilities *Capabilities) -{ - _tds__GetCapabilitiesResponse *_p = ::soap_new__tds__GetCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tds__GetCapabilitiesResponse(struct soap *soap, _tds__GetCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetCapabilitiesResponse 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, "tds:GetCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetCapabilitiesResponse 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, "tds:GetCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetCapabilitiesResponse 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, "tds:GetCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCapabilitiesResponse * SOAP_FMAC4 soap_get__tds__GetCapabilitiesResponse(struct soap*, _tds__GetCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tds__GetCapabilitiesResponse(struct soap *soap, _tds__GetCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCapabilitiesResponse(struct soap *soap, _tds__GetCapabilitiesResponse *p) -{ - if (::soap_read__tds__GetCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetCapabilities_DEFINED -#define SOAP_TYPE__tds__GetCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetCapabilities(struct soap*, const char*, int, const _tds__GetCapabilities *, const char*); -SOAP_FMAC3 _tds__GetCapabilities * SOAP_FMAC4 soap_in__tds__GetCapabilities(struct soap*, const char*, _tds__GetCapabilities *, const char*); -SOAP_FMAC1 _tds__GetCapabilities * SOAP_FMAC2 soap_instantiate__tds__GetCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetCapabilities * soap_new__tds__GetCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetCapabilities * soap_new_req__tds__GetCapabilities( - struct soap *soap) -{ - _tds__GetCapabilities *_p = ::soap_new__tds__GetCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetCapabilities * soap_new_set__tds__GetCapabilities( - struct soap *soap, - const std::vector & Category) -{ - _tds__GetCapabilities *_p = ::soap_new__tds__GetCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetCapabilities::Category = Category; - } - return _p; -} - -inline int soap_write__tds__GetCapabilities(struct soap *soap, _tds__GetCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetCapabilities", p->soap_type() == SOAP_TYPE__tds__GetCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetCapabilities(struct soap *soap, const char *URL, _tds__GetCapabilities 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, "tds:GetCapabilities", p->soap_type() == SOAP_TYPE__tds__GetCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetCapabilities(struct soap *soap, const char *URL, _tds__GetCapabilities 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, "tds:GetCapabilities", p->soap_type() == SOAP_TYPE__tds__GetCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetCapabilities(struct soap *soap, const char *URL, _tds__GetCapabilities 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, "tds:GetCapabilities", p->soap_type() == SOAP_TYPE__tds__GetCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetCapabilities * SOAP_FMAC4 soap_get__tds__GetCapabilities(struct soap*, _tds__GetCapabilities *, const char*, const char*); - -inline int soap_read__tds__GetCapabilities(struct soap *soap, _tds__GetCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetCapabilities(struct soap *soap, const char *URL, _tds__GetCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetCapabilities(struct soap *soap, _tds__GetCapabilities *p) -{ - if (::soap_read__tds__GetCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetWsdlUrlResponse_DEFINED -#define SOAP_TYPE__tds__GetWsdlUrlResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetWsdlUrlResponse(struct soap*, const char*, int, const _tds__GetWsdlUrlResponse *, const char*); -SOAP_FMAC3 _tds__GetWsdlUrlResponse * SOAP_FMAC4 soap_in__tds__GetWsdlUrlResponse(struct soap*, const char*, _tds__GetWsdlUrlResponse *, const char*); -SOAP_FMAC1 _tds__GetWsdlUrlResponse * SOAP_FMAC2 soap_instantiate__tds__GetWsdlUrlResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetWsdlUrlResponse * soap_new__tds__GetWsdlUrlResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetWsdlUrlResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetWsdlUrlResponse * soap_new_req__tds__GetWsdlUrlResponse( - struct soap *soap, - const std::string& WsdlUrl) -{ - _tds__GetWsdlUrlResponse *_p = ::soap_new__tds__GetWsdlUrlResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetWsdlUrlResponse::WsdlUrl = WsdlUrl; - } - return _p; -} - -inline _tds__GetWsdlUrlResponse * soap_new_set__tds__GetWsdlUrlResponse( - struct soap *soap, - const std::string& WsdlUrl) -{ - _tds__GetWsdlUrlResponse *_p = ::soap_new__tds__GetWsdlUrlResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetWsdlUrlResponse::WsdlUrl = WsdlUrl; - } - return _p; -} - -inline int soap_write__tds__GetWsdlUrlResponse(struct soap *soap, _tds__GetWsdlUrlResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetWsdlUrlResponse", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrlResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetWsdlUrlResponse(struct soap *soap, const char *URL, _tds__GetWsdlUrlResponse 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, "tds:GetWsdlUrlResponse", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrlResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetWsdlUrlResponse(struct soap *soap, const char *URL, _tds__GetWsdlUrlResponse 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, "tds:GetWsdlUrlResponse", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrlResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetWsdlUrlResponse(struct soap *soap, const char *URL, _tds__GetWsdlUrlResponse 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, "tds:GetWsdlUrlResponse", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrlResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetWsdlUrlResponse * SOAP_FMAC4 soap_get__tds__GetWsdlUrlResponse(struct soap*, _tds__GetWsdlUrlResponse *, const char*, const char*); - -inline int soap_read__tds__GetWsdlUrlResponse(struct soap *soap, _tds__GetWsdlUrlResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetWsdlUrlResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetWsdlUrlResponse(struct soap *soap, const char *URL, _tds__GetWsdlUrlResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetWsdlUrlResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetWsdlUrlResponse(struct soap *soap, _tds__GetWsdlUrlResponse *p) -{ - if (::soap_read__tds__GetWsdlUrlResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetWsdlUrl_DEFINED -#define SOAP_TYPE__tds__GetWsdlUrl_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetWsdlUrl(struct soap*, const char*, int, const _tds__GetWsdlUrl *, const char*); -SOAP_FMAC3 _tds__GetWsdlUrl * SOAP_FMAC4 soap_in__tds__GetWsdlUrl(struct soap*, const char*, _tds__GetWsdlUrl *, const char*); -SOAP_FMAC1 _tds__GetWsdlUrl * SOAP_FMAC2 soap_instantiate__tds__GetWsdlUrl(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetWsdlUrl * soap_new__tds__GetWsdlUrl(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetWsdlUrl(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetWsdlUrl * soap_new_req__tds__GetWsdlUrl( - struct soap *soap) -{ - _tds__GetWsdlUrl *_p = ::soap_new__tds__GetWsdlUrl(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetWsdlUrl * soap_new_set__tds__GetWsdlUrl( - struct soap *soap) -{ - _tds__GetWsdlUrl *_p = ::soap_new__tds__GetWsdlUrl(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetWsdlUrl(struct soap *soap, _tds__GetWsdlUrl const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetWsdlUrl", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrl ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetWsdlUrl(struct soap *soap, const char *URL, _tds__GetWsdlUrl 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, "tds:GetWsdlUrl", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrl ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetWsdlUrl(struct soap *soap, const char *URL, _tds__GetWsdlUrl 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, "tds:GetWsdlUrl", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrl ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetWsdlUrl(struct soap *soap, const char *URL, _tds__GetWsdlUrl 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, "tds:GetWsdlUrl", p->soap_type() == SOAP_TYPE__tds__GetWsdlUrl ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetWsdlUrl * SOAP_FMAC4 soap_get__tds__GetWsdlUrl(struct soap*, _tds__GetWsdlUrl *, const char*, const char*); - -inline int soap_read__tds__GetWsdlUrl(struct soap *soap, _tds__GetWsdlUrl *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetWsdlUrl(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetWsdlUrl(struct soap *soap, const char *URL, _tds__GetWsdlUrl *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetWsdlUrl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetWsdlUrl(struct soap *soap, _tds__GetWsdlUrl *p) -{ - if (::soap_read__tds__GetWsdlUrl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetUserResponse_DEFINED -#define SOAP_TYPE__tds__SetUserResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetUserResponse(struct soap*, const char*, int, const _tds__SetUserResponse *, const char*); -SOAP_FMAC3 _tds__SetUserResponse * SOAP_FMAC4 soap_in__tds__SetUserResponse(struct soap*, const char*, _tds__SetUserResponse *, const char*); -SOAP_FMAC1 _tds__SetUserResponse * SOAP_FMAC2 soap_instantiate__tds__SetUserResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetUserResponse * soap_new__tds__SetUserResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetUserResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetUserResponse * soap_new_req__tds__SetUserResponse( - struct soap *soap) -{ - _tds__SetUserResponse *_p = ::soap_new__tds__SetUserResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetUserResponse * soap_new_set__tds__SetUserResponse( - struct soap *soap) -{ - _tds__SetUserResponse *_p = ::soap_new__tds__SetUserResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetUserResponse(struct soap *soap, _tds__SetUserResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetUserResponse", p->soap_type() == SOAP_TYPE__tds__SetUserResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetUserResponse(struct soap *soap, const char *URL, _tds__SetUserResponse 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, "tds:SetUserResponse", p->soap_type() == SOAP_TYPE__tds__SetUserResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetUserResponse(struct soap *soap, const char *URL, _tds__SetUserResponse 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, "tds:SetUserResponse", p->soap_type() == SOAP_TYPE__tds__SetUserResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetUserResponse(struct soap *soap, const char *URL, _tds__SetUserResponse 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, "tds:SetUserResponse", p->soap_type() == SOAP_TYPE__tds__SetUserResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetUserResponse * SOAP_FMAC4 soap_get__tds__SetUserResponse(struct soap*, _tds__SetUserResponse *, const char*, const char*); - -inline int soap_read__tds__SetUserResponse(struct soap *soap, _tds__SetUserResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetUserResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetUserResponse(struct soap *soap, const char *URL, _tds__SetUserResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetUserResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetUserResponse(struct soap *soap, _tds__SetUserResponse *p) -{ - if (::soap_read__tds__SetUserResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetUser_DEFINED -#define SOAP_TYPE__tds__SetUser_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetUser(struct soap*, const char*, int, const _tds__SetUser *, const char*); -SOAP_FMAC3 _tds__SetUser * SOAP_FMAC4 soap_in__tds__SetUser(struct soap*, const char*, _tds__SetUser *, const char*); -SOAP_FMAC1 _tds__SetUser * SOAP_FMAC2 soap_instantiate__tds__SetUser(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetUser * soap_new__tds__SetUser(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetUser(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetUser * soap_new_req__tds__SetUser( - struct soap *soap, - const std::vector & User) -{ - _tds__SetUser *_p = ::soap_new__tds__SetUser(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetUser::User = User; - } - return _p; -} - -inline _tds__SetUser * soap_new_set__tds__SetUser( - struct soap *soap, - const std::vector & User) -{ - _tds__SetUser *_p = ::soap_new__tds__SetUser(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetUser::User = User; - } - return _p; -} - -inline int soap_write__tds__SetUser(struct soap *soap, _tds__SetUser const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetUser", p->soap_type() == SOAP_TYPE__tds__SetUser ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetUser(struct soap *soap, const char *URL, _tds__SetUser 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, "tds:SetUser", p->soap_type() == SOAP_TYPE__tds__SetUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetUser(struct soap *soap, const char *URL, _tds__SetUser 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, "tds:SetUser", p->soap_type() == SOAP_TYPE__tds__SetUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetUser(struct soap *soap, const char *URL, _tds__SetUser 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, "tds:SetUser", p->soap_type() == SOAP_TYPE__tds__SetUser ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetUser * SOAP_FMAC4 soap_get__tds__SetUser(struct soap*, _tds__SetUser *, const char*, const char*); - -inline int soap_read__tds__SetUser(struct soap *soap, _tds__SetUser *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetUser(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetUser(struct soap *soap, const char *URL, _tds__SetUser *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetUser(struct soap *soap, _tds__SetUser *p) -{ - if (::soap_read__tds__SetUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteUsersResponse_DEFINED -#define SOAP_TYPE__tds__DeleteUsersResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteUsersResponse(struct soap*, const char*, int, const _tds__DeleteUsersResponse *, const char*); -SOAP_FMAC3 _tds__DeleteUsersResponse * SOAP_FMAC4 soap_in__tds__DeleteUsersResponse(struct soap*, const char*, _tds__DeleteUsersResponse *, const char*); -SOAP_FMAC1 _tds__DeleteUsersResponse * SOAP_FMAC2 soap_instantiate__tds__DeleteUsersResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteUsersResponse * soap_new__tds__DeleteUsersResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteUsersResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteUsersResponse * soap_new_req__tds__DeleteUsersResponse( - struct soap *soap) -{ - _tds__DeleteUsersResponse *_p = ::soap_new__tds__DeleteUsersResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__DeleteUsersResponse * soap_new_set__tds__DeleteUsersResponse( - struct soap *soap) -{ - _tds__DeleteUsersResponse *_p = ::soap_new__tds__DeleteUsersResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__DeleteUsersResponse(struct soap *soap, _tds__DeleteUsersResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteUsersResponse", p->soap_type() == SOAP_TYPE__tds__DeleteUsersResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteUsersResponse(struct soap *soap, const char *URL, _tds__DeleteUsersResponse 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, "tds:DeleteUsersResponse", p->soap_type() == SOAP_TYPE__tds__DeleteUsersResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteUsersResponse(struct soap *soap, const char *URL, _tds__DeleteUsersResponse 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, "tds:DeleteUsersResponse", p->soap_type() == SOAP_TYPE__tds__DeleteUsersResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteUsersResponse(struct soap *soap, const char *URL, _tds__DeleteUsersResponse 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, "tds:DeleteUsersResponse", p->soap_type() == SOAP_TYPE__tds__DeleteUsersResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteUsersResponse * SOAP_FMAC4 soap_get__tds__DeleteUsersResponse(struct soap*, _tds__DeleteUsersResponse *, const char*, const char*); - -inline int soap_read__tds__DeleteUsersResponse(struct soap *soap, _tds__DeleteUsersResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteUsersResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteUsersResponse(struct soap *soap, const char *URL, _tds__DeleteUsersResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteUsersResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteUsersResponse(struct soap *soap, _tds__DeleteUsersResponse *p) -{ - if (::soap_read__tds__DeleteUsersResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__DeleteUsers_DEFINED -#define SOAP_TYPE__tds__DeleteUsers_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__DeleteUsers(struct soap*, const char*, int, const _tds__DeleteUsers *, const char*); -SOAP_FMAC3 _tds__DeleteUsers * SOAP_FMAC4 soap_in__tds__DeleteUsers(struct soap*, const char*, _tds__DeleteUsers *, const char*); -SOAP_FMAC1 _tds__DeleteUsers * SOAP_FMAC2 soap_instantiate__tds__DeleteUsers(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__DeleteUsers * soap_new__tds__DeleteUsers(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__DeleteUsers(soap, n, NULL, NULL, NULL); -} - -inline _tds__DeleteUsers * soap_new_req__tds__DeleteUsers( - struct soap *soap, - const std::vector & Username) -{ - _tds__DeleteUsers *_p = ::soap_new__tds__DeleteUsers(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteUsers::Username = Username; - } - return _p; -} - -inline _tds__DeleteUsers * soap_new_set__tds__DeleteUsers( - struct soap *soap, - const std::vector & Username) -{ - _tds__DeleteUsers *_p = ::soap_new__tds__DeleteUsers(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__DeleteUsers::Username = Username; - } - return _p; -} - -inline int soap_write__tds__DeleteUsers(struct soap *soap, _tds__DeleteUsers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeleteUsers", p->soap_type() == SOAP_TYPE__tds__DeleteUsers ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__DeleteUsers(struct soap *soap, const char *URL, _tds__DeleteUsers 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, "tds:DeleteUsers", p->soap_type() == SOAP_TYPE__tds__DeleteUsers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__DeleteUsers(struct soap *soap, const char *URL, _tds__DeleteUsers 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, "tds:DeleteUsers", p->soap_type() == SOAP_TYPE__tds__DeleteUsers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__DeleteUsers(struct soap *soap, const char *URL, _tds__DeleteUsers 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, "tds:DeleteUsers", p->soap_type() == SOAP_TYPE__tds__DeleteUsers ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__DeleteUsers * SOAP_FMAC4 soap_get__tds__DeleteUsers(struct soap*, _tds__DeleteUsers *, const char*, const char*); - -inline int soap_read__tds__DeleteUsers(struct soap *soap, _tds__DeleteUsers *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__DeleteUsers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__DeleteUsers(struct soap *soap, const char *URL, _tds__DeleteUsers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__DeleteUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__DeleteUsers(struct soap *soap, _tds__DeleteUsers *p) -{ - if (::soap_read__tds__DeleteUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateUsersResponse_DEFINED -#define SOAP_TYPE__tds__CreateUsersResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateUsersResponse(struct soap*, const char*, int, const _tds__CreateUsersResponse *, const char*); -SOAP_FMAC3 _tds__CreateUsersResponse * SOAP_FMAC4 soap_in__tds__CreateUsersResponse(struct soap*, const char*, _tds__CreateUsersResponse *, const char*); -SOAP_FMAC1 _tds__CreateUsersResponse * SOAP_FMAC2 soap_instantiate__tds__CreateUsersResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateUsersResponse * soap_new__tds__CreateUsersResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateUsersResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateUsersResponse * soap_new_req__tds__CreateUsersResponse( - struct soap *soap) -{ - _tds__CreateUsersResponse *_p = ::soap_new__tds__CreateUsersResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__CreateUsersResponse * soap_new_set__tds__CreateUsersResponse( - struct soap *soap) -{ - _tds__CreateUsersResponse *_p = ::soap_new__tds__CreateUsersResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__CreateUsersResponse(struct soap *soap, _tds__CreateUsersResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateUsersResponse", p->soap_type() == SOAP_TYPE__tds__CreateUsersResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateUsersResponse(struct soap *soap, const char *URL, _tds__CreateUsersResponse 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, "tds:CreateUsersResponse", p->soap_type() == SOAP_TYPE__tds__CreateUsersResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateUsersResponse(struct soap *soap, const char *URL, _tds__CreateUsersResponse 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, "tds:CreateUsersResponse", p->soap_type() == SOAP_TYPE__tds__CreateUsersResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateUsersResponse(struct soap *soap, const char *URL, _tds__CreateUsersResponse 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, "tds:CreateUsersResponse", p->soap_type() == SOAP_TYPE__tds__CreateUsersResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateUsersResponse * SOAP_FMAC4 soap_get__tds__CreateUsersResponse(struct soap*, _tds__CreateUsersResponse *, const char*, const char*); - -inline int soap_read__tds__CreateUsersResponse(struct soap *soap, _tds__CreateUsersResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateUsersResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateUsersResponse(struct soap *soap, const char *URL, _tds__CreateUsersResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateUsersResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateUsersResponse(struct soap *soap, _tds__CreateUsersResponse *p) -{ - if (::soap_read__tds__CreateUsersResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__CreateUsers_DEFINED -#define SOAP_TYPE__tds__CreateUsers_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__CreateUsers(struct soap*, const char*, int, const _tds__CreateUsers *, const char*); -SOAP_FMAC3 _tds__CreateUsers * SOAP_FMAC4 soap_in__tds__CreateUsers(struct soap*, const char*, _tds__CreateUsers *, const char*); -SOAP_FMAC1 _tds__CreateUsers * SOAP_FMAC2 soap_instantiate__tds__CreateUsers(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__CreateUsers * soap_new__tds__CreateUsers(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__CreateUsers(soap, n, NULL, NULL, NULL); -} - -inline _tds__CreateUsers * soap_new_req__tds__CreateUsers( - struct soap *soap, - const std::vector & User) -{ - _tds__CreateUsers *_p = ::soap_new__tds__CreateUsers(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateUsers::User = User; - } - return _p; -} - -inline _tds__CreateUsers * soap_new_set__tds__CreateUsers( - struct soap *soap, - const std::vector & User) -{ - _tds__CreateUsers *_p = ::soap_new__tds__CreateUsers(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__CreateUsers::User = User; - } - return _p; -} - -inline int soap_write__tds__CreateUsers(struct soap *soap, _tds__CreateUsers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:CreateUsers", p->soap_type() == SOAP_TYPE__tds__CreateUsers ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__CreateUsers(struct soap *soap, const char *URL, _tds__CreateUsers 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, "tds:CreateUsers", p->soap_type() == SOAP_TYPE__tds__CreateUsers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__CreateUsers(struct soap *soap, const char *URL, _tds__CreateUsers 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, "tds:CreateUsers", p->soap_type() == SOAP_TYPE__tds__CreateUsers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__CreateUsers(struct soap *soap, const char *URL, _tds__CreateUsers 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, "tds:CreateUsers", p->soap_type() == SOAP_TYPE__tds__CreateUsers ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__CreateUsers * SOAP_FMAC4 soap_get__tds__CreateUsers(struct soap*, _tds__CreateUsers *, const char*, const char*); - -inline int soap_read__tds__CreateUsers(struct soap *soap, _tds__CreateUsers *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__CreateUsers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__CreateUsers(struct soap *soap, const char *URL, _tds__CreateUsers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__CreateUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__CreateUsers(struct soap *soap, _tds__CreateUsers *p) -{ - if (::soap_read__tds__CreateUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetUsersResponse_DEFINED -#define SOAP_TYPE__tds__GetUsersResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetUsersResponse(struct soap*, const char*, int, const _tds__GetUsersResponse *, const char*); -SOAP_FMAC3 _tds__GetUsersResponse * SOAP_FMAC4 soap_in__tds__GetUsersResponse(struct soap*, const char*, _tds__GetUsersResponse *, const char*); -SOAP_FMAC1 _tds__GetUsersResponse * SOAP_FMAC2 soap_instantiate__tds__GetUsersResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetUsersResponse * soap_new__tds__GetUsersResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetUsersResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetUsersResponse * soap_new_req__tds__GetUsersResponse( - struct soap *soap) -{ - _tds__GetUsersResponse *_p = ::soap_new__tds__GetUsersResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetUsersResponse * soap_new_set__tds__GetUsersResponse( - struct soap *soap, - const std::vector & User) -{ - _tds__GetUsersResponse *_p = ::soap_new__tds__GetUsersResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetUsersResponse::User = User; - } - return _p; -} - -inline int soap_write__tds__GetUsersResponse(struct soap *soap, _tds__GetUsersResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetUsersResponse", p->soap_type() == SOAP_TYPE__tds__GetUsersResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetUsersResponse(struct soap *soap, const char *URL, _tds__GetUsersResponse 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, "tds:GetUsersResponse", p->soap_type() == SOAP_TYPE__tds__GetUsersResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetUsersResponse(struct soap *soap, const char *URL, _tds__GetUsersResponse 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, "tds:GetUsersResponse", p->soap_type() == SOAP_TYPE__tds__GetUsersResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetUsersResponse(struct soap *soap, const char *URL, _tds__GetUsersResponse 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, "tds:GetUsersResponse", p->soap_type() == SOAP_TYPE__tds__GetUsersResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetUsersResponse * SOAP_FMAC4 soap_get__tds__GetUsersResponse(struct soap*, _tds__GetUsersResponse *, const char*, const char*); - -inline int soap_read__tds__GetUsersResponse(struct soap *soap, _tds__GetUsersResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetUsersResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetUsersResponse(struct soap *soap, const char *URL, _tds__GetUsersResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetUsersResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetUsersResponse(struct soap *soap, _tds__GetUsersResponse *p) -{ - if (::soap_read__tds__GetUsersResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetUsers_DEFINED -#define SOAP_TYPE__tds__GetUsers_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetUsers(struct soap*, const char*, int, const _tds__GetUsers *, const char*); -SOAP_FMAC3 _tds__GetUsers * SOAP_FMAC4 soap_in__tds__GetUsers(struct soap*, const char*, _tds__GetUsers *, const char*); -SOAP_FMAC1 _tds__GetUsers * SOAP_FMAC2 soap_instantiate__tds__GetUsers(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetUsers * soap_new__tds__GetUsers(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetUsers(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetUsers * soap_new_req__tds__GetUsers( - struct soap *soap) -{ - _tds__GetUsers *_p = ::soap_new__tds__GetUsers(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetUsers * soap_new_set__tds__GetUsers( - struct soap *soap) -{ - _tds__GetUsers *_p = ::soap_new__tds__GetUsers(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetUsers(struct soap *soap, _tds__GetUsers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetUsers", p->soap_type() == SOAP_TYPE__tds__GetUsers ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetUsers(struct soap *soap, const char *URL, _tds__GetUsers 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, "tds:GetUsers", p->soap_type() == SOAP_TYPE__tds__GetUsers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetUsers(struct soap *soap, const char *URL, _tds__GetUsers 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, "tds:GetUsers", p->soap_type() == SOAP_TYPE__tds__GetUsers ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetUsers(struct soap *soap, const char *URL, _tds__GetUsers 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, "tds:GetUsers", p->soap_type() == SOAP_TYPE__tds__GetUsers ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetUsers * SOAP_FMAC4 soap_get__tds__GetUsers(struct soap*, _tds__GetUsers *, const char*, const char*); - -inline int soap_read__tds__GetUsers(struct soap *soap, _tds__GetUsers *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetUsers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetUsers(struct soap *soap, const char *URL, _tds__GetUsers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetUsers(struct soap *soap, _tds__GetUsers *p) -{ - if (::soap_read__tds__GetUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRemoteUserResponse_DEFINED -#define SOAP_TYPE__tds__SetRemoteUserResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteUserResponse(struct soap*, const char*, int, const _tds__SetRemoteUserResponse *, const char*); -SOAP_FMAC3 _tds__SetRemoteUserResponse * SOAP_FMAC4 soap_in__tds__SetRemoteUserResponse(struct soap*, const char*, _tds__SetRemoteUserResponse *, const char*); -SOAP_FMAC1 _tds__SetRemoteUserResponse * SOAP_FMAC2 soap_instantiate__tds__SetRemoteUserResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRemoteUserResponse * soap_new__tds__SetRemoteUserResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRemoteUserResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRemoteUserResponse * soap_new_req__tds__SetRemoteUserResponse( - struct soap *soap) -{ - _tds__SetRemoteUserResponse *_p = ::soap_new__tds__SetRemoteUserResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetRemoteUserResponse * soap_new_set__tds__SetRemoteUserResponse( - struct soap *soap) -{ - _tds__SetRemoteUserResponse *_p = ::soap_new__tds__SetRemoteUserResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetRemoteUserResponse(struct soap *soap, _tds__SetRemoteUserResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteUserResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRemoteUserResponse(struct soap *soap, const char *URL, _tds__SetRemoteUserResponse 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, "tds:SetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteUserResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRemoteUserResponse(struct soap *soap, const char *URL, _tds__SetRemoteUserResponse 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, "tds:SetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteUserResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRemoteUserResponse(struct soap *soap, const char *URL, _tds__SetRemoteUserResponse 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, "tds:SetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteUserResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRemoteUserResponse * SOAP_FMAC4 soap_get__tds__SetRemoteUserResponse(struct soap*, _tds__SetRemoteUserResponse *, const char*, const char*); - -inline int soap_read__tds__SetRemoteUserResponse(struct soap *soap, _tds__SetRemoteUserResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRemoteUserResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRemoteUserResponse(struct soap *soap, const char *URL, _tds__SetRemoteUserResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRemoteUserResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRemoteUserResponse(struct soap *soap, _tds__SetRemoteUserResponse *p) -{ - if (::soap_read__tds__SetRemoteUserResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRemoteUser_DEFINED -#define SOAP_TYPE__tds__SetRemoteUser_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteUser(struct soap*, const char*, int, const _tds__SetRemoteUser *, const char*); -SOAP_FMAC3 _tds__SetRemoteUser * SOAP_FMAC4 soap_in__tds__SetRemoteUser(struct soap*, const char*, _tds__SetRemoteUser *, const char*); -SOAP_FMAC1 _tds__SetRemoteUser * SOAP_FMAC2 soap_instantiate__tds__SetRemoteUser(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRemoteUser * soap_new__tds__SetRemoteUser(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRemoteUser(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRemoteUser * soap_new_req__tds__SetRemoteUser( - struct soap *soap) -{ - _tds__SetRemoteUser *_p = ::soap_new__tds__SetRemoteUser(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetRemoteUser * soap_new_set__tds__SetRemoteUser( - struct soap *soap, - tt__RemoteUser *RemoteUser) -{ - _tds__SetRemoteUser *_p = ::soap_new__tds__SetRemoteUser(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetRemoteUser::RemoteUser = RemoteUser; - } - return _p; -} - -inline int soap_write__tds__SetRemoteUser(struct soap *soap, _tds__SetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRemoteUser", p->soap_type() == SOAP_TYPE__tds__SetRemoteUser ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRemoteUser(struct soap *soap, const char *URL, _tds__SetRemoteUser 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, "tds:SetRemoteUser", p->soap_type() == SOAP_TYPE__tds__SetRemoteUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRemoteUser(struct soap *soap, const char *URL, _tds__SetRemoteUser 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, "tds:SetRemoteUser", p->soap_type() == SOAP_TYPE__tds__SetRemoteUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRemoteUser(struct soap *soap, const char *URL, _tds__SetRemoteUser 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, "tds:SetRemoteUser", p->soap_type() == SOAP_TYPE__tds__SetRemoteUser ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRemoteUser * SOAP_FMAC4 soap_get__tds__SetRemoteUser(struct soap*, _tds__SetRemoteUser *, const char*, const char*); - -inline int soap_read__tds__SetRemoteUser(struct soap *soap, _tds__SetRemoteUser *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRemoteUser(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRemoteUser(struct soap *soap, const char *URL, _tds__SetRemoteUser *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRemoteUser(struct soap *soap, _tds__SetRemoteUser *p) -{ - if (::soap_read__tds__SetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetRemoteUserResponse_DEFINED -#define SOAP_TYPE__tds__GetRemoteUserResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteUserResponse(struct soap*, const char*, int, const _tds__GetRemoteUserResponse *, const char*); -SOAP_FMAC3 _tds__GetRemoteUserResponse * SOAP_FMAC4 soap_in__tds__GetRemoteUserResponse(struct soap*, const char*, _tds__GetRemoteUserResponse *, const char*); -SOAP_FMAC1 _tds__GetRemoteUserResponse * SOAP_FMAC2 soap_instantiate__tds__GetRemoteUserResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetRemoteUserResponse * soap_new__tds__GetRemoteUserResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetRemoteUserResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetRemoteUserResponse * soap_new_req__tds__GetRemoteUserResponse( - struct soap *soap) -{ - _tds__GetRemoteUserResponse *_p = ::soap_new__tds__GetRemoteUserResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetRemoteUserResponse * soap_new_set__tds__GetRemoteUserResponse( - struct soap *soap, - tt__RemoteUser *RemoteUser) -{ - _tds__GetRemoteUserResponse *_p = ::soap_new__tds__GetRemoteUserResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetRemoteUserResponse::RemoteUser = RemoteUser; - } - return _p; -} - -inline int soap_write__tds__GetRemoteUserResponse(struct soap *soap, _tds__GetRemoteUserResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteUserResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetRemoteUserResponse(struct soap *soap, const char *URL, _tds__GetRemoteUserResponse 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, "tds:GetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteUserResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetRemoteUserResponse(struct soap *soap, const char *URL, _tds__GetRemoteUserResponse 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, "tds:GetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteUserResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetRemoteUserResponse(struct soap *soap, const char *URL, _tds__GetRemoteUserResponse 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, "tds:GetRemoteUserResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteUserResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetRemoteUserResponse * SOAP_FMAC4 soap_get__tds__GetRemoteUserResponse(struct soap*, _tds__GetRemoteUserResponse *, const char*, const char*); - -inline int soap_read__tds__GetRemoteUserResponse(struct soap *soap, _tds__GetRemoteUserResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetRemoteUserResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetRemoteUserResponse(struct soap *soap, const char *URL, _tds__GetRemoteUserResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetRemoteUserResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetRemoteUserResponse(struct soap *soap, _tds__GetRemoteUserResponse *p) -{ - if (::soap_read__tds__GetRemoteUserResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetRemoteUser_DEFINED -#define SOAP_TYPE__tds__GetRemoteUser_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteUser(struct soap*, const char*, int, const _tds__GetRemoteUser *, const char*); -SOAP_FMAC3 _tds__GetRemoteUser * SOAP_FMAC4 soap_in__tds__GetRemoteUser(struct soap*, const char*, _tds__GetRemoteUser *, const char*); -SOAP_FMAC1 _tds__GetRemoteUser * SOAP_FMAC2 soap_instantiate__tds__GetRemoteUser(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetRemoteUser * soap_new__tds__GetRemoteUser(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetRemoteUser(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetRemoteUser * soap_new_req__tds__GetRemoteUser( - struct soap *soap) -{ - _tds__GetRemoteUser *_p = ::soap_new__tds__GetRemoteUser(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetRemoteUser * soap_new_set__tds__GetRemoteUser( - struct soap *soap) -{ - _tds__GetRemoteUser *_p = ::soap_new__tds__GetRemoteUser(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetRemoteUser(struct soap *soap, _tds__GetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetRemoteUser", p->soap_type() == SOAP_TYPE__tds__GetRemoteUser ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetRemoteUser(struct soap *soap, const char *URL, _tds__GetRemoteUser 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, "tds:GetRemoteUser", p->soap_type() == SOAP_TYPE__tds__GetRemoteUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetRemoteUser(struct soap *soap, const char *URL, _tds__GetRemoteUser 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, "tds:GetRemoteUser", p->soap_type() == SOAP_TYPE__tds__GetRemoteUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetRemoteUser(struct soap *soap, const char *URL, _tds__GetRemoteUser 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, "tds:GetRemoteUser", p->soap_type() == SOAP_TYPE__tds__GetRemoteUser ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetRemoteUser * SOAP_FMAC4 soap_get__tds__GetRemoteUser(struct soap*, _tds__GetRemoteUser *, const char*, const char*); - -inline int soap_read__tds__GetRemoteUser(struct soap *soap, _tds__GetRemoteUser *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetRemoteUser(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetRemoteUser(struct soap *soap, const char *URL, _tds__GetRemoteUser *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetRemoteUser(struct soap *soap, _tds__GetRemoteUser *p) -{ - if (::soap_read__tds__GetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetEndpointReferenceResponse_DEFINED -#define SOAP_TYPE__tds__GetEndpointReferenceResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetEndpointReferenceResponse(struct soap*, const char*, int, const _tds__GetEndpointReferenceResponse *, const char*); -SOAP_FMAC3 _tds__GetEndpointReferenceResponse * SOAP_FMAC4 soap_in__tds__GetEndpointReferenceResponse(struct soap*, const char*, _tds__GetEndpointReferenceResponse *, const char*); -SOAP_FMAC1 _tds__GetEndpointReferenceResponse * SOAP_FMAC2 soap_instantiate__tds__GetEndpointReferenceResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetEndpointReferenceResponse * soap_new__tds__GetEndpointReferenceResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetEndpointReferenceResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetEndpointReferenceResponse * soap_new_req__tds__GetEndpointReferenceResponse( - struct soap *soap, - const std::string& GUID) -{ - _tds__GetEndpointReferenceResponse *_p = ::soap_new__tds__GetEndpointReferenceResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetEndpointReferenceResponse::GUID = GUID; - } - return _p; -} - -inline _tds__GetEndpointReferenceResponse * soap_new_set__tds__GetEndpointReferenceResponse( - struct soap *soap, - const std::string& GUID, - const std::vector & __any) -{ - _tds__GetEndpointReferenceResponse *_p = ::soap_new__tds__GetEndpointReferenceResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetEndpointReferenceResponse::GUID = GUID; - _p->_tds__GetEndpointReferenceResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tds__GetEndpointReferenceResponse(struct soap *soap, _tds__GetEndpointReferenceResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetEndpointReferenceResponse", p->soap_type() == SOAP_TYPE__tds__GetEndpointReferenceResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetEndpointReferenceResponse(struct soap *soap, const char *URL, _tds__GetEndpointReferenceResponse 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, "tds:GetEndpointReferenceResponse", p->soap_type() == SOAP_TYPE__tds__GetEndpointReferenceResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetEndpointReferenceResponse(struct soap *soap, const char *URL, _tds__GetEndpointReferenceResponse 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, "tds:GetEndpointReferenceResponse", p->soap_type() == SOAP_TYPE__tds__GetEndpointReferenceResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetEndpointReferenceResponse(struct soap *soap, const char *URL, _tds__GetEndpointReferenceResponse 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, "tds:GetEndpointReferenceResponse", p->soap_type() == SOAP_TYPE__tds__GetEndpointReferenceResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetEndpointReferenceResponse * SOAP_FMAC4 soap_get__tds__GetEndpointReferenceResponse(struct soap*, _tds__GetEndpointReferenceResponse *, const char*, const char*); - -inline int soap_read__tds__GetEndpointReferenceResponse(struct soap *soap, _tds__GetEndpointReferenceResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetEndpointReferenceResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetEndpointReferenceResponse(struct soap *soap, const char *URL, _tds__GetEndpointReferenceResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetEndpointReferenceResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetEndpointReferenceResponse(struct soap *soap, _tds__GetEndpointReferenceResponse *p) -{ - if (::soap_read__tds__GetEndpointReferenceResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetEndpointReference_DEFINED -#define SOAP_TYPE__tds__GetEndpointReference_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetEndpointReference(struct soap*, const char*, int, const _tds__GetEndpointReference *, const char*); -SOAP_FMAC3 _tds__GetEndpointReference * SOAP_FMAC4 soap_in__tds__GetEndpointReference(struct soap*, const char*, _tds__GetEndpointReference *, const char*); -SOAP_FMAC1 _tds__GetEndpointReference * SOAP_FMAC2 soap_instantiate__tds__GetEndpointReference(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetEndpointReference * soap_new__tds__GetEndpointReference(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetEndpointReference(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetEndpointReference * soap_new_req__tds__GetEndpointReference( - struct soap *soap) -{ - _tds__GetEndpointReference *_p = ::soap_new__tds__GetEndpointReference(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetEndpointReference * soap_new_set__tds__GetEndpointReference( - struct soap *soap) -{ - _tds__GetEndpointReference *_p = ::soap_new__tds__GetEndpointReference(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetEndpointReference(struct soap *soap, _tds__GetEndpointReference const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetEndpointReference", p->soap_type() == SOAP_TYPE__tds__GetEndpointReference ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetEndpointReference(struct soap *soap, const char *URL, _tds__GetEndpointReference 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, "tds:GetEndpointReference", p->soap_type() == SOAP_TYPE__tds__GetEndpointReference ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetEndpointReference(struct soap *soap, const char *URL, _tds__GetEndpointReference 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, "tds:GetEndpointReference", p->soap_type() == SOAP_TYPE__tds__GetEndpointReference ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetEndpointReference(struct soap *soap, const char *URL, _tds__GetEndpointReference 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, "tds:GetEndpointReference", p->soap_type() == SOAP_TYPE__tds__GetEndpointReference ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetEndpointReference * SOAP_FMAC4 soap_get__tds__GetEndpointReference(struct soap*, _tds__GetEndpointReference *, const char*, const char*); - -inline int soap_read__tds__GetEndpointReference(struct soap *soap, _tds__GetEndpointReference *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetEndpointReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetEndpointReference(struct soap *soap, const char *URL, _tds__GetEndpointReference *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetEndpointReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetEndpointReference(struct soap *soap, _tds__GetEndpointReference *p) -{ - if (::soap_read__tds__GetEndpointReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDPAddressesResponse_DEFINED -#define SOAP_TYPE__tds__SetDPAddressesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDPAddressesResponse(struct soap*, const char*, int, const _tds__SetDPAddressesResponse *, const char*); -SOAP_FMAC3 _tds__SetDPAddressesResponse * SOAP_FMAC4 soap_in__tds__SetDPAddressesResponse(struct soap*, const char*, _tds__SetDPAddressesResponse *, const char*); -SOAP_FMAC1 _tds__SetDPAddressesResponse * SOAP_FMAC2 soap_instantiate__tds__SetDPAddressesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDPAddressesResponse * soap_new__tds__SetDPAddressesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDPAddressesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDPAddressesResponse * soap_new_req__tds__SetDPAddressesResponse( - struct soap *soap) -{ - _tds__SetDPAddressesResponse *_p = ::soap_new__tds__SetDPAddressesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetDPAddressesResponse * soap_new_set__tds__SetDPAddressesResponse( - struct soap *soap) -{ - _tds__SetDPAddressesResponse *_p = ::soap_new__tds__SetDPAddressesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetDPAddressesResponse(struct soap *soap, _tds__SetDPAddressesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__SetDPAddressesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDPAddressesResponse(struct soap *soap, const char *URL, _tds__SetDPAddressesResponse 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, "tds:SetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__SetDPAddressesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDPAddressesResponse(struct soap *soap, const char *URL, _tds__SetDPAddressesResponse 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, "tds:SetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__SetDPAddressesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDPAddressesResponse(struct soap *soap, const char *URL, _tds__SetDPAddressesResponse 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, "tds:SetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__SetDPAddressesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDPAddressesResponse * SOAP_FMAC4 soap_get__tds__SetDPAddressesResponse(struct soap*, _tds__SetDPAddressesResponse *, const char*, const char*); - -inline int soap_read__tds__SetDPAddressesResponse(struct soap *soap, _tds__SetDPAddressesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDPAddressesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDPAddressesResponse(struct soap *soap, const char *URL, _tds__SetDPAddressesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDPAddressesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDPAddressesResponse(struct soap *soap, _tds__SetDPAddressesResponse *p) -{ - if (::soap_read__tds__SetDPAddressesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDPAddresses_DEFINED -#define SOAP_TYPE__tds__SetDPAddresses_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDPAddresses(struct soap*, const char*, int, const _tds__SetDPAddresses *, const char*); -SOAP_FMAC3 _tds__SetDPAddresses * SOAP_FMAC4 soap_in__tds__SetDPAddresses(struct soap*, const char*, _tds__SetDPAddresses *, const char*); -SOAP_FMAC1 _tds__SetDPAddresses * SOAP_FMAC2 soap_instantiate__tds__SetDPAddresses(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDPAddresses * soap_new__tds__SetDPAddresses(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDPAddresses(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDPAddresses * soap_new_req__tds__SetDPAddresses( - struct soap *soap) -{ - _tds__SetDPAddresses *_p = ::soap_new__tds__SetDPAddresses(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetDPAddresses * soap_new_set__tds__SetDPAddresses( - struct soap *soap, - const std::vector & DPAddress) -{ - _tds__SetDPAddresses *_p = ::soap_new__tds__SetDPAddresses(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDPAddresses::DPAddress = DPAddress; - } - return _p; -} - -inline int soap_write__tds__SetDPAddresses(struct soap *soap, _tds__SetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDPAddresses", p->soap_type() == SOAP_TYPE__tds__SetDPAddresses ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDPAddresses(struct soap *soap, const char *URL, _tds__SetDPAddresses 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, "tds:SetDPAddresses", p->soap_type() == SOAP_TYPE__tds__SetDPAddresses ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDPAddresses(struct soap *soap, const char *URL, _tds__SetDPAddresses 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, "tds:SetDPAddresses", p->soap_type() == SOAP_TYPE__tds__SetDPAddresses ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDPAddresses(struct soap *soap, const char *URL, _tds__SetDPAddresses 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, "tds:SetDPAddresses", p->soap_type() == SOAP_TYPE__tds__SetDPAddresses ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDPAddresses * SOAP_FMAC4 soap_get__tds__SetDPAddresses(struct soap*, _tds__SetDPAddresses *, const char*, const char*); - -inline int soap_read__tds__SetDPAddresses(struct soap *soap, _tds__SetDPAddresses *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDPAddresses(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDPAddresses(struct soap *soap, const char *URL, _tds__SetDPAddresses *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDPAddresses(struct soap *soap, _tds__SetDPAddresses *p) -{ - if (::soap_read__tds__SetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDPAddressesResponse_DEFINED -#define SOAP_TYPE__tds__GetDPAddressesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDPAddressesResponse(struct soap*, const char*, int, const _tds__GetDPAddressesResponse *, const char*); -SOAP_FMAC3 _tds__GetDPAddressesResponse * SOAP_FMAC4 soap_in__tds__GetDPAddressesResponse(struct soap*, const char*, _tds__GetDPAddressesResponse *, const char*); -SOAP_FMAC1 _tds__GetDPAddressesResponse * SOAP_FMAC2 soap_instantiate__tds__GetDPAddressesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDPAddressesResponse * soap_new__tds__GetDPAddressesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDPAddressesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDPAddressesResponse * soap_new_req__tds__GetDPAddressesResponse( - struct soap *soap) -{ - _tds__GetDPAddressesResponse *_p = ::soap_new__tds__GetDPAddressesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDPAddressesResponse * soap_new_set__tds__GetDPAddressesResponse( - struct soap *soap, - const std::vector & DPAddress) -{ - _tds__GetDPAddressesResponse *_p = ::soap_new__tds__GetDPAddressesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDPAddressesResponse::DPAddress = DPAddress; - } - return _p; -} - -inline int soap_write__tds__GetDPAddressesResponse(struct soap *soap, _tds__GetDPAddressesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__GetDPAddressesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDPAddressesResponse(struct soap *soap, const char *URL, _tds__GetDPAddressesResponse 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, "tds:GetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__GetDPAddressesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDPAddressesResponse(struct soap *soap, const char *URL, _tds__GetDPAddressesResponse 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, "tds:GetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__GetDPAddressesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDPAddressesResponse(struct soap *soap, const char *URL, _tds__GetDPAddressesResponse 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, "tds:GetDPAddressesResponse", p->soap_type() == SOAP_TYPE__tds__GetDPAddressesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDPAddressesResponse * SOAP_FMAC4 soap_get__tds__GetDPAddressesResponse(struct soap*, _tds__GetDPAddressesResponse *, const char*, const char*); - -inline int soap_read__tds__GetDPAddressesResponse(struct soap *soap, _tds__GetDPAddressesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDPAddressesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDPAddressesResponse(struct soap *soap, const char *URL, _tds__GetDPAddressesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDPAddressesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDPAddressesResponse(struct soap *soap, _tds__GetDPAddressesResponse *p) -{ - if (::soap_read__tds__GetDPAddressesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDPAddresses_DEFINED -#define SOAP_TYPE__tds__GetDPAddresses_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDPAddresses(struct soap*, const char*, int, const _tds__GetDPAddresses *, const char*); -SOAP_FMAC3 _tds__GetDPAddresses * SOAP_FMAC4 soap_in__tds__GetDPAddresses(struct soap*, const char*, _tds__GetDPAddresses *, const char*); -SOAP_FMAC1 _tds__GetDPAddresses * SOAP_FMAC2 soap_instantiate__tds__GetDPAddresses(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDPAddresses * soap_new__tds__GetDPAddresses(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDPAddresses(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDPAddresses * soap_new_req__tds__GetDPAddresses( - struct soap *soap) -{ - _tds__GetDPAddresses *_p = ::soap_new__tds__GetDPAddresses(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDPAddresses * soap_new_set__tds__GetDPAddresses( - struct soap *soap) -{ - _tds__GetDPAddresses *_p = ::soap_new__tds__GetDPAddresses(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetDPAddresses(struct soap *soap, _tds__GetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDPAddresses", p->soap_type() == SOAP_TYPE__tds__GetDPAddresses ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDPAddresses(struct soap *soap, const char *URL, _tds__GetDPAddresses 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, "tds:GetDPAddresses", p->soap_type() == SOAP_TYPE__tds__GetDPAddresses ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDPAddresses(struct soap *soap, const char *URL, _tds__GetDPAddresses 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, "tds:GetDPAddresses", p->soap_type() == SOAP_TYPE__tds__GetDPAddresses ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDPAddresses(struct soap *soap, const char *URL, _tds__GetDPAddresses 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, "tds:GetDPAddresses", p->soap_type() == SOAP_TYPE__tds__GetDPAddresses ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDPAddresses * SOAP_FMAC4 soap_get__tds__GetDPAddresses(struct soap*, _tds__GetDPAddresses *, const char*, const char*); - -inline int soap_read__tds__GetDPAddresses(struct soap *soap, _tds__GetDPAddresses *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDPAddresses(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDPAddresses(struct soap *soap, const char *URL, _tds__GetDPAddresses *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDPAddresses(struct soap *soap, _tds__GetDPAddresses *p) -{ - if (::soap_read__tds__GetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse_DEFINED -#define SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteDiscoveryModeResponse(struct soap*, const char*, int, const _tds__SetRemoteDiscoveryModeResponse *, const char*); -SOAP_FMAC3 _tds__SetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__SetRemoteDiscoveryModeResponse(struct soap*, const char*, _tds__SetRemoteDiscoveryModeResponse *, const char*); -SOAP_FMAC1 _tds__SetRemoteDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__SetRemoteDiscoveryModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRemoteDiscoveryModeResponse * soap_new__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRemoteDiscoveryModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRemoteDiscoveryModeResponse * soap_new_req__tds__SetRemoteDiscoveryModeResponse( - struct soap *soap) -{ - _tds__SetRemoteDiscoveryModeResponse *_p = ::soap_new__tds__SetRemoteDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetRemoteDiscoveryModeResponse * soap_new_set__tds__SetRemoteDiscoveryModeResponse( - struct soap *soap) -{ - _tds__SetRemoteDiscoveryModeResponse *_p = ::soap_new__tds__SetRemoteDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, _tds__SetRemoteDiscoveryModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryModeResponse 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, "tds:SetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryModeResponse 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, "tds:SetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryModeResponse 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, "tds:SetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__SetRemoteDiscoveryModeResponse(struct soap*, _tds__SetRemoteDiscoveryModeResponse *, const char*, const char*); - -inline int soap_read__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, _tds__SetRemoteDiscoveryModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRemoteDiscoveryModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRemoteDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRemoteDiscoveryModeResponse(struct soap *soap, _tds__SetRemoteDiscoveryModeResponse *p) -{ - if (::soap_read__tds__SetRemoteDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetRemoteDiscoveryMode_DEFINED -#define SOAP_TYPE__tds__SetRemoteDiscoveryMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetRemoteDiscoveryMode(struct soap*, const char*, int, const _tds__SetRemoteDiscoveryMode *, const char*); -SOAP_FMAC3 _tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_in__tds__SetRemoteDiscoveryMode(struct soap*, const char*, _tds__SetRemoteDiscoveryMode *, const char*); -SOAP_FMAC1 _tds__SetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__SetRemoteDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetRemoteDiscoveryMode * soap_new__tds__SetRemoteDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetRemoteDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetRemoteDiscoveryMode * soap_new_req__tds__SetRemoteDiscoveryMode( - struct soap *soap, - enum tt__DiscoveryMode RemoteDiscoveryMode) -{ - _tds__SetRemoteDiscoveryMode *_p = ::soap_new__tds__SetRemoteDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetRemoteDiscoveryMode::RemoteDiscoveryMode = RemoteDiscoveryMode; - } - return _p; -} - -inline _tds__SetRemoteDiscoveryMode * soap_new_set__tds__SetRemoteDiscoveryMode( - struct soap *soap, - enum tt__DiscoveryMode RemoteDiscoveryMode) -{ - _tds__SetRemoteDiscoveryMode *_p = ::soap_new__tds__SetRemoteDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetRemoteDiscoveryMode::RemoteDiscoveryMode = RemoteDiscoveryMode; - } - return _p; -} - -inline int soap_write__tds__SetRemoteDiscoveryMode(struct soap *soap, _tds__SetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryMode 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, "tds:SetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryMode 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, "tds:SetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryMode 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, "tds:SetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_get__tds__SetRemoteDiscoveryMode(struct soap*, _tds__SetRemoteDiscoveryMode *, const char*, const char*); - -inline int soap_read__tds__SetRemoteDiscoveryMode(struct soap *soap, _tds__SetRemoteDiscoveryMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetRemoteDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__SetRemoteDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetRemoteDiscoveryMode(struct soap *soap, _tds__SetRemoteDiscoveryMode *p) -{ - if (::soap_read__tds__SetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse_DEFINED -#define SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteDiscoveryModeResponse(struct soap*, const char*, int, const _tds__GetRemoteDiscoveryModeResponse *, const char*); -SOAP_FMAC3 _tds__GetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__GetRemoteDiscoveryModeResponse(struct soap*, const char*, _tds__GetRemoteDiscoveryModeResponse *, const char*); -SOAP_FMAC1 _tds__GetRemoteDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__GetRemoteDiscoveryModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetRemoteDiscoveryModeResponse * soap_new__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetRemoteDiscoveryModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetRemoteDiscoveryModeResponse * soap_new_req__tds__GetRemoteDiscoveryModeResponse( - struct soap *soap, - enum tt__DiscoveryMode RemoteDiscoveryMode) -{ - _tds__GetRemoteDiscoveryModeResponse *_p = ::soap_new__tds__GetRemoteDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetRemoteDiscoveryModeResponse::RemoteDiscoveryMode = RemoteDiscoveryMode; - } - return _p; -} - -inline _tds__GetRemoteDiscoveryModeResponse * soap_new_set__tds__GetRemoteDiscoveryModeResponse( - struct soap *soap, - enum tt__DiscoveryMode RemoteDiscoveryMode) -{ - _tds__GetRemoteDiscoveryModeResponse *_p = ::soap_new__tds__GetRemoteDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetRemoteDiscoveryModeResponse::RemoteDiscoveryMode = RemoteDiscoveryMode; - } - return _p; -} - -inline int soap_write__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, _tds__GetRemoteDiscoveryModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryModeResponse 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, "tds:GetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryModeResponse 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, "tds:GetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryModeResponse 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, "tds:GetRemoteDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetRemoteDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__GetRemoteDiscoveryModeResponse(struct soap*, _tds__GetRemoteDiscoveryModeResponse *, const char*, const char*); - -inline int soap_read__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, _tds__GetRemoteDiscoveryModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetRemoteDiscoveryModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetRemoteDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetRemoteDiscoveryModeResponse(struct soap *soap, _tds__GetRemoteDiscoveryModeResponse *p) -{ - if (::soap_read__tds__GetRemoteDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetRemoteDiscoveryMode_DEFINED -#define SOAP_TYPE__tds__GetRemoteDiscoveryMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetRemoteDiscoveryMode(struct soap*, const char*, int, const _tds__GetRemoteDiscoveryMode *, const char*); -SOAP_FMAC3 _tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_in__tds__GetRemoteDiscoveryMode(struct soap*, const char*, _tds__GetRemoteDiscoveryMode *, const char*); -SOAP_FMAC1 _tds__GetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__GetRemoteDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetRemoteDiscoveryMode * soap_new__tds__GetRemoteDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetRemoteDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetRemoteDiscoveryMode * soap_new_req__tds__GetRemoteDiscoveryMode( - struct soap *soap) -{ - _tds__GetRemoteDiscoveryMode *_p = ::soap_new__tds__GetRemoteDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetRemoteDiscoveryMode * soap_new_set__tds__GetRemoteDiscoveryMode( - struct soap *soap) -{ - _tds__GetRemoteDiscoveryMode *_p = ::soap_new__tds__GetRemoteDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetRemoteDiscoveryMode(struct soap *soap, _tds__GetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryMode 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, "tds:GetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryMode 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, "tds:GetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryMode 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, "tds:GetRemoteDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetRemoteDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_get__tds__GetRemoteDiscoveryMode(struct soap*, _tds__GetRemoteDiscoveryMode *, const char*, const char*); - -inline int soap_read__tds__GetRemoteDiscoveryMode(struct soap *soap, _tds__GetRemoteDiscoveryMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetRemoteDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, _tds__GetRemoteDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetRemoteDiscoveryMode(struct soap *soap, _tds__GetRemoteDiscoveryMode *p) -{ - if (::soap_read__tds__GetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDiscoveryModeResponse_DEFINED -#define SOAP_TYPE__tds__SetDiscoveryModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDiscoveryModeResponse(struct soap*, const char*, int, const _tds__SetDiscoveryModeResponse *, const char*); -SOAP_FMAC3 _tds__SetDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__SetDiscoveryModeResponse(struct soap*, const char*, _tds__SetDiscoveryModeResponse *, const char*); -SOAP_FMAC1 _tds__SetDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__SetDiscoveryModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDiscoveryModeResponse * soap_new__tds__SetDiscoveryModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDiscoveryModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDiscoveryModeResponse * soap_new_req__tds__SetDiscoveryModeResponse( - struct soap *soap) -{ - _tds__SetDiscoveryModeResponse *_p = ::soap_new__tds__SetDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetDiscoveryModeResponse * soap_new_set__tds__SetDiscoveryModeResponse( - struct soap *soap) -{ - _tds__SetDiscoveryModeResponse *_p = ::soap_new__tds__SetDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetDiscoveryModeResponse(struct soap *soap, _tds__SetDiscoveryModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetDiscoveryModeResponse 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, "tds:SetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetDiscoveryModeResponse 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, "tds:SetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetDiscoveryModeResponse 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, "tds:SetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__SetDiscoveryModeResponse(struct soap*, _tds__SetDiscoveryModeResponse *, const char*, const char*); - -inline int soap_read__tds__SetDiscoveryModeResponse(struct soap *soap, _tds__SetDiscoveryModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDiscoveryModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__SetDiscoveryModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDiscoveryModeResponse(struct soap *soap, _tds__SetDiscoveryModeResponse *p) -{ - if (::soap_read__tds__SetDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetDiscoveryMode_DEFINED -#define SOAP_TYPE__tds__SetDiscoveryMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetDiscoveryMode(struct soap*, const char*, int, const _tds__SetDiscoveryMode *, const char*); -SOAP_FMAC3 _tds__SetDiscoveryMode * SOAP_FMAC4 soap_in__tds__SetDiscoveryMode(struct soap*, const char*, _tds__SetDiscoveryMode *, const char*); -SOAP_FMAC1 _tds__SetDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__SetDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetDiscoveryMode * soap_new__tds__SetDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetDiscoveryMode * soap_new_req__tds__SetDiscoveryMode( - struct soap *soap, - enum tt__DiscoveryMode DiscoveryMode) -{ - _tds__SetDiscoveryMode *_p = ::soap_new__tds__SetDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDiscoveryMode::DiscoveryMode = DiscoveryMode; - } - return _p; -} - -inline _tds__SetDiscoveryMode * soap_new_set__tds__SetDiscoveryMode( - struct soap *soap, - enum tt__DiscoveryMode DiscoveryMode) -{ - _tds__SetDiscoveryMode *_p = ::soap_new__tds__SetDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetDiscoveryMode::DiscoveryMode = DiscoveryMode; - } - return _p; -} - -inline int soap_write__tds__SetDiscoveryMode(struct soap *soap, _tds__SetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetDiscoveryMode(struct soap *soap, const char *URL, _tds__SetDiscoveryMode 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, "tds:SetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetDiscoveryMode(struct soap *soap, const char *URL, _tds__SetDiscoveryMode 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, "tds:SetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetDiscoveryMode(struct soap *soap, const char *URL, _tds__SetDiscoveryMode 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, "tds:SetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__SetDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetDiscoveryMode * SOAP_FMAC4 soap_get__tds__SetDiscoveryMode(struct soap*, _tds__SetDiscoveryMode *, const char*, const char*); - -inline int soap_read__tds__SetDiscoveryMode(struct soap *soap, _tds__SetDiscoveryMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetDiscoveryMode(struct soap *soap, const char *URL, _tds__SetDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetDiscoveryMode(struct soap *soap, _tds__SetDiscoveryMode *p) -{ - if (::soap_read__tds__SetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDiscoveryModeResponse_DEFINED -#define SOAP_TYPE__tds__GetDiscoveryModeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDiscoveryModeResponse(struct soap*, const char*, int, const _tds__GetDiscoveryModeResponse *, const char*); -SOAP_FMAC3 _tds__GetDiscoveryModeResponse * SOAP_FMAC4 soap_in__tds__GetDiscoveryModeResponse(struct soap*, const char*, _tds__GetDiscoveryModeResponse *, const char*); -SOAP_FMAC1 _tds__GetDiscoveryModeResponse * SOAP_FMAC2 soap_instantiate__tds__GetDiscoveryModeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDiscoveryModeResponse * soap_new__tds__GetDiscoveryModeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDiscoveryModeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDiscoveryModeResponse * soap_new_req__tds__GetDiscoveryModeResponse( - struct soap *soap, - enum tt__DiscoveryMode DiscoveryMode) -{ - _tds__GetDiscoveryModeResponse *_p = ::soap_new__tds__GetDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDiscoveryModeResponse::DiscoveryMode = DiscoveryMode; - } - return _p; -} - -inline _tds__GetDiscoveryModeResponse * soap_new_set__tds__GetDiscoveryModeResponse( - struct soap *soap, - enum tt__DiscoveryMode DiscoveryMode) -{ - _tds__GetDiscoveryModeResponse *_p = ::soap_new__tds__GetDiscoveryModeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDiscoveryModeResponse::DiscoveryMode = DiscoveryMode; - } - return _p; -} - -inline int soap_write__tds__GetDiscoveryModeResponse(struct soap *soap, _tds__GetDiscoveryModeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetDiscoveryModeResponse 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, "tds:GetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetDiscoveryModeResponse 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, "tds:GetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetDiscoveryModeResponse 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, "tds:GetDiscoveryModeResponse", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryModeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDiscoveryModeResponse * SOAP_FMAC4 soap_get__tds__GetDiscoveryModeResponse(struct soap*, _tds__GetDiscoveryModeResponse *, const char*, const char*); - -inline int soap_read__tds__GetDiscoveryModeResponse(struct soap *soap, _tds__GetDiscoveryModeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDiscoveryModeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDiscoveryModeResponse(struct soap *soap, const char *URL, _tds__GetDiscoveryModeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDiscoveryModeResponse(struct soap *soap, _tds__GetDiscoveryModeResponse *p) -{ - if (::soap_read__tds__GetDiscoveryModeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDiscoveryMode_DEFINED -#define SOAP_TYPE__tds__GetDiscoveryMode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDiscoveryMode(struct soap*, const char*, int, const _tds__GetDiscoveryMode *, const char*); -SOAP_FMAC3 _tds__GetDiscoveryMode * SOAP_FMAC4 soap_in__tds__GetDiscoveryMode(struct soap*, const char*, _tds__GetDiscoveryMode *, const char*); -SOAP_FMAC1 _tds__GetDiscoveryMode * SOAP_FMAC2 soap_instantiate__tds__GetDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDiscoveryMode * soap_new__tds__GetDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDiscoveryMode * soap_new_req__tds__GetDiscoveryMode( - struct soap *soap) -{ - _tds__GetDiscoveryMode *_p = ::soap_new__tds__GetDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDiscoveryMode * soap_new_set__tds__GetDiscoveryMode( - struct soap *soap) -{ - _tds__GetDiscoveryMode *_p = ::soap_new__tds__GetDiscoveryMode(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetDiscoveryMode(struct soap *soap, _tds__GetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDiscoveryMode(struct soap *soap, const char *URL, _tds__GetDiscoveryMode 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, "tds:GetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDiscoveryMode(struct soap *soap, const char *URL, _tds__GetDiscoveryMode 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, "tds:GetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryMode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDiscoveryMode(struct soap *soap, const char *URL, _tds__GetDiscoveryMode 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, "tds:GetDiscoveryMode", p->soap_type() == SOAP_TYPE__tds__GetDiscoveryMode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDiscoveryMode * SOAP_FMAC4 soap_get__tds__GetDiscoveryMode(struct soap*, _tds__GetDiscoveryMode *, const char*, const char*); - -inline int soap_read__tds__GetDiscoveryMode(struct soap *soap, _tds__GetDiscoveryMode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDiscoveryMode(struct soap *soap, const char *URL, _tds__GetDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDiscoveryMode(struct soap *soap, _tds__GetDiscoveryMode *p) -{ - if (::soap_read__tds__GetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__RemoveScopesResponse_DEFINED -#define SOAP_TYPE__tds__RemoveScopesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveScopesResponse(struct soap*, const char*, int, const _tds__RemoveScopesResponse *, const char*); -SOAP_FMAC3 _tds__RemoveScopesResponse * SOAP_FMAC4 soap_in__tds__RemoveScopesResponse(struct soap*, const char*, _tds__RemoveScopesResponse *, const char*); -SOAP_FMAC1 _tds__RemoveScopesResponse * SOAP_FMAC2 soap_instantiate__tds__RemoveScopesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__RemoveScopesResponse * soap_new__tds__RemoveScopesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__RemoveScopesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__RemoveScopesResponse * soap_new_req__tds__RemoveScopesResponse( - struct soap *soap) -{ - _tds__RemoveScopesResponse *_p = ::soap_new__tds__RemoveScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__RemoveScopesResponse * soap_new_set__tds__RemoveScopesResponse( - struct soap *soap, - const std::vector & ScopeItem) -{ - _tds__RemoveScopesResponse *_p = ::soap_new__tds__RemoveScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__RemoveScopesResponse::ScopeItem = ScopeItem; - } - return _p; -} - -inline int soap_write__tds__RemoveScopesResponse(struct soap *soap, _tds__RemoveScopesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:RemoveScopesResponse", p->soap_type() == SOAP_TYPE__tds__RemoveScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__RemoveScopesResponse(struct soap *soap, const char *URL, _tds__RemoveScopesResponse 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, "tds:RemoveScopesResponse", p->soap_type() == SOAP_TYPE__tds__RemoveScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__RemoveScopesResponse(struct soap *soap, const char *URL, _tds__RemoveScopesResponse 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, "tds:RemoveScopesResponse", p->soap_type() == SOAP_TYPE__tds__RemoveScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__RemoveScopesResponse(struct soap *soap, const char *URL, _tds__RemoveScopesResponse 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, "tds:RemoveScopesResponse", p->soap_type() == SOAP_TYPE__tds__RemoveScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__RemoveScopesResponse * SOAP_FMAC4 soap_get__tds__RemoveScopesResponse(struct soap*, _tds__RemoveScopesResponse *, const char*, const char*); - -inline int soap_read__tds__RemoveScopesResponse(struct soap *soap, _tds__RemoveScopesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__RemoveScopesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__RemoveScopesResponse(struct soap *soap, const char *URL, _tds__RemoveScopesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__RemoveScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__RemoveScopesResponse(struct soap *soap, _tds__RemoveScopesResponse *p) -{ - if (::soap_read__tds__RemoveScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__RemoveScopes_DEFINED -#define SOAP_TYPE__tds__RemoveScopes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RemoveScopes(struct soap*, const char*, int, const _tds__RemoveScopes *, const char*); -SOAP_FMAC3 _tds__RemoveScopes * SOAP_FMAC4 soap_in__tds__RemoveScopes(struct soap*, const char*, _tds__RemoveScopes *, const char*); -SOAP_FMAC1 _tds__RemoveScopes * SOAP_FMAC2 soap_instantiate__tds__RemoveScopes(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__RemoveScopes * soap_new__tds__RemoveScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__RemoveScopes(soap, n, NULL, NULL, NULL); -} - -inline _tds__RemoveScopes * soap_new_req__tds__RemoveScopes( - struct soap *soap, - const std::vector & ScopeItem) -{ - _tds__RemoveScopes *_p = ::soap_new__tds__RemoveScopes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__RemoveScopes::ScopeItem = ScopeItem; - } - return _p; -} - -inline _tds__RemoveScopes * soap_new_set__tds__RemoveScopes( - struct soap *soap, - const std::vector & ScopeItem) -{ - _tds__RemoveScopes *_p = ::soap_new__tds__RemoveScopes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__RemoveScopes::ScopeItem = ScopeItem; - } - return _p; -} - -inline int soap_write__tds__RemoveScopes(struct soap *soap, _tds__RemoveScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:RemoveScopes", p->soap_type() == SOAP_TYPE__tds__RemoveScopes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__RemoveScopes(struct soap *soap, const char *URL, _tds__RemoveScopes 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, "tds:RemoveScopes", p->soap_type() == SOAP_TYPE__tds__RemoveScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__RemoveScopes(struct soap *soap, const char *URL, _tds__RemoveScopes 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, "tds:RemoveScopes", p->soap_type() == SOAP_TYPE__tds__RemoveScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__RemoveScopes(struct soap *soap, const char *URL, _tds__RemoveScopes 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, "tds:RemoveScopes", p->soap_type() == SOAP_TYPE__tds__RemoveScopes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__RemoveScopes * SOAP_FMAC4 soap_get__tds__RemoveScopes(struct soap*, _tds__RemoveScopes *, const char*, const char*); - -inline int soap_read__tds__RemoveScopes(struct soap *soap, _tds__RemoveScopes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__RemoveScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__RemoveScopes(struct soap *soap, const char *URL, _tds__RemoveScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__RemoveScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__RemoveScopes(struct soap *soap, _tds__RemoveScopes *p) -{ - if (::soap_read__tds__RemoveScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__AddScopesResponse_DEFINED -#define SOAP_TYPE__tds__AddScopesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddScopesResponse(struct soap*, const char*, int, const _tds__AddScopesResponse *, const char*); -SOAP_FMAC3 _tds__AddScopesResponse * SOAP_FMAC4 soap_in__tds__AddScopesResponse(struct soap*, const char*, _tds__AddScopesResponse *, const char*); -SOAP_FMAC1 _tds__AddScopesResponse * SOAP_FMAC2 soap_instantiate__tds__AddScopesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__AddScopesResponse * soap_new__tds__AddScopesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__AddScopesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__AddScopesResponse * soap_new_req__tds__AddScopesResponse( - struct soap *soap) -{ - _tds__AddScopesResponse *_p = ::soap_new__tds__AddScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__AddScopesResponse * soap_new_set__tds__AddScopesResponse( - struct soap *soap) -{ - _tds__AddScopesResponse *_p = ::soap_new__tds__AddScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__AddScopesResponse(struct soap *soap, _tds__AddScopesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:AddScopesResponse", p->soap_type() == SOAP_TYPE__tds__AddScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__AddScopesResponse(struct soap *soap, const char *URL, _tds__AddScopesResponse 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, "tds:AddScopesResponse", p->soap_type() == SOAP_TYPE__tds__AddScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__AddScopesResponse(struct soap *soap, const char *URL, _tds__AddScopesResponse 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, "tds:AddScopesResponse", p->soap_type() == SOAP_TYPE__tds__AddScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__AddScopesResponse(struct soap *soap, const char *URL, _tds__AddScopesResponse 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, "tds:AddScopesResponse", p->soap_type() == SOAP_TYPE__tds__AddScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__AddScopesResponse * SOAP_FMAC4 soap_get__tds__AddScopesResponse(struct soap*, _tds__AddScopesResponse *, const char*, const char*); - -inline int soap_read__tds__AddScopesResponse(struct soap *soap, _tds__AddScopesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__AddScopesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__AddScopesResponse(struct soap *soap, const char *URL, _tds__AddScopesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__AddScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__AddScopesResponse(struct soap *soap, _tds__AddScopesResponse *p) -{ - if (::soap_read__tds__AddScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__AddScopes_DEFINED -#define SOAP_TYPE__tds__AddScopes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__AddScopes(struct soap*, const char*, int, const _tds__AddScopes *, const char*); -SOAP_FMAC3 _tds__AddScopes * SOAP_FMAC4 soap_in__tds__AddScopes(struct soap*, const char*, _tds__AddScopes *, const char*); -SOAP_FMAC1 _tds__AddScopes * SOAP_FMAC2 soap_instantiate__tds__AddScopes(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__AddScopes * soap_new__tds__AddScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__AddScopes(soap, n, NULL, NULL, NULL); -} - -inline _tds__AddScopes * soap_new_req__tds__AddScopes( - struct soap *soap, - const std::vector & ScopeItem) -{ - _tds__AddScopes *_p = ::soap_new__tds__AddScopes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__AddScopes::ScopeItem = ScopeItem; - } - return _p; -} - -inline _tds__AddScopes * soap_new_set__tds__AddScopes( - struct soap *soap, - const std::vector & ScopeItem) -{ - _tds__AddScopes *_p = ::soap_new__tds__AddScopes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__AddScopes::ScopeItem = ScopeItem; - } - return _p; -} - -inline int soap_write__tds__AddScopes(struct soap *soap, _tds__AddScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:AddScopes", p->soap_type() == SOAP_TYPE__tds__AddScopes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__AddScopes(struct soap *soap, const char *URL, _tds__AddScopes 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, "tds:AddScopes", p->soap_type() == SOAP_TYPE__tds__AddScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__AddScopes(struct soap *soap, const char *URL, _tds__AddScopes 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, "tds:AddScopes", p->soap_type() == SOAP_TYPE__tds__AddScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__AddScopes(struct soap *soap, const char *URL, _tds__AddScopes 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, "tds:AddScopes", p->soap_type() == SOAP_TYPE__tds__AddScopes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__AddScopes * SOAP_FMAC4 soap_get__tds__AddScopes(struct soap*, _tds__AddScopes *, const char*, const char*); - -inline int soap_read__tds__AddScopes(struct soap *soap, _tds__AddScopes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__AddScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__AddScopes(struct soap *soap, const char *URL, _tds__AddScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__AddScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__AddScopes(struct soap *soap, _tds__AddScopes *p) -{ - if (::soap_read__tds__AddScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetScopesResponse_DEFINED -#define SOAP_TYPE__tds__SetScopesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetScopesResponse(struct soap*, const char*, int, const _tds__SetScopesResponse *, const char*); -SOAP_FMAC3 _tds__SetScopesResponse * SOAP_FMAC4 soap_in__tds__SetScopesResponse(struct soap*, const char*, _tds__SetScopesResponse *, const char*); -SOAP_FMAC1 _tds__SetScopesResponse * SOAP_FMAC2 soap_instantiate__tds__SetScopesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetScopesResponse * soap_new__tds__SetScopesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetScopesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetScopesResponse * soap_new_req__tds__SetScopesResponse( - struct soap *soap) -{ - _tds__SetScopesResponse *_p = ::soap_new__tds__SetScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetScopesResponse * soap_new_set__tds__SetScopesResponse( - struct soap *soap) -{ - _tds__SetScopesResponse *_p = ::soap_new__tds__SetScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetScopesResponse(struct soap *soap, _tds__SetScopesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetScopesResponse", p->soap_type() == SOAP_TYPE__tds__SetScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetScopesResponse(struct soap *soap, const char *URL, _tds__SetScopesResponse 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, "tds:SetScopesResponse", p->soap_type() == SOAP_TYPE__tds__SetScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetScopesResponse(struct soap *soap, const char *URL, _tds__SetScopesResponse 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, "tds:SetScopesResponse", p->soap_type() == SOAP_TYPE__tds__SetScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetScopesResponse(struct soap *soap, const char *URL, _tds__SetScopesResponse 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, "tds:SetScopesResponse", p->soap_type() == SOAP_TYPE__tds__SetScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetScopesResponse * SOAP_FMAC4 soap_get__tds__SetScopesResponse(struct soap*, _tds__SetScopesResponse *, const char*, const char*); - -inline int soap_read__tds__SetScopesResponse(struct soap *soap, _tds__SetScopesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetScopesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetScopesResponse(struct soap *soap, const char *URL, _tds__SetScopesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetScopesResponse(struct soap *soap, _tds__SetScopesResponse *p) -{ - if (::soap_read__tds__SetScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetScopes_DEFINED -#define SOAP_TYPE__tds__SetScopes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetScopes(struct soap*, const char*, int, const _tds__SetScopes *, const char*); -SOAP_FMAC3 _tds__SetScopes * SOAP_FMAC4 soap_in__tds__SetScopes(struct soap*, const char*, _tds__SetScopes *, const char*); -SOAP_FMAC1 _tds__SetScopes * SOAP_FMAC2 soap_instantiate__tds__SetScopes(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetScopes * soap_new__tds__SetScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetScopes(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetScopes * soap_new_req__tds__SetScopes( - struct soap *soap, - const std::vector & Scopes) -{ - _tds__SetScopes *_p = ::soap_new__tds__SetScopes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetScopes::Scopes = Scopes; - } - return _p; -} - -inline _tds__SetScopes * soap_new_set__tds__SetScopes( - struct soap *soap, - const std::vector & Scopes) -{ - _tds__SetScopes *_p = ::soap_new__tds__SetScopes(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetScopes::Scopes = Scopes; - } - return _p; -} - -inline int soap_write__tds__SetScopes(struct soap *soap, _tds__SetScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetScopes", p->soap_type() == SOAP_TYPE__tds__SetScopes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetScopes(struct soap *soap, const char *URL, _tds__SetScopes 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, "tds:SetScopes", p->soap_type() == SOAP_TYPE__tds__SetScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetScopes(struct soap *soap, const char *URL, _tds__SetScopes 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, "tds:SetScopes", p->soap_type() == SOAP_TYPE__tds__SetScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetScopes(struct soap *soap, const char *URL, _tds__SetScopes 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, "tds:SetScopes", p->soap_type() == SOAP_TYPE__tds__SetScopes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetScopes * SOAP_FMAC4 soap_get__tds__SetScopes(struct soap*, _tds__SetScopes *, const char*, const char*); - -inline int soap_read__tds__SetScopes(struct soap *soap, _tds__SetScopes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetScopes(struct soap *soap, const char *URL, _tds__SetScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetScopes(struct soap *soap, _tds__SetScopes *p) -{ - if (::soap_read__tds__SetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetScopesResponse_DEFINED -#define SOAP_TYPE__tds__GetScopesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetScopesResponse(struct soap*, const char*, int, const _tds__GetScopesResponse *, const char*); -SOAP_FMAC3 _tds__GetScopesResponse * SOAP_FMAC4 soap_in__tds__GetScopesResponse(struct soap*, const char*, _tds__GetScopesResponse *, const char*); -SOAP_FMAC1 _tds__GetScopesResponse * SOAP_FMAC2 soap_instantiate__tds__GetScopesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetScopesResponse * soap_new__tds__GetScopesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetScopesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetScopesResponse * soap_new_req__tds__GetScopesResponse( - struct soap *soap, - const std::vector & Scopes) -{ - _tds__GetScopesResponse *_p = ::soap_new__tds__GetScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetScopesResponse::Scopes = Scopes; - } - return _p; -} - -inline _tds__GetScopesResponse * soap_new_set__tds__GetScopesResponse( - struct soap *soap, - const std::vector & Scopes) -{ - _tds__GetScopesResponse *_p = ::soap_new__tds__GetScopesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetScopesResponse::Scopes = Scopes; - } - return _p; -} - -inline int soap_write__tds__GetScopesResponse(struct soap *soap, _tds__GetScopesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetScopesResponse", p->soap_type() == SOAP_TYPE__tds__GetScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetScopesResponse(struct soap *soap, const char *URL, _tds__GetScopesResponse 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, "tds:GetScopesResponse", p->soap_type() == SOAP_TYPE__tds__GetScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetScopesResponse(struct soap *soap, const char *URL, _tds__GetScopesResponse 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, "tds:GetScopesResponse", p->soap_type() == SOAP_TYPE__tds__GetScopesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetScopesResponse(struct soap *soap, const char *URL, _tds__GetScopesResponse 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, "tds:GetScopesResponse", p->soap_type() == SOAP_TYPE__tds__GetScopesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetScopesResponse * SOAP_FMAC4 soap_get__tds__GetScopesResponse(struct soap*, _tds__GetScopesResponse *, const char*, const char*); - -inline int soap_read__tds__GetScopesResponse(struct soap *soap, _tds__GetScopesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetScopesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetScopesResponse(struct soap *soap, const char *URL, _tds__GetScopesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetScopesResponse(struct soap *soap, _tds__GetScopesResponse *p) -{ - if (::soap_read__tds__GetScopesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetScopes_DEFINED -#define SOAP_TYPE__tds__GetScopes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetScopes(struct soap*, const char*, int, const _tds__GetScopes *, const char*); -SOAP_FMAC3 _tds__GetScopes * SOAP_FMAC4 soap_in__tds__GetScopes(struct soap*, const char*, _tds__GetScopes *, const char*); -SOAP_FMAC1 _tds__GetScopes * SOAP_FMAC2 soap_instantiate__tds__GetScopes(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetScopes * soap_new__tds__GetScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetScopes(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetScopes * soap_new_req__tds__GetScopes( - struct soap *soap) -{ - _tds__GetScopes *_p = ::soap_new__tds__GetScopes(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetScopes * soap_new_set__tds__GetScopes( - struct soap *soap) -{ - _tds__GetScopes *_p = ::soap_new__tds__GetScopes(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetScopes(struct soap *soap, _tds__GetScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetScopes", p->soap_type() == SOAP_TYPE__tds__GetScopes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetScopes(struct soap *soap, const char *URL, _tds__GetScopes 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, "tds:GetScopes", p->soap_type() == SOAP_TYPE__tds__GetScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetScopes(struct soap *soap, const char *URL, _tds__GetScopes 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, "tds:GetScopes", p->soap_type() == SOAP_TYPE__tds__GetScopes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetScopes(struct soap *soap, const char *URL, _tds__GetScopes 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, "tds:GetScopes", p->soap_type() == SOAP_TYPE__tds__GetScopes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetScopes * SOAP_FMAC4 soap_get__tds__GetScopes(struct soap*, _tds__GetScopes *, const char*, const char*); - -inline int soap_read__tds__GetScopes(struct soap *soap, _tds__GetScopes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetScopes(struct soap *soap, const char *URL, _tds__GetScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetScopes(struct soap *soap, _tds__GetScopes *p) -{ - if (::soap_read__tds__GetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemLogResponse_DEFINED -#define SOAP_TYPE__tds__GetSystemLogResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemLogResponse(struct soap*, const char*, int, const _tds__GetSystemLogResponse *, const char*); -SOAP_FMAC3 _tds__GetSystemLogResponse * SOAP_FMAC4 soap_in__tds__GetSystemLogResponse(struct soap*, const char*, _tds__GetSystemLogResponse *, const char*); -SOAP_FMAC1 _tds__GetSystemLogResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemLogResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemLogResponse * soap_new__tds__GetSystemLogResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemLogResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemLogResponse * soap_new_req__tds__GetSystemLogResponse( - struct soap *soap, - tt__SystemLog *SystemLog) -{ - _tds__GetSystemLogResponse *_p = ::soap_new__tds__GetSystemLogResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemLogResponse::SystemLog = SystemLog; - } - return _p; -} - -inline _tds__GetSystemLogResponse * soap_new_set__tds__GetSystemLogResponse( - struct soap *soap, - tt__SystemLog *SystemLog) -{ - _tds__GetSystemLogResponse *_p = ::soap_new__tds__GetSystemLogResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemLogResponse::SystemLog = SystemLog; - } - return _p; -} - -inline int soap_write__tds__GetSystemLogResponse(struct soap *soap, _tds__GetSystemLogResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemLogResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemLogResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemLogResponse(struct soap *soap, const char *URL, _tds__GetSystemLogResponse 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, "tds:GetSystemLogResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemLogResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemLogResponse(struct soap *soap, const char *URL, _tds__GetSystemLogResponse 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, "tds:GetSystemLogResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemLogResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemLogResponse(struct soap *soap, const char *URL, _tds__GetSystemLogResponse 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, "tds:GetSystemLogResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemLogResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemLogResponse * SOAP_FMAC4 soap_get__tds__GetSystemLogResponse(struct soap*, _tds__GetSystemLogResponse *, const char*, const char*); - -inline int soap_read__tds__GetSystemLogResponse(struct soap *soap, _tds__GetSystemLogResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemLogResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemLogResponse(struct soap *soap, const char *URL, _tds__GetSystemLogResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemLogResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemLogResponse(struct soap *soap, _tds__GetSystemLogResponse *p) -{ - if (::soap_read__tds__GetSystemLogResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemLog_DEFINED -#define SOAP_TYPE__tds__GetSystemLog_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemLog(struct soap*, const char*, int, const _tds__GetSystemLog *, const char*); -SOAP_FMAC3 _tds__GetSystemLog * SOAP_FMAC4 soap_in__tds__GetSystemLog(struct soap*, const char*, _tds__GetSystemLog *, const char*); -SOAP_FMAC1 _tds__GetSystemLog * SOAP_FMAC2 soap_instantiate__tds__GetSystemLog(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemLog * soap_new__tds__GetSystemLog(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemLog(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemLog * soap_new_req__tds__GetSystemLog( - struct soap *soap, - enum tt__SystemLogType LogType) -{ - _tds__GetSystemLog *_p = ::soap_new__tds__GetSystemLog(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemLog::LogType = LogType; - } - return _p; -} - -inline _tds__GetSystemLog * soap_new_set__tds__GetSystemLog( - struct soap *soap, - enum tt__SystemLogType LogType) -{ - _tds__GetSystemLog *_p = ::soap_new__tds__GetSystemLog(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemLog::LogType = LogType; - } - return _p; -} - -inline int soap_write__tds__GetSystemLog(struct soap *soap, _tds__GetSystemLog const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemLog", p->soap_type() == SOAP_TYPE__tds__GetSystemLog ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemLog(struct soap *soap, const char *URL, _tds__GetSystemLog 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, "tds:GetSystemLog", p->soap_type() == SOAP_TYPE__tds__GetSystemLog ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemLog(struct soap *soap, const char *URL, _tds__GetSystemLog 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, "tds:GetSystemLog", p->soap_type() == SOAP_TYPE__tds__GetSystemLog ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemLog(struct soap *soap, const char *URL, _tds__GetSystemLog 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, "tds:GetSystemLog", p->soap_type() == SOAP_TYPE__tds__GetSystemLog ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemLog * SOAP_FMAC4 soap_get__tds__GetSystemLog(struct soap*, _tds__GetSystemLog *, const char*, const char*); - -inline int soap_read__tds__GetSystemLog(struct soap *soap, _tds__GetSystemLog *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemLog(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemLog(struct soap *soap, const char *URL, _tds__GetSystemLog *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemLog(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemLog(struct soap *soap, _tds__GetSystemLog *p) -{ - if (::soap_read__tds__GetSystemLog(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemSupportInformationResponse_DEFINED -#define SOAP_TYPE__tds__GetSystemSupportInformationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemSupportInformationResponse(struct soap*, const char*, int, const _tds__GetSystemSupportInformationResponse *, const char*); -SOAP_FMAC3 _tds__GetSystemSupportInformationResponse * SOAP_FMAC4 soap_in__tds__GetSystemSupportInformationResponse(struct soap*, const char*, _tds__GetSystemSupportInformationResponse *, const char*); -SOAP_FMAC1 _tds__GetSystemSupportInformationResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemSupportInformationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemSupportInformationResponse * soap_new__tds__GetSystemSupportInformationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemSupportInformationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemSupportInformationResponse * soap_new_req__tds__GetSystemSupportInformationResponse( - struct soap *soap, - tt__SupportInformation *SupportInformation) -{ - _tds__GetSystemSupportInformationResponse *_p = ::soap_new__tds__GetSystemSupportInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemSupportInformationResponse::SupportInformation = SupportInformation; - } - return _p; -} - -inline _tds__GetSystemSupportInformationResponse * soap_new_set__tds__GetSystemSupportInformationResponse( - struct soap *soap, - tt__SupportInformation *SupportInformation) -{ - _tds__GetSystemSupportInformationResponse *_p = ::soap_new__tds__GetSystemSupportInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemSupportInformationResponse::SupportInformation = SupportInformation; - } - return _p; -} - -inline int soap_write__tds__GetSystemSupportInformationResponse(struct soap *soap, _tds__GetSystemSupportInformationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemSupportInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemSupportInformationResponse(struct soap *soap, const char *URL, _tds__GetSystemSupportInformationResponse 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, "tds:GetSystemSupportInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemSupportInformationResponse(struct soap *soap, const char *URL, _tds__GetSystemSupportInformationResponse 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, "tds:GetSystemSupportInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemSupportInformationResponse(struct soap *soap, const char *URL, _tds__GetSystemSupportInformationResponse 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, "tds:GetSystemSupportInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemSupportInformationResponse * SOAP_FMAC4 soap_get__tds__GetSystemSupportInformationResponse(struct soap*, _tds__GetSystemSupportInformationResponse *, const char*, const char*); - -inline int soap_read__tds__GetSystemSupportInformationResponse(struct soap *soap, _tds__GetSystemSupportInformationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemSupportInformationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemSupportInformationResponse(struct soap *soap, const char *URL, _tds__GetSystemSupportInformationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemSupportInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemSupportInformationResponse(struct soap *soap, _tds__GetSystemSupportInformationResponse *p) -{ - if (::soap_read__tds__GetSystemSupportInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemSupportInformation_DEFINED -#define SOAP_TYPE__tds__GetSystemSupportInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemSupportInformation(struct soap*, const char*, int, const _tds__GetSystemSupportInformation *, const char*); -SOAP_FMAC3 _tds__GetSystemSupportInformation * SOAP_FMAC4 soap_in__tds__GetSystemSupportInformation(struct soap*, const char*, _tds__GetSystemSupportInformation *, const char*); -SOAP_FMAC1 _tds__GetSystemSupportInformation * SOAP_FMAC2 soap_instantiate__tds__GetSystemSupportInformation(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemSupportInformation * soap_new__tds__GetSystemSupportInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemSupportInformation(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemSupportInformation * soap_new_req__tds__GetSystemSupportInformation( - struct soap *soap) -{ - _tds__GetSystemSupportInformation *_p = ::soap_new__tds__GetSystemSupportInformation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetSystemSupportInformation * soap_new_set__tds__GetSystemSupportInformation( - struct soap *soap) -{ - _tds__GetSystemSupportInformation *_p = ::soap_new__tds__GetSystemSupportInformation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetSystemSupportInformation(struct soap *soap, _tds__GetSystemSupportInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemSupportInformation", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemSupportInformation(struct soap *soap, const char *URL, _tds__GetSystemSupportInformation 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, "tds:GetSystemSupportInformation", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemSupportInformation(struct soap *soap, const char *URL, _tds__GetSystemSupportInformation 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, "tds:GetSystemSupportInformation", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemSupportInformation(struct soap *soap, const char *URL, _tds__GetSystemSupportInformation 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, "tds:GetSystemSupportInformation", p->soap_type() == SOAP_TYPE__tds__GetSystemSupportInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemSupportInformation * SOAP_FMAC4 soap_get__tds__GetSystemSupportInformation(struct soap*, _tds__GetSystemSupportInformation *, const char*, const char*); - -inline int soap_read__tds__GetSystemSupportInformation(struct soap *soap, _tds__GetSystemSupportInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemSupportInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemSupportInformation(struct soap *soap, const char *URL, _tds__GetSystemSupportInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemSupportInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemSupportInformation(struct soap *soap, _tds__GetSystemSupportInformation *p) -{ - if (::soap_read__tds__GetSystemSupportInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemBackupResponse_DEFINED -#define SOAP_TYPE__tds__GetSystemBackupResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemBackupResponse(struct soap*, const char*, int, const _tds__GetSystemBackupResponse *, const char*); -SOAP_FMAC3 _tds__GetSystemBackupResponse * SOAP_FMAC4 soap_in__tds__GetSystemBackupResponse(struct soap*, const char*, _tds__GetSystemBackupResponse *, const char*); -SOAP_FMAC1 _tds__GetSystemBackupResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemBackupResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemBackupResponse * soap_new__tds__GetSystemBackupResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemBackupResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemBackupResponse * soap_new_req__tds__GetSystemBackupResponse( - struct soap *soap, - const std::vector & BackupFiles) -{ - _tds__GetSystemBackupResponse *_p = ::soap_new__tds__GetSystemBackupResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemBackupResponse::BackupFiles = BackupFiles; - } - return _p; -} - -inline _tds__GetSystemBackupResponse * soap_new_set__tds__GetSystemBackupResponse( - struct soap *soap, - const std::vector & BackupFiles) -{ - _tds__GetSystemBackupResponse *_p = ::soap_new__tds__GetSystemBackupResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemBackupResponse::BackupFiles = BackupFiles; - } - return _p; -} - -inline int soap_write__tds__GetSystemBackupResponse(struct soap *soap, _tds__GetSystemBackupResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemBackupResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemBackupResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemBackupResponse(struct soap *soap, const char *URL, _tds__GetSystemBackupResponse 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, "tds:GetSystemBackupResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemBackupResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemBackupResponse(struct soap *soap, const char *URL, _tds__GetSystemBackupResponse 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, "tds:GetSystemBackupResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemBackupResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemBackupResponse(struct soap *soap, const char *URL, _tds__GetSystemBackupResponse 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, "tds:GetSystemBackupResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemBackupResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemBackupResponse * SOAP_FMAC4 soap_get__tds__GetSystemBackupResponse(struct soap*, _tds__GetSystemBackupResponse *, const char*, const char*); - -inline int soap_read__tds__GetSystemBackupResponse(struct soap *soap, _tds__GetSystemBackupResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemBackupResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemBackupResponse(struct soap *soap, const char *URL, _tds__GetSystemBackupResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemBackupResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemBackupResponse(struct soap *soap, _tds__GetSystemBackupResponse *p) -{ - if (::soap_read__tds__GetSystemBackupResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemBackup_DEFINED -#define SOAP_TYPE__tds__GetSystemBackup_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemBackup(struct soap*, const char*, int, const _tds__GetSystemBackup *, const char*); -SOAP_FMAC3 _tds__GetSystemBackup * SOAP_FMAC4 soap_in__tds__GetSystemBackup(struct soap*, const char*, _tds__GetSystemBackup *, const char*); -SOAP_FMAC1 _tds__GetSystemBackup * SOAP_FMAC2 soap_instantiate__tds__GetSystemBackup(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemBackup * soap_new__tds__GetSystemBackup(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemBackup(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemBackup * soap_new_req__tds__GetSystemBackup( - struct soap *soap) -{ - _tds__GetSystemBackup *_p = ::soap_new__tds__GetSystemBackup(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetSystemBackup * soap_new_set__tds__GetSystemBackup( - struct soap *soap) -{ - _tds__GetSystemBackup *_p = ::soap_new__tds__GetSystemBackup(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetSystemBackup(struct soap *soap, _tds__GetSystemBackup const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemBackup", p->soap_type() == SOAP_TYPE__tds__GetSystemBackup ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemBackup(struct soap *soap, const char *URL, _tds__GetSystemBackup 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, "tds:GetSystemBackup", p->soap_type() == SOAP_TYPE__tds__GetSystemBackup ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemBackup(struct soap *soap, const char *URL, _tds__GetSystemBackup 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, "tds:GetSystemBackup", p->soap_type() == SOAP_TYPE__tds__GetSystemBackup ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemBackup(struct soap *soap, const char *URL, _tds__GetSystemBackup 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, "tds:GetSystemBackup", p->soap_type() == SOAP_TYPE__tds__GetSystemBackup ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemBackup * SOAP_FMAC4 soap_get__tds__GetSystemBackup(struct soap*, _tds__GetSystemBackup *, const char*, const char*); - -inline int soap_read__tds__GetSystemBackup(struct soap *soap, _tds__GetSystemBackup *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemBackup(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemBackup(struct soap *soap, const char *URL, _tds__GetSystemBackup *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemBackup(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemBackup(struct soap *soap, _tds__GetSystemBackup *p) -{ - if (::soap_read__tds__GetSystemBackup(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__RestoreSystemResponse_DEFINED -#define SOAP_TYPE__tds__RestoreSystemResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RestoreSystemResponse(struct soap*, const char*, int, const _tds__RestoreSystemResponse *, const char*); -SOAP_FMAC3 _tds__RestoreSystemResponse * SOAP_FMAC4 soap_in__tds__RestoreSystemResponse(struct soap*, const char*, _tds__RestoreSystemResponse *, const char*); -SOAP_FMAC1 _tds__RestoreSystemResponse * SOAP_FMAC2 soap_instantiate__tds__RestoreSystemResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__RestoreSystemResponse * soap_new__tds__RestoreSystemResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__RestoreSystemResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__RestoreSystemResponse * soap_new_req__tds__RestoreSystemResponse( - struct soap *soap) -{ - _tds__RestoreSystemResponse *_p = ::soap_new__tds__RestoreSystemResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__RestoreSystemResponse * soap_new_set__tds__RestoreSystemResponse( - struct soap *soap) -{ - _tds__RestoreSystemResponse *_p = ::soap_new__tds__RestoreSystemResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__RestoreSystemResponse(struct soap *soap, _tds__RestoreSystemResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:RestoreSystemResponse", p->soap_type() == SOAP_TYPE__tds__RestoreSystemResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__RestoreSystemResponse(struct soap *soap, const char *URL, _tds__RestoreSystemResponse 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, "tds:RestoreSystemResponse", p->soap_type() == SOAP_TYPE__tds__RestoreSystemResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__RestoreSystemResponse(struct soap *soap, const char *URL, _tds__RestoreSystemResponse 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, "tds:RestoreSystemResponse", p->soap_type() == SOAP_TYPE__tds__RestoreSystemResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__RestoreSystemResponse(struct soap *soap, const char *URL, _tds__RestoreSystemResponse 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, "tds:RestoreSystemResponse", p->soap_type() == SOAP_TYPE__tds__RestoreSystemResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__RestoreSystemResponse * SOAP_FMAC4 soap_get__tds__RestoreSystemResponse(struct soap*, _tds__RestoreSystemResponse *, const char*, const char*); - -inline int soap_read__tds__RestoreSystemResponse(struct soap *soap, _tds__RestoreSystemResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__RestoreSystemResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__RestoreSystemResponse(struct soap *soap, const char *URL, _tds__RestoreSystemResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__RestoreSystemResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__RestoreSystemResponse(struct soap *soap, _tds__RestoreSystemResponse *p) -{ - if (::soap_read__tds__RestoreSystemResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__RestoreSystem_DEFINED -#define SOAP_TYPE__tds__RestoreSystem_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__RestoreSystem(struct soap*, const char*, int, const _tds__RestoreSystem *, const char*); -SOAP_FMAC3 _tds__RestoreSystem * SOAP_FMAC4 soap_in__tds__RestoreSystem(struct soap*, const char*, _tds__RestoreSystem *, const char*); -SOAP_FMAC1 _tds__RestoreSystem * SOAP_FMAC2 soap_instantiate__tds__RestoreSystem(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__RestoreSystem * soap_new__tds__RestoreSystem(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__RestoreSystem(soap, n, NULL, NULL, NULL); -} - -inline _tds__RestoreSystem * soap_new_req__tds__RestoreSystem( - struct soap *soap, - const std::vector & BackupFiles) -{ - _tds__RestoreSystem *_p = ::soap_new__tds__RestoreSystem(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__RestoreSystem::BackupFiles = BackupFiles; - } - return _p; -} - -inline _tds__RestoreSystem * soap_new_set__tds__RestoreSystem( - struct soap *soap, - const std::vector & BackupFiles) -{ - _tds__RestoreSystem *_p = ::soap_new__tds__RestoreSystem(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__RestoreSystem::BackupFiles = BackupFiles; - } - return _p; -} - -inline int soap_write__tds__RestoreSystem(struct soap *soap, _tds__RestoreSystem const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:RestoreSystem", p->soap_type() == SOAP_TYPE__tds__RestoreSystem ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__RestoreSystem(struct soap *soap, const char *URL, _tds__RestoreSystem 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, "tds:RestoreSystem", p->soap_type() == SOAP_TYPE__tds__RestoreSystem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__RestoreSystem(struct soap *soap, const char *URL, _tds__RestoreSystem 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, "tds:RestoreSystem", p->soap_type() == SOAP_TYPE__tds__RestoreSystem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__RestoreSystem(struct soap *soap, const char *URL, _tds__RestoreSystem 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, "tds:RestoreSystem", p->soap_type() == SOAP_TYPE__tds__RestoreSystem ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__RestoreSystem * SOAP_FMAC4 soap_get__tds__RestoreSystem(struct soap*, _tds__RestoreSystem *, const char*, const char*); - -inline int soap_read__tds__RestoreSystem(struct soap *soap, _tds__RestoreSystem *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__RestoreSystem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__RestoreSystem(struct soap *soap, const char *URL, _tds__RestoreSystem *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__RestoreSystem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__RestoreSystem(struct soap *soap, _tds__RestoreSystem *p) -{ - if (::soap_read__tds__RestoreSystem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SystemRebootResponse_DEFINED -#define SOAP_TYPE__tds__SystemRebootResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SystemRebootResponse(struct soap*, const char*, int, const _tds__SystemRebootResponse *, const char*); -SOAP_FMAC3 _tds__SystemRebootResponse * SOAP_FMAC4 soap_in__tds__SystemRebootResponse(struct soap*, const char*, _tds__SystemRebootResponse *, const char*); -SOAP_FMAC1 _tds__SystemRebootResponse * SOAP_FMAC2 soap_instantiate__tds__SystemRebootResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SystemRebootResponse * soap_new__tds__SystemRebootResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SystemRebootResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SystemRebootResponse * soap_new_req__tds__SystemRebootResponse( - struct soap *soap, - const std::string& Message) -{ - _tds__SystemRebootResponse *_p = ::soap_new__tds__SystemRebootResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SystemRebootResponse::Message = Message; - } - return _p; -} - -inline _tds__SystemRebootResponse * soap_new_set__tds__SystemRebootResponse( - struct soap *soap, - const std::string& Message) -{ - _tds__SystemRebootResponse *_p = ::soap_new__tds__SystemRebootResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SystemRebootResponse::Message = Message; - } - return _p; -} - -inline int soap_write__tds__SystemRebootResponse(struct soap *soap, _tds__SystemRebootResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SystemRebootResponse", p->soap_type() == SOAP_TYPE__tds__SystemRebootResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SystemRebootResponse(struct soap *soap, const char *URL, _tds__SystemRebootResponse 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, "tds:SystemRebootResponse", p->soap_type() == SOAP_TYPE__tds__SystemRebootResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SystemRebootResponse(struct soap *soap, const char *URL, _tds__SystemRebootResponse 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, "tds:SystemRebootResponse", p->soap_type() == SOAP_TYPE__tds__SystemRebootResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SystemRebootResponse(struct soap *soap, const char *URL, _tds__SystemRebootResponse 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, "tds:SystemRebootResponse", p->soap_type() == SOAP_TYPE__tds__SystemRebootResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SystemRebootResponse * SOAP_FMAC4 soap_get__tds__SystemRebootResponse(struct soap*, _tds__SystemRebootResponse *, const char*, const char*); - -inline int soap_read__tds__SystemRebootResponse(struct soap *soap, _tds__SystemRebootResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SystemRebootResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SystemRebootResponse(struct soap *soap, const char *URL, _tds__SystemRebootResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SystemRebootResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SystemRebootResponse(struct soap *soap, _tds__SystemRebootResponse *p) -{ - if (::soap_read__tds__SystemRebootResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SystemReboot_DEFINED -#define SOAP_TYPE__tds__SystemReboot_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SystemReboot(struct soap*, const char*, int, const _tds__SystemReboot *, const char*); -SOAP_FMAC3 _tds__SystemReboot * SOAP_FMAC4 soap_in__tds__SystemReboot(struct soap*, const char*, _tds__SystemReboot *, const char*); -SOAP_FMAC1 _tds__SystemReboot * SOAP_FMAC2 soap_instantiate__tds__SystemReboot(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SystemReboot * soap_new__tds__SystemReboot(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SystemReboot(soap, n, NULL, NULL, NULL); -} - -inline _tds__SystemReboot * soap_new_req__tds__SystemReboot( - struct soap *soap) -{ - _tds__SystemReboot *_p = ::soap_new__tds__SystemReboot(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SystemReboot * soap_new_set__tds__SystemReboot( - struct soap *soap) -{ - _tds__SystemReboot *_p = ::soap_new__tds__SystemReboot(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SystemReboot(struct soap *soap, _tds__SystemReboot const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SystemReboot", p->soap_type() == SOAP_TYPE__tds__SystemReboot ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SystemReboot(struct soap *soap, const char *URL, _tds__SystemReboot 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, "tds:SystemReboot", p->soap_type() == SOAP_TYPE__tds__SystemReboot ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SystemReboot(struct soap *soap, const char *URL, _tds__SystemReboot 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, "tds:SystemReboot", p->soap_type() == SOAP_TYPE__tds__SystemReboot ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SystemReboot(struct soap *soap, const char *URL, _tds__SystemReboot 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, "tds:SystemReboot", p->soap_type() == SOAP_TYPE__tds__SystemReboot ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SystemReboot * SOAP_FMAC4 soap_get__tds__SystemReboot(struct soap*, _tds__SystemReboot *, const char*, const char*); - -inline int soap_read__tds__SystemReboot(struct soap *soap, _tds__SystemReboot *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SystemReboot(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SystemReboot(struct soap *soap, const char *URL, _tds__SystemReboot *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SystemReboot(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SystemReboot(struct soap *soap, _tds__SystemReboot *p) -{ - if (::soap_read__tds__SystemReboot(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__UpgradeSystemFirmwareResponse_DEFINED -#define SOAP_TYPE__tds__UpgradeSystemFirmwareResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__UpgradeSystemFirmwareResponse(struct soap*, const char*, int, const _tds__UpgradeSystemFirmwareResponse *, const char*); -SOAP_FMAC3 _tds__UpgradeSystemFirmwareResponse * SOAP_FMAC4 soap_in__tds__UpgradeSystemFirmwareResponse(struct soap*, const char*, _tds__UpgradeSystemFirmwareResponse *, const char*); -SOAP_FMAC1 _tds__UpgradeSystemFirmwareResponse * SOAP_FMAC2 soap_instantiate__tds__UpgradeSystemFirmwareResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__UpgradeSystemFirmwareResponse * soap_new__tds__UpgradeSystemFirmwareResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__UpgradeSystemFirmwareResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__UpgradeSystemFirmwareResponse * soap_new_req__tds__UpgradeSystemFirmwareResponse( - struct soap *soap) -{ - _tds__UpgradeSystemFirmwareResponse *_p = ::soap_new__tds__UpgradeSystemFirmwareResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__UpgradeSystemFirmwareResponse * soap_new_set__tds__UpgradeSystemFirmwareResponse( - struct soap *soap, - std::string *Message) -{ - _tds__UpgradeSystemFirmwareResponse *_p = ::soap_new__tds__UpgradeSystemFirmwareResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__UpgradeSystemFirmwareResponse::Message = Message; - } - return _p; -} - -inline int soap_write__tds__UpgradeSystemFirmwareResponse(struct soap *soap, _tds__UpgradeSystemFirmwareResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:UpgradeSystemFirmwareResponse", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmwareResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__UpgradeSystemFirmwareResponse(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmwareResponse 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, "tds:UpgradeSystemFirmwareResponse", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmwareResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__UpgradeSystemFirmwareResponse(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmwareResponse 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, "tds:UpgradeSystemFirmwareResponse", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmwareResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__UpgradeSystemFirmwareResponse(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmwareResponse 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, "tds:UpgradeSystemFirmwareResponse", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmwareResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__UpgradeSystemFirmwareResponse * SOAP_FMAC4 soap_get__tds__UpgradeSystemFirmwareResponse(struct soap*, _tds__UpgradeSystemFirmwareResponse *, const char*, const char*); - -inline int soap_read__tds__UpgradeSystemFirmwareResponse(struct soap *soap, _tds__UpgradeSystemFirmwareResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__UpgradeSystemFirmwareResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__UpgradeSystemFirmwareResponse(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmwareResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__UpgradeSystemFirmwareResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__UpgradeSystemFirmwareResponse(struct soap *soap, _tds__UpgradeSystemFirmwareResponse *p) -{ - if (::soap_read__tds__UpgradeSystemFirmwareResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__UpgradeSystemFirmware_DEFINED -#define SOAP_TYPE__tds__UpgradeSystemFirmware_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__UpgradeSystemFirmware(struct soap*, const char*, int, const _tds__UpgradeSystemFirmware *, const char*); -SOAP_FMAC3 _tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_in__tds__UpgradeSystemFirmware(struct soap*, const char*, _tds__UpgradeSystemFirmware *, const char*); -SOAP_FMAC1 _tds__UpgradeSystemFirmware * SOAP_FMAC2 soap_instantiate__tds__UpgradeSystemFirmware(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__UpgradeSystemFirmware * soap_new__tds__UpgradeSystemFirmware(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__UpgradeSystemFirmware(soap, n, NULL, NULL, NULL); -} - -inline _tds__UpgradeSystemFirmware * soap_new_req__tds__UpgradeSystemFirmware( - struct soap *soap, - tt__AttachmentData *Firmware) -{ - _tds__UpgradeSystemFirmware *_p = ::soap_new__tds__UpgradeSystemFirmware(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__UpgradeSystemFirmware::Firmware = Firmware; - } - return _p; -} - -inline _tds__UpgradeSystemFirmware * soap_new_set__tds__UpgradeSystemFirmware( - struct soap *soap, - tt__AttachmentData *Firmware) -{ - _tds__UpgradeSystemFirmware *_p = ::soap_new__tds__UpgradeSystemFirmware(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__UpgradeSystemFirmware::Firmware = Firmware; - } - return _p; -} - -inline int soap_write__tds__UpgradeSystemFirmware(struct soap *soap, _tds__UpgradeSystemFirmware const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:UpgradeSystemFirmware", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmware ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmware 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, "tds:UpgradeSystemFirmware", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmware ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmware 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, "tds:UpgradeSystemFirmware", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmware ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmware 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, "tds:UpgradeSystemFirmware", p->soap_type() == SOAP_TYPE__tds__UpgradeSystemFirmware ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_get__tds__UpgradeSystemFirmware(struct soap*, _tds__UpgradeSystemFirmware *, const char*, const char*); - -inline int soap_read__tds__UpgradeSystemFirmware(struct soap *soap, _tds__UpgradeSystemFirmware *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__UpgradeSystemFirmware(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, _tds__UpgradeSystemFirmware *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__UpgradeSystemFirmware(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__UpgradeSystemFirmware(struct soap *soap, _tds__UpgradeSystemFirmware *p) -{ - if (::soap_read__tds__UpgradeSystemFirmware(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetSystemFactoryDefaultResponse_DEFINED -#define SOAP_TYPE__tds__SetSystemFactoryDefaultResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemFactoryDefaultResponse(struct soap*, const char*, int, const _tds__SetSystemFactoryDefaultResponse *, const char*); -SOAP_FMAC3 _tds__SetSystemFactoryDefaultResponse * SOAP_FMAC4 soap_in__tds__SetSystemFactoryDefaultResponse(struct soap*, const char*, _tds__SetSystemFactoryDefaultResponse *, const char*); -SOAP_FMAC1 _tds__SetSystemFactoryDefaultResponse * SOAP_FMAC2 soap_instantiate__tds__SetSystemFactoryDefaultResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetSystemFactoryDefaultResponse * soap_new__tds__SetSystemFactoryDefaultResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetSystemFactoryDefaultResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetSystemFactoryDefaultResponse * soap_new_req__tds__SetSystemFactoryDefaultResponse( - struct soap *soap) -{ - _tds__SetSystemFactoryDefaultResponse *_p = ::soap_new__tds__SetSystemFactoryDefaultResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetSystemFactoryDefaultResponse * soap_new_set__tds__SetSystemFactoryDefaultResponse( - struct soap *soap) -{ - _tds__SetSystemFactoryDefaultResponse *_p = ::soap_new__tds__SetSystemFactoryDefaultResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetSystemFactoryDefaultResponse(struct soap *soap, _tds__SetSystemFactoryDefaultResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetSystemFactoryDefaultResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefaultResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetSystemFactoryDefaultResponse(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefaultResponse 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, "tds:SetSystemFactoryDefaultResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefaultResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetSystemFactoryDefaultResponse(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefaultResponse 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, "tds:SetSystemFactoryDefaultResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefaultResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetSystemFactoryDefaultResponse(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefaultResponse 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, "tds:SetSystemFactoryDefaultResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefaultResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetSystemFactoryDefaultResponse * SOAP_FMAC4 soap_get__tds__SetSystemFactoryDefaultResponse(struct soap*, _tds__SetSystemFactoryDefaultResponse *, const char*, const char*); - -inline int soap_read__tds__SetSystemFactoryDefaultResponse(struct soap *soap, _tds__SetSystemFactoryDefaultResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetSystemFactoryDefaultResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetSystemFactoryDefaultResponse(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefaultResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetSystemFactoryDefaultResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetSystemFactoryDefaultResponse(struct soap *soap, _tds__SetSystemFactoryDefaultResponse *p) -{ - if (::soap_read__tds__SetSystemFactoryDefaultResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetSystemFactoryDefault_DEFINED -#define SOAP_TYPE__tds__SetSystemFactoryDefault_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemFactoryDefault(struct soap*, const char*, int, const _tds__SetSystemFactoryDefault *, const char*); -SOAP_FMAC3 _tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_in__tds__SetSystemFactoryDefault(struct soap*, const char*, _tds__SetSystemFactoryDefault *, const char*); -SOAP_FMAC1 _tds__SetSystemFactoryDefault * SOAP_FMAC2 soap_instantiate__tds__SetSystemFactoryDefault(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetSystemFactoryDefault * soap_new__tds__SetSystemFactoryDefault(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetSystemFactoryDefault(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetSystemFactoryDefault * soap_new_req__tds__SetSystemFactoryDefault( - struct soap *soap, - enum tt__FactoryDefaultType FactoryDefault) -{ - _tds__SetSystemFactoryDefault *_p = ::soap_new__tds__SetSystemFactoryDefault(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetSystemFactoryDefault::FactoryDefault = FactoryDefault; - } - return _p; -} - -inline _tds__SetSystemFactoryDefault * soap_new_set__tds__SetSystemFactoryDefault( - struct soap *soap, - enum tt__FactoryDefaultType FactoryDefault) -{ - _tds__SetSystemFactoryDefault *_p = ::soap_new__tds__SetSystemFactoryDefault(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetSystemFactoryDefault::FactoryDefault = FactoryDefault; - } - return _p; -} - -inline int soap_write__tds__SetSystemFactoryDefault(struct soap *soap, _tds__SetSystemFactoryDefault const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetSystemFactoryDefault", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefault ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefault 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, "tds:SetSystemFactoryDefault", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefault ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefault 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, "tds:SetSystemFactoryDefault", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefault ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefault 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, "tds:SetSystemFactoryDefault", p->soap_type() == SOAP_TYPE__tds__SetSystemFactoryDefault ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_get__tds__SetSystemFactoryDefault(struct soap*, _tds__SetSystemFactoryDefault *, const char*, const char*); - -inline int soap_read__tds__SetSystemFactoryDefault(struct soap *soap, _tds__SetSystemFactoryDefault *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetSystemFactoryDefault(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, _tds__SetSystemFactoryDefault *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetSystemFactoryDefault(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetSystemFactoryDefault(struct soap *soap, _tds__SetSystemFactoryDefault *p) -{ - if (::soap_read__tds__SetSystemFactoryDefault(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemDateAndTimeResponse_DEFINED -#define SOAP_TYPE__tds__GetSystemDateAndTimeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemDateAndTimeResponse(struct soap*, const char*, int, const _tds__GetSystemDateAndTimeResponse *, const char*); -SOAP_FMAC3 _tds__GetSystemDateAndTimeResponse * SOAP_FMAC4 soap_in__tds__GetSystemDateAndTimeResponse(struct soap*, const char*, _tds__GetSystemDateAndTimeResponse *, const char*); -SOAP_FMAC1 _tds__GetSystemDateAndTimeResponse * SOAP_FMAC2 soap_instantiate__tds__GetSystemDateAndTimeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemDateAndTimeResponse * soap_new__tds__GetSystemDateAndTimeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemDateAndTimeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemDateAndTimeResponse * soap_new_req__tds__GetSystemDateAndTimeResponse( - struct soap *soap, - tt__SystemDateTime *SystemDateAndTime) -{ - _tds__GetSystemDateAndTimeResponse *_p = ::soap_new__tds__GetSystemDateAndTimeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime = SystemDateAndTime; - } - return _p; -} - -inline _tds__GetSystemDateAndTimeResponse * soap_new_set__tds__GetSystemDateAndTimeResponse( - struct soap *soap, - tt__SystemDateTime *SystemDateAndTime) -{ - _tds__GetSystemDateAndTimeResponse *_p = ::soap_new__tds__GetSystemDateAndTimeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetSystemDateAndTimeResponse::SystemDateAndTime = SystemDateAndTime; - } - return _p; -} - -inline int soap_write__tds__GetSystemDateAndTimeResponse(struct soap *soap, _tds__GetSystemDateAndTimeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__GetSystemDateAndTimeResponse 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, "tds:GetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__GetSystemDateAndTimeResponse 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, "tds:GetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__GetSystemDateAndTimeResponse 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, "tds:GetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemDateAndTimeResponse * SOAP_FMAC4 soap_get__tds__GetSystemDateAndTimeResponse(struct soap*, _tds__GetSystemDateAndTimeResponse *, const char*, const char*); - -inline int soap_read__tds__GetSystemDateAndTimeResponse(struct soap *soap, _tds__GetSystemDateAndTimeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemDateAndTimeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__GetSystemDateAndTimeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemDateAndTimeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemDateAndTimeResponse(struct soap *soap, _tds__GetSystemDateAndTimeResponse *p) -{ - if (::soap_read__tds__GetSystemDateAndTimeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetSystemDateAndTime_DEFINED -#define SOAP_TYPE__tds__GetSystemDateAndTime_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetSystemDateAndTime(struct soap*, const char*, int, const _tds__GetSystemDateAndTime *, const char*); -SOAP_FMAC3 _tds__GetSystemDateAndTime * SOAP_FMAC4 soap_in__tds__GetSystemDateAndTime(struct soap*, const char*, _tds__GetSystemDateAndTime *, const char*); -SOAP_FMAC1 _tds__GetSystemDateAndTime * SOAP_FMAC2 soap_instantiate__tds__GetSystemDateAndTime(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetSystemDateAndTime * soap_new__tds__GetSystemDateAndTime(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetSystemDateAndTime(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetSystemDateAndTime * soap_new_req__tds__GetSystemDateAndTime( - struct soap *soap) -{ - _tds__GetSystemDateAndTime *_p = ::soap_new__tds__GetSystemDateAndTime(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetSystemDateAndTime * soap_new_set__tds__GetSystemDateAndTime( - struct soap *soap) -{ - _tds__GetSystemDateAndTime *_p = ::soap_new__tds__GetSystemDateAndTime(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetSystemDateAndTime(struct soap *soap, _tds__GetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTime ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetSystemDateAndTime(struct soap *soap, const char *URL, _tds__GetSystemDateAndTime 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, "tds:GetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetSystemDateAndTime(struct soap *soap, const char *URL, _tds__GetSystemDateAndTime 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, "tds:GetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetSystemDateAndTime(struct soap *soap, const char *URL, _tds__GetSystemDateAndTime 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, "tds:GetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__GetSystemDateAndTime ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetSystemDateAndTime * SOAP_FMAC4 soap_get__tds__GetSystemDateAndTime(struct soap*, _tds__GetSystemDateAndTime *, const char*, const char*); - -inline int soap_read__tds__GetSystemDateAndTime(struct soap *soap, _tds__GetSystemDateAndTime *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetSystemDateAndTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetSystemDateAndTime(struct soap *soap, const char *URL, _tds__GetSystemDateAndTime *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetSystemDateAndTime(struct soap *soap, _tds__GetSystemDateAndTime *p) -{ - if (::soap_read__tds__GetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetSystemDateAndTimeResponse_DEFINED -#define SOAP_TYPE__tds__SetSystemDateAndTimeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemDateAndTimeResponse(struct soap*, const char*, int, const _tds__SetSystemDateAndTimeResponse *, const char*); -SOAP_FMAC3 _tds__SetSystemDateAndTimeResponse * SOAP_FMAC4 soap_in__tds__SetSystemDateAndTimeResponse(struct soap*, const char*, _tds__SetSystemDateAndTimeResponse *, const char*); -SOAP_FMAC1 _tds__SetSystemDateAndTimeResponse * SOAP_FMAC2 soap_instantiate__tds__SetSystemDateAndTimeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetSystemDateAndTimeResponse * soap_new__tds__SetSystemDateAndTimeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetSystemDateAndTimeResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetSystemDateAndTimeResponse * soap_new_req__tds__SetSystemDateAndTimeResponse( - struct soap *soap) -{ - _tds__SetSystemDateAndTimeResponse *_p = ::soap_new__tds__SetSystemDateAndTimeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__SetSystemDateAndTimeResponse * soap_new_set__tds__SetSystemDateAndTimeResponse( - struct soap *soap) -{ - _tds__SetSystemDateAndTimeResponse *_p = ::soap_new__tds__SetSystemDateAndTimeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__SetSystemDateAndTimeResponse(struct soap *soap, _tds__SetSystemDateAndTimeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__SetSystemDateAndTimeResponse 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, "tds:SetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__SetSystemDateAndTimeResponse 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, "tds:SetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__SetSystemDateAndTimeResponse 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, "tds:SetSystemDateAndTimeResponse", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTimeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetSystemDateAndTimeResponse * SOAP_FMAC4 soap_get__tds__SetSystemDateAndTimeResponse(struct soap*, _tds__SetSystemDateAndTimeResponse *, const char*, const char*); - -inline int soap_read__tds__SetSystemDateAndTimeResponse(struct soap *soap, _tds__SetSystemDateAndTimeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetSystemDateAndTimeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetSystemDateAndTimeResponse(struct soap *soap, const char *URL, _tds__SetSystemDateAndTimeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetSystemDateAndTimeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetSystemDateAndTimeResponse(struct soap *soap, _tds__SetSystemDateAndTimeResponse *p) -{ - if (::soap_read__tds__SetSystemDateAndTimeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__SetSystemDateAndTime_DEFINED -#define SOAP_TYPE__tds__SetSystemDateAndTime_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__SetSystemDateAndTime(struct soap*, const char*, int, const _tds__SetSystemDateAndTime *, const char*); -SOAP_FMAC3 _tds__SetSystemDateAndTime * SOAP_FMAC4 soap_in__tds__SetSystemDateAndTime(struct soap*, const char*, _tds__SetSystemDateAndTime *, const char*); -SOAP_FMAC1 _tds__SetSystemDateAndTime * SOAP_FMAC2 soap_instantiate__tds__SetSystemDateAndTime(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__SetSystemDateAndTime * soap_new__tds__SetSystemDateAndTime(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__SetSystemDateAndTime(soap, n, NULL, NULL, NULL); -} - -inline _tds__SetSystemDateAndTime * soap_new_req__tds__SetSystemDateAndTime( - struct soap *soap, - enum tt__SetDateTimeType DateTimeType, - bool DaylightSavings) -{ - _tds__SetSystemDateAndTime *_p = ::soap_new__tds__SetSystemDateAndTime(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetSystemDateAndTime::DateTimeType = DateTimeType; - _p->_tds__SetSystemDateAndTime::DaylightSavings = DaylightSavings; - } - return _p; -} - -inline _tds__SetSystemDateAndTime * soap_new_set__tds__SetSystemDateAndTime( - struct soap *soap, - enum tt__SetDateTimeType DateTimeType, - bool DaylightSavings, - tt__TimeZone *TimeZone, - tt__DateTime *UTCDateTime) -{ - _tds__SetSystemDateAndTime *_p = ::soap_new__tds__SetSystemDateAndTime(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__SetSystemDateAndTime::DateTimeType = DateTimeType; - _p->_tds__SetSystemDateAndTime::DaylightSavings = DaylightSavings; - _p->_tds__SetSystemDateAndTime::TimeZone = TimeZone; - _p->_tds__SetSystemDateAndTime::UTCDateTime = UTCDateTime; - } - return _p; -} - -inline int soap_write__tds__SetSystemDateAndTime(struct soap *soap, _tds__SetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTime ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__SetSystemDateAndTime(struct soap *soap, const char *URL, _tds__SetSystemDateAndTime 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, "tds:SetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__SetSystemDateAndTime(struct soap *soap, const char *URL, _tds__SetSystemDateAndTime 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, "tds:SetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__SetSystemDateAndTime(struct soap *soap, const char *URL, _tds__SetSystemDateAndTime 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, "tds:SetSystemDateAndTime", p->soap_type() == SOAP_TYPE__tds__SetSystemDateAndTime ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__SetSystemDateAndTime * SOAP_FMAC4 soap_get__tds__SetSystemDateAndTime(struct soap*, _tds__SetSystemDateAndTime *, const char*, const char*); - -inline int soap_read__tds__SetSystemDateAndTime(struct soap *soap, _tds__SetSystemDateAndTime *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__SetSystemDateAndTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__SetSystemDateAndTime(struct soap *soap, const char *URL, _tds__SetSystemDateAndTime *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__SetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__SetSystemDateAndTime(struct soap *soap, _tds__SetSystemDateAndTime *p) -{ - if (::soap_read__tds__SetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDeviceInformationResponse_DEFINED -#define SOAP_TYPE__tds__GetDeviceInformationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDeviceInformationResponse(struct soap*, const char*, int, const _tds__GetDeviceInformationResponse *, const char*); -SOAP_FMAC3 _tds__GetDeviceInformationResponse * SOAP_FMAC4 soap_in__tds__GetDeviceInformationResponse(struct soap*, const char*, _tds__GetDeviceInformationResponse *, const char*); -SOAP_FMAC1 _tds__GetDeviceInformationResponse * SOAP_FMAC2 soap_instantiate__tds__GetDeviceInformationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDeviceInformationResponse * soap_new__tds__GetDeviceInformationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDeviceInformationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDeviceInformationResponse * soap_new_req__tds__GetDeviceInformationResponse( - struct soap *soap, - const std::string& Manufacturer, - const std::string& Model, - const std::string& FirmwareVersion, - const std::string& SerialNumber, - const std::string& HardwareId) -{ - _tds__GetDeviceInformationResponse *_p = ::soap_new__tds__GetDeviceInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDeviceInformationResponse::Manufacturer = Manufacturer; - _p->_tds__GetDeviceInformationResponse::Model = Model; - _p->_tds__GetDeviceInformationResponse::FirmwareVersion = FirmwareVersion; - _p->_tds__GetDeviceInformationResponse::SerialNumber = SerialNumber; - _p->_tds__GetDeviceInformationResponse::HardwareId = HardwareId; - } - return _p; -} - -inline _tds__GetDeviceInformationResponse * soap_new_set__tds__GetDeviceInformationResponse( - struct soap *soap, - const std::string& Manufacturer, - const std::string& Model, - const std::string& FirmwareVersion, - const std::string& SerialNumber, - const std::string& HardwareId) -{ - _tds__GetDeviceInformationResponse *_p = ::soap_new__tds__GetDeviceInformationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetDeviceInformationResponse::Manufacturer = Manufacturer; - _p->_tds__GetDeviceInformationResponse::Model = Model; - _p->_tds__GetDeviceInformationResponse::FirmwareVersion = FirmwareVersion; - _p->_tds__GetDeviceInformationResponse::SerialNumber = SerialNumber; - _p->_tds__GetDeviceInformationResponse::HardwareId = HardwareId; - } - return _p; -} - -inline int soap_write__tds__GetDeviceInformationResponse(struct soap *soap, _tds__GetDeviceInformationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDeviceInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDeviceInformationResponse(struct soap *soap, const char *URL, _tds__GetDeviceInformationResponse 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, "tds:GetDeviceInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDeviceInformationResponse(struct soap *soap, const char *URL, _tds__GetDeviceInformationResponse 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, "tds:GetDeviceInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDeviceInformationResponse(struct soap *soap, const char *URL, _tds__GetDeviceInformationResponse 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, "tds:GetDeviceInformationResponse", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDeviceInformationResponse * SOAP_FMAC4 soap_get__tds__GetDeviceInformationResponse(struct soap*, _tds__GetDeviceInformationResponse *, const char*, const char*); - -inline int soap_read__tds__GetDeviceInformationResponse(struct soap *soap, _tds__GetDeviceInformationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDeviceInformationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDeviceInformationResponse(struct soap *soap, const char *URL, _tds__GetDeviceInformationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDeviceInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDeviceInformationResponse(struct soap *soap, _tds__GetDeviceInformationResponse *p) -{ - if (::soap_read__tds__GetDeviceInformationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetDeviceInformation_DEFINED -#define SOAP_TYPE__tds__GetDeviceInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetDeviceInformation(struct soap*, const char*, int, const _tds__GetDeviceInformation *, const char*); -SOAP_FMAC3 _tds__GetDeviceInformation * SOAP_FMAC4 soap_in__tds__GetDeviceInformation(struct soap*, const char*, _tds__GetDeviceInformation *, const char*); -SOAP_FMAC1 _tds__GetDeviceInformation * SOAP_FMAC2 soap_instantiate__tds__GetDeviceInformation(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetDeviceInformation * soap_new__tds__GetDeviceInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetDeviceInformation(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetDeviceInformation * soap_new_req__tds__GetDeviceInformation( - struct soap *soap) -{ - _tds__GetDeviceInformation *_p = ::soap_new__tds__GetDeviceInformation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetDeviceInformation * soap_new_set__tds__GetDeviceInformation( - struct soap *soap) -{ - _tds__GetDeviceInformation *_p = ::soap_new__tds__GetDeviceInformation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetDeviceInformation(struct soap *soap, _tds__GetDeviceInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetDeviceInformation", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetDeviceInformation(struct soap *soap, const char *URL, _tds__GetDeviceInformation 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, "tds:GetDeviceInformation", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetDeviceInformation(struct soap *soap, const char *URL, _tds__GetDeviceInformation 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, "tds:GetDeviceInformation", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetDeviceInformation(struct soap *soap, const char *URL, _tds__GetDeviceInformation 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, "tds:GetDeviceInformation", p->soap_type() == SOAP_TYPE__tds__GetDeviceInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetDeviceInformation * SOAP_FMAC4 soap_get__tds__GetDeviceInformation(struct soap*, _tds__GetDeviceInformation *, const char*, const char*); - -inline int soap_read__tds__GetDeviceInformation(struct soap *soap, _tds__GetDeviceInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetDeviceInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetDeviceInformation(struct soap *soap, const char *URL, _tds__GetDeviceInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetDeviceInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetDeviceInformation(struct soap *soap, _tds__GetDeviceInformation *p) -{ - if (::soap_read__tds__GetDeviceInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__tds__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _tds__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _tds__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tds__GetServiceCapabilitiesResponse(struct soap*, const char*, _tds__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _tds__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tds__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetServiceCapabilitiesResponse * soap_new__tds__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetServiceCapabilitiesResponse * soap_new_req__tds__GetServiceCapabilitiesResponse( - struct soap *soap, - tds__DeviceServiceCapabilities *Capabilities) -{ - _tds__GetServiceCapabilitiesResponse *_p = ::soap_new__tds__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tds__GetServiceCapabilitiesResponse * soap_new_set__tds__GetServiceCapabilitiesResponse( - struct soap *soap, - tds__DeviceServiceCapabilities *Capabilities) -{ - _tds__GetServiceCapabilitiesResponse *_p = ::soap_new__tds__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tds__GetServiceCapabilitiesResponse(struct soap *soap, _tds__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetServiceCapabilitiesResponse 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, "tds:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetServiceCapabilitiesResponse 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, "tds:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetServiceCapabilitiesResponse 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, "tds:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tds__GetServiceCapabilitiesResponse(struct soap*, _tds__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tds__GetServiceCapabilitiesResponse(struct soap *soap, _tds__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tds__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetServiceCapabilitiesResponse(struct soap *soap, _tds__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__tds__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__tds__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServiceCapabilities(struct soap*, const char*, int, const _tds__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _tds__GetServiceCapabilities * SOAP_FMAC4 soap_in__tds__GetServiceCapabilities(struct soap*, const char*, _tds__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _tds__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tds__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetServiceCapabilities * soap_new__tds__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetServiceCapabilities * soap_new_req__tds__GetServiceCapabilities( - struct soap *soap) -{ - _tds__GetServiceCapabilities *_p = ::soap_new__tds__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tds__GetServiceCapabilities * soap_new_set__tds__GetServiceCapabilities( - struct soap *soap) -{ - _tds__GetServiceCapabilities *_p = ::soap_new__tds__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tds__GetServiceCapabilities(struct soap *soap, _tds__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetServiceCapabilities(struct soap *soap, const char *URL, _tds__GetServiceCapabilities 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, "tds:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetServiceCapabilities(struct soap *soap, const char *URL, _tds__GetServiceCapabilities 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, "tds:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetServiceCapabilities(struct soap *soap, const char *URL, _tds__GetServiceCapabilities 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, "tds:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tds__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetServiceCapabilities * SOAP_FMAC4 soap_get__tds__GetServiceCapabilities(struct soap*, _tds__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__tds__GetServiceCapabilities(struct soap *soap, _tds__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetServiceCapabilities(struct soap *soap, const char *URL, _tds__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetServiceCapabilities(struct soap *soap, _tds__GetServiceCapabilities *p) -{ - if (::soap_read__tds__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetServicesResponse_DEFINED -#define SOAP_TYPE__tds__GetServicesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServicesResponse(struct soap*, const char*, int, const _tds__GetServicesResponse *, const char*); -SOAP_FMAC3 _tds__GetServicesResponse * SOAP_FMAC4 soap_in__tds__GetServicesResponse(struct soap*, const char*, _tds__GetServicesResponse *, const char*); -SOAP_FMAC1 _tds__GetServicesResponse * SOAP_FMAC2 soap_instantiate__tds__GetServicesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetServicesResponse * soap_new__tds__GetServicesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetServicesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetServicesResponse * soap_new_req__tds__GetServicesResponse( - struct soap *soap, - const std::vector & Service) -{ - _tds__GetServicesResponse *_p = ::soap_new__tds__GetServicesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetServicesResponse::Service = Service; - } - return _p; -} - -inline _tds__GetServicesResponse * soap_new_set__tds__GetServicesResponse( - struct soap *soap, - const std::vector & Service) -{ - _tds__GetServicesResponse *_p = ::soap_new__tds__GetServicesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetServicesResponse::Service = Service; - } - return _p; -} - -inline int soap_write__tds__GetServicesResponse(struct soap *soap, _tds__GetServicesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetServicesResponse", p->soap_type() == SOAP_TYPE__tds__GetServicesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetServicesResponse(struct soap *soap, const char *URL, _tds__GetServicesResponse 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, "tds:GetServicesResponse", p->soap_type() == SOAP_TYPE__tds__GetServicesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetServicesResponse(struct soap *soap, const char *URL, _tds__GetServicesResponse 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, "tds:GetServicesResponse", p->soap_type() == SOAP_TYPE__tds__GetServicesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetServicesResponse(struct soap *soap, const char *URL, _tds__GetServicesResponse 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, "tds:GetServicesResponse", p->soap_type() == SOAP_TYPE__tds__GetServicesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetServicesResponse * SOAP_FMAC4 soap_get__tds__GetServicesResponse(struct soap*, _tds__GetServicesResponse *, const char*, const char*); - -inline int soap_read__tds__GetServicesResponse(struct soap *soap, _tds__GetServicesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetServicesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetServicesResponse(struct soap *soap, const char *URL, _tds__GetServicesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetServicesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetServicesResponse(struct soap *soap, _tds__GetServicesResponse *p) -{ - if (::soap_read__tds__GetServicesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tds__GetServices_DEFINED -#define SOAP_TYPE__tds__GetServices_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tds__GetServices(struct soap*, const char*, int, const _tds__GetServices *, const char*); -SOAP_FMAC3 _tds__GetServices * SOAP_FMAC4 soap_in__tds__GetServices(struct soap*, const char*, _tds__GetServices *, const char*); -SOAP_FMAC1 _tds__GetServices * SOAP_FMAC2 soap_instantiate__tds__GetServices(struct soap*, int, const char*, const char*, size_t*); - -inline _tds__GetServices * soap_new__tds__GetServices(struct soap *soap, int n = -1) -{ - return soap_instantiate__tds__GetServices(soap, n, NULL, NULL, NULL); -} - -inline _tds__GetServices * soap_new_req__tds__GetServices( - struct soap *soap, - bool IncludeCapability) -{ - _tds__GetServices *_p = ::soap_new__tds__GetServices(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetServices::IncludeCapability = IncludeCapability; - } - return _p; -} - -inline _tds__GetServices * soap_new_set__tds__GetServices( - struct soap *soap, - bool IncludeCapability) -{ - _tds__GetServices *_p = ::soap_new__tds__GetServices(soap); - if (_p) - { _p->soap_default(soap); - _p->_tds__GetServices::IncludeCapability = IncludeCapability; - } - return _p; -} - -inline int soap_write__tds__GetServices(struct soap *soap, _tds__GetServices const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:GetServices", p->soap_type() == SOAP_TYPE__tds__GetServices ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tds__GetServices(struct soap *soap, const char *URL, _tds__GetServices 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, "tds:GetServices", p->soap_type() == SOAP_TYPE__tds__GetServices ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tds__GetServices(struct soap *soap, const char *URL, _tds__GetServices 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, "tds:GetServices", p->soap_type() == SOAP_TYPE__tds__GetServices ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tds__GetServices(struct soap *soap, const char *URL, _tds__GetServices 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, "tds:GetServices", p->soap_type() == SOAP_TYPE__tds__GetServices ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tds__GetServices * SOAP_FMAC4 soap_get__tds__GetServices(struct soap*, _tds__GetServices *, const char*, const char*); - -inline int soap_read__tds__GetServices(struct soap *soap, _tds__GetServices *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tds__GetServices(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tds__GetServices(struct soap *soap, const char *URL, _tds__GetServices *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tds__GetServices(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tds__GetServices(struct soap *soap, _tds__GetServices *p) -{ - if (::soap_read__tds__GetServices(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__StorageConfiguration_DEFINED -#define SOAP_TYPE_tds__StorageConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageConfiguration(struct soap*, const char*, int, const tds__StorageConfiguration *, const char*); -SOAP_FMAC3 tds__StorageConfiguration * SOAP_FMAC4 soap_in_tds__StorageConfiguration(struct soap*, const char*, tds__StorageConfiguration *, const char*); -SOAP_FMAC1 tds__StorageConfiguration * SOAP_FMAC2 soap_instantiate_tds__StorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tds__StorageConfiguration * soap_new_tds__StorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__StorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tds__StorageConfiguration * soap_new_req_tds__StorageConfiguration( - struct soap *soap, - tds__StorageConfigurationData *Data, - const std::string& token__1) -{ - tds__StorageConfiguration *_p = ::soap_new_tds__StorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__StorageConfiguration::Data = Data; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tds__StorageConfiguration * soap_new_set_tds__StorageConfiguration( - struct soap *soap, - tds__StorageConfigurationData *Data, - const std::string& token__1) -{ - tds__StorageConfiguration *_p = ::soap_new_tds__StorageConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__StorageConfiguration::Data = Data; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tds__StorageConfiguration(struct soap *soap, tds__StorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StorageConfiguration", p->soap_type() == SOAP_TYPE_tds__StorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__StorageConfiguration(struct soap *soap, const char *URL, tds__StorageConfiguration 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, "tds:StorageConfiguration", p->soap_type() == SOAP_TYPE_tds__StorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__StorageConfiguration(struct soap *soap, const char *URL, tds__StorageConfiguration 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, "tds:StorageConfiguration", p->soap_type() == SOAP_TYPE_tds__StorageConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__StorageConfiguration(struct soap *soap, const char *URL, tds__StorageConfiguration 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, "tds:StorageConfiguration", p->soap_type() == SOAP_TYPE_tds__StorageConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__StorageConfiguration * SOAP_FMAC4 soap_get_tds__StorageConfiguration(struct soap*, tds__StorageConfiguration *, const char*, const char*); - -inline int soap_read_tds__StorageConfiguration(struct soap *soap, tds__StorageConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__StorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__StorageConfiguration(struct soap *soap, const char *URL, tds__StorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__StorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__StorageConfiguration(struct soap *soap, tds__StorageConfiguration *p) -{ - if (::soap_read_tds__StorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__StorageConfigurationData_DEFINED -#define SOAP_TYPE_tds__StorageConfigurationData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__StorageConfigurationData(struct soap*, const char*, int, const tds__StorageConfigurationData *, const char*); -SOAP_FMAC3 tds__StorageConfigurationData * SOAP_FMAC4 soap_in_tds__StorageConfigurationData(struct soap*, const char*, tds__StorageConfigurationData *, const char*); -SOAP_FMAC1 tds__StorageConfigurationData * SOAP_FMAC2 soap_instantiate_tds__StorageConfigurationData(struct soap*, int, const char*, const char*, size_t*); - -inline tds__StorageConfigurationData * soap_new_tds__StorageConfigurationData(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__StorageConfigurationData(soap, n, NULL, NULL, NULL); -} - -inline tds__StorageConfigurationData * soap_new_req_tds__StorageConfigurationData( - struct soap *soap, - const std::string& type) -{ - tds__StorageConfigurationData *_p = ::soap_new_tds__StorageConfigurationData(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__StorageConfigurationData::type = type; - } - return _p; -} - -inline tds__StorageConfigurationData * soap_new_set_tds__StorageConfigurationData( - struct soap *soap, - std::string *LocalPath, - std::string *StorageUri, - tds__UserCredential *User, - _tds__StorageConfigurationData_Extension *Extension, - const std::string& type, - const struct soap_dom_attribute& __anyAttribute) -{ - tds__StorageConfigurationData *_p = ::soap_new_tds__StorageConfigurationData(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__StorageConfigurationData::LocalPath = LocalPath; - _p->tds__StorageConfigurationData::StorageUri = StorageUri; - _p->tds__StorageConfigurationData::User = User; - _p->tds__StorageConfigurationData::Extension = Extension; - _p->tds__StorageConfigurationData::type = type; - _p->tds__StorageConfigurationData::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tds__StorageConfigurationData(struct soap *soap, tds__StorageConfigurationData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:StorageConfigurationData", p->soap_type() == SOAP_TYPE_tds__StorageConfigurationData ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__StorageConfigurationData(struct soap *soap, const char *URL, tds__StorageConfigurationData 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, "tds:StorageConfigurationData", p->soap_type() == SOAP_TYPE_tds__StorageConfigurationData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__StorageConfigurationData(struct soap *soap, const char *URL, tds__StorageConfigurationData 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, "tds:StorageConfigurationData", p->soap_type() == SOAP_TYPE_tds__StorageConfigurationData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__StorageConfigurationData(struct soap *soap, const char *URL, tds__StorageConfigurationData 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, "tds:StorageConfigurationData", p->soap_type() == SOAP_TYPE_tds__StorageConfigurationData ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__StorageConfigurationData * SOAP_FMAC4 soap_get_tds__StorageConfigurationData(struct soap*, tds__StorageConfigurationData *, const char*, const char*); - -inline int soap_read_tds__StorageConfigurationData(struct soap *soap, tds__StorageConfigurationData *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__StorageConfigurationData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__StorageConfigurationData(struct soap *soap, const char *URL, tds__StorageConfigurationData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__StorageConfigurationData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__StorageConfigurationData(struct soap *soap, tds__StorageConfigurationData *p) -{ - if (::soap_read_tds__StorageConfigurationData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__UserCredential_DEFINED -#define SOAP_TYPE_tds__UserCredential_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__UserCredential(struct soap*, const char*, int, const tds__UserCredential *, const char*); -SOAP_FMAC3 tds__UserCredential * SOAP_FMAC4 soap_in_tds__UserCredential(struct soap*, const char*, tds__UserCredential *, const char*); -SOAP_FMAC1 tds__UserCredential * SOAP_FMAC2 soap_instantiate_tds__UserCredential(struct soap*, int, const char*, const char*, size_t*); - -inline tds__UserCredential * soap_new_tds__UserCredential(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__UserCredential(soap, n, NULL, NULL, NULL); -} - -inline tds__UserCredential * soap_new_req_tds__UserCredential( - struct soap *soap, - const std::string& UserName) -{ - tds__UserCredential *_p = ::soap_new_tds__UserCredential(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__UserCredential::UserName = UserName; - } - return _p; -} - -inline tds__UserCredential * soap_new_set_tds__UserCredential( - struct soap *soap, - const std::string& UserName, - std::string *Password, - _tds__UserCredential_Extension *Extension) -{ - tds__UserCredential *_p = ::soap_new_tds__UserCredential(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__UserCredential::UserName = UserName; - _p->tds__UserCredential::Password = Password; - _p->tds__UserCredential::Extension = Extension; - } - return _p; -} - -inline int soap_write_tds__UserCredential(struct soap *soap, tds__UserCredential const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:UserCredential", p->soap_type() == SOAP_TYPE_tds__UserCredential ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__UserCredential(struct soap *soap, const char *URL, tds__UserCredential 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, "tds:UserCredential", p->soap_type() == SOAP_TYPE_tds__UserCredential ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__UserCredential(struct soap *soap, const char *URL, tds__UserCredential 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, "tds:UserCredential", p->soap_type() == SOAP_TYPE_tds__UserCredential ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__UserCredential(struct soap *soap, const char *URL, tds__UserCredential 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, "tds:UserCredential", p->soap_type() == SOAP_TYPE_tds__UserCredential ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__UserCredential * SOAP_FMAC4 soap_get_tds__UserCredential(struct soap*, tds__UserCredential *, const char*, const char*); - -inline int soap_read_tds__UserCredential(struct soap *soap, tds__UserCredential *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__UserCredential(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__UserCredential(struct soap *soap, const char *URL, tds__UserCredential *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__UserCredential(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__UserCredential(struct soap *soap, tds__UserCredential *p) -{ - if (::soap_read_tds__UserCredential(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__MiscCapabilities_DEFINED -#define SOAP_TYPE_tds__MiscCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__MiscCapabilities(struct soap*, const char*, int, const tds__MiscCapabilities *, const char*); -SOAP_FMAC3 tds__MiscCapabilities * SOAP_FMAC4 soap_in_tds__MiscCapabilities(struct soap*, const char*, tds__MiscCapabilities *, const char*); -SOAP_FMAC1 tds__MiscCapabilities * SOAP_FMAC2 soap_instantiate_tds__MiscCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tds__MiscCapabilities * soap_new_tds__MiscCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__MiscCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tds__MiscCapabilities * soap_new_req_tds__MiscCapabilities( - struct soap *soap) -{ - tds__MiscCapabilities *_p = ::soap_new_tds__MiscCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tds__MiscCapabilities * soap_new_set_tds__MiscCapabilities( - struct soap *soap, - std::string *AuxiliaryCommands, - const struct soap_dom_attribute& __anyAttribute) -{ - tds__MiscCapabilities *_p = ::soap_new_tds__MiscCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__MiscCapabilities::AuxiliaryCommands = AuxiliaryCommands; - _p->tds__MiscCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tds__MiscCapabilities(struct soap *soap, tds__MiscCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:MiscCapabilities", p->soap_type() == SOAP_TYPE_tds__MiscCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__MiscCapabilities(struct soap *soap, const char *URL, tds__MiscCapabilities 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, "tds:MiscCapabilities", p->soap_type() == SOAP_TYPE_tds__MiscCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__MiscCapabilities(struct soap *soap, const char *URL, tds__MiscCapabilities 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, "tds:MiscCapabilities", p->soap_type() == SOAP_TYPE_tds__MiscCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__MiscCapabilities(struct soap *soap, const char *URL, tds__MiscCapabilities 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, "tds:MiscCapabilities", p->soap_type() == SOAP_TYPE_tds__MiscCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__MiscCapabilities * SOAP_FMAC4 soap_get_tds__MiscCapabilities(struct soap*, tds__MiscCapabilities *, const char*, const char*); - -inline int soap_read_tds__MiscCapabilities(struct soap *soap, tds__MiscCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__MiscCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__MiscCapabilities(struct soap *soap, const char *URL, tds__MiscCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__MiscCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__MiscCapabilities(struct soap *soap, tds__MiscCapabilities *p) -{ - if (::soap_read_tds__MiscCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__SystemCapabilities_DEFINED -#define SOAP_TYPE_tds__SystemCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__SystemCapabilities(struct soap*, const char*, int, const tds__SystemCapabilities *, const char*); -SOAP_FMAC3 tds__SystemCapabilities * SOAP_FMAC4 soap_in_tds__SystemCapabilities(struct soap*, const char*, tds__SystemCapabilities *, const char*); -SOAP_FMAC1 tds__SystemCapabilities * SOAP_FMAC2 soap_instantiate_tds__SystemCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tds__SystemCapabilities * soap_new_tds__SystemCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__SystemCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tds__SystemCapabilities * soap_new_req_tds__SystemCapabilities( - struct soap *soap) -{ - tds__SystemCapabilities *_p = ::soap_new_tds__SystemCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tds__SystemCapabilities * soap_new_set_tds__SystemCapabilities( - struct soap *soap, - bool *DiscoveryResolve, - bool *DiscoveryBye, - bool *RemoteDiscovery, - bool *SystemBackup, - bool *SystemLogging, - bool *FirmwareUpgrade, - bool *HttpFirmwareUpgrade, - bool *HttpSystemBackup, - bool *HttpSystemLogging, - bool *HttpSupportInformation, - bool *StorageConfiguration, - int *MaxStorageConfigurations, - int *GeoLocationEntries, - std::string *AutoGeo, - std::string *StorageTypesSupported, - const struct soap_dom_attribute& __anyAttribute) -{ - tds__SystemCapabilities *_p = ::soap_new_tds__SystemCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__SystemCapabilities::DiscoveryResolve = DiscoveryResolve; - _p->tds__SystemCapabilities::DiscoveryBye = DiscoveryBye; - _p->tds__SystemCapabilities::RemoteDiscovery = RemoteDiscovery; - _p->tds__SystemCapabilities::SystemBackup = SystemBackup; - _p->tds__SystemCapabilities::SystemLogging = SystemLogging; - _p->tds__SystemCapabilities::FirmwareUpgrade = FirmwareUpgrade; - _p->tds__SystemCapabilities::HttpFirmwareUpgrade = HttpFirmwareUpgrade; - _p->tds__SystemCapabilities::HttpSystemBackup = HttpSystemBackup; - _p->tds__SystemCapabilities::HttpSystemLogging = HttpSystemLogging; - _p->tds__SystemCapabilities::HttpSupportInformation = HttpSupportInformation; - _p->tds__SystemCapabilities::StorageConfiguration = StorageConfiguration; - _p->tds__SystemCapabilities::MaxStorageConfigurations = MaxStorageConfigurations; - _p->tds__SystemCapabilities::GeoLocationEntries = GeoLocationEntries; - _p->tds__SystemCapabilities::AutoGeo = AutoGeo; - _p->tds__SystemCapabilities::StorageTypesSupported = StorageTypesSupported; - _p->tds__SystemCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tds__SystemCapabilities(struct soap *soap, tds__SystemCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SystemCapabilities", p->soap_type() == SOAP_TYPE_tds__SystemCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__SystemCapabilities(struct soap *soap, const char *URL, tds__SystemCapabilities 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, "tds:SystemCapabilities", p->soap_type() == SOAP_TYPE_tds__SystemCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__SystemCapabilities(struct soap *soap, const char *URL, tds__SystemCapabilities 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, "tds:SystemCapabilities", p->soap_type() == SOAP_TYPE_tds__SystemCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__SystemCapabilities(struct soap *soap, const char *URL, tds__SystemCapabilities 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, "tds:SystemCapabilities", p->soap_type() == SOAP_TYPE_tds__SystemCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__SystemCapabilities * SOAP_FMAC4 soap_get_tds__SystemCapabilities(struct soap*, tds__SystemCapabilities *, const char*, const char*); - -inline int soap_read_tds__SystemCapabilities(struct soap *soap, tds__SystemCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__SystemCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__SystemCapabilities(struct soap *soap, const char *URL, tds__SystemCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__SystemCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__SystemCapabilities(struct soap *soap, tds__SystemCapabilities *p) -{ - if (::soap_read_tds__SystemCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__SecurityCapabilities_DEFINED -#define SOAP_TYPE_tds__SecurityCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__SecurityCapabilities(struct soap*, const char*, int, const tds__SecurityCapabilities *, const char*); -SOAP_FMAC3 tds__SecurityCapabilities * SOAP_FMAC4 soap_in_tds__SecurityCapabilities(struct soap*, const char*, tds__SecurityCapabilities *, const char*); -SOAP_FMAC1 tds__SecurityCapabilities * SOAP_FMAC2 soap_instantiate_tds__SecurityCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tds__SecurityCapabilities * soap_new_tds__SecurityCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__SecurityCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tds__SecurityCapabilities * soap_new_req_tds__SecurityCapabilities( - struct soap *soap) -{ - tds__SecurityCapabilities *_p = ::soap_new_tds__SecurityCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tds__SecurityCapabilities * soap_new_set_tds__SecurityCapabilities( - struct soap *soap, - bool *TLS1_x002e0, - bool *TLS1_x002e1, - bool *TLS1_x002e2, - bool *OnboardKeyGeneration, - bool *AccessPolicyConfig, - bool *DefaultAccessPolicy, - bool *Dot1X, - bool *RemoteUserHandling, - bool *X_x002e509Token, - bool *SAMLToken, - bool *KerberosToken, - bool *UsernameToken, - bool *HttpDigest, - bool *RELToken, - std::string *SupportedEAPMethods, - int *MaxUsers, - int *MaxUserNameLength, - int *MaxPasswordLength, - const struct soap_dom_attribute& __anyAttribute) -{ - tds__SecurityCapabilities *_p = ::soap_new_tds__SecurityCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__SecurityCapabilities::TLS1_x002e0 = TLS1_x002e0; - _p->tds__SecurityCapabilities::TLS1_x002e1 = TLS1_x002e1; - _p->tds__SecurityCapabilities::TLS1_x002e2 = TLS1_x002e2; - _p->tds__SecurityCapabilities::OnboardKeyGeneration = OnboardKeyGeneration; - _p->tds__SecurityCapabilities::AccessPolicyConfig = AccessPolicyConfig; - _p->tds__SecurityCapabilities::DefaultAccessPolicy = DefaultAccessPolicy; - _p->tds__SecurityCapabilities::Dot1X = Dot1X; - _p->tds__SecurityCapabilities::RemoteUserHandling = RemoteUserHandling; - _p->tds__SecurityCapabilities::X_x002e509Token = X_x002e509Token; - _p->tds__SecurityCapabilities::SAMLToken = SAMLToken; - _p->tds__SecurityCapabilities::KerberosToken = KerberosToken; - _p->tds__SecurityCapabilities::UsernameToken = UsernameToken; - _p->tds__SecurityCapabilities::HttpDigest = HttpDigest; - _p->tds__SecurityCapabilities::RELToken = RELToken; - _p->tds__SecurityCapabilities::SupportedEAPMethods = SupportedEAPMethods; - _p->tds__SecurityCapabilities::MaxUsers = MaxUsers; - _p->tds__SecurityCapabilities::MaxUserNameLength = MaxUserNameLength; - _p->tds__SecurityCapabilities::MaxPasswordLength = MaxPasswordLength; - _p->tds__SecurityCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tds__SecurityCapabilities(struct soap *soap, tds__SecurityCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tds__SecurityCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__SecurityCapabilities(struct soap *soap, const char *URL, tds__SecurityCapabilities 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, "tds:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tds__SecurityCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__SecurityCapabilities(struct soap *soap, const char *URL, tds__SecurityCapabilities 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, "tds:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tds__SecurityCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__SecurityCapabilities(struct soap *soap, const char *URL, tds__SecurityCapabilities 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, "tds:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tds__SecurityCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__SecurityCapabilities * SOAP_FMAC4 soap_get_tds__SecurityCapabilities(struct soap*, tds__SecurityCapabilities *, const char*, const char*); - -inline int soap_read_tds__SecurityCapabilities(struct soap *soap, tds__SecurityCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__SecurityCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__SecurityCapabilities(struct soap *soap, const char *URL, tds__SecurityCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__SecurityCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__SecurityCapabilities(struct soap *soap, tds__SecurityCapabilities *p) -{ - if (::soap_read_tds__SecurityCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__NetworkCapabilities_DEFINED -#define SOAP_TYPE_tds__NetworkCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__NetworkCapabilities(struct soap*, const char*, int, const tds__NetworkCapabilities *, const char*); -SOAP_FMAC3 tds__NetworkCapabilities * SOAP_FMAC4 soap_in_tds__NetworkCapabilities(struct soap*, const char*, tds__NetworkCapabilities *, const char*); -SOAP_FMAC1 tds__NetworkCapabilities * SOAP_FMAC2 soap_instantiate_tds__NetworkCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tds__NetworkCapabilities * soap_new_tds__NetworkCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__NetworkCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tds__NetworkCapabilities * soap_new_req_tds__NetworkCapabilities( - struct soap *soap) -{ - tds__NetworkCapabilities *_p = ::soap_new_tds__NetworkCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tds__NetworkCapabilities * soap_new_set_tds__NetworkCapabilities( - struct soap *soap, - bool *IPFilter, - bool *ZeroConfiguration, - bool *IPVersion6, - bool *DynDNS, - bool *Dot11Configuration, - int *Dot1XConfigurations, - bool *HostnameFromDHCP, - int *NTP, - bool *DHCPv6, - const struct soap_dom_attribute& __anyAttribute) -{ - tds__NetworkCapabilities *_p = ::soap_new_tds__NetworkCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__NetworkCapabilities::IPFilter = IPFilter; - _p->tds__NetworkCapabilities::ZeroConfiguration = ZeroConfiguration; - _p->tds__NetworkCapabilities::IPVersion6 = IPVersion6; - _p->tds__NetworkCapabilities::DynDNS = DynDNS; - _p->tds__NetworkCapabilities::Dot11Configuration = Dot11Configuration; - _p->tds__NetworkCapabilities::Dot1XConfigurations = Dot1XConfigurations; - _p->tds__NetworkCapabilities::HostnameFromDHCP = HostnameFromDHCP; - _p->tds__NetworkCapabilities::NTP = NTP; - _p->tds__NetworkCapabilities::DHCPv6 = DHCPv6; - _p->tds__NetworkCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tds__NetworkCapabilities(struct soap *soap, tds__NetworkCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tds__NetworkCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__NetworkCapabilities(struct soap *soap, const char *URL, tds__NetworkCapabilities 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, "tds:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tds__NetworkCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__NetworkCapabilities(struct soap *soap, const char *URL, tds__NetworkCapabilities 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, "tds:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tds__NetworkCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__NetworkCapabilities(struct soap *soap, const char *URL, tds__NetworkCapabilities 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, "tds:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tds__NetworkCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__NetworkCapabilities * SOAP_FMAC4 soap_get_tds__NetworkCapabilities(struct soap*, tds__NetworkCapabilities *, const char*, const char*); - -inline int soap_read_tds__NetworkCapabilities(struct soap *soap, tds__NetworkCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__NetworkCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__NetworkCapabilities(struct soap *soap, const char *URL, tds__NetworkCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__NetworkCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__NetworkCapabilities(struct soap *soap, tds__NetworkCapabilities *p) -{ - if (::soap_read_tds__NetworkCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__DeviceServiceCapabilities_DEFINED -#define SOAP_TYPE_tds__DeviceServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__DeviceServiceCapabilities(struct soap*, const char*, int, const tds__DeviceServiceCapabilities *, const char*); -SOAP_FMAC3 tds__DeviceServiceCapabilities * SOAP_FMAC4 soap_in_tds__DeviceServiceCapabilities(struct soap*, const char*, tds__DeviceServiceCapabilities *, const char*); -SOAP_FMAC1 tds__DeviceServiceCapabilities * SOAP_FMAC2 soap_instantiate_tds__DeviceServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tds__DeviceServiceCapabilities * soap_new_tds__DeviceServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__DeviceServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tds__DeviceServiceCapabilities * soap_new_req_tds__DeviceServiceCapabilities( - struct soap *soap, - tds__NetworkCapabilities *Network, - tds__SecurityCapabilities *Security, - tds__SystemCapabilities *System) -{ - tds__DeviceServiceCapabilities *_p = ::soap_new_tds__DeviceServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__DeviceServiceCapabilities::Network = Network; - _p->tds__DeviceServiceCapabilities::Security = Security; - _p->tds__DeviceServiceCapabilities::System = System; - } - return _p; -} - -inline tds__DeviceServiceCapabilities * soap_new_set_tds__DeviceServiceCapabilities( - struct soap *soap, - tds__NetworkCapabilities *Network, - tds__SecurityCapabilities *Security, - tds__SystemCapabilities *System, - tds__MiscCapabilities *Misc) -{ - tds__DeviceServiceCapabilities *_p = ::soap_new_tds__DeviceServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__DeviceServiceCapabilities::Network = Network; - _p->tds__DeviceServiceCapabilities::Security = Security; - _p->tds__DeviceServiceCapabilities::System = System; - _p->tds__DeviceServiceCapabilities::Misc = Misc; - } - return _p; -} - -inline int soap_write_tds__DeviceServiceCapabilities(struct soap *soap, tds__DeviceServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:DeviceServiceCapabilities", p->soap_type() == SOAP_TYPE_tds__DeviceServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__DeviceServiceCapabilities(struct soap *soap, const char *URL, tds__DeviceServiceCapabilities 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, "tds:DeviceServiceCapabilities", p->soap_type() == SOAP_TYPE_tds__DeviceServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__DeviceServiceCapabilities(struct soap *soap, const char *URL, tds__DeviceServiceCapabilities 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, "tds:DeviceServiceCapabilities", p->soap_type() == SOAP_TYPE_tds__DeviceServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__DeviceServiceCapabilities(struct soap *soap, const char *URL, tds__DeviceServiceCapabilities 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, "tds:DeviceServiceCapabilities", p->soap_type() == SOAP_TYPE_tds__DeviceServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__DeviceServiceCapabilities * SOAP_FMAC4 soap_get_tds__DeviceServiceCapabilities(struct soap*, tds__DeviceServiceCapabilities *, const char*, const char*); - -inline int soap_read_tds__DeviceServiceCapabilities(struct soap *soap, tds__DeviceServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__DeviceServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__DeviceServiceCapabilities(struct soap *soap, const char *URL, tds__DeviceServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__DeviceServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__DeviceServiceCapabilities(struct soap *soap, tds__DeviceServiceCapabilities *p) -{ - if (::soap_read_tds__DeviceServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tds__Service_DEFINED -#define SOAP_TYPE_tds__Service_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tds__Service(struct soap*, const char*, int, const tds__Service *, const char*); -SOAP_FMAC3 tds__Service * SOAP_FMAC4 soap_in_tds__Service(struct soap*, const char*, tds__Service *, const char*); -SOAP_FMAC1 tds__Service * SOAP_FMAC2 soap_instantiate_tds__Service(struct soap*, int, const char*, const char*, size_t*); - -inline tds__Service * soap_new_tds__Service(struct soap *soap, int n = -1) -{ - return soap_instantiate_tds__Service(soap, n, NULL, NULL, NULL); -} - -inline tds__Service * soap_new_req_tds__Service( - struct soap *soap, - const std::string& Namespace, - const std::string& XAddr, - tt__OnvifVersion *Version) -{ - tds__Service *_p = ::soap_new_tds__Service(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__Service::Namespace = Namespace; - _p->tds__Service::XAddr = XAddr; - _p->tds__Service::Version = Version; - } - return _p; -} - -inline tds__Service * soap_new_set_tds__Service( - struct soap *soap, - const std::string& Namespace, - const std::string& XAddr, - _tds__Service_Capabilities *Capabilities, - tt__OnvifVersion *Version, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tds__Service *_p = ::soap_new_tds__Service(soap); - if (_p) - { _p->soap_default(soap); - _p->tds__Service::Namespace = Namespace; - _p->tds__Service::XAddr = XAddr; - _p->tds__Service::Capabilities = Capabilities; - _p->tds__Service::Version = Version; - _p->tds__Service::__any = __any; - _p->tds__Service::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tds__Service(struct soap *soap, tds__Service const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tds:Service", p->soap_type() == SOAP_TYPE_tds__Service ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tds__Service(struct soap *soap, const char *URL, tds__Service 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, "tds:Service", p->soap_type() == SOAP_TYPE_tds__Service ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tds__Service(struct soap *soap, const char *URL, tds__Service 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, "tds:Service", p->soap_type() == SOAP_TYPE_tds__Service ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tds__Service(struct soap *soap, const char *URL, tds__Service 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, "tds:Service", p->soap_type() == SOAP_TYPE_tds__Service ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tds__Service * SOAP_FMAC4 soap_get_tds__Service(struct soap*, tds__Service *, const char*, const char*); - -inline int soap_read_tds__Service(struct soap *soap, tds__Service *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tds__Service(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tds__Service(struct soap *soap, const char *URL, tds__Service *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tds__Service(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tds__Service(struct soap *soap, tds__Service *p) -{ - if (::soap_read_tds__Service(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SendReceiveSerialCommandResponse_DEFINED -#define SOAP_TYPE__tmd__SendReceiveSerialCommandResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SendReceiveSerialCommandResponse(struct soap*, const char*, int, const _tmd__SendReceiveSerialCommandResponse *, const char*); -SOAP_FMAC3 _tmd__SendReceiveSerialCommandResponse * SOAP_FMAC4 soap_in__tmd__SendReceiveSerialCommandResponse(struct soap*, const char*, _tmd__SendReceiveSerialCommandResponse *, const char*); -SOAP_FMAC1 _tmd__SendReceiveSerialCommandResponse * SOAP_FMAC2 soap_instantiate__tmd__SendReceiveSerialCommandResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SendReceiveSerialCommandResponse * soap_new__tmd__SendReceiveSerialCommandResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SendReceiveSerialCommandResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SendReceiveSerialCommandResponse * soap_new_req__tmd__SendReceiveSerialCommandResponse( - struct soap *soap) -{ - _tmd__SendReceiveSerialCommandResponse *_p = ::soap_new__tmd__SendReceiveSerialCommandResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SendReceiveSerialCommandResponse * soap_new_set__tmd__SendReceiveSerialCommandResponse( - struct soap *soap, - tmd__SerialData *SerialData) -{ - _tmd__SendReceiveSerialCommandResponse *_p = ::soap_new__tmd__SendReceiveSerialCommandResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SendReceiveSerialCommandResponse::SerialData = SerialData; - } - return _p; -} - -inline int soap_write__tmd__SendReceiveSerialCommandResponse(struct soap *soap, _tmd__SendReceiveSerialCommandResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SendReceiveSerialCommandResponse", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommandResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SendReceiveSerialCommandResponse(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommandResponse 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, "tmd:SendReceiveSerialCommandResponse", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommandResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SendReceiveSerialCommandResponse(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommandResponse 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, "tmd:SendReceiveSerialCommandResponse", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommandResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SendReceiveSerialCommandResponse(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommandResponse 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, "tmd:SendReceiveSerialCommandResponse", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommandResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SendReceiveSerialCommandResponse * SOAP_FMAC4 soap_get__tmd__SendReceiveSerialCommandResponse(struct soap*, _tmd__SendReceiveSerialCommandResponse *, const char*, const char*); - -inline int soap_read__tmd__SendReceiveSerialCommandResponse(struct soap *soap, _tmd__SendReceiveSerialCommandResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SendReceiveSerialCommandResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SendReceiveSerialCommandResponse(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommandResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SendReceiveSerialCommandResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SendReceiveSerialCommandResponse(struct soap *soap, _tmd__SendReceiveSerialCommandResponse *p) -{ - if (::soap_read__tmd__SendReceiveSerialCommandResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SendReceiveSerialCommand_DEFINED -#define SOAP_TYPE__tmd__SendReceiveSerialCommand_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SendReceiveSerialCommand(struct soap*, const char*, int, const _tmd__SendReceiveSerialCommand *, const char*); -SOAP_FMAC3 _tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_in__tmd__SendReceiveSerialCommand(struct soap*, const char*, _tmd__SendReceiveSerialCommand *, const char*); -SOAP_FMAC1 _tmd__SendReceiveSerialCommand * SOAP_FMAC2 soap_instantiate__tmd__SendReceiveSerialCommand(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SendReceiveSerialCommand * soap_new__tmd__SendReceiveSerialCommand(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SendReceiveSerialCommand(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SendReceiveSerialCommand * soap_new_req__tmd__SendReceiveSerialCommand( - struct soap *soap) -{ - _tmd__SendReceiveSerialCommand *_p = ::soap_new__tmd__SendReceiveSerialCommand(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SendReceiveSerialCommand * soap_new_set__tmd__SendReceiveSerialCommand( - struct soap *soap, - tmd__SerialData *SerialData, - std::string *TimeOut, - std::string *DataLength, - std::string *Delimiter) -{ - _tmd__SendReceiveSerialCommand *_p = ::soap_new__tmd__SendReceiveSerialCommand(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SendReceiveSerialCommand::SerialData = SerialData; - _p->_tmd__SendReceiveSerialCommand::TimeOut = TimeOut; - _p->_tmd__SendReceiveSerialCommand::DataLength = DataLength; - _p->_tmd__SendReceiveSerialCommand::Delimiter = Delimiter; - } - return _p; -} - -inline int soap_write__tmd__SendReceiveSerialCommand(struct soap *soap, _tmd__SendReceiveSerialCommand const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SendReceiveSerialCommand", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommand ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommand 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, "tmd:SendReceiveSerialCommand", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommand ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommand 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, "tmd:SendReceiveSerialCommand", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommand ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommand 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, "tmd:SendReceiveSerialCommand", p->soap_type() == SOAP_TYPE__tmd__SendReceiveSerialCommand ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_get__tmd__SendReceiveSerialCommand(struct soap*, _tmd__SendReceiveSerialCommand *, const char*, const char*); - -inline int soap_read__tmd__SendReceiveSerialCommand(struct soap *soap, _tmd__SendReceiveSerialCommand *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SendReceiveSerialCommand(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, _tmd__SendReceiveSerialCommand *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SendReceiveSerialCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SendReceiveSerialCommand(struct soap *soap, _tmd__SendReceiveSerialCommand *p) -{ - if (::soap_read__tmd__SendReceiveSerialCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfigurationOptionsResponse(struct soap*, const char*, int, const _tmd__GetSerialPortConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfigurationOptionsResponse(struct soap*, const char*, _tmd__GetSerialPortConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _tmd__GetSerialPortConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetSerialPortConfigurationOptionsResponse * soap_new__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetSerialPortConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetSerialPortConfigurationOptionsResponse * soap_new_req__tmd__GetSerialPortConfigurationOptionsResponse( - struct soap *soap, - tmd__SerialPortConfigurationOptions *SerialPortOptions) -{ - _tmd__GetSerialPortConfigurationOptionsResponse *_p = ::soap_new__tmd__GetSerialPortConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions = SerialPortOptions; - } - return _p; -} - -inline _tmd__GetSerialPortConfigurationOptionsResponse * soap_new_set__tmd__GetSerialPortConfigurationOptionsResponse( - struct soap *soap, - tmd__SerialPortConfigurationOptions *SerialPortOptions) -{ - _tmd__GetSerialPortConfigurationOptionsResponse *_p = ::soap_new__tmd__GetSerialPortConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfigurationOptionsResponse::SerialPortOptions = SerialPortOptions; - } - return _p; -} - -inline int soap_write__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, _tmd__GetSerialPortConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetSerialPortConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptionsResponse 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, "tmd:GetSerialPortConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptionsResponse 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, "tmd:GetSerialPortConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptionsResponse 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, "tmd:GetSerialPortConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfigurationOptionsResponse(struct soap*, _tmd__GetSerialPortConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, _tmd__GetSerialPortConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetSerialPortConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetSerialPortConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetSerialPortConfigurationOptionsResponse(struct soap *soap, _tmd__GetSerialPortConfigurationOptionsResponse *p) -{ - if (::soap_read__tmd__GetSerialPortConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetSerialPortConfigurationOptions_DEFINED -#define SOAP_TYPE__tmd__GetSerialPortConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfigurationOptions(struct soap*, const char*, int, const _tmd__GetSerialPortConfigurationOptions *, const char*); -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfigurationOptions(struct soap*, const char*, _tmd__GetSerialPortConfigurationOptions *, const char*); -SOAP_FMAC1 _tmd__GetSerialPortConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetSerialPortConfigurationOptions * soap_new__tmd__GetSerialPortConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetSerialPortConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetSerialPortConfigurationOptions * soap_new_req__tmd__GetSerialPortConfigurationOptions( - struct soap *soap, - const std::string& SerialPortToken) -{ - _tmd__GetSerialPortConfigurationOptions *_p = ::soap_new__tmd__GetSerialPortConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfigurationOptions::SerialPortToken = SerialPortToken; - } - return _p; -} - -inline _tmd__GetSerialPortConfigurationOptions * soap_new_set__tmd__GetSerialPortConfigurationOptions( - struct soap *soap, - const std::string& SerialPortToken) -{ - _tmd__GetSerialPortConfigurationOptions *_p = ::soap_new__tmd__GetSerialPortConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfigurationOptions::SerialPortToken = SerialPortToken; - } - return _p; -} - -inline int soap_write__tmd__GetSerialPortConfigurationOptions(struct soap *soap, _tmd__GetSerialPortConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetSerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptions 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, "tmd:GetSerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptions 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, "tmd:GetSerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptions 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, "tmd:GetSerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfigurationOptions(struct soap*, _tmd__GetSerialPortConfigurationOptions *, const char*, const char*); - -inline int soap_read__tmd__GetSerialPortConfigurationOptions(struct soap *soap, _tmd__GetSerialPortConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetSerialPortConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetSerialPortConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetSerialPortConfigurationOptions(struct soap *soap, _tmd__GetSerialPortConfigurationOptions *p) -{ - if (::soap_read__tmd__GetSerialPortConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetSerialPortConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__SetSerialPortConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetSerialPortConfigurationResponse(struct soap*, const char*, int, const _tmd__SetSerialPortConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__SetSerialPortConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetSerialPortConfigurationResponse(struct soap*, const char*, _tmd__SetSerialPortConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__SetSerialPortConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetSerialPortConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetSerialPortConfigurationResponse * soap_new__tmd__SetSerialPortConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetSerialPortConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetSerialPortConfigurationResponse * soap_new_req__tmd__SetSerialPortConfigurationResponse( - struct soap *soap) -{ - _tmd__SetSerialPortConfigurationResponse *_p = ::soap_new__tmd__SetSerialPortConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SetSerialPortConfigurationResponse * soap_new_set__tmd__SetSerialPortConfigurationResponse( - struct soap *soap) -{ - _tmd__SetSerialPortConfigurationResponse *_p = ::soap_new__tmd__SetSerialPortConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tmd__SetSerialPortConfigurationResponse(struct soap *soap, _tmd__SetSerialPortConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetSerialPortConfigurationResponse 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, "tmd:SetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetSerialPortConfigurationResponse 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, "tmd:SetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetSerialPortConfigurationResponse 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, "tmd:SetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetSerialPortConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetSerialPortConfigurationResponse(struct soap*, _tmd__SetSerialPortConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__SetSerialPortConfigurationResponse(struct soap *soap, _tmd__SetSerialPortConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetSerialPortConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetSerialPortConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetSerialPortConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetSerialPortConfigurationResponse(struct soap *soap, _tmd__SetSerialPortConfigurationResponse *p) -{ - if (::soap_read__tmd__SetSerialPortConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetSerialPortConfiguration_DEFINED -#define SOAP_TYPE__tmd__SetSerialPortConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetSerialPortConfiguration(struct soap*, const char*, int, const _tmd__SetSerialPortConfiguration *, const char*); -SOAP_FMAC3 _tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_in__tmd__SetSerialPortConfiguration(struct soap*, const char*, _tmd__SetSerialPortConfiguration *, const char*); -SOAP_FMAC1 _tmd__SetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetSerialPortConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetSerialPortConfiguration * soap_new__tmd__SetSerialPortConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetSerialPortConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetSerialPortConfiguration * soap_new_req__tmd__SetSerialPortConfiguration( - struct soap *soap, - tmd__SerialPortConfiguration *SerialPortConfiguration, - bool ForcePersistance) -{ - _tmd__SetSerialPortConfiguration *_p = ::soap_new__tmd__SetSerialPortConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetSerialPortConfiguration::SerialPortConfiguration = SerialPortConfiguration; - _p->_tmd__SetSerialPortConfiguration::ForcePersistance = ForcePersistance; - } - return _p; -} - -inline _tmd__SetSerialPortConfiguration * soap_new_set__tmd__SetSerialPortConfiguration( - struct soap *soap, - tmd__SerialPortConfiguration *SerialPortConfiguration, - bool ForcePersistance) -{ - _tmd__SetSerialPortConfiguration *_p = ::soap_new__tmd__SetSerialPortConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetSerialPortConfiguration::SerialPortConfiguration = SerialPortConfiguration; - _p->_tmd__SetSerialPortConfiguration::ForcePersistance = ForcePersistance; - } - return _p; -} - -inline int soap_write__tmd__SetSerialPortConfiguration(struct soap *soap, _tmd__SetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__SetSerialPortConfiguration 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, "tmd:SetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__SetSerialPortConfiguration 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, "tmd:SetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__SetSerialPortConfiguration 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, "tmd:SetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_get__tmd__SetSerialPortConfiguration(struct soap*, _tmd__SetSerialPortConfiguration *, const char*, const char*); - -inline int soap_read__tmd__SetSerialPortConfiguration(struct soap *soap, _tmd__SetSerialPortConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetSerialPortConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__SetSerialPortConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetSerialPortConfiguration(struct soap *soap, _tmd__SetSerialPortConfiguration *p) -{ - if (::soap_read__tmd__SetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetSerialPortConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__GetSerialPortConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfigurationResponse(struct soap*, const char*, int, const _tmd__GetSerialPortConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__GetSerialPortConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfigurationResponse(struct soap*, const char*, _tmd__GetSerialPortConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__GetSerialPortConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetSerialPortConfigurationResponse * soap_new__tmd__GetSerialPortConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetSerialPortConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetSerialPortConfigurationResponse * soap_new_req__tmd__GetSerialPortConfigurationResponse( - struct soap *soap, - tmd__SerialPortConfiguration *SerialPortConfiguration) -{ - _tmd__GetSerialPortConfigurationResponse *_p = ::soap_new__tmd__GetSerialPortConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration = SerialPortConfiguration; - } - return _p; -} - -inline _tmd__GetSerialPortConfigurationResponse * soap_new_set__tmd__GetSerialPortConfigurationResponse( - struct soap *soap, - tmd__SerialPortConfiguration *SerialPortConfiguration) -{ - _tmd__GetSerialPortConfigurationResponse *_p = ::soap_new__tmd__GetSerialPortConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfigurationResponse::SerialPortConfiguration = SerialPortConfiguration; - } - return _p; -} - -inline int soap_write__tmd__GetSerialPortConfigurationResponse(struct soap *soap, _tmd__GetSerialPortConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationResponse 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, "tmd:GetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationResponse 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, "tmd:GetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationResponse 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, "tmd:GetSerialPortConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetSerialPortConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfigurationResponse(struct soap*, _tmd__GetSerialPortConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__GetSerialPortConfigurationResponse(struct soap *soap, _tmd__GetSerialPortConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetSerialPortConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetSerialPortConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetSerialPortConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetSerialPortConfigurationResponse(struct soap *soap, _tmd__GetSerialPortConfigurationResponse *p) -{ - if (::soap_read__tmd__GetSerialPortConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetSerialPortConfiguration_DEFINED -#define SOAP_TYPE__tmd__GetSerialPortConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortConfiguration(struct soap*, const char*, int, const _tmd__GetSerialPortConfiguration *, const char*); -SOAP_FMAC3 _tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_in__tmd__GetSerialPortConfiguration(struct soap*, const char*, _tmd__GetSerialPortConfiguration *, const char*); -SOAP_FMAC1 _tmd__GetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetSerialPortConfiguration * soap_new__tmd__GetSerialPortConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetSerialPortConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetSerialPortConfiguration * soap_new_req__tmd__GetSerialPortConfiguration( - struct soap *soap, - const std::string& SerialPortToken) -{ - _tmd__GetSerialPortConfiguration *_p = ::soap_new__tmd__GetSerialPortConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfiguration::SerialPortToken = SerialPortToken; - } - return _p; -} - -inline _tmd__GetSerialPortConfiguration * soap_new_set__tmd__GetSerialPortConfiguration( - struct soap *soap, - const std::string& SerialPortToken) -{ - _tmd__GetSerialPortConfiguration *_p = ::soap_new__tmd__GetSerialPortConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortConfiguration::SerialPortToken = SerialPortToken; - } - return _p; -} - -inline int soap_write__tmd__GetSerialPortConfiguration(struct soap *soap, _tmd__GetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__GetSerialPortConfiguration 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, "tmd:GetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__GetSerialPortConfiguration 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, "tmd:GetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__GetSerialPortConfiguration 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, "tmd:GetSerialPortConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_get__tmd__GetSerialPortConfiguration(struct soap*, _tmd__GetSerialPortConfiguration *, const char*, const char*); - -inline int soap_read__tmd__GetSerialPortConfiguration(struct soap *soap, _tmd__GetSerialPortConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetSerialPortConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, _tmd__GetSerialPortConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetSerialPortConfiguration(struct soap *soap, _tmd__GetSerialPortConfiguration *p) -{ - if (::soap_read__tmd__GetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetSerialPortsResponse_DEFINED -#define SOAP_TYPE__tmd__GetSerialPortsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPortsResponse(struct soap*, const char*, int, const _tmd__GetSerialPortsResponse *, const char*); -SOAP_FMAC3 _tmd__GetSerialPortsResponse * SOAP_FMAC4 soap_in__tmd__GetSerialPortsResponse(struct soap*, const char*, _tmd__GetSerialPortsResponse *, const char*); -SOAP_FMAC1 _tmd__GetSerialPortsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPortsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetSerialPortsResponse * soap_new__tmd__GetSerialPortsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetSerialPortsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetSerialPortsResponse * soap_new_req__tmd__GetSerialPortsResponse( - struct soap *soap) -{ - _tmd__GetSerialPortsResponse *_p = ::soap_new__tmd__GetSerialPortsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetSerialPortsResponse * soap_new_set__tmd__GetSerialPortsResponse( - struct soap *soap, - const std::vector & SerialPort) -{ - _tmd__GetSerialPortsResponse *_p = ::soap_new__tmd__GetSerialPortsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetSerialPortsResponse::SerialPort = SerialPort; - } - return _p; -} - -inline int soap_write__tmd__GetSerialPortsResponse(struct soap *soap, _tmd__GetSerialPortsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetSerialPortsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetSerialPortsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortsResponse 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, "tmd:GetSerialPortsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetSerialPortsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortsResponse 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, "tmd:GetSerialPortsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetSerialPortsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortsResponse 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, "tmd:GetSerialPortsResponse", p->soap_type() == SOAP_TYPE__tmd__GetSerialPortsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetSerialPortsResponse * SOAP_FMAC4 soap_get__tmd__GetSerialPortsResponse(struct soap*, _tmd__GetSerialPortsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetSerialPortsResponse(struct soap *soap, _tmd__GetSerialPortsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetSerialPortsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetSerialPortsResponse(struct soap *soap, const char *URL, _tmd__GetSerialPortsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetSerialPortsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetSerialPortsResponse(struct soap *soap, _tmd__GetSerialPortsResponse *p) -{ - if (::soap_read__tmd__GetSerialPortsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetSerialPorts_DEFINED -#define SOAP_TYPE__tmd__GetSerialPorts_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetSerialPorts(struct soap*, const char*, int, const _tmd__GetSerialPorts *, const char*); -SOAP_FMAC3 _tmd__GetSerialPorts * SOAP_FMAC4 soap_in__tmd__GetSerialPorts(struct soap*, const char*, _tmd__GetSerialPorts *, const char*); -SOAP_FMAC1 _tmd__GetSerialPorts * SOAP_FMAC2 soap_instantiate__tmd__GetSerialPorts(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetSerialPorts * soap_new__tmd__GetSerialPorts(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetSerialPorts(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetSerialPorts * soap_new_req__tmd__GetSerialPorts( - struct soap *soap) -{ - _tmd__GetSerialPorts *_p = ::soap_new__tmd__GetSerialPorts(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetSerialPorts * soap_new_set__tmd__GetSerialPorts( - struct soap *soap) -{ - _tmd__GetSerialPorts *_p = ::soap_new__tmd__GetSerialPorts(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tmd__GetSerialPorts(struct soap *soap, _tmd__GetSerialPorts const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetSerialPorts", p->soap_type() == SOAP_TYPE__tmd__GetSerialPorts ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetSerialPorts(struct soap *soap, const char *URL, _tmd__GetSerialPorts 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, "tmd:GetSerialPorts", p->soap_type() == SOAP_TYPE__tmd__GetSerialPorts ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetSerialPorts(struct soap *soap, const char *URL, _tmd__GetSerialPorts 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, "tmd:GetSerialPorts", p->soap_type() == SOAP_TYPE__tmd__GetSerialPorts ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetSerialPorts(struct soap *soap, const char *URL, _tmd__GetSerialPorts 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, "tmd:GetSerialPorts", p->soap_type() == SOAP_TYPE__tmd__GetSerialPorts ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetSerialPorts * SOAP_FMAC4 soap_get__tmd__GetSerialPorts(struct soap*, _tmd__GetSerialPorts *, const char*, const char*); - -inline int soap_read__tmd__GetSerialPorts(struct soap *soap, _tmd__GetSerialPorts *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetSerialPorts(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetSerialPorts(struct soap *soap, const char *URL, _tmd__GetSerialPorts *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetSerialPorts(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetSerialPorts(struct soap *soap, _tmd__GetSerialPorts *p) -{ - if (::soap_read__tmd__GetSerialPorts(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse_DEFINED -#define SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetDigitalInputConfigurationsResponse(struct soap*, const char*, int, const _tmd__SetDigitalInputConfigurationsResponse *, const char*); -SOAP_FMAC3 _tmd__SetDigitalInputConfigurationsResponse * SOAP_FMAC4 soap_in__tmd__SetDigitalInputConfigurationsResponse(struct soap*, const char*, _tmd__SetDigitalInputConfigurationsResponse *, const char*); -SOAP_FMAC1 _tmd__SetDigitalInputConfigurationsResponse * SOAP_FMAC2 soap_instantiate__tmd__SetDigitalInputConfigurationsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetDigitalInputConfigurationsResponse * soap_new__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetDigitalInputConfigurationsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetDigitalInputConfigurationsResponse * soap_new_req__tmd__SetDigitalInputConfigurationsResponse( - struct soap *soap) -{ - _tmd__SetDigitalInputConfigurationsResponse *_p = ::soap_new__tmd__SetDigitalInputConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SetDigitalInputConfigurationsResponse * soap_new_set__tmd__SetDigitalInputConfigurationsResponse( - struct soap *soap) -{ - _tmd__SetDigitalInputConfigurationsResponse *_p = ::soap_new__tmd__SetDigitalInputConfigurationsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, _tmd__SetDigitalInputConfigurationsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetDigitalInputConfigurationsResponse", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurationsResponse 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, "tmd:SetDigitalInputConfigurationsResponse", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurationsResponse 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, "tmd:SetDigitalInputConfigurationsResponse", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurationsResponse 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, "tmd:SetDigitalInputConfigurationsResponse", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurationsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetDigitalInputConfigurationsResponse * SOAP_FMAC4 soap_get__tmd__SetDigitalInputConfigurationsResponse(struct soap*, _tmd__SetDigitalInputConfigurationsResponse *, const char*, const char*); - -inline int soap_read__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, _tmd__SetDigitalInputConfigurationsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetDigitalInputConfigurationsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurationsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetDigitalInputConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetDigitalInputConfigurationsResponse(struct soap *soap, _tmd__SetDigitalInputConfigurationsResponse *p) -{ - if (::soap_read__tmd__SetDigitalInputConfigurationsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetDigitalInputConfigurations_DEFINED -#define SOAP_TYPE__tmd__SetDigitalInputConfigurations_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetDigitalInputConfigurations(struct soap*, const char*, int, const _tmd__SetDigitalInputConfigurations *, const char*); -SOAP_FMAC3 _tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_in__tmd__SetDigitalInputConfigurations(struct soap*, const char*, _tmd__SetDigitalInputConfigurations *, const char*); -SOAP_FMAC1 _tmd__SetDigitalInputConfigurations * SOAP_FMAC2 soap_instantiate__tmd__SetDigitalInputConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetDigitalInputConfigurations * soap_new__tmd__SetDigitalInputConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetDigitalInputConfigurations(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetDigitalInputConfigurations * soap_new_req__tmd__SetDigitalInputConfigurations( - struct soap *soap, - const std::vector & DigitalInputs) -{ - _tmd__SetDigitalInputConfigurations *_p = ::soap_new__tmd__SetDigitalInputConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetDigitalInputConfigurations::DigitalInputs = DigitalInputs; - } - return _p; -} - -inline _tmd__SetDigitalInputConfigurations * soap_new_set__tmd__SetDigitalInputConfigurations( - struct soap *soap, - const std::vector & DigitalInputs) -{ - _tmd__SetDigitalInputConfigurations *_p = ::soap_new__tmd__SetDigitalInputConfigurations(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetDigitalInputConfigurations::DigitalInputs = DigitalInputs; - } - return _p; -} - -inline int soap_write__tmd__SetDigitalInputConfigurations(struct soap *soap, _tmd__SetDigitalInputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetDigitalInputConfigurations", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurations 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, "tmd:SetDigitalInputConfigurations", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurations 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, "tmd:SetDigitalInputConfigurations", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurations ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurations 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, "tmd:SetDigitalInputConfigurations", p->soap_type() == SOAP_TYPE__tmd__SetDigitalInputConfigurations ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_get__tmd__SetDigitalInputConfigurations(struct soap*, _tmd__SetDigitalInputConfigurations *, const char*, const char*); - -inline int soap_read__tmd__SetDigitalInputConfigurations(struct soap *soap, _tmd__SetDigitalInputConfigurations *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetDigitalInputConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, _tmd__SetDigitalInputConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetDigitalInputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetDigitalInputConfigurations(struct soap *soap, _tmd__SetDigitalInputConfigurations *p) -{ - if (::soap_read__tmd__SetDigitalInputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap*, const char*, int, const _tmd__GetDigitalInputConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap*, const char*, _tmd__GetDigitalInputConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _tmd__GetDigitalInputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetDigitalInputConfigurationOptionsResponse * soap_new__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetDigitalInputConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetDigitalInputConfigurationOptionsResponse * soap_new_req__tmd__GetDigitalInputConfigurationOptionsResponse( - struct soap *soap, - tmd__DigitalInputConfigurationInputOptions *DigitalInputOptions) -{ - _tmd__GetDigitalInputConfigurationOptionsResponse *_p = ::soap_new__tmd__GetDigitalInputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions = DigitalInputOptions; - } - return _p; -} - -inline _tmd__GetDigitalInputConfigurationOptionsResponse * soap_new_set__tmd__GetDigitalInputConfigurationOptionsResponse( - struct soap *soap, - tmd__DigitalInputConfigurationInputOptions *DigitalInputOptions) -{ - _tmd__GetDigitalInputConfigurationOptionsResponse *_p = ::soap_new__tmd__GetDigitalInputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetDigitalInputConfigurationOptionsResponse::DigitalInputOptions = DigitalInputOptions; - } - return _p; -} - -inline int soap_write__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, _tmd__GetDigitalInputConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetDigitalInputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptionsResponse 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, "tmd:GetDigitalInputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptionsResponse 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, "tmd:GetDigitalInputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptionsResponse 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, "tmd:GetDigitalInputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap*, _tmd__GetDigitalInputConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, _tmd__GetDigitalInputConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetDigitalInputConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetDigitalInputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetDigitalInputConfigurationOptionsResponse(struct soap *soap, _tmd__GetDigitalInputConfigurationOptionsResponse *p) -{ - if (::soap_read__tmd__GetDigitalInputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions_DEFINED -#define SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputConfigurationOptions(struct soap*, const char*, int, const _tmd__GetDigitalInputConfigurationOptions *, const char*); -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetDigitalInputConfigurationOptions(struct soap*, const char*, _tmd__GetDigitalInputConfigurationOptions *, const char*); -SOAP_FMAC1 _tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetDigitalInputConfigurationOptions * soap_new__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetDigitalInputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetDigitalInputConfigurationOptions * soap_new_req__tmd__GetDigitalInputConfigurationOptions( - struct soap *soap) -{ - _tmd__GetDigitalInputConfigurationOptions *_p = ::soap_new__tmd__GetDigitalInputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetDigitalInputConfigurationOptions * soap_new_set__tmd__GetDigitalInputConfigurationOptions( - struct soap *soap, - std::string *Token) -{ - _tmd__GetDigitalInputConfigurationOptions *_p = ::soap_new__tmd__GetDigitalInputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetDigitalInputConfigurationOptions::Token = Token; - } - return _p; -} - -inline int soap_write__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, _tmd__GetDigitalInputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetDigitalInputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptions 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, "tmd:GetDigitalInputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptions 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, "tmd:GetDigitalInputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptions 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, "tmd:GetDigitalInputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetDigitalInputConfigurationOptions(struct soap*, _tmd__GetDigitalInputConfigurationOptions *, const char*, const char*); - -inline int soap_read__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, _tmd__GetDigitalInputConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetDigitalInputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetDigitalInputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetDigitalInputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetDigitalInputConfigurationOptions(struct soap *soap, _tmd__GetDigitalInputConfigurationOptions *p) -{ - if (::soap_read__tmd__GetDigitalInputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetDigitalInputsResponse_DEFINED -#define SOAP_TYPE__tmd__GetDigitalInputsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputsResponse(struct soap*, const char*, int, const _tmd__GetDigitalInputsResponse *, const char*); -SOAP_FMAC3 _tmd__GetDigitalInputsResponse * SOAP_FMAC4 soap_in__tmd__GetDigitalInputsResponse(struct soap*, const char*, _tmd__GetDigitalInputsResponse *, const char*); -SOAP_FMAC1 _tmd__GetDigitalInputsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetDigitalInputsResponse * soap_new__tmd__GetDigitalInputsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetDigitalInputsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetDigitalInputsResponse * soap_new_req__tmd__GetDigitalInputsResponse( - struct soap *soap) -{ - _tmd__GetDigitalInputsResponse *_p = ::soap_new__tmd__GetDigitalInputsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetDigitalInputsResponse * soap_new_set__tmd__GetDigitalInputsResponse( - struct soap *soap, - const std::vector & DigitalInputs) -{ - _tmd__GetDigitalInputsResponse *_p = ::soap_new__tmd__GetDigitalInputsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetDigitalInputsResponse::DigitalInputs = DigitalInputs; - } - return _p; -} - -inline int soap_write__tmd__GetDigitalInputsResponse(struct soap *soap, _tmd__GetDigitalInputsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetDigitalInputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetDigitalInputsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputsResponse 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, "tmd:GetDigitalInputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetDigitalInputsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputsResponse 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, "tmd:GetDigitalInputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetDigitalInputsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputsResponse 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, "tmd:GetDigitalInputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetDigitalInputsResponse * SOAP_FMAC4 soap_get__tmd__GetDigitalInputsResponse(struct soap*, _tmd__GetDigitalInputsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetDigitalInputsResponse(struct soap *soap, _tmd__GetDigitalInputsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetDigitalInputsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetDigitalInputsResponse(struct soap *soap, const char *URL, _tmd__GetDigitalInputsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetDigitalInputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetDigitalInputsResponse(struct soap *soap, _tmd__GetDigitalInputsResponse *p) -{ - if (::soap_read__tmd__GetDigitalInputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetDigitalInputs_DEFINED -#define SOAP_TYPE__tmd__GetDigitalInputs_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetDigitalInputs(struct soap*, const char*, int, const _tmd__GetDigitalInputs *, const char*); -SOAP_FMAC3 _tmd__GetDigitalInputs * SOAP_FMAC4 soap_in__tmd__GetDigitalInputs(struct soap*, const char*, _tmd__GetDigitalInputs *, const char*); -SOAP_FMAC1 _tmd__GetDigitalInputs * SOAP_FMAC2 soap_instantiate__tmd__GetDigitalInputs(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetDigitalInputs * soap_new__tmd__GetDigitalInputs(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetDigitalInputs(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetDigitalInputs * soap_new_req__tmd__GetDigitalInputs( - struct soap *soap) -{ - _tmd__GetDigitalInputs *_p = ::soap_new__tmd__GetDigitalInputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetDigitalInputs * soap_new_set__tmd__GetDigitalInputs( - struct soap *soap) -{ - _tmd__GetDigitalInputs *_p = ::soap_new__tmd__GetDigitalInputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tmd__GetDigitalInputs(struct soap *soap, _tmd__GetDigitalInputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetDigitalInputs", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputs ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetDigitalInputs(struct soap *soap, const char *URL, _tmd__GetDigitalInputs 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, "tmd:GetDigitalInputs", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetDigitalInputs(struct soap *soap, const char *URL, _tmd__GetDigitalInputs 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, "tmd:GetDigitalInputs", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetDigitalInputs(struct soap *soap, const char *URL, _tmd__GetDigitalInputs 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, "tmd:GetDigitalInputs", p->soap_type() == SOAP_TYPE__tmd__GetDigitalInputs ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetDigitalInputs * SOAP_FMAC4 soap_get__tmd__GetDigitalInputs(struct soap*, _tmd__GetDigitalInputs *, const char*, const char*); - -inline int soap_read__tmd__GetDigitalInputs(struct soap *soap, _tmd__GetDigitalInputs *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetDigitalInputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetDigitalInputs(struct soap *soap, const char *URL, _tmd__GetDigitalInputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetDigitalInputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetDigitalInputs(struct soap *soap, _tmd__GetDigitalInputs *p) -{ - if (::soap_read__tmd__GetDigitalInputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetRelayOutputSettingsResponse_DEFINED -#define SOAP_TYPE__tmd__SetRelayOutputSettingsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetRelayOutputSettingsResponse(struct soap*, const char*, int, const _tmd__SetRelayOutputSettingsResponse *, const char*); -SOAP_FMAC3 _tmd__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_in__tmd__SetRelayOutputSettingsResponse(struct soap*, const char*, _tmd__SetRelayOutputSettingsResponse *, const char*); -SOAP_FMAC1 _tmd__SetRelayOutputSettingsResponse * SOAP_FMAC2 soap_instantiate__tmd__SetRelayOutputSettingsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetRelayOutputSettingsResponse * soap_new__tmd__SetRelayOutputSettingsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetRelayOutputSettingsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetRelayOutputSettingsResponse * soap_new_req__tmd__SetRelayOutputSettingsResponse( - struct soap *soap) -{ - _tmd__SetRelayOutputSettingsResponse *_p = ::soap_new__tmd__SetRelayOutputSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SetRelayOutputSettingsResponse * soap_new_set__tmd__SetRelayOutputSettingsResponse( - struct soap *soap) -{ - _tmd__SetRelayOutputSettingsResponse *_p = ::soap_new__tmd__SetRelayOutputSettingsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tmd__SetRelayOutputSettingsResponse(struct soap *soap, _tmd__SetRelayOutputSettingsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettingsResponse 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, "tmd:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettingsResponse 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, "tmd:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettingsResponse 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, "tmd:SetRelayOutputSettingsResponse", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettingsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetRelayOutputSettingsResponse * SOAP_FMAC4 soap_get__tmd__SetRelayOutputSettingsResponse(struct soap*, _tmd__SetRelayOutputSettingsResponse *, const char*, const char*); - -inline int soap_read__tmd__SetRelayOutputSettingsResponse(struct soap *soap, _tmd__SetRelayOutputSettingsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetRelayOutputSettingsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetRelayOutputSettingsResponse(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettingsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetRelayOutputSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetRelayOutputSettingsResponse(struct soap *soap, _tmd__SetRelayOutputSettingsResponse *p) -{ - if (::soap_read__tmd__SetRelayOutputSettingsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetRelayOutputSettings_DEFINED -#define SOAP_TYPE__tmd__SetRelayOutputSettings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetRelayOutputSettings(struct soap*, const char*, int, const _tmd__SetRelayOutputSettings *, const char*); -SOAP_FMAC3 _tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_in__tmd__SetRelayOutputSettings(struct soap*, const char*, _tmd__SetRelayOutputSettings *, const char*); -SOAP_FMAC1 _tmd__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate__tmd__SetRelayOutputSettings(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetRelayOutputSettings * soap_new__tmd__SetRelayOutputSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetRelayOutputSettings(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetRelayOutputSettings * soap_new_req__tmd__SetRelayOutputSettings( - struct soap *soap, - tt__RelayOutput *RelayOutput) -{ - _tmd__SetRelayOutputSettings *_p = ::soap_new__tmd__SetRelayOutputSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetRelayOutputSettings::RelayOutput = RelayOutput; - } - return _p; -} - -inline _tmd__SetRelayOutputSettings * soap_new_set__tmd__SetRelayOutputSettings( - struct soap *soap, - tt__RelayOutput *RelayOutput) -{ - _tmd__SetRelayOutputSettings *_p = ::soap_new__tmd__SetRelayOutputSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetRelayOutputSettings::RelayOutput = RelayOutput; - } - return _p; -} - -inline int soap_write__tmd__SetRelayOutputSettings(struct soap *soap, _tmd__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettings 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, "tmd:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettings 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, "tmd:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettings 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, "tmd:SetRelayOutputSettings", p->soap_type() == SOAP_TYPE__tmd__SetRelayOutputSettings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_get__tmd__SetRelayOutputSettings(struct soap*, _tmd__SetRelayOutputSettings *, const char*, const char*); - -inline int soap_read__tmd__SetRelayOutputSettings(struct soap *soap, _tmd__SetRelayOutputSettings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetRelayOutputSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, _tmd__SetRelayOutputSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetRelayOutputSettings(struct soap *soap, _tmd__SetRelayOutputSettings *p) -{ - if (::soap_read__tmd__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap*, const char*, int, const _tmd__GetAudioOutputConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap*, const char*, _tmd__GetAudioOutputConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _tmd__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioOutputConfigurationOptionsResponse * soap_new__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioOutputConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioOutputConfigurationOptionsResponse * soap_new_req__tmd__GetAudioOutputConfigurationOptionsResponse( - struct soap *soap, - tt__AudioOutputConfigurationOptions *AudioOutputOptions) -{ - _tmd__GetAudioOutputConfigurationOptionsResponse *_p = ::soap_new__tmd__GetAudioOutputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions = AudioOutputOptions; - } - return _p; -} - -inline _tmd__GetAudioOutputConfigurationOptionsResponse * soap_new_set__tmd__GetAudioOutputConfigurationOptionsResponse( - struct soap *soap, - tt__AudioOutputConfigurationOptions *AudioOutputOptions, - const std::vector & __any) -{ - _tmd__GetAudioOutputConfigurationOptionsResponse *_p = ::soap_new__tmd__GetAudioOutputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfigurationOptionsResponse::AudioOutputOptions = AudioOutputOptions; - _p->_tmd__GetAudioOutputConfigurationOptionsResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptionsResponse 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, "tmd:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptionsResponse 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, "tmd:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptionsResponse 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, "tmd:GetAudioOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap*, _tmd__GetAudioOutputConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioOutputConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioOutputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationOptionsResponse *p) -{ - if (::soap_read__tmd__GetAudioOutputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfigurationOptions(struct soap*, const char*, int, const _tmd__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfigurationOptions(struct soap*, const char*, _tmd__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC1 _tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioOutputConfigurationOptions * soap_new__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioOutputConfigurationOptions * soap_new_req__tmd__GetAudioOutputConfigurationOptions( - struct soap *soap, - const std::string& AudioOutputToken) -{ - _tmd__GetAudioOutputConfigurationOptions *_p = ::soap_new__tmd__GetAudioOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfigurationOptions::AudioOutputToken = AudioOutputToken; - } - return _p; -} - -inline _tmd__GetAudioOutputConfigurationOptions * soap_new_set__tmd__GetAudioOutputConfigurationOptions( - struct soap *soap, - const std::string& AudioOutputToken, - const std::vector & __any) -{ - _tmd__GetAudioOutputConfigurationOptions *_p = ::soap_new__tmd__GetAudioOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfigurationOptions::AudioOutputToken = AudioOutputToken; - _p->_tmd__GetAudioOutputConfigurationOptions::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, _tmd__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptions 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, "tmd:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptions 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, "tmd:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptions 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, "tmd:GetAudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfigurationOptions(struct soap*, _tmd__GetAudioOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, _tmd__GetAudioOutputConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioOutputConfigurationOptions(struct soap *soap, _tmd__GetAudioOutputConfigurationOptions *p) -{ - if (::soap_read__tmd__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap*, const char*, int, const _tmd__GetAudioSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap*, const char*, _tmd__GetAudioSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _tmd__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioSourceConfigurationOptionsResponse * soap_new__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioSourceConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioSourceConfigurationOptionsResponse * soap_new_req__tmd__GetAudioSourceConfigurationOptionsResponse( - struct soap *soap, - tt__AudioSourceConfigurationOptions *AudioSourceOptions) -{ - _tmd__GetAudioSourceConfigurationOptionsResponse *_p = ::soap_new__tmd__GetAudioSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions = AudioSourceOptions; - } - return _p; -} - -inline _tmd__GetAudioSourceConfigurationOptionsResponse * soap_new_set__tmd__GetAudioSourceConfigurationOptionsResponse( - struct soap *soap, - tt__AudioSourceConfigurationOptions *AudioSourceOptions, - const std::vector & __any) -{ - _tmd__GetAudioSourceConfigurationOptionsResponse *_p = ::soap_new__tmd__GetAudioSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfigurationOptionsResponse::AudioSourceOptions = AudioSourceOptions; - _p->_tmd__GetAudioSourceConfigurationOptionsResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptionsResponse 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, "tmd:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptionsResponse 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, "tmd:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptionsResponse 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, "tmd:GetAudioSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap*, _tmd__GetAudioSourceConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioSourceConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationOptionsResponse *p) -{ - if (::soap_read__tmd__GetAudioSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfigurationOptions(struct soap*, const char*, int, const _tmd__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfigurationOptions(struct soap*, const char*, _tmd__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC1 _tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioSourceConfigurationOptions * soap_new__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioSourceConfigurationOptions * soap_new_req__tmd__GetAudioSourceConfigurationOptions( - struct soap *soap, - const std::string& AudioSourceToken) -{ - _tmd__GetAudioSourceConfigurationOptions *_p = ::soap_new__tmd__GetAudioSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfigurationOptions::AudioSourceToken = AudioSourceToken; - } - return _p; -} - -inline _tmd__GetAudioSourceConfigurationOptions * soap_new_set__tmd__GetAudioSourceConfigurationOptions( - struct soap *soap, - const std::string& AudioSourceToken, - const std::vector & __any) -{ - _tmd__GetAudioSourceConfigurationOptions *_p = ::soap_new__tmd__GetAudioSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfigurationOptions::AudioSourceToken = AudioSourceToken; - _p->_tmd__GetAudioSourceConfigurationOptions::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, _tmd__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptions 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, "tmd:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptions 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, "tmd:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptions 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, "tmd:GetAudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfigurationOptions(struct soap*, _tmd__GetAudioSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, _tmd__GetAudioSourceConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioSourceConfigurationOptions(struct soap *soap, _tmd__GetAudioSourceConfigurationOptions *p) -{ - if (::soap_read__tmd__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap*, const char*, int, const _tmd__GetVideoOutputConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap*, const char*, _tmd__GetVideoOutputConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _tmd__GetVideoOutputConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoOutputConfigurationOptionsResponse * soap_new__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoOutputConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoOutputConfigurationOptionsResponse * soap_new_req__tmd__GetVideoOutputConfigurationOptionsResponse( - struct soap *soap, - tt__VideoOutputConfigurationOptions *VideoOutputConfigurationOptions) -{ - _tmd__GetVideoOutputConfigurationOptionsResponse *_p = ::soap_new__tmd__GetVideoOutputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions = VideoOutputConfigurationOptions; - } - return _p; -} - -inline _tmd__GetVideoOutputConfigurationOptionsResponse * soap_new_set__tmd__GetVideoOutputConfigurationOptionsResponse( - struct soap *soap, - tt__VideoOutputConfigurationOptions *VideoOutputConfigurationOptions, - const std::vector & __any) -{ - _tmd__GetVideoOutputConfigurationOptionsResponse *_p = ::soap_new__tmd__GetVideoOutputConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfigurationOptionsResponse::VideoOutputConfigurationOptions = VideoOutputConfigurationOptions; - _p->_tmd__GetVideoOutputConfigurationOptionsResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptionsResponse 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, "tmd:GetVideoOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptionsResponse 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, "tmd:GetVideoOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptionsResponse 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, "tmd:GetVideoOutputConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap*, _tmd__GetVideoOutputConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoOutputConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoOutputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoOutputConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationOptionsResponse *p) -{ - if (::soap_read__tmd__GetVideoOutputConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions_DEFINED -#define SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfigurationOptions(struct soap*, const char*, int, const _tmd__GetVideoOutputConfigurationOptions *, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfigurationOptions(struct soap*, const char*, _tmd__GetVideoOutputConfigurationOptions *, const char*); -SOAP_FMAC1 _tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoOutputConfigurationOptions * soap_new__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoOutputConfigurationOptions * soap_new_req__tmd__GetVideoOutputConfigurationOptions( - struct soap *soap, - const std::string& VideoOutputToken) -{ - _tmd__GetVideoOutputConfigurationOptions *_p = ::soap_new__tmd__GetVideoOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfigurationOptions::VideoOutputToken = VideoOutputToken; - } - return _p; -} - -inline _tmd__GetVideoOutputConfigurationOptions * soap_new_set__tmd__GetVideoOutputConfigurationOptions( - struct soap *soap, - const std::string& VideoOutputToken, - const std::vector & __any) -{ - _tmd__GetVideoOutputConfigurationOptions *_p = ::soap_new__tmd__GetVideoOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfigurationOptions::VideoOutputToken = VideoOutputToken; - _p->_tmd__GetVideoOutputConfigurationOptions::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, _tmd__GetVideoOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptions 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, "tmd:GetVideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptions 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, "tmd:GetVideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptions 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, "tmd:GetVideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfigurationOptions(struct soap*, _tmd__GetVideoOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, _tmd__GetVideoOutputConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoOutputConfigurationOptions(struct soap *soap, _tmd__GetVideoOutputConfigurationOptions *p) -{ - if (::soap_read__tmd__GetVideoOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse_DEFINED -#define SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap*, const char*, int, const _tmd__GetVideoSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap*, const char*, _tmd__GetVideoSourceConfigurationOptionsResponse *, const char*); -SOAP_FMAC1 _tmd__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoSourceConfigurationOptionsResponse * soap_new__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoSourceConfigurationOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoSourceConfigurationOptionsResponse * soap_new_req__tmd__GetVideoSourceConfigurationOptionsResponse( - struct soap *soap, - tt__VideoSourceConfigurationOptions *VideoSourceConfigurationOptions) -{ - _tmd__GetVideoSourceConfigurationOptionsResponse *_p = ::soap_new__tmd__GetVideoSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions = VideoSourceConfigurationOptions; - } - return _p; -} - -inline _tmd__GetVideoSourceConfigurationOptionsResponse * soap_new_set__tmd__GetVideoSourceConfigurationOptionsResponse( - struct soap *soap, - tt__VideoSourceConfigurationOptions *VideoSourceConfigurationOptions, - const std::vector & __any) -{ - _tmd__GetVideoSourceConfigurationOptionsResponse *_p = ::soap_new__tmd__GetVideoSourceConfigurationOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfigurationOptionsResponse::VideoSourceConfigurationOptions = VideoSourceConfigurationOptions; - _p->_tmd__GetVideoSourceConfigurationOptionsResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptionsResponse 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, "tmd:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptionsResponse 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, "tmd:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptionsResponse 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, "tmd:GetVideoSourceConfigurationOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap*, _tmd__GetVideoSourceConfigurationOptionsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoSourceConfigurationOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoSourceConfigurationOptionsResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationOptionsResponse *p) -{ - if (::soap_read__tmd__GetVideoSourceConfigurationOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfigurationOptions(struct soap*, const char*, int, const _tmd__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfigurationOptions(struct soap*, const char*, _tmd__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC1 _tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoSourceConfigurationOptions * soap_new__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoSourceConfigurationOptions * soap_new_req__tmd__GetVideoSourceConfigurationOptions( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _tmd__GetVideoSourceConfigurationOptions *_p = ::soap_new__tmd__GetVideoSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfigurationOptions::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _tmd__GetVideoSourceConfigurationOptions * soap_new_set__tmd__GetVideoSourceConfigurationOptions( - struct soap *soap, - const std::string& VideoSourceToken, - const std::vector & __any) -{ - _tmd__GetVideoSourceConfigurationOptions *_p = ::soap_new__tmd__GetVideoSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfigurationOptions::VideoSourceToken = VideoSourceToken; - _p->_tmd__GetVideoSourceConfigurationOptions::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, _tmd__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptions 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, "tmd:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptions 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, "tmd:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptions 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, "tmd:GetVideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfigurationOptions(struct soap*, _tmd__GetVideoSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, _tmd__GetVideoSourceConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoSourceConfigurationOptions(struct soap *soap, _tmd__GetVideoSourceConfigurationOptions *p) -{ - if (::soap_read__tmd__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoOutputConfigurationResponse(struct soap*, const char*, int, const _tmd__SetVideoOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__SetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetVideoOutputConfigurationResponse(struct soap*, const char*, _tmd__SetVideoOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__SetVideoOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetVideoOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetVideoOutputConfigurationResponse * soap_new__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetVideoOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetVideoOutputConfigurationResponse * soap_new_req__tmd__SetVideoOutputConfigurationResponse( - struct soap *soap) -{ - _tmd__SetVideoOutputConfigurationResponse *_p = ::soap_new__tmd__SetVideoOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SetVideoOutputConfigurationResponse * soap_new_set__tmd__SetVideoOutputConfigurationResponse( - struct soap *soap, - const std::vector & __any) -{ - _tmd__SetVideoOutputConfigurationResponse *_p = ::soap_new__tmd__SetVideoOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetVideoOutputConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, _tmd__SetVideoOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfigurationResponse 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, "tmd:SetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfigurationResponse 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, "tmd:SetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfigurationResponse 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, "tmd:SetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetVideoOutputConfigurationResponse(struct soap*, _tmd__SetVideoOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, _tmd__SetVideoOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetVideoOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetVideoOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetVideoOutputConfigurationResponse(struct soap *soap, _tmd__SetVideoOutputConfigurationResponse *p) -{ - if (::soap_read__tmd__SetVideoOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetVideoOutputConfiguration_DEFINED -#define SOAP_TYPE__tmd__SetVideoOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoOutputConfiguration(struct soap*, const char*, int, const _tmd__SetVideoOutputConfiguration *, const char*); -SOAP_FMAC3 _tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_in__tmd__SetVideoOutputConfiguration(struct soap*, const char*, _tmd__SetVideoOutputConfiguration *, const char*); -SOAP_FMAC1 _tmd__SetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetVideoOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetVideoOutputConfiguration * soap_new__tmd__SetVideoOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetVideoOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetVideoOutputConfiguration * soap_new_req__tmd__SetVideoOutputConfiguration( - struct soap *soap, - tt__VideoOutputConfiguration *Configuration, - bool ForcePersistence) -{ - _tmd__SetVideoOutputConfiguration *_p = ::soap_new__tmd__SetVideoOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetVideoOutputConfiguration::Configuration = Configuration; - _p->_tmd__SetVideoOutputConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _tmd__SetVideoOutputConfiguration * soap_new_set__tmd__SetVideoOutputConfiguration( - struct soap *soap, - tt__VideoOutputConfiguration *Configuration, - bool ForcePersistence, - const std::vector & __any) -{ - _tmd__SetVideoOutputConfiguration *_p = ::soap_new__tmd__SetVideoOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetVideoOutputConfiguration::Configuration = Configuration; - _p->_tmd__SetVideoOutputConfiguration::ForcePersistence = ForcePersistence; - _p->_tmd__SetVideoOutputConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetVideoOutputConfiguration(struct soap *soap, _tmd__SetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfiguration 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, "tmd:SetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfiguration 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, "tmd:SetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfiguration 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, "tmd:SetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_get__tmd__SetVideoOutputConfiguration(struct soap*, _tmd__SetVideoOutputConfiguration *, const char*, const char*); - -inline int soap_read__tmd__SetVideoOutputConfiguration(struct soap *soap, _tmd__SetVideoOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetVideoOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetVideoOutputConfiguration(struct soap *soap, _tmd__SetVideoOutputConfiguration *p) -{ - if (::soap_read__tmd__SetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoSourceConfigurationResponse(struct soap*, const char*, int, const _tmd__SetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetVideoSourceConfigurationResponse(struct soap*, const char*, _tmd__SetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__SetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetVideoSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetVideoSourceConfigurationResponse * soap_new__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetVideoSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetVideoSourceConfigurationResponse * soap_new_req__tmd__SetVideoSourceConfigurationResponse( - struct soap *soap) -{ - _tmd__SetVideoSourceConfigurationResponse *_p = ::soap_new__tmd__SetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SetVideoSourceConfigurationResponse * soap_new_set__tmd__SetVideoSourceConfigurationResponse( - struct soap *soap, - const std::vector & __any) -{ - _tmd__SetVideoSourceConfigurationResponse *_p = ::soap_new__tmd__SetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetVideoSourceConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, _tmd__SetVideoSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfigurationResponse 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, "tmd:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfigurationResponse 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, "tmd:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfigurationResponse 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, "tmd:SetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetVideoSourceConfigurationResponse(struct soap*, _tmd__SetVideoSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, _tmd__SetVideoSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetVideoSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetVideoSourceConfigurationResponse(struct soap *soap, _tmd__SetVideoSourceConfigurationResponse *p) -{ - if (::soap_read__tmd__SetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE__tmd__SetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetVideoSourceConfiguration(struct soap*, const char*, int, const _tmd__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 _tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in__tmd__SetVideoSourceConfiguration(struct soap*, const char*, _tmd__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 _tmd__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetVideoSourceConfiguration * soap_new__tmd__SetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetVideoSourceConfiguration * soap_new_req__tmd__SetVideoSourceConfiguration( - struct soap *soap, - tt__VideoSourceConfiguration *Configuration, - bool ForcePersistence) -{ - _tmd__SetVideoSourceConfiguration *_p = ::soap_new__tmd__SetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetVideoSourceConfiguration::Configuration = Configuration; - _p->_tmd__SetVideoSourceConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _tmd__SetVideoSourceConfiguration * soap_new_set__tmd__SetVideoSourceConfiguration( - struct soap *soap, - tt__VideoSourceConfiguration *Configuration, - bool ForcePersistence, - const std::vector & __any) -{ - _tmd__SetVideoSourceConfiguration *_p = ::soap_new__tmd__SetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetVideoSourceConfiguration::Configuration = Configuration; - _p->_tmd__SetVideoSourceConfiguration::ForcePersistence = ForcePersistence; - _p->_tmd__SetVideoSourceConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetVideoSourceConfiguration(struct soap *soap, _tmd__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfiguration 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, "tmd:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfiguration 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, "tmd:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfiguration 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, "tmd:SetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get__tmd__SetVideoSourceConfiguration(struct soap*, _tmd__SetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read__tmd__SetVideoSourceConfiguration(struct soap *soap, _tmd__SetVideoSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetVideoSourceConfiguration(struct soap *soap, _tmd__SetVideoSourceConfiguration *p) -{ - if (::soap_read__tmd__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioOutputConfigurationResponse(struct soap*, const char*, int, const _tmd__SetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetAudioOutputConfigurationResponse(struct soap*, const char*, _tmd__SetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__SetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetAudioOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetAudioOutputConfigurationResponse * soap_new__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetAudioOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetAudioOutputConfigurationResponse * soap_new_req__tmd__SetAudioOutputConfigurationResponse( - struct soap *soap) -{ - _tmd__SetAudioOutputConfigurationResponse *_p = ::soap_new__tmd__SetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SetAudioOutputConfigurationResponse * soap_new_set__tmd__SetAudioOutputConfigurationResponse( - struct soap *soap, - const std::vector & __any) -{ - _tmd__SetAudioOutputConfigurationResponse *_p = ::soap_new__tmd__SetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetAudioOutputConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, _tmd__SetAudioOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfigurationResponse 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, "tmd:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfigurationResponse 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, "tmd:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfigurationResponse 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, "tmd:SetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetAudioOutputConfigurationResponse(struct soap*, _tmd__SetAudioOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, _tmd__SetAudioOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetAudioOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetAudioOutputConfigurationResponse(struct soap *soap, _tmd__SetAudioOutputConfigurationResponse *p) -{ - if (::soap_read__tmd__SetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE__tmd__SetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioOutputConfiguration(struct soap*, const char*, int, const _tmd__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 _tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in__tmd__SetAudioOutputConfiguration(struct soap*, const char*, _tmd__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 _tmd__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetAudioOutputConfiguration * soap_new__tmd__SetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetAudioOutputConfiguration * soap_new_req__tmd__SetAudioOutputConfiguration( - struct soap *soap, - tt__AudioOutputConfiguration *Configuration, - bool ForcePersistence) -{ - _tmd__SetAudioOutputConfiguration *_p = ::soap_new__tmd__SetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetAudioOutputConfiguration::Configuration = Configuration; - _p->_tmd__SetAudioOutputConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _tmd__SetAudioOutputConfiguration * soap_new_set__tmd__SetAudioOutputConfiguration( - struct soap *soap, - tt__AudioOutputConfiguration *Configuration, - bool ForcePersistence, - const std::vector & __any) -{ - _tmd__SetAudioOutputConfiguration *_p = ::soap_new__tmd__SetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetAudioOutputConfiguration::Configuration = Configuration; - _p->_tmd__SetAudioOutputConfiguration::ForcePersistence = ForcePersistence; - _p->_tmd__SetAudioOutputConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetAudioOutputConfiguration(struct soap *soap, _tmd__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfiguration 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, "tmd:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfiguration 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, "tmd:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfiguration 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, "tmd:SetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get__tmd__SetAudioOutputConfiguration(struct soap*, _tmd__SetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read__tmd__SetAudioOutputConfiguration(struct soap *soap, _tmd__SetAudioOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetAudioOutputConfiguration(struct soap *soap, _tmd__SetAudioOutputConfiguration *p) -{ - if (::soap_read__tmd__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioSourceConfigurationResponse(struct soap*, const char*, int, const _tmd__SetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__SetAudioSourceConfigurationResponse(struct soap*, const char*, _tmd__SetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__SetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__SetAudioSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetAudioSourceConfigurationResponse * soap_new__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetAudioSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetAudioSourceConfigurationResponse * soap_new_req__tmd__SetAudioSourceConfigurationResponse( - struct soap *soap) -{ - _tmd__SetAudioSourceConfigurationResponse *_p = ::soap_new__tmd__SetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__SetAudioSourceConfigurationResponse * soap_new_set__tmd__SetAudioSourceConfigurationResponse( - struct soap *soap, - const std::vector & __any) -{ - _tmd__SetAudioSourceConfigurationResponse *_p = ::soap_new__tmd__SetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetAudioSourceConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, _tmd__SetAudioSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfigurationResponse 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, "tmd:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfigurationResponse 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, "tmd:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfigurationResponse 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, "tmd:SetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__SetAudioSourceConfigurationResponse(struct soap*, _tmd__SetAudioSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, _tmd__SetAudioSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetAudioSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetAudioSourceConfigurationResponse(struct soap *soap, _tmd__SetAudioSourceConfigurationResponse *p) -{ - if (::soap_read__tmd__SetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__SetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE__tmd__SetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__SetAudioSourceConfiguration(struct soap*, const char*, int, const _tmd__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 _tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in__tmd__SetAudioSourceConfiguration(struct soap*, const char*, _tmd__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 _tmd__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__SetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__SetAudioSourceConfiguration * soap_new__tmd__SetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__SetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__SetAudioSourceConfiguration * soap_new_req__tmd__SetAudioSourceConfiguration( - struct soap *soap, - tt__AudioSourceConfiguration *Configuration, - bool ForcePersistence) -{ - _tmd__SetAudioSourceConfiguration *_p = ::soap_new__tmd__SetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetAudioSourceConfiguration::Configuration = Configuration; - _p->_tmd__SetAudioSourceConfiguration::ForcePersistence = ForcePersistence; - } - return _p; -} - -inline _tmd__SetAudioSourceConfiguration * soap_new_set__tmd__SetAudioSourceConfiguration( - struct soap *soap, - tt__AudioSourceConfiguration *Configuration, - bool ForcePersistence, - const std::vector & __any) -{ - _tmd__SetAudioSourceConfiguration *_p = ::soap_new__tmd__SetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__SetAudioSourceConfiguration::Configuration = Configuration; - _p->_tmd__SetAudioSourceConfiguration::ForcePersistence = ForcePersistence; - _p->_tmd__SetAudioSourceConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__SetAudioSourceConfiguration(struct soap *soap, _tmd__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfiguration 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, "tmd:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfiguration 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, "tmd:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfiguration 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, "tmd:SetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__SetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get__tmd__SetAudioSourceConfiguration(struct soap*, _tmd__SetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read__tmd__SetAudioSourceConfiguration(struct soap *soap, _tmd__SetAudioSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__SetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__SetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__SetAudioSourceConfiguration(struct soap *soap, _tmd__SetAudioSourceConfiguration *p) -{ - if (::soap_read__tmd__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfigurationResponse(struct soap*, const char*, int, const _tmd__GetVideoOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfigurationResponse(struct soap*, const char*, _tmd__GetVideoOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__GetVideoOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoOutputConfigurationResponse * soap_new__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoOutputConfigurationResponse * soap_new_req__tmd__GetVideoOutputConfigurationResponse( - struct soap *soap, - tt__VideoOutputConfiguration *VideoOutputConfiguration) -{ - _tmd__GetVideoOutputConfigurationResponse *_p = ::soap_new__tmd__GetVideoOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration = VideoOutputConfiguration; - } - return _p; -} - -inline _tmd__GetVideoOutputConfigurationResponse * soap_new_set__tmd__GetVideoOutputConfigurationResponse( - struct soap *soap, - tt__VideoOutputConfiguration *VideoOutputConfiguration, - const std::vector & __any) -{ - _tmd__GetVideoOutputConfigurationResponse *_p = ::soap_new__tmd__GetVideoOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfigurationResponse::VideoOutputConfiguration = VideoOutputConfiguration; - _p->_tmd__GetVideoOutputConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationResponse 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, "tmd:GetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationResponse 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, "tmd:GetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationResponse 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, "tmd:GetVideoOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfigurationResponse(struct soap*, _tmd__GetVideoOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoOutputConfigurationResponse(struct soap *soap, _tmd__GetVideoOutputConfigurationResponse *p) -{ - if (::soap_read__tmd__GetVideoOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoOutputConfiguration_DEFINED -#define SOAP_TYPE__tmd__GetVideoOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputConfiguration(struct soap*, const char*, int, const _tmd__GetVideoOutputConfiguration *, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_in__tmd__GetVideoOutputConfiguration(struct soap*, const char*, _tmd__GetVideoOutputConfiguration *, const char*); -SOAP_FMAC1 _tmd__GetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoOutputConfiguration * soap_new__tmd__GetVideoOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoOutputConfiguration * soap_new_req__tmd__GetVideoOutputConfiguration( - struct soap *soap, - const std::string& VideoOutputToken) -{ - _tmd__GetVideoOutputConfiguration *_p = ::soap_new__tmd__GetVideoOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfiguration::VideoOutputToken = VideoOutputToken; - } - return _p; -} - -inline _tmd__GetVideoOutputConfiguration * soap_new_set__tmd__GetVideoOutputConfiguration( - struct soap *soap, - const std::string& VideoOutputToken, - const std::vector & __any) -{ - _tmd__GetVideoOutputConfiguration *_p = ::soap_new__tmd__GetVideoOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputConfiguration::VideoOutputToken = VideoOutputToken; - _p->_tmd__GetVideoOutputConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoOutputConfiguration(struct soap *soap, _tmd__GetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfiguration 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, "tmd:GetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfiguration 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, "tmd:GetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfiguration 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, "tmd:GetVideoOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_get__tmd__GetVideoOutputConfiguration(struct soap*, _tmd__GetVideoOutputConfiguration *, const char*, const char*); - -inline int soap_read__tmd__GetVideoOutputConfiguration(struct soap *soap, _tmd__GetVideoOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoOutputConfiguration(struct soap *soap, _tmd__GetVideoOutputConfiguration *p) -{ - if (::soap_read__tmd__GetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfigurationResponse(struct soap*, const char*, int, const _tmd__GetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfigurationResponse(struct soap*, const char*, _tmd__GetVideoSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__GetVideoSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoSourceConfigurationResponse * soap_new__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoSourceConfigurationResponse * soap_new_req__tmd__GetVideoSourceConfigurationResponse( - struct soap *soap, - tt__VideoSourceConfiguration *VideoSourceConfiguration) -{ - _tmd__GetVideoSourceConfigurationResponse *_p = ::soap_new__tmd__GetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration = VideoSourceConfiguration; - } - return _p; -} - -inline _tmd__GetVideoSourceConfigurationResponse * soap_new_set__tmd__GetVideoSourceConfigurationResponse( - struct soap *soap, - tt__VideoSourceConfiguration *VideoSourceConfiguration, - const std::vector & __any) -{ - _tmd__GetVideoSourceConfigurationResponse *_p = ::soap_new__tmd__GetVideoSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfigurationResponse::VideoSourceConfiguration = VideoSourceConfiguration; - _p->_tmd__GetVideoSourceConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationResponse 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, "tmd:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationResponse 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, "tmd:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationResponse 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, "tmd:GetVideoSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfigurationResponse(struct soap*, _tmd__GetVideoSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoSourceConfigurationResponse(struct soap *soap, _tmd__GetVideoSourceConfigurationResponse *p) -{ - if (::soap_read__tmd__GetVideoSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE__tmd__GetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoSourceConfiguration(struct soap*, const char*, int, const _tmd__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 _tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in__tmd__GetVideoSourceConfiguration(struct soap*, const char*, _tmd__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 _tmd__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoSourceConfiguration * soap_new__tmd__GetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoSourceConfiguration * soap_new_req__tmd__GetVideoSourceConfiguration( - struct soap *soap, - const std::string& VideoSourceToken) -{ - _tmd__GetVideoSourceConfiguration *_p = ::soap_new__tmd__GetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfiguration::VideoSourceToken = VideoSourceToken; - } - return _p; -} - -inline _tmd__GetVideoSourceConfiguration * soap_new_set__tmd__GetVideoSourceConfiguration( - struct soap *soap, - const std::string& VideoSourceToken, - const std::vector & __any) -{ - _tmd__GetVideoSourceConfiguration *_p = ::soap_new__tmd__GetVideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoSourceConfiguration::VideoSourceToken = VideoSourceToken; - _p->_tmd__GetVideoSourceConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetVideoSourceConfiguration(struct soap *soap, _tmd__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfiguration 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, "tmd:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfiguration 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, "tmd:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfiguration 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, "tmd:GetVideoSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetVideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get__tmd__GetVideoSourceConfiguration(struct soap*, _tmd__GetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read__tmd__GetVideoSourceConfiguration(struct soap *soap, _tmd__GetVideoSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoSourceConfiguration(struct soap *soap, _tmd__GetVideoSourceConfiguration *p) -{ - if (::soap_read__tmd__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfigurationResponse(struct soap*, const char*, int, const _tmd__GetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfigurationResponse(struct soap*, const char*, _tmd__GetAudioOutputConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__GetAudioOutputConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioOutputConfigurationResponse * soap_new__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioOutputConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioOutputConfigurationResponse * soap_new_req__tmd__GetAudioOutputConfigurationResponse( - struct soap *soap, - tt__AudioOutputConfiguration *AudioOutputConfiguration) -{ - _tmd__GetAudioOutputConfigurationResponse *_p = ::soap_new__tmd__GetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration = AudioOutputConfiguration; - } - return _p; -} - -inline _tmd__GetAudioOutputConfigurationResponse * soap_new_set__tmd__GetAudioOutputConfigurationResponse( - struct soap *soap, - tt__AudioOutputConfiguration *AudioOutputConfiguration, - const std::vector & __any) -{ - _tmd__GetAudioOutputConfigurationResponse *_p = ::soap_new__tmd__GetAudioOutputConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfigurationResponse::AudioOutputConfiguration = AudioOutputConfiguration; - _p->_tmd__GetAudioOutputConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationResponse 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, "tmd:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationResponse 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, "tmd:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationResponse 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, "tmd:GetAudioOutputConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfigurationResponse(struct soap*, _tmd__GetAudioOutputConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioOutputConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioOutputConfigurationResponse(struct soap *soap, _tmd__GetAudioOutputConfigurationResponse *p) -{ - if (::soap_read__tmd__GetAudioOutputConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE__tmd__GetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioOutputConfiguration(struct soap*, const char*, int, const _tmd__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 _tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in__tmd__GetAudioOutputConfiguration(struct soap*, const char*, _tmd__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 _tmd__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioOutputConfiguration * soap_new__tmd__GetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioOutputConfiguration * soap_new_req__tmd__GetAudioOutputConfiguration( - struct soap *soap, - const std::string& AudioOutputToken) -{ - _tmd__GetAudioOutputConfiguration *_p = ::soap_new__tmd__GetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfiguration::AudioOutputToken = AudioOutputToken; - } - return _p; -} - -inline _tmd__GetAudioOutputConfiguration * soap_new_set__tmd__GetAudioOutputConfiguration( - struct soap *soap, - const std::string& AudioOutputToken, - const std::vector & __any) -{ - _tmd__GetAudioOutputConfiguration *_p = ::soap_new__tmd__GetAudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioOutputConfiguration::AudioOutputToken = AudioOutputToken; - _p->_tmd__GetAudioOutputConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioOutputConfiguration(struct soap *soap, _tmd__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfiguration 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, "tmd:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfiguration 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, "tmd:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfiguration 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, "tmd:GetAudioOutputConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get__tmd__GetAudioOutputConfiguration(struct soap*, _tmd__GetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read__tmd__GetAudioOutputConfiguration(struct soap *soap, _tmd__GetAudioOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioOutputConfiguration(struct soap *soap, _tmd__GetAudioOutputConfiguration *p) -{ - if (::soap_read__tmd__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse_DEFINED -#define SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfigurationResponse(struct soap*, const char*, int, const _tmd__GetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfigurationResponse(struct soap*, const char*, _tmd__GetAudioSourceConfigurationResponse *, const char*); -SOAP_FMAC1 _tmd__GetAudioSourceConfigurationResponse * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfigurationResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioSourceConfigurationResponse * soap_new__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioSourceConfigurationResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioSourceConfigurationResponse * soap_new_req__tmd__GetAudioSourceConfigurationResponse( - struct soap *soap, - tt__AudioSourceConfiguration *AudioSourceConfiguration) -{ - _tmd__GetAudioSourceConfigurationResponse *_p = ::soap_new__tmd__GetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration = AudioSourceConfiguration; - } - return _p; -} - -inline _tmd__GetAudioSourceConfigurationResponse * soap_new_set__tmd__GetAudioSourceConfigurationResponse( - struct soap *soap, - tt__AudioSourceConfiguration *AudioSourceConfiguration, - const std::vector & __any) -{ - _tmd__GetAudioSourceConfigurationResponse *_p = ::soap_new__tmd__GetAudioSourceConfigurationResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfigurationResponse::AudioSourceConfiguration = AudioSourceConfiguration; - _p->_tmd__GetAudioSourceConfigurationResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationResponse 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, "tmd:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationResponse 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, "tmd:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationResponse 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, "tmd:GetAudioSourceConfigurationResponse", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfigurationResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationResponse * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfigurationResponse(struct soap*, _tmd__GetAudioSourceConfigurationResponse *, const char*, const char*); - -inline int soap_read__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioSourceConfigurationResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfigurationResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioSourceConfigurationResponse(struct soap *soap, _tmd__GetAudioSourceConfigurationResponse *p) -{ - if (::soap_read__tmd__GetAudioSourceConfigurationResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE__tmd__GetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetAudioSourceConfiguration(struct soap*, const char*, int, const _tmd__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 _tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in__tmd__GetAudioSourceConfiguration(struct soap*, const char*, _tmd__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 _tmd__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate__tmd__GetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetAudioSourceConfiguration * soap_new__tmd__GetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetAudioSourceConfiguration * soap_new_req__tmd__GetAudioSourceConfiguration( - struct soap *soap, - const std::string& AudioSourceToken) -{ - _tmd__GetAudioSourceConfiguration *_p = ::soap_new__tmd__GetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfiguration::AudioSourceToken = AudioSourceToken; - } - return _p; -} - -inline _tmd__GetAudioSourceConfiguration * soap_new_set__tmd__GetAudioSourceConfiguration( - struct soap *soap, - const std::string& AudioSourceToken, - const std::vector & __any) -{ - _tmd__GetAudioSourceConfiguration *_p = ::soap_new__tmd__GetAudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetAudioSourceConfiguration::AudioSourceToken = AudioSourceToken; - _p->_tmd__GetAudioSourceConfiguration::__any = __any; - } - return _p; -} - -inline int soap_write__tmd__GetAudioSourceConfiguration(struct soap *soap, _tmd__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfiguration 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, "tmd:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfiguration 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, "tmd:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfiguration 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, "tmd:GetAudioSourceConfiguration", p->soap_type() == SOAP_TYPE__tmd__GetAudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get__tmd__GetAudioSourceConfiguration(struct soap*, _tmd__GetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read__tmd__GetAudioSourceConfiguration(struct soap *soap, _tmd__GetAudioSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, _tmd__GetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetAudioSourceConfiguration(struct soap *soap, _tmd__GetAudioSourceConfiguration *p) -{ - if (::soap_read__tmd__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoOutputsResponse_DEFINED -#define SOAP_TYPE__tmd__GetVideoOutputsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputsResponse(struct soap*, const char*, int, const _tmd__GetVideoOutputsResponse *, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputsResponse * SOAP_FMAC4 soap_in__tmd__GetVideoOutputsResponse(struct soap*, const char*, _tmd__GetVideoOutputsResponse *, const char*); -SOAP_FMAC1 _tmd__GetVideoOutputsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoOutputsResponse * soap_new__tmd__GetVideoOutputsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoOutputsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoOutputsResponse * soap_new_req__tmd__GetVideoOutputsResponse( - struct soap *soap) -{ - _tmd__GetVideoOutputsResponse *_p = ::soap_new__tmd__GetVideoOutputsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetVideoOutputsResponse * soap_new_set__tmd__GetVideoOutputsResponse( - struct soap *soap, - const std::vector & VideoOutputs) -{ - _tmd__GetVideoOutputsResponse *_p = ::soap_new__tmd__GetVideoOutputsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetVideoOutputsResponse::VideoOutputs = VideoOutputs; - } - return _p; -} - -inline int soap_write__tmd__GetVideoOutputsResponse(struct soap *soap, _tmd__GetVideoOutputsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoOutputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoOutputsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputsResponse 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, "tmd:GetVideoOutputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoOutputsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputsResponse 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, "tmd:GetVideoOutputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoOutputsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputsResponse 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, "tmd:GetVideoOutputsResponse", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoOutputsResponse * SOAP_FMAC4 soap_get__tmd__GetVideoOutputsResponse(struct soap*, _tmd__GetVideoOutputsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetVideoOutputsResponse(struct soap *soap, _tmd__GetVideoOutputsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoOutputsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoOutputsResponse(struct soap *soap, const char *URL, _tmd__GetVideoOutputsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoOutputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoOutputsResponse(struct soap *soap, _tmd__GetVideoOutputsResponse *p) -{ - if (::soap_read__tmd__GetVideoOutputsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetVideoOutputs_DEFINED -#define SOAP_TYPE__tmd__GetVideoOutputs_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetVideoOutputs(struct soap*, const char*, int, const _tmd__GetVideoOutputs *, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputs * SOAP_FMAC4 soap_in__tmd__GetVideoOutputs(struct soap*, const char*, _tmd__GetVideoOutputs *, const char*); -SOAP_FMAC1 _tmd__GetVideoOutputs * SOAP_FMAC2 soap_instantiate__tmd__GetVideoOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetVideoOutputs * soap_new__tmd__GetVideoOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetVideoOutputs(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetVideoOutputs * soap_new_req__tmd__GetVideoOutputs( - struct soap *soap) -{ - _tmd__GetVideoOutputs *_p = ::soap_new__tmd__GetVideoOutputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetVideoOutputs * soap_new_set__tmd__GetVideoOutputs( - struct soap *soap) -{ - _tmd__GetVideoOutputs *_p = ::soap_new__tmd__GetVideoOutputs(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tmd__GetVideoOutputs(struct soap *soap, _tmd__GetVideoOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetVideoOutputs", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputs ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetVideoOutputs(struct soap *soap, const char *URL, _tmd__GetVideoOutputs 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, "tmd:GetVideoOutputs", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetVideoOutputs(struct soap *soap, const char *URL, _tmd__GetVideoOutputs 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, "tmd:GetVideoOutputs", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetVideoOutputs(struct soap *soap, const char *URL, _tmd__GetVideoOutputs 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, "tmd:GetVideoOutputs", p->soap_type() == SOAP_TYPE__tmd__GetVideoOutputs ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetVideoOutputs * SOAP_FMAC4 soap_get__tmd__GetVideoOutputs(struct soap*, _tmd__GetVideoOutputs *, const char*, const char*); - -inline int soap_read__tmd__GetVideoOutputs(struct soap *soap, _tmd__GetVideoOutputs *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetVideoOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetVideoOutputs(struct soap *soap, const char *URL, _tmd__GetVideoOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetVideoOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetVideoOutputs(struct soap *soap, _tmd__GetVideoOutputs *p) -{ - if (::soap_read__tmd__GetVideoOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetRelayOutputOptionsResponse_DEFINED -#define SOAP_TYPE__tmd__GetRelayOutputOptionsResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetRelayOutputOptionsResponse(struct soap*, const char*, int, const _tmd__GetRelayOutputOptionsResponse *, const char*); -SOAP_FMAC3 _tmd__GetRelayOutputOptionsResponse * SOAP_FMAC4 soap_in__tmd__GetRelayOutputOptionsResponse(struct soap*, const char*, _tmd__GetRelayOutputOptionsResponse *, const char*); -SOAP_FMAC1 _tmd__GetRelayOutputOptionsResponse * SOAP_FMAC2 soap_instantiate__tmd__GetRelayOutputOptionsResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetRelayOutputOptionsResponse * soap_new__tmd__GetRelayOutputOptionsResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetRelayOutputOptionsResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetRelayOutputOptionsResponse * soap_new_req__tmd__GetRelayOutputOptionsResponse( - struct soap *soap) -{ - _tmd__GetRelayOutputOptionsResponse *_p = ::soap_new__tmd__GetRelayOutputOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetRelayOutputOptionsResponse * soap_new_set__tmd__GetRelayOutputOptionsResponse( - struct soap *soap, - const std::vector & RelayOutputOptions) -{ - _tmd__GetRelayOutputOptionsResponse *_p = ::soap_new__tmd__GetRelayOutputOptionsResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetRelayOutputOptionsResponse::RelayOutputOptions = RelayOutputOptions; - } - return _p; -} - -inline int soap_write__tmd__GetRelayOutputOptionsResponse(struct soap *soap, _tmd__GetRelayOutputOptionsResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetRelayOutputOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetRelayOutputOptionsResponse(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptionsResponse 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, "tmd:GetRelayOutputOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetRelayOutputOptionsResponse(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptionsResponse 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, "tmd:GetRelayOutputOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptionsResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetRelayOutputOptionsResponse(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptionsResponse 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, "tmd:GetRelayOutputOptionsResponse", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptionsResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetRelayOutputOptionsResponse * SOAP_FMAC4 soap_get__tmd__GetRelayOutputOptionsResponse(struct soap*, _tmd__GetRelayOutputOptionsResponse *, const char*, const char*); - -inline int soap_read__tmd__GetRelayOutputOptionsResponse(struct soap *soap, _tmd__GetRelayOutputOptionsResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetRelayOutputOptionsResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetRelayOutputOptionsResponse(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptionsResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetRelayOutputOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetRelayOutputOptionsResponse(struct soap *soap, _tmd__GetRelayOutputOptionsResponse *p) -{ - if (::soap_read__tmd__GetRelayOutputOptionsResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetRelayOutputOptions_DEFINED -#define SOAP_TYPE__tmd__GetRelayOutputOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetRelayOutputOptions(struct soap*, const char*, int, const _tmd__GetRelayOutputOptions *, const char*); -SOAP_FMAC3 _tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_in__tmd__GetRelayOutputOptions(struct soap*, const char*, _tmd__GetRelayOutputOptions *, const char*); -SOAP_FMAC1 _tmd__GetRelayOutputOptions * SOAP_FMAC2 soap_instantiate__tmd__GetRelayOutputOptions(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetRelayOutputOptions * soap_new__tmd__GetRelayOutputOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetRelayOutputOptions(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetRelayOutputOptions * soap_new_req__tmd__GetRelayOutputOptions( - struct soap *soap) -{ - _tmd__GetRelayOutputOptions *_p = ::soap_new__tmd__GetRelayOutputOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetRelayOutputOptions * soap_new_set__tmd__GetRelayOutputOptions( - struct soap *soap, - std::string *RelayOutputToken) -{ - _tmd__GetRelayOutputOptions *_p = ::soap_new__tmd__GetRelayOutputOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetRelayOutputOptions::RelayOutputToken = RelayOutputToken; - } - return _p; -} - -inline int soap_write__tmd__GetRelayOutputOptions(struct soap *soap, _tmd__GetRelayOutputOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetRelayOutputOptions", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptions 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, "tmd:GetRelayOutputOptions", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptions 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, "tmd:GetRelayOutputOptions", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptions 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, "tmd:GetRelayOutputOptions", p->soap_type() == SOAP_TYPE__tmd__GetRelayOutputOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_get__tmd__GetRelayOutputOptions(struct soap*, _tmd__GetRelayOutputOptions *, const char*, const char*); - -inline int soap_read__tmd__GetRelayOutputOptions(struct soap *soap, _tmd__GetRelayOutputOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetRelayOutputOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, _tmd__GetRelayOutputOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetRelayOutputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetRelayOutputOptions(struct soap *soap, _tmd__GetRelayOutputOptions *p) -{ - if (::soap_read__tmd__GetRelayOutputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__tmd__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _tmd__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _tmd__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tmd__GetServiceCapabilitiesResponse(struct soap*, const char*, _tmd__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _tmd__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tmd__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetServiceCapabilitiesResponse * soap_new__tmd__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetServiceCapabilitiesResponse * soap_new_req__tmd__GetServiceCapabilitiesResponse( - struct soap *soap, - tmd__Capabilities *Capabilities) -{ - _tmd__GetServiceCapabilitiesResponse *_p = ::soap_new__tmd__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tmd__GetServiceCapabilitiesResponse * soap_new_set__tmd__GetServiceCapabilitiesResponse( - struct soap *soap, - tmd__Capabilities *Capabilities) -{ - _tmd__GetServiceCapabilitiesResponse *_p = ::soap_new__tmd__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tmd__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tmd__GetServiceCapabilitiesResponse(struct soap *soap, _tmd__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tmd__GetServiceCapabilitiesResponse 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, "tmd:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tmd__GetServiceCapabilitiesResponse 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, "tmd:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tmd__GetServiceCapabilitiesResponse 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, "tmd:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tmd__GetServiceCapabilitiesResponse(struct soap*, _tmd__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tmd__GetServiceCapabilitiesResponse(struct soap *soap, _tmd__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tmd__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetServiceCapabilitiesResponse(struct soap *soap, _tmd__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__tmd__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__tmd__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__GetServiceCapabilities(struct soap*, const char*, int, const _tmd__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _tmd__GetServiceCapabilities * SOAP_FMAC4 soap_in__tmd__GetServiceCapabilities(struct soap*, const char*, _tmd__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _tmd__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tmd__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tmd__GetServiceCapabilities * soap_new__tmd__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tmd__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _tmd__GetServiceCapabilities * soap_new_req__tmd__GetServiceCapabilities( - struct soap *soap) -{ - _tmd__GetServiceCapabilities *_p = ::soap_new__tmd__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tmd__GetServiceCapabilities * soap_new_set__tmd__GetServiceCapabilities( - struct soap *soap) -{ - _tmd__GetServiceCapabilities *_p = ::soap_new__tmd__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tmd__GetServiceCapabilities(struct soap *soap, _tmd__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tmd__GetServiceCapabilities(struct soap *soap, const char *URL, _tmd__GetServiceCapabilities 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, "tmd:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tmd__GetServiceCapabilities(struct soap *soap, const char *URL, _tmd__GetServiceCapabilities 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, "tmd:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tmd__GetServiceCapabilities(struct soap *soap, const char *URL, _tmd__GetServiceCapabilities 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, "tmd:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tmd__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tmd__GetServiceCapabilities * SOAP_FMAC4 soap_get__tmd__GetServiceCapabilities(struct soap*, _tmd__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__tmd__GetServiceCapabilities(struct soap *soap, _tmd__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tmd__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tmd__GetServiceCapabilities(struct soap *soap, const char *URL, _tmd__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tmd__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tmd__GetServiceCapabilities(struct soap *soap, _tmd__GetServiceCapabilities *p) -{ - if (::soap_read__tmd__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__ParityBitList_DEFINED -#define SOAP_TYPE_tmd__ParityBitList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__ParityBitList(struct soap*, const char*, int, const tmd__ParityBitList *, const char*); -SOAP_FMAC3 tmd__ParityBitList * SOAP_FMAC4 soap_in_tmd__ParityBitList(struct soap*, const char*, tmd__ParityBitList *, const char*); -SOAP_FMAC1 tmd__ParityBitList * SOAP_FMAC2 soap_instantiate_tmd__ParityBitList(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__ParityBitList * soap_new_tmd__ParityBitList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__ParityBitList(soap, n, NULL, NULL, NULL); -} - -inline tmd__ParityBitList * soap_new_req_tmd__ParityBitList( - struct soap *soap) -{ - tmd__ParityBitList *_p = ::soap_new_tmd__ParityBitList(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tmd__ParityBitList * soap_new_set_tmd__ParityBitList( - struct soap *soap, - const std::vector & Items) -{ - tmd__ParityBitList *_p = ::soap_new_tmd__ParityBitList(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__ParityBitList::Items = Items; - } - return _p; -} - -inline int soap_write_tmd__ParityBitList(struct soap *soap, tmd__ParityBitList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:ParityBitList", p->soap_type() == SOAP_TYPE_tmd__ParityBitList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__ParityBitList(struct soap *soap, const char *URL, tmd__ParityBitList 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, "tmd:ParityBitList", p->soap_type() == SOAP_TYPE_tmd__ParityBitList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__ParityBitList(struct soap *soap, const char *URL, tmd__ParityBitList 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, "tmd:ParityBitList", p->soap_type() == SOAP_TYPE_tmd__ParityBitList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__ParityBitList(struct soap *soap, const char *URL, tmd__ParityBitList 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, "tmd:ParityBitList", p->soap_type() == SOAP_TYPE_tmd__ParityBitList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__ParityBitList * SOAP_FMAC4 soap_get_tmd__ParityBitList(struct soap*, tmd__ParityBitList *, const char*, const char*); - -inline int soap_read_tmd__ParityBitList(struct soap *soap, tmd__ParityBitList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__ParityBitList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__ParityBitList(struct soap *soap, const char *URL, tmd__ParityBitList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__ParityBitList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__ParityBitList(struct soap *soap, tmd__ParityBitList *p) -{ - if (::soap_read_tmd__ParityBitList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__SerialPortConfigurationOptions_DEFINED -#define SOAP_TYPE_tmd__SerialPortConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortConfigurationOptions(struct soap*, const char*, int, const tmd__SerialPortConfigurationOptions *, const char*); -SOAP_FMAC3 tmd__SerialPortConfigurationOptions * SOAP_FMAC4 soap_in_tmd__SerialPortConfigurationOptions(struct soap*, const char*, tmd__SerialPortConfigurationOptions *, const char*); -SOAP_FMAC1 tmd__SerialPortConfigurationOptions * SOAP_FMAC2 soap_instantiate_tmd__SerialPortConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__SerialPortConfigurationOptions * soap_new_tmd__SerialPortConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__SerialPortConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tmd__SerialPortConfigurationOptions * soap_new_req_tmd__SerialPortConfigurationOptions( - struct soap *soap, - int tt__IntList, - int CharacterLengthList, - int tt__FloatList, - const std::string& token) -{ - tmd__SerialPortConfigurationOptions *_p = ::soap_new_tmd__SerialPortConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialPortConfigurationOptions::tt__IntList = tt__IntList; - _p->tmd__SerialPortConfigurationOptions::CharacterLengthList = CharacterLengthList; - _p->tmd__SerialPortConfigurationOptions::tt__FloatList = tt__FloatList; - _p->tmd__SerialPortConfigurationOptions::token = token; - } - return _p; -} - -inline tmd__SerialPortConfigurationOptions * soap_new_set_tmd__SerialPortConfigurationOptions( - struct soap *soap, - int tt__IntList, - int CharacterLengthList, - int tt__FloatList, - int __any, - const std::string& token, - const struct soap_dom_attribute& __anyAttribute) -{ - tmd__SerialPortConfigurationOptions *_p = ::soap_new_tmd__SerialPortConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialPortConfigurationOptions::tt__IntList = tt__IntList; - _p->tmd__SerialPortConfigurationOptions::CharacterLengthList = CharacterLengthList; - _p->tmd__SerialPortConfigurationOptions::tt__FloatList = tt__FloatList; - _p->tmd__SerialPortConfigurationOptions::__any = __any; - _p->tmd__SerialPortConfigurationOptions::token = token; - _p->tmd__SerialPortConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tmd__SerialPortConfigurationOptions(struct soap *soap, tmd__SerialPortConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__SerialPortConfigurationOptions(struct soap *soap, const char *URL, tmd__SerialPortConfigurationOptions 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, "tmd:SerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__SerialPortConfigurationOptions(struct soap *soap, const char *URL, tmd__SerialPortConfigurationOptions 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, "tmd:SerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__SerialPortConfigurationOptions(struct soap *soap, const char *URL, tmd__SerialPortConfigurationOptions 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, "tmd:SerialPortConfigurationOptions", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__SerialPortConfigurationOptions * SOAP_FMAC4 soap_get_tmd__SerialPortConfigurationOptions(struct soap*, tmd__SerialPortConfigurationOptions *, const char*, const char*); - -inline int soap_read_tmd__SerialPortConfigurationOptions(struct soap *soap, tmd__SerialPortConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__SerialPortConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__SerialPortConfigurationOptions(struct soap *soap, const char *URL, tmd__SerialPortConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__SerialPortConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__SerialPortConfigurationOptions(struct soap *soap, tmd__SerialPortConfigurationOptions *p) -{ - if (::soap_read_tmd__SerialPortConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__SerialPortConfiguration_DEFINED -#define SOAP_TYPE_tmd__SerialPortConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPortConfiguration(struct soap*, const char*, int, const tmd__SerialPortConfiguration *, const char*); -SOAP_FMAC3 tmd__SerialPortConfiguration * SOAP_FMAC4 soap_in_tmd__SerialPortConfiguration(struct soap*, const char*, tmd__SerialPortConfiguration *, const char*); -SOAP_FMAC1 tmd__SerialPortConfiguration * SOAP_FMAC2 soap_instantiate_tmd__SerialPortConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__SerialPortConfiguration * soap_new_tmd__SerialPortConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__SerialPortConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tmd__SerialPortConfiguration * soap_new_req_tmd__SerialPortConfiguration( - struct soap *soap, - int BaudRate, - enum tmd__ParityBit ParityBit, - int CharacterLength, - float StopBit, - const std::string& token, - enum tmd__SerialPortType type) -{ - tmd__SerialPortConfiguration *_p = ::soap_new_tmd__SerialPortConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialPortConfiguration::BaudRate = BaudRate; - _p->tmd__SerialPortConfiguration::ParityBit = ParityBit; - _p->tmd__SerialPortConfiguration::CharacterLength = CharacterLength; - _p->tmd__SerialPortConfiguration::StopBit = StopBit; - _p->tmd__SerialPortConfiguration::token = token; - _p->tmd__SerialPortConfiguration::type = type; - } - return _p; -} - -inline tmd__SerialPortConfiguration * soap_new_set_tmd__SerialPortConfiguration( - struct soap *soap, - int BaudRate, - enum tmd__ParityBit ParityBit, - int CharacterLength, - float StopBit, - const std::vector & __any, - const std::string& token, - enum tmd__SerialPortType type, - const struct soap_dom_attribute& __anyAttribute) -{ - tmd__SerialPortConfiguration *_p = ::soap_new_tmd__SerialPortConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialPortConfiguration::BaudRate = BaudRate; - _p->tmd__SerialPortConfiguration::ParityBit = ParityBit; - _p->tmd__SerialPortConfiguration::CharacterLength = CharacterLength; - _p->tmd__SerialPortConfiguration::StopBit = StopBit; - _p->tmd__SerialPortConfiguration::__any = __any; - _p->tmd__SerialPortConfiguration::token = token; - _p->tmd__SerialPortConfiguration::type = type; - _p->tmd__SerialPortConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tmd__SerialPortConfiguration(struct soap *soap, tmd__SerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SerialPortConfiguration", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__SerialPortConfiguration(struct soap *soap, const char *URL, tmd__SerialPortConfiguration 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, "tmd:SerialPortConfiguration", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__SerialPortConfiguration(struct soap *soap, const char *URL, tmd__SerialPortConfiguration 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, "tmd:SerialPortConfiguration", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__SerialPortConfiguration(struct soap *soap, const char *URL, tmd__SerialPortConfiguration 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, "tmd:SerialPortConfiguration", p->soap_type() == SOAP_TYPE_tmd__SerialPortConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__SerialPortConfiguration * SOAP_FMAC4 soap_get_tmd__SerialPortConfiguration(struct soap*, tmd__SerialPortConfiguration *, const char*, const char*); - -inline int soap_read_tmd__SerialPortConfiguration(struct soap *soap, tmd__SerialPortConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__SerialPortConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__SerialPortConfiguration(struct soap *soap, const char *URL, tmd__SerialPortConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__SerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__SerialPortConfiguration(struct soap *soap, tmd__SerialPortConfiguration *p) -{ - if (::soap_read_tmd__SerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__SerialPort_DEFINED -#define SOAP_TYPE_tmd__SerialPort_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialPort(struct soap*, const char*, int, const tmd__SerialPort *, const char*); -SOAP_FMAC3 tmd__SerialPort * SOAP_FMAC4 soap_in_tmd__SerialPort(struct soap*, const char*, tmd__SerialPort *, const char*); -SOAP_FMAC1 tmd__SerialPort * SOAP_FMAC2 soap_instantiate_tmd__SerialPort(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__SerialPort * soap_new_tmd__SerialPort(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__SerialPort(soap, n, NULL, NULL, NULL); -} - -inline tmd__SerialPort * soap_new_req_tmd__SerialPort( - struct soap *soap, - const std::string& token__1) -{ - tmd__SerialPort *_p = ::soap_new_tmd__SerialPort(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tmd__SerialPort * soap_new_set_tmd__SerialPort( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tmd__SerialPort *_p = ::soap_new_tmd__SerialPort(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialPort::__any = __any; - _p->tmd__SerialPort::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tmd__SerialPort(struct soap *soap, tmd__SerialPort const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SerialPort", p->soap_type() == SOAP_TYPE_tmd__SerialPort ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__SerialPort(struct soap *soap, const char *URL, tmd__SerialPort 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, "tmd:SerialPort", p->soap_type() == SOAP_TYPE_tmd__SerialPort ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__SerialPort(struct soap *soap, const char *URL, tmd__SerialPort 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, "tmd:SerialPort", p->soap_type() == SOAP_TYPE_tmd__SerialPort ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__SerialPort(struct soap *soap, const char *URL, tmd__SerialPort 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, "tmd:SerialPort", p->soap_type() == SOAP_TYPE_tmd__SerialPort ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__SerialPort * SOAP_FMAC4 soap_get_tmd__SerialPort(struct soap*, tmd__SerialPort *, const char*, const char*); - -inline int soap_read_tmd__SerialPort(struct soap *soap, tmd__SerialPort *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__SerialPort(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__SerialPort(struct soap *soap, const char *URL, tmd__SerialPort *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__SerialPort(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__SerialPort(struct soap *soap, tmd__SerialPort *p) -{ - if (::soap_read_tmd__SerialPort(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__SerialData_DEFINED -#define SOAP_TYPE_tmd__SerialData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__SerialData(struct soap*, const char*, int, const tmd__SerialData *, const char*); -SOAP_FMAC3 tmd__SerialData * SOAP_FMAC4 soap_in_tmd__SerialData(struct soap*, const char*, tmd__SerialData *, const char*); -SOAP_FMAC1 tmd__SerialData * SOAP_FMAC2 soap_instantiate_tmd__SerialData(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__SerialData * soap_new_tmd__SerialData(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__SerialData(soap, n, NULL, NULL, NULL); -} - -inline tmd__SerialData * soap_new_req_tmd__SerialData( - struct soap *soap, - const union _tmd__union_SerialData& union_SerialData) -{ - tmd__SerialData *_p = ::soap_new_tmd__SerialData(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialData::union_SerialData = union_SerialData; - } - return _p; -} - -inline tmd__SerialData * soap_new_set_tmd__SerialData( - struct soap *soap, - int __union_SerialData, - const union _tmd__union_SerialData& union_SerialData, - const struct soap_dom_attribute& __anyAttribute) -{ - tmd__SerialData *_p = ::soap_new_tmd__SerialData(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__SerialData::__union_SerialData = __union_SerialData; - _p->tmd__SerialData::union_SerialData = union_SerialData; - _p->tmd__SerialData::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tmd__SerialData(struct soap *soap, tmd__SerialData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:SerialData", p->soap_type() == SOAP_TYPE_tmd__SerialData ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__SerialData(struct soap *soap, const char *URL, tmd__SerialData 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, "tmd:SerialData", p->soap_type() == SOAP_TYPE_tmd__SerialData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__SerialData(struct soap *soap, const char *URL, tmd__SerialData 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, "tmd:SerialData", p->soap_type() == SOAP_TYPE_tmd__SerialData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__SerialData(struct soap *soap, const char *URL, tmd__SerialData 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, "tmd:SerialData", p->soap_type() == SOAP_TYPE_tmd__SerialData ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__SerialData * SOAP_FMAC4 soap_get_tmd__SerialData(struct soap*, tmd__SerialData *, const char*, const char*); - -inline int soap_read_tmd__SerialData(struct soap *soap, tmd__SerialData *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__SerialData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__SerialData(struct soap *soap, const char *URL, tmd__SerialData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__SerialData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__SerialData(struct soap *soap, tmd__SerialData *p) -{ - if (::soap_read_tmd__SerialData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions_DEFINED -#define SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__DigitalInputConfigurationInputOptions(struct soap*, const char*, int, const tmd__DigitalInputConfigurationInputOptions *, const char*); -SOAP_FMAC3 tmd__DigitalInputConfigurationInputOptions * SOAP_FMAC4 soap_in_tmd__DigitalInputConfigurationInputOptions(struct soap*, const char*, tmd__DigitalInputConfigurationInputOptions *, const char*); -SOAP_FMAC1 tmd__DigitalInputConfigurationInputOptions * SOAP_FMAC2 soap_instantiate_tmd__DigitalInputConfigurationInputOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__DigitalInputConfigurationInputOptions * soap_new_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__DigitalInputConfigurationInputOptions(soap, n, NULL, NULL, NULL); -} - -inline tmd__DigitalInputConfigurationInputOptions * soap_new_req_tmd__DigitalInputConfigurationInputOptions( - struct soap *soap, - const std::vector & IdleState) -{ - tmd__DigitalInputConfigurationInputOptions *_p = ::soap_new_tmd__DigitalInputConfigurationInputOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__DigitalInputConfigurationInputOptions::IdleState = IdleState; - } - return _p; -} - -inline tmd__DigitalInputConfigurationInputOptions * soap_new_set_tmd__DigitalInputConfigurationInputOptions( - struct soap *soap, - const std::vector & IdleState, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tmd__DigitalInputConfigurationInputOptions *_p = ::soap_new_tmd__DigitalInputConfigurationInputOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__DigitalInputConfigurationInputOptions::IdleState = IdleState; - _p->tmd__DigitalInputConfigurationInputOptions::__any = __any; - _p->tmd__DigitalInputConfigurationInputOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, tmd__DigitalInputConfigurationInputOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:DigitalInputConfigurationInputOptions", p->soap_type() == SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, const char *URL, tmd__DigitalInputConfigurationInputOptions 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, "tmd:DigitalInputConfigurationInputOptions", p->soap_type() == SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, const char *URL, tmd__DigitalInputConfigurationInputOptions 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, "tmd:DigitalInputConfigurationInputOptions", p->soap_type() == SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, const char *URL, tmd__DigitalInputConfigurationInputOptions 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, "tmd:DigitalInputConfigurationInputOptions", p->soap_type() == SOAP_TYPE_tmd__DigitalInputConfigurationInputOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__DigitalInputConfigurationInputOptions * SOAP_FMAC4 soap_get_tmd__DigitalInputConfigurationInputOptions(struct soap*, tmd__DigitalInputConfigurationInputOptions *, const char*, const char*); - -inline int soap_read_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, tmd__DigitalInputConfigurationInputOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__DigitalInputConfigurationInputOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, const char *URL, tmd__DigitalInputConfigurationInputOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__DigitalInputConfigurationInputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__DigitalInputConfigurationInputOptions(struct soap *soap, tmd__DigitalInputConfigurationInputOptions *p) -{ - if (::soap_read_tmd__DigitalInputConfigurationInputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__GetResponse_DEFINED -#define SOAP_TYPE_tmd__GetResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__GetResponse(struct soap*, const char*, int, const tmd__GetResponse *, const char*); -SOAP_FMAC3 tmd__GetResponse * SOAP_FMAC4 soap_in_tmd__GetResponse(struct soap*, const char*, tmd__GetResponse *, const char*); -SOAP_FMAC1 tmd__GetResponse * SOAP_FMAC2 soap_instantiate_tmd__GetResponse(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__GetResponse * soap_new_tmd__GetResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__GetResponse(soap, n, NULL, NULL, NULL); -} - -inline tmd__GetResponse * soap_new_req_tmd__GetResponse( - struct soap *soap) -{ - tmd__GetResponse *_p = ::soap_new_tmd__GetResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tmd__GetResponse * soap_new_set_tmd__GetResponse( - struct soap *soap, - const std::vector & Token) -{ - tmd__GetResponse *_p = ::soap_new_tmd__GetResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__GetResponse::Token = Token; - } - return _p; -} - -inline int soap_write_tmd__GetResponse(struct soap *soap, tmd__GetResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:GetResponse", p->soap_type() == SOAP_TYPE_tmd__GetResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__GetResponse(struct soap *soap, const char *URL, tmd__GetResponse 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, "tmd:GetResponse", p->soap_type() == SOAP_TYPE_tmd__GetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__GetResponse(struct soap *soap, const char *URL, tmd__GetResponse 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, "tmd:GetResponse", p->soap_type() == SOAP_TYPE_tmd__GetResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__GetResponse(struct soap *soap, const char *URL, tmd__GetResponse 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, "tmd:GetResponse", p->soap_type() == SOAP_TYPE_tmd__GetResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__GetResponse * SOAP_FMAC4 soap_get_tmd__GetResponse(struct soap*, tmd__GetResponse *, const char*, const char*); - -inline int soap_read_tmd__GetResponse(struct soap *soap, tmd__GetResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__GetResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__GetResponse(struct soap *soap, const char *URL, tmd__GetResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__GetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__GetResponse(struct soap *soap, tmd__GetResponse *p) -{ - if (::soap_read_tmd__GetResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__Get_DEFINED -#define SOAP_TYPE_tmd__Get_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__Get(struct soap*, const char*, int, const tmd__Get *, const char*); -SOAP_FMAC3 tmd__Get * SOAP_FMAC4 soap_in_tmd__Get(struct soap*, const char*, tmd__Get *, const char*); -SOAP_FMAC1 tmd__Get * SOAP_FMAC2 soap_instantiate_tmd__Get(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__Get * soap_new_tmd__Get(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__Get(soap, n, NULL, NULL, NULL); -} - -inline tmd__Get * soap_new_req_tmd__Get( - struct soap *soap) -{ - tmd__Get *_p = ::soap_new_tmd__Get(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tmd__Get * soap_new_set_tmd__Get( - struct soap *soap) -{ - tmd__Get *_p = ::soap_new_tmd__Get(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write_tmd__Get(struct soap *soap, tmd__Get const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:Get", p->soap_type() == SOAP_TYPE_tmd__Get ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__Get(struct soap *soap, const char *URL, tmd__Get 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, "tmd:Get", p->soap_type() == SOAP_TYPE_tmd__Get ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__Get(struct soap *soap, const char *URL, tmd__Get 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, "tmd:Get", p->soap_type() == SOAP_TYPE_tmd__Get ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__Get(struct soap *soap, const char *URL, tmd__Get 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, "tmd:Get", p->soap_type() == SOAP_TYPE_tmd__Get ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__Get * SOAP_FMAC4 soap_get_tmd__Get(struct soap*, tmd__Get *, const char*, const char*); - -inline int soap_read_tmd__Get(struct soap *soap, tmd__Get *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__Get(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__Get(struct soap *soap, const char *URL, tmd__Get *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__Get(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__Get(struct soap *soap, tmd__Get *p) -{ - if (::soap_read_tmd__Get(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__RelayOutputOptionsExtension_DEFINED -#define SOAP_TYPE_tmd__RelayOutputOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__RelayOutputOptionsExtension(struct soap*, const char*, int, const tmd__RelayOutputOptionsExtension *, const char*); -SOAP_FMAC3 tmd__RelayOutputOptionsExtension * SOAP_FMAC4 soap_in_tmd__RelayOutputOptionsExtension(struct soap*, const char*, tmd__RelayOutputOptionsExtension *, const char*); -SOAP_FMAC1 tmd__RelayOutputOptionsExtension * SOAP_FMAC2 soap_instantiate_tmd__RelayOutputOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__RelayOutputOptionsExtension * soap_new_tmd__RelayOutputOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__RelayOutputOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tmd__RelayOutputOptionsExtension * soap_new_req_tmd__RelayOutputOptionsExtension( - struct soap *soap) -{ - tmd__RelayOutputOptionsExtension *_p = ::soap_new_tmd__RelayOutputOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tmd__RelayOutputOptionsExtension * soap_new_set_tmd__RelayOutputOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tmd__RelayOutputOptionsExtension *_p = ::soap_new_tmd__RelayOutputOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__RelayOutputOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tmd__RelayOutputOptionsExtension(struct soap *soap, tmd__RelayOutputOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:RelayOutputOptionsExtension", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__RelayOutputOptionsExtension(struct soap *soap, const char *URL, tmd__RelayOutputOptionsExtension 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, "tmd:RelayOutputOptionsExtension", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__RelayOutputOptionsExtension(struct soap *soap, const char *URL, tmd__RelayOutputOptionsExtension 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, "tmd:RelayOutputOptionsExtension", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__RelayOutputOptionsExtension(struct soap *soap, const char *URL, tmd__RelayOutputOptionsExtension 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, "tmd:RelayOutputOptionsExtension", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__RelayOutputOptionsExtension * SOAP_FMAC4 soap_get_tmd__RelayOutputOptionsExtension(struct soap*, tmd__RelayOutputOptionsExtension *, const char*, const char*); - -inline int soap_read_tmd__RelayOutputOptionsExtension(struct soap *soap, tmd__RelayOutputOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__RelayOutputOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__RelayOutputOptionsExtension(struct soap *soap, const char *URL, tmd__RelayOutputOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__RelayOutputOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__RelayOutputOptionsExtension(struct soap *soap, tmd__RelayOutputOptionsExtension *p) -{ - if (::soap_read_tmd__RelayOutputOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__RelayOutputOptions_DEFINED -#define SOAP_TYPE_tmd__RelayOutputOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__RelayOutputOptions(struct soap*, const char*, int, const tmd__RelayOutputOptions *, const char*); -SOAP_FMAC3 tmd__RelayOutputOptions * SOAP_FMAC4 soap_in_tmd__RelayOutputOptions(struct soap*, const char*, tmd__RelayOutputOptions *, const char*); -SOAP_FMAC1 tmd__RelayOutputOptions * SOAP_FMAC2 soap_instantiate_tmd__RelayOutputOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__RelayOutputOptions * soap_new_tmd__RelayOutputOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__RelayOutputOptions(soap, n, NULL, NULL, NULL); -} - -inline tmd__RelayOutputOptions * soap_new_req_tmd__RelayOutputOptions( - struct soap *soap, - const std::vector & Mode, - const std::string& token) -{ - tmd__RelayOutputOptions *_p = ::soap_new_tmd__RelayOutputOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__RelayOutputOptions::Mode = Mode; - _p->tmd__RelayOutputOptions::token = token; - } - return _p; -} - -inline tmd__RelayOutputOptions * soap_new_set_tmd__RelayOutputOptions( - struct soap *soap, - const std::vector & Mode, - std::string *DelayTimes, - bool *Discrete, - tmd__RelayOutputOptionsExtension *Extension, - const std::string& token, - const struct soap_dom_attribute& __anyAttribute) -{ - tmd__RelayOutputOptions *_p = ::soap_new_tmd__RelayOutputOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__RelayOutputOptions::Mode = Mode; - _p->tmd__RelayOutputOptions::DelayTimes = DelayTimes; - _p->tmd__RelayOutputOptions::Discrete = Discrete; - _p->tmd__RelayOutputOptions::Extension = Extension; - _p->tmd__RelayOutputOptions::token = token; - _p->tmd__RelayOutputOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tmd__RelayOutputOptions(struct soap *soap, tmd__RelayOutputOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:RelayOutputOptions", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__RelayOutputOptions(struct soap *soap, const char *URL, tmd__RelayOutputOptions 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, "tmd:RelayOutputOptions", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__RelayOutputOptions(struct soap *soap, const char *URL, tmd__RelayOutputOptions 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, "tmd:RelayOutputOptions", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__RelayOutputOptions(struct soap *soap, const char *URL, tmd__RelayOutputOptions 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, "tmd:RelayOutputOptions", p->soap_type() == SOAP_TYPE_tmd__RelayOutputOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__RelayOutputOptions * SOAP_FMAC4 soap_get_tmd__RelayOutputOptions(struct soap*, tmd__RelayOutputOptions *, const char*, const char*); - -inline int soap_read_tmd__RelayOutputOptions(struct soap *soap, tmd__RelayOutputOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__RelayOutputOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__RelayOutputOptions(struct soap *soap, const char *URL, tmd__RelayOutputOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__RelayOutputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__RelayOutputOptions(struct soap *soap, tmd__RelayOutputOptions *p) -{ - if (::soap_read_tmd__RelayOutputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tmd__Capabilities_DEFINED -#define SOAP_TYPE_tmd__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tmd__Capabilities(struct soap*, const char*, int, const tmd__Capabilities *, const char*); -SOAP_FMAC3 tmd__Capabilities * SOAP_FMAC4 soap_in_tmd__Capabilities(struct soap*, const char*, tmd__Capabilities *, const char*); -SOAP_FMAC1 tmd__Capabilities * SOAP_FMAC2 soap_instantiate_tmd__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tmd__Capabilities * soap_new_tmd__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tmd__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline tmd__Capabilities * soap_new_req_tmd__Capabilities( - struct soap *soap) -{ - tmd__Capabilities *_p = ::soap_new_tmd__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tmd__Capabilities * soap_new_set_tmd__Capabilities( - struct soap *soap, - const std::vector & __any, - int VideoSources, - int VideoOutputs, - int AudioSources, - int AudioOutputs, - int RelayOutputs, - int SerialPorts, - int DigitalInputs, - bool DigitalInputOptions, - const struct soap_dom_attribute& __anyAttribute) -{ - tmd__Capabilities *_p = ::soap_new_tmd__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tmd__Capabilities::__any = __any; - _p->tmd__Capabilities::VideoSources = VideoSources; - _p->tmd__Capabilities::VideoOutputs = VideoOutputs; - _p->tmd__Capabilities::AudioSources = AudioSources; - _p->tmd__Capabilities::AudioOutputs = AudioOutputs; - _p->tmd__Capabilities::RelayOutputs = RelayOutputs; - _p->tmd__Capabilities::SerialPorts = SerialPorts; - _p->tmd__Capabilities::DigitalInputs = DigitalInputs; - _p->tmd__Capabilities::DigitalInputOptions = DigitalInputOptions; - _p->tmd__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tmd__Capabilities(struct soap *soap, tmd__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tmd:Capabilities", p->soap_type() == SOAP_TYPE_tmd__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tmd__Capabilities(struct soap *soap, const char *URL, tmd__Capabilities 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, "tmd:Capabilities", p->soap_type() == SOAP_TYPE_tmd__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tmd__Capabilities(struct soap *soap, const char *URL, tmd__Capabilities 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, "tmd:Capabilities", p->soap_type() == SOAP_TYPE_tmd__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tmd__Capabilities(struct soap *soap, const char *URL, tmd__Capabilities 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, "tmd:Capabilities", p->soap_type() == SOAP_TYPE_tmd__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tmd__Capabilities * SOAP_FMAC4 soap_get_tmd__Capabilities(struct soap*, tmd__Capabilities *, const char*, const char*); - -inline int soap_read_tmd__Capabilities(struct soap *soap, tmd__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tmd__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tmd__Capabilities(struct soap *soap, const char *URL, tmd__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tmd__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tmd__Capabilities(struct soap *soap, tmd__Capabilities *p) -{ - if (::soap_read_tmd__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__Message_DEFINED -#define SOAP_TYPE__tt__Message_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__Message(struct soap*, const char*, int, const _tt__Message *, const char*); -SOAP_FMAC3 _tt__Message * SOAP_FMAC4 soap_in__tt__Message(struct soap*, const char*, _tt__Message *, const char*); -SOAP_FMAC1 _tt__Message * SOAP_FMAC2 soap_instantiate__tt__Message(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__Message * soap_new__tt__Message(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__Message(soap, n, NULL, NULL, NULL); -} - -inline _tt__Message * soap_new_req__tt__Message( - struct soap *soap, - const struct timeval& UtcTime) -{ - _tt__Message *_p = ::soap_new__tt__Message(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__Message::UtcTime = UtcTime; - } - return _p; -} - -inline _tt__Message * soap_new_set__tt__Message( - struct soap *soap, - tt__ItemList *Source, - tt__ItemList *Key, - tt__ItemList *Data, - tt__MessageExtension *Extension, - const struct timeval& UtcTime, - enum tt__PropertyOperation *PropertyOperation, - const struct soap_dom_attribute& __anyAttribute) -{ - _tt__Message *_p = ::soap_new__tt__Message(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__Message::Source = Source; - _p->_tt__Message::Key = Key; - _p->_tt__Message::Data = Data; - _p->_tt__Message::Extension = Extension; - _p->_tt__Message::UtcTime = UtcTime; - _p->_tt__Message::PropertyOperation = PropertyOperation; - _p->_tt__Message::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write__tt__Message(struct soap *soap, _tt__Message const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Message", p->soap_type() == SOAP_TYPE__tt__Message ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__Message(struct soap *soap, const char *URL, _tt__Message 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, "tt:Message", p->soap_type() == SOAP_TYPE__tt__Message ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__Message(struct soap *soap, const char *URL, _tt__Message 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, "tt:Message", p->soap_type() == SOAP_TYPE__tt__Message ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__Message(struct soap *soap, const char *URL, _tt__Message 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, "tt:Message", p->soap_type() == SOAP_TYPE__tt__Message ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__Message * SOAP_FMAC4 soap_get__tt__Message(struct soap*, _tt__Message *, const char*, const char*); - -inline int soap_read__tt__Message(struct soap *soap, _tt__Message *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__Message(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__Message(struct soap *soap, const char *URL, _tt__Message *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__Message(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__Message(struct soap *soap, _tt__Message *p) -{ - if (::soap_read__tt__Message(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tt__StringItems_DEFINED -#define SOAP_TYPE__tt__StringItems_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__StringItems(struct soap*, const char*, int, const _tt__StringItems *, const char*); -SOAP_FMAC3 _tt__StringItems * SOAP_FMAC4 soap_in__tt__StringItems(struct soap*, const char*, _tt__StringItems *, const char*); -SOAP_FMAC1 _tt__StringItems * SOAP_FMAC2 soap_instantiate__tt__StringItems(struct soap*, int, const char*, const char*, size_t*); - -inline _tt__StringItems * soap_new__tt__StringItems(struct soap *soap, int n = -1) -{ - return soap_instantiate__tt__StringItems(soap, n, NULL, NULL, NULL); -} - -inline _tt__StringItems * soap_new_req__tt__StringItems( - struct soap *soap, - const std::vector & Item) -{ - _tt__StringItems *_p = ::soap_new__tt__StringItems(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__StringItems::Item = Item; - } - return _p; -} - -inline _tt__StringItems * soap_new_set__tt__StringItems( - struct soap *soap, - const std::vector & Item) -{ - _tt__StringItems *_p = ::soap_new__tt__StringItems(soap); - if (_p) - { _p->soap_default(soap); - _p->_tt__StringItems::Item = Item; - } - return _p; -} - -inline int soap_write__tt__StringItems(struct soap *soap, _tt__StringItems const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:StringItems", p->soap_type() == SOAP_TYPE__tt__StringItems ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tt__StringItems(struct soap *soap, const char *URL, _tt__StringItems 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, "tt:StringItems", p->soap_type() == SOAP_TYPE__tt__StringItems ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tt__StringItems(struct soap *soap, const char *URL, _tt__StringItems 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, "tt:StringItems", p->soap_type() == SOAP_TYPE__tt__StringItems ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tt__StringItems(struct soap *soap, const char *URL, _tt__StringItems 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, "tt:StringItems", p->soap_type() == SOAP_TYPE__tt__StringItems ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tt__StringItems * SOAP_FMAC4 soap_get__tt__StringItems(struct soap*, _tt__StringItems *, const char*, const char*); - -inline int soap_read__tt__StringItems(struct soap *soap, _tt__StringItems *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tt__StringItems(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tt__StringItems(struct soap *soap, const char *URL, _tt__StringItems *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tt__StringItems(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tt__StringItems(struct soap *soap, _tt__StringItems *p) -{ - if (::soap_read__tt__StringItems(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PolygonOptions_DEFINED -#define SOAP_TYPE_tt__PolygonOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolygonOptions(struct soap*, const char*, int, const tt__PolygonOptions *, const char*); -SOAP_FMAC3 tt__PolygonOptions * SOAP_FMAC4 soap_in_tt__PolygonOptions(struct soap*, const char*, tt__PolygonOptions *, const char*); -SOAP_FMAC1 tt__PolygonOptions * SOAP_FMAC2 soap_instantiate_tt__PolygonOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PolygonOptions * soap_new_tt__PolygonOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PolygonOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PolygonOptions * soap_new_req_tt__PolygonOptions( - struct soap *soap) -{ - tt__PolygonOptions *_p = ::soap_new_tt__PolygonOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PolygonOptions * soap_new_set_tt__PolygonOptions( - struct soap *soap, - bool *RectangleOnly, - tt__IntRange *VertexLimits, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PolygonOptions *_p = ::soap_new_tt__PolygonOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PolygonOptions::RectangleOnly = RectangleOnly; - _p->tt__PolygonOptions::VertexLimits = VertexLimits; - _p->tt__PolygonOptions::__any = __any; - _p->tt__PolygonOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PolygonOptions(struct soap *soap, tt__PolygonOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PolygonOptions", p->soap_type() == SOAP_TYPE_tt__PolygonOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PolygonOptions(struct soap *soap, const char *URL, tt__PolygonOptions 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, "tt:PolygonOptions", p->soap_type() == SOAP_TYPE_tt__PolygonOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PolygonOptions(struct soap *soap, const char *URL, tt__PolygonOptions 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, "tt:PolygonOptions", p->soap_type() == SOAP_TYPE_tt__PolygonOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PolygonOptions(struct soap *soap, const char *URL, tt__PolygonOptions 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, "tt:PolygonOptions", p->soap_type() == SOAP_TYPE_tt__PolygonOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PolygonOptions * SOAP_FMAC4 soap_get_tt__PolygonOptions(struct soap*, tt__PolygonOptions *, const char*, const char*); - -inline int soap_read_tt__PolygonOptions(struct soap *soap, tt__PolygonOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PolygonOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PolygonOptions(struct soap *soap, const char *URL, tt__PolygonOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PolygonOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PolygonOptions(struct soap *soap, tt__PolygonOptions *p) -{ - if (::soap_read_tt__PolygonOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__StorageReferencePathExtension_DEFINED -#define SOAP_TYPE_tt__StorageReferencePathExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StorageReferencePathExtension(struct soap*, const char*, int, const tt__StorageReferencePathExtension *, const char*); -SOAP_FMAC3 tt__StorageReferencePathExtension * SOAP_FMAC4 soap_in_tt__StorageReferencePathExtension(struct soap*, const char*, tt__StorageReferencePathExtension *, const char*); -SOAP_FMAC1 tt__StorageReferencePathExtension * SOAP_FMAC2 soap_instantiate_tt__StorageReferencePathExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__StorageReferencePathExtension * soap_new_tt__StorageReferencePathExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__StorageReferencePathExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__StorageReferencePathExtension * soap_new_req_tt__StorageReferencePathExtension( - struct soap *soap) -{ - tt__StorageReferencePathExtension *_p = ::soap_new_tt__StorageReferencePathExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__StorageReferencePathExtension * soap_new_set_tt__StorageReferencePathExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__StorageReferencePathExtension *_p = ::soap_new_tt__StorageReferencePathExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__StorageReferencePathExtension::__any = __any; - _p->tt__StorageReferencePathExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__StorageReferencePathExtension(struct soap *soap, tt__StorageReferencePathExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:StorageReferencePathExtension", p->soap_type() == SOAP_TYPE_tt__StorageReferencePathExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__StorageReferencePathExtension(struct soap *soap, const char *URL, tt__StorageReferencePathExtension 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, "tt:StorageReferencePathExtension", p->soap_type() == SOAP_TYPE_tt__StorageReferencePathExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__StorageReferencePathExtension(struct soap *soap, const char *URL, tt__StorageReferencePathExtension 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, "tt:StorageReferencePathExtension", p->soap_type() == SOAP_TYPE_tt__StorageReferencePathExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__StorageReferencePathExtension(struct soap *soap, const char *URL, tt__StorageReferencePathExtension 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, "tt:StorageReferencePathExtension", p->soap_type() == SOAP_TYPE_tt__StorageReferencePathExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__StorageReferencePathExtension * SOAP_FMAC4 soap_get_tt__StorageReferencePathExtension(struct soap*, tt__StorageReferencePathExtension *, const char*, const char*); - -inline int soap_read_tt__StorageReferencePathExtension(struct soap *soap, tt__StorageReferencePathExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__StorageReferencePathExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__StorageReferencePathExtension(struct soap *soap, const char *URL, tt__StorageReferencePathExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__StorageReferencePathExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__StorageReferencePathExtension(struct soap *soap, tt__StorageReferencePathExtension *p) -{ - if (::soap_read_tt__StorageReferencePathExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__StorageReferencePath_DEFINED -#define SOAP_TYPE_tt__StorageReferencePath_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StorageReferencePath(struct soap*, const char*, int, const tt__StorageReferencePath *, const char*); -SOAP_FMAC3 tt__StorageReferencePath * SOAP_FMAC4 soap_in_tt__StorageReferencePath(struct soap*, const char*, tt__StorageReferencePath *, const char*); -SOAP_FMAC1 tt__StorageReferencePath * SOAP_FMAC2 soap_instantiate_tt__StorageReferencePath(struct soap*, int, const char*, const char*, size_t*); - -inline tt__StorageReferencePath * soap_new_tt__StorageReferencePath(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__StorageReferencePath(soap, n, NULL, NULL, NULL); -} - -inline tt__StorageReferencePath * soap_new_req_tt__StorageReferencePath( - struct soap *soap, - const std::string& StorageToken) -{ - tt__StorageReferencePath *_p = ::soap_new_tt__StorageReferencePath(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__StorageReferencePath::StorageToken = StorageToken; - } - return _p; -} - -inline tt__StorageReferencePath * soap_new_set_tt__StorageReferencePath( - struct soap *soap, - const std::string& StorageToken, - std::string *RelativePath, - tt__StorageReferencePathExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__StorageReferencePath *_p = ::soap_new_tt__StorageReferencePath(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__StorageReferencePath::StorageToken = StorageToken; - _p->tt__StorageReferencePath::RelativePath = RelativePath; - _p->tt__StorageReferencePath::Extension = Extension; - _p->tt__StorageReferencePath::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__StorageReferencePath(struct soap *soap, tt__StorageReferencePath const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:StorageReferencePath", p->soap_type() == SOAP_TYPE_tt__StorageReferencePath ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__StorageReferencePath(struct soap *soap, const char *URL, tt__StorageReferencePath 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, "tt:StorageReferencePath", p->soap_type() == SOAP_TYPE_tt__StorageReferencePath ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__StorageReferencePath(struct soap *soap, const char *URL, tt__StorageReferencePath 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, "tt:StorageReferencePath", p->soap_type() == SOAP_TYPE_tt__StorageReferencePath ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__StorageReferencePath(struct soap *soap, const char *URL, tt__StorageReferencePath 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, "tt:StorageReferencePath", p->soap_type() == SOAP_TYPE_tt__StorageReferencePath ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__StorageReferencePath * SOAP_FMAC4 soap_get_tt__StorageReferencePath(struct soap*, tt__StorageReferencePath *, const char*, const char*); - -inline int soap_read_tt__StorageReferencePath(struct soap *soap, tt__StorageReferencePath *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__StorageReferencePath(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__StorageReferencePath(struct soap *soap, const char *URL, tt__StorageReferencePath *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__StorageReferencePath(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__StorageReferencePath(struct soap *soap, tt__StorageReferencePath *p) -{ - if (::soap_read_tt__StorageReferencePath(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ArrayOfFileProgressExtension_DEFINED -#define SOAP_TYPE_tt__ArrayOfFileProgressExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ArrayOfFileProgressExtension(struct soap*, const char*, int, const tt__ArrayOfFileProgressExtension *, const char*); -SOAP_FMAC3 tt__ArrayOfFileProgressExtension * SOAP_FMAC4 soap_in_tt__ArrayOfFileProgressExtension(struct soap*, const char*, tt__ArrayOfFileProgressExtension *, const char*); -SOAP_FMAC1 tt__ArrayOfFileProgressExtension * SOAP_FMAC2 soap_instantiate_tt__ArrayOfFileProgressExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ArrayOfFileProgressExtension * soap_new_tt__ArrayOfFileProgressExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ArrayOfFileProgressExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ArrayOfFileProgressExtension * soap_new_req_tt__ArrayOfFileProgressExtension( - struct soap *soap) -{ - tt__ArrayOfFileProgressExtension *_p = ::soap_new_tt__ArrayOfFileProgressExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ArrayOfFileProgressExtension * soap_new_set_tt__ArrayOfFileProgressExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ArrayOfFileProgressExtension *_p = ::soap_new_tt__ArrayOfFileProgressExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ArrayOfFileProgressExtension::__any = __any; - _p->tt__ArrayOfFileProgressExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ArrayOfFileProgressExtension(struct soap *soap, tt__ArrayOfFileProgressExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ArrayOfFileProgressExtension", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgressExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ArrayOfFileProgressExtension(struct soap *soap, const char *URL, tt__ArrayOfFileProgressExtension 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, "tt:ArrayOfFileProgressExtension", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgressExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ArrayOfFileProgressExtension(struct soap *soap, const char *URL, tt__ArrayOfFileProgressExtension 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, "tt:ArrayOfFileProgressExtension", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgressExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ArrayOfFileProgressExtension(struct soap *soap, const char *URL, tt__ArrayOfFileProgressExtension 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, "tt:ArrayOfFileProgressExtension", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgressExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ArrayOfFileProgressExtension * SOAP_FMAC4 soap_get_tt__ArrayOfFileProgressExtension(struct soap*, tt__ArrayOfFileProgressExtension *, const char*, const char*); - -inline int soap_read_tt__ArrayOfFileProgressExtension(struct soap *soap, tt__ArrayOfFileProgressExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ArrayOfFileProgressExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ArrayOfFileProgressExtension(struct soap *soap, const char *URL, tt__ArrayOfFileProgressExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ArrayOfFileProgressExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ArrayOfFileProgressExtension(struct soap *soap, tt__ArrayOfFileProgressExtension *p) -{ - if (::soap_read_tt__ArrayOfFileProgressExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ArrayOfFileProgress_DEFINED -#define SOAP_TYPE_tt__ArrayOfFileProgress_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ArrayOfFileProgress(struct soap*, const char*, int, const tt__ArrayOfFileProgress *, const char*); -SOAP_FMAC3 tt__ArrayOfFileProgress * SOAP_FMAC4 soap_in_tt__ArrayOfFileProgress(struct soap*, const char*, tt__ArrayOfFileProgress *, const char*); -SOAP_FMAC1 tt__ArrayOfFileProgress * SOAP_FMAC2 soap_instantiate_tt__ArrayOfFileProgress(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ArrayOfFileProgress * soap_new_tt__ArrayOfFileProgress(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ArrayOfFileProgress(soap, n, NULL, NULL, NULL); -} - -inline tt__ArrayOfFileProgress * soap_new_req_tt__ArrayOfFileProgress( - struct soap *soap) -{ - tt__ArrayOfFileProgress *_p = ::soap_new_tt__ArrayOfFileProgress(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ArrayOfFileProgress * soap_new_set_tt__ArrayOfFileProgress( - struct soap *soap, - const std::vector & FileProgress, - tt__ArrayOfFileProgressExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ArrayOfFileProgress *_p = ::soap_new_tt__ArrayOfFileProgress(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ArrayOfFileProgress::FileProgress = FileProgress; - _p->tt__ArrayOfFileProgress::Extension = Extension; - _p->tt__ArrayOfFileProgress::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ArrayOfFileProgress(struct soap *soap, tt__ArrayOfFileProgress const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ArrayOfFileProgress", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgress ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ArrayOfFileProgress(struct soap *soap, const char *URL, tt__ArrayOfFileProgress 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, "tt:ArrayOfFileProgress", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgress ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ArrayOfFileProgress(struct soap *soap, const char *URL, tt__ArrayOfFileProgress 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, "tt:ArrayOfFileProgress", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgress ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ArrayOfFileProgress(struct soap *soap, const char *URL, tt__ArrayOfFileProgress 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, "tt:ArrayOfFileProgress", p->soap_type() == SOAP_TYPE_tt__ArrayOfFileProgress ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ArrayOfFileProgress * SOAP_FMAC4 soap_get_tt__ArrayOfFileProgress(struct soap*, tt__ArrayOfFileProgress *, const char*, const char*); - -inline int soap_read_tt__ArrayOfFileProgress(struct soap *soap, tt__ArrayOfFileProgress *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ArrayOfFileProgress(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ArrayOfFileProgress(struct soap *soap, const char *URL, tt__ArrayOfFileProgress *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ArrayOfFileProgress(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ArrayOfFileProgress(struct soap *soap, tt__ArrayOfFileProgress *p) -{ - if (::soap_read_tt__ArrayOfFileProgress(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FileProgress_DEFINED -#define SOAP_TYPE_tt__FileProgress_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FileProgress(struct soap*, const char*, int, const tt__FileProgress *, const char*); -SOAP_FMAC3 tt__FileProgress * SOAP_FMAC4 soap_in_tt__FileProgress(struct soap*, const char*, tt__FileProgress *, const char*); -SOAP_FMAC1 tt__FileProgress * SOAP_FMAC2 soap_instantiate_tt__FileProgress(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FileProgress * soap_new_tt__FileProgress(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FileProgress(soap, n, NULL, NULL, NULL); -} - -inline tt__FileProgress * soap_new_req_tt__FileProgress( - struct soap *soap, - const std::string& FileName, - float Progress) -{ - tt__FileProgress *_p = ::soap_new_tt__FileProgress(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FileProgress::FileName = FileName; - _p->tt__FileProgress::Progress = Progress; - } - return _p; -} - -inline tt__FileProgress * soap_new_set_tt__FileProgress( - struct soap *soap, - const std::string& FileName, - float Progress, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FileProgress *_p = ::soap_new_tt__FileProgress(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FileProgress::FileName = FileName; - _p->tt__FileProgress::Progress = Progress; - _p->tt__FileProgress::__any = __any; - _p->tt__FileProgress::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FileProgress(struct soap *soap, tt__FileProgress const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FileProgress", p->soap_type() == SOAP_TYPE_tt__FileProgress ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FileProgress(struct soap *soap, const char *URL, tt__FileProgress 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, "tt:FileProgress", p->soap_type() == SOAP_TYPE_tt__FileProgress ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FileProgress(struct soap *soap, const char *URL, tt__FileProgress 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, "tt:FileProgress", p->soap_type() == SOAP_TYPE_tt__FileProgress ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FileProgress(struct soap *soap, const char *URL, tt__FileProgress 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, "tt:FileProgress", p->soap_type() == SOAP_TYPE_tt__FileProgress ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FileProgress * SOAP_FMAC4 soap_get_tt__FileProgress(struct soap*, tt__FileProgress *, const char*, const char*); - -inline int soap_read_tt__FileProgress(struct soap *soap, tt__FileProgress *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FileProgress(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FileProgress(struct soap *soap, const char *URL, tt__FileProgress *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FileProgress(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FileProgress(struct soap *soap, tt__FileProgress *p) -{ - if (::soap_read_tt__FileProgress(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_tt__OSDConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfigurationOptionsExtension(struct soap*, const char*, int, const tt__OSDConfigurationOptionsExtension *, const char*); -SOAP_FMAC3 tt__OSDConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDConfigurationOptionsExtension(struct soap*, const char*, tt__OSDConfigurationOptionsExtension *, const char*); -SOAP_FMAC1 tt__OSDConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDConfigurationOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDConfigurationOptionsExtension * soap_new_tt__OSDConfigurationOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDConfigurationOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDConfigurationOptionsExtension * soap_new_req_tt__OSDConfigurationOptionsExtension( - struct soap *soap) -{ - tt__OSDConfigurationOptionsExtension *_p = ::soap_new_tt__OSDConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDConfigurationOptionsExtension * soap_new_set_tt__OSDConfigurationOptionsExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDConfigurationOptionsExtension *_p = ::soap_new_tt__OSDConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDConfigurationOptionsExtension::__any = __any; - _p->tt__OSDConfigurationOptionsExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDConfigurationOptionsExtension(struct soap *soap, tt__OSDConfigurationOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__OSDConfigurationOptionsExtension 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, "tt:OSDConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__OSDConfigurationOptionsExtension 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, "tt:OSDConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__OSDConfigurationOptionsExtension 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, "tt:OSDConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDConfigurationOptionsExtension(struct soap*, tt__OSDConfigurationOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__OSDConfigurationOptionsExtension(struct soap *soap, tt__OSDConfigurationOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDConfigurationOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__OSDConfigurationOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDConfigurationOptionsExtension(struct soap *soap, tt__OSDConfigurationOptionsExtension *p) -{ - if (::soap_read_tt__OSDConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__OSDConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfigurationOptions(struct soap*, const char*, int, const tt__OSDConfigurationOptions *, const char*); -SOAP_FMAC3 tt__OSDConfigurationOptions * SOAP_FMAC4 soap_in_tt__OSDConfigurationOptions(struct soap*, const char*, tt__OSDConfigurationOptions *, const char*); -SOAP_FMAC1 tt__OSDConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__OSDConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDConfigurationOptions * soap_new_tt__OSDConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDConfigurationOptions * soap_new_req_tt__OSDConfigurationOptions( - struct soap *soap, - tt__MaximumNumberOfOSDs *MaximumNumberOfOSDs, - const std::vector & Type, - const std::vector & PositionOption) -{ - tt__OSDConfigurationOptions *_p = ::soap_new_tt__OSDConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDConfigurationOptions::MaximumNumberOfOSDs = MaximumNumberOfOSDs; - _p->tt__OSDConfigurationOptions::Type = Type; - _p->tt__OSDConfigurationOptions::PositionOption = PositionOption; - } - return _p; -} - -inline tt__OSDConfigurationOptions * soap_new_set_tt__OSDConfigurationOptions( - struct soap *soap, - tt__MaximumNumberOfOSDs *MaximumNumberOfOSDs, - const std::vector & Type, - const std::vector & PositionOption, - tt__OSDTextOptions *TextOption, - tt__OSDImgOptions *ImageOption, - tt__OSDConfigurationOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDConfigurationOptions *_p = ::soap_new_tt__OSDConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDConfigurationOptions::MaximumNumberOfOSDs = MaximumNumberOfOSDs; - _p->tt__OSDConfigurationOptions::Type = Type; - _p->tt__OSDConfigurationOptions::PositionOption = PositionOption; - _p->tt__OSDConfigurationOptions::TextOption = TextOption; - _p->tt__OSDConfigurationOptions::ImageOption = ImageOption; - _p->tt__OSDConfigurationOptions::Extension = Extension; - _p->tt__OSDConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDConfigurationOptions(struct soap *soap, tt__OSDConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDConfigurationOptions(struct soap *soap, const char *URL, tt__OSDConfigurationOptions 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, "tt:OSDConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDConfigurationOptions(struct soap *soap, const char *URL, tt__OSDConfigurationOptions 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, "tt:OSDConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDConfigurationOptions(struct soap *soap, const char *URL, tt__OSDConfigurationOptions 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, "tt:OSDConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDConfigurationOptions * SOAP_FMAC4 soap_get_tt__OSDConfigurationOptions(struct soap*, tt__OSDConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__OSDConfigurationOptions(struct soap *soap, tt__OSDConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDConfigurationOptions(struct soap *soap, const char *URL, tt__OSDConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDConfigurationOptions(struct soap *soap, tt__OSDConfigurationOptions *p) -{ - if (::soap_read_tt__OSDConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MaximumNumberOfOSDs_DEFINED -#define SOAP_TYPE_tt__MaximumNumberOfOSDs_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MaximumNumberOfOSDs(struct soap*, const char*, int, const tt__MaximumNumberOfOSDs *, const char*); -SOAP_FMAC3 tt__MaximumNumberOfOSDs * SOAP_FMAC4 soap_in_tt__MaximumNumberOfOSDs(struct soap*, const char*, tt__MaximumNumberOfOSDs *, const char*); -SOAP_FMAC1 tt__MaximumNumberOfOSDs * SOAP_FMAC2 soap_instantiate_tt__MaximumNumberOfOSDs(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MaximumNumberOfOSDs * soap_new_tt__MaximumNumberOfOSDs(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MaximumNumberOfOSDs(soap, n, NULL, NULL, NULL); -} - -inline tt__MaximumNumberOfOSDs * soap_new_req_tt__MaximumNumberOfOSDs( - struct soap *soap, - int Total) -{ - tt__MaximumNumberOfOSDs *_p = ::soap_new_tt__MaximumNumberOfOSDs(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MaximumNumberOfOSDs::Total = Total; - } - return _p; -} - -inline tt__MaximumNumberOfOSDs * soap_new_set_tt__MaximumNumberOfOSDs( - struct soap *soap, - int Total, - int *Image, - int *PlainText, - int *Date, - int *Time, - int *DateAndTime, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MaximumNumberOfOSDs *_p = ::soap_new_tt__MaximumNumberOfOSDs(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MaximumNumberOfOSDs::Total = Total; - _p->tt__MaximumNumberOfOSDs::Image = Image; - _p->tt__MaximumNumberOfOSDs::PlainText = PlainText; - _p->tt__MaximumNumberOfOSDs::Date = Date; - _p->tt__MaximumNumberOfOSDs::Time = Time; - _p->tt__MaximumNumberOfOSDs::DateAndTime = DateAndTime; - _p->tt__MaximumNumberOfOSDs::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MaximumNumberOfOSDs(struct soap *soap, tt__MaximumNumberOfOSDs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MaximumNumberOfOSDs", p->soap_type() == SOAP_TYPE_tt__MaximumNumberOfOSDs ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MaximumNumberOfOSDs(struct soap *soap, const char *URL, tt__MaximumNumberOfOSDs 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, "tt:MaximumNumberOfOSDs", p->soap_type() == SOAP_TYPE_tt__MaximumNumberOfOSDs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MaximumNumberOfOSDs(struct soap *soap, const char *URL, tt__MaximumNumberOfOSDs 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, "tt:MaximumNumberOfOSDs", p->soap_type() == SOAP_TYPE_tt__MaximumNumberOfOSDs ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MaximumNumberOfOSDs(struct soap *soap, const char *URL, tt__MaximumNumberOfOSDs 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, "tt:MaximumNumberOfOSDs", p->soap_type() == SOAP_TYPE_tt__MaximumNumberOfOSDs ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MaximumNumberOfOSDs * SOAP_FMAC4 soap_get_tt__MaximumNumberOfOSDs(struct soap*, tt__MaximumNumberOfOSDs *, const char*, const char*); - -inline int soap_read_tt__MaximumNumberOfOSDs(struct soap *soap, tt__MaximumNumberOfOSDs *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MaximumNumberOfOSDs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MaximumNumberOfOSDs(struct soap *soap, const char *URL, tt__MaximumNumberOfOSDs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MaximumNumberOfOSDs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MaximumNumberOfOSDs(struct soap *soap, tt__MaximumNumberOfOSDs *p) -{ - if (::soap_read_tt__MaximumNumberOfOSDs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__OSDConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfigurationExtension(struct soap*, const char*, int, const tt__OSDConfigurationExtension *, const char*); -SOAP_FMAC3 tt__OSDConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDConfigurationExtension(struct soap*, const char*, tt__OSDConfigurationExtension *, const char*); -SOAP_FMAC1 tt__OSDConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDConfigurationExtension * soap_new_tt__OSDConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDConfigurationExtension * soap_new_req_tt__OSDConfigurationExtension( - struct soap *soap) -{ - tt__OSDConfigurationExtension *_p = ::soap_new_tt__OSDConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDConfigurationExtension * soap_new_set_tt__OSDConfigurationExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDConfigurationExtension *_p = ::soap_new_tt__OSDConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDConfigurationExtension::__any = __any; - _p->tt__OSDConfigurationExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDConfigurationExtension(struct soap *soap, tt__OSDConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDConfigurationExtension(struct soap *soap, const char *URL, tt__OSDConfigurationExtension 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, "tt:OSDConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDConfigurationExtension(struct soap *soap, const char *URL, tt__OSDConfigurationExtension 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, "tt:OSDConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDConfigurationExtension(struct soap *soap, const char *URL, tt__OSDConfigurationExtension 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, "tt:OSDConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDConfigurationExtension(struct soap*, tt__OSDConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__OSDConfigurationExtension(struct soap *soap, tt__OSDConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDConfigurationExtension(struct soap *soap, const char *URL, tt__OSDConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDConfigurationExtension(struct soap *soap, tt__OSDConfigurationExtension *p) -{ - if (::soap_read_tt__OSDConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDConfiguration_DEFINED -#define SOAP_TYPE_tt__OSDConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDConfiguration(struct soap*, const char*, int, const tt__OSDConfiguration *, const char*); -SOAP_FMAC3 tt__OSDConfiguration * SOAP_FMAC4 soap_in_tt__OSDConfiguration(struct soap*, const char*, tt__OSDConfiguration *, const char*); -SOAP_FMAC1 tt__OSDConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDConfiguration * soap_new_tt__OSDConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDConfiguration * soap_new_req_tt__OSDConfiguration( - struct soap *soap, - tt__OSDReference *VideoSourceConfigurationToken, - enum tt__OSDType Type, - tt__OSDPosConfiguration *Position, - const std::string& token__1) -{ - tt__OSDConfiguration *_p = ::soap_new_tt__OSDConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDConfiguration::VideoSourceConfigurationToken = VideoSourceConfigurationToken; - _p->tt__OSDConfiguration::Type = Type; - _p->tt__OSDConfiguration::Position = Position; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__OSDConfiguration * soap_new_set_tt__OSDConfiguration( - struct soap *soap, - tt__OSDReference *VideoSourceConfigurationToken, - enum tt__OSDType Type, - tt__OSDPosConfiguration *Position, - tt__OSDTextConfiguration *TextString, - tt__OSDImgConfiguration *Image, - tt__OSDConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__OSDConfiguration *_p = ::soap_new_tt__OSDConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDConfiguration::VideoSourceConfigurationToken = VideoSourceConfigurationToken; - _p->tt__OSDConfiguration::Type = Type; - _p->tt__OSDConfiguration::Position = Position; - _p->tt__OSDConfiguration::TextString = TextString; - _p->tt__OSDConfiguration::Image = Image; - _p->tt__OSDConfiguration::Extension = Extension; - _p->tt__OSDConfiguration::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__OSDConfiguration(struct soap *soap, tt__OSDConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDConfiguration(struct soap *soap, const char *URL, tt__OSDConfiguration 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, "tt:OSDConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDConfiguration(struct soap *soap, const char *URL, tt__OSDConfiguration 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, "tt:OSDConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDConfiguration(struct soap *soap, const char *URL, tt__OSDConfiguration 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, "tt:OSDConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDConfiguration * SOAP_FMAC4 soap_get_tt__OSDConfiguration(struct soap*, tt__OSDConfiguration *, const char*, const char*); - -inline int soap_read_tt__OSDConfiguration(struct soap *soap, tt__OSDConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDConfiguration(struct soap *soap, const char *URL, tt__OSDConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDConfiguration(struct soap *soap, tt__OSDConfiguration *p) -{ - if (::soap_read_tt__OSDConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDImgOptionsExtension_DEFINED -#define SOAP_TYPE_tt__OSDImgOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgOptionsExtension(struct soap*, const char*, int, const tt__OSDImgOptionsExtension *, const char*); -SOAP_FMAC3 tt__OSDImgOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDImgOptionsExtension(struct soap*, const char*, tt__OSDImgOptionsExtension *, const char*); -SOAP_FMAC1 tt__OSDImgOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDImgOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDImgOptionsExtension * soap_new_tt__OSDImgOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDImgOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDImgOptionsExtension * soap_new_req_tt__OSDImgOptionsExtension( - struct soap *soap) -{ - tt__OSDImgOptionsExtension *_p = ::soap_new_tt__OSDImgOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDImgOptionsExtension * soap_new_set_tt__OSDImgOptionsExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDImgOptionsExtension *_p = ::soap_new_tt__OSDImgOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDImgOptionsExtension::__any = __any; - _p->tt__OSDImgOptionsExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDImgOptionsExtension(struct soap *soap, tt__OSDImgOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDImgOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDImgOptionsExtension(struct soap *soap, const char *URL, tt__OSDImgOptionsExtension 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, "tt:OSDImgOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDImgOptionsExtension(struct soap *soap, const char *URL, tt__OSDImgOptionsExtension 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, "tt:OSDImgOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDImgOptionsExtension(struct soap *soap, const char *URL, tt__OSDImgOptionsExtension 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, "tt:OSDImgOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDImgOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDImgOptionsExtension(struct soap*, tt__OSDImgOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__OSDImgOptionsExtension(struct soap *soap, tt__OSDImgOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDImgOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDImgOptionsExtension(struct soap *soap, const char *URL, tt__OSDImgOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDImgOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDImgOptionsExtension(struct soap *soap, tt__OSDImgOptionsExtension *p) -{ - if (::soap_read_tt__OSDImgOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDImgOptions_DEFINED -#define SOAP_TYPE_tt__OSDImgOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgOptions(struct soap*, const char*, int, const tt__OSDImgOptions *, const char*); -SOAP_FMAC3 tt__OSDImgOptions * SOAP_FMAC4 soap_in_tt__OSDImgOptions(struct soap*, const char*, tt__OSDImgOptions *, const char*); -SOAP_FMAC1 tt__OSDImgOptions * SOAP_FMAC2 soap_instantiate_tt__OSDImgOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDImgOptions * soap_new_tt__OSDImgOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDImgOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDImgOptions * soap_new_req_tt__OSDImgOptions( - struct soap *soap, - const std::vector & ImagePath) -{ - tt__OSDImgOptions *_p = ::soap_new_tt__OSDImgOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDImgOptions::ImagePath = ImagePath; - } - return _p; -} - -inline tt__OSDImgOptions * soap_new_set_tt__OSDImgOptions( - struct soap *soap, - const std::vector & ImagePath, - tt__OSDImgOptionsExtension *Extension, - std::string *FormatsSupported, - int *MaxSize, - int *MaxWidth, - int *MaxHeight, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDImgOptions *_p = ::soap_new_tt__OSDImgOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDImgOptions::ImagePath = ImagePath; - _p->tt__OSDImgOptions::Extension = Extension; - _p->tt__OSDImgOptions::FormatsSupported = FormatsSupported; - _p->tt__OSDImgOptions::MaxSize = MaxSize; - _p->tt__OSDImgOptions::MaxWidth = MaxWidth; - _p->tt__OSDImgOptions::MaxHeight = MaxHeight; - _p->tt__OSDImgOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDImgOptions(struct soap *soap, tt__OSDImgOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDImgOptions", p->soap_type() == SOAP_TYPE_tt__OSDImgOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDImgOptions(struct soap *soap, const char *URL, tt__OSDImgOptions 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, "tt:OSDImgOptions", p->soap_type() == SOAP_TYPE_tt__OSDImgOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDImgOptions(struct soap *soap, const char *URL, tt__OSDImgOptions 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, "tt:OSDImgOptions", p->soap_type() == SOAP_TYPE_tt__OSDImgOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDImgOptions(struct soap *soap, const char *URL, tt__OSDImgOptions 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, "tt:OSDImgOptions", p->soap_type() == SOAP_TYPE_tt__OSDImgOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDImgOptions * SOAP_FMAC4 soap_get_tt__OSDImgOptions(struct soap*, tt__OSDImgOptions *, const char*, const char*); - -inline int soap_read_tt__OSDImgOptions(struct soap *soap, tt__OSDImgOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDImgOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDImgOptions(struct soap *soap, const char *URL, tt__OSDImgOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDImgOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDImgOptions(struct soap *soap, tt__OSDImgOptions *p) -{ - if (::soap_read_tt__OSDImgOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDTextOptionsExtension_DEFINED -#define SOAP_TYPE_tt__OSDTextOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextOptionsExtension(struct soap*, const char*, int, const tt__OSDTextOptionsExtension *, const char*); -SOAP_FMAC3 tt__OSDTextOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDTextOptionsExtension(struct soap*, const char*, tt__OSDTextOptionsExtension *, const char*); -SOAP_FMAC1 tt__OSDTextOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDTextOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDTextOptionsExtension * soap_new_tt__OSDTextOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDTextOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDTextOptionsExtension * soap_new_req_tt__OSDTextOptionsExtension( - struct soap *soap) -{ - tt__OSDTextOptionsExtension *_p = ::soap_new_tt__OSDTextOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDTextOptionsExtension * soap_new_set_tt__OSDTextOptionsExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDTextOptionsExtension *_p = ::soap_new_tt__OSDTextOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDTextOptionsExtension::__any = __any; - _p->tt__OSDTextOptionsExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDTextOptionsExtension(struct soap *soap, tt__OSDTextOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDTextOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDTextOptionsExtension(struct soap *soap, const char *URL, tt__OSDTextOptionsExtension 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, "tt:OSDTextOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDTextOptionsExtension(struct soap *soap, const char *URL, tt__OSDTextOptionsExtension 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, "tt:OSDTextOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDTextOptionsExtension(struct soap *soap, const char *URL, tt__OSDTextOptionsExtension 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, "tt:OSDTextOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDTextOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDTextOptionsExtension(struct soap*, tt__OSDTextOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__OSDTextOptionsExtension(struct soap *soap, tt__OSDTextOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDTextOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDTextOptionsExtension(struct soap *soap, const char *URL, tt__OSDTextOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDTextOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDTextOptionsExtension(struct soap *soap, tt__OSDTextOptionsExtension *p) -{ - if (::soap_read_tt__OSDTextOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDTextOptions_DEFINED -#define SOAP_TYPE_tt__OSDTextOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextOptions(struct soap*, const char*, int, const tt__OSDTextOptions *, const char*); -SOAP_FMAC3 tt__OSDTextOptions * SOAP_FMAC4 soap_in_tt__OSDTextOptions(struct soap*, const char*, tt__OSDTextOptions *, const char*); -SOAP_FMAC1 tt__OSDTextOptions * SOAP_FMAC2 soap_instantiate_tt__OSDTextOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDTextOptions * soap_new_tt__OSDTextOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDTextOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDTextOptions * soap_new_req_tt__OSDTextOptions( - struct soap *soap, - const std::vector & Type) -{ - tt__OSDTextOptions *_p = ::soap_new_tt__OSDTextOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDTextOptions::Type = Type; - } - return _p; -} - -inline tt__OSDTextOptions * soap_new_set_tt__OSDTextOptions( - struct soap *soap, - const std::vector & Type, - tt__IntRange *FontSizeRange, - const std::vector & DateFormat, - const std::vector & TimeFormat, - tt__OSDColorOptions *FontColor, - tt__OSDColorOptions *BackgroundColor, - tt__OSDTextOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDTextOptions *_p = ::soap_new_tt__OSDTextOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDTextOptions::Type = Type; - _p->tt__OSDTextOptions::FontSizeRange = FontSizeRange; - _p->tt__OSDTextOptions::DateFormat = DateFormat; - _p->tt__OSDTextOptions::TimeFormat = TimeFormat; - _p->tt__OSDTextOptions::FontColor = FontColor; - _p->tt__OSDTextOptions::BackgroundColor = BackgroundColor; - _p->tt__OSDTextOptions::Extension = Extension; - _p->tt__OSDTextOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDTextOptions(struct soap *soap, tt__OSDTextOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDTextOptions", p->soap_type() == SOAP_TYPE_tt__OSDTextOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDTextOptions(struct soap *soap, const char *URL, tt__OSDTextOptions 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, "tt:OSDTextOptions", p->soap_type() == SOAP_TYPE_tt__OSDTextOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDTextOptions(struct soap *soap, const char *URL, tt__OSDTextOptions 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, "tt:OSDTextOptions", p->soap_type() == SOAP_TYPE_tt__OSDTextOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDTextOptions(struct soap *soap, const char *URL, tt__OSDTextOptions 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, "tt:OSDTextOptions", p->soap_type() == SOAP_TYPE_tt__OSDTextOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDTextOptions * SOAP_FMAC4 soap_get_tt__OSDTextOptions(struct soap*, tt__OSDTextOptions *, const char*, const char*); - -inline int soap_read_tt__OSDTextOptions(struct soap *soap, tt__OSDTextOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDTextOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDTextOptions(struct soap *soap, const char *URL, tt__OSDTextOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDTextOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDTextOptions(struct soap *soap, tt__OSDTextOptions *p) -{ - if (::soap_read_tt__OSDTextOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDColorOptionsExtension_DEFINED -#define SOAP_TYPE_tt__OSDColorOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDColorOptionsExtension(struct soap*, const char*, int, const tt__OSDColorOptionsExtension *, const char*); -SOAP_FMAC3 tt__OSDColorOptionsExtension * SOAP_FMAC4 soap_in_tt__OSDColorOptionsExtension(struct soap*, const char*, tt__OSDColorOptionsExtension *, const char*); -SOAP_FMAC1 tt__OSDColorOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__OSDColorOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDColorOptionsExtension * soap_new_tt__OSDColorOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDColorOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDColorOptionsExtension * soap_new_req_tt__OSDColorOptionsExtension( - struct soap *soap) -{ - tt__OSDColorOptionsExtension *_p = ::soap_new_tt__OSDColorOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDColorOptionsExtension * soap_new_set_tt__OSDColorOptionsExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDColorOptionsExtension *_p = ::soap_new_tt__OSDColorOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDColorOptionsExtension::__any = __any; - _p->tt__OSDColorOptionsExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDColorOptionsExtension(struct soap *soap, tt__OSDColorOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDColorOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDColorOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDColorOptionsExtension(struct soap *soap, const char *URL, tt__OSDColorOptionsExtension 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, "tt:OSDColorOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDColorOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDColorOptionsExtension(struct soap *soap, const char *URL, tt__OSDColorOptionsExtension 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, "tt:OSDColorOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDColorOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDColorOptionsExtension(struct soap *soap, const char *URL, tt__OSDColorOptionsExtension 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, "tt:OSDColorOptionsExtension", p->soap_type() == SOAP_TYPE_tt__OSDColorOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDColorOptionsExtension * SOAP_FMAC4 soap_get_tt__OSDColorOptionsExtension(struct soap*, tt__OSDColorOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__OSDColorOptionsExtension(struct soap *soap, tt__OSDColorOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDColorOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDColorOptionsExtension(struct soap *soap, const char *URL, tt__OSDColorOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDColorOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDColorOptionsExtension(struct soap *soap, tt__OSDColorOptionsExtension *p) -{ - if (::soap_read_tt__OSDColorOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDColorOptions_DEFINED -#define SOAP_TYPE_tt__OSDColorOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDColorOptions(struct soap*, const char*, int, const tt__OSDColorOptions *, const char*); -SOAP_FMAC3 tt__OSDColorOptions * SOAP_FMAC4 soap_in_tt__OSDColorOptions(struct soap*, const char*, tt__OSDColorOptions *, const char*); -SOAP_FMAC1 tt__OSDColorOptions * SOAP_FMAC2 soap_instantiate_tt__OSDColorOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDColorOptions * soap_new_tt__OSDColorOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDColorOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDColorOptions * soap_new_req_tt__OSDColorOptions( - struct soap *soap) -{ - tt__OSDColorOptions *_p = ::soap_new_tt__OSDColorOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDColorOptions * soap_new_set_tt__OSDColorOptions( - struct soap *soap, - tt__ColorOptions *Color, - tt__IntRange *Transparent, - tt__OSDColorOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDColorOptions *_p = ::soap_new_tt__OSDColorOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDColorOptions::Color = Color; - _p->tt__OSDColorOptions::Transparent = Transparent; - _p->tt__OSDColorOptions::Extension = Extension; - _p->tt__OSDColorOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDColorOptions(struct soap *soap, tt__OSDColorOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDColorOptions", p->soap_type() == SOAP_TYPE_tt__OSDColorOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDColorOptions(struct soap *soap, const char *URL, tt__OSDColorOptions 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, "tt:OSDColorOptions", p->soap_type() == SOAP_TYPE_tt__OSDColorOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDColorOptions(struct soap *soap, const char *URL, tt__OSDColorOptions 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, "tt:OSDColorOptions", p->soap_type() == SOAP_TYPE_tt__OSDColorOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDColorOptions(struct soap *soap, const char *URL, tt__OSDColorOptions 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, "tt:OSDColorOptions", p->soap_type() == SOAP_TYPE_tt__OSDColorOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDColorOptions * SOAP_FMAC4 soap_get_tt__OSDColorOptions(struct soap*, tt__OSDColorOptions *, const char*, const char*); - -inline int soap_read_tt__OSDColorOptions(struct soap *soap, tt__OSDColorOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDColorOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDColorOptions(struct soap *soap, const char *URL, tt__OSDColorOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDColorOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDColorOptions(struct soap *soap, tt__OSDColorOptions *p) -{ - if (::soap_read_tt__OSDColorOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ColorOptions_DEFINED -#define SOAP_TYPE_tt__ColorOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorOptions(struct soap*, const char*, int, const tt__ColorOptions *, const char*); -SOAP_FMAC3 tt__ColorOptions * SOAP_FMAC4 soap_in_tt__ColorOptions(struct soap*, const char*, tt__ColorOptions *, const char*); -SOAP_FMAC1 tt__ColorOptions * SOAP_FMAC2 soap_instantiate_tt__ColorOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ColorOptions * soap_new_tt__ColorOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ColorOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__ColorOptions * soap_new_req_tt__ColorOptions( - struct soap *soap, - const union _tt__union_ColorOptions& union_ColorOptions) -{ - tt__ColorOptions *_p = ::soap_new_tt__ColorOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ColorOptions::union_ColorOptions = union_ColorOptions; - } - return _p; -} - -inline tt__ColorOptions * soap_new_set_tt__ColorOptions( - struct soap *soap, - int __union_ColorOptions, - const union _tt__union_ColorOptions& union_ColorOptions, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ColorOptions *_p = ::soap_new_tt__ColorOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ColorOptions::__union_ColorOptions = __union_ColorOptions; - _p->tt__ColorOptions::union_ColorOptions = union_ColorOptions; - _p->tt__ColorOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ColorOptions(struct soap *soap, tt__ColorOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ColorOptions", p->soap_type() == SOAP_TYPE_tt__ColorOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ColorOptions(struct soap *soap, const char *URL, tt__ColorOptions 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, "tt:ColorOptions", p->soap_type() == SOAP_TYPE_tt__ColorOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ColorOptions(struct soap *soap, const char *URL, tt__ColorOptions 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, "tt:ColorOptions", p->soap_type() == SOAP_TYPE_tt__ColorOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ColorOptions(struct soap *soap, const char *URL, tt__ColorOptions 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, "tt:ColorOptions", p->soap_type() == SOAP_TYPE_tt__ColorOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ColorOptions * SOAP_FMAC4 soap_get_tt__ColorOptions(struct soap*, tt__ColorOptions *, const char*, const char*); - -inline int soap_read_tt__ColorOptions(struct soap *soap, tt__ColorOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ColorOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ColorOptions(struct soap *soap, const char *URL, tt__ColorOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ColorOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ColorOptions(struct soap *soap, tt__ColorOptions *p) -{ - if (::soap_read_tt__ColorOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ColorspaceRange_DEFINED -#define SOAP_TYPE_tt__ColorspaceRange_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorspaceRange(struct soap*, const char*, int, const tt__ColorspaceRange *, const char*); -SOAP_FMAC3 tt__ColorspaceRange * SOAP_FMAC4 soap_in_tt__ColorspaceRange(struct soap*, const char*, tt__ColorspaceRange *, const char*); -SOAP_FMAC1 tt__ColorspaceRange * SOAP_FMAC2 soap_instantiate_tt__ColorspaceRange(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ColorspaceRange * soap_new_tt__ColorspaceRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ColorspaceRange(soap, n, NULL, NULL, NULL); -} - -inline tt__ColorspaceRange * soap_new_req_tt__ColorspaceRange( - struct soap *soap, - tt__FloatRange *X, - tt__FloatRange *Y, - tt__FloatRange *Z, - const std::string& Colorspace) -{ - tt__ColorspaceRange *_p = ::soap_new_tt__ColorspaceRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ColorspaceRange::X = X; - _p->tt__ColorspaceRange::Y = Y; - _p->tt__ColorspaceRange::Z = Z; - _p->tt__ColorspaceRange::Colorspace = Colorspace; - } - return _p; -} - -inline tt__ColorspaceRange * soap_new_set_tt__ColorspaceRange( - struct soap *soap, - tt__FloatRange *X, - tt__FloatRange *Y, - tt__FloatRange *Z, - const std::string& Colorspace, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ColorspaceRange *_p = ::soap_new_tt__ColorspaceRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ColorspaceRange::X = X; - _p->tt__ColorspaceRange::Y = Y; - _p->tt__ColorspaceRange::Z = Z; - _p->tt__ColorspaceRange::Colorspace = Colorspace; - _p->tt__ColorspaceRange::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ColorspaceRange(struct soap *soap, tt__ColorspaceRange const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ColorspaceRange", p->soap_type() == SOAP_TYPE_tt__ColorspaceRange ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ColorspaceRange(struct soap *soap, const char *URL, tt__ColorspaceRange 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, "tt:ColorspaceRange", p->soap_type() == SOAP_TYPE_tt__ColorspaceRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ColorspaceRange(struct soap *soap, const char *URL, tt__ColorspaceRange 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, "tt:ColorspaceRange", p->soap_type() == SOAP_TYPE_tt__ColorspaceRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ColorspaceRange(struct soap *soap, const char *URL, tt__ColorspaceRange 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, "tt:ColorspaceRange", p->soap_type() == SOAP_TYPE_tt__ColorspaceRange ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ColorspaceRange * SOAP_FMAC4 soap_get_tt__ColorspaceRange(struct soap*, tt__ColorspaceRange *, const char*, const char*); - -inline int soap_read_tt__ColorspaceRange(struct soap *soap, tt__ColorspaceRange *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ColorspaceRange(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ColorspaceRange(struct soap *soap, const char *URL, tt__ColorspaceRange *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ColorspaceRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ColorspaceRange(struct soap *soap, tt__ColorspaceRange *p) -{ - if (::soap_read_tt__ColorspaceRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDImgConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__OSDImgConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgConfigurationExtension(struct soap*, const char*, int, const tt__OSDImgConfigurationExtension *, const char*); -SOAP_FMAC3 tt__OSDImgConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDImgConfigurationExtension(struct soap*, const char*, tt__OSDImgConfigurationExtension *, const char*); -SOAP_FMAC1 tt__OSDImgConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDImgConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDImgConfigurationExtension * soap_new_tt__OSDImgConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDImgConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDImgConfigurationExtension * soap_new_req_tt__OSDImgConfigurationExtension( - struct soap *soap) -{ - tt__OSDImgConfigurationExtension *_p = ::soap_new_tt__OSDImgConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDImgConfigurationExtension * soap_new_set_tt__OSDImgConfigurationExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDImgConfigurationExtension *_p = ::soap_new_tt__OSDImgConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDImgConfigurationExtension::__any = __any; - _p->tt__OSDImgConfigurationExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDImgConfigurationExtension(struct soap *soap, tt__OSDImgConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDImgConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDImgConfigurationExtension(struct soap *soap, const char *URL, tt__OSDImgConfigurationExtension 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, "tt:OSDImgConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDImgConfigurationExtension(struct soap *soap, const char *URL, tt__OSDImgConfigurationExtension 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, "tt:OSDImgConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDImgConfigurationExtension(struct soap *soap, const char *URL, tt__OSDImgConfigurationExtension 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, "tt:OSDImgConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDImgConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDImgConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDImgConfigurationExtension(struct soap*, tt__OSDImgConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__OSDImgConfigurationExtension(struct soap *soap, tt__OSDImgConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDImgConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDImgConfigurationExtension(struct soap *soap, const char *URL, tt__OSDImgConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDImgConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDImgConfigurationExtension(struct soap *soap, tt__OSDImgConfigurationExtension *p) -{ - if (::soap_read_tt__OSDImgConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDImgConfiguration_DEFINED -#define SOAP_TYPE_tt__OSDImgConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDImgConfiguration(struct soap*, const char*, int, const tt__OSDImgConfiguration *, const char*); -SOAP_FMAC3 tt__OSDImgConfiguration * SOAP_FMAC4 soap_in_tt__OSDImgConfiguration(struct soap*, const char*, tt__OSDImgConfiguration *, const char*); -SOAP_FMAC1 tt__OSDImgConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDImgConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDImgConfiguration * soap_new_tt__OSDImgConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDImgConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDImgConfiguration * soap_new_req_tt__OSDImgConfiguration( - struct soap *soap, - const std::string& ImgPath) -{ - tt__OSDImgConfiguration *_p = ::soap_new_tt__OSDImgConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDImgConfiguration::ImgPath = ImgPath; - } - return _p; -} - -inline tt__OSDImgConfiguration * soap_new_set_tt__OSDImgConfiguration( - struct soap *soap, - const std::string& ImgPath, - tt__OSDImgConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDImgConfiguration *_p = ::soap_new_tt__OSDImgConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDImgConfiguration::ImgPath = ImgPath; - _p->tt__OSDImgConfiguration::Extension = Extension; - _p->tt__OSDImgConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDImgConfiguration(struct soap *soap, tt__OSDImgConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDImgConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDImgConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDImgConfiguration(struct soap *soap, const char *URL, tt__OSDImgConfiguration 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, "tt:OSDImgConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDImgConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDImgConfiguration(struct soap *soap, const char *URL, tt__OSDImgConfiguration 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, "tt:OSDImgConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDImgConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDImgConfiguration(struct soap *soap, const char *URL, tt__OSDImgConfiguration 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, "tt:OSDImgConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDImgConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDImgConfiguration * SOAP_FMAC4 soap_get_tt__OSDImgConfiguration(struct soap*, tt__OSDImgConfiguration *, const char*, const char*); - -inline int soap_read_tt__OSDImgConfiguration(struct soap *soap, tt__OSDImgConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDImgConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDImgConfiguration(struct soap *soap, const char *URL, tt__OSDImgConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDImgConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDImgConfiguration(struct soap *soap, tt__OSDImgConfiguration *p) -{ - if (::soap_read_tt__OSDImgConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDTextConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__OSDTextConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextConfigurationExtension(struct soap*, const char*, int, const tt__OSDTextConfigurationExtension *, const char*); -SOAP_FMAC3 tt__OSDTextConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDTextConfigurationExtension(struct soap*, const char*, tt__OSDTextConfigurationExtension *, const char*); -SOAP_FMAC1 tt__OSDTextConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDTextConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDTextConfigurationExtension * soap_new_tt__OSDTextConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDTextConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDTextConfigurationExtension * soap_new_req_tt__OSDTextConfigurationExtension( - struct soap *soap) -{ - tt__OSDTextConfigurationExtension *_p = ::soap_new_tt__OSDTextConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDTextConfigurationExtension * soap_new_set_tt__OSDTextConfigurationExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDTextConfigurationExtension *_p = ::soap_new_tt__OSDTextConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDTextConfigurationExtension::__any = __any; - _p->tt__OSDTextConfigurationExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDTextConfigurationExtension(struct soap *soap, tt__OSDTextConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDTextConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDTextConfigurationExtension(struct soap *soap, const char *URL, tt__OSDTextConfigurationExtension 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, "tt:OSDTextConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDTextConfigurationExtension(struct soap *soap, const char *URL, tt__OSDTextConfigurationExtension 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, "tt:OSDTextConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDTextConfigurationExtension(struct soap *soap, const char *URL, tt__OSDTextConfigurationExtension 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, "tt:OSDTextConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDTextConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDTextConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDTextConfigurationExtension(struct soap*, tt__OSDTextConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__OSDTextConfigurationExtension(struct soap *soap, tt__OSDTextConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDTextConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDTextConfigurationExtension(struct soap *soap, const char *URL, tt__OSDTextConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDTextConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDTextConfigurationExtension(struct soap *soap, tt__OSDTextConfigurationExtension *p) -{ - if (::soap_read_tt__OSDTextConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDTextConfiguration_DEFINED -#define SOAP_TYPE_tt__OSDTextConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDTextConfiguration(struct soap*, const char*, int, const tt__OSDTextConfiguration *, const char*); -SOAP_FMAC3 tt__OSDTextConfiguration * SOAP_FMAC4 soap_in_tt__OSDTextConfiguration(struct soap*, const char*, tt__OSDTextConfiguration *, const char*); -SOAP_FMAC1 tt__OSDTextConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDTextConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDTextConfiguration * soap_new_tt__OSDTextConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDTextConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDTextConfiguration * soap_new_req_tt__OSDTextConfiguration( - struct soap *soap, - const std::string& Type) -{ - tt__OSDTextConfiguration *_p = ::soap_new_tt__OSDTextConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDTextConfiguration::Type = Type; - } - return _p; -} - -inline tt__OSDTextConfiguration * soap_new_set_tt__OSDTextConfiguration( - struct soap *soap, - const std::string& Type, - std::string *DateFormat, - std::string *TimeFormat, - int *FontSize, - tt__OSDColor *FontColor, - tt__OSDColor *BackgroundColor, - std::string *PlainText, - tt__OSDTextConfigurationExtension *Extension, - bool *IsPersistentText, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDTextConfiguration *_p = ::soap_new_tt__OSDTextConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDTextConfiguration::Type = Type; - _p->tt__OSDTextConfiguration::DateFormat = DateFormat; - _p->tt__OSDTextConfiguration::TimeFormat = TimeFormat; - _p->tt__OSDTextConfiguration::FontSize = FontSize; - _p->tt__OSDTextConfiguration::FontColor = FontColor; - _p->tt__OSDTextConfiguration::BackgroundColor = BackgroundColor; - _p->tt__OSDTextConfiguration::PlainText = PlainText; - _p->tt__OSDTextConfiguration::Extension = Extension; - _p->tt__OSDTextConfiguration::IsPersistentText = IsPersistentText; - _p->tt__OSDTextConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDTextConfiguration(struct soap *soap, tt__OSDTextConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDTextConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDTextConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDTextConfiguration(struct soap *soap, const char *URL, tt__OSDTextConfiguration 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, "tt:OSDTextConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDTextConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDTextConfiguration(struct soap *soap, const char *URL, tt__OSDTextConfiguration 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, "tt:OSDTextConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDTextConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDTextConfiguration(struct soap *soap, const char *URL, tt__OSDTextConfiguration 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, "tt:OSDTextConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDTextConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDTextConfiguration * SOAP_FMAC4 soap_get_tt__OSDTextConfiguration(struct soap*, tt__OSDTextConfiguration *, const char*, const char*); - -inline int soap_read_tt__OSDTextConfiguration(struct soap *soap, tt__OSDTextConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDTextConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDTextConfiguration(struct soap *soap, const char *URL, tt__OSDTextConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDTextConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDTextConfiguration(struct soap *soap, tt__OSDTextConfiguration *p) -{ - if (::soap_read_tt__OSDTextConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDColor_DEFINED -#define SOAP_TYPE_tt__OSDColor_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDColor(struct soap*, const char*, int, const tt__OSDColor *, const char*); -SOAP_FMAC3 tt__OSDColor * SOAP_FMAC4 soap_in_tt__OSDColor(struct soap*, const char*, tt__OSDColor *, const char*); -SOAP_FMAC1 tt__OSDColor * SOAP_FMAC2 soap_instantiate_tt__OSDColor(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDColor * soap_new_tt__OSDColor(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDColor(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDColor * soap_new_req_tt__OSDColor( - struct soap *soap, - tt__Color *Color) -{ - tt__OSDColor *_p = ::soap_new_tt__OSDColor(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDColor::Color = Color; - } - return _p; -} - -inline tt__OSDColor * soap_new_set_tt__OSDColor( - struct soap *soap, - tt__Color *Color, - int *Transparent, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDColor *_p = ::soap_new_tt__OSDColor(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDColor::Color = Color; - _p->tt__OSDColor::Transparent = Transparent; - _p->tt__OSDColor::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDColor(struct soap *soap, tt__OSDColor const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDColor", p->soap_type() == SOAP_TYPE_tt__OSDColor ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDColor(struct soap *soap, const char *URL, tt__OSDColor 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, "tt:OSDColor", p->soap_type() == SOAP_TYPE_tt__OSDColor ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDColor(struct soap *soap, const char *URL, tt__OSDColor 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, "tt:OSDColor", p->soap_type() == SOAP_TYPE_tt__OSDColor ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDColor(struct soap *soap, const char *URL, tt__OSDColor 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, "tt:OSDColor", p->soap_type() == SOAP_TYPE_tt__OSDColor ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDColor * SOAP_FMAC4 soap_get_tt__OSDColor(struct soap*, tt__OSDColor *, const char*, const char*); - -inline int soap_read_tt__OSDColor(struct soap *soap, tt__OSDColor *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDColor(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDColor(struct soap *soap, const char *URL, tt__OSDColor *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDColor(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDColor(struct soap *soap, tt__OSDColor *p) -{ - if (::soap_read_tt__OSDColor(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDPosConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__OSDPosConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDPosConfigurationExtension(struct soap*, const char*, int, const tt__OSDPosConfigurationExtension *, const char*); -SOAP_FMAC3 tt__OSDPosConfigurationExtension * SOAP_FMAC4 soap_in_tt__OSDPosConfigurationExtension(struct soap*, const char*, tt__OSDPosConfigurationExtension *, const char*); -SOAP_FMAC1 tt__OSDPosConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__OSDPosConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDPosConfigurationExtension * soap_new_tt__OSDPosConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDPosConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDPosConfigurationExtension * soap_new_req_tt__OSDPosConfigurationExtension( - struct soap *soap) -{ - tt__OSDPosConfigurationExtension *_p = ::soap_new_tt__OSDPosConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__OSDPosConfigurationExtension * soap_new_set_tt__OSDPosConfigurationExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDPosConfigurationExtension *_p = ::soap_new_tt__OSDPosConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDPosConfigurationExtension::__any = __any; - _p->tt__OSDPosConfigurationExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDPosConfigurationExtension(struct soap *soap, tt__OSDPosConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDPosConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDPosConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDPosConfigurationExtension(struct soap *soap, const char *URL, tt__OSDPosConfigurationExtension 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, "tt:OSDPosConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDPosConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDPosConfigurationExtension(struct soap *soap, const char *URL, tt__OSDPosConfigurationExtension 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, "tt:OSDPosConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDPosConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDPosConfigurationExtension(struct soap *soap, const char *URL, tt__OSDPosConfigurationExtension 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, "tt:OSDPosConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__OSDPosConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDPosConfigurationExtension * SOAP_FMAC4 soap_get_tt__OSDPosConfigurationExtension(struct soap*, tt__OSDPosConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__OSDPosConfigurationExtension(struct soap *soap, tt__OSDPosConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDPosConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDPosConfigurationExtension(struct soap *soap, const char *URL, tt__OSDPosConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDPosConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDPosConfigurationExtension(struct soap *soap, tt__OSDPosConfigurationExtension *p) -{ - if (::soap_read_tt__OSDPosConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDPosConfiguration_DEFINED -#define SOAP_TYPE_tt__OSDPosConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDPosConfiguration(struct soap*, const char*, int, const tt__OSDPosConfiguration *, const char*); -SOAP_FMAC3 tt__OSDPosConfiguration * SOAP_FMAC4 soap_in_tt__OSDPosConfiguration(struct soap*, const char*, tt__OSDPosConfiguration *, const char*); -SOAP_FMAC1 tt__OSDPosConfiguration * SOAP_FMAC2 soap_instantiate_tt__OSDPosConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDPosConfiguration * soap_new_tt__OSDPosConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDPosConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDPosConfiguration * soap_new_req_tt__OSDPosConfiguration( - struct soap *soap, - const std::string& Type) -{ - tt__OSDPosConfiguration *_p = ::soap_new_tt__OSDPosConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDPosConfiguration::Type = Type; - } - return _p; -} - -inline tt__OSDPosConfiguration * soap_new_set_tt__OSDPosConfiguration( - struct soap *soap, - const std::string& Type, - tt__Vector *Pos, - tt__OSDPosConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDPosConfiguration *_p = ::soap_new_tt__OSDPosConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDPosConfiguration::Type = Type; - _p->tt__OSDPosConfiguration::Pos = Pos; - _p->tt__OSDPosConfiguration::Extension = Extension; - _p->tt__OSDPosConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDPosConfiguration(struct soap *soap, tt__OSDPosConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDPosConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDPosConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDPosConfiguration(struct soap *soap, const char *URL, tt__OSDPosConfiguration 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, "tt:OSDPosConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDPosConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDPosConfiguration(struct soap *soap, const char *URL, tt__OSDPosConfiguration 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, "tt:OSDPosConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDPosConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDPosConfiguration(struct soap *soap, const char *URL, tt__OSDPosConfiguration 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, "tt:OSDPosConfiguration", p->soap_type() == SOAP_TYPE_tt__OSDPosConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDPosConfiguration * SOAP_FMAC4 soap_get_tt__OSDPosConfiguration(struct soap*, tt__OSDPosConfiguration *, const char*, const char*); - -inline int soap_read_tt__OSDPosConfiguration(struct soap *soap, tt__OSDPosConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDPosConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDPosConfiguration(struct soap *soap, const char *URL, tt__OSDPosConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDPosConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDPosConfiguration(struct soap *soap, tt__OSDPosConfiguration *p) -{ - if (::soap_read_tt__OSDPosConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OSDReference_DEFINED -#define SOAP_TYPE_tt__OSDReference_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OSDReference(struct soap*, const char*, int, const tt__OSDReference *, const char*); -SOAP_FMAC3 tt__OSDReference * SOAP_FMAC4 soap_in_tt__OSDReference(struct soap*, const char*, tt__OSDReference *, const char*); -SOAP_FMAC1 tt__OSDReference * SOAP_FMAC2 soap_instantiate_tt__OSDReference(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OSDReference * soap_new_tt__OSDReference(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OSDReference(soap, n, NULL, NULL, NULL); -} - -inline tt__OSDReference * soap_new_req_tt__OSDReference( - struct soap *soap, - const std::string& __item) -{ - tt__OSDReference *_p = ::soap_new_tt__OSDReference(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDReference::__item = __item; - } - return _p; -} - -inline tt__OSDReference * soap_new_set_tt__OSDReference( - struct soap *soap, - const std::string& __item, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__OSDReference *_p = ::soap_new_tt__OSDReference(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OSDReference::__item = __item; - _p->tt__OSDReference::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__OSDReference(struct soap *soap, tt__OSDReference const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OSDReference", p->soap_type() == SOAP_TYPE_tt__OSDReference ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OSDReference(struct soap *soap, const char *URL, tt__OSDReference 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, "tt:OSDReference", p->soap_type() == SOAP_TYPE_tt__OSDReference ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OSDReference(struct soap *soap, const char *URL, tt__OSDReference 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, "tt:OSDReference", p->soap_type() == SOAP_TYPE_tt__OSDReference ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OSDReference(struct soap *soap, const char *URL, tt__OSDReference 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, "tt:OSDReference", p->soap_type() == SOAP_TYPE_tt__OSDReference ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OSDReference * SOAP_FMAC4 soap_get_tt__OSDReference(struct soap*, tt__OSDReference *, const char*, const char*); - -inline int soap_read_tt__OSDReference(struct soap *soap, tt__OSDReference *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OSDReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OSDReference(struct soap *soap, const char *URL, tt__OSDReference *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OSDReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OSDReference(struct soap *soap, tt__OSDReference *p) -{ - if (::soap_read_tt__OSDReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ProfileStatusExtension_DEFINED -#define SOAP_TYPE_tt__ProfileStatusExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileStatusExtension(struct soap*, const char*, int, const tt__ProfileStatusExtension *, const char*); -SOAP_FMAC3 tt__ProfileStatusExtension * SOAP_FMAC4 soap_in_tt__ProfileStatusExtension(struct soap*, const char*, tt__ProfileStatusExtension *, const char*); -SOAP_FMAC1 tt__ProfileStatusExtension * SOAP_FMAC2 soap_instantiate_tt__ProfileStatusExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ProfileStatusExtension * soap_new_tt__ProfileStatusExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ProfileStatusExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ProfileStatusExtension * soap_new_req_tt__ProfileStatusExtension( - struct soap *soap) -{ - tt__ProfileStatusExtension *_p = ::soap_new_tt__ProfileStatusExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ProfileStatusExtension * soap_new_set_tt__ProfileStatusExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ProfileStatusExtension *_p = ::soap_new_tt__ProfileStatusExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ProfileStatusExtension::__any = __any; - _p->tt__ProfileStatusExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ProfileStatusExtension(struct soap *soap, tt__ProfileStatusExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ProfileStatusExtension", p->soap_type() == SOAP_TYPE_tt__ProfileStatusExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ProfileStatusExtension(struct soap *soap, const char *URL, tt__ProfileStatusExtension 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, "tt:ProfileStatusExtension", p->soap_type() == SOAP_TYPE_tt__ProfileStatusExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ProfileStatusExtension(struct soap *soap, const char *URL, tt__ProfileStatusExtension 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, "tt:ProfileStatusExtension", p->soap_type() == SOAP_TYPE_tt__ProfileStatusExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ProfileStatusExtension(struct soap *soap, const char *URL, tt__ProfileStatusExtension 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, "tt:ProfileStatusExtension", p->soap_type() == SOAP_TYPE_tt__ProfileStatusExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ProfileStatusExtension * SOAP_FMAC4 soap_get_tt__ProfileStatusExtension(struct soap*, tt__ProfileStatusExtension *, const char*, const char*); - -inline int soap_read_tt__ProfileStatusExtension(struct soap *soap, tt__ProfileStatusExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ProfileStatusExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ProfileStatusExtension(struct soap *soap, const char *URL, tt__ProfileStatusExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ProfileStatusExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ProfileStatusExtension(struct soap *soap, tt__ProfileStatusExtension *p) -{ - if (::soap_read_tt__ProfileStatusExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ProfileStatus_DEFINED -#define SOAP_TYPE_tt__ProfileStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileStatus(struct soap*, const char*, int, const tt__ProfileStatus *, const char*); -SOAP_FMAC3 tt__ProfileStatus * SOAP_FMAC4 soap_in_tt__ProfileStatus(struct soap*, const char*, tt__ProfileStatus *, const char*); -SOAP_FMAC1 tt__ProfileStatus * SOAP_FMAC2 soap_instantiate_tt__ProfileStatus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ProfileStatus * soap_new_tt__ProfileStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ProfileStatus(soap, n, NULL, NULL, NULL); -} - -inline tt__ProfileStatus * soap_new_req_tt__ProfileStatus( - struct soap *soap) -{ - tt__ProfileStatus *_p = ::soap_new_tt__ProfileStatus(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ProfileStatus * soap_new_set_tt__ProfileStatus( - struct soap *soap, - const std::vector & ActiveConnections, - tt__ProfileStatusExtension *Extension) -{ - tt__ProfileStatus *_p = ::soap_new_tt__ProfileStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ProfileStatus::ActiveConnections = ActiveConnections; - _p->tt__ProfileStatus::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__ProfileStatus(struct soap *soap, tt__ProfileStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ProfileStatus", p->soap_type() == SOAP_TYPE_tt__ProfileStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ProfileStatus(struct soap *soap, const char *URL, tt__ProfileStatus 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, "tt:ProfileStatus", p->soap_type() == SOAP_TYPE_tt__ProfileStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ProfileStatus(struct soap *soap, const char *URL, tt__ProfileStatus 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, "tt:ProfileStatus", p->soap_type() == SOAP_TYPE_tt__ProfileStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ProfileStatus(struct soap *soap, const char *URL, tt__ProfileStatus 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, "tt:ProfileStatus", p->soap_type() == SOAP_TYPE_tt__ProfileStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ProfileStatus * SOAP_FMAC4 soap_get_tt__ProfileStatus(struct soap*, tt__ProfileStatus *, const char*, const char*); - -inline int soap_read_tt__ProfileStatus(struct soap *soap, tt__ProfileStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ProfileStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ProfileStatus(struct soap *soap, const char *URL, tt__ProfileStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ProfileStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ProfileStatus(struct soap *soap, tt__ProfileStatus *p) -{ - if (::soap_read_tt__ProfileStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ActiveConnection_DEFINED -#define SOAP_TYPE_tt__ActiveConnection_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ActiveConnection(struct soap*, const char*, int, const tt__ActiveConnection *, const char*); -SOAP_FMAC3 tt__ActiveConnection * SOAP_FMAC4 soap_in_tt__ActiveConnection(struct soap*, const char*, tt__ActiveConnection *, const char*); -SOAP_FMAC1 tt__ActiveConnection * SOAP_FMAC2 soap_instantiate_tt__ActiveConnection(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ActiveConnection * soap_new_tt__ActiveConnection(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ActiveConnection(soap, n, NULL, NULL, NULL); -} - -inline tt__ActiveConnection * soap_new_req_tt__ActiveConnection( - struct soap *soap, - float CurrentBitrate, - float CurrentFps) -{ - tt__ActiveConnection *_p = ::soap_new_tt__ActiveConnection(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ActiveConnection::CurrentBitrate = CurrentBitrate; - _p->tt__ActiveConnection::CurrentFps = CurrentFps; - } - return _p; -} - -inline tt__ActiveConnection * soap_new_set_tt__ActiveConnection( - struct soap *soap, - float CurrentBitrate, - float CurrentFps, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ActiveConnection *_p = ::soap_new_tt__ActiveConnection(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ActiveConnection::CurrentBitrate = CurrentBitrate; - _p->tt__ActiveConnection::CurrentFps = CurrentFps; - _p->tt__ActiveConnection::__any = __any; - _p->tt__ActiveConnection::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ActiveConnection(struct soap *soap, tt__ActiveConnection const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ActiveConnection", p->soap_type() == SOAP_TYPE_tt__ActiveConnection ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ActiveConnection(struct soap *soap, const char *URL, tt__ActiveConnection 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, "tt:ActiveConnection", p->soap_type() == SOAP_TYPE_tt__ActiveConnection ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ActiveConnection(struct soap *soap, const char *URL, tt__ActiveConnection 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, "tt:ActiveConnection", p->soap_type() == SOAP_TYPE_tt__ActiveConnection ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ActiveConnection(struct soap *soap, const char *URL, tt__ActiveConnection 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, "tt:ActiveConnection", p->soap_type() == SOAP_TYPE_tt__ActiveConnection ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ActiveConnection * SOAP_FMAC4 soap_get_tt__ActiveConnection(struct soap*, tt__ActiveConnection *, const char*, const char*); - -inline int soap_read_tt__ActiveConnection(struct soap *soap, tt__ActiveConnection *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ActiveConnection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ActiveConnection(struct soap *soap, const char *URL, tt__ActiveConnection *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ActiveConnection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ActiveConnection(struct soap *soap, tt__ActiveConnection *p) -{ - if (::soap_read_tt__ActiveConnection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioClassDescriptorExtension_DEFINED -#define SOAP_TYPE_tt__AudioClassDescriptorExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassDescriptorExtension(struct soap*, const char*, int, const tt__AudioClassDescriptorExtension *, const char*); -SOAP_FMAC3 tt__AudioClassDescriptorExtension * SOAP_FMAC4 soap_in_tt__AudioClassDescriptorExtension(struct soap*, const char*, tt__AudioClassDescriptorExtension *, const char*); -SOAP_FMAC1 tt__AudioClassDescriptorExtension * SOAP_FMAC2 soap_instantiate_tt__AudioClassDescriptorExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioClassDescriptorExtension * soap_new_tt__AudioClassDescriptorExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioClassDescriptorExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioClassDescriptorExtension * soap_new_req_tt__AudioClassDescriptorExtension( - struct soap *soap) -{ - tt__AudioClassDescriptorExtension *_p = ::soap_new_tt__AudioClassDescriptorExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AudioClassDescriptorExtension * soap_new_set_tt__AudioClassDescriptorExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioClassDescriptorExtension *_p = ::soap_new_tt__AudioClassDescriptorExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioClassDescriptorExtension::__any = __any; - _p->tt__AudioClassDescriptorExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioClassDescriptorExtension(struct soap *soap, tt__AudioClassDescriptorExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioClassDescriptorExtension", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptorExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioClassDescriptorExtension(struct soap *soap, const char *URL, tt__AudioClassDescriptorExtension 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, "tt:AudioClassDescriptorExtension", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptorExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioClassDescriptorExtension(struct soap *soap, const char *URL, tt__AudioClassDescriptorExtension 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, "tt:AudioClassDescriptorExtension", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptorExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioClassDescriptorExtension(struct soap *soap, const char *URL, tt__AudioClassDescriptorExtension 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, "tt:AudioClassDescriptorExtension", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptorExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioClassDescriptorExtension * SOAP_FMAC4 soap_get_tt__AudioClassDescriptorExtension(struct soap*, tt__AudioClassDescriptorExtension *, const char*, const char*); - -inline int soap_read_tt__AudioClassDescriptorExtension(struct soap *soap, tt__AudioClassDescriptorExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioClassDescriptorExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioClassDescriptorExtension(struct soap *soap, const char *URL, tt__AudioClassDescriptorExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioClassDescriptorExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioClassDescriptorExtension(struct soap *soap, tt__AudioClassDescriptorExtension *p) -{ - if (::soap_read_tt__AudioClassDescriptorExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioClassDescriptor_DEFINED -#define SOAP_TYPE_tt__AudioClassDescriptor_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassDescriptor(struct soap*, const char*, int, const tt__AudioClassDescriptor *, const char*); -SOAP_FMAC3 tt__AudioClassDescriptor * SOAP_FMAC4 soap_in_tt__AudioClassDescriptor(struct soap*, const char*, tt__AudioClassDescriptor *, const char*); -SOAP_FMAC1 tt__AudioClassDescriptor * SOAP_FMAC2 soap_instantiate_tt__AudioClassDescriptor(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioClassDescriptor * soap_new_tt__AudioClassDescriptor(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioClassDescriptor(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioClassDescriptor * soap_new_req_tt__AudioClassDescriptor( - struct soap *soap) -{ - tt__AudioClassDescriptor *_p = ::soap_new_tt__AudioClassDescriptor(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AudioClassDescriptor * soap_new_set_tt__AudioClassDescriptor( - struct soap *soap, - const std::vector & ClassCandidate, - tt__AudioClassDescriptorExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioClassDescriptor *_p = ::soap_new_tt__AudioClassDescriptor(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioClassDescriptor::ClassCandidate = ClassCandidate; - _p->tt__AudioClassDescriptor::Extension = Extension; - _p->tt__AudioClassDescriptor::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioClassDescriptor(struct soap *soap, tt__AudioClassDescriptor const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioClassDescriptor", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptor ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioClassDescriptor(struct soap *soap, const char *URL, tt__AudioClassDescriptor 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, "tt:AudioClassDescriptor", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptor ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioClassDescriptor(struct soap *soap, const char *URL, tt__AudioClassDescriptor 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, "tt:AudioClassDescriptor", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptor ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioClassDescriptor(struct soap *soap, const char *URL, tt__AudioClassDescriptor 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, "tt:AudioClassDescriptor", p->soap_type() == SOAP_TYPE_tt__AudioClassDescriptor ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioClassDescriptor * SOAP_FMAC4 soap_get_tt__AudioClassDescriptor(struct soap*, tt__AudioClassDescriptor *, const char*, const char*); - -inline int soap_read_tt__AudioClassDescriptor(struct soap *soap, tt__AudioClassDescriptor *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioClassDescriptor(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioClassDescriptor(struct soap *soap, const char *URL, tt__AudioClassDescriptor *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioClassDescriptor(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioClassDescriptor(struct soap *soap, tt__AudioClassDescriptor *p) -{ - if (::soap_read_tt__AudioClassDescriptor(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioClassCandidate_DEFINED -#define SOAP_TYPE_tt__AudioClassCandidate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioClassCandidate(struct soap*, const char*, int, const tt__AudioClassCandidate *, const char*); -SOAP_FMAC3 tt__AudioClassCandidate * SOAP_FMAC4 soap_in_tt__AudioClassCandidate(struct soap*, const char*, tt__AudioClassCandidate *, const char*); -SOAP_FMAC1 tt__AudioClassCandidate * SOAP_FMAC2 soap_instantiate_tt__AudioClassCandidate(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioClassCandidate * soap_new_tt__AudioClassCandidate(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioClassCandidate(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioClassCandidate * soap_new_req_tt__AudioClassCandidate( - struct soap *soap, - const std::string& Type, - float Likelihood) -{ - tt__AudioClassCandidate *_p = ::soap_new_tt__AudioClassCandidate(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioClassCandidate::Type = Type; - _p->tt__AudioClassCandidate::Likelihood = Likelihood; - } - return _p; -} - -inline tt__AudioClassCandidate * soap_new_set_tt__AudioClassCandidate( - struct soap *soap, - const std::string& Type, - float Likelihood, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioClassCandidate *_p = ::soap_new_tt__AudioClassCandidate(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioClassCandidate::Type = Type; - _p->tt__AudioClassCandidate::Likelihood = Likelihood; - _p->tt__AudioClassCandidate::__any = __any; - _p->tt__AudioClassCandidate::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioClassCandidate(struct soap *soap, tt__AudioClassCandidate const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioClassCandidate", p->soap_type() == SOAP_TYPE_tt__AudioClassCandidate ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioClassCandidate(struct soap *soap, const char *URL, tt__AudioClassCandidate 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, "tt:AudioClassCandidate", p->soap_type() == SOAP_TYPE_tt__AudioClassCandidate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioClassCandidate(struct soap *soap, const char *URL, tt__AudioClassCandidate 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, "tt:AudioClassCandidate", p->soap_type() == SOAP_TYPE_tt__AudioClassCandidate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioClassCandidate(struct soap *soap, const char *URL, tt__AudioClassCandidate 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, "tt:AudioClassCandidate", p->soap_type() == SOAP_TYPE_tt__AudioClassCandidate ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioClassCandidate * SOAP_FMAC4 soap_get_tt__AudioClassCandidate(struct soap*, tt__AudioClassCandidate *, const char*, const char*); - -inline int soap_read_tt__AudioClassCandidate(struct soap *soap, tt__AudioClassCandidate *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioClassCandidate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioClassCandidate(struct soap *soap, const char *URL, tt__AudioClassCandidate *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioClassCandidate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioClassCandidate(struct soap *soap, tt__AudioClassCandidate *p) -{ - if (::soap_read_tt__AudioClassCandidate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ActionEngineEventPayloadExtension_DEFINED -#define SOAP_TYPE_tt__ActionEngineEventPayloadExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ActionEngineEventPayloadExtension(struct soap*, const char*, int, const tt__ActionEngineEventPayloadExtension *, const char*); -SOAP_FMAC3 tt__ActionEngineEventPayloadExtension * SOAP_FMAC4 soap_in_tt__ActionEngineEventPayloadExtension(struct soap*, const char*, tt__ActionEngineEventPayloadExtension *, const char*); -SOAP_FMAC1 tt__ActionEngineEventPayloadExtension * SOAP_FMAC2 soap_instantiate_tt__ActionEngineEventPayloadExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ActionEngineEventPayloadExtension * soap_new_tt__ActionEngineEventPayloadExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ActionEngineEventPayloadExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ActionEngineEventPayloadExtension * soap_new_req_tt__ActionEngineEventPayloadExtension( - struct soap *soap) -{ - tt__ActionEngineEventPayloadExtension *_p = ::soap_new_tt__ActionEngineEventPayloadExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ActionEngineEventPayloadExtension * soap_new_set_tt__ActionEngineEventPayloadExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ActionEngineEventPayloadExtension *_p = ::soap_new_tt__ActionEngineEventPayloadExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ActionEngineEventPayloadExtension::__any = __any; - _p->tt__ActionEngineEventPayloadExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ActionEngineEventPayloadExtension(struct soap *soap, tt__ActionEngineEventPayloadExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ActionEngineEventPayloadExtension", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayloadExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ActionEngineEventPayloadExtension(struct soap *soap, const char *URL, tt__ActionEngineEventPayloadExtension 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, "tt:ActionEngineEventPayloadExtension", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayloadExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ActionEngineEventPayloadExtension(struct soap *soap, const char *URL, tt__ActionEngineEventPayloadExtension 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, "tt:ActionEngineEventPayloadExtension", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayloadExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ActionEngineEventPayloadExtension(struct soap *soap, const char *URL, tt__ActionEngineEventPayloadExtension 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, "tt:ActionEngineEventPayloadExtension", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayloadExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ActionEngineEventPayloadExtension * SOAP_FMAC4 soap_get_tt__ActionEngineEventPayloadExtension(struct soap*, tt__ActionEngineEventPayloadExtension *, const char*, const char*); - -inline int soap_read_tt__ActionEngineEventPayloadExtension(struct soap *soap, tt__ActionEngineEventPayloadExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ActionEngineEventPayloadExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ActionEngineEventPayloadExtension(struct soap *soap, const char *URL, tt__ActionEngineEventPayloadExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ActionEngineEventPayloadExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ActionEngineEventPayloadExtension(struct soap *soap, tt__ActionEngineEventPayloadExtension *p) -{ - if (::soap_read_tt__ActionEngineEventPayloadExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ActionEngineEventPayload_DEFINED -#define SOAP_TYPE_tt__ActionEngineEventPayload_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ActionEngineEventPayload(struct soap*, const char*, int, const tt__ActionEngineEventPayload *, const char*); -SOAP_FMAC3 tt__ActionEngineEventPayload * SOAP_FMAC4 soap_in_tt__ActionEngineEventPayload(struct soap*, const char*, tt__ActionEngineEventPayload *, const char*); -SOAP_FMAC1 tt__ActionEngineEventPayload * SOAP_FMAC2 soap_instantiate_tt__ActionEngineEventPayload(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ActionEngineEventPayload * soap_new_tt__ActionEngineEventPayload(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ActionEngineEventPayload(soap, n, NULL, NULL, NULL); -} - -inline tt__ActionEngineEventPayload * soap_new_req_tt__ActionEngineEventPayload( - struct soap *soap) -{ - tt__ActionEngineEventPayload *_p = ::soap_new_tt__ActionEngineEventPayload(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ActionEngineEventPayload * soap_new_set_tt__ActionEngineEventPayload( - struct soap *soap, - std::string *RequestInfo, - std::string *ResponseInfo, - struct SOAP_ENV__Fault *Fault, - tt__ActionEngineEventPayloadExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ActionEngineEventPayload *_p = ::soap_new_tt__ActionEngineEventPayload(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ActionEngineEventPayload::RequestInfo = RequestInfo; - _p->tt__ActionEngineEventPayload::ResponseInfo = ResponseInfo; - _p->tt__ActionEngineEventPayload::Fault = Fault; - _p->tt__ActionEngineEventPayload::Extension = Extension; - _p->tt__ActionEngineEventPayload::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ActionEngineEventPayload(struct soap *soap, tt__ActionEngineEventPayload const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ActionEngineEventPayload", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayload ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ActionEngineEventPayload(struct soap *soap, const char *URL, tt__ActionEngineEventPayload 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, "tt:ActionEngineEventPayload", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayload ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ActionEngineEventPayload(struct soap *soap, const char *URL, tt__ActionEngineEventPayload 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, "tt:ActionEngineEventPayload", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayload ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ActionEngineEventPayload(struct soap *soap, const char *URL, tt__ActionEngineEventPayload 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, "tt:ActionEngineEventPayload", p->soap_type() == SOAP_TYPE_tt__ActionEngineEventPayload ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ActionEngineEventPayload * SOAP_FMAC4 soap_get_tt__ActionEngineEventPayload(struct soap*, tt__ActionEngineEventPayload *, const char*, const char*); - -inline int soap_read_tt__ActionEngineEventPayload(struct soap *soap, tt__ActionEngineEventPayload *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ActionEngineEventPayload(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ActionEngineEventPayload(struct soap *soap, const char *URL, tt__ActionEngineEventPayload *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ActionEngineEventPayload(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ActionEngineEventPayload(struct soap *soap, tt__ActionEngineEventPayload *p) -{ - if (::soap_read_tt__ActionEngineEventPayload(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsState_DEFINED -#define SOAP_TYPE_tt__AnalyticsState_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsState(struct soap*, const char*, int, const tt__AnalyticsState *, const char*); -SOAP_FMAC3 tt__AnalyticsState * SOAP_FMAC4 soap_in_tt__AnalyticsState(struct soap*, const char*, tt__AnalyticsState *, const char*); -SOAP_FMAC1 tt__AnalyticsState * SOAP_FMAC2 soap_instantiate_tt__AnalyticsState(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsState * soap_new_tt__AnalyticsState(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsState(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsState * soap_new_req_tt__AnalyticsState( - struct soap *soap, - const std::string& State) -{ - tt__AnalyticsState *_p = ::soap_new_tt__AnalyticsState(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsState::State = State; - } - return _p; -} - -inline tt__AnalyticsState * soap_new_set_tt__AnalyticsState( - struct soap *soap, - std::string *Error, - const std::string& State, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnalyticsState *_p = ::soap_new_tt__AnalyticsState(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsState::Error = Error; - _p->tt__AnalyticsState::State = State; - _p->tt__AnalyticsState::__any = __any; - _p->tt__AnalyticsState::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnalyticsState(struct soap *soap, tt__AnalyticsState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsState", p->soap_type() == SOAP_TYPE_tt__AnalyticsState ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsState(struct soap *soap, const char *URL, tt__AnalyticsState 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, "tt:AnalyticsState", p->soap_type() == SOAP_TYPE_tt__AnalyticsState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsState(struct soap *soap, const char *URL, tt__AnalyticsState 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, "tt:AnalyticsState", p->soap_type() == SOAP_TYPE_tt__AnalyticsState ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsState(struct soap *soap, const char *URL, tt__AnalyticsState 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, "tt:AnalyticsState", p->soap_type() == SOAP_TYPE_tt__AnalyticsState ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsState * SOAP_FMAC4 soap_get_tt__AnalyticsState(struct soap*, tt__AnalyticsState *, const char*, const char*); - -inline int soap_read_tt__AnalyticsState(struct soap *soap, tt__AnalyticsState *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsState(struct soap *soap, const char *URL, tt__AnalyticsState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsState(struct soap *soap, tt__AnalyticsState *p) -{ - if (::soap_read_tt__AnalyticsState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsStateInformation_DEFINED -#define SOAP_TYPE_tt__AnalyticsStateInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsStateInformation(struct soap*, const char*, int, const tt__AnalyticsStateInformation *, const char*); -SOAP_FMAC3 tt__AnalyticsStateInformation * SOAP_FMAC4 soap_in_tt__AnalyticsStateInformation(struct soap*, const char*, tt__AnalyticsStateInformation *, const char*); -SOAP_FMAC1 tt__AnalyticsStateInformation * SOAP_FMAC2 soap_instantiate_tt__AnalyticsStateInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsStateInformation * soap_new_tt__AnalyticsStateInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsStateInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsStateInformation * soap_new_req_tt__AnalyticsStateInformation( - struct soap *soap, - const std::string& AnalyticsEngineControlToken, - tt__AnalyticsState *State) -{ - tt__AnalyticsStateInformation *_p = ::soap_new_tt__AnalyticsStateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsStateInformation::AnalyticsEngineControlToken = AnalyticsEngineControlToken; - _p->tt__AnalyticsStateInformation::State = State; - } - return _p; -} - -inline tt__AnalyticsStateInformation * soap_new_set_tt__AnalyticsStateInformation( - struct soap *soap, - const std::string& AnalyticsEngineControlToken, - tt__AnalyticsState *State, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnalyticsStateInformation *_p = ::soap_new_tt__AnalyticsStateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsStateInformation::AnalyticsEngineControlToken = AnalyticsEngineControlToken; - _p->tt__AnalyticsStateInformation::State = State; - _p->tt__AnalyticsStateInformation::__any = __any; - _p->tt__AnalyticsStateInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnalyticsStateInformation(struct soap *soap, tt__AnalyticsStateInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsStateInformation", p->soap_type() == SOAP_TYPE_tt__AnalyticsStateInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsStateInformation(struct soap *soap, const char *URL, tt__AnalyticsStateInformation 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, "tt:AnalyticsStateInformation", p->soap_type() == SOAP_TYPE_tt__AnalyticsStateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsStateInformation(struct soap *soap, const char *URL, tt__AnalyticsStateInformation 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, "tt:AnalyticsStateInformation", p->soap_type() == SOAP_TYPE_tt__AnalyticsStateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsStateInformation(struct soap *soap, const char *URL, tt__AnalyticsStateInformation 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, "tt:AnalyticsStateInformation", p->soap_type() == SOAP_TYPE_tt__AnalyticsStateInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsStateInformation * SOAP_FMAC4 soap_get_tt__AnalyticsStateInformation(struct soap*, tt__AnalyticsStateInformation *, const char*, const char*); - -inline int soap_read_tt__AnalyticsStateInformation(struct soap *soap, tt__AnalyticsStateInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsStateInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsStateInformation(struct soap *soap, const char *URL, tt__AnalyticsStateInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsStateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsStateInformation(struct soap *soap, tt__AnalyticsStateInformation *p) -{ - if (::soap_read_tt__AnalyticsStateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsEngineControl_DEFINED -#define SOAP_TYPE_tt__AnalyticsEngineControl_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineControl(struct soap*, const char*, int, const tt__AnalyticsEngineControl *, const char*); -SOAP_FMAC3 tt__AnalyticsEngineControl * SOAP_FMAC4 soap_in_tt__AnalyticsEngineControl(struct soap*, const char*, tt__AnalyticsEngineControl *, const char*); -SOAP_FMAC1 tt__AnalyticsEngineControl * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineControl(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsEngineControl * soap_new_tt__AnalyticsEngineControl(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsEngineControl(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsEngineControl * soap_new_req_tt__AnalyticsEngineControl( - struct soap *soap, - const std::string& EngineToken, - const std::string& EngineConfigToken, - const std::vector & InputToken, - const std::vector & ReceiverToken, - tt__Config *Subscription, - enum tt__ModeOfOperation Mode, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AnalyticsEngineControl *_p = ::soap_new_tt__AnalyticsEngineControl(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineControl::EngineToken = EngineToken; - _p->tt__AnalyticsEngineControl::EngineConfigToken = EngineConfigToken; - _p->tt__AnalyticsEngineControl::InputToken = InputToken; - _p->tt__AnalyticsEngineControl::ReceiverToken = ReceiverToken; - _p->tt__AnalyticsEngineControl::Subscription = Subscription; - _p->tt__AnalyticsEngineControl::Mode = Mode; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AnalyticsEngineControl * soap_new_set_tt__AnalyticsEngineControl( - struct soap *soap, - const std::string& EngineToken, - const std::string& EngineConfigToken, - const std::vector & InputToken, - const std::vector & ReceiverToken, - tt__MulticastConfiguration *Multicast, - tt__Config *Subscription, - enum tt__ModeOfOperation Mode, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AnalyticsEngineControl *_p = ::soap_new_tt__AnalyticsEngineControl(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineControl::EngineToken = EngineToken; - _p->tt__AnalyticsEngineControl::EngineConfigToken = EngineConfigToken; - _p->tt__AnalyticsEngineControl::InputToken = InputToken; - _p->tt__AnalyticsEngineControl::ReceiverToken = ReceiverToken; - _p->tt__AnalyticsEngineControl::Multicast = Multicast; - _p->tt__AnalyticsEngineControl::Subscription = Subscription; - _p->tt__AnalyticsEngineControl::Mode = Mode; - _p->tt__AnalyticsEngineControl::__any = __any; - _p->tt__AnalyticsEngineControl::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AnalyticsEngineControl(struct soap *soap, tt__AnalyticsEngineControl const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsEngineControl", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineControl ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsEngineControl(struct soap *soap, const char *URL, tt__AnalyticsEngineControl 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, "tt:AnalyticsEngineControl", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineControl ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsEngineControl(struct soap *soap, const char *URL, tt__AnalyticsEngineControl 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, "tt:AnalyticsEngineControl", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineControl ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsEngineControl(struct soap *soap, const char *URL, tt__AnalyticsEngineControl 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, "tt:AnalyticsEngineControl", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineControl ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsEngineControl * SOAP_FMAC4 soap_get_tt__AnalyticsEngineControl(struct soap*, tt__AnalyticsEngineControl *, const char*, const char*); - -inline int soap_read_tt__AnalyticsEngineControl(struct soap *soap, tt__AnalyticsEngineControl *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsEngineControl(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsEngineControl(struct soap *soap, const char *URL, tt__AnalyticsEngineControl *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsEngineControl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsEngineControl(struct soap *soap, tt__AnalyticsEngineControl *p) -{ - if (::soap_read_tt__AnalyticsEngineControl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataInputExtension_DEFINED -#define SOAP_TYPE_tt__MetadataInputExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataInputExtension(struct soap*, const char*, int, const tt__MetadataInputExtension *, const char*); -SOAP_FMAC3 tt__MetadataInputExtension * SOAP_FMAC4 soap_in_tt__MetadataInputExtension(struct soap*, const char*, tt__MetadataInputExtension *, const char*); -SOAP_FMAC1 tt__MetadataInputExtension * SOAP_FMAC2 soap_instantiate_tt__MetadataInputExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataInputExtension * soap_new_tt__MetadataInputExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataInputExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataInputExtension * soap_new_req_tt__MetadataInputExtension( - struct soap *soap) -{ - tt__MetadataInputExtension *_p = ::soap_new_tt__MetadataInputExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MetadataInputExtension * soap_new_set_tt__MetadataInputExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__MetadataInputExtension *_p = ::soap_new_tt__MetadataInputExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataInputExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__MetadataInputExtension(struct soap *soap, tt__MetadataInputExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataInputExtension", p->soap_type() == SOAP_TYPE_tt__MetadataInputExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataInputExtension(struct soap *soap, const char *URL, tt__MetadataInputExtension 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, "tt:MetadataInputExtension", p->soap_type() == SOAP_TYPE_tt__MetadataInputExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataInputExtension(struct soap *soap, const char *URL, tt__MetadataInputExtension 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, "tt:MetadataInputExtension", p->soap_type() == SOAP_TYPE_tt__MetadataInputExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataInputExtension(struct soap *soap, const char *URL, tt__MetadataInputExtension 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, "tt:MetadataInputExtension", p->soap_type() == SOAP_TYPE_tt__MetadataInputExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataInputExtension * SOAP_FMAC4 soap_get_tt__MetadataInputExtension(struct soap*, tt__MetadataInputExtension *, const char*, const char*); - -inline int soap_read_tt__MetadataInputExtension(struct soap *soap, tt__MetadataInputExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataInputExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataInputExtension(struct soap *soap, const char *URL, tt__MetadataInputExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataInputExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataInputExtension(struct soap *soap, tt__MetadataInputExtension *p) -{ - if (::soap_read_tt__MetadataInputExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataInput_DEFINED -#define SOAP_TYPE_tt__MetadataInput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataInput(struct soap*, const char*, int, const tt__MetadataInput *, const char*); -SOAP_FMAC3 tt__MetadataInput * SOAP_FMAC4 soap_in_tt__MetadataInput(struct soap*, const char*, tt__MetadataInput *, const char*); -SOAP_FMAC1 tt__MetadataInput * SOAP_FMAC2 soap_instantiate_tt__MetadataInput(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataInput * soap_new_tt__MetadataInput(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataInput(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataInput * soap_new_req_tt__MetadataInput( - struct soap *soap) -{ - tt__MetadataInput *_p = ::soap_new_tt__MetadataInput(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MetadataInput * soap_new_set_tt__MetadataInput( - struct soap *soap, - const std::vector & MetadataConfig, - tt__MetadataInputExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MetadataInput *_p = ::soap_new_tt__MetadataInput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataInput::MetadataConfig = MetadataConfig; - _p->tt__MetadataInput::Extension = Extension; - _p->tt__MetadataInput::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MetadataInput(struct soap *soap, tt__MetadataInput const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataInput", p->soap_type() == SOAP_TYPE_tt__MetadataInput ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataInput(struct soap *soap, const char *URL, tt__MetadataInput 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, "tt:MetadataInput", p->soap_type() == SOAP_TYPE_tt__MetadataInput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataInput(struct soap *soap, const char *URL, tt__MetadataInput 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, "tt:MetadataInput", p->soap_type() == SOAP_TYPE_tt__MetadataInput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataInput(struct soap *soap, const char *URL, tt__MetadataInput 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, "tt:MetadataInput", p->soap_type() == SOAP_TYPE_tt__MetadataInput ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataInput * SOAP_FMAC4 soap_get_tt__MetadataInput(struct soap*, tt__MetadataInput *, const char*, const char*); - -inline int soap_read_tt__MetadataInput(struct soap *soap, tt__MetadataInput *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataInput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataInput(struct soap *soap, const char *URL, tt__MetadataInput *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataInput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataInput(struct soap *soap, tt__MetadataInput *p) -{ - if (::soap_read_tt__MetadataInput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SourceIdentificationExtension_DEFINED -#define SOAP_TYPE_tt__SourceIdentificationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SourceIdentificationExtension(struct soap*, const char*, int, const tt__SourceIdentificationExtension *, const char*); -SOAP_FMAC3 tt__SourceIdentificationExtension * SOAP_FMAC4 soap_in_tt__SourceIdentificationExtension(struct soap*, const char*, tt__SourceIdentificationExtension *, const char*); -SOAP_FMAC1 tt__SourceIdentificationExtension * SOAP_FMAC2 soap_instantiate_tt__SourceIdentificationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SourceIdentificationExtension * soap_new_tt__SourceIdentificationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SourceIdentificationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__SourceIdentificationExtension * soap_new_req_tt__SourceIdentificationExtension( - struct soap *soap) -{ - tt__SourceIdentificationExtension *_p = ::soap_new_tt__SourceIdentificationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SourceIdentificationExtension * soap_new_set_tt__SourceIdentificationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__SourceIdentificationExtension *_p = ::soap_new_tt__SourceIdentificationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SourceIdentificationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__SourceIdentificationExtension(struct soap *soap, tt__SourceIdentificationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SourceIdentificationExtension", p->soap_type() == SOAP_TYPE_tt__SourceIdentificationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SourceIdentificationExtension(struct soap *soap, const char *URL, tt__SourceIdentificationExtension 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, "tt:SourceIdentificationExtension", p->soap_type() == SOAP_TYPE_tt__SourceIdentificationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SourceIdentificationExtension(struct soap *soap, const char *URL, tt__SourceIdentificationExtension 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, "tt:SourceIdentificationExtension", p->soap_type() == SOAP_TYPE_tt__SourceIdentificationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SourceIdentificationExtension(struct soap *soap, const char *URL, tt__SourceIdentificationExtension 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, "tt:SourceIdentificationExtension", p->soap_type() == SOAP_TYPE_tt__SourceIdentificationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SourceIdentificationExtension * SOAP_FMAC4 soap_get_tt__SourceIdentificationExtension(struct soap*, tt__SourceIdentificationExtension *, const char*, const char*); - -inline int soap_read_tt__SourceIdentificationExtension(struct soap *soap, tt__SourceIdentificationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SourceIdentificationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SourceIdentificationExtension(struct soap *soap, const char *URL, tt__SourceIdentificationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SourceIdentificationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SourceIdentificationExtension(struct soap *soap, tt__SourceIdentificationExtension *p) -{ - if (::soap_read_tt__SourceIdentificationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SourceIdentification_DEFINED -#define SOAP_TYPE_tt__SourceIdentification_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SourceIdentification(struct soap*, const char*, int, const tt__SourceIdentification *, const char*); -SOAP_FMAC3 tt__SourceIdentification * SOAP_FMAC4 soap_in_tt__SourceIdentification(struct soap*, const char*, tt__SourceIdentification *, const char*); -SOAP_FMAC1 tt__SourceIdentification * SOAP_FMAC2 soap_instantiate_tt__SourceIdentification(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SourceIdentification * soap_new_tt__SourceIdentification(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SourceIdentification(soap, n, NULL, NULL, NULL); -} - -inline tt__SourceIdentification * soap_new_req_tt__SourceIdentification( - struct soap *soap, - const std::string& Name, - const std::vector & Token) -{ - tt__SourceIdentification *_p = ::soap_new_tt__SourceIdentification(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SourceIdentification::Name = Name; - _p->tt__SourceIdentification::Token = Token; - } - return _p; -} - -inline tt__SourceIdentification * soap_new_set_tt__SourceIdentification( - struct soap *soap, - const std::string& Name, - const std::vector & Token, - tt__SourceIdentificationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SourceIdentification *_p = ::soap_new_tt__SourceIdentification(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SourceIdentification::Name = Name; - _p->tt__SourceIdentification::Token = Token; - _p->tt__SourceIdentification::Extension = Extension; - _p->tt__SourceIdentification::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SourceIdentification(struct soap *soap, tt__SourceIdentification const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SourceIdentification", p->soap_type() == SOAP_TYPE_tt__SourceIdentification ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SourceIdentification(struct soap *soap, const char *URL, tt__SourceIdentification 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, "tt:SourceIdentification", p->soap_type() == SOAP_TYPE_tt__SourceIdentification ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SourceIdentification(struct soap *soap, const char *URL, tt__SourceIdentification 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, "tt:SourceIdentification", p->soap_type() == SOAP_TYPE_tt__SourceIdentification ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SourceIdentification(struct soap *soap, const char *URL, tt__SourceIdentification 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, "tt:SourceIdentification", p->soap_type() == SOAP_TYPE_tt__SourceIdentification ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SourceIdentification * SOAP_FMAC4 soap_get_tt__SourceIdentification(struct soap*, tt__SourceIdentification *, const char*, const char*); - -inline int soap_read_tt__SourceIdentification(struct soap *soap, tt__SourceIdentification *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SourceIdentification(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SourceIdentification(struct soap *soap, const char *URL, tt__SourceIdentification *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SourceIdentification(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SourceIdentification(struct soap *soap, tt__SourceIdentification *p) -{ - if (::soap_read_tt__SourceIdentification(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsEngineInput_DEFINED -#define SOAP_TYPE_tt__AnalyticsEngineInput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineInput(struct soap*, const char*, int, const tt__AnalyticsEngineInput *, const char*); -SOAP_FMAC3 tt__AnalyticsEngineInput * SOAP_FMAC4 soap_in_tt__AnalyticsEngineInput(struct soap*, const char*, tt__AnalyticsEngineInput *, const char*); -SOAP_FMAC1 tt__AnalyticsEngineInput * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineInput(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsEngineInput * soap_new_tt__AnalyticsEngineInput(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsEngineInput(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsEngineInput * soap_new_req_tt__AnalyticsEngineInput( - struct soap *soap, - tt__SourceIdentification *SourceIdentification, - tt__VideoEncoderConfiguration *VideoInput, - tt__MetadataInput *MetadataInput, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AnalyticsEngineInput *_p = ::soap_new_tt__AnalyticsEngineInput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineInput::SourceIdentification = SourceIdentification; - _p->tt__AnalyticsEngineInput::VideoInput = VideoInput; - _p->tt__AnalyticsEngineInput::MetadataInput = MetadataInput; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AnalyticsEngineInput * soap_new_set_tt__AnalyticsEngineInput( - struct soap *soap, - tt__SourceIdentification *SourceIdentification, - tt__VideoEncoderConfiguration *VideoInput, - tt__MetadataInput *MetadataInput, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AnalyticsEngineInput *_p = ::soap_new_tt__AnalyticsEngineInput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineInput::SourceIdentification = SourceIdentification; - _p->tt__AnalyticsEngineInput::VideoInput = VideoInput; - _p->tt__AnalyticsEngineInput::MetadataInput = MetadataInput; - _p->tt__AnalyticsEngineInput::__any = __any; - _p->tt__AnalyticsEngineInput::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AnalyticsEngineInput(struct soap *soap, tt__AnalyticsEngineInput const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsEngineInput", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInput ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsEngineInput(struct soap *soap, const char *URL, tt__AnalyticsEngineInput 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, "tt:AnalyticsEngineInput", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsEngineInput(struct soap *soap, const char *URL, tt__AnalyticsEngineInput 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, "tt:AnalyticsEngineInput", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsEngineInput(struct soap *soap, const char *URL, tt__AnalyticsEngineInput 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, "tt:AnalyticsEngineInput", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInput ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsEngineInput * SOAP_FMAC4 soap_get_tt__AnalyticsEngineInput(struct soap*, tt__AnalyticsEngineInput *, const char*, const char*); - -inline int soap_read_tt__AnalyticsEngineInput(struct soap *soap, tt__AnalyticsEngineInput *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsEngineInput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsEngineInput(struct soap *soap, const char *URL, tt__AnalyticsEngineInput *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsEngineInput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsEngineInput(struct soap *soap, tt__AnalyticsEngineInput *p) -{ - if (::soap_read_tt__AnalyticsEngineInput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension_DEFINED -#define SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineInputInfoExtension(struct soap*, const char*, int, const tt__AnalyticsEngineInputInfoExtension *, const char*); -SOAP_FMAC3 tt__AnalyticsEngineInputInfoExtension * SOAP_FMAC4 soap_in_tt__AnalyticsEngineInputInfoExtension(struct soap*, const char*, tt__AnalyticsEngineInputInfoExtension *, const char*); -SOAP_FMAC1 tt__AnalyticsEngineInputInfoExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineInputInfoExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsEngineInputInfoExtension * soap_new_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsEngineInputInfoExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsEngineInputInfoExtension * soap_new_req_tt__AnalyticsEngineInputInfoExtension( - struct soap *soap) -{ - tt__AnalyticsEngineInputInfoExtension *_p = ::soap_new_tt__AnalyticsEngineInputInfoExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AnalyticsEngineInputInfoExtension * soap_new_set_tt__AnalyticsEngineInputInfoExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__AnalyticsEngineInputInfoExtension *_p = ::soap_new_tt__AnalyticsEngineInputInfoExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineInputInfoExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, tt__AnalyticsEngineInputInfoExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsEngineInputInfoExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfoExtension 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, "tt:AnalyticsEngineInputInfoExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfoExtension 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, "tt:AnalyticsEngineInputInfoExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfoExtension 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, "tt:AnalyticsEngineInputInfoExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfoExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsEngineInputInfoExtension * SOAP_FMAC4 soap_get_tt__AnalyticsEngineInputInfoExtension(struct soap*, tt__AnalyticsEngineInputInfoExtension *, const char*, const char*); - -inline int soap_read_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, tt__AnalyticsEngineInputInfoExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsEngineInputInfoExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfoExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsEngineInputInfoExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsEngineInputInfoExtension(struct soap *soap, tt__AnalyticsEngineInputInfoExtension *p) -{ - if (::soap_read_tt__AnalyticsEngineInputInfoExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsEngineInputInfo_DEFINED -#define SOAP_TYPE_tt__AnalyticsEngineInputInfo_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineInputInfo(struct soap*, const char*, int, const tt__AnalyticsEngineInputInfo *, const char*); -SOAP_FMAC3 tt__AnalyticsEngineInputInfo * SOAP_FMAC4 soap_in_tt__AnalyticsEngineInputInfo(struct soap*, const char*, tt__AnalyticsEngineInputInfo *, const char*); -SOAP_FMAC1 tt__AnalyticsEngineInputInfo * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineInputInfo(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsEngineInputInfo * soap_new_tt__AnalyticsEngineInputInfo(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsEngineInputInfo(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsEngineInputInfo * soap_new_req_tt__AnalyticsEngineInputInfo( - struct soap *soap) -{ - tt__AnalyticsEngineInputInfo *_p = ::soap_new_tt__AnalyticsEngineInputInfo(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AnalyticsEngineInputInfo * soap_new_set_tt__AnalyticsEngineInputInfo( - struct soap *soap, - tt__Config *InputInfo, - tt__AnalyticsEngineInputInfoExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnalyticsEngineInputInfo *_p = ::soap_new_tt__AnalyticsEngineInputInfo(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineInputInfo::InputInfo = InputInfo; - _p->tt__AnalyticsEngineInputInfo::Extension = Extension; - _p->tt__AnalyticsEngineInputInfo::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnalyticsEngineInputInfo(struct soap *soap, tt__AnalyticsEngineInputInfo const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsEngineInputInfo", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfo ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsEngineInputInfo(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfo 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, "tt:AnalyticsEngineInputInfo", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfo ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsEngineInputInfo(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfo 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, "tt:AnalyticsEngineInputInfo", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfo ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsEngineInputInfo(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfo 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, "tt:AnalyticsEngineInputInfo", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineInputInfo ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsEngineInputInfo * SOAP_FMAC4 soap_get_tt__AnalyticsEngineInputInfo(struct soap*, tt__AnalyticsEngineInputInfo *, const char*, const char*); - -inline int soap_read_tt__AnalyticsEngineInputInfo(struct soap *soap, tt__AnalyticsEngineInputInfo *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsEngineInputInfo(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsEngineInputInfo(struct soap *soap, const char *URL, tt__AnalyticsEngineInputInfo *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsEngineInputInfo(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsEngineInputInfo(struct soap *soap, tt__AnalyticsEngineInputInfo *p) -{ - if (::soap_read_tt__AnalyticsEngineInputInfo(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EngineConfiguration_DEFINED -#define SOAP_TYPE_tt__EngineConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EngineConfiguration(struct soap*, const char*, int, const tt__EngineConfiguration *, const char*); -SOAP_FMAC3 tt__EngineConfiguration * SOAP_FMAC4 soap_in_tt__EngineConfiguration(struct soap*, const char*, tt__EngineConfiguration *, const char*); -SOAP_FMAC1 tt__EngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__EngineConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EngineConfiguration * soap_new_tt__EngineConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EngineConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__EngineConfiguration * soap_new_req_tt__EngineConfiguration( - struct soap *soap, - tt__VideoAnalyticsConfiguration *VideoAnalyticsConfiguration, - tt__AnalyticsEngineInputInfo *AnalyticsEngineInputInfo) -{ - tt__EngineConfiguration *_p = ::soap_new_tt__EngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EngineConfiguration::VideoAnalyticsConfiguration = VideoAnalyticsConfiguration; - _p->tt__EngineConfiguration::AnalyticsEngineInputInfo = AnalyticsEngineInputInfo; - } - return _p; -} - -inline tt__EngineConfiguration * soap_new_set_tt__EngineConfiguration( - struct soap *soap, - tt__VideoAnalyticsConfiguration *VideoAnalyticsConfiguration, - tt__AnalyticsEngineInputInfo *AnalyticsEngineInputInfo, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__EngineConfiguration *_p = ::soap_new_tt__EngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EngineConfiguration::VideoAnalyticsConfiguration = VideoAnalyticsConfiguration; - _p->tt__EngineConfiguration::AnalyticsEngineInputInfo = AnalyticsEngineInputInfo; - _p->tt__EngineConfiguration::__any = __any; - _p->tt__EngineConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__EngineConfiguration(struct soap *soap, tt__EngineConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EngineConfiguration", p->soap_type() == SOAP_TYPE_tt__EngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EngineConfiguration(struct soap *soap, const char *URL, tt__EngineConfiguration 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, "tt:EngineConfiguration", p->soap_type() == SOAP_TYPE_tt__EngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EngineConfiguration(struct soap *soap, const char *URL, tt__EngineConfiguration 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, "tt:EngineConfiguration", p->soap_type() == SOAP_TYPE_tt__EngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EngineConfiguration(struct soap *soap, const char *URL, tt__EngineConfiguration 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, "tt:EngineConfiguration", p->soap_type() == SOAP_TYPE_tt__EngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EngineConfiguration * SOAP_FMAC4 soap_get_tt__EngineConfiguration(struct soap*, tt__EngineConfiguration *, const char*, const char*); - -inline int soap_read_tt__EngineConfiguration(struct soap *soap, tt__EngineConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EngineConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EngineConfiguration(struct soap *soap, const char *URL, tt__EngineConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EngineConfiguration(struct soap *soap, tt__EngineConfiguration *p) -{ - if (::soap_read_tt__EngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap*, const char*, int, const tt__AnalyticsDeviceEngineConfigurationExtension *, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfigurationExtension * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap*, const char*, tt__AnalyticsDeviceEngineConfigurationExtension *, const char*); -SOAP_FMAC1 tt__AnalyticsDeviceEngineConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsDeviceEngineConfigurationExtension * soap_new_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsDeviceEngineConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsDeviceEngineConfigurationExtension * soap_new_req_tt__AnalyticsDeviceEngineConfigurationExtension( - struct soap *soap) -{ - tt__AnalyticsDeviceEngineConfigurationExtension *_p = ::soap_new_tt__AnalyticsDeviceEngineConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AnalyticsDeviceEngineConfigurationExtension * soap_new_set_tt__AnalyticsDeviceEngineConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__AnalyticsDeviceEngineConfigurationExtension *_p = ::soap_new_tt__AnalyticsDeviceEngineConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsDeviceEngineConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, tt__AnalyticsDeviceEngineConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsDeviceEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfigurationExtension 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, "tt:AnalyticsDeviceEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfigurationExtension 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, "tt:AnalyticsDeviceEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfigurationExtension 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, "tt:AnalyticsDeviceEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfigurationExtension * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap*, tt__AnalyticsDeviceEngineConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, tt__AnalyticsDeviceEngineConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsDeviceEngineConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsDeviceEngineConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsDeviceEngineConfigurationExtension(struct soap *soap, tt__AnalyticsDeviceEngineConfigurationExtension *p) -{ - if (::soap_read_tt__AnalyticsDeviceEngineConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration_DEFINED -#define SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceEngineConfiguration(struct soap*, const char*, int, const tt__AnalyticsDeviceEngineConfiguration *, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfiguration * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceEngineConfiguration(struct soap*, const char*, tt__AnalyticsDeviceEngineConfiguration *, const char*); -SOAP_FMAC1 tt__AnalyticsDeviceEngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceEngineConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsDeviceEngineConfiguration * soap_new_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsDeviceEngineConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsDeviceEngineConfiguration * soap_new_req_tt__AnalyticsDeviceEngineConfiguration( - struct soap *soap, - const std::vector & EngineConfiguration) -{ - tt__AnalyticsDeviceEngineConfiguration *_p = ::soap_new_tt__AnalyticsDeviceEngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsDeviceEngineConfiguration::EngineConfiguration = EngineConfiguration; - } - return _p; -} - -inline tt__AnalyticsDeviceEngineConfiguration * soap_new_set_tt__AnalyticsDeviceEngineConfiguration( - struct soap *soap, - const std::vector & EngineConfiguration, - tt__AnalyticsDeviceEngineConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnalyticsDeviceEngineConfiguration *_p = ::soap_new_tt__AnalyticsDeviceEngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsDeviceEngineConfiguration::EngineConfiguration = EngineConfiguration; - _p->tt__AnalyticsDeviceEngineConfiguration::Extension = Extension; - _p->tt__AnalyticsDeviceEngineConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, tt__AnalyticsDeviceEngineConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsDeviceEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfiguration 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, "tt:AnalyticsDeviceEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfiguration 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, "tt:AnalyticsDeviceEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfiguration 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, "tt:AnalyticsDeviceEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceEngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfiguration * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceEngineConfiguration(struct soap*, tt__AnalyticsDeviceEngineConfiguration *, const char*, const char*); - -inline int soap_read_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, tt__AnalyticsDeviceEngineConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsDeviceEngineConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsDeviceEngineConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsDeviceEngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsDeviceEngineConfiguration(struct soap *soap, tt__AnalyticsDeviceEngineConfiguration *p) -{ - if (::soap_read_tt__AnalyticsDeviceEngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsEngine_DEFINED -#define SOAP_TYPE_tt__AnalyticsEngine_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngine(struct soap*, const char*, int, const tt__AnalyticsEngine *, const char*); -SOAP_FMAC3 tt__AnalyticsEngine * SOAP_FMAC4 soap_in_tt__AnalyticsEngine(struct soap*, const char*, tt__AnalyticsEngine *, const char*); -SOAP_FMAC1 tt__AnalyticsEngine * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngine(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsEngine * soap_new_tt__AnalyticsEngine(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsEngine(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsEngine * soap_new_req_tt__AnalyticsEngine( - struct soap *soap, - tt__AnalyticsDeviceEngineConfiguration *AnalyticsEngineConfiguration, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AnalyticsEngine *_p = ::soap_new_tt__AnalyticsEngine(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngine::AnalyticsEngineConfiguration = AnalyticsEngineConfiguration; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AnalyticsEngine * soap_new_set_tt__AnalyticsEngine( - struct soap *soap, - tt__AnalyticsDeviceEngineConfiguration *AnalyticsEngineConfiguration, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AnalyticsEngine *_p = ::soap_new_tt__AnalyticsEngine(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngine::AnalyticsEngineConfiguration = AnalyticsEngineConfiguration; - _p->tt__AnalyticsEngine::__any = __any; - _p->tt__AnalyticsEngine::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AnalyticsEngine(struct soap *soap, tt__AnalyticsEngine const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsEngine", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngine ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsEngine(struct soap *soap, const char *URL, tt__AnalyticsEngine 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, "tt:AnalyticsEngine", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngine ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsEngine(struct soap *soap, const char *URL, tt__AnalyticsEngine 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, "tt:AnalyticsEngine", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngine ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsEngine(struct soap *soap, const char *URL, tt__AnalyticsEngine 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, "tt:AnalyticsEngine", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngine ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsEngine * SOAP_FMAC4 soap_get_tt__AnalyticsEngine(struct soap*, tt__AnalyticsEngine *, const char*, const char*); - -inline int soap_read_tt__AnalyticsEngine(struct soap *soap, tt__AnalyticsEngine *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsEngine(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsEngine(struct soap *soap, const char *URL, tt__AnalyticsEngine *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsEngine(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsEngine(struct soap *soap, tt__AnalyticsEngine *p) -{ - if (::soap_read_tt__AnalyticsEngine(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReplayConfiguration_DEFINED -#define SOAP_TYPE_tt__ReplayConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReplayConfiguration(struct soap*, const char*, int, const tt__ReplayConfiguration *, const char*); -SOAP_FMAC3 tt__ReplayConfiguration * SOAP_FMAC4 soap_in_tt__ReplayConfiguration(struct soap*, const char*, tt__ReplayConfiguration *, const char*); -SOAP_FMAC1 tt__ReplayConfiguration * SOAP_FMAC2 soap_instantiate_tt__ReplayConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReplayConfiguration * soap_new_tt__ReplayConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReplayConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__ReplayConfiguration * soap_new_req_tt__ReplayConfiguration( - struct soap *soap, - const std::string& SessionTimeout) -{ - tt__ReplayConfiguration *_p = ::soap_new_tt__ReplayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReplayConfiguration::SessionTimeout = SessionTimeout; - } - return _p; -} - -inline tt__ReplayConfiguration * soap_new_set_tt__ReplayConfiguration( - struct soap *soap, - const std::string& SessionTimeout, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ReplayConfiguration *_p = ::soap_new_tt__ReplayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReplayConfiguration::SessionTimeout = SessionTimeout; - _p->tt__ReplayConfiguration::__any = __any; - _p->tt__ReplayConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ReplayConfiguration(struct soap *soap, tt__ReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReplayConfiguration", p->soap_type() == SOAP_TYPE_tt__ReplayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReplayConfiguration(struct soap *soap, const char *URL, tt__ReplayConfiguration 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, "tt:ReplayConfiguration", p->soap_type() == SOAP_TYPE_tt__ReplayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReplayConfiguration(struct soap *soap, const char *URL, tt__ReplayConfiguration 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, "tt:ReplayConfiguration", p->soap_type() == SOAP_TYPE_tt__ReplayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReplayConfiguration(struct soap *soap, const char *URL, tt__ReplayConfiguration 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, "tt:ReplayConfiguration", p->soap_type() == SOAP_TYPE_tt__ReplayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReplayConfiguration * SOAP_FMAC4 soap_get_tt__ReplayConfiguration(struct soap*, tt__ReplayConfiguration *, const char*, const char*); - -inline int soap_read_tt__ReplayConfiguration(struct soap *soap, tt__ReplayConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReplayConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReplayConfiguration(struct soap *soap, const char *URL, tt__ReplayConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReplayConfiguration(struct soap *soap, tt__ReplayConfiguration *p) -{ - if (::soap_read_tt__ReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__GetRecordingJobsResponseItem_DEFINED -#define SOAP_TYPE_tt__GetRecordingJobsResponseItem_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetRecordingJobsResponseItem(struct soap*, const char*, int, const tt__GetRecordingJobsResponseItem *, const char*); -SOAP_FMAC3 tt__GetRecordingJobsResponseItem * SOAP_FMAC4 soap_in_tt__GetRecordingJobsResponseItem(struct soap*, const char*, tt__GetRecordingJobsResponseItem *, const char*); -SOAP_FMAC1 tt__GetRecordingJobsResponseItem * SOAP_FMAC2 soap_instantiate_tt__GetRecordingJobsResponseItem(struct soap*, int, const char*, const char*, size_t*); - -inline tt__GetRecordingJobsResponseItem * soap_new_tt__GetRecordingJobsResponseItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__GetRecordingJobsResponseItem(soap, n, NULL, NULL, NULL); -} - -inline tt__GetRecordingJobsResponseItem * soap_new_req_tt__GetRecordingJobsResponseItem( - struct soap *soap, - const std::string& JobToken, - tt__RecordingJobConfiguration *JobConfiguration) -{ - tt__GetRecordingJobsResponseItem *_p = ::soap_new_tt__GetRecordingJobsResponseItem(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GetRecordingJobsResponseItem::JobToken = JobToken; - _p->tt__GetRecordingJobsResponseItem::JobConfiguration = JobConfiguration; - } - return _p; -} - -inline tt__GetRecordingJobsResponseItem * soap_new_set_tt__GetRecordingJobsResponseItem( - struct soap *soap, - const std::string& JobToken, - tt__RecordingJobConfiguration *JobConfiguration, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__GetRecordingJobsResponseItem *_p = ::soap_new_tt__GetRecordingJobsResponseItem(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GetRecordingJobsResponseItem::JobToken = JobToken; - _p->tt__GetRecordingJobsResponseItem::JobConfiguration = JobConfiguration; - _p->tt__GetRecordingJobsResponseItem::__any = __any; - _p->tt__GetRecordingJobsResponseItem::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__GetRecordingJobsResponseItem(struct soap *soap, tt__GetRecordingJobsResponseItem const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:GetRecordingJobsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingJobsResponseItem ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__GetRecordingJobsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingJobsResponseItem 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, "tt:GetRecordingJobsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingJobsResponseItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__GetRecordingJobsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingJobsResponseItem 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, "tt:GetRecordingJobsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingJobsResponseItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__GetRecordingJobsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingJobsResponseItem 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, "tt:GetRecordingJobsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingJobsResponseItem ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__GetRecordingJobsResponseItem * SOAP_FMAC4 soap_get_tt__GetRecordingJobsResponseItem(struct soap*, tt__GetRecordingJobsResponseItem *, const char*, const char*); - -inline int soap_read_tt__GetRecordingJobsResponseItem(struct soap *soap, tt__GetRecordingJobsResponseItem *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__GetRecordingJobsResponseItem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__GetRecordingJobsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingJobsResponseItem *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__GetRecordingJobsResponseItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__GetRecordingJobsResponseItem(struct soap *soap, tt__GetRecordingJobsResponseItem *p) -{ - if (::soap_read_tt__GetRecordingJobsResponseItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobStateTrack_DEFINED -#define SOAP_TYPE_tt__RecordingJobStateTrack_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateTrack(struct soap*, const char*, int, const tt__RecordingJobStateTrack *, const char*); -SOAP_FMAC3 tt__RecordingJobStateTrack * SOAP_FMAC4 soap_in_tt__RecordingJobStateTrack(struct soap*, const char*, tt__RecordingJobStateTrack *, const char*); -SOAP_FMAC1 tt__RecordingJobStateTrack * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateTrack(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobStateTrack * soap_new_tt__RecordingJobStateTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobStateTrack(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobStateTrack * soap_new_req_tt__RecordingJobStateTrack( - struct soap *soap, - const std::string& SourceTag, - const std::string& Destination, - const std::string& State) -{ - tt__RecordingJobStateTrack *_p = ::soap_new_tt__RecordingJobStateTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateTrack::SourceTag = SourceTag; - _p->tt__RecordingJobStateTrack::Destination = Destination; - _p->tt__RecordingJobStateTrack::State = State; - } - return _p; -} - -inline tt__RecordingJobStateTrack * soap_new_set_tt__RecordingJobStateTrack( - struct soap *soap, - const std::string& SourceTag, - const std::string& Destination, - std::string *Error, - const std::string& State, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingJobStateTrack *_p = ::soap_new_tt__RecordingJobStateTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateTrack::SourceTag = SourceTag; - _p->tt__RecordingJobStateTrack::Destination = Destination; - _p->tt__RecordingJobStateTrack::Error = Error; - _p->tt__RecordingJobStateTrack::State = State; - _p->tt__RecordingJobStateTrack::__any = __any; - _p->tt__RecordingJobStateTrack::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingJobStateTrack(struct soap *soap, tt__RecordingJobStateTrack const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobStateTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTrack ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobStateTrack(struct soap *soap, const char *URL, tt__RecordingJobStateTrack 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, "tt:RecordingJobStateTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobStateTrack(struct soap *soap, const char *URL, tt__RecordingJobStateTrack 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, "tt:RecordingJobStateTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobStateTrack(struct soap *soap, const char *URL, tt__RecordingJobStateTrack 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, "tt:RecordingJobStateTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTrack ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobStateTrack * SOAP_FMAC4 soap_get_tt__RecordingJobStateTrack(struct soap*, tt__RecordingJobStateTrack *, const char*, const char*); - -inline int soap_read_tt__RecordingJobStateTrack(struct soap *soap, tt__RecordingJobStateTrack *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobStateTrack(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobStateTrack(struct soap *soap, const char *URL, tt__RecordingJobStateTrack *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobStateTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobStateTrack(struct soap *soap, tt__RecordingJobStateTrack *p) -{ - if (::soap_read_tt__RecordingJobStateTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobStateTracks_DEFINED -#define SOAP_TYPE_tt__RecordingJobStateTracks_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateTracks(struct soap*, const char*, int, const tt__RecordingJobStateTracks *, const char*); -SOAP_FMAC3 tt__RecordingJobStateTracks * SOAP_FMAC4 soap_in_tt__RecordingJobStateTracks(struct soap*, const char*, tt__RecordingJobStateTracks *, const char*); -SOAP_FMAC1 tt__RecordingJobStateTracks * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateTracks(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobStateTracks * soap_new_tt__RecordingJobStateTracks(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobStateTracks(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobStateTracks * soap_new_req_tt__RecordingJobStateTracks( - struct soap *soap) -{ - tt__RecordingJobStateTracks *_p = ::soap_new_tt__RecordingJobStateTracks(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RecordingJobStateTracks * soap_new_set_tt__RecordingJobStateTracks( - struct soap *soap, - const std::vector & Track, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingJobStateTracks *_p = ::soap_new_tt__RecordingJobStateTracks(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateTracks::Track = Track; - _p->tt__RecordingJobStateTracks::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingJobStateTracks(struct soap *soap, tt__RecordingJobStateTracks const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobStateTracks", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTracks ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobStateTracks(struct soap *soap, const char *URL, tt__RecordingJobStateTracks 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, "tt:RecordingJobStateTracks", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTracks ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobStateTracks(struct soap *soap, const char *URL, tt__RecordingJobStateTracks 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, "tt:RecordingJobStateTracks", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTracks ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobStateTracks(struct soap *soap, const char *URL, tt__RecordingJobStateTracks 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, "tt:RecordingJobStateTracks", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateTracks ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobStateTracks * SOAP_FMAC4 soap_get_tt__RecordingJobStateTracks(struct soap*, tt__RecordingJobStateTracks *, const char*, const char*); - -inline int soap_read_tt__RecordingJobStateTracks(struct soap *soap, tt__RecordingJobStateTracks *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobStateTracks(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobStateTracks(struct soap *soap, const char *URL, tt__RecordingJobStateTracks *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobStateTracks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobStateTracks(struct soap *soap, tt__RecordingJobStateTracks *p) -{ - if (::soap_read_tt__RecordingJobStateTracks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobStateSource_DEFINED -#define SOAP_TYPE_tt__RecordingJobStateSource_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateSource(struct soap*, const char*, int, const tt__RecordingJobStateSource *, const char*); -SOAP_FMAC3 tt__RecordingJobStateSource * SOAP_FMAC4 soap_in_tt__RecordingJobStateSource(struct soap*, const char*, tt__RecordingJobStateSource *, const char*); -SOAP_FMAC1 tt__RecordingJobStateSource * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateSource(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobStateSource * soap_new_tt__RecordingJobStateSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobStateSource(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobStateSource * soap_new_req_tt__RecordingJobStateSource( - struct soap *soap, - tt__SourceReference *SourceToken, - const std::string& State, - tt__RecordingJobStateTracks *Tracks) -{ - tt__RecordingJobStateSource *_p = ::soap_new_tt__RecordingJobStateSource(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateSource::SourceToken = SourceToken; - _p->tt__RecordingJobStateSource::State = State; - _p->tt__RecordingJobStateSource::Tracks = Tracks; - } - return _p; -} - -inline tt__RecordingJobStateSource * soap_new_set_tt__RecordingJobStateSource( - struct soap *soap, - tt__SourceReference *SourceToken, - const std::string& State, - tt__RecordingJobStateTracks *Tracks, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingJobStateSource *_p = ::soap_new_tt__RecordingJobStateSource(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateSource::SourceToken = SourceToken; - _p->tt__RecordingJobStateSource::State = State; - _p->tt__RecordingJobStateSource::Tracks = Tracks; - _p->tt__RecordingJobStateSource::__any = __any; - _p->tt__RecordingJobStateSource::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingJobStateSource(struct soap *soap, tt__RecordingJobStateSource const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobStateSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateSource ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobStateSource(struct soap *soap, const char *URL, tt__RecordingJobStateSource 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, "tt:RecordingJobStateSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobStateSource(struct soap *soap, const char *URL, tt__RecordingJobStateSource 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, "tt:RecordingJobStateSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobStateSource(struct soap *soap, const char *URL, tt__RecordingJobStateSource 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, "tt:RecordingJobStateSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateSource ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobStateSource * SOAP_FMAC4 soap_get_tt__RecordingJobStateSource(struct soap*, tt__RecordingJobStateSource *, const char*, const char*); - -inline int soap_read_tt__RecordingJobStateSource(struct soap *soap, tt__RecordingJobStateSource *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobStateSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobStateSource(struct soap *soap, const char *URL, tt__RecordingJobStateSource *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobStateSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobStateSource(struct soap *soap, tt__RecordingJobStateSource *p) -{ - if (::soap_read_tt__RecordingJobStateSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobStateInformationExtension_DEFINED -#define SOAP_TYPE_tt__RecordingJobStateInformationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateInformationExtension(struct soap*, const char*, int, const tt__RecordingJobStateInformationExtension *, const char*); -SOAP_FMAC3 tt__RecordingJobStateInformationExtension * SOAP_FMAC4 soap_in_tt__RecordingJobStateInformationExtension(struct soap*, const char*, tt__RecordingJobStateInformationExtension *, const char*); -SOAP_FMAC1 tt__RecordingJobStateInformationExtension * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateInformationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobStateInformationExtension * soap_new_tt__RecordingJobStateInformationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobStateInformationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobStateInformationExtension * soap_new_req_tt__RecordingJobStateInformationExtension( - struct soap *soap) -{ - tt__RecordingJobStateInformationExtension *_p = ::soap_new_tt__RecordingJobStateInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RecordingJobStateInformationExtension * soap_new_set_tt__RecordingJobStateInformationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__RecordingJobStateInformationExtension *_p = ::soap_new_tt__RecordingJobStateInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateInformationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__RecordingJobStateInformationExtension(struct soap *soap, tt__RecordingJobStateInformationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobStateInformationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobStateInformationExtension(struct soap *soap, const char *URL, tt__RecordingJobStateInformationExtension 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, "tt:RecordingJobStateInformationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobStateInformationExtension(struct soap *soap, const char *URL, tt__RecordingJobStateInformationExtension 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, "tt:RecordingJobStateInformationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobStateInformationExtension(struct soap *soap, const char *URL, tt__RecordingJobStateInformationExtension 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, "tt:RecordingJobStateInformationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobStateInformationExtension * SOAP_FMAC4 soap_get_tt__RecordingJobStateInformationExtension(struct soap*, tt__RecordingJobStateInformationExtension *, const char*, const char*); - -inline int soap_read_tt__RecordingJobStateInformationExtension(struct soap *soap, tt__RecordingJobStateInformationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobStateInformationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobStateInformationExtension(struct soap *soap, const char *URL, tt__RecordingJobStateInformationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobStateInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobStateInformationExtension(struct soap *soap, tt__RecordingJobStateInformationExtension *p) -{ - if (::soap_read_tt__RecordingJobStateInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobStateInformation_DEFINED -#define SOAP_TYPE_tt__RecordingJobStateInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobStateInformation(struct soap*, const char*, int, const tt__RecordingJobStateInformation *, const char*); -SOAP_FMAC3 tt__RecordingJobStateInformation * SOAP_FMAC4 soap_in_tt__RecordingJobStateInformation(struct soap*, const char*, tt__RecordingJobStateInformation *, const char*); -SOAP_FMAC1 tt__RecordingJobStateInformation * SOAP_FMAC2 soap_instantiate_tt__RecordingJobStateInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobStateInformation * soap_new_tt__RecordingJobStateInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobStateInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobStateInformation * soap_new_req_tt__RecordingJobStateInformation( - struct soap *soap, - const std::string& RecordingToken, - const std::string& State) -{ - tt__RecordingJobStateInformation *_p = ::soap_new_tt__RecordingJobStateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateInformation::RecordingToken = RecordingToken; - _p->tt__RecordingJobStateInformation::State = State; - } - return _p; -} - -inline tt__RecordingJobStateInformation * soap_new_set_tt__RecordingJobStateInformation( - struct soap *soap, - const std::string& RecordingToken, - const std::string& State, - const std::vector & Sources, - tt__RecordingJobStateInformationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingJobStateInformation *_p = ::soap_new_tt__RecordingJobStateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobStateInformation::RecordingToken = RecordingToken; - _p->tt__RecordingJobStateInformation::State = State; - _p->tt__RecordingJobStateInformation::Sources = Sources; - _p->tt__RecordingJobStateInformation::Extension = Extension; - _p->tt__RecordingJobStateInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingJobStateInformation(struct soap *soap, tt__RecordingJobStateInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobStateInformation", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobStateInformation(struct soap *soap, const char *URL, tt__RecordingJobStateInformation 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, "tt:RecordingJobStateInformation", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobStateInformation(struct soap *soap, const char *URL, tt__RecordingJobStateInformation 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, "tt:RecordingJobStateInformation", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobStateInformation(struct soap *soap, const char *URL, tt__RecordingJobStateInformation 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, "tt:RecordingJobStateInformation", p->soap_type() == SOAP_TYPE_tt__RecordingJobStateInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobStateInformation * SOAP_FMAC4 soap_get_tt__RecordingJobStateInformation(struct soap*, tt__RecordingJobStateInformation *, const char*, const char*); - -inline int soap_read_tt__RecordingJobStateInformation(struct soap *soap, tt__RecordingJobStateInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobStateInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobStateInformation(struct soap *soap, const char *URL, tt__RecordingJobStateInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobStateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobStateInformation(struct soap *soap, tt__RecordingJobStateInformation *p) -{ - if (::soap_read_tt__RecordingJobStateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobTrack_DEFINED -#define SOAP_TYPE_tt__RecordingJobTrack_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobTrack(struct soap*, const char*, int, const tt__RecordingJobTrack *, const char*); -SOAP_FMAC3 tt__RecordingJobTrack * SOAP_FMAC4 soap_in_tt__RecordingJobTrack(struct soap*, const char*, tt__RecordingJobTrack *, const char*); -SOAP_FMAC1 tt__RecordingJobTrack * SOAP_FMAC2 soap_instantiate_tt__RecordingJobTrack(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobTrack * soap_new_tt__RecordingJobTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobTrack(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobTrack * soap_new_req_tt__RecordingJobTrack( - struct soap *soap, - const std::string& SourceTag, - const std::string& Destination) -{ - tt__RecordingJobTrack *_p = ::soap_new_tt__RecordingJobTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobTrack::SourceTag = SourceTag; - _p->tt__RecordingJobTrack::Destination = Destination; - } - return _p; -} - -inline tt__RecordingJobTrack * soap_new_set_tt__RecordingJobTrack( - struct soap *soap, - const std::string& SourceTag, - const std::string& Destination, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingJobTrack *_p = ::soap_new_tt__RecordingJobTrack(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobTrack::SourceTag = SourceTag; - _p->tt__RecordingJobTrack::Destination = Destination; - _p->tt__RecordingJobTrack::__any = __any; - _p->tt__RecordingJobTrack::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingJobTrack(struct soap *soap, tt__RecordingJobTrack const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobTrack ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobTrack(struct soap *soap, const char *URL, tt__RecordingJobTrack 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, "tt:RecordingJobTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobTrack(struct soap *soap, const char *URL, tt__RecordingJobTrack 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, "tt:RecordingJobTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobTrack ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobTrack(struct soap *soap, const char *URL, tt__RecordingJobTrack 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, "tt:RecordingJobTrack", p->soap_type() == SOAP_TYPE_tt__RecordingJobTrack ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobTrack * SOAP_FMAC4 soap_get_tt__RecordingJobTrack(struct soap*, tt__RecordingJobTrack *, const char*, const char*); - -inline int soap_read_tt__RecordingJobTrack(struct soap *soap, tt__RecordingJobTrack *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobTrack(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobTrack(struct soap *soap, const char *URL, tt__RecordingJobTrack *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobTrack(struct soap *soap, tt__RecordingJobTrack *p) -{ - if (::soap_read_tt__RecordingJobTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobSourceExtension_DEFINED -#define SOAP_TYPE_tt__RecordingJobSourceExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobSourceExtension(struct soap*, const char*, int, const tt__RecordingJobSourceExtension *, const char*); -SOAP_FMAC3 tt__RecordingJobSourceExtension * SOAP_FMAC4 soap_in_tt__RecordingJobSourceExtension(struct soap*, const char*, tt__RecordingJobSourceExtension *, const char*); -SOAP_FMAC1 tt__RecordingJobSourceExtension * SOAP_FMAC2 soap_instantiate_tt__RecordingJobSourceExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobSourceExtension * soap_new_tt__RecordingJobSourceExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobSourceExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobSourceExtension * soap_new_req_tt__RecordingJobSourceExtension( - struct soap *soap) -{ - tt__RecordingJobSourceExtension *_p = ::soap_new_tt__RecordingJobSourceExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RecordingJobSourceExtension * soap_new_set_tt__RecordingJobSourceExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__RecordingJobSourceExtension *_p = ::soap_new_tt__RecordingJobSourceExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobSourceExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__RecordingJobSourceExtension(struct soap *soap, tt__RecordingJobSourceExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobSourceExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobSourceExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobSourceExtension(struct soap *soap, const char *URL, tt__RecordingJobSourceExtension 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, "tt:RecordingJobSourceExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobSourceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobSourceExtension(struct soap *soap, const char *URL, tt__RecordingJobSourceExtension 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, "tt:RecordingJobSourceExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobSourceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobSourceExtension(struct soap *soap, const char *URL, tt__RecordingJobSourceExtension 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, "tt:RecordingJobSourceExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobSourceExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobSourceExtension * SOAP_FMAC4 soap_get_tt__RecordingJobSourceExtension(struct soap*, tt__RecordingJobSourceExtension *, const char*, const char*); - -inline int soap_read_tt__RecordingJobSourceExtension(struct soap *soap, tt__RecordingJobSourceExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobSourceExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobSourceExtension(struct soap *soap, const char *URL, tt__RecordingJobSourceExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobSourceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobSourceExtension(struct soap *soap, tt__RecordingJobSourceExtension *p) -{ - if (::soap_read_tt__RecordingJobSourceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobSource_DEFINED -#define SOAP_TYPE_tt__RecordingJobSource_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobSource(struct soap*, const char*, int, const tt__RecordingJobSource *, const char*); -SOAP_FMAC3 tt__RecordingJobSource * SOAP_FMAC4 soap_in_tt__RecordingJobSource(struct soap*, const char*, tt__RecordingJobSource *, const char*); -SOAP_FMAC1 tt__RecordingJobSource * SOAP_FMAC2 soap_instantiate_tt__RecordingJobSource(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobSource * soap_new_tt__RecordingJobSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobSource(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobSource * soap_new_req_tt__RecordingJobSource( - struct soap *soap) -{ - tt__RecordingJobSource *_p = ::soap_new_tt__RecordingJobSource(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RecordingJobSource * soap_new_set_tt__RecordingJobSource( - struct soap *soap, - tt__SourceReference *SourceToken, - bool *AutoCreateReceiver, - const std::vector & Tracks, - tt__RecordingJobSourceExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingJobSource *_p = ::soap_new_tt__RecordingJobSource(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobSource::SourceToken = SourceToken; - _p->tt__RecordingJobSource::AutoCreateReceiver = AutoCreateReceiver; - _p->tt__RecordingJobSource::Tracks = Tracks; - _p->tt__RecordingJobSource::Extension = Extension; - _p->tt__RecordingJobSource::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingJobSource(struct soap *soap, tt__RecordingJobSource const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobSource ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobSource(struct soap *soap, const char *URL, tt__RecordingJobSource 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, "tt:RecordingJobSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobSource(struct soap *soap, const char *URL, tt__RecordingJobSource 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, "tt:RecordingJobSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobSource(struct soap *soap, const char *URL, tt__RecordingJobSource 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, "tt:RecordingJobSource", p->soap_type() == SOAP_TYPE_tt__RecordingJobSource ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobSource * SOAP_FMAC4 soap_get_tt__RecordingJobSource(struct soap*, tt__RecordingJobSource *, const char*, const char*); - -inline int soap_read_tt__RecordingJobSource(struct soap *soap, tt__RecordingJobSource *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobSource(struct soap *soap, const char *URL, tt__RecordingJobSource *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobSource(struct soap *soap, tt__RecordingJobSource *p) -{ - if (::soap_read_tt__RecordingJobSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__RecordingJobConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobConfigurationExtension(struct soap*, const char*, int, const tt__RecordingJobConfigurationExtension *, const char*); -SOAP_FMAC3 tt__RecordingJobConfigurationExtension * SOAP_FMAC4 soap_in_tt__RecordingJobConfigurationExtension(struct soap*, const char*, tt__RecordingJobConfigurationExtension *, const char*); -SOAP_FMAC1 tt__RecordingJobConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__RecordingJobConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobConfigurationExtension * soap_new_tt__RecordingJobConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobConfigurationExtension * soap_new_req_tt__RecordingJobConfigurationExtension( - struct soap *soap) -{ - tt__RecordingJobConfigurationExtension *_p = ::soap_new_tt__RecordingJobConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RecordingJobConfigurationExtension * soap_new_set_tt__RecordingJobConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__RecordingJobConfigurationExtension *_p = ::soap_new_tt__RecordingJobConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__RecordingJobConfigurationExtension(struct soap *soap, tt__RecordingJobConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobConfigurationExtension(struct soap *soap, const char *URL, tt__RecordingJobConfigurationExtension 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, "tt:RecordingJobConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobConfigurationExtension(struct soap *soap, const char *URL, tt__RecordingJobConfigurationExtension 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, "tt:RecordingJobConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobConfigurationExtension(struct soap *soap, const char *URL, tt__RecordingJobConfigurationExtension 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, "tt:RecordingJobConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobConfigurationExtension * SOAP_FMAC4 soap_get_tt__RecordingJobConfigurationExtension(struct soap*, tt__RecordingJobConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__RecordingJobConfigurationExtension(struct soap *soap, tt__RecordingJobConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobConfigurationExtension(struct soap *soap, const char *URL, tt__RecordingJobConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobConfigurationExtension(struct soap *soap, tt__RecordingJobConfigurationExtension *p) -{ - if (::soap_read_tt__RecordingJobConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingJobConfiguration_DEFINED -#define SOAP_TYPE_tt__RecordingJobConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingJobConfiguration(struct soap*, const char*, int, const tt__RecordingJobConfiguration *, const char*); -SOAP_FMAC3 tt__RecordingJobConfiguration * SOAP_FMAC4 soap_in_tt__RecordingJobConfiguration(struct soap*, const char*, tt__RecordingJobConfiguration *, const char*); -SOAP_FMAC1 tt__RecordingJobConfiguration * SOAP_FMAC2 soap_instantiate_tt__RecordingJobConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingJobConfiguration * soap_new_tt__RecordingJobConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingJobConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingJobConfiguration * soap_new_req_tt__RecordingJobConfiguration( - struct soap *soap, - const std::string& RecordingToken, - const std::string& Mode, - int Priority) -{ - tt__RecordingJobConfiguration *_p = ::soap_new_tt__RecordingJobConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobConfiguration::RecordingToken = RecordingToken; - _p->tt__RecordingJobConfiguration::Mode = Mode; - _p->tt__RecordingJobConfiguration::Priority = Priority; - } - return _p; -} - -inline tt__RecordingJobConfiguration * soap_new_set_tt__RecordingJobConfiguration( - struct soap *soap, - const std::string& RecordingToken, - const std::string& Mode, - int Priority, - const std::vector & Source, - tt__RecordingJobConfigurationExtension *Extension, - std::string *ScheduleToken, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingJobConfiguration *_p = ::soap_new_tt__RecordingJobConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingJobConfiguration::RecordingToken = RecordingToken; - _p->tt__RecordingJobConfiguration::Mode = Mode; - _p->tt__RecordingJobConfiguration::Priority = Priority; - _p->tt__RecordingJobConfiguration::Source = Source; - _p->tt__RecordingJobConfiguration::Extension = Extension; - _p->tt__RecordingJobConfiguration::ScheduleToken = ScheduleToken; - _p->tt__RecordingJobConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingJobConfiguration(struct soap *soap, tt__RecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingJobConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingJobConfiguration(struct soap *soap, const char *URL, tt__RecordingJobConfiguration 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, "tt:RecordingJobConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingJobConfiguration(struct soap *soap, const char *URL, tt__RecordingJobConfiguration 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, "tt:RecordingJobConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingJobConfiguration(struct soap *soap, const char *URL, tt__RecordingJobConfiguration 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, "tt:RecordingJobConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingJobConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingJobConfiguration * SOAP_FMAC4 soap_get_tt__RecordingJobConfiguration(struct soap*, tt__RecordingJobConfiguration *, const char*, const char*); - -inline int soap_read_tt__RecordingJobConfiguration(struct soap *soap, tt__RecordingJobConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingJobConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingJobConfiguration(struct soap *soap, const char *URL, tt__RecordingJobConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingJobConfiguration(struct soap *soap, tt__RecordingJobConfiguration *p) -{ - if (::soap_read_tt__RecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__GetTracksResponseItem_DEFINED -#define SOAP_TYPE_tt__GetTracksResponseItem_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetTracksResponseItem(struct soap*, const char*, int, const tt__GetTracksResponseItem *, const char*); -SOAP_FMAC3 tt__GetTracksResponseItem * SOAP_FMAC4 soap_in_tt__GetTracksResponseItem(struct soap*, const char*, tt__GetTracksResponseItem *, const char*); -SOAP_FMAC1 tt__GetTracksResponseItem * SOAP_FMAC2 soap_instantiate_tt__GetTracksResponseItem(struct soap*, int, const char*, const char*, size_t*); - -inline tt__GetTracksResponseItem * soap_new_tt__GetTracksResponseItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__GetTracksResponseItem(soap, n, NULL, NULL, NULL); -} - -inline tt__GetTracksResponseItem * soap_new_req_tt__GetTracksResponseItem( - struct soap *soap, - const std::string& TrackToken, - tt__TrackConfiguration *Configuration) -{ - tt__GetTracksResponseItem *_p = ::soap_new_tt__GetTracksResponseItem(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GetTracksResponseItem::TrackToken = TrackToken; - _p->tt__GetTracksResponseItem::Configuration = Configuration; - } - return _p; -} - -inline tt__GetTracksResponseItem * soap_new_set_tt__GetTracksResponseItem( - struct soap *soap, - const std::string& TrackToken, - tt__TrackConfiguration *Configuration, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__GetTracksResponseItem *_p = ::soap_new_tt__GetTracksResponseItem(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GetTracksResponseItem::TrackToken = TrackToken; - _p->tt__GetTracksResponseItem::Configuration = Configuration; - _p->tt__GetTracksResponseItem::__any = __any; - _p->tt__GetTracksResponseItem::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__GetTracksResponseItem(struct soap *soap, tt__GetTracksResponseItem const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:GetTracksResponseItem", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseItem ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__GetTracksResponseItem(struct soap *soap, const char *URL, tt__GetTracksResponseItem 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, "tt:GetTracksResponseItem", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__GetTracksResponseItem(struct soap *soap, const char *URL, tt__GetTracksResponseItem 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, "tt:GetTracksResponseItem", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__GetTracksResponseItem(struct soap *soap, const char *URL, tt__GetTracksResponseItem 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, "tt:GetTracksResponseItem", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseItem ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__GetTracksResponseItem * SOAP_FMAC4 soap_get_tt__GetTracksResponseItem(struct soap*, tt__GetTracksResponseItem *, const char*, const char*); - -inline int soap_read_tt__GetTracksResponseItem(struct soap *soap, tt__GetTracksResponseItem *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__GetTracksResponseItem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__GetTracksResponseItem(struct soap *soap, const char *URL, tt__GetTracksResponseItem *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__GetTracksResponseItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__GetTracksResponseItem(struct soap *soap, tt__GetTracksResponseItem *p) -{ - if (::soap_read_tt__GetTracksResponseItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__GetTracksResponseList_DEFINED -#define SOAP_TYPE_tt__GetTracksResponseList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetTracksResponseList(struct soap*, const char*, int, const tt__GetTracksResponseList *, const char*); -SOAP_FMAC3 tt__GetTracksResponseList * SOAP_FMAC4 soap_in_tt__GetTracksResponseList(struct soap*, const char*, tt__GetTracksResponseList *, const char*); -SOAP_FMAC1 tt__GetTracksResponseList * SOAP_FMAC2 soap_instantiate_tt__GetTracksResponseList(struct soap*, int, const char*, const char*, size_t*); - -inline tt__GetTracksResponseList * soap_new_tt__GetTracksResponseList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__GetTracksResponseList(soap, n, NULL, NULL, NULL); -} - -inline tt__GetTracksResponseList * soap_new_req_tt__GetTracksResponseList( - struct soap *soap) -{ - tt__GetTracksResponseList *_p = ::soap_new_tt__GetTracksResponseList(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__GetTracksResponseList * soap_new_set_tt__GetTracksResponseList( - struct soap *soap, - const std::vector & Track, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__GetTracksResponseList *_p = ::soap_new_tt__GetTracksResponseList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GetTracksResponseList::Track = Track; - _p->tt__GetTracksResponseList::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__GetTracksResponseList(struct soap *soap, tt__GetTracksResponseList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:GetTracksResponseList", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__GetTracksResponseList(struct soap *soap, const char *URL, tt__GetTracksResponseList 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, "tt:GetTracksResponseList", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__GetTracksResponseList(struct soap *soap, const char *URL, tt__GetTracksResponseList 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, "tt:GetTracksResponseList", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__GetTracksResponseList(struct soap *soap, const char *URL, tt__GetTracksResponseList 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, "tt:GetTracksResponseList", p->soap_type() == SOAP_TYPE_tt__GetTracksResponseList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__GetTracksResponseList * SOAP_FMAC4 soap_get_tt__GetTracksResponseList(struct soap*, tt__GetTracksResponseList *, const char*, const char*); - -inline int soap_read_tt__GetTracksResponseList(struct soap *soap, tt__GetTracksResponseList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__GetTracksResponseList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__GetTracksResponseList(struct soap *soap, const char *URL, tt__GetTracksResponseList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__GetTracksResponseList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__GetTracksResponseList(struct soap *soap, tt__GetTracksResponseList *p) -{ - if (::soap_read_tt__GetTracksResponseList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__GetRecordingsResponseItem_DEFINED -#define SOAP_TYPE_tt__GetRecordingsResponseItem_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GetRecordingsResponseItem(struct soap*, const char*, int, const tt__GetRecordingsResponseItem *, const char*); -SOAP_FMAC3 tt__GetRecordingsResponseItem * SOAP_FMAC4 soap_in_tt__GetRecordingsResponseItem(struct soap*, const char*, tt__GetRecordingsResponseItem *, const char*); -SOAP_FMAC1 tt__GetRecordingsResponseItem * SOAP_FMAC2 soap_instantiate_tt__GetRecordingsResponseItem(struct soap*, int, const char*, const char*, size_t*); - -inline tt__GetRecordingsResponseItem * soap_new_tt__GetRecordingsResponseItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__GetRecordingsResponseItem(soap, n, NULL, NULL, NULL); -} - -inline tt__GetRecordingsResponseItem * soap_new_req_tt__GetRecordingsResponseItem( - struct soap *soap, - const std::string& RecordingToken, - tt__RecordingConfiguration *Configuration, - tt__GetTracksResponseList *Tracks) -{ - tt__GetRecordingsResponseItem *_p = ::soap_new_tt__GetRecordingsResponseItem(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GetRecordingsResponseItem::RecordingToken = RecordingToken; - _p->tt__GetRecordingsResponseItem::Configuration = Configuration; - _p->tt__GetRecordingsResponseItem::Tracks = Tracks; - } - return _p; -} - -inline tt__GetRecordingsResponseItem * soap_new_set_tt__GetRecordingsResponseItem( - struct soap *soap, - const std::string& RecordingToken, - tt__RecordingConfiguration *Configuration, - tt__GetTracksResponseList *Tracks, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__GetRecordingsResponseItem *_p = ::soap_new_tt__GetRecordingsResponseItem(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GetRecordingsResponseItem::RecordingToken = RecordingToken; - _p->tt__GetRecordingsResponseItem::Configuration = Configuration; - _p->tt__GetRecordingsResponseItem::Tracks = Tracks; - _p->tt__GetRecordingsResponseItem::__any = __any; - _p->tt__GetRecordingsResponseItem::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__GetRecordingsResponseItem(struct soap *soap, tt__GetRecordingsResponseItem const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:GetRecordingsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingsResponseItem ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__GetRecordingsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingsResponseItem 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, "tt:GetRecordingsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingsResponseItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__GetRecordingsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingsResponseItem 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, "tt:GetRecordingsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingsResponseItem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__GetRecordingsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingsResponseItem 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, "tt:GetRecordingsResponseItem", p->soap_type() == SOAP_TYPE_tt__GetRecordingsResponseItem ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__GetRecordingsResponseItem * SOAP_FMAC4 soap_get_tt__GetRecordingsResponseItem(struct soap*, tt__GetRecordingsResponseItem *, const char*, const char*); - -inline int soap_read_tt__GetRecordingsResponseItem(struct soap *soap, tt__GetRecordingsResponseItem *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__GetRecordingsResponseItem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__GetRecordingsResponseItem(struct soap *soap, const char *URL, tt__GetRecordingsResponseItem *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__GetRecordingsResponseItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__GetRecordingsResponseItem(struct soap *soap, tt__GetRecordingsResponseItem *p) -{ - if (::soap_read_tt__GetRecordingsResponseItem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TrackConfiguration_DEFINED -#define SOAP_TYPE_tt__TrackConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackConfiguration(struct soap*, const char*, int, const tt__TrackConfiguration *, const char*); -SOAP_FMAC3 tt__TrackConfiguration * SOAP_FMAC4 soap_in_tt__TrackConfiguration(struct soap*, const char*, tt__TrackConfiguration *, const char*); -SOAP_FMAC1 tt__TrackConfiguration * SOAP_FMAC2 soap_instantiate_tt__TrackConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TrackConfiguration * soap_new_tt__TrackConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TrackConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__TrackConfiguration * soap_new_req_tt__TrackConfiguration( - struct soap *soap, - enum tt__TrackType TrackType, - const std::string& Description) -{ - tt__TrackConfiguration *_p = ::soap_new_tt__TrackConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackConfiguration::TrackType = TrackType; - _p->tt__TrackConfiguration::Description = Description; - } - return _p; -} - -inline tt__TrackConfiguration * soap_new_set_tt__TrackConfiguration( - struct soap *soap, - enum tt__TrackType TrackType, - const std::string& Description, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__TrackConfiguration *_p = ::soap_new_tt__TrackConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackConfiguration::TrackType = TrackType; - _p->tt__TrackConfiguration::Description = Description; - _p->tt__TrackConfiguration::__any = __any; - _p->tt__TrackConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__TrackConfiguration(struct soap *soap, tt__TrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TrackConfiguration", p->soap_type() == SOAP_TYPE_tt__TrackConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TrackConfiguration(struct soap *soap, const char *URL, tt__TrackConfiguration 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, "tt:TrackConfiguration", p->soap_type() == SOAP_TYPE_tt__TrackConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TrackConfiguration(struct soap *soap, const char *URL, tt__TrackConfiguration 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, "tt:TrackConfiguration", p->soap_type() == SOAP_TYPE_tt__TrackConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TrackConfiguration(struct soap *soap, const char *URL, tt__TrackConfiguration 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, "tt:TrackConfiguration", p->soap_type() == SOAP_TYPE_tt__TrackConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TrackConfiguration * SOAP_FMAC4 soap_get_tt__TrackConfiguration(struct soap*, tt__TrackConfiguration *, const char*, const char*); - -inline int soap_read_tt__TrackConfiguration(struct soap *soap, tt__TrackConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TrackConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TrackConfiguration(struct soap *soap, const char *URL, tt__TrackConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TrackConfiguration(struct soap *soap, tt__TrackConfiguration *p) -{ - if (::soap_read_tt__TrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingConfiguration_DEFINED -#define SOAP_TYPE_tt__RecordingConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingConfiguration(struct soap*, const char*, int, const tt__RecordingConfiguration *, const char*); -SOAP_FMAC3 tt__RecordingConfiguration * SOAP_FMAC4 soap_in_tt__RecordingConfiguration(struct soap*, const char*, tt__RecordingConfiguration *, const char*); -SOAP_FMAC1 tt__RecordingConfiguration * SOAP_FMAC2 soap_instantiate_tt__RecordingConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingConfiguration * soap_new_tt__RecordingConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingConfiguration * soap_new_req_tt__RecordingConfiguration( - struct soap *soap, - tt__RecordingSourceInformation *Source, - const std::string& Content, - const std::string& MaximumRetentionTime) -{ - tt__RecordingConfiguration *_p = ::soap_new_tt__RecordingConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingConfiguration::Source = Source; - _p->tt__RecordingConfiguration::Content = Content; - _p->tt__RecordingConfiguration::MaximumRetentionTime = MaximumRetentionTime; - } - return _p; -} - -inline tt__RecordingConfiguration * soap_new_set_tt__RecordingConfiguration( - struct soap *soap, - tt__RecordingSourceInformation *Source, - const std::string& Content, - const std::string& MaximumRetentionTime, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingConfiguration *_p = ::soap_new_tt__RecordingConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingConfiguration::Source = Source; - _p->tt__RecordingConfiguration::Content = Content; - _p->tt__RecordingConfiguration::MaximumRetentionTime = MaximumRetentionTime; - _p->tt__RecordingConfiguration::__any = __any; - _p->tt__RecordingConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingConfiguration(struct soap *soap, tt__RecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingConfiguration(struct soap *soap, const char *URL, tt__RecordingConfiguration 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, "tt:RecordingConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingConfiguration(struct soap *soap, const char *URL, tt__RecordingConfiguration 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, "tt:RecordingConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingConfiguration(struct soap *soap, const char *URL, tt__RecordingConfiguration 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, "tt:RecordingConfiguration", p->soap_type() == SOAP_TYPE_tt__RecordingConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingConfiguration * SOAP_FMAC4 soap_get_tt__RecordingConfiguration(struct soap*, tt__RecordingConfiguration *, const char*, const char*); - -inline int soap_read_tt__RecordingConfiguration(struct soap *soap, tt__RecordingConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingConfiguration(struct soap *soap, const char *URL, tt__RecordingConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingConfiguration(struct soap *soap, tt__RecordingConfiguration *p) -{ - if (::soap_read_tt__RecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataAttributes_DEFINED -#define SOAP_TYPE_tt__MetadataAttributes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataAttributes(struct soap*, const char*, int, const tt__MetadataAttributes *, const char*); -SOAP_FMAC3 tt__MetadataAttributes * SOAP_FMAC4 soap_in_tt__MetadataAttributes(struct soap*, const char*, tt__MetadataAttributes *, const char*); -SOAP_FMAC1 tt__MetadataAttributes * SOAP_FMAC2 soap_instantiate_tt__MetadataAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataAttributes * soap_new_tt__MetadataAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataAttributes(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataAttributes * soap_new_req_tt__MetadataAttributes( - struct soap *soap, - bool CanContainPTZ, - bool CanContainAnalytics, - bool CanContainNotifications) -{ - tt__MetadataAttributes *_p = ::soap_new_tt__MetadataAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataAttributes::CanContainPTZ = CanContainPTZ; - _p->tt__MetadataAttributes::CanContainAnalytics = CanContainAnalytics; - _p->tt__MetadataAttributes::CanContainNotifications = CanContainNotifications; - } - return _p; -} - -inline tt__MetadataAttributes * soap_new_set_tt__MetadataAttributes( - struct soap *soap, - bool CanContainPTZ, - bool CanContainAnalytics, - bool CanContainNotifications, - const std::vector & __any, - std::string *PtzSpaces, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MetadataAttributes *_p = ::soap_new_tt__MetadataAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataAttributes::CanContainPTZ = CanContainPTZ; - _p->tt__MetadataAttributes::CanContainAnalytics = CanContainAnalytics; - _p->tt__MetadataAttributes::CanContainNotifications = CanContainNotifications; - _p->tt__MetadataAttributes::__any = __any; - _p->tt__MetadataAttributes::PtzSpaces = PtzSpaces; - _p->tt__MetadataAttributes::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MetadataAttributes(struct soap *soap, tt__MetadataAttributes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataAttributes", p->soap_type() == SOAP_TYPE_tt__MetadataAttributes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataAttributes(struct soap *soap, const char *URL, tt__MetadataAttributes 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, "tt:MetadataAttributes", p->soap_type() == SOAP_TYPE_tt__MetadataAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataAttributes(struct soap *soap, const char *URL, tt__MetadataAttributes 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, "tt:MetadataAttributes", p->soap_type() == SOAP_TYPE_tt__MetadataAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataAttributes(struct soap *soap, const char *URL, tt__MetadataAttributes 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, "tt:MetadataAttributes", p->soap_type() == SOAP_TYPE_tt__MetadataAttributes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataAttributes * SOAP_FMAC4 soap_get_tt__MetadataAttributes(struct soap*, tt__MetadataAttributes *, const char*, const char*); - -inline int soap_read_tt__MetadataAttributes(struct soap *soap, tt__MetadataAttributes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataAttributes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataAttributes(struct soap *soap, const char *URL, tt__MetadataAttributes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataAttributes(struct soap *soap, tt__MetadataAttributes *p) -{ - if (::soap_read_tt__MetadataAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioAttributes_DEFINED -#define SOAP_TYPE_tt__AudioAttributes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioAttributes(struct soap*, const char*, int, const tt__AudioAttributes *, const char*); -SOAP_FMAC3 tt__AudioAttributes * SOAP_FMAC4 soap_in_tt__AudioAttributes(struct soap*, const char*, tt__AudioAttributes *, const char*); -SOAP_FMAC1 tt__AudioAttributes * SOAP_FMAC2 soap_instantiate_tt__AudioAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioAttributes * soap_new_tt__AudioAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioAttributes(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioAttributes * soap_new_req_tt__AudioAttributes( - struct soap *soap, - const std::string& Encoding, - int Samplerate) -{ - tt__AudioAttributes *_p = ::soap_new_tt__AudioAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioAttributes::Encoding = Encoding; - _p->tt__AudioAttributes::Samplerate = Samplerate; - } - return _p; -} - -inline tt__AudioAttributes * soap_new_set_tt__AudioAttributes( - struct soap *soap, - int *Bitrate, - const std::string& Encoding, - int Samplerate, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioAttributes *_p = ::soap_new_tt__AudioAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioAttributes::Bitrate = Bitrate; - _p->tt__AudioAttributes::Encoding = Encoding; - _p->tt__AudioAttributes::Samplerate = Samplerate; - _p->tt__AudioAttributes::__any = __any; - _p->tt__AudioAttributes::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioAttributes(struct soap *soap, tt__AudioAttributes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioAttributes", p->soap_type() == SOAP_TYPE_tt__AudioAttributes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioAttributes(struct soap *soap, const char *URL, tt__AudioAttributes 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, "tt:AudioAttributes", p->soap_type() == SOAP_TYPE_tt__AudioAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioAttributes(struct soap *soap, const char *URL, tt__AudioAttributes 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, "tt:AudioAttributes", p->soap_type() == SOAP_TYPE_tt__AudioAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioAttributes(struct soap *soap, const char *URL, tt__AudioAttributes 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, "tt:AudioAttributes", p->soap_type() == SOAP_TYPE_tt__AudioAttributes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioAttributes * SOAP_FMAC4 soap_get_tt__AudioAttributes(struct soap*, tt__AudioAttributes *, const char*, const char*); - -inline int soap_read_tt__AudioAttributes(struct soap *soap, tt__AudioAttributes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioAttributes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioAttributes(struct soap *soap, const char *URL, tt__AudioAttributes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioAttributes(struct soap *soap, tt__AudioAttributes *p) -{ - if (::soap_read_tt__AudioAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoAttributes_DEFINED -#define SOAP_TYPE_tt__VideoAttributes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoAttributes(struct soap*, const char*, int, const tt__VideoAttributes *, const char*); -SOAP_FMAC3 tt__VideoAttributes * SOAP_FMAC4 soap_in_tt__VideoAttributes(struct soap*, const char*, tt__VideoAttributes *, const char*); -SOAP_FMAC1 tt__VideoAttributes * SOAP_FMAC2 soap_instantiate_tt__VideoAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoAttributes * soap_new_tt__VideoAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoAttributes(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoAttributes * soap_new_req_tt__VideoAttributes( - struct soap *soap, - int Width, - int Height, - const std::string& Encoding, - float Framerate) -{ - tt__VideoAttributes *_p = ::soap_new_tt__VideoAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoAttributes::Width = Width; - _p->tt__VideoAttributes::Height = Height; - _p->tt__VideoAttributes::Encoding = Encoding; - _p->tt__VideoAttributes::Framerate = Framerate; - } - return _p; -} - -inline tt__VideoAttributes * soap_new_set_tt__VideoAttributes( - struct soap *soap, - int *Bitrate, - int Width, - int Height, - const std::string& Encoding, - float Framerate, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoAttributes *_p = ::soap_new_tt__VideoAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoAttributes::Bitrate = Bitrate; - _p->tt__VideoAttributes::Width = Width; - _p->tt__VideoAttributes::Height = Height; - _p->tt__VideoAttributes::Encoding = Encoding; - _p->tt__VideoAttributes::Framerate = Framerate; - _p->tt__VideoAttributes::__any = __any; - _p->tt__VideoAttributes::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoAttributes(struct soap *soap, tt__VideoAttributes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoAttributes", p->soap_type() == SOAP_TYPE_tt__VideoAttributes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoAttributes(struct soap *soap, const char *URL, tt__VideoAttributes 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, "tt:VideoAttributes", p->soap_type() == SOAP_TYPE_tt__VideoAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoAttributes(struct soap *soap, const char *URL, tt__VideoAttributes 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, "tt:VideoAttributes", p->soap_type() == SOAP_TYPE_tt__VideoAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoAttributes(struct soap *soap, const char *URL, tt__VideoAttributes 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, "tt:VideoAttributes", p->soap_type() == SOAP_TYPE_tt__VideoAttributes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoAttributes * SOAP_FMAC4 soap_get_tt__VideoAttributes(struct soap*, tt__VideoAttributes *, const char*, const char*); - -inline int soap_read_tt__VideoAttributes(struct soap *soap, tt__VideoAttributes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoAttributes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoAttributes(struct soap *soap, const char *URL, tt__VideoAttributes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoAttributes(struct soap *soap, tt__VideoAttributes *p) -{ - if (::soap_read_tt__VideoAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TrackAttributesExtension_DEFINED -#define SOAP_TYPE_tt__TrackAttributesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackAttributesExtension(struct soap*, const char*, int, const tt__TrackAttributesExtension *, const char*); -SOAP_FMAC3 tt__TrackAttributesExtension * SOAP_FMAC4 soap_in_tt__TrackAttributesExtension(struct soap*, const char*, tt__TrackAttributesExtension *, const char*); -SOAP_FMAC1 tt__TrackAttributesExtension * SOAP_FMAC2 soap_instantiate_tt__TrackAttributesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TrackAttributesExtension * soap_new_tt__TrackAttributesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TrackAttributesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__TrackAttributesExtension * soap_new_req_tt__TrackAttributesExtension( - struct soap *soap) -{ - tt__TrackAttributesExtension *_p = ::soap_new_tt__TrackAttributesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__TrackAttributesExtension * soap_new_set_tt__TrackAttributesExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__TrackAttributesExtension *_p = ::soap_new_tt__TrackAttributesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackAttributesExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__TrackAttributesExtension(struct soap *soap, tt__TrackAttributesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TrackAttributesExtension", p->soap_type() == SOAP_TYPE_tt__TrackAttributesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TrackAttributesExtension(struct soap *soap, const char *URL, tt__TrackAttributesExtension 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, "tt:TrackAttributesExtension", p->soap_type() == SOAP_TYPE_tt__TrackAttributesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TrackAttributesExtension(struct soap *soap, const char *URL, tt__TrackAttributesExtension 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, "tt:TrackAttributesExtension", p->soap_type() == SOAP_TYPE_tt__TrackAttributesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TrackAttributesExtension(struct soap *soap, const char *URL, tt__TrackAttributesExtension 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, "tt:TrackAttributesExtension", p->soap_type() == SOAP_TYPE_tt__TrackAttributesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TrackAttributesExtension * SOAP_FMAC4 soap_get_tt__TrackAttributesExtension(struct soap*, tt__TrackAttributesExtension *, const char*, const char*); - -inline int soap_read_tt__TrackAttributesExtension(struct soap *soap, tt__TrackAttributesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TrackAttributesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TrackAttributesExtension(struct soap *soap, const char *URL, tt__TrackAttributesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TrackAttributesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TrackAttributesExtension(struct soap *soap, tt__TrackAttributesExtension *p) -{ - if (::soap_read_tt__TrackAttributesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TrackAttributes_DEFINED -#define SOAP_TYPE_tt__TrackAttributes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackAttributes(struct soap*, const char*, int, const tt__TrackAttributes *, const char*); -SOAP_FMAC3 tt__TrackAttributes * SOAP_FMAC4 soap_in_tt__TrackAttributes(struct soap*, const char*, tt__TrackAttributes *, const char*); -SOAP_FMAC1 tt__TrackAttributes * SOAP_FMAC2 soap_instantiate_tt__TrackAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TrackAttributes * soap_new_tt__TrackAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TrackAttributes(soap, n, NULL, NULL, NULL); -} - -inline tt__TrackAttributes * soap_new_req_tt__TrackAttributes( - struct soap *soap, - tt__TrackInformation *TrackInformation) -{ - tt__TrackAttributes *_p = ::soap_new_tt__TrackAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackAttributes::TrackInformation = TrackInformation; - } - return _p; -} - -inline tt__TrackAttributes * soap_new_set_tt__TrackAttributes( - struct soap *soap, - tt__TrackInformation *TrackInformation, - tt__VideoAttributes *VideoAttributes, - tt__AudioAttributes *AudioAttributes, - tt__MetadataAttributes *MetadataAttributes, - tt__TrackAttributesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__TrackAttributes *_p = ::soap_new_tt__TrackAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackAttributes::TrackInformation = TrackInformation; - _p->tt__TrackAttributes::VideoAttributes = VideoAttributes; - _p->tt__TrackAttributes::AudioAttributes = AudioAttributes; - _p->tt__TrackAttributes::MetadataAttributes = MetadataAttributes; - _p->tt__TrackAttributes::Extension = Extension; - _p->tt__TrackAttributes::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__TrackAttributes(struct soap *soap, tt__TrackAttributes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TrackAttributes", p->soap_type() == SOAP_TYPE_tt__TrackAttributes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TrackAttributes(struct soap *soap, const char *URL, tt__TrackAttributes 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, "tt:TrackAttributes", p->soap_type() == SOAP_TYPE_tt__TrackAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TrackAttributes(struct soap *soap, const char *URL, tt__TrackAttributes 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, "tt:TrackAttributes", p->soap_type() == SOAP_TYPE_tt__TrackAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TrackAttributes(struct soap *soap, const char *URL, tt__TrackAttributes 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, "tt:TrackAttributes", p->soap_type() == SOAP_TYPE_tt__TrackAttributes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TrackAttributes * SOAP_FMAC4 soap_get_tt__TrackAttributes(struct soap*, tt__TrackAttributes *, const char*, const char*); - -inline int soap_read_tt__TrackAttributes(struct soap *soap, tt__TrackAttributes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TrackAttributes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TrackAttributes(struct soap *soap, const char *URL, tt__TrackAttributes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TrackAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TrackAttributes(struct soap *soap, tt__TrackAttributes *p) -{ - if (::soap_read_tt__TrackAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MediaAttributes_DEFINED -#define SOAP_TYPE_tt__MediaAttributes_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaAttributes(struct soap*, const char*, int, const tt__MediaAttributes *, const char*); -SOAP_FMAC3 tt__MediaAttributes * SOAP_FMAC4 soap_in_tt__MediaAttributes(struct soap*, const char*, tt__MediaAttributes *, const char*); -SOAP_FMAC1 tt__MediaAttributes * SOAP_FMAC2 soap_instantiate_tt__MediaAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MediaAttributes * soap_new_tt__MediaAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MediaAttributes(soap, n, NULL, NULL, NULL); -} - -inline tt__MediaAttributes * soap_new_req_tt__MediaAttributes( - struct soap *soap, - const std::string& RecordingToken, - const struct timeval& From, - const struct timeval& Until) -{ - tt__MediaAttributes *_p = ::soap_new_tt__MediaAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaAttributes::RecordingToken = RecordingToken; - _p->tt__MediaAttributes::From = From; - _p->tt__MediaAttributes::Until = Until; - } - return _p; -} - -inline tt__MediaAttributes * soap_new_set_tt__MediaAttributes( - struct soap *soap, - const std::string& RecordingToken, - const std::vector & TrackAttributes, - const struct timeval& From, - const struct timeval& Until, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MediaAttributes *_p = ::soap_new_tt__MediaAttributes(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaAttributes::RecordingToken = RecordingToken; - _p->tt__MediaAttributes::TrackAttributes = TrackAttributes; - _p->tt__MediaAttributes::From = From; - _p->tt__MediaAttributes::Until = Until; - _p->tt__MediaAttributes::__any = __any; - _p->tt__MediaAttributes::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MediaAttributes(struct soap *soap, tt__MediaAttributes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MediaAttributes", p->soap_type() == SOAP_TYPE_tt__MediaAttributes ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MediaAttributes(struct soap *soap, const char *URL, tt__MediaAttributes 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, "tt:MediaAttributes", p->soap_type() == SOAP_TYPE_tt__MediaAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MediaAttributes(struct soap *soap, const char *URL, tt__MediaAttributes 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, "tt:MediaAttributes", p->soap_type() == SOAP_TYPE_tt__MediaAttributes ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MediaAttributes(struct soap *soap, const char *URL, tt__MediaAttributes 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, "tt:MediaAttributes", p->soap_type() == SOAP_TYPE_tt__MediaAttributes ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MediaAttributes * SOAP_FMAC4 soap_get_tt__MediaAttributes(struct soap*, tt__MediaAttributes *, const char*, const char*); - -inline int soap_read_tt__MediaAttributes(struct soap *soap, tt__MediaAttributes *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MediaAttributes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MediaAttributes(struct soap *soap, const char *URL, tt__MediaAttributes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MediaAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MediaAttributes(struct soap *soap, tt__MediaAttributes *p) -{ - if (::soap_read_tt__MediaAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TrackInformation_DEFINED -#define SOAP_TYPE_tt__TrackInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TrackInformation(struct soap*, const char*, int, const tt__TrackInformation *, const char*); -SOAP_FMAC3 tt__TrackInformation * SOAP_FMAC4 soap_in_tt__TrackInformation(struct soap*, const char*, tt__TrackInformation *, const char*); -SOAP_FMAC1 tt__TrackInformation * SOAP_FMAC2 soap_instantiate_tt__TrackInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TrackInformation * soap_new_tt__TrackInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TrackInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__TrackInformation * soap_new_req_tt__TrackInformation( - struct soap *soap, - const std::string& TrackToken, - enum tt__TrackType TrackType, - const std::string& Description, - const struct timeval& DataFrom, - const struct timeval& DataTo) -{ - tt__TrackInformation *_p = ::soap_new_tt__TrackInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackInformation::TrackToken = TrackToken; - _p->tt__TrackInformation::TrackType = TrackType; - _p->tt__TrackInformation::Description = Description; - _p->tt__TrackInformation::DataFrom = DataFrom; - _p->tt__TrackInformation::DataTo = DataTo; - } - return _p; -} - -inline tt__TrackInformation * soap_new_set_tt__TrackInformation( - struct soap *soap, - const std::string& TrackToken, - enum tt__TrackType TrackType, - const std::string& Description, - const struct timeval& DataFrom, - const struct timeval& DataTo, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__TrackInformation *_p = ::soap_new_tt__TrackInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TrackInformation::TrackToken = TrackToken; - _p->tt__TrackInformation::TrackType = TrackType; - _p->tt__TrackInformation::Description = Description; - _p->tt__TrackInformation::DataFrom = DataFrom; - _p->tt__TrackInformation::DataTo = DataTo; - _p->tt__TrackInformation::__any = __any; - _p->tt__TrackInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__TrackInformation(struct soap *soap, tt__TrackInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TrackInformation", p->soap_type() == SOAP_TYPE_tt__TrackInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TrackInformation(struct soap *soap, const char *URL, tt__TrackInformation 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, "tt:TrackInformation", p->soap_type() == SOAP_TYPE_tt__TrackInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TrackInformation(struct soap *soap, const char *URL, tt__TrackInformation 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, "tt:TrackInformation", p->soap_type() == SOAP_TYPE_tt__TrackInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TrackInformation(struct soap *soap, const char *URL, tt__TrackInformation 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, "tt:TrackInformation", p->soap_type() == SOAP_TYPE_tt__TrackInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TrackInformation * SOAP_FMAC4 soap_get_tt__TrackInformation(struct soap*, tt__TrackInformation *, const char*, const char*); - -inline int soap_read_tt__TrackInformation(struct soap *soap, tt__TrackInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TrackInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TrackInformation(struct soap *soap, const char *URL, tt__TrackInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TrackInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TrackInformation(struct soap *soap, tt__TrackInformation *p) -{ - if (::soap_read_tt__TrackInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingSourceInformation_DEFINED -#define SOAP_TYPE_tt__RecordingSourceInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingSourceInformation(struct soap*, const char*, int, const tt__RecordingSourceInformation *, const char*); -SOAP_FMAC3 tt__RecordingSourceInformation * SOAP_FMAC4 soap_in_tt__RecordingSourceInformation(struct soap*, const char*, tt__RecordingSourceInformation *, const char*); -SOAP_FMAC1 tt__RecordingSourceInformation * SOAP_FMAC2 soap_instantiate_tt__RecordingSourceInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingSourceInformation * soap_new_tt__RecordingSourceInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingSourceInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingSourceInformation * soap_new_req_tt__RecordingSourceInformation( - struct soap *soap, - const std::string& SourceId, - const std::string& Name, - const std::string& Location, - const std::string& Description, - const std::string& Address) -{ - tt__RecordingSourceInformation *_p = ::soap_new_tt__RecordingSourceInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingSourceInformation::SourceId = SourceId; - _p->tt__RecordingSourceInformation::Name = Name; - _p->tt__RecordingSourceInformation::Location = Location; - _p->tt__RecordingSourceInformation::Description = Description; - _p->tt__RecordingSourceInformation::Address = Address; - } - return _p; -} - -inline tt__RecordingSourceInformation * soap_new_set_tt__RecordingSourceInformation( - struct soap *soap, - const std::string& SourceId, - const std::string& Name, - const std::string& Location, - const std::string& Description, - const std::string& Address, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingSourceInformation *_p = ::soap_new_tt__RecordingSourceInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingSourceInformation::SourceId = SourceId; - _p->tt__RecordingSourceInformation::Name = Name; - _p->tt__RecordingSourceInformation::Location = Location; - _p->tt__RecordingSourceInformation::Description = Description; - _p->tt__RecordingSourceInformation::Address = Address; - _p->tt__RecordingSourceInformation::__any = __any; - _p->tt__RecordingSourceInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingSourceInformation(struct soap *soap, tt__RecordingSourceInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingSourceInformation", p->soap_type() == SOAP_TYPE_tt__RecordingSourceInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingSourceInformation(struct soap *soap, const char *URL, tt__RecordingSourceInformation 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, "tt:RecordingSourceInformation", p->soap_type() == SOAP_TYPE_tt__RecordingSourceInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingSourceInformation(struct soap *soap, const char *URL, tt__RecordingSourceInformation 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, "tt:RecordingSourceInformation", p->soap_type() == SOAP_TYPE_tt__RecordingSourceInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingSourceInformation(struct soap *soap, const char *URL, tt__RecordingSourceInformation 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, "tt:RecordingSourceInformation", p->soap_type() == SOAP_TYPE_tt__RecordingSourceInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingSourceInformation * SOAP_FMAC4 soap_get_tt__RecordingSourceInformation(struct soap*, tt__RecordingSourceInformation *, const char*, const char*); - -inline int soap_read_tt__RecordingSourceInformation(struct soap *soap, tt__RecordingSourceInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingSourceInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingSourceInformation(struct soap *soap, const char *URL, tt__RecordingSourceInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingSourceInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingSourceInformation(struct soap *soap, tt__RecordingSourceInformation *p) -{ - if (::soap_read_tt__RecordingSourceInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingInformation_DEFINED -#define SOAP_TYPE_tt__RecordingInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingInformation(struct soap*, const char*, int, const tt__RecordingInformation *, const char*); -SOAP_FMAC3 tt__RecordingInformation * SOAP_FMAC4 soap_in_tt__RecordingInformation(struct soap*, const char*, tt__RecordingInformation *, const char*); -SOAP_FMAC1 tt__RecordingInformation * SOAP_FMAC2 soap_instantiate_tt__RecordingInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingInformation * soap_new_tt__RecordingInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingInformation * soap_new_req_tt__RecordingInformation( - struct soap *soap, - const std::string& RecordingToken, - tt__RecordingSourceInformation *Source, - const std::string& Content, - enum tt__RecordingStatus RecordingStatus) -{ - tt__RecordingInformation *_p = ::soap_new_tt__RecordingInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingInformation::RecordingToken = RecordingToken; - _p->tt__RecordingInformation::Source = Source; - _p->tt__RecordingInformation::Content = Content; - _p->tt__RecordingInformation::RecordingStatus = RecordingStatus; - } - return _p; -} - -inline tt__RecordingInformation * soap_new_set_tt__RecordingInformation( - struct soap *soap, - const std::string& RecordingToken, - tt__RecordingSourceInformation *Source, - struct timeval *EarliestRecording, - struct timeval *LatestRecording, - const std::string& Content, - const std::vector & Track, - enum tt__RecordingStatus RecordingStatus, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingInformation *_p = ::soap_new_tt__RecordingInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingInformation::RecordingToken = RecordingToken; - _p->tt__RecordingInformation::Source = Source; - _p->tt__RecordingInformation::EarliestRecording = EarliestRecording; - _p->tt__RecordingInformation::LatestRecording = LatestRecording; - _p->tt__RecordingInformation::Content = Content; - _p->tt__RecordingInformation::Track = Track; - _p->tt__RecordingInformation::RecordingStatus = RecordingStatus; - _p->tt__RecordingInformation::__any = __any; - _p->tt__RecordingInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingInformation(struct soap *soap, tt__RecordingInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingInformation", p->soap_type() == SOAP_TYPE_tt__RecordingInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingInformation(struct soap *soap, const char *URL, tt__RecordingInformation 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, "tt:RecordingInformation", p->soap_type() == SOAP_TYPE_tt__RecordingInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingInformation(struct soap *soap, const char *URL, tt__RecordingInformation 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, "tt:RecordingInformation", p->soap_type() == SOAP_TYPE_tt__RecordingInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingInformation(struct soap *soap, const char *URL, tt__RecordingInformation 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, "tt:RecordingInformation", p->soap_type() == SOAP_TYPE_tt__RecordingInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingInformation * SOAP_FMAC4 soap_get_tt__RecordingInformation(struct soap*, tt__RecordingInformation *, const char*, const char*); - -inline int soap_read_tt__RecordingInformation(struct soap *soap, tt__RecordingInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingInformation(struct soap *soap, const char *URL, tt__RecordingInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingInformation(struct soap *soap, tt__RecordingInformation *p) -{ - if (::soap_read_tt__RecordingInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FindMetadataResult_DEFINED -#define SOAP_TYPE_tt__FindMetadataResult_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindMetadataResult(struct soap*, const char*, int, const tt__FindMetadataResult *, const char*); -SOAP_FMAC3 tt__FindMetadataResult * SOAP_FMAC4 soap_in_tt__FindMetadataResult(struct soap*, const char*, tt__FindMetadataResult *, const char*); -SOAP_FMAC1 tt__FindMetadataResult * SOAP_FMAC2 soap_instantiate_tt__FindMetadataResult(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FindMetadataResult * soap_new_tt__FindMetadataResult(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FindMetadataResult(soap, n, NULL, NULL, NULL); -} - -inline tt__FindMetadataResult * soap_new_req_tt__FindMetadataResult( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - const struct timeval& Time) -{ - tt__FindMetadataResult *_p = ::soap_new_tt__FindMetadataResult(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindMetadataResult::RecordingToken = RecordingToken; - _p->tt__FindMetadataResult::TrackToken = TrackToken; - _p->tt__FindMetadataResult::Time = Time; - } - return _p; -} - -inline tt__FindMetadataResult * soap_new_set_tt__FindMetadataResult( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - const struct timeval& Time, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FindMetadataResult *_p = ::soap_new_tt__FindMetadataResult(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindMetadataResult::RecordingToken = RecordingToken; - _p->tt__FindMetadataResult::TrackToken = TrackToken; - _p->tt__FindMetadataResult::Time = Time; - _p->tt__FindMetadataResult::__any = __any; - _p->tt__FindMetadataResult::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FindMetadataResult(struct soap *soap, tt__FindMetadataResult const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FindMetadataResult", p->soap_type() == SOAP_TYPE_tt__FindMetadataResult ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FindMetadataResult(struct soap *soap, const char *URL, tt__FindMetadataResult 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, "tt:FindMetadataResult", p->soap_type() == SOAP_TYPE_tt__FindMetadataResult ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FindMetadataResult(struct soap *soap, const char *URL, tt__FindMetadataResult 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, "tt:FindMetadataResult", p->soap_type() == SOAP_TYPE_tt__FindMetadataResult ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FindMetadataResult(struct soap *soap, const char *URL, tt__FindMetadataResult 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, "tt:FindMetadataResult", p->soap_type() == SOAP_TYPE_tt__FindMetadataResult ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FindMetadataResult * SOAP_FMAC4 soap_get_tt__FindMetadataResult(struct soap*, tt__FindMetadataResult *, const char*, const char*); - -inline int soap_read_tt__FindMetadataResult(struct soap *soap, tt__FindMetadataResult *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FindMetadataResult(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FindMetadataResult(struct soap *soap, const char *URL, tt__FindMetadataResult *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FindMetadataResult(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FindMetadataResult(struct soap *soap, tt__FindMetadataResult *p) -{ - if (::soap_read_tt__FindMetadataResult(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FindMetadataResultList_DEFINED -#define SOAP_TYPE_tt__FindMetadataResultList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindMetadataResultList(struct soap*, const char*, int, const tt__FindMetadataResultList *, const char*); -SOAP_FMAC3 tt__FindMetadataResultList * SOAP_FMAC4 soap_in_tt__FindMetadataResultList(struct soap*, const char*, tt__FindMetadataResultList *, const char*); -SOAP_FMAC1 tt__FindMetadataResultList * SOAP_FMAC2 soap_instantiate_tt__FindMetadataResultList(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FindMetadataResultList * soap_new_tt__FindMetadataResultList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FindMetadataResultList(soap, n, NULL, NULL, NULL); -} - -inline tt__FindMetadataResultList * soap_new_req_tt__FindMetadataResultList( - struct soap *soap, - enum tt__SearchState SearchState) -{ - tt__FindMetadataResultList *_p = ::soap_new_tt__FindMetadataResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindMetadataResultList::SearchState = SearchState; - } - return _p; -} - -inline tt__FindMetadataResultList * soap_new_set_tt__FindMetadataResultList( - struct soap *soap, - enum tt__SearchState SearchState, - const std::vector & Result) -{ - tt__FindMetadataResultList *_p = ::soap_new_tt__FindMetadataResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindMetadataResultList::SearchState = SearchState; - _p->tt__FindMetadataResultList::Result = Result; - } - return _p; -} - -inline int soap_write_tt__FindMetadataResultList(struct soap *soap, tt__FindMetadataResultList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FindMetadataResultList", p->soap_type() == SOAP_TYPE_tt__FindMetadataResultList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FindMetadataResultList(struct soap *soap, const char *URL, tt__FindMetadataResultList 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, "tt:FindMetadataResultList", p->soap_type() == SOAP_TYPE_tt__FindMetadataResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FindMetadataResultList(struct soap *soap, const char *URL, tt__FindMetadataResultList 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, "tt:FindMetadataResultList", p->soap_type() == SOAP_TYPE_tt__FindMetadataResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FindMetadataResultList(struct soap *soap, const char *URL, tt__FindMetadataResultList 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, "tt:FindMetadataResultList", p->soap_type() == SOAP_TYPE_tt__FindMetadataResultList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FindMetadataResultList * SOAP_FMAC4 soap_get_tt__FindMetadataResultList(struct soap*, tt__FindMetadataResultList *, const char*, const char*); - -inline int soap_read_tt__FindMetadataResultList(struct soap *soap, tt__FindMetadataResultList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FindMetadataResultList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FindMetadataResultList(struct soap *soap, const char *URL, tt__FindMetadataResultList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FindMetadataResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FindMetadataResultList(struct soap *soap, tt__FindMetadataResultList *p) -{ - if (::soap_read_tt__FindMetadataResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FindPTZPositionResult_DEFINED -#define SOAP_TYPE_tt__FindPTZPositionResult_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindPTZPositionResult(struct soap*, const char*, int, const tt__FindPTZPositionResult *, const char*); -SOAP_FMAC3 tt__FindPTZPositionResult * SOAP_FMAC4 soap_in_tt__FindPTZPositionResult(struct soap*, const char*, tt__FindPTZPositionResult *, const char*); -SOAP_FMAC1 tt__FindPTZPositionResult * SOAP_FMAC2 soap_instantiate_tt__FindPTZPositionResult(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FindPTZPositionResult * soap_new_tt__FindPTZPositionResult(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FindPTZPositionResult(soap, n, NULL, NULL, NULL); -} - -inline tt__FindPTZPositionResult * soap_new_req_tt__FindPTZPositionResult( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - const struct timeval& Time, - tt__PTZVector *Position) -{ - tt__FindPTZPositionResult *_p = ::soap_new_tt__FindPTZPositionResult(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindPTZPositionResult::RecordingToken = RecordingToken; - _p->tt__FindPTZPositionResult::TrackToken = TrackToken; - _p->tt__FindPTZPositionResult::Time = Time; - _p->tt__FindPTZPositionResult::Position = Position; - } - return _p; -} - -inline tt__FindPTZPositionResult * soap_new_set_tt__FindPTZPositionResult( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - const struct timeval& Time, - tt__PTZVector *Position, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FindPTZPositionResult *_p = ::soap_new_tt__FindPTZPositionResult(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindPTZPositionResult::RecordingToken = RecordingToken; - _p->tt__FindPTZPositionResult::TrackToken = TrackToken; - _p->tt__FindPTZPositionResult::Time = Time; - _p->tt__FindPTZPositionResult::Position = Position; - _p->tt__FindPTZPositionResult::__any = __any; - _p->tt__FindPTZPositionResult::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FindPTZPositionResult(struct soap *soap, tt__FindPTZPositionResult const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FindPTZPositionResult", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResult ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FindPTZPositionResult(struct soap *soap, const char *URL, tt__FindPTZPositionResult 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, "tt:FindPTZPositionResult", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResult ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FindPTZPositionResult(struct soap *soap, const char *URL, tt__FindPTZPositionResult 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, "tt:FindPTZPositionResult", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResult ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FindPTZPositionResult(struct soap *soap, const char *URL, tt__FindPTZPositionResult 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, "tt:FindPTZPositionResult", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResult ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FindPTZPositionResult * SOAP_FMAC4 soap_get_tt__FindPTZPositionResult(struct soap*, tt__FindPTZPositionResult *, const char*, const char*); - -inline int soap_read_tt__FindPTZPositionResult(struct soap *soap, tt__FindPTZPositionResult *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FindPTZPositionResult(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FindPTZPositionResult(struct soap *soap, const char *URL, tt__FindPTZPositionResult *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FindPTZPositionResult(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FindPTZPositionResult(struct soap *soap, tt__FindPTZPositionResult *p) -{ - if (::soap_read_tt__FindPTZPositionResult(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FindPTZPositionResultList_DEFINED -#define SOAP_TYPE_tt__FindPTZPositionResultList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindPTZPositionResultList(struct soap*, const char*, int, const tt__FindPTZPositionResultList *, const char*); -SOAP_FMAC3 tt__FindPTZPositionResultList * SOAP_FMAC4 soap_in_tt__FindPTZPositionResultList(struct soap*, const char*, tt__FindPTZPositionResultList *, const char*); -SOAP_FMAC1 tt__FindPTZPositionResultList * SOAP_FMAC2 soap_instantiate_tt__FindPTZPositionResultList(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FindPTZPositionResultList * soap_new_tt__FindPTZPositionResultList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FindPTZPositionResultList(soap, n, NULL, NULL, NULL); -} - -inline tt__FindPTZPositionResultList * soap_new_req_tt__FindPTZPositionResultList( - struct soap *soap, - enum tt__SearchState SearchState) -{ - tt__FindPTZPositionResultList *_p = ::soap_new_tt__FindPTZPositionResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindPTZPositionResultList::SearchState = SearchState; - } - return _p; -} - -inline tt__FindPTZPositionResultList * soap_new_set_tt__FindPTZPositionResultList( - struct soap *soap, - enum tt__SearchState SearchState, - const std::vector & Result) -{ - tt__FindPTZPositionResultList *_p = ::soap_new_tt__FindPTZPositionResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindPTZPositionResultList::SearchState = SearchState; - _p->tt__FindPTZPositionResultList::Result = Result; - } - return _p; -} - -inline int soap_write_tt__FindPTZPositionResultList(struct soap *soap, tt__FindPTZPositionResultList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FindPTZPositionResultList", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResultList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FindPTZPositionResultList(struct soap *soap, const char *URL, tt__FindPTZPositionResultList 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, "tt:FindPTZPositionResultList", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FindPTZPositionResultList(struct soap *soap, const char *URL, tt__FindPTZPositionResultList 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, "tt:FindPTZPositionResultList", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FindPTZPositionResultList(struct soap *soap, const char *URL, tt__FindPTZPositionResultList 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, "tt:FindPTZPositionResultList", p->soap_type() == SOAP_TYPE_tt__FindPTZPositionResultList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FindPTZPositionResultList * SOAP_FMAC4 soap_get_tt__FindPTZPositionResultList(struct soap*, tt__FindPTZPositionResultList *, const char*, const char*); - -inline int soap_read_tt__FindPTZPositionResultList(struct soap *soap, tt__FindPTZPositionResultList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FindPTZPositionResultList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FindPTZPositionResultList(struct soap *soap, const char *URL, tt__FindPTZPositionResultList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FindPTZPositionResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FindPTZPositionResultList(struct soap *soap, tt__FindPTZPositionResultList *p) -{ - if (::soap_read_tt__FindPTZPositionResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FindEventResult_DEFINED -#define SOAP_TYPE_tt__FindEventResult_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindEventResult(struct soap*, const char*, int, const tt__FindEventResult *, const char*); -SOAP_FMAC3 tt__FindEventResult * SOAP_FMAC4 soap_in_tt__FindEventResult(struct soap*, const char*, tt__FindEventResult *, const char*); -SOAP_FMAC1 tt__FindEventResult * SOAP_FMAC2 soap_instantiate_tt__FindEventResult(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FindEventResult * soap_new_tt__FindEventResult(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FindEventResult(soap, n, NULL, NULL, NULL); -} - -inline tt__FindEventResult * soap_new_req_tt__FindEventResult( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - const struct timeval& Time, - wsnt__NotificationMessageHolderType *Event, - bool StartStateEvent) -{ - tt__FindEventResult *_p = ::soap_new_tt__FindEventResult(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindEventResult::RecordingToken = RecordingToken; - _p->tt__FindEventResult::TrackToken = TrackToken; - _p->tt__FindEventResult::Time = Time; - _p->tt__FindEventResult::Event = Event; - _p->tt__FindEventResult::StartStateEvent = StartStateEvent; - } - return _p; -} - -inline tt__FindEventResult * soap_new_set_tt__FindEventResult( - struct soap *soap, - const std::string& RecordingToken, - const std::string& TrackToken, - const struct timeval& Time, - wsnt__NotificationMessageHolderType *Event, - bool StartStateEvent, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FindEventResult *_p = ::soap_new_tt__FindEventResult(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindEventResult::RecordingToken = RecordingToken; - _p->tt__FindEventResult::TrackToken = TrackToken; - _p->tt__FindEventResult::Time = Time; - _p->tt__FindEventResult::Event = Event; - _p->tt__FindEventResult::StartStateEvent = StartStateEvent; - _p->tt__FindEventResult::__any = __any; - _p->tt__FindEventResult::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FindEventResult(struct soap *soap, tt__FindEventResult const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FindEventResult", p->soap_type() == SOAP_TYPE_tt__FindEventResult ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FindEventResult(struct soap *soap, const char *URL, tt__FindEventResult 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, "tt:FindEventResult", p->soap_type() == SOAP_TYPE_tt__FindEventResult ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FindEventResult(struct soap *soap, const char *URL, tt__FindEventResult 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, "tt:FindEventResult", p->soap_type() == SOAP_TYPE_tt__FindEventResult ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FindEventResult(struct soap *soap, const char *URL, tt__FindEventResult 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, "tt:FindEventResult", p->soap_type() == SOAP_TYPE_tt__FindEventResult ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FindEventResult * SOAP_FMAC4 soap_get_tt__FindEventResult(struct soap*, tt__FindEventResult *, const char*, const char*); - -inline int soap_read_tt__FindEventResult(struct soap *soap, tt__FindEventResult *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FindEventResult(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FindEventResult(struct soap *soap, const char *URL, tt__FindEventResult *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FindEventResult(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FindEventResult(struct soap *soap, tt__FindEventResult *p) -{ - if (::soap_read_tt__FindEventResult(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FindEventResultList_DEFINED -#define SOAP_TYPE_tt__FindEventResultList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindEventResultList(struct soap*, const char*, int, const tt__FindEventResultList *, const char*); -SOAP_FMAC3 tt__FindEventResultList * SOAP_FMAC4 soap_in_tt__FindEventResultList(struct soap*, const char*, tt__FindEventResultList *, const char*); -SOAP_FMAC1 tt__FindEventResultList * SOAP_FMAC2 soap_instantiate_tt__FindEventResultList(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FindEventResultList * soap_new_tt__FindEventResultList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FindEventResultList(soap, n, NULL, NULL, NULL); -} - -inline tt__FindEventResultList * soap_new_req_tt__FindEventResultList( - struct soap *soap, - enum tt__SearchState SearchState) -{ - tt__FindEventResultList *_p = ::soap_new_tt__FindEventResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindEventResultList::SearchState = SearchState; - } - return _p; -} - -inline tt__FindEventResultList * soap_new_set_tt__FindEventResultList( - struct soap *soap, - enum tt__SearchState SearchState, - const std::vector & Result) -{ - tt__FindEventResultList *_p = ::soap_new_tt__FindEventResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindEventResultList::SearchState = SearchState; - _p->tt__FindEventResultList::Result = Result; - } - return _p; -} - -inline int soap_write_tt__FindEventResultList(struct soap *soap, tt__FindEventResultList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FindEventResultList", p->soap_type() == SOAP_TYPE_tt__FindEventResultList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FindEventResultList(struct soap *soap, const char *URL, tt__FindEventResultList 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, "tt:FindEventResultList", p->soap_type() == SOAP_TYPE_tt__FindEventResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FindEventResultList(struct soap *soap, const char *URL, tt__FindEventResultList 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, "tt:FindEventResultList", p->soap_type() == SOAP_TYPE_tt__FindEventResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FindEventResultList(struct soap *soap, const char *URL, tt__FindEventResultList 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, "tt:FindEventResultList", p->soap_type() == SOAP_TYPE_tt__FindEventResultList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FindEventResultList * SOAP_FMAC4 soap_get_tt__FindEventResultList(struct soap*, tt__FindEventResultList *, const char*, const char*); - -inline int soap_read_tt__FindEventResultList(struct soap *soap, tt__FindEventResultList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FindEventResultList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FindEventResultList(struct soap *soap, const char *URL, tt__FindEventResultList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FindEventResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FindEventResultList(struct soap *soap, tt__FindEventResultList *p) -{ - if (::soap_read_tt__FindEventResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FindRecordingResultList_DEFINED -#define SOAP_TYPE_tt__FindRecordingResultList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FindRecordingResultList(struct soap*, const char*, int, const tt__FindRecordingResultList *, const char*); -SOAP_FMAC3 tt__FindRecordingResultList * SOAP_FMAC4 soap_in_tt__FindRecordingResultList(struct soap*, const char*, tt__FindRecordingResultList *, const char*); -SOAP_FMAC1 tt__FindRecordingResultList * SOAP_FMAC2 soap_instantiate_tt__FindRecordingResultList(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FindRecordingResultList * soap_new_tt__FindRecordingResultList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FindRecordingResultList(soap, n, NULL, NULL, NULL); -} - -inline tt__FindRecordingResultList * soap_new_req_tt__FindRecordingResultList( - struct soap *soap, - enum tt__SearchState SearchState) -{ - tt__FindRecordingResultList *_p = ::soap_new_tt__FindRecordingResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindRecordingResultList::SearchState = SearchState; - } - return _p; -} - -inline tt__FindRecordingResultList * soap_new_set_tt__FindRecordingResultList( - struct soap *soap, - enum tt__SearchState SearchState, - const std::vector & RecordingInformation) -{ - tt__FindRecordingResultList *_p = ::soap_new_tt__FindRecordingResultList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FindRecordingResultList::SearchState = SearchState; - _p->tt__FindRecordingResultList::RecordingInformation = RecordingInformation; - } - return _p; -} - -inline int soap_write_tt__FindRecordingResultList(struct soap *soap, tt__FindRecordingResultList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FindRecordingResultList", p->soap_type() == SOAP_TYPE_tt__FindRecordingResultList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FindRecordingResultList(struct soap *soap, const char *URL, tt__FindRecordingResultList 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, "tt:FindRecordingResultList", p->soap_type() == SOAP_TYPE_tt__FindRecordingResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FindRecordingResultList(struct soap *soap, const char *URL, tt__FindRecordingResultList 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, "tt:FindRecordingResultList", p->soap_type() == SOAP_TYPE_tt__FindRecordingResultList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FindRecordingResultList(struct soap *soap, const char *URL, tt__FindRecordingResultList 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, "tt:FindRecordingResultList", p->soap_type() == SOAP_TYPE_tt__FindRecordingResultList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FindRecordingResultList * SOAP_FMAC4 soap_get_tt__FindRecordingResultList(struct soap*, tt__FindRecordingResultList *, const char*, const char*); - -inline int soap_read_tt__FindRecordingResultList(struct soap *soap, tt__FindRecordingResultList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FindRecordingResultList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FindRecordingResultList(struct soap *soap, const char *URL, tt__FindRecordingResultList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FindRecordingResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FindRecordingResultList(struct soap *soap, tt__FindRecordingResultList *p) -{ - if (::soap_read_tt__FindRecordingResultList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataFilter_DEFINED -#define SOAP_TYPE_tt__MetadataFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataFilter(struct soap*, const char*, int, const tt__MetadataFilter *, const char*); -SOAP_FMAC3 tt__MetadataFilter * SOAP_FMAC4 soap_in_tt__MetadataFilter(struct soap*, const char*, tt__MetadataFilter *, const char*); -SOAP_FMAC1 tt__MetadataFilter * SOAP_FMAC2 soap_instantiate_tt__MetadataFilter(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataFilter * soap_new_tt__MetadataFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataFilter(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataFilter * soap_new_req_tt__MetadataFilter( - struct soap *soap, - const std::string& MetadataStreamFilter) -{ - tt__MetadataFilter *_p = ::soap_new_tt__MetadataFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataFilter::MetadataStreamFilter = MetadataStreamFilter; - } - return _p; -} - -inline tt__MetadataFilter * soap_new_set_tt__MetadataFilter( - struct soap *soap, - const std::string& MetadataStreamFilter, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MetadataFilter *_p = ::soap_new_tt__MetadataFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataFilter::MetadataStreamFilter = MetadataStreamFilter; - _p->tt__MetadataFilter::__any = __any; - _p->tt__MetadataFilter::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MetadataFilter(struct soap *soap, tt__MetadataFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataFilter", p->soap_type() == SOAP_TYPE_tt__MetadataFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataFilter(struct soap *soap, const char *URL, tt__MetadataFilter 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, "tt:MetadataFilter", p->soap_type() == SOAP_TYPE_tt__MetadataFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataFilter(struct soap *soap, const char *URL, tt__MetadataFilter 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, "tt:MetadataFilter", p->soap_type() == SOAP_TYPE_tt__MetadataFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataFilter(struct soap *soap, const char *URL, tt__MetadataFilter 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, "tt:MetadataFilter", p->soap_type() == SOAP_TYPE_tt__MetadataFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataFilter * SOAP_FMAC4 soap_get_tt__MetadataFilter(struct soap*, tt__MetadataFilter *, const char*, const char*); - -inline int soap_read_tt__MetadataFilter(struct soap *soap, tt__MetadataFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataFilter(struct soap *soap, const char *URL, tt__MetadataFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataFilter(struct soap *soap, tt__MetadataFilter *p) -{ - if (::soap_read_tt__MetadataFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPositionFilter_DEFINED -#define SOAP_TYPE_tt__PTZPositionFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPositionFilter(struct soap*, const char*, int, const tt__PTZPositionFilter *, const char*); -SOAP_FMAC3 tt__PTZPositionFilter * SOAP_FMAC4 soap_in_tt__PTZPositionFilter(struct soap*, const char*, tt__PTZPositionFilter *, const char*); -SOAP_FMAC1 tt__PTZPositionFilter * SOAP_FMAC2 soap_instantiate_tt__PTZPositionFilter(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPositionFilter * soap_new_tt__PTZPositionFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPositionFilter(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPositionFilter * soap_new_req_tt__PTZPositionFilter( - struct soap *soap, - tt__PTZVector *MinPosition, - tt__PTZVector *MaxPosition, - bool EnterOrExit) -{ - tt__PTZPositionFilter *_p = ::soap_new_tt__PTZPositionFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPositionFilter::MinPosition = MinPosition; - _p->tt__PTZPositionFilter::MaxPosition = MaxPosition; - _p->tt__PTZPositionFilter::EnterOrExit = EnterOrExit; - } - return _p; -} - -inline tt__PTZPositionFilter * soap_new_set_tt__PTZPositionFilter( - struct soap *soap, - tt__PTZVector *MinPosition, - tt__PTZVector *MaxPosition, - bool EnterOrExit, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPositionFilter *_p = ::soap_new_tt__PTZPositionFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPositionFilter::MinPosition = MinPosition; - _p->tt__PTZPositionFilter::MaxPosition = MaxPosition; - _p->tt__PTZPositionFilter::EnterOrExit = EnterOrExit; - _p->tt__PTZPositionFilter::__any = __any; - _p->tt__PTZPositionFilter::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPositionFilter(struct soap *soap, tt__PTZPositionFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPositionFilter", p->soap_type() == SOAP_TYPE_tt__PTZPositionFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPositionFilter(struct soap *soap, const char *URL, tt__PTZPositionFilter 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, "tt:PTZPositionFilter", p->soap_type() == SOAP_TYPE_tt__PTZPositionFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPositionFilter(struct soap *soap, const char *URL, tt__PTZPositionFilter 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, "tt:PTZPositionFilter", p->soap_type() == SOAP_TYPE_tt__PTZPositionFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPositionFilter(struct soap *soap, const char *URL, tt__PTZPositionFilter 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, "tt:PTZPositionFilter", p->soap_type() == SOAP_TYPE_tt__PTZPositionFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPositionFilter * SOAP_FMAC4 soap_get_tt__PTZPositionFilter(struct soap*, tt__PTZPositionFilter *, const char*, const char*); - -inline int soap_read_tt__PTZPositionFilter(struct soap *soap, tt__PTZPositionFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPositionFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPositionFilter(struct soap *soap, const char *URL, tt__PTZPositionFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPositionFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPositionFilter(struct soap *soap, tt__PTZPositionFilter *p) -{ - if (::soap_read_tt__PTZPositionFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EventFilter_DEFINED -#define SOAP_TYPE_tt__EventFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EventFilter(struct soap*, const char*, int, const tt__EventFilter *, const char*); -SOAP_FMAC3 tt__EventFilter * SOAP_FMAC4 soap_in_tt__EventFilter(struct soap*, const char*, tt__EventFilter *, const char*); -SOAP_FMAC1 tt__EventFilter * SOAP_FMAC2 soap_instantiate_tt__EventFilter(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EventFilter * soap_new_tt__EventFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EventFilter(soap, n, NULL, NULL, NULL); -} - -inline tt__EventFilter * soap_new_req_tt__EventFilter( - struct soap *soap) -{ - tt__EventFilter *_p = ::soap_new_tt__EventFilter(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__EventFilter * soap_new_set_tt__EventFilter( - struct soap *soap, - const struct soap_dom_attribute& __anyAttribute, - const std::vector & __any__1) -{ - tt__EventFilter *_p = ::soap_new_tt__EventFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EventFilter::__anyAttribute = __anyAttribute; - _p->wsnt__FilterType::__any = __any__1; - } - return _p; -} - -inline int soap_write_tt__EventFilter(struct soap *soap, tt__EventFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EventFilter", p->soap_type() == SOAP_TYPE_tt__EventFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EventFilter(struct soap *soap, const char *URL, tt__EventFilter 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, "tt:EventFilter", p->soap_type() == SOAP_TYPE_tt__EventFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EventFilter(struct soap *soap, const char *URL, tt__EventFilter 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, "tt:EventFilter", p->soap_type() == SOAP_TYPE_tt__EventFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EventFilter(struct soap *soap, const char *URL, tt__EventFilter 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, "tt:EventFilter", p->soap_type() == SOAP_TYPE_tt__EventFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EventFilter * SOAP_FMAC4 soap_get_tt__EventFilter(struct soap*, tt__EventFilter *, const char*, const char*); - -inline int soap_read_tt__EventFilter(struct soap *soap, tt__EventFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EventFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EventFilter(struct soap *soap, const char *URL, tt__EventFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EventFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EventFilter(struct soap *soap, tt__EventFilter *p) -{ - if (::soap_read_tt__EventFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SearchScopeExtension_DEFINED -#define SOAP_TYPE_tt__SearchScopeExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchScopeExtension(struct soap*, const char*, int, const tt__SearchScopeExtension *, const char*); -SOAP_FMAC3 tt__SearchScopeExtension * SOAP_FMAC4 soap_in_tt__SearchScopeExtension(struct soap*, const char*, tt__SearchScopeExtension *, const char*); -SOAP_FMAC1 tt__SearchScopeExtension * SOAP_FMAC2 soap_instantiate_tt__SearchScopeExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SearchScopeExtension * soap_new_tt__SearchScopeExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SearchScopeExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__SearchScopeExtension * soap_new_req_tt__SearchScopeExtension( - struct soap *soap) -{ - tt__SearchScopeExtension *_p = ::soap_new_tt__SearchScopeExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SearchScopeExtension * soap_new_set_tt__SearchScopeExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__SearchScopeExtension *_p = ::soap_new_tt__SearchScopeExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SearchScopeExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__SearchScopeExtension(struct soap *soap, tt__SearchScopeExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SearchScopeExtension", p->soap_type() == SOAP_TYPE_tt__SearchScopeExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SearchScopeExtension(struct soap *soap, const char *URL, tt__SearchScopeExtension 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, "tt:SearchScopeExtension", p->soap_type() == SOAP_TYPE_tt__SearchScopeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SearchScopeExtension(struct soap *soap, const char *URL, tt__SearchScopeExtension 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, "tt:SearchScopeExtension", p->soap_type() == SOAP_TYPE_tt__SearchScopeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SearchScopeExtension(struct soap *soap, const char *URL, tt__SearchScopeExtension 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, "tt:SearchScopeExtension", p->soap_type() == SOAP_TYPE_tt__SearchScopeExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SearchScopeExtension * SOAP_FMAC4 soap_get_tt__SearchScopeExtension(struct soap*, tt__SearchScopeExtension *, const char*, const char*); - -inline int soap_read_tt__SearchScopeExtension(struct soap *soap, tt__SearchScopeExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SearchScopeExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SearchScopeExtension(struct soap *soap, const char *URL, tt__SearchScopeExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SearchScopeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SearchScopeExtension(struct soap *soap, tt__SearchScopeExtension *p) -{ - if (::soap_read_tt__SearchScopeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SearchScope_DEFINED -#define SOAP_TYPE_tt__SearchScope_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchScope(struct soap*, const char*, int, const tt__SearchScope *, const char*); -SOAP_FMAC3 tt__SearchScope * SOAP_FMAC4 soap_in_tt__SearchScope(struct soap*, const char*, tt__SearchScope *, const char*); -SOAP_FMAC1 tt__SearchScope * SOAP_FMAC2 soap_instantiate_tt__SearchScope(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SearchScope * soap_new_tt__SearchScope(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SearchScope(soap, n, NULL, NULL, NULL); -} - -inline tt__SearchScope * soap_new_req_tt__SearchScope( - struct soap *soap) -{ - tt__SearchScope *_p = ::soap_new_tt__SearchScope(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SearchScope * soap_new_set_tt__SearchScope( - struct soap *soap, - const std::vector & IncludedSources, - const std::vector & IncludedRecordings, - std::string *RecordingInformationFilter, - tt__SearchScopeExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SearchScope *_p = ::soap_new_tt__SearchScope(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SearchScope::IncludedSources = IncludedSources; - _p->tt__SearchScope::IncludedRecordings = IncludedRecordings; - _p->tt__SearchScope::RecordingInformationFilter = RecordingInformationFilter; - _p->tt__SearchScope::Extension = Extension; - _p->tt__SearchScope::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SearchScope(struct soap *soap, tt__SearchScope const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SearchScope", p->soap_type() == SOAP_TYPE_tt__SearchScope ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SearchScope(struct soap *soap, const char *URL, tt__SearchScope 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, "tt:SearchScope", p->soap_type() == SOAP_TYPE_tt__SearchScope ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SearchScope(struct soap *soap, const char *URL, tt__SearchScope 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, "tt:SearchScope", p->soap_type() == SOAP_TYPE_tt__SearchScope ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SearchScope(struct soap *soap, const char *URL, tt__SearchScope 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, "tt:SearchScope", p->soap_type() == SOAP_TYPE_tt__SearchScope ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SearchScope * SOAP_FMAC4 soap_get_tt__SearchScope(struct soap*, tt__SearchScope *, const char*, const char*); - -inline int soap_read_tt__SearchScope(struct soap *soap, tt__SearchScope *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SearchScope(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SearchScope(struct soap *soap, const char *URL, tt__SearchScope *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SearchScope(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SearchScope(struct soap *soap, tt__SearchScope *p) -{ - if (::soap_read_tt__SearchScope(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingSummary_DEFINED -#define SOAP_TYPE_tt__RecordingSummary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingSummary(struct soap*, const char*, int, const tt__RecordingSummary *, const char*); -SOAP_FMAC3 tt__RecordingSummary * SOAP_FMAC4 soap_in_tt__RecordingSummary(struct soap*, const char*, tt__RecordingSummary *, const char*); -SOAP_FMAC1 tt__RecordingSummary * SOAP_FMAC2 soap_instantiate_tt__RecordingSummary(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingSummary * soap_new_tt__RecordingSummary(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingSummary(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingSummary * soap_new_req_tt__RecordingSummary( - struct soap *soap, - const struct timeval& DataFrom, - const struct timeval& DataUntil, - int NumberRecordings) -{ - tt__RecordingSummary *_p = ::soap_new_tt__RecordingSummary(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingSummary::DataFrom = DataFrom; - _p->tt__RecordingSummary::DataUntil = DataUntil; - _p->tt__RecordingSummary::NumberRecordings = NumberRecordings; - } - return _p; -} - -inline tt__RecordingSummary * soap_new_set_tt__RecordingSummary( - struct soap *soap, - const struct timeval& DataFrom, - const struct timeval& DataUntil, - int NumberRecordings, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingSummary *_p = ::soap_new_tt__RecordingSummary(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingSummary::DataFrom = DataFrom; - _p->tt__RecordingSummary::DataUntil = DataUntil; - _p->tt__RecordingSummary::NumberRecordings = NumberRecordings; - _p->tt__RecordingSummary::__any = __any; - _p->tt__RecordingSummary::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingSummary(struct soap *soap, tt__RecordingSummary const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingSummary", p->soap_type() == SOAP_TYPE_tt__RecordingSummary ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingSummary(struct soap *soap, const char *URL, tt__RecordingSummary 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, "tt:RecordingSummary", p->soap_type() == SOAP_TYPE_tt__RecordingSummary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingSummary(struct soap *soap, const char *URL, tt__RecordingSummary 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, "tt:RecordingSummary", p->soap_type() == SOAP_TYPE_tt__RecordingSummary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingSummary(struct soap *soap, const char *URL, tt__RecordingSummary 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, "tt:RecordingSummary", p->soap_type() == SOAP_TYPE_tt__RecordingSummary ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingSummary * SOAP_FMAC4 soap_get_tt__RecordingSummary(struct soap*, tt__RecordingSummary *, const char*, const char*); - -inline int soap_read_tt__RecordingSummary(struct soap *soap, tt__RecordingSummary *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingSummary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingSummary(struct soap *soap, const char *URL, tt__RecordingSummary *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingSummary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingSummary(struct soap *soap, tt__RecordingSummary *p) -{ - if (::soap_read_tt__RecordingSummary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DateTimeRange_DEFINED -#define SOAP_TYPE_tt__DateTimeRange_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DateTimeRange(struct soap*, const char*, int, const tt__DateTimeRange *, const char*); -SOAP_FMAC3 tt__DateTimeRange * SOAP_FMAC4 soap_in_tt__DateTimeRange(struct soap*, const char*, tt__DateTimeRange *, const char*); -SOAP_FMAC1 tt__DateTimeRange * SOAP_FMAC2 soap_instantiate_tt__DateTimeRange(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DateTimeRange * soap_new_tt__DateTimeRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DateTimeRange(soap, n, NULL, NULL, NULL); -} - -inline tt__DateTimeRange * soap_new_req_tt__DateTimeRange( - struct soap *soap, - const struct timeval& From, - const struct timeval& Until) -{ - tt__DateTimeRange *_p = ::soap_new_tt__DateTimeRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DateTimeRange::From = From; - _p->tt__DateTimeRange::Until = Until; - } - return _p; -} - -inline tt__DateTimeRange * soap_new_set_tt__DateTimeRange( - struct soap *soap, - const struct timeval& From, - const struct timeval& Until, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__DateTimeRange *_p = ::soap_new_tt__DateTimeRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DateTimeRange::From = From; - _p->tt__DateTimeRange::Until = Until; - _p->tt__DateTimeRange::__any = __any; - _p->tt__DateTimeRange::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__DateTimeRange(struct soap *soap, tt__DateTimeRange const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DateTimeRange", p->soap_type() == SOAP_TYPE_tt__DateTimeRange ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DateTimeRange(struct soap *soap, const char *URL, tt__DateTimeRange 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, "tt:DateTimeRange", p->soap_type() == SOAP_TYPE_tt__DateTimeRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DateTimeRange(struct soap *soap, const char *URL, tt__DateTimeRange 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, "tt:DateTimeRange", p->soap_type() == SOAP_TYPE_tt__DateTimeRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DateTimeRange(struct soap *soap, const char *URL, tt__DateTimeRange 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, "tt:DateTimeRange", p->soap_type() == SOAP_TYPE_tt__DateTimeRange ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DateTimeRange * SOAP_FMAC4 soap_get_tt__DateTimeRange(struct soap*, tt__DateTimeRange *, const char*, const char*); - -inline int soap_read_tt__DateTimeRange(struct soap *soap, tt__DateTimeRange *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DateTimeRange(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DateTimeRange(struct soap *soap, const char *URL, tt__DateTimeRange *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DateTimeRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DateTimeRange(struct soap *soap, tt__DateTimeRange *p) -{ - if (::soap_read_tt__DateTimeRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SourceReference_DEFINED -#define SOAP_TYPE_tt__SourceReference_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SourceReference(struct soap*, const char*, int, const tt__SourceReference *, const char*); -SOAP_FMAC3 tt__SourceReference * SOAP_FMAC4 soap_in_tt__SourceReference(struct soap*, const char*, tt__SourceReference *, const char*); -SOAP_FMAC1 tt__SourceReference * SOAP_FMAC2 soap_instantiate_tt__SourceReference(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SourceReference * soap_new_tt__SourceReference(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SourceReference(soap, n, NULL, NULL, NULL); -} - -inline tt__SourceReference * soap_new_req_tt__SourceReference( - struct soap *soap, - const std::string& Token) -{ - tt__SourceReference *_p = ::soap_new_tt__SourceReference(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SourceReference::Token = Token; - } - return _p; -} - -inline tt__SourceReference * soap_new_set_tt__SourceReference( - struct soap *soap, - const std::string& Token, - const std::vector & __any, - const std::string& Type, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SourceReference *_p = ::soap_new_tt__SourceReference(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SourceReference::Token = Token; - _p->tt__SourceReference::__any = __any; - _p->tt__SourceReference::Type = Type; - _p->tt__SourceReference::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SourceReference(struct soap *soap, tt__SourceReference const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SourceReference", p->soap_type() == SOAP_TYPE_tt__SourceReference ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SourceReference(struct soap *soap, const char *URL, tt__SourceReference 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, "tt:SourceReference", p->soap_type() == SOAP_TYPE_tt__SourceReference ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SourceReference(struct soap *soap, const char *URL, tt__SourceReference 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, "tt:SourceReference", p->soap_type() == SOAP_TYPE_tt__SourceReference ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SourceReference(struct soap *soap, const char *URL, tt__SourceReference 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, "tt:SourceReference", p->soap_type() == SOAP_TYPE_tt__SourceReference ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SourceReference * SOAP_FMAC4 soap_get_tt__SourceReference(struct soap*, tt__SourceReference *, const char*, const char*); - -inline int soap_read_tt__SourceReference(struct soap *soap, tt__SourceReference *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SourceReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SourceReference(struct soap *soap, const char *URL, tt__SourceReference *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SourceReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SourceReference(struct soap *soap, tt__SourceReference *p) -{ - if (::soap_read_tt__SourceReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReceiverStateInformation_DEFINED -#define SOAP_TYPE_tt__ReceiverStateInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverStateInformation(struct soap*, const char*, int, const tt__ReceiverStateInformation *, const char*); -SOAP_FMAC3 tt__ReceiverStateInformation * SOAP_FMAC4 soap_in_tt__ReceiverStateInformation(struct soap*, const char*, tt__ReceiverStateInformation *, const char*); -SOAP_FMAC1 tt__ReceiverStateInformation * SOAP_FMAC2 soap_instantiate_tt__ReceiverStateInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReceiverStateInformation * soap_new_tt__ReceiverStateInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReceiverStateInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__ReceiverStateInformation * soap_new_req_tt__ReceiverStateInformation( - struct soap *soap, - enum tt__ReceiverState State, - bool AutoCreated) -{ - tt__ReceiverStateInformation *_p = ::soap_new_tt__ReceiverStateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverStateInformation::State = State; - _p->tt__ReceiverStateInformation::AutoCreated = AutoCreated; - } - return _p; -} - -inline tt__ReceiverStateInformation * soap_new_set_tt__ReceiverStateInformation( - struct soap *soap, - enum tt__ReceiverState State, - bool AutoCreated, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ReceiverStateInformation *_p = ::soap_new_tt__ReceiverStateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverStateInformation::State = State; - _p->tt__ReceiverStateInformation::AutoCreated = AutoCreated; - _p->tt__ReceiverStateInformation::__any = __any; - _p->tt__ReceiverStateInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ReceiverStateInformation(struct soap *soap, tt__ReceiverStateInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReceiverStateInformation", p->soap_type() == SOAP_TYPE_tt__ReceiverStateInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverStateInformation(struct soap *soap, const char *URL, tt__ReceiverStateInformation 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, "tt:ReceiverStateInformation", p->soap_type() == SOAP_TYPE_tt__ReceiverStateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverStateInformation(struct soap *soap, const char *URL, tt__ReceiverStateInformation 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, "tt:ReceiverStateInformation", p->soap_type() == SOAP_TYPE_tt__ReceiverStateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverStateInformation(struct soap *soap, const char *URL, tt__ReceiverStateInformation 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, "tt:ReceiverStateInformation", p->soap_type() == SOAP_TYPE_tt__ReceiverStateInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReceiverStateInformation * SOAP_FMAC4 soap_get_tt__ReceiverStateInformation(struct soap*, tt__ReceiverStateInformation *, const char*, const char*); - -inline int soap_read_tt__ReceiverStateInformation(struct soap *soap, tt__ReceiverStateInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverStateInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverStateInformation(struct soap *soap, const char *URL, tt__ReceiverStateInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverStateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverStateInformation(struct soap *soap, tt__ReceiverStateInformation *p) -{ - if (::soap_read_tt__ReceiverStateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReceiverConfiguration_DEFINED -#define SOAP_TYPE_tt__ReceiverConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverConfiguration(struct soap*, const char*, int, const tt__ReceiverConfiguration *, const char*); -SOAP_FMAC3 tt__ReceiverConfiguration * SOAP_FMAC4 soap_in_tt__ReceiverConfiguration(struct soap*, const char*, tt__ReceiverConfiguration *, const char*); -SOAP_FMAC1 tt__ReceiverConfiguration * SOAP_FMAC2 soap_instantiate_tt__ReceiverConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReceiverConfiguration * soap_new_tt__ReceiverConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReceiverConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__ReceiverConfiguration * soap_new_req_tt__ReceiverConfiguration( - struct soap *soap, - enum tt__ReceiverMode Mode, - const std::string& MediaUri, - tt__StreamSetup *StreamSetup) -{ - tt__ReceiverConfiguration *_p = ::soap_new_tt__ReceiverConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverConfiguration::Mode = Mode; - _p->tt__ReceiverConfiguration::MediaUri = MediaUri; - _p->tt__ReceiverConfiguration::StreamSetup = StreamSetup; - } - return _p; -} - -inline tt__ReceiverConfiguration * soap_new_set_tt__ReceiverConfiguration( - struct soap *soap, - enum tt__ReceiverMode Mode, - const std::string& MediaUri, - tt__StreamSetup *StreamSetup, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ReceiverConfiguration *_p = ::soap_new_tt__ReceiverConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverConfiguration::Mode = Mode; - _p->tt__ReceiverConfiguration::MediaUri = MediaUri; - _p->tt__ReceiverConfiguration::StreamSetup = StreamSetup; - _p->tt__ReceiverConfiguration::__any = __any; - _p->tt__ReceiverConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ReceiverConfiguration(struct soap *soap, tt__ReceiverConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReceiverConfiguration", p->soap_type() == SOAP_TYPE_tt__ReceiverConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverConfiguration(struct soap *soap, const char *URL, tt__ReceiverConfiguration 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, "tt:ReceiverConfiguration", p->soap_type() == SOAP_TYPE_tt__ReceiverConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverConfiguration(struct soap *soap, const char *URL, tt__ReceiverConfiguration 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, "tt:ReceiverConfiguration", p->soap_type() == SOAP_TYPE_tt__ReceiverConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverConfiguration(struct soap *soap, const char *URL, tt__ReceiverConfiguration 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, "tt:ReceiverConfiguration", p->soap_type() == SOAP_TYPE_tt__ReceiverConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReceiverConfiguration * SOAP_FMAC4 soap_get_tt__ReceiverConfiguration(struct soap*, tt__ReceiverConfiguration *, const char*, const char*); - -inline int soap_read_tt__ReceiverConfiguration(struct soap *soap, tt__ReceiverConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverConfiguration(struct soap *soap, const char *URL, tt__ReceiverConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverConfiguration(struct soap *soap, tt__ReceiverConfiguration *p) -{ - if (::soap_read_tt__ReceiverConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Receiver_DEFINED -#define SOAP_TYPE_tt__Receiver_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Receiver(struct soap*, const char*, int, const tt__Receiver *, const char*); -SOAP_FMAC3 tt__Receiver * SOAP_FMAC4 soap_in_tt__Receiver(struct soap*, const char*, tt__Receiver *, const char*); -SOAP_FMAC1 tt__Receiver * SOAP_FMAC2 soap_instantiate_tt__Receiver(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Receiver * soap_new_tt__Receiver(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Receiver(soap, n, NULL, NULL, NULL); -} - -inline tt__Receiver * soap_new_req_tt__Receiver( - struct soap *soap, - const std::string& Token, - tt__ReceiverConfiguration *Configuration) -{ - tt__Receiver *_p = ::soap_new_tt__Receiver(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Receiver::Token = Token; - _p->tt__Receiver::Configuration = Configuration; - } - return _p; -} - -inline tt__Receiver * soap_new_set_tt__Receiver( - struct soap *soap, - const std::string& Token, - tt__ReceiverConfiguration *Configuration, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Receiver *_p = ::soap_new_tt__Receiver(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Receiver::Token = Token; - _p->tt__Receiver::Configuration = Configuration; - _p->tt__Receiver::__any = __any; - _p->tt__Receiver::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Receiver(struct soap *soap, tt__Receiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Receiver", p->soap_type() == SOAP_TYPE_tt__Receiver ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Receiver(struct soap *soap, const char *URL, tt__Receiver 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, "tt:Receiver", p->soap_type() == SOAP_TYPE_tt__Receiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Receiver(struct soap *soap, const char *URL, tt__Receiver 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, "tt:Receiver", p->soap_type() == SOAP_TYPE_tt__Receiver ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Receiver(struct soap *soap, const char *URL, tt__Receiver 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, "tt:Receiver", p->soap_type() == SOAP_TYPE_tt__Receiver ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Receiver * SOAP_FMAC4 soap_get_tt__Receiver(struct soap*, tt__Receiver *, const char*, const char*); - -inline int soap_read_tt__Receiver(struct soap *soap, tt__Receiver *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Receiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Receiver(struct soap *soap, const char *URL, tt__Receiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Receiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Receiver(struct soap *soap, tt__Receiver *p) -{ - if (::soap_read_tt__Receiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PaneOptionExtension_DEFINED -#define SOAP_TYPE_tt__PaneOptionExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneOptionExtension(struct soap*, const char*, int, const tt__PaneOptionExtension *, const char*); -SOAP_FMAC3 tt__PaneOptionExtension * SOAP_FMAC4 soap_in_tt__PaneOptionExtension(struct soap*, const char*, tt__PaneOptionExtension *, const char*); -SOAP_FMAC1 tt__PaneOptionExtension * SOAP_FMAC2 soap_instantiate_tt__PaneOptionExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PaneOptionExtension * soap_new_tt__PaneOptionExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PaneOptionExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PaneOptionExtension * soap_new_req_tt__PaneOptionExtension( - struct soap *soap) -{ - tt__PaneOptionExtension *_p = ::soap_new_tt__PaneOptionExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PaneOptionExtension * soap_new_set_tt__PaneOptionExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PaneOptionExtension *_p = ::soap_new_tt__PaneOptionExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PaneOptionExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PaneOptionExtension(struct soap *soap, tt__PaneOptionExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PaneOptionExtension", p->soap_type() == SOAP_TYPE_tt__PaneOptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PaneOptionExtension(struct soap *soap, const char *URL, tt__PaneOptionExtension 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, "tt:PaneOptionExtension", p->soap_type() == SOAP_TYPE_tt__PaneOptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PaneOptionExtension(struct soap *soap, const char *URL, tt__PaneOptionExtension 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, "tt:PaneOptionExtension", p->soap_type() == SOAP_TYPE_tt__PaneOptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PaneOptionExtension(struct soap *soap, const char *URL, tt__PaneOptionExtension 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, "tt:PaneOptionExtension", p->soap_type() == SOAP_TYPE_tt__PaneOptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PaneOptionExtension * SOAP_FMAC4 soap_get_tt__PaneOptionExtension(struct soap*, tt__PaneOptionExtension *, const char*, const char*); - -inline int soap_read_tt__PaneOptionExtension(struct soap *soap, tt__PaneOptionExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PaneOptionExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PaneOptionExtension(struct soap *soap, const char *URL, tt__PaneOptionExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PaneOptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PaneOptionExtension(struct soap *soap, tt__PaneOptionExtension *p) -{ - if (::soap_read_tt__PaneOptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PaneLayoutOptions_DEFINED -#define SOAP_TYPE_tt__PaneLayoutOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneLayoutOptions(struct soap*, const char*, int, const tt__PaneLayoutOptions *, const char*); -SOAP_FMAC3 tt__PaneLayoutOptions * SOAP_FMAC4 soap_in_tt__PaneLayoutOptions(struct soap*, const char*, tt__PaneLayoutOptions *, const char*); -SOAP_FMAC1 tt__PaneLayoutOptions * SOAP_FMAC2 soap_instantiate_tt__PaneLayoutOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PaneLayoutOptions * soap_new_tt__PaneLayoutOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PaneLayoutOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PaneLayoutOptions * soap_new_req_tt__PaneLayoutOptions( - struct soap *soap, - const std::vector & Area) -{ - tt__PaneLayoutOptions *_p = ::soap_new_tt__PaneLayoutOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PaneLayoutOptions::Area = Area; - } - return _p; -} - -inline tt__PaneLayoutOptions * soap_new_set_tt__PaneLayoutOptions( - struct soap *soap, - const std::vector & Area, - tt__PaneOptionExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PaneLayoutOptions *_p = ::soap_new_tt__PaneLayoutOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PaneLayoutOptions::Area = Area; - _p->tt__PaneLayoutOptions::Extension = Extension; - _p->tt__PaneLayoutOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PaneLayoutOptions(struct soap *soap, tt__PaneLayoutOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PaneLayoutOptions", p->soap_type() == SOAP_TYPE_tt__PaneLayoutOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PaneLayoutOptions(struct soap *soap, const char *URL, tt__PaneLayoutOptions 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, "tt:PaneLayoutOptions", p->soap_type() == SOAP_TYPE_tt__PaneLayoutOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PaneLayoutOptions(struct soap *soap, const char *URL, tt__PaneLayoutOptions 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, "tt:PaneLayoutOptions", p->soap_type() == SOAP_TYPE_tt__PaneLayoutOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PaneLayoutOptions(struct soap *soap, const char *URL, tt__PaneLayoutOptions 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, "tt:PaneLayoutOptions", p->soap_type() == SOAP_TYPE_tt__PaneLayoutOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PaneLayoutOptions * SOAP_FMAC4 soap_get_tt__PaneLayoutOptions(struct soap*, tt__PaneLayoutOptions *, const char*, const char*); - -inline int soap_read_tt__PaneLayoutOptions(struct soap *soap, tt__PaneLayoutOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PaneLayoutOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PaneLayoutOptions(struct soap *soap, const char *URL, tt__PaneLayoutOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PaneLayoutOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PaneLayoutOptions(struct soap *soap, tt__PaneLayoutOptions *p) -{ - if (::soap_read_tt__PaneLayoutOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LayoutOptionsExtension_DEFINED -#define SOAP_TYPE_tt__LayoutOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LayoutOptionsExtension(struct soap*, const char*, int, const tt__LayoutOptionsExtension *, const char*); -SOAP_FMAC3 tt__LayoutOptionsExtension * SOAP_FMAC4 soap_in_tt__LayoutOptionsExtension(struct soap*, const char*, tt__LayoutOptionsExtension *, const char*); -SOAP_FMAC1 tt__LayoutOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__LayoutOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LayoutOptionsExtension * soap_new_tt__LayoutOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LayoutOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__LayoutOptionsExtension * soap_new_req_tt__LayoutOptionsExtension( - struct soap *soap) -{ - tt__LayoutOptionsExtension *_p = ::soap_new_tt__LayoutOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__LayoutOptionsExtension * soap_new_set_tt__LayoutOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__LayoutOptionsExtension *_p = ::soap_new_tt__LayoutOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LayoutOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__LayoutOptionsExtension(struct soap *soap, tt__LayoutOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LayoutOptionsExtension", p->soap_type() == SOAP_TYPE_tt__LayoutOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LayoutOptionsExtension(struct soap *soap, const char *URL, tt__LayoutOptionsExtension 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, "tt:LayoutOptionsExtension", p->soap_type() == SOAP_TYPE_tt__LayoutOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LayoutOptionsExtension(struct soap *soap, const char *URL, tt__LayoutOptionsExtension 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, "tt:LayoutOptionsExtension", p->soap_type() == SOAP_TYPE_tt__LayoutOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LayoutOptionsExtension(struct soap *soap, const char *URL, tt__LayoutOptionsExtension 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, "tt:LayoutOptionsExtension", p->soap_type() == SOAP_TYPE_tt__LayoutOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LayoutOptionsExtension * SOAP_FMAC4 soap_get_tt__LayoutOptionsExtension(struct soap*, tt__LayoutOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__LayoutOptionsExtension(struct soap *soap, tt__LayoutOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LayoutOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LayoutOptionsExtension(struct soap *soap, const char *URL, tt__LayoutOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LayoutOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LayoutOptionsExtension(struct soap *soap, tt__LayoutOptionsExtension *p) -{ - if (::soap_read_tt__LayoutOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LayoutOptions_DEFINED -#define SOAP_TYPE_tt__LayoutOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LayoutOptions(struct soap*, const char*, int, const tt__LayoutOptions *, const char*); -SOAP_FMAC3 tt__LayoutOptions * SOAP_FMAC4 soap_in_tt__LayoutOptions(struct soap*, const char*, tt__LayoutOptions *, const char*); -SOAP_FMAC1 tt__LayoutOptions * SOAP_FMAC2 soap_instantiate_tt__LayoutOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LayoutOptions * soap_new_tt__LayoutOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LayoutOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__LayoutOptions * soap_new_req_tt__LayoutOptions( - struct soap *soap, - const std::vector & PaneLayoutOptions) -{ - tt__LayoutOptions *_p = ::soap_new_tt__LayoutOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LayoutOptions::PaneLayoutOptions = PaneLayoutOptions; - } - return _p; -} - -inline tt__LayoutOptions * soap_new_set_tt__LayoutOptions( - struct soap *soap, - const std::vector & PaneLayoutOptions, - tt__LayoutOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__LayoutOptions *_p = ::soap_new_tt__LayoutOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LayoutOptions::PaneLayoutOptions = PaneLayoutOptions; - _p->tt__LayoutOptions::Extension = Extension; - _p->tt__LayoutOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__LayoutOptions(struct soap *soap, tt__LayoutOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LayoutOptions", p->soap_type() == SOAP_TYPE_tt__LayoutOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LayoutOptions(struct soap *soap, const char *URL, tt__LayoutOptions 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, "tt:LayoutOptions", p->soap_type() == SOAP_TYPE_tt__LayoutOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LayoutOptions(struct soap *soap, const char *URL, tt__LayoutOptions 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, "tt:LayoutOptions", p->soap_type() == SOAP_TYPE_tt__LayoutOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LayoutOptions(struct soap *soap, const char *URL, tt__LayoutOptions 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, "tt:LayoutOptions", p->soap_type() == SOAP_TYPE_tt__LayoutOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LayoutOptions * SOAP_FMAC4 soap_get_tt__LayoutOptions(struct soap*, tt__LayoutOptions *, const char*, const char*); - -inline int soap_read_tt__LayoutOptions(struct soap *soap, tt__LayoutOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LayoutOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LayoutOptions(struct soap *soap, const char *URL, tt__LayoutOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LayoutOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LayoutOptions(struct soap *soap, tt__LayoutOptions *p) -{ - if (::soap_read_tt__LayoutOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CodingCapabilities_DEFINED -#define SOAP_TYPE_tt__CodingCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CodingCapabilities(struct soap*, const char*, int, const tt__CodingCapabilities *, const char*); -SOAP_FMAC3 tt__CodingCapabilities * SOAP_FMAC4 soap_in_tt__CodingCapabilities(struct soap*, const char*, tt__CodingCapabilities *, const char*); -SOAP_FMAC1 tt__CodingCapabilities * SOAP_FMAC2 soap_instantiate_tt__CodingCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CodingCapabilities * soap_new_tt__CodingCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CodingCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__CodingCapabilities * soap_new_req_tt__CodingCapabilities( - struct soap *soap, - tt__VideoDecoderConfigurationOptions *VideoDecodingCapabilities) -{ - tt__CodingCapabilities *_p = ::soap_new_tt__CodingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CodingCapabilities::VideoDecodingCapabilities = VideoDecodingCapabilities; - } - return _p; -} - -inline tt__CodingCapabilities * soap_new_set_tt__CodingCapabilities( - struct soap *soap, - tt__AudioEncoderConfigurationOptions *AudioEncodingCapabilities, - tt__AudioDecoderConfigurationOptions *AudioDecodingCapabilities, - tt__VideoDecoderConfigurationOptions *VideoDecodingCapabilities, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__CodingCapabilities *_p = ::soap_new_tt__CodingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CodingCapabilities::AudioEncodingCapabilities = AudioEncodingCapabilities; - _p->tt__CodingCapabilities::AudioDecodingCapabilities = AudioDecodingCapabilities; - _p->tt__CodingCapabilities::VideoDecodingCapabilities = VideoDecodingCapabilities; - _p->tt__CodingCapabilities::__any = __any; - _p->tt__CodingCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__CodingCapabilities(struct soap *soap, tt__CodingCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CodingCapabilities", p->soap_type() == SOAP_TYPE_tt__CodingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CodingCapabilities(struct soap *soap, const char *URL, tt__CodingCapabilities 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, "tt:CodingCapabilities", p->soap_type() == SOAP_TYPE_tt__CodingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CodingCapabilities(struct soap *soap, const char *URL, tt__CodingCapabilities 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, "tt:CodingCapabilities", p->soap_type() == SOAP_TYPE_tt__CodingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CodingCapabilities(struct soap *soap, const char *URL, tt__CodingCapabilities 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, "tt:CodingCapabilities", p->soap_type() == SOAP_TYPE_tt__CodingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CodingCapabilities * SOAP_FMAC4 soap_get_tt__CodingCapabilities(struct soap*, tt__CodingCapabilities *, const char*, const char*); - -inline int soap_read_tt__CodingCapabilities(struct soap *soap, tt__CodingCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CodingCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CodingCapabilities(struct soap *soap, const char *URL, tt__CodingCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CodingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CodingCapabilities(struct soap *soap, tt__CodingCapabilities *p) -{ - if (::soap_read_tt__CodingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LayoutExtension_DEFINED -#define SOAP_TYPE_tt__LayoutExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LayoutExtension(struct soap*, const char*, int, const tt__LayoutExtension *, const char*); -SOAP_FMAC3 tt__LayoutExtension * SOAP_FMAC4 soap_in_tt__LayoutExtension(struct soap*, const char*, tt__LayoutExtension *, const char*); -SOAP_FMAC1 tt__LayoutExtension * SOAP_FMAC2 soap_instantiate_tt__LayoutExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LayoutExtension * soap_new_tt__LayoutExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LayoutExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__LayoutExtension * soap_new_req_tt__LayoutExtension( - struct soap *soap) -{ - tt__LayoutExtension *_p = ::soap_new_tt__LayoutExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__LayoutExtension * soap_new_set_tt__LayoutExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__LayoutExtension *_p = ::soap_new_tt__LayoutExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LayoutExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__LayoutExtension(struct soap *soap, tt__LayoutExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LayoutExtension", p->soap_type() == SOAP_TYPE_tt__LayoutExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LayoutExtension(struct soap *soap, const char *URL, tt__LayoutExtension 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, "tt:LayoutExtension", p->soap_type() == SOAP_TYPE_tt__LayoutExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LayoutExtension(struct soap *soap, const char *URL, tt__LayoutExtension 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, "tt:LayoutExtension", p->soap_type() == SOAP_TYPE_tt__LayoutExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LayoutExtension(struct soap *soap, const char *URL, tt__LayoutExtension 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, "tt:LayoutExtension", p->soap_type() == SOAP_TYPE_tt__LayoutExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LayoutExtension * SOAP_FMAC4 soap_get_tt__LayoutExtension(struct soap*, tt__LayoutExtension *, const char*, const char*); - -inline int soap_read_tt__LayoutExtension(struct soap *soap, tt__LayoutExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LayoutExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LayoutExtension(struct soap *soap, const char *URL, tt__LayoutExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LayoutExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LayoutExtension(struct soap *soap, tt__LayoutExtension *p) -{ - if (::soap_read_tt__LayoutExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Layout_DEFINED -#define SOAP_TYPE_tt__Layout_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Layout(struct soap*, const char*, int, const tt__Layout *, const char*); -SOAP_FMAC3 tt__Layout * SOAP_FMAC4 soap_in_tt__Layout(struct soap*, const char*, tt__Layout *, const char*); -SOAP_FMAC1 tt__Layout * SOAP_FMAC2 soap_instantiate_tt__Layout(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Layout * soap_new_tt__Layout(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Layout(soap, n, NULL, NULL, NULL); -} - -inline tt__Layout * soap_new_req_tt__Layout( - struct soap *soap, - const std::vector & PaneLayout) -{ - tt__Layout *_p = ::soap_new_tt__Layout(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Layout::PaneLayout = PaneLayout; - } - return _p; -} - -inline tt__Layout * soap_new_set_tt__Layout( - struct soap *soap, - const std::vector & PaneLayout, - tt__LayoutExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Layout *_p = ::soap_new_tt__Layout(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Layout::PaneLayout = PaneLayout; - _p->tt__Layout::Extension = Extension; - _p->tt__Layout::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Layout(struct soap *soap, tt__Layout const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Layout", p->soap_type() == SOAP_TYPE_tt__Layout ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Layout(struct soap *soap, const char *URL, tt__Layout 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, "tt:Layout", p->soap_type() == SOAP_TYPE_tt__Layout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Layout(struct soap *soap, const char *URL, tt__Layout 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, "tt:Layout", p->soap_type() == SOAP_TYPE_tt__Layout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Layout(struct soap *soap, const char *URL, tt__Layout 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, "tt:Layout", p->soap_type() == SOAP_TYPE_tt__Layout ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Layout * SOAP_FMAC4 soap_get_tt__Layout(struct soap*, tt__Layout *, const char*, const char*); - -inline int soap_read_tt__Layout(struct soap *soap, tt__Layout *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Layout(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Layout(struct soap *soap, const char *URL, tt__Layout *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Layout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Layout(struct soap *soap, tt__Layout *p) -{ - if (::soap_read_tt__Layout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PaneLayout_DEFINED -#define SOAP_TYPE_tt__PaneLayout_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneLayout(struct soap*, const char*, int, const tt__PaneLayout *, const char*); -SOAP_FMAC3 tt__PaneLayout * SOAP_FMAC4 soap_in_tt__PaneLayout(struct soap*, const char*, tt__PaneLayout *, const char*); -SOAP_FMAC1 tt__PaneLayout * SOAP_FMAC2 soap_instantiate_tt__PaneLayout(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PaneLayout * soap_new_tt__PaneLayout(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PaneLayout(soap, n, NULL, NULL, NULL); -} - -inline tt__PaneLayout * soap_new_req_tt__PaneLayout( - struct soap *soap, - const std::string& Pane, - tt__Rectangle *Area) -{ - tt__PaneLayout *_p = ::soap_new_tt__PaneLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PaneLayout::Pane = Pane; - _p->tt__PaneLayout::Area = Area; - } - return _p; -} - -inline tt__PaneLayout * soap_new_set_tt__PaneLayout( - struct soap *soap, - const std::string& Pane, - tt__Rectangle *Area, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PaneLayout *_p = ::soap_new_tt__PaneLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PaneLayout::Pane = Pane; - _p->tt__PaneLayout::Area = Area; - _p->tt__PaneLayout::__any = __any; - _p->tt__PaneLayout::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PaneLayout(struct soap *soap, tt__PaneLayout const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PaneLayout", p->soap_type() == SOAP_TYPE_tt__PaneLayout ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PaneLayout(struct soap *soap, const char *URL, tt__PaneLayout 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, "tt:PaneLayout", p->soap_type() == SOAP_TYPE_tt__PaneLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PaneLayout(struct soap *soap, const char *URL, tt__PaneLayout 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, "tt:PaneLayout", p->soap_type() == SOAP_TYPE_tt__PaneLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PaneLayout(struct soap *soap, const char *URL, tt__PaneLayout 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, "tt:PaneLayout", p->soap_type() == SOAP_TYPE_tt__PaneLayout ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PaneLayout * SOAP_FMAC4 soap_get_tt__PaneLayout(struct soap*, tt__PaneLayout *, const char*, const char*); - -inline int soap_read_tt__PaneLayout(struct soap *soap, tt__PaneLayout *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PaneLayout(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PaneLayout(struct soap *soap, const char *URL, tt__PaneLayout *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PaneLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PaneLayout(struct soap *soap, tt__PaneLayout *p) -{ - if (::soap_read_tt__PaneLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PaneConfiguration_DEFINED -#define SOAP_TYPE_tt__PaneConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PaneConfiguration(struct soap*, const char*, int, const tt__PaneConfiguration *, const char*); -SOAP_FMAC3 tt__PaneConfiguration * SOAP_FMAC4 soap_in_tt__PaneConfiguration(struct soap*, const char*, tt__PaneConfiguration *, const char*); -SOAP_FMAC1 tt__PaneConfiguration * SOAP_FMAC2 soap_instantiate_tt__PaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PaneConfiguration * soap_new_tt__PaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__PaneConfiguration * soap_new_req_tt__PaneConfiguration( - struct soap *soap, - const std::string& Token) -{ - tt__PaneConfiguration *_p = ::soap_new_tt__PaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PaneConfiguration::Token = Token; - } - return _p; -} - -inline tt__PaneConfiguration * soap_new_set_tt__PaneConfiguration( - struct soap *soap, - std::string *PaneName, - std::string *AudioOutputToken, - std::string *AudioSourceToken, - tt__AudioEncoderConfiguration *AudioEncoderConfiguration, - std::string *ReceiverToken, - const std::string& Token, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PaneConfiguration *_p = ::soap_new_tt__PaneConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PaneConfiguration::PaneName = PaneName; - _p->tt__PaneConfiguration::AudioOutputToken = AudioOutputToken; - _p->tt__PaneConfiguration::AudioSourceToken = AudioSourceToken; - _p->tt__PaneConfiguration::AudioEncoderConfiguration = AudioEncoderConfiguration; - _p->tt__PaneConfiguration::ReceiverToken = ReceiverToken; - _p->tt__PaneConfiguration::Token = Token; - _p->tt__PaneConfiguration::__any = __any; - _p->tt__PaneConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PaneConfiguration(struct soap *soap, tt__PaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PaneConfiguration", p->soap_type() == SOAP_TYPE_tt__PaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PaneConfiguration(struct soap *soap, const char *URL, tt__PaneConfiguration 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, "tt:PaneConfiguration", p->soap_type() == SOAP_TYPE_tt__PaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PaneConfiguration(struct soap *soap, const char *URL, tt__PaneConfiguration 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, "tt:PaneConfiguration", p->soap_type() == SOAP_TYPE_tt__PaneConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PaneConfiguration(struct soap *soap, const char *URL, tt__PaneConfiguration 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, "tt:PaneConfiguration", p->soap_type() == SOAP_TYPE_tt__PaneConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PaneConfiguration * SOAP_FMAC4 soap_get_tt__PaneConfiguration(struct soap*, tt__PaneConfiguration *, const char*, const char*); - -inline int soap_read_tt__PaneConfiguration(struct soap *soap, tt__PaneConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PaneConfiguration(struct soap *soap, const char *URL, tt__PaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PaneConfiguration(struct soap *soap, tt__PaneConfiguration *p) -{ - if (::soap_read_tt__PaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CellLayout_DEFINED -#define SOAP_TYPE_tt__CellLayout_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CellLayout(struct soap*, const char*, int, const tt__CellLayout *, const char*); -SOAP_FMAC3 tt__CellLayout * SOAP_FMAC4 soap_in_tt__CellLayout(struct soap*, const char*, tt__CellLayout *, const char*); -SOAP_FMAC1 tt__CellLayout * SOAP_FMAC2 soap_instantiate_tt__CellLayout(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CellLayout * soap_new_tt__CellLayout(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CellLayout(soap, n, NULL, NULL, NULL); -} - -inline tt__CellLayout * soap_new_req_tt__CellLayout( - struct soap *soap, - tt__Transformation *Transformation, - const std::string& Columns, - const std::string& Rows) -{ - tt__CellLayout *_p = ::soap_new_tt__CellLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CellLayout::Transformation = Transformation; - _p->tt__CellLayout::Columns = Columns; - _p->tt__CellLayout::Rows = Rows; - } - return _p; -} - -inline tt__CellLayout * soap_new_set_tt__CellLayout( - struct soap *soap, - tt__Transformation *Transformation, - const std::vector & __any, - const std::string& Columns, - const std::string& Rows, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__CellLayout *_p = ::soap_new_tt__CellLayout(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CellLayout::Transformation = Transformation; - _p->tt__CellLayout::__any = __any; - _p->tt__CellLayout::Columns = Columns; - _p->tt__CellLayout::Rows = Rows; - _p->tt__CellLayout::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__CellLayout(struct soap *soap, tt__CellLayout const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CellLayout", p->soap_type() == SOAP_TYPE_tt__CellLayout ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CellLayout(struct soap *soap, const char *URL, tt__CellLayout 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, "tt:CellLayout", p->soap_type() == SOAP_TYPE_tt__CellLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CellLayout(struct soap *soap, const char *URL, tt__CellLayout 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, "tt:CellLayout", p->soap_type() == SOAP_TYPE_tt__CellLayout ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CellLayout(struct soap *soap, const char *URL, tt__CellLayout 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, "tt:CellLayout", p->soap_type() == SOAP_TYPE_tt__CellLayout ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CellLayout * SOAP_FMAC4 soap_get_tt__CellLayout(struct soap*, tt__CellLayout *, const char*, const char*); - -inline int soap_read_tt__CellLayout(struct soap *soap, tt__CellLayout *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CellLayout(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CellLayout(struct soap *soap, const char *URL, tt__CellLayout *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CellLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CellLayout(struct soap *soap, tt__CellLayout *p) -{ - if (::soap_read_tt__CellLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MotionExpressionConfiguration_DEFINED -#define SOAP_TYPE_tt__MotionExpressionConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MotionExpressionConfiguration(struct soap*, const char*, int, const tt__MotionExpressionConfiguration *, const char*); -SOAP_FMAC3 tt__MotionExpressionConfiguration * SOAP_FMAC4 soap_in_tt__MotionExpressionConfiguration(struct soap*, const char*, tt__MotionExpressionConfiguration *, const char*); -SOAP_FMAC1 tt__MotionExpressionConfiguration * SOAP_FMAC2 soap_instantiate_tt__MotionExpressionConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MotionExpressionConfiguration * soap_new_tt__MotionExpressionConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MotionExpressionConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__MotionExpressionConfiguration * soap_new_req_tt__MotionExpressionConfiguration( - struct soap *soap, - tt__MotionExpression *MotionExpression) -{ - tt__MotionExpressionConfiguration *_p = ::soap_new_tt__MotionExpressionConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MotionExpressionConfiguration::MotionExpression = MotionExpression; - } - return _p; -} - -inline tt__MotionExpressionConfiguration * soap_new_set_tt__MotionExpressionConfiguration( - struct soap *soap, - tt__MotionExpression *MotionExpression, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MotionExpressionConfiguration *_p = ::soap_new_tt__MotionExpressionConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MotionExpressionConfiguration::MotionExpression = MotionExpression; - _p->tt__MotionExpressionConfiguration::__any = __any; - _p->tt__MotionExpressionConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MotionExpressionConfiguration(struct soap *soap, tt__MotionExpressionConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MotionExpressionConfiguration", p->soap_type() == SOAP_TYPE_tt__MotionExpressionConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MotionExpressionConfiguration(struct soap *soap, const char *URL, tt__MotionExpressionConfiguration 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, "tt:MotionExpressionConfiguration", p->soap_type() == SOAP_TYPE_tt__MotionExpressionConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MotionExpressionConfiguration(struct soap *soap, const char *URL, tt__MotionExpressionConfiguration 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, "tt:MotionExpressionConfiguration", p->soap_type() == SOAP_TYPE_tt__MotionExpressionConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MotionExpressionConfiguration(struct soap *soap, const char *URL, tt__MotionExpressionConfiguration 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, "tt:MotionExpressionConfiguration", p->soap_type() == SOAP_TYPE_tt__MotionExpressionConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MotionExpressionConfiguration * SOAP_FMAC4 soap_get_tt__MotionExpressionConfiguration(struct soap*, tt__MotionExpressionConfiguration *, const char*, const char*); - -inline int soap_read_tt__MotionExpressionConfiguration(struct soap *soap, tt__MotionExpressionConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MotionExpressionConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MotionExpressionConfiguration(struct soap *soap, const char *URL, tt__MotionExpressionConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MotionExpressionConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MotionExpressionConfiguration(struct soap *soap, tt__MotionExpressionConfiguration *p) -{ - if (::soap_read_tt__MotionExpressionConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MotionExpression_DEFINED -#define SOAP_TYPE_tt__MotionExpression_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MotionExpression(struct soap*, const char*, int, const tt__MotionExpression *, const char*); -SOAP_FMAC3 tt__MotionExpression * SOAP_FMAC4 soap_in_tt__MotionExpression(struct soap*, const char*, tt__MotionExpression *, const char*); -SOAP_FMAC1 tt__MotionExpression * SOAP_FMAC2 soap_instantiate_tt__MotionExpression(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MotionExpression * soap_new_tt__MotionExpression(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MotionExpression(soap, n, NULL, NULL, NULL); -} - -inline tt__MotionExpression * soap_new_req_tt__MotionExpression( - struct soap *soap, - const std::string& Expression) -{ - tt__MotionExpression *_p = ::soap_new_tt__MotionExpression(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MotionExpression::Expression = Expression; - } - return _p; -} - -inline tt__MotionExpression * soap_new_set_tt__MotionExpression( - struct soap *soap, - const std::string& Expression, - const std::vector & __any, - std::string *Type, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MotionExpression *_p = ::soap_new_tt__MotionExpression(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MotionExpression::Expression = Expression; - _p->tt__MotionExpression::__any = __any; - _p->tt__MotionExpression::Type = Type; - _p->tt__MotionExpression::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MotionExpression(struct soap *soap, tt__MotionExpression const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MotionExpression", p->soap_type() == SOAP_TYPE_tt__MotionExpression ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MotionExpression(struct soap *soap, const char *URL, tt__MotionExpression 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, "tt:MotionExpression", p->soap_type() == SOAP_TYPE_tt__MotionExpression ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MotionExpression(struct soap *soap, const char *URL, tt__MotionExpression 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, "tt:MotionExpression", p->soap_type() == SOAP_TYPE_tt__MotionExpression ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MotionExpression(struct soap *soap, const char *URL, tt__MotionExpression 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, "tt:MotionExpression", p->soap_type() == SOAP_TYPE_tt__MotionExpression ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MotionExpression * SOAP_FMAC4 soap_get_tt__MotionExpression(struct soap*, tt__MotionExpression *, const char*, const char*); - -inline int soap_read_tt__MotionExpression(struct soap *soap, tt__MotionExpression *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MotionExpression(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MotionExpression(struct soap *soap, const char *URL, tt__MotionExpression *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MotionExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MotionExpression(struct soap *soap, tt__MotionExpression *p) -{ - if (::soap_read_tt__MotionExpression(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PolylineArrayConfiguration_DEFINED -#define SOAP_TYPE_tt__PolylineArrayConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolylineArrayConfiguration(struct soap*, const char*, int, const tt__PolylineArrayConfiguration *, const char*); -SOAP_FMAC3 tt__PolylineArrayConfiguration * SOAP_FMAC4 soap_in_tt__PolylineArrayConfiguration(struct soap*, const char*, tt__PolylineArrayConfiguration *, const char*); -SOAP_FMAC1 tt__PolylineArrayConfiguration * SOAP_FMAC2 soap_instantiate_tt__PolylineArrayConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PolylineArrayConfiguration * soap_new_tt__PolylineArrayConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PolylineArrayConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__PolylineArrayConfiguration * soap_new_req_tt__PolylineArrayConfiguration( - struct soap *soap, - tt__PolylineArray *PolylineArray) -{ - tt__PolylineArrayConfiguration *_p = ::soap_new_tt__PolylineArrayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PolylineArrayConfiguration::PolylineArray = PolylineArray; - } - return _p; -} - -inline tt__PolylineArrayConfiguration * soap_new_set_tt__PolylineArrayConfiguration( - struct soap *soap, - tt__PolylineArray *PolylineArray, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PolylineArrayConfiguration *_p = ::soap_new_tt__PolylineArrayConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PolylineArrayConfiguration::PolylineArray = PolylineArray; - _p->tt__PolylineArrayConfiguration::__any = __any; - _p->tt__PolylineArrayConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PolylineArrayConfiguration(struct soap *soap, tt__PolylineArrayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PolylineArrayConfiguration", p->soap_type() == SOAP_TYPE_tt__PolylineArrayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PolylineArrayConfiguration(struct soap *soap, const char *URL, tt__PolylineArrayConfiguration 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, "tt:PolylineArrayConfiguration", p->soap_type() == SOAP_TYPE_tt__PolylineArrayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PolylineArrayConfiguration(struct soap *soap, const char *URL, tt__PolylineArrayConfiguration 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, "tt:PolylineArrayConfiguration", p->soap_type() == SOAP_TYPE_tt__PolylineArrayConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PolylineArrayConfiguration(struct soap *soap, const char *URL, tt__PolylineArrayConfiguration 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, "tt:PolylineArrayConfiguration", p->soap_type() == SOAP_TYPE_tt__PolylineArrayConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PolylineArrayConfiguration * SOAP_FMAC4 soap_get_tt__PolylineArrayConfiguration(struct soap*, tt__PolylineArrayConfiguration *, const char*, const char*); - -inline int soap_read_tt__PolylineArrayConfiguration(struct soap *soap, tt__PolylineArrayConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PolylineArrayConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PolylineArrayConfiguration(struct soap *soap, const char *URL, tt__PolylineArrayConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PolylineArrayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PolylineArrayConfiguration(struct soap *soap, tt__PolylineArrayConfiguration *p) -{ - if (::soap_read_tt__PolylineArrayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PolylineArrayExtension_DEFINED -#define SOAP_TYPE_tt__PolylineArrayExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolylineArrayExtension(struct soap*, const char*, int, const tt__PolylineArrayExtension *, const char*); -SOAP_FMAC3 tt__PolylineArrayExtension * SOAP_FMAC4 soap_in_tt__PolylineArrayExtension(struct soap*, const char*, tt__PolylineArrayExtension *, const char*); -SOAP_FMAC1 tt__PolylineArrayExtension * SOAP_FMAC2 soap_instantiate_tt__PolylineArrayExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PolylineArrayExtension * soap_new_tt__PolylineArrayExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PolylineArrayExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PolylineArrayExtension * soap_new_req_tt__PolylineArrayExtension( - struct soap *soap) -{ - tt__PolylineArrayExtension *_p = ::soap_new_tt__PolylineArrayExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PolylineArrayExtension * soap_new_set_tt__PolylineArrayExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PolylineArrayExtension *_p = ::soap_new_tt__PolylineArrayExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PolylineArrayExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PolylineArrayExtension(struct soap *soap, tt__PolylineArrayExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PolylineArrayExtension", p->soap_type() == SOAP_TYPE_tt__PolylineArrayExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PolylineArrayExtension(struct soap *soap, const char *URL, tt__PolylineArrayExtension 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, "tt:PolylineArrayExtension", p->soap_type() == SOAP_TYPE_tt__PolylineArrayExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PolylineArrayExtension(struct soap *soap, const char *URL, tt__PolylineArrayExtension 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, "tt:PolylineArrayExtension", p->soap_type() == SOAP_TYPE_tt__PolylineArrayExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PolylineArrayExtension(struct soap *soap, const char *URL, tt__PolylineArrayExtension 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, "tt:PolylineArrayExtension", p->soap_type() == SOAP_TYPE_tt__PolylineArrayExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PolylineArrayExtension * SOAP_FMAC4 soap_get_tt__PolylineArrayExtension(struct soap*, tt__PolylineArrayExtension *, const char*, const char*); - -inline int soap_read_tt__PolylineArrayExtension(struct soap *soap, tt__PolylineArrayExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PolylineArrayExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PolylineArrayExtension(struct soap *soap, const char *URL, tt__PolylineArrayExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PolylineArrayExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PolylineArrayExtension(struct soap *soap, tt__PolylineArrayExtension *p) -{ - if (::soap_read_tt__PolylineArrayExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PolylineArray_DEFINED -#define SOAP_TYPE_tt__PolylineArray_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PolylineArray(struct soap*, const char*, int, const tt__PolylineArray *, const char*); -SOAP_FMAC3 tt__PolylineArray * SOAP_FMAC4 soap_in_tt__PolylineArray(struct soap*, const char*, tt__PolylineArray *, const char*); -SOAP_FMAC1 tt__PolylineArray * SOAP_FMAC2 soap_instantiate_tt__PolylineArray(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PolylineArray * soap_new_tt__PolylineArray(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PolylineArray(soap, n, NULL, NULL, NULL); -} - -inline tt__PolylineArray * soap_new_req_tt__PolylineArray( - struct soap *soap, - const std::vector & Segment) -{ - tt__PolylineArray *_p = ::soap_new_tt__PolylineArray(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PolylineArray::Segment = Segment; - } - return _p; -} - -inline tt__PolylineArray * soap_new_set_tt__PolylineArray( - struct soap *soap, - const std::vector & Segment, - tt__PolylineArrayExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PolylineArray *_p = ::soap_new_tt__PolylineArray(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PolylineArray::Segment = Segment; - _p->tt__PolylineArray::Extension = Extension; - _p->tt__PolylineArray::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PolylineArray(struct soap *soap, tt__PolylineArray const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PolylineArray", p->soap_type() == SOAP_TYPE_tt__PolylineArray ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PolylineArray(struct soap *soap, const char *URL, tt__PolylineArray 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, "tt:PolylineArray", p->soap_type() == SOAP_TYPE_tt__PolylineArray ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PolylineArray(struct soap *soap, const char *URL, tt__PolylineArray 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, "tt:PolylineArray", p->soap_type() == SOAP_TYPE_tt__PolylineArray ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PolylineArray(struct soap *soap, const char *URL, tt__PolylineArray 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, "tt:PolylineArray", p->soap_type() == SOAP_TYPE_tt__PolylineArray ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PolylineArray * SOAP_FMAC4 soap_get_tt__PolylineArray(struct soap*, tt__PolylineArray *, const char*, const char*); - -inline int soap_read_tt__PolylineArray(struct soap *soap, tt__PolylineArray *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PolylineArray(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PolylineArray(struct soap *soap, const char *URL, tt__PolylineArray *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PolylineArray(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PolylineArray(struct soap *soap, tt__PolylineArray *p) -{ - if (::soap_read_tt__PolylineArray(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SupportedAnalyticsModulesExtension_DEFINED -#define SOAP_TYPE_tt__SupportedAnalyticsModulesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedAnalyticsModulesExtension(struct soap*, const char*, int, const tt__SupportedAnalyticsModulesExtension *, const char*); -SOAP_FMAC3 tt__SupportedAnalyticsModulesExtension * SOAP_FMAC4 soap_in_tt__SupportedAnalyticsModulesExtension(struct soap*, const char*, tt__SupportedAnalyticsModulesExtension *, const char*); -SOAP_FMAC1 tt__SupportedAnalyticsModulesExtension * SOAP_FMAC2 soap_instantiate_tt__SupportedAnalyticsModulesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SupportedAnalyticsModulesExtension * soap_new_tt__SupportedAnalyticsModulesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SupportedAnalyticsModulesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__SupportedAnalyticsModulesExtension * soap_new_req_tt__SupportedAnalyticsModulesExtension( - struct soap *soap) -{ - tt__SupportedAnalyticsModulesExtension *_p = ::soap_new_tt__SupportedAnalyticsModulesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SupportedAnalyticsModulesExtension * soap_new_set_tt__SupportedAnalyticsModulesExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__SupportedAnalyticsModulesExtension *_p = ::soap_new_tt__SupportedAnalyticsModulesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SupportedAnalyticsModulesExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__SupportedAnalyticsModulesExtension(struct soap *soap, tt__SupportedAnalyticsModulesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SupportedAnalyticsModulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModulesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SupportedAnalyticsModulesExtension(struct soap *soap, const char *URL, tt__SupportedAnalyticsModulesExtension 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, "tt:SupportedAnalyticsModulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModulesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SupportedAnalyticsModulesExtension(struct soap *soap, const char *URL, tt__SupportedAnalyticsModulesExtension 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, "tt:SupportedAnalyticsModulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModulesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SupportedAnalyticsModulesExtension(struct soap *soap, const char *URL, tt__SupportedAnalyticsModulesExtension 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, "tt:SupportedAnalyticsModulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModulesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SupportedAnalyticsModulesExtension * SOAP_FMAC4 soap_get_tt__SupportedAnalyticsModulesExtension(struct soap*, tt__SupportedAnalyticsModulesExtension *, const char*, const char*); - -inline int soap_read_tt__SupportedAnalyticsModulesExtension(struct soap *soap, tt__SupportedAnalyticsModulesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SupportedAnalyticsModulesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SupportedAnalyticsModulesExtension(struct soap *soap, const char *URL, tt__SupportedAnalyticsModulesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SupportedAnalyticsModulesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SupportedAnalyticsModulesExtension(struct soap *soap, tt__SupportedAnalyticsModulesExtension *p) -{ - if (::soap_read_tt__SupportedAnalyticsModulesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SupportedAnalyticsModules_DEFINED -#define SOAP_TYPE_tt__SupportedAnalyticsModules_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedAnalyticsModules(struct soap*, const char*, int, const tt__SupportedAnalyticsModules *, const char*); -SOAP_FMAC3 tt__SupportedAnalyticsModules * SOAP_FMAC4 soap_in_tt__SupportedAnalyticsModules(struct soap*, const char*, tt__SupportedAnalyticsModules *, const char*); -SOAP_FMAC1 tt__SupportedAnalyticsModules * SOAP_FMAC2 soap_instantiate_tt__SupportedAnalyticsModules(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SupportedAnalyticsModules * soap_new_tt__SupportedAnalyticsModules(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SupportedAnalyticsModules(soap, n, NULL, NULL, NULL); -} - -inline tt__SupportedAnalyticsModules * soap_new_req_tt__SupportedAnalyticsModules( - struct soap *soap) -{ - tt__SupportedAnalyticsModules *_p = ::soap_new_tt__SupportedAnalyticsModules(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SupportedAnalyticsModules * soap_new_set_tt__SupportedAnalyticsModules( - struct soap *soap, - const std::vector & AnalyticsModuleContentSchemaLocation, - const std::vector & AnalyticsModuleDescription, - tt__SupportedAnalyticsModulesExtension *Extension, - int *Limit, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SupportedAnalyticsModules *_p = ::soap_new_tt__SupportedAnalyticsModules(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SupportedAnalyticsModules::AnalyticsModuleContentSchemaLocation = AnalyticsModuleContentSchemaLocation; - _p->tt__SupportedAnalyticsModules::AnalyticsModuleDescription = AnalyticsModuleDescription; - _p->tt__SupportedAnalyticsModules::Extension = Extension; - _p->tt__SupportedAnalyticsModules::Limit = Limit; - _p->tt__SupportedAnalyticsModules::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SupportedAnalyticsModules(struct soap *soap, tt__SupportedAnalyticsModules const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SupportedAnalyticsModules", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModules ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SupportedAnalyticsModules(struct soap *soap, const char *URL, tt__SupportedAnalyticsModules 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, "tt:SupportedAnalyticsModules", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModules ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SupportedAnalyticsModules(struct soap *soap, const char *URL, tt__SupportedAnalyticsModules 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, "tt:SupportedAnalyticsModules", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModules ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SupportedAnalyticsModules(struct soap *soap, const char *URL, tt__SupportedAnalyticsModules 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, "tt:SupportedAnalyticsModules", p->soap_type() == SOAP_TYPE_tt__SupportedAnalyticsModules ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SupportedAnalyticsModules * SOAP_FMAC4 soap_get_tt__SupportedAnalyticsModules(struct soap*, tt__SupportedAnalyticsModules *, const char*, const char*); - -inline int soap_read_tt__SupportedAnalyticsModules(struct soap *soap, tt__SupportedAnalyticsModules *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SupportedAnalyticsModules(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SupportedAnalyticsModules(struct soap *soap, const char *URL, tt__SupportedAnalyticsModules *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SupportedAnalyticsModules(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SupportedAnalyticsModules(struct soap *soap, tt__SupportedAnalyticsModules *p) -{ - if (::soap_read_tt__SupportedAnalyticsModules(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SupportedRulesExtension_DEFINED -#define SOAP_TYPE_tt__SupportedRulesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedRulesExtension(struct soap*, const char*, int, const tt__SupportedRulesExtension *, const char*); -SOAP_FMAC3 tt__SupportedRulesExtension * SOAP_FMAC4 soap_in_tt__SupportedRulesExtension(struct soap*, const char*, tt__SupportedRulesExtension *, const char*); -SOAP_FMAC1 tt__SupportedRulesExtension * SOAP_FMAC2 soap_instantiate_tt__SupportedRulesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SupportedRulesExtension * soap_new_tt__SupportedRulesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SupportedRulesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__SupportedRulesExtension * soap_new_req_tt__SupportedRulesExtension( - struct soap *soap) -{ - tt__SupportedRulesExtension *_p = ::soap_new_tt__SupportedRulesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SupportedRulesExtension * soap_new_set_tt__SupportedRulesExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__SupportedRulesExtension *_p = ::soap_new_tt__SupportedRulesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SupportedRulesExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__SupportedRulesExtension(struct soap *soap, tt__SupportedRulesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SupportedRulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedRulesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SupportedRulesExtension(struct soap *soap, const char *URL, tt__SupportedRulesExtension 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, "tt:SupportedRulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedRulesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SupportedRulesExtension(struct soap *soap, const char *URL, tt__SupportedRulesExtension 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, "tt:SupportedRulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedRulesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SupportedRulesExtension(struct soap *soap, const char *URL, tt__SupportedRulesExtension 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, "tt:SupportedRulesExtension", p->soap_type() == SOAP_TYPE_tt__SupportedRulesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SupportedRulesExtension * SOAP_FMAC4 soap_get_tt__SupportedRulesExtension(struct soap*, tt__SupportedRulesExtension *, const char*, const char*); - -inline int soap_read_tt__SupportedRulesExtension(struct soap *soap, tt__SupportedRulesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SupportedRulesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SupportedRulesExtension(struct soap *soap, const char *URL, tt__SupportedRulesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SupportedRulesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SupportedRulesExtension(struct soap *soap, tt__SupportedRulesExtension *p) -{ - if (::soap_read_tt__SupportedRulesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SupportedRules_DEFINED -#define SOAP_TYPE_tt__SupportedRules_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportedRules(struct soap*, const char*, int, const tt__SupportedRules *, const char*); -SOAP_FMAC3 tt__SupportedRules * SOAP_FMAC4 soap_in_tt__SupportedRules(struct soap*, const char*, tt__SupportedRules *, const char*); -SOAP_FMAC1 tt__SupportedRules * SOAP_FMAC2 soap_instantiate_tt__SupportedRules(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SupportedRules * soap_new_tt__SupportedRules(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SupportedRules(soap, n, NULL, NULL, NULL); -} - -inline tt__SupportedRules * soap_new_req_tt__SupportedRules( - struct soap *soap) -{ - tt__SupportedRules *_p = ::soap_new_tt__SupportedRules(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SupportedRules * soap_new_set_tt__SupportedRules( - struct soap *soap, - const std::vector & RuleContentSchemaLocation, - const std::vector & RuleDescription, - tt__SupportedRulesExtension *Extension, - int *Limit, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SupportedRules *_p = ::soap_new_tt__SupportedRules(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SupportedRules::RuleContentSchemaLocation = RuleContentSchemaLocation; - _p->tt__SupportedRules::RuleDescription = RuleDescription; - _p->tt__SupportedRules::Extension = Extension; - _p->tt__SupportedRules::Limit = Limit; - _p->tt__SupportedRules::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SupportedRules(struct soap *soap, tt__SupportedRules const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SupportedRules", p->soap_type() == SOAP_TYPE_tt__SupportedRules ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SupportedRules(struct soap *soap, const char *URL, tt__SupportedRules 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, "tt:SupportedRules", p->soap_type() == SOAP_TYPE_tt__SupportedRules ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SupportedRules(struct soap *soap, const char *URL, tt__SupportedRules 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, "tt:SupportedRules", p->soap_type() == SOAP_TYPE_tt__SupportedRules ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SupportedRules(struct soap *soap, const char *URL, tt__SupportedRules 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, "tt:SupportedRules", p->soap_type() == SOAP_TYPE_tt__SupportedRules ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SupportedRules * SOAP_FMAC4 soap_get_tt__SupportedRules(struct soap*, tt__SupportedRules *, const char*, const char*); - -inline int soap_read_tt__SupportedRules(struct soap *soap, tt__SupportedRules *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SupportedRules(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SupportedRules(struct soap *soap, const char *URL, tt__SupportedRules *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SupportedRules(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SupportedRules(struct soap *soap, tt__SupportedRules *p) -{ - if (::soap_read_tt__SupportedRules(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ConfigDescriptionExtension_DEFINED -#define SOAP_TYPE_tt__ConfigDescriptionExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ConfigDescriptionExtension(struct soap*, const char*, int, const tt__ConfigDescriptionExtension *, const char*); -SOAP_FMAC3 tt__ConfigDescriptionExtension * SOAP_FMAC4 soap_in_tt__ConfigDescriptionExtension(struct soap*, const char*, tt__ConfigDescriptionExtension *, const char*); -SOAP_FMAC1 tt__ConfigDescriptionExtension * SOAP_FMAC2 soap_instantiate_tt__ConfigDescriptionExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ConfigDescriptionExtension * soap_new_tt__ConfigDescriptionExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ConfigDescriptionExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ConfigDescriptionExtension * soap_new_req_tt__ConfigDescriptionExtension( - struct soap *soap) -{ - tt__ConfigDescriptionExtension *_p = ::soap_new_tt__ConfigDescriptionExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ConfigDescriptionExtension * soap_new_set_tt__ConfigDescriptionExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ConfigDescriptionExtension *_p = ::soap_new_tt__ConfigDescriptionExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ConfigDescriptionExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ConfigDescriptionExtension(struct soap *soap, tt__ConfigDescriptionExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ConfigDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ConfigDescriptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ConfigDescriptionExtension(struct soap *soap, const char *URL, tt__ConfigDescriptionExtension 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, "tt:ConfigDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ConfigDescriptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ConfigDescriptionExtension(struct soap *soap, const char *URL, tt__ConfigDescriptionExtension 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, "tt:ConfigDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ConfigDescriptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ConfigDescriptionExtension(struct soap *soap, const char *URL, tt__ConfigDescriptionExtension 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, "tt:ConfigDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ConfigDescriptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ConfigDescriptionExtension * SOAP_FMAC4 soap_get_tt__ConfigDescriptionExtension(struct soap*, tt__ConfigDescriptionExtension *, const char*, const char*); - -inline int soap_read_tt__ConfigDescriptionExtension(struct soap *soap, tt__ConfigDescriptionExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ConfigDescriptionExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ConfigDescriptionExtension(struct soap *soap, const char *URL, tt__ConfigDescriptionExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ConfigDescriptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ConfigDescriptionExtension(struct soap *soap, tt__ConfigDescriptionExtension *p) -{ - if (::soap_read_tt__ConfigDescriptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ConfigDescription_DEFINED -#define SOAP_TYPE_tt__ConfigDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ConfigDescription(struct soap*, const char*, int, const tt__ConfigDescription *, const char*); -SOAP_FMAC3 tt__ConfigDescription * SOAP_FMAC4 soap_in_tt__ConfigDescription(struct soap*, const char*, tt__ConfigDescription *, const char*); -SOAP_FMAC1 tt__ConfigDescription * SOAP_FMAC2 soap_instantiate_tt__ConfigDescription(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ConfigDescription * soap_new_tt__ConfigDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ConfigDescription(soap, n, NULL, NULL, NULL); -} - -inline tt__ConfigDescription * soap_new_req_tt__ConfigDescription( - struct soap *soap, - tt__ItemListDescription *Parameters, - const std::string& Name) -{ - tt__ConfigDescription *_p = ::soap_new_tt__ConfigDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ConfigDescription::Parameters = Parameters; - _p->tt__ConfigDescription::Name = Name; - } - return _p; -} - -inline tt__ConfigDescription * soap_new_set_tt__ConfigDescription( - struct soap *soap, - tt__ItemListDescription *Parameters, - const std::vector<_tt__ConfigDescription_Messages> & Messages, - tt__ConfigDescriptionExtension *Extension, - const std::string& Name, - bool *fixed, - std::string *maxInstances, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ConfigDescription *_p = ::soap_new_tt__ConfigDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ConfigDescription::Parameters = Parameters; - _p->tt__ConfigDescription::Messages = Messages; - _p->tt__ConfigDescription::Extension = Extension; - _p->tt__ConfigDescription::Name = Name; - _p->tt__ConfigDescription::fixed = fixed; - _p->tt__ConfigDescription::maxInstances = maxInstances; - _p->tt__ConfigDescription::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ConfigDescription(struct soap *soap, tt__ConfigDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ConfigDescription", p->soap_type() == SOAP_TYPE_tt__ConfigDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ConfigDescription(struct soap *soap, const char *URL, tt__ConfigDescription 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, "tt:ConfigDescription", p->soap_type() == SOAP_TYPE_tt__ConfigDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ConfigDescription(struct soap *soap, const char *URL, tt__ConfigDescription 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, "tt:ConfigDescription", p->soap_type() == SOAP_TYPE_tt__ConfigDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ConfigDescription(struct soap *soap, const char *URL, tt__ConfigDescription 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, "tt:ConfigDescription", p->soap_type() == SOAP_TYPE_tt__ConfigDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ConfigDescription * SOAP_FMAC4 soap_get_tt__ConfigDescription(struct soap*, tt__ConfigDescription *, const char*, const char*); - -inline int soap_read_tt__ConfigDescription(struct soap *soap, tt__ConfigDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ConfigDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ConfigDescription(struct soap *soap, const char *URL, tt__ConfigDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ConfigDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ConfigDescription(struct soap *soap, tt__ConfigDescription *p) -{ - if (::soap_read_tt__ConfigDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Config_DEFINED -#define SOAP_TYPE_tt__Config_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Config(struct soap*, const char*, int, const tt__Config *, const char*); -SOAP_FMAC3 tt__Config * SOAP_FMAC4 soap_in_tt__Config(struct soap*, const char*, tt__Config *, const char*); -SOAP_FMAC1 tt__Config * SOAP_FMAC2 soap_instantiate_tt__Config(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Config * soap_new_tt__Config(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Config(soap, n, NULL, NULL, NULL); -} - -inline tt__Config * soap_new_req_tt__Config( - struct soap *soap, - tt__ItemList *Parameters, - const std::string& Name, - const std::string& Type) -{ - tt__Config *_p = ::soap_new_tt__Config(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Config::Parameters = Parameters; - _p->tt__Config::Name = Name; - _p->tt__Config::Type = Type; - } - return _p; -} - -inline tt__Config * soap_new_set_tt__Config( - struct soap *soap, - tt__ItemList *Parameters, - const std::string& Name, - const std::string& Type) -{ - tt__Config *_p = ::soap_new_tt__Config(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Config::Parameters = Parameters; - _p->tt__Config::Name = Name; - _p->tt__Config::Type = Type; - } - return _p; -} - -inline int soap_write_tt__Config(struct soap *soap, tt__Config const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Config", p->soap_type() == SOAP_TYPE_tt__Config ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Config(struct soap *soap, const char *URL, tt__Config 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, "tt:Config", p->soap_type() == SOAP_TYPE_tt__Config ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Config(struct soap *soap, const char *URL, tt__Config 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, "tt:Config", p->soap_type() == SOAP_TYPE_tt__Config ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Config(struct soap *soap, const char *URL, tt__Config 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, "tt:Config", p->soap_type() == SOAP_TYPE_tt__Config ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Config * SOAP_FMAC4 soap_get_tt__Config(struct soap*, tt__Config *, const char*, const char*); - -inline int soap_read_tt__Config(struct soap *soap, tt__Config *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Config(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Config(struct soap *soap, const char *URL, tt__Config *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Config(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Config(struct soap *soap, tt__Config *p) -{ - if (::soap_read_tt__Config(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RuleEngineConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__RuleEngineConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RuleEngineConfigurationExtension(struct soap*, const char*, int, const tt__RuleEngineConfigurationExtension *, const char*); -SOAP_FMAC3 tt__RuleEngineConfigurationExtension * SOAP_FMAC4 soap_in_tt__RuleEngineConfigurationExtension(struct soap*, const char*, tt__RuleEngineConfigurationExtension *, const char*); -SOAP_FMAC1 tt__RuleEngineConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__RuleEngineConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RuleEngineConfigurationExtension * soap_new_tt__RuleEngineConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RuleEngineConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__RuleEngineConfigurationExtension * soap_new_req_tt__RuleEngineConfigurationExtension( - struct soap *soap) -{ - tt__RuleEngineConfigurationExtension *_p = ::soap_new_tt__RuleEngineConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RuleEngineConfigurationExtension * soap_new_set_tt__RuleEngineConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__RuleEngineConfigurationExtension *_p = ::soap_new_tt__RuleEngineConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RuleEngineConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__RuleEngineConfigurationExtension(struct soap *soap, tt__RuleEngineConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RuleEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RuleEngineConfigurationExtension(struct soap *soap, const char *URL, tt__RuleEngineConfigurationExtension 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, "tt:RuleEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RuleEngineConfigurationExtension(struct soap *soap, const char *URL, tt__RuleEngineConfigurationExtension 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, "tt:RuleEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RuleEngineConfigurationExtension(struct soap *soap, const char *URL, tt__RuleEngineConfigurationExtension 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, "tt:RuleEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RuleEngineConfigurationExtension * SOAP_FMAC4 soap_get_tt__RuleEngineConfigurationExtension(struct soap*, tt__RuleEngineConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__RuleEngineConfigurationExtension(struct soap *soap, tt__RuleEngineConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RuleEngineConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RuleEngineConfigurationExtension(struct soap *soap, const char *URL, tt__RuleEngineConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RuleEngineConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RuleEngineConfigurationExtension(struct soap *soap, tt__RuleEngineConfigurationExtension *p) -{ - if (::soap_read_tt__RuleEngineConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RuleEngineConfiguration_DEFINED -#define SOAP_TYPE_tt__RuleEngineConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RuleEngineConfiguration(struct soap*, const char*, int, const tt__RuleEngineConfiguration *, const char*); -SOAP_FMAC3 tt__RuleEngineConfiguration * SOAP_FMAC4 soap_in_tt__RuleEngineConfiguration(struct soap*, const char*, tt__RuleEngineConfiguration *, const char*); -SOAP_FMAC1 tt__RuleEngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__RuleEngineConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RuleEngineConfiguration * soap_new_tt__RuleEngineConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RuleEngineConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__RuleEngineConfiguration * soap_new_req_tt__RuleEngineConfiguration( - struct soap *soap) -{ - tt__RuleEngineConfiguration *_p = ::soap_new_tt__RuleEngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RuleEngineConfiguration * soap_new_set_tt__RuleEngineConfiguration( - struct soap *soap, - const std::vector & Rule, - tt__RuleEngineConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RuleEngineConfiguration *_p = ::soap_new_tt__RuleEngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RuleEngineConfiguration::Rule = Rule; - _p->tt__RuleEngineConfiguration::Extension = Extension; - _p->tt__RuleEngineConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RuleEngineConfiguration(struct soap *soap, tt__RuleEngineConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RuleEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RuleEngineConfiguration(struct soap *soap, const char *URL, tt__RuleEngineConfiguration 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, "tt:RuleEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RuleEngineConfiguration(struct soap *soap, const char *URL, tt__RuleEngineConfiguration 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, "tt:RuleEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RuleEngineConfiguration(struct soap *soap, const char *URL, tt__RuleEngineConfiguration 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, "tt:RuleEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__RuleEngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RuleEngineConfiguration * SOAP_FMAC4 soap_get_tt__RuleEngineConfiguration(struct soap*, tt__RuleEngineConfiguration *, const char*, const char*); - -inline int soap_read_tt__RuleEngineConfiguration(struct soap *soap, tt__RuleEngineConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RuleEngineConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RuleEngineConfiguration(struct soap *soap, const char *URL, tt__RuleEngineConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RuleEngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RuleEngineConfiguration(struct soap *soap, tt__RuleEngineConfiguration *p) -{ - if (::soap_read_tt__RuleEngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineConfigurationExtension(struct soap*, const char*, int, const tt__AnalyticsEngineConfigurationExtension *, const char*); -SOAP_FMAC3 tt__AnalyticsEngineConfigurationExtension * SOAP_FMAC4 soap_in_tt__AnalyticsEngineConfigurationExtension(struct soap*, const char*, tt__AnalyticsEngineConfigurationExtension *, const char*); -SOAP_FMAC1 tt__AnalyticsEngineConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsEngineConfigurationExtension * soap_new_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsEngineConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsEngineConfigurationExtension * soap_new_req_tt__AnalyticsEngineConfigurationExtension( - struct soap *soap) -{ - tt__AnalyticsEngineConfigurationExtension *_p = ::soap_new_tt__AnalyticsEngineConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AnalyticsEngineConfigurationExtension * soap_new_set_tt__AnalyticsEngineConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__AnalyticsEngineConfigurationExtension *_p = ::soap_new_tt__AnalyticsEngineConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, tt__AnalyticsEngineConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineConfigurationExtension 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, "tt:AnalyticsEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineConfigurationExtension 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, "tt:AnalyticsEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineConfigurationExtension 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, "tt:AnalyticsEngineConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsEngineConfigurationExtension * SOAP_FMAC4 soap_get_tt__AnalyticsEngineConfigurationExtension(struct soap*, tt__AnalyticsEngineConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, tt__AnalyticsEngineConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsEngineConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, const char *URL, tt__AnalyticsEngineConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsEngineConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsEngineConfigurationExtension(struct soap *soap, tt__AnalyticsEngineConfigurationExtension *p) -{ - if (::soap_read_tt__AnalyticsEngineConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsEngineConfiguration_DEFINED -#define SOAP_TYPE_tt__AnalyticsEngineConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsEngineConfiguration(struct soap*, const char*, int, const tt__AnalyticsEngineConfiguration *, const char*); -SOAP_FMAC3 tt__AnalyticsEngineConfiguration * SOAP_FMAC4 soap_in_tt__AnalyticsEngineConfiguration(struct soap*, const char*, tt__AnalyticsEngineConfiguration *, const char*); -SOAP_FMAC1 tt__AnalyticsEngineConfiguration * SOAP_FMAC2 soap_instantiate_tt__AnalyticsEngineConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsEngineConfiguration * soap_new_tt__AnalyticsEngineConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsEngineConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsEngineConfiguration * soap_new_req_tt__AnalyticsEngineConfiguration( - struct soap *soap) -{ - tt__AnalyticsEngineConfiguration *_p = ::soap_new_tt__AnalyticsEngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AnalyticsEngineConfiguration * soap_new_set_tt__AnalyticsEngineConfiguration( - struct soap *soap, - const std::vector & AnalyticsModule, - tt__AnalyticsEngineConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnalyticsEngineConfiguration *_p = ::soap_new_tt__AnalyticsEngineConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsEngineConfiguration::AnalyticsModule = AnalyticsModule; - _p->tt__AnalyticsEngineConfiguration::Extension = Extension; - _p->tt__AnalyticsEngineConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnalyticsEngineConfiguration(struct soap *soap, tt__AnalyticsEngineConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsEngineConfiguration 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, "tt:AnalyticsEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsEngineConfiguration 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, "tt:AnalyticsEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsEngineConfiguration 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, "tt:AnalyticsEngineConfiguration", p->soap_type() == SOAP_TYPE_tt__AnalyticsEngineConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsEngineConfiguration * SOAP_FMAC4 soap_get_tt__AnalyticsEngineConfiguration(struct soap*, tt__AnalyticsEngineConfiguration *, const char*, const char*); - -inline int soap_read_tt__AnalyticsEngineConfiguration(struct soap *soap, tt__AnalyticsEngineConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsEngineConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsEngineConfiguration(struct soap *soap, const char *URL, tt__AnalyticsEngineConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsEngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsEngineConfiguration(struct soap *soap, tt__AnalyticsEngineConfiguration *p) -{ - if (::soap_read_tt__AnalyticsEngineConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Polyline_DEFINED -#define SOAP_TYPE_tt__Polyline_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Polyline(struct soap*, const char*, int, const tt__Polyline *, const char*); -SOAP_FMAC3 tt__Polyline * SOAP_FMAC4 soap_in_tt__Polyline(struct soap*, const char*, tt__Polyline *, const char*); -SOAP_FMAC1 tt__Polyline * SOAP_FMAC2 soap_instantiate_tt__Polyline(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Polyline * soap_new_tt__Polyline(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Polyline(soap, n, NULL, NULL, NULL); -} - -inline tt__Polyline * soap_new_req_tt__Polyline( - struct soap *soap, - const std::vector & Point) -{ - tt__Polyline *_p = ::soap_new_tt__Polyline(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Polyline::Point = Point; - } - return _p; -} - -inline tt__Polyline * soap_new_set_tt__Polyline( - struct soap *soap, - const std::vector & Point) -{ - tt__Polyline *_p = ::soap_new_tt__Polyline(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Polyline::Point = Point; - } - return _p; -} - -inline int soap_write_tt__Polyline(struct soap *soap, tt__Polyline const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Polyline", p->soap_type() == SOAP_TYPE_tt__Polyline ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Polyline(struct soap *soap, const char *URL, tt__Polyline 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, "tt:Polyline", p->soap_type() == SOAP_TYPE_tt__Polyline ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Polyline(struct soap *soap, const char *URL, tt__Polyline 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, "tt:Polyline", p->soap_type() == SOAP_TYPE_tt__Polyline ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Polyline(struct soap *soap, const char *URL, tt__Polyline 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, "tt:Polyline", p->soap_type() == SOAP_TYPE_tt__Polyline ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Polyline * SOAP_FMAC4 soap_get_tt__Polyline(struct soap*, tt__Polyline *, const char*, const char*); - -inline int soap_read_tt__Polyline(struct soap *soap, tt__Polyline *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Polyline(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Polyline(struct soap *soap, const char *URL, tt__Polyline *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Polyline(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Polyline(struct soap *soap, tt__Polyline *p) -{ - if (::soap_read_tt__Polyline(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ItemListDescriptionExtension_DEFINED -#define SOAP_TYPE_tt__ItemListDescriptionExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemListDescriptionExtension(struct soap*, const char*, int, const tt__ItemListDescriptionExtension *, const char*); -SOAP_FMAC3 tt__ItemListDescriptionExtension * SOAP_FMAC4 soap_in_tt__ItemListDescriptionExtension(struct soap*, const char*, tt__ItemListDescriptionExtension *, const char*); -SOAP_FMAC1 tt__ItemListDescriptionExtension * SOAP_FMAC2 soap_instantiate_tt__ItemListDescriptionExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ItemListDescriptionExtension * soap_new_tt__ItemListDescriptionExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ItemListDescriptionExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ItemListDescriptionExtension * soap_new_req_tt__ItemListDescriptionExtension( - struct soap *soap) -{ - tt__ItemListDescriptionExtension *_p = ::soap_new_tt__ItemListDescriptionExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ItemListDescriptionExtension * soap_new_set_tt__ItemListDescriptionExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ItemListDescriptionExtension *_p = ::soap_new_tt__ItemListDescriptionExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ItemListDescriptionExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ItemListDescriptionExtension(struct soap *soap, tt__ItemListDescriptionExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemListDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ItemListDescriptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ItemListDescriptionExtension(struct soap *soap, const char *URL, tt__ItemListDescriptionExtension 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, "tt:ItemListDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ItemListDescriptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ItemListDescriptionExtension(struct soap *soap, const char *URL, tt__ItemListDescriptionExtension 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, "tt:ItemListDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ItemListDescriptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ItemListDescriptionExtension(struct soap *soap, const char *URL, tt__ItemListDescriptionExtension 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, "tt:ItemListDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__ItemListDescriptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ItemListDescriptionExtension * SOAP_FMAC4 soap_get_tt__ItemListDescriptionExtension(struct soap*, tt__ItemListDescriptionExtension *, const char*, const char*); - -inline int soap_read_tt__ItemListDescriptionExtension(struct soap *soap, tt__ItemListDescriptionExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ItemListDescriptionExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ItemListDescriptionExtension(struct soap *soap, const char *URL, tt__ItemListDescriptionExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ItemListDescriptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ItemListDescriptionExtension(struct soap *soap, tt__ItemListDescriptionExtension *p) -{ - if (::soap_read_tt__ItemListDescriptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ItemListDescription_DEFINED -#define SOAP_TYPE_tt__ItemListDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemListDescription(struct soap*, const char*, int, const tt__ItemListDescription *, const char*); -SOAP_FMAC3 tt__ItemListDescription * SOAP_FMAC4 soap_in_tt__ItemListDescription(struct soap*, const char*, tt__ItemListDescription *, const char*); -SOAP_FMAC1 tt__ItemListDescription * SOAP_FMAC2 soap_instantiate_tt__ItemListDescription(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ItemListDescription * soap_new_tt__ItemListDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ItemListDescription(soap, n, NULL, NULL, NULL); -} - -inline tt__ItemListDescription * soap_new_req_tt__ItemListDescription( - struct soap *soap) -{ - tt__ItemListDescription *_p = ::soap_new_tt__ItemListDescription(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ItemListDescription * soap_new_set_tt__ItemListDescription( - struct soap *soap, - const std::vector<_tt__ItemListDescription_SimpleItemDescription> & SimpleItemDescription, - const std::vector<_tt__ItemListDescription_ElementItemDescription> & ElementItemDescription, - tt__ItemListDescriptionExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ItemListDescription *_p = ::soap_new_tt__ItemListDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ItemListDescription::SimpleItemDescription = SimpleItemDescription; - _p->tt__ItemListDescription::ElementItemDescription = ElementItemDescription; - _p->tt__ItemListDescription::Extension = Extension; - _p->tt__ItemListDescription::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ItemListDescription(struct soap *soap, tt__ItemListDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemListDescription", p->soap_type() == SOAP_TYPE_tt__ItemListDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ItemListDescription(struct soap *soap, const char *URL, tt__ItemListDescription 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, "tt:ItemListDescription", p->soap_type() == SOAP_TYPE_tt__ItemListDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ItemListDescription(struct soap *soap, const char *URL, tt__ItemListDescription 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, "tt:ItemListDescription", p->soap_type() == SOAP_TYPE_tt__ItemListDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ItemListDescription(struct soap *soap, const char *URL, tt__ItemListDescription 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, "tt:ItemListDescription", p->soap_type() == SOAP_TYPE_tt__ItemListDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ItemListDescription * SOAP_FMAC4 soap_get_tt__ItemListDescription(struct soap*, tt__ItemListDescription *, const char*, const char*); - -inline int soap_read_tt__ItemListDescription(struct soap *soap, tt__ItemListDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ItemListDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ItemListDescription(struct soap *soap, const char *URL, tt__ItemListDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ItemListDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ItemListDescription(struct soap *soap, tt__ItemListDescription *p) -{ - if (::soap_read_tt__ItemListDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MessageDescriptionExtension_DEFINED -#define SOAP_TYPE_tt__MessageDescriptionExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MessageDescriptionExtension(struct soap*, const char*, int, const tt__MessageDescriptionExtension *, const char*); -SOAP_FMAC3 tt__MessageDescriptionExtension * SOAP_FMAC4 soap_in_tt__MessageDescriptionExtension(struct soap*, const char*, tt__MessageDescriptionExtension *, const char*); -SOAP_FMAC1 tt__MessageDescriptionExtension * SOAP_FMAC2 soap_instantiate_tt__MessageDescriptionExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MessageDescriptionExtension * soap_new_tt__MessageDescriptionExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MessageDescriptionExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__MessageDescriptionExtension * soap_new_req_tt__MessageDescriptionExtension( - struct soap *soap) -{ - tt__MessageDescriptionExtension *_p = ::soap_new_tt__MessageDescriptionExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MessageDescriptionExtension * soap_new_set_tt__MessageDescriptionExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__MessageDescriptionExtension *_p = ::soap_new_tt__MessageDescriptionExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MessageDescriptionExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__MessageDescriptionExtension(struct soap *soap, tt__MessageDescriptionExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MessageDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__MessageDescriptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MessageDescriptionExtension(struct soap *soap, const char *URL, tt__MessageDescriptionExtension 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, "tt:MessageDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__MessageDescriptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MessageDescriptionExtension(struct soap *soap, const char *URL, tt__MessageDescriptionExtension 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, "tt:MessageDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__MessageDescriptionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MessageDescriptionExtension(struct soap *soap, const char *URL, tt__MessageDescriptionExtension 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, "tt:MessageDescriptionExtension", p->soap_type() == SOAP_TYPE_tt__MessageDescriptionExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MessageDescriptionExtension * SOAP_FMAC4 soap_get_tt__MessageDescriptionExtension(struct soap*, tt__MessageDescriptionExtension *, const char*, const char*); - -inline int soap_read_tt__MessageDescriptionExtension(struct soap *soap, tt__MessageDescriptionExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MessageDescriptionExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MessageDescriptionExtension(struct soap *soap, const char *URL, tt__MessageDescriptionExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MessageDescriptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MessageDescriptionExtension(struct soap *soap, tt__MessageDescriptionExtension *p) -{ - if (::soap_read_tt__MessageDescriptionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MessageDescription_DEFINED -#define SOAP_TYPE_tt__MessageDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MessageDescription(struct soap*, const char*, int, const tt__MessageDescription *, const char*); -SOAP_FMAC3 tt__MessageDescription * SOAP_FMAC4 soap_in_tt__MessageDescription(struct soap*, const char*, tt__MessageDescription *, const char*); -SOAP_FMAC1 tt__MessageDescription * SOAP_FMAC2 soap_instantiate_tt__MessageDescription(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MessageDescription * soap_new_tt__MessageDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MessageDescription(soap, n, NULL, NULL, NULL); -} - -inline tt__MessageDescription * soap_new_req_tt__MessageDescription( - struct soap *soap) -{ - tt__MessageDescription *_p = ::soap_new_tt__MessageDescription(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MessageDescription * soap_new_set_tt__MessageDescription( - struct soap *soap, - tt__ItemListDescription *Source, - tt__ItemListDescription *Key, - tt__ItemListDescription *Data, - tt__MessageDescriptionExtension *Extension, - bool *IsProperty, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MessageDescription *_p = ::soap_new_tt__MessageDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MessageDescription::Source = Source; - _p->tt__MessageDescription::Key = Key; - _p->tt__MessageDescription::Data = Data; - _p->tt__MessageDescription::Extension = Extension; - _p->tt__MessageDescription::IsProperty = IsProperty; - _p->tt__MessageDescription::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MessageDescription(struct soap *soap, tt__MessageDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MessageDescription", p->soap_type() == SOAP_TYPE_tt__MessageDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MessageDescription(struct soap *soap, const char *URL, tt__MessageDescription 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, "tt:MessageDescription", p->soap_type() == SOAP_TYPE_tt__MessageDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MessageDescription(struct soap *soap, const char *URL, tt__MessageDescription 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, "tt:MessageDescription", p->soap_type() == SOAP_TYPE_tt__MessageDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MessageDescription(struct soap *soap, const char *URL, tt__MessageDescription 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, "tt:MessageDescription", p->soap_type() == SOAP_TYPE_tt__MessageDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MessageDescription * SOAP_FMAC4 soap_get_tt__MessageDescription(struct soap*, tt__MessageDescription *, const char*, const char*); - -inline int soap_read_tt__MessageDescription(struct soap *soap, tt__MessageDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MessageDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MessageDescription(struct soap *soap, const char *URL, tt__MessageDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MessageDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MessageDescription(struct soap *soap, tt__MessageDescription *p) -{ - if (::soap_read_tt__MessageDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ItemListExtension_DEFINED -#define SOAP_TYPE_tt__ItemListExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemListExtension(struct soap*, const char*, int, const tt__ItemListExtension *, const char*); -SOAP_FMAC3 tt__ItemListExtension * SOAP_FMAC4 soap_in_tt__ItemListExtension(struct soap*, const char*, tt__ItemListExtension *, const char*); -SOAP_FMAC1 tt__ItemListExtension * SOAP_FMAC2 soap_instantiate_tt__ItemListExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ItemListExtension * soap_new_tt__ItemListExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ItemListExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ItemListExtension * soap_new_req_tt__ItemListExtension( - struct soap *soap) -{ - tt__ItemListExtension *_p = ::soap_new_tt__ItemListExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ItemListExtension * soap_new_set_tt__ItemListExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ItemListExtension *_p = ::soap_new_tt__ItemListExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ItemListExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ItemListExtension(struct soap *soap, tt__ItemListExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemListExtension", p->soap_type() == SOAP_TYPE_tt__ItemListExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ItemListExtension(struct soap *soap, const char *URL, tt__ItemListExtension 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, "tt:ItemListExtension", p->soap_type() == SOAP_TYPE_tt__ItemListExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ItemListExtension(struct soap *soap, const char *URL, tt__ItemListExtension 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, "tt:ItemListExtension", p->soap_type() == SOAP_TYPE_tt__ItemListExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ItemListExtension(struct soap *soap, const char *URL, tt__ItemListExtension 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, "tt:ItemListExtension", p->soap_type() == SOAP_TYPE_tt__ItemListExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ItemListExtension * SOAP_FMAC4 soap_get_tt__ItemListExtension(struct soap*, tt__ItemListExtension *, const char*, const char*); - -inline int soap_read_tt__ItemListExtension(struct soap *soap, tt__ItemListExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ItemListExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ItemListExtension(struct soap *soap, const char *URL, tt__ItemListExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ItemListExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ItemListExtension(struct soap *soap, tt__ItemListExtension *p) -{ - if (::soap_read_tt__ItemListExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ItemList_DEFINED -#define SOAP_TYPE_tt__ItemList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ItemList(struct soap*, const char*, int, const tt__ItemList *, const char*); -SOAP_FMAC3 tt__ItemList * SOAP_FMAC4 soap_in_tt__ItemList(struct soap*, const char*, tt__ItemList *, const char*); -SOAP_FMAC1 tt__ItemList * SOAP_FMAC2 soap_instantiate_tt__ItemList(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ItemList * soap_new_tt__ItemList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ItemList(soap, n, NULL, NULL, NULL); -} - -inline tt__ItemList * soap_new_req_tt__ItemList( - struct soap *soap) -{ - tt__ItemList *_p = ::soap_new_tt__ItemList(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ItemList * soap_new_set_tt__ItemList( - struct soap *soap, - const std::vector<_tt__ItemList_SimpleItem> & SimpleItem, - const std::vector<_tt__ItemList_ElementItem> & ElementItem, - tt__ItemListExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ItemList *_p = ::soap_new_tt__ItemList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ItemList::SimpleItem = SimpleItem; - _p->tt__ItemList::ElementItem = ElementItem; - _p->tt__ItemList::Extension = Extension; - _p->tt__ItemList::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ItemList(struct soap *soap, tt__ItemList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ItemList", p->soap_type() == SOAP_TYPE_tt__ItemList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ItemList(struct soap *soap, const char *URL, tt__ItemList 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, "tt:ItemList", p->soap_type() == SOAP_TYPE_tt__ItemList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ItemList(struct soap *soap, const char *URL, tt__ItemList 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, "tt:ItemList", p->soap_type() == SOAP_TYPE_tt__ItemList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ItemList(struct soap *soap, const char *URL, tt__ItemList 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, "tt:ItemList", p->soap_type() == SOAP_TYPE_tt__ItemList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ItemList * SOAP_FMAC4 soap_get_tt__ItemList(struct soap*, tt__ItemList *, const char*, const char*); - -inline int soap_read_tt__ItemList(struct soap *soap, tt__ItemList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ItemList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ItemList(struct soap *soap, const char *URL, tt__ItemList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ItemList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ItemList(struct soap *soap, tt__ItemList *p) -{ - if (::soap_read_tt__ItemList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MessageExtension_DEFINED -#define SOAP_TYPE_tt__MessageExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MessageExtension(struct soap*, const char*, int, const tt__MessageExtension *, const char*); -SOAP_FMAC3 tt__MessageExtension * SOAP_FMAC4 soap_in_tt__MessageExtension(struct soap*, const char*, tt__MessageExtension *, const char*); -SOAP_FMAC1 tt__MessageExtension * SOAP_FMAC2 soap_instantiate_tt__MessageExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MessageExtension * soap_new_tt__MessageExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MessageExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__MessageExtension * soap_new_req_tt__MessageExtension( - struct soap *soap) -{ - tt__MessageExtension *_p = ::soap_new_tt__MessageExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MessageExtension * soap_new_set_tt__MessageExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__MessageExtension *_p = ::soap_new_tt__MessageExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MessageExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__MessageExtension(struct soap *soap, tt__MessageExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MessageExtension", p->soap_type() == SOAP_TYPE_tt__MessageExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MessageExtension(struct soap *soap, const char *URL, tt__MessageExtension 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, "tt:MessageExtension", p->soap_type() == SOAP_TYPE_tt__MessageExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MessageExtension(struct soap *soap, const char *URL, tt__MessageExtension 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, "tt:MessageExtension", p->soap_type() == SOAP_TYPE_tt__MessageExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MessageExtension(struct soap *soap, const char *URL, tt__MessageExtension 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, "tt:MessageExtension", p->soap_type() == SOAP_TYPE_tt__MessageExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MessageExtension * SOAP_FMAC4 soap_get_tt__MessageExtension(struct soap*, tt__MessageExtension *, const char*, const char*); - -inline int soap_read_tt__MessageExtension(struct soap *soap, tt__MessageExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MessageExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MessageExtension(struct soap *soap, const char *URL, tt__MessageExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MessageExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MessageExtension(struct soap *soap, tt__MessageExtension *p) -{ - if (::soap_read_tt__MessageExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NoiseReductionOptions_DEFINED -#define SOAP_TYPE_tt__NoiseReductionOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NoiseReductionOptions(struct soap*, const char*, int, const tt__NoiseReductionOptions *, const char*); -SOAP_FMAC3 tt__NoiseReductionOptions * SOAP_FMAC4 soap_in_tt__NoiseReductionOptions(struct soap*, const char*, tt__NoiseReductionOptions *, const char*); -SOAP_FMAC1 tt__NoiseReductionOptions * SOAP_FMAC2 soap_instantiate_tt__NoiseReductionOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NoiseReductionOptions * soap_new_tt__NoiseReductionOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NoiseReductionOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__NoiseReductionOptions * soap_new_req_tt__NoiseReductionOptions( - struct soap *soap, - bool Level) -{ - tt__NoiseReductionOptions *_p = ::soap_new_tt__NoiseReductionOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NoiseReductionOptions::Level = Level; - } - return _p; -} - -inline tt__NoiseReductionOptions * soap_new_set_tt__NoiseReductionOptions( - struct soap *soap, - bool Level, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NoiseReductionOptions *_p = ::soap_new_tt__NoiseReductionOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NoiseReductionOptions::Level = Level; - _p->tt__NoiseReductionOptions::__any = __any; - _p->tt__NoiseReductionOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NoiseReductionOptions(struct soap *soap, tt__NoiseReductionOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NoiseReductionOptions", p->soap_type() == SOAP_TYPE_tt__NoiseReductionOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NoiseReductionOptions(struct soap *soap, const char *URL, tt__NoiseReductionOptions 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, "tt:NoiseReductionOptions", p->soap_type() == SOAP_TYPE_tt__NoiseReductionOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NoiseReductionOptions(struct soap *soap, const char *URL, tt__NoiseReductionOptions 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, "tt:NoiseReductionOptions", p->soap_type() == SOAP_TYPE_tt__NoiseReductionOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NoiseReductionOptions(struct soap *soap, const char *URL, tt__NoiseReductionOptions 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, "tt:NoiseReductionOptions", p->soap_type() == SOAP_TYPE_tt__NoiseReductionOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NoiseReductionOptions * SOAP_FMAC4 soap_get_tt__NoiseReductionOptions(struct soap*, tt__NoiseReductionOptions *, const char*, const char*); - -inline int soap_read_tt__NoiseReductionOptions(struct soap *soap, tt__NoiseReductionOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NoiseReductionOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NoiseReductionOptions(struct soap *soap, const char *URL, tt__NoiseReductionOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NoiseReductionOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NoiseReductionOptions(struct soap *soap, tt__NoiseReductionOptions *p) -{ - if (::soap_read_tt__NoiseReductionOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DefoggingOptions_DEFINED -#define SOAP_TYPE_tt__DefoggingOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingOptions(struct soap*, const char*, int, const tt__DefoggingOptions *, const char*); -SOAP_FMAC3 tt__DefoggingOptions * SOAP_FMAC4 soap_in_tt__DefoggingOptions(struct soap*, const char*, tt__DefoggingOptions *, const char*); -SOAP_FMAC1 tt__DefoggingOptions * SOAP_FMAC2 soap_instantiate_tt__DefoggingOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DefoggingOptions * soap_new_tt__DefoggingOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DefoggingOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__DefoggingOptions * soap_new_req_tt__DefoggingOptions( - struct soap *soap, - const std::vector & Mode, - bool Level) -{ - tt__DefoggingOptions *_p = ::soap_new_tt__DefoggingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DefoggingOptions::Mode = Mode; - _p->tt__DefoggingOptions::Level = Level; - } - return _p; -} - -inline tt__DefoggingOptions * soap_new_set_tt__DefoggingOptions( - struct soap *soap, - const std::vector & Mode, - bool Level, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__DefoggingOptions *_p = ::soap_new_tt__DefoggingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DefoggingOptions::Mode = Mode; - _p->tt__DefoggingOptions::Level = Level; - _p->tt__DefoggingOptions::__any = __any; - _p->tt__DefoggingOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__DefoggingOptions(struct soap *soap, tt__DefoggingOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DefoggingOptions", p->soap_type() == SOAP_TYPE_tt__DefoggingOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DefoggingOptions(struct soap *soap, const char *URL, tt__DefoggingOptions 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, "tt:DefoggingOptions", p->soap_type() == SOAP_TYPE_tt__DefoggingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DefoggingOptions(struct soap *soap, const char *URL, tt__DefoggingOptions 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, "tt:DefoggingOptions", p->soap_type() == SOAP_TYPE_tt__DefoggingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DefoggingOptions(struct soap *soap, const char *URL, tt__DefoggingOptions 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, "tt:DefoggingOptions", p->soap_type() == SOAP_TYPE_tt__DefoggingOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DefoggingOptions * SOAP_FMAC4 soap_get_tt__DefoggingOptions(struct soap*, tt__DefoggingOptions *, const char*, const char*); - -inline int soap_read_tt__DefoggingOptions(struct soap *soap, tt__DefoggingOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DefoggingOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DefoggingOptions(struct soap *soap, const char *URL, tt__DefoggingOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DefoggingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DefoggingOptions(struct soap *soap, tt__DefoggingOptions *p) -{ - if (::soap_read_tt__DefoggingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ToneCompensationOptions_DEFINED -#define SOAP_TYPE_tt__ToneCompensationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationOptions(struct soap*, const char*, int, const tt__ToneCompensationOptions *, const char*); -SOAP_FMAC3 tt__ToneCompensationOptions * SOAP_FMAC4 soap_in_tt__ToneCompensationOptions(struct soap*, const char*, tt__ToneCompensationOptions *, const char*); -SOAP_FMAC1 tt__ToneCompensationOptions * SOAP_FMAC2 soap_instantiate_tt__ToneCompensationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ToneCompensationOptions * soap_new_tt__ToneCompensationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ToneCompensationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__ToneCompensationOptions * soap_new_req_tt__ToneCompensationOptions( - struct soap *soap, - const std::vector & Mode, - bool Level) -{ - tt__ToneCompensationOptions *_p = ::soap_new_tt__ToneCompensationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ToneCompensationOptions::Mode = Mode; - _p->tt__ToneCompensationOptions::Level = Level; - } - return _p; -} - -inline tt__ToneCompensationOptions * soap_new_set_tt__ToneCompensationOptions( - struct soap *soap, - const std::vector & Mode, - bool Level, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ToneCompensationOptions *_p = ::soap_new_tt__ToneCompensationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ToneCompensationOptions::Mode = Mode; - _p->tt__ToneCompensationOptions::Level = Level; - _p->tt__ToneCompensationOptions::__any = __any; - _p->tt__ToneCompensationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ToneCompensationOptions(struct soap *soap, tt__ToneCompensationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ToneCompensationOptions", p->soap_type() == SOAP_TYPE_tt__ToneCompensationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ToneCompensationOptions(struct soap *soap, const char *URL, tt__ToneCompensationOptions 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, "tt:ToneCompensationOptions", p->soap_type() == SOAP_TYPE_tt__ToneCompensationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ToneCompensationOptions(struct soap *soap, const char *URL, tt__ToneCompensationOptions 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, "tt:ToneCompensationOptions", p->soap_type() == SOAP_TYPE_tt__ToneCompensationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ToneCompensationOptions(struct soap *soap, const char *URL, tt__ToneCompensationOptions 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, "tt:ToneCompensationOptions", p->soap_type() == SOAP_TYPE_tt__ToneCompensationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ToneCompensationOptions * SOAP_FMAC4 soap_get_tt__ToneCompensationOptions(struct soap*, tt__ToneCompensationOptions *, const char*, const char*); - -inline int soap_read_tt__ToneCompensationOptions(struct soap *soap, tt__ToneCompensationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ToneCompensationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ToneCompensationOptions(struct soap *soap, const char *URL, tt__ToneCompensationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ToneCompensationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ToneCompensationOptions(struct soap *soap, tt__ToneCompensationOptions *p) -{ - if (::soap_read_tt__ToneCompensationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusOptions20Extension_DEFINED -#define SOAP_TYPE_tt__FocusOptions20Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusOptions20Extension(struct soap*, const char*, int, const tt__FocusOptions20Extension *, const char*); -SOAP_FMAC3 tt__FocusOptions20Extension * SOAP_FMAC4 soap_in_tt__FocusOptions20Extension(struct soap*, const char*, tt__FocusOptions20Extension *, const char*); -SOAP_FMAC1 tt__FocusOptions20Extension * SOAP_FMAC2 soap_instantiate_tt__FocusOptions20Extension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusOptions20Extension * soap_new_tt__FocusOptions20Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusOptions20Extension(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusOptions20Extension * soap_new_req_tt__FocusOptions20Extension( - struct soap *soap) -{ - tt__FocusOptions20Extension *_p = ::soap_new_tt__FocusOptions20Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__FocusOptions20Extension * soap_new_set_tt__FocusOptions20Extension( - struct soap *soap, - const std::vector & __any, - std::string *AFModes) -{ - tt__FocusOptions20Extension *_p = ::soap_new_tt__FocusOptions20Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusOptions20Extension::__any = __any; - _p->tt__FocusOptions20Extension::AFModes = AFModes; - } - return _p; -} - -inline int soap_write_tt__FocusOptions20Extension(struct soap *soap, tt__FocusOptions20Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusOptions20Extension", p->soap_type() == SOAP_TYPE_tt__FocusOptions20Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusOptions20Extension(struct soap *soap, const char *URL, tt__FocusOptions20Extension 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, "tt:FocusOptions20Extension", p->soap_type() == SOAP_TYPE_tt__FocusOptions20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusOptions20Extension(struct soap *soap, const char *URL, tt__FocusOptions20Extension 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, "tt:FocusOptions20Extension", p->soap_type() == SOAP_TYPE_tt__FocusOptions20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusOptions20Extension(struct soap *soap, const char *URL, tt__FocusOptions20Extension 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, "tt:FocusOptions20Extension", p->soap_type() == SOAP_TYPE_tt__FocusOptions20Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusOptions20Extension * SOAP_FMAC4 soap_get_tt__FocusOptions20Extension(struct soap*, tt__FocusOptions20Extension *, const char*, const char*); - -inline int soap_read_tt__FocusOptions20Extension(struct soap *soap, tt__FocusOptions20Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusOptions20Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusOptions20Extension(struct soap *soap, const char *URL, tt__FocusOptions20Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusOptions20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusOptions20Extension(struct soap *soap, tt__FocusOptions20Extension *p) -{ - if (::soap_read_tt__FocusOptions20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusOptions20_DEFINED -#define SOAP_TYPE_tt__FocusOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusOptions20(struct soap*, const char*, int, const tt__FocusOptions20 *, const char*); -SOAP_FMAC3 tt__FocusOptions20 * SOAP_FMAC4 soap_in_tt__FocusOptions20(struct soap*, const char*, tt__FocusOptions20 *, const char*); -SOAP_FMAC1 tt__FocusOptions20 * SOAP_FMAC2 soap_instantiate_tt__FocusOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusOptions20 * soap_new_tt__FocusOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusOptions20 * soap_new_req_tt__FocusOptions20( - struct soap *soap) -{ - tt__FocusOptions20 *_p = ::soap_new_tt__FocusOptions20(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__FocusOptions20 * soap_new_set_tt__FocusOptions20( - struct soap *soap, - const std::vector & AutoFocusModes, - tt__FloatRange *DefaultSpeed, - tt__FloatRange *NearLimit, - tt__FloatRange *FarLimit, - tt__FocusOptions20Extension *Extension) -{ - tt__FocusOptions20 *_p = ::soap_new_tt__FocusOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusOptions20::AutoFocusModes = AutoFocusModes; - _p->tt__FocusOptions20::DefaultSpeed = DefaultSpeed; - _p->tt__FocusOptions20::NearLimit = NearLimit; - _p->tt__FocusOptions20::FarLimit = FarLimit; - _p->tt__FocusOptions20::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__FocusOptions20(struct soap *soap, tt__FocusOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusOptions20", p->soap_type() == SOAP_TYPE_tt__FocusOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusOptions20(struct soap *soap, const char *URL, tt__FocusOptions20 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, "tt:FocusOptions20", p->soap_type() == SOAP_TYPE_tt__FocusOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusOptions20(struct soap *soap, const char *URL, tt__FocusOptions20 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, "tt:FocusOptions20", p->soap_type() == SOAP_TYPE_tt__FocusOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusOptions20(struct soap *soap, const char *URL, tt__FocusOptions20 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, "tt:FocusOptions20", p->soap_type() == SOAP_TYPE_tt__FocusOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusOptions20 * SOAP_FMAC4 soap_get_tt__FocusOptions20(struct soap*, tt__FocusOptions20 *, const char*, const char*); - -inline int soap_read_tt__FocusOptions20(struct soap *soap, tt__FocusOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusOptions20(struct soap *soap, const char *URL, tt__FocusOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusOptions20(struct soap *soap, tt__FocusOptions20 *p) -{ - if (::soap_read_tt__FocusOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalanceOptions20Extension_DEFINED -#define SOAP_TYPE_tt__WhiteBalanceOptions20Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceOptions20Extension(struct soap*, const char*, int, const tt__WhiteBalanceOptions20Extension *, const char*); -SOAP_FMAC3 tt__WhiteBalanceOptions20Extension * SOAP_FMAC4 soap_in_tt__WhiteBalanceOptions20Extension(struct soap*, const char*, tt__WhiteBalanceOptions20Extension *, const char*); -SOAP_FMAC1 tt__WhiteBalanceOptions20Extension * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceOptions20Extension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WhiteBalanceOptions20Extension * soap_new_tt__WhiteBalanceOptions20Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WhiteBalanceOptions20Extension(soap, n, NULL, NULL, NULL); -} - -inline tt__WhiteBalanceOptions20Extension * soap_new_req_tt__WhiteBalanceOptions20Extension( - struct soap *soap) -{ - tt__WhiteBalanceOptions20Extension *_p = ::soap_new_tt__WhiteBalanceOptions20Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__WhiteBalanceOptions20Extension * soap_new_set_tt__WhiteBalanceOptions20Extension( - struct soap *soap, - const std::vector & __any) -{ - tt__WhiteBalanceOptions20Extension *_p = ::soap_new_tt__WhiteBalanceOptions20Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalanceOptions20Extension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__WhiteBalanceOptions20Extension(struct soap *soap, tt__WhiteBalanceOptions20Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WhiteBalanceOptions20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalanceOptions20Extension(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20Extension 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, "tt:WhiteBalanceOptions20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalanceOptions20Extension(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20Extension 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, "tt:WhiteBalanceOptions20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalanceOptions20Extension(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20Extension 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, "tt:WhiteBalanceOptions20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WhiteBalanceOptions20Extension * SOAP_FMAC4 soap_get_tt__WhiteBalanceOptions20Extension(struct soap*, tt__WhiteBalanceOptions20Extension *, const char*, const char*); - -inline int soap_read_tt__WhiteBalanceOptions20Extension(struct soap *soap, tt__WhiteBalanceOptions20Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalanceOptions20Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalanceOptions20Extension(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalanceOptions20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalanceOptions20Extension(struct soap *soap, tt__WhiteBalanceOptions20Extension *p) -{ - if (::soap_read_tt__WhiteBalanceOptions20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalanceOptions20_DEFINED -#define SOAP_TYPE_tt__WhiteBalanceOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceOptions20(struct soap*, const char*, int, const tt__WhiteBalanceOptions20 *, const char*); -SOAP_FMAC3 tt__WhiteBalanceOptions20 * SOAP_FMAC4 soap_in_tt__WhiteBalanceOptions20(struct soap*, const char*, tt__WhiteBalanceOptions20 *, const char*); -SOAP_FMAC1 tt__WhiteBalanceOptions20 * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WhiteBalanceOptions20 * soap_new_tt__WhiteBalanceOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WhiteBalanceOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__WhiteBalanceOptions20 * soap_new_req_tt__WhiteBalanceOptions20( - struct soap *soap, - const std::vector & Mode) -{ - tt__WhiteBalanceOptions20 *_p = ::soap_new_tt__WhiteBalanceOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalanceOptions20::Mode = Mode; - } - return _p; -} - -inline tt__WhiteBalanceOptions20 * soap_new_set_tt__WhiteBalanceOptions20( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *YrGain, - tt__FloatRange *YbGain, - tt__WhiteBalanceOptions20Extension *Extension) -{ - tt__WhiteBalanceOptions20 *_p = ::soap_new_tt__WhiteBalanceOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalanceOptions20::Mode = Mode; - _p->tt__WhiteBalanceOptions20::YrGain = YrGain; - _p->tt__WhiteBalanceOptions20::YbGain = YbGain; - _p->tt__WhiteBalanceOptions20::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__WhiteBalanceOptions20(struct soap *soap, tt__WhiteBalanceOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WhiteBalanceOptions20", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalanceOptions20(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20 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, "tt:WhiteBalanceOptions20", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalanceOptions20(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20 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, "tt:WhiteBalanceOptions20", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalanceOptions20(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20 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, "tt:WhiteBalanceOptions20", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WhiteBalanceOptions20 * SOAP_FMAC4 soap_get_tt__WhiteBalanceOptions20(struct soap*, tt__WhiteBalanceOptions20 *, const char*, const char*); - -inline int soap_read_tt__WhiteBalanceOptions20(struct soap *soap, tt__WhiteBalanceOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalanceOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalanceOptions20(struct soap *soap, const char *URL, tt__WhiteBalanceOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalanceOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalanceOptions20(struct soap *soap, tt__WhiteBalanceOptions20 *p) -{ - if (::soap_read_tt__WhiteBalanceOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusConfiguration20Extension_DEFINED -#define SOAP_TYPE_tt__FocusConfiguration20Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusConfiguration20Extension(struct soap*, const char*, int, const tt__FocusConfiguration20Extension *, const char*); -SOAP_FMAC3 tt__FocusConfiguration20Extension * SOAP_FMAC4 soap_in_tt__FocusConfiguration20Extension(struct soap*, const char*, tt__FocusConfiguration20Extension *, const char*); -SOAP_FMAC1 tt__FocusConfiguration20Extension * SOAP_FMAC2 soap_instantiate_tt__FocusConfiguration20Extension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusConfiguration20Extension * soap_new_tt__FocusConfiguration20Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusConfiguration20Extension(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusConfiguration20Extension * soap_new_req_tt__FocusConfiguration20Extension( - struct soap *soap) -{ - tt__FocusConfiguration20Extension *_p = ::soap_new_tt__FocusConfiguration20Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__FocusConfiguration20Extension * soap_new_set_tt__FocusConfiguration20Extension( - struct soap *soap, - const std::vector & __any) -{ - tt__FocusConfiguration20Extension *_p = ::soap_new_tt__FocusConfiguration20Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusConfiguration20Extension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__FocusConfiguration20Extension(struct soap *soap, tt__FocusConfiguration20Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusConfiguration20Extension", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusConfiguration20Extension(struct soap *soap, const char *URL, tt__FocusConfiguration20Extension 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, "tt:FocusConfiguration20Extension", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusConfiguration20Extension(struct soap *soap, const char *URL, tt__FocusConfiguration20Extension 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, "tt:FocusConfiguration20Extension", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusConfiguration20Extension(struct soap *soap, const char *URL, tt__FocusConfiguration20Extension 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, "tt:FocusConfiguration20Extension", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusConfiguration20Extension * SOAP_FMAC4 soap_get_tt__FocusConfiguration20Extension(struct soap*, tt__FocusConfiguration20Extension *, const char*, const char*); - -inline int soap_read_tt__FocusConfiguration20Extension(struct soap *soap, tt__FocusConfiguration20Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusConfiguration20Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusConfiguration20Extension(struct soap *soap, const char *URL, tt__FocusConfiguration20Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusConfiguration20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusConfiguration20Extension(struct soap *soap, tt__FocusConfiguration20Extension *p) -{ - if (::soap_read_tt__FocusConfiguration20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusConfiguration20_DEFINED -#define SOAP_TYPE_tt__FocusConfiguration20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusConfiguration20(struct soap*, const char*, int, const tt__FocusConfiguration20 *, const char*); -SOAP_FMAC3 tt__FocusConfiguration20 * SOAP_FMAC4 soap_in_tt__FocusConfiguration20(struct soap*, const char*, tt__FocusConfiguration20 *, const char*); -SOAP_FMAC1 tt__FocusConfiguration20 * SOAP_FMAC2 soap_instantiate_tt__FocusConfiguration20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusConfiguration20 * soap_new_tt__FocusConfiguration20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusConfiguration20(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusConfiguration20 * soap_new_req_tt__FocusConfiguration20( - struct soap *soap, - enum tt__AutoFocusMode AutoFocusMode) -{ - tt__FocusConfiguration20 *_p = ::soap_new_tt__FocusConfiguration20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusConfiguration20::AutoFocusMode = AutoFocusMode; - } - return _p; -} - -inline tt__FocusConfiguration20 * soap_new_set_tt__FocusConfiguration20( - struct soap *soap, - enum tt__AutoFocusMode AutoFocusMode, - float *DefaultSpeed, - float *NearLimit, - float *FarLimit, - tt__FocusConfiguration20Extension *Extension, - std::string *AFMode, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FocusConfiguration20 *_p = ::soap_new_tt__FocusConfiguration20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusConfiguration20::AutoFocusMode = AutoFocusMode; - _p->tt__FocusConfiguration20::DefaultSpeed = DefaultSpeed; - _p->tt__FocusConfiguration20::NearLimit = NearLimit; - _p->tt__FocusConfiguration20::FarLimit = FarLimit; - _p->tt__FocusConfiguration20::Extension = Extension; - _p->tt__FocusConfiguration20::AFMode = AFMode; - _p->tt__FocusConfiguration20::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FocusConfiguration20(struct soap *soap, tt__FocusConfiguration20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusConfiguration20", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusConfiguration20(struct soap *soap, const char *URL, tt__FocusConfiguration20 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, "tt:FocusConfiguration20", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusConfiguration20(struct soap *soap, const char *URL, tt__FocusConfiguration20 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, "tt:FocusConfiguration20", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusConfiguration20(struct soap *soap, const char *URL, tt__FocusConfiguration20 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, "tt:FocusConfiguration20", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusConfiguration20 * SOAP_FMAC4 soap_get_tt__FocusConfiguration20(struct soap*, tt__FocusConfiguration20 *, const char*, const char*); - -inline int soap_read_tt__FocusConfiguration20(struct soap *soap, tt__FocusConfiguration20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusConfiguration20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusConfiguration20(struct soap *soap, const char *URL, tt__FocusConfiguration20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusConfiguration20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusConfiguration20(struct soap *soap, tt__FocusConfiguration20 *p) -{ - if (::soap_read_tt__FocusConfiguration20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalance20Extension_DEFINED -#define SOAP_TYPE_tt__WhiteBalance20Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalance20Extension(struct soap*, const char*, int, const tt__WhiteBalance20Extension *, const char*); -SOAP_FMAC3 tt__WhiteBalance20Extension * SOAP_FMAC4 soap_in_tt__WhiteBalance20Extension(struct soap*, const char*, tt__WhiteBalance20Extension *, const char*); -SOAP_FMAC1 tt__WhiteBalance20Extension * SOAP_FMAC2 soap_instantiate_tt__WhiteBalance20Extension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WhiteBalance20Extension * soap_new_tt__WhiteBalance20Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WhiteBalance20Extension(soap, n, NULL, NULL, NULL); -} - -inline tt__WhiteBalance20Extension * soap_new_req_tt__WhiteBalance20Extension( - struct soap *soap) -{ - tt__WhiteBalance20Extension *_p = ::soap_new_tt__WhiteBalance20Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__WhiteBalance20Extension * soap_new_set_tt__WhiteBalance20Extension( - struct soap *soap, - const std::vector & __any) -{ - tt__WhiteBalance20Extension *_p = ::soap_new_tt__WhiteBalance20Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalance20Extension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__WhiteBalance20Extension(struct soap *soap, tt__WhiteBalance20Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WhiteBalance20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalance20Extension(struct soap *soap, const char *URL, tt__WhiteBalance20Extension 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, "tt:WhiteBalance20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalance20Extension(struct soap *soap, const char *URL, tt__WhiteBalance20Extension 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, "tt:WhiteBalance20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalance20Extension(struct soap *soap, const char *URL, tt__WhiteBalance20Extension 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, "tt:WhiteBalance20Extension", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WhiteBalance20Extension * SOAP_FMAC4 soap_get_tt__WhiteBalance20Extension(struct soap*, tt__WhiteBalance20Extension *, const char*, const char*); - -inline int soap_read_tt__WhiteBalance20Extension(struct soap *soap, tt__WhiteBalance20Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalance20Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalance20Extension(struct soap *soap, const char *URL, tt__WhiteBalance20Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalance20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalance20Extension(struct soap *soap, tt__WhiteBalance20Extension *p) -{ - if (::soap_read_tt__WhiteBalance20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalance20_DEFINED -#define SOAP_TYPE_tt__WhiteBalance20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalance20(struct soap*, const char*, int, const tt__WhiteBalance20 *, const char*); -SOAP_FMAC3 tt__WhiteBalance20 * SOAP_FMAC4 soap_in_tt__WhiteBalance20(struct soap*, const char*, tt__WhiteBalance20 *, const char*); -SOAP_FMAC1 tt__WhiteBalance20 * SOAP_FMAC2 soap_instantiate_tt__WhiteBalance20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WhiteBalance20 * soap_new_tt__WhiteBalance20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WhiteBalance20(soap, n, NULL, NULL, NULL); -} - -inline tt__WhiteBalance20 * soap_new_req_tt__WhiteBalance20( - struct soap *soap, - enum tt__WhiteBalanceMode Mode) -{ - tt__WhiteBalance20 *_p = ::soap_new_tt__WhiteBalance20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalance20::Mode = Mode; - } - return _p; -} - -inline tt__WhiteBalance20 * soap_new_set_tt__WhiteBalance20( - struct soap *soap, - enum tt__WhiteBalanceMode Mode, - float *CrGain, - float *CbGain, - tt__WhiteBalance20Extension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__WhiteBalance20 *_p = ::soap_new_tt__WhiteBalance20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalance20::Mode = Mode; - _p->tt__WhiteBalance20::CrGain = CrGain; - _p->tt__WhiteBalance20::CbGain = CbGain; - _p->tt__WhiteBalance20::Extension = Extension; - _p->tt__WhiteBalance20::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__WhiteBalance20(struct soap *soap, tt__WhiteBalance20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WhiteBalance20", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalance20(struct soap *soap, const char *URL, tt__WhiteBalance20 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, "tt:WhiteBalance20", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalance20(struct soap *soap, const char *URL, tt__WhiteBalance20 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, "tt:WhiteBalance20", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalance20(struct soap *soap, const char *URL, tt__WhiteBalance20 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, "tt:WhiteBalance20", p->soap_type() == SOAP_TYPE_tt__WhiteBalance20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WhiteBalance20 * SOAP_FMAC4 soap_get_tt__WhiteBalance20(struct soap*, tt__WhiteBalance20 *, const char*, const char*); - -inline int soap_read_tt__WhiteBalance20(struct soap *soap, tt__WhiteBalance20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalance20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalance20(struct soap *soap, const char *URL, tt__WhiteBalance20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalance20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalance20(struct soap *soap, tt__WhiteBalance20 *p) -{ - if (::soap_read_tt__WhiteBalance20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelativeFocusOptions20_DEFINED -#define SOAP_TYPE_tt__RelativeFocusOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelativeFocusOptions20(struct soap*, const char*, int, const tt__RelativeFocusOptions20 *, const char*); -SOAP_FMAC3 tt__RelativeFocusOptions20 * SOAP_FMAC4 soap_in_tt__RelativeFocusOptions20(struct soap*, const char*, tt__RelativeFocusOptions20 *, const char*); -SOAP_FMAC1 tt__RelativeFocusOptions20 * SOAP_FMAC2 soap_instantiate_tt__RelativeFocusOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelativeFocusOptions20 * soap_new_tt__RelativeFocusOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelativeFocusOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__RelativeFocusOptions20 * soap_new_req_tt__RelativeFocusOptions20( - struct soap *soap, - tt__FloatRange *Distance) -{ - tt__RelativeFocusOptions20 *_p = ::soap_new_tt__RelativeFocusOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelativeFocusOptions20::Distance = Distance; - } - return _p; -} - -inline tt__RelativeFocusOptions20 * soap_new_set_tt__RelativeFocusOptions20( - struct soap *soap, - tt__FloatRange *Distance, - tt__FloatRange *Speed) -{ - tt__RelativeFocusOptions20 *_p = ::soap_new_tt__RelativeFocusOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelativeFocusOptions20::Distance = Distance; - _p->tt__RelativeFocusOptions20::Speed = Speed; - } - return _p; -} - -inline int soap_write_tt__RelativeFocusOptions20(struct soap *soap, tt__RelativeFocusOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelativeFocusOptions20", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelativeFocusOptions20(struct soap *soap, const char *URL, tt__RelativeFocusOptions20 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, "tt:RelativeFocusOptions20", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelativeFocusOptions20(struct soap *soap, const char *URL, tt__RelativeFocusOptions20 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, "tt:RelativeFocusOptions20", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelativeFocusOptions20(struct soap *soap, const char *URL, tt__RelativeFocusOptions20 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, "tt:RelativeFocusOptions20", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelativeFocusOptions20 * SOAP_FMAC4 soap_get_tt__RelativeFocusOptions20(struct soap*, tt__RelativeFocusOptions20 *, const char*, const char*); - -inline int soap_read_tt__RelativeFocusOptions20(struct soap *soap, tt__RelativeFocusOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelativeFocusOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelativeFocusOptions20(struct soap *soap, const char *URL, tt__RelativeFocusOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelativeFocusOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelativeFocusOptions20(struct soap *soap, tt__RelativeFocusOptions20 *p) -{ - if (::soap_read_tt__RelativeFocusOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MoveOptions20_DEFINED -#define SOAP_TYPE_tt__MoveOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveOptions20(struct soap*, const char*, int, const tt__MoveOptions20 *, const char*); -SOAP_FMAC3 tt__MoveOptions20 * SOAP_FMAC4 soap_in_tt__MoveOptions20(struct soap*, const char*, tt__MoveOptions20 *, const char*); -SOAP_FMAC1 tt__MoveOptions20 * SOAP_FMAC2 soap_instantiate_tt__MoveOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MoveOptions20 * soap_new_tt__MoveOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MoveOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__MoveOptions20 * soap_new_req_tt__MoveOptions20( - struct soap *soap) -{ - tt__MoveOptions20 *_p = ::soap_new_tt__MoveOptions20(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MoveOptions20 * soap_new_set_tt__MoveOptions20( - struct soap *soap, - tt__AbsoluteFocusOptions *Absolute, - tt__RelativeFocusOptions20 *Relative, - tt__ContinuousFocusOptions *Continuous) -{ - tt__MoveOptions20 *_p = ::soap_new_tt__MoveOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MoveOptions20::Absolute = Absolute; - _p->tt__MoveOptions20::Relative = Relative; - _p->tt__MoveOptions20::Continuous = Continuous; - } - return _p; -} - -inline int soap_write_tt__MoveOptions20(struct soap *soap, tt__MoveOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MoveOptions20", p->soap_type() == SOAP_TYPE_tt__MoveOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MoveOptions20(struct soap *soap, const char *URL, tt__MoveOptions20 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, "tt:MoveOptions20", p->soap_type() == SOAP_TYPE_tt__MoveOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MoveOptions20(struct soap *soap, const char *URL, tt__MoveOptions20 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, "tt:MoveOptions20", p->soap_type() == SOAP_TYPE_tt__MoveOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MoveOptions20(struct soap *soap, const char *URL, tt__MoveOptions20 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, "tt:MoveOptions20", p->soap_type() == SOAP_TYPE_tt__MoveOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MoveOptions20 * SOAP_FMAC4 soap_get_tt__MoveOptions20(struct soap*, tt__MoveOptions20 *, const char*, const char*); - -inline int soap_read_tt__MoveOptions20(struct soap *soap, tt__MoveOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MoveOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MoveOptions20(struct soap *soap, const char *URL, tt__MoveOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MoveOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MoveOptions20(struct soap *soap, tt__MoveOptions20 *p) -{ - if (::soap_read_tt__MoveOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ExposureOptions20_DEFINED -#define SOAP_TYPE_tt__ExposureOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureOptions20(struct soap*, const char*, int, const tt__ExposureOptions20 *, const char*); -SOAP_FMAC3 tt__ExposureOptions20 * SOAP_FMAC4 soap_in_tt__ExposureOptions20(struct soap*, const char*, tt__ExposureOptions20 *, const char*); -SOAP_FMAC1 tt__ExposureOptions20 * SOAP_FMAC2 soap_instantiate_tt__ExposureOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ExposureOptions20 * soap_new_tt__ExposureOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ExposureOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__ExposureOptions20 * soap_new_req_tt__ExposureOptions20( - struct soap *soap, - const std::vector & Mode) -{ - tt__ExposureOptions20 *_p = ::soap_new_tt__ExposureOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposureOptions20::Mode = Mode; - } - return _p; -} - -inline tt__ExposureOptions20 * soap_new_set_tt__ExposureOptions20( - struct soap *soap, - const std::vector & Mode, - const std::vector & Priority, - tt__FloatRange *MinExposureTime, - tt__FloatRange *MaxExposureTime, - tt__FloatRange *MinGain, - tt__FloatRange *MaxGain, - tt__FloatRange *MinIris, - tt__FloatRange *MaxIris, - tt__FloatRange *ExposureTime, - tt__FloatRange *Gain, - tt__FloatRange *Iris) -{ - tt__ExposureOptions20 *_p = ::soap_new_tt__ExposureOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposureOptions20::Mode = Mode; - _p->tt__ExposureOptions20::Priority = Priority; - _p->tt__ExposureOptions20::MinExposureTime = MinExposureTime; - _p->tt__ExposureOptions20::MaxExposureTime = MaxExposureTime; - _p->tt__ExposureOptions20::MinGain = MinGain; - _p->tt__ExposureOptions20::MaxGain = MaxGain; - _p->tt__ExposureOptions20::MinIris = MinIris; - _p->tt__ExposureOptions20::MaxIris = MaxIris; - _p->tt__ExposureOptions20::ExposureTime = ExposureTime; - _p->tt__ExposureOptions20::Gain = Gain; - _p->tt__ExposureOptions20::Iris = Iris; - } - return _p; -} - -inline int soap_write_tt__ExposureOptions20(struct soap *soap, tt__ExposureOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ExposureOptions20", p->soap_type() == SOAP_TYPE_tt__ExposureOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ExposureOptions20(struct soap *soap, const char *URL, tt__ExposureOptions20 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, "tt:ExposureOptions20", p->soap_type() == SOAP_TYPE_tt__ExposureOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ExposureOptions20(struct soap *soap, const char *URL, tt__ExposureOptions20 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, "tt:ExposureOptions20", p->soap_type() == SOAP_TYPE_tt__ExposureOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ExposureOptions20(struct soap *soap, const char *URL, tt__ExposureOptions20 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, "tt:ExposureOptions20", p->soap_type() == SOAP_TYPE_tt__ExposureOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ExposureOptions20 * SOAP_FMAC4 soap_get_tt__ExposureOptions20(struct soap*, tt__ExposureOptions20 *, const char*, const char*); - -inline int soap_read_tt__ExposureOptions20(struct soap *soap, tt__ExposureOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ExposureOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ExposureOptions20(struct soap *soap, const char *URL, tt__ExposureOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ExposureOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ExposureOptions20(struct soap *soap, tt__ExposureOptions20 *p) -{ - if (::soap_read_tt__ExposureOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BacklightCompensationOptions20_DEFINED -#define SOAP_TYPE_tt__BacklightCompensationOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationOptions20(struct soap*, const char*, int, const tt__BacklightCompensationOptions20 *, const char*); -SOAP_FMAC3 tt__BacklightCompensationOptions20 * SOAP_FMAC4 soap_in_tt__BacklightCompensationOptions20(struct soap*, const char*, tt__BacklightCompensationOptions20 *, const char*); -SOAP_FMAC1 tt__BacklightCompensationOptions20 * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensationOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__BacklightCompensationOptions20 * soap_new_tt__BacklightCompensationOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__BacklightCompensationOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__BacklightCompensationOptions20 * soap_new_req_tt__BacklightCompensationOptions20( - struct soap *soap, - const std::vector & Mode) -{ - tt__BacklightCompensationOptions20 *_p = ::soap_new_tt__BacklightCompensationOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensationOptions20::Mode = Mode; - } - return _p; -} - -inline tt__BacklightCompensationOptions20 * soap_new_set_tt__BacklightCompensationOptions20( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *Level) -{ - tt__BacklightCompensationOptions20 *_p = ::soap_new_tt__BacklightCompensationOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensationOptions20::Mode = Mode; - _p->tt__BacklightCompensationOptions20::Level = Level; - } - return _p; -} - -inline int soap_write_tt__BacklightCompensationOptions20(struct soap *soap, tt__BacklightCompensationOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:BacklightCompensationOptions20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__BacklightCompensationOptions20(struct soap *soap, const char *URL, tt__BacklightCompensationOptions20 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, "tt:BacklightCompensationOptions20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BacklightCompensationOptions20(struct soap *soap, const char *URL, tt__BacklightCompensationOptions20 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, "tt:BacklightCompensationOptions20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BacklightCompensationOptions20(struct soap *soap, const char *URL, tt__BacklightCompensationOptions20 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, "tt:BacklightCompensationOptions20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__BacklightCompensationOptions20 * SOAP_FMAC4 soap_get_tt__BacklightCompensationOptions20(struct soap*, tt__BacklightCompensationOptions20 *, const char*, const char*); - -inline int soap_read_tt__BacklightCompensationOptions20(struct soap *soap, tt__BacklightCompensationOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__BacklightCompensationOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BacklightCompensationOptions20(struct soap *soap, const char *URL, tt__BacklightCompensationOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BacklightCompensationOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BacklightCompensationOptions20(struct soap *soap, tt__BacklightCompensationOptions20 *p) -{ - if (::soap_read_tt__BacklightCompensationOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WideDynamicRangeOptions20_DEFINED -#define SOAP_TYPE_tt__WideDynamicRangeOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRangeOptions20(struct soap*, const char*, int, const tt__WideDynamicRangeOptions20 *, const char*); -SOAP_FMAC3 tt__WideDynamicRangeOptions20 * SOAP_FMAC4 soap_in_tt__WideDynamicRangeOptions20(struct soap*, const char*, tt__WideDynamicRangeOptions20 *, const char*); -SOAP_FMAC1 tt__WideDynamicRangeOptions20 * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRangeOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WideDynamicRangeOptions20 * soap_new_tt__WideDynamicRangeOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WideDynamicRangeOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__WideDynamicRangeOptions20 * soap_new_req_tt__WideDynamicRangeOptions20( - struct soap *soap, - const std::vector & Mode) -{ - tt__WideDynamicRangeOptions20 *_p = ::soap_new_tt__WideDynamicRangeOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRangeOptions20::Mode = Mode; - } - return _p; -} - -inline tt__WideDynamicRangeOptions20 * soap_new_set_tt__WideDynamicRangeOptions20( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *Level) -{ - tt__WideDynamicRangeOptions20 *_p = ::soap_new_tt__WideDynamicRangeOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRangeOptions20::Mode = Mode; - _p->tt__WideDynamicRangeOptions20::Level = Level; - } - return _p; -} - -inline int soap_write_tt__WideDynamicRangeOptions20(struct soap *soap, tt__WideDynamicRangeOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WideDynamicRangeOptions20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WideDynamicRangeOptions20(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions20 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, "tt:WideDynamicRangeOptions20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WideDynamicRangeOptions20(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions20 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, "tt:WideDynamicRangeOptions20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WideDynamicRangeOptions20(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions20 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, "tt:WideDynamicRangeOptions20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WideDynamicRangeOptions20 * SOAP_FMAC4 soap_get_tt__WideDynamicRangeOptions20(struct soap*, tt__WideDynamicRangeOptions20 *, const char*, const char*); - -inline int soap_read_tt__WideDynamicRangeOptions20(struct soap *soap, tt__WideDynamicRangeOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WideDynamicRangeOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WideDynamicRangeOptions20(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WideDynamicRangeOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WideDynamicRangeOptions20(struct soap *soap, tt__WideDynamicRangeOptions20 *p) -{ - if (::soap_read_tt__WideDynamicRangeOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension_DEFINED -#define SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, const char*, int, const tt__IrCutFilterAutoAdjustmentOptionsExtension *, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptionsExtension * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, const char*, tt__IrCutFilterAutoAdjustmentOptionsExtension *, const char*); -SOAP_FMAC1 tt__IrCutFilterAutoAdjustmentOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IrCutFilterAutoAdjustmentOptionsExtension * soap_new_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__IrCutFilterAutoAdjustmentOptionsExtension * soap_new_req_tt__IrCutFilterAutoAdjustmentOptionsExtension( - struct soap *soap) -{ - tt__IrCutFilterAutoAdjustmentOptionsExtension *_p = ::soap_new_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IrCutFilterAutoAdjustmentOptionsExtension * soap_new_set_tt__IrCutFilterAutoAdjustmentOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__IrCutFilterAutoAdjustmentOptionsExtension *_p = ::soap_new_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoAdjustmentOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IrCutFilterAutoAdjustmentOptionsExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptionsExtension 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, "tt:IrCutFilterAutoAdjustmentOptionsExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptionsExtension 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, "tt:IrCutFilterAutoAdjustmentOptionsExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptionsExtension 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, "tt:IrCutFilterAutoAdjustmentOptionsExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptionsExtension * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, tt__IrCutFilterAutoAdjustmentOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterAutoAdjustmentOptionsExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptionsExtension *p) -{ - if (::soap_read_tt__IrCutFilterAutoAdjustmentOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions_DEFINED -#define SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustmentOptions(struct soap*, const char*, int, const tt__IrCutFilterAutoAdjustmentOptions *, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptions * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustmentOptions(struct soap*, const char*, tt__IrCutFilterAutoAdjustmentOptions *, const char*); -SOAP_FMAC1 tt__IrCutFilterAutoAdjustmentOptions * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustmentOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IrCutFilterAutoAdjustmentOptions * soap_new_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IrCutFilterAutoAdjustmentOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__IrCutFilterAutoAdjustmentOptions * soap_new_req_tt__IrCutFilterAutoAdjustmentOptions( - struct soap *soap, - const std::vector & BoundaryType) -{ - tt__IrCutFilterAutoAdjustmentOptions *_p = ::soap_new_tt__IrCutFilterAutoAdjustmentOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoAdjustmentOptions::BoundaryType = BoundaryType; - } - return _p; -} - -inline tt__IrCutFilterAutoAdjustmentOptions * soap_new_set_tt__IrCutFilterAutoAdjustmentOptions( - struct soap *soap, - const std::vector & BoundaryType, - bool *BoundaryOffset, - tt__DurationRange *ResponseTimeRange, - tt__IrCutFilterAutoAdjustmentOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__IrCutFilterAutoAdjustmentOptions *_p = ::soap_new_tt__IrCutFilterAutoAdjustmentOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoAdjustmentOptions::BoundaryType = BoundaryType; - _p->tt__IrCutFilterAutoAdjustmentOptions::BoundaryOffset = BoundaryOffset; - _p->tt__IrCutFilterAutoAdjustmentOptions::ResponseTimeRange = ResponseTimeRange; - _p->tt__IrCutFilterAutoAdjustmentOptions::Extension = Extension; - _p->tt__IrCutFilterAutoAdjustmentOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IrCutFilterAutoAdjustmentOptions", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptions 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, "tt:IrCutFilterAutoAdjustmentOptions", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptions 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, "tt:IrCutFilterAutoAdjustmentOptions", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptions 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, "tt:IrCutFilterAutoAdjustmentOptions", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptions * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustmentOptions(struct soap*, tt__IrCutFilterAutoAdjustmentOptions *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterAutoAdjustmentOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterAutoAdjustmentOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterAutoAdjustmentOptions(struct soap *soap, tt__IrCutFilterAutoAdjustmentOptions *p) -{ - if (::soap_read_tt__IrCutFilterAutoAdjustmentOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageStabilizationOptionsExtension_DEFINED -#define SOAP_TYPE_tt__ImageStabilizationOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationOptionsExtension(struct soap*, const char*, int, const tt__ImageStabilizationOptionsExtension *, const char*); -SOAP_FMAC3 tt__ImageStabilizationOptionsExtension * SOAP_FMAC4 soap_in_tt__ImageStabilizationOptionsExtension(struct soap*, const char*, tt__ImageStabilizationOptionsExtension *, const char*); -SOAP_FMAC1 tt__ImageStabilizationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImageStabilizationOptionsExtension * soap_new_tt__ImageStabilizationOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImageStabilizationOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ImageStabilizationOptionsExtension * soap_new_req_tt__ImageStabilizationOptionsExtension( - struct soap *soap) -{ - tt__ImageStabilizationOptionsExtension *_p = ::soap_new_tt__ImageStabilizationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImageStabilizationOptionsExtension * soap_new_set_tt__ImageStabilizationOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ImageStabilizationOptionsExtension *_p = ::soap_new_tt__ImageStabilizationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilizationOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ImageStabilizationOptionsExtension(struct soap *soap, tt__ImageStabilizationOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImageStabilizationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageStabilizationOptionsExtension(struct soap *soap, const char *URL, tt__ImageStabilizationOptionsExtension 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, "tt:ImageStabilizationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageStabilizationOptionsExtension(struct soap *soap, const char *URL, tt__ImageStabilizationOptionsExtension 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, "tt:ImageStabilizationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageStabilizationOptionsExtension(struct soap *soap, const char *URL, tt__ImageStabilizationOptionsExtension 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, "tt:ImageStabilizationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImageStabilizationOptionsExtension * SOAP_FMAC4 soap_get_tt__ImageStabilizationOptionsExtension(struct soap*, tt__ImageStabilizationOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__ImageStabilizationOptionsExtension(struct soap *soap, tt__ImageStabilizationOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImageStabilizationOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageStabilizationOptionsExtension(struct soap *soap, const char *URL, tt__ImageStabilizationOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageStabilizationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageStabilizationOptionsExtension(struct soap *soap, tt__ImageStabilizationOptionsExtension *p) -{ - if (::soap_read_tt__ImageStabilizationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageStabilizationOptions_DEFINED -#define SOAP_TYPE_tt__ImageStabilizationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationOptions(struct soap*, const char*, int, const tt__ImageStabilizationOptions *, const char*); -SOAP_FMAC3 tt__ImageStabilizationOptions * SOAP_FMAC4 soap_in_tt__ImageStabilizationOptions(struct soap*, const char*, tt__ImageStabilizationOptions *, const char*); -SOAP_FMAC1 tt__ImageStabilizationOptions * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImageStabilizationOptions * soap_new_tt__ImageStabilizationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImageStabilizationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__ImageStabilizationOptions * soap_new_req_tt__ImageStabilizationOptions( - struct soap *soap, - const std::vector & Mode) -{ - tt__ImageStabilizationOptions *_p = ::soap_new_tt__ImageStabilizationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilizationOptions::Mode = Mode; - } - return _p; -} - -inline tt__ImageStabilizationOptions * soap_new_set_tt__ImageStabilizationOptions( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *Level, - tt__ImageStabilizationOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImageStabilizationOptions *_p = ::soap_new_tt__ImageStabilizationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilizationOptions::Mode = Mode; - _p->tt__ImageStabilizationOptions::Level = Level; - _p->tt__ImageStabilizationOptions::Extension = Extension; - _p->tt__ImageStabilizationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImageStabilizationOptions(struct soap *soap, tt__ImageStabilizationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImageStabilizationOptions", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageStabilizationOptions(struct soap *soap, const char *URL, tt__ImageStabilizationOptions 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, "tt:ImageStabilizationOptions", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageStabilizationOptions(struct soap *soap, const char *URL, tt__ImageStabilizationOptions 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, "tt:ImageStabilizationOptions", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageStabilizationOptions(struct soap *soap, const char *URL, tt__ImageStabilizationOptions 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, "tt:ImageStabilizationOptions", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImageStabilizationOptions * SOAP_FMAC4 soap_get_tt__ImageStabilizationOptions(struct soap*, tt__ImageStabilizationOptions *, const char*, const char*); - -inline int soap_read_tt__ImageStabilizationOptions(struct soap *soap, tt__ImageStabilizationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImageStabilizationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageStabilizationOptions(struct soap *soap, const char *URL, tt__ImageStabilizationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageStabilizationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageStabilizationOptions(struct soap *soap, tt__ImageStabilizationOptions *p) -{ - if (::soap_read_tt__ImageStabilizationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingOptions20Extension4_DEFINED -#define SOAP_TYPE_tt__ImagingOptions20Extension4_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension4(struct soap*, const char*, int, const tt__ImagingOptions20Extension4 *, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension4 * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension4(struct soap*, const char*, tt__ImagingOptions20Extension4 *, const char*); -SOAP_FMAC1 tt__ImagingOptions20Extension4 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension4(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingOptions20Extension4 * soap_new_tt__ImagingOptions20Extension4(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingOptions20Extension4(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingOptions20Extension4 * soap_new_req_tt__ImagingOptions20Extension4( - struct soap *soap) -{ - tt__ImagingOptions20Extension4 *_p = ::soap_new_tt__ImagingOptions20Extension4(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingOptions20Extension4 * soap_new_set_tt__ImagingOptions20Extension4( - struct soap *soap, - const std::vector & __any) -{ - tt__ImagingOptions20Extension4 *_p = ::soap_new_tt__ImagingOptions20Extension4(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingOptions20Extension4::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ImagingOptions20Extension4(struct soap *soap, tt__ImagingOptions20Extension4 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingOptions20Extension4", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension4 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingOptions20Extension4(struct soap *soap, const char *URL, tt__ImagingOptions20Extension4 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, "tt:ImagingOptions20Extension4", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension4 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingOptions20Extension4(struct soap *soap, const char *URL, tt__ImagingOptions20Extension4 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, "tt:ImagingOptions20Extension4", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension4 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingOptions20Extension4(struct soap *soap, const char *URL, tt__ImagingOptions20Extension4 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, "tt:ImagingOptions20Extension4", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension4 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingOptions20Extension4 * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension4(struct soap*, tt__ImagingOptions20Extension4 *, const char*, const char*); - -inline int soap_read_tt__ImagingOptions20Extension4(struct soap *soap, tt__ImagingOptions20Extension4 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingOptions20Extension4(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingOptions20Extension4(struct soap *soap, const char *URL, tt__ImagingOptions20Extension4 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingOptions20Extension4(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingOptions20Extension4(struct soap *soap, tt__ImagingOptions20Extension4 *p) -{ - if (::soap_read_tt__ImagingOptions20Extension4(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingOptions20Extension3_DEFINED -#define SOAP_TYPE_tt__ImagingOptions20Extension3_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension3(struct soap*, const char*, int, const tt__ImagingOptions20Extension3 *, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension3 * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension3(struct soap*, const char*, tt__ImagingOptions20Extension3 *, const char*); -SOAP_FMAC1 tt__ImagingOptions20Extension3 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension3(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingOptions20Extension3 * soap_new_tt__ImagingOptions20Extension3(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingOptions20Extension3(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingOptions20Extension3 * soap_new_req_tt__ImagingOptions20Extension3( - struct soap *soap) -{ - tt__ImagingOptions20Extension3 *_p = ::soap_new_tt__ImagingOptions20Extension3(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingOptions20Extension3 * soap_new_set_tt__ImagingOptions20Extension3( - struct soap *soap, - tt__ToneCompensationOptions *ToneCompensationOptions, - tt__DefoggingOptions *DefoggingOptions, - tt__NoiseReductionOptions *NoiseReductionOptions, - tt__ImagingOptions20Extension4 *Extension) -{ - tt__ImagingOptions20Extension3 *_p = ::soap_new_tt__ImagingOptions20Extension3(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingOptions20Extension3::ToneCompensationOptions = ToneCompensationOptions; - _p->tt__ImagingOptions20Extension3::DefoggingOptions = DefoggingOptions; - _p->tt__ImagingOptions20Extension3::NoiseReductionOptions = NoiseReductionOptions; - _p->tt__ImagingOptions20Extension3::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__ImagingOptions20Extension3(struct soap *soap, tt__ImagingOptions20Extension3 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingOptions20Extension3", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension3 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingOptions20Extension3(struct soap *soap, const char *URL, tt__ImagingOptions20Extension3 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, "tt:ImagingOptions20Extension3", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension3 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingOptions20Extension3(struct soap *soap, const char *URL, tt__ImagingOptions20Extension3 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, "tt:ImagingOptions20Extension3", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension3 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingOptions20Extension3(struct soap *soap, const char *URL, tt__ImagingOptions20Extension3 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, "tt:ImagingOptions20Extension3", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension3 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingOptions20Extension3 * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension3(struct soap*, tt__ImagingOptions20Extension3 *, const char*, const char*); - -inline int soap_read_tt__ImagingOptions20Extension3(struct soap *soap, tt__ImagingOptions20Extension3 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingOptions20Extension3(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingOptions20Extension3(struct soap *soap, const char *URL, tt__ImagingOptions20Extension3 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingOptions20Extension3(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingOptions20Extension3(struct soap *soap, tt__ImagingOptions20Extension3 *p) -{ - if (::soap_read_tt__ImagingOptions20Extension3(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingOptions20Extension2_DEFINED -#define SOAP_TYPE_tt__ImagingOptions20Extension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension2(struct soap*, const char*, int, const tt__ImagingOptions20Extension2 *, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension2 * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension2(struct soap*, const char*, tt__ImagingOptions20Extension2 *, const char*); -SOAP_FMAC1 tt__ImagingOptions20Extension2 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingOptions20Extension2 * soap_new_tt__ImagingOptions20Extension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingOptions20Extension2(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingOptions20Extension2 * soap_new_req_tt__ImagingOptions20Extension2( - struct soap *soap) -{ - tt__ImagingOptions20Extension2 *_p = ::soap_new_tt__ImagingOptions20Extension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingOptions20Extension2 * soap_new_set_tt__ImagingOptions20Extension2( - struct soap *soap, - tt__IrCutFilterAutoAdjustmentOptions *IrCutFilterAutoAdjustment, - tt__ImagingOptions20Extension3 *Extension) -{ - tt__ImagingOptions20Extension2 *_p = ::soap_new_tt__ImagingOptions20Extension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingOptions20Extension2::IrCutFilterAutoAdjustment = IrCutFilterAutoAdjustment; - _p->tt__ImagingOptions20Extension2::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__ImagingOptions20Extension2(struct soap *soap, tt__ImagingOptions20Extension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingOptions20Extension2", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingOptions20Extension2(struct soap *soap, const char *URL, tt__ImagingOptions20Extension2 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, "tt:ImagingOptions20Extension2", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingOptions20Extension2(struct soap *soap, const char *URL, tt__ImagingOptions20Extension2 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, "tt:ImagingOptions20Extension2", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingOptions20Extension2(struct soap *soap, const char *URL, tt__ImagingOptions20Extension2 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, "tt:ImagingOptions20Extension2", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingOptions20Extension2 * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension2(struct soap*, tt__ImagingOptions20Extension2 *, const char*, const char*); - -inline int soap_read_tt__ImagingOptions20Extension2(struct soap *soap, tt__ImagingOptions20Extension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingOptions20Extension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingOptions20Extension2(struct soap *soap, const char *URL, tt__ImagingOptions20Extension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingOptions20Extension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingOptions20Extension2(struct soap *soap, tt__ImagingOptions20Extension2 *p) -{ - if (::soap_read_tt__ImagingOptions20Extension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingOptions20Extension_DEFINED -#define SOAP_TYPE_tt__ImagingOptions20Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20Extension(struct soap*, const char*, int, const tt__ImagingOptions20Extension *, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension * SOAP_FMAC4 soap_in_tt__ImagingOptions20Extension(struct soap*, const char*, tt__ImagingOptions20Extension *, const char*); -SOAP_FMAC1 tt__ImagingOptions20Extension * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20Extension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingOptions20Extension * soap_new_tt__ImagingOptions20Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingOptions20Extension(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingOptions20Extension * soap_new_req_tt__ImagingOptions20Extension( - struct soap *soap) -{ - tt__ImagingOptions20Extension *_p = ::soap_new_tt__ImagingOptions20Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingOptions20Extension * soap_new_set_tt__ImagingOptions20Extension( - struct soap *soap, - const std::vector & __any, - tt__ImageStabilizationOptions *ImageStabilization, - tt__ImagingOptions20Extension2 *Extension) -{ - tt__ImagingOptions20Extension *_p = ::soap_new_tt__ImagingOptions20Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingOptions20Extension::__any = __any; - _p->tt__ImagingOptions20Extension::ImageStabilization = ImageStabilization; - _p->tt__ImagingOptions20Extension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__ImagingOptions20Extension(struct soap *soap, tt__ImagingOptions20Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingOptions20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingOptions20Extension(struct soap *soap, const char *URL, tt__ImagingOptions20Extension 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, "tt:ImagingOptions20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingOptions20Extension(struct soap *soap, const char *URL, tt__ImagingOptions20Extension 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, "tt:ImagingOptions20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingOptions20Extension(struct soap *soap, const char *URL, tt__ImagingOptions20Extension 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, "tt:ImagingOptions20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingOptions20Extension * SOAP_FMAC4 soap_get_tt__ImagingOptions20Extension(struct soap*, tt__ImagingOptions20Extension *, const char*, const char*); - -inline int soap_read_tt__ImagingOptions20Extension(struct soap *soap, tt__ImagingOptions20Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingOptions20Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingOptions20Extension(struct soap *soap, const char *URL, tt__ImagingOptions20Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingOptions20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingOptions20Extension(struct soap *soap, tt__ImagingOptions20Extension *p) -{ - if (::soap_read_tt__ImagingOptions20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingOptions20_DEFINED -#define SOAP_TYPE_tt__ImagingOptions20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions20(struct soap*, const char*, int, const tt__ImagingOptions20 *, const char*); -SOAP_FMAC3 tt__ImagingOptions20 * SOAP_FMAC4 soap_in_tt__ImagingOptions20(struct soap*, const char*, tt__ImagingOptions20 *, const char*); -SOAP_FMAC1 tt__ImagingOptions20 * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingOptions20 * soap_new_tt__ImagingOptions20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingOptions20(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingOptions20 * soap_new_req_tt__ImagingOptions20( - struct soap *soap) -{ - tt__ImagingOptions20 *_p = ::soap_new_tt__ImagingOptions20(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingOptions20 * soap_new_set_tt__ImagingOptions20( - struct soap *soap, - tt__BacklightCompensationOptions20 *BacklightCompensation, - tt__FloatRange *Brightness, - tt__FloatRange *ColorSaturation, - tt__FloatRange *Contrast, - tt__ExposureOptions20 *Exposure, - tt__FocusOptions20 *Focus, - const std::vector & IrCutFilterModes, - tt__FloatRange *Sharpness, - tt__WideDynamicRangeOptions20 *WideDynamicRange, - tt__WhiteBalanceOptions20 *WhiteBalance, - tt__ImagingOptions20Extension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImagingOptions20 *_p = ::soap_new_tt__ImagingOptions20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingOptions20::BacklightCompensation = BacklightCompensation; - _p->tt__ImagingOptions20::Brightness = Brightness; - _p->tt__ImagingOptions20::ColorSaturation = ColorSaturation; - _p->tt__ImagingOptions20::Contrast = Contrast; - _p->tt__ImagingOptions20::Exposure = Exposure; - _p->tt__ImagingOptions20::Focus = Focus; - _p->tt__ImagingOptions20::IrCutFilterModes = IrCutFilterModes; - _p->tt__ImagingOptions20::Sharpness = Sharpness; - _p->tt__ImagingOptions20::WideDynamicRange = WideDynamicRange; - _p->tt__ImagingOptions20::WhiteBalance = WhiteBalance; - _p->tt__ImagingOptions20::Extension = Extension; - _p->tt__ImagingOptions20::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImagingOptions20(struct soap *soap, tt__ImagingOptions20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingOptions20", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingOptions20(struct soap *soap, const char *URL, tt__ImagingOptions20 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, "tt:ImagingOptions20", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingOptions20(struct soap *soap, const char *URL, tt__ImagingOptions20 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, "tt:ImagingOptions20", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingOptions20(struct soap *soap, const char *URL, tt__ImagingOptions20 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, "tt:ImagingOptions20", p->soap_type() == SOAP_TYPE_tt__ImagingOptions20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingOptions20 * SOAP_FMAC4 soap_get_tt__ImagingOptions20(struct soap*, tt__ImagingOptions20 *, const char*, const char*); - -inline int soap_read_tt__ImagingOptions20(struct soap *soap, tt__ImagingOptions20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingOptions20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingOptions20(struct soap *soap, const char *URL, tt__ImagingOptions20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingOptions20(struct soap *soap, tt__ImagingOptions20 *p) -{ - if (::soap_read_tt__ImagingOptions20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NoiseReduction_DEFINED -#define SOAP_TYPE_tt__NoiseReduction_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NoiseReduction(struct soap*, const char*, int, const tt__NoiseReduction *, const char*); -SOAP_FMAC3 tt__NoiseReduction * SOAP_FMAC4 soap_in_tt__NoiseReduction(struct soap*, const char*, tt__NoiseReduction *, const char*); -SOAP_FMAC1 tt__NoiseReduction * SOAP_FMAC2 soap_instantiate_tt__NoiseReduction(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NoiseReduction * soap_new_tt__NoiseReduction(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NoiseReduction(soap, n, NULL, NULL, NULL); -} - -inline tt__NoiseReduction * soap_new_req_tt__NoiseReduction( - struct soap *soap, - float Level) -{ - tt__NoiseReduction *_p = ::soap_new_tt__NoiseReduction(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NoiseReduction::Level = Level; - } - return _p; -} - -inline tt__NoiseReduction * soap_new_set_tt__NoiseReduction( - struct soap *soap, - float Level, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NoiseReduction *_p = ::soap_new_tt__NoiseReduction(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NoiseReduction::Level = Level; - _p->tt__NoiseReduction::__any = __any; - _p->tt__NoiseReduction::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NoiseReduction(struct soap *soap, tt__NoiseReduction const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NoiseReduction", p->soap_type() == SOAP_TYPE_tt__NoiseReduction ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NoiseReduction(struct soap *soap, const char *URL, tt__NoiseReduction 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, "tt:NoiseReduction", p->soap_type() == SOAP_TYPE_tt__NoiseReduction ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NoiseReduction(struct soap *soap, const char *URL, tt__NoiseReduction 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, "tt:NoiseReduction", p->soap_type() == SOAP_TYPE_tt__NoiseReduction ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NoiseReduction(struct soap *soap, const char *URL, tt__NoiseReduction 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, "tt:NoiseReduction", p->soap_type() == SOAP_TYPE_tt__NoiseReduction ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NoiseReduction * SOAP_FMAC4 soap_get_tt__NoiseReduction(struct soap*, tt__NoiseReduction *, const char*, const char*); - -inline int soap_read_tt__NoiseReduction(struct soap *soap, tt__NoiseReduction *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NoiseReduction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NoiseReduction(struct soap *soap, const char *URL, tt__NoiseReduction *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NoiseReduction(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NoiseReduction(struct soap *soap, tt__NoiseReduction *p) -{ - if (::soap_read_tt__NoiseReduction(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DefoggingExtension_DEFINED -#define SOAP_TYPE_tt__DefoggingExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DefoggingExtension(struct soap*, const char*, int, const tt__DefoggingExtension *, const char*); -SOAP_FMAC3 tt__DefoggingExtension * SOAP_FMAC4 soap_in_tt__DefoggingExtension(struct soap*, const char*, tt__DefoggingExtension *, const char*); -SOAP_FMAC1 tt__DefoggingExtension * SOAP_FMAC2 soap_instantiate_tt__DefoggingExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DefoggingExtension * soap_new_tt__DefoggingExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DefoggingExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__DefoggingExtension * soap_new_req_tt__DefoggingExtension( - struct soap *soap) -{ - tt__DefoggingExtension *_p = ::soap_new_tt__DefoggingExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__DefoggingExtension * soap_new_set_tt__DefoggingExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__DefoggingExtension *_p = ::soap_new_tt__DefoggingExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DefoggingExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__DefoggingExtension(struct soap *soap, tt__DefoggingExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DefoggingExtension", p->soap_type() == SOAP_TYPE_tt__DefoggingExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DefoggingExtension(struct soap *soap, const char *URL, tt__DefoggingExtension 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, "tt:DefoggingExtension", p->soap_type() == SOAP_TYPE_tt__DefoggingExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DefoggingExtension(struct soap *soap, const char *URL, tt__DefoggingExtension 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, "tt:DefoggingExtension", p->soap_type() == SOAP_TYPE_tt__DefoggingExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DefoggingExtension(struct soap *soap, const char *URL, tt__DefoggingExtension 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, "tt:DefoggingExtension", p->soap_type() == SOAP_TYPE_tt__DefoggingExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DefoggingExtension * SOAP_FMAC4 soap_get_tt__DefoggingExtension(struct soap*, tt__DefoggingExtension *, const char*, const char*); - -inline int soap_read_tt__DefoggingExtension(struct soap *soap, tt__DefoggingExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DefoggingExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DefoggingExtension(struct soap *soap, const char *URL, tt__DefoggingExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DefoggingExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DefoggingExtension(struct soap *soap, tt__DefoggingExtension *p) -{ - if (::soap_read_tt__DefoggingExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Defogging_DEFINED -#define SOAP_TYPE_tt__Defogging_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Defogging(struct soap*, const char*, int, const tt__Defogging *, const char*); -SOAP_FMAC3 tt__Defogging * SOAP_FMAC4 soap_in_tt__Defogging(struct soap*, const char*, tt__Defogging *, const char*); -SOAP_FMAC1 tt__Defogging * SOAP_FMAC2 soap_instantiate_tt__Defogging(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Defogging * soap_new_tt__Defogging(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Defogging(soap, n, NULL, NULL, NULL); -} - -inline tt__Defogging * soap_new_req_tt__Defogging( - struct soap *soap, - const std::string& Mode) -{ - tt__Defogging *_p = ::soap_new_tt__Defogging(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Defogging::Mode = Mode; - } - return _p; -} - -inline tt__Defogging * soap_new_set_tt__Defogging( - struct soap *soap, - const std::string& Mode, - float *Level, - tt__DefoggingExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Defogging *_p = ::soap_new_tt__Defogging(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Defogging::Mode = Mode; - _p->tt__Defogging::Level = Level; - _p->tt__Defogging::Extension = Extension; - _p->tt__Defogging::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Defogging(struct soap *soap, tt__Defogging const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Defogging", p->soap_type() == SOAP_TYPE_tt__Defogging ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Defogging(struct soap *soap, const char *URL, tt__Defogging 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, "tt:Defogging", p->soap_type() == SOAP_TYPE_tt__Defogging ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Defogging(struct soap *soap, const char *URL, tt__Defogging 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, "tt:Defogging", p->soap_type() == SOAP_TYPE_tt__Defogging ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Defogging(struct soap *soap, const char *URL, tt__Defogging 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, "tt:Defogging", p->soap_type() == SOAP_TYPE_tt__Defogging ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Defogging * SOAP_FMAC4 soap_get_tt__Defogging(struct soap*, tt__Defogging *, const char*, const char*); - -inline int soap_read_tt__Defogging(struct soap *soap, tt__Defogging *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Defogging(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Defogging(struct soap *soap, const char *URL, tt__Defogging *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Defogging(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Defogging(struct soap *soap, tt__Defogging *p) -{ - if (::soap_read_tt__Defogging(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ToneCompensationExtension_DEFINED -#define SOAP_TYPE_tt__ToneCompensationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensationExtension(struct soap*, const char*, int, const tt__ToneCompensationExtension *, const char*); -SOAP_FMAC3 tt__ToneCompensationExtension * SOAP_FMAC4 soap_in_tt__ToneCompensationExtension(struct soap*, const char*, tt__ToneCompensationExtension *, const char*); -SOAP_FMAC1 tt__ToneCompensationExtension * SOAP_FMAC2 soap_instantiate_tt__ToneCompensationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ToneCompensationExtension * soap_new_tt__ToneCompensationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ToneCompensationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ToneCompensationExtension * soap_new_req_tt__ToneCompensationExtension( - struct soap *soap) -{ - tt__ToneCompensationExtension *_p = ::soap_new_tt__ToneCompensationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ToneCompensationExtension * soap_new_set_tt__ToneCompensationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ToneCompensationExtension *_p = ::soap_new_tt__ToneCompensationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ToneCompensationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ToneCompensationExtension(struct soap *soap, tt__ToneCompensationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ToneCompensationExtension", p->soap_type() == SOAP_TYPE_tt__ToneCompensationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ToneCompensationExtension(struct soap *soap, const char *URL, tt__ToneCompensationExtension 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, "tt:ToneCompensationExtension", p->soap_type() == SOAP_TYPE_tt__ToneCompensationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ToneCompensationExtension(struct soap *soap, const char *URL, tt__ToneCompensationExtension 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, "tt:ToneCompensationExtension", p->soap_type() == SOAP_TYPE_tt__ToneCompensationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ToneCompensationExtension(struct soap *soap, const char *URL, tt__ToneCompensationExtension 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, "tt:ToneCompensationExtension", p->soap_type() == SOAP_TYPE_tt__ToneCompensationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ToneCompensationExtension * SOAP_FMAC4 soap_get_tt__ToneCompensationExtension(struct soap*, tt__ToneCompensationExtension *, const char*, const char*); - -inline int soap_read_tt__ToneCompensationExtension(struct soap *soap, tt__ToneCompensationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ToneCompensationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ToneCompensationExtension(struct soap *soap, const char *URL, tt__ToneCompensationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ToneCompensationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ToneCompensationExtension(struct soap *soap, tt__ToneCompensationExtension *p) -{ - if (::soap_read_tt__ToneCompensationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ToneCompensation_DEFINED -#define SOAP_TYPE_tt__ToneCompensation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ToneCompensation(struct soap*, const char*, int, const tt__ToneCompensation *, const char*); -SOAP_FMAC3 tt__ToneCompensation * SOAP_FMAC4 soap_in_tt__ToneCompensation(struct soap*, const char*, tt__ToneCompensation *, const char*); -SOAP_FMAC1 tt__ToneCompensation * SOAP_FMAC2 soap_instantiate_tt__ToneCompensation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ToneCompensation * soap_new_tt__ToneCompensation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ToneCompensation(soap, n, NULL, NULL, NULL); -} - -inline tt__ToneCompensation * soap_new_req_tt__ToneCompensation( - struct soap *soap, - const std::string& Mode) -{ - tt__ToneCompensation *_p = ::soap_new_tt__ToneCompensation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ToneCompensation::Mode = Mode; - } - return _p; -} - -inline tt__ToneCompensation * soap_new_set_tt__ToneCompensation( - struct soap *soap, - const std::string& Mode, - float *Level, - tt__ToneCompensationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ToneCompensation *_p = ::soap_new_tt__ToneCompensation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ToneCompensation::Mode = Mode; - _p->tt__ToneCompensation::Level = Level; - _p->tt__ToneCompensation::Extension = Extension; - _p->tt__ToneCompensation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ToneCompensation(struct soap *soap, tt__ToneCompensation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ToneCompensation", p->soap_type() == SOAP_TYPE_tt__ToneCompensation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ToneCompensation(struct soap *soap, const char *URL, tt__ToneCompensation 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, "tt:ToneCompensation", p->soap_type() == SOAP_TYPE_tt__ToneCompensation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ToneCompensation(struct soap *soap, const char *URL, tt__ToneCompensation 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, "tt:ToneCompensation", p->soap_type() == SOAP_TYPE_tt__ToneCompensation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ToneCompensation(struct soap *soap, const char *URL, tt__ToneCompensation 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, "tt:ToneCompensation", p->soap_type() == SOAP_TYPE_tt__ToneCompensation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ToneCompensation * SOAP_FMAC4 soap_get_tt__ToneCompensation(struct soap*, tt__ToneCompensation *, const char*, const char*); - -inline int soap_read_tt__ToneCompensation(struct soap *soap, tt__ToneCompensation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ToneCompensation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ToneCompensation(struct soap *soap, const char *URL, tt__ToneCompensation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ToneCompensation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ToneCompensation(struct soap *soap, tt__ToneCompensation *p) -{ - if (::soap_read_tt__ToneCompensation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Exposure20_DEFINED -#define SOAP_TYPE_tt__Exposure20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Exposure20(struct soap*, const char*, int, const tt__Exposure20 *, const char*); -SOAP_FMAC3 tt__Exposure20 * SOAP_FMAC4 soap_in_tt__Exposure20(struct soap*, const char*, tt__Exposure20 *, const char*); -SOAP_FMAC1 tt__Exposure20 * SOAP_FMAC2 soap_instantiate_tt__Exposure20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Exposure20 * soap_new_tt__Exposure20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Exposure20(soap, n, NULL, NULL, NULL); -} - -inline tt__Exposure20 * soap_new_req_tt__Exposure20( - struct soap *soap, - enum tt__ExposureMode Mode) -{ - tt__Exposure20 *_p = ::soap_new_tt__Exposure20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Exposure20::Mode = Mode; - } - return _p; -} - -inline tt__Exposure20 * soap_new_set_tt__Exposure20( - struct soap *soap, - enum tt__ExposureMode Mode, - enum tt__ExposurePriority *Priority, - tt__Rectangle *Window, - float *MinExposureTime, - float *MaxExposureTime, - float *MinGain, - float *MaxGain, - float *MinIris, - float *MaxIris, - float *ExposureTime, - float *Gain, - float *Iris) -{ - tt__Exposure20 *_p = ::soap_new_tt__Exposure20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Exposure20::Mode = Mode; - _p->tt__Exposure20::Priority = Priority; - _p->tt__Exposure20::Window = Window; - _p->tt__Exposure20::MinExposureTime = MinExposureTime; - _p->tt__Exposure20::MaxExposureTime = MaxExposureTime; - _p->tt__Exposure20::MinGain = MinGain; - _p->tt__Exposure20::MaxGain = MaxGain; - _p->tt__Exposure20::MinIris = MinIris; - _p->tt__Exposure20::MaxIris = MaxIris; - _p->tt__Exposure20::ExposureTime = ExposureTime; - _p->tt__Exposure20::Gain = Gain; - _p->tt__Exposure20::Iris = Iris; - } - return _p; -} - -inline int soap_write_tt__Exposure20(struct soap *soap, tt__Exposure20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Exposure20", p->soap_type() == SOAP_TYPE_tt__Exposure20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Exposure20(struct soap *soap, const char *URL, tt__Exposure20 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, "tt:Exposure20", p->soap_type() == SOAP_TYPE_tt__Exposure20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Exposure20(struct soap *soap, const char *URL, tt__Exposure20 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, "tt:Exposure20", p->soap_type() == SOAP_TYPE_tt__Exposure20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Exposure20(struct soap *soap, const char *URL, tt__Exposure20 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, "tt:Exposure20", p->soap_type() == SOAP_TYPE_tt__Exposure20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Exposure20 * SOAP_FMAC4 soap_get_tt__Exposure20(struct soap*, tt__Exposure20 *, const char*, const char*); - -inline int soap_read_tt__Exposure20(struct soap *soap, tt__Exposure20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Exposure20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Exposure20(struct soap *soap, const char *URL, tt__Exposure20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Exposure20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Exposure20(struct soap *soap, tt__Exposure20 *p) -{ - if (::soap_read_tt__Exposure20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BacklightCompensation20_DEFINED -#define SOAP_TYPE_tt__BacklightCompensation20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensation20(struct soap*, const char*, int, const tt__BacklightCompensation20 *, const char*); -SOAP_FMAC3 tt__BacklightCompensation20 * SOAP_FMAC4 soap_in_tt__BacklightCompensation20(struct soap*, const char*, tt__BacklightCompensation20 *, const char*); -SOAP_FMAC1 tt__BacklightCompensation20 * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensation20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__BacklightCompensation20 * soap_new_tt__BacklightCompensation20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__BacklightCompensation20(soap, n, NULL, NULL, NULL); -} - -inline tt__BacklightCompensation20 * soap_new_req_tt__BacklightCompensation20( - struct soap *soap, - enum tt__BacklightCompensationMode Mode) -{ - tt__BacklightCompensation20 *_p = ::soap_new_tt__BacklightCompensation20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensation20::Mode = Mode; - } - return _p; -} - -inline tt__BacklightCompensation20 * soap_new_set_tt__BacklightCompensation20( - struct soap *soap, - enum tt__BacklightCompensationMode Mode, - float *Level) -{ - tt__BacklightCompensation20 *_p = ::soap_new_tt__BacklightCompensation20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensation20::Mode = Mode; - _p->tt__BacklightCompensation20::Level = Level; - } - return _p; -} - -inline int soap_write_tt__BacklightCompensation20(struct soap *soap, tt__BacklightCompensation20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:BacklightCompensation20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__BacklightCompensation20(struct soap *soap, const char *URL, tt__BacklightCompensation20 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, "tt:BacklightCompensation20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BacklightCompensation20(struct soap *soap, const char *URL, tt__BacklightCompensation20 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, "tt:BacklightCompensation20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BacklightCompensation20(struct soap *soap, const char *URL, tt__BacklightCompensation20 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, "tt:BacklightCompensation20", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__BacklightCompensation20 * SOAP_FMAC4 soap_get_tt__BacklightCompensation20(struct soap*, tt__BacklightCompensation20 *, const char*, const char*); - -inline int soap_read_tt__BacklightCompensation20(struct soap *soap, tt__BacklightCompensation20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__BacklightCompensation20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BacklightCompensation20(struct soap *soap, const char *URL, tt__BacklightCompensation20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BacklightCompensation20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BacklightCompensation20(struct soap *soap, tt__BacklightCompensation20 *p) -{ - if (::soap_read_tt__BacklightCompensation20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WideDynamicRange20_DEFINED -#define SOAP_TYPE_tt__WideDynamicRange20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRange20(struct soap*, const char*, int, const tt__WideDynamicRange20 *, const char*); -SOAP_FMAC3 tt__WideDynamicRange20 * SOAP_FMAC4 soap_in_tt__WideDynamicRange20(struct soap*, const char*, tt__WideDynamicRange20 *, const char*); -SOAP_FMAC1 tt__WideDynamicRange20 * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRange20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WideDynamicRange20 * soap_new_tt__WideDynamicRange20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WideDynamicRange20(soap, n, NULL, NULL, NULL); -} - -inline tt__WideDynamicRange20 * soap_new_req_tt__WideDynamicRange20( - struct soap *soap, - enum tt__WideDynamicMode Mode) -{ - tt__WideDynamicRange20 *_p = ::soap_new_tt__WideDynamicRange20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRange20::Mode = Mode; - } - return _p; -} - -inline tt__WideDynamicRange20 * soap_new_set_tt__WideDynamicRange20( - struct soap *soap, - enum tt__WideDynamicMode Mode, - float *Level) -{ - tt__WideDynamicRange20 *_p = ::soap_new_tt__WideDynamicRange20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRange20::Mode = Mode; - _p->tt__WideDynamicRange20::Level = Level; - } - return _p; -} - -inline int soap_write_tt__WideDynamicRange20(struct soap *soap, tt__WideDynamicRange20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WideDynamicRange20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WideDynamicRange20(struct soap *soap, const char *URL, tt__WideDynamicRange20 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, "tt:WideDynamicRange20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WideDynamicRange20(struct soap *soap, const char *URL, tt__WideDynamicRange20 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, "tt:WideDynamicRange20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WideDynamicRange20(struct soap *soap, const char *URL, tt__WideDynamicRange20 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, "tt:WideDynamicRange20", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WideDynamicRange20 * SOAP_FMAC4 soap_get_tt__WideDynamicRange20(struct soap*, tt__WideDynamicRange20 *, const char*, const char*); - -inline int soap_read_tt__WideDynamicRange20(struct soap *soap, tt__WideDynamicRange20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WideDynamicRange20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WideDynamicRange20(struct soap *soap, const char *URL, tt__WideDynamicRange20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WideDynamicRange20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WideDynamicRange20(struct soap *soap, tt__WideDynamicRange20 *p) -{ - if (::soap_read_tt__WideDynamicRange20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension_DEFINED -#define SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustmentExtension(struct soap*, const char*, int, const tt__IrCutFilterAutoAdjustmentExtension *, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentExtension * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustmentExtension(struct soap*, const char*, tt__IrCutFilterAutoAdjustmentExtension *, const char*); -SOAP_FMAC1 tt__IrCutFilterAutoAdjustmentExtension * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustmentExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IrCutFilterAutoAdjustmentExtension * soap_new_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IrCutFilterAutoAdjustmentExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__IrCutFilterAutoAdjustmentExtension * soap_new_req_tt__IrCutFilterAutoAdjustmentExtension( - struct soap *soap) -{ - tt__IrCutFilterAutoAdjustmentExtension *_p = ::soap_new_tt__IrCutFilterAutoAdjustmentExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IrCutFilterAutoAdjustmentExtension * soap_new_set_tt__IrCutFilterAutoAdjustmentExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__IrCutFilterAutoAdjustmentExtension *_p = ::soap_new_tt__IrCutFilterAutoAdjustmentExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoAdjustmentExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IrCutFilterAutoAdjustmentExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentExtension 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, "tt:IrCutFilterAutoAdjustmentExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentExtension 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, "tt:IrCutFilterAutoAdjustmentExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentExtension 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, "tt:IrCutFilterAutoAdjustmentExtension", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustmentExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentExtension * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustmentExtension(struct soap*, tt__IrCutFilterAutoAdjustmentExtension *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterAutoAdjustmentExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustmentExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterAutoAdjustmentExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterAutoAdjustmentExtension(struct soap *soap, tt__IrCutFilterAutoAdjustmentExtension *p) -{ - if (::soap_read_tt__IrCutFilterAutoAdjustmentExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IrCutFilterAutoAdjustment_DEFINED -#define SOAP_TYPE_tt__IrCutFilterAutoAdjustment_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IrCutFilterAutoAdjustment(struct soap*, const char*, int, const tt__IrCutFilterAutoAdjustment *, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustment * SOAP_FMAC4 soap_in_tt__IrCutFilterAutoAdjustment(struct soap*, const char*, tt__IrCutFilterAutoAdjustment *, const char*); -SOAP_FMAC1 tt__IrCutFilterAutoAdjustment * SOAP_FMAC2 soap_instantiate_tt__IrCutFilterAutoAdjustment(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IrCutFilterAutoAdjustment * soap_new_tt__IrCutFilterAutoAdjustment(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IrCutFilterAutoAdjustment(soap, n, NULL, NULL, NULL); -} - -inline tt__IrCutFilterAutoAdjustment * soap_new_req_tt__IrCutFilterAutoAdjustment( - struct soap *soap, - const std::string& BoundaryType) -{ - tt__IrCutFilterAutoAdjustment *_p = ::soap_new_tt__IrCutFilterAutoAdjustment(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoAdjustment::BoundaryType = BoundaryType; - } - return _p; -} - -inline tt__IrCutFilterAutoAdjustment * soap_new_set_tt__IrCutFilterAutoAdjustment( - struct soap *soap, - const std::string& BoundaryType, - float *BoundaryOffset, - std::string *ResponseTime, - tt__IrCutFilterAutoAdjustmentExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__IrCutFilterAutoAdjustment *_p = ::soap_new_tt__IrCutFilterAutoAdjustment(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IrCutFilterAutoAdjustment::BoundaryType = BoundaryType; - _p->tt__IrCutFilterAutoAdjustment::BoundaryOffset = BoundaryOffset; - _p->tt__IrCutFilterAutoAdjustment::ResponseTime = ResponseTime; - _p->tt__IrCutFilterAutoAdjustment::Extension = Extension; - _p->tt__IrCutFilterAutoAdjustment::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__IrCutFilterAutoAdjustment(struct soap *soap, tt__IrCutFilterAutoAdjustment const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IrCutFilterAutoAdjustment", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustment ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IrCutFilterAutoAdjustment(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustment 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, "tt:IrCutFilterAutoAdjustment", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustment ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IrCutFilterAutoAdjustment(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustment 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, "tt:IrCutFilterAutoAdjustment", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustment ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IrCutFilterAutoAdjustment(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustment 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, "tt:IrCutFilterAutoAdjustment", p->soap_type() == SOAP_TYPE_tt__IrCutFilterAutoAdjustment ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IrCutFilterAutoAdjustment * SOAP_FMAC4 soap_get_tt__IrCutFilterAutoAdjustment(struct soap*, tt__IrCutFilterAutoAdjustment *, const char*, const char*); - -inline int soap_read_tt__IrCutFilterAutoAdjustment(struct soap *soap, tt__IrCutFilterAutoAdjustment *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IrCutFilterAutoAdjustment(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IrCutFilterAutoAdjustment(struct soap *soap, const char *URL, tt__IrCutFilterAutoAdjustment *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IrCutFilterAutoAdjustment(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IrCutFilterAutoAdjustment(struct soap *soap, tt__IrCutFilterAutoAdjustment *p) -{ - if (::soap_read_tt__IrCutFilterAutoAdjustment(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageStabilizationExtension_DEFINED -#define SOAP_TYPE_tt__ImageStabilizationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilizationExtension(struct soap*, const char*, int, const tt__ImageStabilizationExtension *, const char*); -SOAP_FMAC3 tt__ImageStabilizationExtension * SOAP_FMAC4 soap_in_tt__ImageStabilizationExtension(struct soap*, const char*, tt__ImageStabilizationExtension *, const char*); -SOAP_FMAC1 tt__ImageStabilizationExtension * SOAP_FMAC2 soap_instantiate_tt__ImageStabilizationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImageStabilizationExtension * soap_new_tt__ImageStabilizationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImageStabilizationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ImageStabilizationExtension * soap_new_req_tt__ImageStabilizationExtension( - struct soap *soap) -{ - tt__ImageStabilizationExtension *_p = ::soap_new_tt__ImageStabilizationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImageStabilizationExtension * soap_new_set_tt__ImageStabilizationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ImageStabilizationExtension *_p = ::soap_new_tt__ImageStabilizationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilizationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ImageStabilizationExtension(struct soap *soap, tt__ImageStabilizationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImageStabilizationExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageStabilizationExtension(struct soap *soap, const char *URL, tt__ImageStabilizationExtension 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, "tt:ImageStabilizationExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageStabilizationExtension(struct soap *soap, const char *URL, tt__ImageStabilizationExtension 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, "tt:ImageStabilizationExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageStabilizationExtension(struct soap *soap, const char *URL, tt__ImageStabilizationExtension 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, "tt:ImageStabilizationExtension", p->soap_type() == SOAP_TYPE_tt__ImageStabilizationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImageStabilizationExtension * SOAP_FMAC4 soap_get_tt__ImageStabilizationExtension(struct soap*, tt__ImageStabilizationExtension *, const char*, const char*); - -inline int soap_read_tt__ImageStabilizationExtension(struct soap *soap, tt__ImageStabilizationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImageStabilizationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageStabilizationExtension(struct soap *soap, const char *URL, tt__ImageStabilizationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageStabilizationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageStabilizationExtension(struct soap *soap, tt__ImageStabilizationExtension *p) -{ - if (::soap_read_tt__ImageStabilizationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImageStabilization_DEFINED -#define SOAP_TYPE_tt__ImageStabilization_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImageStabilization(struct soap*, const char*, int, const tt__ImageStabilization *, const char*); -SOAP_FMAC3 tt__ImageStabilization * SOAP_FMAC4 soap_in_tt__ImageStabilization(struct soap*, const char*, tt__ImageStabilization *, const char*); -SOAP_FMAC1 tt__ImageStabilization * SOAP_FMAC2 soap_instantiate_tt__ImageStabilization(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImageStabilization * soap_new_tt__ImageStabilization(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImageStabilization(soap, n, NULL, NULL, NULL); -} - -inline tt__ImageStabilization * soap_new_req_tt__ImageStabilization( - struct soap *soap, - enum tt__ImageStabilizationMode Mode) -{ - tt__ImageStabilization *_p = ::soap_new_tt__ImageStabilization(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilization::Mode = Mode; - } - return _p; -} - -inline tt__ImageStabilization * soap_new_set_tt__ImageStabilization( - struct soap *soap, - enum tt__ImageStabilizationMode Mode, - float *Level, - tt__ImageStabilizationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImageStabilization *_p = ::soap_new_tt__ImageStabilization(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImageStabilization::Mode = Mode; - _p->tt__ImageStabilization::Level = Level; - _p->tt__ImageStabilization::Extension = Extension; - _p->tt__ImageStabilization::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImageStabilization(struct soap *soap, tt__ImageStabilization const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImageStabilization", p->soap_type() == SOAP_TYPE_tt__ImageStabilization ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImageStabilization(struct soap *soap, const char *URL, tt__ImageStabilization 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, "tt:ImageStabilization", p->soap_type() == SOAP_TYPE_tt__ImageStabilization ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImageStabilization(struct soap *soap, const char *URL, tt__ImageStabilization 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, "tt:ImageStabilization", p->soap_type() == SOAP_TYPE_tt__ImageStabilization ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImageStabilization(struct soap *soap, const char *URL, tt__ImageStabilization 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, "tt:ImageStabilization", p->soap_type() == SOAP_TYPE_tt__ImageStabilization ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImageStabilization * SOAP_FMAC4 soap_get_tt__ImageStabilization(struct soap*, tt__ImageStabilization *, const char*, const char*); - -inline int soap_read_tt__ImageStabilization(struct soap *soap, tt__ImageStabilization *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImageStabilization(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImageStabilization(struct soap *soap, const char *URL, tt__ImageStabilization *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImageStabilization(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImageStabilization(struct soap *soap, tt__ImageStabilization *p) -{ - if (::soap_read_tt__ImageStabilization(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingSettingsExtension204_DEFINED -#define SOAP_TYPE_tt__ImagingSettingsExtension204_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension204(struct soap*, const char*, int, const tt__ImagingSettingsExtension204 *, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension204 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension204(struct soap*, const char*, tt__ImagingSettingsExtension204 *, const char*); -SOAP_FMAC1 tt__ImagingSettingsExtension204 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension204(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingSettingsExtension204 * soap_new_tt__ImagingSettingsExtension204(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingSettingsExtension204(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingSettingsExtension204 * soap_new_req_tt__ImagingSettingsExtension204( - struct soap *soap) -{ - tt__ImagingSettingsExtension204 *_p = ::soap_new_tt__ImagingSettingsExtension204(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingSettingsExtension204 * soap_new_set_tt__ImagingSettingsExtension204( - struct soap *soap, - const std::vector & __any) -{ - tt__ImagingSettingsExtension204 *_p = ::soap_new_tt__ImagingSettingsExtension204(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingSettingsExtension204::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ImagingSettingsExtension204(struct soap *soap, tt__ImagingSettingsExtension204 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingSettingsExtension204", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension204 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingSettingsExtension204(struct soap *soap, const char *URL, tt__ImagingSettingsExtension204 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, "tt:ImagingSettingsExtension204", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension204 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingSettingsExtension204(struct soap *soap, const char *URL, tt__ImagingSettingsExtension204 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, "tt:ImagingSettingsExtension204", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension204 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingSettingsExtension204(struct soap *soap, const char *URL, tt__ImagingSettingsExtension204 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, "tt:ImagingSettingsExtension204", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension204 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingSettingsExtension204 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension204(struct soap*, tt__ImagingSettingsExtension204 *, const char*, const char*); - -inline int soap_read_tt__ImagingSettingsExtension204(struct soap *soap, tt__ImagingSettingsExtension204 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingSettingsExtension204(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingSettingsExtension204(struct soap *soap, const char *URL, tt__ImagingSettingsExtension204 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingSettingsExtension204(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingSettingsExtension204(struct soap *soap, tt__ImagingSettingsExtension204 *p) -{ - if (::soap_read_tt__ImagingSettingsExtension204(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingSettingsExtension203_DEFINED -#define SOAP_TYPE_tt__ImagingSettingsExtension203_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension203(struct soap*, const char*, int, const tt__ImagingSettingsExtension203 *, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension203 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension203(struct soap*, const char*, tt__ImagingSettingsExtension203 *, const char*); -SOAP_FMAC1 tt__ImagingSettingsExtension203 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension203(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingSettingsExtension203 * soap_new_tt__ImagingSettingsExtension203(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingSettingsExtension203(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingSettingsExtension203 * soap_new_req_tt__ImagingSettingsExtension203( - struct soap *soap) -{ - tt__ImagingSettingsExtension203 *_p = ::soap_new_tt__ImagingSettingsExtension203(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingSettingsExtension203 * soap_new_set_tt__ImagingSettingsExtension203( - struct soap *soap, - tt__ToneCompensation *ToneCompensation, - tt__Defogging *Defogging, - tt__NoiseReduction *NoiseReduction, - tt__ImagingSettingsExtension204 *Extension) -{ - tt__ImagingSettingsExtension203 *_p = ::soap_new_tt__ImagingSettingsExtension203(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingSettingsExtension203::ToneCompensation = ToneCompensation; - _p->tt__ImagingSettingsExtension203::Defogging = Defogging; - _p->tt__ImagingSettingsExtension203::NoiseReduction = NoiseReduction; - _p->tt__ImagingSettingsExtension203::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__ImagingSettingsExtension203(struct soap *soap, tt__ImagingSettingsExtension203 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingSettingsExtension203", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension203 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingSettingsExtension203(struct soap *soap, const char *URL, tt__ImagingSettingsExtension203 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, "tt:ImagingSettingsExtension203", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension203 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingSettingsExtension203(struct soap *soap, const char *URL, tt__ImagingSettingsExtension203 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, "tt:ImagingSettingsExtension203", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension203 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingSettingsExtension203(struct soap *soap, const char *URL, tt__ImagingSettingsExtension203 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, "tt:ImagingSettingsExtension203", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension203 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingSettingsExtension203 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension203(struct soap*, tt__ImagingSettingsExtension203 *, const char*, const char*); - -inline int soap_read_tt__ImagingSettingsExtension203(struct soap *soap, tt__ImagingSettingsExtension203 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingSettingsExtension203(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingSettingsExtension203(struct soap *soap, const char *URL, tt__ImagingSettingsExtension203 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingSettingsExtension203(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingSettingsExtension203(struct soap *soap, tt__ImagingSettingsExtension203 *p) -{ - if (::soap_read_tt__ImagingSettingsExtension203(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingSettingsExtension202_DEFINED -#define SOAP_TYPE_tt__ImagingSettingsExtension202_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension202(struct soap*, const char*, int, const tt__ImagingSettingsExtension202 *, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension202 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension202(struct soap*, const char*, tt__ImagingSettingsExtension202 *, const char*); -SOAP_FMAC1 tt__ImagingSettingsExtension202 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension202(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingSettingsExtension202 * soap_new_tt__ImagingSettingsExtension202(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingSettingsExtension202(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingSettingsExtension202 * soap_new_req_tt__ImagingSettingsExtension202( - struct soap *soap) -{ - tt__ImagingSettingsExtension202 *_p = ::soap_new_tt__ImagingSettingsExtension202(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingSettingsExtension202 * soap_new_set_tt__ImagingSettingsExtension202( - struct soap *soap, - const std::vector & IrCutFilterAutoAdjustment, - tt__ImagingSettingsExtension203 *Extension) -{ - tt__ImagingSettingsExtension202 *_p = ::soap_new_tt__ImagingSettingsExtension202(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingSettingsExtension202::IrCutFilterAutoAdjustment = IrCutFilterAutoAdjustment; - _p->tt__ImagingSettingsExtension202::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__ImagingSettingsExtension202(struct soap *soap, tt__ImagingSettingsExtension202 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingSettingsExtension202", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension202 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingSettingsExtension202(struct soap *soap, const char *URL, tt__ImagingSettingsExtension202 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, "tt:ImagingSettingsExtension202", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension202 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingSettingsExtension202(struct soap *soap, const char *URL, tt__ImagingSettingsExtension202 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, "tt:ImagingSettingsExtension202", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension202 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingSettingsExtension202(struct soap *soap, const char *URL, tt__ImagingSettingsExtension202 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, "tt:ImagingSettingsExtension202", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension202 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingSettingsExtension202 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension202(struct soap*, tt__ImagingSettingsExtension202 *, const char*, const char*); - -inline int soap_read_tt__ImagingSettingsExtension202(struct soap *soap, tt__ImagingSettingsExtension202 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingSettingsExtension202(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingSettingsExtension202(struct soap *soap, const char *URL, tt__ImagingSettingsExtension202 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingSettingsExtension202(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingSettingsExtension202(struct soap *soap, tt__ImagingSettingsExtension202 *p) -{ - if (::soap_read_tt__ImagingSettingsExtension202(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingSettingsExtension20_DEFINED -#define SOAP_TYPE_tt__ImagingSettingsExtension20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension20(struct soap*, const char*, int, const tt__ImagingSettingsExtension20 *, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension20 * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension20(struct soap*, const char*, tt__ImagingSettingsExtension20 *, const char*); -SOAP_FMAC1 tt__ImagingSettingsExtension20 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingSettingsExtension20 * soap_new_tt__ImagingSettingsExtension20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingSettingsExtension20(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingSettingsExtension20 * soap_new_req_tt__ImagingSettingsExtension20( - struct soap *soap) -{ - tt__ImagingSettingsExtension20 *_p = ::soap_new_tt__ImagingSettingsExtension20(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingSettingsExtension20 * soap_new_set_tt__ImagingSettingsExtension20( - struct soap *soap, - const std::vector & __any, - tt__ImageStabilization *ImageStabilization, - tt__ImagingSettingsExtension202 *Extension) -{ - tt__ImagingSettingsExtension20 *_p = ::soap_new_tt__ImagingSettingsExtension20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingSettingsExtension20::__any = __any; - _p->tt__ImagingSettingsExtension20::ImageStabilization = ImageStabilization; - _p->tt__ImagingSettingsExtension20::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__ImagingSettingsExtension20(struct soap *soap, tt__ImagingSettingsExtension20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingSettingsExtension20", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingSettingsExtension20(struct soap *soap, const char *URL, tt__ImagingSettingsExtension20 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, "tt:ImagingSettingsExtension20", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingSettingsExtension20(struct soap *soap, const char *URL, tt__ImagingSettingsExtension20 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, "tt:ImagingSettingsExtension20", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingSettingsExtension20(struct soap *soap, const char *URL, tt__ImagingSettingsExtension20 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, "tt:ImagingSettingsExtension20", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingSettingsExtension20 * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension20(struct soap*, tt__ImagingSettingsExtension20 *, const char*, const char*); - -inline int soap_read_tt__ImagingSettingsExtension20(struct soap *soap, tt__ImagingSettingsExtension20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingSettingsExtension20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingSettingsExtension20(struct soap *soap, const char *URL, tt__ImagingSettingsExtension20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingSettingsExtension20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingSettingsExtension20(struct soap *soap, tt__ImagingSettingsExtension20 *p) -{ - if (::soap_read_tt__ImagingSettingsExtension20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingSettings20_DEFINED -#define SOAP_TYPE_tt__ImagingSettings20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettings20(struct soap*, const char*, int, const tt__ImagingSettings20 *, const char*); -SOAP_FMAC3 tt__ImagingSettings20 * SOAP_FMAC4 soap_in_tt__ImagingSettings20(struct soap*, const char*, tt__ImagingSettings20 *, const char*); -SOAP_FMAC1 tt__ImagingSettings20 * SOAP_FMAC2 soap_instantiate_tt__ImagingSettings20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingSettings20 * soap_new_tt__ImagingSettings20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingSettings20(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingSettings20 * soap_new_req_tt__ImagingSettings20( - struct soap *soap) -{ - tt__ImagingSettings20 *_p = ::soap_new_tt__ImagingSettings20(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingSettings20 * soap_new_set_tt__ImagingSettings20( - struct soap *soap, - tt__BacklightCompensation20 *BacklightCompensation, - float *Brightness, - float *ColorSaturation, - float *Contrast, - tt__Exposure20 *Exposure, - tt__FocusConfiguration20 *Focus, - enum tt__IrCutFilterMode *IrCutFilter, - float *Sharpness, - tt__WideDynamicRange20 *WideDynamicRange, - tt__WhiteBalance20 *WhiteBalance, - tt__ImagingSettingsExtension20 *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImagingSettings20 *_p = ::soap_new_tt__ImagingSettings20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingSettings20::BacklightCompensation = BacklightCompensation; - _p->tt__ImagingSettings20::Brightness = Brightness; - _p->tt__ImagingSettings20::ColorSaturation = ColorSaturation; - _p->tt__ImagingSettings20::Contrast = Contrast; - _p->tt__ImagingSettings20::Exposure = Exposure; - _p->tt__ImagingSettings20::Focus = Focus; - _p->tt__ImagingSettings20::IrCutFilter = IrCutFilter; - _p->tt__ImagingSettings20::Sharpness = Sharpness; - _p->tt__ImagingSettings20::WideDynamicRange = WideDynamicRange; - _p->tt__ImagingSettings20::WhiteBalance = WhiteBalance; - _p->tt__ImagingSettings20::Extension = Extension; - _p->tt__ImagingSettings20::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImagingSettings20(struct soap *soap, tt__ImagingSettings20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingSettings20", p->soap_type() == SOAP_TYPE_tt__ImagingSettings20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingSettings20(struct soap *soap, const char *URL, tt__ImagingSettings20 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, "tt:ImagingSettings20", p->soap_type() == SOAP_TYPE_tt__ImagingSettings20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingSettings20(struct soap *soap, const char *URL, tt__ImagingSettings20 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, "tt:ImagingSettings20", p->soap_type() == SOAP_TYPE_tt__ImagingSettings20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingSettings20(struct soap *soap, const char *URL, tt__ImagingSettings20 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, "tt:ImagingSettings20", p->soap_type() == SOAP_TYPE_tt__ImagingSettings20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingSettings20 * SOAP_FMAC4 soap_get_tt__ImagingSettings20(struct soap*, tt__ImagingSettings20 *, const char*, const char*); - -inline int soap_read_tt__ImagingSettings20(struct soap *soap, tt__ImagingSettings20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingSettings20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingSettings20(struct soap *soap, const char *URL, tt__ImagingSettings20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingSettings20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingSettings20(struct soap *soap, tt__ImagingSettings20 *p) -{ - if (::soap_read_tt__ImagingSettings20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusStatus20Extension_DEFINED -#define SOAP_TYPE_tt__FocusStatus20Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusStatus20Extension(struct soap*, const char*, int, const tt__FocusStatus20Extension *, const char*); -SOAP_FMAC3 tt__FocusStatus20Extension * SOAP_FMAC4 soap_in_tt__FocusStatus20Extension(struct soap*, const char*, tt__FocusStatus20Extension *, const char*); -SOAP_FMAC1 tt__FocusStatus20Extension * SOAP_FMAC2 soap_instantiate_tt__FocusStatus20Extension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusStatus20Extension * soap_new_tt__FocusStatus20Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusStatus20Extension(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusStatus20Extension * soap_new_req_tt__FocusStatus20Extension( - struct soap *soap) -{ - tt__FocusStatus20Extension *_p = ::soap_new_tt__FocusStatus20Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__FocusStatus20Extension * soap_new_set_tt__FocusStatus20Extension( - struct soap *soap, - const std::vector & __any) -{ - tt__FocusStatus20Extension *_p = ::soap_new_tt__FocusStatus20Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusStatus20Extension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__FocusStatus20Extension(struct soap *soap, tt__FocusStatus20Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusStatus20Extension", p->soap_type() == SOAP_TYPE_tt__FocusStatus20Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusStatus20Extension(struct soap *soap, const char *URL, tt__FocusStatus20Extension 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, "tt:FocusStatus20Extension", p->soap_type() == SOAP_TYPE_tt__FocusStatus20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusStatus20Extension(struct soap *soap, const char *URL, tt__FocusStatus20Extension 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, "tt:FocusStatus20Extension", p->soap_type() == SOAP_TYPE_tt__FocusStatus20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusStatus20Extension(struct soap *soap, const char *URL, tt__FocusStatus20Extension 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, "tt:FocusStatus20Extension", p->soap_type() == SOAP_TYPE_tt__FocusStatus20Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusStatus20Extension * SOAP_FMAC4 soap_get_tt__FocusStatus20Extension(struct soap*, tt__FocusStatus20Extension *, const char*, const char*); - -inline int soap_read_tt__FocusStatus20Extension(struct soap *soap, tt__FocusStatus20Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusStatus20Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusStatus20Extension(struct soap *soap, const char *URL, tt__FocusStatus20Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusStatus20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusStatus20Extension(struct soap *soap, tt__FocusStatus20Extension *p) -{ - if (::soap_read_tt__FocusStatus20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusStatus20_DEFINED -#define SOAP_TYPE_tt__FocusStatus20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusStatus20(struct soap*, const char*, int, const tt__FocusStatus20 *, const char*); -SOAP_FMAC3 tt__FocusStatus20 * SOAP_FMAC4 soap_in_tt__FocusStatus20(struct soap*, const char*, tt__FocusStatus20 *, const char*); -SOAP_FMAC1 tt__FocusStatus20 * SOAP_FMAC2 soap_instantiate_tt__FocusStatus20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusStatus20 * soap_new_tt__FocusStatus20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusStatus20(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusStatus20 * soap_new_req_tt__FocusStatus20( - struct soap *soap, - float Position, - enum tt__MoveStatus MoveStatus) -{ - tt__FocusStatus20 *_p = ::soap_new_tt__FocusStatus20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusStatus20::Position = Position; - _p->tt__FocusStatus20::MoveStatus = MoveStatus; - } - return _p; -} - -inline tt__FocusStatus20 * soap_new_set_tt__FocusStatus20( - struct soap *soap, - float Position, - enum tt__MoveStatus MoveStatus, - std::string *Error, - tt__FocusStatus20Extension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FocusStatus20 *_p = ::soap_new_tt__FocusStatus20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusStatus20::Position = Position; - _p->tt__FocusStatus20::MoveStatus = MoveStatus; - _p->tt__FocusStatus20::Error = Error; - _p->tt__FocusStatus20::Extension = Extension; - _p->tt__FocusStatus20::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FocusStatus20(struct soap *soap, tt__FocusStatus20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusStatus20", p->soap_type() == SOAP_TYPE_tt__FocusStatus20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusStatus20(struct soap *soap, const char *URL, tt__FocusStatus20 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, "tt:FocusStatus20", p->soap_type() == SOAP_TYPE_tt__FocusStatus20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusStatus20(struct soap *soap, const char *URL, tt__FocusStatus20 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, "tt:FocusStatus20", p->soap_type() == SOAP_TYPE_tt__FocusStatus20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusStatus20(struct soap *soap, const char *URL, tt__FocusStatus20 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, "tt:FocusStatus20", p->soap_type() == SOAP_TYPE_tt__FocusStatus20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusStatus20 * SOAP_FMAC4 soap_get_tt__FocusStatus20(struct soap*, tt__FocusStatus20 *, const char*, const char*); - -inline int soap_read_tt__FocusStatus20(struct soap *soap, tt__FocusStatus20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusStatus20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusStatus20(struct soap *soap, const char *URL, tt__FocusStatus20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusStatus20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusStatus20(struct soap *soap, tt__FocusStatus20 *p) -{ - if (::soap_read_tt__FocusStatus20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingStatus20Extension_DEFINED -#define SOAP_TYPE_tt__ImagingStatus20Extension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingStatus20Extension(struct soap*, const char*, int, const tt__ImagingStatus20Extension *, const char*); -SOAP_FMAC3 tt__ImagingStatus20Extension * SOAP_FMAC4 soap_in_tt__ImagingStatus20Extension(struct soap*, const char*, tt__ImagingStatus20Extension *, const char*); -SOAP_FMAC1 tt__ImagingStatus20Extension * SOAP_FMAC2 soap_instantiate_tt__ImagingStatus20Extension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingStatus20Extension * soap_new_tt__ImagingStatus20Extension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingStatus20Extension(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingStatus20Extension * soap_new_req_tt__ImagingStatus20Extension( - struct soap *soap) -{ - tt__ImagingStatus20Extension *_p = ::soap_new_tt__ImagingStatus20Extension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingStatus20Extension * soap_new_set_tt__ImagingStatus20Extension( - struct soap *soap, - const std::vector & __any) -{ - tt__ImagingStatus20Extension *_p = ::soap_new_tt__ImagingStatus20Extension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingStatus20Extension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ImagingStatus20Extension(struct soap *soap, tt__ImagingStatus20Extension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingStatus20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20Extension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingStatus20Extension(struct soap *soap, const char *URL, tt__ImagingStatus20Extension 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, "tt:ImagingStatus20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingStatus20Extension(struct soap *soap, const char *URL, tt__ImagingStatus20Extension 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, "tt:ImagingStatus20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20Extension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingStatus20Extension(struct soap *soap, const char *URL, tt__ImagingStatus20Extension 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, "tt:ImagingStatus20Extension", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20Extension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingStatus20Extension * SOAP_FMAC4 soap_get_tt__ImagingStatus20Extension(struct soap*, tt__ImagingStatus20Extension *, const char*, const char*); - -inline int soap_read_tt__ImagingStatus20Extension(struct soap *soap, tt__ImagingStatus20Extension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingStatus20Extension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingStatus20Extension(struct soap *soap, const char *URL, tt__ImagingStatus20Extension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingStatus20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingStatus20Extension(struct soap *soap, tt__ImagingStatus20Extension *p) -{ - if (::soap_read_tt__ImagingStatus20Extension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingStatus20_DEFINED -#define SOAP_TYPE_tt__ImagingStatus20_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingStatus20(struct soap*, const char*, int, const tt__ImagingStatus20 *, const char*); -SOAP_FMAC3 tt__ImagingStatus20 * SOAP_FMAC4 soap_in_tt__ImagingStatus20(struct soap*, const char*, tt__ImagingStatus20 *, const char*); -SOAP_FMAC1 tt__ImagingStatus20 * SOAP_FMAC2 soap_instantiate_tt__ImagingStatus20(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingStatus20 * soap_new_tt__ImagingStatus20(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingStatus20(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingStatus20 * soap_new_req_tt__ImagingStatus20( - struct soap *soap) -{ - tt__ImagingStatus20 *_p = ::soap_new_tt__ImagingStatus20(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingStatus20 * soap_new_set_tt__ImagingStatus20( - struct soap *soap, - tt__FocusStatus20 *FocusStatus20, - tt__ImagingStatus20Extension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImagingStatus20 *_p = ::soap_new_tt__ImagingStatus20(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingStatus20::FocusStatus20 = FocusStatus20; - _p->tt__ImagingStatus20::Extension = Extension; - _p->tt__ImagingStatus20::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImagingStatus20(struct soap *soap, tt__ImagingStatus20 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingStatus20", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingStatus20(struct soap *soap, const char *URL, tt__ImagingStatus20 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, "tt:ImagingStatus20", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingStatus20(struct soap *soap, const char *URL, tt__ImagingStatus20 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, "tt:ImagingStatus20", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingStatus20(struct soap *soap, const char *URL, tt__ImagingStatus20 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, "tt:ImagingStatus20", p->soap_type() == SOAP_TYPE_tt__ImagingStatus20 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingStatus20 * SOAP_FMAC4 soap_get_tt__ImagingStatus20(struct soap*, tt__ImagingStatus20 *, const char*, const char*); - -inline int soap_read_tt__ImagingStatus20(struct soap *soap, tt__ImagingStatus20 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingStatus20(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingStatus20(struct soap *soap, const char *URL, tt__ImagingStatus20 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingStatus20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingStatus20(struct soap *soap, tt__ImagingStatus20 *p) -{ - if (::soap_read_tt__ImagingStatus20(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalance_DEFINED -#define SOAP_TYPE_tt__WhiteBalance_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalance(struct soap*, const char*, int, const tt__WhiteBalance *, const char*); -SOAP_FMAC3 tt__WhiteBalance * SOAP_FMAC4 soap_in_tt__WhiteBalance(struct soap*, const char*, tt__WhiteBalance *, const char*); -SOAP_FMAC1 tt__WhiteBalance * SOAP_FMAC2 soap_instantiate_tt__WhiteBalance(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WhiteBalance * soap_new_tt__WhiteBalance(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WhiteBalance(soap, n, NULL, NULL, NULL); -} - -inline tt__WhiteBalance * soap_new_req_tt__WhiteBalance( - struct soap *soap, - enum tt__WhiteBalanceMode Mode, - float CrGain, - float CbGain) -{ - tt__WhiteBalance *_p = ::soap_new_tt__WhiteBalance(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalance::Mode = Mode; - _p->tt__WhiteBalance::CrGain = CrGain; - _p->tt__WhiteBalance::CbGain = CbGain; - } - return _p; -} - -inline tt__WhiteBalance * soap_new_set_tt__WhiteBalance( - struct soap *soap, - enum tt__WhiteBalanceMode Mode, - float CrGain, - float CbGain, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__WhiteBalance *_p = ::soap_new_tt__WhiteBalance(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalance::Mode = Mode; - _p->tt__WhiteBalance::CrGain = CrGain; - _p->tt__WhiteBalance::CbGain = CbGain; - _p->tt__WhiteBalance::__any = __any; - _p->tt__WhiteBalance::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__WhiteBalance(struct soap *soap, tt__WhiteBalance const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WhiteBalance", p->soap_type() == SOAP_TYPE_tt__WhiteBalance ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalance(struct soap *soap, const char *URL, tt__WhiteBalance 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, "tt:WhiteBalance", p->soap_type() == SOAP_TYPE_tt__WhiteBalance ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalance(struct soap *soap, const char *URL, tt__WhiteBalance 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, "tt:WhiteBalance", p->soap_type() == SOAP_TYPE_tt__WhiteBalance ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalance(struct soap *soap, const char *URL, tt__WhiteBalance 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, "tt:WhiteBalance", p->soap_type() == SOAP_TYPE_tt__WhiteBalance ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WhiteBalance * SOAP_FMAC4 soap_get_tt__WhiteBalance(struct soap*, tt__WhiteBalance *, const char*, const char*); - -inline int soap_read_tt__WhiteBalance(struct soap *soap, tt__WhiteBalance *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalance(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalance(struct soap *soap, const char *URL, tt__WhiteBalance *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalance(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalance(struct soap *soap, tt__WhiteBalance *p) -{ - if (::soap_read_tt__WhiteBalance(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ContinuousFocusOptions_DEFINED -#define SOAP_TYPE_tt__ContinuousFocusOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ContinuousFocusOptions(struct soap*, const char*, int, const tt__ContinuousFocusOptions *, const char*); -SOAP_FMAC3 tt__ContinuousFocusOptions * SOAP_FMAC4 soap_in_tt__ContinuousFocusOptions(struct soap*, const char*, tt__ContinuousFocusOptions *, const char*); -SOAP_FMAC1 tt__ContinuousFocusOptions * SOAP_FMAC2 soap_instantiate_tt__ContinuousFocusOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ContinuousFocusOptions * soap_new_tt__ContinuousFocusOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ContinuousFocusOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__ContinuousFocusOptions * soap_new_req_tt__ContinuousFocusOptions( - struct soap *soap, - tt__FloatRange *Speed) -{ - tt__ContinuousFocusOptions *_p = ::soap_new_tt__ContinuousFocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ContinuousFocusOptions::Speed = Speed; - } - return _p; -} - -inline tt__ContinuousFocusOptions * soap_new_set_tt__ContinuousFocusOptions( - struct soap *soap, - tt__FloatRange *Speed) -{ - tt__ContinuousFocusOptions *_p = ::soap_new_tt__ContinuousFocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ContinuousFocusOptions::Speed = Speed; - } - return _p; -} - -inline int soap_write_tt__ContinuousFocusOptions(struct soap *soap, tt__ContinuousFocusOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ContinuousFocusOptions", p->soap_type() == SOAP_TYPE_tt__ContinuousFocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ContinuousFocusOptions(struct soap *soap, const char *URL, tt__ContinuousFocusOptions 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, "tt:ContinuousFocusOptions", p->soap_type() == SOAP_TYPE_tt__ContinuousFocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ContinuousFocusOptions(struct soap *soap, const char *URL, tt__ContinuousFocusOptions 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, "tt:ContinuousFocusOptions", p->soap_type() == SOAP_TYPE_tt__ContinuousFocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ContinuousFocusOptions(struct soap *soap, const char *URL, tt__ContinuousFocusOptions 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, "tt:ContinuousFocusOptions", p->soap_type() == SOAP_TYPE_tt__ContinuousFocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ContinuousFocusOptions * SOAP_FMAC4 soap_get_tt__ContinuousFocusOptions(struct soap*, tt__ContinuousFocusOptions *, const char*, const char*); - -inline int soap_read_tt__ContinuousFocusOptions(struct soap *soap, tt__ContinuousFocusOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ContinuousFocusOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ContinuousFocusOptions(struct soap *soap, const char *URL, tt__ContinuousFocusOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ContinuousFocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ContinuousFocusOptions(struct soap *soap, tt__ContinuousFocusOptions *p) -{ - if (::soap_read_tt__ContinuousFocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelativeFocusOptions_DEFINED -#define SOAP_TYPE_tt__RelativeFocusOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelativeFocusOptions(struct soap*, const char*, int, const tt__RelativeFocusOptions *, const char*); -SOAP_FMAC3 tt__RelativeFocusOptions * SOAP_FMAC4 soap_in_tt__RelativeFocusOptions(struct soap*, const char*, tt__RelativeFocusOptions *, const char*); -SOAP_FMAC1 tt__RelativeFocusOptions * SOAP_FMAC2 soap_instantiate_tt__RelativeFocusOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelativeFocusOptions * soap_new_tt__RelativeFocusOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelativeFocusOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__RelativeFocusOptions * soap_new_req_tt__RelativeFocusOptions( - struct soap *soap, - tt__FloatRange *Distance, - tt__FloatRange *Speed) -{ - tt__RelativeFocusOptions *_p = ::soap_new_tt__RelativeFocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelativeFocusOptions::Distance = Distance; - _p->tt__RelativeFocusOptions::Speed = Speed; - } - return _p; -} - -inline tt__RelativeFocusOptions * soap_new_set_tt__RelativeFocusOptions( - struct soap *soap, - tt__FloatRange *Distance, - tt__FloatRange *Speed) -{ - tt__RelativeFocusOptions *_p = ::soap_new_tt__RelativeFocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelativeFocusOptions::Distance = Distance; - _p->tt__RelativeFocusOptions::Speed = Speed; - } - return _p; -} - -inline int soap_write_tt__RelativeFocusOptions(struct soap *soap, tt__RelativeFocusOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelativeFocusOptions", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelativeFocusOptions(struct soap *soap, const char *URL, tt__RelativeFocusOptions 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, "tt:RelativeFocusOptions", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelativeFocusOptions(struct soap *soap, const char *URL, tt__RelativeFocusOptions 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, "tt:RelativeFocusOptions", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelativeFocusOptions(struct soap *soap, const char *URL, tt__RelativeFocusOptions 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, "tt:RelativeFocusOptions", p->soap_type() == SOAP_TYPE_tt__RelativeFocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelativeFocusOptions * SOAP_FMAC4 soap_get_tt__RelativeFocusOptions(struct soap*, tt__RelativeFocusOptions *, const char*, const char*); - -inline int soap_read_tt__RelativeFocusOptions(struct soap *soap, tt__RelativeFocusOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelativeFocusOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelativeFocusOptions(struct soap *soap, const char *URL, tt__RelativeFocusOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelativeFocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelativeFocusOptions(struct soap *soap, tt__RelativeFocusOptions *p) -{ - if (::soap_read_tt__RelativeFocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AbsoluteFocusOptions_DEFINED -#define SOAP_TYPE_tt__AbsoluteFocusOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AbsoluteFocusOptions(struct soap*, const char*, int, const tt__AbsoluteFocusOptions *, const char*); -SOAP_FMAC3 tt__AbsoluteFocusOptions * SOAP_FMAC4 soap_in_tt__AbsoluteFocusOptions(struct soap*, const char*, tt__AbsoluteFocusOptions *, const char*); -SOAP_FMAC1 tt__AbsoluteFocusOptions * SOAP_FMAC2 soap_instantiate_tt__AbsoluteFocusOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AbsoluteFocusOptions * soap_new_tt__AbsoluteFocusOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AbsoluteFocusOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__AbsoluteFocusOptions * soap_new_req_tt__AbsoluteFocusOptions( - struct soap *soap, - tt__FloatRange *Position) -{ - tt__AbsoluteFocusOptions *_p = ::soap_new_tt__AbsoluteFocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AbsoluteFocusOptions::Position = Position; - } - return _p; -} - -inline tt__AbsoluteFocusOptions * soap_new_set_tt__AbsoluteFocusOptions( - struct soap *soap, - tt__FloatRange *Position, - tt__FloatRange *Speed) -{ - tt__AbsoluteFocusOptions *_p = ::soap_new_tt__AbsoluteFocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AbsoluteFocusOptions::Position = Position; - _p->tt__AbsoluteFocusOptions::Speed = Speed; - } - return _p; -} - -inline int soap_write_tt__AbsoluteFocusOptions(struct soap *soap, tt__AbsoluteFocusOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AbsoluteFocusOptions", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AbsoluteFocusOptions(struct soap *soap, const char *URL, tt__AbsoluteFocusOptions 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, "tt:AbsoluteFocusOptions", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AbsoluteFocusOptions(struct soap *soap, const char *URL, tt__AbsoluteFocusOptions 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, "tt:AbsoluteFocusOptions", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AbsoluteFocusOptions(struct soap *soap, const char *URL, tt__AbsoluteFocusOptions 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, "tt:AbsoluteFocusOptions", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AbsoluteFocusOptions * SOAP_FMAC4 soap_get_tt__AbsoluteFocusOptions(struct soap*, tt__AbsoluteFocusOptions *, const char*, const char*); - -inline int soap_read_tt__AbsoluteFocusOptions(struct soap *soap, tt__AbsoluteFocusOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AbsoluteFocusOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AbsoluteFocusOptions(struct soap *soap, const char *URL, tt__AbsoluteFocusOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AbsoluteFocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AbsoluteFocusOptions(struct soap *soap, tt__AbsoluteFocusOptions *p) -{ - if (::soap_read_tt__AbsoluteFocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MoveOptions_DEFINED -#define SOAP_TYPE_tt__MoveOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MoveOptions(struct soap*, const char*, int, const tt__MoveOptions *, const char*); -SOAP_FMAC3 tt__MoveOptions * SOAP_FMAC4 soap_in_tt__MoveOptions(struct soap*, const char*, tt__MoveOptions *, const char*); -SOAP_FMAC1 tt__MoveOptions * SOAP_FMAC2 soap_instantiate_tt__MoveOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MoveOptions * soap_new_tt__MoveOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MoveOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__MoveOptions * soap_new_req_tt__MoveOptions( - struct soap *soap) -{ - tt__MoveOptions *_p = ::soap_new_tt__MoveOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MoveOptions * soap_new_set_tt__MoveOptions( - struct soap *soap, - tt__AbsoluteFocusOptions *Absolute, - tt__RelativeFocusOptions *Relative, - tt__ContinuousFocusOptions *Continuous) -{ - tt__MoveOptions *_p = ::soap_new_tt__MoveOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MoveOptions::Absolute = Absolute; - _p->tt__MoveOptions::Relative = Relative; - _p->tt__MoveOptions::Continuous = Continuous; - } - return _p; -} - -inline int soap_write_tt__MoveOptions(struct soap *soap, tt__MoveOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MoveOptions", p->soap_type() == SOAP_TYPE_tt__MoveOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MoveOptions(struct soap *soap, const char *URL, tt__MoveOptions 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, "tt:MoveOptions", p->soap_type() == SOAP_TYPE_tt__MoveOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MoveOptions(struct soap *soap, const char *URL, tt__MoveOptions 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, "tt:MoveOptions", p->soap_type() == SOAP_TYPE_tt__MoveOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MoveOptions(struct soap *soap, const char *URL, tt__MoveOptions 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, "tt:MoveOptions", p->soap_type() == SOAP_TYPE_tt__MoveOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MoveOptions * SOAP_FMAC4 soap_get_tt__MoveOptions(struct soap*, tt__MoveOptions *, const char*, const char*); - -inline int soap_read_tt__MoveOptions(struct soap *soap, tt__MoveOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MoveOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MoveOptions(struct soap *soap, const char *URL, tt__MoveOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MoveOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MoveOptions(struct soap *soap, tt__MoveOptions *p) -{ - if (::soap_read_tt__MoveOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ContinuousFocus_DEFINED -#define SOAP_TYPE_tt__ContinuousFocus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ContinuousFocus(struct soap*, const char*, int, const tt__ContinuousFocus *, const char*); -SOAP_FMAC3 tt__ContinuousFocus * SOAP_FMAC4 soap_in_tt__ContinuousFocus(struct soap*, const char*, tt__ContinuousFocus *, const char*); -SOAP_FMAC1 tt__ContinuousFocus * SOAP_FMAC2 soap_instantiate_tt__ContinuousFocus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ContinuousFocus * soap_new_tt__ContinuousFocus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ContinuousFocus(soap, n, NULL, NULL, NULL); -} - -inline tt__ContinuousFocus * soap_new_req_tt__ContinuousFocus( - struct soap *soap, - float Speed) -{ - tt__ContinuousFocus *_p = ::soap_new_tt__ContinuousFocus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ContinuousFocus::Speed = Speed; - } - return _p; -} - -inline tt__ContinuousFocus * soap_new_set_tt__ContinuousFocus( - struct soap *soap, - float Speed) -{ - tt__ContinuousFocus *_p = ::soap_new_tt__ContinuousFocus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ContinuousFocus::Speed = Speed; - } - return _p; -} - -inline int soap_write_tt__ContinuousFocus(struct soap *soap, tt__ContinuousFocus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ContinuousFocus", p->soap_type() == SOAP_TYPE_tt__ContinuousFocus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ContinuousFocus(struct soap *soap, const char *URL, tt__ContinuousFocus 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, "tt:ContinuousFocus", p->soap_type() == SOAP_TYPE_tt__ContinuousFocus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ContinuousFocus(struct soap *soap, const char *URL, tt__ContinuousFocus 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, "tt:ContinuousFocus", p->soap_type() == SOAP_TYPE_tt__ContinuousFocus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ContinuousFocus(struct soap *soap, const char *URL, tt__ContinuousFocus 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, "tt:ContinuousFocus", p->soap_type() == SOAP_TYPE_tt__ContinuousFocus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ContinuousFocus * SOAP_FMAC4 soap_get_tt__ContinuousFocus(struct soap*, tt__ContinuousFocus *, const char*, const char*); - -inline int soap_read_tt__ContinuousFocus(struct soap *soap, tt__ContinuousFocus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ContinuousFocus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ContinuousFocus(struct soap *soap, const char *URL, tt__ContinuousFocus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ContinuousFocus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ContinuousFocus(struct soap *soap, tt__ContinuousFocus *p) -{ - if (::soap_read_tt__ContinuousFocus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelativeFocus_DEFINED -#define SOAP_TYPE_tt__RelativeFocus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelativeFocus(struct soap*, const char*, int, const tt__RelativeFocus *, const char*); -SOAP_FMAC3 tt__RelativeFocus * SOAP_FMAC4 soap_in_tt__RelativeFocus(struct soap*, const char*, tt__RelativeFocus *, const char*); -SOAP_FMAC1 tt__RelativeFocus * SOAP_FMAC2 soap_instantiate_tt__RelativeFocus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelativeFocus * soap_new_tt__RelativeFocus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelativeFocus(soap, n, NULL, NULL, NULL); -} - -inline tt__RelativeFocus * soap_new_req_tt__RelativeFocus( - struct soap *soap, - float Distance) -{ - tt__RelativeFocus *_p = ::soap_new_tt__RelativeFocus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelativeFocus::Distance = Distance; - } - return _p; -} - -inline tt__RelativeFocus * soap_new_set_tt__RelativeFocus( - struct soap *soap, - float Distance, - float *Speed) -{ - tt__RelativeFocus *_p = ::soap_new_tt__RelativeFocus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelativeFocus::Distance = Distance; - _p->tt__RelativeFocus::Speed = Speed; - } - return _p; -} - -inline int soap_write_tt__RelativeFocus(struct soap *soap, tt__RelativeFocus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelativeFocus", p->soap_type() == SOAP_TYPE_tt__RelativeFocus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelativeFocus(struct soap *soap, const char *URL, tt__RelativeFocus 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, "tt:RelativeFocus", p->soap_type() == SOAP_TYPE_tt__RelativeFocus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelativeFocus(struct soap *soap, const char *URL, tt__RelativeFocus 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, "tt:RelativeFocus", p->soap_type() == SOAP_TYPE_tt__RelativeFocus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelativeFocus(struct soap *soap, const char *URL, tt__RelativeFocus 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, "tt:RelativeFocus", p->soap_type() == SOAP_TYPE_tt__RelativeFocus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelativeFocus * SOAP_FMAC4 soap_get_tt__RelativeFocus(struct soap*, tt__RelativeFocus *, const char*, const char*); - -inline int soap_read_tt__RelativeFocus(struct soap *soap, tt__RelativeFocus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelativeFocus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelativeFocus(struct soap *soap, const char *URL, tt__RelativeFocus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelativeFocus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelativeFocus(struct soap *soap, tt__RelativeFocus *p) -{ - if (::soap_read_tt__RelativeFocus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AbsoluteFocus_DEFINED -#define SOAP_TYPE_tt__AbsoluteFocus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AbsoluteFocus(struct soap*, const char*, int, const tt__AbsoluteFocus *, const char*); -SOAP_FMAC3 tt__AbsoluteFocus * SOAP_FMAC4 soap_in_tt__AbsoluteFocus(struct soap*, const char*, tt__AbsoluteFocus *, const char*); -SOAP_FMAC1 tt__AbsoluteFocus * SOAP_FMAC2 soap_instantiate_tt__AbsoluteFocus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AbsoluteFocus * soap_new_tt__AbsoluteFocus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AbsoluteFocus(soap, n, NULL, NULL, NULL); -} - -inline tt__AbsoluteFocus * soap_new_req_tt__AbsoluteFocus( - struct soap *soap, - float Position) -{ - tt__AbsoluteFocus *_p = ::soap_new_tt__AbsoluteFocus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AbsoluteFocus::Position = Position; - } - return _p; -} - -inline tt__AbsoluteFocus * soap_new_set_tt__AbsoluteFocus( - struct soap *soap, - float Position, - float *Speed) -{ - tt__AbsoluteFocus *_p = ::soap_new_tt__AbsoluteFocus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AbsoluteFocus::Position = Position; - _p->tt__AbsoluteFocus::Speed = Speed; - } - return _p; -} - -inline int soap_write_tt__AbsoluteFocus(struct soap *soap, tt__AbsoluteFocus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AbsoluteFocus", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AbsoluteFocus(struct soap *soap, const char *URL, tt__AbsoluteFocus 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, "tt:AbsoluteFocus", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AbsoluteFocus(struct soap *soap, const char *URL, tt__AbsoluteFocus 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, "tt:AbsoluteFocus", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AbsoluteFocus(struct soap *soap, const char *URL, tt__AbsoluteFocus 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, "tt:AbsoluteFocus", p->soap_type() == SOAP_TYPE_tt__AbsoluteFocus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AbsoluteFocus * SOAP_FMAC4 soap_get_tt__AbsoluteFocus(struct soap*, tt__AbsoluteFocus *, const char*, const char*); - -inline int soap_read_tt__AbsoluteFocus(struct soap *soap, tt__AbsoluteFocus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AbsoluteFocus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AbsoluteFocus(struct soap *soap, const char *URL, tt__AbsoluteFocus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AbsoluteFocus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AbsoluteFocus(struct soap *soap, tt__AbsoluteFocus *p) -{ - if (::soap_read_tt__AbsoluteFocus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusMove_DEFINED -#define SOAP_TYPE_tt__FocusMove_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusMove(struct soap*, const char*, int, const tt__FocusMove *, const char*); -SOAP_FMAC3 tt__FocusMove * SOAP_FMAC4 soap_in_tt__FocusMove(struct soap*, const char*, tt__FocusMove *, const char*); -SOAP_FMAC1 tt__FocusMove * SOAP_FMAC2 soap_instantiate_tt__FocusMove(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusMove * soap_new_tt__FocusMove(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusMove(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusMove * soap_new_req_tt__FocusMove( - struct soap *soap) -{ - tt__FocusMove *_p = ::soap_new_tt__FocusMove(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__FocusMove * soap_new_set_tt__FocusMove( - struct soap *soap, - tt__AbsoluteFocus *Absolute, - tt__RelativeFocus *Relative, - tt__ContinuousFocus *Continuous) -{ - tt__FocusMove *_p = ::soap_new_tt__FocusMove(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusMove::Absolute = Absolute; - _p->tt__FocusMove::Relative = Relative; - _p->tt__FocusMove::Continuous = Continuous; - } - return _p; -} - -inline int soap_write_tt__FocusMove(struct soap *soap, tt__FocusMove const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusMove", p->soap_type() == SOAP_TYPE_tt__FocusMove ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusMove(struct soap *soap, const char *URL, tt__FocusMove 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, "tt:FocusMove", p->soap_type() == SOAP_TYPE_tt__FocusMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusMove(struct soap *soap, const char *URL, tt__FocusMove 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, "tt:FocusMove", p->soap_type() == SOAP_TYPE_tt__FocusMove ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusMove(struct soap *soap, const char *URL, tt__FocusMove 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, "tt:FocusMove", p->soap_type() == SOAP_TYPE_tt__FocusMove ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusMove * SOAP_FMAC4 soap_get_tt__FocusMove(struct soap*, tt__FocusMove *, const char*, const char*); - -inline int soap_read_tt__FocusMove(struct soap *soap, tt__FocusMove *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusMove(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusMove(struct soap *soap, const char *URL, tt__FocusMove *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusMove(struct soap *soap, tt__FocusMove *p) -{ - if (::soap_read_tt__FocusMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WhiteBalanceOptions_DEFINED -#define SOAP_TYPE_tt__WhiteBalanceOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WhiteBalanceOptions(struct soap*, const char*, int, const tt__WhiteBalanceOptions *, const char*); -SOAP_FMAC3 tt__WhiteBalanceOptions * SOAP_FMAC4 soap_in_tt__WhiteBalanceOptions(struct soap*, const char*, tt__WhiteBalanceOptions *, const char*); -SOAP_FMAC1 tt__WhiteBalanceOptions * SOAP_FMAC2 soap_instantiate_tt__WhiteBalanceOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WhiteBalanceOptions * soap_new_tt__WhiteBalanceOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WhiteBalanceOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__WhiteBalanceOptions * soap_new_req_tt__WhiteBalanceOptions( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *YrGain, - tt__FloatRange *YbGain) -{ - tt__WhiteBalanceOptions *_p = ::soap_new_tt__WhiteBalanceOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalanceOptions::Mode = Mode; - _p->tt__WhiteBalanceOptions::YrGain = YrGain; - _p->tt__WhiteBalanceOptions::YbGain = YbGain; - } - return _p; -} - -inline tt__WhiteBalanceOptions * soap_new_set_tt__WhiteBalanceOptions( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *YrGain, - tt__FloatRange *YbGain) -{ - tt__WhiteBalanceOptions *_p = ::soap_new_tt__WhiteBalanceOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WhiteBalanceOptions::Mode = Mode; - _p->tt__WhiteBalanceOptions::YrGain = YrGain; - _p->tt__WhiteBalanceOptions::YbGain = YbGain; - } - return _p; -} - -inline int soap_write_tt__WhiteBalanceOptions(struct soap *soap, tt__WhiteBalanceOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WhiteBalanceOptions", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WhiteBalanceOptions(struct soap *soap, const char *URL, tt__WhiteBalanceOptions 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, "tt:WhiteBalanceOptions", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WhiteBalanceOptions(struct soap *soap, const char *URL, tt__WhiteBalanceOptions 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, "tt:WhiteBalanceOptions", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WhiteBalanceOptions(struct soap *soap, const char *URL, tt__WhiteBalanceOptions 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, "tt:WhiteBalanceOptions", p->soap_type() == SOAP_TYPE_tt__WhiteBalanceOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WhiteBalanceOptions * SOAP_FMAC4 soap_get_tt__WhiteBalanceOptions(struct soap*, tt__WhiteBalanceOptions *, const char*, const char*); - -inline int soap_read_tt__WhiteBalanceOptions(struct soap *soap, tt__WhiteBalanceOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WhiteBalanceOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WhiteBalanceOptions(struct soap *soap, const char *URL, tt__WhiteBalanceOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WhiteBalanceOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WhiteBalanceOptions(struct soap *soap, tt__WhiteBalanceOptions *p) -{ - if (::soap_read_tt__WhiteBalanceOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ExposureOptions_DEFINED -#define SOAP_TYPE_tt__ExposureOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ExposureOptions(struct soap*, const char*, int, const tt__ExposureOptions *, const char*); -SOAP_FMAC3 tt__ExposureOptions * SOAP_FMAC4 soap_in_tt__ExposureOptions(struct soap*, const char*, tt__ExposureOptions *, const char*); -SOAP_FMAC1 tt__ExposureOptions * SOAP_FMAC2 soap_instantiate_tt__ExposureOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ExposureOptions * soap_new_tt__ExposureOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ExposureOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__ExposureOptions * soap_new_req_tt__ExposureOptions( - struct soap *soap, - const std::vector & Mode, - const std::vector & Priority, - tt__FloatRange *MinExposureTime, - tt__FloatRange *MaxExposureTime, - tt__FloatRange *MinGain, - tt__FloatRange *MaxGain, - tt__FloatRange *MinIris, - tt__FloatRange *MaxIris, - tt__FloatRange *ExposureTime, - tt__FloatRange *Gain, - tt__FloatRange *Iris) -{ - tt__ExposureOptions *_p = ::soap_new_tt__ExposureOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposureOptions::Mode = Mode; - _p->tt__ExposureOptions::Priority = Priority; - _p->tt__ExposureOptions::MinExposureTime = MinExposureTime; - _p->tt__ExposureOptions::MaxExposureTime = MaxExposureTime; - _p->tt__ExposureOptions::MinGain = MinGain; - _p->tt__ExposureOptions::MaxGain = MaxGain; - _p->tt__ExposureOptions::MinIris = MinIris; - _p->tt__ExposureOptions::MaxIris = MaxIris; - _p->tt__ExposureOptions::ExposureTime = ExposureTime; - _p->tt__ExposureOptions::Gain = Gain; - _p->tt__ExposureOptions::Iris = Iris; - } - return _p; -} - -inline tt__ExposureOptions * soap_new_set_tt__ExposureOptions( - struct soap *soap, - const std::vector & Mode, - const std::vector & Priority, - tt__FloatRange *MinExposureTime, - tt__FloatRange *MaxExposureTime, - tt__FloatRange *MinGain, - tt__FloatRange *MaxGain, - tt__FloatRange *MinIris, - tt__FloatRange *MaxIris, - tt__FloatRange *ExposureTime, - tt__FloatRange *Gain, - tt__FloatRange *Iris) -{ - tt__ExposureOptions *_p = ::soap_new_tt__ExposureOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ExposureOptions::Mode = Mode; - _p->tt__ExposureOptions::Priority = Priority; - _p->tt__ExposureOptions::MinExposureTime = MinExposureTime; - _p->tt__ExposureOptions::MaxExposureTime = MaxExposureTime; - _p->tt__ExposureOptions::MinGain = MinGain; - _p->tt__ExposureOptions::MaxGain = MaxGain; - _p->tt__ExposureOptions::MinIris = MinIris; - _p->tt__ExposureOptions::MaxIris = MaxIris; - _p->tt__ExposureOptions::ExposureTime = ExposureTime; - _p->tt__ExposureOptions::Gain = Gain; - _p->tt__ExposureOptions::Iris = Iris; - } - return _p; -} - -inline int soap_write_tt__ExposureOptions(struct soap *soap, tt__ExposureOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ExposureOptions", p->soap_type() == SOAP_TYPE_tt__ExposureOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ExposureOptions(struct soap *soap, const char *URL, tt__ExposureOptions 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, "tt:ExposureOptions", p->soap_type() == SOAP_TYPE_tt__ExposureOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ExposureOptions(struct soap *soap, const char *URL, tt__ExposureOptions 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, "tt:ExposureOptions", p->soap_type() == SOAP_TYPE_tt__ExposureOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ExposureOptions(struct soap *soap, const char *URL, tt__ExposureOptions 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, "tt:ExposureOptions", p->soap_type() == SOAP_TYPE_tt__ExposureOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ExposureOptions * SOAP_FMAC4 soap_get_tt__ExposureOptions(struct soap*, tt__ExposureOptions *, const char*, const char*); - -inline int soap_read_tt__ExposureOptions(struct soap *soap, tt__ExposureOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ExposureOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ExposureOptions(struct soap *soap, const char *URL, tt__ExposureOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ExposureOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ExposureOptions(struct soap *soap, tt__ExposureOptions *p) -{ - if (::soap_read_tt__ExposureOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusOptions_DEFINED -#define SOAP_TYPE_tt__FocusOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusOptions(struct soap*, const char*, int, const tt__FocusOptions *, const char*); -SOAP_FMAC3 tt__FocusOptions * SOAP_FMAC4 soap_in_tt__FocusOptions(struct soap*, const char*, tt__FocusOptions *, const char*); -SOAP_FMAC1 tt__FocusOptions * SOAP_FMAC2 soap_instantiate_tt__FocusOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusOptions * soap_new_tt__FocusOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusOptions * soap_new_req_tt__FocusOptions( - struct soap *soap, - tt__FloatRange *DefaultSpeed, - tt__FloatRange *NearLimit, - tt__FloatRange *FarLimit) -{ - tt__FocusOptions *_p = ::soap_new_tt__FocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusOptions::DefaultSpeed = DefaultSpeed; - _p->tt__FocusOptions::NearLimit = NearLimit; - _p->tt__FocusOptions::FarLimit = FarLimit; - } - return _p; -} - -inline tt__FocusOptions * soap_new_set_tt__FocusOptions( - struct soap *soap, - const std::vector & AutoFocusModes, - tt__FloatRange *DefaultSpeed, - tt__FloatRange *NearLimit, - tt__FloatRange *FarLimit) -{ - tt__FocusOptions *_p = ::soap_new_tt__FocusOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusOptions::AutoFocusModes = AutoFocusModes; - _p->tt__FocusOptions::DefaultSpeed = DefaultSpeed; - _p->tt__FocusOptions::NearLimit = NearLimit; - _p->tt__FocusOptions::FarLimit = FarLimit; - } - return _p; -} - -inline int soap_write_tt__FocusOptions(struct soap *soap, tt__FocusOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusOptions", p->soap_type() == SOAP_TYPE_tt__FocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusOptions(struct soap *soap, const char *URL, tt__FocusOptions 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, "tt:FocusOptions", p->soap_type() == SOAP_TYPE_tt__FocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusOptions(struct soap *soap, const char *URL, tt__FocusOptions 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, "tt:FocusOptions", p->soap_type() == SOAP_TYPE_tt__FocusOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusOptions(struct soap *soap, const char *URL, tt__FocusOptions 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, "tt:FocusOptions", p->soap_type() == SOAP_TYPE_tt__FocusOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusOptions * SOAP_FMAC4 soap_get_tt__FocusOptions(struct soap*, tt__FocusOptions *, const char*, const char*); - -inline int soap_read_tt__FocusOptions(struct soap *soap, tt__FocusOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusOptions(struct soap *soap, const char *URL, tt__FocusOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusOptions(struct soap *soap, tt__FocusOptions *p) -{ - if (::soap_read_tt__FocusOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BacklightCompensationOptions_DEFINED -#define SOAP_TYPE_tt__BacklightCompensationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensationOptions(struct soap*, const char*, int, const tt__BacklightCompensationOptions *, const char*); -SOAP_FMAC3 tt__BacklightCompensationOptions * SOAP_FMAC4 soap_in_tt__BacklightCompensationOptions(struct soap*, const char*, tt__BacklightCompensationOptions *, const char*); -SOAP_FMAC1 tt__BacklightCompensationOptions * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__BacklightCompensationOptions * soap_new_tt__BacklightCompensationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__BacklightCompensationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__BacklightCompensationOptions * soap_new_req_tt__BacklightCompensationOptions( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *Level) -{ - tt__BacklightCompensationOptions *_p = ::soap_new_tt__BacklightCompensationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensationOptions::Mode = Mode; - _p->tt__BacklightCompensationOptions::Level = Level; - } - return _p; -} - -inline tt__BacklightCompensationOptions * soap_new_set_tt__BacklightCompensationOptions( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *Level) -{ - tt__BacklightCompensationOptions *_p = ::soap_new_tt__BacklightCompensationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensationOptions::Mode = Mode; - _p->tt__BacklightCompensationOptions::Level = Level; - } - return _p; -} - -inline int soap_write_tt__BacklightCompensationOptions(struct soap *soap, tt__BacklightCompensationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:BacklightCompensationOptions", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__BacklightCompensationOptions(struct soap *soap, const char *URL, tt__BacklightCompensationOptions 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, "tt:BacklightCompensationOptions", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BacklightCompensationOptions(struct soap *soap, const char *URL, tt__BacklightCompensationOptions 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, "tt:BacklightCompensationOptions", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BacklightCompensationOptions(struct soap *soap, const char *URL, tt__BacklightCompensationOptions 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, "tt:BacklightCompensationOptions", p->soap_type() == SOAP_TYPE_tt__BacklightCompensationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__BacklightCompensationOptions * SOAP_FMAC4 soap_get_tt__BacklightCompensationOptions(struct soap*, tt__BacklightCompensationOptions *, const char*, const char*); - -inline int soap_read_tt__BacklightCompensationOptions(struct soap *soap, tt__BacklightCompensationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__BacklightCompensationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BacklightCompensationOptions(struct soap *soap, const char *URL, tt__BacklightCompensationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BacklightCompensationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BacklightCompensationOptions(struct soap *soap, tt__BacklightCompensationOptions *p) -{ - if (::soap_read_tt__BacklightCompensationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WideDynamicRangeOptions_DEFINED -#define SOAP_TYPE_tt__WideDynamicRangeOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRangeOptions(struct soap*, const char*, int, const tt__WideDynamicRangeOptions *, const char*); -SOAP_FMAC3 tt__WideDynamicRangeOptions * SOAP_FMAC4 soap_in_tt__WideDynamicRangeOptions(struct soap*, const char*, tt__WideDynamicRangeOptions *, const char*); -SOAP_FMAC1 tt__WideDynamicRangeOptions * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRangeOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WideDynamicRangeOptions * soap_new_tt__WideDynamicRangeOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WideDynamicRangeOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__WideDynamicRangeOptions * soap_new_req_tt__WideDynamicRangeOptions( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *Level) -{ - tt__WideDynamicRangeOptions *_p = ::soap_new_tt__WideDynamicRangeOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRangeOptions::Mode = Mode; - _p->tt__WideDynamicRangeOptions::Level = Level; - } - return _p; -} - -inline tt__WideDynamicRangeOptions * soap_new_set_tt__WideDynamicRangeOptions( - struct soap *soap, - const std::vector & Mode, - tt__FloatRange *Level) -{ - tt__WideDynamicRangeOptions *_p = ::soap_new_tt__WideDynamicRangeOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRangeOptions::Mode = Mode; - _p->tt__WideDynamicRangeOptions::Level = Level; - } - return _p; -} - -inline int soap_write_tt__WideDynamicRangeOptions(struct soap *soap, tt__WideDynamicRangeOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WideDynamicRangeOptions", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WideDynamicRangeOptions(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions 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, "tt:WideDynamicRangeOptions", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WideDynamicRangeOptions(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions 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, "tt:WideDynamicRangeOptions", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WideDynamicRangeOptions(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions 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, "tt:WideDynamicRangeOptions", p->soap_type() == SOAP_TYPE_tt__WideDynamicRangeOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WideDynamicRangeOptions * SOAP_FMAC4 soap_get_tt__WideDynamicRangeOptions(struct soap*, tt__WideDynamicRangeOptions *, const char*, const char*); - -inline int soap_read_tt__WideDynamicRangeOptions(struct soap *soap, tt__WideDynamicRangeOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WideDynamicRangeOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WideDynamicRangeOptions(struct soap *soap, const char *URL, tt__WideDynamicRangeOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WideDynamicRangeOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WideDynamicRangeOptions(struct soap *soap, tt__WideDynamicRangeOptions *p) -{ - if (::soap_read_tt__WideDynamicRangeOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingOptions_DEFINED -#define SOAP_TYPE_tt__ImagingOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingOptions(struct soap*, const char*, int, const tt__ImagingOptions *, const char*); -SOAP_FMAC3 tt__ImagingOptions * SOAP_FMAC4 soap_in_tt__ImagingOptions(struct soap*, const char*, tt__ImagingOptions *, const char*); -SOAP_FMAC1 tt__ImagingOptions * SOAP_FMAC2 soap_instantiate_tt__ImagingOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingOptions * soap_new_tt__ImagingOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingOptions * soap_new_req_tt__ImagingOptions( - struct soap *soap, - tt__BacklightCompensationOptions *BacklightCompensation, - tt__FloatRange *Brightness, - tt__FloatRange *ColorSaturation, - tt__FloatRange *Contrast, - tt__ExposureOptions *Exposure, - tt__FocusOptions *Focus, - const std::vector & IrCutFilterModes, - tt__FloatRange *Sharpness, - tt__WideDynamicRangeOptions *WideDynamicRange, - tt__WhiteBalanceOptions *WhiteBalance) -{ - tt__ImagingOptions *_p = ::soap_new_tt__ImagingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingOptions::BacklightCompensation = BacklightCompensation; - _p->tt__ImagingOptions::Brightness = Brightness; - _p->tt__ImagingOptions::ColorSaturation = ColorSaturation; - _p->tt__ImagingOptions::Contrast = Contrast; - _p->tt__ImagingOptions::Exposure = Exposure; - _p->tt__ImagingOptions::Focus = Focus; - _p->tt__ImagingOptions::IrCutFilterModes = IrCutFilterModes; - _p->tt__ImagingOptions::Sharpness = Sharpness; - _p->tt__ImagingOptions::WideDynamicRange = WideDynamicRange; - _p->tt__ImagingOptions::WhiteBalance = WhiteBalance; - } - return _p; -} - -inline tt__ImagingOptions * soap_new_set_tt__ImagingOptions( - struct soap *soap, - tt__BacklightCompensationOptions *BacklightCompensation, - tt__FloatRange *Brightness, - tt__FloatRange *ColorSaturation, - tt__FloatRange *Contrast, - tt__ExposureOptions *Exposure, - tt__FocusOptions *Focus, - const std::vector & IrCutFilterModes, - tt__FloatRange *Sharpness, - tt__WideDynamicRangeOptions *WideDynamicRange, - tt__WhiteBalanceOptions *WhiteBalance, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImagingOptions *_p = ::soap_new_tt__ImagingOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingOptions::BacklightCompensation = BacklightCompensation; - _p->tt__ImagingOptions::Brightness = Brightness; - _p->tt__ImagingOptions::ColorSaturation = ColorSaturation; - _p->tt__ImagingOptions::Contrast = Contrast; - _p->tt__ImagingOptions::Exposure = Exposure; - _p->tt__ImagingOptions::Focus = Focus; - _p->tt__ImagingOptions::IrCutFilterModes = IrCutFilterModes; - _p->tt__ImagingOptions::Sharpness = Sharpness; - _p->tt__ImagingOptions::WideDynamicRange = WideDynamicRange; - _p->tt__ImagingOptions::WhiteBalance = WhiteBalance; - _p->tt__ImagingOptions::__any = __any; - _p->tt__ImagingOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImagingOptions(struct soap *soap, tt__ImagingOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingOptions", p->soap_type() == SOAP_TYPE_tt__ImagingOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingOptions(struct soap *soap, const char *URL, tt__ImagingOptions 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, "tt:ImagingOptions", p->soap_type() == SOAP_TYPE_tt__ImagingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingOptions(struct soap *soap, const char *URL, tt__ImagingOptions 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, "tt:ImagingOptions", p->soap_type() == SOAP_TYPE_tt__ImagingOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingOptions(struct soap *soap, const char *URL, tt__ImagingOptions 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, "tt:ImagingOptions", p->soap_type() == SOAP_TYPE_tt__ImagingOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingOptions * SOAP_FMAC4 soap_get_tt__ImagingOptions(struct soap*, tt__ImagingOptions *, const char*, const char*); - -inline int soap_read_tt__ImagingOptions(struct soap *soap, tt__ImagingOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingOptions(struct soap *soap, const char *URL, tt__ImagingOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingOptions(struct soap *soap, tt__ImagingOptions *p) -{ - if (::soap_read_tt__ImagingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BacklightCompensation_DEFINED -#define SOAP_TYPE_tt__BacklightCompensation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BacklightCompensation(struct soap*, const char*, int, const tt__BacklightCompensation *, const char*); -SOAP_FMAC3 tt__BacklightCompensation * SOAP_FMAC4 soap_in_tt__BacklightCompensation(struct soap*, const char*, tt__BacklightCompensation *, const char*); -SOAP_FMAC1 tt__BacklightCompensation * SOAP_FMAC2 soap_instantiate_tt__BacklightCompensation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__BacklightCompensation * soap_new_tt__BacklightCompensation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__BacklightCompensation(soap, n, NULL, NULL, NULL); -} - -inline tt__BacklightCompensation * soap_new_req_tt__BacklightCompensation( - struct soap *soap, - enum tt__BacklightCompensationMode Mode, - float Level) -{ - tt__BacklightCompensation *_p = ::soap_new_tt__BacklightCompensation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensation::Mode = Mode; - _p->tt__BacklightCompensation::Level = Level; - } - return _p; -} - -inline tt__BacklightCompensation * soap_new_set_tt__BacklightCompensation( - struct soap *soap, - enum tt__BacklightCompensationMode Mode, - float Level) -{ - tt__BacklightCompensation *_p = ::soap_new_tt__BacklightCompensation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BacklightCompensation::Mode = Mode; - _p->tt__BacklightCompensation::Level = Level; - } - return _p; -} - -inline int soap_write_tt__BacklightCompensation(struct soap *soap, tt__BacklightCompensation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:BacklightCompensation", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__BacklightCompensation(struct soap *soap, const char *URL, tt__BacklightCompensation 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, "tt:BacklightCompensation", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BacklightCompensation(struct soap *soap, const char *URL, tt__BacklightCompensation 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, "tt:BacklightCompensation", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BacklightCompensation(struct soap *soap, const char *URL, tt__BacklightCompensation 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, "tt:BacklightCompensation", p->soap_type() == SOAP_TYPE_tt__BacklightCompensation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__BacklightCompensation * SOAP_FMAC4 soap_get_tt__BacklightCompensation(struct soap*, tt__BacklightCompensation *, const char*, const char*); - -inline int soap_read_tt__BacklightCompensation(struct soap *soap, tt__BacklightCompensation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__BacklightCompensation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BacklightCompensation(struct soap *soap, const char *URL, tt__BacklightCompensation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BacklightCompensation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BacklightCompensation(struct soap *soap, tt__BacklightCompensation *p) -{ - if (::soap_read_tt__BacklightCompensation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__WideDynamicRange_DEFINED -#define SOAP_TYPE_tt__WideDynamicRange_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__WideDynamicRange(struct soap*, const char*, int, const tt__WideDynamicRange *, const char*); -SOAP_FMAC3 tt__WideDynamicRange * SOAP_FMAC4 soap_in_tt__WideDynamicRange(struct soap*, const char*, tt__WideDynamicRange *, const char*); -SOAP_FMAC1 tt__WideDynamicRange * SOAP_FMAC2 soap_instantiate_tt__WideDynamicRange(struct soap*, int, const char*, const char*, size_t*); - -inline tt__WideDynamicRange * soap_new_tt__WideDynamicRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__WideDynamicRange(soap, n, NULL, NULL, NULL); -} - -inline tt__WideDynamicRange * soap_new_req_tt__WideDynamicRange( - struct soap *soap, - enum tt__WideDynamicMode Mode, - float Level) -{ - tt__WideDynamicRange *_p = ::soap_new_tt__WideDynamicRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRange::Mode = Mode; - _p->tt__WideDynamicRange::Level = Level; - } - return _p; -} - -inline tt__WideDynamicRange * soap_new_set_tt__WideDynamicRange( - struct soap *soap, - enum tt__WideDynamicMode Mode, - float Level) -{ - tt__WideDynamicRange *_p = ::soap_new_tt__WideDynamicRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__WideDynamicRange::Mode = Mode; - _p->tt__WideDynamicRange::Level = Level; - } - return _p; -} - -inline int soap_write_tt__WideDynamicRange(struct soap *soap, tt__WideDynamicRange const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:WideDynamicRange", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__WideDynamicRange(struct soap *soap, const char *URL, tt__WideDynamicRange 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, "tt:WideDynamicRange", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__WideDynamicRange(struct soap *soap, const char *URL, tt__WideDynamicRange 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, "tt:WideDynamicRange", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__WideDynamicRange(struct soap *soap, const char *URL, tt__WideDynamicRange 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, "tt:WideDynamicRange", p->soap_type() == SOAP_TYPE_tt__WideDynamicRange ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__WideDynamicRange * SOAP_FMAC4 soap_get_tt__WideDynamicRange(struct soap*, tt__WideDynamicRange *, const char*, const char*); - -inline int soap_read_tt__WideDynamicRange(struct soap *soap, tt__WideDynamicRange *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__WideDynamicRange(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__WideDynamicRange(struct soap *soap, const char *URL, tt__WideDynamicRange *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__WideDynamicRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__WideDynamicRange(struct soap *soap, tt__WideDynamicRange *p) -{ - if (::soap_read_tt__WideDynamicRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Exposure_DEFINED -#define SOAP_TYPE_tt__Exposure_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Exposure(struct soap*, const char*, int, const tt__Exposure *, const char*); -SOAP_FMAC3 tt__Exposure * SOAP_FMAC4 soap_in_tt__Exposure(struct soap*, const char*, tt__Exposure *, const char*); -SOAP_FMAC1 tt__Exposure * SOAP_FMAC2 soap_instantiate_tt__Exposure(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Exposure * soap_new_tt__Exposure(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Exposure(soap, n, NULL, NULL, NULL); -} - -inline tt__Exposure * soap_new_req_tt__Exposure( - struct soap *soap, - enum tt__ExposureMode Mode, - enum tt__ExposurePriority Priority, - tt__Rectangle *Window, - float MinExposureTime, - float MaxExposureTime, - float MinGain, - float MaxGain, - float MinIris, - float MaxIris, - float ExposureTime, - float Gain, - float Iris) -{ - tt__Exposure *_p = ::soap_new_tt__Exposure(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Exposure::Mode = Mode; - _p->tt__Exposure::Priority = Priority; - _p->tt__Exposure::Window = Window; - _p->tt__Exposure::MinExposureTime = MinExposureTime; - _p->tt__Exposure::MaxExposureTime = MaxExposureTime; - _p->tt__Exposure::MinGain = MinGain; - _p->tt__Exposure::MaxGain = MaxGain; - _p->tt__Exposure::MinIris = MinIris; - _p->tt__Exposure::MaxIris = MaxIris; - _p->tt__Exposure::ExposureTime = ExposureTime; - _p->tt__Exposure::Gain = Gain; - _p->tt__Exposure::Iris = Iris; - } - return _p; -} - -inline tt__Exposure * soap_new_set_tt__Exposure( - struct soap *soap, - enum tt__ExposureMode Mode, - enum tt__ExposurePriority Priority, - tt__Rectangle *Window, - float MinExposureTime, - float MaxExposureTime, - float MinGain, - float MaxGain, - float MinIris, - float MaxIris, - float ExposureTime, - float Gain, - float Iris) -{ - tt__Exposure *_p = ::soap_new_tt__Exposure(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Exposure::Mode = Mode; - _p->tt__Exposure::Priority = Priority; - _p->tt__Exposure::Window = Window; - _p->tt__Exposure::MinExposureTime = MinExposureTime; - _p->tt__Exposure::MaxExposureTime = MaxExposureTime; - _p->tt__Exposure::MinGain = MinGain; - _p->tt__Exposure::MaxGain = MaxGain; - _p->tt__Exposure::MinIris = MinIris; - _p->tt__Exposure::MaxIris = MaxIris; - _p->tt__Exposure::ExposureTime = ExposureTime; - _p->tt__Exposure::Gain = Gain; - _p->tt__Exposure::Iris = Iris; - } - return _p; -} - -inline int soap_write_tt__Exposure(struct soap *soap, tt__Exposure const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Exposure", p->soap_type() == SOAP_TYPE_tt__Exposure ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Exposure(struct soap *soap, const char *URL, tt__Exposure 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, "tt:Exposure", p->soap_type() == SOAP_TYPE_tt__Exposure ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Exposure(struct soap *soap, const char *URL, tt__Exposure 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, "tt:Exposure", p->soap_type() == SOAP_TYPE_tt__Exposure ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Exposure(struct soap *soap, const char *URL, tt__Exposure 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, "tt:Exposure", p->soap_type() == SOAP_TYPE_tt__Exposure ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Exposure * SOAP_FMAC4 soap_get_tt__Exposure(struct soap*, tt__Exposure *, const char*, const char*); - -inline int soap_read_tt__Exposure(struct soap *soap, tt__Exposure *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Exposure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Exposure(struct soap *soap, const char *URL, tt__Exposure *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Exposure(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Exposure(struct soap *soap, tt__Exposure *p) -{ - if (::soap_read_tt__Exposure(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingSettingsExtension_DEFINED -#define SOAP_TYPE_tt__ImagingSettingsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettingsExtension(struct soap*, const char*, int, const tt__ImagingSettingsExtension *, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension * SOAP_FMAC4 soap_in_tt__ImagingSettingsExtension(struct soap*, const char*, tt__ImagingSettingsExtension *, const char*); -SOAP_FMAC1 tt__ImagingSettingsExtension * SOAP_FMAC2 soap_instantiate_tt__ImagingSettingsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingSettingsExtension * soap_new_tt__ImagingSettingsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingSettingsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingSettingsExtension * soap_new_req_tt__ImagingSettingsExtension( - struct soap *soap) -{ - tt__ImagingSettingsExtension *_p = ::soap_new_tt__ImagingSettingsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingSettingsExtension * soap_new_set_tt__ImagingSettingsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ImagingSettingsExtension *_p = ::soap_new_tt__ImagingSettingsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingSettingsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ImagingSettingsExtension(struct soap *soap, tt__ImagingSettingsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingSettingsExtension", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingSettingsExtension(struct soap *soap, const char *URL, tt__ImagingSettingsExtension 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, "tt:ImagingSettingsExtension", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingSettingsExtension(struct soap *soap, const char *URL, tt__ImagingSettingsExtension 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, "tt:ImagingSettingsExtension", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingSettingsExtension(struct soap *soap, const char *URL, tt__ImagingSettingsExtension 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, "tt:ImagingSettingsExtension", p->soap_type() == SOAP_TYPE_tt__ImagingSettingsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingSettingsExtension * SOAP_FMAC4 soap_get_tt__ImagingSettingsExtension(struct soap*, tt__ImagingSettingsExtension *, const char*, const char*); - -inline int soap_read_tt__ImagingSettingsExtension(struct soap *soap, tt__ImagingSettingsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingSettingsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingSettingsExtension(struct soap *soap, const char *URL, tt__ImagingSettingsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingSettingsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingSettingsExtension(struct soap *soap, tt__ImagingSettingsExtension *p) -{ - if (::soap_read_tt__ImagingSettingsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingSettings_DEFINED -#define SOAP_TYPE_tt__ImagingSettings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingSettings(struct soap*, const char*, int, const tt__ImagingSettings *, const char*); -SOAP_FMAC3 tt__ImagingSettings * SOAP_FMAC4 soap_in_tt__ImagingSettings(struct soap*, const char*, tt__ImagingSettings *, const char*); -SOAP_FMAC1 tt__ImagingSettings * SOAP_FMAC2 soap_instantiate_tt__ImagingSettings(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingSettings * soap_new_tt__ImagingSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingSettings(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingSettings * soap_new_req_tt__ImagingSettings( - struct soap *soap) -{ - tt__ImagingSettings *_p = ::soap_new_tt__ImagingSettings(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ImagingSettings * soap_new_set_tt__ImagingSettings( - struct soap *soap, - tt__BacklightCompensation *BacklightCompensation, - float *Brightness, - float *ColorSaturation, - float *Contrast, - tt__Exposure *Exposure, - tt__FocusConfiguration *Focus, - enum tt__IrCutFilterMode *IrCutFilter, - float *Sharpness, - tt__WideDynamicRange *WideDynamicRange, - tt__WhiteBalance *WhiteBalance, - tt__ImagingSettingsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImagingSettings *_p = ::soap_new_tt__ImagingSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingSettings::BacklightCompensation = BacklightCompensation; - _p->tt__ImagingSettings::Brightness = Brightness; - _p->tt__ImagingSettings::ColorSaturation = ColorSaturation; - _p->tt__ImagingSettings::Contrast = Contrast; - _p->tt__ImagingSettings::Exposure = Exposure; - _p->tt__ImagingSettings::Focus = Focus; - _p->tt__ImagingSettings::IrCutFilter = IrCutFilter; - _p->tt__ImagingSettings::Sharpness = Sharpness; - _p->tt__ImagingSettings::WideDynamicRange = WideDynamicRange; - _p->tt__ImagingSettings::WhiteBalance = WhiteBalance; - _p->tt__ImagingSettings::Extension = Extension; - _p->tt__ImagingSettings::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImagingSettings(struct soap *soap, tt__ImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingSettings", p->soap_type() == SOAP_TYPE_tt__ImagingSettings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingSettings(struct soap *soap, const char *URL, tt__ImagingSettings 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, "tt:ImagingSettings", p->soap_type() == SOAP_TYPE_tt__ImagingSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingSettings(struct soap *soap, const char *URL, tt__ImagingSettings 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, "tt:ImagingSettings", p->soap_type() == SOAP_TYPE_tt__ImagingSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingSettings(struct soap *soap, const char *URL, tt__ImagingSettings 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, "tt:ImagingSettings", p->soap_type() == SOAP_TYPE_tt__ImagingSettings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingSettings * SOAP_FMAC4 soap_get_tt__ImagingSettings(struct soap*, tt__ImagingSettings *, const char*, const char*); - -inline int soap_read_tt__ImagingSettings(struct soap *soap, tt__ImagingSettings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingSettings(struct soap *soap, const char *URL, tt__ImagingSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingSettings(struct soap *soap, tt__ImagingSettings *p) -{ - if (::soap_read_tt__ImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusConfiguration_DEFINED -#define SOAP_TYPE_tt__FocusConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusConfiguration(struct soap*, const char*, int, const tt__FocusConfiguration *, const char*); -SOAP_FMAC3 tt__FocusConfiguration * SOAP_FMAC4 soap_in_tt__FocusConfiguration(struct soap*, const char*, tt__FocusConfiguration *, const char*); -SOAP_FMAC1 tt__FocusConfiguration * SOAP_FMAC2 soap_instantiate_tt__FocusConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusConfiguration * soap_new_tt__FocusConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusConfiguration * soap_new_req_tt__FocusConfiguration( - struct soap *soap, - enum tt__AutoFocusMode AutoFocusMode, - float DefaultSpeed, - float NearLimit, - float FarLimit) -{ - tt__FocusConfiguration *_p = ::soap_new_tt__FocusConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusConfiguration::AutoFocusMode = AutoFocusMode; - _p->tt__FocusConfiguration::DefaultSpeed = DefaultSpeed; - _p->tt__FocusConfiguration::NearLimit = NearLimit; - _p->tt__FocusConfiguration::FarLimit = FarLimit; - } - return _p; -} - -inline tt__FocusConfiguration * soap_new_set_tt__FocusConfiguration( - struct soap *soap, - enum tt__AutoFocusMode AutoFocusMode, - float DefaultSpeed, - float NearLimit, - float FarLimit, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FocusConfiguration *_p = ::soap_new_tt__FocusConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusConfiguration::AutoFocusMode = AutoFocusMode; - _p->tt__FocusConfiguration::DefaultSpeed = DefaultSpeed; - _p->tt__FocusConfiguration::NearLimit = NearLimit; - _p->tt__FocusConfiguration::FarLimit = FarLimit; - _p->tt__FocusConfiguration::__any = __any; - _p->tt__FocusConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FocusConfiguration(struct soap *soap, tt__FocusConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusConfiguration", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusConfiguration(struct soap *soap, const char *URL, tt__FocusConfiguration 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, "tt:FocusConfiguration", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusConfiguration(struct soap *soap, const char *URL, tt__FocusConfiguration 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, "tt:FocusConfiguration", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusConfiguration(struct soap *soap, const char *URL, tt__FocusConfiguration 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, "tt:FocusConfiguration", p->soap_type() == SOAP_TYPE_tt__FocusConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusConfiguration * SOAP_FMAC4 soap_get_tt__FocusConfiguration(struct soap*, tt__FocusConfiguration *, const char*, const char*); - -inline int soap_read_tt__FocusConfiguration(struct soap *soap, tt__FocusConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusConfiguration(struct soap *soap, const char *URL, tt__FocusConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusConfiguration(struct soap *soap, tt__FocusConfiguration *p) -{ - if (::soap_read_tt__FocusConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FocusStatus_DEFINED -#define SOAP_TYPE_tt__FocusStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FocusStatus(struct soap*, const char*, int, const tt__FocusStatus *, const char*); -SOAP_FMAC3 tt__FocusStatus * SOAP_FMAC4 soap_in_tt__FocusStatus(struct soap*, const char*, tt__FocusStatus *, const char*); -SOAP_FMAC1 tt__FocusStatus * SOAP_FMAC2 soap_instantiate_tt__FocusStatus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FocusStatus * soap_new_tt__FocusStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FocusStatus(soap, n, NULL, NULL, NULL); -} - -inline tt__FocusStatus * soap_new_req_tt__FocusStatus( - struct soap *soap, - float Position, - enum tt__MoveStatus MoveStatus, - const std::string& Error) -{ - tt__FocusStatus *_p = ::soap_new_tt__FocusStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusStatus::Position = Position; - _p->tt__FocusStatus::MoveStatus = MoveStatus; - _p->tt__FocusStatus::Error = Error; - } - return _p; -} - -inline tt__FocusStatus * soap_new_set_tt__FocusStatus( - struct soap *soap, - float Position, - enum tt__MoveStatus MoveStatus, - const std::string& Error, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__FocusStatus *_p = ::soap_new_tt__FocusStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FocusStatus::Position = Position; - _p->tt__FocusStatus::MoveStatus = MoveStatus; - _p->tt__FocusStatus::Error = Error; - _p->tt__FocusStatus::__any = __any; - _p->tt__FocusStatus::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__FocusStatus(struct soap *soap, tt__FocusStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FocusStatus", p->soap_type() == SOAP_TYPE_tt__FocusStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FocusStatus(struct soap *soap, const char *URL, tt__FocusStatus 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, "tt:FocusStatus", p->soap_type() == SOAP_TYPE_tt__FocusStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FocusStatus(struct soap *soap, const char *URL, tt__FocusStatus 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, "tt:FocusStatus", p->soap_type() == SOAP_TYPE_tt__FocusStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FocusStatus(struct soap *soap, const char *URL, tt__FocusStatus 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, "tt:FocusStatus", p->soap_type() == SOAP_TYPE_tt__FocusStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FocusStatus * SOAP_FMAC4 soap_get_tt__FocusStatus(struct soap*, tt__FocusStatus *, const char*, const char*); - -inline int soap_read_tt__FocusStatus(struct soap *soap, tt__FocusStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FocusStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FocusStatus(struct soap *soap, const char *URL, tt__FocusStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FocusStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FocusStatus(struct soap *soap, tt__FocusStatus *p) -{ - if (::soap_read_tt__FocusStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingStatus_DEFINED -#define SOAP_TYPE_tt__ImagingStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingStatus(struct soap*, const char*, int, const tt__ImagingStatus *, const char*); -SOAP_FMAC3 tt__ImagingStatus * SOAP_FMAC4 soap_in_tt__ImagingStatus(struct soap*, const char*, tt__ImagingStatus *, const char*); -SOAP_FMAC1 tt__ImagingStatus * SOAP_FMAC2 soap_instantiate_tt__ImagingStatus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingStatus * soap_new_tt__ImagingStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingStatus(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingStatus * soap_new_req_tt__ImagingStatus( - struct soap *soap, - tt__FocusStatus *FocusStatus) -{ - tt__ImagingStatus *_p = ::soap_new_tt__ImagingStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingStatus::FocusStatus = FocusStatus; - } - return _p; -} - -inline tt__ImagingStatus * soap_new_set_tt__ImagingStatus( - struct soap *soap, - tt__FocusStatus *FocusStatus, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImagingStatus *_p = ::soap_new_tt__ImagingStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingStatus::FocusStatus = FocusStatus; - _p->tt__ImagingStatus::__any = __any; - _p->tt__ImagingStatus::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImagingStatus(struct soap *soap, tt__ImagingStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingStatus", p->soap_type() == SOAP_TYPE_tt__ImagingStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingStatus(struct soap *soap, const char *URL, tt__ImagingStatus 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, "tt:ImagingStatus", p->soap_type() == SOAP_TYPE_tt__ImagingStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingStatus(struct soap *soap, const char *URL, tt__ImagingStatus 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, "tt:ImagingStatus", p->soap_type() == SOAP_TYPE_tt__ImagingStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingStatus(struct soap *soap, const char *URL, tt__ImagingStatus 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, "tt:ImagingStatus", p->soap_type() == SOAP_TYPE_tt__ImagingStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingStatus * SOAP_FMAC4 soap_get_tt__ImagingStatus(struct soap*, tt__ImagingStatus *, const char*, const char*); - -inline int soap_read_tt__ImagingStatus(struct soap *soap, tt__ImagingStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingStatus(struct soap *soap, const char *URL, tt__ImagingStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingStatus(struct soap *soap, tt__ImagingStatus *p) -{ - if (::soap_read_tt__ImagingStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap*, const char*, int, const tt__PTZPresetTourStartingConditionOptionsExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptionsExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap*, const char*, tt__PTZPresetTourStartingConditionOptionsExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourStartingConditionOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourStartingConditionOptionsExtension * soap_new_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourStartingConditionOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourStartingConditionOptionsExtension * soap_new_req_tt__PTZPresetTourStartingConditionOptionsExtension( - struct soap *soap) -{ - tt__PTZPresetTourStartingConditionOptionsExtension *_p = ::soap_new_tt__PTZPresetTourStartingConditionOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourStartingConditionOptionsExtension * soap_new_set_tt__PTZPresetTourStartingConditionOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourStartingConditionOptionsExtension *_p = ::soap_new_tt__PTZPresetTourStartingConditionOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourStartingConditionOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, tt__PTZPresetTourStartingConditionOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourStartingConditionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptionsExtension 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, "tt:PTZPresetTourStartingConditionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptionsExtension 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, "tt:PTZPresetTourStartingConditionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptionsExtension 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, "tt:PTZPresetTourStartingConditionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptionsExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap*, tt__PTZPresetTourStartingConditionOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, tt__PTZPresetTourStartingConditionOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourStartingConditionOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourStartingConditionOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourStartingConditionOptionsExtension(struct soap *soap, tt__PTZPresetTourStartingConditionOptionsExtension *p) -{ - if (::soap_read_tt__PTZPresetTourStartingConditionOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingConditionOptions(struct soap*, const char*, int, const tt__PTZPresetTourStartingConditionOptions *, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingConditionOptions(struct soap*, const char*, tt__PTZPresetTourStartingConditionOptions *, const char*); -SOAP_FMAC1 tt__PTZPresetTourStartingConditionOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingConditionOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourStartingConditionOptions * soap_new_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourStartingConditionOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourStartingConditionOptions * soap_new_req_tt__PTZPresetTourStartingConditionOptions( - struct soap *soap) -{ - tt__PTZPresetTourStartingConditionOptions *_p = ::soap_new_tt__PTZPresetTourStartingConditionOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourStartingConditionOptions * soap_new_set_tt__PTZPresetTourStartingConditionOptions( - struct soap *soap, - tt__IntRange *RecurringTime, - tt__DurationRange *RecurringDuration, - const std::vector & Direction, - tt__PTZPresetTourStartingConditionOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourStartingConditionOptions *_p = ::soap_new_tt__PTZPresetTourStartingConditionOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourStartingConditionOptions::RecurringTime = RecurringTime; - _p->tt__PTZPresetTourStartingConditionOptions::RecurringDuration = RecurringDuration; - _p->tt__PTZPresetTourStartingConditionOptions::Direction = Direction; - _p->tt__PTZPresetTourStartingConditionOptions::Extension = Extension; - _p->tt__PTZPresetTourStartingConditionOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, tt__PTZPresetTourStartingConditionOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourStartingConditionOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptions 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, "tt:PTZPresetTourStartingConditionOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptions 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, "tt:PTZPresetTourStartingConditionOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptions 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, "tt:PTZPresetTourStartingConditionOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingConditionOptions(struct soap*, tt__PTZPresetTourStartingConditionOptions *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, tt__PTZPresetTourStartingConditionOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourStartingConditionOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourStartingConditionOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourStartingConditionOptions(struct soap *soap, tt__PTZPresetTourStartingConditionOptions *p) -{ - if (::soap_read_tt__PTZPresetTourStartingConditionOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap*, const char*, int, const tt__PTZPresetTourPresetDetailOptionsExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptionsExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap*, const char*, tt__PTZPresetTourPresetDetailOptionsExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourPresetDetailOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourPresetDetailOptionsExtension * soap_new_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourPresetDetailOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourPresetDetailOptionsExtension * soap_new_req_tt__PTZPresetTourPresetDetailOptionsExtension( - struct soap *soap) -{ - tt__PTZPresetTourPresetDetailOptionsExtension *_p = ::soap_new_tt__PTZPresetTourPresetDetailOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourPresetDetailOptionsExtension * soap_new_set_tt__PTZPresetTourPresetDetailOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourPresetDetailOptionsExtension *_p = ::soap_new_tt__PTZPresetTourPresetDetailOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourPresetDetailOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, tt__PTZPresetTourPresetDetailOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourPresetDetailOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptionsExtension 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, "tt:PTZPresetTourPresetDetailOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptionsExtension 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, "tt:PTZPresetTourPresetDetailOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptionsExtension 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, "tt:PTZPresetTourPresetDetailOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptionsExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap*, tt__PTZPresetTourPresetDetailOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, tt__PTZPresetTourPresetDetailOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourPresetDetailOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourPresetDetailOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourPresetDetailOptionsExtension(struct soap *soap, tt__PTZPresetTourPresetDetailOptionsExtension *p) -{ - if (::soap_read_tt__PTZPresetTourPresetDetailOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourPresetDetailOptions(struct soap*, const char*, int, const tt__PTZPresetTourPresetDetailOptions *, const char*); -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourPresetDetailOptions(struct soap*, const char*, tt__PTZPresetTourPresetDetailOptions *, const char*); -SOAP_FMAC1 tt__PTZPresetTourPresetDetailOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourPresetDetailOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourPresetDetailOptions * soap_new_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourPresetDetailOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourPresetDetailOptions * soap_new_req_tt__PTZPresetTourPresetDetailOptions( - struct soap *soap) -{ - tt__PTZPresetTourPresetDetailOptions *_p = ::soap_new_tt__PTZPresetTourPresetDetailOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourPresetDetailOptions * soap_new_set_tt__PTZPresetTourPresetDetailOptions( - struct soap *soap, - const std::vector & PresetToken, - bool *Home, - tt__Space2DDescription *PanTiltPositionSpace, - tt__Space1DDescription *ZoomPositionSpace, - tt__PTZPresetTourPresetDetailOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourPresetDetailOptions *_p = ::soap_new_tt__PTZPresetTourPresetDetailOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourPresetDetailOptions::PresetToken = PresetToken; - _p->tt__PTZPresetTourPresetDetailOptions::Home = Home; - _p->tt__PTZPresetTourPresetDetailOptions::PanTiltPositionSpace = PanTiltPositionSpace; - _p->tt__PTZPresetTourPresetDetailOptions::ZoomPositionSpace = ZoomPositionSpace; - _p->tt__PTZPresetTourPresetDetailOptions::Extension = Extension; - _p->tt__PTZPresetTourPresetDetailOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, tt__PTZPresetTourPresetDetailOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourPresetDetailOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptions 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, "tt:PTZPresetTourPresetDetailOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptions 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, "tt:PTZPresetTourPresetDetailOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptions 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, "tt:PTZPresetTourPresetDetailOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetailOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourPresetDetailOptions(struct soap*, tt__PTZPresetTourPresetDetailOptions *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, tt__PTZPresetTourPresetDetailOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourPresetDetailOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetailOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourPresetDetailOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourPresetDetailOptions(struct soap *soap, tt__PTZPresetTourPresetDetailOptions *p) -{ - if (::soap_read_tt__PTZPresetTourPresetDetailOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourSpotOptions_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourSpotOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSpotOptions(struct soap*, const char*, int, const tt__PTZPresetTourSpotOptions *, const char*); -SOAP_FMAC3 tt__PTZPresetTourSpotOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourSpotOptions(struct soap*, const char*, tt__PTZPresetTourSpotOptions *, const char*); -SOAP_FMAC1 tt__PTZPresetTourSpotOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSpotOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourSpotOptions * soap_new_tt__PTZPresetTourSpotOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourSpotOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourSpotOptions * soap_new_req_tt__PTZPresetTourSpotOptions( - struct soap *soap, - tt__PTZPresetTourPresetDetailOptions *PresetDetail, - tt__DurationRange *StayTime) -{ - tt__PTZPresetTourSpotOptions *_p = ::soap_new_tt__PTZPresetTourSpotOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSpotOptions::PresetDetail = PresetDetail; - _p->tt__PTZPresetTourSpotOptions::StayTime = StayTime; - } - return _p; -} - -inline tt__PTZPresetTourSpotOptions * soap_new_set_tt__PTZPresetTourSpotOptions( - struct soap *soap, - tt__PTZPresetTourPresetDetailOptions *PresetDetail, - tt__DurationRange *StayTime, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourSpotOptions *_p = ::soap_new_tt__PTZPresetTourSpotOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSpotOptions::PresetDetail = PresetDetail; - _p->tt__PTZPresetTourSpotOptions::StayTime = StayTime; - _p->tt__PTZPresetTourSpotOptions::__any = __any; - _p->tt__PTZPresetTourSpotOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourSpotOptions(struct soap *soap, tt__PTZPresetTourSpotOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourSpotOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourSpotOptions(struct soap *soap, const char *URL, tt__PTZPresetTourSpotOptions 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, "tt:PTZPresetTourSpotOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourSpotOptions(struct soap *soap, const char *URL, tt__PTZPresetTourSpotOptions 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, "tt:PTZPresetTourSpotOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourSpotOptions(struct soap *soap, const char *URL, tt__PTZPresetTourSpotOptions 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, "tt:PTZPresetTourSpotOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourSpotOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourSpotOptions(struct soap*, tt__PTZPresetTourSpotOptions *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourSpotOptions(struct soap *soap, tt__PTZPresetTourSpotOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourSpotOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourSpotOptions(struct soap *soap, const char *URL, tt__PTZPresetTourSpotOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourSpotOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourSpotOptions(struct soap *soap, tt__PTZPresetTourSpotOptions *p) -{ - if (::soap_read_tt__PTZPresetTourSpotOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourOptions_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourOptions(struct soap*, const char*, int, const tt__PTZPresetTourOptions *, const char*); -SOAP_FMAC3 tt__PTZPresetTourOptions * SOAP_FMAC4 soap_in_tt__PTZPresetTourOptions(struct soap*, const char*, tt__PTZPresetTourOptions *, const char*); -SOAP_FMAC1 tt__PTZPresetTourOptions * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourOptions * soap_new_tt__PTZPresetTourOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourOptions * soap_new_req_tt__PTZPresetTourOptions( - struct soap *soap, - bool AutoStart, - tt__PTZPresetTourStartingConditionOptions *StartingCondition, - tt__PTZPresetTourSpotOptions *TourSpot) -{ - tt__PTZPresetTourOptions *_p = ::soap_new_tt__PTZPresetTourOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourOptions::AutoStart = AutoStart; - _p->tt__PTZPresetTourOptions::StartingCondition = StartingCondition; - _p->tt__PTZPresetTourOptions::TourSpot = TourSpot; - } - return _p; -} - -inline tt__PTZPresetTourOptions * soap_new_set_tt__PTZPresetTourOptions( - struct soap *soap, - bool AutoStart, - tt__PTZPresetTourStartingConditionOptions *StartingCondition, - tt__PTZPresetTourSpotOptions *TourSpot, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourOptions *_p = ::soap_new_tt__PTZPresetTourOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourOptions::AutoStart = AutoStart; - _p->tt__PTZPresetTourOptions::StartingCondition = StartingCondition; - _p->tt__PTZPresetTourOptions::TourSpot = TourSpot; - _p->tt__PTZPresetTourOptions::__any = __any; - _p->tt__PTZPresetTourOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourOptions(struct soap *soap, tt__PTZPresetTourOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourOptions(struct soap *soap, const char *URL, tt__PTZPresetTourOptions 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, "tt:PTZPresetTourOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourOptions(struct soap *soap, const char *URL, tt__PTZPresetTourOptions 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, "tt:PTZPresetTourOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourOptions(struct soap *soap, const char *URL, tt__PTZPresetTourOptions 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, "tt:PTZPresetTourOptions", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourOptions * SOAP_FMAC4 soap_get_tt__PTZPresetTourOptions(struct soap*, tt__PTZPresetTourOptions *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourOptions(struct soap *soap, tt__PTZPresetTourOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourOptions(struct soap *soap, const char *URL, tt__PTZPresetTourOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourOptions(struct soap *soap, tt__PTZPresetTourOptions *p) -{ - if (::soap_read_tt__PTZPresetTourOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingConditionExtension(struct soap*, const char*, int, const tt__PTZPresetTourStartingConditionExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingConditionExtension(struct soap*, const char*, tt__PTZPresetTourStartingConditionExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourStartingConditionExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingConditionExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourStartingConditionExtension * soap_new_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourStartingConditionExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourStartingConditionExtension * soap_new_req_tt__PTZPresetTourStartingConditionExtension( - struct soap *soap) -{ - tt__PTZPresetTourStartingConditionExtension *_p = ::soap_new_tt__PTZPresetTourStartingConditionExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourStartingConditionExtension * soap_new_set_tt__PTZPresetTourStartingConditionExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourStartingConditionExtension *_p = ::soap_new_tt__PTZPresetTourStartingConditionExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourStartingConditionExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, tt__PTZPresetTourStartingConditionExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourStartingConditionExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionExtension 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, "tt:PTZPresetTourStartingConditionExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionExtension 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, "tt:PTZPresetTourStartingConditionExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionExtension 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, "tt:PTZPresetTourStartingConditionExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingConditionExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourStartingConditionExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingConditionExtension(struct soap*, tt__PTZPresetTourStartingConditionExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, tt__PTZPresetTourStartingConditionExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourStartingConditionExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStartingConditionExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourStartingConditionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourStartingConditionExtension(struct soap *soap, tt__PTZPresetTourStartingConditionExtension *p) -{ - if (::soap_read_tt__PTZPresetTourStartingConditionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourStartingCondition_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourStartingCondition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStartingCondition(struct soap*, const char*, int, const tt__PTZPresetTourStartingCondition *, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingCondition * SOAP_FMAC4 soap_in_tt__PTZPresetTourStartingCondition(struct soap*, const char*, tt__PTZPresetTourStartingCondition *, const char*); -SOAP_FMAC1 tt__PTZPresetTourStartingCondition * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStartingCondition(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourStartingCondition * soap_new_tt__PTZPresetTourStartingCondition(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourStartingCondition(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourStartingCondition * soap_new_req_tt__PTZPresetTourStartingCondition( - struct soap *soap) -{ - tt__PTZPresetTourStartingCondition *_p = ::soap_new_tt__PTZPresetTourStartingCondition(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourStartingCondition * soap_new_set_tt__PTZPresetTourStartingCondition( - struct soap *soap, - int *RecurringTime, - std::string *RecurringDuration, - enum tt__PTZPresetTourDirection *Direction, - tt__PTZPresetTourStartingConditionExtension *Extension, - bool *RandomPresetOrder, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourStartingCondition *_p = ::soap_new_tt__PTZPresetTourStartingCondition(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourStartingCondition::RecurringTime = RecurringTime; - _p->tt__PTZPresetTourStartingCondition::RecurringDuration = RecurringDuration; - _p->tt__PTZPresetTourStartingCondition::Direction = Direction; - _p->tt__PTZPresetTourStartingCondition::Extension = Extension; - _p->tt__PTZPresetTourStartingCondition::RandomPresetOrder = RandomPresetOrder; - _p->tt__PTZPresetTourStartingCondition::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourStartingCondition(struct soap *soap, tt__PTZPresetTourStartingCondition const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourStartingCondition", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingCondition ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourStartingCondition(struct soap *soap, const char *URL, tt__PTZPresetTourStartingCondition 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, "tt:PTZPresetTourStartingCondition", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingCondition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourStartingCondition(struct soap *soap, const char *URL, tt__PTZPresetTourStartingCondition 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, "tt:PTZPresetTourStartingCondition", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingCondition ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourStartingCondition(struct soap *soap, const char *URL, tt__PTZPresetTourStartingCondition 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, "tt:PTZPresetTourStartingCondition", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStartingCondition ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourStartingCondition * SOAP_FMAC4 soap_get_tt__PTZPresetTourStartingCondition(struct soap*, tt__PTZPresetTourStartingCondition *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourStartingCondition(struct soap *soap, tt__PTZPresetTourStartingCondition *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourStartingCondition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourStartingCondition(struct soap *soap, const char *URL, tt__PTZPresetTourStartingCondition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourStartingCondition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourStartingCondition(struct soap *soap, tt__PTZPresetTourStartingCondition *p) -{ - if (::soap_read_tt__PTZPresetTourStartingCondition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourStatusExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourStatusExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStatusExtension(struct soap*, const char*, int, const tt__PTZPresetTourStatusExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourStatusExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourStatusExtension(struct soap*, const char*, tt__PTZPresetTourStatusExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourStatusExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStatusExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourStatusExtension * soap_new_tt__PTZPresetTourStatusExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourStatusExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourStatusExtension * soap_new_req_tt__PTZPresetTourStatusExtension( - struct soap *soap) -{ - tt__PTZPresetTourStatusExtension *_p = ::soap_new_tt__PTZPresetTourStatusExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourStatusExtension * soap_new_set_tt__PTZPresetTourStatusExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourStatusExtension *_p = ::soap_new_tt__PTZPresetTourStatusExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourStatusExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourStatusExtension(struct soap *soap, tt__PTZPresetTourStatusExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourStatusExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatusExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourStatusExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStatusExtension 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, "tt:PTZPresetTourStatusExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatusExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourStatusExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStatusExtension 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, "tt:PTZPresetTourStatusExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatusExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourStatusExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStatusExtension 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, "tt:PTZPresetTourStatusExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatusExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourStatusExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourStatusExtension(struct soap*, tt__PTZPresetTourStatusExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourStatusExtension(struct soap *soap, tt__PTZPresetTourStatusExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourStatusExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourStatusExtension(struct soap *soap, const char *URL, tt__PTZPresetTourStatusExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourStatusExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourStatusExtension(struct soap *soap, tt__PTZPresetTourStatusExtension *p) -{ - if (::soap_read_tt__PTZPresetTourStatusExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourStatus_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourStatus(struct soap*, const char*, int, const tt__PTZPresetTourStatus *, const char*); -SOAP_FMAC3 tt__PTZPresetTourStatus * SOAP_FMAC4 soap_in_tt__PTZPresetTourStatus(struct soap*, const char*, tt__PTZPresetTourStatus *, const char*); -SOAP_FMAC1 tt__PTZPresetTourStatus * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourStatus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourStatus * soap_new_tt__PTZPresetTourStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourStatus(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourStatus * soap_new_req_tt__PTZPresetTourStatus( - struct soap *soap, - enum tt__PTZPresetTourState State) -{ - tt__PTZPresetTourStatus *_p = ::soap_new_tt__PTZPresetTourStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourStatus::State = State; - } - return _p; -} - -inline tt__PTZPresetTourStatus * soap_new_set_tt__PTZPresetTourStatus( - struct soap *soap, - enum tt__PTZPresetTourState State, - tt__PTZPresetTourSpot *CurrentTourSpot, - tt__PTZPresetTourStatusExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourStatus *_p = ::soap_new_tt__PTZPresetTourStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourStatus::State = State; - _p->tt__PTZPresetTourStatus::CurrentTourSpot = CurrentTourSpot; - _p->tt__PTZPresetTourStatus::Extension = Extension; - _p->tt__PTZPresetTourStatus::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourStatus(struct soap *soap, tt__PTZPresetTourStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourStatus", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourStatus(struct soap *soap, const char *URL, tt__PTZPresetTourStatus 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, "tt:PTZPresetTourStatus", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourStatus(struct soap *soap, const char *URL, tt__PTZPresetTourStatus 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, "tt:PTZPresetTourStatus", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourStatus(struct soap *soap, const char *URL, tt__PTZPresetTourStatus 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, "tt:PTZPresetTourStatus", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourStatus * SOAP_FMAC4 soap_get_tt__PTZPresetTourStatus(struct soap*, tt__PTZPresetTourStatus *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourStatus(struct soap *soap, tt__PTZPresetTourStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourStatus(struct soap *soap, const char *URL, tt__PTZPresetTourStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourStatus(struct soap *soap, tt__PTZPresetTourStatus *p) -{ - if (::soap_read_tt__PTZPresetTourStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourTypeExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourTypeExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourTypeExtension(struct soap*, const char*, int, const tt__PTZPresetTourTypeExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourTypeExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourTypeExtension(struct soap*, const char*, tt__PTZPresetTourTypeExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourTypeExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourTypeExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourTypeExtension * soap_new_tt__PTZPresetTourTypeExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourTypeExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourTypeExtension * soap_new_req_tt__PTZPresetTourTypeExtension( - struct soap *soap) -{ - tt__PTZPresetTourTypeExtension *_p = ::soap_new_tt__PTZPresetTourTypeExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourTypeExtension * soap_new_set_tt__PTZPresetTourTypeExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourTypeExtension *_p = ::soap_new_tt__PTZPresetTourTypeExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourTypeExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourTypeExtension(struct soap *soap, tt__PTZPresetTourTypeExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourTypeExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourTypeExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourTypeExtension(struct soap *soap, const char *URL, tt__PTZPresetTourTypeExtension 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, "tt:PTZPresetTourTypeExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourTypeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourTypeExtension(struct soap *soap, const char *URL, tt__PTZPresetTourTypeExtension 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, "tt:PTZPresetTourTypeExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourTypeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourTypeExtension(struct soap *soap, const char *URL, tt__PTZPresetTourTypeExtension 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, "tt:PTZPresetTourTypeExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourTypeExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourTypeExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourTypeExtension(struct soap*, tt__PTZPresetTourTypeExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourTypeExtension(struct soap *soap, tt__PTZPresetTourTypeExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourTypeExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourTypeExtension(struct soap *soap, const char *URL, tt__PTZPresetTourTypeExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourTypeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourTypeExtension(struct soap *soap, tt__PTZPresetTourTypeExtension *p) -{ - if (::soap_read_tt__PTZPresetTourTypeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourPresetDetail_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourPresetDetail_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourPresetDetail(struct soap*, const char*, int, const tt__PTZPresetTourPresetDetail *, const char*); -SOAP_FMAC3 tt__PTZPresetTourPresetDetail * SOAP_FMAC4 soap_in_tt__PTZPresetTourPresetDetail(struct soap*, const char*, tt__PTZPresetTourPresetDetail *, const char*); -SOAP_FMAC1 tt__PTZPresetTourPresetDetail * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourPresetDetail(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourPresetDetail * soap_new_tt__PTZPresetTourPresetDetail(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourPresetDetail(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourPresetDetail * soap_new_req_tt__PTZPresetTourPresetDetail( - struct soap *soap, - const union _tt__union_PTZPresetTourPresetDetail& union_PTZPresetTourPresetDetail) -{ - tt__PTZPresetTourPresetDetail *_p = ::soap_new_tt__PTZPresetTourPresetDetail(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourPresetDetail::union_PTZPresetTourPresetDetail = union_PTZPresetTourPresetDetail; - } - return _p; -} - -inline tt__PTZPresetTourPresetDetail * soap_new_set_tt__PTZPresetTourPresetDetail( - struct soap *soap, - int __union_PTZPresetTourPresetDetail, - const union _tt__union_PTZPresetTourPresetDetail& union_PTZPresetTourPresetDetail, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourPresetDetail *_p = ::soap_new_tt__PTZPresetTourPresetDetail(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourPresetDetail::__union_PTZPresetTourPresetDetail = __union_PTZPresetTourPresetDetail; - _p->tt__PTZPresetTourPresetDetail::union_PTZPresetTourPresetDetail = union_PTZPresetTourPresetDetail; - _p->tt__PTZPresetTourPresetDetail::__any = __any; - _p->tt__PTZPresetTourPresetDetail::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourPresetDetail(struct soap *soap, tt__PTZPresetTourPresetDetail const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourPresetDetail", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetail ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourPresetDetail(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetail 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, "tt:PTZPresetTourPresetDetail", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetail ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourPresetDetail(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetail 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, "tt:PTZPresetTourPresetDetail", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetail ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourPresetDetail(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetail 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, "tt:PTZPresetTourPresetDetail", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourPresetDetail ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourPresetDetail * SOAP_FMAC4 soap_get_tt__PTZPresetTourPresetDetail(struct soap*, tt__PTZPresetTourPresetDetail *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourPresetDetail(struct soap *soap, tt__PTZPresetTourPresetDetail *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourPresetDetail(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourPresetDetail(struct soap *soap, const char *URL, tt__PTZPresetTourPresetDetail *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourPresetDetail(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourPresetDetail(struct soap *soap, tt__PTZPresetTourPresetDetail *p) -{ - if (::soap_read_tt__PTZPresetTourPresetDetail(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourSpotExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourSpotExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSpotExtension(struct soap*, const char*, int, const tt__PTZPresetTourSpotExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourSpotExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourSpotExtension(struct soap*, const char*, tt__PTZPresetTourSpotExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourSpotExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSpotExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourSpotExtension * soap_new_tt__PTZPresetTourSpotExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourSpotExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourSpotExtension * soap_new_req_tt__PTZPresetTourSpotExtension( - struct soap *soap) -{ - tt__PTZPresetTourSpotExtension *_p = ::soap_new_tt__PTZPresetTourSpotExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourSpotExtension * soap_new_set_tt__PTZPresetTourSpotExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourSpotExtension *_p = ::soap_new_tt__PTZPresetTourSpotExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSpotExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourSpotExtension(struct soap *soap, tt__PTZPresetTourSpotExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourSpotExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourSpotExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSpotExtension 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, "tt:PTZPresetTourSpotExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourSpotExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSpotExtension 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, "tt:PTZPresetTourSpotExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourSpotExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSpotExtension 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, "tt:PTZPresetTourSpotExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpotExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourSpotExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourSpotExtension(struct soap*, tt__PTZPresetTourSpotExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourSpotExtension(struct soap *soap, tt__PTZPresetTourSpotExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourSpotExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourSpotExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSpotExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourSpotExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourSpotExtension(struct soap *soap, tt__PTZPresetTourSpotExtension *p) -{ - if (::soap_read_tt__PTZPresetTourSpotExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourSpot_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourSpot_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSpot(struct soap*, const char*, int, const tt__PTZPresetTourSpot *, const char*); -SOAP_FMAC3 tt__PTZPresetTourSpot * SOAP_FMAC4 soap_in_tt__PTZPresetTourSpot(struct soap*, const char*, tt__PTZPresetTourSpot *, const char*); -SOAP_FMAC1 tt__PTZPresetTourSpot * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSpot(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourSpot * soap_new_tt__PTZPresetTourSpot(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourSpot(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourSpot * soap_new_req_tt__PTZPresetTourSpot( - struct soap *soap, - tt__PTZPresetTourPresetDetail *PresetDetail) -{ - tt__PTZPresetTourSpot *_p = ::soap_new_tt__PTZPresetTourSpot(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSpot::PresetDetail = PresetDetail; - } - return _p; -} - -inline tt__PTZPresetTourSpot * soap_new_set_tt__PTZPresetTourSpot( - struct soap *soap, - tt__PTZPresetTourPresetDetail *PresetDetail, - tt__PTZSpeed *Speed, - std::string *StayTime, - tt__PTZPresetTourSpotExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourSpot *_p = ::soap_new_tt__PTZPresetTourSpot(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSpot::PresetDetail = PresetDetail; - _p->tt__PTZPresetTourSpot::Speed = Speed; - _p->tt__PTZPresetTourSpot::StayTime = StayTime; - _p->tt__PTZPresetTourSpot::Extension = Extension; - _p->tt__PTZPresetTourSpot::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourSpot(struct soap *soap, tt__PTZPresetTourSpot const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourSpot", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpot ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourSpot(struct soap *soap, const char *URL, tt__PTZPresetTourSpot 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, "tt:PTZPresetTourSpot", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpot ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourSpot(struct soap *soap, const char *URL, tt__PTZPresetTourSpot 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, "tt:PTZPresetTourSpot", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpot ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourSpot(struct soap *soap, const char *URL, tt__PTZPresetTourSpot 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, "tt:PTZPresetTourSpot", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSpot ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourSpot * SOAP_FMAC4 soap_get_tt__PTZPresetTourSpot(struct soap*, tt__PTZPresetTourSpot *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourSpot(struct soap *soap, tt__PTZPresetTourSpot *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourSpot(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourSpot(struct soap *soap, const char *URL, tt__PTZPresetTourSpot *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourSpot(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourSpot(struct soap *soap, tt__PTZPresetTourSpot *p) -{ - if (::soap_read_tt__PTZPresetTourSpot(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourExtension(struct soap*, const char*, int, const tt__PTZPresetTourExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourExtension(struct soap*, const char*, tt__PTZPresetTourExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourExtension * soap_new_tt__PTZPresetTourExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourExtension * soap_new_req_tt__PTZPresetTourExtension( - struct soap *soap) -{ - tt__PTZPresetTourExtension *_p = ::soap_new_tt__PTZPresetTourExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourExtension * soap_new_set_tt__PTZPresetTourExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourExtension *_p = ::soap_new_tt__PTZPresetTourExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourExtension(struct soap *soap, tt__PTZPresetTourExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourExtension(struct soap *soap, const char *URL, tt__PTZPresetTourExtension 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, "tt:PTZPresetTourExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourExtension(struct soap *soap, const char *URL, tt__PTZPresetTourExtension 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, "tt:PTZPresetTourExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourExtension(struct soap *soap, const char *URL, tt__PTZPresetTourExtension 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, "tt:PTZPresetTourExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourExtension(struct soap*, tt__PTZPresetTourExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourExtension(struct soap *soap, tt__PTZPresetTourExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourExtension(struct soap *soap, const char *URL, tt__PTZPresetTourExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourExtension(struct soap *soap, tt__PTZPresetTourExtension *p) -{ - if (::soap_read_tt__PTZPresetTourExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PresetTour_DEFINED -#define SOAP_TYPE_tt__PresetTour_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PresetTour(struct soap*, const char*, int, const tt__PresetTour *, const char*); -SOAP_FMAC3 tt__PresetTour * SOAP_FMAC4 soap_in_tt__PresetTour(struct soap*, const char*, tt__PresetTour *, const char*); -SOAP_FMAC1 tt__PresetTour * SOAP_FMAC2 soap_instantiate_tt__PresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PresetTour * soap_new_tt__PresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PresetTour(soap, n, NULL, NULL, NULL); -} - -inline tt__PresetTour * soap_new_req_tt__PresetTour( - struct soap *soap, - tt__PTZPresetTourStatus *Status, - bool AutoStart, - tt__PTZPresetTourStartingCondition *StartingCondition) -{ - tt__PresetTour *_p = ::soap_new_tt__PresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PresetTour::Status = Status; - _p->tt__PresetTour::AutoStart = AutoStart; - _p->tt__PresetTour::StartingCondition = StartingCondition; - } - return _p; -} - -inline tt__PresetTour * soap_new_set_tt__PresetTour( - struct soap *soap, - std::string *Name, - tt__PTZPresetTourStatus *Status, - bool AutoStart, - tt__PTZPresetTourStartingCondition *StartingCondition, - const std::vector & TourSpot, - tt__PTZPresetTourExtension *Extension, - std::string *token, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PresetTour *_p = ::soap_new_tt__PresetTour(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PresetTour::Name = Name; - _p->tt__PresetTour::Status = Status; - _p->tt__PresetTour::AutoStart = AutoStart; - _p->tt__PresetTour::StartingCondition = StartingCondition; - _p->tt__PresetTour::TourSpot = TourSpot; - _p->tt__PresetTour::Extension = Extension; - _p->tt__PresetTour::token = token; - _p->tt__PresetTour::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PresetTour(struct soap *soap, tt__PresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PresetTour", p->soap_type() == SOAP_TYPE_tt__PresetTour ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PresetTour(struct soap *soap, const char *URL, tt__PresetTour 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, "tt:PresetTour", p->soap_type() == SOAP_TYPE_tt__PresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PresetTour(struct soap *soap, const char *URL, tt__PresetTour 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, "tt:PresetTour", p->soap_type() == SOAP_TYPE_tt__PresetTour ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PresetTour(struct soap *soap, const char *URL, tt__PresetTour 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, "tt:PresetTour", p->soap_type() == SOAP_TYPE_tt__PresetTour ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PresetTour * SOAP_FMAC4 soap_get_tt__PresetTour(struct soap*, tt__PresetTour *, const char*, const char*); - -inline int soap_read_tt__PresetTour(struct soap *soap, tt__PresetTour *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PresetTour(struct soap *soap, const char *URL, tt__PresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PresetTour(struct soap *soap, tt__PresetTour *p) -{ - if (::soap_read_tt__PresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPreset_DEFINED -#define SOAP_TYPE_tt__PTZPreset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPreset(struct soap*, const char*, int, const tt__PTZPreset *, const char*); -SOAP_FMAC3 tt__PTZPreset * SOAP_FMAC4 soap_in_tt__PTZPreset(struct soap*, const char*, tt__PTZPreset *, const char*); -SOAP_FMAC1 tt__PTZPreset * SOAP_FMAC2 soap_instantiate_tt__PTZPreset(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPreset * soap_new_tt__PTZPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPreset(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPreset * soap_new_req_tt__PTZPreset( - struct soap *soap) -{ - tt__PTZPreset *_p = ::soap_new_tt__PTZPreset(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPreset * soap_new_set_tt__PTZPreset( - struct soap *soap, - std::string *Name, - tt__PTZVector *PTZPosition, - std::string *token, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPreset *_p = ::soap_new_tt__PTZPreset(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPreset::Name = Name; - _p->tt__PTZPreset::PTZPosition = PTZPosition; - _p->tt__PTZPreset::token = token; - _p->tt__PTZPreset::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPreset(struct soap *soap, tt__PTZPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPreset", p->soap_type() == SOAP_TYPE_tt__PTZPreset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPreset(struct soap *soap, const char *URL, tt__PTZPreset 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, "tt:PTZPreset", p->soap_type() == SOAP_TYPE_tt__PTZPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPreset(struct soap *soap, const char *URL, tt__PTZPreset 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, "tt:PTZPreset", p->soap_type() == SOAP_TYPE_tt__PTZPreset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPreset(struct soap *soap, const char *URL, tt__PTZPreset 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, "tt:PTZPreset", p->soap_type() == SOAP_TYPE_tt__PTZPreset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPreset * SOAP_FMAC4 soap_get_tt__PTZPreset(struct soap*, tt__PTZPreset *, const char*, const char*); - -inline int soap_read_tt__PTZPreset(struct soap *soap, tt__PTZPreset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPreset(struct soap *soap, const char *URL, tt__PTZPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPreset(struct soap *soap, tt__PTZPreset *p) -{ - if (::soap_read_tt__PTZPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZSpeed_DEFINED -#define SOAP_TYPE_tt__PTZSpeed_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZSpeed(struct soap*, const char*, int, const tt__PTZSpeed *, const char*); -SOAP_FMAC3 tt__PTZSpeed * SOAP_FMAC4 soap_in_tt__PTZSpeed(struct soap*, const char*, tt__PTZSpeed *, const char*); -SOAP_FMAC1 tt__PTZSpeed * SOAP_FMAC2 soap_instantiate_tt__PTZSpeed(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZSpeed * soap_new_tt__PTZSpeed(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZSpeed(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZSpeed * soap_new_req_tt__PTZSpeed( - struct soap *soap) -{ - tt__PTZSpeed *_p = ::soap_new_tt__PTZSpeed(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZSpeed * soap_new_set_tt__PTZSpeed( - struct soap *soap, - tt__Vector2D *PanTilt, - tt__Vector1D *Zoom) -{ - tt__PTZSpeed *_p = ::soap_new_tt__PTZSpeed(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZSpeed::PanTilt = PanTilt; - _p->tt__PTZSpeed::Zoom = Zoom; - } - return _p; -} - -inline int soap_write_tt__PTZSpeed(struct soap *soap, tt__PTZSpeed const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZSpeed", p->soap_type() == SOAP_TYPE_tt__PTZSpeed ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZSpeed(struct soap *soap, const char *URL, tt__PTZSpeed 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, "tt:PTZSpeed", p->soap_type() == SOAP_TYPE_tt__PTZSpeed ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZSpeed(struct soap *soap, const char *URL, tt__PTZSpeed 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, "tt:PTZSpeed", p->soap_type() == SOAP_TYPE_tt__PTZSpeed ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZSpeed(struct soap *soap, const char *URL, tt__PTZSpeed 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, "tt:PTZSpeed", p->soap_type() == SOAP_TYPE_tt__PTZSpeed ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZSpeed * SOAP_FMAC4 soap_get_tt__PTZSpeed(struct soap*, tt__PTZSpeed *, const char*, const char*); - -inline int soap_read_tt__PTZSpeed(struct soap *soap, tt__PTZSpeed *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZSpeed(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZSpeed(struct soap *soap, const char *URL, tt__PTZSpeed *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZSpeed(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZSpeed(struct soap *soap, tt__PTZSpeed *p) -{ - if (::soap_read_tt__PTZSpeed(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Space1DDescription_DEFINED -#define SOAP_TYPE_tt__Space1DDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Space1DDescription(struct soap*, const char*, int, const tt__Space1DDescription *, const char*); -SOAP_FMAC3 tt__Space1DDescription * SOAP_FMAC4 soap_in_tt__Space1DDescription(struct soap*, const char*, tt__Space1DDescription *, const char*); -SOAP_FMAC1 tt__Space1DDescription * SOAP_FMAC2 soap_instantiate_tt__Space1DDescription(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Space1DDescription * soap_new_tt__Space1DDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Space1DDescription(soap, n, NULL, NULL, NULL); -} - -inline tt__Space1DDescription * soap_new_req_tt__Space1DDescription( - struct soap *soap, - const std::string& URI, - tt__FloatRange *XRange) -{ - tt__Space1DDescription *_p = ::soap_new_tt__Space1DDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Space1DDescription::URI = URI; - _p->tt__Space1DDescription::XRange = XRange; - } - return _p; -} - -inline tt__Space1DDescription * soap_new_set_tt__Space1DDescription( - struct soap *soap, - const std::string& URI, - tt__FloatRange *XRange) -{ - tt__Space1DDescription *_p = ::soap_new_tt__Space1DDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Space1DDescription::URI = URI; - _p->tt__Space1DDescription::XRange = XRange; - } - return _p; -} - -inline int soap_write_tt__Space1DDescription(struct soap *soap, tt__Space1DDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Space1DDescription", p->soap_type() == SOAP_TYPE_tt__Space1DDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Space1DDescription(struct soap *soap, const char *URL, tt__Space1DDescription 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, "tt:Space1DDescription", p->soap_type() == SOAP_TYPE_tt__Space1DDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Space1DDescription(struct soap *soap, const char *URL, tt__Space1DDescription 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, "tt:Space1DDescription", p->soap_type() == SOAP_TYPE_tt__Space1DDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Space1DDescription(struct soap *soap, const char *URL, tt__Space1DDescription 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, "tt:Space1DDescription", p->soap_type() == SOAP_TYPE_tt__Space1DDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Space1DDescription * SOAP_FMAC4 soap_get_tt__Space1DDescription(struct soap*, tt__Space1DDescription *, const char*, const char*); - -inline int soap_read_tt__Space1DDescription(struct soap *soap, tt__Space1DDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Space1DDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Space1DDescription(struct soap *soap, const char *URL, tt__Space1DDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Space1DDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Space1DDescription(struct soap *soap, tt__Space1DDescription *p) -{ - if (::soap_read_tt__Space1DDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Space2DDescription_DEFINED -#define SOAP_TYPE_tt__Space2DDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Space2DDescription(struct soap*, const char*, int, const tt__Space2DDescription *, const char*); -SOAP_FMAC3 tt__Space2DDescription * SOAP_FMAC4 soap_in_tt__Space2DDescription(struct soap*, const char*, tt__Space2DDescription *, const char*); -SOAP_FMAC1 tt__Space2DDescription * SOAP_FMAC2 soap_instantiate_tt__Space2DDescription(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Space2DDescription * soap_new_tt__Space2DDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Space2DDescription(soap, n, NULL, NULL, NULL); -} - -inline tt__Space2DDescription * soap_new_req_tt__Space2DDescription( - struct soap *soap, - const std::string& URI, - tt__FloatRange *XRange, - tt__FloatRange *YRange) -{ - tt__Space2DDescription *_p = ::soap_new_tt__Space2DDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Space2DDescription::URI = URI; - _p->tt__Space2DDescription::XRange = XRange; - _p->tt__Space2DDescription::YRange = YRange; - } - return _p; -} - -inline tt__Space2DDescription * soap_new_set_tt__Space2DDescription( - struct soap *soap, - const std::string& URI, - tt__FloatRange *XRange, - tt__FloatRange *YRange) -{ - tt__Space2DDescription *_p = ::soap_new_tt__Space2DDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Space2DDescription::URI = URI; - _p->tt__Space2DDescription::XRange = XRange; - _p->tt__Space2DDescription::YRange = YRange; - } - return _p; -} - -inline int soap_write_tt__Space2DDescription(struct soap *soap, tt__Space2DDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Space2DDescription", p->soap_type() == SOAP_TYPE_tt__Space2DDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Space2DDescription(struct soap *soap, const char *URL, tt__Space2DDescription 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, "tt:Space2DDescription", p->soap_type() == SOAP_TYPE_tt__Space2DDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Space2DDescription(struct soap *soap, const char *URL, tt__Space2DDescription 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, "tt:Space2DDescription", p->soap_type() == SOAP_TYPE_tt__Space2DDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Space2DDescription(struct soap *soap, const char *URL, tt__Space2DDescription 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, "tt:Space2DDescription", p->soap_type() == SOAP_TYPE_tt__Space2DDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Space2DDescription * SOAP_FMAC4 soap_get_tt__Space2DDescription(struct soap*, tt__Space2DDescription *, const char*, const char*); - -inline int soap_read_tt__Space2DDescription(struct soap *soap, tt__Space2DDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Space2DDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Space2DDescription(struct soap *soap, const char *URL, tt__Space2DDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Space2DDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Space2DDescription(struct soap *soap, tt__Space2DDescription *p) -{ - if (::soap_read_tt__Space2DDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZSpacesExtension_DEFINED -#define SOAP_TYPE_tt__PTZSpacesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZSpacesExtension(struct soap*, const char*, int, const tt__PTZSpacesExtension *, const char*); -SOAP_FMAC3 tt__PTZSpacesExtension * SOAP_FMAC4 soap_in_tt__PTZSpacesExtension(struct soap*, const char*, tt__PTZSpacesExtension *, const char*); -SOAP_FMAC1 tt__PTZSpacesExtension * SOAP_FMAC2 soap_instantiate_tt__PTZSpacesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZSpacesExtension * soap_new_tt__PTZSpacesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZSpacesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZSpacesExtension * soap_new_req_tt__PTZSpacesExtension( - struct soap *soap) -{ - tt__PTZSpacesExtension *_p = ::soap_new_tt__PTZSpacesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZSpacesExtension * soap_new_set_tt__PTZSpacesExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZSpacesExtension *_p = ::soap_new_tt__PTZSpacesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZSpacesExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZSpacesExtension(struct soap *soap, tt__PTZSpacesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZSpacesExtension", p->soap_type() == SOAP_TYPE_tt__PTZSpacesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZSpacesExtension(struct soap *soap, const char *URL, tt__PTZSpacesExtension 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, "tt:PTZSpacesExtension", p->soap_type() == SOAP_TYPE_tt__PTZSpacesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZSpacesExtension(struct soap *soap, const char *URL, tt__PTZSpacesExtension 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, "tt:PTZSpacesExtension", p->soap_type() == SOAP_TYPE_tt__PTZSpacesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZSpacesExtension(struct soap *soap, const char *URL, tt__PTZSpacesExtension 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, "tt:PTZSpacesExtension", p->soap_type() == SOAP_TYPE_tt__PTZSpacesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZSpacesExtension * SOAP_FMAC4 soap_get_tt__PTZSpacesExtension(struct soap*, tt__PTZSpacesExtension *, const char*, const char*); - -inline int soap_read_tt__PTZSpacesExtension(struct soap *soap, tt__PTZSpacesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZSpacesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZSpacesExtension(struct soap *soap, const char *URL, tt__PTZSpacesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZSpacesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZSpacesExtension(struct soap *soap, tt__PTZSpacesExtension *p) -{ - if (::soap_read_tt__PTZSpacesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZSpaces_DEFINED -#define SOAP_TYPE_tt__PTZSpaces_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZSpaces(struct soap*, const char*, int, const tt__PTZSpaces *, const char*); -SOAP_FMAC3 tt__PTZSpaces * SOAP_FMAC4 soap_in_tt__PTZSpaces(struct soap*, const char*, tt__PTZSpaces *, const char*); -SOAP_FMAC1 tt__PTZSpaces * SOAP_FMAC2 soap_instantiate_tt__PTZSpaces(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZSpaces * soap_new_tt__PTZSpaces(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZSpaces(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZSpaces * soap_new_req_tt__PTZSpaces( - struct soap *soap) -{ - tt__PTZSpaces *_p = ::soap_new_tt__PTZSpaces(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZSpaces * soap_new_set_tt__PTZSpaces( - struct soap *soap, - const std::vector & AbsolutePanTiltPositionSpace, - const std::vector & AbsoluteZoomPositionSpace, - const std::vector & RelativePanTiltTranslationSpace, - const std::vector & RelativeZoomTranslationSpace, - const std::vector & ContinuousPanTiltVelocitySpace, - const std::vector & ContinuousZoomVelocitySpace, - const std::vector & PanTiltSpeedSpace, - const std::vector & ZoomSpeedSpace, - tt__PTZSpacesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZSpaces *_p = ::soap_new_tt__PTZSpaces(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZSpaces::AbsolutePanTiltPositionSpace = AbsolutePanTiltPositionSpace; - _p->tt__PTZSpaces::AbsoluteZoomPositionSpace = AbsoluteZoomPositionSpace; - _p->tt__PTZSpaces::RelativePanTiltTranslationSpace = RelativePanTiltTranslationSpace; - _p->tt__PTZSpaces::RelativeZoomTranslationSpace = RelativeZoomTranslationSpace; - _p->tt__PTZSpaces::ContinuousPanTiltVelocitySpace = ContinuousPanTiltVelocitySpace; - _p->tt__PTZSpaces::ContinuousZoomVelocitySpace = ContinuousZoomVelocitySpace; - _p->tt__PTZSpaces::PanTiltSpeedSpace = PanTiltSpeedSpace; - _p->tt__PTZSpaces::ZoomSpeedSpace = ZoomSpeedSpace; - _p->tt__PTZSpaces::Extension = Extension; - _p->tt__PTZSpaces::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZSpaces(struct soap *soap, tt__PTZSpaces const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZSpaces", p->soap_type() == SOAP_TYPE_tt__PTZSpaces ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZSpaces(struct soap *soap, const char *URL, tt__PTZSpaces 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, "tt:PTZSpaces", p->soap_type() == SOAP_TYPE_tt__PTZSpaces ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZSpaces(struct soap *soap, const char *URL, tt__PTZSpaces 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, "tt:PTZSpaces", p->soap_type() == SOAP_TYPE_tt__PTZSpaces ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZSpaces(struct soap *soap, const char *URL, tt__PTZSpaces 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, "tt:PTZSpaces", p->soap_type() == SOAP_TYPE_tt__PTZSpaces ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZSpaces * SOAP_FMAC4 soap_get_tt__PTZSpaces(struct soap*, tt__PTZSpaces *, const char*, const char*); - -inline int soap_read_tt__PTZSpaces(struct soap *soap, tt__PTZSpaces *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZSpaces(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZSpaces(struct soap *soap, const char *URL, tt__PTZSpaces *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZSpaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZSpaces(struct soap *soap, tt__PTZSpaces *p) -{ - if (::soap_read_tt__PTZSpaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ZoomLimits_DEFINED -#define SOAP_TYPE_tt__ZoomLimits_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ZoomLimits(struct soap*, const char*, int, const tt__ZoomLimits *, const char*); -SOAP_FMAC3 tt__ZoomLimits * SOAP_FMAC4 soap_in_tt__ZoomLimits(struct soap*, const char*, tt__ZoomLimits *, const char*); -SOAP_FMAC1 tt__ZoomLimits * SOAP_FMAC2 soap_instantiate_tt__ZoomLimits(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ZoomLimits * soap_new_tt__ZoomLimits(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ZoomLimits(soap, n, NULL, NULL, NULL); -} - -inline tt__ZoomLimits * soap_new_req_tt__ZoomLimits( - struct soap *soap, - tt__Space1DDescription *Range) -{ - tt__ZoomLimits *_p = ::soap_new_tt__ZoomLimits(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ZoomLimits::Range = Range; - } - return _p; -} - -inline tt__ZoomLimits * soap_new_set_tt__ZoomLimits( - struct soap *soap, - tt__Space1DDescription *Range) -{ - tt__ZoomLimits *_p = ::soap_new_tt__ZoomLimits(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ZoomLimits::Range = Range; - } - return _p; -} - -inline int soap_write_tt__ZoomLimits(struct soap *soap, tt__ZoomLimits const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ZoomLimits", p->soap_type() == SOAP_TYPE_tt__ZoomLimits ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ZoomLimits(struct soap *soap, const char *URL, tt__ZoomLimits 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, "tt:ZoomLimits", p->soap_type() == SOAP_TYPE_tt__ZoomLimits ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ZoomLimits(struct soap *soap, const char *URL, tt__ZoomLimits 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, "tt:ZoomLimits", p->soap_type() == SOAP_TYPE_tt__ZoomLimits ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ZoomLimits(struct soap *soap, const char *URL, tt__ZoomLimits 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, "tt:ZoomLimits", p->soap_type() == SOAP_TYPE_tt__ZoomLimits ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ZoomLimits * SOAP_FMAC4 soap_get_tt__ZoomLimits(struct soap*, tt__ZoomLimits *, const char*, const char*); - -inline int soap_read_tt__ZoomLimits(struct soap *soap, tt__ZoomLimits *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ZoomLimits(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ZoomLimits(struct soap *soap, const char *URL, tt__ZoomLimits *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ZoomLimits(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ZoomLimits(struct soap *soap, tt__ZoomLimits *p) -{ - if (::soap_read_tt__ZoomLimits(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PanTiltLimits_DEFINED -#define SOAP_TYPE_tt__PanTiltLimits_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PanTiltLimits(struct soap*, const char*, int, const tt__PanTiltLimits *, const char*); -SOAP_FMAC3 tt__PanTiltLimits * SOAP_FMAC4 soap_in_tt__PanTiltLimits(struct soap*, const char*, tt__PanTiltLimits *, const char*); -SOAP_FMAC1 tt__PanTiltLimits * SOAP_FMAC2 soap_instantiate_tt__PanTiltLimits(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PanTiltLimits * soap_new_tt__PanTiltLimits(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PanTiltLimits(soap, n, NULL, NULL, NULL); -} - -inline tt__PanTiltLimits * soap_new_req_tt__PanTiltLimits( - struct soap *soap, - tt__Space2DDescription *Range) -{ - tt__PanTiltLimits *_p = ::soap_new_tt__PanTiltLimits(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PanTiltLimits::Range = Range; - } - return _p; -} - -inline tt__PanTiltLimits * soap_new_set_tt__PanTiltLimits( - struct soap *soap, - tt__Space2DDescription *Range) -{ - tt__PanTiltLimits *_p = ::soap_new_tt__PanTiltLimits(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PanTiltLimits::Range = Range; - } - return _p; -} - -inline int soap_write_tt__PanTiltLimits(struct soap *soap, tt__PanTiltLimits const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PanTiltLimits", p->soap_type() == SOAP_TYPE_tt__PanTiltLimits ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PanTiltLimits(struct soap *soap, const char *URL, tt__PanTiltLimits 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, "tt:PanTiltLimits", p->soap_type() == SOAP_TYPE_tt__PanTiltLimits ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PanTiltLimits(struct soap *soap, const char *URL, tt__PanTiltLimits 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, "tt:PanTiltLimits", p->soap_type() == SOAP_TYPE_tt__PanTiltLimits ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PanTiltLimits(struct soap *soap, const char *URL, tt__PanTiltLimits 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, "tt:PanTiltLimits", p->soap_type() == SOAP_TYPE_tt__PanTiltLimits ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PanTiltLimits * SOAP_FMAC4 soap_get_tt__PanTiltLimits(struct soap*, tt__PanTiltLimits *, const char*, const char*); - -inline int soap_read_tt__PanTiltLimits(struct soap *soap, tt__PanTiltLimits *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PanTiltLimits(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PanTiltLimits(struct soap *soap, const char *URL, tt__PanTiltLimits *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PanTiltLimits(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PanTiltLimits(struct soap *soap, tt__PanTiltLimits *p) -{ - if (::soap_read_tt__PanTiltLimits(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReverseOptionsExtension_DEFINED -#define SOAP_TYPE_tt__ReverseOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseOptionsExtension(struct soap*, const char*, int, const tt__ReverseOptionsExtension *, const char*); -SOAP_FMAC3 tt__ReverseOptionsExtension * SOAP_FMAC4 soap_in_tt__ReverseOptionsExtension(struct soap*, const char*, tt__ReverseOptionsExtension *, const char*); -SOAP_FMAC1 tt__ReverseOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__ReverseOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReverseOptionsExtension * soap_new_tt__ReverseOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReverseOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ReverseOptionsExtension * soap_new_req_tt__ReverseOptionsExtension( - struct soap *soap) -{ - tt__ReverseOptionsExtension *_p = ::soap_new_tt__ReverseOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ReverseOptionsExtension * soap_new_set_tt__ReverseOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__ReverseOptionsExtension *_p = ::soap_new_tt__ReverseOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReverseOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ReverseOptionsExtension(struct soap *soap, tt__ReverseOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReverseOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ReverseOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReverseOptionsExtension(struct soap *soap, const char *URL, tt__ReverseOptionsExtension 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, "tt:ReverseOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ReverseOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReverseOptionsExtension(struct soap *soap, const char *URL, tt__ReverseOptionsExtension 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, "tt:ReverseOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ReverseOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReverseOptionsExtension(struct soap *soap, const char *URL, tt__ReverseOptionsExtension 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, "tt:ReverseOptionsExtension", p->soap_type() == SOAP_TYPE_tt__ReverseOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReverseOptionsExtension * SOAP_FMAC4 soap_get_tt__ReverseOptionsExtension(struct soap*, tt__ReverseOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__ReverseOptionsExtension(struct soap *soap, tt__ReverseOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReverseOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReverseOptionsExtension(struct soap *soap, const char *URL, tt__ReverseOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReverseOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReverseOptionsExtension(struct soap *soap, tt__ReverseOptionsExtension *p) -{ - if (::soap_read_tt__ReverseOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReverseOptions_DEFINED -#define SOAP_TYPE_tt__ReverseOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReverseOptions(struct soap*, const char*, int, const tt__ReverseOptions *, const char*); -SOAP_FMAC3 tt__ReverseOptions * SOAP_FMAC4 soap_in_tt__ReverseOptions(struct soap*, const char*, tt__ReverseOptions *, const char*); -SOAP_FMAC1 tt__ReverseOptions * SOAP_FMAC2 soap_instantiate_tt__ReverseOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReverseOptions * soap_new_tt__ReverseOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReverseOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__ReverseOptions * soap_new_req_tt__ReverseOptions( - struct soap *soap) -{ - tt__ReverseOptions *_p = ::soap_new_tt__ReverseOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ReverseOptions * soap_new_set_tt__ReverseOptions( - struct soap *soap, - const std::vector & Mode, - tt__ReverseOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ReverseOptions *_p = ::soap_new_tt__ReverseOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReverseOptions::Mode = Mode; - _p->tt__ReverseOptions::Extension = Extension; - _p->tt__ReverseOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ReverseOptions(struct soap *soap, tt__ReverseOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReverseOptions", p->soap_type() == SOAP_TYPE_tt__ReverseOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReverseOptions(struct soap *soap, const char *URL, tt__ReverseOptions 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, "tt:ReverseOptions", p->soap_type() == SOAP_TYPE_tt__ReverseOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReverseOptions(struct soap *soap, const char *URL, tt__ReverseOptions 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, "tt:ReverseOptions", p->soap_type() == SOAP_TYPE_tt__ReverseOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReverseOptions(struct soap *soap, const char *URL, tt__ReverseOptions 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, "tt:ReverseOptions", p->soap_type() == SOAP_TYPE_tt__ReverseOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReverseOptions * SOAP_FMAC4 soap_get_tt__ReverseOptions(struct soap*, tt__ReverseOptions *, const char*, const char*); - -inline int soap_read_tt__ReverseOptions(struct soap *soap, tt__ReverseOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReverseOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReverseOptions(struct soap *soap, const char *URL, tt__ReverseOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReverseOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReverseOptions(struct soap *soap, tt__ReverseOptions *p) -{ - if (::soap_read_tt__ReverseOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EFlipOptionsExtension_DEFINED -#define SOAP_TYPE_tt__EFlipOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipOptionsExtension(struct soap*, const char*, int, const tt__EFlipOptionsExtension *, const char*); -SOAP_FMAC3 tt__EFlipOptionsExtension * SOAP_FMAC4 soap_in_tt__EFlipOptionsExtension(struct soap*, const char*, tt__EFlipOptionsExtension *, const char*); -SOAP_FMAC1 tt__EFlipOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__EFlipOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EFlipOptionsExtension * soap_new_tt__EFlipOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EFlipOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__EFlipOptionsExtension * soap_new_req_tt__EFlipOptionsExtension( - struct soap *soap) -{ - tt__EFlipOptionsExtension *_p = ::soap_new_tt__EFlipOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__EFlipOptionsExtension * soap_new_set_tt__EFlipOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__EFlipOptionsExtension *_p = ::soap_new_tt__EFlipOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EFlipOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__EFlipOptionsExtension(struct soap *soap, tt__EFlipOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EFlipOptionsExtension", p->soap_type() == SOAP_TYPE_tt__EFlipOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EFlipOptionsExtension(struct soap *soap, const char *URL, tt__EFlipOptionsExtension 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, "tt:EFlipOptionsExtension", p->soap_type() == SOAP_TYPE_tt__EFlipOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EFlipOptionsExtension(struct soap *soap, const char *URL, tt__EFlipOptionsExtension 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, "tt:EFlipOptionsExtension", p->soap_type() == SOAP_TYPE_tt__EFlipOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EFlipOptionsExtension(struct soap *soap, const char *URL, tt__EFlipOptionsExtension 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, "tt:EFlipOptionsExtension", p->soap_type() == SOAP_TYPE_tt__EFlipOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EFlipOptionsExtension * SOAP_FMAC4 soap_get_tt__EFlipOptionsExtension(struct soap*, tt__EFlipOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__EFlipOptionsExtension(struct soap *soap, tt__EFlipOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EFlipOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EFlipOptionsExtension(struct soap *soap, const char *URL, tt__EFlipOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EFlipOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EFlipOptionsExtension(struct soap *soap, tt__EFlipOptionsExtension *p) -{ - if (::soap_read_tt__EFlipOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EFlipOptions_DEFINED -#define SOAP_TYPE_tt__EFlipOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlipOptions(struct soap*, const char*, int, const tt__EFlipOptions *, const char*); -SOAP_FMAC3 tt__EFlipOptions * SOAP_FMAC4 soap_in_tt__EFlipOptions(struct soap*, const char*, tt__EFlipOptions *, const char*); -SOAP_FMAC1 tt__EFlipOptions * SOAP_FMAC2 soap_instantiate_tt__EFlipOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EFlipOptions * soap_new_tt__EFlipOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EFlipOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__EFlipOptions * soap_new_req_tt__EFlipOptions( - struct soap *soap) -{ - tt__EFlipOptions *_p = ::soap_new_tt__EFlipOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__EFlipOptions * soap_new_set_tt__EFlipOptions( - struct soap *soap, - const std::vector & Mode, - tt__EFlipOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__EFlipOptions *_p = ::soap_new_tt__EFlipOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EFlipOptions::Mode = Mode; - _p->tt__EFlipOptions::Extension = Extension; - _p->tt__EFlipOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__EFlipOptions(struct soap *soap, tt__EFlipOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EFlipOptions", p->soap_type() == SOAP_TYPE_tt__EFlipOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EFlipOptions(struct soap *soap, const char *URL, tt__EFlipOptions 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, "tt:EFlipOptions", p->soap_type() == SOAP_TYPE_tt__EFlipOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EFlipOptions(struct soap *soap, const char *URL, tt__EFlipOptions 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, "tt:EFlipOptions", p->soap_type() == SOAP_TYPE_tt__EFlipOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EFlipOptions(struct soap *soap, const char *URL, tt__EFlipOptions 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, "tt:EFlipOptions", p->soap_type() == SOAP_TYPE_tt__EFlipOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EFlipOptions * SOAP_FMAC4 soap_get_tt__EFlipOptions(struct soap*, tt__EFlipOptions *, const char*, const char*); - -inline int soap_read_tt__EFlipOptions(struct soap *soap, tt__EFlipOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EFlipOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EFlipOptions(struct soap *soap, const char *URL, tt__EFlipOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EFlipOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EFlipOptions(struct soap *soap, tt__EFlipOptions *p) -{ - if (::soap_read_tt__EFlipOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTControlDirectionOptionsExtension_DEFINED -#define SOAP_TYPE_tt__PTControlDirectionOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirectionOptionsExtension(struct soap*, const char*, int, const tt__PTControlDirectionOptionsExtension *, const char*); -SOAP_FMAC3 tt__PTControlDirectionOptionsExtension * SOAP_FMAC4 soap_in_tt__PTControlDirectionOptionsExtension(struct soap*, const char*, tt__PTControlDirectionOptionsExtension *, const char*); -SOAP_FMAC1 tt__PTControlDirectionOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTControlDirectionOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTControlDirectionOptionsExtension * soap_new_tt__PTControlDirectionOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTControlDirectionOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTControlDirectionOptionsExtension * soap_new_req_tt__PTControlDirectionOptionsExtension( - struct soap *soap) -{ - tt__PTControlDirectionOptionsExtension *_p = ::soap_new_tt__PTControlDirectionOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTControlDirectionOptionsExtension * soap_new_set_tt__PTControlDirectionOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTControlDirectionOptionsExtension *_p = ::soap_new_tt__PTControlDirectionOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTControlDirectionOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTControlDirectionOptionsExtension(struct soap *soap, tt__PTControlDirectionOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTControlDirectionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTControlDirectionOptionsExtension(struct soap *soap, const char *URL, tt__PTControlDirectionOptionsExtension 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, "tt:PTControlDirectionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTControlDirectionOptionsExtension(struct soap *soap, const char *URL, tt__PTControlDirectionOptionsExtension 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, "tt:PTControlDirectionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTControlDirectionOptionsExtension(struct soap *soap, const char *URL, tt__PTControlDirectionOptionsExtension 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, "tt:PTControlDirectionOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTControlDirectionOptionsExtension * SOAP_FMAC4 soap_get_tt__PTControlDirectionOptionsExtension(struct soap*, tt__PTControlDirectionOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__PTControlDirectionOptionsExtension(struct soap *soap, tt__PTControlDirectionOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTControlDirectionOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTControlDirectionOptionsExtension(struct soap *soap, const char *URL, tt__PTControlDirectionOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTControlDirectionOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTControlDirectionOptionsExtension(struct soap *soap, tt__PTControlDirectionOptionsExtension *p) -{ - if (::soap_read_tt__PTControlDirectionOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTControlDirectionOptions_DEFINED -#define SOAP_TYPE_tt__PTControlDirectionOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirectionOptions(struct soap*, const char*, int, const tt__PTControlDirectionOptions *, const char*); -SOAP_FMAC3 tt__PTControlDirectionOptions * SOAP_FMAC4 soap_in_tt__PTControlDirectionOptions(struct soap*, const char*, tt__PTControlDirectionOptions *, const char*); -SOAP_FMAC1 tt__PTControlDirectionOptions * SOAP_FMAC2 soap_instantiate_tt__PTControlDirectionOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTControlDirectionOptions * soap_new_tt__PTControlDirectionOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTControlDirectionOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PTControlDirectionOptions * soap_new_req_tt__PTControlDirectionOptions( - struct soap *soap) -{ - tt__PTControlDirectionOptions *_p = ::soap_new_tt__PTControlDirectionOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTControlDirectionOptions * soap_new_set_tt__PTControlDirectionOptions( - struct soap *soap, - tt__EFlipOptions *EFlip, - tt__ReverseOptions *Reverse, - tt__PTControlDirectionOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTControlDirectionOptions *_p = ::soap_new_tt__PTControlDirectionOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTControlDirectionOptions::EFlip = EFlip; - _p->tt__PTControlDirectionOptions::Reverse = Reverse; - _p->tt__PTControlDirectionOptions::Extension = Extension; - _p->tt__PTControlDirectionOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTControlDirectionOptions(struct soap *soap, tt__PTControlDirectionOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTControlDirectionOptions", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTControlDirectionOptions(struct soap *soap, const char *URL, tt__PTControlDirectionOptions 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, "tt:PTControlDirectionOptions", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTControlDirectionOptions(struct soap *soap, const char *URL, tt__PTControlDirectionOptions 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, "tt:PTControlDirectionOptions", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTControlDirectionOptions(struct soap *soap, const char *URL, tt__PTControlDirectionOptions 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, "tt:PTControlDirectionOptions", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTControlDirectionOptions * SOAP_FMAC4 soap_get_tt__PTControlDirectionOptions(struct soap*, tt__PTControlDirectionOptions *, const char*, const char*); - -inline int soap_read_tt__PTControlDirectionOptions(struct soap *soap, tt__PTControlDirectionOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTControlDirectionOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTControlDirectionOptions(struct soap *soap, const char *URL, tt__PTControlDirectionOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTControlDirectionOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTControlDirectionOptions(struct soap *soap, tt__PTControlDirectionOptions *p) -{ - if (::soap_read_tt__PTControlDirectionOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZConfigurationOptions2_DEFINED -#define SOAP_TYPE_tt__PTZConfigurationOptions2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationOptions2(struct soap*, const char*, int, const tt__PTZConfigurationOptions2 *, const char*); -SOAP_FMAC3 tt__PTZConfigurationOptions2 * SOAP_FMAC4 soap_in_tt__PTZConfigurationOptions2(struct soap*, const char*, tt__PTZConfigurationOptions2 *, const char*); -SOAP_FMAC1 tt__PTZConfigurationOptions2 * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationOptions2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZConfigurationOptions2 * soap_new_tt__PTZConfigurationOptions2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZConfigurationOptions2(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZConfigurationOptions2 * soap_new_req_tt__PTZConfigurationOptions2( - struct soap *soap) -{ - tt__PTZConfigurationOptions2 *_p = ::soap_new_tt__PTZConfigurationOptions2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZConfigurationOptions2 * soap_new_set_tt__PTZConfigurationOptions2( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZConfigurationOptions2 *_p = ::soap_new_tt__PTZConfigurationOptions2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZConfigurationOptions2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZConfigurationOptions2(struct soap *soap, tt__PTZConfigurationOptions2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZConfigurationOptions2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZConfigurationOptions2(struct soap *soap, const char *URL, tt__PTZConfigurationOptions2 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, "tt:PTZConfigurationOptions2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZConfigurationOptions2(struct soap *soap, const char *URL, tt__PTZConfigurationOptions2 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, "tt:PTZConfigurationOptions2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZConfigurationOptions2(struct soap *soap, const char *URL, tt__PTZConfigurationOptions2 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, "tt:PTZConfigurationOptions2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZConfigurationOptions2 * SOAP_FMAC4 soap_get_tt__PTZConfigurationOptions2(struct soap*, tt__PTZConfigurationOptions2 *, const char*, const char*); - -inline int soap_read_tt__PTZConfigurationOptions2(struct soap *soap, tt__PTZConfigurationOptions2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZConfigurationOptions2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZConfigurationOptions2(struct soap *soap, const char *URL, tt__PTZConfigurationOptions2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZConfigurationOptions2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZConfigurationOptions2(struct soap *soap, tt__PTZConfigurationOptions2 *p) -{ - if (::soap_read_tt__PTZConfigurationOptions2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__PTZConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationOptions(struct soap*, const char*, int, const tt__PTZConfigurationOptions *, const char*); -SOAP_FMAC3 tt__PTZConfigurationOptions * SOAP_FMAC4 soap_in_tt__PTZConfigurationOptions(struct soap*, const char*, tt__PTZConfigurationOptions *, const char*); -SOAP_FMAC1 tt__PTZConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZConfigurationOptions * soap_new_tt__PTZConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZConfigurationOptions * soap_new_req_tt__PTZConfigurationOptions( - struct soap *soap, - tt__PTZSpaces *Spaces, - tt__DurationRange *PTZTimeout) -{ - tt__PTZConfigurationOptions *_p = ::soap_new_tt__PTZConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZConfigurationOptions::Spaces = Spaces; - _p->tt__PTZConfigurationOptions::PTZTimeout = PTZTimeout; - } - return _p; -} - -inline tt__PTZConfigurationOptions * soap_new_set_tt__PTZConfigurationOptions( - struct soap *soap, - tt__PTZSpaces *Spaces, - tt__DurationRange *PTZTimeout, - const std::vector & __any, - tt__PTControlDirectionOptions *PTControlDirection, - tt__PTZConfigurationOptions2 *Extension, - std::string *PTZRamps, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZConfigurationOptions *_p = ::soap_new_tt__PTZConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZConfigurationOptions::Spaces = Spaces; - _p->tt__PTZConfigurationOptions::PTZTimeout = PTZTimeout; - _p->tt__PTZConfigurationOptions::__any = __any; - _p->tt__PTZConfigurationOptions::PTControlDirection = PTControlDirection; - _p->tt__PTZConfigurationOptions::Extension = Extension; - _p->tt__PTZConfigurationOptions::PTZRamps = PTZRamps; - _p->tt__PTZConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZConfigurationOptions(struct soap *soap, tt__PTZConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZConfigurationOptions(struct soap *soap, const char *URL, tt__PTZConfigurationOptions 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, "tt:PTZConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZConfigurationOptions(struct soap *soap, const char *URL, tt__PTZConfigurationOptions 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, "tt:PTZConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZConfigurationOptions(struct soap *soap, const char *URL, tt__PTZConfigurationOptions 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, "tt:PTZConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZConfigurationOptions * SOAP_FMAC4 soap_get_tt__PTZConfigurationOptions(struct soap*, tt__PTZConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__PTZConfigurationOptions(struct soap *soap, tt__PTZConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZConfigurationOptions(struct soap *soap, const char *URL, tt__PTZConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZConfigurationOptions(struct soap *soap, tt__PTZConfigurationOptions *p) -{ - if (::soap_read_tt__PTZConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Reverse_DEFINED -#define SOAP_TYPE_tt__Reverse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Reverse(struct soap*, const char*, int, const tt__Reverse *, const char*); -SOAP_FMAC3 tt__Reverse * SOAP_FMAC4 soap_in_tt__Reverse(struct soap*, const char*, tt__Reverse *, const char*); -SOAP_FMAC1 tt__Reverse * SOAP_FMAC2 soap_instantiate_tt__Reverse(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Reverse * soap_new_tt__Reverse(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Reverse(soap, n, NULL, NULL, NULL); -} - -inline tt__Reverse * soap_new_req_tt__Reverse( - struct soap *soap, - enum tt__ReverseMode Mode) -{ - tt__Reverse *_p = ::soap_new_tt__Reverse(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Reverse::Mode = Mode; - } - return _p; -} - -inline tt__Reverse * soap_new_set_tt__Reverse( - struct soap *soap, - enum tt__ReverseMode Mode, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Reverse *_p = ::soap_new_tt__Reverse(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Reverse::Mode = Mode; - _p->tt__Reverse::__any = __any; - _p->tt__Reverse::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Reverse(struct soap *soap, tt__Reverse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Reverse", p->soap_type() == SOAP_TYPE_tt__Reverse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Reverse(struct soap *soap, const char *URL, tt__Reverse 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, "tt:Reverse", p->soap_type() == SOAP_TYPE_tt__Reverse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Reverse(struct soap *soap, const char *URL, tt__Reverse 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, "tt:Reverse", p->soap_type() == SOAP_TYPE_tt__Reverse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Reverse(struct soap *soap, const char *URL, tt__Reverse 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, "tt:Reverse", p->soap_type() == SOAP_TYPE_tt__Reverse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Reverse * SOAP_FMAC4 soap_get_tt__Reverse(struct soap*, tt__Reverse *, const char*, const char*); - -inline int soap_read_tt__Reverse(struct soap *soap, tt__Reverse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Reverse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Reverse(struct soap *soap, const char *URL, tt__Reverse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Reverse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Reverse(struct soap *soap, tt__Reverse *p) -{ - if (::soap_read_tt__Reverse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EFlip_DEFINED -#define SOAP_TYPE_tt__EFlip_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EFlip(struct soap*, const char*, int, const tt__EFlip *, const char*); -SOAP_FMAC3 tt__EFlip * SOAP_FMAC4 soap_in_tt__EFlip(struct soap*, const char*, tt__EFlip *, const char*); -SOAP_FMAC1 tt__EFlip * SOAP_FMAC2 soap_instantiate_tt__EFlip(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EFlip * soap_new_tt__EFlip(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EFlip(soap, n, NULL, NULL, NULL); -} - -inline tt__EFlip * soap_new_req_tt__EFlip( - struct soap *soap, - enum tt__EFlipMode Mode) -{ - tt__EFlip *_p = ::soap_new_tt__EFlip(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EFlip::Mode = Mode; - } - return _p; -} - -inline tt__EFlip * soap_new_set_tt__EFlip( - struct soap *soap, - enum tt__EFlipMode Mode, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__EFlip *_p = ::soap_new_tt__EFlip(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EFlip::Mode = Mode; - _p->tt__EFlip::__any = __any; - _p->tt__EFlip::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__EFlip(struct soap *soap, tt__EFlip const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EFlip", p->soap_type() == SOAP_TYPE_tt__EFlip ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EFlip(struct soap *soap, const char *URL, tt__EFlip 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, "tt:EFlip", p->soap_type() == SOAP_TYPE_tt__EFlip ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EFlip(struct soap *soap, const char *URL, tt__EFlip 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, "tt:EFlip", p->soap_type() == SOAP_TYPE_tt__EFlip ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EFlip(struct soap *soap, const char *URL, tt__EFlip 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, "tt:EFlip", p->soap_type() == SOAP_TYPE_tt__EFlip ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EFlip * SOAP_FMAC4 soap_get_tt__EFlip(struct soap*, tt__EFlip *, const char*, const char*); - -inline int soap_read_tt__EFlip(struct soap *soap, tt__EFlip *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EFlip(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EFlip(struct soap *soap, const char *URL, tt__EFlip *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EFlip(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EFlip(struct soap *soap, tt__EFlip *p) -{ - if (::soap_read_tt__EFlip(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTControlDirectionExtension_DEFINED -#define SOAP_TYPE_tt__PTControlDirectionExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirectionExtension(struct soap*, const char*, int, const tt__PTControlDirectionExtension *, const char*); -SOAP_FMAC3 tt__PTControlDirectionExtension * SOAP_FMAC4 soap_in_tt__PTControlDirectionExtension(struct soap*, const char*, tt__PTControlDirectionExtension *, const char*); -SOAP_FMAC1 tt__PTControlDirectionExtension * SOAP_FMAC2 soap_instantiate_tt__PTControlDirectionExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTControlDirectionExtension * soap_new_tt__PTControlDirectionExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTControlDirectionExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTControlDirectionExtension * soap_new_req_tt__PTControlDirectionExtension( - struct soap *soap) -{ - tt__PTControlDirectionExtension *_p = ::soap_new_tt__PTControlDirectionExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTControlDirectionExtension * soap_new_set_tt__PTControlDirectionExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTControlDirectionExtension *_p = ::soap_new_tt__PTControlDirectionExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTControlDirectionExtension::__any = __any; - _p->tt__PTControlDirectionExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTControlDirectionExtension(struct soap *soap, tt__PTControlDirectionExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTControlDirectionExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTControlDirectionExtension(struct soap *soap, const char *URL, tt__PTControlDirectionExtension 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, "tt:PTControlDirectionExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTControlDirectionExtension(struct soap *soap, const char *URL, tt__PTControlDirectionExtension 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, "tt:PTControlDirectionExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTControlDirectionExtension(struct soap *soap, const char *URL, tt__PTControlDirectionExtension 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, "tt:PTControlDirectionExtension", p->soap_type() == SOAP_TYPE_tt__PTControlDirectionExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTControlDirectionExtension * SOAP_FMAC4 soap_get_tt__PTControlDirectionExtension(struct soap*, tt__PTControlDirectionExtension *, const char*, const char*); - -inline int soap_read_tt__PTControlDirectionExtension(struct soap *soap, tt__PTControlDirectionExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTControlDirectionExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTControlDirectionExtension(struct soap *soap, const char *URL, tt__PTControlDirectionExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTControlDirectionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTControlDirectionExtension(struct soap *soap, tt__PTControlDirectionExtension *p) -{ - if (::soap_read_tt__PTControlDirectionExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTControlDirection_DEFINED -#define SOAP_TYPE_tt__PTControlDirection_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTControlDirection(struct soap*, const char*, int, const tt__PTControlDirection *, const char*); -SOAP_FMAC3 tt__PTControlDirection * SOAP_FMAC4 soap_in_tt__PTControlDirection(struct soap*, const char*, tt__PTControlDirection *, const char*); -SOAP_FMAC1 tt__PTControlDirection * SOAP_FMAC2 soap_instantiate_tt__PTControlDirection(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTControlDirection * soap_new_tt__PTControlDirection(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTControlDirection(soap, n, NULL, NULL, NULL); -} - -inline tt__PTControlDirection * soap_new_req_tt__PTControlDirection( - struct soap *soap) -{ - tt__PTControlDirection *_p = ::soap_new_tt__PTControlDirection(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTControlDirection * soap_new_set_tt__PTControlDirection( - struct soap *soap, - tt__EFlip *EFlip, - tt__Reverse *Reverse, - tt__PTControlDirectionExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTControlDirection *_p = ::soap_new_tt__PTControlDirection(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTControlDirection::EFlip = EFlip; - _p->tt__PTControlDirection::Reverse = Reverse; - _p->tt__PTControlDirection::Extension = Extension; - _p->tt__PTControlDirection::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTControlDirection(struct soap *soap, tt__PTControlDirection const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTControlDirection", p->soap_type() == SOAP_TYPE_tt__PTControlDirection ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTControlDirection(struct soap *soap, const char *URL, tt__PTControlDirection 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, "tt:PTControlDirection", p->soap_type() == SOAP_TYPE_tt__PTControlDirection ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTControlDirection(struct soap *soap, const char *URL, tt__PTControlDirection 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, "tt:PTControlDirection", p->soap_type() == SOAP_TYPE_tt__PTControlDirection ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTControlDirection(struct soap *soap, const char *URL, tt__PTControlDirection 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, "tt:PTControlDirection", p->soap_type() == SOAP_TYPE_tt__PTControlDirection ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTControlDirection * SOAP_FMAC4 soap_get_tt__PTControlDirection(struct soap*, tt__PTControlDirection *, const char*, const char*); - -inline int soap_read_tt__PTControlDirection(struct soap *soap, tt__PTControlDirection *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTControlDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTControlDirection(struct soap *soap, const char *URL, tt__PTControlDirection *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTControlDirection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTControlDirection(struct soap *soap, tt__PTControlDirection *p) -{ - if (::soap_read_tt__PTControlDirection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZConfigurationExtension2_DEFINED -#define SOAP_TYPE_tt__PTZConfigurationExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationExtension2(struct soap*, const char*, int, const tt__PTZConfigurationExtension2 *, const char*); -SOAP_FMAC3 tt__PTZConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__PTZConfigurationExtension2(struct soap*, const char*, tt__PTZConfigurationExtension2 *, const char*); -SOAP_FMAC1 tt__PTZConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZConfigurationExtension2 * soap_new_tt__PTZConfigurationExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZConfigurationExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZConfigurationExtension2 * soap_new_req_tt__PTZConfigurationExtension2( - struct soap *soap) -{ - tt__PTZConfigurationExtension2 *_p = ::soap_new_tt__PTZConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZConfigurationExtension2 * soap_new_set_tt__PTZConfigurationExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZConfigurationExtension2 *_p = ::soap_new_tt__PTZConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZConfigurationExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZConfigurationExtension2(struct soap *soap, tt__PTZConfigurationExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZConfigurationExtension2(struct soap *soap, const char *URL, tt__PTZConfigurationExtension2 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, "tt:PTZConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZConfigurationExtension2(struct soap *soap, const char *URL, tt__PTZConfigurationExtension2 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, "tt:PTZConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZConfigurationExtension2(struct soap *soap, const char *URL, tt__PTZConfigurationExtension2 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, "tt:PTZConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__PTZConfigurationExtension2(struct soap*, tt__PTZConfigurationExtension2 *, const char*, const char*); - -inline int soap_read_tt__PTZConfigurationExtension2(struct soap *soap, tt__PTZConfigurationExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZConfigurationExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZConfigurationExtension2(struct soap *soap, const char *URL, tt__PTZConfigurationExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZConfigurationExtension2(struct soap *soap, tt__PTZConfigurationExtension2 *p) -{ - if (::soap_read_tt__PTZConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__PTZConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfigurationExtension(struct soap*, const char*, int, const tt__PTZConfigurationExtension *, const char*); -SOAP_FMAC3 tt__PTZConfigurationExtension * SOAP_FMAC4 soap_in_tt__PTZConfigurationExtension(struct soap*, const char*, tt__PTZConfigurationExtension *, const char*); -SOAP_FMAC1 tt__PTZConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__PTZConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZConfigurationExtension * soap_new_tt__PTZConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZConfigurationExtension * soap_new_req_tt__PTZConfigurationExtension( - struct soap *soap) -{ - tt__PTZConfigurationExtension *_p = ::soap_new_tt__PTZConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZConfigurationExtension * soap_new_set_tt__PTZConfigurationExtension( - struct soap *soap, - const std::vector & __any, - tt__PTControlDirection *PTControlDirection, - tt__PTZConfigurationExtension2 *Extension) -{ - tt__PTZConfigurationExtension *_p = ::soap_new_tt__PTZConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZConfigurationExtension::__any = __any; - _p->tt__PTZConfigurationExtension::PTControlDirection = PTControlDirection; - _p->tt__PTZConfigurationExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__PTZConfigurationExtension(struct soap *soap, tt__PTZConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZConfigurationExtension(struct soap *soap, const char *URL, tt__PTZConfigurationExtension 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, "tt:PTZConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZConfigurationExtension(struct soap *soap, const char *URL, tt__PTZConfigurationExtension 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, "tt:PTZConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZConfigurationExtension(struct soap *soap, const char *URL, tt__PTZConfigurationExtension 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, "tt:PTZConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__PTZConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZConfigurationExtension * SOAP_FMAC4 soap_get_tt__PTZConfigurationExtension(struct soap*, tt__PTZConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__PTZConfigurationExtension(struct soap *soap, tt__PTZConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZConfigurationExtension(struct soap *soap, const char *URL, tt__PTZConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZConfigurationExtension(struct soap *soap, tt__PTZConfigurationExtension *p) -{ - if (::soap_read_tt__PTZConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZConfiguration_DEFINED -#define SOAP_TYPE_tt__PTZConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZConfiguration(struct soap*, const char*, int, const tt__PTZConfiguration *, const char*); -SOAP_FMAC3 tt__PTZConfiguration * SOAP_FMAC4 soap_in_tt__PTZConfiguration(struct soap*, const char*, tt__PTZConfiguration *, const char*); -SOAP_FMAC1 tt__PTZConfiguration * SOAP_FMAC2 soap_instantiate_tt__PTZConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZConfiguration * soap_new_tt__PTZConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZConfiguration * soap_new_req_tt__PTZConfiguration( - struct soap *soap, - const std::string& NodeToken, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__PTZConfiguration *_p = ::soap_new_tt__PTZConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZConfiguration::NodeToken = NodeToken; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__PTZConfiguration * soap_new_set_tt__PTZConfiguration( - struct soap *soap, - const std::string& NodeToken, - std::string *DefaultAbsolutePantTiltPositionSpace, - std::string *DefaultAbsoluteZoomPositionSpace, - std::string *DefaultRelativePanTiltTranslationSpace, - std::string *DefaultRelativeZoomTranslationSpace, - std::string *DefaultContinuousPanTiltVelocitySpace, - std::string *DefaultContinuousZoomVelocitySpace, - tt__PTZSpeed *DefaultPTZSpeed, - std::string *DefaultPTZTimeout, - tt__PanTiltLimits *PanTiltLimits, - tt__ZoomLimits *ZoomLimits, - tt__PTZConfigurationExtension *Extension, - int *MoveRamp, - int *PresetRamp, - int *PresetTourRamp, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__PTZConfiguration *_p = ::soap_new_tt__PTZConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZConfiguration::NodeToken = NodeToken; - _p->tt__PTZConfiguration::DefaultAbsolutePantTiltPositionSpace = DefaultAbsolutePantTiltPositionSpace; - _p->tt__PTZConfiguration::DefaultAbsoluteZoomPositionSpace = DefaultAbsoluteZoomPositionSpace; - _p->tt__PTZConfiguration::DefaultRelativePanTiltTranslationSpace = DefaultRelativePanTiltTranslationSpace; - _p->tt__PTZConfiguration::DefaultRelativeZoomTranslationSpace = DefaultRelativeZoomTranslationSpace; - _p->tt__PTZConfiguration::DefaultContinuousPanTiltVelocitySpace = DefaultContinuousPanTiltVelocitySpace; - _p->tt__PTZConfiguration::DefaultContinuousZoomVelocitySpace = DefaultContinuousZoomVelocitySpace; - _p->tt__PTZConfiguration::DefaultPTZSpeed = DefaultPTZSpeed; - _p->tt__PTZConfiguration::DefaultPTZTimeout = DefaultPTZTimeout; - _p->tt__PTZConfiguration::PanTiltLimits = PanTiltLimits; - _p->tt__PTZConfiguration::ZoomLimits = ZoomLimits; - _p->tt__PTZConfiguration::Extension = Extension; - _p->tt__PTZConfiguration::MoveRamp = MoveRamp; - _p->tt__PTZConfiguration::PresetRamp = PresetRamp; - _p->tt__PTZConfiguration::PresetTourRamp = PresetTourRamp; - _p->tt__PTZConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__PTZConfiguration(struct soap *soap, tt__PTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZConfiguration", p->soap_type() == SOAP_TYPE_tt__PTZConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZConfiguration(struct soap *soap, const char *URL, tt__PTZConfiguration 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, "tt:PTZConfiguration", p->soap_type() == SOAP_TYPE_tt__PTZConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZConfiguration(struct soap *soap, const char *URL, tt__PTZConfiguration 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, "tt:PTZConfiguration", p->soap_type() == SOAP_TYPE_tt__PTZConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZConfiguration(struct soap *soap, const char *URL, tt__PTZConfiguration 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, "tt:PTZConfiguration", p->soap_type() == SOAP_TYPE_tt__PTZConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZConfiguration * SOAP_FMAC4 soap_get_tt__PTZConfiguration(struct soap*, tt__PTZConfiguration *, const char*, const char*); - -inline int soap_read_tt__PTZConfiguration(struct soap *soap, tt__PTZConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZConfiguration(struct soap *soap, const char *URL, tt__PTZConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZConfiguration(struct soap *soap, tt__PTZConfiguration *p) -{ - if (::soap_read_tt__PTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourSupportedExtension_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourSupportedExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSupportedExtension(struct soap*, const char*, int, const tt__PTZPresetTourSupportedExtension *, const char*); -SOAP_FMAC3 tt__PTZPresetTourSupportedExtension * SOAP_FMAC4 soap_in_tt__PTZPresetTourSupportedExtension(struct soap*, const char*, tt__PTZPresetTourSupportedExtension *, const char*); -SOAP_FMAC1 tt__PTZPresetTourSupportedExtension * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSupportedExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourSupportedExtension * soap_new_tt__PTZPresetTourSupportedExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourSupportedExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourSupportedExtension * soap_new_req_tt__PTZPresetTourSupportedExtension( - struct soap *soap) -{ - tt__PTZPresetTourSupportedExtension *_p = ::soap_new_tt__PTZPresetTourSupportedExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZPresetTourSupportedExtension * soap_new_set_tt__PTZPresetTourSupportedExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZPresetTourSupportedExtension *_p = ::soap_new_tt__PTZPresetTourSupportedExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSupportedExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourSupportedExtension(struct soap *soap, tt__PTZPresetTourSupportedExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourSupportedExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupportedExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourSupportedExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSupportedExtension 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, "tt:PTZPresetTourSupportedExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupportedExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourSupportedExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSupportedExtension 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, "tt:PTZPresetTourSupportedExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupportedExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourSupportedExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSupportedExtension 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, "tt:PTZPresetTourSupportedExtension", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupportedExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourSupportedExtension * SOAP_FMAC4 soap_get_tt__PTZPresetTourSupportedExtension(struct soap*, tt__PTZPresetTourSupportedExtension *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourSupportedExtension(struct soap *soap, tt__PTZPresetTourSupportedExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourSupportedExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourSupportedExtension(struct soap *soap, const char *URL, tt__PTZPresetTourSupportedExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourSupportedExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourSupportedExtension(struct soap *soap, tt__PTZPresetTourSupportedExtension *p) -{ - if (::soap_read_tt__PTZPresetTourSupportedExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZPresetTourSupported_DEFINED -#define SOAP_TYPE_tt__PTZPresetTourSupported_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZPresetTourSupported(struct soap*, const char*, int, const tt__PTZPresetTourSupported *, const char*); -SOAP_FMAC3 tt__PTZPresetTourSupported * SOAP_FMAC4 soap_in_tt__PTZPresetTourSupported(struct soap*, const char*, tt__PTZPresetTourSupported *, const char*); -SOAP_FMAC1 tt__PTZPresetTourSupported * SOAP_FMAC2 soap_instantiate_tt__PTZPresetTourSupported(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZPresetTourSupported * soap_new_tt__PTZPresetTourSupported(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZPresetTourSupported(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZPresetTourSupported * soap_new_req_tt__PTZPresetTourSupported( - struct soap *soap, - int MaximumNumberOfPresetTours) -{ - tt__PTZPresetTourSupported *_p = ::soap_new_tt__PTZPresetTourSupported(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSupported::MaximumNumberOfPresetTours = MaximumNumberOfPresetTours; - } - return _p; -} - -inline tt__PTZPresetTourSupported * soap_new_set_tt__PTZPresetTourSupported( - struct soap *soap, - int MaximumNumberOfPresetTours, - const std::vector & PTZPresetTourOperation, - tt__PTZPresetTourSupportedExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZPresetTourSupported *_p = ::soap_new_tt__PTZPresetTourSupported(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZPresetTourSupported::MaximumNumberOfPresetTours = MaximumNumberOfPresetTours; - _p->tt__PTZPresetTourSupported::PTZPresetTourOperation = PTZPresetTourOperation; - _p->tt__PTZPresetTourSupported::Extension = Extension; - _p->tt__PTZPresetTourSupported::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZPresetTourSupported(struct soap *soap, tt__PTZPresetTourSupported const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZPresetTourSupported", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupported ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZPresetTourSupported(struct soap *soap, const char *URL, tt__PTZPresetTourSupported 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, "tt:PTZPresetTourSupported", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupported ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZPresetTourSupported(struct soap *soap, const char *URL, tt__PTZPresetTourSupported 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, "tt:PTZPresetTourSupported", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupported ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZPresetTourSupported(struct soap *soap, const char *URL, tt__PTZPresetTourSupported 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, "tt:PTZPresetTourSupported", p->soap_type() == SOAP_TYPE_tt__PTZPresetTourSupported ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZPresetTourSupported * SOAP_FMAC4 soap_get_tt__PTZPresetTourSupported(struct soap*, tt__PTZPresetTourSupported *, const char*, const char*); - -inline int soap_read_tt__PTZPresetTourSupported(struct soap *soap, tt__PTZPresetTourSupported *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZPresetTourSupported(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZPresetTourSupported(struct soap *soap, const char *URL, tt__PTZPresetTourSupported *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZPresetTourSupported(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZPresetTourSupported(struct soap *soap, tt__PTZPresetTourSupported *p) -{ - if (::soap_read_tt__PTZPresetTourSupported(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZNodeExtension2_DEFINED -#define SOAP_TYPE_tt__PTZNodeExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZNodeExtension2(struct soap*, const char*, int, const tt__PTZNodeExtension2 *, const char*); -SOAP_FMAC3 tt__PTZNodeExtension2 * SOAP_FMAC4 soap_in_tt__PTZNodeExtension2(struct soap*, const char*, tt__PTZNodeExtension2 *, const char*); -SOAP_FMAC1 tt__PTZNodeExtension2 * SOAP_FMAC2 soap_instantiate_tt__PTZNodeExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZNodeExtension2 * soap_new_tt__PTZNodeExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZNodeExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZNodeExtension2 * soap_new_req_tt__PTZNodeExtension2( - struct soap *soap) -{ - tt__PTZNodeExtension2 *_p = ::soap_new_tt__PTZNodeExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZNodeExtension2 * soap_new_set_tt__PTZNodeExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZNodeExtension2 *_p = ::soap_new_tt__PTZNodeExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZNodeExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZNodeExtension2(struct soap *soap, tt__PTZNodeExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZNodeExtension2", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZNodeExtension2(struct soap *soap, const char *URL, tt__PTZNodeExtension2 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, "tt:PTZNodeExtension2", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZNodeExtension2(struct soap *soap, const char *URL, tt__PTZNodeExtension2 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, "tt:PTZNodeExtension2", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZNodeExtension2(struct soap *soap, const char *URL, tt__PTZNodeExtension2 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, "tt:PTZNodeExtension2", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZNodeExtension2 * SOAP_FMAC4 soap_get_tt__PTZNodeExtension2(struct soap*, tt__PTZNodeExtension2 *, const char*, const char*); - -inline int soap_read_tt__PTZNodeExtension2(struct soap *soap, tt__PTZNodeExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZNodeExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZNodeExtension2(struct soap *soap, const char *URL, tt__PTZNodeExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZNodeExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZNodeExtension2(struct soap *soap, tt__PTZNodeExtension2 *p) -{ - if (::soap_read_tt__PTZNodeExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZNodeExtension_DEFINED -#define SOAP_TYPE_tt__PTZNodeExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZNodeExtension(struct soap*, const char*, int, const tt__PTZNodeExtension *, const char*); -SOAP_FMAC3 tt__PTZNodeExtension * SOAP_FMAC4 soap_in_tt__PTZNodeExtension(struct soap*, const char*, tt__PTZNodeExtension *, const char*); -SOAP_FMAC1 tt__PTZNodeExtension * SOAP_FMAC2 soap_instantiate_tt__PTZNodeExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZNodeExtension * soap_new_tt__PTZNodeExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZNodeExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZNodeExtension * soap_new_req_tt__PTZNodeExtension( - struct soap *soap) -{ - tt__PTZNodeExtension *_p = ::soap_new_tt__PTZNodeExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZNodeExtension * soap_new_set_tt__PTZNodeExtension( - struct soap *soap, - const std::vector & __any, - tt__PTZPresetTourSupported *SupportedPresetTour, - tt__PTZNodeExtension2 *Extension) -{ - tt__PTZNodeExtension *_p = ::soap_new_tt__PTZNodeExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZNodeExtension::__any = __any; - _p->tt__PTZNodeExtension::SupportedPresetTour = SupportedPresetTour; - _p->tt__PTZNodeExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__PTZNodeExtension(struct soap *soap, tt__PTZNodeExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZNodeExtension", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZNodeExtension(struct soap *soap, const char *URL, tt__PTZNodeExtension 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, "tt:PTZNodeExtension", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZNodeExtension(struct soap *soap, const char *URL, tt__PTZNodeExtension 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, "tt:PTZNodeExtension", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZNodeExtension(struct soap *soap, const char *URL, tt__PTZNodeExtension 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, "tt:PTZNodeExtension", p->soap_type() == SOAP_TYPE_tt__PTZNodeExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZNodeExtension * SOAP_FMAC4 soap_get_tt__PTZNodeExtension(struct soap*, tt__PTZNodeExtension *, const char*, const char*); - -inline int soap_read_tt__PTZNodeExtension(struct soap *soap, tt__PTZNodeExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZNodeExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZNodeExtension(struct soap *soap, const char *URL, tt__PTZNodeExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZNodeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZNodeExtension(struct soap *soap, tt__PTZNodeExtension *p) -{ - if (::soap_read_tt__PTZNodeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZNode_DEFINED -#define SOAP_TYPE_tt__PTZNode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZNode(struct soap*, const char*, int, const tt__PTZNode *, const char*); -SOAP_FMAC3 tt__PTZNode * SOAP_FMAC4 soap_in_tt__PTZNode(struct soap*, const char*, tt__PTZNode *, const char*); -SOAP_FMAC1 tt__PTZNode * SOAP_FMAC2 soap_instantiate_tt__PTZNode(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZNode * soap_new_tt__PTZNode(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZNode(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZNode * soap_new_req_tt__PTZNode( - struct soap *soap, - tt__PTZSpaces *SupportedPTZSpaces, - int MaximumNumberOfPresets, - bool HomeSupported, - const std::string& token__1) -{ - tt__PTZNode *_p = ::soap_new_tt__PTZNode(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZNode::SupportedPTZSpaces = SupportedPTZSpaces; - _p->tt__PTZNode::MaximumNumberOfPresets = MaximumNumberOfPresets; - _p->tt__PTZNode::HomeSupported = HomeSupported; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__PTZNode * soap_new_set_tt__PTZNode( - struct soap *soap, - std::string *Name, - tt__PTZSpaces *SupportedPTZSpaces, - int MaximumNumberOfPresets, - bool HomeSupported, - const std::vector & AuxiliaryCommands, - tt__PTZNodeExtension *Extension, - bool *FixedHomePosition, - bool *GeoMove, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__PTZNode *_p = ::soap_new_tt__PTZNode(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZNode::Name = Name; - _p->tt__PTZNode::SupportedPTZSpaces = SupportedPTZSpaces; - _p->tt__PTZNode::MaximumNumberOfPresets = MaximumNumberOfPresets; - _p->tt__PTZNode::HomeSupported = HomeSupported; - _p->tt__PTZNode::AuxiliaryCommands = AuxiliaryCommands; - _p->tt__PTZNode::Extension = Extension; - _p->tt__PTZNode::FixedHomePosition = FixedHomePosition; - _p->tt__PTZNode::GeoMove = GeoMove; - _p->tt__PTZNode::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__PTZNode(struct soap *soap, tt__PTZNode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZNode", p->soap_type() == SOAP_TYPE_tt__PTZNode ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZNode(struct soap *soap, const char *URL, tt__PTZNode 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, "tt:PTZNode", p->soap_type() == SOAP_TYPE_tt__PTZNode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZNode(struct soap *soap, const char *URL, tt__PTZNode 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, "tt:PTZNode", p->soap_type() == SOAP_TYPE_tt__PTZNode ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZNode(struct soap *soap, const char *URL, tt__PTZNode 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, "tt:PTZNode", p->soap_type() == SOAP_TYPE_tt__PTZNode ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZNode * SOAP_FMAC4 soap_get_tt__PTZNode(struct soap*, tt__PTZNode *, const char*, const char*); - -inline int soap_read_tt__PTZNode(struct soap *soap, tt__PTZNode *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZNode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZNode(struct soap *soap, const char *URL, tt__PTZNode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZNode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZNode(struct soap *soap, tt__PTZNode *p) -{ - if (::soap_read_tt__PTZNode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DigitalInput_DEFINED -#define SOAP_TYPE_tt__DigitalInput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DigitalInput(struct soap*, const char*, int, const tt__DigitalInput *, const char*); -SOAP_FMAC3 tt__DigitalInput * SOAP_FMAC4 soap_in_tt__DigitalInput(struct soap*, const char*, tt__DigitalInput *, const char*); -SOAP_FMAC1 tt__DigitalInput * SOAP_FMAC2 soap_instantiate_tt__DigitalInput(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DigitalInput * soap_new_tt__DigitalInput(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DigitalInput(soap, n, NULL, NULL, NULL); -} - -inline tt__DigitalInput * soap_new_req_tt__DigitalInput( - struct soap *soap, - const std::string& token__1) -{ - tt__DigitalInput *_p = ::soap_new_tt__DigitalInput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__DigitalInput * soap_new_set_tt__DigitalInput( - struct soap *soap, - const std::vector & __any, - enum tt__DigitalIdleState *IdleState, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__DigitalInput *_p = ::soap_new_tt__DigitalInput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DigitalInput::__any = __any; - _p->tt__DigitalInput::IdleState = IdleState; - _p->tt__DigitalInput::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__DigitalInput(struct soap *soap, tt__DigitalInput const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DigitalInput", p->soap_type() == SOAP_TYPE_tt__DigitalInput ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DigitalInput(struct soap *soap, const char *URL, tt__DigitalInput 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, "tt:DigitalInput", p->soap_type() == SOAP_TYPE_tt__DigitalInput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DigitalInput(struct soap *soap, const char *URL, tt__DigitalInput 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, "tt:DigitalInput", p->soap_type() == SOAP_TYPE_tt__DigitalInput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DigitalInput(struct soap *soap, const char *URL, tt__DigitalInput 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, "tt:DigitalInput", p->soap_type() == SOAP_TYPE_tt__DigitalInput ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DigitalInput * SOAP_FMAC4 soap_get_tt__DigitalInput(struct soap*, tt__DigitalInput *, const char*, const char*); - -inline int soap_read_tt__DigitalInput(struct soap *soap, tt__DigitalInput *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DigitalInput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DigitalInput(struct soap *soap, const char *URL, tt__DigitalInput *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DigitalInput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DigitalInput(struct soap *soap, tt__DigitalInput *p) -{ - if (::soap_read_tt__DigitalInput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayOutput_DEFINED -#define SOAP_TYPE_tt__RelayOutput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayOutput(struct soap*, const char*, int, const tt__RelayOutput *, const char*); -SOAP_FMAC3 tt__RelayOutput * SOAP_FMAC4 soap_in_tt__RelayOutput(struct soap*, const char*, tt__RelayOutput *, const char*); -SOAP_FMAC1 tt__RelayOutput * SOAP_FMAC2 soap_instantiate_tt__RelayOutput(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelayOutput * soap_new_tt__RelayOutput(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelayOutput(soap, n, NULL, NULL, NULL); -} - -inline tt__RelayOutput * soap_new_req_tt__RelayOutput( - struct soap *soap, - tt__RelayOutputSettings *Properties, - const std::string& token__1) -{ - tt__RelayOutput *_p = ::soap_new_tt__RelayOutput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayOutput::Properties = Properties; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__RelayOutput * soap_new_set_tt__RelayOutput( - struct soap *soap, - tt__RelayOutputSettings *Properties, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__RelayOutput *_p = ::soap_new_tt__RelayOutput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayOutput::Properties = Properties; - _p->tt__RelayOutput::__any = __any; - _p->tt__RelayOutput::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__RelayOutput(struct soap *soap, tt__RelayOutput const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelayOutput", p->soap_type() == SOAP_TYPE_tt__RelayOutput ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayOutput(struct soap *soap, const char *URL, tt__RelayOutput 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, "tt:RelayOutput", p->soap_type() == SOAP_TYPE_tt__RelayOutput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayOutput(struct soap *soap, const char *URL, tt__RelayOutput 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, "tt:RelayOutput", p->soap_type() == SOAP_TYPE_tt__RelayOutput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayOutput(struct soap *soap, const char *URL, tt__RelayOutput 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, "tt:RelayOutput", p->soap_type() == SOAP_TYPE_tt__RelayOutput ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelayOutput * SOAP_FMAC4 soap_get_tt__RelayOutput(struct soap*, tt__RelayOutput *, const char*, const char*); - -inline int soap_read_tt__RelayOutput(struct soap *soap, tt__RelayOutput *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelayOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayOutput(struct soap *soap, const char *URL, tt__RelayOutput *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayOutput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayOutput(struct soap *soap, tt__RelayOutput *p) -{ - if (::soap_read_tt__RelayOutput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RelayOutputSettings_DEFINED -#define SOAP_TYPE_tt__RelayOutputSettings_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RelayOutputSettings(struct soap*, const char*, int, const tt__RelayOutputSettings *, const char*); -SOAP_FMAC3 tt__RelayOutputSettings * SOAP_FMAC4 soap_in_tt__RelayOutputSettings(struct soap*, const char*, tt__RelayOutputSettings *, const char*); -SOAP_FMAC1 tt__RelayOutputSettings * SOAP_FMAC2 soap_instantiate_tt__RelayOutputSettings(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RelayOutputSettings * soap_new_tt__RelayOutputSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RelayOutputSettings(soap, n, NULL, NULL, NULL); -} - -inline tt__RelayOutputSettings * soap_new_req_tt__RelayOutputSettings( - struct soap *soap, - enum tt__RelayMode Mode, - const std::string& DelayTime, - enum tt__RelayIdleState IdleState) -{ - tt__RelayOutputSettings *_p = ::soap_new_tt__RelayOutputSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayOutputSettings::Mode = Mode; - _p->tt__RelayOutputSettings::DelayTime = DelayTime; - _p->tt__RelayOutputSettings::IdleState = IdleState; - } - return _p; -} - -inline tt__RelayOutputSettings * soap_new_set_tt__RelayOutputSettings( - struct soap *soap, - enum tt__RelayMode Mode, - const std::string& DelayTime, - enum tt__RelayIdleState IdleState) -{ - tt__RelayOutputSettings *_p = ::soap_new_tt__RelayOutputSettings(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RelayOutputSettings::Mode = Mode; - _p->tt__RelayOutputSettings::DelayTime = DelayTime; - _p->tt__RelayOutputSettings::IdleState = IdleState; - } - return _p; -} - -inline int soap_write_tt__RelayOutputSettings(struct soap *soap, tt__RelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RelayOutputSettings", p->soap_type() == SOAP_TYPE_tt__RelayOutputSettings ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RelayOutputSettings(struct soap *soap, const char *URL, tt__RelayOutputSettings 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, "tt:RelayOutputSettings", p->soap_type() == SOAP_TYPE_tt__RelayOutputSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RelayOutputSettings(struct soap *soap, const char *URL, tt__RelayOutputSettings 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, "tt:RelayOutputSettings", p->soap_type() == SOAP_TYPE_tt__RelayOutputSettings ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RelayOutputSettings(struct soap *soap, const char *URL, tt__RelayOutputSettings 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, "tt:RelayOutputSettings", p->soap_type() == SOAP_TYPE_tt__RelayOutputSettings ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RelayOutputSettings * SOAP_FMAC4 soap_get_tt__RelayOutputSettings(struct soap*, tt__RelayOutputSettings *, const char*, const char*); - -inline int soap_read_tt__RelayOutputSettings(struct soap *soap, tt__RelayOutputSettings *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RelayOutputSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RelayOutputSettings(struct soap *soap, const char *URL, tt__RelayOutputSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RelayOutputSettings(struct soap *soap, tt__RelayOutputSettings *p) -{ - if (::soap_read_tt__RelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__GenericEapPwdConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__GenericEapPwdConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GenericEapPwdConfigurationExtension(struct soap*, const char*, int, const tt__GenericEapPwdConfigurationExtension *, const char*); -SOAP_FMAC3 tt__GenericEapPwdConfigurationExtension * SOAP_FMAC4 soap_in_tt__GenericEapPwdConfigurationExtension(struct soap*, const char*, tt__GenericEapPwdConfigurationExtension *, const char*); -SOAP_FMAC1 tt__GenericEapPwdConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__GenericEapPwdConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__GenericEapPwdConfigurationExtension * soap_new_tt__GenericEapPwdConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__GenericEapPwdConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__GenericEapPwdConfigurationExtension * soap_new_req_tt__GenericEapPwdConfigurationExtension( - struct soap *soap) -{ - tt__GenericEapPwdConfigurationExtension *_p = ::soap_new_tt__GenericEapPwdConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__GenericEapPwdConfigurationExtension * soap_new_set_tt__GenericEapPwdConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__GenericEapPwdConfigurationExtension *_p = ::soap_new_tt__GenericEapPwdConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GenericEapPwdConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__GenericEapPwdConfigurationExtension(struct soap *soap, tt__GenericEapPwdConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:GenericEapPwdConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__GenericEapPwdConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__GenericEapPwdConfigurationExtension(struct soap *soap, const char *URL, tt__GenericEapPwdConfigurationExtension 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, "tt:GenericEapPwdConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__GenericEapPwdConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__GenericEapPwdConfigurationExtension(struct soap *soap, const char *URL, tt__GenericEapPwdConfigurationExtension 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, "tt:GenericEapPwdConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__GenericEapPwdConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__GenericEapPwdConfigurationExtension(struct soap *soap, const char *URL, tt__GenericEapPwdConfigurationExtension 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, "tt:GenericEapPwdConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__GenericEapPwdConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__GenericEapPwdConfigurationExtension * SOAP_FMAC4 soap_get_tt__GenericEapPwdConfigurationExtension(struct soap*, tt__GenericEapPwdConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__GenericEapPwdConfigurationExtension(struct soap *soap, tt__GenericEapPwdConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__GenericEapPwdConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__GenericEapPwdConfigurationExtension(struct soap *soap, const char *URL, tt__GenericEapPwdConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__GenericEapPwdConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__GenericEapPwdConfigurationExtension(struct soap *soap, tt__GenericEapPwdConfigurationExtension *p) -{ - if (::soap_read_tt__GenericEapPwdConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TLSConfiguration_DEFINED -#define SOAP_TYPE_tt__TLSConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TLSConfiguration(struct soap*, const char*, int, const tt__TLSConfiguration *, const char*); -SOAP_FMAC3 tt__TLSConfiguration * SOAP_FMAC4 soap_in_tt__TLSConfiguration(struct soap*, const char*, tt__TLSConfiguration *, const char*); -SOAP_FMAC1 tt__TLSConfiguration * SOAP_FMAC2 soap_instantiate_tt__TLSConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TLSConfiguration * soap_new_tt__TLSConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TLSConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__TLSConfiguration * soap_new_req_tt__TLSConfiguration( - struct soap *soap, - const std::string& CertificateID) -{ - tt__TLSConfiguration *_p = ::soap_new_tt__TLSConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TLSConfiguration::CertificateID = CertificateID; - } - return _p; -} - -inline tt__TLSConfiguration * soap_new_set_tt__TLSConfiguration( - struct soap *soap, - const std::string& CertificateID, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__TLSConfiguration *_p = ::soap_new_tt__TLSConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TLSConfiguration::CertificateID = CertificateID; - _p->tt__TLSConfiguration::__any = __any; - _p->tt__TLSConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__TLSConfiguration(struct soap *soap, tt__TLSConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TLSConfiguration", p->soap_type() == SOAP_TYPE_tt__TLSConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TLSConfiguration(struct soap *soap, const char *URL, tt__TLSConfiguration 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, "tt:TLSConfiguration", p->soap_type() == SOAP_TYPE_tt__TLSConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TLSConfiguration(struct soap *soap, const char *URL, tt__TLSConfiguration 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, "tt:TLSConfiguration", p->soap_type() == SOAP_TYPE_tt__TLSConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TLSConfiguration(struct soap *soap, const char *URL, tt__TLSConfiguration 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, "tt:TLSConfiguration", p->soap_type() == SOAP_TYPE_tt__TLSConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TLSConfiguration * SOAP_FMAC4 soap_get_tt__TLSConfiguration(struct soap*, tt__TLSConfiguration *, const char*, const char*); - -inline int soap_read_tt__TLSConfiguration(struct soap *soap, tt__TLSConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TLSConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TLSConfiguration(struct soap *soap, const char *URL, tt__TLSConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TLSConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TLSConfiguration(struct soap *soap, tt__TLSConfiguration *p) -{ - if (::soap_read_tt__TLSConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EapMethodExtension_DEFINED -#define SOAP_TYPE_tt__EapMethodExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EapMethodExtension(struct soap*, const char*, int, const tt__EapMethodExtension *, const char*); -SOAP_FMAC3 tt__EapMethodExtension * SOAP_FMAC4 soap_in_tt__EapMethodExtension(struct soap*, const char*, tt__EapMethodExtension *, const char*); -SOAP_FMAC1 tt__EapMethodExtension * SOAP_FMAC2 soap_instantiate_tt__EapMethodExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EapMethodExtension * soap_new_tt__EapMethodExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EapMethodExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__EapMethodExtension * soap_new_req_tt__EapMethodExtension( - struct soap *soap) -{ - tt__EapMethodExtension *_p = ::soap_new_tt__EapMethodExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__EapMethodExtension * soap_new_set_tt__EapMethodExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__EapMethodExtension *_p = ::soap_new_tt__EapMethodExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EapMethodExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__EapMethodExtension(struct soap *soap, tt__EapMethodExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EapMethodExtension", p->soap_type() == SOAP_TYPE_tt__EapMethodExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EapMethodExtension(struct soap *soap, const char *URL, tt__EapMethodExtension 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, "tt:EapMethodExtension", p->soap_type() == SOAP_TYPE_tt__EapMethodExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EapMethodExtension(struct soap *soap, const char *URL, tt__EapMethodExtension 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, "tt:EapMethodExtension", p->soap_type() == SOAP_TYPE_tt__EapMethodExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EapMethodExtension(struct soap *soap, const char *URL, tt__EapMethodExtension 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, "tt:EapMethodExtension", p->soap_type() == SOAP_TYPE_tt__EapMethodExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EapMethodExtension * SOAP_FMAC4 soap_get_tt__EapMethodExtension(struct soap*, tt__EapMethodExtension *, const char*, const char*); - -inline int soap_read_tt__EapMethodExtension(struct soap *soap, tt__EapMethodExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EapMethodExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EapMethodExtension(struct soap *soap, const char *URL, tt__EapMethodExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EapMethodExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EapMethodExtension(struct soap *soap, tt__EapMethodExtension *p) -{ - if (::soap_read_tt__EapMethodExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EAPMethodConfiguration_DEFINED -#define SOAP_TYPE_tt__EAPMethodConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EAPMethodConfiguration(struct soap*, const char*, int, const tt__EAPMethodConfiguration *, const char*); -SOAP_FMAC3 tt__EAPMethodConfiguration * SOAP_FMAC4 soap_in_tt__EAPMethodConfiguration(struct soap*, const char*, tt__EAPMethodConfiguration *, const char*); -SOAP_FMAC1 tt__EAPMethodConfiguration * SOAP_FMAC2 soap_instantiate_tt__EAPMethodConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EAPMethodConfiguration * soap_new_tt__EAPMethodConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EAPMethodConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__EAPMethodConfiguration * soap_new_req_tt__EAPMethodConfiguration( - struct soap *soap) -{ - tt__EAPMethodConfiguration *_p = ::soap_new_tt__EAPMethodConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__EAPMethodConfiguration * soap_new_set_tt__EAPMethodConfiguration( - struct soap *soap, - tt__TLSConfiguration *TLSConfiguration, - std::string *Password, - tt__EapMethodExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__EAPMethodConfiguration *_p = ::soap_new_tt__EAPMethodConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EAPMethodConfiguration::TLSConfiguration = TLSConfiguration; - _p->tt__EAPMethodConfiguration::Password = Password; - _p->tt__EAPMethodConfiguration::Extension = Extension; - _p->tt__EAPMethodConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__EAPMethodConfiguration(struct soap *soap, tt__EAPMethodConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EAPMethodConfiguration", p->soap_type() == SOAP_TYPE_tt__EAPMethodConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EAPMethodConfiguration(struct soap *soap, const char *URL, tt__EAPMethodConfiguration 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, "tt:EAPMethodConfiguration", p->soap_type() == SOAP_TYPE_tt__EAPMethodConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EAPMethodConfiguration(struct soap *soap, const char *URL, tt__EAPMethodConfiguration 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, "tt:EAPMethodConfiguration", p->soap_type() == SOAP_TYPE_tt__EAPMethodConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EAPMethodConfiguration(struct soap *soap, const char *URL, tt__EAPMethodConfiguration 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, "tt:EAPMethodConfiguration", p->soap_type() == SOAP_TYPE_tt__EAPMethodConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EAPMethodConfiguration * SOAP_FMAC4 soap_get_tt__EAPMethodConfiguration(struct soap*, tt__EAPMethodConfiguration *, const char*, const char*); - -inline int soap_read_tt__EAPMethodConfiguration(struct soap *soap, tt__EAPMethodConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EAPMethodConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EAPMethodConfiguration(struct soap *soap, const char *URL, tt__EAPMethodConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EAPMethodConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EAPMethodConfiguration(struct soap *soap, tt__EAPMethodConfiguration *p) -{ - if (::soap_read_tt__EAPMethodConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot1XConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__Dot1XConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot1XConfigurationExtension(struct soap*, const char*, int, const tt__Dot1XConfigurationExtension *, const char*); -SOAP_FMAC3 tt__Dot1XConfigurationExtension * SOAP_FMAC4 soap_in_tt__Dot1XConfigurationExtension(struct soap*, const char*, tt__Dot1XConfigurationExtension *, const char*); -SOAP_FMAC1 tt__Dot1XConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__Dot1XConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot1XConfigurationExtension * soap_new_tt__Dot1XConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot1XConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot1XConfigurationExtension * soap_new_req_tt__Dot1XConfigurationExtension( - struct soap *soap) -{ - tt__Dot1XConfigurationExtension *_p = ::soap_new_tt__Dot1XConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Dot1XConfigurationExtension * soap_new_set_tt__Dot1XConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__Dot1XConfigurationExtension *_p = ::soap_new_tt__Dot1XConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot1XConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__Dot1XConfigurationExtension(struct soap *soap, tt__Dot1XConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot1XConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot1XConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot1XConfigurationExtension(struct soap *soap, const char *URL, tt__Dot1XConfigurationExtension 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, "tt:Dot1XConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot1XConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot1XConfigurationExtension(struct soap *soap, const char *URL, tt__Dot1XConfigurationExtension 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, "tt:Dot1XConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot1XConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot1XConfigurationExtension(struct soap *soap, const char *URL, tt__Dot1XConfigurationExtension 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, "tt:Dot1XConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot1XConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot1XConfigurationExtension * SOAP_FMAC4 soap_get_tt__Dot1XConfigurationExtension(struct soap*, tt__Dot1XConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__Dot1XConfigurationExtension(struct soap *soap, tt__Dot1XConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot1XConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot1XConfigurationExtension(struct soap *soap, const char *URL, tt__Dot1XConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot1XConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot1XConfigurationExtension(struct soap *soap, tt__Dot1XConfigurationExtension *p) -{ - if (::soap_read_tt__Dot1XConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot1XConfiguration_DEFINED -#define SOAP_TYPE_tt__Dot1XConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot1XConfiguration(struct soap*, const char*, int, const tt__Dot1XConfiguration *, const char*); -SOAP_FMAC3 tt__Dot1XConfiguration * SOAP_FMAC4 soap_in_tt__Dot1XConfiguration(struct soap*, const char*, tt__Dot1XConfiguration *, const char*); -SOAP_FMAC1 tt__Dot1XConfiguration * SOAP_FMAC2 soap_instantiate_tt__Dot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot1XConfiguration * soap_new_tt__Dot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot1XConfiguration * soap_new_req_tt__Dot1XConfiguration( - struct soap *soap, - const std::string& Dot1XConfigurationToken, - const std::string& Identity, - int EAPMethod) -{ - tt__Dot1XConfiguration *_p = ::soap_new_tt__Dot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot1XConfiguration::Dot1XConfigurationToken = Dot1XConfigurationToken; - _p->tt__Dot1XConfiguration::Identity = Identity; - _p->tt__Dot1XConfiguration::EAPMethod = EAPMethod; - } - return _p; -} - -inline tt__Dot1XConfiguration * soap_new_set_tt__Dot1XConfiguration( - struct soap *soap, - const std::string& Dot1XConfigurationToken, - const std::string& Identity, - std::string *AnonymousID, - int EAPMethod, - const std::vector & CACertificateID, - tt__EAPMethodConfiguration *EAPMethodConfiguration, - tt__Dot1XConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot1XConfiguration *_p = ::soap_new_tt__Dot1XConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot1XConfiguration::Dot1XConfigurationToken = Dot1XConfigurationToken; - _p->tt__Dot1XConfiguration::Identity = Identity; - _p->tt__Dot1XConfiguration::AnonymousID = AnonymousID; - _p->tt__Dot1XConfiguration::EAPMethod = EAPMethod; - _p->tt__Dot1XConfiguration::CACertificateID = CACertificateID; - _p->tt__Dot1XConfiguration::EAPMethodConfiguration = EAPMethodConfiguration; - _p->tt__Dot1XConfiguration::Extension = Extension; - _p->tt__Dot1XConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot1XConfiguration(struct soap *soap, tt__Dot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot1XConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot1XConfiguration(struct soap *soap, const char *URL, tt__Dot1XConfiguration 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, "tt:Dot1XConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot1XConfiguration(struct soap *soap, const char *URL, tt__Dot1XConfiguration 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, "tt:Dot1XConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot1XConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot1XConfiguration(struct soap *soap, const char *URL, tt__Dot1XConfiguration 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, "tt:Dot1XConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot1XConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot1XConfiguration * SOAP_FMAC4 soap_get_tt__Dot1XConfiguration(struct soap*, tt__Dot1XConfiguration *, const char*, const char*); - -inline int soap_read_tt__Dot1XConfiguration(struct soap *soap, tt__Dot1XConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot1XConfiguration(struct soap *soap, const char *URL, tt__Dot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot1XConfiguration(struct soap *soap, tt__Dot1XConfiguration *p) -{ - if (::soap_read_tt__Dot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CertificateInformationExtension_DEFINED -#define SOAP_TYPE_tt__CertificateInformationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateInformationExtension(struct soap*, const char*, int, const tt__CertificateInformationExtension *, const char*); -SOAP_FMAC3 tt__CertificateInformationExtension * SOAP_FMAC4 soap_in_tt__CertificateInformationExtension(struct soap*, const char*, tt__CertificateInformationExtension *, const char*); -SOAP_FMAC1 tt__CertificateInformationExtension * SOAP_FMAC2 soap_instantiate_tt__CertificateInformationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CertificateInformationExtension * soap_new_tt__CertificateInformationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CertificateInformationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__CertificateInformationExtension * soap_new_req_tt__CertificateInformationExtension( - struct soap *soap) -{ - tt__CertificateInformationExtension *_p = ::soap_new_tt__CertificateInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__CertificateInformationExtension * soap_new_set_tt__CertificateInformationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__CertificateInformationExtension *_p = ::soap_new_tt__CertificateInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateInformationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__CertificateInformationExtension(struct soap *soap, tt__CertificateInformationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CertificateInformationExtension", p->soap_type() == SOAP_TYPE_tt__CertificateInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CertificateInformationExtension(struct soap *soap, const char *URL, tt__CertificateInformationExtension 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, "tt:CertificateInformationExtension", p->soap_type() == SOAP_TYPE_tt__CertificateInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CertificateInformationExtension(struct soap *soap, const char *URL, tt__CertificateInformationExtension 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, "tt:CertificateInformationExtension", p->soap_type() == SOAP_TYPE_tt__CertificateInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CertificateInformationExtension(struct soap *soap, const char *URL, tt__CertificateInformationExtension 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, "tt:CertificateInformationExtension", p->soap_type() == SOAP_TYPE_tt__CertificateInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CertificateInformationExtension * SOAP_FMAC4 soap_get_tt__CertificateInformationExtension(struct soap*, tt__CertificateInformationExtension *, const char*, const char*); - -inline int soap_read_tt__CertificateInformationExtension(struct soap *soap, tt__CertificateInformationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CertificateInformationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CertificateInformationExtension(struct soap *soap, const char *URL, tt__CertificateInformationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CertificateInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CertificateInformationExtension(struct soap *soap, tt__CertificateInformationExtension *p) -{ - if (::soap_read_tt__CertificateInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CertificateUsage_DEFINED -#define SOAP_TYPE_tt__CertificateUsage_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateUsage(struct soap*, const char*, int, const tt__CertificateUsage *, const char*); -SOAP_FMAC3 tt__CertificateUsage * SOAP_FMAC4 soap_in_tt__CertificateUsage(struct soap*, const char*, tt__CertificateUsage *, const char*); -SOAP_FMAC1 tt__CertificateUsage * SOAP_FMAC2 soap_instantiate_tt__CertificateUsage(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CertificateUsage * soap_new_tt__CertificateUsage(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CertificateUsage(soap, n, NULL, NULL, NULL); -} - -inline tt__CertificateUsage * soap_new_req_tt__CertificateUsage( - struct soap *soap, - const std::string& __item, - bool Critical) -{ - tt__CertificateUsage *_p = ::soap_new_tt__CertificateUsage(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateUsage::__item = __item; - _p->tt__CertificateUsage::Critical = Critical; - } - return _p; -} - -inline tt__CertificateUsage * soap_new_set_tt__CertificateUsage( - struct soap *soap, - const std::string& __item, - bool Critical) -{ - tt__CertificateUsage *_p = ::soap_new_tt__CertificateUsage(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateUsage::__item = __item; - _p->tt__CertificateUsage::Critical = Critical; - } - return _p; -} - -inline int soap_write_tt__CertificateUsage(struct soap *soap, tt__CertificateUsage const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CertificateUsage", p->soap_type() == SOAP_TYPE_tt__CertificateUsage ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CertificateUsage(struct soap *soap, const char *URL, tt__CertificateUsage 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, "tt:CertificateUsage", p->soap_type() == SOAP_TYPE_tt__CertificateUsage ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CertificateUsage(struct soap *soap, const char *URL, tt__CertificateUsage 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, "tt:CertificateUsage", p->soap_type() == SOAP_TYPE_tt__CertificateUsage ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CertificateUsage(struct soap *soap, const char *URL, tt__CertificateUsage 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, "tt:CertificateUsage", p->soap_type() == SOAP_TYPE_tt__CertificateUsage ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CertificateUsage * SOAP_FMAC4 soap_get_tt__CertificateUsage(struct soap*, tt__CertificateUsage *, const char*, const char*); - -inline int soap_read_tt__CertificateUsage(struct soap *soap, tt__CertificateUsage *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CertificateUsage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CertificateUsage(struct soap *soap, const char *URL, tt__CertificateUsage *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CertificateUsage(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CertificateUsage(struct soap *soap, tt__CertificateUsage *p) -{ - if (::soap_read_tt__CertificateUsage(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CertificateInformation_DEFINED -#define SOAP_TYPE_tt__CertificateInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateInformation(struct soap*, const char*, int, const tt__CertificateInformation *, const char*); -SOAP_FMAC3 tt__CertificateInformation * SOAP_FMAC4 soap_in_tt__CertificateInformation(struct soap*, const char*, tt__CertificateInformation *, const char*); -SOAP_FMAC1 tt__CertificateInformation * SOAP_FMAC2 soap_instantiate_tt__CertificateInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CertificateInformation * soap_new_tt__CertificateInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CertificateInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__CertificateInformation * soap_new_req_tt__CertificateInformation( - struct soap *soap, - const std::string& CertificateID) -{ - tt__CertificateInformation *_p = ::soap_new_tt__CertificateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateInformation::CertificateID = CertificateID; - } - return _p; -} - -inline tt__CertificateInformation * soap_new_set_tt__CertificateInformation( - struct soap *soap, - const std::string& CertificateID, - std::string *IssuerDN, - std::string *SubjectDN, - tt__CertificateUsage *KeyUsage, - tt__CertificateUsage *ExtendedKeyUsage, - int *KeyLength, - std::string *Version, - std::string *SerialNum, - std::string *SignatureAlgorithm, - tt__DateTimeRange *Validity, - tt__CertificateInformationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__CertificateInformation *_p = ::soap_new_tt__CertificateInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateInformation::CertificateID = CertificateID; - _p->tt__CertificateInformation::IssuerDN = IssuerDN; - _p->tt__CertificateInformation::SubjectDN = SubjectDN; - _p->tt__CertificateInformation::KeyUsage = KeyUsage; - _p->tt__CertificateInformation::ExtendedKeyUsage = ExtendedKeyUsage; - _p->tt__CertificateInformation::KeyLength = KeyLength; - _p->tt__CertificateInformation::Version = Version; - _p->tt__CertificateInformation::SerialNum = SerialNum; - _p->tt__CertificateInformation::SignatureAlgorithm = SignatureAlgorithm; - _p->tt__CertificateInformation::Validity = Validity; - _p->tt__CertificateInformation::Extension = Extension; - _p->tt__CertificateInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__CertificateInformation(struct soap *soap, tt__CertificateInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CertificateInformation", p->soap_type() == SOAP_TYPE_tt__CertificateInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CertificateInformation(struct soap *soap, const char *URL, tt__CertificateInformation 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, "tt:CertificateInformation", p->soap_type() == SOAP_TYPE_tt__CertificateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CertificateInformation(struct soap *soap, const char *URL, tt__CertificateInformation 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, "tt:CertificateInformation", p->soap_type() == SOAP_TYPE_tt__CertificateInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CertificateInformation(struct soap *soap, const char *URL, tt__CertificateInformation 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, "tt:CertificateInformation", p->soap_type() == SOAP_TYPE_tt__CertificateInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CertificateInformation * SOAP_FMAC4 soap_get_tt__CertificateInformation(struct soap*, tt__CertificateInformation *, const char*, const char*); - -inline int soap_read_tt__CertificateInformation(struct soap *soap, tt__CertificateInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CertificateInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CertificateInformation(struct soap *soap, const char *URL, tt__CertificateInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CertificateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CertificateInformation(struct soap *soap, tt__CertificateInformation *p) -{ - if (::soap_read_tt__CertificateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CertificateWithPrivateKey_DEFINED -#define SOAP_TYPE_tt__CertificateWithPrivateKey_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateWithPrivateKey(struct soap*, const char*, int, const tt__CertificateWithPrivateKey *, const char*); -SOAP_FMAC3 tt__CertificateWithPrivateKey * SOAP_FMAC4 soap_in_tt__CertificateWithPrivateKey(struct soap*, const char*, tt__CertificateWithPrivateKey *, const char*); -SOAP_FMAC1 tt__CertificateWithPrivateKey * SOAP_FMAC2 soap_instantiate_tt__CertificateWithPrivateKey(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CertificateWithPrivateKey * soap_new_tt__CertificateWithPrivateKey(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CertificateWithPrivateKey(soap, n, NULL, NULL, NULL); -} - -inline tt__CertificateWithPrivateKey * soap_new_req_tt__CertificateWithPrivateKey( - struct soap *soap, - tt__BinaryData *Certificate, - tt__BinaryData *PrivateKey) -{ - tt__CertificateWithPrivateKey *_p = ::soap_new_tt__CertificateWithPrivateKey(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateWithPrivateKey::Certificate = Certificate; - _p->tt__CertificateWithPrivateKey::PrivateKey = PrivateKey; - } - return _p; -} - -inline tt__CertificateWithPrivateKey * soap_new_set_tt__CertificateWithPrivateKey( - struct soap *soap, - std::string *CertificateID, - tt__BinaryData *Certificate, - tt__BinaryData *PrivateKey, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__CertificateWithPrivateKey *_p = ::soap_new_tt__CertificateWithPrivateKey(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateWithPrivateKey::CertificateID = CertificateID; - _p->tt__CertificateWithPrivateKey::Certificate = Certificate; - _p->tt__CertificateWithPrivateKey::PrivateKey = PrivateKey; - _p->tt__CertificateWithPrivateKey::__any = __any; - _p->tt__CertificateWithPrivateKey::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__CertificateWithPrivateKey(struct soap *soap, tt__CertificateWithPrivateKey const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CertificateWithPrivateKey", p->soap_type() == SOAP_TYPE_tt__CertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CertificateWithPrivateKey(struct soap *soap, const char *URL, tt__CertificateWithPrivateKey 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, "tt:CertificateWithPrivateKey", p->soap_type() == SOAP_TYPE_tt__CertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CertificateWithPrivateKey(struct soap *soap, const char *URL, tt__CertificateWithPrivateKey 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, "tt:CertificateWithPrivateKey", p->soap_type() == SOAP_TYPE_tt__CertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CertificateWithPrivateKey(struct soap *soap, const char *URL, tt__CertificateWithPrivateKey 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, "tt:CertificateWithPrivateKey", p->soap_type() == SOAP_TYPE_tt__CertificateWithPrivateKey ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CertificateWithPrivateKey * SOAP_FMAC4 soap_get_tt__CertificateWithPrivateKey(struct soap*, tt__CertificateWithPrivateKey *, const char*, const char*); - -inline int soap_read_tt__CertificateWithPrivateKey(struct soap *soap, tt__CertificateWithPrivateKey *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CertificateWithPrivateKey(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CertificateWithPrivateKey(struct soap *soap, const char *URL, tt__CertificateWithPrivateKey *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CertificateWithPrivateKey(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CertificateWithPrivateKey(struct soap *soap, tt__CertificateWithPrivateKey *p) -{ - if (::soap_read_tt__CertificateWithPrivateKey(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CertificateStatus_DEFINED -#define SOAP_TYPE_tt__CertificateStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateStatus(struct soap*, const char*, int, const tt__CertificateStatus *, const char*); -SOAP_FMAC3 tt__CertificateStatus * SOAP_FMAC4 soap_in_tt__CertificateStatus(struct soap*, const char*, tt__CertificateStatus *, const char*); -SOAP_FMAC1 tt__CertificateStatus * SOAP_FMAC2 soap_instantiate_tt__CertificateStatus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CertificateStatus * soap_new_tt__CertificateStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CertificateStatus(soap, n, NULL, NULL, NULL); -} - -inline tt__CertificateStatus * soap_new_req_tt__CertificateStatus( - struct soap *soap, - const std::string& CertificateID, - bool Status) -{ - tt__CertificateStatus *_p = ::soap_new_tt__CertificateStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateStatus::CertificateID = CertificateID; - _p->tt__CertificateStatus::Status = Status; - } - return _p; -} - -inline tt__CertificateStatus * soap_new_set_tt__CertificateStatus( - struct soap *soap, - const std::string& CertificateID, - bool Status, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__CertificateStatus *_p = ::soap_new_tt__CertificateStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateStatus::CertificateID = CertificateID; - _p->tt__CertificateStatus::Status = Status; - _p->tt__CertificateStatus::__any = __any; - _p->tt__CertificateStatus::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__CertificateStatus(struct soap *soap, tt__CertificateStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CertificateStatus", p->soap_type() == SOAP_TYPE_tt__CertificateStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CertificateStatus(struct soap *soap, const char *URL, tt__CertificateStatus 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, "tt:CertificateStatus", p->soap_type() == SOAP_TYPE_tt__CertificateStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CertificateStatus(struct soap *soap, const char *URL, tt__CertificateStatus 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, "tt:CertificateStatus", p->soap_type() == SOAP_TYPE_tt__CertificateStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CertificateStatus(struct soap *soap, const char *URL, tt__CertificateStatus 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, "tt:CertificateStatus", p->soap_type() == SOAP_TYPE_tt__CertificateStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CertificateStatus * SOAP_FMAC4 soap_get_tt__CertificateStatus(struct soap*, tt__CertificateStatus *, const char*, const char*); - -inline int soap_read_tt__CertificateStatus(struct soap *soap, tt__CertificateStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CertificateStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CertificateStatus(struct soap *soap, const char *URL, tt__CertificateStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CertificateStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CertificateStatus(struct soap *soap, tt__CertificateStatus *p) -{ - if (::soap_read_tt__CertificateStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Certificate_DEFINED -#define SOAP_TYPE_tt__Certificate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Certificate(struct soap*, const char*, int, const tt__Certificate *, const char*); -SOAP_FMAC3 tt__Certificate * SOAP_FMAC4 soap_in_tt__Certificate(struct soap*, const char*, tt__Certificate *, const char*); -SOAP_FMAC1 tt__Certificate * SOAP_FMAC2 soap_instantiate_tt__Certificate(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Certificate * soap_new_tt__Certificate(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Certificate(soap, n, NULL, NULL, NULL); -} - -inline tt__Certificate * soap_new_req_tt__Certificate( - struct soap *soap, - const std::string& CertificateID, - tt__BinaryData *Certificate) -{ - tt__Certificate *_p = ::soap_new_tt__Certificate(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Certificate::CertificateID = CertificateID; - _p->tt__Certificate::Certificate = Certificate; - } - return _p; -} - -inline tt__Certificate * soap_new_set_tt__Certificate( - struct soap *soap, - const std::string& CertificateID, - tt__BinaryData *Certificate) -{ - tt__Certificate *_p = ::soap_new_tt__Certificate(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Certificate::CertificateID = CertificateID; - _p->tt__Certificate::Certificate = Certificate; - } - return _p; -} - -inline int soap_write_tt__Certificate(struct soap *soap, tt__Certificate const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Certificate", p->soap_type() == SOAP_TYPE_tt__Certificate ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Certificate(struct soap *soap, const char *URL, tt__Certificate 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, "tt:Certificate", p->soap_type() == SOAP_TYPE_tt__Certificate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Certificate(struct soap *soap, const char *URL, tt__Certificate 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, "tt:Certificate", p->soap_type() == SOAP_TYPE_tt__Certificate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Certificate(struct soap *soap, const char *URL, tt__Certificate 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, "tt:Certificate", p->soap_type() == SOAP_TYPE_tt__Certificate ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Certificate * SOAP_FMAC4 soap_get_tt__Certificate(struct soap*, tt__Certificate *, const char*, const char*); - -inline int soap_read_tt__Certificate(struct soap *soap, tt__Certificate *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Certificate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Certificate(struct soap *soap, const char *URL, tt__Certificate *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Certificate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Certificate(struct soap *soap, tt__Certificate *p) -{ - if (::soap_read_tt__Certificate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CertificateGenerationParametersExtension_DEFINED -#define SOAP_TYPE_tt__CertificateGenerationParametersExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateGenerationParametersExtension(struct soap*, const char*, int, const tt__CertificateGenerationParametersExtension *, const char*); -SOAP_FMAC3 tt__CertificateGenerationParametersExtension * SOAP_FMAC4 soap_in_tt__CertificateGenerationParametersExtension(struct soap*, const char*, tt__CertificateGenerationParametersExtension *, const char*); -SOAP_FMAC1 tt__CertificateGenerationParametersExtension * SOAP_FMAC2 soap_instantiate_tt__CertificateGenerationParametersExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CertificateGenerationParametersExtension * soap_new_tt__CertificateGenerationParametersExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CertificateGenerationParametersExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__CertificateGenerationParametersExtension * soap_new_req_tt__CertificateGenerationParametersExtension( - struct soap *soap) -{ - tt__CertificateGenerationParametersExtension *_p = ::soap_new_tt__CertificateGenerationParametersExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__CertificateGenerationParametersExtension * soap_new_set_tt__CertificateGenerationParametersExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__CertificateGenerationParametersExtension *_p = ::soap_new_tt__CertificateGenerationParametersExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateGenerationParametersExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__CertificateGenerationParametersExtension(struct soap *soap, tt__CertificateGenerationParametersExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CertificateGenerationParametersExtension", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParametersExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CertificateGenerationParametersExtension(struct soap *soap, const char *URL, tt__CertificateGenerationParametersExtension 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, "tt:CertificateGenerationParametersExtension", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParametersExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CertificateGenerationParametersExtension(struct soap *soap, const char *URL, tt__CertificateGenerationParametersExtension 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, "tt:CertificateGenerationParametersExtension", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParametersExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CertificateGenerationParametersExtension(struct soap *soap, const char *URL, tt__CertificateGenerationParametersExtension 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, "tt:CertificateGenerationParametersExtension", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParametersExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CertificateGenerationParametersExtension * SOAP_FMAC4 soap_get_tt__CertificateGenerationParametersExtension(struct soap*, tt__CertificateGenerationParametersExtension *, const char*, const char*); - -inline int soap_read_tt__CertificateGenerationParametersExtension(struct soap *soap, tt__CertificateGenerationParametersExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CertificateGenerationParametersExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CertificateGenerationParametersExtension(struct soap *soap, const char *URL, tt__CertificateGenerationParametersExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CertificateGenerationParametersExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CertificateGenerationParametersExtension(struct soap *soap, tt__CertificateGenerationParametersExtension *p) -{ - if (::soap_read_tt__CertificateGenerationParametersExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CertificateGenerationParameters_DEFINED -#define SOAP_TYPE_tt__CertificateGenerationParameters_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CertificateGenerationParameters(struct soap*, const char*, int, const tt__CertificateGenerationParameters *, const char*); -SOAP_FMAC3 tt__CertificateGenerationParameters * SOAP_FMAC4 soap_in_tt__CertificateGenerationParameters(struct soap*, const char*, tt__CertificateGenerationParameters *, const char*); -SOAP_FMAC1 tt__CertificateGenerationParameters * SOAP_FMAC2 soap_instantiate_tt__CertificateGenerationParameters(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CertificateGenerationParameters * soap_new_tt__CertificateGenerationParameters(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CertificateGenerationParameters(soap, n, NULL, NULL, NULL); -} - -inline tt__CertificateGenerationParameters * soap_new_req_tt__CertificateGenerationParameters( - struct soap *soap) -{ - tt__CertificateGenerationParameters *_p = ::soap_new_tt__CertificateGenerationParameters(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__CertificateGenerationParameters * soap_new_set_tt__CertificateGenerationParameters( - struct soap *soap, - std::string *CertificateID, - std::string *Subject, - std::string *ValidNotBefore, - std::string *ValidNotAfter, - tt__CertificateGenerationParametersExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__CertificateGenerationParameters *_p = ::soap_new_tt__CertificateGenerationParameters(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CertificateGenerationParameters::CertificateID = CertificateID; - _p->tt__CertificateGenerationParameters::Subject = Subject; - _p->tt__CertificateGenerationParameters::ValidNotBefore = ValidNotBefore; - _p->tt__CertificateGenerationParameters::ValidNotAfter = ValidNotAfter; - _p->tt__CertificateGenerationParameters::Extension = Extension; - _p->tt__CertificateGenerationParameters::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__CertificateGenerationParameters(struct soap *soap, tt__CertificateGenerationParameters const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CertificateGenerationParameters", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParameters ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CertificateGenerationParameters(struct soap *soap, const char *URL, tt__CertificateGenerationParameters 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, "tt:CertificateGenerationParameters", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParameters ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CertificateGenerationParameters(struct soap *soap, const char *URL, tt__CertificateGenerationParameters 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, "tt:CertificateGenerationParameters", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParameters ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CertificateGenerationParameters(struct soap *soap, const char *URL, tt__CertificateGenerationParameters 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, "tt:CertificateGenerationParameters", p->soap_type() == SOAP_TYPE_tt__CertificateGenerationParameters ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CertificateGenerationParameters * SOAP_FMAC4 soap_get_tt__CertificateGenerationParameters(struct soap*, tt__CertificateGenerationParameters *, const char*, const char*); - -inline int soap_read_tt__CertificateGenerationParameters(struct soap *soap, tt__CertificateGenerationParameters *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CertificateGenerationParameters(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CertificateGenerationParameters(struct soap *soap, const char *URL, tt__CertificateGenerationParameters *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CertificateGenerationParameters(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CertificateGenerationParameters(struct soap *soap, tt__CertificateGenerationParameters *p) -{ - if (::soap_read_tt__CertificateGenerationParameters(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__UserExtension_DEFINED -#define SOAP_TYPE_tt__UserExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__UserExtension(struct soap*, const char*, int, const tt__UserExtension *, const char*); -SOAP_FMAC3 tt__UserExtension * SOAP_FMAC4 soap_in_tt__UserExtension(struct soap*, const char*, tt__UserExtension *, const char*); -SOAP_FMAC1 tt__UserExtension * SOAP_FMAC2 soap_instantiate_tt__UserExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__UserExtension * soap_new_tt__UserExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__UserExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__UserExtension * soap_new_req_tt__UserExtension( - struct soap *soap) -{ - tt__UserExtension *_p = ::soap_new_tt__UserExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__UserExtension * soap_new_set_tt__UserExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__UserExtension *_p = ::soap_new_tt__UserExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__UserExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__UserExtension(struct soap *soap, tt__UserExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:UserExtension", p->soap_type() == SOAP_TYPE_tt__UserExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__UserExtension(struct soap *soap, const char *URL, tt__UserExtension 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, "tt:UserExtension", p->soap_type() == SOAP_TYPE_tt__UserExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__UserExtension(struct soap *soap, const char *URL, tt__UserExtension 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, "tt:UserExtension", p->soap_type() == SOAP_TYPE_tt__UserExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__UserExtension(struct soap *soap, const char *URL, tt__UserExtension 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, "tt:UserExtension", p->soap_type() == SOAP_TYPE_tt__UserExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__UserExtension * SOAP_FMAC4 soap_get_tt__UserExtension(struct soap*, tt__UserExtension *, const char*, const char*); - -inline int soap_read_tt__UserExtension(struct soap *soap, tt__UserExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__UserExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__UserExtension(struct soap *soap, const char *URL, tt__UserExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__UserExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__UserExtension(struct soap *soap, tt__UserExtension *p) -{ - if (::soap_read_tt__UserExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__User_DEFINED -#define SOAP_TYPE_tt__User_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__User(struct soap*, const char*, int, const tt__User *, const char*); -SOAP_FMAC3 tt__User * SOAP_FMAC4 soap_in_tt__User(struct soap*, const char*, tt__User *, const char*); -SOAP_FMAC1 tt__User * SOAP_FMAC2 soap_instantiate_tt__User(struct soap*, int, const char*, const char*, size_t*); - -inline tt__User * soap_new_tt__User(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__User(soap, n, NULL, NULL, NULL); -} - -inline tt__User * soap_new_req_tt__User( - struct soap *soap, - const std::string& Username, - enum tt__UserLevel UserLevel) -{ - tt__User *_p = ::soap_new_tt__User(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__User::Username = Username; - _p->tt__User::UserLevel = UserLevel; - } - return _p; -} - -inline tt__User * soap_new_set_tt__User( - struct soap *soap, - const std::string& Username, - std::string *Password, - enum tt__UserLevel UserLevel, - tt__UserExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__User *_p = ::soap_new_tt__User(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__User::Username = Username; - _p->tt__User::Password = Password; - _p->tt__User::UserLevel = UserLevel; - _p->tt__User::Extension = Extension; - _p->tt__User::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__User(struct soap *soap, tt__User const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:User", p->soap_type() == SOAP_TYPE_tt__User ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__User(struct soap *soap, const char *URL, tt__User 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, "tt:User", p->soap_type() == SOAP_TYPE_tt__User ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__User(struct soap *soap, const char *URL, tt__User 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, "tt:User", p->soap_type() == SOAP_TYPE_tt__User ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__User(struct soap *soap, const char *URL, tt__User 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, "tt:User", p->soap_type() == SOAP_TYPE_tt__User ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__User * SOAP_FMAC4 soap_get_tt__User(struct soap*, tt__User *, const char*, const char*); - -inline int soap_read_tt__User(struct soap *soap, tt__User *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__User(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__User(struct soap *soap, const char *URL, tt__User *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__User(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__User(struct soap *soap, tt__User *p) -{ - if (::soap_read_tt__User(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RemoteUser_DEFINED -#define SOAP_TYPE_tt__RemoteUser_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RemoteUser(struct soap*, const char*, int, const tt__RemoteUser *, const char*); -SOAP_FMAC3 tt__RemoteUser * SOAP_FMAC4 soap_in_tt__RemoteUser(struct soap*, const char*, tt__RemoteUser *, const char*); -SOAP_FMAC1 tt__RemoteUser * SOAP_FMAC2 soap_instantiate_tt__RemoteUser(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RemoteUser * soap_new_tt__RemoteUser(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RemoteUser(soap, n, NULL, NULL, NULL); -} - -inline tt__RemoteUser * soap_new_req_tt__RemoteUser( - struct soap *soap, - const std::string& Username, - bool UseDerivedPassword) -{ - tt__RemoteUser *_p = ::soap_new_tt__RemoteUser(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RemoteUser::Username = Username; - _p->tt__RemoteUser::UseDerivedPassword = UseDerivedPassword; - } - return _p; -} - -inline tt__RemoteUser * soap_new_set_tt__RemoteUser( - struct soap *soap, - const std::string& Username, - std::string *Password, - bool UseDerivedPassword, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RemoteUser *_p = ::soap_new_tt__RemoteUser(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RemoteUser::Username = Username; - _p->tt__RemoteUser::Password = Password; - _p->tt__RemoteUser::UseDerivedPassword = UseDerivedPassword; - _p->tt__RemoteUser::__any = __any; - _p->tt__RemoteUser::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RemoteUser(struct soap *soap, tt__RemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RemoteUser", p->soap_type() == SOAP_TYPE_tt__RemoteUser ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RemoteUser(struct soap *soap, const char *URL, tt__RemoteUser 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, "tt:RemoteUser", p->soap_type() == SOAP_TYPE_tt__RemoteUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RemoteUser(struct soap *soap, const char *URL, tt__RemoteUser 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, "tt:RemoteUser", p->soap_type() == SOAP_TYPE_tt__RemoteUser ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RemoteUser(struct soap *soap, const char *URL, tt__RemoteUser 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, "tt:RemoteUser", p->soap_type() == SOAP_TYPE_tt__RemoteUser ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RemoteUser * SOAP_FMAC4 soap_get_tt__RemoteUser(struct soap*, tt__RemoteUser *, const char*, const char*); - -inline int soap_read_tt__RemoteUser(struct soap *soap, tt__RemoteUser *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RemoteUser(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RemoteUser(struct soap *soap, const char *URL, tt__RemoteUser *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RemoteUser(struct soap *soap, tt__RemoteUser *p) -{ - if (::soap_read_tt__RemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TimeZone_DEFINED -#define SOAP_TYPE_tt__TimeZone_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TimeZone(struct soap*, const char*, int, const tt__TimeZone *, const char*); -SOAP_FMAC3 tt__TimeZone * SOAP_FMAC4 soap_in_tt__TimeZone(struct soap*, const char*, tt__TimeZone *, const char*); -SOAP_FMAC1 tt__TimeZone * SOAP_FMAC2 soap_instantiate_tt__TimeZone(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TimeZone * soap_new_tt__TimeZone(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TimeZone(soap, n, NULL, NULL, NULL); -} - -inline tt__TimeZone * soap_new_req_tt__TimeZone( - struct soap *soap, - const std::string& TZ) -{ - tt__TimeZone *_p = ::soap_new_tt__TimeZone(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TimeZone::TZ = TZ; - } - return _p; -} - -inline tt__TimeZone * soap_new_set_tt__TimeZone( - struct soap *soap, - const std::string& TZ) -{ - tt__TimeZone *_p = ::soap_new_tt__TimeZone(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TimeZone::TZ = TZ; - } - return _p; -} - -inline int soap_write_tt__TimeZone(struct soap *soap, tt__TimeZone const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TimeZone", p->soap_type() == SOAP_TYPE_tt__TimeZone ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TimeZone(struct soap *soap, const char *URL, tt__TimeZone 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, "tt:TimeZone", p->soap_type() == SOAP_TYPE_tt__TimeZone ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TimeZone(struct soap *soap, const char *URL, tt__TimeZone 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, "tt:TimeZone", p->soap_type() == SOAP_TYPE_tt__TimeZone ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TimeZone(struct soap *soap, const char *URL, tt__TimeZone 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, "tt:TimeZone", p->soap_type() == SOAP_TYPE_tt__TimeZone ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TimeZone * SOAP_FMAC4 soap_get_tt__TimeZone(struct soap*, tt__TimeZone *, const char*, const char*); - -inline int soap_read_tt__TimeZone(struct soap *soap, tt__TimeZone *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TimeZone(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TimeZone(struct soap *soap, const char *URL, tt__TimeZone *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TimeZone(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TimeZone(struct soap *soap, tt__TimeZone *p) -{ - if (::soap_read_tt__TimeZone(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Time_DEFINED -#define SOAP_TYPE_tt__Time_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Time(struct soap*, const char*, int, const tt__Time *, const char*); -SOAP_FMAC3 tt__Time * SOAP_FMAC4 soap_in_tt__Time(struct soap*, const char*, tt__Time *, const char*); -SOAP_FMAC1 tt__Time * SOAP_FMAC2 soap_instantiate_tt__Time(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Time * soap_new_tt__Time(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Time(soap, n, NULL, NULL, NULL); -} - -inline tt__Time * soap_new_req_tt__Time( - struct soap *soap, - int Hour, - int Minute, - int Second) -{ - tt__Time *_p = ::soap_new_tt__Time(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Time::Hour = Hour; - _p->tt__Time::Minute = Minute; - _p->tt__Time::Second = Second; - } - return _p; -} - -inline tt__Time * soap_new_set_tt__Time( - struct soap *soap, - int Hour, - int Minute, - int Second) -{ - tt__Time *_p = ::soap_new_tt__Time(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Time::Hour = Hour; - _p->tt__Time::Minute = Minute; - _p->tt__Time::Second = Second; - } - return _p; -} - -inline int soap_write_tt__Time(struct soap *soap, tt__Time const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Time", p->soap_type() == SOAP_TYPE_tt__Time ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Time(struct soap *soap, const char *URL, tt__Time 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, "tt:Time", p->soap_type() == SOAP_TYPE_tt__Time ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Time(struct soap *soap, const char *URL, tt__Time 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, "tt:Time", p->soap_type() == SOAP_TYPE_tt__Time ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Time(struct soap *soap, const char *URL, tt__Time 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, "tt:Time", p->soap_type() == SOAP_TYPE_tt__Time ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Time * SOAP_FMAC4 soap_get_tt__Time(struct soap*, tt__Time *, const char*, const char*); - -inline int soap_read_tt__Time(struct soap *soap, tt__Time *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Time(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Time(struct soap *soap, const char *URL, tt__Time *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Time(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Time(struct soap *soap, tt__Time *p) -{ - if (::soap_read_tt__Time(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Date_DEFINED -#define SOAP_TYPE_tt__Date_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Date(struct soap*, const char*, int, const tt__Date *, const char*); -SOAP_FMAC3 tt__Date * SOAP_FMAC4 soap_in_tt__Date(struct soap*, const char*, tt__Date *, const char*); -SOAP_FMAC1 tt__Date * SOAP_FMAC2 soap_instantiate_tt__Date(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Date * soap_new_tt__Date(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Date(soap, n, NULL, NULL, NULL); -} - -inline tt__Date * soap_new_req_tt__Date( - struct soap *soap, - int Year, - int Month, - int Day) -{ - tt__Date *_p = ::soap_new_tt__Date(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Date::Year = Year; - _p->tt__Date::Month = Month; - _p->tt__Date::Day = Day; - } - return _p; -} - -inline tt__Date * soap_new_set_tt__Date( - struct soap *soap, - int Year, - int Month, - int Day) -{ - tt__Date *_p = ::soap_new_tt__Date(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Date::Year = Year; - _p->tt__Date::Month = Month; - _p->tt__Date::Day = Day; - } - return _p; -} - -inline int soap_write_tt__Date(struct soap *soap, tt__Date const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Date", p->soap_type() == SOAP_TYPE_tt__Date ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Date(struct soap *soap, const char *URL, tt__Date 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, "tt:Date", p->soap_type() == SOAP_TYPE_tt__Date ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Date(struct soap *soap, const char *URL, tt__Date 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, "tt:Date", p->soap_type() == SOAP_TYPE_tt__Date ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Date(struct soap *soap, const char *URL, tt__Date 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, "tt:Date", p->soap_type() == SOAP_TYPE_tt__Date ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Date * SOAP_FMAC4 soap_get_tt__Date(struct soap*, tt__Date *, const char*, const char*); - -inline int soap_read_tt__Date(struct soap *soap, tt__Date *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Date(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Date(struct soap *soap, const char *URL, tt__Date *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Date(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Date(struct soap *soap, tt__Date *p) -{ - if (::soap_read_tt__Date(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DateTime_DEFINED -#define SOAP_TYPE_tt__DateTime_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DateTime(struct soap*, const char*, int, const tt__DateTime *, const char*); -SOAP_FMAC3 tt__DateTime * SOAP_FMAC4 soap_in_tt__DateTime(struct soap*, const char*, tt__DateTime *, const char*); -SOAP_FMAC1 tt__DateTime * SOAP_FMAC2 soap_instantiate_tt__DateTime(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DateTime * soap_new_tt__DateTime(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DateTime(soap, n, NULL, NULL, NULL); -} - -inline tt__DateTime * soap_new_req_tt__DateTime( - struct soap *soap, - tt__Time *Time, - tt__Date *Date) -{ - tt__DateTime *_p = ::soap_new_tt__DateTime(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DateTime::Time = Time; - _p->tt__DateTime::Date = Date; - } - return _p; -} - -inline tt__DateTime * soap_new_set_tt__DateTime( - struct soap *soap, - tt__Time *Time, - tt__Date *Date) -{ - tt__DateTime *_p = ::soap_new_tt__DateTime(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DateTime::Time = Time; - _p->tt__DateTime::Date = Date; - } - return _p; -} - -inline int soap_write_tt__DateTime(struct soap *soap, tt__DateTime const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DateTime", p->soap_type() == SOAP_TYPE_tt__DateTime ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DateTime(struct soap *soap, const char *URL, tt__DateTime 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, "tt:DateTime", p->soap_type() == SOAP_TYPE_tt__DateTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DateTime(struct soap *soap, const char *URL, tt__DateTime 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, "tt:DateTime", p->soap_type() == SOAP_TYPE_tt__DateTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DateTime(struct soap *soap, const char *URL, tt__DateTime 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, "tt:DateTime", p->soap_type() == SOAP_TYPE_tt__DateTime ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DateTime * SOAP_FMAC4 soap_get_tt__DateTime(struct soap*, tt__DateTime *, const char*, const char*); - -inline int soap_read_tt__DateTime(struct soap *soap, tt__DateTime *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DateTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DateTime(struct soap *soap, const char *URL, tt__DateTime *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DateTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DateTime(struct soap *soap, tt__DateTime *p) -{ - if (::soap_read_tt__DateTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemDateTimeExtension_DEFINED -#define SOAP_TYPE_tt__SystemDateTimeExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemDateTimeExtension(struct soap*, const char*, int, const tt__SystemDateTimeExtension *, const char*); -SOAP_FMAC3 tt__SystemDateTimeExtension * SOAP_FMAC4 soap_in_tt__SystemDateTimeExtension(struct soap*, const char*, tt__SystemDateTimeExtension *, const char*); -SOAP_FMAC1 tt__SystemDateTimeExtension * SOAP_FMAC2 soap_instantiate_tt__SystemDateTimeExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemDateTimeExtension * soap_new_tt__SystemDateTimeExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemDateTimeExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemDateTimeExtension * soap_new_req_tt__SystemDateTimeExtension( - struct soap *soap) -{ - tt__SystemDateTimeExtension *_p = ::soap_new_tt__SystemDateTimeExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SystemDateTimeExtension * soap_new_set_tt__SystemDateTimeExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__SystemDateTimeExtension *_p = ::soap_new_tt__SystemDateTimeExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemDateTimeExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__SystemDateTimeExtension(struct soap *soap, tt__SystemDateTimeExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemDateTimeExtension", p->soap_type() == SOAP_TYPE_tt__SystemDateTimeExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemDateTimeExtension(struct soap *soap, const char *URL, tt__SystemDateTimeExtension 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, "tt:SystemDateTimeExtension", p->soap_type() == SOAP_TYPE_tt__SystemDateTimeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemDateTimeExtension(struct soap *soap, const char *URL, tt__SystemDateTimeExtension 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, "tt:SystemDateTimeExtension", p->soap_type() == SOAP_TYPE_tt__SystemDateTimeExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemDateTimeExtension(struct soap *soap, const char *URL, tt__SystemDateTimeExtension 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, "tt:SystemDateTimeExtension", p->soap_type() == SOAP_TYPE_tt__SystemDateTimeExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemDateTimeExtension * SOAP_FMAC4 soap_get_tt__SystemDateTimeExtension(struct soap*, tt__SystemDateTimeExtension *, const char*, const char*); - -inline int soap_read_tt__SystemDateTimeExtension(struct soap *soap, tt__SystemDateTimeExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemDateTimeExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemDateTimeExtension(struct soap *soap, const char *URL, tt__SystemDateTimeExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemDateTimeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemDateTimeExtension(struct soap *soap, tt__SystemDateTimeExtension *p) -{ - if (::soap_read_tt__SystemDateTimeExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemDateTime_DEFINED -#define SOAP_TYPE_tt__SystemDateTime_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemDateTime(struct soap*, const char*, int, const tt__SystemDateTime *, const char*); -SOAP_FMAC3 tt__SystemDateTime * SOAP_FMAC4 soap_in_tt__SystemDateTime(struct soap*, const char*, tt__SystemDateTime *, const char*); -SOAP_FMAC1 tt__SystemDateTime * SOAP_FMAC2 soap_instantiate_tt__SystemDateTime(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemDateTime * soap_new_tt__SystemDateTime(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemDateTime(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemDateTime * soap_new_req_tt__SystemDateTime( - struct soap *soap, - enum tt__SetDateTimeType DateTimeType, - bool DaylightSavings) -{ - tt__SystemDateTime *_p = ::soap_new_tt__SystemDateTime(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemDateTime::DateTimeType = DateTimeType; - _p->tt__SystemDateTime::DaylightSavings = DaylightSavings; - } - return _p; -} - -inline tt__SystemDateTime * soap_new_set_tt__SystemDateTime( - struct soap *soap, - enum tt__SetDateTimeType DateTimeType, - bool DaylightSavings, - tt__TimeZone *TimeZone, - tt__DateTime *UTCDateTime, - tt__DateTime *LocalDateTime, - tt__SystemDateTimeExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SystemDateTime *_p = ::soap_new_tt__SystemDateTime(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemDateTime::DateTimeType = DateTimeType; - _p->tt__SystemDateTime::DaylightSavings = DaylightSavings; - _p->tt__SystemDateTime::TimeZone = TimeZone; - _p->tt__SystemDateTime::UTCDateTime = UTCDateTime; - _p->tt__SystemDateTime::LocalDateTime = LocalDateTime; - _p->tt__SystemDateTime::Extension = Extension; - _p->tt__SystemDateTime::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SystemDateTime(struct soap *soap, tt__SystemDateTime const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemDateTime", p->soap_type() == SOAP_TYPE_tt__SystemDateTime ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemDateTime(struct soap *soap, const char *URL, tt__SystemDateTime 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, "tt:SystemDateTime", p->soap_type() == SOAP_TYPE_tt__SystemDateTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemDateTime(struct soap *soap, const char *URL, tt__SystemDateTime 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, "tt:SystemDateTime", p->soap_type() == SOAP_TYPE_tt__SystemDateTime ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemDateTime(struct soap *soap, const char *URL, tt__SystemDateTime 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, "tt:SystemDateTime", p->soap_type() == SOAP_TYPE_tt__SystemDateTime ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemDateTime * SOAP_FMAC4 soap_get_tt__SystemDateTime(struct soap*, tt__SystemDateTime *, const char*, const char*); - -inline int soap_read_tt__SystemDateTime(struct soap *soap, tt__SystemDateTime *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemDateTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemDateTime(struct soap *soap, const char *URL, tt__SystemDateTime *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemDateTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemDateTime(struct soap *soap, tt__SystemDateTime *p) -{ - if (::soap_read_tt__SystemDateTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemLogUri_DEFINED -#define SOAP_TYPE_tt__SystemLogUri_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogUri(struct soap*, const char*, int, const tt__SystemLogUri *, const char*); -SOAP_FMAC3 tt__SystemLogUri * SOAP_FMAC4 soap_in_tt__SystemLogUri(struct soap*, const char*, tt__SystemLogUri *, const char*); -SOAP_FMAC1 tt__SystemLogUri * SOAP_FMAC2 soap_instantiate_tt__SystemLogUri(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemLogUri * soap_new_tt__SystemLogUri(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemLogUri(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemLogUri * soap_new_req_tt__SystemLogUri( - struct soap *soap, - enum tt__SystemLogType Type, - const std::string& Uri) -{ - tt__SystemLogUri *_p = ::soap_new_tt__SystemLogUri(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemLogUri::Type = Type; - _p->tt__SystemLogUri::Uri = Uri; - } - return _p; -} - -inline tt__SystemLogUri * soap_new_set_tt__SystemLogUri( - struct soap *soap, - enum tt__SystemLogType Type, - const std::string& Uri, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SystemLogUri *_p = ::soap_new_tt__SystemLogUri(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemLogUri::Type = Type; - _p->tt__SystemLogUri::Uri = Uri; - _p->tt__SystemLogUri::__any = __any; - _p->tt__SystemLogUri::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SystemLogUri(struct soap *soap, tt__SystemLogUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemLogUri", p->soap_type() == SOAP_TYPE_tt__SystemLogUri ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemLogUri(struct soap *soap, const char *URL, tt__SystemLogUri 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, "tt:SystemLogUri", p->soap_type() == SOAP_TYPE_tt__SystemLogUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemLogUri(struct soap *soap, const char *URL, tt__SystemLogUri 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, "tt:SystemLogUri", p->soap_type() == SOAP_TYPE_tt__SystemLogUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemLogUri(struct soap *soap, const char *URL, tt__SystemLogUri 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, "tt:SystemLogUri", p->soap_type() == SOAP_TYPE_tt__SystemLogUri ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemLogUri * SOAP_FMAC4 soap_get_tt__SystemLogUri(struct soap*, tt__SystemLogUri *, const char*, const char*); - -inline int soap_read_tt__SystemLogUri(struct soap *soap, tt__SystemLogUri *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemLogUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemLogUri(struct soap *soap, const char *URL, tt__SystemLogUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemLogUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemLogUri(struct soap *soap, tt__SystemLogUri *p) -{ - if (::soap_read_tt__SystemLogUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemLogUriList_DEFINED -#define SOAP_TYPE_tt__SystemLogUriList_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLogUriList(struct soap*, const char*, int, const tt__SystemLogUriList *, const char*); -SOAP_FMAC3 tt__SystemLogUriList * SOAP_FMAC4 soap_in_tt__SystemLogUriList(struct soap*, const char*, tt__SystemLogUriList *, const char*); -SOAP_FMAC1 tt__SystemLogUriList * SOAP_FMAC2 soap_instantiate_tt__SystemLogUriList(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemLogUriList * soap_new_tt__SystemLogUriList(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemLogUriList(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemLogUriList * soap_new_req_tt__SystemLogUriList( - struct soap *soap) -{ - tt__SystemLogUriList *_p = ::soap_new_tt__SystemLogUriList(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SystemLogUriList * soap_new_set_tt__SystemLogUriList( - struct soap *soap, - const std::vector & SystemLog) -{ - tt__SystemLogUriList *_p = ::soap_new_tt__SystemLogUriList(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemLogUriList::SystemLog = SystemLog; - } - return _p; -} - -inline int soap_write_tt__SystemLogUriList(struct soap *soap, tt__SystemLogUriList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemLogUriList", p->soap_type() == SOAP_TYPE_tt__SystemLogUriList ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemLogUriList(struct soap *soap, const char *URL, tt__SystemLogUriList 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, "tt:SystemLogUriList", p->soap_type() == SOAP_TYPE_tt__SystemLogUriList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemLogUriList(struct soap *soap, const char *URL, tt__SystemLogUriList 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, "tt:SystemLogUriList", p->soap_type() == SOAP_TYPE_tt__SystemLogUriList ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemLogUriList(struct soap *soap, const char *URL, tt__SystemLogUriList 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, "tt:SystemLogUriList", p->soap_type() == SOAP_TYPE_tt__SystemLogUriList ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemLogUriList * SOAP_FMAC4 soap_get_tt__SystemLogUriList(struct soap*, tt__SystemLogUriList *, const char*, const char*); - -inline int soap_read_tt__SystemLogUriList(struct soap *soap, tt__SystemLogUriList *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemLogUriList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemLogUriList(struct soap *soap, const char *URL, tt__SystemLogUriList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemLogUriList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemLogUriList(struct soap *soap, tt__SystemLogUriList *p) -{ - if (::soap_read_tt__SystemLogUriList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BackupFile_DEFINED -#define SOAP_TYPE_tt__BackupFile_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BackupFile(struct soap*, const char*, int, const tt__BackupFile *, const char*); -SOAP_FMAC3 tt__BackupFile * SOAP_FMAC4 soap_in_tt__BackupFile(struct soap*, const char*, tt__BackupFile *, const char*); -SOAP_FMAC1 tt__BackupFile * SOAP_FMAC2 soap_instantiate_tt__BackupFile(struct soap*, int, const char*, const char*, size_t*); - -inline tt__BackupFile * soap_new_tt__BackupFile(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__BackupFile(soap, n, NULL, NULL, NULL); -} - -inline tt__BackupFile * soap_new_req_tt__BackupFile( - struct soap *soap, - const std::string& Name, - tt__AttachmentData *Data) -{ - tt__BackupFile *_p = ::soap_new_tt__BackupFile(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BackupFile::Name = Name; - _p->tt__BackupFile::Data = Data; - } - return _p; -} - -inline tt__BackupFile * soap_new_set_tt__BackupFile( - struct soap *soap, - const std::string& Name, - tt__AttachmentData *Data) -{ - tt__BackupFile *_p = ::soap_new_tt__BackupFile(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BackupFile::Name = Name; - _p->tt__BackupFile::Data = Data; - } - return _p; -} - -inline int soap_write_tt__BackupFile(struct soap *soap, tt__BackupFile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:BackupFile", p->soap_type() == SOAP_TYPE_tt__BackupFile ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__BackupFile(struct soap *soap, const char *URL, tt__BackupFile 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, "tt:BackupFile", p->soap_type() == SOAP_TYPE_tt__BackupFile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BackupFile(struct soap *soap, const char *URL, tt__BackupFile 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, "tt:BackupFile", p->soap_type() == SOAP_TYPE_tt__BackupFile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BackupFile(struct soap *soap, const char *URL, tt__BackupFile 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, "tt:BackupFile", p->soap_type() == SOAP_TYPE_tt__BackupFile ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__BackupFile * SOAP_FMAC4 soap_get_tt__BackupFile(struct soap*, tt__BackupFile *, const char*, const char*); - -inline int soap_read_tt__BackupFile(struct soap *soap, tt__BackupFile *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__BackupFile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BackupFile(struct soap *soap, const char *URL, tt__BackupFile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BackupFile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BackupFile(struct soap *soap, tt__BackupFile *p) -{ - if (::soap_read_tt__BackupFile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AttachmentData_DEFINED -#define SOAP_TYPE_tt__AttachmentData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AttachmentData(struct soap*, const char*, int, const tt__AttachmentData *, const char*); -SOAP_FMAC3 tt__AttachmentData * SOAP_FMAC4 soap_in_tt__AttachmentData(struct soap*, const char*, tt__AttachmentData *, const char*); -SOAP_FMAC1 tt__AttachmentData * SOAP_FMAC2 soap_instantiate_tt__AttachmentData(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AttachmentData * soap_new_tt__AttachmentData(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AttachmentData(soap, n, NULL, NULL, NULL); -} - -inline tt__AttachmentData * soap_new_req_tt__AttachmentData( - struct soap *soap, - xop__Include *xop__Include_) -{ - tt__AttachmentData *_p = ::soap_new_tt__AttachmentData(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AttachmentData::xop__Include_ = xop__Include_; - } - return _p; -} - -inline tt__AttachmentData * soap_new_set_tt__AttachmentData( - struct soap *soap, - xop__Include *xop__Include_, - std::string *xmime__contentType) -{ - tt__AttachmentData *_p = ::soap_new_tt__AttachmentData(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AttachmentData::xop__Include_ = xop__Include_; - _p->tt__AttachmentData::xmime__contentType = xmime__contentType; - } - return _p; -} - -inline int soap_write_tt__AttachmentData(struct soap *soap, tt__AttachmentData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AttachmentData", p->soap_type() == SOAP_TYPE_tt__AttachmentData ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AttachmentData(struct soap *soap, const char *URL, tt__AttachmentData 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, "tt:AttachmentData", p->soap_type() == SOAP_TYPE_tt__AttachmentData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AttachmentData(struct soap *soap, const char *URL, tt__AttachmentData 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, "tt:AttachmentData", p->soap_type() == SOAP_TYPE_tt__AttachmentData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AttachmentData(struct soap *soap, const char *URL, tt__AttachmentData 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, "tt:AttachmentData", p->soap_type() == SOAP_TYPE_tt__AttachmentData ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AttachmentData * SOAP_FMAC4 soap_get_tt__AttachmentData(struct soap*, tt__AttachmentData *, const char*, const char*); - -inline int soap_read_tt__AttachmentData(struct soap *soap, tt__AttachmentData *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AttachmentData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AttachmentData(struct soap *soap, const char *URL, tt__AttachmentData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AttachmentData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AttachmentData(struct soap *soap, tt__AttachmentData *p) -{ - if (::soap_read_tt__AttachmentData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__BinaryData_DEFINED -#define SOAP_TYPE_tt__BinaryData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__BinaryData(struct soap*, const char*, int, const tt__BinaryData *, const char*); -SOAP_FMAC3 tt__BinaryData * SOAP_FMAC4 soap_in_tt__BinaryData(struct soap*, const char*, tt__BinaryData *, const char*); -SOAP_FMAC1 tt__BinaryData * SOAP_FMAC2 soap_instantiate_tt__BinaryData(struct soap*, int, const char*, const char*, size_t*); - -inline tt__BinaryData * soap_new_tt__BinaryData(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__BinaryData(soap, n, NULL, NULL, NULL); -} - -inline tt__BinaryData * soap_new_req_tt__BinaryData( - struct soap *soap, - const xsd__base64Binary& Data) -{ - tt__BinaryData *_p = ::soap_new_tt__BinaryData(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BinaryData::Data = Data; - } - return _p; -} - -inline tt__BinaryData * soap_new_set_tt__BinaryData( - struct soap *soap, - const xsd__base64Binary& Data, - std::string *xmime__contentType) -{ - tt__BinaryData *_p = ::soap_new_tt__BinaryData(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__BinaryData::Data = Data; - _p->tt__BinaryData::xmime__contentType = xmime__contentType; - } - return _p; -} - -inline int soap_write_tt__BinaryData(struct soap *soap, tt__BinaryData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:BinaryData", p->soap_type() == SOAP_TYPE_tt__BinaryData ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__BinaryData(struct soap *soap, const char *URL, tt__BinaryData 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, "tt:BinaryData", p->soap_type() == SOAP_TYPE_tt__BinaryData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__BinaryData(struct soap *soap, const char *URL, tt__BinaryData 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, "tt:BinaryData", p->soap_type() == SOAP_TYPE_tt__BinaryData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__BinaryData(struct soap *soap, const char *URL, tt__BinaryData 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, "tt:BinaryData", p->soap_type() == SOAP_TYPE_tt__BinaryData ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__BinaryData * SOAP_FMAC4 soap_get_tt__BinaryData(struct soap*, tt__BinaryData *, const char*, const char*); - -inline int soap_read_tt__BinaryData(struct soap *soap, tt__BinaryData *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__BinaryData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__BinaryData(struct soap *soap, const char *URL, tt__BinaryData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__BinaryData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__BinaryData(struct soap *soap, tt__BinaryData *p) -{ - if (::soap_read_tt__BinaryData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SupportInformation_DEFINED -#define SOAP_TYPE_tt__SupportInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SupportInformation(struct soap*, const char*, int, const tt__SupportInformation *, const char*); -SOAP_FMAC3 tt__SupportInformation * SOAP_FMAC4 soap_in_tt__SupportInformation(struct soap*, const char*, tt__SupportInformation *, const char*); -SOAP_FMAC1 tt__SupportInformation * SOAP_FMAC2 soap_instantiate_tt__SupportInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SupportInformation * soap_new_tt__SupportInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SupportInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__SupportInformation * soap_new_req_tt__SupportInformation( - struct soap *soap) -{ - tt__SupportInformation *_p = ::soap_new_tt__SupportInformation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SupportInformation * soap_new_set_tt__SupportInformation( - struct soap *soap, - tt__AttachmentData *Binary, - std::string *String) -{ - tt__SupportInformation *_p = ::soap_new_tt__SupportInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SupportInformation::Binary = Binary; - _p->tt__SupportInformation::String = String; - } - return _p; -} - -inline int soap_write_tt__SupportInformation(struct soap *soap, tt__SupportInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SupportInformation", p->soap_type() == SOAP_TYPE_tt__SupportInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SupportInformation(struct soap *soap, const char *URL, tt__SupportInformation 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, "tt:SupportInformation", p->soap_type() == SOAP_TYPE_tt__SupportInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SupportInformation(struct soap *soap, const char *URL, tt__SupportInformation 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, "tt:SupportInformation", p->soap_type() == SOAP_TYPE_tt__SupportInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SupportInformation(struct soap *soap, const char *URL, tt__SupportInformation 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, "tt:SupportInformation", p->soap_type() == SOAP_TYPE_tt__SupportInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SupportInformation * SOAP_FMAC4 soap_get_tt__SupportInformation(struct soap*, tt__SupportInformation *, const char*, const char*); - -inline int soap_read_tt__SupportInformation(struct soap *soap, tt__SupportInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SupportInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SupportInformation(struct soap *soap, const char *URL, tt__SupportInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SupportInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SupportInformation(struct soap *soap, tt__SupportInformation *p) -{ - if (::soap_read_tt__SupportInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemLog_DEFINED -#define SOAP_TYPE_tt__SystemLog_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemLog(struct soap*, const char*, int, const tt__SystemLog *, const char*); -SOAP_FMAC3 tt__SystemLog * SOAP_FMAC4 soap_in_tt__SystemLog(struct soap*, const char*, tt__SystemLog *, const char*); -SOAP_FMAC1 tt__SystemLog * SOAP_FMAC2 soap_instantiate_tt__SystemLog(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemLog * soap_new_tt__SystemLog(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemLog(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemLog * soap_new_req_tt__SystemLog( - struct soap *soap) -{ - tt__SystemLog *_p = ::soap_new_tt__SystemLog(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SystemLog * soap_new_set_tt__SystemLog( - struct soap *soap, - tt__AttachmentData *Binary, - std::string *String) -{ - tt__SystemLog *_p = ::soap_new_tt__SystemLog(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemLog::Binary = Binary; - _p->tt__SystemLog::String = String; - } - return _p; -} - -inline int soap_write_tt__SystemLog(struct soap *soap, tt__SystemLog const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemLog", p->soap_type() == SOAP_TYPE_tt__SystemLog ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemLog(struct soap *soap, const char *URL, tt__SystemLog 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, "tt:SystemLog", p->soap_type() == SOAP_TYPE_tt__SystemLog ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemLog(struct soap *soap, const char *URL, tt__SystemLog 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, "tt:SystemLog", p->soap_type() == SOAP_TYPE_tt__SystemLog ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemLog(struct soap *soap, const char *URL, tt__SystemLog 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, "tt:SystemLog", p->soap_type() == SOAP_TYPE_tt__SystemLog ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemLog * SOAP_FMAC4 soap_get_tt__SystemLog(struct soap*, tt__SystemLog *, const char*, const char*); - -inline int soap_read_tt__SystemLog(struct soap *soap, tt__SystemLog *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemLog(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemLog(struct soap *soap, const char *URL, tt__SystemLog *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemLog(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemLog(struct soap *soap, tt__SystemLog *p) -{ - if (::soap_read_tt__SystemLog(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsDeviceExtension_DEFINED -#define SOAP_TYPE_tt__AnalyticsDeviceExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceExtension(struct soap*, const char*, int, const tt__AnalyticsDeviceExtension *, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceExtension * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceExtension(struct soap*, const char*, tt__AnalyticsDeviceExtension *, const char*); -SOAP_FMAC1 tt__AnalyticsDeviceExtension * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsDeviceExtension * soap_new_tt__AnalyticsDeviceExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsDeviceExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsDeviceExtension * soap_new_req_tt__AnalyticsDeviceExtension( - struct soap *soap) -{ - tt__AnalyticsDeviceExtension *_p = ::soap_new_tt__AnalyticsDeviceExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AnalyticsDeviceExtension * soap_new_set_tt__AnalyticsDeviceExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__AnalyticsDeviceExtension *_p = ::soap_new_tt__AnalyticsDeviceExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsDeviceExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__AnalyticsDeviceExtension(struct soap *soap, tt__AnalyticsDeviceExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsDeviceExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsDeviceExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceExtension 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, "tt:AnalyticsDeviceExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsDeviceExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceExtension 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, "tt:AnalyticsDeviceExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsDeviceExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceExtension 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, "tt:AnalyticsDeviceExtension", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsDeviceExtension * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceExtension(struct soap*, tt__AnalyticsDeviceExtension *, const char*, const char*); - -inline int soap_read_tt__AnalyticsDeviceExtension(struct soap *soap, tt__AnalyticsDeviceExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsDeviceExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsDeviceExtension(struct soap *soap, const char *URL, tt__AnalyticsDeviceExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsDeviceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsDeviceExtension(struct soap *soap, tt__AnalyticsDeviceExtension *p) -{ - if (::soap_read_tt__AnalyticsDeviceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsDeviceCapabilities_DEFINED -#define SOAP_TYPE_tt__AnalyticsDeviceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsDeviceCapabilities(struct soap*, const char*, int, const tt__AnalyticsDeviceCapabilities *, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceCapabilities * SOAP_FMAC4 soap_in_tt__AnalyticsDeviceCapabilities(struct soap*, const char*, tt__AnalyticsDeviceCapabilities *, const char*); -SOAP_FMAC1 tt__AnalyticsDeviceCapabilities * SOAP_FMAC2 soap_instantiate_tt__AnalyticsDeviceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsDeviceCapabilities * soap_new_tt__AnalyticsDeviceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsDeviceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsDeviceCapabilities * soap_new_req_tt__AnalyticsDeviceCapabilities( - struct soap *soap, - const std::string& XAddr) -{ - tt__AnalyticsDeviceCapabilities *_p = ::soap_new_tt__AnalyticsDeviceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsDeviceCapabilities::XAddr = XAddr; - } - return _p; -} - -inline tt__AnalyticsDeviceCapabilities * soap_new_set_tt__AnalyticsDeviceCapabilities( - struct soap *soap, - const std::string& XAddr, - bool *RuleSupport, - tt__AnalyticsDeviceExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnalyticsDeviceCapabilities *_p = ::soap_new_tt__AnalyticsDeviceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsDeviceCapabilities::XAddr = XAddr; - _p->tt__AnalyticsDeviceCapabilities::RuleSupport = RuleSupport; - _p->tt__AnalyticsDeviceCapabilities::Extension = Extension; - _p->tt__AnalyticsDeviceCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnalyticsDeviceCapabilities(struct soap *soap, tt__AnalyticsDeviceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsDeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsDeviceCapabilities(struct soap *soap, const char *URL, tt__AnalyticsDeviceCapabilities 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, "tt:AnalyticsDeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsDeviceCapabilities(struct soap *soap, const char *URL, tt__AnalyticsDeviceCapabilities 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, "tt:AnalyticsDeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsDeviceCapabilities(struct soap *soap, const char *URL, tt__AnalyticsDeviceCapabilities 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, "tt:AnalyticsDeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsDeviceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsDeviceCapabilities * SOAP_FMAC4 soap_get_tt__AnalyticsDeviceCapabilities(struct soap*, tt__AnalyticsDeviceCapabilities *, const char*, const char*); - -inline int soap_read_tt__AnalyticsDeviceCapabilities(struct soap *soap, tt__AnalyticsDeviceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsDeviceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsDeviceCapabilities(struct soap *soap, const char *URL, tt__AnalyticsDeviceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsDeviceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsDeviceCapabilities(struct soap *soap, tt__AnalyticsDeviceCapabilities *p) -{ - if (::soap_read_tt__AnalyticsDeviceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReceiverCapabilities_DEFINED -#define SOAP_TYPE_tt__ReceiverCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReceiverCapabilities(struct soap*, const char*, int, const tt__ReceiverCapabilities *, const char*); -SOAP_FMAC3 tt__ReceiverCapabilities * SOAP_FMAC4 soap_in_tt__ReceiverCapabilities(struct soap*, const char*, tt__ReceiverCapabilities *, const char*); -SOAP_FMAC1 tt__ReceiverCapabilities * SOAP_FMAC2 soap_instantiate_tt__ReceiverCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReceiverCapabilities * soap_new_tt__ReceiverCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReceiverCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__ReceiverCapabilities * soap_new_req_tt__ReceiverCapabilities( - struct soap *soap, - const std::string& XAddr, - bool RTP_USCOREMulticast, - bool RTP_USCORETCP, - bool RTP_USCORERTSP_USCORETCP, - int SupportedReceivers, - int MaximumRTSPURILength) -{ - tt__ReceiverCapabilities *_p = ::soap_new_tt__ReceiverCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverCapabilities::XAddr = XAddr; - _p->tt__ReceiverCapabilities::RTP_USCOREMulticast = RTP_USCOREMulticast; - _p->tt__ReceiverCapabilities::RTP_USCORETCP = RTP_USCORETCP; - _p->tt__ReceiverCapabilities::RTP_USCORERTSP_USCORETCP = RTP_USCORERTSP_USCORETCP; - _p->tt__ReceiverCapabilities::SupportedReceivers = SupportedReceivers; - _p->tt__ReceiverCapabilities::MaximumRTSPURILength = MaximumRTSPURILength; - } - return _p; -} - -inline tt__ReceiverCapabilities * soap_new_set_tt__ReceiverCapabilities( - struct soap *soap, - const std::string& XAddr, - bool RTP_USCOREMulticast, - bool RTP_USCORETCP, - bool RTP_USCORERTSP_USCORETCP, - int SupportedReceivers, - int MaximumRTSPURILength, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ReceiverCapabilities *_p = ::soap_new_tt__ReceiverCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReceiverCapabilities::XAddr = XAddr; - _p->tt__ReceiverCapabilities::RTP_USCOREMulticast = RTP_USCOREMulticast; - _p->tt__ReceiverCapabilities::RTP_USCORETCP = RTP_USCORETCP; - _p->tt__ReceiverCapabilities::RTP_USCORERTSP_USCORETCP = RTP_USCORERTSP_USCORETCP; - _p->tt__ReceiverCapabilities::SupportedReceivers = SupportedReceivers; - _p->tt__ReceiverCapabilities::MaximumRTSPURILength = MaximumRTSPURILength; - _p->tt__ReceiverCapabilities::__any = __any; - _p->tt__ReceiverCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ReceiverCapabilities(struct soap *soap, tt__ReceiverCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReceiverCapabilities", p->soap_type() == SOAP_TYPE_tt__ReceiverCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReceiverCapabilities(struct soap *soap, const char *URL, tt__ReceiverCapabilities 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, "tt:ReceiverCapabilities", p->soap_type() == SOAP_TYPE_tt__ReceiverCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReceiverCapabilities(struct soap *soap, const char *URL, tt__ReceiverCapabilities 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, "tt:ReceiverCapabilities", p->soap_type() == SOAP_TYPE_tt__ReceiverCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReceiverCapabilities(struct soap *soap, const char *URL, tt__ReceiverCapabilities 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, "tt:ReceiverCapabilities", p->soap_type() == SOAP_TYPE_tt__ReceiverCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReceiverCapabilities * SOAP_FMAC4 soap_get_tt__ReceiverCapabilities(struct soap*, tt__ReceiverCapabilities *, const char*, const char*); - -inline int soap_read_tt__ReceiverCapabilities(struct soap *soap, tt__ReceiverCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReceiverCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReceiverCapabilities(struct soap *soap, const char *URL, tt__ReceiverCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReceiverCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReceiverCapabilities(struct soap *soap, tt__ReceiverCapabilities *p) -{ - if (::soap_read_tt__ReceiverCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ReplayCapabilities_DEFINED -#define SOAP_TYPE_tt__ReplayCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ReplayCapabilities(struct soap*, const char*, int, const tt__ReplayCapabilities *, const char*); -SOAP_FMAC3 tt__ReplayCapabilities * SOAP_FMAC4 soap_in_tt__ReplayCapabilities(struct soap*, const char*, tt__ReplayCapabilities *, const char*); -SOAP_FMAC1 tt__ReplayCapabilities * SOAP_FMAC2 soap_instantiate_tt__ReplayCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ReplayCapabilities * soap_new_tt__ReplayCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ReplayCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__ReplayCapabilities * soap_new_req_tt__ReplayCapabilities( - struct soap *soap, - const std::string& XAddr) -{ - tt__ReplayCapabilities *_p = ::soap_new_tt__ReplayCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReplayCapabilities::XAddr = XAddr; - } - return _p; -} - -inline tt__ReplayCapabilities * soap_new_set_tt__ReplayCapabilities( - struct soap *soap, - const std::string& XAddr, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ReplayCapabilities *_p = ::soap_new_tt__ReplayCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ReplayCapabilities::XAddr = XAddr; - _p->tt__ReplayCapabilities::__any = __any; - _p->tt__ReplayCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ReplayCapabilities(struct soap *soap, tt__ReplayCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ReplayCapabilities", p->soap_type() == SOAP_TYPE_tt__ReplayCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ReplayCapabilities(struct soap *soap, const char *URL, tt__ReplayCapabilities 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, "tt:ReplayCapabilities", p->soap_type() == SOAP_TYPE_tt__ReplayCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ReplayCapabilities(struct soap *soap, const char *URL, tt__ReplayCapabilities 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, "tt:ReplayCapabilities", p->soap_type() == SOAP_TYPE_tt__ReplayCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ReplayCapabilities(struct soap *soap, const char *URL, tt__ReplayCapabilities 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, "tt:ReplayCapabilities", p->soap_type() == SOAP_TYPE_tt__ReplayCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ReplayCapabilities * SOAP_FMAC4 soap_get_tt__ReplayCapabilities(struct soap*, tt__ReplayCapabilities *, const char*, const char*); - -inline int soap_read_tt__ReplayCapabilities(struct soap *soap, tt__ReplayCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ReplayCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ReplayCapabilities(struct soap *soap, const char *URL, tt__ReplayCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ReplayCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ReplayCapabilities(struct soap *soap, tt__ReplayCapabilities *p) -{ - if (::soap_read_tt__ReplayCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SearchCapabilities_DEFINED -#define SOAP_TYPE_tt__SearchCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SearchCapabilities(struct soap*, const char*, int, const tt__SearchCapabilities *, const char*); -SOAP_FMAC3 tt__SearchCapabilities * SOAP_FMAC4 soap_in_tt__SearchCapabilities(struct soap*, const char*, tt__SearchCapabilities *, const char*); -SOAP_FMAC1 tt__SearchCapabilities * SOAP_FMAC2 soap_instantiate_tt__SearchCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SearchCapabilities * soap_new_tt__SearchCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SearchCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__SearchCapabilities * soap_new_req_tt__SearchCapabilities( - struct soap *soap, - const std::string& XAddr, - bool MetadataSearch) -{ - tt__SearchCapabilities *_p = ::soap_new_tt__SearchCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SearchCapabilities::XAddr = XAddr; - _p->tt__SearchCapabilities::MetadataSearch = MetadataSearch; - } - return _p; -} - -inline tt__SearchCapabilities * soap_new_set_tt__SearchCapabilities( - struct soap *soap, - const std::string& XAddr, - bool MetadataSearch, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SearchCapabilities *_p = ::soap_new_tt__SearchCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SearchCapabilities::XAddr = XAddr; - _p->tt__SearchCapabilities::MetadataSearch = MetadataSearch; - _p->tt__SearchCapabilities::__any = __any; - _p->tt__SearchCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SearchCapabilities(struct soap *soap, tt__SearchCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SearchCapabilities", p->soap_type() == SOAP_TYPE_tt__SearchCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SearchCapabilities(struct soap *soap, const char *URL, tt__SearchCapabilities 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, "tt:SearchCapabilities", p->soap_type() == SOAP_TYPE_tt__SearchCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SearchCapabilities(struct soap *soap, const char *URL, tt__SearchCapabilities 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, "tt:SearchCapabilities", p->soap_type() == SOAP_TYPE_tt__SearchCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SearchCapabilities(struct soap *soap, const char *URL, tt__SearchCapabilities 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, "tt:SearchCapabilities", p->soap_type() == SOAP_TYPE_tt__SearchCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SearchCapabilities * SOAP_FMAC4 soap_get_tt__SearchCapabilities(struct soap*, tt__SearchCapabilities *, const char*, const char*); - -inline int soap_read_tt__SearchCapabilities(struct soap *soap, tt__SearchCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SearchCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SearchCapabilities(struct soap *soap, const char *URL, tt__SearchCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SearchCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SearchCapabilities(struct soap *soap, tt__SearchCapabilities *p) -{ - if (::soap_read_tt__SearchCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RecordingCapabilities_DEFINED -#define SOAP_TYPE_tt__RecordingCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RecordingCapabilities(struct soap*, const char*, int, const tt__RecordingCapabilities *, const char*); -SOAP_FMAC3 tt__RecordingCapabilities * SOAP_FMAC4 soap_in_tt__RecordingCapabilities(struct soap*, const char*, tt__RecordingCapabilities *, const char*); -SOAP_FMAC1 tt__RecordingCapabilities * SOAP_FMAC2 soap_instantiate_tt__RecordingCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RecordingCapabilities * soap_new_tt__RecordingCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RecordingCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__RecordingCapabilities * soap_new_req_tt__RecordingCapabilities( - struct soap *soap, - const std::string& XAddr, - bool ReceiverSource, - bool MediaProfileSource, - bool DynamicRecordings, - bool DynamicTracks, - int MaxStringLength) -{ - tt__RecordingCapabilities *_p = ::soap_new_tt__RecordingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingCapabilities::XAddr = XAddr; - _p->tt__RecordingCapabilities::ReceiverSource = ReceiverSource; - _p->tt__RecordingCapabilities::MediaProfileSource = MediaProfileSource; - _p->tt__RecordingCapabilities::DynamicRecordings = DynamicRecordings; - _p->tt__RecordingCapabilities::DynamicTracks = DynamicTracks; - _p->tt__RecordingCapabilities::MaxStringLength = MaxStringLength; - } - return _p; -} - -inline tt__RecordingCapabilities * soap_new_set_tt__RecordingCapabilities( - struct soap *soap, - const std::string& XAddr, - bool ReceiverSource, - bool MediaProfileSource, - bool DynamicRecordings, - bool DynamicTracks, - int MaxStringLength, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RecordingCapabilities *_p = ::soap_new_tt__RecordingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RecordingCapabilities::XAddr = XAddr; - _p->tt__RecordingCapabilities::ReceiverSource = ReceiverSource; - _p->tt__RecordingCapabilities::MediaProfileSource = MediaProfileSource; - _p->tt__RecordingCapabilities::DynamicRecordings = DynamicRecordings; - _p->tt__RecordingCapabilities::DynamicTracks = DynamicTracks; - _p->tt__RecordingCapabilities::MaxStringLength = MaxStringLength; - _p->tt__RecordingCapabilities::__any = __any; - _p->tt__RecordingCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RecordingCapabilities(struct soap *soap, tt__RecordingCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RecordingCapabilities", p->soap_type() == SOAP_TYPE_tt__RecordingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RecordingCapabilities(struct soap *soap, const char *URL, tt__RecordingCapabilities 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, "tt:RecordingCapabilities", p->soap_type() == SOAP_TYPE_tt__RecordingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RecordingCapabilities(struct soap *soap, const char *URL, tt__RecordingCapabilities 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, "tt:RecordingCapabilities", p->soap_type() == SOAP_TYPE_tt__RecordingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RecordingCapabilities(struct soap *soap, const char *URL, tt__RecordingCapabilities 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, "tt:RecordingCapabilities", p->soap_type() == SOAP_TYPE_tt__RecordingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RecordingCapabilities * SOAP_FMAC4 soap_get_tt__RecordingCapabilities(struct soap*, tt__RecordingCapabilities *, const char*, const char*); - -inline int soap_read_tt__RecordingCapabilities(struct soap *soap, tt__RecordingCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RecordingCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RecordingCapabilities(struct soap *soap, const char *URL, tt__RecordingCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RecordingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RecordingCapabilities(struct soap *soap, tt__RecordingCapabilities *p) -{ - if (::soap_read_tt__RecordingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DisplayCapabilities_DEFINED -#define SOAP_TYPE_tt__DisplayCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DisplayCapabilities(struct soap*, const char*, int, const tt__DisplayCapabilities *, const char*); -SOAP_FMAC3 tt__DisplayCapabilities * SOAP_FMAC4 soap_in_tt__DisplayCapabilities(struct soap*, const char*, tt__DisplayCapabilities *, const char*); -SOAP_FMAC1 tt__DisplayCapabilities * SOAP_FMAC2 soap_instantiate_tt__DisplayCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DisplayCapabilities * soap_new_tt__DisplayCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DisplayCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__DisplayCapabilities * soap_new_req_tt__DisplayCapabilities( - struct soap *soap, - const std::string& XAddr, - bool FixedLayout) -{ - tt__DisplayCapabilities *_p = ::soap_new_tt__DisplayCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DisplayCapabilities::XAddr = XAddr; - _p->tt__DisplayCapabilities::FixedLayout = FixedLayout; - } - return _p; -} - -inline tt__DisplayCapabilities * soap_new_set_tt__DisplayCapabilities( - struct soap *soap, - const std::string& XAddr, - bool FixedLayout, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__DisplayCapabilities *_p = ::soap_new_tt__DisplayCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DisplayCapabilities::XAddr = XAddr; - _p->tt__DisplayCapabilities::FixedLayout = FixedLayout; - _p->tt__DisplayCapabilities::__any = __any; - _p->tt__DisplayCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__DisplayCapabilities(struct soap *soap, tt__DisplayCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DisplayCapabilities", p->soap_type() == SOAP_TYPE_tt__DisplayCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DisplayCapabilities(struct soap *soap, const char *URL, tt__DisplayCapabilities 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, "tt:DisplayCapabilities", p->soap_type() == SOAP_TYPE_tt__DisplayCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DisplayCapabilities(struct soap *soap, const char *URL, tt__DisplayCapabilities 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, "tt:DisplayCapabilities", p->soap_type() == SOAP_TYPE_tt__DisplayCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DisplayCapabilities(struct soap *soap, const char *URL, tt__DisplayCapabilities 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, "tt:DisplayCapabilities", p->soap_type() == SOAP_TYPE_tt__DisplayCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DisplayCapabilities * SOAP_FMAC4 soap_get_tt__DisplayCapabilities(struct soap*, tt__DisplayCapabilities *, const char*, const char*); - -inline int soap_read_tt__DisplayCapabilities(struct soap *soap, tt__DisplayCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DisplayCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DisplayCapabilities(struct soap *soap, const char *URL, tt__DisplayCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DisplayCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DisplayCapabilities(struct soap *soap, tt__DisplayCapabilities *p) -{ - if (::soap_read_tt__DisplayCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DeviceIOCapabilities_DEFINED -#define SOAP_TYPE_tt__DeviceIOCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceIOCapabilities(struct soap*, const char*, int, const tt__DeviceIOCapabilities *, const char*); -SOAP_FMAC3 tt__DeviceIOCapabilities * SOAP_FMAC4 soap_in_tt__DeviceIOCapabilities(struct soap*, const char*, tt__DeviceIOCapabilities *, const char*); -SOAP_FMAC1 tt__DeviceIOCapabilities * SOAP_FMAC2 soap_instantiate_tt__DeviceIOCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DeviceIOCapabilities * soap_new_tt__DeviceIOCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DeviceIOCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__DeviceIOCapabilities * soap_new_req_tt__DeviceIOCapabilities( - struct soap *soap, - const std::string& XAddr, - int VideoSources, - int VideoOutputs, - int AudioSources, - int AudioOutputs, - int RelayOutputs) -{ - tt__DeviceIOCapabilities *_p = ::soap_new_tt__DeviceIOCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceIOCapabilities::XAddr = XAddr; - _p->tt__DeviceIOCapabilities::VideoSources = VideoSources; - _p->tt__DeviceIOCapabilities::VideoOutputs = VideoOutputs; - _p->tt__DeviceIOCapabilities::AudioSources = AudioSources; - _p->tt__DeviceIOCapabilities::AudioOutputs = AudioOutputs; - _p->tt__DeviceIOCapabilities::RelayOutputs = RelayOutputs; - } - return _p; -} - -inline tt__DeviceIOCapabilities * soap_new_set_tt__DeviceIOCapabilities( - struct soap *soap, - const std::string& XAddr, - int VideoSources, - int VideoOutputs, - int AudioSources, - int AudioOutputs, - int RelayOutputs, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__DeviceIOCapabilities *_p = ::soap_new_tt__DeviceIOCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceIOCapabilities::XAddr = XAddr; - _p->tt__DeviceIOCapabilities::VideoSources = VideoSources; - _p->tt__DeviceIOCapabilities::VideoOutputs = VideoOutputs; - _p->tt__DeviceIOCapabilities::AudioSources = AudioSources; - _p->tt__DeviceIOCapabilities::AudioOutputs = AudioOutputs; - _p->tt__DeviceIOCapabilities::RelayOutputs = RelayOutputs; - _p->tt__DeviceIOCapabilities::__any = __any; - _p->tt__DeviceIOCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__DeviceIOCapabilities(struct soap *soap, tt__DeviceIOCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DeviceIOCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceIOCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DeviceIOCapabilities(struct soap *soap, const char *URL, tt__DeviceIOCapabilities 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, "tt:DeviceIOCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceIOCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DeviceIOCapabilities(struct soap *soap, const char *URL, tt__DeviceIOCapabilities 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, "tt:DeviceIOCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceIOCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DeviceIOCapabilities(struct soap *soap, const char *URL, tt__DeviceIOCapabilities 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, "tt:DeviceIOCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceIOCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DeviceIOCapabilities * SOAP_FMAC4 soap_get_tt__DeviceIOCapabilities(struct soap*, tt__DeviceIOCapabilities *, const char*, const char*); - -inline int soap_read_tt__DeviceIOCapabilities(struct soap *soap, tt__DeviceIOCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DeviceIOCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DeviceIOCapabilities(struct soap *soap, const char *URL, tt__DeviceIOCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DeviceIOCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DeviceIOCapabilities(struct soap *soap, tt__DeviceIOCapabilities *p) -{ - if (::soap_read_tt__DeviceIOCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZCapabilities_DEFINED -#define SOAP_TYPE_tt__PTZCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZCapabilities(struct soap*, const char*, int, const tt__PTZCapabilities *, const char*); -SOAP_FMAC3 tt__PTZCapabilities * SOAP_FMAC4 soap_in_tt__PTZCapabilities(struct soap*, const char*, tt__PTZCapabilities *, const char*); -SOAP_FMAC1 tt__PTZCapabilities * SOAP_FMAC2 soap_instantiate_tt__PTZCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZCapabilities * soap_new_tt__PTZCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZCapabilities * soap_new_req_tt__PTZCapabilities( - struct soap *soap, - const std::string& XAddr) -{ - tt__PTZCapabilities *_p = ::soap_new_tt__PTZCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZCapabilities::XAddr = XAddr; - } - return _p; -} - -inline tt__PTZCapabilities * soap_new_set_tt__PTZCapabilities( - struct soap *soap, - const std::string& XAddr, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZCapabilities *_p = ::soap_new_tt__PTZCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZCapabilities::XAddr = XAddr; - _p->tt__PTZCapabilities::__any = __any; - _p->tt__PTZCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZCapabilities(struct soap *soap, tt__PTZCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZCapabilities", p->soap_type() == SOAP_TYPE_tt__PTZCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZCapabilities(struct soap *soap, const char *URL, tt__PTZCapabilities 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, "tt:PTZCapabilities", p->soap_type() == SOAP_TYPE_tt__PTZCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZCapabilities(struct soap *soap, const char *URL, tt__PTZCapabilities 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, "tt:PTZCapabilities", p->soap_type() == SOAP_TYPE_tt__PTZCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZCapabilities(struct soap *soap, const char *URL, tt__PTZCapabilities 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, "tt:PTZCapabilities", p->soap_type() == SOAP_TYPE_tt__PTZCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZCapabilities * SOAP_FMAC4 soap_get_tt__PTZCapabilities(struct soap*, tt__PTZCapabilities *, const char*, const char*); - -inline int soap_read_tt__PTZCapabilities(struct soap *soap, tt__PTZCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZCapabilities(struct soap *soap, const char *URL, tt__PTZCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZCapabilities(struct soap *soap, tt__PTZCapabilities *p) -{ - if (::soap_read_tt__PTZCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ImagingCapabilities_DEFINED -#define SOAP_TYPE_tt__ImagingCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ImagingCapabilities(struct soap*, const char*, int, const tt__ImagingCapabilities *, const char*); -SOAP_FMAC3 tt__ImagingCapabilities * SOAP_FMAC4 soap_in_tt__ImagingCapabilities(struct soap*, const char*, tt__ImagingCapabilities *, const char*); -SOAP_FMAC1 tt__ImagingCapabilities * SOAP_FMAC2 soap_instantiate_tt__ImagingCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ImagingCapabilities * soap_new_tt__ImagingCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ImagingCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__ImagingCapabilities * soap_new_req_tt__ImagingCapabilities( - struct soap *soap, - const std::string& XAddr) -{ - tt__ImagingCapabilities *_p = ::soap_new_tt__ImagingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingCapabilities::XAddr = XAddr; - } - return _p; -} - -inline tt__ImagingCapabilities * soap_new_set_tt__ImagingCapabilities( - struct soap *soap, - const std::string& XAddr, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ImagingCapabilities *_p = ::soap_new_tt__ImagingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ImagingCapabilities::XAddr = XAddr; - _p->tt__ImagingCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ImagingCapabilities(struct soap *soap, tt__ImagingCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ImagingCapabilities", p->soap_type() == SOAP_TYPE_tt__ImagingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ImagingCapabilities(struct soap *soap, const char *URL, tt__ImagingCapabilities 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, "tt:ImagingCapabilities", p->soap_type() == SOAP_TYPE_tt__ImagingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ImagingCapabilities(struct soap *soap, const char *URL, tt__ImagingCapabilities 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, "tt:ImagingCapabilities", p->soap_type() == SOAP_TYPE_tt__ImagingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ImagingCapabilities(struct soap *soap, const char *URL, tt__ImagingCapabilities 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, "tt:ImagingCapabilities", p->soap_type() == SOAP_TYPE_tt__ImagingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ImagingCapabilities * SOAP_FMAC4 soap_get_tt__ImagingCapabilities(struct soap*, tt__ImagingCapabilities *, const char*, const char*); - -inline int soap_read_tt__ImagingCapabilities(struct soap *soap, tt__ImagingCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ImagingCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ImagingCapabilities(struct soap *soap, const char *URL, tt__ImagingCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ImagingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ImagingCapabilities(struct soap *soap, tt__ImagingCapabilities *p) -{ - if (::soap_read_tt__ImagingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__OnvifVersion_DEFINED -#define SOAP_TYPE_tt__OnvifVersion_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__OnvifVersion(struct soap*, const char*, int, const tt__OnvifVersion *, const char*); -SOAP_FMAC3 tt__OnvifVersion * SOAP_FMAC4 soap_in_tt__OnvifVersion(struct soap*, const char*, tt__OnvifVersion *, const char*); -SOAP_FMAC1 tt__OnvifVersion * SOAP_FMAC2 soap_instantiate_tt__OnvifVersion(struct soap*, int, const char*, const char*, size_t*); - -inline tt__OnvifVersion * soap_new_tt__OnvifVersion(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__OnvifVersion(soap, n, NULL, NULL, NULL); -} - -inline tt__OnvifVersion * soap_new_req_tt__OnvifVersion( - struct soap *soap, - int Major, - int Minor) -{ - tt__OnvifVersion *_p = ::soap_new_tt__OnvifVersion(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OnvifVersion::Major = Major; - _p->tt__OnvifVersion::Minor = Minor; - } - return _p; -} - -inline tt__OnvifVersion * soap_new_set_tt__OnvifVersion( - struct soap *soap, - int Major, - int Minor) -{ - tt__OnvifVersion *_p = ::soap_new_tt__OnvifVersion(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__OnvifVersion::Major = Major; - _p->tt__OnvifVersion::Minor = Minor; - } - return _p; -} - -inline int soap_write_tt__OnvifVersion(struct soap *soap, tt__OnvifVersion const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:OnvifVersion", p->soap_type() == SOAP_TYPE_tt__OnvifVersion ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__OnvifVersion(struct soap *soap, const char *URL, tt__OnvifVersion 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, "tt:OnvifVersion", p->soap_type() == SOAP_TYPE_tt__OnvifVersion ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__OnvifVersion(struct soap *soap, const char *URL, tt__OnvifVersion 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, "tt:OnvifVersion", p->soap_type() == SOAP_TYPE_tt__OnvifVersion ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__OnvifVersion(struct soap *soap, const char *URL, tt__OnvifVersion 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, "tt:OnvifVersion", p->soap_type() == SOAP_TYPE_tt__OnvifVersion ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__OnvifVersion * SOAP_FMAC4 soap_get_tt__OnvifVersion(struct soap*, tt__OnvifVersion *, const char*, const char*); - -inline int soap_read_tt__OnvifVersion(struct soap *soap, tt__OnvifVersion *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__OnvifVersion(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__OnvifVersion(struct soap *soap, const char *URL, tt__OnvifVersion *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__OnvifVersion(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__OnvifVersion(struct soap *soap, tt__OnvifVersion *p) -{ - if (::soap_read_tt__OnvifVersion(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_tt__SystemCapabilitiesExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemCapabilitiesExtension2(struct soap*, const char*, int, const tt__SystemCapabilitiesExtension2 *, const char*); -SOAP_FMAC3 tt__SystemCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__SystemCapabilitiesExtension2(struct soap*, const char*, tt__SystemCapabilitiesExtension2 *, const char*); -SOAP_FMAC1 tt__SystemCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__SystemCapabilitiesExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemCapabilitiesExtension2 * soap_new_tt__SystemCapabilitiesExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemCapabilitiesExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemCapabilitiesExtension2 * soap_new_req_tt__SystemCapabilitiesExtension2( - struct soap *soap) -{ - tt__SystemCapabilitiesExtension2 *_p = ::soap_new_tt__SystemCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SystemCapabilitiesExtension2 * soap_new_set_tt__SystemCapabilitiesExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__SystemCapabilitiesExtension2 *_p = ::soap_new_tt__SystemCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemCapabilitiesExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__SystemCapabilitiesExtension2(struct soap *soap, tt__SystemCapabilitiesExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension2 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, "tt:SystemCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension2 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, "tt:SystemCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension2 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, "tt:SystemCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__SystemCapabilitiesExtension2(struct soap*, tt__SystemCapabilitiesExtension2 *, const char*, const char*); - -inline int soap_read_tt__SystemCapabilitiesExtension2(struct soap *soap, tt__SystemCapabilitiesExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemCapabilitiesExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemCapabilitiesExtension2(struct soap *soap, tt__SystemCapabilitiesExtension2 *p) -{ - if (::soap_read_tt__SystemCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemCapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__SystemCapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemCapabilitiesExtension(struct soap*, const char*, int, const tt__SystemCapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__SystemCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__SystemCapabilitiesExtension(struct soap*, const char*, tt__SystemCapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__SystemCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__SystemCapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemCapabilitiesExtension * soap_new_tt__SystemCapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemCapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemCapabilitiesExtension * soap_new_req_tt__SystemCapabilitiesExtension( - struct soap *soap) -{ - tt__SystemCapabilitiesExtension *_p = ::soap_new_tt__SystemCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__SystemCapabilitiesExtension * soap_new_set_tt__SystemCapabilitiesExtension( - struct soap *soap, - const std::vector & __any, - bool *HttpFirmwareUpgrade, - bool *HttpSystemBackup, - bool *HttpSystemLogging, - bool *HttpSupportInformation, - tt__SystemCapabilitiesExtension2 *Extension) -{ - tt__SystemCapabilitiesExtension *_p = ::soap_new_tt__SystemCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemCapabilitiesExtension::__any = __any; - _p->tt__SystemCapabilitiesExtension::HttpFirmwareUpgrade = HttpFirmwareUpgrade; - _p->tt__SystemCapabilitiesExtension::HttpSystemBackup = HttpSystemBackup; - _p->tt__SystemCapabilitiesExtension::HttpSystemLogging = HttpSystemLogging; - _p->tt__SystemCapabilitiesExtension::HttpSupportInformation = HttpSupportInformation; - _p->tt__SystemCapabilitiesExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__SystemCapabilitiesExtension(struct soap *soap, tt__SystemCapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemCapabilitiesExtension(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension 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, "tt:SystemCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemCapabilitiesExtension(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension 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, "tt:SystemCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemCapabilitiesExtension(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension 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, "tt:SystemCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SystemCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__SystemCapabilitiesExtension(struct soap*, tt__SystemCapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__SystemCapabilitiesExtension(struct soap *soap, tt__SystemCapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemCapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemCapabilitiesExtension(struct soap *soap, const char *URL, tt__SystemCapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemCapabilitiesExtension(struct soap *soap, tt__SystemCapabilitiesExtension *p) -{ - if (::soap_read_tt__SystemCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SystemCapabilities_DEFINED -#define SOAP_TYPE_tt__SystemCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SystemCapabilities(struct soap*, const char*, int, const tt__SystemCapabilities *, const char*); -SOAP_FMAC3 tt__SystemCapabilities * SOAP_FMAC4 soap_in_tt__SystemCapabilities(struct soap*, const char*, tt__SystemCapabilities *, const char*); -SOAP_FMAC1 tt__SystemCapabilities * SOAP_FMAC2 soap_instantiate_tt__SystemCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SystemCapabilities * soap_new_tt__SystemCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SystemCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__SystemCapabilities * soap_new_req_tt__SystemCapabilities( - struct soap *soap, - bool DiscoveryResolve, - bool DiscoveryBye, - bool RemoteDiscovery, - bool SystemBackup, - bool SystemLogging, - bool FirmwareUpgrade, - const std::vector & SupportedVersions) -{ - tt__SystemCapabilities *_p = ::soap_new_tt__SystemCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemCapabilities::DiscoveryResolve = DiscoveryResolve; - _p->tt__SystemCapabilities::DiscoveryBye = DiscoveryBye; - _p->tt__SystemCapabilities::RemoteDiscovery = RemoteDiscovery; - _p->tt__SystemCapabilities::SystemBackup = SystemBackup; - _p->tt__SystemCapabilities::SystemLogging = SystemLogging; - _p->tt__SystemCapabilities::FirmwareUpgrade = FirmwareUpgrade; - _p->tt__SystemCapabilities::SupportedVersions = SupportedVersions; - } - return _p; -} - -inline tt__SystemCapabilities * soap_new_set_tt__SystemCapabilities( - struct soap *soap, - bool DiscoveryResolve, - bool DiscoveryBye, - bool RemoteDiscovery, - bool SystemBackup, - bool SystemLogging, - bool FirmwareUpgrade, - const std::vector & SupportedVersions, - tt__SystemCapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SystemCapabilities *_p = ::soap_new_tt__SystemCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SystemCapabilities::DiscoveryResolve = DiscoveryResolve; - _p->tt__SystemCapabilities::DiscoveryBye = DiscoveryBye; - _p->tt__SystemCapabilities::RemoteDiscovery = RemoteDiscovery; - _p->tt__SystemCapabilities::SystemBackup = SystemBackup; - _p->tt__SystemCapabilities::SystemLogging = SystemLogging; - _p->tt__SystemCapabilities::FirmwareUpgrade = FirmwareUpgrade; - _p->tt__SystemCapabilities::SupportedVersions = SupportedVersions; - _p->tt__SystemCapabilities::Extension = Extension; - _p->tt__SystemCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SystemCapabilities(struct soap *soap, tt__SystemCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SystemCapabilities", p->soap_type() == SOAP_TYPE_tt__SystemCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SystemCapabilities(struct soap *soap, const char *URL, tt__SystemCapabilities 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, "tt:SystemCapabilities", p->soap_type() == SOAP_TYPE_tt__SystemCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SystemCapabilities(struct soap *soap, const char *URL, tt__SystemCapabilities 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, "tt:SystemCapabilities", p->soap_type() == SOAP_TYPE_tt__SystemCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SystemCapabilities(struct soap *soap, const char *URL, tt__SystemCapabilities 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, "tt:SystemCapabilities", p->soap_type() == SOAP_TYPE_tt__SystemCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SystemCapabilities * SOAP_FMAC4 soap_get_tt__SystemCapabilities(struct soap*, tt__SystemCapabilities *, const char*, const char*); - -inline int soap_read_tt__SystemCapabilities(struct soap *soap, tt__SystemCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SystemCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SystemCapabilities(struct soap *soap, const char *URL, tt__SystemCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SystemCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SystemCapabilities(struct soap *soap, tt__SystemCapabilities *p) -{ - if (::soap_read_tt__SystemCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SecurityCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_tt__SecurityCapabilitiesExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SecurityCapabilitiesExtension2(struct soap*, const char*, int, const tt__SecurityCapabilitiesExtension2 *, const char*); -SOAP_FMAC3 tt__SecurityCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__SecurityCapabilitiesExtension2(struct soap*, const char*, tt__SecurityCapabilitiesExtension2 *, const char*); -SOAP_FMAC1 tt__SecurityCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__SecurityCapabilitiesExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SecurityCapabilitiesExtension2 * soap_new_tt__SecurityCapabilitiesExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SecurityCapabilitiesExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__SecurityCapabilitiesExtension2 * soap_new_req_tt__SecurityCapabilitiesExtension2( - struct soap *soap, - bool Dot1X, - bool RemoteUserHandling) -{ - tt__SecurityCapabilitiesExtension2 *_p = ::soap_new_tt__SecurityCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SecurityCapabilitiesExtension2::Dot1X = Dot1X; - _p->tt__SecurityCapabilitiesExtension2::RemoteUserHandling = RemoteUserHandling; - } - return _p; -} - -inline tt__SecurityCapabilitiesExtension2 * soap_new_set_tt__SecurityCapabilitiesExtension2( - struct soap *soap, - bool Dot1X, - const std::vector & SupportedEAPMethod, - bool RemoteUserHandling, - const std::vector & __any) -{ - tt__SecurityCapabilitiesExtension2 *_p = ::soap_new_tt__SecurityCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SecurityCapabilitiesExtension2::Dot1X = Dot1X; - _p->tt__SecurityCapabilitiesExtension2::SupportedEAPMethod = SupportedEAPMethod; - _p->tt__SecurityCapabilitiesExtension2::RemoteUserHandling = RemoteUserHandling; - _p->tt__SecurityCapabilitiesExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__SecurityCapabilitiesExtension2(struct soap *soap, tt__SecurityCapabilitiesExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SecurityCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SecurityCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension2 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, "tt:SecurityCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SecurityCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension2 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, "tt:SecurityCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SecurityCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension2 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, "tt:SecurityCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SecurityCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__SecurityCapabilitiesExtension2(struct soap*, tt__SecurityCapabilitiesExtension2 *, const char*, const char*); - -inline int soap_read_tt__SecurityCapabilitiesExtension2(struct soap *soap, tt__SecurityCapabilitiesExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SecurityCapabilitiesExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SecurityCapabilitiesExtension2(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SecurityCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SecurityCapabilitiesExtension2(struct soap *soap, tt__SecurityCapabilitiesExtension2 *p) -{ - if (::soap_read_tt__SecurityCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SecurityCapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__SecurityCapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SecurityCapabilitiesExtension(struct soap*, const char*, int, const tt__SecurityCapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__SecurityCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__SecurityCapabilitiesExtension(struct soap*, const char*, tt__SecurityCapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__SecurityCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__SecurityCapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SecurityCapabilitiesExtension * soap_new_tt__SecurityCapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SecurityCapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__SecurityCapabilitiesExtension * soap_new_req_tt__SecurityCapabilitiesExtension( - struct soap *soap, - bool TLS1_x002e0) -{ - tt__SecurityCapabilitiesExtension *_p = ::soap_new_tt__SecurityCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SecurityCapabilitiesExtension::TLS1_x002e0 = TLS1_x002e0; - } - return _p; -} - -inline tt__SecurityCapabilitiesExtension * soap_new_set_tt__SecurityCapabilitiesExtension( - struct soap *soap, - bool TLS1_x002e0, - tt__SecurityCapabilitiesExtension2 *Extension) -{ - tt__SecurityCapabilitiesExtension *_p = ::soap_new_tt__SecurityCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SecurityCapabilitiesExtension::TLS1_x002e0 = TLS1_x002e0; - _p->tt__SecurityCapabilitiesExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__SecurityCapabilitiesExtension(struct soap *soap, tt__SecurityCapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SecurityCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SecurityCapabilitiesExtension(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension 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, "tt:SecurityCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SecurityCapabilitiesExtension(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension 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, "tt:SecurityCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SecurityCapabilitiesExtension(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension 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, "tt:SecurityCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SecurityCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__SecurityCapabilitiesExtension(struct soap*, tt__SecurityCapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__SecurityCapabilitiesExtension(struct soap *soap, tt__SecurityCapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SecurityCapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SecurityCapabilitiesExtension(struct soap *soap, const char *URL, tt__SecurityCapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SecurityCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SecurityCapabilitiesExtension(struct soap *soap, tt__SecurityCapabilitiesExtension *p) -{ - if (::soap_read_tt__SecurityCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SecurityCapabilities_DEFINED -#define SOAP_TYPE_tt__SecurityCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SecurityCapabilities(struct soap*, const char*, int, const tt__SecurityCapabilities *, const char*); -SOAP_FMAC3 tt__SecurityCapabilities * SOAP_FMAC4 soap_in_tt__SecurityCapabilities(struct soap*, const char*, tt__SecurityCapabilities *, const char*); -SOAP_FMAC1 tt__SecurityCapabilities * SOAP_FMAC2 soap_instantiate_tt__SecurityCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SecurityCapabilities * soap_new_tt__SecurityCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SecurityCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__SecurityCapabilities * soap_new_req_tt__SecurityCapabilities( - struct soap *soap, - bool TLS1_x002e1, - bool TLS1_x002e2, - bool OnboardKeyGeneration, - bool AccessPolicyConfig, - bool X_x002e509Token, - bool SAMLToken, - bool KerberosToken, - bool RELToken) -{ - tt__SecurityCapabilities *_p = ::soap_new_tt__SecurityCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SecurityCapabilities::TLS1_x002e1 = TLS1_x002e1; - _p->tt__SecurityCapabilities::TLS1_x002e2 = TLS1_x002e2; - _p->tt__SecurityCapabilities::OnboardKeyGeneration = OnboardKeyGeneration; - _p->tt__SecurityCapabilities::AccessPolicyConfig = AccessPolicyConfig; - _p->tt__SecurityCapabilities::X_x002e509Token = X_x002e509Token; - _p->tt__SecurityCapabilities::SAMLToken = SAMLToken; - _p->tt__SecurityCapabilities::KerberosToken = KerberosToken; - _p->tt__SecurityCapabilities::RELToken = RELToken; - } - return _p; -} - -inline tt__SecurityCapabilities * soap_new_set_tt__SecurityCapabilities( - struct soap *soap, - bool TLS1_x002e1, - bool TLS1_x002e2, - bool OnboardKeyGeneration, - bool AccessPolicyConfig, - bool X_x002e509Token, - bool SAMLToken, - bool KerberosToken, - bool RELToken, - const std::vector & __any, - tt__SecurityCapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__SecurityCapabilities *_p = ::soap_new_tt__SecurityCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SecurityCapabilities::TLS1_x002e1 = TLS1_x002e1; - _p->tt__SecurityCapabilities::TLS1_x002e2 = TLS1_x002e2; - _p->tt__SecurityCapabilities::OnboardKeyGeneration = OnboardKeyGeneration; - _p->tt__SecurityCapabilities::AccessPolicyConfig = AccessPolicyConfig; - _p->tt__SecurityCapabilities::X_x002e509Token = X_x002e509Token; - _p->tt__SecurityCapabilities::SAMLToken = SAMLToken; - _p->tt__SecurityCapabilities::KerberosToken = KerberosToken; - _p->tt__SecurityCapabilities::RELToken = RELToken; - _p->tt__SecurityCapabilities::__any = __any; - _p->tt__SecurityCapabilities::Extension = Extension; - _p->tt__SecurityCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__SecurityCapabilities(struct soap *soap, tt__SecurityCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SecurityCapabilities(struct soap *soap, const char *URL, tt__SecurityCapabilities 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, "tt:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SecurityCapabilities(struct soap *soap, const char *URL, tt__SecurityCapabilities 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, "tt:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SecurityCapabilities(struct soap *soap, const char *URL, tt__SecurityCapabilities 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, "tt:SecurityCapabilities", p->soap_type() == SOAP_TYPE_tt__SecurityCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SecurityCapabilities * SOAP_FMAC4 soap_get_tt__SecurityCapabilities(struct soap*, tt__SecurityCapabilities *, const char*, const char*); - -inline int soap_read_tt__SecurityCapabilities(struct soap *soap, tt__SecurityCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SecurityCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SecurityCapabilities(struct soap *soap, const char *URL, tt__SecurityCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SecurityCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SecurityCapabilities(struct soap *soap, tt__SecurityCapabilities *p) -{ - if (::soap_read_tt__SecurityCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_tt__NetworkCapabilitiesExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkCapabilitiesExtension2(struct soap*, const char*, int, const tt__NetworkCapabilitiesExtension2 *, const char*); -SOAP_FMAC3 tt__NetworkCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__NetworkCapabilitiesExtension2(struct soap*, const char*, tt__NetworkCapabilitiesExtension2 *, const char*); -SOAP_FMAC1 tt__NetworkCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkCapabilitiesExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkCapabilitiesExtension2 * soap_new_tt__NetworkCapabilitiesExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkCapabilitiesExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkCapabilitiesExtension2 * soap_new_req_tt__NetworkCapabilitiesExtension2( - struct soap *soap) -{ - tt__NetworkCapabilitiesExtension2 *_p = ::soap_new_tt__NetworkCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkCapabilitiesExtension2 * soap_new_set_tt__NetworkCapabilitiesExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__NetworkCapabilitiesExtension2 *_p = ::soap_new_tt__NetworkCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkCapabilitiesExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__NetworkCapabilitiesExtension2(struct soap *soap, tt__NetworkCapabilitiesExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkCapabilitiesExtension2(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension2 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, "tt:NetworkCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkCapabilitiesExtension2(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension2 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, "tt:NetworkCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkCapabilitiesExtension2(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension2 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, "tt:NetworkCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__NetworkCapabilitiesExtension2(struct soap*, tt__NetworkCapabilitiesExtension2 *, const char*, const char*); - -inline int soap_read_tt__NetworkCapabilitiesExtension2(struct soap *soap, tt__NetworkCapabilitiesExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkCapabilitiesExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkCapabilitiesExtension2(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkCapabilitiesExtension2(struct soap *soap, tt__NetworkCapabilitiesExtension2 *p) -{ - if (::soap_read_tt__NetworkCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkCapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__NetworkCapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkCapabilitiesExtension(struct soap*, const char*, int, const tt__NetworkCapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__NetworkCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__NetworkCapabilitiesExtension(struct soap*, const char*, tt__NetworkCapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__NetworkCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkCapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkCapabilitiesExtension * soap_new_tt__NetworkCapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkCapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkCapabilitiesExtension * soap_new_req_tt__NetworkCapabilitiesExtension( - struct soap *soap) -{ - tt__NetworkCapabilitiesExtension *_p = ::soap_new_tt__NetworkCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkCapabilitiesExtension * soap_new_set_tt__NetworkCapabilitiesExtension( - struct soap *soap, - const std::vector & __any, - bool *Dot11Configuration, - tt__NetworkCapabilitiesExtension2 *Extension) -{ - tt__NetworkCapabilitiesExtension *_p = ::soap_new_tt__NetworkCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkCapabilitiesExtension::__any = __any; - _p->tt__NetworkCapabilitiesExtension::Dot11Configuration = Dot11Configuration; - _p->tt__NetworkCapabilitiesExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__NetworkCapabilitiesExtension(struct soap *soap, tt__NetworkCapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkCapabilitiesExtension(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension 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, "tt:NetworkCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkCapabilitiesExtension(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension 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, "tt:NetworkCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkCapabilitiesExtension(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension 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, "tt:NetworkCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__NetworkCapabilitiesExtension(struct soap*, tt__NetworkCapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__NetworkCapabilitiesExtension(struct soap *soap, tt__NetworkCapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkCapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkCapabilitiesExtension(struct soap *soap, const char *URL, tt__NetworkCapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkCapabilitiesExtension(struct soap *soap, tt__NetworkCapabilitiesExtension *p) -{ - if (::soap_read_tt__NetworkCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkCapabilities_DEFINED -#define SOAP_TYPE_tt__NetworkCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkCapabilities(struct soap*, const char*, int, const tt__NetworkCapabilities *, const char*); -SOAP_FMAC3 tt__NetworkCapabilities * SOAP_FMAC4 soap_in_tt__NetworkCapabilities(struct soap*, const char*, tt__NetworkCapabilities *, const char*); -SOAP_FMAC1 tt__NetworkCapabilities * SOAP_FMAC2 soap_instantiate_tt__NetworkCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkCapabilities * soap_new_tt__NetworkCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkCapabilities * soap_new_req_tt__NetworkCapabilities( - struct soap *soap) -{ - tt__NetworkCapabilities *_p = ::soap_new_tt__NetworkCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkCapabilities * soap_new_set_tt__NetworkCapabilities( - struct soap *soap, - bool *IPFilter, - bool *ZeroConfiguration, - bool *IPVersion6, - bool *DynDNS, - tt__NetworkCapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NetworkCapabilities *_p = ::soap_new_tt__NetworkCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkCapabilities::IPFilter = IPFilter; - _p->tt__NetworkCapabilities::ZeroConfiguration = ZeroConfiguration; - _p->tt__NetworkCapabilities::IPVersion6 = IPVersion6; - _p->tt__NetworkCapabilities::DynDNS = DynDNS; - _p->tt__NetworkCapabilities::Extension = Extension; - _p->tt__NetworkCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NetworkCapabilities(struct soap *soap, tt__NetworkCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkCapabilities(struct soap *soap, const char *URL, tt__NetworkCapabilities 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, "tt:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkCapabilities(struct soap *soap, const char *URL, tt__NetworkCapabilities 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, "tt:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkCapabilities(struct soap *soap, const char *URL, tt__NetworkCapabilities 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, "tt:NetworkCapabilities", p->soap_type() == SOAP_TYPE_tt__NetworkCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkCapabilities * SOAP_FMAC4 soap_get_tt__NetworkCapabilities(struct soap*, tt__NetworkCapabilities *, const char*, const char*); - -inline int soap_read_tt__NetworkCapabilities(struct soap *soap, tt__NetworkCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkCapabilities(struct soap *soap, const char *URL, tt__NetworkCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkCapabilities(struct soap *soap, tt__NetworkCapabilities *p) -{ - if (::soap_read_tt__NetworkCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ProfileCapabilities_DEFINED -#define SOAP_TYPE_tt__ProfileCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileCapabilities(struct soap*, const char*, int, const tt__ProfileCapabilities *, const char*); -SOAP_FMAC3 tt__ProfileCapabilities * SOAP_FMAC4 soap_in_tt__ProfileCapabilities(struct soap*, const char*, tt__ProfileCapabilities *, const char*); -SOAP_FMAC1 tt__ProfileCapabilities * SOAP_FMAC2 soap_instantiate_tt__ProfileCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ProfileCapabilities * soap_new_tt__ProfileCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ProfileCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__ProfileCapabilities * soap_new_req_tt__ProfileCapabilities( - struct soap *soap, - int MaximumNumberOfProfiles) -{ - tt__ProfileCapabilities *_p = ::soap_new_tt__ProfileCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ProfileCapabilities::MaximumNumberOfProfiles = MaximumNumberOfProfiles; - } - return _p; -} - -inline tt__ProfileCapabilities * soap_new_set_tt__ProfileCapabilities( - struct soap *soap, - int MaximumNumberOfProfiles, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ProfileCapabilities *_p = ::soap_new_tt__ProfileCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ProfileCapabilities::MaximumNumberOfProfiles = MaximumNumberOfProfiles; - _p->tt__ProfileCapabilities::__any = __any; - _p->tt__ProfileCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ProfileCapabilities(struct soap *soap, tt__ProfileCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_tt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ProfileCapabilities(struct soap *soap, const char *URL, tt__ProfileCapabilities 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, "tt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_tt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ProfileCapabilities(struct soap *soap, const char *URL, tt__ProfileCapabilities 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, "tt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_tt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ProfileCapabilities(struct soap *soap, const char *URL, tt__ProfileCapabilities 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, "tt:ProfileCapabilities", p->soap_type() == SOAP_TYPE_tt__ProfileCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ProfileCapabilities * SOAP_FMAC4 soap_get_tt__ProfileCapabilities(struct soap*, tt__ProfileCapabilities *, const char*, const char*); - -inline int soap_read_tt__ProfileCapabilities(struct soap *soap, tt__ProfileCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ProfileCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ProfileCapabilities(struct soap *soap, const char *URL, tt__ProfileCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ProfileCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ProfileCapabilities(struct soap *soap, tt__ProfileCapabilities *p) -{ - if (::soap_read_tt__ProfileCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RealTimeStreamingCapabilitiesExtension(struct soap*, const char*, int, const tt__RealTimeStreamingCapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__RealTimeStreamingCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__RealTimeStreamingCapabilitiesExtension(struct soap*, const char*, tt__RealTimeStreamingCapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__RealTimeStreamingCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__RealTimeStreamingCapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RealTimeStreamingCapabilitiesExtension * soap_new_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RealTimeStreamingCapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__RealTimeStreamingCapabilitiesExtension * soap_new_req_tt__RealTimeStreamingCapabilitiesExtension( - struct soap *soap) -{ - tt__RealTimeStreamingCapabilitiesExtension *_p = ::soap_new_tt__RealTimeStreamingCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RealTimeStreamingCapabilitiesExtension * soap_new_set_tt__RealTimeStreamingCapabilitiesExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__RealTimeStreamingCapabilitiesExtension *_p = ::soap_new_tt__RealTimeStreamingCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RealTimeStreamingCapabilitiesExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, tt__RealTimeStreamingCapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RealTimeStreamingCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilitiesExtension 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, "tt:RealTimeStreamingCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilitiesExtension 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, "tt:RealTimeStreamingCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilitiesExtension 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, "tt:RealTimeStreamingCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RealTimeStreamingCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__RealTimeStreamingCapabilitiesExtension(struct soap*, tt__RealTimeStreamingCapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, tt__RealTimeStreamingCapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RealTimeStreamingCapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RealTimeStreamingCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RealTimeStreamingCapabilitiesExtension(struct soap *soap, tt__RealTimeStreamingCapabilitiesExtension *p) -{ - if (::soap_read_tt__RealTimeStreamingCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RealTimeStreamingCapabilities_DEFINED -#define SOAP_TYPE_tt__RealTimeStreamingCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RealTimeStreamingCapabilities(struct soap*, const char*, int, const tt__RealTimeStreamingCapabilities *, const char*); -SOAP_FMAC3 tt__RealTimeStreamingCapabilities * SOAP_FMAC4 soap_in_tt__RealTimeStreamingCapabilities(struct soap*, const char*, tt__RealTimeStreamingCapabilities *, const char*); -SOAP_FMAC1 tt__RealTimeStreamingCapabilities * SOAP_FMAC2 soap_instantiate_tt__RealTimeStreamingCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RealTimeStreamingCapabilities * soap_new_tt__RealTimeStreamingCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RealTimeStreamingCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__RealTimeStreamingCapabilities * soap_new_req_tt__RealTimeStreamingCapabilities( - struct soap *soap) -{ - tt__RealTimeStreamingCapabilities *_p = ::soap_new_tt__RealTimeStreamingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RealTimeStreamingCapabilities * soap_new_set_tt__RealTimeStreamingCapabilities( - struct soap *soap, - bool *RTPMulticast, - bool *RTP_USCORETCP, - bool *RTP_USCORERTSP_USCORETCP, - tt__RealTimeStreamingCapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RealTimeStreamingCapabilities *_p = ::soap_new_tt__RealTimeStreamingCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RealTimeStreamingCapabilities::RTPMulticast = RTPMulticast; - _p->tt__RealTimeStreamingCapabilities::RTP_USCORETCP = RTP_USCORETCP; - _p->tt__RealTimeStreamingCapabilities::RTP_USCORERTSP_USCORETCP = RTP_USCORERTSP_USCORETCP; - _p->tt__RealTimeStreamingCapabilities::Extension = Extension; - _p->tt__RealTimeStreamingCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RealTimeStreamingCapabilities(struct soap *soap, tt__RealTimeStreamingCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RealTimeStreamingCapabilities", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RealTimeStreamingCapabilities(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilities 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, "tt:RealTimeStreamingCapabilities", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RealTimeStreamingCapabilities(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilities 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, "tt:RealTimeStreamingCapabilities", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RealTimeStreamingCapabilities(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilities 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, "tt:RealTimeStreamingCapabilities", p->soap_type() == SOAP_TYPE_tt__RealTimeStreamingCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RealTimeStreamingCapabilities * SOAP_FMAC4 soap_get_tt__RealTimeStreamingCapabilities(struct soap*, tt__RealTimeStreamingCapabilities *, const char*, const char*); - -inline int soap_read_tt__RealTimeStreamingCapabilities(struct soap *soap, tt__RealTimeStreamingCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RealTimeStreamingCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RealTimeStreamingCapabilities(struct soap *soap, const char *URL, tt__RealTimeStreamingCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RealTimeStreamingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RealTimeStreamingCapabilities(struct soap *soap, tt__RealTimeStreamingCapabilities *p) -{ - if (::soap_read_tt__RealTimeStreamingCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MediaCapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__MediaCapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaCapabilitiesExtension(struct soap*, const char*, int, const tt__MediaCapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__MediaCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__MediaCapabilitiesExtension(struct soap*, const char*, tt__MediaCapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__MediaCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__MediaCapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MediaCapabilitiesExtension * soap_new_tt__MediaCapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MediaCapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__MediaCapabilitiesExtension * soap_new_req_tt__MediaCapabilitiesExtension( - struct soap *soap, - tt__ProfileCapabilities *ProfileCapabilities) -{ - tt__MediaCapabilitiesExtension *_p = ::soap_new_tt__MediaCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaCapabilitiesExtension::ProfileCapabilities = ProfileCapabilities; - } - return _p; -} - -inline tt__MediaCapabilitiesExtension * soap_new_set_tt__MediaCapabilitiesExtension( - struct soap *soap, - tt__ProfileCapabilities *ProfileCapabilities, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MediaCapabilitiesExtension *_p = ::soap_new_tt__MediaCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaCapabilitiesExtension::ProfileCapabilities = ProfileCapabilities; - _p->tt__MediaCapabilitiesExtension::__any = __any; - _p->tt__MediaCapabilitiesExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MediaCapabilitiesExtension(struct soap *soap, tt__MediaCapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MediaCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__MediaCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MediaCapabilitiesExtension(struct soap *soap, const char *URL, tt__MediaCapabilitiesExtension 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, "tt:MediaCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__MediaCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MediaCapabilitiesExtension(struct soap *soap, const char *URL, tt__MediaCapabilitiesExtension 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, "tt:MediaCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__MediaCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MediaCapabilitiesExtension(struct soap *soap, const char *URL, tt__MediaCapabilitiesExtension 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, "tt:MediaCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__MediaCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MediaCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__MediaCapabilitiesExtension(struct soap*, tt__MediaCapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__MediaCapabilitiesExtension(struct soap *soap, tt__MediaCapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MediaCapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MediaCapabilitiesExtension(struct soap *soap, const char *URL, tt__MediaCapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MediaCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MediaCapabilitiesExtension(struct soap *soap, tt__MediaCapabilitiesExtension *p) -{ - if (::soap_read_tt__MediaCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MediaCapabilities_DEFINED -#define SOAP_TYPE_tt__MediaCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaCapabilities(struct soap*, const char*, int, const tt__MediaCapabilities *, const char*); -SOAP_FMAC3 tt__MediaCapabilities * SOAP_FMAC4 soap_in_tt__MediaCapabilities(struct soap*, const char*, tt__MediaCapabilities *, const char*); -SOAP_FMAC1 tt__MediaCapabilities * SOAP_FMAC2 soap_instantiate_tt__MediaCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MediaCapabilities * soap_new_tt__MediaCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MediaCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__MediaCapabilities * soap_new_req_tt__MediaCapabilities( - struct soap *soap, - const std::string& XAddr, - tt__RealTimeStreamingCapabilities *StreamingCapabilities) -{ - tt__MediaCapabilities *_p = ::soap_new_tt__MediaCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaCapabilities::XAddr = XAddr; - _p->tt__MediaCapabilities::StreamingCapabilities = StreamingCapabilities; - } - return _p; -} - -inline tt__MediaCapabilities * soap_new_set_tt__MediaCapabilities( - struct soap *soap, - const std::string& XAddr, - tt__RealTimeStreamingCapabilities *StreamingCapabilities, - const std::vector & __any, - tt__MediaCapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MediaCapabilities *_p = ::soap_new_tt__MediaCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaCapabilities::XAddr = XAddr; - _p->tt__MediaCapabilities::StreamingCapabilities = StreamingCapabilities; - _p->tt__MediaCapabilities::__any = __any; - _p->tt__MediaCapabilities::Extension = Extension; - _p->tt__MediaCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MediaCapabilities(struct soap *soap, tt__MediaCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MediaCapabilities", p->soap_type() == SOAP_TYPE_tt__MediaCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MediaCapabilities(struct soap *soap, const char *URL, tt__MediaCapabilities 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, "tt:MediaCapabilities", p->soap_type() == SOAP_TYPE_tt__MediaCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MediaCapabilities(struct soap *soap, const char *URL, tt__MediaCapabilities 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, "tt:MediaCapabilities", p->soap_type() == SOAP_TYPE_tt__MediaCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MediaCapabilities(struct soap *soap, const char *URL, tt__MediaCapabilities 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, "tt:MediaCapabilities", p->soap_type() == SOAP_TYPE_tt__MediaCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MediaCapabilities * SOAP_FMAC4 soap_get_tt__MediaCapabilities(struct soap*, tt__MediaCapabilities *, const char*, const char*); - -inline int soap_read_tt__MediaCapabilities(struct soap *soap, tt__MediaCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MediaCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MediaCapabilities(struct soap *soap, const char *URL, tt__MediaCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MediaCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MediaCapabilities(struct soap *soap, tt__MediaCapabilities *p) -{ - if (::soap_read_tt__MediaCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IOCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_tt__IOCapabilitiesExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IOCapabilitiesExtension2(struct soap*, const char*, int, const tt__IOCapabilitiesExtension2 *, const char*); -SOAP_FMAC3 tt__IOCapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__IOCapabilitiesExtension2(struct soap*, const char*, tt__IOCapabilitiesExtension2 *, const char*); -SOAP_FMAC1 tt__IOCapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__IOCapabilitiesExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IOCapabilitiesExtension2 * soap_new_tt__IOCapabilitiesExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IOCapabilitiesExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__IOCapabilitiesExtension2 * soap_new_req_tt__IOCapabilitiesExtension2( - struct soap *soap) -{ - tt__IOCapabilitiesExtension2 *_p = ::soap_new_tt__IOCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IOCapabilitiesExtension2 * soap_new_set_tt__IOCapabilitiesExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__IOCapabilitiesExtension2 *_p = ::soap_new_tt__IOCapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IOCapabilitiesExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__IOCapabilitiesExtension2(struct soap *soap, tt__IOCapabilitiesExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IOCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IOCapabilitiesExtension2(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension2 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, "tt:IOCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IOCapabilitiesExtension2(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension2 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, "tt:IOCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IOCapabilitiesExtension2(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension2 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, "tt:IOCapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IOCapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__IOCapabilitiesExtension2(struct soap*, tt__IOCapabilitiesExtension2 *, const char*, const char*); - -inline int soap_read_tt__IOCapabilitiesExtension2(struct soap *soap, tt__IOCapabilitiesExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IOCapabilitiesExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IOCapabilitiesExtension2(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IOCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IOCapabilitiesExtension2(struct soap *soap, tt__IOCapabilitiesExtension2 *p) -{ - if (::soap_read_tt__IOCapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IOCapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__IOCapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IOCapabilitiesExtension(struct soap*, const char*, int, const tt__IOCapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__IOCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__IOCapabilitiesExtension(struct soap*, const char*, tt__IOCapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__IOCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__IOCapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IOCapabilitiesExtension * soap_new_tt__IOCapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IOCapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__IOCapabilitiesExtension * soap_new_req_tt__IOCapabilitiesExtension( - struct soap *soap, - tt__IOCapabilitiesExtension2 *Extension) -{ - tt__IOCapabilitiesExtension *_p = ::soap_new_tt__IOCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IOCapabilitiesExtension::Extension = Extension; - } - return _p; -} - -inline tt__IOCapabilitiesExtension * soap_new_set_tt__IOCapabilitiesExtension( - struct soap *soap, - const std::vector & __any, - bool *Auxiliary, - const std::vector & AuxiliaryCommands, - tt__IOCapabilitiesExtension2 *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__IOCapabilitiesExtension *_p = ::soap_new_tt__IOCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IOCapabilitiesExtension::__any = __any; - _p->tt__IOCapabilitiesExtension::Auxiliary = Auxiliary; - _p->tt__IOCapabilitiesExtension::AuxiliaryCommands = AuxiliaryCommands; - _p->tt__IOCapabilitiesExtension::Extension = Extension; - _p->tt__IOCapabilitiesExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__IOCapabilitiesExtension(struct soap *soap, tt__IOCapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IOCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IOCapabilitiesExtension(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension 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, "tt:IOCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IOCapabilitiesExtension(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension 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, "tt:IOCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IOCapabilitiesExtension(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension 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, "tt:IOCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__IOCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IOCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__IOCapabilitiesExtension(struct soap*, tt__IOCapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__IOCapabilitiesExtension(struct soap *soap, tt__IOCapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IOCapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IOCapabilitiesExtension(struct soap *soap, const char *URL, tt__IOCapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IOCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IOCapabilitiesExtension(struct soap *soap, tt__IOCapabilitiesExtension *p) -{ - if (::soap_read_tt__IOCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IOCapabilities_DEFINED -#define SOAP_TYPE_tt__IOCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IOCapabilities(struct soap*, const char*, int, const tt__IOCapabilities *, const char*); -SOAP_FMAC3 tt__IOCapabilities * SOAP_FMAC4 soap_in_tt__IOCapabilities(struct soap*, const char*, tt__IOCapabilities *, const char*); -SOAP_FMAC1 tt__IOCapabilities * SOAP_FMAC2 soap_instantiate_tt__IOCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IOCapabilities * soap_new_tt__IOCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IOCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__IOCapabilities * soap_new_req_tt__IOCapabilities( - struct soap *soap) -{ - tt__IOCapabilities *_p = ::soap_new_tt__IOCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IOCapabilities * soap_new_set_tt__IOCapabilities( - struct soap *soap, - int *InputConnectors, - int *RelayOutputs, - tt__IOCapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__IOCapabilities *_p = ::soap_new_tt__IOCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IOCapabilities::InputConnectors = InputConnectors; - _p->tt__IOCapabilities::RelayOutputs = RelayOutputs; - _p->tt__IOCapabilities::Extension = Extension; - _p->tt__IOCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__IOCapabilities(struct soap *soap, tt__IOCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IOCapabilities", p->soap_type() == SOAP_TYPE_tt__IOCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IOCapabilities(struct soap *soap, const char *URL, tt__IOCapabilities 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, "tt:IOCapabilities", p->soap_type() == SOAP_TYPE_tt__IOCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IOCapabilities(struct soap *soap, const char *URL, tt__IOCapabilities 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, "tt:IOCapabilities", p->soap_type() == SOAP_TYPE_tt__IOCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IOCapabilities(struct soap *soap, const char *URL, tt__IOCapabilities 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, "tt:IOCapabilities", p->soap_type() == SOAP_TYPE_tt__IOCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IOCapabilities * SOAP_FMAC4 soap_get_tt__IOCapabilities(struct soap*, tt__IOCapabilities *, const char*, const char*); - -inline int soap_read_tt__IOCapabilities(struct soap *soap, tt__IOCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IOCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IOCapabilities(struct soap *soap, const char *URL, tt__IOCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IOCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IOCapabilities(struct soap *soap, tt__IOCapabilities *p) -{ - if (::soap_read_tt__IOCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EventCapabilities_DEFINED -#define SOAP_TYPE_tt__EventCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EventCapabilities(struct soap*, const char*, int, const tt__EventCapabilities *, const char*); -SOAP_FMAC3 tt__EventCapabilities * SOAP_FMAC4 soap_in_tt__EventCapabilities(struct soap*, const char*, tt__EventCapabilities *, const char*); -SOAP_FMAC1 tt__EventCapabilities * SOAP_FMAC2 soap_instantiate_tt__EventCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EventCapabilities * soap_new_tt__EventCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EventCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__EventCapabilities * soap_new_req_tt__EventCapabilities( - struct soap *soap, - const std::string& XAddr, - bool WSSubscriptionPolicySupport, - bool WSPullPointSupport, - bool WSPausableSubscriptionManagerInterfaceSupport) -{ - tt__EventCapabilities *_p = ::soap_new_tt__EventCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EventCapabilities::XAddr = XAddr; - _p->tt__EventCapabilities::WSSubscriptionPolicySupport = WSSubscriptionPolicySupport; - _p->tt__EventCapabilities::WSPullPointSupport = WSPullPointSupport; - _p->tt__EventCapabilities::WSPausableSubscriptionManagerInterfaceSupport = WSPausableSubscriptionManagerInterfaceSupport; - } - return _p; -} - -inline tt__EventCapabilities * soap_new_set_tt__EventCapabilities( - struct soap *soap, - const std::string& XAddr, - bool WSSubscriptionPolicySupport, - bool WSPullPointSupport, - bool WSPausableSubscriptionManagerInterfaceSupport, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__EventCapabilities *_p = ::soap_new_tt__EventCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EventCapabilities::XAddr = XAddr; - _p->tt__EventCapabilities::WSSubscriptionPolicySupport = WSSubscriptionPolicySupport; - _p->tt__EventCapabilities::WSPullPointSupport = WSPullPointSupport; - _p->tt__EventCapabilities::WSPausableSubscriptionManagerInterfaceSupport = WSPausableSubscriptionManagerInterfaceSupport; - _p->tt__EventCapabilities::__any = __any; - _p->tt__EventCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__EventCapabilities(struct soap *soap, tt__EventCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EventCapabilities", p->soap_type() == SOAP_TYPE_tt__EventCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EventCapabilities(struct soap *soap, const char *URL, tt__EventCapabilities 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, "tt:EventCapabilities", p->soap_type() == SOAP_TYPE_tt__EventCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EventCapabilities(struct soap *soap, const char *URL, tt__EventCapabilities 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, "tt:EventCapabilities", p->soap_type() == SOAP_TYPE_tt__EventCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EventCapabilities(struct soap *soap, const char *URL, tt__EventCapabilities 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, "tt:EventCapabilities", p->soap_type() == SOAP_TYPE_tt__EventCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EventCapabilities * SOAP_FMAC4 soap_get_tt__EventCapabilities(struct soap*, tt__EventCapabilities *, const char*, const char*); - -inline int soap_read_tt__EventCapabilities(struct soap *soap, tt__EventCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EventCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EventCapabilities(struct soap *soap, const char *URL, tt__EventCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EventCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EventCapabilities(struct soap *soap, tt__EventCapabilities *p) -{ - if (::soap_read_tt__EventCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DeviceCapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__DeviceCapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceCapabilitiesExtension(struct soap*, const char*, int, const tt__DeviceCapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__DeviceCapabilitiesExtension * SOAP_FMAC4 soap_in_tt__DeviceCapabilitiesExtension(struct soap*, const char*, tt__DeviceCapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__DeviceCapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__DeviceCapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DeviceCapabilitiesExtension * soap_new_tt__DeviceCapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DeviceCapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__DeviceCapabilitiesExtension * soap_new_req_tt__DeviceCapabilitiesExtension( - struct soap *soap) -{ - tt__DeviceCapabilitiesExtension *_p = ::soap_new_tt__DeviceCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__DeviceCapabilitiesExtension * soap_new_set_tt__DeviceCapabilitiesExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__DeviceCapabilitiesExtension *_p = ::soap_new_tt__DeviceCapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceCapabilitiesExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__DeviceCapabilitiesExtension(struct soap *soap, tt__DeviceCapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DeviceCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DeviceCapabilitiesExtension(struct soap *soap, const char *URL, tt__DeviceCapabilitiesExtension 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, "tt:DeviceCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DeviceCapabilitiesExtension(struct soap *soap, const char *URL, tt__DeviceCapabilitiesExtension 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, "tt:DeviceCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DeviceCapabilitiesExtension(struct soap *soap, const char *URL, tt__DeviceCapabilitiesExtension 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, "tt:DeviceCapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DeviceCapabilitiesExtension * SOAP_FMAC4 soap_get_tt__DeviceCapabilitiesExtension(struct soap*, tt__DeviceCapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__DeviceCapabilitiesExtension(struct soap *soap, tt__DeviceCapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DeviceCapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DeviceCapabilitiesExtension(struct soap *soap, const char *URL, tt__DeviceCapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DeviceCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DeviceCapabilitiesExtension(struct soap *soap, tt__DeviceCapabilitiesExtension *p) -{ - if (::soap_read_tt__DeviceCapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DeviceCapabilities_DEFINED -#define SOAP_TYPE_tt__DeviceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceCapabilities(struct soap*, const char*, int, const tt__DeviceCapabilities *, const char*); -SOAP_FMAC3 tt__DeviceCapabilities * SOAP_FMAC4 soap_in_tt__DeviceCapabilities(struct soap*, const char*, tt__DeviceCapabilities *, const char*); -SOAP_FMAC1 tt__DeviceCapabilities * SOAP_FMAC2 soap_instantiate_tt__DeviceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DeviceCapabilities * soap_new_tt__DeviceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DeviceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__DeviceCapabilities * soap_new_req_tt__DeviceCapabilities( - struct soap *soap, - const std::string& XAddr) -{ - tt__DeviceCapabilities *_p = ::soap_new_tt__DeviceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceCapabilities::XAddr = XAddr; - } - return _p; -} - -inline tt__DeviceCapabilities * soap_new_set_tt__DeviceCapabilities( - struct soap *soap, - const std::string& XAddr, - tt__NetworkCapabilities *Network, - tt__SystemCapabilities *System, - tt__IOCapabilities *IO, - tt__SecurityCapabilities *Security, - tt__DeviceCapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__DeviceCapabilities *_p = ::soap_new_tt__DeviceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceCapabilities::XAddr = XAddr; - _p->tt__DeviceCapabilities::Network = Network; - _p->tt__DeviceCapabilities::System = System; - _p->tt__DeviceCapabilities::IO = IO; - _p->tt__DeviceCapabilities::Security = Security; - _p->tt__DeviceCapabilities::Extension = Extension; - _p->tt__DeviceCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__DeviceCapabilities(struct soap *soap, tt__DeviceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DeviceCapabilities(struct soap *soap, const char *URL, tt__DeviceCapabilities 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, "tt:DeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DeviceCapabilities(struct soap *soap, const char *URL, tt__DeviceCapabilities 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, "tt:DeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DeviceCapabilities(struct soap *soap, const char *URL, tt__DeviceCapabilities 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, "tt:DeviceCapabilities", p->soap_type() == SOAP_TYPE_tt__DeviceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DeviceCapabilities * SOAP_FMAC4 soap_get_tt__DeviceCapabilities(struct soap*, tt__DeviceCapabilities *, const char*, const char*); - -inline int soap_read_tt__DeviceCapabilities(struct soap *soap, tt__DeviceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DeviceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DeviceCapabilities(struct soap *soap, const char *URL, tt__DeviceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DeviceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DeviceCapabilities(struct soap *soap, tt__DeviceCapabilities *p) -{ - if (::soap_read_tt__DeviceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnalyticsCapabilities_DEFINED -#define SOAP_TYPE_tt__AnalyticsCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnalyticsCapabilities(struct soap*, const char*, int, const tt__AnalyticsCapabilities *, const char*); -SOAP_FMAC3 tt__AnalyticsCapabilities * SOAP_FMAC4 soap_in_tt__AnalyticsCapabilities(struct soap*, const char*, tt__AnalyticsCapabilities *, const char*); -SOAP_FMAC1 tt__AnalyticsCapabilities * SOAP_FMAC2 soap_instantiate_tt__AnalyticsCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnalyticsCapabilities * soap_new_tt__AnalyticsCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnalyticsCapabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__AnalyticsCapabilities * soap_new_req_tt__AnalyticsCapabilities( - struct soap *soap, - const std::string& XAddr, - bool RuleSupport, - bool AnalyticsModuleSupport) -{ - tt__AnalyticsCapabilities *_p = ::soap_new_tt__AnalyticsCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsCapabilities::XAddr = XAddr; - _p->tt__AnalyticsCapabilities::RuleSupport = RuleSupport; - _p->tt__AnalyticsCapabilities::AnalyticsModuleSupport = AnalyticsModuleSupport; - } - return _p; -} - -inline tt__AnalyticsCapabilities * soap_new_set_tt__AnalyticsCapabilities( - struct soap *soap, - const std::string& XAddr, - bool RuleSupport, - bool AnalyticsModuleSupport, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnalyticsCapabilities *_p = ::soap_new_tt__AnalyticsCapabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnalyticsCapabilities::XAddr = XAddr; - _p->tt__AnalyticsCapabilities::RuleSupport = RuleSupport; - _p->tt__AnalyticsCapabilities::AnalyticsModuleSupport = AnalyticsModuleSupport; - _p->tt__AnalyticsCapabilities::__any = __any; - _p->tt__AnalyticsCapabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnalyticsCapabilities(struct soap *soap, tt__AnalyticsCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnalyticsCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnalyticsCapabilities(struct soap *soap, const char *URL, tt__AnalyticsCapabilities 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, "tt:AnalyticsCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnalyticsCapabilities(struct soap *soap, const char *URL, tt__AnalyticsCapabilities 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, "tt:AnalyticsCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnalyticsCapabilities(struct soap *soap, const char *URL, tt__AnalyticsCapabilities 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, "tt:AnalyticsCapabilities", p->soap_type() == SOAP_TYPE_tt__AnalyticsCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnalyticsCapabilities * SOAP_FMAC4 soap_get_tt__AnalyticsCapabilities(struct soap*, tt__AnalyticsCapabilities *, const char*, const char*); - -inline int soap_read_tt__AnalyticsCapabilities(struct soap *soap, tt__AnalyticsCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnalyticsCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnalyticsCapabilities(struct soap *soap, const char *URL, tt__AnalyticsCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnalyticsCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnalyticsCapabilities(struct soap *soap, tt__AnalyticsCapabilities *p) -{ - if (::soap_read_tt__AnalyticsCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CapabilitiesExtension2_DEFINED -#define SOAP_TYPE_tt__CapabilitiesExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilitiesExtension2(struct soap*, const char*, int, const tt__CapabilitiesExtension2 *, const char*); -SOAP_FMAC3 tt__CapabilitiesExtension2 * SOAP_FMAC4 soap_in_tt__CapabilitiesExtension2(struct soap*, const char*, tt__CapabilitiesExtension2 *, const char*); -SOAP_FMAC1 tt__CapabilitiesExtension2 * SOAP_FMAC2 soap_instantiate_tt__CapabilitiesExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CapabilitiesExtension2 * soap_new_tt__CapabilitiesExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CapabilitiesExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__CapabilitiesExtension2 * soap_new_req_tt__CapabilitiesExtension2( - struct soap *soap) -{ - tt__CapabilitiesExtension2 *_p = ::soap_new_tt__CapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__CapabilitiesExtension2 * soap_new_set_tt__CapabilitiesExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__CapabilitiesExtension2 *_p = ::soap_new_tt__CapabilitiesExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CapabilitiesExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__CapabilitiesExtension2(struct soap *soap, tt__CapabilitiesExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CapabilitiesExtension2(struct soap *soap, const char *URL, tt__CapabilitiesExtension2 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, "tt:CapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CapabilitiesExtension2(struct soap *soap, const char *URL, tt__CapabilitiesExtension2 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, "tt:CapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CapabilitiesExtension2(struct soap *soap, const char *URL, tt__CapabilitiesExtension2 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, "tt:CapabilitiesExtension2", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CapabilitiesExtension2 * SOAP_FMAC4 soap_get_tt__CapabilitiesExtension2(struct soap*, tt__CapabilitiesExtension2 *, const char*, const char*); - -inline int soap_read_tt__CapabilitiesExtension2(struct soap *soap, tt__CapabilitiesExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CapabilitiesExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CapabilitiesExtension2(struct soap *soap, const char *URL, tt__CapabilitiesExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CapabilitiesExtension2(struct soap *soap, tt__CapabilitiesExtension2 *p) -{ - if (::soap_read_tt__CapabilitiesExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__CapabilitiesExtension_DEFINED -#define SOAP_TYPE_tt__CapabilitiesExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__CapabilitiesExtension(struct soap*, const char*, int, const tt__CapabilitiesExtension *, const char*); -SOAP_FMAC3 tt__CapabilitiesExtension * SOAP_FMAC4 soap_in_tt__CapabilitiesExtension(struct soap*, const char*, tt__CapabilitiesExtension *, const char*); -SOAP_FMAC1 tt__CapabilitiesExtension * SOAP_FMAC2 soap_instantiate_tt__CapabilitiesExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__CapabilitiesExtension * soap_new_tt__CapabilitiesExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__CapabilitiesExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__CapabilitiesExtension * soap_new_req_tt__CapabilitiesExtension( - struct soap *soap) -{ - tt__CapabilitiesExtension *_p = ::soap_new_tt__CapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__CapabilitiesExtension * soap_new_set_tt__CapabilitiesExtension( - struct soap *soap, - const std::vector & __any, - tt__DeviceIOCapabilities *DeviceIO, - tt__DisplayCapabilities *Display, - tt__RecordingCapabilities *Recording, - tt__SearchCapabilities *Search, - tt__ReplayCapabilities *Replay, - tt__ReceiverCapabilities *Receiver, - tt__AnalyticsDeviceCapabilities *AnalyticsDevice, - tt__CapabilitiesExtension2 *Extensions) -{ - tt__CapabilitiesExtension *_p = ::soap_new_tt__CapabilitiesExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__CapabilitiesExtension::__any = __any; - _p->tt__CapabilitiesExtension::DeviceIO = DeviceIO; - _p->tt__CapabilitiesExtension::Display = Display; - _p->tt__CapabilitiesExtension::Recording = Recording; - _p->tt__CapabilitiesExtension::Search = Search; - _p->tt__CapabilitiesExtension::Replay = Replay; - _p->tt__CapabilitiesExtension::Receiver = Receiver; - _p->tt__CapabilitiesExtension::AnalyticsDevice = AnalyticsDevice; - _p->tt__CapabilitiesExtension::Extensions = Extensions; - } - return _p; -} - -inline int soap_write_tt__CapabilitiesExtension(struct soap *soap, tt__CapabilitiesExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:CapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__CapabilitiesExtension(struct soap *soap, const char *URL, tt__CapabilitiesExtension 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, "tt:CapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__CapabilitiesExtension(struct soap *soap, const char *URL, tt__CapabilitiesExtension 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, "tt:CapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__CapabilitiesExtension(struct soap *soap, const char *URL, tt__CapabilitiesExtension 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, "tt:CapabilitiesExtension", p->soap_type() == SOAP_TYPE_tt__CapabilitiesExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__CapabilitiesExtension * SOAP_FMAC4 soap_get_tt__CapabilitiesExtension(struct soap*, tt__CapabilitiesExtension *, const char*, const char*); - -inline int soap_read_tt__CapabilitiesExtension(struct soap *soap, tt__CapabilitiesExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__CapabilitiesExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__CapabilitiesExtension(struct soap *soap, const char *URL, tt__CapabilitiesExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__CapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__CapabilitiesExtension(struct soap *soap, tt__CapabilitiesExtension *p) -{ - if (::soap_read_tt__CapabilitiesExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Capabilities_DEFINED -#define SOAP_TYPE_tt__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Capabilities(struct soap*, const char*, int, const tt__Capabilities *, const char*); -SOAP_FMAC3 tt__Capabilities * SOAP_FMAC4 soap_in_tt__Capabilities(struct soap*, const char*, tt__Capabilities *, const char*); -SOAP_FMAC1 tt__Capabilities * SOAP_FMAC2 soap_instantiate_tt__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Capabilities * soap_new_tt__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__Capabilities * soap_new_req_tt__Capabilities( - struct soap *soap) -{ - tt__Capabilities *_p = ::soap_new_tt__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Capabilities * soap_new_set_tt__Capabilities( - struct soap *soap, - tt__AnalyticsCapabilities *Analytics, - tt__DeviceCapabilities *Device, - tt__EventCapabilities *Events, - tt__ImagingCapabilities *Imaging, - tt__MediaCapabilities *Media, - tt__PTZCapabilities *PTZ, - tt__CapabilitiesExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Capabilities *_p = ::soap_new_tt__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Capabilities::Analytics = Analytics; - _p->tt__Capabilities::Device = Device; - _p->tt__Capabilities::Events = Events; - _p->tt__Capabilities::Imaging = Imaging; - _p->tt__Capabilities::Media = Media; - _p->tt__Capabilities::PTZ = PTZ; - _p->tt__Capabilities::Extension = Extension; - _p->tt__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Capabilities(struct soap *soap, tt__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Capabilities", p->soap_type() == SOAP_TYPE_tt__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Capabilities(struct soap *soap, const char *URL, tt__Capabilities 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, "tt:Capabilities", p->soap_type() == SOAP_TYPE_tt__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Capabilities(struct soap *soap, const char *URL, tt__Capabilities 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, "tt:Capabilities", p->soap_type() == SOAP_TYPE_tt__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Capabilities(struct soap *soap, const char *URL, tt__Capabilities 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, "tt:Capabilities", p->soap_type() == SOAP_TYPE_tt__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Capabilities * SOAP_FMAC4 soap_get_tt__Capabilities(struct soap*, tt__Capabilities *, const char*, const char*); - -inline int soap_read_tt__Capabilities(struct soap *soap, tt__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Capabilities(struct soap *soap, const char *URL, tt__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Capabilities(struct soap *soap, tt__Capabilities *p) -{ - if (::soap_read_tt__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11AvailableNetworksExtension_DEFINED -#define SOAP_TYPE_tt__Dot11AvailableNetworksExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AvailableNetworksExtension(struct soap*, const char*, int, const tt__Dot11AvailableNetworksExtension *, const char*); -SOAP_FMAC3 tt__Dot11AvailableNetworksExtension * SOAP_FMAC4 soap_in_tt__Dot11AvailableNetworksExtension(struct soap*, const char*, tt__Dot11AvailableNetworksExtension *, const char*); -SOAP_FMAC1 tt__Dot11AvailableNetworksExtension * SOAP_FMAC2 soap_instantiate_tt__Dot11AvailableNetworksExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11AvailableNetworksExtension * soap_new_tt__Dot11AvailableNetworksExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11AvailableNetworksExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11AvailableNetworksExtension * soap_new_req_tt__Dot11AvailableNetworksExtension( - struct soap *soap) -{ - tt__Dot11AvailableNetworksExtension *_p = ::soap_new_tt__Dot11AvailableNetworksExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Dot11AvailableNetworksExtension * soap_new_set_tt__Dot11AvailableNetworksExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__Dot11AvailableNetworksExtension *_p = ::soap_new_tt__Dot11AvailableNetworksExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11AvailableNetworksExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__Dot11AvailableNetworksExtension(struct soap *soap, tt__Dot11AvailableNetworksExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11AvailableNetworksExtension", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworksExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11AvailableNetworksExtension(struct soap *soap, const char *URL, tt__Dot11AvailableNetworksExtension 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, "tt:Dot11AvailableNetworksExtension", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworksExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11AvailableNetworksExtension(struct soap *soap, const char *URL, tt__Dot11AvailableNetworksExtension 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, "tt:Dot11AvailableNetworksExtension", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworksExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11AvailableNetworksExtension(struct soap *soap, const char *URL, tt__Dot11AvailableNetworksExtension 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, "tt:Dot11AvailableNetworksExtension", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworksExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11AvailableNetworksExtension * SOAP_FMAC4 soap_get_tt__Dot11AvailableNetworksExtension(struct soap*, tt__Dot11AvailableNetworksExtension *, const char*, const char*); - -inline int soap_read_tt__Dot11AvailableNetworksExtension(struct soap *soap, tt__Dot11AvailableNetworksExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11AvailableNetworksExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11AvailableNetworksExtension(struct soap *soap, const char *URL, tt__Dot11AvailableNetworksExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11AvailableNetworksExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11AvailableNetworksExtension(struct soap *soap, tt__Dot11AvailableNetworksExtension *p) -{ - if (::soap_read_tt__Dot11AvailableNetworksExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11AvailableNetworks_DEFINED -#define SOAP_TYPE_tt__Dot11AvailableNetworks_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11AvailableNetworks(struct soap*, const char*, int, const tt__Dot11AvailableNetworks *, const char*); -SOAP_FMAC3 tt__Dot11AvailableNetworks * SOAP_FMAC4 soap_in_tt__Dot11AvailableNetworks(struct soap*, const char*, tt__Dot11AvailableNetworks *, const char*); -SOAP_FMAC1 tt__Dot11AvailableNetworks * SOAP_FMAC2 soap_instantiate_tt__Dot11AvailableNetworks(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11AvailableNetworks * soap_new_tt__Dot11AvailableNetworks(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11AvailableNetworks(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11AvailableNetworks * soap_new_req_tt__Dot11AvailableNetworks( - struct soap *soap, - const xsd__hexBinary& SSID) -{ - tt__Dot11AvailableNetworks *_p = ::soap_new_tt__Dot11AvailableNetworks(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11AvailableNetworks::SSID = SSID; - } - return _p; -} - -inline tt__Dot11AvailableNetworks * soap_new_set_tt__Dot11AvailableNetworks( - struct soap *soap, - const xsd__hexBinary& SSID, - std::string *BSSID, - const std::vector & AuthAndMangementSuite, - const std::vector & PairCipher, - const std::vector & GroupCipher, - enum tt__Dot11SignalStrength *SignalStrength, - tt__Dot11AvailableNetworksExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot11AvailableNetworks *_p = ::soap_new_tt__Dot11AvailableNetworks(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11AvailableNetworks::SSID = SSID; - _p->tt__Dot11AvailableNetworks::BSSID = BSSID; - _p->tt__Dot11AvailableNetworks::AuthAndMangementSuite = AuthAndMangementSuite; - _p->tt__Dot11AvailableNetworks::PairCipher = PairCipher; - _p->tt__Dot11AvailableNetworks::GroupCipher = GroupCipher; - _p->tt__Dot11AvailableNetworks::SignalStrength = SignalStrength; - _p->tt__Dot11AvailableNetworks::Extension = Extension; - _p->tt__Dot11AvailableNetworks::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot11AvailableNetworks(struct soap *soap, tt__Dot11AvailableNetworks const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11AvailableNetworks", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworks ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11AvailableNetworks(struct soap *soap, const char *URL, tt__Dot11AvailableNetworks 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, "tt:Dot11AvailableNetworks", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworks ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11AvailableNetworks(struct soap *soap, const char *URL, tt__Dot11AvailableNetworks 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, "tt:Dot11AvailableNetworks", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworks ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11AvailableNetworks(struct soap *soap, const char *URL, tt__Dot11AvailableNetworks 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, "tt:Dot11AvailableNetworks", p->soap_type() == SOAP_TYPE_tt__Dot11AvailableNetworks ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11AvailableNetworks * SOAP_FMAC4 soap_get_tt__Dot11AvailableNetworks(struct soap*, tt__Dot11AvailableNetworks *, const char*, const char*); - -inline int soap_read_tt__Dot11AvailableNetworks(struct soap *soap, tt__Dot11AvailableNetworks *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11AvailableNetworks(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11AvailableNetworks(struct soap *soap, const char *URL, tt__Dot11AvailableNetworks *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11AvailableNetworks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11AvailableNetworks(struct soap *soap, tt__Dot11AvailableNetworks *p) -{ - if (::soap_read_tt__Dot11AvailableNetworks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11Status_DEFINED -#define SOAP_TYPE_tt__Dot11Status_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Status(struct soap*, const char*, int, const tt__Dot11Status *, const char*); -SOAP_FMAC3 tt__Dot11Status * SOAP_FMAC4 soap_in_tt__Dot11Status(struct soap*, const char*, tt__Dot11Status *, const char*); -SOAP_FMAC1 tt__Dot11Status * SOAP_FMAC2 soap_instantiate_tt__Dot11Status(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11Status * soap_new_tt__Dot11Status(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11Status(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11Status * soap_new_req_tt__Dot11Status( - struct soap *soap, - const xsd__hexBinary& SSID, - const std::string& ActiveConfigAlias) -{ - tt__Dot11Status *_p = ::soap_new_tt__Dot11Status(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Status::SSID = SSID; - _p->tt__Dot11Status::ActiveConfigAlias = ActiveConfigAlias; - } - return _p; -} - -inline tt__Dot11Status * soap_new_set_tt__Dot11Status( - struct soap *soap, - const xsd__hexBinary& SSID, - std::string *BSSID, - enum tt__Dot11Cipher *PairCipher, - enum tt__Dot11Cipher *GroupCipher, - enum tt__Dot11SignalStrength *SignalStrength, - const std::string& ActiveConfigAlias, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot11Status *_p = ::soap_new_tt__Dot11Status(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Status::SSID = SSID; - _p->tt__Dot11Status::BSSID = BSSID; - _p->tt__Dot11Status::PairCipher = PairCipher; - _p->tt__Dot11Status::GroupCipher = GroupCipher; - _p->tt__Dot11Status::SignalStrength = SignalStrength; - _p->tt__Dot11Status::ActiveConfigAlias = ActiveConfigAlias; - _p->tt__Dot11Status::__any = __any; - _p->tt__Dot11Status::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot11Status(struct soap *soap, tt__Dot11Status const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11Status", p->soap_type() == SOAP_TYPE_tt__Dot11Status ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11Status(struct soap *soap, const char *URL, tt__Dot11Status 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, "tt:Dot11Status", p->soap_type() == SOAP_TYPE_tt__Dot11Status ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11Status(struct soap *soap, const char *URL, tt__Dot11Status 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, "tt:Dot11Status", p->soap_type() == SOAP_TYPE_tt__Dot11Status ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11Status(struct soap *soap, const char *URL, tt__Dot11Status 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, "tt:Dot11Status", p->soap_type() == SOAP_TYPE_tt__Dot11Status ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11Status * SOAP_FMAC4 soap_get_tt__Dot11Status(struct soap*, tt__Dot11Status *, const char*, const char*); - -inline int soap_read_tt__Dot11Status(struct soap *soap, tt__Dot11Status *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11Status(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11Status(struct soap *soap, const char *URL, tt__Dot11Status *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11Status(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11Status(struct soap *soap, tt__Dot11Status *p) -{ - if (::soap_read_tt__Dot11Status(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11Capabilities_DEFINED -#define SOAP_TYPE_tt__Dot11Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Capabilities(struct soap*, const char*, int, const tt__Dot11Capabilities *, const char*); -SOAP_FMAC3 tt__Dot11Capabilities * SOAP_FMAC4 soap_in_tt__Dot11Capabilities(struct soap*, const char*, tt__Dot11Capabilities *, const char*); -SOAP_FMAC1 tt__Dot11Capabilities * SOAP_FMAC2 soap_instantiate_tt__Dot11Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11Capabilities * soap_new_tt__Dot11Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11Capabilities(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11Capabilities * soap_new_req_tt__Dot11Capabilities( - struct soap *soap, - bool TKIP, - bool ScanAvailableNetworks, - bool MultipleConfiguration, - bool AdHocStationMode, - bool WEP) -{ - tt__Dot11Capabilities *_p = ::soap_new_tt__Dot11Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Capabilities::TKIP = TKIP; - _p->tt__Dot11Capabilities::ScanAvailableNetworks = ScanAvailableNetworks; - _p->tt__Dot11Capabilities::MultipleConfiguration = MultipleConfiguration; - _p->tt__Dot11Capabilities::AdHocStationMode = AdHocStationMode; - _p->tt__Dot11Capabilities::WEP = WEP; - } - return _p; -} - -inline tt__Dot11Capabilities * soap_new_set_tt__Dot11Capabilities( - struct soap *soap, - bool TKIP, - bool ScanAvailableNetworks, - bool MultipleConfiguration, - bool AdHocStationMode, - bool WEP, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot11Capabilities *_p = ::soap_new_tt__Dot11Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Capabilities::TKIP = TKIP; - _p->tt__Dot11Capabilities::ScanAvailableNetworks = ScanAvailableNetworks; - _p->tt__Dot11Capabilities::MultipleConfiguration = MultipleConfiguration; - _p->tt__Dot11Capabilities::AdHocStationMode = AdHocStationMode; - _p->tt__Dot11Capabilities::WEP = WEP; - _p->tt__Dot11Capabilities::__any = __any; - _p->tt__Dot11Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot11Capabilities(struct soap *soap, tt__Dot11Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11Capabilities", p->soap_type() == SOAP_TYPE_tt__Dot11Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11Capabilities(struct soap *soap, const char *URL, tt__Dot11Capabilities 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, "tt:Dot11Capabilities", p->soap_type() == SOAP_TYPE_tt__Dot11Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11Capabilities(struct soap *soap, const char *URL, tt__Dot11Capabilities 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, "tt:Dot11Capabilities", p->soap_type() == SOAP_TYPE_tt__Dot11Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11Capabilities(struct soap *soap, const char *URL, tt__Dot11Capabilities 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, "tt:Dot11Capabilities", p->soap_type() == SOAP_TYPE_tt__Dot11Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11Capabilities * SOAP_FMAC4 soap_get_tt__Dot11Capabilities(struct soap*, tt__Dot11Capabilities *, const char*, const char*); - -inline int soap_read_tt__Dot11Capabilities(struct soap *soap, tt__Dot11Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11Capabilities(struct soap *soap, const char *URL, tt__Dot11Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11Capabilities(struct soap *soap, tt__Dot11Capabilities *p) -{ - if (::soap_read_tt__Dot11Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceSetConfigurationExtension2(struct soap*, const char*, int, const tt__NetworkInterfaceSetConfigurationExtension2 *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__NetworkInterfaceSetConfigurationExtension2(struct soap*, const char*, tt__NetworkInterfaceSetConfigurationExtension2 *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceSetConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceSetConfigurationExtension2 * soap_new_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceSetConfigurationExtension2 * soap_new_req_tt__NetworkInterfaceSetConfigurationExtension2( - struct soap *soap) -{ - tt__NetworkInterfaceSetConfigurationExtension2 *_p = ::soap_new_tt__NetworkInterfaceSetConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkInterfaceSetConfigurationExtension2 * soap_new_set_tt__NetworkInterfaceSetConfigurationExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__NetworkInterfaceSetConfigurationExtension2 *_p = ::soap_new_tt__NetworkInterfaceSetConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceSetConfigurationExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceSetConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension2 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, "tt:NetworkInterfaceSetConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension2 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, "tt:NetworkInterfaceSetConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension2 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, "tt:NetworkInterfaceSetConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__NetworkInterfaceSetConfigurationExtension2(struct soap*, tt__NetworkInterfaceSetConfigurationExtension2 *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceSetConfigurationExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceSetConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceSetConfigurationExtension2(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension2 *p) -{ - if (::soap_read_tt__NetworkInterfaceSetConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11PSKSetExtension_DEFINED -#define SOAP_TYPE_tt__Dot11PSKSetExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKSetExtension(struct soap*, const char*, int, const tt__Dot11PSKSetExtension *, const char*); -SOAP_FMAC3 tt__Dot11PSKSetExtension * SOAP_FMAC4 soap_in_tt__Dot11PSKSetExtension(struct soap*, const char*, tt__Dot11PSKSetExtension *, const char*); -SOAP_FMAC1 tt__Dot11PSKSetExtension * SOAP_FMAC2 soap_instantiate_tt__Dot11PSKSetExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11PSKSetExtension * soap_new_tt__Dot11PSKSetExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11PSKSetExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11PSKSetExtension * soap_new_req_tt__Dot11PSKSetExtension( - struct soap *soap) -{ - tt__Dot11PSKSetExtension *_p = ::soap_new_tt__Dot11PSKSetExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Dot11PSKSetExtension * soap_new_set_tt__Dot11PSKSetExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__Dot11PSKSetExtension *_p = ::soap_new_tt__Dot11PSKSetExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11PSKSetExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__Dot11PSKSetExtension(struct soap *soap, tt__Dot11PSKSetExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11PSKSetExtension", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSetExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11PSKSetExtension(struct soap *soap, const char *URL, tt__Dot11PSKSetExtension 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, "tt:Dot11PSKSetExtension", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSetExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11PSKSetExtension(struct soap *soap, const char *URL, tt__Dot11PSKSetExtension 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, "tt:Dot11PSKSetExtension", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSetExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11PSKSetExtension(struct soap *soap, const char *URL, tt__Dot11PSKSetExtension 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, "tt:Dot11PSKSetExtension", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSetExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11PSKSetExtension * SOAP_FMAC4 soap_get_tt__Dot11PSKSetExtension(struct soap*, tt__Dot11PSKSetExtension *, const char*, const char*); - -inline int soap_read_tt__Dot11PSKSetExtension(struct soap *soap, tt__Dot11PSKSetExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11PSKSetExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11PSKSetExtension(struct soap *soap, const char *URL, tt__Dot11PSKSetExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11PSKSetExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11PSKSetExtension(struct soap *soap, tt__Dot11PSKSetExtension *p) -{ - if (::soap_read_tt__Dot11PSKSetExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11PSKSet_DEFINED -#define SOAP_TYPE_tt__Dot11PSKSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11PSKSet(struct soap*, const char*, int, const tt__Dot11PSKSet *, const char*); -SOAP_FMAC3 tt__Dot11PSKSet * SOAP_FMAC4 soap_in_tt__Dot11PSKSet(struct soap*, const char*, tt__Dot11PSKSet *, const char*); -SOAP_FMAC1 tt__Dot11PSKSet * SOAP_FMAC2 soap_instantiate_tt__Dot11PSKSet(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11PSKSet * soap_new_tt__Dot11PSKSet(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11PSKSet(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11PSKSet * soap_new_req_tt__Dot11PSKSet( - struct soap *soap) -{ - tt__Dot11PSKSet *_p = ::soap_new_tt__Dot11PSKSet(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Dot11PSKSet * soap_new_set_tt__Dot11PSKSet( - struct soap *soap, - xsd__hexBinary *Key, - std::string *Passphrase, - tt__Dot11PSKSetExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot11PSKSet *_p = ::soap_new_tt__Dot11PSKSet(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11PSKSet::Key = Key; - _p->tt__Dot11PSKSet::Passphrase = Passphrase; - _p->tt__Dot11PSKSet::Extension = Extension; - _p->tt__Dot11PSKSet::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot11PSKSet(struct soap *soap, tt__Dot11PSKSet const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11PSKSet", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSet ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11PSKSet(struct soap *soap, const char *URL, tt__Dot11PSKSet 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, "tt:Dot11PSKSet", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSet ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11PSKSet(struct soap *soap, const char *URL, tt__Dot11PSKSet 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, "tt:Dot11PSKSet", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSet ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11PSKSet(struct soap *soap, const char *URL, tt__Dot11PSKSet 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, "tt:Dot11PSKSet", p->soap_type() == SOAP_TYPE_tt__Dot11PSKSet ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11PSKSet * SOAP_FMAC4 soap_get_tt__Dot11PSKSet(struct soap*, tt__Dot11PSKSet *, const char*, const char*); - -inline int soap_read_tt__Dot11PSKSet(struct soap *soap, tt__Dot11PSKSet *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11PSKSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11PSKSet(struct soap *soap, const char *URL, tt__Dot11PSKSet *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11PSKSet(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11PSKSet(struct soap *soap, tt__Dot11PSKSet *p) -{ - if (::soap_read_tt__Dot11PSKSet(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SecurityConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__Dot11SecurityConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityConfigurationExtension(struct soap*, const char*, int, const tt__Dot11SecurityConfigurationExtension *, const char*); -SOAP_FMAC3 tt__Dot11SecurityConfigurationExtension * SOAP_FMAC4 soap_in_tt__Dot11SecurityConfigurationExtension(struct soap*, const char*, tt__Dot11SecurityConfigurationExtension *, const char*); -SOAP_FMAC1 tt__Dot11SecurityConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__Dot11SecurityConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11SecurityConfigurationExtension * soap_new_tt__Dot11SecurityConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11SecurityConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11SecurityConfigurationExtension * soap_new_req_tt__Dot11SecurityConfigurationExtension( - struct soap *soap) -{ - tt__Dot11SecurityConfigurationExtension *_p = ::soap_new_tt__Dot11SecurityConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Dot11SecurityConfigurationExtension * soap_new_set_tt__Dot11SecurityConfigurationExtension( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot11SecurityConfigurationExtension *_p = ::soap_new_tt__Dot11SecurityConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SecurityConfigurationExtension::__any = __any; - _p->tt__Dot11SecurityConfigurationExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot11SecurityConfigurationExtension(struct soap *soap, tt__Dot11SecurityConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11SecurityConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SecurityConfigurationExtension(struct soap *soap, const char *URL, tt__Dot11SecurityConfigurationExtension 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, "tt:Dot11SecurityConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SecurityConfigurationExtension(struct soap *soap, const char *URL, tt__Dot11SecurityConfigurationExtension 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, "tt:Dot11SecurityConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SecurityConfigurationExtension(struct soap *soap, const char *URL, tt__Dot11SecurityConfigurationExtension 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, "tt:Dot11SecurityConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11SecurityConfigurationExtension * SOAP_FMAC4 soap_get_tt__Dot11SecurityConfigurationExtension(struct soap*, tt__Dot11SecurityConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__Dot11SecurityConfigurationExtension(struct soap *soap, tt__Dot11SecurityConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SecurityConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SecurityConfigurationExtension(struct soap *soap, const char *URL, tt__Dot11SecurityConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SecurityConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SecurityConfigurationExtension(struct soap *soap, tt__Dot11SecurityConfigurationExtension *p) -{ - if (::soap_read_tt__Dot11SecurityConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11SecurityConfiguration_DEFINED -#define SOAP_TYPE_tt__Dot11SecurityConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11SecurityConfiguration(struct soap*, const char*, int, const tt__Dot11SecurityConfiguration *, const char*); -SOAP_FMAC3 tt__Dot11SecurityConfiguration * SOAP_FMAC4 soap_in_tt__Dot11SecurityConfiguration(struct soap*, const char*, tt__Dot11SecurityConfiguration *, const char*); -SOAP_FMAC1 tt__Dot11SecurityConfiguration * SOAP_FMAC2 soap_instantiate_tt__Dot11SecurityConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11SecurityConfiguration * soap_new_tt__Dot11SecurityConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11SecurityConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11SecurityConfiguration * soap_new_req_tt__Dot11SecurityConfiguration( - struct soap *soap, - enum tt__Dot11SecurityMode Mode) -{ - tt__Dot11SecurityConfiguration *_p = ::soap_new_tt__Dot11SecurityConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SecurityConfiguration::Mode = Mode; - } - return _p; -} - -inline tt__Dot11SecurityConfiguration * soap_new_set_tt__Dot11SecurityConfiguration( - struct soap *soap, - enum tt__Dot11SecurityMode Mode, - enum tt__Dot11Cipher *Algorithm, - tt__Dot11PSKSet *PSK, - std::string *Dot1X, - tt__Dot11SecurityConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot11SecurityConfiguration *_p = ::soap_new_tt__Dot11SecurityConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11SecurityConfiguration::Mode = Mode; - _p->tt__Dot11SecurityConfiguration::Algorithm = Algorithm; - _p->tt__Dot11SecurityConfiguration::PSK = PSK; - _p->tt__Dot11SecurityConfiguration::Dot1X = Dot1X; - _p->tt__Dot11SecurityConfiguration::Extension = Extension; - _p->tt__Dot11SecurityConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot11SecurityConfiguration(struct soap *soap, tt__Dot11SecurityConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11SecurityConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11SecurityConfiguration(struct soap *soap, const char *URL, tt__Dot11SecurityConfiguration 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, "tt:Dot11SecurityConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11SecurityConfiguration(struct soap *soap, const char *URL, tt__Dot11SecurityConfiguration 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, "tt:Dot11SecurityConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11SecurityConfiguration(struct soap *soap, const char *URL, tt__Dot11SecurityConfiguration 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, "tt:Dot11SecurityConfiguration", p->soap_type() == SOAP_TYPE_tt__Dot11SecurityConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11SecurityConfiguration * SOAP_FMAC4 soap_get_tt__Dot11SecurityConfiguration(struct soap*, tt__Dot11SecurityConfiguration *, const char*, const char*); - -inline int soap_read_tt__Dot11SecurityConfiguration(struct soap *soap, tt__Dot11SecurityConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11SecurityConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11SecurityConfiguration(struct soap *soap, const char *URL, tt__Dot11SecurityConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11SecurityConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11SecurityConfiguration(struct soap *soap, tt__Dot11SecurityConfiguration *p) -{ - if (::soap_read_tt__Dot11SecurityConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot11Configuration_DEFINED -#define SOAP_TYPE_tt__Dot11Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot11Configuration(struct soap*, const char*, int, const tt__Dot11Configuration *, const char*); -SOAP_FMAC3 tt__Dot11Configuration * SOAP_FMAC4 soap_in_tt__Dot11Configuration(struct soap*, const char*, tt__Dot11Configuration *, const char*); -SOAP_FMAC1 tt__Dot11Configuration * SOAP_FMAC2 soap_instantiate_tt__Dot11Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot11Configuration * soap_new_tt__Dot11Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot11Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot11Configuration * soap_new_req_tt__Dot11Configuration( - struct soap *soap, - const xsd__hexBinary& SSID, - enum tt__Dot11StationMode Mode, - const std::string& Alias, - const std::string& Priority, - tt__Dot11SecurityConfiguration *Security) -{ - tt__Dot11Configuration *_p = ::soap_new_tt__Dot11Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Configuration::SSID = SSID; - _p->tt__Dot11Configuration::Mode = Mode; - _p->tt__Dot11Configuration::Alias = Alias; - _p->tt__Dot11Configuration::Priority = Priority; - _p->tt__Dot11Configuration::Security = Security; - } - return _p; -} - -inline tt__Dot11Configuration * soap_new_set_tt__Dot11Configuration( - struct soap *soap, - const xsd__hexBinary& SSID, - enum tt__Dot11StationMode Mode, - const std::string& Alias, - const std::string& Priority, - tt__Dot11SecurityConfiguration *Security, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot11Configuration *_p = ::soap_new_tt__Dot11Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot11Configuration::SSID = SSID; - _p->tt__Dot11Configuration::Mode = Mode; - _p->tt__Dot11Configuration::Alias = Alias; - _p->tt__Dot11Configuration::Priority = Priority; - _p->tt__Dot11Configuration::Security = Security; - _p->tt__Dot11Configuration::__any = __any; - _p->tt__Dot11Configuration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot11Configuration(struct soap *soap, tt__Dot11Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot11Configuration", p->soap_type() == SOAP_TYPE_tt__Dot11Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot11Configuration(struct soap *soap, const char *URL, tt__Dot11Configuration 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, "tt:Dot11Configuration", p->soap_type() == SOAP_TYPE_tt__Dot11Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot11Configuration(struct soap *soap, const char *URL, tt__Dot11Configuration 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, "tt:Dot11Configuration", p->soap_type() == SOAP_TYPE_tt__Dot11Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot11Configuration(struct soap *soap, const char *URL, tt__Dot11Configuration 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, "tt:Dot11Configuration", p->soap_type() == SOAP_TYPE_tt__Dot11Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot11Configuration * SOAP_FMAC4 soap_get_tt__Dot11Configuration(struct soap*, tt__Dot11Configuration *, const char*, const char*); - -inline int soap_read_tt__Dot11Configuration(struct soap *soap, tt__Dot11Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot11Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot11Configuration(struct soap *soap, const char *URL, tt__Dot11Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot11Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot11Configuration(struct soap *soap, tt__Dot11Configuration *p) -{ - if (::soap_read_tt__Dot11Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPAddressFilterExtension_DEFINED -#define SOAP_TYPE_tt__IPAddressFilterExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilterExtension(struct soap*, const char*, int, const tt__IPAddressFilterExtension *, const char*); -SOAP_FMAC3 tt__IPAddressFilterExtension * SOAP_FMAC4 soap_in_tt__IPAddressFilterExtension(struct soap*, const char*, tt__IPAddressFilterExtension *, const char*); -SOAP_FMAC1 tt__IPAddressFilterExtension * SOAP_FMAC2 soap_instantiate_tt__IPAddressFilterExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPAddressFilterExtension * soap_new_tt__IPAddressFilterExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPAddressFilterExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__IPAddressFilterExtension * soap_new_req_tt__IPAddressFilterExtension( - struct soap *soap) -{ - tt__IPAddressFilterExtension *_p = ::soap_new_tt__IPAddressFilterExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IPAddressFilterExtension * soap_new_set_tt__IPAddressFilterExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__IPAddressFilterExtension *_p = ::soap_new_tt__IPAddressFilterExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPAddressFilterExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__IPAddressFilterExtension(struct soap *soap, tt__IPAddressFilterExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPAddressFilterExtension", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPAddressFilterExtension(struct soap *soap, const char *URL, tt__IPAddressFilterExtension 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, "tt:IPAddressFilterExtension", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPAddressFilterExtension(struct soap *soap, const char *URL, tt__IPAddressFilterExtension 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, "tt:IPAddressFilterExtension", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPAddressFilterExtension(struct soap *soap, const char *URL, tt__IPAddressFilterExtension 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, "tt:IPAddressFilterExtension", p->soap_type() == SOAP_TYPE_tt__IPAddressFilterExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPAddressFilterExtension * SOAP_FMAC4 soap_get_tt__IPAddressFilterExtension(struct soap*, tt__IPAddressFilterExtension *, const char*, const char*); - -inline int soap_read_tt__IPAddressFilterExtension(struct soap *soap, tt__IPAddressFilterExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPAddressFilterExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPAddressFilterExtension(struct soap *soap, const char *URL, tt__IPAddressFilterExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPAddressFilterExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPAddressFilterExtension(struct soap *soap, tt__IPAddressFilterExtension *p) -{ - if (::soap_read_tt__IPAddressFilterExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPAddressFilter_DEFINED -#define SOAP_TYPE_tt__IPAddressFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddressFilter(struct soap*, const char*, int, const tt__IPAddressFilter *, const char*); -SOAP_FMAC3 tt__IPAddressFilter * SOAP_FMAC4 soap_in_tt__IPAddressFilter(struct soap*, const char*, tt__IPAddressFilter *, const char*); -SOAP_FMAC1 tt__IPAddressFilter * SOAP_FMAC2 soap_instantiate_tt__IPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPAddressFilter * soap_new_tt__IPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline tt__IPAddressFilter * soap_new_req_tt__IPAddressFilter( - struct soap *soap, - enum tt__IPAddressFilterType Type) -{ - tt__IPAddressFilter *_p = ::soap_new_tt__IPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPAddressFilter::Type = Type; - } - return _p; -} - -inline tt__IPAddressFilter * soap_new_set_tt__IPAddressFilter( - struct soap *soap, - enum tt__IPAddressFilterType Type, - const std::vector & IPv4Address, - const std::vector & IPv6Address, - tt__IPAddressFilterExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__IPAddressFilter *_p = ::soap_new_tt__IPAddressFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPAddressFilter::Type = Type; - _p->tt__IPAddressFilter::IPv4Address = IPv4Address; - _p->tt__IPAddressFilter::IPv6Address = IPv6Address; - _p->tt__IPAddressFilter::Extension = Extension; - _p->tt__IPAddressFilter::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__IPAddressFilter(struct soap *soap, tt__IPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPAddressFilter", p->soap_type() == SOAP_TYPE_tt__IPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPAddressFilter(struct soap *soap, const char *URL, tt__IPAddressFilter 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, "tt:IPAddressFilter", p->soap_type() == SOAP_TYPE_tt__IPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPAddressFilter(struct soap *soap, const char *URL, tt__IPAddressFilter 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, "tt:IPAddressFilter", p->soap_type() == SOAP_TYPE_tt__IPAddressFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPAddressFilter(struct soap *soap, const char *URL, tt__IPAddressFilter 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, "tt:IPAddressFilter", p->soap_type() == SOAP_TYPE_tt__IPAddressFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPAddressFilter * SOAP_FMAC4 soap_get_tt__IPAddressFilter(struct soap*, tt__IPAddressFilter *, const char*, const char*); - -inline int soap_read_tt__IPAddressFilter(struct soap *soap, tt__IPAddressFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPAddressFilter(struct soap *soap, const char *URL, tt__IPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPAddressFilter(struct soap *soap, tt__IPAddressFilter *p) -{ - if (::soap_read_tt__IPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkZeroConfigurationExtension2_DEFINED -#define SOAP_TYPE_tt__NetworkZeroConfigurationExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkZeroConfigurationExtension2(struct soap*, const char*, int, const tt__NetworkZeroConfigurationExtension2 *, const char*); -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__NetworkZeroConfigurationExtension2(struct soap*, const char*, tt__NetworkZeroConfigurationExtension2 *, const char*); -SOAP_FMAC1 tt__NetworkZeroConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkZeroConfigurationExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkZeroConfigurationExtension2 * soap_new_tt__NetworkZeroConfigurationExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkZeroConfigurationExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkZeroConfigurationExtension2 * soap_new_req_tt__NetworkZeroConfigurationExtension2( - struct soap *soap) -{ - tt__NetworkZeroConfigurationExtension2 *_p = ::soap_new_tt__NetworkZeroConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkZeroConfigurationExtension2 * soap_new_set_tt__NetworkZeroConfigurationExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__NetworkZeroConfigurationExtension2 *_p = ::soap_new_tt__NetworkZeroConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkZeroConfigurationExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__NetworkZeroConfigurationExtension2(struct soap *soap, tt__NetworkZeroConfigurationExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkZeroConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkZeroConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension2 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, "tt:NetworkZeroConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkZeroConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension2 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, "tt:NetworkZeroConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkZeroConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension2 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, "tt:NetworkZeroConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__NetworkZeroConfigurationExtension2(struct soap*, tt__NetworkZeroConfigurationExtension2 *, const char*, const char*); - -inline int soap_read_tt__NetworkZeroConfigurationExtension2(struct soap *soap, tt__NetworkZeroConfigurationExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkZeroConfigurationExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkZeroConfigurationExtension2(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkZeroConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkZeroConfigurationExtension2(struct soap *soap, tt__NetworkZeroConfigurationExtension2 *p) -{ - if (::soap_read_tt__NetworkZeroConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkZeroConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__NetworkZeroConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkZeroConfigurationExtension(struct soap*, const char*, int, const tt__NetworkZeroConfigurationExtension *, const char*); -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension * SOAP_FMAC4 soap_in_tt__NetworkZeroConfigurationExtension(struct soap*, const char*, tt__NetworkZeroConfigurationExtension *, const char*); -SOAP_FMAC1 tt__NetworkZeroConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkZeroConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkZeroConfigurationExtension * soap_new_tt__NetworkZeroConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkZeroConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkZeroConfigurationExtension * soap_new_req_tt__NetworkZeroConfigurationExtension( - struct soap *soap) -{ - tt__NetworkZeroConfigurationExtension *_p = ::soap_new_tt__NetworkZeroConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkZeroConfigurationExtension * soap_new_set_tt__NetworkZeroConfigurationExtension( - struct soap *soap, - const std::vector & __any, - const std::vector & Additional, - tt__NetworkZeroConfigurationExtension2 *Extension) -{ - tt__NetworkZeroConfigurationExtension *_p = ::soap_new_tt__NetworkZeroConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkZeroConfigurationExtension::__any = __any; - _p->tt__NetworkZeroConfigurationExtension::Additional = Additional; - _p->tt__NetworkZeroConfigurationExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__NetworkZeroConfigurationExtension(struct soap *soap, tt__NetworkZeroConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkZeroConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkZeroConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension 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, "tt:NetworkZeroConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkZeroConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension 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, "tt:NetworkZeroConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkZeroConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension 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, "tt:NetworkZeroConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension * SOAP_FMAC4 soap_get_tt__NetworkZeroConfigurationExtension(struct soap*, tt__NetworkZeroConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__NetworkZeroConfigurationExtension(struct soap *soap, tt__NetworkZeroConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkZeroConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkZeroConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkZeroConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkZeroConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkZeroConfigurationExtension(struct soap *soap, tt__NetworkZeroConfigurationExtension *p) -{ - if (::soap_read_tt__NetworkZeroConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkZeroConfiguration_DEFINED -#define SOAP_TYPE_tt__NetworkZeroConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkZeroConfiguration(struct soap*, const char*, int, const tt__NetworkZeroConfiguration *, const char*); -SOAP_FMAC3 tt__NetworkZeroConfiguration * SOAP_FMAC4 soap_in_tt__NetworkZeroConfiguration(struct soap*, const char*, tt__NetworkZeroConfiguration *, const char*); -SOAP_FMAC1 tt__NetworkZeroConfiguration * SOAP_FMAC2 soap_instantiate_tt__NetworkZeroConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkZeroConfiguration * soap_new_tt__NetworkZeroConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkZeroConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkZeroConfiguration * soap_new_req_tt__NetworkZeroConfiguration( - struct soap *soap, - const std::string& InterfaceToken, - bool Enabled) -{ - tt__NetworkZeroConfiguration *_p = ::soap_new_tt__NetworkZeroConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkZeroConfiguration::InterfaceToken = InterfaceToken; - _p->tt__NetworkZeroConfiguration::Enabled = Enabled; - } - return _p; -} - -inline tt__NetworkZeroConfiguration * soap_new_set_tt__NetworkZeroConfiguration( - struct soap *soap, - const std::string& InterfaceToken, - bool Enabled, - const std::vector & Addresses, - tt__NetworkZeroConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NetworkZeroConfiguration *_p = ::soap_new_tt__NetworkZeroConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkZeroConfiguration::InterfaceToken = InterfaceToken; - _p->tt__NetworkZeroConfiguration::Enabled = Enabled; - _p->tt__NetworkZeroConfiguration::Addresses = Addresses; - _p->tt__NetworkZeroConfiguration::Extension = Extension; - _p->tt__NetworkZeroConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NetworkZeroConfiguration(struct soap *soap, tt__NetworkZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkZeroConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkZeroConfiguration(struct soap *soap, const char *URL, tt__NetworkZeroConfiguration 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, "tt:NetworkZeroConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkZeroConfiguration(struct soap *soap, const char *URL, tt__NetworkZeroConfiguration 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, "tt:NetworkZeroConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkZeroConfiguration(struct soap *soap, const char *URL, tt__NetworkZeroConfiguration 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, "tt:NetworkZeroConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkZeroConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkZeroConfiguration * SOAP_FMAC4 soap_get_tt__NetworkZeroConfiguration(struct soap*, tt__NetworkZeroConfiguration *, const char*, const char*); - -inline int soap_read_tt__NetworkZeroConfiguration(struct soap *soap, tt__NetworkZeroConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkZeroConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkZeroConfiguration(struct soap *soap, const char *URL, tt__NetworkZeroConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkZeroConfiguration(struct soap *soap, tt__NetworkZeroConfiguration *p) -{ - if (::soap_read_tt__NetworkZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkGateway_DEFINED -#define SOAP_TYPE_tt__NetworkGateway_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkGateway(struct soap*, const char*, int, const tt__NetworkGateway *, const char*); -SOAP_FMAC3 tt__NetworkGateway * SOAP_FMAC4 soap_in_tt__NetworkGateway(struct soap*, const char*, tt__NetworkGateway *, const char*); -SOAP_FMAC1 tt__NetworkGateway * SOAP_FMAC2 soap_instantiate_tt__NetworkGateway(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkGateway * soap_new_tt__NetworkGateway(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkGateway(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkGateway * soap_new_req_tt__NetworkGateway( - struct soap *soap) -{ - tt__NetworkGateway *_p = ::soap_new_tt__NetworkGateway(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkGateway * soap_new_set_tt__NetworkGateway( - struct soap *soap, - const std::vector & IPv4Address, - const std::vector & IPv6Address) -{ - tt__NetworkGateway *_p = ::soap_new_tt__NetworkGateway(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkGateway::IPv4Address = IPv4Address; - _p->tt__NetworkGateway::IPv6Address = IPv6Address; - } - return _p; -} - -inline int soap_write_tt__NetworkGateway(struct soap *soap, tt__NetworkGateway const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkGateway", p->soap_type() == SOAP_TYPE_tt__NetworkGateway ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkGateway(struct soap *soap, const char *URL, tt__NetworkGateway 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, "tt:NetworkGateway", p->soap_type() == SOAP_TYPE_tt__NetworkGateway ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkGateway(struct soap *soap, const char *URL, tt__NetworkGateway 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, "tt:NetworkGateway", p->soap_type() == SOAP_TYPE_tt__NetworkGateway ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkGateway(struct soap *soap, const char *URL, tt__NetworkGateway 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, "tt:NetworkGateway", p->soap_type() == SOAP_TYPE_tt__NetworkGateway ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkGateway * SOAP_FMAC4 soap_get_tt__NetworkGateway(struct soap*, tt__NetworkGateway *, const char*, const char*); - -inline int soap_read_tt__NetworkGateway(struct soap *soap, tt__NetworkGateway *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkGateway(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkGateway(struct soap *soap, const char *URL, tt__NetworkGateway *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkGateway(struct soap *soap, tt__NetworkGateway *p) -{ - if (::soap_read_tt__NetworkGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration_DEFINED -#define SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4NetworkInterfaceSetConfiguration(struct soap*, const char*, int, const tt__IPv4NetworkInterfaceSetConfiguration *, const char*); -SOAP_FMAC3 tt__IPv4NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_in_tt__IPv4NetworkInterfaceSetConfiguration(struct soap*, const char*, tt__IPv4NetworkInterfaceSetConfiguration *, const char*); -SOAP_FMAC1 tt__IPv4NetworkInterfaceSetConfiguration * SOAP_FMAC2 soap_instantiate_tt__IPv4NetworkInterfaceSetConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv4NetworkInterfaceSetConfiguration * soap_new_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv4NetworkInterfaceSetConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv4NetworkInterfaceSetConfiguration * soap_new_req_tt__IPv4NetworkInterfaceSetConfiguration( - struct soap *soap) -{ - tt__IPv4NetworkInterfaceSetConfiguration *_p = ::soap_new_tt__IPv4NetworkInterfaceSetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IPv4NetworkInterfaceSetConfiguration * soap_new_set_tt__IPv4NetworkInterfaceSetConfiguration( - struct soap *soap, - bool *Enabled, - const std::vector & Manual, - bool *DHCP) -{ - tt__IPv4NetworkInterfaceSetConfiguration *_p = ::soap_new_tt__IPv4NetworkInterfaceSetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv4NetworkInterfaceSetConfiguration::Enabled = Enabled; - _p->tt__IPv4NetworkInterfaceSetConfiguration::Manual = Manual; - _p->tt__IPv4NetworkInterfaceSetConfiguration::DHCP = DHCP; - } - return _p; -} - -inline int soap_write_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv4NetworkInterfaceSetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv4NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv4NetworkInterfaceSetConfiguration 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, "tt:IPv4NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv4NetworkInterfaceSetConfiguration 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, "tt:IPv4NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv4NetworkInterfaceSetConfiguration 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, "tt:IPv4NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv4NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_get_tt__IPv4NetworkInterfaceSetConfiguration(struct soap*, tt__IPv4NetworkInterfaceSetConfiguration *, const char*, const char*); - -inline int soap_read_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv4NetworkInterfaceSetConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv4NetworkInterfaceSetConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv4NetworkInterfaceSetConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv4NetworkInterfaceSetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv4NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv4NetworkInterfaceSetConfiguration *p) -{ - if (::soap_read_tt__IPv4NetworkInterfaceSetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration_DEFINED -#define SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6NetworkInterfaceSetConfiguration(struct soap*, const char*, int, const tt__IPv6NetworkInterfaceSetConfiguration *, const char*); -SOAP_FMAC3 tt__IPv6NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_in_tt__IPv6NetworkInterfaceSetConfiguration(struct soap*, const char*, tt__IPv6NetworkInterfaceSetConfiguration *, const char*); -SOAP_FMAC1 tt__IPv6NetworkInterfaceSetConfiguration * SOAP_FMAC2 soap_instantiate_tt__IPv6NetworkInterfaceSetConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv6NetworkInterfaceSetConfiguration * soap_new_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv6NetworkInterfaceSetConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv6NetworkInterfaceSetConfiguration * soap_new_req_tt__IPv6NetworkInterfaceSetConfiguration( - struct soap *soap) -{ - tt__IPv6NetworkInterfaceSetConfiguration *_p = ::soap_new_tt__IPv6NetworkInterfaceSetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IPv6NetworkInterfaceSetConfiguration * soap_new_set_tt__IPv6NetworkInterfaceSetConfiguration( - struct soap *soap, - bool *Enabled, - bool *AcceptRouterAdvert, - const std::vector & Manual, - enum tt__IPv6DHCPConfiguration *DHCP) -{ - tt__IPv6NetworkInterfaceSetConfiguration *_p = ::soap_new_tt__IPv6NetworkInterfaceSetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6NetworkInterfaceSetConfiguration::Enabled = Enabled; - _p->tt__IPv6NetworkInterfaceSetConfiguration::AcceptRouterAdvert = AcceptRouterAdvert; - _p->tt__IPv6NetworkInterfaceSetConfiguration::Manual = Manual; - _p->tt__IPv6NetworkInterfaceSetConfiguration::DHCP = DHCP; - } - return _p; -} - -inline int soap_write_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv6NetworkInterfaceSetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv6NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv6NetworkInterfaceSetConfiguration 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, "tt:IPv6NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv6NetworkInterfaceSetConfiguration 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, "tt:IPv6NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv6NetworkInterfaceSetConfiguration 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, "tt:IPv6NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv6NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_get_tt__IPv6NetworkInterfaceSetConfiguration(struct soap*, tt__IPv6NetworkInterfaceSetConfiguration *, const char*, const char*); - -inline int soap_read_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv6NetworkInterfaceSetConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv6NetworkInterfaceSetConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__IPv6NetworkInterfaceSetConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv6NetworkInterfaceSetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv6NetworkInterfaceSetConfiguration(struct soap *soap, tt__IPv6NetworkInterfaceSetConfiguration *p) -{ - if (::soap_read_tt__IPv6NetworkInterfaceSetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceSetConfigurationExtension(struct soap*, const char*, int, const tt__NetworkInterfaceSetConfigurationExtension *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension * SOAP_FMAC4 soap_in_tt__NetworkInterfaceSetConfigurationExtension(struct soap*, const char*, tt__NetworkInterfaceSetConfigurationExtension *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceSetConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceSetConfigurationExtension * soap_new_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceSetConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceSetConfigurationExtension * soap_new_req_tt__NetworkInterfaceSetConfigurationExtension( - struct soap *soap) -{ - tt__NetworkInterfaceSetConfigurationExtension *_p = ::soap_new_tt__NetworkInterfaceSetConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkInterfaceSetConfigurationExtension * soap_new_set_tt__NetworkInterfaceSetConfigurationExtension( - struct soap *soap, - const std::vector & __any, - const std::vector & Dot3, - const std::vector & Dot11, - tt__NetworkInterfaceSetConfigurationExtension2 *Extension) -{ - tt__NetworkInterfaceSetConfigurationExtension *_p = ::soap_new_tt__NetworkInterfaceSetConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceSetConfigurationExtension::__any = __any; - _p->tt__NetworkInterfaceSetConfigurationExtension::Dot3 = Dot3; - _p->tt__NetworkInterfaceSetConfigurationExtension::Dot11 = Dot11; - _p->tt__NetworkInterfaceSetConfigurationExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceSetConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension 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, "tt:NetworkInterfaceSetConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension 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, "tt:NetworkInterfaceSetConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension 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, "tt:NetworkInterfaceSetConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension * SOAP_FMAC4 soap_get_tt__NetworkInterfaceSetConfigurationExtension(struct soap*, tt__NetworkInterfaceSetConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceSetConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceSetConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceSetConfigurationExtension(struct soap *soap, tt__NetworkInterfaceSetConfigurationExtension *p) -{ - if (::soap_read_tt__NetworkInterfaceSetConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceSetConfiguration_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceSetConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceSetConfiguration(struct soap*, const char*, int, const tt__NetworkInterfaceSetConfiguration *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_in_tt__NetworkInterfaceSetConfiguration(struct soap*, const char*, tt__NetworkInterfaceSetConfiguration *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceSetConfiguration * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceSetConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceSetConfiguration * soap_new_tt__NetworkInterfaceSetConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceSetConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceSetConfiguration * soap_new_req_tt__NetworkInterfaceSetConfiguration( - struct soap *soap) -{ - tt__NetworkInterfaceSetConfiguration *_p = ::soap_new_tt__NetworkInterfaceSetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkInterfaceSetConfiguration * soap_new_set_tt__NetworkInterfaceSetConfiguration( - struct soap *soap, - bool *Enabled, - tt__NetworkInterfaceConnectionSetting *Link, - int *MTU, - tt__IPv4NetworkInterfaceSetConfiguration *IPv4, - tt__IPv6NetworkInterfaceSetConfiguration *IPv6, - tt__NetworkInterfaceSetConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NetworkInterfaceSetConfiguration *_p = ::soap_new_tt__NetworkInterfaceSetConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceSetConfiguration::Enabled = Enabled; - _p->tt__NetworkInterfaceSetConfiguration::Link = Link; - _p->tt__NetworkInterfaceSetConfiguration::MTU = MTU; - _p->tt__NetworkInterfaceSetConfiguration::IPv4 = IPv4; - _p->tt__NetworkInterfaceSetConfiguration::IPv6 = IPv6; - _p->tt__NetworkInterfaceSetConfiguration::Extension = Extension; - _p->tt__NetworkInterfaceSetConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceSetConfiguration(struct soap *soap, tt__NetworkInterfaceSetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfiguration 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, "tt:NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfiguration 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, "tt:NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfiguration 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, "tt:NetworkInterfaceSetConfiguration", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceSetConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceSetConfiguration * SOAP_FMAC4 soap_get_tt__NetworkInterfaceSetConfiguration(struct soap*, tt__NetworkInterfaceSetConfiguration *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceSetConfiguration(struct soap *soap, tt__NetworkInterfaceSetConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceSetConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceSetConfiguration(struct soap *soap, const char *URL, tt__NetworkInterfaceSetConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceSetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceSetConfiguration(struct soap *soap, tt__NetworkInterfaceSetConfiguration *p) -{ - if (::soap_read_tt__NetworkInterfaceSetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DynamicDNSInformationExtension_DEFINED -#define SOAP_TYPE_tt__DynamicDNSInformationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSInformationExtension(struct soap*, const char*, int, const tt__DynamicDNSInformationExtension *, const char*); -SOAP_FMAC3 tt__DynamicDNSInformationExtension * SOAP_FMAC4 soap_in_tt__DynamicDNSInformationExtension(struct soap*, const char*, tt__DynamicDNSInformationExtension *, const char*); -SOAP_FMAC1 tt__DynamicDNSInformationExtension * SOAP_FMAC2 soap_instantiate_tt__DynamicDNSInformationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DynamicDNSInformationExtension * soap_new_tt__DynamicDNSInformationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DynamicDNSInformationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__DynamicDNSInformationExtension * soap_new_req_tt__DynamicDNSInformationExtension( - struct soap *soap) -{ - tt__DynamicDNSInformationExtension *_p = ::soap_new_tt__DynamicDNSInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__DynamicDNSInformationExtension * soap_new_set_tt__DynamicDNSInformationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__DynamicDNSInformationExtension *_p = ::soap_new_tt__DynamicDNSInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DynamicDNSInformationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__DynamicDNSInformationExtension(struct soap *soap, tt__DynamicDNSInformationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DynamicDNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DynamicDNSInformationExtension(struct soap *soap, const char *URL, tt__DynamicDNSInformationExtension 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, "tt:DynamicDNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DynamicDNSInformationExtension(struct soap *soap, const char *URL, tt__DynamicDNSInformationExtension 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, "tt:DynamicDNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DynamicDNSInformationExtension(struct soap *soap, const char *URL, tt__DynamicDNSInformationExtension 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, "tt:DynamicDNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DynamicDNSInformationExtension * SOAP_FMAC4 soap_get_tt__DynamicDNSInformationExtension(struct soap*, tt__DynamicDNSInformationExtension *, const char*, const char*); - -inline int soap_read_tt__DynamicDNSInformationExtension(struct soap *soap, tt__DynamicDNSInformationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DynamicDNSInformationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DynamicDNSInformationExtension(struct soap *soap, const char *URL, tt__DynamicDNSInformationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DynamicDNSInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DynamicDNSInformationExtension(struct soap *soap, tt__DynamicDNSInformationExtension *p) -{ - if (::soap_read_tt__DynamicDNSInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DynamicDNSInformation_DEFINED -#define SOAP_TYPE_tt__DynamicDNSInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DynamicDNSInformation(struct soap*, const char*, int, const tt__DynamicDNSInformation *, const char*); -SOAP_FMAC3 tt__DynamicDNSInformation * SOAP_FMAC4 soap_in_tt__DynamicDNSInformation(struct soap*, const char*, tt__DynamicDNSInformation *, const char*); -SOAP_FMAC1 tt__DynamicDNSInformation * SOAP_FMAC2 soap_instantiate_tt__DynamicDNSInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DynamicDNSInformation * soap_new_tt__DynamicDNSInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DynamicDNSInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__DynamicDNSInformation * soap_new_req_tt__DynamicDNSInformation( - struct soap *soap, - enum tt__DynamicDNSType Type) -{ - tt__DynamicDNSInformation *_p = ::soap_new_tt__DynamicDNSInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DynamicDNSInformation::Type = Type; - } - return _p; -} - -inline tt__DynamicDNSInformation * soap_new_set_tt__DynamicDNSInformation( - struct soap *soap, - enum tt__DynamicDNSType Type, - std::string *Name, - std::string *TTL, - tt__DynamicDNSInformationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__DynamicDNSInformation *_p = ::soap_new_tt__DynamicDNSInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DynamicDNSInformation::Type = Type; - _p->tt__DynamicDNSInformation::Name = Name; - _p->tt__DynamicDNSInformation::TTL = TTL; - _p->tt__DynamicDNSInformation::Extension = Extension; - _p->tt__DynamicDNSInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__DynamicDNSInformation(struct soap *soap, tt__DynamicDNSInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DynamicDNSInformation", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DynamicDNSInformation(struct soap *soap, const char *URL, tt__DynamicDNSInformation 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, "tt:DynamicDNSInformation", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DynamicDNSInformation(struct soap *soap, const char *URL, tt__DynamicDNSInformation 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, "tt:DynamicDNSInformation", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DynamicDNSInformation(struct soap *soap, const char *URL, tt__DynamicDNSInformation 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, "tt:DynamicDNSInformation", p->soap_type() == SOAP_TYPE_tt__DynamicDNSInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DynamicDNSInformation * SOAP_FMAC4 soap_get_tt__DynamicDNSInformation(struct soap*, tt__DynamicDNSInformation *, const char*, const char*); - -inline int soap_read_tt__DynamicDNSInformation(struct soap *soap, tt__DynamicDNSInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DynamicDNSInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DynamicDNSInformation(struct soap *soap, const char *URL, tt__DynamicDNSInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DynamicDNSInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DynamicDNSInformation(struct soap *soap, tt__DynamicDNSInformation *p) -{ - if (::soap_read_tt__DynamicDNSInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NTPInformationExtension_DEFINED -#define SOAP_TYPE_tt__NTPInformationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NTPInformationExtension(struct soap*, const char*, int, const tt__NTPInformationExtension *, const char*); -SOAP_FMAC3 tt__NTPInformationExtension * SOAP_FMAC4 soap_in_tt__NTPInformationExtension(struct soap*, const char*, tt__NTPInformationExtension *, const char*); -SOAP_FMAC1 tt__NTPInformationExtension * SOAP_FMAC2 soap_instantiate_tt__NTPInformationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NTPInformationExtension * soap_new_tt__NTPInformationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NTPInformationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__NTPInformationExtension * soap_new_req_tt__NTPInformationExtension( - struct soap *soap) -{ - tt__NTPInformationExtension *_p = ::soap_new_tt__NTPInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NTPInformationExtension * soap_new_set_tt__NTPInformationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__NTPInformationExtension *_p = ::soap_new_tt__NTPInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NTPInformationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__NTPInformationExtension(struct soap *soap, tt__NTPInformationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NTPInformationExtension", p->soap_type() == SOAP_TYPE_tt__NTPInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NTPInformationExtension(struct soap *soap, const char *URL, tt__NTPInformationExtension 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, "tt:NTPInformationExtension", p->soap_type() == SOAP_TYPE_tt__NTPInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NTPInformationExtension(struct soap *soap, const char *URL, tt__NTPInformationExtension 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, "tt:NTPInformationExtension", p->soap_type() == SOAP_TYPE_tt__NTPInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NTPInformationExtension(struct soap *soap, const char *URL, tt__NTPInformationExtension 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, "tt:NTPInformationExtension", p->soap_type() == SOAP_TYPE_tt__NTPInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NTPInformationExtension * SOAP_FMAC4 soap_get_tt__NTPInformationExtension(struct soap*, tt__NTPInformationExtension *, const char*, const char*); - -inline int soap_read_tt__NTPInformationExtension(struct soap *soap, tt__NTPInformationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NTPInformationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NTPInformationExtension(struct soap *soap, const char *URL, tt__NTPInformationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NTPInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NTPInformationExtension(struct soap *soap, tt__NTPInformationExtension *p) -{ - if (::soap_read_tt__NTPInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NTPInformation_DEFINED -#define SOAP_TYPE_tt__NTPInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NTPInformation(struct soap*, const char*, int, const tt__NTPInformation *, const char*); -SOAP_FMAC3 tt__NTPInformation * SOAP_FMAC4 soap_in_tt__NTPInformation(struct soap*, const char*, tt__NTPInformation *, const char*); -SOAP_FMAC1 tt__NTPInformation * SOAP_FMAC2 soap_instantiate_tt__NTPInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NTPInformation * soap_new_tt__NTPInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NTPInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__NTPInformation * soap_new_req_tt__NTPInformation( - struct soap *soap, - bool FromDHCP) -{ - tt__NTPInformation *_p = ::soap_new_tt__NTPInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NTPInformation::FromDHCP = FromDHCP; - } - return _p; -} - -inline tt__NTPInformation * soap_new_set_tt__NTPInformation( - struct soap *soap, - bool FromDHCP, - const std::vector & NTPFromDHCP, - const std::vector & NTPManual, - tt__NTPInformationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NTPInformation *_p = ::soap_new_tt__NTPInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NTPInformation::FromDHCP = FromDHCP; - _p->tt__NTPInformation::NTPFromDHCP = NTPFromDHCP; - _p->tt__NTPInformation::NTPManual = NTPManual; - _p->tt__NTPInformation::Extension = Extension; - _p->tt__NTPInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NTPInformation(struct soap *soap, tt__NTPInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NTPInformation", p->soap_type() == SOAP_TYPE_tt__NTPInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NTPInformation(struct soap *soap, const char *URL, tt__NTPInformation 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, "tt:NTPInformation", p->soap_type() == SOAP_TYPE_tt__NTPInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NTPInformation(struct soap *soap, const char *URL, tt__NTPInformation 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, "tt:NTPInformation", p->soap_type() == SOAP_TYPE_tt__NTPInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NTPInformation(struct soap *soap, const char *URL, tt__NTPInformation 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, "tt:NTPInformation", p->soap_type() == SOAP_TYPE_tt__NTPInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NTPInformation * SOAP_FMAC4 soap_get_tt__NTPInformation(struct soap*, tt__NTPInformation *, const char*, const char*); - -inline int soap_read_tt__NTPInformation(struct soap *soap, tt__NTPInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NTPInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NTPInformation(struct soap *soap, const char *URL, tt__NTPInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NTPInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NTPInformation(struct soap *soap, tt__NTPInformation *p) -{ - if (::soap_read_tt__NTPInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DNSInformationExtension_DEFINED -#define SOAP_TYPE_tt__DNSInformationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DNSInformationExtension(struct soap*, const char*, int, const tt__DNSInformationExtension *, const char*); -SOAP_FMAC3 tt__DNSInformationExtension * SOAP_FMAC4 soap_in_tt__DNSInformationExtension(struct soap*, const char*, tt__DNSInformationExtension *, const char*); -SOAP_FMAC1 tt__DNSInformationExtension * SOAP_FMAC2 soap_instantiate_tt__DNSInformationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DNSInformationExtension * soap_new_tt__DNSInformationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DNSInformationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__DNSInformationExtension * soap_new_req_tt__DNSInformationExtension( - struct soap *soap) -{ - tt__DNSInformationExtension *_p = ::soap_new_tt__DNSInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__DNSInformationExtension * soap_new_set_tt__DNSInformationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__DNSInformationExtension *_p = ::soap_new_tt__DNSInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DNSInformationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__DNSInformationExtension(struct soap *soap, tt__DNSInformationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DNSInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DNSInformationExtension(struct soap *soap, const char *URL, tt__DNSInformationExtension 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, "tt:DNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DNSInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DNSInformationExtension(struct soap *soap, const char *URL, tt__DNSInformationExtension 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, "tt:DNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DNSInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DNSInformationExtension(struct soap *soap, const char *URL, tt__DNSInformationExtension 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, "tt:DNSInformationExtension", p->soap_type() == SOAP_TYPE_tt__DNSInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DNSInformationExtension * SOAP_FMAC4 soap_get_tt__DNSInformationExtension(struct soap*, tt__DNSInformationExtension *, const char*, const char*); - -inline int soap_read_tt__DNSInformationExtension(struct soap *soap, tt__DNSInformationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DNSInformationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DNSInformationExtension(struct soap *soap, const char *URL, tt__DNSInformationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DNSInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DNSInformationExtension(struct soap *soap, tt__DNSInformationExtension *p) -{ - if (::soap_read_tt__DNSInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DNSInformation_DEFINED -#define SOAP_TYPE_tt__DNSInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DNSInformation(struct soap*, const char*, int, const tt__DNSInformation *, const char*); -SOAP_FMAC3 tt__DNSInformation * SOAP_FMAC4 soap_in_tt__DNSInformation(struct soap*, const char*, tt__DNSInformation *, const char*); -SOAP_FMAC1 tt__DNSInformation * SOAP_FMAC2 soap_instantiate_tt__DNSInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DNSInformation * soap_new_tt__DNSInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DNSInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__DNSInformation * soap_new_req_tt__DNSInformation( - struct soap *soap, - bool FromDHCP) -{ - tt__DNSInformation *_p = ::soap_new_tt__DNSInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DNSInformation::FromDHCP = FromDHCP; - } - return _p; -} - -inline tt__DNSInformation * soap_new_set_tt__DNSInformation( - struct soap *soap, - bool FromDHCP, - const std::vector & SearchDomain, - const std::vector & DNSFromDHCP, - const std::vector & DNSManual, - tt__DNSInformationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__DNSInformation *_p = ::soap_new_tt__DNSInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DNSInformation::FromDHCP = FromDHCP; - _p->tt__DNSInformation::SearchDomain = SearchDomain; - _p->tt__DNSInformation::DNSFromDHCP = DNSFromDHCP; - _p->tt__DNSInformation::DNSManual = DNSManual; - _p->tt__DNSInformation::Extension = Extension; - _p->tt__DNSInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__DNSInformation(struct soap *soap, tt__DNSInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DNSInformation", p->soap_type() == SOAP_TYPE_tt__DNSInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DNSInformation(struct soap *soap, const char *URL, tt__DNSInformation 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, "tt:DNSInformation", p->soap_type() == SOAP_TYPE_tt__DNSInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DNSInformation(struct soap *soap, const char *URL, tt__DNSInformation 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, "tt:DNSInformation", p->soap_type() == SOAP_TYPE_tt__DNSInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DNSInformation(struct soap *soap, const char *URL, tt__DNSInformation 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, "tt:DNSInformation", p->soap_type() == SOAP_TYPE_tt__DNSInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DNSInformation * SOAP_FMAC4 soap_get_tt__DNSInformation(struct soap*, tt__DNSInformation *, const char*, const char*); - -inline int soap_read_tt__DNSInformation(struct soap *soap, tt__DNSInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DNSInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DNSInformation(struct soap *soap, const char *URL, tt__DNSInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DNSInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DNSInformation(struct soap *soap, tt__DNSInformation *p) -{ - if (::soap_read_tt__DNSInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__HostnameInformationExtension_DEFINED -#define SOAP_TYPE_tt__HostnameInformationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__HostnameInformationExtension(struct soap*, const char*, int, const tt__HostnameInformationExtension *, const char*); -SOAP_FMAC3 tt__HostnameInformationExtension * SOAP_FMAC4 soap_in_tt__HostnameInformationExtension(struct soap*, const char*, tt__HostnameInformationExtension *, const char*); -SOAP_FMAC1 tt__HostnameInformationExtension * SOAP_FMAC2 soap_instantiate_tt__HostnameInformationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__HostnameInformationExtension * soap_new_tt__HostnameInformationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__HostnameInformationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__HostnameInformationExtension * soap_new_req_tt__HostnameInformationExtension( - struct soap *soap) -{ - tt__HostnameInformationExtension *_p = ::soap_new_tt__HostnameInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__HostnameInformationExtension * soap_new_set_tt__HostnameInformationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__HostnameInformationExtension *_p = ::soap_new_tt__HostnameInformationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__HostnameInformationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__HostnameInformationExtension(struct soap *soap, tt__HostnameInformationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:HostnameInformationExtension", p->soap_type() == SOAP_TYPE_tt__HostnameInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__HostnameInformationExtension(struct soap *soap, const char *URL, tt__HostnameInformationExtension 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, "tt:HostnameInformationExtension", p->soap_type() == SOAP_TYPE_tt__HostnameInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__HostnameInformationExtension(struct soap *soap, const char *URL, tt__HostnameInformationExtension 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, "tt:HostnameInformationExtension", p->soap_type() == SOAP_TYPE_tt__HostnameInformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__HostnameInformationExtension(struct soap *soap, const char *URL, tt__HostnameInformationExtension 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, "tt:HostnameInformationExtension", p->soap_type() == SOAP_TYPE_tt__HostnameInformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__HostnameInformationExtension * SOAP_FMAC4 soap_get_tt__HostnameInformationExtension(struct soap*, tt__HostnameInformationExtension *, const char*, const char*); - -inline int soap_read_tt__HostnameInformationExtension(struct soap *soap, tt__HostnameInformationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__HostnameInformationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__HostnameInformationExtension(struct soap *soap, const char *URL, tt__HostnameInformationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__HostnameInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__HostnameInformationExtension(struct soap *soap, tt__HostnameInformationExtension *p) -{ - if (::soap_read_tt__HostnameInformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__HostnameInformation_DEFINED -#define SOAP_TYPE_tt__HostnameInformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__HostnameInformation(struct soap*, const char*, int, const tt__HostnameInformation *, const char*); -SOAP_FMAC3 tt__HostnameInformation * SOAP_FMAC4 soap_in_tt__HostnameInformation(struct soap*, const char*, tt__HostnameInformation *, const char*); -SOAP_FMAC1 tt__HostnameInformation * SOAP_FMAC2 soap_instantiate_tt__HostnameInformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__HostnameInformation * soap_new_tt__HostnameInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__HostnameInformation(soap, n, NULL, NULL, NULL); -} - -inline tt__HostnameInformation * soap_new_req_tt__HostnameInformation( - struct soap *soap, - bool FromDHCP) -{ - tt__HostnameInformation *_p = ::soap_new_tt__HostnameInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__HostnameInformation::FromDHCP = FromDHCP; - } - return _p; -} - -inline tt__HostnameInformation * soap_new_set_tt__HostnameInformation( - struct soap *soap, - bool FromDHCP, - std::string *Name, - tt__HostnameInformationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__HostnameInformation *_p = ::soap_new_tt__HostnameInformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__HostnameInformation::FromDHCP = FromDHCP; - _p->tt__HostnameInformation::Name = Name; - _p->tt__HostnameInformation::Extension = Extension; - _p->tt__HostnameInformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__HostnameInformation(struct soap *soap, tt__HostnameInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:HostnameInformation", p->soap_type() == SOAP_TYPE_tt__HostnameInformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__HostnameInformation(struct soap *soap, const char *URL, tt__HostnameInformation 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, "tt:HostnameInformation", p->soap_type() == SOAP_TYPE_tt__HostnameInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__HostnameInformation(struct soap *soap, const char *URL, tt__HostnameInformation 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, "tt:HostnameInformation", p->soap_type() == SOAP_TYPE_tt__HostnameInformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__HostnameInformation(struct soap *soap, const char *URL, tt__HostnameInformation 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, "tt:HostnameInformation", p->soap_type() == SOAP_TYPE_tt__HostnameInformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__HostnameInformation * SOAP_FMAC4 soap_get_tt__HostnameInformation(struct soap*, tt__HostnameInformation *, const char*, const char*); - -inline int soap_read_tt__HostnameInformation(struct soap *soap, tt__HostnameInformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__HostnameInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__HostnameInformation(struct soap *soap, const char *URL, tt__HostnameInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__HostnameInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__HostnameInformation(struct soap *soap, tt__HostnameInformation *p) -{ - if (::soap_read_tt__HostnameInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PrefixedIPv6Address_DEFINED -#define SOAP_TYPE_tt__PrefixedIPv6Address_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PrefixedIPv6Address(struct soap*, const char*, int, const tt__PrefixedIPv6Address *, const char*); -SOAP_FMAC3 tt__PrefixedIPv6Address * SOAP_FMAC4 soap_in_tt__PrefixedIPv6Address(struct soap*, const char*, tt__PrefixedIPv6Address *, const char*); -SOAP_FMAC1 tt__PrefixedIPv6Address * SOAP_FMAC2 soap_instantiate_tt__PrefixedIPv6Address(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PrefixedIPv6Address * soap_new_tt__PrefixedIPv6Address(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PrefixedIPv6Address(soap, n, NULL, NULL, NULL); -} - -inline tt__PrefixedIPv6Address * soap_new_req_tt__PrefixedIPv6Address( - struct soap *soap, - const std::string& Address, - int PrefixLength) -{ - tt__PrefixedIPv6Address *_p = ::soap_new_tt__PrefixedIPv6Address(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PrefixedIPv6Address::Address = Address; - _p->tt__PrefixedIPv6Address::PrefixLength = PrefixLength; - } - return _p; -} - -inline tt__PrefixedIPv6Address * soap_new_set_tt__PrefixedIPv6Address( - struct soap *soap, - const std::string& Address, - int PrefixLength) -{ - tt__PrefixedIPv6Address *_p = ::soap_new_tt__PrefixedIPv6Address(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PrefixedIPv6Address::Address = Address; - _p->tt__PrefixedIPv6Address::PrefixLength = PrefixLength; - } - return _p; -} - -inline int soap_write_tt__PrefixedIPv6Address(struct soap *soap, tt__PrefixedIPv6Address const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PrefixedIPv6Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv6Address ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PrefixedIPv6Address(struct soap *soap, const char *URL, tt__PrefixedIPv6Address 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, "tt:PrefixedIPv6Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv6Address ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PrefixedIPv6Address(struct soap *soap, const char *URL, tt__PrefixedIPv6Address 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, "tt:PrefixedIPv6Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv6Address ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PrefixedIPv6Address(struct soap *soap, const char *URL, tt__PrefixedIPv6Address 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, "tt:PrefixedIPv6Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv6Address ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PrefixedIPv6Address * SOAP_FMAC4 soap_get_tt__PrefixedIPv6Address(struct soap*, tt__PrefixedIPv6Address *, const char*, const char*); - -inline int soap_read_tt__PrefixedIPv6Address(struct soap *soap, tt__PrefixedIPv6Address *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PrefixedIPv6Address(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PrefixedIPv6Address(struct soap *soap, const char *URL, tt__PrefixedIPv6Address *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PrefixedIPv6Address(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PrefixedIPv6Address(struct soap *soap, tt__PrefixedIPv6Address *p) -{ - if (::soap_read_tt__PrefixedIPv6Address(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PrefixedIPv4Address_DEFINED -#define SOAP_TYPE_tt__PrefixedIPv4Address_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PrefixedIPv4Address(struct soap*, const char*, int, const tt__PrefixedIPv4Address *, const char*); -SOAP_FMAC3 tt__PrefixedIPv4Address * SOAP_FMAC4 soap_in_tt__PrefixedIPv4Address(struct soap*, const char*, tt__PrefixedIPv4Address *, const char*); -SOAP_FMAC1 tt__PrefixedIPv4Address * SOAP_FMAC2 soap_instantiate_tt__PrefixedIPv4Address(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PrefixedIPv4Address * soap_new_tt__PrefixedIPv4Address(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PrefixedIPv4Address(soap, n, NULL, NULL, NULL); -} - -inline tt__PrefixedIPv4Address * soap_new_req_tt__PrefixedIPv4Address( - struct soap *soap, - const std::string& Address, - int PrefixLength) -{ - tt__PrefixedIPv4Address *_p = ::soap_new_tt__PrefixedIPv4Address(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PrefixedIPv4Address::Address = Address; - _p->tt__PrefixedIPv4Address::PrefixLength = PrefixLength; - } - return _p; -} - -inline tt__PrefixedIPv4Address * soap_new_set_tt__PrefixedIPv4Address( - struct soap *soap, - const std::string& Address, - int PrefixLength) -{ - tt__PrefixedIPv4Address *_p = ::soap_new_tt__PrefixedIPv4Address(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PrefixedIPv4Address::Address = Address; - _p->tt__PrefixedIPv4Address::PrefixLength = PrefixLength; - } - return _p; -} - -inline int soap_write_tt__PrefixedIPv4Address(struct soap *soap, tt__PrefixedIPv4Address const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PrefixedIPv4Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv4Address ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PrefixedIPv4Address(struct soap *soap, const char *URL, tt__PrefixedIPv4Address 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, "tt:PrefixedIPv4Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv4Address ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PrefixedIPv4Address(struct soap *soap, const char *URL, tt__PrefixedIPv4Address 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, "tt:PrefixedIPv4Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv4Address ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PrefixedIPv4Address(struct soap *soap, const char *URL, tt__PrefixedIPv4Address 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, "tt:PrefixedIPv4Address", p->soap_type() == SOAP_TYPE_tt__PrefixedIPv4Address ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PrefixedIPv4Address * SOAP_FMAC4 soap_get_tt__PrefixedIPv4Address(struct soap*, tt__PrefixedIPv4Address *, const char*, const char*); - -inline int soap_read_tt__PrefixedIPv4Address(struct soap *soap, tt__PrefixedIPv4Address *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PrefixedIPv4Address(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PrefixedIPv4Address(struct soap *soap, const char *URL, tt__PrefixedIPv4Address *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PrefixedIPv4Address(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PrefixedIPv4Address(struct soap *soap, tt__PrefixedIPv4Address *p) -{ - if (::soap_read_tt__PrefixedIPv4Address(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPAddress_DEFINED -#define SOAP_TYPE_tt__IPAddress_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPAddress(struct soap*, const char*, int, const tt__IPAddress *, const char*); -SOAP_FMAC3 tt__IPAddress * SOAP_FMAC4 soap_in_tt__IPAddress(struct soap*, const char*, tt__IPAddress *, const char*); -SOAP_FMAC1 tt__IPAddress * SOAP_FMAC2 soap_instantiate_tt__IPAddress(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPAddress * soap_new_tt__IPAddress(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPAddress(soap, n, NULL, NULL, NULL); -} - -inline tt__IPAddress * soap_new_req_tt__IPAddress( - struct soap *soap, - enum tt__IPType Type) -{ - tt__IPAddress *_p = ::soap_new_tt__IPAddress(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPAddress::Type = Type; - } - return _p; -} - -inline tt__IPAddress * soap_new_set_tt__IPAddress( - struct soap *soap, - enum tt__IPType Type, - std::string *IPv4Address, - std::string *IPv6Address) -{ - tt__IPAddress *_p = ::soap_new_tt__IPAddress(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPAddress::Type = Type; - _p->tt__IPAddress::IPv4Address = IPv4Address; - _p->tt__IPAddress::IPv6Address = IPv6Address; - } - return _p; -} - -inline int soap_write_tt__IPAddress(struct soap *soap, tt__IPAddress const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPAddress", p->soap_type() == SOAP_TYPE_tt__IPAddress ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPAddress(struct soap *soap, const char *URL, tt__IPAddress 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, "tt:IPAddress", p->soap_type() == SOAP_TYPE_tt__IPAddress ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPAddress(struct soap *soap, const char *URL, tt__IPAddress 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, "tt:IPAddress", p->soap_type() == SOAP_TYPE_tt__IPAddress ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPAddress(struct soap *soap, const char *URL, tt__IPAddress 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, "tt:IPAddress", p->soap_type() == SOAP_TYPE_tt__IPAddress ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPAddress * SOAP_FMAC4 soap_get_tt__IPAddress(struct soap*, tt__IPAddress *, const char*, const char*); - -inline int soap_read_tt__IPAddress(struct soap *soap, tt__IPAddress *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPAddress(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPAddress(struct soap *soap, const char *URL, tt__IPAddress *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPAddress(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPAddress(struct soap *soap, tt__IPAddress *p) -{ - if (::soap_read_tt__IPAddress(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkHostExtension_DEFINED -#define SOAP_TYPE_tt__NetworkHostExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHostExtension(struct soap*, const char*, int, const tt__NetworkHostExtension *, const char*); -SOAP_FMAC3 tt__NetworkHostExtension * SOAP_FMAC4 soap_in_tt__NetworkHostExtension(struct soap*, const char*, tt__NetworkHostExtension *, const char*); -SOAP_FMAC1 tt__NetworkHostExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkHostExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkHostExtension * soap_new_tt__NetworkHostExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkHostExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkHostExtension * soap_new_req_tt__NetworkHostExtension( - struct soap *soap) -{ - tt__NetworkHostExtension *_p = ::soap_new_tt__NetworkHostExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkHostExtension * soap_new_set_tt__NetworkHostExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__NetworkHostExtension *_p = ::soap_new_tt__NetworkHostExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkHostExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__NetworkHostExtension(struct soap *soap, tt__NetworkHostExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkHostExtension", p->soap_type() == SOAP_TYPE_tt__NetworkHostExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkHostExtension(struct soap *soap, const char *URL, tt__NetworkHostExtension 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, "tt:NetworkHostExtension", p->soap_type() == SOAP_TYPE_tt__NetworkHostExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkHostExtension(struct soap *soap, const char *URL, tt__NetworkHostExtension 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, "tt:NetworkHostExtension", p->soap_type() == SOAP_TYPE_tt__NetworkHostExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkHostExtension(struct soap *soap, const char *URL, tt__NetworkHostExtension 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, "tt:NetworkHostExtension", p->soap_type() == SOAP_TYPE_tt__NetworkHostExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkHostExtension * SOAP_FMAC4 soap_get_tt__NetworkHostExtension(struct soap*, tt__NetworkHostExtension *, const char*, const char*); - -inline int soap_read_tt__NetworkHostExtension(struct soap *soap, tt__NetworkHostExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkHostExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkHostExtension(struct soap *soap, const char *URL, tt__NetworkHostExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkHostExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkHostExtension(struct soap *soap, tt__NetworkHostExtension *p) -{ - if (::soap_read_tt__NetworkHostExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkHost_DEFINED -#define SOAP_TYPE_tt__NetworkHost_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkHost(struct soap*, const char*, int, const tt__NetworkHost *, const char*); -SOAP_FMAC3 tt__NetworkHost * SOAP_FMAC4 soap_in_tt__NetworkHost(struct soap*, const char*, tt__NetworkHost *, const char*); -SOAP_FMAC1 tt__NetworkHost * SOAP_FMAC2 soap_instantiate_tt__NetworkHost(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkHost * soap_new_tt__NetworkHost(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkHost(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkHost * soap_new_req_tt__NetworkHost( - struct soap *soap, - enum tt__NetworkHostType Type) -{ - tt__NetworkHost *_p = ::soap_new_tt__NetworkHost(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkHost::Type = Type; - } - return _p; -} - -inline tt__NetworkHost * soap_new_set_tt__NetworkHost( - struct soap *soap, - enum tt__NetworkHostType Type, - std::string *IPv4Address, - std::string *IPv6Address, - std::string *DNSname, - tt__NetworkHostExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NetworkHost *_p = ::soap_new_tt__NetworkHost(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkHost::Type = Type; - _p->tt__NetworkHost::IPv4Address = IPv4Address; - _p->tt__NetworkHost::IPv6Address = IPv6Address; - _p->tt__NetworkHost::DNSname = DNSname; - _p->tt__NetworkHost::Extension = Extension; - _p->tt__NetworkHost::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NetworkHost(struct soap *soap, tt__NetworkHost const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkHost", p->soap_type() == SOAP_TYPE_tt__NetworkHost ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkHost(struct soap *soap, const char *URL, tt__NetworkHost 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, "tt:NetworkHost", p->soap_type() == SOAP_TYPE_tt__NetworkHost ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkHost(struct soap *soap, const char *URL, tt__NetworkHost 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, "tt:NetworkHost", p->soap_type() == SOAP_TYPE_tt__NetworkHost ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkHost(struct soap *soap, const char *URL, tt__NetworkHost 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, "tt:NetworkHost", p->soap_type() == SOAP_TYPE_tt__NetworkHost ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkHost * SOAP_FMAC4 soap_get_tt__NetworkHost(struct soap*, tt__NetworkHost *, const char*, const char*); - -inline int soap_read_tt__NetworkHost(struct soap *soap, tt__NetworkHost *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkHost(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkHost(struct soap *soap, const char *URL, tt__NetworkHost *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkHost(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkHost(struct soap *soap, tt__NetworkHost *p) -{ - if (::soap_read_tt__NetworkHost(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkProtocolExtension_DEFINED -#define SOAP_TYPE_tt__NetworkProtocolExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocolExtension(struct soap*, const char*, int, const tt__NetworkProtocolExtension *, const char*); -SOAP_FMAC3 tt__NetworkProtocolExtension * SOAP_FMAC4 soap_in_tt__NetworkProtocolExtension(struct soap*, const char*, tt__NetworkProtocolExtension *, const char*); -SOAP_FMAC1 tt__NetworkProtocolExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkProtocolExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkProtocolExtension * soap_new_tt__NetworkProtocolExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkProtocolExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkProtocolExtension * soap_new_req_tt__NetworkProtocolExtension( - struct soap *soap) -{ - tt__NetworkProtocolExtension *_p = ::soap_new_tt__NetworkProtocolExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkProtocolExtension * soap_new_set_tt__NetworkProtocolExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__NetworkProtocolExtension *_p = ::soap_new_tt__NetworkProtocolExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkProtocolExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__NetworkProtocolExtension(struct soap *soap, tt__NetworkProtocolExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkProtocolExtension", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkProtocolExtension(struct soap *soap, const char *URL, tt__NetworkProtocolExtension 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, "tt:NetworkProtocolExtension", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkProtocolExtension(struct soap *soap, const char *URL, tt__NetworkProtocolExtension 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, "tt:NetworkProtocolExtension", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkProtocolExtension(struct soap *soap, const char *URL, tt__NetworkProtocolExtension 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, "tt:NetworkProtocolExtension", p->soap_type() == SOAP_TYPE_tt__NetworkProtocolExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkProtocolExtension * SOAP_FMAC4 soap_get_tt__NetworkProtocolExtension(struct soap*, tt__NetworkProtocolExtension *, const char*, const char*); - -inline int soap_read_tt__NetworkProtocolExtension(struct soap *soap, tt__NetworkProtocolExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkProtocolExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkProtocolExtension(struct soap *soap, const char *URL, tt__NetworkProtocolExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkProtocolExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkProtocolExtension(struct soap *soap, tt__NetworkProtocolExtension *p) -{ - if (::soap_read_tt__NetworkProtocolExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkProtocol_DEFINED -#define SOAP_TYPE_tt__NetworkProtocol_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkProtocol(struct soap*, const char*, int, const tt__NetworkProtocol *, const char*); -SOAP_FMAC3 tt__NetworkProtocol * SOAP_FMAC4 soap_in_tt__NetworkProtocol(struct soap*, const char*, tt__NetworkProtocol *, const char*); -SOAP_FMAC1 tt__NetworkProtocol * SOAP_FMAC2 soap_instantiate_tt__NetworkProtocol(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkProtocol * soap_new_tt__NetworkProtocol(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkProtocol(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkProtocol * soap_new_req_tt__NetworkProtocol( - struct soap *soap, - enum tt__NetworkProtocolType Name, - bool Enabled, - const std::vector & Port) -{ - tt__NetworkProtocol *_p = ::soap_new_tt__NetworkProtocol(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkProtocol::Name = Name; - _p->tt__NetworkProtocol::Enabled = Enabled; - _p->tt__NetworkProtocol::Port = Port; - } - return _p; -} - -inline tt__NetworkProtocol * soap_new_set_tt__NetworkProtocol( - struct soap *soap, - enum tt__NetworkProtocolType Name, - bool Enabled, - const std::vector & Port, - tt__NetworkProtocolExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__NetworkProtocol *_p = ::soap_new_tt__NetworkProtocol(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkProtocol::Name = Name; - _p->tt__NetworkProtocol::Enabled = Enabled; - _p->tt__NetworkProtocol::Port = Port; - _p->tt__NetworkProtocol::Extension = Extension; - _p->tt__NetworkProtocol::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__NetworkProtocol(struct soap *soap, tt__NetworkProtocol const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkProtocol", p->soap_type() == SOAP_TYPE_tt__NetworkProtocol ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkProtocol(struct soap *soap, const char *URL, tt__NetworkProtocol 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, "tt:NetworkProtocol", p->soap_type() == SOAP_TYPE_tt__NetworkProtocol ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkProtocol(struct soap *soap, const char *URL, tt__NetworkProtocol 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, "tt:NetworkProtocol", p->soap_type() == SOAP_TYPE_tt__NetworkProtocol ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkProtocol(struct soap *soap, const char *URL, tt__NetworkProtocol 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, "tt:NetworkProtocol", p->soap_type() == SOAP_TYPE_tt__NetworkProtocol ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkProtocol * SOAP_FMAC4 soap_get_tt__NetworkProtocol(struct soap*, tt__NetworkProtocol *, const char*, const char*); - -inline int soap_read_tt__NetworkProtocol(struct soap *soap, tt__NetworkProtocol *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkProtocol(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkProtocol(struct soap *soap, const char *URL, tt__NetworkProtocol *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkProtocol(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkProtocol(struct soap *soap, tt__NetworkProtocol *p) -{ - if (::soap_read_tt__NetworkProtocol(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv6ConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__IPv6ConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6ConfigurationExtension(struct soap*, const char*, int, const tt__IPv6ConfigurationExtension *, const char*); -SOAP_FMAC3 tt__IPv6ConfigurationExtension * SOAP_FMAC4 soap_in_tt__IPv6ConfigurationExtension(struct soap*, const char*, tt__IPv6ConfigurationExtension *, const char*); -SOAP_FMAC1 tt__IPv6ConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__IPv6ConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv6ConfigurationExtension * soap_new_tt__IPv6ConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv6ConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv6ConfigurationExtension * soap_new_req_tt__IPv6ConfigurationExtension( - struct soap *soap) -{ - tt__IPv6ConfigurationExtension *_p = ::soap_new_tt__IPv6ConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IPv6ConfigurationExtension * soap_new_set_tt__IPv6ConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__IPv6ConfigurationExtension *_p = ::soap_new_tt__IPv6ConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6ConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__IPv6ConfigurationExtension(struct soap *soap, tt__IPv6ConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv6ConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__IPv6ConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv6ConfigurationExtension(struct soap *soap, const char *URL, tt__IPv6ConfigurationExtension 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, "tt:IPv6ConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__IPv6ConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv6ConfigurationExtension(struct soap *soap, const char *URL, tt__IPv6ConfigurationExtension 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, "tt:IPv6ConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__IPv6ConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv6ConfigurationExtension(struct soap *soap, const char *URL, tt__IPv6ConfigurationExtension 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, "tt:IPv6ConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__IPv6ConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv6ConfigurationExtension * SOAP_FMAC4 soap_get_tt__IPv6ConfigurationExtension(struct soap*, tt__IPv6ConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__IPv6ConfigurationExtension(struct soap *soap, tt__IPv6ConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv6ConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv6ConfigurationExtension(struct soap *soap, const char *URL, tt__IPv6ConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv6ConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv6ConfigurationExtension(struct soap *soap, tt__IPv6ConfigurationExtension *p) -{ - if (::soap_read_tt__IPv6ConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv6Configuration_DEFINED -#define SOAP_TYPE_tt__IPv6Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6Configuration(struct soap*, const char*, int, const tt__IPv6Configuration *, const char*); -SOAP_FMAC3 tt__IPv6Configuration * SOAP_FMAC4 soap_in_tt__IPv6Configuration(struct soap*, const char*, tt__IPv6Configuration *, const char*); -SOAP_FMAC1 tt__IPv6Configuration * SOAP_FMAC2 soap_instantiate_tt__IPv6Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv6Configuration * soap_new_tt__IPv6Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv6Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv6Configuration * soap_new_req_tt__IPv6Configuration( - struct soap *soap, - enum tt__IPv6DHCPConfiguration DHCP) -{ - tt__IPv6Configuration *_p = ::soap_new_tt__IPv6Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6Configuration::DHCP = DHCP; - } - return _p; -} - -inline tt__IPv6Configuration * soap_new_set_tt__IPv6Configuration( - struct soap *soap, - bool *AcceptRouterAdvert, - enum tt__IPv6DHCPConfiguration DHCP, - const std::vector & Manual, - const std::vector & LinkLocal, - const std::vector & FromDHCP, - const std::vector & FromRA, - tt__IPv6ConfigurationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__IPv6Configuration *_p = ::soap_new_tt__IPv6Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6Configuration::AcceptRouterAdvert = AcceptRouterAdvert; - _p->tt__IPv6Configuration::DHCP = DHCP; - _p->tt__IPv6Configuration::Manual = Manual; - _p->tt__IPv6Configuration::LinkLocal = LinkLocal; - _p->tt__IPv6Configuration::FromDHCP = FromDHCP; - _p->tt__IPv6Configuration::FromRA = FromRA; - _p->tt__IPv6Configuration::Extension = Extension; - _p->tt__IPv6Configuration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__IPv6Configuration(struct soap *soap, tt__IPv6Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv6Configuration", p->soap_type() == SOAP_TYPE_tt__IPv6Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv6Configuration(struct soap *soap, const char *URL, tt__IPv6Configuration 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, "tt:IPv6Configuration", p->soap_type() == SOAP_TYPE_tt__IPv6Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv6Configuration(struct soap *soap, const char *URL, tt__IPv6Configuration 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, "tt:IPv6Configuration", p->soap_type() == SOAP_TYPE_tt__IPv6Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv6Configuration(struct soap *soap, const char *URL, tt__IPv6Configuration 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, "tt:IPv6Configuration", p->soap_type() == SOAP_TYPE_tt__IPv6Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv6Configuration * SOAP_FMAC4 soap_get_tt__IPv6Configuration(struct soap*, tt__IPv6Configuration *, const char*, const char*); - -inline int soap_read_tt__IPv6Configuration(struct soap *soap, tt__IPv6Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv6Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv6Configuration(struct soap *soap, const char *URL, tt__IPv6Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv6Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv6Configuration(struct soap *soap, tt__IPv6Configuration *p) -{ - if (::soap_read_tt__IPv6Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv4Configuration_DEFINED -#define SOAP_TYPE_tt__IPv4Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4Configuration(struct soap*, const char*, int, const tt__IPv4Configuration *, const char*); -SOAP_FMAC3 tt__IPv4Configuration * SOAP_FMAC4 soap_in_tt__IPv4Configuration(struct soap*, const char*, tt__IPv4Configuration *, const char*); -SOAP_FMAC1 tt__IPv4Configuration * SOAP_FMAC2 soap_instantiate_tt__IPv4Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv4Configuration * soap_new_tt__IPv4Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv4Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv4Configuration * soap_new_req_tt__IPv4Configuration( - struct soap *soap, - bool DHCP) -{ - tt__IPv4Configuration *_p = ::soap_new_tt__IPv4Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv4Configuration::DHCP = DHCP; - } - return _p; -} - -inline tt__IPv4Configuration * soap_new_set_tt__IPv4Configuration( - struct soap *soap, - const std::vector & Manual, - tt__PrefixedIPv4Address *LinkLocal, - tt__PrefixedIPv4Address *FromDHCP, - bool DHCP, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__IPv4Configuration *_p = ::soap_new_tt__IPv4Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv4Configuration::Manual = Manual; - _p->tt__IPv4Configuration::LinkLocal = LinkLocal; - _p->tt__IPv4Configuration::FromDHCP = FromDHCP; - _p->tt__IPv4Configuration::DHCP = DHCP; - _p->tt__IPv4Configuration::__any = __any; - _p->tt__IPv4Configuration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__IPv4Configuration(struct soap *soap, tt__IPv4Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv4Configuration", p->soap_type() == SOAP_TYPE_tt__IPv4Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv4Configuration(struct soap *soap, const char *URL, tt__IPv4Configuration 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, "tt:IPv4Configuration", p->soap_type() == SOAP_TYPE_tt__IPv4Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv4Configuration(struct soap *soap, const char *URL, tt__IPv4Configuration 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, "tt:IPv4Configuration", p->soap_type() == SOAP_TYPE_tt__IPv4Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv4Configuration(struct soap *soap, const char *URL, tt__IPv4Configuration 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, "tt:IPv4Configuration", p->soap_type() == SOAP_TYPE_tt__IPv4Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv4Configuration * SOAP_FMAC4 soap_get_tt__IPv4Configuration(struct soap*, tt__IPv4Configuration *, const char*, const char*); - -inline int soap_read_tt__IPv4Configuration(struct soap *soap, tt__IPv4Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv4Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv4Configuration(struct soap *soap, const char *URL, tt__IPv4Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv4Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv4Configuration(struct soap *soap, tt__IPv4Configuration *p) -{ - if (::soap_read_tt__IPv4Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv4NetworkInterface_DEFINED -#define SOAP_TYPE_tt__IPv4NetworkInterface_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv4NetworkInterface(struct soap*, const char*, int, const tt__IPv4NetworkInterface *, const char*); -SOAP_FMAC3 tt__IPv4NetworkInterface * SOAP_FMAC4 soap_in_tt__IPv4NetworkInterface(struct soap*, const char*, tt__IPv4NetworkInterface *, const char*); -SOAP_FMAC1 tt__IPv4NetworkInterface * SOAP_FMAC2 soap_instantiate_tt__IPv4NetworkInterface(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv4NetworkInterface * soap_new_tt__IPv4NetworkInterface(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv4NetworkInterface(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv4NetworkInterface * soap_new_req_tt__IPv4NetworkInterface( - struct soap *soap, - bool Enabled, - tt__IPv4Configuration *Config) -{ - tt__IPv4NetworkInterface *_p = ::soap_new_tt__IPv4NetworkInterface(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv4NetworkInterface::Enabled = Enabled; - _p->tt__IPv4NetworkInterface::Config = Config; - } - return _p; -} - -inline tt__IPv4NetworkInterface * soap_new_set_tt__IPv4NetworkInterface( - struct soap *soap, - bool Enabled, - tt__IPv4Configuration *Config) -{ - tt__IPv4NetworkInterface *_p = ::soap_new_tt__IPv4NetworkInterface(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv4NetworkInterface::Enabled = Enabled; - _p->tt__IPv4NetworkInterface::Config = Config; - } - return _p; -} - -inline int soap_write_tt__IPv4NetworkInterface(struct soap *soap, tt__IPv4NetworkInterface const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv4NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterface ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv4NetworkInterface(struct soap *soap, const char *URL, tt__IPv4NetworkInterface 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, "tt:IPv4NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterface ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv4NetworkInterface(struct soap *soap, const char *URL, tt__IPv4NetworkInterface 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, "tt:IPv4NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterface ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv4NetworkInterface(struct soap *soap, const char *URL, tt__IPv4NetworkInterface 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, "tt:IPv4NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv4NetworkInterface ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv4NetworkInterface * SOAP_FMAC4 soap_get_tt__IPv4NetworkInterface(struct soap*, tt__IPv4NetworkInterface *, const char*, const char*); - -inline int soap_read_tt__IPv4NetworkInterface(struct soap *soap, tt__IPv4NetworkInterface *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv4NetworkInterface(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv4NetworkInterface(struct soap *soap, const char *URL, tt__IPv4NetworkInterface *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv4NetworkInterface(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv4NetworkInterface(struct soap *soap, tt__IPv4NetworkInterface *p) -{ - if (::soap_read_tt__IPv4NetworkInterface(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IPv6NetworkInterface_DEFINED -#define SOAP_TYPE_tt__IPv6NetworkInterface_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IPv6NetworkInterface(struct soap*, const char*, int, const tt__IPv6NetworkInterface *, const char*); -SOAP_FMAC3 tt__IPv6NetworkInterface * SOAP_FMAC4 soap_in_tt__IPv6NetworkInterface(struct soap*, const char*, tt__IPv6NetworkInterface *, const char*); -SOAP_FMAC1 tt__IPv6NetworkInterface * SOAP_FMAC2 soap_instantiate_tt__IPv6NetworkInterface(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IPv6NetworkInterface * soap_new_tt__IPv6NetworkInterface(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IPv6NetworkInterface(soap, n, NULL, NULL, NULL); -} - -inline tt__IPv6NetworkInterface * soap_new_req_tt__IPv6NetworkInterface( - struct soap *soap, - bool Enabled) -{ - tt__IPv6NetworkInterface *_p = ::soap_new_tt__IPv6NetworkInterface(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6NetworkInterface::Enabled = Enabled; - } - return _p; -} - -inline tt__IPv6NetworkInterface * soap_new_set_tt__IPv6NetworkInterface( - struct soap *soap, - bool Enabled, - tt__IPv6Configuration *Config) -{ - tt__IPv6NetworkInterface *_p = ::soap_new_tt__IPv6NetworkInterface(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IPv6NetworkInterface::Enabled = Enabled; - _p->tt__IPv6NetworkInterface::Config = Config; - } - return _p; -} - -inline int soap_write_tt__IPv6NetworkInterface(struct soap *soap, tt__IPv6NetworkInterface const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IPv6NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterface ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IPv6NetworkInterface(struct soap *soap, const char *URL, tt__IPv6NetworkInterface 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, "tt:IPv6NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterface ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IPv6NetworkInterface(struct soap *soap, const char *URL, tt__IPv6NetworkInterface 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, "tt:IPv6NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterface ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IPv6NetworkInterface(struct soap *soap, const char *URL, tt__IPv6NetworkInterface 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, "tt:IPv6NetworkInterface", p->soap_type() == SOAP_TYPE_tt__IPv6NetworkInterface ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IPv6NetworkInterface * SOAP_FMAC4 soap_get_tt__IPv6NetworkInterface(struct soap*, tt__IPv6NetworkInterface *, const char*, const char*); - -inline int soap_read_tt__IPv6NetworkInterface(struct soap *soap, tt__IPv6NetworkInterface *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IPv6NetworkInterface(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IPv6NetworkInterface(struct soap *soap, const char *URL, tt__IPv6NetworkInterface *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IPv6NetworkInterface(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IPv6NetworkInterface(struct soap *soap, tt__IPv6NetworkInterface *p) -{ - if (::soap_read_tt__IPv6NetworkInterface(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceInfo_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceInfo_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceInfo(struct soap*, const char*, int, const tt__NetworkInterfaceInfo *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceInfo * SOAP_FMAC4 soap_in_tt__NetworkInterfaceInfo(struct soap*, const char*, tt__NetworkInterfaceInfo *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceInfo * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceInfo(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceInfo * soap_new_tt__NetworkInterfaceInfo(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceInfo(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceInfo * soap_new_req_tt__NetworkInterfaceInfo( - struct soap *soap, - const std::string& HwAddress) -{ - tt__NetworkInterfaceInfo *_p = ::soap_new_tt__NetworkInterfaceInfo(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceInfo::HwAddress = HwAddress; - } - return _p; -} - -inline tt__NetworkInterfaceInfo * soap_new_set_tt__NetworkInterfaceInfo( - struct soap *soap, - std::string *Name, - const std::string& HwAddress, - int *MTU) -{ - tt__NetworkInterfaceInfo *_p = ::soap_new_tt__NetworkInterfaceInfo(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceInfo::Name = Name; - _p->tt__NetworkInterfaceInfo::HwAddress = HwAddress; - _p->tt__NetworkInterfaceInfo::MTU = MTU; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceInfo(struct soap *soap, tt__NetworkInterfaceInfo const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceInfo", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceInfo ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceInfo(struct soap *soap, const char *URL, tt__NetworkInterfaceInfo 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, "tt:NetworkInterfaceInfo", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceInfo ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceInfo(struct soap *soap, const char *URL, tt__NetworkInterfaceInfo 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, "tt:NetworkInterfaceInfo", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceInfo ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceInfo(struct soap *soap, const char *URL, tt__NetworkInterfaceInfo 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, "tt:NetworkInterfaceInfo", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceInfo ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceInfo * SOAP_FMAC4 soap_get_tt__NetworkInterfaceInfo(struct soap*, tt__NetworkInterfaceInfo *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceInfo(struct soap *soap, tt__NetworkInterfaceInfo *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceInfo(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceInfo(struct soap *soap, const char *URL, tt__NetworkInterfaceInfo *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceInfo(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceInfo(struct soap *soap, tt__NetworkInterfaceInfo *p) -{ - if (::soap_read_tt__NetworkInterfaceInfo(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceConnectionSetting_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceConnectionSetting_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceConnectionSetting(struct soap*, const char*, int, const tt__NetworkInterfaceConnectionSetting *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceConnectionSetting * SOAP_FMAC4 soap_in_tt__NetworkInterfaceConnectionSetting(struct soap*, const char*, tt__NetworkInterfaceConnectionSetting *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceConnectionSetting * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceConnectionSetting(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceConnectionSetting * soap_new_tt__NetworkInterfaceConnectionSetting(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceConnectionSetting(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceConnectionSetting * soap_new_req_tt__NetworkInterfaceConnectionSetting( - struct soap *soap, - bool AutoNegotiation, - int Speed, - enum tt__Duplex Duplex) -{ - tt__NetworkInterfaceConnectionSetting *_p = ::soap_new_tt__NetworkInterfaceConnectionSetting(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceConnectionSetting::AutoNegotiation = AutoNegotiation; - _p->tt__NetworkInterfaceConnectionSetting::Speed = Speed; - _p->tt__NetworkInterfaceConnectionSetting::Duplex = Duplex; - } - return _p; -} - -inline tt__NetworkInterfaceConnectionSetting * soap_new_set_tt__NetworkInterfaceConnectionSetting( - struct soap *soap, - bool AutoNegotiation, - int Speed, - enum tt__Duplex Duplex) -{ - tt__NetworkInterfaceConnectionSetting *_p = ::soap_new_tt__NetworkInterfaceConnectionSetting(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceConnectionSetting::AutoNegotiation = AutoNegotiation; - _p->tt__NetworkInterfaceConnectionSetting::Speed = Speed; - _p->tt__NetworkInterfaceConnectionSetting::Duplex = Duplex; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceConnectionSetting(struct soap *soap, tt__NetworkInterfaceConnectionSetting const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceConnectionSetting", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConnectionSetting ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceConnectionSetting(struct soap *soap, const char *URL, tt__NetworkInterfaceConnectionSetting 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, "tt:NetworkInterfaceConnectionSetting", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConnectionSetting ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceConnectionSetting(struct soap *soap, const char *URL, tt__NetworkInterfaceConnectionSetting 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, "tt:NetworkInterfaceConnectionSetting", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConnectionSetting ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceConnectionSetting(struct soap *soap, const char *URL, tt__NetworkInterfaceConnectionSetting 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, "tt:NetworkInterfaceConnectionSetting", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceConnectionSetting ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceConnectionSetting * SOAP_FMAC4 soap_get_tt__NetworkInterfaceConnectionSetting(struct soap*, tt__NetworkInterfaceConnectionSetting *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceConnectionSetting(struct soap *soap, tt__NetworkInterfaceConnectionSetting *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceConnectionSetting(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceConnectionSetting(struct soap *soap, const char *URL, tt__NetworkInterfaceConnectionSetting *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceConnectionSetting(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceConnectionSetting(struct soap *soap, tt__NetworkInterfaceConnectionSetting *p) -{ - if (::soap_read_tt__NetworkInterfaceConnectionSetting(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceLink_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceLink_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceLink(struct soap*, const char*, int, const tt__NetworkInterfaceLink *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceLink * SOAP_FMAC4 soap_in_tt__NetworkInterfaceLink(struct soap*, const char*, tt__NetworkInterfaceLink *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceLink * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceLink(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceLink * soap_new_tt__NetworkInterfaceLink(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceLink(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceLink * soap_new_req_tt__NetworkInterfaceLink( - struct soap *soap, - tt__NetworkInterfaceConnectionSetting *AdminSettings, - tt__NetworkInterfaceConnectionSetting *OperSettings, - int InterfaceType) -{ - tt__NetworkInterfaceLink *_p = ::soap_new_tt__NetworkInterfaceLink(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceLink::AdminSettings = AdminSettings; - _p->tt__NetworkInterfaceLink::OperSettings = OperSettings; - _p->tt__NetworkInterfaceLink::InterfaceType = InterfaceType; - } - return _p; -} - -inline tt__NetworkInterfaceLink * soap_new_set_tt__NetworkInterfaceLink( - struct soap *soap, - tt__NetworkInterfaceConnectionSetting *AdminSettings, - tt__NetworkInterfaceConnectionSetting *OperSettings, - int InterfaceType) -{ - tt__NetworkInterfaceLink *_p = ::soap_new_tt__NetworkInterfaceLink(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceLink::AdminSettings = AdminSettings; - _p->tt__NetworkInterfaceLink::OperSettings = OperSettings; - _p->tt__NetworkInterfaceLink::InterfaceType = InterfaceType; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceLink(struct soap *soap, tt__NetworkInterfaceLink const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceLink", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceLink ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceLink(struct soap *soap, const char *URL, tt__NetworkInterfaceLink 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, "tt:NetworkInterfaceLink", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceLink ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceLink(struct soap *soap, const char *URL, tt__NetworkInterfaceLink 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, "tt:NetworkInterfaceLink", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceLink ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceLink(struct soap *soap, const char *URL, tt__NetworkInterfaceLink 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, "tt:NetworkInterfaceLink", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceLink ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceLink * SOAP_FMAC4 soap_get_tt__NetworkInterfaceLink(struct soap*, tt__NetworkInterfaceLink *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceLink(struct soap *soap, tt__NetworkInterfaceLink *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceLink(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceLink(struct soap *soap, const char *URL, tt__NetworkInterfaceLink *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceLink(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceLink(struct soap *soap, tt__NetworkInterfaceLink *p) -{ - if (::soap_read_tt__NetworkInterfaceLink(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceExtension2_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceExtension2(struct soap*, const char*, int, const tt__NetworkInterfaceExtension2 *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceExtension2 * SOAP_FMAC4 soap_in_tt__NetworkInterfaceExtension2(struct soap*, const char*, tt__NetworkInterfaceExtension2 *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceExtension2 * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceExtension2 * soap_new_tt__NetworkInterfaceExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceExtension2 * soap_new_req_tt__NetworkInterfaceExtension2( - struct soap *soap) -{ - tt__NetworkInterfaceExtension2 *_p = ::soap_new_tt__NetworkInterfaceExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__NetworkInterfaceExtension2 * soap_new_set_tt__NetworkInterfaceExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__NetworkInterfaceExtension2 *_p = ::soap_new_tt__NetworkInterfaceExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceExtension2(struct soap *soap, tt__NetworkInterfaceExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension2 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, "tt:NetworkInterfaceExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension2 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, "tt:NetworkInterfaceExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension2 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, "tt:NetworkInterfaceExtension2", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceExtension2 * SOAP_FMAC4 soap_get_tt__NetworkInterfaceExtension2(struct soap*, tt__NetworkInterfaceExtension2 *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceExtension2(struct soap *soap, tt__NetworkInterfaceExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceExtension2(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceExtension2(struct soap *soap, tt__NetworkInterfaceExtension2 *p) -{ - if (::soap_read_tt__NetworkInterfaceExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Dot3Configuration_DEFINED -#define SOAP_TYPE_tt__Dot3Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Dot3Configuration(struct soap*, const char*, int, const tt__Dot3Configuration *, const char*); -SOAP_FMAC3 tt__Dot3Configuration * SOAP_FMAC4 soap_in_tt__Dot3Configuration(struct soap*, const char*, tt__Dot3Configuration *, const char*); -SOAP_FMAC1 tt__Dot3Configuration * SOAP_FMAC2 soap_instantiate_tt__Dot3Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Dot3Configuration * soap_new_tt__Dot3Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Dot3Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__Dot3Configuration * soap_new_req_tt__Dot3Configuration( - struct soap *soap) -{ - tt__Dot3Configuration *_p = ::soap_new_tt__Dot3Configuration(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Dot3Configuration * soap_new_set_tt__Dot3Configuration( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Dot3Configuration *_p = ::soap_new_tt__Dot3Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Dot3Configuration::__any = __any; - _p->tt__Dot3Configuration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Dot3Configuration(struct soap *soap, tt__Dot3Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Dot3Configuration", p->soap_type() == SOAP_TYPE_tt__Dot3Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Dot3Configuration(struct soap *soap, const char *URL, tt__Dot3Configuration 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, "tt:Dot3Configuration", p->soap_type() == SOAP_TYPE_tt__Dot3Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Dot3Configuration(struct soap *soap, const char *URL, tt__Dot3Configuration 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, "tt:Dot3Configuration", p->soap_type() == SOAP_TYPE_tt__Dot3Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Dot3Configuration(struct soap *soap, const char *URL, tt__Dot3Configuration 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, "tt:Dot3Configuration", p->soap_type() == SOAP_TYPE_tt__Dot3Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Dot3Configuration * SOAP_FMAC4 soap_get_tt__Dot3Configuration(struct soap*, tt__Dot3Configuration *, const char*, const char*); - -inline int soap_read_tt__Dot3Configuration(struct soap *soap, tt__Dot3Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Dot3Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Dot3Configuration(struct soap *soap, const char *URL, tt__Dot3Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Dot3Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Dot3Configuration(struct soap *soap, tt__Dot3Configuration *p) -{ - if (::soap_read_tt__Dot3Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterfaceExtension_DEFINED -#define SOAP_TYPE_tt__NetworkInterfaceExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterfaceExtension(struct soap*, const char*, int, const tt__NetworkInterfaceExtension *, const char*); -SOAP_FMAC3 tt__NetworkInterfaceExtension * SOAP_FMAC4 soap_in_tt__NetworkInterfaceExtension(struct soap*, const char*, tt__NetworkInterfaceExtension *, const char*); -SOAP_FMAC1 tt__NetworkInterfaceExtension * SOAP_FMAC2 soap_instantiate_tt__NetworkInterfaceExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterfaceExtension * soap_new_tt__NetworkInterfaceExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterfaceExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterfaceExtension * soap_new_req_tt__NetworkInterfaceExtension( - struct soap *soap, - int InterfaceType) -{ - tt__NetworkInterfaceExtension *_p = ::soap_new_tt__NetworkInterfaceExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceExtension::InterfaceType = InterfaceType; - } - return _p; -} - -inline tt__NetworkInterfaceExtension * soap_new_set_tt__NetworkInterfaceExtension( - struct soap *soap, - const std::vector & __any, - int InterfaceType, - const std::vector & Dot3, - const std::vector & Dot11, - tt__NetworkInterfaceExtension2 *Extension) -{ - tt__NetworkInterfaceExtension *_p = ::soap_new_tt__NetworkInterfaceExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterfaceExtension::__any = __any; - _p->tt__NetworkInterfaceExtension::InterfaceType = InterfaceType; - _p->tt__NetworkInterfaceExtension::Dot3 = Dot3; - _p->tt__NetworkInterfaceExtension::Dot11 = Dot11; - _p->tt__NetworkInterfaceExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__NetworkInterfaceExtension(struct soap *soap, tt__NetworkInterfaceExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterfaceExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterfaceExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension 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, "tt:NetworkInterfaceExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterfaceExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension 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, "tt:NetworkInterfaceExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterfaceExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension 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, "tt:NetworkInterfaceExtension", p->soap_type() == SOAP_TYPE_tt__NetworkInterfaceExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterfaceExtension * SOAP_FMAC4 soap_get_tt__NetworkInterfaceExtension(struct soap*, tt__NetworkInterfaceExtension *, const char*, const char*); - -inline int soap_read_tt__NetworkInterfaceExtension(struct soap *soap, tt__NetworkInterfaceExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterfaceExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterfaceExtension(struct soap *soap, const char *URL, tt__NetworkInterfaceExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterfaceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterfaceExtension(struct soap *soap, tt__NetworkInterfaceExtension *p) -{ - if (::soap_read_tt__NetworkInterfaceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__NetworkInterface_DEFINED -#define SOAP_TYPE_tt__NetworkInterface_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__NetworkInterface(struct soap*, const char*, int, const tt__NetworkInterface *, const char*); -SOAP_FMAC3 tt__NetworkInterface * SOAP_FMAC4 soap_in_tt__NetworkInterface(struct soap*, const char*, tt__NetworkInterface *, const char*); -SOAP_FMAC1 tt__NetworkInterface * SOAP_FMAC2 soap_instantiate_tt__NetworkInterface(struct soap*, int, const char*, const char*, size_t*); - -inline tt__NetworkInterface * soap_new_tt__NetworkInterface(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__NetworkInterface(soap, n, NULL, NULL, NULL); -} - -inline tt__NetworkInterface * soap_new_req_tt__NetworkInterface( - struct soap *soap, - bool Enabled, - const std::string& token__1) -{ - tt__NetworkInterface *_p = ::soap_new_tt__NetworkInterface(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterface::Enabled = Enabled; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__NetworkInterface * soap_new_set_tt__NetworkInterface( - struct soap *soap, - bool Enabled, - tt__NetworkInterfaceInfo *Info, - tt__NetworkInterfaceLink *Link, - tt__IPv4NetworkInterface *IPv4, - tt__IPv6NetworkInterface *IPv6, - tt__NetworkInterfaceExtension *Extension, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__NetworkInterface *_p = ::soap_new_tt__NetworkInterface(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__NetworkInterface::Enabled = Enabled; - _p->tt__NetworkInterface::Info = Info; - _p->tt__NetworkInterface::Link = Link; - _p->tt__NetworkInterface::IPv4 = IPv4; - _p->tt__NetworkInterface::IPv6 = IPv6; - _p->tt__NetworkInterface::Extension = Extension; - _p->tt__NetworkInterface::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__NetworkInterface(struct soap *soap, tt__NetworkInterface const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:NetworkInterface", p->soap_type() == SOAP_TYPE_tt__NetworkInterface ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__NetworkInterface(struct soap *soap, const char *URL, tt__NetworkInterface 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, "tt:NetworkInterface", p->soap_type() == SOAP_TYPE_tt__NetworkInterface ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__NetworkInterface(struct soap *soap, const char *URL, tt__NetworkInterface 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, "tt:NetworkInterface", p->soap_type() == SOAP_TYPE_tt__NetworkInterface ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__NetworkInterface(struct soap *soap, const char *URL, tt__NetworkInterface 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, "tt:NetworkInterface", p->soap_type() == SOAP_TYPE_tt__NetworkInterface ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__NetworkInterface * SOAP_FMAC4 soap_get_tt__NetworkInterface(struct soap*, tt__NetworkInterface *, const char*, const char*); - -inline int soap_read_tt__NetworkInterface(struct soap *soap, tt__NetworkInterface *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__NetworkInterface(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__NetworkInterface(struct soap *soap, const char *URL, tt__NetworkInterface *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__NetworkInterface(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__NetworkInterface(struct soap *soap, tt__NetworkInterface *p) -{ - if (::soap_read_tt__NetworkInterface(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Scope_DEFINED -#define SOAP_TYPE_tt__Scope_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Scope(struct soap*, const char*, int, const tt__Scope *, const char*); -SOAP_FMAC3 tt__Scope * SOAP_FMAC4 soap_in_tt__Scope(struct soap*, const char*, tt__Scope *, const char*); -SOAP_FMAC1 tt__Scope * SOAP_FMAC2 soap_instantiate_tt__Scope(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Scope * soap_new_tt__Scope(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Scope(soap, n, NULL, NULL, NULL); -} - -inline tt__Scope * soap_new_req_tt__Scope( - struct soap *soap, - enum tt__ScopeDefinition ScopeDef, - const std::string& ScopeItem) -{ - tt__Scope *_p = ::soap_new_tt__Scope(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Scope::ScopeDef = ScopeDef; - _p->tt__Scope::ScopeItem = ScopeItem; - } - return _p; -} - -inline tt__Scope * soap_new_set_tt__Scope( - struct soap *soap, - enum tt__ScopeDefinition ScopeDef, - const std::string& ScopeItem) -{ - tt__Scope *_p = ::soap_new_tt__Scope(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Scope::ScopeDef = ScopeDef; - _p->tt__Scope::ScopeItem = ScopeItem; - } - return _p; -} - -inline int soap_write_tt__Scope(struct soap *soap, tt__Scope const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Scope", p->soap_type() == SOAP_TYPE_tt__Scope ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Scope(struct soap *soap, const char *URL, tt__Scope 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, "tt:Scope", p->soap_type() == SOAP_TYPE_tt__Scope ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Scope(struct soap *soap, const char *URL, tt__Scope 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, "tt:Scope", p->soap_type() == SOAP_TYPE_tt__Scope ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Scope(struct soap *soap, const char *URL, tt__Scope 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, "tt:Scope", p->soap_type() == SOAP_TYPE_tt__Scope ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Scope * SOAP_FMAC4 soap_get_tt__Scope(struct soap*, tt__Scope *, const char*, const char*); - -inline int soap_read_tt__Scope(struct soap *soap, tt__Scope *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Scope(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Scope(struct soap *soap, const char *URL, tt__Scope *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Scope(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Scope(struct soap *soap, tt__Scope *p) -{ - if (::soap_read_tt__Scope(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MediaUri_DEFINED -#define SOAP_TYPE_tt__MediaUri_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MediaUri(struct soap*, const char*, int, const tt__MediaUri *, const char*); -SOAP_FMAC3 tt__MediaUri * SOAP_FMAC4 soap_in_tt__MediaUri(struct soap*, const char*, tt__MediaUri *, const char*); -SOAP_FMAC1 tt__MediaUri * SOAP_FMAC2 soap_instantiate_tt__MediaUri(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MediaUri * soap_new_tt__MediaUri(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MediaUri(soap, n, NULL, NULL, NULL); -} - -inline tt__MediaUri * soap_new_req_tt__MediaUri( - struct soap *soap, - const std::string& Uri, - bool InvalidAfterConnect, - bool InvalidAfterReboot, - const std::string& Timeout) -{ - tt__MediaUri *_p = ::soap_new_tt__MediaUri(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaUri::Uri = Uri; - _p->tt__MediaUri::InvalidAfterConnect = InvalidAfterConnect; - _p->tt__MediaUri::InvalidAfterReboot = InvalidAfterReboot; - _p->tt__MediaUri::Timeout = Timeout; - } - return _p; -} - -inline tt__MediaUri * soap_new_set_tt__MediaUri( - struct soap *soap, - const std::string& Uri, - bool InvalidAfterConnect, - bool InvalidAfterReboot, - const std::string& Timeout, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MediaUri *_p = ::soap_new_tt__MediaUri(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MediaUri::Uri = Uri; - _p->tt__MediaUri::InvalidAfterConnect = InvalidAfterConnect; - _p->tt__MediaUri::InvalidAfterReboot = InvalidAfterReboot; - _p->tt__MediaUri::Timeout = Timeout; - _p->tt__MediaUri::__any = __any; - _p->tt__MediaUri::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MediaUri(struct soap *soap, tt__MediaUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MediaUri", p->soap_type() == SOAP_TYPE_tt__MediaUri ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MediaUri(struct soap *soap, const char *URL, tt__MediaUri 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, "tt:MediaUri", p->soap_type() == SOAP_TYPE_tt__MediaUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MediaUri(struct soap *soap, const char *URL, tt__MediaUri 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, "tt:MediaUri", p->soap_type() == SOAP_TYPE_tt__MediaUri ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MediaUri(struct soap *soap, const char *URL, tt__MediaUri 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, "tt:MediaUri", p->soap_type() == SOAP_TYPE_tt__MediaUri ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MediaUri * SOAP_FMAC4 soap_get_tt__MediaUri(struct soap*, tt__MediaUri *, const char*, const char*); - -inline int soap_read_tt__MediaUri(struct soap *soap, tt__MediaUri *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MediaUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MediaUri(struct soap *soap, const char *URL, tt__MediaUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MediaUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MediaUri(struct soap *soap, tt__MediaUri *p) -{ - if (::soap_read_tt__MediaUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Transport_DEFINED -#define SOAP_TYPE_tt__Transport_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Transport(struct soap*, const char*, int, const tt__Transport *, const char*); -SOAP_FMAC3 tt__Transport * SOAP_FMAC4 soap_in_tt__Transport(struct soap*, const char*, tt__Transport *, const char*); -SOAP_FMAC1 tt__Transport * SOAP_FMAC2 soap_instantiate_tt__Transport(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Transport * soap_new_tt__Transport(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Transport(soap, n, NULL, NULL, NULL); -} - -inline tt__Transport * soap_new_req_tt__Transport( - struct soap *soap, - enum tt__TransportProtocol Protocol) -{ - tt__Transport *_p = ::soap_new_tt__Transport(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Transport::Protocol = Protocol; - } - return _p; -} - -inline tt__Transport * soap_new_set_tt__Transport( - struct soap *soap, - enum tt__TransportProtocol Protocol, - tt__Transport *Tunnel) -{ - tt__Transport *_p = ::soap_new_tt__Transport(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Transport::Protocol = Protocol; - _p->tt__Transport::Tunnel = Tunnel; - } - return _p; -} - -inline int soap_write_tt__Transport(struct soap *soap, tt__Transport const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Transport", p->soap_type() == SOAP_TYPE_tt__Transport ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Transport(struct soap *soap, const char *URL, tt__Transport 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, "tt:Transport", p->soap_type() == SOAP_TYPE_tt__Transport ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Transport(struct soap *soap, const char *URL, tt__Transport 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, "tt:Transport", p->soap_type() == SOAP_TYPE_tt__Transport ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Transport(struct soap *soap, const char *URL, tt__Transport 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, "tt:Transport", p->soap_type() == SOAP_TYPE_tt__Transport ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Transport * SOAP_FMAC4 soap_get_tt__Transport(struct soap*, tt__Transport *, const char*, const char*); - -inline int soap_read_tt__Transport(struct soap *soap, tt__Transport *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Transport(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Transport(struct soap *soap, const char *URL, tt__Transport *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Transport(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Transport(struct soap *soap, tt__Transport *p) -{ - if (::soap_read_tt__Transport(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__StreamSetup_DEFINED -#define SOAP_TYPE_tt__StreamSetup_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__StreamSetup(struct soap*, const char*, int, const tt__StreamSetup *, const char*); -SOAP_FMAC3 tt__StreamSetup * SOAP_FMAC4 soap_in_tt__StreamSetup(struct soap*, const char*, tt__StreamSetup *, const char*); -SOAP_FMAC1 tt__StreamSetup * SOAP_FMAC2 soap_instantiate_tt__StreamSetup(struct soap*, int, const char*, const char*, size_t*); - -inline tt__StreamSetup * soap_new_tt__StreamSetup(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__StreamSetup(soap, n, NULL, NULL, NULL); -} - -inline tt__StreamSetup * soap_new_req_tt__StreamSetup( - struct soap *soap, - enum tt__StreamType Stream, - tt__Transport *Transport) -{ - tt__StreamSetup *_p = ::soap_new_tt__StreamSetup(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__StreamSetup::Stream = Stream; - _p->tt__StreamSetup::Transport = Transport; - } - return _p; -} - -inline tt__StreamSetup * soap_new_set_tt__StreamSetup( - struct soap *soap, - enum tt__StreamType Stream, - tt__Transport *Transport, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__StreamSetup *_p = ::soap_new_tt__StreamSetup(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__StreamSetup::Stream = Stream; - _p->tt__StreamSetup::Transport = Transport; - _p->tt__StreamSetup::__any = __any; - _p->tt__StreamSetup::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__StreamSetup(struct soap *soap, tt__StreamSetup const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:StreamSetup", p->soap_type() == SOAP_TYPE_tt__StreamSetup ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__StreamSetup(struct soap *soap, const char *URL, tt__StreamSetup 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, "tt:StreamSetup", p->soap_type() == SOAP_TYPE_tt__StreamSetup ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__StreamSetup(struct soap *soap, const char *URL, tt__StreamSetup 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, "tt:StreamSetup", p->soap_type() == SOAP_TYPE_tt__StreamSetup ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__StreamSetup(struct soap *soap, const char *URL, tt__StreamSetup 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, "tt:StreamSetup", p->soap_type() == SOAP_TYPE_tt__StreamSetup ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__StreamSetup * SOAP_FMAC4 soap_get_tt__StreamSetup(struct soap*, tt__StreamSetup *, const char*, const char*); - -inline int soap_read_tt__StreamSetup(struct soap *soap, tt__StreamSetup *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__StreamSetup(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__StreamSetup(struct soap *soap, const char *URL, tt__StreamSetup *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__StreamSetup(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__StreamSetup(struct soap *soap, tt__StreamSetup *p) -{ - if (::soap_read_tt__StreamSetup(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MulticastConfiguration_DEFINED -#define SOAP_TYPE_tt__MulticastConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MulticastConfiguration(struct soap*, const char*, int, const tt__MulticastConfiguration *, const char*); -SOAP_FMAC3 tt__MulticastConfiguration * SOAP_FMAC4 soap_in_tt__MulticastConfiguration(struct soap*, const char*, tt__MulticastConfiguration *, const char*); -SOAP_FMAC1 tt__MulticastConfiguration * SOAP_FMAC2 soap_instantiate_tt__MulticastConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MulticastConfiguration * soap_new_tt__MulticastConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MulticastConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__MulticastConfiguration * soap_new_req_tt__MulticastConfiguration( - struct soap *soap, - tt__IPAddress *Address, - int Port, - int TTL, - bool AutoStart) -{ - tt__MulticastConfiguration *_p = ::soap_new_tt__MulticastConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MulticastConfiguration::Address = Address; - _p->tt__MulticastConfiguration::Port = Port; - _p->tt__MulticastConfiguration::TTL = TTL; - _p->tt__MulticastConfiguration::AutoStart = AutoStart; - } - return _p; -} - -inline tt__MulticastConfiguration * soap_new_set_tt__MulticastConfiguration( - struct soap *soap, - tt__IPAddress *Address, - int Port, - int TTL, - bool AutoStart, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MulticastConfiguration *_p = ::soap_new_tt__MulticastConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MulticastConfiguration::Address = Address; - _p->tt__MulticastConfiguration::Port = Port; - _p->tt__MulticastConfiguration::TTL = TTL; - _p->tt__MulticastConfiguration::AutoStart = AutoStart; - _p->tt__MulticastConfiguration::__any = __any; - _p->tt__MulticastConfiguration::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MulticastConfiguration(struct soap *soap, tt__MulticastConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MulticastConfiguration", p->soap_type() == SOAP_TYPE_tt__MulticastConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MulticastConfiguration(struct soap *soap, const char *URL, tt__MulticastConfiguration 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, "tt:MulticastConfiguration", p->soap_type() == SOAP_TYPE_tt__MulticastConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MulticastConfiguration(struct soap *soap, const char *URL, tt__MulticastConfiguration 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, "tt:MulticastConfiguration", p->soap_type() == SOAP_TYPE_tt__MulticastConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MulticastConfiguration(struct soap *soap, const char *URL, tt__MulticastConfiguration 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, "tt:MulticastConfiguration", p->soap_type() == SOAP_TYPE_tt__MulticastConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MulticastConfiguration * SOAP_FMAC4 soap_get_tt__MulticastConfiguration(struct soap*, tt__MulticastConfiguration *, const char*, const char*); - -inline int soap_read_tt__MulticastConfiguration(struct soap *soap, tt__MulticastConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MulticastConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MulticastConfiguration(struct soap *soap, const char *URL, tt__MulticastConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MulticastConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MulticastConfiguration(struct soap *soap, tt__MulticastConfiguration *p) -{ - if (::soap_read_tt__MulticastConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioDecoderConfigurationOptionsExtension(struct soap*, const char*, int, const tt__AudioDecoderConfigurationOptionsExtension *, const char*); -SOAP_FMAC3 tt__AudioDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__AudioDecoderConfigurationOptionsExtension(struct soap*, const char*, tt__AudioDecoderConfigurationOptionsExtension *, const char*); -SOAP_FMAC1 tt__AudioDecoderConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__AudioDecoderConfigurationOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioDecoderConfigurationOptionsExtension * soap_new_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioDecoderConfigurationOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioDecoderConfigurationOptionsExtension * soap_new_req_tt__AudioDecoderConfigurationOptionsExtension( - struct soap *soap) -{ - tt__AudioDecoderConfigurationOptionsExtension *_p = ::soap_new_tt__AudioDecoderConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AudioDecoderConfigurationOptionsExtension * soap_new_set_tt__AudioDecoderConfigurationOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__AudioDecoderConfigurationOptionsExtension *_p = ::soap_new_tt__AudioDecoderConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioDecoderConfigurationOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, tt__AudioDecoderConfigurationOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptionsExtension 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, "tt:AudioDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptionsExtension 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, "tt:AudioDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptionsExtension 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, "tt:AudioDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__AudioDecoderConfigurationOptionsExtension(struct soap*, tt__AudioDecoderConfigurationOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, tt__AudioDecoderConfigurationOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioDecoderConfigurationOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioDecoderConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioDecoderConfigurationOptionsExtension(struct soap *soap, tt__AudioDecoderConfigurationOptionsExtension *p) -{ - if (::soap_read_tt__AudioDecoderConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__G726DecOptions_DEFINED -#define SOAP_TYPE_tt__G726DecOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__G726DecOptions(struct soap*, const char*, int, const tt__G726DecOptions *, const char*); -SOAP_FMAC3 tt__G726DecOptions * SOAP_FMAC4 soap_in_tt__G726DecOptions(struct soap*, const char*, tt__G726DecOptions *, const char*); -SOAP_FMAC1 tt__G726DecOptions * SOAP_FMAC2 soap_instantiate_tt__G726DecOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__G726DecOptions * soap_new_tt__G726DecOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__G726DecOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__G726DecOptions * soap_new_req_tt__G726DecOptions( - struct soap *soap, - tt__IntItems *Bitrate, - tt__IntItems *SampleRateRange) -{ - tt__G726DecOptions *_p = ::soap_new_tt__G726DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__G726DecOptions::Bitrate = Bitrate; - _p->tt__G726DecOptions::SampleRateRange = SampleRateRange; - } - return _p; -} - -inline tt__G726DecOptions * soap_new_set_tt__G726DecOptions( - struct soap *soap, - tt__IntItems *Bitrate, - tt__IntItems *SampleRateRange, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__G726DecOptions *_p = ::soap_new_tt__G726DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__G726DecOptions::Bitrate = Bitrate; - _p->tt__G726DecOptions::SampleRateRange = SampleRateRange; - _p->tt__G726DecOptions::__any = __any; - _p->tt__G726DecOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__G726DecOptions(struct soap *soap, tt__G726DecOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:G726DecOptions", p->soap_type() == SOAP_TYPE_tt__G726DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__G726DecOptions(struct soap *soap, const char *URL, tt__G726DecOptions 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, "tt:G726DecOptions", p->soap_type() == SOAP_TYPE_tt__G726DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__G726DecOptions(struct soap *soap, const char *URL, tt__G726DecOptions 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, "tt:G726DecOptions", p->soap_type() == SOAP_TYPE_tt__G726DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__G726DecOptions(struct soap *soap, const char *URL, tt__G726DecOptions 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, "tt:G726DecOptions", p->soap_type() == SOAP_TYPE_tt__G726DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__G726DecOptions * SOAP_FMAC4 soap_get_tt__G726DecOptions(struct soap*, tt__G726DecOptions *, const char*, const char*); - -inline int soap_read_tt__G726DecOptions(struct soap *soap, tt__G726DecOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__G726DecOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__G726DecOptions(struct soap *soap, const char *URL, tt__G726DecOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__G726DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__G726DecOptions(struct soap *soap, tt__G726DecOptions *p) -{ - if (::soap_read_tt__G726DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AACDecOptions_DEFINED -#define SOAP_TYPE_tt__AACDecOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AACDecOptions(struct soap*, const char*, int, const tt__AACDecOptions *, const char*); -SOAP_FMAC3 tt__AACDecOptions * SOAP_FMAC4 soap_in_tt__AACDecOptions(struct soap*, const char*, tt__AACDecOptions *, const char*); -SOAP_FMAC1 tt__AACDecOptions * SOAP_FMAC2 soap_instantiate_tt__AACDecOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AACDecOptions * soap_new_tt__AACDecOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AACDecOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__AACDecOptions * soap_new_req_tt__AACDecOptions( - struct soap *soap, - tt__IntItems *Bitrate, - tt__IntItems *SampleRateRange) -{ - tt__AACDecOptions *_p = ::soap_new_tt__AACDecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AACDecOptions::Bitrate = Bitrate; - _p->tt__AACDecOptions::SampleRateRange = SampleRateRange; - } - return _p; -} - -inline tt__AACDecOptions * soap_new_set_tt__AACDecOptions( - struct soap *soap, - tt__IntItems *Bitrate, - tt__IntItems *SampleRateRange, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AACDecOptions *_p = ::soap_new_tt__AACDecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AACDecOptions::Bitrate = Bitrate; - _p->tt__AACDecOptions::SampleRateRange = SampleRateRange; - _p->tt__AACDecOptions::__any = __any; - _p->tt__AACDecOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AACDecOptions(struct soap *soap, tt__AACDecOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AACDecOptions", p->soap_type() == SOAP_TYPE_tt__AACDecOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AACDecOptions(struct soap *soap, const char *URL, tt__AACDecOptions 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, "tt:AACDecOptions", p->soap_type() == SOAP_TYPE_tt__AACDecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AACDecOptions(struct soap *soap, const char *URL, tt__AACDecOptions 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, "tt:AACDecOptions", p->soap_type() == SOAP_TYPE_tt__AACDecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AACDecOptions(struct soap *soap, const char *URL, tt__AACDecOptions 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, "tt:AACDecOptions", p->soap_type() == SOAP_TYPE_tt__AACDecOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AACDecOptions * SOAP_FMAC4 soap_get_tt__AACDecOptions(struct soap*, tt__AACDecOptions *, const char*, const char*); - -inline int soap_read_tt__AACDecOptions(struct soap *soap, tt__AACDecOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AACDecOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AACDecOptions(struct soap *soap, const char *URL, tt__AACDecOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AACDecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AACDecOptions(struct soap *soap, tt__AACDecOptions *p) -{ - if (::soap_read_tt__AACDecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__G711DecOptions_DEFINED -#define SOAP_TYPE_tt__G711DecOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__G711DecOptions(struct soap*, const char*, int, const tt__G711DecOptions *, const char*); -SOAP_FMAC3 tt__G711DecOptions * SOAP_FMAC4 soap_in_tt__G711DecOptions(struct soap*, const char*, tt__G711DecOptions *, const char*); -SOAP_FMAC1 tt__G711DecOptions * SOAP_FMAC2 soap_instantiate_tt__G711DecOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__G711DecOptions * soap_new_tt__G711DecOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__G711DecOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__G711DecOptions * soap_new_req_tt__G711DecOptions( - struct soap *soap, - tt__IntItems *Bitrate, - tt__IntItems *SampleRateRange) -{ - tt__G711DecOptions *_p = ::soap_new_tt__G711DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__G711DecOptions::Bitrate = Bitrate; - _p->tt__G711DecOptions::SampleRateRange = SampleRateRange; - } - return _p; -} - -inline tt__G711DecOptions * soap_new_set_tt__G711DecOptions( - struct soap *soap, - tt__IntItems *Bitrate, - tt__IntItems *SampleRateRange, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__G711DecOptions *_p = ::soap_new_tt__G711DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__G711DecOptions::Bitrate = Bitrate; - _p->tt__G711DecOptions::SampleRateRange = SampleRateRange; - _p->tt__G711DecOptions::__any = __any; - _p->tt__G711DecOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__G711DecOptions(struct soap *soap, tt__G711DecOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:G711DecOptions", p->soap_type() == SOAP_TYPE_tt__G711DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__G711DecOptions(struct soap *soap, const char *URL, tt__G711DecOptions 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, "tt:G711DecOptions", p->soap_type() == SOAP_TYPE_tt__G711DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__G711DecOptions(struct soap *soap, const char *URL, tt__G711DecOptions 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, "tt:G711DecOptions", p->soap_type() == SOAP_TYPE_tt__G711DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__G711DecOptions(struct soap *soap, const char *URL, tt__G711DecOptions 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, "tt:G711DecOptions", p->soap_type() == SOAP_TYPE_tt__G711DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__G711DecOptions * SOAP_FMAC4 soap_get_tt__G711DecOptions(struct soap*, tt__G711DecOptions *, const char*, const char*); - -inline int soap_read_tt__G711DecOptions(struct soap *soap, tt__G711DecOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__G711DecOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__G711DecOptions(struct soap *soap, const char *URL, tt__G711DecOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__G711DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__G711DecOptions(struct soap *soap, tt__G711DecOptions *p) -{ - if (::soap_read_tt__G711DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioDecoderConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__AudioDecoderConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioDecoderConfigurationOptions(struct soap*, const char*, int, const tt__AudioDecoderConfigurationOptions *, const char*); -SOAP_FMAC3 tt__AudioDecoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioDecoderConfigurationOptions(struct soap*, const char*, tt__AudioDecoderConfigurationOptions *, const char*); -SOAP_FMAC1 tt__AudioDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioDecoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioDecoderConfigurationOptions * soap_new_tt__AudioDecoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioDecoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioDecoderConfigurationOptions * soap_new_req_tt__AudioDecoderConfigurationOptions( - struct soap *soap) -{ - tt__AudioDecoderConfigurationOptions *_p = ::soap_new_tt__AudioDecoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AudioDecoderConfigurationOptions * soap_new_set_tt__AudioDecoderConfigurationOptions( - struct soap *soap, - tt__AACDecOptions *AACDecOptions, - tt__G711DecOptions *G711DecOptions, - tt__G726DecOptions *G726DecOptions, - tt__AudioDecoderConfigurationOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioDecoderConfigurationOptions *_p = ::soap_new_tt__AudioDecoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioDecoderConfigurationOptions::AACDecOptions = AACDecOptions; - _p->tt__AudioDecoderConfigurationOptions::G711DecOptions = G711DecOptions; - _p->tt__AudioDecoderConfigurationOptions::G726DecOptions = G726DecOptions; - _p->tt__AudioDecoderConfigurationOptions::Extension = Extension; - _p->tt__AudioDecoderConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioDecoderConfigurationOptions(struct soap *soap, tt__AudioDecoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptions 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, "tt:AudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptions 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, "tt:AudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptions 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, "tt:AudioDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioDecoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioDecoderConfigurationOptions(struct soap*, tt__AudioDecoderConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__AudioDecoderConfigurationOptions(struct soap *soap, tt__AudioDecoderConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioDecoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioDecoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioDecoderConfigurationOptions(struct soap *soap, tt__AudioDecoderConfigurationOptions *p) -{ - if (::soap_read_tt__AudioDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioDecoderConfiguration_DEFINED -#define SOAP_TYPE_tt__AudioDecoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioDecoderConfiguration(struct soap*, const char*, int, const tt__AudioDecoderConfiguration *, const char*); -SOAP_FMAC3 tt__AudioDecoderConfiguration * SOAP_FMAC4 soap_in_tt__AudioDecoderConfiguration(struct soap*, const char*, tt__AudioDecoderConfiguration *, const char*); -SOAP_FMAC1 tt__AudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioDecoderConfiguration * soap_new_tt__AudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioDecoderConfiguration * soap_new_req_tt__AudioDecoderConfiguration( - struct soap *soap, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioDecoderConfiguration *_p = ::soap_new_tt__AudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AudioDecoderConfiguration * soap_new_set_tt__AudioDecoderConfiguration( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioDecoderConfiguration *_p = ::soap_new_tt__AudioDecoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioDecoderConfiguration::__any = __any; - _p->tt__AudioDecoderConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AudioDecoderConfiguration(struct soap *soap, tt__AudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioDecoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioDecoderConfiguration(struct soap *soap, const char *URL, tt__AudioDecoderConfiguration 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, "tt:AudioDecoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioDecoderConfiguration(struct soap *soap, const char *URL, tt__AudioDecoderConfiguration 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, "tt:AudioDecoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioDecoderConfiguration(struct soap *soap, const char *URL, tt__AudioDecoderConfiguration 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, "tt:AudioDecoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioDecoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioDecoderConfiguration * SOAP_FMAC4 soap_get_tt__AudioDecoderConfiguration(struct soap*, tt__AudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read_tt__AudioDecoderConfiguration(struct soap *soap, tt__AudioDecoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioDecoderConfiguration(struct soap *soap, const char *URL, tt__AudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioDecoderConfiguration(struct soap *soap, tt__AudioDecoderConfiguration *p) -{ - if (::soap_read_tt__AudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__AudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioOutputConfigurationOptions(struct soap*, const char*, int, const tt__AudioOutputConfigurationOptions *, const char*); -SOAP_FMAC3 tt__AudioOutputConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioOutputConfigurationOptions(struct soap*, const char*, tt__AudioOutputConfigurationOptions *, const char*); -SOAP_FMAC1 tt__AudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioOutputConfigurationOptions * soap_new_tt__AudioOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioOutputConfigurationOptions * soap_new_req_tt__AudioOutputConfigurationOptions( - struct soap *soap, - const std::vector & OutputTokensAvailable, - tt__IntRange *OutputLevelRange) -{ - tt__AudioOutputConfigurationOptions *_p = ::soap_new_tt__AudioOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioOutputConfigurationOptions::OutputTokensAvailable = OutputTokensAvailable; - _p->tt__AudioOutputConfigurationOptions::OutputLevelRange = OutputLevelRange; - } - return _p; -} - -inline tt__AudioOutputConfigurationOptions * soap_new_set_tt__AudioOutputConfigurationOptions( - struct soap *soap, - const std::vector & OutputTokensAvailable, - const std::vector & SendPrimacyOptions, - tt__IntRange *OutputLevelRange, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioOutputConfigurationOptions *_p = ::soap_new_tt__AudioOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioOutputConfigurationOptions::OutputTokensAvailable = OutputTokensAvailable; - _p->tt__AudioOutputConfigurationOptions::SendPrimacyOptions = SendPrimacyOptions; - _p->tt__AudioOutputConfigurationOptions::OutputLevelRange = OutputLevelRange; - _p->tt__AudioOutputConfigurationOptions::__any = __any; - _p->tt__AudioOutputConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioOutputConfigurationOptions(struct soap *soap, tt__AudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioOutputConfigurationOptions(struct soap *soap, const char *URL, tt__AudioOutputConfigurationOptions 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, "tt:AudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioOutputConfigurationOptions(struct soap *soap, const char *URL, tt__AudioOutputConfigurationOptions 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, "tt:AudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioOutputConfigurationOptions(struct soap *soap, const char *URL, tt__AudioOutputConfigurationOptions 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, "tt:AudioOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioOutputConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioOutputConfigurationOptions(struct soap*, tt__AudioOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__AudioOutputConfigurationOptions(struct soap *soap, tt__AudioOutputConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioOutputConfigurationOptions(struct soap *soap, const char *URL, tt__AudioOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioOutputConfigurationOptions(struct soap *soap, tt__AudioOutputConfigurationOptions *p) -{ - if (::soap_read_tt__AudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioOutputConfiguration_DEFINED -#define SOAP_TYPE_tt__AudioOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioOutputConfiguration(struct soap*, const char*, int, const tt__AudioOutputConfiguration *, const char*); -SOAP_FMAC3 tt__AudioOutputConfiguration * SOAP_FMAC4 soap_in_tt__AudioOutputConfiguration(struct soap*, const char*, tt__AudioOutputConfiguration *, const char*); -SOAP_FMAC1 tt__AudioOutputConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioOutputConfiguration * soap_new_tt__AudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioOutputConfiguration * soap_new_req_tt__AudioOutputConfiguration( - struct soap *soap, - const std::string& OutputToken, - int OutputLevel, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioOutputConfiguration *_p = ::soap_new_tt__AudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioOutputConfiguration::OutputToken = OutputToken; - _p->tt__AudioOutputConfiguration::OutputLevel = OutputLevel; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AudioOutputConfiguration * soap_new_set_tt__AudioOutputConfiguration( - struct soap *soap, - const std::string& OutputToken, - std::string *SendPrimacy, - int OutputLevel, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioOutputConfiguration *_p = ::soap_new_tt__AudioOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioOutputConfiguration::OutputToken = OutputToken; - _p->tt__AudioOutputConfiguration::SendPrimacy = SendPrimacy; - _p->tt__AudioOutputConfiguration::OutputLevel = OutputLevel; - _p->tt__AudioOutputConfiguration::__any = __any; - _p->tt__AudioOutputConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AudioOutputConfiguration(struct soap *soap, tt__AudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioOutputConfiguration(struct soap *soap, const char *URL, tt__AudioOutputConfiguration 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, "tt:AudioOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioOutputConfiguration(struct soap *soap, const char *URL, tt__AudioOutputConfiguration 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, "tt:AudioOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioOutputConfiguration(struct soap *soap, const char *URL, tt__AudioOutputConfiguration 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, "tt:AudioOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioOutputConfiguration * SOAP_FMAC4 soap_get_tt__AudioOutputConfiguration(struct soap*, tt__AudioOutputConfiguration *, const char*, const char*); - -inline int soap_read_tt__AudioOutputConfiguration(struct soap *soap, tt__AudioOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioOutputConfiguration(struct soap *soap, const char *URL, tt__AudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioOutputConfiguration(struct soap *soap, tt__AudioOutputConfiguration *p) -{ - if (::soap_read_tt__AudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioOutput_DEFINED -#define SOAP_TYPE_tt__AudioOutput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioOutput(struct soap*, const char*, int, const tt__AudioOutput *, const char*); -SOAP_FMAC3 tt__AudioOutput * SOAP_FMAC4 soap_in_tt__AudioOutput(struct soap*, const char*, tt__AudioOutput *, const char*); -SOAP_FMAC1 tt__AudioOutput * SOAP_FMAC2 soap_instantiate_tt__AudioOutput(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioOutput * soap_new_tt__AudioOutput(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioOutput(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioOutput * soap_new_req_tt__AudioOutput( - struct soap *soap, - const std::string& token__1) -{ - tt__AudioOutput *_p = ::soap_new_tt__AudioOutput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__AudioOutput * soap_new_set_tt__AudioOutput( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__AudioOutput *_p = ::soap_new_tt__AudioOutput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioOutput::__any = __any; - _p->tt__AudioOutput::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AudioOutput(struct soap *soap, tt__AudioOutput const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioOutput", p->soap_type() == SOAP_TYPE_tt__AudioOutput ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioOutput(struct soap *soap, const char *URL, tt__AudioOutput 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, "tt:AudioOutput", p->soap_type() == SOAP_TYPE_tt__AudioOutput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioOutput(struct soap *soap, const char *URL, tt__AudioOutput 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, "tt:AudioOutput", p->soap_type() == SOAP_TYPE_tt__AudioOutput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioOutput(struct soap *soap, const char *URL, tt__AudioOutput 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, "tt:AudioOutput", p->soap_type() == SOAP_TYPE_tt__AudioOutput ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioOutput * SOAP_FMAC4 soap_get_tt__AudioOutput(struct soap*, tt__AudioOutput *, const char*, const char*); - -inline int soap_read_tt__AudioOutput(struct soap *soap, tt__AudioOutput *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioOutput(struct soap *soap, const char *URL, tt__AudioOutput *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioOutput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioOutput(struct soap *soap, tt__AudioOutput *p) -{ - if (::soap_read_tt__AudioOutput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoDecoderConfigurationOptionsExtension(struct soap*, const char*, int, const tt__VideoDecoderConfigurationOptionsExtension *, const char*); -SOAP_FMAC3 tt__VideoDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__VideoDecoderConfigurationOptionsExtension(struct soap*, const char*, tt__VideoDecoderConfigurationOptionsExtension *, const char*); -SOAP_FMAC1 tt__VideoDecoderConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__VideoDecoderConfigurationOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoDecoderConfigurationOptionsExtension * soap_new_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoDecoderConfigurationOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoDecoderConfigurationOptionsExtension * soap_new_req_tt__VideoDecoderConfigurationOptionsExtension( - struct soap *soap) -{ - tt__VideoDecoderConfigurationOptionsExtension *_p = ::soap_new_tt__VideoDecoderConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoDecoderConfigurationOptionsExtension * soap_new_set_tt__VideoDecoderConfigurationOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__VideoDecoderConfigurationOptionsExtension *_p = ::soap_new_tt__VideoDecoderConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoDecoderConfigurationOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, tt__VideoDecoderConfigurationOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptionsExtension 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, "tt:VideoDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptionsExtension 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, "tt:VideoDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptionsExtension 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, "tt:VideoDecoderConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoDecoderConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__VideoDecoderConfigurationOptionsExtension(struct soap*, tt__VideoDecoderConfigurationOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, tt__VideoDecoderConfigurationOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoDecoderConfigurationOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoDecoderConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoDecoderConfigurationOptionsExtension(struct soap *soap, tt__VideoDecoderConfigurationOptionsExtension *p) -{ - if (::soap_read_tt__VideoDecoderConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Mpeg4DecOptions_DEFINED -#define SOAP_TYPE_tt__Mpeg4DecOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4DecOptions(struct soap*, const char*, int, const tt__Mpeg4DecOptions *, const char*); -SOAP_FMAC3 tt__Mpeg4DecOptions * SOAP_FMAC4 soap_in_tt__Mpeg4DecOptions(struct soap*, const char*, tt__Mpeg4DecOptions *, const char*); -SOAP_FMAC1 tt__Mpeg4DecOptions * SOAP_FMAC2 soap_instantiate_tt__Mpeg4DecOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Mpeg4DecOptions * soap_new_tt__Mpeg4DecOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Mpeg4DecOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__Mpeg4DecOptions * soap_new_req_tt__Mpeg4DecOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - const std::vector & SupportedMpeg4Profiles, - tt__IntRange *SupportedInputBitrate, - tt__IntRange *SupportedFrameRate) -{ - tt__Mpeg4DecOptions *_p = ::soap_new_tt__Mpeg4DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4DecOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__Mpeg4DecOptions::SupportedMpeg4Profiles = SupportedMpeg4Profiles; - _p->tt__Mpeg4DecOptions::SupportedInputBitrate = SupportedInputBitrate; - _p->tt__Mpeg4DecOptions::SupportedFrameRate = SupportedFrameRate; - } - return _p; -} - -inline tt__Mpeg4DecOptions * soap_new_set_tt__Mpeg4DecOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - const std::vector & SupportedMpeg4Profiles, - tt__IntRange *SupportedInputBitrate, - tt__IntRange *SupportedFrameRate, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Mpeg4DecOptions *_p = ::soap_new_tt__Mpeg4DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4DecOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__Mpeg4DecOptions::SupportedMpeg4Profiles = SupportedMpeg4Profiles; - _p->tt__Mpeg4DecOptions::SupportedInputBitrate = SupportedInputBitrate; - _p->tt__Mpeg4DecOptions::SupportedFrameRate = SupportedFrameRate; - _p->tt__Mpeg4DecOptions::__any = __any; - _p->tt__Mpeg4DecOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Mpeg4DecOptions(struct soap *soap, tt__Mpeg4DecOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Mpeg4DecOptions", p->soap_type() == SOAP_TYPE_tt__Mpeg4DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Mpeg4DecOptions(struct soap *soap, const char *URL, tt__Mpeg4DecOptions 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, "tt:Mpeg4DecOptions", p->soap_type() == SOAP_TYPE_tt__Mpeg4DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Mpeg4DecOptions(struct soap *soap, const char *URL, tt__Mpeg4DecOptions 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, "tt:Mpeg4DecOptions", p->soap_type() == SOAP_TYPE_tt__Mpeg4DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Mpeg4DecOptions(struct soap *soap, const char *URL, tt__Mpeg4DecOptions 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, "tt:Mpeg4DecOptions", p->soap_type() == SOAP_TYPE_tt__Mpeg4DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Mpeg4DecOptions * SOAP_FMAC4 soap_get_tt__Mpeg4DecOptions(struct soap*, tt__Mpeg4DecOptions *, const char*, const char*); - -inline int soap_read_tt__Mpeg4DecOptions(struct soap *soap, tt__Mpeg4DecOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Mpeg4DecOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Mpeg4DecOptions(struct soap *soap, const char *URL, tt__Mpeg4DecOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Mpeg4DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Mpeg4DecOptions(struct soap *soap, tt__Mpeg4DecOptions *p) -{ - if (::soap_read_tt__Mpeg4DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__JpegDecOptions_DEFINED -#define SOAP_TYPE_tt__JpegDecOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JpegDecOptions(struct soap*, const char*, int, const tt__JpegDecOptions *, const char*); -SOAP_FMAC3 tt__JpegDecOptions * SOAP_FMAC4 soap_in_tt__JpegDecOptions(struct soap*, const char*, tt__JpegDecOptions *, const char*); -SOAP_FMAC1 tt__JpegDecOptions * SOAP_FMAC2 soap_instantiate_tt__JpegDecOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__JpegDecOptions * soap_new_tt__JpegDecOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__JpegDecOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__JpegDecOptions * soap_new_req_tt__JpegDecOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *SupportedInputBitrate, - tt__IntRange *SupportedFrameRate) -{ - tt__JpegDecOptions *_p = ::soap_new_tt__JpegDecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JpegDecOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__JpegDecOptions::SupportedInputBitrate = SupportedInputBitrate; - _p->tt__JpegDecOptions::SupportedFrameRate = SupportedFrameRate; - } - return _p; -} - -inline tt__JpegDecOptions * soap_new_set_tt__JpegDecOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *SupportedInputBitrate, - tt__IntRange *SupportedFrameRate, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__JpegDecOptions *_p = ::soap_new_tt__JpegDecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JpegDecOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__JpegDecOptions::SupportedInputBitrate = SupportedInputBitrate; - _p->tt__JpegDecOptions::SupportedFrameRate = SupportedFrameRate; - _p->tt__JpegDecOptions::__any = __any; - _p->tt__JpegDecOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__JpegDecOptions(struct soap *soap, tt__JpegDecOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:JpegDecOptions", p->soap_type() == SOAP_TYPE_tt__JpegDecOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__JpegDecOptions(struct soap *soap, const char *URL, tt__JpegDecOptions 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, "tt:JpegDecOptions", p->soap_type() == SOAP_TYPE_tt__JpegDecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__JpegDecOptions(struct soap *soap, const char *URL, tt__JpegDecOptions 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, "tt:JpegDecOptions", p->soap_type() == SOAP_TYPE_tt__JpegDecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__JpegDecOptions(struct soap *soap, const char *URL, tt__JpegDecOptions 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, "tt:JpegDecOptions", p->soap_type() == SOAP_TYPE_tt__JpegDecOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__JpegDecOptions * SOAP_FMAC4 soap_get_tt__JpegDecOptions(struct soap*, tt__JpegDecOptions *, const char*, const char*); - -inline int soap_read_tt__JpegDecOptions(struct soap *soap, tt__JpegDecOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__JpegDecOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__JpegDecOptions(struct soap *soap, const char *URL, tt__JpegDecOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__JpegDecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__JpegDecOptions(struct soap *soap, tt__JpegDecOptions *p) -{ - if (::soap_read_tt__JpegDecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__H264DecOptions_DEFINED -#define SOAP_TYPE_tt__H264DecOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264DecOptions(struct soap*, const char*, int, const tt__H264DecOptions *, const char*); -SOAP_FMAC3 tt__H264DecOptions * SOAP_FMAC4 soap_in_tt__H264DecOptions(struct soap*, const char*, tt__H264DecOptions *, const char*); -SOAP_FMAC1 tt__H264DecOptions * SOAP_FMAC2 soap_instantiate_tt__H264DecOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__H264DecOptions * soap_new_tt__H264DecOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__H264DecOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__H264DecOptions * soap_new_req_tt__H264DecOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - const std::vector & SupportedH264Profiles, - tt__IntRange *SupportedInputBitrate, - tt__IntRange *SupportedFrameRate) -{ - tt__H264DecOptions *_p = ::soap_new_tt__H264DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264DecOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__H264DecOptions::SupportedH264Profiles = SupportedH264Profiles; - _p->tt__H264DecOptions::SupportedInputBitrate = SupportedInputBitrate; - _p->tt__H264DecOptions::SupportedFrameRate = SupportedFrameRate; - } - return _p; -} - -inline tt__H264DecOptions * soap_new_set_tt__H264DecOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - const std::vector & SupportedH264Profiles, - tt__IntRange *SupportedInputBitrate, - tt__IntRange *SupportedFrameRate, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__H264DecOptions *_p = ::soap_new_tt__H264DecOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264DecOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__H264DecOptions::SupportedH264Profiles = SupportedH264Profiles; - _p->tt__H264DecOptions::SupportedInputBitrate = SupportedInputBitrate; - _p->tt__H264DecOptions::SupportedFrameRate = SupportedFrameRate; - _p->tt__H264DecOptions::__any = __any; - _p->tt__H264DecOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__H264DecOptions(struct soap *soap, tt__H264DecOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:H264DecOptions", p->soap_type() == SOAP_TYPE_tt__H264DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__H264DecOptions(struct soap *soap, const char *URL, tt__H264DecOptions 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, "tt:H264DecOptions", p->soap_type() == SOAP_TYPE_tt__H264DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__H264DecOptions(struct soap *soap, const char *URL, tt__H264DecOptions 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, "tt:H264DecOptions", p->soap_type() == SOAP_TYPE_tt__H264DecOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__H264DecOptions(struct soap *soap, const char *URL, tt__H264DecOptions 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, "tt:H264DecOptions", p->soap_type() == SOAP_TYPE_tt__H264DecOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__H264DecOptions * SOAP_FMAC4 soap_get_tt__H264DecOptions(struct soap*, tt__H264DecOptions *, const char*, const char*); - -inline int soap_read_tt__H264DecOptions(struct soap *soap, tt__H264DecOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__H264DecOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__H264DecOptions(struct soap *soap, const char *URL, tt__H264DecOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__H264DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__H264DecOptions(struct soap *soap, tt__H264DecOptions *p) -{ - if (::soap_read_tt__H264DecOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoDecoderConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__VideoDecoderConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoDecoderConfigurationOptions(struct soap*, const char*, int, const tt__VideoDecoderConfigurationOptions *, const char*); -SOAP_FMAC3 tt__VideoDecoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoDecoderConfigurationOptions(struct soap*, const char*, tt__VideoDecoderConfigurationOptions *, const char*); -SOAP_FMAC1 tt__VideoDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoDecoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoDecoderConfigurationOptions * soap_new_tt__VideoDecoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoDecoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoDecoderConfigurationOptions * soap_new_req_tt__VideoDecoderConfigurationOptions( - struct soap *soap) -{ - tt__VideoDecoderConfigurationOptions *_p = ::soap_new_tt__VideoDecoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoDecoderConfigurationOptions * soap_new_set_tt__VideoDecoderConfigurationOptions( - struct soap *soap, - tt__JpegDecOptions *JpegDecOptions, - tt__H264DecOptions *H264DecOptions, - tt__Mpeg4DecOptions *Mpeg4DecOptions, - tt__VideoDecoderConfigurationOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoDecoderConfigurationOptions *_p = ::soap_new_tt__VideoDecoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoDecoderConfigurationOptions::JpegDecOptions = JpegDecOptions; - _p->tt__VideoDecoderConfigurationOptions::H264DecOptions = H264DecOptions; - _p->tt__VideoDecoderConfigurationOptions::Mpeg4DecOptions = Mpeg4DecOptions; - _p->tt__VideoDecoderConfigurationOptions::Extension = Extension; - _p->tt__VideoDecoderConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoDecoderConfigurationOptions(struct soap *soap, tt__VideoDecoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptions 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, "tt:VideoDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptions 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, "tt:VideoDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptions 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, "tt:VideoDecoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoDecoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoDecoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoDecoderConfigurationOptions(struct soap*, tt__VideoDecoderConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__VideoDecoderConfigurationOptions(struct soap *soap, tt__VideoDecoderConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoDecoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoDecoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoDecoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoDecoderConfigurationOptions(struct soap *soap, tt__VideoDecoderConfigurationOptions *p) -{ - if (::soap_read_tt__VideoDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoOutputConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__VideoOutputConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutputConfigurationOptions(struct soap*, const char*, int, const tt__VideoOutputConfigurationOptions *, const char*); -SOAP_FMAC3 tt__VideoOutputConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoOutputConfigurationOptions(struct soap*, const char*, tt__VideoOutputConfigurationOptions *, const char*); -SOAP_FMAC1 tt__VideoOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoOutputConfigurationOptions * soap_new_tt__VideoOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoOutputConfigurationOptions * soap_new_req_tt__VideoOutputConfigurationOptions( - struct soap *soap) -{ - tt__VideoOutputConfigurationOptions *_p = ::soap_new_tt__VideoOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoOutputConfigurationOptions * soap_new_set_tt__VideoOutputConfigurationOptions( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoOutputConfigurationOptions *_p = ::soap_new_tt__VideoOutputConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoOutputConfigurationOptions::__any = __any; - _p->tt__VideoOutputConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoOutputConfigurationOptions(struct soap *soap, tt__VideoOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoOutputConfigurationOptions(struct soap *soap, const char *URL, tt__VideoOutputConfigurationOptions 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, "tt:VideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoOutputConfigurationOptions(struct soap *soap, const char *URL, tt__VideoOutputConfigurationOptions 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, "tt:VideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoOutputConfigurationOptions(struct soap *soap, const char *URL, tt__VideoOutputConfigurationOptions 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, "tt:VideoOutputConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoOutputConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoOutputConfigurationOptions(struct soap*, tt__VideoOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__VideoOutputConfigurationOptions(struct soap *soap, tt__VideoOutputConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoOutputConfigurationOptions(struct soap *soap, const char *URL, tt__VideoOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoOutputConfigurationOptions(struct soap *soap, tt__VideoOutputConfigurationOptions *p) -{ - if (::soap_read_tt__VideoOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoOutputConfiguration_DEFINED -#define SOAP_TYPE_tt__VideoOutputConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutputConfiguration(struct soap*, const char*, int, const tt__VideoOutputConfiguration *, const char*); -SOAP_FMAC3 tt__VideoOutputConfiguration * SOAP_FMAC4 soap_in_tt__VideoOutputConfiguration(struct soap*, const char*, tt__VideoOutputConfiguration *, const char*); -SOAP_FMAC1 tt__VideoOutputConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoOutputConfiguration * soap_new_tt__VideoOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoOutputConfiguration * soap_new_req_tt__VideoOutputConfiguration( - struct soap *soap, - const std::string& OutputToken, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoOutputConfiguration *_p = ::soap_new_tt__VideoOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoOutputConfiguration::OutputToken = OutputToken; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__VideoOutputConfiguration * soap_new_set_tt__VideoOutputConfiguration( - struct soap *soap, - const std::string& OutputToken, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoOutputConfiguration *_p = ::soap_new_tt__VideoOutputConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoOutputConfiguration::OutputToken = OutputToken; - _p->tt__VideoOutputConfiguration::__any = __any; - _p->tt__VideoOutputConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__VideoOutputConfiguration(struct soap *soap, tt__VideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoOutputConfiguration(struct soap *soap, const char *URL, tt__VideoOutputConfiguration 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, "tt:VideoOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoOutputConfiguration(struct soap *soap, const char *URL, tt__VideoOutputConfiguration 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, "tt:VideoOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoOutputConfiguration(struct soap *soap, const char *URL, tt__VideoOutputConfiguration 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, "tt:VideoOutputConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoOutputConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoOutputConfiguration * SOAP_FMAC4 soap_get_tt__VideoOutputConfiguration(struct soap*, tt__VideoOutputConfiguration *, const char*, const char*); - -inline int soap_read_tt__VideoOutputConfiguration(struct soap *soap, tt__VideoOutputConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoOutputConfiguration(struct soap *soap, const char *URL, tt__VideoOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoOutputConfiguration(struct soap *soap, tt__VideoOutputConfiguration *p) -{ - if (::soap_read_tt__VideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoOutputExtension_DEFINED -#define SOAP_TYPE_tt__VideoOutputExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutputExtension(struct soap*, const char*, int, const tt__VideoOutputExtension *, const char*); -SOAP_FMAC3 tt__VideoOutputExtension * SOAP_FMAC4 soap_in_tt__VideoOutputExtension(struct soap*, const char*, tt__VideoOutputExtension *, const char*); -SOAP_FMAC1 tt__VideoOutputExtension * SOAP_FMAC2 soap_instantiate_tt__VideoOutputExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoOutputExtension * soap_new_tt__VideoOutputExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoOutputExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoOutputExtension * soap_new_req_tt__VideoOutputExtension( - struct soap *soap) -{ - tt__VideoOutputExtension *_p = ::soap_new_tt__VideoOutputExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoOutputExtension * soap_new_set_tt__VideoOutputExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__VideoOutputExtension *_p = ::soap_new_tt__VideoOutputExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoOutputExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__VideoOutputExtension(struct soap *soap, tt__VideoOutputExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoOutputExtension", p->soap_type() == SOAP_TYPE_tt__VideoOutputExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoOutputExtension(struct soap *soap, const char *URL, tt__VideoOutputExtension 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, "tt:VideoOutputExtension", p->soap_type() == SOAP_TYPE_tt__VideoOutputExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoOutputExtension(struct soap *soap, const char *URL, tt__VideoOutputExtension 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, "tt:VideoOutputExtension", p->soap_type() == SOAP_TYPE_tt__VideoOutputExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoOutputExtension(struct soap *soap, const char *URL, tt__VideoOutputExtension 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, "tt:VideoOutputExtension", p->soap_type() == SOAP_TYPE_tt__VideoOutputExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoOutputExtension * SOAP_FMAC4 soap_get_tt__VideoOutputExtension(struct soap*, tt__VideoOutputExtension *, const char*, const char*); - -inline int soap_read_tt__VideoOutputExtension(struct soap *soap, tt__VideoOutputExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoOutputExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoOutputExtension(struct soap *soap, const char *URL, tt__VideoOutputExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoOutputExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoOutputExtension(struct soap *soap, tt__VideoOutputExtension *p) -{ - if (::soap_read_tt__VideoOutputExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoOutput_DEFINED -#define SOAP_TYPE_tt__VideoOutput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoOutput(struct soap*, const char*, int, const tt__VideoOutput *, const char*); -SOAP_FMAC3 tt__VideoOutput * SOAP_FMAC4 soap_in_tt__VideoOutput(struct soap*, const char*, tt__VideoOutput *, const char*); -SOAP_FMAC1 tt__VideoOutput * SOAP_FMAC2 soap_instantiate_tt__VideoOutput(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoOutput * soap_new_tt__VideoOutput(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoOutput(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoOutput * soap_new_req_tt__VideoOutput( - struct soap *soap, - tt__Layout *Layout, - const std::string& token__1) -{ - tt__VideoOutput *_p = ::soap_new_tt__VideoOutput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoOutput::Layout = Layout; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__VideoOutput * soap_new_set_tt__VideoOutput( - struct soap *soap, - tt__Layout *Layout, - tt__VideoResolution *Resolution, - float *RefreshRate, - float *AspectRatio, - tt__VideoOutputExtension *Extension, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__VideoOutput *_p = ::soap_new_tt__VideoOutput(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoOutput::Layout = Layout; - _p->tt__VideoOutput::Resolution = Resolution; - _p->tt__VideoOutput::RefreshRate = RefreshRate; - _p->tt__VideoOutput::AspectRatio = AspectRatio; - _p->tt__VideoOutput::Extension = Extension; - _p->tt__VideoOutput::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__VideoOutput(struct soap *soap, tt__VideoOutput const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoOutput", p->soap_type() == SOAP_TYPE_tt__VideoOutput ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoOutput(struct soap *soap, const char *URL, tt__VideoOutput 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, "tt:VideoOutput", p->soap_type() == SOAP_TYPE_tt__VideoOutput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoOutput(struct soap *soap, const char *URL, tt__VideoOutput 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, "tt:VideoOutput", p->soap_type() == SOAP_TYPE_tt__VideoOutput ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoOutput(struct soap *soap, const char *URL, tt__VideoOutput 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, "tt:VideoOutput", p->soap_type() == SOAP_TYPE_tt__VideoOutput ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoOutput * SOAP_FMAC4 soap_get_tt__VideoOutput(struct soap*, tt__VideoOutput *, const char*, const char*); - -inline int soap_read_tt__VideoOutput(struct soap *soap, tt__VideoOutput *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoOutput(struct soap *soap, const char *URL, tt__VideoOutput *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoOutput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoOutput(struct soap *soap, tt__VideoOutput *p) -{ - if (::soap_read_tt__VideoOutput(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZStatusFilterOptionsExtension_DEFINED -#define SOAP_TYPE_tt__PTZStatusFilterOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZStatusFilterOptionsExtension(struct soap*, const char*, int, const tt__PTZStatusFilterOptionsExtension *, const char*); -SOAP_FMAC3 tt__PTZStatusFilterOptionsExtension * SOAP_FMAC4 soap_in_tt__PTZStatusFilterOptionsExtension(struct soap*, const char*, tt__PTZStatusFilterOptionsExtension *, const char*); -SOAP_FMAC1 tt__PTZStatusFilterOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__PTZStatusFilterOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZStatusFilterOptionsExtension * soap_new_tt__PTZStatusFilterOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZStatusFilterOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZStatusFilterOptionsExtension * soap_new_req_tt__PTZStatusFilterOptionsExtension( - struct soap *soap) -{ - tt__PTZStatusFilterOptionsExtension *_p = ::soap_new_tt__PTZStatusFilterOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZStatusFilterOptionsExtension * soap_new_set_tt__PTZStatusFilterOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__PTZStatusFilterOptionsExtension *_p = ::soap_new_tt__PTZStatusFilterOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZStatusFilterOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__PTZStatusFilterOptionsExtension(struct soap *soap, tt__PTZStatusFilterOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZStatusFilterOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZStatusFilterOptionsExtension(struct soap *soap, const char *URL, tt__PTZStatusFilterOptionsExtension 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, "tt:PTZStatusFilterOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZStatusFilterOptionsExtension(struct soap *soap, const char *URL, tt__PTZStatusFilterOptionsExtension 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, "tt:PTZStatusFilterOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZStatusFilterOptionsExtension(struct soap *soap, const char *URL, tt__PTZStatusFilterOptionsExtension 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, "tt:PTZStatusFilterOptionsExtension", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZStatusFilterOptionsExtension * SOAP_FMAC4 soap_get_tt__PTZStatusFilterOptionsExtension(struct soap*, tt__PTZStatusFilterOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__PTZStatusFilterOptionsExtension(struct soap *soap, tt__PTZStatusFilterOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZStatusFilterOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZStatusFilterOptionsExtension(struct soap *soap, const char *URL, tt__PTZStatusFilterOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZStatusFilterOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZStatusFilterOptionsExtension(struct soap *soap, tt__PTZStatusFilterOptionsExtension *p) -{ - if (::soap_read_tt__PTZStatusFilterOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZStatusFilterOptions_DEFINED -#define SOAP_TYPE_tt__PTZStatusFilterOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZStatusFilterOptions(struct soap*, const char*, int, const tt__PTZStatusFilterOptions *, const char*); -SOAP_FMAC3 tt__PTZStatusFilterOptions * SOAP_FMAC4 soap_in_tt__PTZStatusFilterOptions(struct soap*, const char*, tt__PTZStatusFilterOptions *, const char*); -SOAP_FMAC1 tt__PTZStatusFilterOptions * SOAP_FMAC2 soap_instantiate_tt__PTZStatusFilterOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZStatusFilterOptions * soap_new_tt__PTZStatusFilterOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZStatusFilterOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZStatusFilterOptions * soap_new_req_tt__PTZStatusFilterOptions( - struct soap *soap, - bool PanTiltStatusSupported, - bool ZoomStatusSupported) -{ - tt__PTZStatusFilterOptions *_p = ::soap_new_tt__PTZStatusFilterOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZStatusFilterOptions::PanTiltStatusSupported = PanTiltStatusSupported; - _p->tt__PTZStatusFilterOptions::ZoomStatusSupported = ZoomStatusSupported; - } - return _p; -} - -inline tt__PTZStatusFilterOptions * soap_new_set_tt__PTZStatusFilterOptions( - struct soap *soap, - bool PanTiltStatusSupported, - bool ZoomStatusSupported, - const std::vector & __any, - bool *PanTiltPositionSupported, - bool *ZoomPositionSupported, - tt__PTZStatusFilterOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZStatusFilterOptions *_p = ::soap_new_tt__PTZStatusFilterOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZStatusFilterOptions::PanTiltStatusSupported = PanTiltStatusSupported; - _p->tt__PTZStatusFilterOptions::ZoomStatusSupported = ZoomStatusSupported; - _p->tt__PTZStatusFilterOptions::__any = __any; - _p->tt__PTZStatusFilterOptions::PanTiltPositionSupported = PanTiltPositionSupported; - _p->tt__PTZStatusFilterOptions::ZoomPositionSupported = ZoomPositionSupported; - _p->tt__PTZStatusFilterOptions::Extension = Extension; - _p->tt__PTZStatusFilterOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZStatusFilterOptions(struct soap *soap, tt__PTZStatusFilterOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZStatusFilterOptions", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZStatusFilterOptions(struct soap *soap, const char *URL, tt__PTZStatusFilterOptions 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, "tt:PTZStatusFilterOptions", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZStatusFilterOptions(struct soap *soap, const char *URL, tt__PTZStatusFilterOptions 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, "tt:PTZStatusFilterOptions", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZStatusFilterOptions(struct soap *soap, const char *URL, tt__PTZStatusFilterOptions 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, "tt:PTZStatusFilterOptions", p->soap_type() == SOAP_TYPE_tt__PTZStatusFilterOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZStatusFilterOptions * SOAP_FMAC4 soap_get_tt__PTZStatusFilterOptions(struct soap*, tt__PTZStatusFilterOptions *, const char*, const char*); - -inline int soap_read_tt__PTZStatusFilterOptions(struct soap *soap, tt__PTZStatusFilterOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZStatusFilterOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZStatusFilterOptions(struct soap *soap, const char *URL, tt__PTZStatusFilterOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZStatusFilterOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZStatusFilterOptions(struct soap *soap, tt__PTZStatusFilterOptions *p) -{ - if (::soap_read_tt__PTZStatusFilterOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2_DEFINED -#define SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationOptionsExtension2(struct soap*, const char*, int, const tt__MetadataConfigurationOptionsExtension2 *, const char*); -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension2 * SOAP_FMAC4 soap_in_tt__MetadataConfigurationOptionsExtension2(struct soap*, const char*, tt__MetadataConfigurationOptionsExtension2 *, const char*); -SOAP_FMAC1 tt__MetadataConfigurationOptionsExtension2 * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationOptionsExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataConfigurationOptionsExtension2 * soap_new_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataConfigurationOptionsExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataConfigurationOptionsExtension2 * soap_new_req_tt__MetadataConfigurationOptionsExtension2( - struct soap *soap) -{ - tt__MetadataConfigurationOptionsExtension2 *_p = ::soap_new_tt__MetadataConfigurationOptionsExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MetadataConfigurationOptionsExtension2 * soap_new_set_tt__MetadataConfigurationOptionsExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__MetadataConfigurationOptionsExtension2 *_p = ::soap_new_tt__MetadataConfigurationOptionsExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataConfigurationOptionsExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, tt__MetadataConfigurationOptionsExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension2 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, "tt:MetadataConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension2 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, "tt:MetadataConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension2 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, "tt:MetadataConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension2 * SOAP_FMAC4 soap_get_tt__MetadataConfigurationOptionsExtension2(struct soap*, tt__MetadataConfigurationOptionsExtension2 *, const char*, const char*); - -inline int soap_read_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, tt__MetadataConfigurationOptionsExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataConfigurationOptionsExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataConfigurationOptionsExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataConfigurationOptionsExtension2(struct soap *soap, tt__MetadataConfigurationOptionsExtension2 *p) -{ - if (::soap_read_tt__MetadataConfigurationOptionsExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_tt__MetadataConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationOptionsExtension(struct soap*, const char*, int, const tt__MetadataConfigurationOptionsExtension *, const char*); -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__MetadataConfigurationOptionsExtension(struct soap*, const char*, tt__MetadataConfigurationOptionsExtension *, const char*); -SOAP_FMAC1 tt__MetadataConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataConfigurationOptionsExtension * soap_new_tt__MetadataConfigurationOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataConfigurationOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataConfigurationOptionsExtension * soap_new_req_tt__MetadataConfigurationOptionsExtension( - struct soap *soap) -{ - tt__MetadataConfigurationOptionsExtension *_p = ::soap_new_tt__MetadataConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MetadataConfigurationOptionsExtension * soap_new_set_tt__MetadataConfigurationOptionsExtension( - struct soap *soap, - const std::vector & CompressionType, - tt__MetadataConfigurationOptionsExtension2 *Extension) -{ - tt__MetadataConfigurationOptionsExtension *_p = ::soap_new_tt__MetadataConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataConfigurationOptionsExtension::CompressionType = CompressionType; - _p->tt__MetadataConfigurationOptionsExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__MetadataConfigurationOptionsExtension(struct soap *soap, tt__MetadataConfigurationOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension 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, "tt:MetadataConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension 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, "tt:MetadataConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension 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, "tt:MetadataConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__MetadataConfigurationOptionsExtension(struct soap*, tt__MetadataConfigurationOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__MetadataConfigurationOptionsExtension(struct soap *soap, tt__MetadataConfigurationOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataConfigurationOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataConfigurationOptionsExtension(struct soap *soap, tt__MetadataConfigurationOptionsExtension *p) -{ - if (::soap_read_tt__MetadataConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__MetadataConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationOptions(struct soap*, const char*, int, const tt__MetadataConfigurationOptions *, const char*); -SOAP_FMAC3 tt__MetadataConfigurationOptions * SOAP_FMAC4 soap_in_tt__MetadataConfigurationOptions(struct soap*, const char*, tt__MetadataConfigurationOptions *, const char*); -SOAP_FMAC1 tt__MetadataConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataConfigurationOptions * soap_new_tt__MetadataConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataConfigurationOptions * soap_new_req_tt__MetadataConfigurationOptions( - struct soap *soap, - tt__PTZStatusFilterOptions *PTZStatusFilterOptions) -{ - tt__MetadataConfigurationOptions *_p = ::soap_new_tt__MetadataConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataConfigurationOptions::PTZStatusFilterOptions = PTZStatusFilterOptions; - } - return _p; -} - -inline tt__MetadataConfigurationOptions * soap_new_set_tt__MetadataConfigurationOptions( - struct soap *soap, - tt__PTZStatusFilterOptions *PTZStatusFilterOptions, - const std::vector & __any, - tt__MetadataConfigurationOptionsExtension *Extension, - bool *GeoLocation, - int *MaxContentFilterSize, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__MetadataConfigurationOptions *_p = ::soap_new_tt__MetadataConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataConfigurationOptions::PTZStatusFilterOptions = PTZStatusFilterOptions; - _p->tt__MetadataConfigurationOptions::__any = __any; - _p->tt__MetadataConfigurationOptions::Extension = Extension; - _p->tt__MetadataConfigurationOptions::GeoLocation = GeoLocation; - _p->tt__MetadataConfigurationOptions::MaxContentFilterSize = MaxContentFilterSize; - _p->tt__MetadataConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__MetadataConfigurationOptions(struct soap *soap, tt__MetadataConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataConfigurationOptions(struct soap *soap, const char *URL, tt__MetadataConfigurationOptions 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, "tt:MetadataConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataConfigurationOptions(struct soap *soap, const char *URL, tt__MetadataConfigurationOptions 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, "tt:MetadataConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataConfigurationOptions(struct soap *soap, const char *URL, tt__MetadataConfigurationOptions 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, "tt:MetadataConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataConfigurationOptions * SOAP_FMAC4 soap_get_tt__MetadataConfigurationOptions(struct soap*, tt__MetadataConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__MetadataConfigurationOptions(struct soap *soap, tt__MetadataConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataConfigurationOptions(struct soap *soap, const char *URL, tt__MetadataConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataConfigurationOptions(struct soap *soap, tt__MetadataConfigurationOptions *p) -{ - if (::soap_read_tt__MetadataConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__EventSubscription_DEFINED -#define SOAP_TYPE_tt__EventSubscription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__EventSubscription(struct soap*, const char*, int, const tt__EventSubscription *, const char*); -SOAP_FMAC3 tt__EventSubscription * SOAP_FMAC4 soap_in_tt__EventSubscription(struct soap*, const char*, tt__EventSubscription *, const char*); -SOAP_FMAC1 tt__EventSubscription * SOAP_FMAC2 soap_instantiate_tt__EventSubscription(struct soap*, int, const char*, const char*, size_t*); - -inline tt__EventSubscription * soap_new_tt__EventSubscription(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__EventSubscription(soap, n, NULL, NULL, NULL); -} - -inline tt__EventSubscription * soap_new_req_tt__EventSubscription( - struct soap *soap) -{ - tt__EventSubscription *_p = ::soap_new_tt__EventSubscription(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__EventSubscription * soap_new_set_tt__EventSubscription( - struct soap *soap, - wsnt__FilterType *Filter, - _tt__EventSubscription_SubscriptionPolicy *SubscriptionPolicy, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__EventSubscription *_p = ::soap_new_tt__EventSubscription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__EventSubscription::Filter = Filter; - _p->tt__EventSubscription::SubscriptionPolicy = SubscriptionPolicy; - _p->tt__EventSubscription::__any = __any; - _p->tt__EventSubscription::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__EventSubscription(struct soap *soap, tt__EventSubscription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:EventSubscription", p->soap_type() == SOAP_TYPE_tt__EventSubscription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__EventSubscription(struct soap *soap, const char *URL, tt__EventSubscription 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, "tt:EventSubscription", p->soap_type() == SOAP_TYPE_tt__EventSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__EventSubscription(struct soap *soap, const char *URL, tt__EventSubscription 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, "tt:EventSubscription", p->soap_type() == SOAP_TYPE_tt__EventSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__EventSubscription(struct soap *soap, const char *URL, tt__EventSubscription 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, "tt:EventSubscription", p->soap_type() == SOAP_TYPE_tt__EventSubscription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__EventSubscription * SOAP_FMAC4 soap_get_tt__EventSubscription(struct soap*, tt__EventSubscription *, const char*, const char*); - -inline int soap_read_tt__EventSubscription(struct soap *soap, tt__EventSubscription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__EventSubscription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__EventSubscription(struct soap *soap, const char *URL, tt__EventSubscription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__EventSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__EventSubscription(struct soap *soap, tt__EventSubscription *p) -{ - if (::soap_read_tt__EventSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZFilter_DEFINED -#define SOAP_TYPE_tt__PTZFilter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZFilter(struct soap*, const char*, int, const tt__PTZFilter *, const char*); -SOAP_FMAC3 tt__PTZFilter * SOAP_FMAC4 soap_in_tt__PTZFilter(struct soap*, const char*, tt__PTZFilter *, const char*); -SOAP_FMAC1 tt__PTZFilter * SOAP_FMAC2 soap_instantiate_tt__PTZFilter(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZFilter * soap_new_tt__PTZFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZFilter(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZFilter * soap_new_req_tt__PTZFilter( - struct soap *soap, - bool Status, - bool Position) -{ - tt__PTZFilter *_p = ::soap_new_tt__PTZFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZFilter::Status = Status; - _p->tt__PTZFilter::Position = Position; - } - return _p; -} - -inline tt__PTZFilter * soap_new_set_tt__PTZFilter( - struct soap *soap, - bool Status, - bool Position, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZFilter *_p = ::soap_new_tt__PTZFilter(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZFilter::Status = Status; - _p->tt__PTZFilter::Position = Position; - _p->tt__PTZFilter::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZFilter(struct soap *soap, tt__PTZFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZFilter", p->soap_type() == SOAP_TYPE_tt__PTZFilter ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZFilter(struct soap *soap, const char *URL, tt__PTZFilter 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, "tt:PTZFilter", p->soap_type() == SOAP_TYPE_tt__PTZFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZFilter(struct soap *soap, const char *URL, tt__PTZFilter 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, "tt:PTZFilter", p->soap_type() == SOAP_TYPE_tt__PTZFilter ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZFilter(struct soap *soap, const char *URL, tt__PTZFilter 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, "tt:PTZFilter", p->soap_type() == SOAP_TYPE_tt__PTZFilter ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZFilter * SOAP_FMAC4 soap_get_tt__PTZFilter(struct soap*, tt__PTZFilter *, const char*, const char*); - -inline int soap_read_tt__PTZFilter(struct soap *soap, tt__PTZFilter *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZFilter(struct soap *soap, const char *URL, tt__PTZFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZFilter(struct soap *soap, tt__PTZFilter *p) -{ - if (::soap_read_tt__PTZFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__MetadataConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfigurationExtension(struct soap*, const char*, int, const tt__MetadataConfigurationExtension *, const char*); -SOAP_FMAC3 tt__MetadataConfigurationExtension * SOAP_FMAC4 soap_in_tt__MetadataConfigurationExtension(struct soap*, const char*, tt__MetadataConfigurationExtension *, const char*); -SOAP_FMAC1 tt__MetadataConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__MetadataConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataConfigurationExtension * soap_new_tt__MetadataConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataConfigurationExtension * soap_new_req_tt__MetadataConfigurationExtension( - struct soap *soap) -{ - tt__MetadataConfigurationExtension *_p = ::soap_new_tt__MetadataConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__MetadataConfigurationExtension * soap_new_set_tt__MetadataConfigurationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__MetadataConfigurationExtension *_p = ::soap_new_tt__MetadataConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataConfigurationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__MetadataConfigurationExtension(struct soap *soap, tt__MetadataConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataConfigurationExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationExtension 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, "tt:MetadataConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataConfigurationExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationExtension 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, "tt:MetadataConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataConfigurationExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationExtension 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, "tt:MetadataConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__MetadataConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataConfigurationExtension * SOAP_FMAC4 soap_get_tt__MetadataConfigurationExtension(struct soap*, tt__MetadataConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__MetadataConfigurationExtension(struct soap *soap, tt__MetadataConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataConfigurationExtension(struct soap *soap, const char *URL, tt__MetadataConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataConfigurationExtension(struct soap *soap, tt__MetadataConfigurationExtension *p) -{ - if (::soap_read_tt__MetadataConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__MetadataConfiguration_DEFINED -#define SOAP_TYPE_tt__MetadataConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__MetadataConfiguration(struct soap*, const char*, int, const tt__MetadataConfiguration *, const char*); -SOAP_FMAC3 tt__MetadataConfiguration * SOAP_FMAC4 soap_in_tt__MetadataConfiguration(struct soap*, const char*, tt__MetadataConfiguration *, const char*); -SOAP_FMAC1 tt__MetadataConfiguration * SOAP_FMAC2 soap_instantiate_tt__MetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__MetadataConfiguration * soap_new_tt__MetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__MetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__MetadataConfiguration * soap_new_req_tt__MetadataConfiguration( - struct soap *soap, - tt__MulticastConfiguration *Multicast, - const std::string& SessionTimeout, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__MetadataConfiguration *_p = ::soap_new_tt__MetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataConfiguration::Multicast = Multicast; - _p->tt__MetadataConfiguration::SessionTimeout = SessionTimeout; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__MetadataConfiguration * soap_new_set_tt__MetadataConfiguration( - struct soap *soap, - tt__PTZFilter *PTZStatus, - tt__EventSubscription *Events, - bool *Analytics, - tt__MulticastConfiguration *Multicast, - const std::string& SessionTimeout, - const std::vector & __any, - tt__AnalyticsEngineConfiguration *AnalyticsEngineConfiguration, - tt__MetadataConfigurationExtension *Extension, - std::string *CompressionType, - bool *GeoLocation, - bool *ShapePolygon, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__MetadataConfiguration *_p = ::soap_new_tt__MetadataConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__MetadataConfiguration::PTZStatus = PTZStatus; - _p->tt__MetadataConfiguration::Events = Events; - _p->tt__MetadataConfiguration::Analytics = Analytics; - _p->tt__MetadataConfiguration::Multicast = Multicast; - _p->tt__MetadataConfiguration::SessionTimeout = SessionTimeout; - _p->tt__MetadataConfiguration::__any = __any; - _p->tt__MetadataConfiguration::AnalyticsEngineConfiguration = AnalyticsEngineConfiguration; - _p->tt__MetadataConfiguration::Extension = Extension; - _p->tt__MetadataConfiguration::CompressionType = CompressionType; - _p->tt__MetadataConfiguration::GeoLocation = GeoLocation; - _p->tt__MetadataConfiguration::ShapePolygon = ShapePolygon; - _p->tt__MetadataConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__MetadataConfiguration(struct soap *soap, tt__MetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:MetadataConfiguration", p->soap_type() == SOAP_TYPE_tt__MetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__MetadataConfiguration(struct soap *soap, const char *URL, tt__MetadataConfiguration 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, "tt:MetadataConfiguration", p->soap_type() == SOAP_TYPE_tt__MetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__MetadataConfiguration(struct soap *soap, const char *URL, tt__MetadataConfiguration 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, "tt:MetadataConfiguration", p->soap_type() == SOAP_TYPE_tt__MetadataConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__MetadataConfiguration(struct soap *soap, const char *URL, tt__MetadataConfiguration 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, "tt:MetadataConfiguration", p->soap_type() == SOAP_TYPE_tt__MetadataConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__MetadataConfiguration * SOAP_FMAC4 soap_get_tt__MetadataConfiguration(struct soap*, tt__MetadataConfiguration *, const char*, const char*); - -inline int soap_read_tt__MetadataConfiguration(struct soap *soap, tt__MetadataConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__MetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__MetadataConfiguration(struct soap *soap, const char *URL, tt__MetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__MetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__MetadataConfiguration(struct soap *soap, tt__MetadataConfiguration *p) -{ - if (::soap_read_tt__MetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE_tt__VideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoAnalyticsConfiguration(struct soap*, const char*, int, const tt__VideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 tt__VideoAnalyticsConfiguration * SOAP_FMAC4 soap_in_tt__VideoAnalyticsConfiguration(struct soap*, const char*, tt__VideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 tt__VideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoAnalyticsConfiguration * soap_new_tt__VideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoAnalyticsConfiguration * soap_new_req_tt__VideoAnalyticsConfiguration( - struct soap *soap, - tt__AnalyticsEngineConfiguration *AnalyticsEngineConfiguration, - tt__RuleEngineConfiguration *RuleEngineConfiguration, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoAnalyticsConfiguration *_p = ::soap_new_tt__VideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration = AnalyticsEngineConfiguration; - _p->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration = RuleEngineConfiguration; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__VideoAnalyticsConfiguration * soap_new_set_tt__VideoAnalyticsConfiguration( - struct soap *soap, - tt__AnalyticsEngineConfiguration *AnalyticsEngineConfiguration, - tt__RuleEngineConfiguration *RuleEngineConfiguration, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoAnalyticsConfiguration *_p = ::soap_new_tt__VideoAnalyticsConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoAnalyticsConfiguration::AnalyticsEngineConfiguration = AnalyticsEngineConfiguration; - _p->tt__VideoAnalyticsConfiguration::RuleEngineConfiguration = RuleEngineConfiguration; - _p->tt__VideoAnalyticsConfiguration::__any = __any; - _p->tt__VideoAnalyticsConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__VideoAnalyticsConfiguration(struct soap *soap, tt__VideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoAnalyticsConfiguration(struct soap *soap, const char *URL, tt__VideoAnalyticsConfiguration 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, "tt:VideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoAnalyticsConfiguration(struct soap *soap, const char *URL, tt__VideoAnalyticsConfiguration 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, "tt:VideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoAnalyticsConfiguration(struct soap *soap, const char *URL, tt__VideoAnalyticsConfiguration 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, "tt:VideoAnalyticsConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoAnalyticsConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoAnalyticsConfiguration * SOAP_FMAC4 soap_get_tt__VideoAnalyticsConfiguration(struct soap*, tt__VideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read_tt__VideoAnalyticsConfiguration(struct soap *soap, tt__VideoAnalyticsConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoAnalyticsConfiguration(struct soap *soap, const char *URL, tt__VideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoAnalyticsConfiguration(struct soap *soap, tt__VideoAnalyticsConfiguration *p) -{ - if (::soap_read_tt__VideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoder2ConfigurationOptions(struct soap*, const char*, int, const tt__AudioEncoder2ConfigurationOptions *, const char*); -SOAP_FMAC3 tt__AudioEncoder2ConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioEncoder2ConfigurationOptions(struct soap*, const char*, tt__AudioEncoder2ConfigurationOptions *, const char*); -SOAP_FMAC1 tt__AudioEncoder2ConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioEncoder2ConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioEncoder2ConfigurationOptions * soap_new_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioEncoder2ConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioEncoder2ConfigurationOptions * soap_new_req_tt__AudioEncoder2ConfigurationOptions( - struct soap *soap, - const std::string& Encoding, - tt__IntItems *BitrateList, - tt__IntItems *SampleRateList) -{ - tt__AudioEncoder2ConfigurationOptions *_p = ::soap_new_tt__AudioEncoder2ConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoder2ConfigurationOptions::Encoding = Encoding; - _p->tt__AudioEncoder2ConfigurationOptions::BitrateList = BitrateList; - _p->tt__AudioEncoder2ConfigurationOptions::SampleRateList = SampleRateList; - } - return _p; -} - -inline tt__AudioEncoder2ConfigurationOptions * soap_new_set_tt__AudioEncoder2ConfigurationOptions( - struct soap *soap, - const std::string& Encoding, - tt__IntItems *BitrateList, - tt__IntItems *SampleRateList, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioEncoder2ConfigurationOptions *_p = ::soap_new_tt__AudioEncoder2ConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoder2ConfigurationOptions::Encoding = Encoding; - _p->tt__AudioEncoder2ConfigurationOptions::BitrateList = BitrateList; - _p->tt__AudioEncoder2ConfigurationOptions::SampleRateList = SampleRateList; - _p->tt__AudioEncoder2ConfigurationOptions::__any = __any; - _p->tt__AudioEncoder2ConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, tt__AudioEncoder2ConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoder2ConfigurationOptions 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, "tt:AudioEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoder2ConfigurationOptions 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, "tt:AudioEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoder2ConfigurationOptions 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, "tt:AudioEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioEncoder2ConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioEncoder2ConfigurationOptions(struct soap*, tt__AudioEncoder2ConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, tt__AudioEncoder2ConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncoder2ConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoder2ConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncoder2ConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncoder2ConfigurationOptions(struct soap *soap, tt__AudioEncoder2ConfigurationOptions *p) -{ - if (::soap_read_tt__AudioEncoder2ConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncoder2Configuration_DEFINED -#define SOAP_TYPE_tt__AudioEncoder2Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoder2Configuration(struct soap*, const char*, int, const tt__AudioEncoder2Configuration *, const char*); -SOAP_FMAC3 tt__AudioEncoder2Configuration * SOAP_FMAC4 soap_in_tt__AudioEncoder2Configuration(struct soap*, const char*, tt__AudioEncoder2Configuration *, const char*); -SOAP_FMAC1 tt__AudioEncoder2Configuration * SOAP_FMAC2 soap_instantiate_tt__AudioEncoder2Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioEncoder2Configuration * soap_new_tt__AudioEncoder2Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioEncoder2Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioEncoder2Configuration * soap_new_req_tt__AudioEncoder2Configuration( - struct soap *soap, - const std::string& Encoding, - int Bitrate, - int SampleRate, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioEncoder2Configuration *_p = ::soap_new_tt__AudioEncoder2Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoder2Configuration::Encoding = Encoding; - _p->tt__AudioEncoder2Configuration::Bitrate = Bitrate; - _p->tt__AudioEncoder2Configuration::SampleRate = SampleRate; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AudioEncoder2Configuration * soap_new_set_tt__AudioEncoder2Configuration( - struct soap *soap, - const std::string& Encoding, - tt__MulticastConfiguration *Multicast, - int Bitrate, - int SampleRate, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioEncoder2Configuration *_p = ::soap_new_tt__AudioEncoder2Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoder2Configuration::Encoding = Encoding; - _p->tt__AudioEncoder2Configuration::Multicast = Multicast; - _p->tt__AudioEncoder2Configuration::Bitrate = Bitrate; - _p->tt__AudioEncoder2Configuration::SampleRate = SampleRate; - _p->tt__AudioEncoder2Configuration::__any = __any; - _p->tt__AudioEncoder2Configuration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AudioEncoder2Configuration(struct soap *soap, tt__AudioEncoder2Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncoder2Configuration(struct soap *soap, const char *URL, tt__AudioEncoder2Configuration 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, "tt:AudioEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncoder2Configuration(struct soap *soap, const char *URL, tt__AudioEncoder2Configuration 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, "tt:AudioEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncoder2Configuration(struct soap *soap, const char *URL, tt__AudioEncoder2Configuration 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, "tt:AudioEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__AudioEncoder2Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioEncoder2Configuration * SOAP_FMAC4 soap_get_tt__AudioEncoder2Configuration(struct soap*, tt__AudioEncoder2Configuration *, const char*, const char*); - -inline int soap_read_tt__AudioEncoder2Configuration(struct soap *soap, tt__AudioEncoder2Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncoder2Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncoder2Configuration(struct soap *soap, const char *URL, tt__AudioEncoder2Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncoder2Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncoder2Configuration(struct soap *soap, tt__AudioEncoder2Configuration *p) -{ - if (::soap_read_tt__AudioEncoder2Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncoderConfigurationOption_DEFINED -#define SOAP_TYPE_tt__AudioEncoderConfigurationOption_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoderConfigurationOption(struct soap*, const char*, int, const tt__AudioEncoderConfigurationOption *, const char*); -SOAP_FMAC3 tt__AudioEncoderConfigurationOption * SOAP_FMAC4 soap_in_tt__AudioEncoderConfigurationOption(struct soap*, const char*, tt__AudioEncoderConfigurationOption *, const char*); -SOAP_FMAC1 tt__AudioEncoderConfigurationOption * SOAP_FMAC2 soap_instantiate_tt__AudioEncoderConfigurationOption(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioEncoderConfigurationOption * soap_new_tt__AudioEncoderConfigurationOption(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioEncoderConfigurationOption(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioEncoderConfigurationOption * soap_new_req_tt__AudioEncoderConfigurationOption( - struct soap *soap, - enum tt__AudioEncoding Encoding, - tt__IntItems *BitrateList, - tt__IntItems *SampleRateList) -{ - tt__AudioEncoderConfigurationOption *_p = ::soap_new_tt__AudioEncoderConfigurationOption(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoderConfigurationOption::Encoding = Encoding; - _p->tt__AudioEncoderConfigurationOption::BitrateList = BitrateList; - _p->tt__AudioEncoderConfigurationOption::SampleRateList = SampleRateList; - } - return _p; -} - -inline tt__AudioEncoderConfigurationOption * soap_new_set_tt__AudioEncoderConfigurationOption( - struct soap *soap, - enum tt__AudioEncoding Encoding, - tt__IntItems *BitrateList, - tt__IntItems *SampleRateList, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioEncoderConfigurationOption *_p = ::soap_new_tt__AudioEncoderConfigurationOption(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoderConfigurationOption::Encoding = Encoding; - _p->tt__AudioEncoderConfigurationOption::BitrateList = BitrateList; - _p->tt__AudioEncoderConfigurationOption::SampleRateList = SampleRateList; - _p->tt__AudioEncoderConfigurationOption::__any = __any; - _p->tt__AudioEncoderConfigurationOption::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioEncoderConfigurationOption(struct soap *soap, tt__AudioEncoderConfigurationOption const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioEncoderConfigurationOption", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOption ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncoderConfigurationOption(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOption 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, "tt:AudioEncoderConfigurationOption", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOption ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncoderConfigurationOption(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOption 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, "tt:AudioEncoderConfigurationOption", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOption ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncoderConfigurationOption(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOption 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, "tt:AudioEncoderConfigurationOption", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOption ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioEncoderConfigurationOption * SOAP_FMAC4 soap_get_tt__AudioEncoderConfigurationOption(struct soap*, tt__AudioEncoderConfigurationOption *, const char*, const char*); - -inline int soap_read_tt__AudioEncoderConfigurationOption(struct soap *soap, tt__AudioEncoderConfigurationOption *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncoderConfigurationOption(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncoderConfigurationOption(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOption *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncoderConfigurationOption(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncoderConfigurationOption(struct soap *soap, tt__AudioEncoderConfigurationOption *p) -{ - if (::soap_read_tt__AudioEncoderConfigurationOption(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__AudioEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoderConfigurationOptions(struct soap*, const char*, int, const tt__AudioEncoderConfigurationOptions *, const char*); -SOAP_FMAC3 tt__AudioEncoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioEncoderConfigurationOptions(struct soap*, const char*, tt__AudioEncoderConfigurationOptions *, const char*); -SOAP_FMAC1 tt__AudioEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioEncoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioEncoderConfigurationOptions * soap_new_tt__AudioEncoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioEncoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioEncoderConfigurationOptions * soap_new_req_tt__AudioEncoderConfigurationOptions( - struct soap *soap) -{ - tt__AudioEncoderConfigurationOptions *_p = ::soap_new_tt__AudioEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AudioEncoderConfigurationOptions * soap_new_set_tt__AudioEncoderConfigurationOptions( - struct soap *soap, - const std::vector & Options, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioEncoderConfigurationOptions *_p = ::soap_new_tt__AudioEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoderConfigurationOptions::Options = Options; - _p->tt__AudioEncoderConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioEncoderConfigurationOptions(struct soap *soap, tt__AudioEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOptions 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, "tt:AudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOptions 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, "tt:AudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOptions 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, "tt:AudioEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioEncoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioEncoderConfigurationOptions(struct soap*, tt__AudioEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__AudioEncoderConfigurationOptions(struct soap *soap, tt__AudioEncoderConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__AudioEncoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncoderConfigurationOptions(struct soap *soap, tt__AudioEncoderConfigurationOptions *p) -{ - if (::soap_read_tt__AudioEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioEncoderConfiguration_DEFINED -#define SOAP_TYPE_tt__AudioEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioEncoderConfiguration(struct soap*, const char*, int, const tt__AudioEncoderConfiguration *, const char*); -SOAP_FMAC3 tt__AudioEncoderConfiguration * SOAP_FMAC4 soap_in_tt__AudioEncoderConfiguration(struct soap*, const char*, tt__AudioEncoderConfiguration *, const char*); -SOAP_FMAC1 tt__AudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioEncoderConfiguration * soap_new_tt__AudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioEncoderConfiguration * soap_new_req_tt__AudioEncoderConfiguration( - struct soap *soap, - enum tt__AudioEncoding Encoding, - int Bitrate, - int SampleRate, - tt__MulticastConfiguration *Multicast, - const std::string& SessionTimeout, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioEncoderConfiguration *_p = ::soap_new_tt__AudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoderConfiguration::Encoding = Encoding; - _p->tt__AudioEncoderConfiguration::Bitrate = Bitrate; - _p->tt__AudioEncoderConfiguration::SampleRate = SampleRate; - _p->tt__AudioEncoderConfiguration::Multicast = Multicast; - _p->tt__AudioEncoderConfiguration::SessionTimeout = SessionTimeout; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AudioEncoderConfiguration * soap_new_set_tt__AudioEncoderConfiguration( - struct soap *soap, - enum tt__AudioEncoding Encoding, - int Bitrate, - int SampleRate, - tt__MulticastConfiguration *Multicast, - const std::string& SessionTimeout, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioEncoderConfiguration *_p = ::soap_new_tt__AudioEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioEncoderConfiguration::Encoding = Encoding; - _p->tt__AudioEncoderConfiguration::Bitrate = Bitrate; - _p->tt__AudioEncoderConfiguration::SampleRate = SampleRate; - _p->tt__AudioEncoderConfiguration::Multicast = Multicast; - _p->tt__AudioEncoderConfiguration::SessionTimeout = SessionTimeout; - _p->tt__AudioEncoderConfiguration::__any = __any; - _p->tt__AudioEncoderConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AudioEncoderConfiguration(struct soap *soap, tt__AudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioEncoderConfiguration(struct soap *soap, const char *URL, tt__AudioEncoderConfiguration 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, "tt:AudioEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioEncoderConfiguration(struct soap *soap, const char *URL, tt__AudioEncoderConfiguration 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, "tt:AudioEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioEncoderConfiguration(struct soap *soap, const char *URL, tt__AudioEncoderConfiguration 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, "tt:AudioEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioEncoderConfiguration * SOAP_FMAC4 soap_get_tt__AudioEncoderConfiguration(struct soap*, tt__AudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read_tt__AudioEncoderConfiguration(struct soap *soap, tt__AudioEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioEncoderConfiguration(struct soap *soap, const char *URL, tt__AudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioEncoderConfiguration(struct soap *soap, tt__AudioEncoderConfiguration *p) -{ - if (::soap_read_tt__AudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioSourceOptionsExtension_DEFINED -#define SOAP_TYPE_tt__AudioSourceOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSourceOptionsExtension(struct soap*, const char*, int, const tt__AudioSourceOptionsExtension *, const char*); -SOAP_FMAC3 tt__AudioSourceOptionsExtension * SOAP_FMAC4 soap_in_tt__AudioSourceOptionsExtension(struct soap*, const char*, tt__AudioSourceOptionsExtension *, const char*); -SOAP_FMAC1 tt__AudioSourceOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__AudioSourceOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioSourceOptionsExtension * soap_new_tt__AudioSourceOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioSourceOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioSourceOptionsExtension * soap_new_req_tt__AudioSourceOptionsExtension( - struct soap *soap) -{ - tt__AudioSourceOptionsExtension *_p = ::soap_new_tt__AudioSourceOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AudioSourceOptionsExtension * soap_new_set_tt__AudioSourceOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__AudioSourceOptionsExtension *_p = ::soap_new_tt__AudioSourceOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioSourceOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__AudioSourceOptionsExtension(struct soap *soap, tt__AudioSourceOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioSourceOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioSourceOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioSourceOptionsExtension(struct soap *soap, const char *URL, tt__AudioSourceOptionsExtension 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, "tt:AudioSourceOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioSourceOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioSourceOptionsExtension(struct soap *soap, const char *URL, tt__AudioSourceOptionsExtension 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, "tt:AudioSourceOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioSourceOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioSourceOptionsExtension(struct soap *soap, const char *URL, tt__AudioSourceOptionsExtension 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, "tt:AudioSourceOptionsExtension", p->soap_type() == SOAP_TYPE_tt__AudioSourceOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioSourceOptionsExtension * SOAP_FMAC4 soap_get_tt__AudioSourceOptionsExtension(struct soap*, tt__AudioSourceOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__AudioSourceOptionsExtension(struct soap *soap, tt__AudioSourceOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioSourceOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioSourceOptionsExtension(struct soap *soap, const char *URL, tt__AudioSourceOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioSourceOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioSourceOptionsExtension(struct soap *soap, tt__AudioSourceOptionsExtension *p) -{ - if (::soap_read_tt__AudioSourceOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__AudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSourceConfigurationOptions(struct soap*, const char*, int, const tt__AudioSourceConfigurationOptions *, const char*); -SOAP_FMAC3 tt__AudioSourceConfigurationOptions * SOAP_FMAC4 soap_in_tt__AudioSourceConfigurationOptions(struct soap*, const char*, tt__AudioSourceConfigurationOptions *, const char*); -SOAP_FMAC1 tt__AudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__AudioSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioSourceConfigurationOptions * soap_new_tt__AudioSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioSourceConfigurationOptions * soap_new_req_tt__AudioSourceConfigurationOptions( - struct soap *soap, - const std::vector & InputTokensAvailable) -{ - tt__AudioSourceConfigurationOptions *_p = ::soap_new_tt__AudioSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioSourceConfigurationOptions::InputTokensAvailable = InputTokensAvailable; - } - return _p; -} - -inline tt__AudioSourceConfigurationOptions * soap_new_set_tt__AudioSourceConfigurationOptions( - struct soap *soap, - const std::vector & InputTokensAvailable, - tt__AudioSourceOptionsExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AudioSourceConfigurationOptions *_p = ::soap_new_tt__AudioSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioSourceConfigurationOptions::InputTokensAvailable = InputTokensAvailable; - _p->tt__AudioSourceConfigurationOptions::Extension = Extension; - _p->tt__AudioSourceConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AudioSourceConfigurationOptions(struct soap *soap, tt__AudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioSourceConfigurationOptions(struct soap *soap, const char *URL, tt__AudioSourceConfigurationOptions 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, "tt:AudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioSourceConfigurationOptions(struct soap *soap, const char *URL, tt__AudioSourceConfigurationOptions 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, "tt:AudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioSourceConfigurationOptions(struct soap *soap, const char *URL, tt__AudioSourceConfigurationOptions 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, "tt:AudioSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioSourceConfigurationOptions * SOAP_FMAC4 soap_get_tt__AudioSourceConfigurationOptions(struct soap*, tt__AudioSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__AudioSourceConfigurationOptions(struct soap *soap, tt__AudioSourceConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioSourceConfigurationOptions(struct soap *soap, const char *URL, tt__AudioSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioSourceConfigurationOptions(struct soap *soap, tt__AudioSourceConfigurationOptions *p) -{ - if (::soap_read_tt__AudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioSourceConfiguration_DEFINED -#define SOAP_TYPE_tt__AudioSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSourceConfiguration(struct soap*, const char*, int, const tt__AudioSourceConfiguration *, const char*); -SOAP_FMAC3 tt__AudioSourceConfiguration * SOAP_FMAC4 soap_in_tt__AudioSourceConfiguration(struct soap*, const char*, tt__AudioSourceConfiguration *, const char*); -SOAP_FMAC1 tt__AudioSourceConfiguration * SOAP_FMAC2 soap_instantiate_tt__AudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioSourceConfiguration * soap_new_tt__AudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioSourceConfiguration * soap_new_req_tt__AudioSourceConfiguration( - struct soap *soap, - const std::string& SourceToken, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioSourceConfiguration *_p = ::soap_new_tt__AudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioSourceConfiguration::SourceToken = SourceToken; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__AudioSourceConfiguration * soap_new_set_tt__AudioSourceConfiguration( - struct soap *soap, - const std::string& SourceToken, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__AudioSourceConfiguration *_p = ::soap_new_tt__AudioSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioSourceConfiguration::SourceToken = SourceToken; - _p->tt__AudioSourceConfiguration::__any = __any; - _p->tt__AudioSourceConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AudioSourceConfiguration(struct soap *soap, tt__AudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioSourceConfiguration(struct soap *soap, const char *URL, tt__AudioSourceConfiguration 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, "tt:AudioSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioSourceConfiguration(struct soap *soap, const char *URL, tt__AudioSourceConfiguration 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, "tt:AudioSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioSourceConfiguration(struct soap *soap, const char *URL, tt__AudioSourceConfiguration 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, "tt:AudioSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__AudioSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioSourceConfiguration * SOAP_FMAC4 soap_get_tt__AudioSourceConfiguration(struct soap*, tt__AudioSourceConfiguration *, const char*, const char*); - -inline int soap_read_tt__AudioSourceConfiguration(struct soap *soap, tt__AudioSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioSourceConfiguration(struct soap *soap, const char *URL, tt__AudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioSourceConfiguration(struct soap *soap, tt__AudioSourceConfiguration *p) -{ - if (::soap_read_tt__AudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoder2ConfigurationOptions(struct soap*, const char*, int, const tt__VideoEncoder2ConfigurationOptions *, const char*); -SOAP_FMAC3 tt__VideoEncoder2ConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoEncoder2ConfigurationOptions(struct soap*, const char*, tt__VideoEncoder2ConfigurationOptions *, const char*); -SOAP_FMAC1 tt__VideoEncoder2ConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoEncoder2ConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncoder2ConfigurationOptions * soap_new_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncoder2ConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncoder2ConfigurationOptions * soap_new_req_tt__VideoEncoder2ConfigurationOptions( - struct soap *soap, - const std::string& Encoding, - tt__FloatRange *QualityRange, - const std::vector & ResolutionsAvailable, - tt__IntRange *BitrateRange) -{ - tt__VideoEncoder2ConfigurationOptions *_p = ::soap_new_tt__VideoEncoder2ConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoder2ConfigurationOptions::Encoding = Encoding; - _p->tt__VideoEncoder2ConfigurationOptions::QualityRange = QualityRange; - _p->tt__VideoEncoder2ConfigurationOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__VideoEncoder2ConfigurationOptions::BitrateRange = BitrateRange; - } - return _p; -} - -inline tt__VideoEncoder2ConfigurationOptions * soap_new_set_tt__VideoEncoder2ConfigurationOptions( - struct soap *soap, - const std::string& Encoding, - tt__FloatRange *QualityRange, - const std::vector & ResolutionsAvailable, - tt__IntRange *BitrateRange, - const std::vector & __any, - std::string *GovLengthRange, - std::string *FrameRatesSupported, - std::string *ProfilesSupported, - bool *ConstantBitRateSupported, - bool *GuaranteedFrameRateSupported, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoEncoder2ConfigurationOptions *_p = ::soap_new_tt__VideoEncoder2ConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoder2ConfigurationOptions::Encoding = Encoding; - _p->tt__VideoEncoder2ConfigurationOptions::QualityRange = QualityRange; - _p->tt__VideoEncoder2ConfigurationOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__VideoEncoder2ConfigurationOptions::BitrateRange = BitrateRange; - _p->tt__VideoEncoder2ConfigurationOptions::__any = __any; - _p->tt__VideoEncoder2ConfigurationOptions::GovLengthRange = GovLengthRange; - _p->tt__VideoEncoder2ConfigurationOptions::FrameRatesSupported = FrameRatesSupported; - _p->tt__VideoEncoder2ConfigurationOptions::ProfilesSupported = ProfilesSupported; - _p->tt__VideoEncoder2ConfigurationOptions::ConstantBitRateSupported = ConstantBitRateSupported; - _p->tt__VideoEncoder2ConfigurationOptions::GuaranteedFrameRateSupported = GuaranteedFrameRateSupported; - _p->tt__VideoEncoder2ConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, tt__VideoEncoder2ConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoder2ConfigurationOptions 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, "tt:VideoEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoder2ConfigurationOptions 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, "tt:VideoEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoder2ConfigurationOptions 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, "tt:VideoEncoder2ConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2ConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncoder2ConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoEncoder2ConfigurationOptions(struct soap*, tt__VideoEncoder2ConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, tt__VideoEncoder2ConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoder2ConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoder2ConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoder2ConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoder2ConfigurationOptions(struct soap *soap, tt__VideoEncoder2ConfigurationOptions *p) -{ - if (::soap_read_tt__VideoEncoder2ConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoRateControl2_DEFINED -#define SOAP_TYPE_tt__VideoRateControl2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoRateControl2(struct soap*, const char*, int, const tt__VideoRateControl2 *, const char*); -SOAP_FMAC3 tt__VideoRateControl2 * SOAP_FMAC4 soap_in_tt__VideoRateControl2(struct soap*, const char*, tt__VideoRateControl2 *, const char*); -SOAP_FMAC1 tt__VideoRateControl2 * SOAP_FMAC2 soap_instantiate_tt__VideoRateControl2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoRateControl2 * soap_new_tt__VideoRateControl2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoRateControl2(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoRateControl2 * soap_new_req_tt__VideoRateControl2( - struct soap *soap, - float FrameRateLimit, - int BitrateLimit) -{ - tt__VideoRateControl2 *_p = ::soap_new_tt__VideoRateControl2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoRateControl2::FrameRateLimit = FrameRateLimit; - _p->tt__VideoRateControl2::BitrateLimit = BitrateLimit; - } - return _p; -} - -inline tt__VideoRateControl2 * soap_new_set_tt__VideoRateControl2( - struct soap *soap, - float FrameRateLimit, - int BitrateLimit, - const std::vector & __any, - bool *ConstantBitRate, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoRateControl2 *_p = ::soap_new_tt__VideoRateControl2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoRateControl2::FrameRateLimit = FrameRateLimit; - _p->tt__VideoRateControl2::BitrateLimit = BitrateLimit; - _p->tt__VideoRateControl2::__any = __any; - _p->tt__VideoRateControl2::ConstantBitRate = ConstantBitRate; - _p->tt__VideoRateControl2::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoRateControl2(struct soap *soap, tt__VideoRateControl2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoRateControl2", p->soap_type() == SOAP_TYPE_tt__VideoRateControl2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoRateControl2(struct soap *soap, const char *URL, tt__VideoRateControl2 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, "tt:VideoRateControl2", p->soap_type() == SOAP_TYPE_tt__VideoRateControl2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoRateControl2(struct soap *soap, const char *URL, tt__VideoRateControl2 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, "tt:VideoRateControl2", p->soap_type() == SOAP_TYPE_tt__VideoRateControl2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoRateControl2(struct soap *soap, const char *URL, tt__VideoRateControl2 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, "tt:VideoRateControl2", p->soap_type() == SOAP_TYPE_tt__VideoRateControl2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoRateControl2 * SOAP_FMAC4 soap_get_tt__VideoRateControl2(struct soap*, tt__VideoRateControl2 *, const char*, const char*); - -inline int soap_read_tt__VideoRateControl2(struct soap *soap, tt__VideoRateControl2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoRateControl2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoRateControl2(struct soap *soap, const char *URL, tt__VideoRateControl2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoRateControl2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoRateControl2(struct soap *soap, tt__VideoRateControl2 *p) -{ - if (::soap_read_tt__VideoRateControl2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoResolution2_DEFINED -#define SOAP_TYPE_tt__VideoResolution2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoResolution2(struct soap*, const char*, int, const tt__VideoResolution2 *, const char*); -SOAP_FMAC3 tt__VideoResolution2 * SOAP_FMAC4 soap_in_tt__VideoResolution2(struct soap*, const char*, tt__VideoResolution2 *, const char*); -SOAP_FMAC1 tt__VideoResolution2 * SOAP_FMAC2 soap_instantiate_tt__VideoResolution2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoResolution2 * soap_new_tt__VideoResolution2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoResolution2(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoResolution2 * soap_new_req_tt__VideoResolution2( - struct soap *soap, - int Width, - int Height) -{ - tt__VideoResolution2 *_p = ::soap_new_tt__VideoResolution2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoResolution2::Width = Width; - _p->tt__VideoResolution2::Height = Height; - } - return _p; -} - -inline tt__VideoResolution2 * soap_new_set_tt__VideoResolution2( - struct soap *soap, - int Width, - int Height, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoResolution2 *_p = ::soap_new_tt__VideoResolution2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoResolution2::Width = Width; - _p->tt__VideoResolution2::Height = Height; - _p->tt__VideoResolution2::__any = __any; - _p->tt__VideoResolution2::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoResolution2(struct soap *soap, tt__VideoResolution2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoResolution2", p->soap_type() == SOAP_TYPE_tt__VideoResolution2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoResolution2(struct soap *soap, const char *URL, tt__VideoResolution2 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, "tt:VideoResolution2", p->soap_type() == SOAP_TYPE_tt__VideoResolution2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoResolution2(struct soap *soap, const char *URL, tt__VideoResolution2 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, "tt:VideoResolution2", p->soap_type() == SOAP_TYPE_tt__VideoResolution2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoResolution2(struct soap *soap, const char *URL, tt__VideoResolution2 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, "tt:VideoResolution2", p->soap_type() == SOAP_TYPE_tt__VideoResolution2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoResolution2 * SOAP_FMAC4 soap_get_tt__VideoResolution2(struct soap*, tt__VideoResolution2 *, const char*, const char*); - -inline int soap_read_tt__VideoResolution2(struct soap *soap, tt__VideoResolution2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoResolution2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoResolution2(struct soap *soap, const char *URL, tt__VideoResolution2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoResolution2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoResolution2(struct soap *soap, tt__VideoResolution2 *p) -{ - if (::soap_read_tt__VideoResolution2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoder2Configuration_DEFINED -#define SOAP_TYPE_tt__VideoEncoder2Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoder2Configuration(struct soap*, const char*, int, const tt__VideoEncoder2Configuration *, const char*); -SOAP_FMAC3 tt__VideoEncoder2Configuration * SOAP_FMAC4 soap_in_tt__VideoEncoder2Configuration(struct soap*, const char*, tt__VideoEncoder2Configuration *, const char*); -SOAP_FMAC1 tt__VideoEncoder2Configuration * SOAP_FMAC2 soap_instantiate_tt__VideoEncoder2Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncoder2Configuration * soap_new_tt__VideoEncoder2Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncoder2Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncoder2Configuration * soap_new_req_tt__VideoEncoder2Configuration( - struct soap *soap, - const std::string& Encoding, - tt__VideoResolution2 *Resolution, - float Quality, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoEncoder2Configuration *_p = ::soap_new_tt__VideoEncoder2Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoder2Configuration::Encoding = Encoding; - _p->tt__VideoEncoder2Configuration::Resolution = Resolution; - _p->tt__VideoEncoder2Configuration::Quality = Quality; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__VideoEncoder2Configuration * soap_new_set_tt__VideoEncoder2Configuration( - struct soap *soap, - const std::string& Encoding, - tt__VideoResolution2 *Resolution, - tt__VideoRateControl2 *RateControl, - tt__MulticastConfiguration *Multicast, - float Quality, - const std::vector & __any, - int *GovLength, - std::string *Profile, - bool *GuaranteedFrameRate, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoEncoder2Configuration *_p = ::soap_new_tt__VideoEncoder2Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoder2Configuration::Encoding = Encoding; - _p->tt__VideoEncoder2Configuration::Resolution = Resolution; - _p->tt__VideoEncoder2Configuration::RateControl = RateControl; - _p->tt__VideoEncoder2Configuration::Multicast = Multicast; - _p->tt__VideoEncoder2Configuration::Quality = Quality; - _p->tt__VideoEncoder2Configuration::__any = __any; - _p->tt__VideoEncoder2Configuration::GovLength = GovLength; - _p->tt__VideoEncoder2Configuration::Profile = Profile; - _p->tt__VideoEncoder2Configuration::GuaranteedFrameRate = GuaranteedFrameRate; - _p->tt__VideoEncoder2Configuration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__VideoEncoder2Configuration(struct soap *soap, tt__VideoEncoder2Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoder2Configuration(struct soap *soap, const char *URL, tt__VideoEncoder2Configuration 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, "tt:VideoEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoder2Configuration(struct soap *soap, const char *URL, tt__VideoEncoder2Configuration 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, "tt:VideoEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoder2Configuration(struct soap *soap, const char *URL, tt__VideoEncoder2Configuration 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, "tt:VideoEncoder2Configuration", p->soap_type() == SOAP_TYPE_tt__VideoEncoder2Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncoder2Configuration * SOAP_FMAC4 soap_get_tt__VideoEncoder2Configuration(struct soap*, tt__VideoEncoder2Configuration *, const char*, const char*); - -inline int soap_read_tt__VideoEncoder2Configuration(struct soap *soap, tt__VideoEncoder2Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoder2Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoder2Configuration(struct soap *soap, const char *URL, tt__VideoEncoder2Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoder2Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoder2Configuration(struct soap *soap, tt__VideoEncoder2Configuration *p) -{ - if (::soap_read_tt__VideoEncoder2Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__H264Options2_DEFINED -#define SOAP_TYPE_tt__H264Options2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Options2(struct soap*, const char*, int, const tt__H264Options2 *, const char*); -SOAP_FMAC3 tt__H264Options2 * SOAP_FMAC4 soap_in_tt__H264Options2(struct soap*, const char*, tt__H264Options2 *, const char*); -SOAP_FMAC1 tt__H264Options2 * SOAP_FMAC2 soap_instantiate_tt__H264Options2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__H264Options2 * soap_new_tt__H264Options2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__H264Options2(soap, n, NULL, NULL, NULL); -} - -inline tt__H264Options2 * soap_new_req_tt__H264Options2( - struct soap *soap, - tt__IntRange *BitrateRange, - const std::vector & ResolutionsAvailable__1, - tt__IntRange *GovLengthRange__1, - tt__IntRange *FrameRateRange__1, - tt__IntRange *EncodingIntervalRange__1, - const std::vector & H264ProfilesSupported__1) -{ - tt__H264Options2 *_p = ::soap_new_tt__H264Options2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Options2::BitrateRange = BitrateRange; - _p->tt__H264Options::ResolutionsAvailable = ResolutionsAvailable__1; - _p->tt__H264Options::GovLengthRange = GovLengthRange__1; - _p->tt__H264Options::FrameRateRange = FrameRateRange__1; - _p->tt__H264Options::EncodingIntervalRange = EncodingIntervalRange__1; - _p->tt__H264Options::H264ProfilesSupported = H264ProfilesSupported__1; - } - return _p; -} - -inline tt__H264Options2 * soap_new_set_tt__H264Options2( - struct soap *soap, - tt__IntRange *BitrateRange, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::vector & ResolutionsAvailable__1, - tt__IntRange *GovLengthRange__1, - tt__IntRange *FrameRateRange__1, - tt__IntRange *EncodingIntervalRange__1, - const std::vector & H264ProfilesSupported__1) -{ - tt__H264Options2 *_p = ::soap_new_tt__H264Options2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Options2::BitrateRange = BitrateRange; - _p->tt__H264Options2::__any = __any; - _p->tt__H264Options2::__anyAttribute = __anyAttribute; - _p->tt__H264Options::ResolutionsAvailable = ResolutionsAvailable__1; - _p->tt__H264Options::GovLengthRange = GovLengthRange__1; - _p->tt__H264Options::FrameRateRange = FrameRateRange__1; - _p->tt__H264Options::EncodingIntervalRange = EncodingIntervalRange__1; - _p->tt__H264Options::H264ProfilesSupported = H264ProfilesSupported__1; - } - return _p; -} - -inline int soap_write_tt__H264Options2(struct soap *soap, tt__H264Options2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:H264Options2", p->soap_type() == SOAP_TYPE_tt__H264Options2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__H264Options2(struct soap *soap, const char *URL, tt__H264Options2 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, "tt:H264Options2", p->soap_type() == SOAP_TYPE_tt__H264Options2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__H264Options2(struct soap *soap, const char *URL, tt__H264Options2 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, "tt:H264Options2", p->soap_type() == SOAP_TYPE_tt__H264Options2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__H264Options2(struct soap *soap, const char *URL, tt__H264Options2 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, "tt:H264Options2", p->soap_type() == SOAP_TYPE_tt__H264Options2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__H264Options2 * SOAP_FMAC4 soap_get_tt__H264Options2(struct soap*, tt__H264Options2 *, const char*, const char*); - -inline int soap_read_tt__H264Options2(struct soap *soap, tt__H264Options2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__H264Options2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__H264Options2(struct soap *soap, const char *URL, tt__H264Options2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__H264Options2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__H264Options2(struct soap *soap, tt__H264Options2 *p) -{ - if (::soap_read_tt__H264Options2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__H264Options_DEFINED -#define SOAP_TYPE_tt__H264Options_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Options(struct soap*, const char*, int, const tt__H264Options *, const char*); -SOAP_FMAC3 tt__H264Options * SOAP_FMAC4 soap_in_tt__H264Options(struct soap*, const char*, tt__H264Options *, const char*); -SOAP_FMAC1 tt__H264Options * SOAP_FMAC2 soap_instantiate_tt__H264Options(struct soap*, int, const char*, const char*, size_t*); - -inline tt__H264Options * soap_new_tt__H264Options(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__H264Options(soap, n, NULL, NULL, NULL); -} - -inline tt__H264Options * soap_new_req_tt__H264Options( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *GovLengthRange, - tt__IntRange *FrameRateRange, - tt__IntRange *EncodingIntervalRange, - const std::vector & H264ProfilesSupported) -{ - tt__H264Options *_p = ::soap_new_tt__H264Options(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Options::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__H264Options::GovLengthRange = GovLengthRange; - _p->tt__H264Options::FrameRateRange = FrameRateRange; - _p->tt__H264Options::EncodingIntervalRange = EncodingIntervalRange; - _p->tt__H264Options::H264ProfilesSupported = H264ProfilesSupported; - } - return _p; -} - -inline tt__H264Options * soap_new_set_tt__H264Options( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *GovLengthRange, - tt__IntRange *FrameRateRange, - tt__IntRange *EncodingIntervalRange, - const std::vector & H264ProfilesSupported) -{ - tt__H264Options *_p = ::soap_new_tt__H264Options(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Options::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__H264Options::GovLengthRange = GovLengthRange; - _p->tt__H264Options::FrameRateRange = FrameRateRange; - _p->tt__H264Options::EncodingIntervalRange = EncodingIntervalRange; - _p->tt__H264Options::H264ProfilesSupported = H264ProfilesSupported; - } - return _p; -} - -inline int soap_write_tt__H264Options(struct soap *soap, tt__H264Options const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:H264Options", p->soap_type() == SOAP_TYPE_tt__H264Options ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__H264Options(struct soap *soap, const char *URL, tt__H264Options 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, "tt:H264Options", p->soap_type() == SOAP_TYPE_tt__H264Options ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__H264Options(struct soap *soap, const char *URL, tt__H264Options 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, "tt:H264Options", p->soap_type() == SOAP_TYPE_tt__H264Options ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__H264Options(struct soap *soap, const char *URL, tt__H264Options 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, "tt:H264Options", p->soap_type() == SOAP_TYPE_tt__H264Options ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__H264Options * SOAP_FMAC4 soap_get_tt__H264Options(struct soap*, tt__H264Options *, const char*, const char*); - -inline int soap_read_tt__H264Options(struct soap *soap, tt__H264Options *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__H264Options(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__H264Options(struct soap *soap, const char *URL, tt__H264Options *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__H264Options(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__H264Options(struct soap *soap, tt__H264Options *p) -{ - if (::soap_read_tt__H264Options(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Mpeg4Options2_DEFINED -#define SOAP_TYPE_tt__Mpeg4Options2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Options2(struct soap*, const char*, int, const tt__Mpeg4Options2 *, const char*); -SOAP_FMAC3 tt__Mpeg4Options2 * SOAP_FMAC4 soap_in_tt__Mpeg4Options2(struct soap*, const char*, tt__Mpeg4Options2 *, const char*); -SOAP_FMAC1 tt__Mpeg4Options2 * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Options2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Mpeg4Options2 * soap_new_tt__Mpeg4Options2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Mpeg4Options2(soap, n, NULL, NULL, NULL); -} - -inline tt__Mpeg4Options2 * soap_new_req_tt__Mpeg4Options2( - struct soap *soap, - tt__IntRange *BitrateRange, - const std::vector & ResolutionsAvailable__1, - tt__IntRange *GovLengthRange__1, - tt__IntRange *FrameRateRange__1, - tt__IntRange *EncodingIntervalRange__1, - const std::vector & Mpeg4ProfilesSupported__1) -{ - tt__Mpeg4Options2 *_p = ::soap_new_tt__Mpeg4Options2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Options2::BitrateRange = BitrateRange; - _p->tt__Mpeg4Options::ResolutionsAvailable = ResolutionsAvailable__1; - _p->tt__Mpeg4Options::GovLengthRange = GovLengthRange__1; - _p->tt__Mpeg4Options::FrameRateRange = FrameRateRange__1; - _p->tt__Mpeg4Options::EncodingIntervalRange = EncodingIntervalRange__1; - _p->tt__Mpeg4Options::Mpeg4ProfilesSupported = Mpeg4ProfilesSupported__1; - } - return _p; -} - -inline tt__Mpeg4Options2 * soap_new_set_tt__Mpeg4Options2( - struct soap *soap, - tt__IntRange *BitrateRange, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::vector & ResolutionsAvailable__1, - tt__IntRange *GovLengthRange__1, - tt__IntRange *FrameRateRange__1, - tt__IntRange *EncodingIntervalRange__1, - const std::vector & Mpeg4ProfilesSupported__1) -{ - tt__Mpeg4Options2 *_p = ::soap_new_tt__Mpeg4Options2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Options2::BitrateRange = BitrateRange; - _p->tt__Mpeg4Options2::__any = __any; - _p->tt__Mpeg4Options2::__anyAttribute = __anyAttribute; - _p->tt__Mpeg4Options::ResolutionsAvailable = ResolutionsAvailable__1; - _p->tt__Mpeg4Options::GovLengthRange = GovLengthRange__1; - _p->tt__Mpeg4Options::FrameRateRange = FrameRateRange__1; - _p->tt__Mpeg4Options::EncodingIntervalRange = EncodingIntervalRange__1; - _p->tt__Mpeg4Options::Mpeg4ProfilesSupported = Mpeg4ProfilesSupported__1; - } - return _p; -} - -inline int soap_write_tt__Mpeg4Options2(struct soap *soap, tt__Mpeg4Options2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Mpeg4Options2", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Mpeg4Options2(struct soap *soap, const char *URL, tt__Mpeg4Options2 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, "tt:Mpeg4Options2", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Mpeg4Options2(struct soap *soap, const char *URL, tt__Mpeg4Options2 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, "tt:Mpeg4Options2", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Mpeg4Options2(struct soap *soap, const char *URL, tt__Mpeg4Options2 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, "tt:Mpeg4Options2", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Mpeg4Options2 * SOAP_FMAC4 soap_get_tt__Mpeg4Options2(struct soap*, tt__Mpeg4Options2 *, const char*, const char*); - -inline int soap_read_tt__Mpeg4Options2(struct soap *soap, tt__Mpeg4Options2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Mpeg4Options2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Mpeg4Options2(struct soap *soap, const char *URL, tt__Mpeg4Options2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Mpeg4Options2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Mpeg4Options2(struct soap *soap, tt__Mpeg4Options2 *p) -{ - if (::soap_read_tt__Mpeg4Options2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Mpeg4Options_DEFINED -#define SOAP_TYPE_tt__Mpeg4Options_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Options(struct soap*, const char*, int, const tt__Mpeg4Options *, const char*); -SOAP_FMAC3 tt__Mpeg4Options * SOAP_FMAC4 soap_in_tt__Mpeg4Options(struct soap*, const char*, tt__Mpeg4Options *, const char*); -SOAP_FMAC1 tt__Mpeg4Options * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Options(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Mpeg4Options * soap_new_tt__Mpeg4Options(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Mpeg4Options(soap, n, NULL, NULL, NULL); -} - -inline tt__Mpeg4Options * soap_new_req_tt__Mpeg4Options( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *GovLengthRange, - tt__IntRange *FrameRateRange, - tt__IntRange *EncodingIntervalRange, - const std::vector & Mpeg4ProfilesSupported) -{ - tt__Mpeg4Options *_p = ::soap_new_tt__Mpeg4Options(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Options::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__Mpeg4Options::GovLengthRange = GovLengthRange; - _p->tt__Mpeg4Options::FrameRateRange = FrameRateRange; - _p->tt__Mpeg4Options::EncodingIntervalRange = EncodingIntervalRange; - _p->tt__Mpeg4Options::Mpeg4ProfilesSupported = Mpeg4ProfilesSupported; - } - return _p; -} - -inline tt__Mpeg4Options * soap_new_set_tt__Mpeg4Options( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *GovLengthRange, - tt__IntRange *FrameRateRange, - tt__IntRange *EncodingIntervalRange, - const std::vector & Mpeg4ProfilesSupported) -{ - tt__Mpeg4Options *_p = ::soap_new_tt__Mpeg4Options(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Options::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__Mpeg4Options::GovLengthRange = GovLengthRange; - _p->tt__Mpeg4Options::FrameRateRange = FrameRateRange; - _p->tt__Mpeg4Options::EncodingIntervalRange = EncodingIntervalRange; - _p->tt__Mpeg4Options::Mpeg4ProfilesSupported = Mpeg4ProfilesSupported; - } - return _p; -} - -inline int soap_write_tt__Mpeg4Options(struct soap *soap, tt__Mpeg4Options const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Mpeg4Options", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Mpeg4Options(struct soap *soap, const char *URL, tt__Mpeg4Options 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, "tt:Mpeg4Options", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Mpeg4Options(struct soap *soap, const char *URL, tt__Mpeg4Options 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, "tt:Mpeg4Options", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Mpeg4Options(struct soap *soap, const char *URL, tt__Mpeg4Options 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, "tt:Mpeg4Options", p->soap_type() == SOAP_TYPE_tt__Mpeg4Options ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Mpeg4Options * SOAP_FMAC4 soap_get_tt__Mpeg4Options(struct soap*, tt__Mpeg4Options *, const char*, const char*); - -inline int soap_read_tt__Mpeg4Options(struct soap *soap, tt__Mpeg4Options *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Mpeg4Options(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Mpeg4Options(struct soap *soap, const char *URL, tt__Mpeg4Options *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Mpeg4Options(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Mpeg4Options(struct soap *soap, tt__Mpeg4Options *p) -{ - if (::soap_read_tt__Mpeg4Options(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__JpegOptions2_DEFINED -#define SOAP_TYPE_tt__JpegOptions2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JpegOptions2(struct soap*, const char*, int, const tt__JpegOptions2 *, const char*); -SOAP_FMAC3 tt__JpegOptions2 * SOAP_FMAC4 soap_in_tt__JpegOptions2(struct soap*, const char*, tt__JpegOptions2 *, const char*); -SOAP_FMAC1 tt__JpegOptions2 * SOAP_FMAC2 soap_instantiate_tt__JpegOptions2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__JpegOptions2 * soap_new_tt__JpegOptions2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__JpegOptions2(soap, n, NULL, NULL, NULL); -} - -inline tt__JpegOptions2 * soap_new_req_tt__JpegOptions2( - struct soap *soap, - tt__IntRange *BitrateRange, - const std::vector & ResolutionsAvailable__1, - tt__IntRange *FrameRateRange__1, - tt__IntRange *EncodingIntervalRange__1) -{ - tt__JpegOptions2 *_p = ::soap_new_tt__JpegOptions2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JpegOptions2::BitrateRange = BitrateRange; - _p->tt__JpegOptions::ResolutionsAvailable = ResolutionsAvailable__1; - _p->tt__JpegOptions::FrameRateRange = FrameRateRange__1; - _p->tt__JpegOptions::EncodingIntervalRange = EncodingIntervalRange__1; - } - return _p; -} - -inline tt__JpegOptions2 * soap_new_set_tt__JpegOptions2( - struct soap *soap, - tt__IntRange *BitrateRange, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::vector & ResolutionsAvailable__1, - tt__IntRange *FrameRateRange__1, - tt__IntRange *EncodingIntervalRange__1) -{ - tt__JpegOptions2 *_p = ::soap_new_tt__JpegOptions2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JpegOptions2::BitrateRange = BitrateRange; - _p->tt__JpegOptions2::__any = __any; - _p->tt__JpegOptions2::__anyAttribute = __anyAttribute; - _p->tt__JpegOptions::ResolutionsAvailable = ResolutionsAvailable__1; - _p->tt__JpegOptions::FrameRateRange = FrameRateRange__1; - _p->tt__JpegOptions::EncodingIntervalRange = EncodingIntervalRange__1; - } - return _p; -} - -inline int soap_write_tt__JpegOptions2(struct soap *soap, tt__JpegOptions2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:JpegOptions2", p->soap_type() == SOAP_TYPE_tt__JpegOptions2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__JpegOptions2(struct soap *soap, const char *URL, tt__JpegOptions2 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, "tt:JpegOptions2", p->soap_type() == SOAP_TYPE_tt__JpegOptions2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__JpegOptions2(struct soap *soap, const char *URL, tt__JpegOptions2 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, "tt:JpegOptions2", p->soap_type() == SOAP_TYPE_tt__JpegOptions2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__JpegOptions2(struct soap *soap, const char *URL, tt__JpegOptions2 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, "tt:JpegOptions2", p->soap_type() == SOAP_TYPE_tt__JpegOptions2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__JpegOptions2 * SOAP_FMAC4 soap_get_tt__JpegOptions2(struct soap*, tt__JpegOptions2 *, const char*, const char*); - -inline int soap_read_tt__JpegOptions2(struct soap *soap, tt__JpegOptions2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__JpegOptions2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__JpegOptions2(struct soap *soap, const char *URL, tt__JpegOptions2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__JpegOptions2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__JpegOptions2(struct soap *soap, tt__JpegOptions2 *p) -{ - if (::soap_read_tt__JpegOptions2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__JpegOptions_DEFINED -#define SOAP_TYPE_tt__JpegOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__JpegOptions(struct soap*, const char*, int, const tt__JpegOptions *, const char*); -SOAP_FMAC3 tt__JpegOptions * SOAP_FMAC4 soap_in_tt__JpegOptions(struct soap*, const char*, tt__JpegOptions *, const char*); -SOAP_FMAC1 tt__JpegOptions * SOAP_FMAC2 soap_instantiate_tt__JpegOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__JpegOptions * soap_new_tt__JpegOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__JpegOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__JpegOptions * soap_new_req_tt__JpegOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *FrameRateRange, - tt__IntRange *EncodingIntervalRange) -{ - tt__JpegOptions *_p = ::soap_new_tt__JpegOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JpegOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__JpegOptions::FrameRateRange = FrameRateRange; - _p->tt__JpegOptions::EncodingIntervalRange = EncodingIntervalRange; - } - return _p; -} - -inline tt__JpegOptions * soap_new_set_tt__JpegOptions( - struct soap *soap, - const std::vector & ResolutionsAvailable, - tt__IntRange *FrameRateRange, - tt__IntRange *EncodingIntervalRange) -{ - tt__JpegOptions *_p = ::soap_new_tt__JpegOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__JpegOptions::ResolutionsAvailable = ResolutionsAvailable; - _p->tt__JpegOptions::FrameRateRange = FrameRateRange; - _p->tt__JpegOptions::EncodingIntervalRange = EncodingIntervalRange; - } - return _p; -} - -inline int soap_write_tt__JpegOptions(struct soap *soap, tt__JpegOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:JpegOptions", p->soap_type() == SOAP_TYPE_tt__JpegOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__JpegOptions(struct soap *soap, const char *URL, tt__JpegOptions 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, "tt:JpegOptions", p->soap_type() == SOAP_TYPE_tt__JpegOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__JpegOptions(struct soap *soap, const char *URL, tt__JpegOptions 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, "tt:JpegOptions", p->soap_type() == SOAP_TYPE_tt__JpegOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__JpegOptions(struct soap *soap, const char *URL, tt__JpegOptions 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, "tt:JpegOptions", p->soap_type() == SOAP_TYPE_tt__JpegOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__JpegOptions * SOAP_FMAC4 soap_get_tt__JpegOptions(struct soap*, tt__JpegOptions *, const char*, const char*); - -inline int soap_read_tt__JpegOptions(struct soap *soap, tt__JpegOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__JpegOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__JpegOptions(struct soap *soap, const char *URL, tt__JpegOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__JpegOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__JpegOptions(struct soap *soap, tt__JpegOptions *p) -{ - if (::soap_read_tt__JpegOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoderOptionsExtension2_DEFINED -#define SOAP_TYPE_tt__VideoEncoderOptionsExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderOptionsExtension2(struct soap*, const char*, int, const tt__VideoEncoderOptionsExtension2 *, const char*); -SOAP_FMAC3 tt__VideoEncoderOptionsExtension2 * SOAP_FMAC4 soap_in_tt__VideoEncoderOptionsExtension2(struct soap*, const char*, tt__VideoEncoderOptionsExtension2 *, const char*); -SOAP_FMAC1 tt__VideoEncoderOptionsExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderOptionsExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncoderOptionsExtension2 * soap_new_tt__VideoEncoderOptionsExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncoderOptionsExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncoderOptionsExtension2 * soap_new_req_tt__VideoEncoderOptionsExtension2( - struct soap *soap) -{ - tt__VideoEncoderOptionsExtension2 *_p = ::soap_new_tt__VideoEncoderOptionsExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoEncoderOptionsExtension2 * soap_new_set_tt__VideoEncoderOptionsExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__VideoEncoderOptionsExtension2 *_p = ::soap_new_tt__VideoEncoderOptionsExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoderOptionsExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__VideoEncoderOptionsExtension2(struct soap *soap, tt__VideoEncoderOptionsExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncoderOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoderOptionsExtension2(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension2 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, "tt:VideoEncoderOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoderOptionsExtension2(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension2 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, "tt:VideoEncoderOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoderOptionsExtension2(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension2 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, "tt:VideoEncoderOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncoderOptionsExtension2 * SOAP_FMAC4 soap_get_tt__VideoEncoderOptionsExtension2(struct soap*, tt__VideoEncoderOptionsExtension2 *, const char*, const char*); - -inline int soap_read_tt__VideoEncoderOptionsExtension2(struct soap *soap, tt__VideoEncoderOptionsExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoderOptionsExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoderOptionsExtension2(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoderOptionsExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoderOptionsExtension2(struct soap *soap, tt__VideoEncoderOptionsExtension2 *p) -{ - if (::soap_read_tt__VideoEncoderOptionsExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoderOptionsExtension_DEFINED -#define SOAP_TYPE_tt__VideoEncoderOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderOptionsExtension(struct soap*, const char*, int, const tt__VideoEncoderOptionsExtension *, const char*); -SOAP_FMAC3 tt__VideoEncoderOptionsExtension * SOAP_FMAC4 soap_in_tt__VideoEncoderOptionsExtension(struct soap*, const char*, tt__VideoEncoderOptionsExtension *, const char*); -SOAP_FMAC1 tt__VideoEncoderOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncoderOptionsExtension * soap_new_tt__VideoEncoderOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncoderOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncoderOptionsExtension * soap_new_req_tt__VideoEncoderOptionsExtension( - struct soap *soap) -{ - tt__VideoEncoderOptionsExtension *_p = ::soap_new_tt__VideoEncoderOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoEncoderOptionsExtension * soap_new_set_tt__VideoEncoderOptionsExtension( - struct soap *soap, - const std::vector & __any, - tt__JpegOptions2 *JPEG, - tt__Mpeg4Options2 *MPEG4, - tt__H264Options2 *H264, - tt__VideoEncoderOptionsExtension2 *Extension) -{ - tt__VideoEncoderOptionsExtension *_p = ::soap_new_tt__VideoEncoderOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoderOptionsExtension::__any = __any; - _p->tt__VideoEncoderOptionsExtension::JPEG = JPEG; - _p->tt__VideoEncoderOptionsExtension::MPEG4 = MPEG4; - _p->tt__VideoEncoderOptionsExtension::H264 = H264; - _p->tt__VideoEncoderOptionsExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__VideoEncoderOptionsExtension(struct soap *soap, tt__VideoEncoderOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncoderOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoderOptionsExtension(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension 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, "tt:VideoEncoderOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoderOptionsExtension(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension 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, "tt:VideoEncoderOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoderOptionsExtension(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension 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, "tt:VideoEncoderOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoEncoderOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncoderOptionsExtension * SOAP_FMAC4 soap_get_tt__VideoEncoderOptionsExtension(struct soap*, tt__VideoEncoderOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__VideoEncoderOptionsExtension(struct soap *soap, tt__VideoEncoderOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoderOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoderOptionsExtension(struct soap *soap, const char *URL, tt__VideoEncoderOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoderOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoderOptionsExtension(struct soap *soap, tt__VideoEncoderOptionsExtension *p) -{ - if (::soap_read_tt__VideoEncoderOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__VideoEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderConfigurationOptions(struct soap*, const char*, int, const tt__VideoEncoderConfigurationOptions *, const char*); -SOAP_FMAC3 tt__VideoEncoderConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoEncoderConfigurationOptions(struct soap*, const char*, tt__VideoEncoderConfigurationOptions *, const char*); -SOAP_FMAC1 tt__VideoEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncoderConfigurationOptions * soap_new_tt__VideoEncoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncoderConfigurationOptions * soap_new_req_tt__VideoEncoderConfigurationOptions( - struct soap *soap, - tt__IntRange *QualityRange) -{ - tt__VideoEncoderConfigurationOptions *_p = ::soap_new_tt__VideoEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoderConfigurationOptions::QualityRange = QualityRange; - } - return _p; -} - -inline tt__VideoEncoderConfigurationOptions * soap_new_set_tt__VideoEncoderConfigurationOptions( - struct soap *soap, - tt__IntRange *QualityRange, - tt__JpegOptions *JPEG, - tt__Mpeg4Options *MPEG4, - tt__H264Options *H264, - tt__VideoEncoderOptionsExtension *Extension, - bool *GuaranteedFrameRateSupported, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoEncoderConfigurationOptions *_p = ::soap_new_tt__VideoEncoderConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoderConfigurationOptions::QualityRange = QualityRange; - _p->tt__VideoEncoderConfigurationOptions::JPEG = JPEG; - _p->tt__VideoEncoderConfigurationOptions::MPEG4 = MPEG4; - _p->tt__VideoEncoderConfigurationOptions::H264 = H264; - _p->tt__VideoEncoderConfigurationOptions::Extension = Extension; - _p->tt__VideoEncoderConfigurationOptions::GuaranteedFrameRateSupported = GuaranteedFrameRateSupported; - _p->tt__VideoEncoderConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoEncoderConfigurationOptions(struct soap *soap, tt__VideoEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoderConfigurationOptions 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, "tt:VideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoderConfigurationOptions 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, "tt:VideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoderConfigurationOptions 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, "tt:VideoEncoderConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncoderConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoEncoderConfigurationOptions(struct soap*, tt__VideoEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__VideoEncoderConfigurationOptions(struct soap *soap, tt__VideoEncoderConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoderConfigurationOptions(struct soap *soap, const char *URL, tt__VideoEncoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoderConfigurationOptions(struct soap *soap, tt__VideoEncoderConfigurationOptions *p) -{ - if (::soap_read_tt__VideoEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__H264Configuration_DEFINED -#define SOAP_TYPE_tt__H264Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__H264Configuration(struct soap*, const char*, int, const tt__H264Configuration *, const char*); -SOAP_FMAC3 tt__H264Configuration * SOAP_FMAC4 soap_in_tt__H264Configuration(struct soap*, const char*, tt__H264Configuration *, const char*); -SOAP_FMAC1 tt__H264Configuration * SOAP_FMAC2 soap_instantiate_tt__H264Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__H264Configuration * soap_new_tt__H264Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__H264Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__H264Configuration * soap_new_req_tt__H264Configuration( - struct soap *soap, - int GovLength, - enum tt__H264Profile H264Profile) -{ - tt__H264Configuration *_p = ::soap_new_tt__H264Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Configuration::GovLength = GovLength; - _p->tt__H264Configuration::H264Profile = H264Profile; - } - return _p; -} - -inline tt__H264Configuration * soap_new_set_tt__H264Configuration( - struct soap *soap, - int GovLength, - enum tt__H264Profile H264Profile) -{ - tt__H264Configuration *_p = ::soap_new_tt__H264Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__H264Configuration::GovLength = GovLength; - _p->tt__H264Configuration::H264Profile = H264Profile; - } - return _p; -} - -inline int soap_write_tt__H264Configuration(struct soap *soap, tt__H264Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:H264Configuration", p->soap_type() == SOAP_TYPE_tt__H264Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__H264Configuration(struct soap *soap, const char *URL, tt__H264Configuration 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, "tt:H264Configuration", p->soap_type() == SOAP_TYPE_tt__H264Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__H264Configuration(struct soap *soap, const char *URL, tt__H264Configuration 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, "tt:H264Configuration", p->soap_type() == SOAP_TYPE_tt__H264Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__H264Configuration(struct soap *soap, const char *URL, tt__H264Configuration 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, "tt:H264Configuration", p->soap_type() == SOAP_TYPE_tt__H264Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__H264Configuration * SOAP_FMAC4 soap_get_tt__H264Configuration(struct soap*, tt__H264Configuration *, const char*, const char*); - -inline int soap_read_tt__H264Configuration(struct soap *soap, tt__H264Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__H264Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__H264Configuration(struct soap *soap, const char *URL, tt__H264Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__H264Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__H264Configuration(struct soap *soap, tt__H264Configuration *p) -{ - if (::soap_read_tt__H264Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Mpeg4Configuration_DEFINED -#define SOAP_TYPE_tt__Mpeg4Configuration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Mpeg4Configuration(struct soap*, const char*, int, const tt__Mpeg4Configuration *, const char*); -SOAP_FMAC3 tt__Mpeg4Configuration * SOAP_FMAC4 soap_in_tt__Mpeg4Configuration(struct soap*, const char*, tt__Mpeg4Configuration *, const char*); -SOAP_FMAC1 tt__Mpeg4Configuration * SOAP_FMAC2 soap_instantiate_tt__Mpeg4Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Mpeg4Configuration * soap_new_tt__Mpeg4Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Mpeg4Configuration(soap, n, NULL, NULL, NULL); -} - -inline tt__Mpeg4Configuration * soap_new_req_tt__Mpeg4Configuration( - struct soap *soap, - int GovLength, - enum tt__Mpeg4Profile Mpeg4Profile) -{ - tt__Mpeg4Configuration *_p = ::soap_new_tt__Mpeg4Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Configuration::GovLength = GovLength; - _p->tt__Mpeg4Configuration::Mpeg4Profile = Mpeg4Profile; - } - return _p; -} - -inline tt__Mpeg4Configuration * soap_new_set_tt__Mpeg4Configuration( - struct soap *soap, - int GovLength, - enum tt__Mpeg4Profile Mpeg4Profile) -{ - tt__Mpeg4Configuration *_p = ::soap_new_tt__Mpeg4Configuration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Mpeg4Configuration::GovLength = GovLength; - _p->tt__Mpeg4Configuration::Mpeg4Profile = Mpeg4Profile; - } - return _p; -} - -inline int soap_write_tt__Mpeg4Configuration(struct soap *soap, tt__Mpeg4Configuration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Mpeg4Configuration", p->soap_type() == SOAP_TYPE_tt__Mpeg4Configuration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Mpeg4Configuration(struct soap *soap, const char *URL, tt__Mpeg4Configuration 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, "tt:Mpeg4Configuration", p->soap_type() == SOAP_TYPE_tt__Mpeg4Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Mpeg4Configuration(struct soap *soap, const char *URL, tt__Mpeg4Configuration 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, "tt:Mpeg4Configuration", p->soap_type() == SOAP_TYPE_tt__Mpeg4Configuration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Mpeg4Configuration(struct soap *soap, const char *URL, tt__Mpeg4Configuration 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, "tt:Mpeg4Configuration", p->soap_type() == SOAP_TYPE_tt__Mpeg4Configuration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Mpeg4Configuration * SOAP_FMAC4 soap_get_tt__Mpeg4Configuration(struct soap*, tt__Mpeg4Configuration *, const char*, const char*); - -inline int soap_read_tt__Mpeg4Configuration(struct soap *soap, tt__Mpeg4Configuration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Mpeg4Configuration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Mpeg4Configuration(struct soap *soap, const char *URL, tt__Mpeg4Configuration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Mpeg4Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Mpeg4Configuration(struct soap *soap, tt__Mpeg4Configuration *p) -{ - if (::soap_read_tt__Mpeg4Configuration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoRateControl_DEFINED -#define SOAP_TYPE_tt__VideoRateControl_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoRateControl(struct soap*, const char*, int, const tt__VideoRateControl *, const char*); -SOAP_FMAC3 tt__VideoRateControl * SOAP_FMAC4 soap_in_tt__VideoRateControl(struct soap*, const char*, tt__VideoRateControl *, const char*); -SOAP_FMAC1 tt__VideoRateControl * SOAP_FMAC2 soap_instantiate_tt__VideoRateControl(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoRateControl * soap_new_tt__VideoRateControl(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoRateControl(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoRateControl * soap_new_req_tt__VideoRateControl( - struct soap *soap, - int FrameRateLimit, - int EncodingInterval, - int BitrateLimit) -{ - tt__VideoRateControl *_p = ::soap_new_tt__VideoRateControl(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoRateControl::FrameRateLimit = FrameRateLimit; - _p->tt__VideoRateControl::EncodingInterval = EncodingInterval; - _p->tt__VideoRateControl::BitrateLimit = BitrateLimit; - } - return _p; -} - -inline tt__VideoRateControl * soap_new_set_tt__VideoRateControl( - struct soap *soap, - int FrameRateLimit, - int EncodingInterval, - int BitrateLimit) -{ - tt__VideoRateControl *_p = ::soap_new_tt__VideoRateControl(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoRateControl::FrameRateLimit = FrameRateLimit; - _p->tt__VideoRateControl::EncodingInterval = EncodingInterval; - _p->tt__VideoRateControl::BitrateLimit = BitrateLimit; - } - return _p; -} - -inline int soap_write_tt__VideoRateControl(struct soap *soap, tt__VideoRateControl const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoRateControl", p->soap_type() == SOAP_TYPE_tt__VideoRateControl ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoRateControl(struct soap *soap, const char *URL, tt__VideoRateControl 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, "tt:VideoRateControl", p->soap_type() == SOAP_TYPE_tt__VideoRateControl ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoRateControl(struct soap *soap, const char *URL, tt__VideoRateControl 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, "tt:VideoRateControl", p->soap_type() == SOAP_TYPE_tt__VideoRateControl ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoRateControl(struct soap *soap, const char *URL, tt__VideoRateControl 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, "tt:VideoRateControl", p->soap_type() == SOAP_TYPE_tt__VideoRateControl ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoRateControl * SOAP_FMAC4 soap_get_tt__VideoRateControl(struct soap*, tt__VideoRateControl *, const char*, const char*); - -inline int soap_read_tt__VideoRateControl(struct soap *soap, tt__VideoRateControl *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoRateControl(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoRateControl(struct soap *soap, const char *URL, tt__VideoRateControl *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoRateControl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoRateControl(struct soap *soap, tt__VideoRateControl *p) -{ - if (::soap_read_tt__VideoRateControl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoResolution_DEFINED -#define SOAP_TYPE_tt__VideoResolution_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoResolution(struct soap*, const char*, int, const tt__VideoResolution *, const char*); -SOAP_FMAC3 tt__VideoResolution * SOAP_FMAC4 soap_in_tt__VideoResolution(struct soap*, const char*, tt__VideoResolution *, const char*); -SOAP_FMAC1 tt__VideoResolution * SOAP_FMAC2 soap_instantiate_tt__VideoResolution(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoResolution * soap_new_tt__VideoResolution(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoResolution(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoResolution * soap_new_req_tt__VideoResolution( - struct soap *soap, - int Width, - int Height) -{ - tt__VideoResolution *_p = ::soap_new_tt__VideoResolution(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoResolution::Width = Width; - _p->tt__VideoResolution::Height = Height; - } - return _p; -} - -inline tt__VideoResolution * soap_new_set_tt__VideoResolution( - struct soap *soap, - int Width, - int Height) -{ - tt__VideoResolution *_p = ::soap_new_tt__VideoResolution(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoResolution::Width = Width; - _p->tt__VideoResolution::Height = Height; - } - return _p; -} - -inline int soap_write_tt__VideoResolution(struct soap *soap, tt__VideoResolution const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoResolution", p->soap_type() == SOAP_TYPE_tt__VideoResolution ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoResolution(struct soap *soap, const char *URL, tt__VideoResolution 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, "tt:VideoResolution", p->soap_type() == SOAP_TYPE_tt__VideoResolution ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoResolution(struct soap *soap, const char *URL, tt__VideoResolution 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, "tt:VideoResolution", p->soap_type() == SOAP_TYPE_tt__VideoResolution ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoResolution(struct soap *soap, const char *URL, tt__VideoResolution 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, "tt:VideoResolution", p->soap_type() == SOAP_TYPE_tt__VideoResolution ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoResolution * SOAP_FMAC4 soap_get_tt__VideoResolution(struct soap*, tt__VideoResolution *, const char*, const char*); - -inline int soap_read_tt__VideoResolution(struct soap *soap, tt__VideoResolution *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoResolution(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoResolution(struct soap *soap, const char *URL, tt__VideoResolution *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoResolution(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoResolution(struct soap *soap, tt__VideoResolution *p) -{ - if (::soap_read_tt__VideoResolution(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoEncoderConfiguration_DEFINED -#define SOAP_TYPE_tt__VideoEncoderConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoEncoderConfiguration(struct soap*, const char*, int, const tt__VideoEncoderConfiguration *, const char*); -SOAP_FMAC3 tt__VideoEncoderConfiguration * SOAP_FMAC4 soap_in_tt__VideoEncoderConfiguration(struct soap*, const char*, tt__VideoEncoderConfiguration *, const char*); -SOAP_FMAC1 tt__VideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoEncoderConfiguration * soap_new_tt__VideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoEncoderConfiguration * soap_new_req_tt__VideoEncoderConfiguration( - struct soap *soap, - enum tt__VideoEncoding Encoding, - tt__VideoResolution *Resolution, - float Quality, - tt__MulticastConfiguration *Multicast, - const std::string& SessionTimeout, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoEncoderConfiguration *_p = ::soap_new_tt__VideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoderConfiguration::Encoding = Encoding; - _p->tt__VideoEncoderConfiguration::Resolution = Resolution; - _p->tt__VideoEncoderConfiguration::Quality = Quality; - _p->tt__VideoEncoderConfiguration::Multicast = Multicast; - _p->tt__VideoEncoderConfiguration::SessionTimeout = SessionTimeout; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__VideoEncoderConfiguration * soap_new_set_tt__VideoEncoderConfiguration( - struct soap *soap, - enum tt__VideoEncoding Encoding, - tt__VideoResolution *Resolution, - float Quality, - tt__VideoRateControl *RateControl, - tt__Mpeg4Configuration *MPEG4, - tt__H264Configuration *H264, - tt__MulticastConfiguration *Multicast, - const std::string& SessionTimeout, - const std::vector & __any, - bool *GuaranteedFrameRate, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoEncoderConfiguration *_p = ::soap_new_tt__VideoEncoderConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoEncoderConfiguration::Encoding = Encoding; - _p->tt__VideoEncoderConfiguration::Resolution = Resolution; - _p->tt__VideoEncoderConfiguration::Quality = Quality; - _p->tt__VideoEncoderConfiguration::RateControl = RateControl; - _p->tt__VideoEncoderConfiguration::MPEG4 = MPEG4; - _p->tt__VideoEncoderConfiguration::H264 = H264; - _p->tt__VideoEncoderConfiguration::Multicast = Multicast; - _p->tt__VideoEncoderConfiguration::SessionTimeout = SessionTimeout; - _p->tt__VideoEncoderConfiguration::__any = __any; - _p->tt__VideoEncoderConfiguration::GuaranteedFrameRate = GuaranteedFrameRate; - _p->tt__VideoEncoderConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__VideoEncoderConfiguration(struct soap *soap, tt__VideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoEncoderConfiguration(struct soap *soap, const char *URL, tt__VideoEncoderConfiguration 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, "tt:VideoEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoEncoderConfiguration(struct soap *soap, const char *URL, tt__VideoEncoderConfiguration 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, "tt:VideoEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoEncoderConfiguration(struct soap *soap, const char *URL, tt__VideoEncoderConfiguration 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, "tt:VideoEncoderConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoEncoderConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoEncoderConfiguration * SOAP_FMAC4 soap_get_tt__VideoEncoderConfiguration(struct soap*, tt__VideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read_tt__VideoEncoderConfiguration(struct soap *soap, tt__VideoEncoderConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoEncoderConfiguration(struct soap *soap, const char *URL, tt__VideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoEncoderConfiguration(struct soap *soap, tt__VideoEncoderConfiguration *p) -{ - if (::soap_read_tt__VideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__SceneOrientation_DEFINED -#define SOAP_TYPE_tt__SceneOrientation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__SceneOrientation(struct soap*, const char*, int, const tt__SceneOrientation *, const char*); -SOAP_FMAC3 tt__SceneOrientation * SOAP_FMAC4 soap_in_tt__SceneOrientation(struct soap*, const char*, tt__SceneOrientation *, const char*); -SOAP_FMAC1 tt__SceneOrientation * SOAP_FMAC2 soap_instantiate_tt__SceneOrientation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__SceneOrientation * soap_new_tt__SceneOrientation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__SceneOrientation(soap, n, NULL, NULL, NULL); -} - -inline tt__SceneOrientation * soap_new_req_tt__SceneOrientation( - struct soap *soap, - enum tt__SceneOrientationMode Mode) -{ - tt__SceneOrientation *_p = ::soap_new_tt__SceneOrientation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SceneOrientation::Mode = Mode; - } - return _p; -} - -inline tt__SceneOrientation * soap_new_set_tt__SceneOrientation( - struct soap *soap, - enum tt__SceneOrientationMode Mode, - std::string *Orientation) -{ - tt__SceneOrientation *_p = ::soap_new_tt__SceneOrientation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__SceneOrientation::Mode = Mode; - _p->tt__SceneOrientation::Orientation = Orientation; - } - return _p; -} - -inline int soap_write_tt__SceneOrientation(struct soap *soap, tt__SceneOrientation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:SceneOrientation", p->soap_type() == SOAP_TYPE_tt__SceneOrientation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__SceneOrientation(struct soap *soap, const char *URL, tt__SceneOrientation 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, "tt:SceneOrientation", p->soap_type() == SOAP_TYPE_tt__SceneOrientation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__SceneOrientation(struct soap *soap, const char *URL, tt__SceneOrientation 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, "tt:SceneOrientation", p->soap_type() == SOAP_TYPE_tt__SceneOrientation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__SceneOrientation(struct soap *soap, const char *URL, tt__SceneOrientation 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, "tt:SceneOrientation", p->soap_type() == SOAP_TYPE_tt__SceneOrientation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__SceneOrientation * SOAP_FMAC4 soap_get_tt__SceneOrientation(struct soap*, tt__SceneOrientation *, const char*, const char*); - -inline int soap_read_tt__SceneOrientation(struct soap *soap, tt__SceneOrientation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__SceneOrientation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__SceneOrientation(struct soap *soap, const char *URL, tt__SceneOrientation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__SceneOrientation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__SceneOrientation(struct soap *soap, tt__SceneOrientation *p) -{ - if (::soap_read_tt__SceneOrientation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RotateOptionsExtension_DEFINED -#define SOAP_TYPE_tt__RotateOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateOptionsExtension(struct soap*, const char*, int, const tt__RotateOptionsExtension *, const char*); -SOAP_FMAC3 tt__RotateOptionsExtension * SOAP_FMAC4 soap_in_tt__RotateOptionsExtension(struct soap*, const char*, tt__RotateOptionsExtension *, const char*); -SOAP_FMAC1 tt__RotateOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__RotateOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RotateOptionsExtension * soap_new_tt__RotateOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RotateOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__RotateOptionsExtension * soap_new_req_tt__RotateOptionsExtension( - struct soap *soap) -{ - tt__RotateOptionsExtension *_p = ::soap_new_tt__RotateOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RotateOptionsExtension * soap_new_set_tt__RotateOptionsExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__RotateOptionsExtension *_p = ::soap_new_tt__RotateOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RotateOptionsExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__RotateOptionsExtension(struct soap *soap, tt__RotateOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RotateOptionsExtension", p->soap_type() == SOAP_TYPE_tt__RotateOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RotateOptionsExtension(struct soap *soap, const char *URL, tt__RotateOptionsExtension 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, "tt:RotateOptionsExtension", p->soap_type() == SOAP_TYPE_tt__RotateOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RotateOptionsExtension(struct soap *soap, const char *URL, tt__RotateOptionsExtension 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, "tt:RotateOptionsExtension", p->soap_type() == SOAP_TYPE_tt__RotateOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RotateOptionsExtension(struct soap *soap, const char *URL, tt__RotateOptionsExtension 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, "tt:RotateOptionsExtension", p->soap_type() == SOAP_TYPE_tt__RotateOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RotateOptionsExtension * SOAP_FMAC4 soap_get_tt__RotateOptionsExtension(struct soap*, tt__RotateOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__RotateOptionsExtension(struct soap *soap, tt__RotateOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RotateOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RotateOptionsExtension(struct soap *soap, const char *URL, tt__RotateOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RotateOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RotateOptionsExtension(struct soap *soap, tt__RotateOptionsExtension *p) -{ - if (::soap_read_tt__RotateOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RotateOptions_DEFINED -#define SOAP_TYPE_tt__RotateOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateOptions(struct soap*, const char*, int, const tt__RotateOptions *, const char*); -SOAP_FMAC3 tt__RotateOptions * SOAP_FMAC4 soap_in_tt__RotateOptions(struct soap*, const char*, tt__RotateOptions *, const char*); -SOAP_FMAC1 tt__RotateOptions * SOAP_FMAC2 soap_instantiate_tt__RotateOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RotateOptions * soap_new_tt__RotateOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RotateOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__RotateOptions * soap_new_req_tt__RotateOptions( - struct soap *soap, - const std::vector & Mode) -{ - tt__RotateOptions *_p = ::soap_new_tt__RotateOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RotateOptions::Mode = Mode; - } - return _p; -} - -inline tt__RotateOptions * soap_new_set_tt__RotateOptions( - struct soap *soap, - const std::vector & Mode, - tt__IntItems *DegreeList, - tt__RotateOptionsExtension *Extension, - bool *Reboot, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__RotateOptions *_p = ::soap_new_tt__RotateOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RotateOptions::Mode = Mode; - _p->tt__RotateOptions::DegreeList = DegreeList; - _p->tt__RotateOptions::Extension = Extension; - _p->tt__RotateOptions::Reboot = Reboot; - _p->tt__RotateOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__RotateOptions(struct soap *soap, tt__RotateOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RotateOptions", p->soap_type() == SOAP_TYPE_tt__RotateOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RotateOptions(struct soap *soap, const char *URL, tt__RotateOptions 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, "tt:RotateOptions", p->soap_type() == SOAP_TYPE_tt__RotateOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RotateOptions(struct soap *soap, const char *URL, tt__RotateOptions 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, "tt:RotateOptions", p->soap_type() == SOAP_TYPE_tt__RotateOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RotateOptions(struct soap *soap, const char *URL, tt__RotateOptions 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, "tt:RotateOptions", p->soap_type() == SOAP_TYPE_tt__RotateOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RotateOptions * SOAP_FMAC4 soap_get_tt__RotateOptions(struct soap*, tt__RotateOptions *, const char*, const char*); - -inline int soap_read_tt__RotateOptions(struct soap *soap, tt__RotateOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RotateOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RotateOptions(struct soap *soap, const char *URL, tt__RotateOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RotateOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RotateOptions(struct soap *soap, tt__RotateOptions *p) -{ - if (::soap_read_tt__RotateOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2_DEFINED -#define SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationOptionsExtension2(struct soap*, const char*, int, const tt__VideoSourceConfigurationOptionsExtension2 *, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension2 * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationOptionsExtension2(struct soap*, const char*, tt__VideoSourceConfigurationOptionsExtension2 *, const char*); -SOAP_FMAC1 tt__VideoSourceConfigurationOptionsExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationOptionsExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceConfigurationOptionsExtension2 * soap_new_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceConfigurationOptionsExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceConfigurationOptionsExtension2 * soap_new_req_tt__VideoSourceConfigurationOptionsExtension2( - struct soap *soap) -{ - tt__VideoSourceConfigurationOptionsExtension2 *_p = ::soap_new_tt__VideoSourceConfigurationOptionsExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoSourceConfigurationOptionsExtension2 * soap_new_set_tt__VideoSourceConfigurationOptionsExtension2( - struct soap *soap, - const std::vector & SceneOrientationMode, - const std::vector & __any) -{ - tt__VideoSourceConfigurationOptionsExtension2 *_p = ::soap_new_tt__VideoSourceConfigurationOptionsExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfigurationOptionsExtension2::SceneOrientationMode = SceneOrientationMode; - _p->tt__VideoSourceConfigurationOptionsExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension2 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, "tt:VideoSourceConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension2 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, "tt:VideoSourceConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension2 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, "tt:VideoSourceConfigurationOptionsExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension2 * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationOptionsExtension2(struct soap*, tt__VideoSourceConfigurationOptionsExtension2 *, const char*, const char*); - -inline int soap_read_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceConfigurationOptionsExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceConfigurationOptionsExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceConfigurationOptionsExtension2(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension2 *p) -{ - if (::soap_read_tt__VideoSourceConfigurationOptionsExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationOptionsExtension(struct soap*, const char*, int, const tt__VideoSourceConfigurationOptionsExtension *, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationOptionsExtension(struct soap*, const char*, tt__VideoSourceConfigurationOptionsExtension *, const char*); -SOAP_FMAC1 tt__VideoSourceConfigurationOptionsExtension * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationOptionsExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceConfigurationOptionsExtension * soap_new_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceConfigurationOptionsExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceConfigurationOptionsExtension * soap_new_req_tt__VideoSourceConfigurationOptionsExtension( - struct soap *soap) -{ - tt__VideoSourceConfigurationOptionsExtension *_p = ::soap_new_tt__VideoSourceConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoSourceConfigurationOptionsExtension * soap_new_set_tt__VideoSourceConfigurationOptionsExtension( - struct soap *soap, - const std::vector & __any, - tt__RotateOptions *Rotate, - tt__VideoSourceConfigurationOptionsExtension2 *Extension) -{ - tt__VideoSourceConfigurationOptionsExtension *_p = ::soap_new_tt__VideoSourceConfigurationOptionsExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfigurationOptionsExtension::__any = __any; - _p->tt__VideoSourceConfigurationOptionsExtension::Rotate = Rotate; - _p->tt__VideoSourceConfigurationOptionsExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension 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, "tt:VideoSourceConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension 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, "tt:VideoSourceConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension 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, "tt:VideoSourceConfigurationOptionsExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptionsExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationOptionsExtension(struct soap*, tt__VideoSourceConfigurationOptionsExtension *, const char*, const char*); - -inline int soap_read_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceConfigurationOptionsExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptionsExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceConfigurationOptionsExtension(struct soap *soap, tt__VideoSourceConfigurationOptionsExtension *p) -{ - if (::soap_read_tt__VideoSourceConfigurationOptionsExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_tt__VideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationOptions(struct soap*, const char*, int, const tt__VideoSourceConfigurationOptions *, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationOptions * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationOptions(struct soap*, const char*, tt__VideoSourceConfigurationOptions *, const char*); -SOAP_FMAC1 tt__VideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceConfigurationOptions * soap_new_tt__VideoSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceConfigurationOptions * soap_new_req_tt__VideoSourceConfigurationOptions( - struct soap *soap, - tt__IntRectangleRange *BoundsRange, - const std::vector & VideoSourceTokensAvailable) -{ - tt__VideoSourceConfigurationOptions *_p = ::soap_new_tt__VideoSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfigurationOptions::BoundsRange = BoundsRange; - _p->tt__VideoSourceConfigurationOptions::VideoSourceTokensAvailable = VideoSourceTokensAvailable; - } - return _p; -} - -inline tt__VideoSourceConfigurationOptions * soap_new_set_tt__VideoSourceConfigurationOptions( - struct soap *soap, - tt__IntRectangleRange *BoundsRange, - const std::vector & VideoSourceTokensAvailable, - tt__VideoSourceConfigurationOptionsExtension *Extension, - int *MaximumNumberOfProfiles, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__VideoSourceConfigurationOptions *_p = ::soap_new_tt__VideoSourceConfigurationOptions(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfigurationOptions::BoundsRange = BoundsRange; - _p->tt__VideoSourceConfigurationOptions::VideoSourceTokensAvailable = VideoSourceTokensAvailable; - _p->tt__VideoSourceConfigurationOptions::Extension = Extension; - _p->tt__VideoSourceConfigurationOptions::MaximumNumberOfProfiles = MaximumNumberOfProfiles; - _p->tt__VideoSourceConfigurationOptions::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__VideoSourceConfigurationOptions(struct soap *soap, tt__VideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceConfigurationOptions(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptions 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, "tt:VideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceConfigurationOptions(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptions 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, "tt:VideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceConfigurationOptions(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptions 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, "tt:VideoSourceConfigurationOptions", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationOptions ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceConfigurationOptions * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationOptions(struct soap*, tt__VideoSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read_tt__VideoSourceConfigurationOptions(struct soap *soap, tt__VideoSourceConfigurationOptions *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceConfigurationOptions(struct soap *soap, const char *URL, tt__VideoSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceConfigurationOptions(struct soap *soap, tt__VideoSourceConfigurationOptions *p) -{ - if (::soap_read_tt__VideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LensDescription_DEFINED -#define SOAP_TYPE_tt__LensDescription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LensDescription(struct soap*, const char*, int, const tt__LensDescription *, const char*); -SOAP_FMAC3 tt__LensDescription * SOAP_FMAC4 soap_in_tt__LensDescription(struct soap*, const char*, tt__LensDescription *, const char*); -SOAP_FMAC1 tt__LensDescription * SOAP_FMAC2 soap_instantiate_tt__LensDescription(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LensDescription * soap_new_tt__LensDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LensDescription(soap, n, NULL, NULL, NULL); -} - -inline tt__LensDescription * soap_new_req_tt__LensDescription( - struct soap *soap, - tt__LensOffset *Offset, - const std::vector & Projection, - float XFactor) -{ - tt__LensDescription *_p = ::soap_new_tt__LensDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LensDescription::Offset = Offset; - _p->tt__LensDescription::Projection = Projection; - _p->tt__LensDescription::XFactor = XFactor; - } - return _p; -} - -inline tt__LensDescription * soap_new_set_tt__LensDescription( - struct soap *soap, - tt__LensOffset *Offset, - const std::vector & Projection, - float XFactor, - const std::vector & __any, - float *FocalLength, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__LensDescription *_p = ::soap_new_tt__LensDescription(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LensDescription::Offset = Offset; - _p->tt__LensDescription::Projection = Projection; - _p->tt__LensDescription::XFactor = XFactor; - _p->tt__LensDescription::__any = __any; - _p->tt__LensDescription::FocalLength = FocalLength; - _p->tt__LensDescription::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__LensDescription(struct soap *soap, tt__LensDescription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LensDescription", p->soap_type() == SOAP_TYPE_tt__LensDescription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LensDescription(struct soap *soap, const char *URL, tt__LensDescription 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, "tt:LensDescription", p->soap_type() == SOAP_TYPE_tt__LensDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LensDescription(struct soap *soap, const char *URL, tt__LensDescription 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, "tt:LensDescription", p->soap_type() == SOAP_TYPE_tt__LensDescription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LensDescription(struct soap *soap, const char *URL, tt__LensDescription 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, "tt:LensDescription", p->soap_type() == SOAP_TYPE_tt__LensDescription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LensDescription * SOAP_FMAC4 soap_get_tt__LensDescription(struct soap*, tt__LensDescription *, const char*, const char*); - -inline int soap_read_tt__LensDescription(struct soap *soap, tt__LensDescription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LensDescription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LensDescription(struct soap *soap, const char *URL, tt__LensDescription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LensDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LensDescription(struct soap *soap, tt__LensDescription *p) -{ - if (::soap_read_tt__LensDescription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LensOffset_DEFINED -#define SOAP_TYPE_tt__LensOffset_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LensOffset(struct soap*, const char*, int, const tt__LensOffset *, const char*); -SOAP_FMAC3 tt__LensOffset * SOAP_FMAC4 soap_in_tt__LensOffset(struct soap*, const char*, tt__LensOffset *, const char*); -SOAP_FMAC1 tt__LensOffset * SOAP_FMAC2 soap_instantiate_tt__LensOffset(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LensOffset * soap_new_tt__LensOffset(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LensOffset(soap, n, NULL, NULL, NULL); -} - -inline tt__LensOffset * soap_new_req_tt__LensOffset( - struct soap *soap) -{ - tt__LensOffset *_p = ::soap_new_tt__LensOffset(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__LensOffset * soap_new_set_tt__LensOffset( - struct soap *soap, - float *x, - float *y, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__LensOffset *_p = ::soap_new_tt__LensOffset(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LensOffset::x = x; - _p->tt__LensOffset::y = y; - _p->tt__LensOffset::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__LensOffset(struct soap *soap, tt__LensOffset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LensOffset", p->soap_type() == SOAP_TYPE_tt__LensOffset ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LensOffset(struct soap *soap, const char *URL, tt__LensOffset 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, "tt:LensOffset", p->soap_type() == SOAP_TYPE_tt__LensOffset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LensOffset(struct soap *soap, const char *URL, tt__LensOffset 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, "tt:LensOffset", p->soap_type() == SOAP_TYPE_tt__LensOffset ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LensOffset(struct soap *soap, const char *URL, tt__LensOffset 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, "tt:LensOffset", p->soap_type() == SOAP_TYPE_tt__LensOffset ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LensOffset * SOAP_FMAC4 soap_get_tt__LensOffset(struct soap*, tt__LensOffset *, const char*, const char*); - -inline int soap_read_tt__LensOffset(struct soap *soap, tt__LensOffset *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LensOffset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LensOffset(struct soap *soap, const char *URL, tt__LensOffset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LensOffset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LensOffset(struct soap *soap, tt__LensOffset *p) -{ - if (::soap_read_tt__LensOffset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LensProjection_DEFINED -#define SOAP_TYPE_tt__LensProjection_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LensProjection(struct soap*, const char*, int, const tt__LensProjection *, const char*); -SOAP_FMAC3 tt__LensProjection * SOAP_FMAC4 soap_in_tt__LensProjection(struct soap*, const char*, tt__LensProjection *, const char*); -SOAP_FMAC1 tt__LensProjection * SOAP_FMAC2 soap_instantiate_tt__LensProjection(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LensProjection * soap_new_tt__LensProjection(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LensProjection(soap, n, NULL, NULL, NULL); -} - -inline tt__LensProjection * soap_new_req_tt__LensProjection( - struct soap *soap, - float Angle, - float Radius) -{ - tt__LensProjection *_p = ::soap_new_tt__LensProjection(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LensProjection::Angle = Angle; - _p->tt__LensProjection::Radius = Radius; - } - return _p; -} - -inline tt__LensProjection * soap_new_set_tt__LensProjection( - struct soap *soap, - float Angle, - float Radius, - float *Transmittance, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__LensProjection *_p = ::soap_new_tt__LensProjection(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LensProjection::Angle = Angle; - _p->tt__LensProjection::Radius = Radius; - _p->tt__LensProjection::Transmittance = Transmittance; - _p->tt__LensProjection::__any = __any; - _p->tt__LensProjection::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__LensProjection(struct soap *soap, tt__LensProjection const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LensProjection", p->soap_type() == SOAP_TYPE_tt__LensProjection ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LensProjection(struct soap *soap, const char *URL, tt__LensProjection 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, "tt:LensProjection", p->soap_type() == SOAP_TYPE_tt__LensProjection ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LensProjection(struct soap *soap, const char *URL, tt__LensProjection 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, "tt:LensProjection", p->soap_type() == SOAP_TYPE_tt__LensProjection ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LensProjection(struct soap *soap, const char *URL, tt__LensProjection 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, "tt:LensProjection", p->soap_type() == SOAP_TYPE_tt__LensProjection ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LensProjection * SOAP_FMAC4 soap_get_tt__LensProjection(struct soap*, tt__LensProjection *, const char*, const char*); - -inline int soap_read_tt__LensProjection(struct soap *soap, tt__LensProjection *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LensProjection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LensProjection(struct soap *soap, const char *URL, tt__LensProjection *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LensProjection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LensProjection(struct soap *soap, tt__LensProjection *p) -{ - if (::soap_read_tt__LensProjection(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__RotateExtension_DEFINED -#define SOAP_TYPE_tt__RotateExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__RotateExtension(struct soap*, const char*, int, const tt__RotateExtension *, const char*); -SOAP_FMAC3 tt__RotateExtension * SOAP_FMAC4 soap_in_tt__RotateExtension(struct soap*, const char*, tt__RotateExtension *, const char*); -SOAP_FMAC1 tt__RotateExtension * SOAP_FMAC2 soap_instantiate_tt__RotateExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__RotateExtension * soap_new_tt__RotateExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__RotateExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__RotateExtension * soap_new_req_tt__RotateExtension( - struct soap *soap) -{ - tt__RotateExtension *_p = ::soap_new_tt__RotateExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__RotateExtension * soap_new_set_tt__RotateExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__RotateExtension *_p = ::soap_new_tt__RotateExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__RotateExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__RotateExtension(struct soap *soap, tt__RotateExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:RotateExtension", p->soap_type() == SOAP_TYPE_tt__RotateExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__RotateExtension(struct soap *soap, const char *URL, tt__RotateExtension 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, "tt:RotateExtension", p->soap_type() == SOAP_TYPE_tt__RotateExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__RotateExtension(struct soap *soap, const char *URL, tt__RotateExtension 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, "tt:RotateExtension", p->soap_type() == SOAP_TYPE_tt__RotateExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__RotateExtension(struct soap *soap, const char *URL, tt__RotateExtension 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, "tt:RotateExtension", p->soap_type() == SOAP_TYPE_tt__RotateExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__RotateExtension * SOAP_FMAC4 soap_get_tt__RotateExtension(struct soap*, tt__RotateExtension *, const char*, const char*); - -inline int soap_read_tt__RotateExtension(struct soap *soap, tt__RotateExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__RotateExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__RotateExtension(struct soap *soap, const char *URL, tt__RotateExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__RotateExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__RotateExtension(struct soap *soap, tt__RotateExtension *p) -{ - if (::soap_read_tt__RotateExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Rotate_DEFINED -#define SOAP_TYPE_tt__Rotate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Rotate(struct soap*, const char*, int, const tt__Rotate *, const char*); -SOAP_FMAC3 tt__Rotate * SOAP_FMAC4 soap_in_tt__Rotate(struct soap*, const char*, tt__Rotate *, const char*); -SOAP_FMAC1 tt__Rotate * SOAP_FMAC2 soap_instantiate_tt__Rotate(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Rotate * soap_new_tt__Rotate(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Rotate(soap, n, NULL, NULL, NULL); -} - -inline tt__Rotate * soap_new_req_tt__Rotate( - struct soap *soap, - enum tt__RotateMode Mode) -{ - tt__Rotate *_p = ::soap_new_tt__Rotate(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Rotate::Mode = Mode; - } - return _p; -} - -inline tt__Rotate * soap_new_set_tt__Rotate( - struct soap *soap, - enum tt__RotateMode Mode, - int *Degree, - tt__RotateExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Rotate *_p = ::soap_new_tt__Rotate(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Rotate::Mode = Mode; - _p->tt__Rotate::Degree = Degree; - _p->tt__Rotate::Extension = Extension; - _p->tt__Rotate::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Rotate(struct soap *soap, tt__Rotate const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Rotate", p->soap_type() == SOAP_TYPE_tt__Rotate ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Rotate(struct soap *soap, const char *URL, tt__Rotate 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, "tt:Rotate", p->soap_type() == SOAP_TYPE_tt__Rotate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Rotate(struct soap *soap, const char *URL, tt__Rotate 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, "tt:Rotate", p->soap_type() == SOAP_TYPE_tt__Rotate ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Rotate(struct soap *soap, const char *URL, tt__Rotate 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, "tt:Rotate", p->soap_type() == SOAP_TYPE_tt__Rotate ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Rotate * SOAP_FMAC4 soap_get_tt__Rotate(struct soap*, tt__Rotate *, const char*, const char*); - -inline int soap_read_tt__Rotate(struct soap *soap, tt__Rotate *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Rotate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Rotate(struct soap *soap, const char *URL, tt__Rotate *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Rotate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Rotate(struct soap *soap, tt__Rotate *p) -{ - if (::soap_read_tt__Rotate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceConfigurationExtension2_DEFINED -#define SOAP_TYPE_tt__VideoSourceConfigurationExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationExtension2(struct soap*, const char*, int, const tt__VideoSourceConfigurationExtension2 *, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationExtension2 * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationExtension2(struct soap*, const char*, tt__VideoSourceConfigurationExtension2 *, const char*); -SOAP_FMAC1 tt__VideoSourceConfigurationExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceConfigurationExtension2 * soap_new_tt__VideoSourceConfigurationExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceConfigurationExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceConfigurationExtension2 * soap_new_req_tt__VideoSourceConfigurationExtension2( - struct soap *soap) -{ - tt__VideoSourceConfigurationExtension2 *_p = ::soap_new_tt__VideoSourceConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoSourceConfigurationExtension2 * soap_new_set_tt__VideoSourceConfigurationExtension2( - struct soap *soap, - const std::vector & LensDescription, - tt__SceneOrientation *SceneOrientation, - const std::vector & __any) -{ - tt__VideoSourceConfigurationExtension2 *_p = ::soap_new_tt__VideoSourceConfigurationExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfigurationExtension2::LensDescription = LensDescription; - _p->tt__VideoSourceConfigurationExtension2::SceneOrientation = SceneOrientation; - _p->tt__VideoSourceConfigurationExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__VideoSourceConfigurationExtension2(struct soap *soap, tt__VideoSourceConfigurationExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceConfigurationExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension2 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, "tt:VideoSourceConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceConfigurationExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension2 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, "tt:VideoSourceConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceConfigurationExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension2 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, "tt:VideoSourceConfigurationExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceConfigurationExtension2 * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationExtension2(struct soap*, tt__VideoSourceConfigurationExtension2 *, const char*, const char*); - -inline int soap_read_tt__VideoSourceConfigurationExtension2(struct soap *soap, tt__VideoSourceConfigurationExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceConfigurationExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceConfigurationExtension2(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceConfigurationExtension2(struct soap *soap, tt__VideoSourceConfigurationExtension2 *p) -{ - if (::soap_read_tt__VideoSourceConfigurationExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceConfigurationExtension_DEFINED -#define SOAP_TYPE_tt__VideoSourceConfigurationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfigurationExtension(struct soap*, const char*, int, const tt__VideoSourceConfigurationExtension *, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationExtension * SOAP_FMAC4 soap_in_tt__VideoSourceConfigurationExtension(struct soap*, const char*, tt__VideoSourceConfigurationExtension *, const char*); -SOAP_FMAC1 tt__VideoSourceConfigurationExtension * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfigurationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceConfigurationExtension * soap_new_tt__VideoSourceConfigurationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceConfigurationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceConfigurationExtension * soap_new_req_tt__VideoSourceConfigurationExtension( - struct soap *soap) -{ - tt__VideoSourceConfigurationExtension *_p = ::soap_new_tt__VideoSourceConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoSourceConfigurationExtension * soap_new_set_tt__VideoSourceConfigurationExtension( - struct soap *soap, - tt__Rotate *Rotate, - tt__VideoSourceConfigurationExtension2 *Extension) -{ - tt__VideoSourceConfigurationExtension *_p = ::soap_new_tt__VideoSourceConfigurationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfigurationExtension::Rotate = Rotate; - _p->tt__VideoSourceConfigurationExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__VideoSourceConfigurationExtension(struct soap *soap, tt__VideoSourceConfigurationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceConfigurationExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension 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, "tt:VideoSourceConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceConfigurationExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension 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, "tt:VideoSourceConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceConfigurationExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension 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, "tt:VideoSourceConfigurationExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfigurationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceConfigurationExtension * SOAP_FMAC4 soap_get_tt__VideoSourceConfigurationExtension(struct soap*, tt__VideoSourceConfigurationExtension *, const char*, const char*); - -inline int soap_read_tt__VideoSourceConfigurationExtension(struct soap *soap, tt__VideoSourceConfigurationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceConfigurationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceConfigurationExtension(struct soap *soap, const char *URL, tt__VideoSourceConfigurationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceConfigurationExtension(struct soap *soap, tt__VideoSourceConfigurationExtension *p) -{ - if (::soap_read_tt__VideoSourceConfigurationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceConfiguration_DEFINED -#define SOAP_TYPE_tt__VideoSourceConfiguration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceConfiguration(struct soap*, const char*, int, const tt__VideoSourceConfiguration *, const char*); -SOAP_FMAC3 tt__VideoSourceConfiguration * SOAP_FMAC4 soap_in_tt__VideoSourceConfiguration(struct soap*, const char*, tt__VideoSourceConfiguration *, const char*); -SOAP_FMAC1 tt__VideoSourceConfiguration * SOAP_FMAC2 soap_instantiate_tt__VideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceConfiguration * soap_new_tt__VideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceConfiguration * soap_new_req_tt__VideoSourceConfiguration( - struct soap *soap, - const std::string& SourceToken, - tt__IntRectangle *Bounds, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoSourceConfiguration *_p = ::soap_new_tt__VideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfiguration::SourceToken = SourceToken; - _p->tt__VideoSourceConfiguration::Bounds = Bounds; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline tt__VideoSourceConfiguration * soap_new_set_tt__VideoSourceConfiguration( - struct soap *soap, - const std::string& SourceToken, - tt__IntRectangle *Bounds, - const std::vector & __any, - tt__VideoSourceConfigurationExtension *Extension, - std::string *ViewMode, - const struct soap_dom_attribute& __anyAttribute, - const std::string& Name__1, - int UseCount__1, - const std::string& token__1) -{ - tt__VideoSourceConfiguration *_p = ::soap_new_tt__VideoSourceConfiguration(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceConfiguration::SourceToken = SourceToken; - _p->tt__VideoSourceConfiguration::Bounds = Bounds; - _p->tt__VideoSourceConfiguration::__any = __any; - _p->tt__VideoSourceConfiguration::Extension = Extension; - _p->tt__VideoSourceConfiguration::ViewMode = ViewMode; - _p->tt__VideoSourceConfiguration::__anyAttribute = __anyAttribute; - _p->tt__ConfigurationEntity::Name = Name__1; - _p->tt__ConfigurationEntity::UseCount = UseCount__1; - _p->tt__ConfigurationEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__VideoSourceConfiguration(struct soap *soap, tt__VideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceConfiguration(struct soap *soap, const char *URL, tt__VideoSourceConfiguration 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, "tt:VideoSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceConfiguration(struct soap *soap, const char *URL, tt__VideoSourceConfiguration 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, "tt:VideoSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfiguration ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceConfiguration(struct soap *soap, const char *URL, tt__VideoSourceConfiguration 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, "tt:VideoSourceConfiguration", p->soap_type() == SOAP_TYPE_tt__VideoSourceConfiguration ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceConfiguration * SOAP_FMAC4 soap_get_tt__VideoSourceConfiguration(struct soap*, tt__VideoSourceConfiguration *, const char*, const char*); - -inline int soap_read_tt__VideoSourceConfiguration(struct soap *soap, tt__VideoSourceConfiguration *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceConfiguration(struct soap *soap, const char *URL, tt__VideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceConfiguration(struct soap *soap, tt__VideoSourceConfiguration *p) -{ - if (::soap_read_tt__VideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ConfigurationEntity_DEFINED -#define SOAP_TYPE_tt__ConfigurationEntity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ConfigurationEntity(struct soap*, const char*, int, const tt__ConfigurationEntity *, const char*); -SOAP_FMAC3 tt__ConfigurationEntity * SOAP_FMAC4 soap_in_tt__ConfigurationEntity(struct soap*, const char*, tt__ConfigurationEntity *, const char*); -SOAP_FMAC1 tt__ConfigurationEntity * SOAP_FMAC2 soap_instantiate_tt__ConfigurationEntity(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ConfigurationEntity * soap_new_tt__ConfigurationEntity(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ConfigurationEntity(soap, n, NULL, NULL, NULL); -} - -inline tt__ConfigurationEntity * soap_new_req_tt__ConfigurationEntity( - struct soap *soap, - const std::string& Name, - int UseCount, - const std::string& token) -{ - tt__ConfigurationEntity *_p = ::soap_new_tt__ConfigurationEntity(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ConfigurationEntity::Name = Name; - _p->tt__ConfigurationEntity::UseCount = UseCount; - _p->tt__ConfigurationEntity::token = token; - } - return _p; -} - -inline tt__ConfigurationEntity * soap_new_set_tt__ConfigurationEntity( - struct soap *soap, - const std::string& Name, - int UseCount, - const std::string& token) -{ - tt__ConfigurationEntity *_p = ::soap_new_tt__ConfigurationEntity(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ConfigurationEntity::Name = Name; - _p->tt__ConfigurationEntity::UseCount = UseCount; - _p->tt__ConfigurationEntity::token = token; - } - return _p; -} - -inline int soap_write_tt__ConfigurationEntity(struct soap *soap, tt__ConfigurationEntity const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ConfigurationEntity", p->soap_type() == SOAP_TYPE_tt__ConfigurationEntity ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ConfigurationEntity(struct soap *soap, const char *URL, tt__ConfigurationEntity 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, "tt:ConfigurationEntity", p->soap_type() == SOAP_TYPE_tt__ConfigurationEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ConfigurationEntity(struct soap *soap, const char *URL, tt__ConfigurationEntity 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, "tt:ConfigurationEntity", p->soap_type() == SOAP_TYPE_tt__ConfigurationEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ConfigurationEntity(struct soap *soap, const char *URL, tt__ConfigurationEntity 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, "tt:ConfigurationEntity", p->soap_type() == SOAP_TYPE_tt__ConfigurationEntity ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ConfigurationEntity * SOAP_FMAC4 soap_get_tt__ConfigurationEntity(struct soap*, tt__ConfigurationEntity *, const char*, const char*); - -inline int soap_read_tt__ConfigurationEntity(struct soap *soap, tt__ConfigurationEntity *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ConfigurationEntity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ConfigurationEntity(struct soap *soap, const char *URL, tt__ConfigurationEntity *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ConfigurationEntity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ConfigurationEntity(struct soap *soap, tt__ConfigurationEntity *p) -{ - if (::soap_read_tt__ConfigurationEntity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ProfileExtension2_DEFINED -#define SOAP_TYPE_tt__ProfileExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileExtension2(struct soap*, const char*, int, const tt__ProfileExtension2 *, const char*); -SOAP_FMAC3 tt__ProfileExtension2 * SOAP_FMAC4 soap_in_tt__ProfileExtension2(struct soap*, const char*, tt__ProfileExtension2 *, const char*); -SOAP_FMAC1 tt__ProfileExtension2 * SOAP_FMAC2 soap_instantiate_tt__ProfileExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ProfileExtension2 * soap_new_tt__ProfileExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ProfileExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__ProfileExtension2 * soap_new_req_tt__ProfileExtension2( - struct soap *soap) -{ - tt__ProfileExtension2 *_p = ::soap_new_tt__ProfileExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ProfileExtension2 * soap_new_set_tt__ProfileExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__ProfileExtension2 *_p = ::soap_new_tt__ProfileExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ProfileExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__ProfileExtension2(struct soap *soap, tt__ProfileExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ProfileExtension2", p->soap_type() == SOAP_TYPE_tt__ProfileExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ProfileExtension2(struct soap *soap, const char *URL, tt__ProfileExtension2 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, "tt:ProfileExtension2", p->soap_type() == SOAP_TYPE_tt__ProfileExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ProfileExtension2(struct soap *soap, const char *URL, tt__ProfileExtension2 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, "tt:ProfileExtension2", p->soap_type() == SOAP_TYPE_tt__ProfileExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ProfileExtension2(struct soap *soap, const char *URL, tt__ProfileExtension2 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, "tt:ProfileExtension2", p->soap_type() == SOAP_TYPE_tt__ProfileExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ProfileExtension2 * SOAP_FMAC4 soap_get_tt__ProfileExtension2(struct soap*, tt__ProfileExtension2 *, const char*, const char*); - -inline int soap_read_tt__ProfileExtension2(struct soap *soap, tt__ProfileExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ProfileExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ProfileExtension2(struct soap *soap, const char *URL, tt__ProfileExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ProfileExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ProfileExtension2(struct soap *soap, tt__ProfileExtension2 *p) -{ - if (::soap_read_tt__ProfileExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ProfileExtension_DEFINED -#define SOAP_TYPE_tt__ProfileExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ProfileExtension(struct soap*, const char*, int, const tt__ProfileExtension *, const char*); -SOAP_FMAC3 tt__ProfileExtension * SOAP_FMAC4 soap_in_tt__ProfileExtension(struct soap*, const char*, tt__ProfileExtension *, const char*); -SOAP_FMAC1 tt__ProfileExtension * SOAP_FMAC2 soap_instantiate_tt__ProfileExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ProfileExtension * soap_new_tt__ProfileExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ProfileExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__ProfileExtension * soap_new_req_tt__ProfileExtension( - struct soap *soap) -{ - tt__ProfileExtension *_p = ::soap_new_tt__ProfileExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ProfileExtension * soap_new_set_tt__ProfileExtension( - struct soap *soap, - const std::vector & __any, - tt__AudioOutputConfiguration *AudioOutputConfiguration, - tt__AudioDecoderConfiguration *AudioDecoderConfiguration, - tt__ProfileExtension2 *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ProfileExtension *_p = ::soap_new_tt__ProfileExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ProfileExtension::__any = __any; - _p->tt__ProfileExtension::AudioOutputConfiguration = AudioOutputConfiguration; - _p->tt__ProfileExtension::AudioDecoderConfiguration = AudioDecoderConfiguration; - _p->tt__ProfileExtension::Extension = Extension; - _p->tt__ProfileExtension::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ProfileExtension(struct soap *soap, tt__ProfileExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ProfileExtension", p->soap_type() == SOAP_TYPE_tt__ProfileExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ProfileExtension(struct soap *soap, const char *URL, tt__ProfileExtension 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, "tt:ProfileExtension", p->soap_type() == SOAP_TYPE_tt__ProfileExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ProfileExtension(struct soap *soap, const char *URL, tt__ProfileExtension 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, "tt:ProfileExtension", p->soap_type() == SOAP_TYPE_tt__ProfileExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ProfileExtension(struct soap *soap, const char *URL, tt__ProfileExtension 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, "tt:ProfileExtension", p->soap_type() == SOAP_TYPE_tt__ProfileExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ProfileExtension * SOAP_FMAC4 soap_get_tt__ProfileExtension(struct soap*, tt__ProfileExtension *, const char*, const char*); - -inline int soap_read_tt__ProfileExtension(struct soap *soap, tt__ProfileExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ProfileExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ProfileExtension(struct soap *soap, const char *URL, tt__ProfileExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ProfileExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ProfileExtension(struct soap *soap, tt__ProfileExtension *p) -{ - if (::soap_read_tt__ProfileExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Profile_DEFINED -#define SOAP_TYPE_tt__Profile_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Profile(struct soap*, const char*, int, const tt__Profile *, const char*); -SOAP_FMAC3 tt__Profile * SOAP_FMAC4 soap_in_tt__Profile(struct soap*, const char*, tt__Profile *, const char*); -SOAP_FMAC1 tt__Profile * SOAP_FMAC2 soap_instantiate_tt__Profile(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Profile * soap_new_tt__Profile(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Profile(soap, n, NULL, NULL, NULL); -} - -inline tt__Profile * soap_new_req_tt__Profile( - struct soap *soap, - const std::string& Name, - const std::string& token) -{ - tt__Profile *_p = ::soap_new_tt__Profile(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Profile::Name = Name; - _p->tt__Profile::token = token; - } - return _p; -} - -inline tt__Profile * soap_new_set_tt__Profile( - struct soap *soap, - const std::string& Name, - tt__VideoSourceConfiguration *VideoSourceConfiguration, - tt__AudioSourceConfiguration *AudioSourceConfiguration, - tt__VideoEncoderConfiguration *VideoEncoderConfiguration, - tt__AudioEncoderConfiguration *AudioEncoderConfiguration, - tt__VideoAnalyticsConfiguration *VideoAnalyticsConfiguration, - tt__PTZConfiguration *PTZConfiguration, - tt__MetadataConfiguration *MetadataConfiguration, - tt__ProfileExtension *Extension, - const std::string& token, - bool *fixed, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Profile *_p = ::soap_new_tt__Profile(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Profile::Name = Name; - _p->tt__Profile::VideoSourceConfiguration = VideoSourceConfiguration; - _p->tt__Profile::AudioSourceConfiguration = AudioSourceConfiguration; - _p->tt__Profile::VideoEncoderConfiguration = VideoEncoderConfiguration; - _p->tt__Profile::AudioEncoderConfiguration = AudioEncoderConfiguration; - _p->tt__Profile::VideoAnalyticsConfiguration = VideoAnalyticsConfiguration; - _p->tt__Profile::PTZConfiguration = PTZConfiguration; - _p->tt__Profile::MetadataConfiguration = MetadataConfiguration; - _p->tt__Profile::Extension = Extension; - _p->tt__Profile::token = token; - _p->tt__Profile::fixed = fixed; - _p->tt__Profile::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Profile(struct soap *soap, tt__Profile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Profile", p->soap_type() == SOAP_TYPE_tt__Profile ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Profile(struct soap *soap, const char *URL, tt__Profile 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, "tt:Profile", p->soap_type() == SOAP_TYPE_tt__Profile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Profile(struct soap *soap, const char *URL, tt__Profile 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, "tt:Profile", p->soap_type() == SOAP_TYPE_tt__Profile ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Profile(struct soap *soap, const char *URL, tt__Profile 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, "tt:Profile", p->soap_type() == SOAP_TYPE_tt__Profile ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Profile * SOAP_FMAC4 soap_get_tt__Profile(struct soap*, tt__Profile *, const char*, const char*); - -inline int soap_read_tt__Profile(struct soap *soap, tt__Profile *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Profile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Profile(struct soap *soap, const char *URL, tt__Profile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Profile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Profile(struct soap *soap, tt__Profile *p) -{ - if (::soap_read_tt__Profile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AudioSource_DEFINED -#define SOAP_TYPE_tt__AudioSource_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AudioSource(struct soap*, const char*, int, const tt__AudioSource *, const char*); -SOAP_FMAC3 tt__AudioSource * SOAP_FMAC4 soap_in_tt__AudioSource(struct soap*, const char*, tt__AudioSource *, const char*); -SOAP_FMAC1 tt__AudioSource * SOAP_FMAC2 soap_instantiate_tt__AudioSource(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AudioSource * soap_new_tt__AudioSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AudioSource(soap, n, NULL, NULL, NULL); -} - -inline tt__AudioSource * soap_new_req_tt__AudioSource( - struct soap *soap, - int Channels, - const std::string& token__1) -{ - tt__AudioSource *_p = ::soap_new_tt__AudioSource(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioSource::Channels = Channels; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__AudioSource * soap_new_set_tt__AudioSource( - struct soap *soap, - int Channels, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__AudioSource *_p = ::soap_new_tt__AudioSource(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AudioSource::Channels = Channels; - _p->tt__AudioSource::__any = __any; - _p->tt__AudioSource::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__AudioSource(struct soap *soap, tt__AudioSource const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AudioSource", p->soap_type() == SOAP_TYPE_tt__AudioSource ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AudioSource(struct soap *soap, const char *URL, tt__AudioSource 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, "tt:AudioSource", p->soap_type() == SOAP_TYPE_tt__AudioSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AudioSource(struct soap *soap, const char *URL, tt__AudioSource 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, "tt:AudioSource", p->soap_type() == SOAP_TYPE_tt__AudioSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AudioSource(struct soap *soap, const char *URL, tt__AudioSource 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, "tt:AudioSource", p->soap_type() == SOAP_TYPE_tt__AudioSource ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AudioSource * SOAP_FMAC4 soap_get_tt__AudioSource(struct soap*, tt__AudioSource *, const char*, const char*); - -inline int soap_read_tt__AudioSource(struct soap *soap, tt__AudioSource *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AudioSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AudioSource(struct soap *soap, const char *URL, tt__AudioSource *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AudioSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AudioSource(struct soap *soap, tt__AudioSource *p) -{ - if (::soap_read_tt__AudioSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceExtension2_DEFINED -#define SOAP_TYPE_tt__VideoSourceExtension2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceExtension2(struct soap*, const char*, int, const tt__VideoSourceExtension2 *, const char*); -SOAP_FMAC3 tt__VideoSourceExtension2 * SOAP_FMAC4 soap_in_tt__VideoSourceExtension2(struct soap*, const char*, tt__VideoSourceExtension2 *, const char*); -SOAP_FMAC1 tt__VideoSourceExtension2 * SOAP_FMAC2 soap_instantiate_tt__VideoSourceExtension2(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceExtension2 * soap_new_tt__VideoSourceExtension2(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceExtension2(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceExtension2 * soap_new_req_tt__VideoSourceExtension2( - struct soap *soap) -{ - tt__VideoSourceExtension2 *_p = ::soap_new_tt__VideoSourceExtension2(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoSourceExtension2 * soap_new_set_tt__VideoSourceExtension2( - struct soap *soap, - const std::vector & __any) -{ - tt__VideoSourceExtension2 *_p = ::soap_new_tt__VideoSourceExtension2(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceExtension2::__any = __any; - } - return _p; -} - -inline int soap_write_tt__VideoSourceExtension2(struct soap *soap, tt__VideoSourceExtension2 const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceExtension2(struct soap *soap, const char *URL, tt__VideoSourceExtension2 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, "tt:VideoSourceExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceExtension2(struct soap *soap, const char *URL, tt__VideoSourceExtension2 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, "tt:VideoSourceExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension2 ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceExtension2(struct soap *soap, const char *URL, tt__VideoSourceExtension2 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, "tt:VideoSourceExtension2", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension2 ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceExtension2 * SOAP_FMAC4 soap_get_tt__VideoSourceExtension2(struct soap*, tt__VideoSourceExtension2 *, const char*, const char*); - -inline int soap_read_tt__VideoSourceExtension2(struct soap *soap, tt__VideoSourceExtension2 *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceExtension2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceExtension2(struct soap *soap, const char *URL, tt__VideoSourceExtension2 *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceExtension2(struct soap *soap, tt__VideoSourceExtension2 *p) -{ - if (::soap_read_tt__VideoSourceExtension2(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSourceExtension_DEFINED -#define SOAP_TYPE_tt__VideoSourceExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSourceExtension(struct soap*, const char*, int, const tt__VideoSourceExtension *, const char*); -SOAP_FMAC3 tt__VideoSourceExtension * SOAP_FMAC4 soap_in_tt__VideoSourceExtension(struct soap*, const char*, tt__VideoSourceExtension *, const char*); -SOAP_FMAC1 tt__VideoSourceExtension * SOAP_FMAC2 soap_instantiate_tt__VideoSourceExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSourceExtension * soap_new_tt__VideoSourceExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSourceExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSourceExtension * soap_new_req_tt__VideoSourceExtension( - struct soap *soap) -{ - tt__VideoSourceExtension *_p = ::soap_new_tt__VideoSourceExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__VideoSourceExtension * soap_new_set_tt__VideoSourceExtension( - struct soap *soap, - const std::vector & __any, - tt__ImagingSettings20 *Imaging, - tt__VideoSourceExtension2 *Extension) -{ - tt__VideoSourceExtension *_p = ::soap_new_tt__VideoSourceExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSourceExtension::__any = __any; - _p->tt__VideoSourceExtension::Imaging = Imaging; - _p->tt__VideoSourceExtension::Extension = Extension; - } - return _p; -} - -inline int soap_write_tt__VideoSourceExtension(struct soap *soap, tt__VideoSourceExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSourceExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSourceExtension(struct soap *soap, const char *URL, tt__VideoSourceExtension 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, "tt:VideoSourceExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSourceExtension(struct soap *soap, const char *URL, tt__VideoSourceExtension 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, "tt:VideoSourceExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSourceExtension(struct soap *soap, const char *URL, tt__VideoSourceExtension 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, "tt:VideoSourceExtension", p->soap_type() == SOAP_TYPE_tt__VideoSourceExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSourceExtension * SOAP_FMAC4 soap_get_tt__VideoSourceExtension(struct soap*, tt__VideoSourceExtension *, const char*, const char*); - -inline int soap_read_tt__VideoSourceExtension(struct soap *soap, tt__VideoSourceExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSourceExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSourceExtension(struct soap *soap, const char *URL, tt__VideoSourceExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSourceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSourceExtension(struct soap *soap, tt__VideoSourceExtension *p) -{ - if (::soap_read_tt__VideoSourceExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__VideoSource_DEFINED -#define SOAP_TYPE_tt__VideoSource_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__VideoSource(struct soap*, const char*, int, const tt__VideoSource *, const char*); -SOAP_FMAC3 tt__VideoSource * SOAP_FMAC4 soap_in_tt__VideoSource(struct soap*, const char*, tt__VideoSource *, const char*); -SOAP_FMAC1 tt__VideoSource * SOAP_FMAC2 soap_instantiate_tt__VideoSource(struct soap*, int, const char*, const char*, size_t*); - -inline tt__VideoSource * soap_new_tt__VideoSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__VideoSource(soap, n, NULL, NULL, NULL); -} - -inline tt__VideoSource * soap_new_req_tt__VideoSource( - struct soap *soap, - float Framerate, - tt__VideoResolution *Resolution, - const std::string& token__1) -{ - tt__VideoSource *_p = ::soap_new_tt__VideoSource(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSource::Framerate = Framerate; - _p->tt__VideoSource::Resolution = Resolution; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline tt__VideoSource * soap_new_set_tt__VideoSource( - struct soap *soap, - float Framerate, - tt__VideoResolution *Resolution, - tt__ImagingSettings *Imaging, - tt__VideoSourceExtension *Extension, - const struct soap_dom_attribute& __anyAttribute, - const std::string& token__1) -{ - tt__VideoSource *_p = ::soap_new_tt__VideoSource(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__VideoSource::Framerate = Framerate; - _p->tt__VideoSource::Resolution = Resolution; - _p->tt__VideoSource::Imaging = Imaging; - _p->tt__VideoSource::Extension = Extension; - _p->tt__VideoSource::__anyAttribute = __anyAttribute; - _p->tt__DeviceEntity::token = token__1; - } - return _p; -} - -inline int soap_write_tt__VideoSource(struct soap *soap, tt__VideoSource const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:VideoSource", p->soap_type() == SOAP_TYPE_tt__VideoSource ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__VideoSource(struct soap *soap, const char *URL, tt__VideoSource 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, "tt:VideoSource", p->soap_type() == SOAP_TYPE_tt__VideoSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__VideoSource(struct soap *soap, const char *URL, tt__VideoSource 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, "tt:VideoSource", p->soap_type() == SOAP_TYPE_tt__VideoSource ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__VideoSource(struct soap *soap, const char *URL, tt__VideoSource 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, "tt:VideoSource", p->soap_type() == SOAP_TYPE_tt__VideoSource ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__VideoSource * SOAP_FMAC4 soap_get_tt__VideoSource(struct soap*, tt__VideoSource *, const char*, const char*); - -inline int soap_read_tt__VideoSource(struct soap *soap, tt__VideoSource *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__VideoSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__VideoSource(struct soap *soap, const char *URL, tt__VideoSource *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__VideoSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__VideoSource(struct soap *soap, tt__VideoSource *p) -{ - if (::soap_read_tt__VideoSource(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__AnyHolder_DEFINED -#define SOAP_TYPE_tt__AnyHolder_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__AnyHolder(struct soap*, const char*, int, const tt__AnyHolder *, const char*); -SOAP_FMAC3 tt__AnyHolder * SOAP_FMAC4 soap_in_tt__AnyHolder(struct soap*, const char*, tt__AnyHolder *, const char*); -SOAP_FMAC1 tt__AnyHolder * SOAP_FMAC2 soap_instantiate_tt__AnyHolder(struct soap*, int, const char*, const char*, size_t*); - -inline tt__AnyHolder * soap_new_tt__AnyHolder(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__AnyHolder(soap, n, NULL, NULL, NULL); -} - -inline tt__AnyHolder * soap_new_req_tt__AnyHolder( - struct soap *soap) -{ - tt__AnyHolder *_p = ::soap_new_tt__AnyHolder(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__AnyHolder * soap_new_set_tt__AnyHolder( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__AnyHolder *_p = ::soap_new_tt__AnyHolder(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__AnyHolder::__any = __any; - _p->tt__AnyHolder::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__AnyHolder(struct soap *soap, tt__AnyHolder const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:AnyHolder", p->soap_type() == SOAP_TYPE_tt__AnyHolder ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__AnyHolder(struct soap *soap, const char *URL, tt__AnyHolder 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, "tt:AnyHolder", p->soap_type() == SOAP_TYPE_tt__AnyHolder ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__AnyHolder(struct soap *soap, const char *URL, tt__AnyHolder 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, "tt:AnyHolder", p->soap_type() == SOAP_TYPE_tt__AnyHolder ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__AnyHolder(struct soap *soap, const char *URL, tt__AnyHolder 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, "tt:AnyHolder", p->soap_type() == SOAP_TYPE_tt__AnyHolder ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__AnyHolder * SOAP_FMAC4 soap_get_tt__AnyHolder(struct soap*, tt__AnyHolder *, const char*, const char*); - -inline int soap_read_tt__AnyHolder(struct soap *soap, tt__AnyHolder *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__AnyHolder(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__AnyHolder(struct soap *soap, const char *URL, tt__AnyHolder *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__AnyHolder(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__AnyHolder(struct soap *soap, tt__AnyHolder *p) -{ - if (::soap_read_tt__AnyHolder(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FloatItems_DEFINED -#define SOAP_TYPE_tt__FloatItems_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatItems(struct soap*, const char*, int, const tt__FloatItems *, const char*); -SOAP_FMAC3 tt__FloatItems * SOAP_FMAC4 soap_in_tt__FloatItems(struct soap*, const char*, tt__FloatItems *, const char*); -SOAP_FMAC1 tt__FloatItems * SOAP_FMAC2 soap_instantiate_tt__FloatItems(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FloatItems * soap_new_tt__FloatItems(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FloatItems(soap, n, NULL, NULL, NULL); -} - -inline tt__FloatItems * soap_new_req_tt__FloatItems( - struct soap *soap) -{ - tt__FloatItems *_p = ::soap_new_tt__FloatItems(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__FloatItems * soap_new_set_tt__FloatItems( - struct soap *soap, - const std::vector & Items) -{ - tt__FloatItems *_p = ::soap_new_tt__FloatItems(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FloatItems::Items = Items; - } - return _p; -} - -inline int soap_write_tt__FloatItems(struct soap *soap, tt__FloatItems const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FloatItems", p->soap_type() == SOAP_TYPE_tt__FloatItems ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FloatItems(struct soap *soap, const char *URL, tt__FloatItems 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, "tt:FloatItems", p->soap_type() == SOAP_TYPE_tt__FloatItems ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FloatItems(struct soap *soap, const char *URL, tt__FloatItems 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, "tt:FloatItems", p->soap_type() == SOAP_TYPE_tt__FloatItems ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FloatItems(struct soap *soap, const char *URL, tt__FloatItems 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, "tt:FloatItems", p->soap_type() == SOAP_TYPE_tt__FloatItems ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FloatItems * SOAP_FMAC4 soap_get_tt__FloatItems(struct soap*, tt__FloatItems *, const char*, const char*); - -inline int soap_read_tt__FloatItems(struct soap *soap, tt__FloatItems *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FloatItems(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FloatItems(struct soap *soap, const char *URL, tt__FloatItems *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FloatItems(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FloatItems(struct soap *soap, tt__FloatItems *p) -{ - if (::soap_read_tt__FloatItems(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IntItems_DEFINED -#define SOAP_TYPE_tt__IntItems_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntItems(struct soap*, const char*, int, const tt__IntItems *, const char*); -SOAP_FMAC3 tt__IntItems * SOAP_FMAC4 soap_in_tt__IntItems(struct soap*, const char*, tt__IntItems *, const char*); -SOAP_FMAC1 tt__IntItems * SOAP_FMAC2 soap_instantiate_tt__IntItems(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IntItems * soap_new_tt__IntItems(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IntItems(soap, n, NULL, NULL, NULL); -} - -inline tt__IntItems * soap_new_req_tt__IntItems( - struct soap *soap) -{ - tt__IntItems *_p = ::soap_new_tt__IntItems(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__IntItems * soap_new_set_tt__IntItems( - struct soap *soap, - const std::vector & Items) -{ - tt__IntItems *_p = ::soap_new_tt__IntItems(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntItems::Items = Items; - } - return _p; -} - -inline int soap_write_tt__IntItems(struct soap *soap, tt__IntItems const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IntItems", p->soap_type() == SOAP_TYPE_tt__IntItems ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IntItems(struct soap *soap, const char *URL, tt__IntItems 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, "tt:IntItems", p->soap_type() == SOAP_TYPE_tt__IntItems ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IntItems(struct soap *soap, const char *URL, tt__IntItems 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, "tt:IntItems", p->soap_type() == SOAP_TYPE_tt__IntItems ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IntItems(struct soap *soap, const char *URL, tt__IntItems 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, "tt:IntItems", p->soap_type() == SOAP_TYPE_tt__IntItems ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IntItems * SOAP_FMAC4 soap_get_tt__IntItems(struct soap*, tt__IntItems *, const char*, const char*); - -inline int soap_read_tt__IntItems(struct soap *soap, tt__IntItems *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IntItems(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IntItems(struct soap *soap, const char *URL, tt__IntItems *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IntItems(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IntItems(struct soap *soap, tt__IntItems *p) -{ - if (::soap_read_tt__IntItems(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DurationRange_DEFINED -#define SOAP_TYPE_tt__DurationRange_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DurationRange(struct soap*, const char*, int, const tt__DurationRange *, const char*); -SOAP_FMAC3 tt__DurationRange * SOAP_FMAC4 soap_in_tt__DurationRange(struct soap*, const char*, tt__DurationRange *, const char*); -SOAP_FMAC1 tt__DurationRange * SOAP_FMAC2 soap_instantiate_tt__DurationRange(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DurationRange * soap_new_tt__DurationRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DurationRange(soap, n, NULL, NULL, NULL); -} - -inline tt__DurationRange * soap_new_req_tt__DurationRange( - struct soap *soap, - const std::string& Min, - const std::string& Max) -{ - tt__DurationRange *_p = ::soap_new_tt__DurationRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DurationRange::Min = Min; - _p->tt__DurationRange::Max = Max; - } - return _p; -} - -inline tt__DurationRange * soap_new_set_tt__DurationRange( - struct soap *soap, - const std::string& Min, - const std::string& Max) -{ - tt__DurationRange *_p = ::soap_new_tt__DurationRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DurationRange::Min = Min; - _p->tt__DurationRange::Max = Max; - } - return _p; -} - -inline int soap_write_tt__DurationRange(struct soap *soap, tt__DurationRange const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DurationRange", p->soap_type() == SOAP_TYPE_tt__DurationRange ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DurationRange(struct soap *soap, const char *URL, tt__DurationRange 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, "tt:DurationRange", p->soap_type() == SOAP_TYPE_tt__DurationRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DurationRange(struct soap *soap, const char *URL, tt__DurationRange 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, "tt:DurationRange", p->soap_type() == SOAP_TYPE_tt__DurationRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DurationRange(struct soap *soap, const char *URL, tt__DurationRange 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, "tt:DurationRange", p->soap_type() == SOAP_TYPE_tt__DurationRange ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DurationRange * SOAP_FMAC4 soap_get_tt__DurationRange(struct soap*, tt__DurationRange *, const char*, const char*); - -inline int soap_read_tt__DurationRange(struct soap *soap, tt__DurationRange *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DurationRange(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DurationRange(struct soap *soap, const char *URL, tt__DurationRange *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DurationRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DurationRange(struct soap *soap, tt__DurationRange *p) -{ - if (::soap_read_tt__DurationRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FloatRange_DEFINED -#define SOAP_TYPE_tt__FloatRange_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatRange(struct soap*, const char*, int, const tt__FloatRange *, const char*); -SOAP_FMAC3 tt__FloatRange * SOAP_FMAC4 soap_in_tt__FloatRange(struct soap*, const char*, tt__FloatRange *, const char*); -SOAP_FMAC1 tt__FloatRange * SOAP_FMAC2 soap_instantiate_tt__FloatRange(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FloatRange * soap_new_tt__FloatRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FloatRange(soap, n, NULL, NULL, NULL); -} - -inline tt__FloatRange * soap_new_req_tt__FloatRange( - struct soap *soap, - float Min, - float Max) -{ - tt__FloatRange *_p = ::soap_new_tt__FloatRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FloatRange::Min = Min; - _p->tt__FloatRange::Max = Max; - } - return _p; -} - -inline tt__FloatRange * soap_new_set_tt__FloatRange( - struct soap *soap, - float Min, - float Max) -{ - tt__FloatRange *_p = ::soap_new_tt__FloatRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FloatRange::Min = Min; - _p->tt__FloatRange::Max = Max; - } - return _p; -} - -inline int soap_write_tt__FloatRange(struct soap *soap, tt__FloatRange const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FloatRange", p->soap_type() == SOAP_TYPE_tt__FloatRange ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FloatRange(struct soap *soap, const char *URL, tt__FloatRange 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, "tt:FloatRange", p->soap_type() == SOAP_TYPE_tt__FloatRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FloatRange(struct soap *soap, const char *URL, tt__FloatRange 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, "tt:FloatRange", p->soap_type() == SOAP_TYPE_tt__FloatRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FloatRange(struct soap *soap, const char *URL, tt__FloatRange 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, "tt:FloatRange", p->soap_type() == SOAP_TYPE_tt__FloatRange ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FloatRange * SOAP_FMAC4 soap_get_tt__FloatRange(struct soap*, tt__FloatRange *, const char*, const char*); - -inline int soap_read_tt__FloatRange(struct soap *soap, tt__FloatRange *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FloatRange(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FloatRange(struct soap *soap, const char *URL, tt__FloatRange *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FloatRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FloatRange(struct soap *soap, tt__FloatRange *p) -{ - if (::soap_read_tt__FloatRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IntRectangleRange_DEFINED -#define SOAP_TYPE_tt__IntRectangleRange_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntRectangleRange(struct soap*, const char*, int, const tt__IntRectangleRange *, const char*); -SOAP_FMAC3 tt__IntRectangleRange * SOAP_FMAC4 soap_in_tt__IntRectangleRange(struct soap*, const char*, tt__IntRectangleRange *, const char*); -SOAP_FMAC1 tt__IntRectangleRange * SOAP_FMAC2 soap_instantiate_tt__IntRectangleRange(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IntRectangleRange * soap_new_tt__IntRectangleRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IntRectangleRange(soap, n, NULL, NULL, NULL); -} - -inline tt__IntRectangleRange * soap_new_req_tt__IntRectangleRange( - struct soap *soap, - tt__IntRange *XRange, - tt__IntRange *YRange, - tt__IntRange *WidthRange, - tt__IntRange *HeightRange) -{ - tt__IntRectangleRange *_p = ::soap_new_tt__IntRectangleRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntRectangleRange::XRange = XRange; - _p->tt__IntRectangleRange::YRange = YRange; - _p->tt__IntRectangleRange::WidthRange = WidthRange; - _p->tt__IntRectangleRange::HeightRange = HeightRange; - } - return _p; -} - -inline tt__IntRectangleRange * soap_new_set_tt__IntRectangleRange( - struct soap *soap, - tt__IntRange *XRange, - tt__IntRange *YRange, - tt__IntRange *WidthRange, - tt__IntRange *HeightRange) -{ - tt__IntRectangleRange *_p = ::soap_new_tt__IntRectangleRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntRectangleRange::XRange = XRange; - _p->tt__IntRectangleRange::YRange = YRange; - _p->tt__IntRectangleRange::WidthRange = WidthRange; - _p->tt__IntRectangleRange::HeightRange = HeightRange; - } - return _p; -} - -inline int soap_write_tt__IntRectangleRange(struct soap *soap, tt__IntRectangleRange const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IntRectangleRange", p->soap_type() == SOAP_TYPE_tt__IntRectangleRange ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IntRectangleRange(struct soap *soap, const char *URL, tt__IntRectangleRange 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, "tt:IntRectangleRange", p->soap_type() == SOAP_TYPE_tt__IntRectangleRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IntRectangleRange(struct soap *soap, const char *URL, tt__IntRectangleRange 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, "tt:IntRectangleRange", p->soap_type() == SOAP_TYPE_tt__IntRectangleRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IntRectangleRange(struct soap *soap, const char *URL, tt__IntRectangleRange 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, "tt:IntRectangleRange", p->soap_type() == SOAP_TYPE_tt__IntRectangleRange ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IntRectangleRange * SOAP_FMAC4 soap_get_tt__IntRectangleRange(struct soap*, tt__IntRectangleRange *, const char*, const char*); - -inline int soap_read_tt__IntRectangleRange(struct soap *soap, tt__IntRectangleRange *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IntRectangleRange(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IntRectangleRange(struct soap *soap, const char *URL, tt__IntRectangleRange *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IntRectangleRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IntRectangleRange(struct soap *soap, tt__IntRectangleRange *p) -{ - if (::soap_read_tt__IntRectangleRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IntRectangle_DEFINED -#define SOAP_TYPE_tt__IntRectangle_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntRectangle(struct soap*, const char*, int, const tt__IntRectangle *, const char*); -SOAP_FMAC3 tt__IntRectangle * SOAP_FMAC4 soap_in_tt__IntRectangle(struct soap*, const char*, tt__IntRectangle *, const char*); -SOAP_FMAC1 tt__IntRectangle * SOAP_FMAC2 soap_instantiate_tt__IntRectangle(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IntRectangle * soap_new_tt__IntRectangle(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IntRectangle(soap, n, NULL, NULL, NULL); -} - -inline tt__IntRectangle * soap_new_req_tt__IntRectangle( - struct soap *soap, - int x, - int y, - int width, - int height) -{ - tt__IntRectangle *_p = ::soap_new_tt__IntRectangle(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntRectangle::x = x; - _p->tt__IntRectangle::y = y; - _p->tt__IntRectangle::width = width; - _p->tt__IntRectangle::height = height; - } - return _p; -} - -inline tt__IntRectangle * soap_new_set_tt__IntRectangle( - struct soap *soap, - int x, - int y, - int width, - int height) -{ - tt__IntRectangle *_p = ::soap_new_tt__IntRectangle(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntRectangle::x = x; - _p->tt__IntRectangle::y = y; - _p->tt__IntRectangle::width = width; - _p->tt__IntRectangle::height = height; - } - return _p; -} - -inline int soap_write_tt__IntRectangle(struct soap *soap, tt__IntRectangle const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IntRectangle", p->soap_type() == SOAP_TYPE_tt__IntRectangle ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IntRectangle(struct soap *soap, const char *URL, tt__IntRectangle 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, "tt:IntRectangle", p->soap_type() == SOAP_TYPE_tt__IntRectangle ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IntRectangle(struct soap *soap, const char *URL, tt__IntRectangle 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, "tt:IntRectangle", p->soap_type() == SOAP_TYPE_tt__IntRectangle ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IntRectangle(struct soap *soap, const char *URL, tt__IntRectangle 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, "tt:IntRectangle", p->soap_type() == SOAP_TYPE_tt__IntRectangle ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IntRectangle * SOAP_FMAC4 soap_get_tt__IntRectangle(struct soap*, tt__IntRectangle *, const char*, const char*); - -inline int soap_read_tt__IntRectangle(struct soap *soap, tt__IntRectangle *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IntRectangle(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IntRectangle(struct soap *soap, const char *URL, tt__IntRectangle *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IntRectangle(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IntRectangle(struct soap *soap, tt__IntRectangle *p) -{ - if (::soap_read_tt__IntRectangle(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__DeviceEntity_DEFINED -#define SOAP_TYPE_tt__DeviceEntity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__DeviceEntity(struct soap*, const char*, int, const tt__DeviceEntity *, const char*); -SOAP_FMAC3 tt__DeviceEntity * SOAP_FMAC4 soap_in_tt__DeviceEntity(struct soap*, const char*, tt__DeviceEntity *, const char*); -SOAP_FMAC1 tt__DeviceEntity * SOAP_FMAC2 soap_instantiate_tt__DeviceEntity(struct soap*, int, const char*, const char*, size_t*); - -inline tt__DeviceEntity * soap_new_tt__DeviceEntity(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__DeviceEntity(soap, n, NULL, NULL, NULL); -} - -inline tt__DeviceEntity * soap_new_req_tt__DeviceEntity( - struct soap *soap, - const std::string& token) -{ - tt__DeviceEntity *_p = ::soap_new_tt__DeviceEntity(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceEntity::token = token; - } - return _p; -} - -inline tt__DeviceEntity * soap_new_set_tt__DeviceEntity( - struct soap *soap, - const std::string& token) -{ - tt__DeviceEntity *_p = ::soap_new_tt__DeviceEntity(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__DeviceEntity::token = token; - } - return _p; -} - -inline int soap_write_tt__DeviceEntity(struct soap *soap, tt__DeviceEntity const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:DeviceEntity", p->soap_type() == SOAP_TYPE_tt__DeviceEntity ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__DeviceEntity(struct soap *soap, const char *URL, tt__DeviceEntity 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, "tt:DeviceEntity", p->soap_type() == SOAP_TYPE_tt__DeviceEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__DeviceEntity(struct soap *soap, const char *URL, tt__DeviceEntity 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, "tt:DeviceEntity", p->soap_type() == SOAP_TYPE_tt__DeviceEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__DeviceEntity(struct soap *soap, const char *URL, tt__DeviceEntity 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, "tt:DeviceEntity", p->soap_type() == SOAP_TYPE_tt__DeviceEntity ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__DeviceEntity * SOAP_FMAC4 soap_get_tt__DeviceEntity(struct soap*, tt__DeviceEntity *, const char*, const char*); - -inline int soap_read_tt__DeviceEntity(struct soap *soap, tt__DeviceEntity *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__DeviceEntity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__DeviceEntity(struct soap *soap, const char *URL, tt__DeviceEntity *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__DeviceEntity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__DeviceEntity(struct soap *soap, tt__DeviceEntity *p) -{ - if (::soap_read_tt__DeviceEntity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LocationEntity_DEFINED -#define SOAP_TYPE_tt__LocationEntity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LocationEntity(struct soap*, const char*, int, const tt__LocationEntity *, const char*); -SOAP_FMAC3 tt__LocationEntity * SOAP_FMAC4 soap_in_tt__LocationEntity(struct soap*, const char*, tt__LocationEntity *, const char*); -SOAP_FMAC1 tt__LocationEntity * SOAP_FMAC2 soap_instantiate_tt__LocationEntity(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LocationEntity * soap_new_tt__LocationEntity(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LocationEntity(soap, n, NULL, NULL, NULL); -} - -inline tt__LocationEntity * soap_new_req_tt__LocationEntity( - struct soap *soap) -{ - tt__LocationEntity *_p = ::soap_new_tt__LocationEntity(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__LocationEntity * soap_new_set_tt__LocationEntity( - struct soap *soap, - tt__GeoLocation *GeoLocation, - tt__GeoOrientation *GeoOrientation, - tt__LocalLocation *LocalLocation, - tt__LocalOrientation *LocalOrientation, - std::string *Entity, - std::string *Token, - bool *Fixed, - std::string *GeoSource, - bool *AutoGeo) -{ - tt__LocationEntity *_p = ::soap_new_tt__LocationEntity(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LocationEntity::GeoLocation = GeoLocation; - _p->tt__LocationEntity::GeoOrientation = GeoOrientation; - _p->tt__LocationEntity::LocalLocation = LocalLocation; - _p->tt__LocationEntity::LocalOrientation = LocalOrientation; - _p->tt__LocationEntity::Entity = Entity; - _p->tt__LocationEntity::Token = Token; - _p->tt__LocationEntity::Fixed = Fixed; - _p->tt__LocationEntity::GeoSource = GeoSource; - _p->tt__LocationEntity::AutoGeo = AutoGeo; - } - return _p; -} - -inline int soap_write_tt__LocationEntity(struct soap *soap, tt__LocationEntity const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LocationEntity", p->soap_type() == SOAP_TYPE_tt__LocationEntity ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LocationEntity(struct soap *soap, const char *URL, tt__LocationEntity 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, "tt:LocationEntity", p->soap_type() == SOAP_TYPE_tt__LocationEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LocationEntity(struct soap *soap, const char *URL, tt__LocationEntity 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, "tt:LocationEntity", p->soap_type() == SOAP_TYPE_tt__LocationEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LocationEntity(struct soap *soap, const char *URL, tt__LocationEntity 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, "tt:LocationEntity", p->soap_type() == SOAP_TYPE_tt__LocationEntity ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LocationEntity * SOAP_FMAC4 soap_get_tt__LocationEntity(struct soap*, tt__LocationEntity *, const char*, const char*); - -inline int soap_read_tt__LocationEntity(struct soap *soap, tt__LocationEntity *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LocationEntity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LocationEntity(struct soap *soap, const char *URL, tt__LocationEntity *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LocationEntity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LocationEntity(struct soap *soap, tt__LocationEntity *p) -{ - if (::soap_read_tt__LocationEntity(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LocalOrientation_DEFINED -#define SOAP_TYPE_tt__LocalOrientation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LocalOrientation(struct soap*, const char*, int, const tt__LocalOrientation *, const char*); -SOAP_FMAC3 tt__LocalOrientation * SOAP_FMAC4 soap_in_tt__LocalOrientation(struct soap*, const char*, tt__LocalOrientation *, const char*); -SOAP_FMAC1 tt__LocalOrientation * SOAP_FMAC2 soap_instantiate_tt__LocalOrientation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LocalOrientation * soap_new_tt__LocalOrientation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LocalOrientation(soap, n, NULL, NULL, NULL); -} - -inline tt__LocalOrientation * soap_new_req_tt__LocalOrientation( - struct soap *soap) -{ - tt__LocalOrientation *_p = ::soap_new_tt__LocalOrientation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__LocalOrientation * soap_new_set_tt__LocalOrientation( - struct soap *soap, - const std::vector & __any, - float *pan, - float *tilt, - float *roll, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__LocalOrientation *_p = ::soap_new_tt__LocalOrientation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LocalOrientation::__any = __any; - _p->tt__LocalOrientation::pan = pan; - _p->tt__LocalOrientation::tilt = tilt; - _p->tt__LocalOrientation::roll = roll; - _p->tt__LocalOrientation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__LocalOrientation(struct soap *soap, tt__LocalOrientation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LocalOrientation", p->soap_type() == SOAP_TYPE_tt__LocalOrientation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LocalOrientation(struct soap *soap, const char *URL, tt__LocalOrientation 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, "tt:LocalOrientation", p->soap_type() == SOAP_TYPE_tt__LocalOrientation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LocalOrientation(struct soap *soap, const char *URL, tt__LocalOrientation 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, "tt:LocalOrientation", p->soap_type() == SOAP_TYPE_tt__LocalOrientation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LocalOrientation(struct soap *soap, const char *URL, tt__LocalOrientation 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, "tt:LocalOrientation", p->soap_type() == SOAP_TYPE_tt__LocalOrientation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LocalOrientation * SOAP_FMAC4 soap_get_tt__LocalOrientation(struct soap*, tt__LocalOrientation *, const char*, const char*); - -inline int soap_read_tt__LocalOrientation(struct soap *soap, tt__LocalOrientation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LocalOrientation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LocalOrientation(struct soap *soap, const char *URL, tt__LocalOrientation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LocalOrientation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LocalOrientation(struct soap *soap, tt__LocalOrientation *p) -{ - if (::soap_read_tt__LocalOrientation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__LocalLocation_DEFINED -#define SOAP_TYPE_tt__LocalLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__LocalLocation(struct soap*, const char*, int, const tt__LocalLocation *, const char*); -SOAP_FMAC3 tt__LocalLocation * SOAP_FMAC4 soap_in_tt__LocalLocation(struct soap*, const char*, tt__LocalLocation *, const char*); -SOAP_FMAC1 tt__LocalLocation * SOAP_FMAC2 soap_instantiate_tt__LocalLocation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__LocalLocation * soap_new_tt__LocalLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__LocalLocation(soap, n, NULL, NULL, NULL); -} - -inline tt__LocalLocation * soap_new_req_tt__LocalLocation( - struct soap *soap) -{ - tt__LocalLocation *_p = ::soap_new_tt__LocalLocation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__LocalLocation * soap_new_set_tt__LocalLocation( - struct soap *soap, - const std::vector & __any, - float *x, - float *y, - float *z, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__LocalLocation *_p = ::soap_new_tt__LocalLocation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__LocalLocation::__any = __any; - _p->tt__LocalLocation::x = x; - _p->tt__LocalLocation::y = y; - _p->tt__LocalLocation::z = z; - _p->tt__LocalLocation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__LocalLocation(struct soap *soap, tt__LocalLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:LocalLocation", p->soap_type() == SOAP_TYPE_tt__LocalLocation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__LocalLocation(struct soap *soap, const char *URL, tt__LocalLocation 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, "tt:LocalLocation", p->soap_type() == SOAP_TYPE_tt__LocalLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__LocalLocation(struct soap *soap, const char *URL, tt__LocalLocation 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, "tt:LocalLocation", p->soap_type() == SOAP_TYPE_tt__LocalLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__LocalLocation(struct soap *soap, const char *URL, tt__LocalLocation 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, "tt:LocalLocation", p->soap_type() == SOAP_TYPE_tt__LocalLocation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__LocalLocation * SOAP_FMAC4 soap_get_tt__LocalLocation(struct soap*, tt__LocalLocation *, const char*, const char*); - -inline int soap_read_tt__LocalLocation(struct soap *soap, tt__LocalLocation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__LocalLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__LocalLocation(struct soap *soap, const char *URL, tt__LocalLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__LocalLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__LocalLocation(struct soap *soap, tt__LocalLocation *p) -{ - if (::soap_read_tt__LocalLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__GeoOrientation_DEFINED -#define SOAP_TYPE_tt__GeoOrientation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GeoOrientation(struct soap*, const char*, int, const tt__GeoOrientation *, const char*); -SOAP_FMAC3 tt__GeoOrientation * SOAP_FMAC4 soap_in_tt__GeoOrientation(struct soap*, const char*, tt__GeoOrientation *, const char*); -SOAP_FMAC1 tt__GeoOrientation * SOAP_FMAC2 soap_instantiate_tt__GeoOrientation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__GeoOrientation * soap_new_tt__GeoOrientation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__GeoOrientation(soap, n, NULL, NULL, NULL); -} - -inline tt__GeoOrientation * soap_new_req_tt__GeoOrientation( - struct soap *soap) -{ - tt__GeoOrientation *_p = ::soap_new_tt__GeoOrientation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__GeoOrientation * soap_new_set_tt__GeoOrientation( - struct soap *soap, - const std::vector & __any, - float *roll, - float *pitch, - float *yaw, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__GeoOrientation *_p = ::soap_new_tt__GeoOrientation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GeoOrientation::__any = __any; - _p->tt__GeoOrientation::roll = roll; - _p->tt__GeoOrientation::pitch = pitch; - _p->tt__GeoOrientation::yaw = yaw; - _p->tt__GeoOrientation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__GeoOrientation(struct soap *soap, tt__GeoOrientation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:GeoOrientation", p->soap_type() == SOAP_TYPE_tt__GeoOrientation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__GeoOrientation(struct soap *soap, const char *URL, tt__GeoOrientation 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, "tt:GeoOrientation", p->soap_type() == SOAP_TYPE_tt__GeoOrientation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__GeoOrientation(struct soap *soap, const char *URL, tt__GeoOrientation 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, "tt:GeoOrientation", p->soap_type() == SOAP_TYPE_tt__GeoOrientation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__GeoOrientation(struct soap *soap, const char *URL, tt__GeoOrientation 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, "tt:GeoOrientation", p->soap_type() == SOAP_TYPE_tt__GeoOrientation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__GeoOrientation * SOAP_FMAC4 soap_get_tt__GeoOrientation(struct soap*, tt__GeoOrientation *, const char*, const char*); - -inline int soap_read_tt__GeoOrientation(struct soap *soap, tt__GeoOrientation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__GeoOrientation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__GeoOrientation(struct soap *soap, const char *URL, tt__GeoOrientation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__GeoOrientation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__GeoOrientation(struct soap *soap, tt__GeoOrientation *p) -{ - if (::soap_read_tt__GeoOrientation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__GeoLocation_DEFINED -#define SOAP_TYPE_tt__GeoLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__GeoLocation(struct soap*, const char*, int, const tt__GeoLocation *, const char*); -SOAP_FMAC3 tt__GeoLocation * SOAP_FMAC4 soap_in_tt__GeoLocation(struct soap*, const char*, tt__GeoLocation *, const char*); -SOAP_FMAC1 tt__GeoLocation * SOAP_FMAC2 soap_instantiate_tt__GeoLocation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__GeoLocation * soap_new_tt__GeoLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__GeoLocation(soap, n, NULL, NULL, NULL); -} - -inline tt__GeoLocation * soap_new_req_tt__GeoLocation( - struct soap *soap) -{ - tt__GeoLocation *_p = ::soap_new_tt__GeoLocation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__GeoLocation * soap_new_set_tt__GeoLocation( - struct soap *soap, - const std::vector & __any, - double *lon, - double *lat, - float *elevation, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__GeoLocation *_p = ::soap_new_tt__GeoLocation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__GeoLocation::__any = __any; - _p->tt__GeoLocation::lon = lon; - _p->tt__GeoLocation::lat = lat; - _p->tt__GeoLocation::elevation = elevation; - _p->tt__GeoLocation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__GeoLocation(struct soap *soap, tt__GeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:GeoLocation", p->soap_type() == SOAP_TYPE_tt__GeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__GeoLocation(struct soap *soap, const char *URL, tt__GeoLocation 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, "tt:GeoLocation", p->soap_type() == SOAP_TYPE_tt__GeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__GeoLocation(struct soap *soap, const char *URL, tt__GeoLocation 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, "tt:GeoLocation", p->soap_type() == SOAP_TYPE_tt__GeoLocation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__GeoLocation(struct soap *soap, const char *URL, tt__GeoLocation 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, "tt:GeoLocation", p->soap_type() == SOAP_TYPE_tt__GeoLocation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__GeoLocation * SOAP_FMAC4 soap_get_tt__GeoLocation(struct soap*, tt__GeoLocation *, const char*, const char*); - -inline int soap_read_tt__GeoLocation(struct soap *soap, tt__GeoLocation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__GeoLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__GeoLocation(struct soap *soap, const char *URL, tt__GeoLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__GeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__GeoLocation(struct soap *soap, tt__GeoLocation *p) -{ - if (::soap_read_tt__GeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__TransformationExtension_DEFINED -#define SOAP_TYPE_tt__TransformationExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__TransformationExtension(struct soap*, const char*, int, const tt__TransformationExtension *, const char*); -SOAP_FMAC3 tt__TransformationExtension * SOAP_FMAC4 soap_in_tt__TransformationExtension(struct soap*, const char*, tt__TransformationExtension *, const char*); -SOAP_FMAC1 tt__TransformationExtension * SOAP_FMAC2 soap_instantiate_tt__TransformationExtension(struct soap*, int, const char*, const char*, size_t*); - -inline tt__TransformationExtension * soap_new_tt__TransformationExtension(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__TransformationExtension(soap, n, NULL, NULL, NULL); -} - -inline tt__TransformationExtension * soap_new_req_tt__TransformationExtension( - struct soap *soap) -{ - tt__TransformationExtension *_p = ::soap_new_tt__TransformationExtension(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__TransformationExtension * soap_new_set_tt__TransformationExtension( - struct soap *soap, - const std::vector & __any) -{ - tt__TransformationExtension *_p = ::soap_new_tt__TransformationExtension(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__TransformationExtension::__any = __any; - } - return _p; -} - -inline int soap_write_tt__TransformationExtension(struct soap *soap, tt__TransformationExtension const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:TransformationExtension", p->soap_type() == SOAP_TYPE_tt__TransformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__TransformationExtension(struct soap *soap, const char *URL, tt__TransformationExtension 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, "tt:TransformationExtension", p->soap_type() == SOAP_TYPE_tt__TransformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__TransformationExtension(struct soap *soap, const char *URL, tt__TransformationExtension 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, "tt:TransformationExtension", p->soap_type() == SOAP_TYPE_tt__TransformationExtension ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__TransformationExtension(struct soap *soap, const char *URL, tt__TransformationExtension 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, "tt:TransformationExtension", p->soap_type() == SOAP_TYPE_tt__TransformationExtension ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__TransformationExtension * SOAP_FMAC4 soap_get_tt__TransformationExtension(struct soap*, tt__TransformationExtension *, const char*, const char*); - -inline int soap_read_tt__TransformationExtension(struct soap *soap, tt__TransformationExtension *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__TransformationExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__TransformationExtension(struct soap *soap, const char *URL, tt__TransformationExtension *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__TransformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__TransformationExtension(struct soap *soap, tt__TransformationExtension *p) -{ - if (::soap_read_tt__TransformationExtension(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Transformation_DEFINED -#define SOAP_TYPE_tt__Transformation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Transformation(struct soap*, const char*, int, const tt__Transformation *, const char*); -SOAP_FMAC3 tt__Transformation * SOAP_FMAC4 soap_in_tt__Transformation(struct soap*, const char*, tt__Transformation *, const char*); -SOAP_FMAC1 tt__Transformation * SOAP_FMAC2 soap_instantiate_tt__Transformation(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Transformation * soap_new_tt__Transformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Transformation(soap, n, NULL, NULL, NULL); -} - -inline tt__Transformation * soap_new_req_tt__Transformation( - struct soap *soap) -{ - tt__Transformation *_p = ::soap_new_tt__Transformation(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Transformation * soap_new_set_tt__Transformation( - struct soap *soap, - tt__Vector *Translate, - tt__Vector *Scale, - tt__TransformationExtension *Extension, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__Transformation *_p = ::soap_new_tt__Transformation(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Transformation::Translate = Translate; - _p->tt__Transformation::Scale = Scale; - _p->tt__Transformation::Extension = Extension; - _p->tt__Transformation::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__Transformation(struct soap *soap, tt__Transformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Transformation", p->soap_type() == SOAP_TYPE_tt__Transformation ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Transformation(struct soap *soap, const char *URL, tt__Transformation 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, "tt:Transformation", p->soap_type() == SOAP_TYPE_tt__Transformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Transformation(struct soap *soap, const char *URL, tt__Transformation 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, "tt:Transformation", p->soap_type() == SOAP_TYPE_tt__Transformation ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Transformation(struct soap *soap, const char *URL, tt__Transformation 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, "tt:Transformation", p->soap_type() == SOAP_TYPE_tt__Transformation ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Transformation * SOAP_FMAC4 soap_get_tt__Transformation(struct soap*, tt__Transformation *, const char*, const char*); - -inline int soap_read_tt__Transformation(struct soap *soap, tt__Transformation *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Transformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Transformation(struct soap *soap, const char *URL, tt__Transformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Transformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Transformation(struct soap *soap, tt__Transformation *p) -{ - if (::soap_read_tt__Transformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ColorDescriptor_DEFINED -#define SOAP_TYPE_tt__ColorDescriptor_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorDescriptor(struct soap*, const char*, int, const tt__ColorDescriptor *, const char*); -SOAP_FMAC3 tt__ColorDescriptor * SOAP_FMAC4 soap_in_tt__ColorDescriptor(struct soap*, const char*, tt__ColorDescriptor *, const char*); -SOAP_FMAC1 tt__ColorDescriptor * SOAP_FMAC2 soap_instantiate_tt__ColorDescriptor(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ColorDescriptor * soap_new_tt__ColorDescriptor(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ColorDescriptor(soap, n, NULL, NULL, NULL); -} - -inline tt__ColorDescriptor * soap_new_req_tt__ColorDescriptor( - struct soap *soap) -{ - tt__ColorDescriptor *_p = ::soap_new_tt__ColorDescriptor(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__ColorDescriptor * soap_new_set_tt__ColorDescriptor( - struct soap *soap, - const std::vector<_tt__ColorDescriptor_ColorCluster> & ColorCluster, - struct soap_dom_element *Extension, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__ColorDescriptor *_p = ::soap_new_tt__ColorDescriptor(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ColorDescriptor::ColorCluster = ColorCluster; - _p->tt__ColorDescriptor::Extension = Extension; - _p->tt__ColorDescriptor::__any = __any; - _p->tt__ColorDescriptor::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__ColorDescriptor(struct soap *soap, tt__ColorDescriptor const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ColorDescriptor", p->soap_type() == SOAP_TYPE_tt__ColorDescriptor ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ColorDescriptor(struct soap *soap, const char *URL, tt__ColorDescriptor 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, "tt:ColorDescriptor", p->soap_type() == SOAP_TYPE_tt__ColorDescriptor ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ColorDescriptor(struct soap *soap, const char *URL, tt__ColorDescriptor 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, "tt:ColorDescriptor", p->soap_type() == SOAP_TYPE_tt__ColorDescriptor ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ColorDescriptor(struct soap *soap, const char *URL, tt__ColorDescriptor 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, "tt:ColorDescriptor", p->soap_type() == SOAP_TYPE_tt__ColorDescriptor ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ColorDescriptor * SOAP_FMAC4 soap_get_tt__ColorDescriptor(struct soap*, tt__ColorDescriptor *, const char*, const char*); - -inline int soap_read_tt__ColorDescriptor(struct soap *soap, tt__ColorDescriptor *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ColorDescriptor(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ColorDescriptor(struct soap *soap, const char *URL, tt__ColorDescriptor *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ColorDescriptor(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ColorDescriptor(struct soap *soap, tt__ColorDescriptor *p) -{ - if (::soap_read_tt__ColorDescriptor(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__ColorCovariance_DEFINED -#define SOAP_TYPE_tt__ColorCovariance_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__ColorCovariance(struct soap*, const char*, int, const tt__ColorCovariance *, const char*); -SOAP_FMAC3 tt__ColorCovariance * SOAP_FMAC4 soap_in_tt__ColorCovariance(struct soap*, const char*, tt__ColorCovariance *, const char*); -SOAP_FMAC1 tt__ColorCovariance * SOAP_FMAC2 soap_instantiate_tt__ColorCovariance(struct soap*, int, const char*, const char*, size_t*); - -inline tt__ColorCovariance * soap_new_tt__ColorCovariance(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__ColorCovariance(soap, n, NULL, NULL, NULL); -} - -inline tt__ColorCovariance * soap_new_req_tt__ColorCovariance( - struct soap *soap, - float XX, - float YY, - float ZZ) -{ - tt__ColorCovariance *_p = ::soap_new_tt__ColorCovariance(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ColorCovariance::XX = XX; - _p->tt__ColorCovariance::YY = YY; - _p->tt__ColorCovariance::ZZ = ZZ; - } - return _p; -} - -inline tt__ColorCovariance * soap_new_set_tt__ColorCovariance( - struct soap *soap, - float XX, - float YY, - float ZZ, - float *XY, - float *XZ, - float *YZ, - std::string *Colorspace) -{ - tt__ColorCovariance *_p = ::soap_new_tt__ColorCovariance(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__ColorCovariance::XX = XX; - _p->tt__ColorCovariance::YY = YY; - _p->tt__ColorCovariance::ZZ = ZZ; - _p->tt__ColorCovariance::XY = XY; - _p->tt__ColorCovariance::XZ = XZ; - _p->tt__ColorCovariance::YZ = YZ; - _p->tt__ColorCovariance::Colorspace = Colorspace; - } - return _p; -} - -inline int soap_write_tt__ColorCovariance(struct soap *soap, tt__ColorCovariance const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:ColorCovariance", p->soap_type() == SOAP_TYPE_tt__ColorCovariance ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__ColorCovariance(struct soap *soap, const char *URL, tt__ColorCovariance 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, "tt:ColorCovariance", p->soap_type() == SOAP_TYPE_tt__ColorCovariance ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__ColorCovariance(struct soap *soap, const char *URL, tt__ColorCovariance 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, "tt:ColorCovariance", p->soap_type() == SOAP_TYPE_tt__ColorCovariance ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__ColorCovariance(struct soap *soap, const char *URL, tt__ColorCovariance 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, "tt:ColorCovariance", p->soap_type() == SOAP_TYPE_tt__ColorCovariance ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__ColorCovariance * SOAP_FMAC4 soap_get_tt__ColorCovariance(struct soap*, tt__ColorCovariance *, const char*, const char*); - -inline int soap_read_tt__ColorCovariance(struct soap *soap, tt__ColorCovariance *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__ColorCovariance(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__ColorCovariance(struct soap *soap, const char *URL, tt__ColorCovariance *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__ColorCovariance(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__ColorCovariance(struct soap *soap, tt__ColorCovariance *p) -{ - if (::soap_read_tt__ColorCovariance(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Color_DEFINED -#define SOAP_TYPE_tt__Color_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Color(struct soap*, const char*, int, const tt__Color *, const char*); -SOAP_FMAC3 tt__Color * SOAP_FMAC4 soap_in_tt__Color(struct soap*, const char*, tt__Color *, const char*); -SOAP_FMAC1 tt__Color * SOAP_FMAC2 soap_instantiate_tt__Color(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Color * soap_new_tt__Color(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Color(soap, n, NULL, NULL, NULL); -} - -inline tt__Color * soap_new_req_tt__Color( - struct soap *soap, - float X, - float Y, - float Z) -{ - tt__Color *_p = ::soap_new_tt__Color(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Color::X = X; - _p->tt__Color::Y = Y; - _p->tt__Color::Z = Z; - } - return _p; -} - -inline tt__Color * soap_new_set_tt__Color( - struct soap *soap, - float X, - float Y, - float Z, - std::string *Colorspace) -{ - tt__Color *_p = ::soap_new_tt__Color(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Color::X = X; - _p->tt__Color::Y = Y; - _p->tt__Color::Z = Z; - _p->tt__Color::Colorspace = Colorspace; - } - return _p; -} - -inline int soap_write_tt__Color(struct soap *soap, tt__Color const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Color", p->soap_type() == SOAP_TYPE_tt__Color ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Color(struct soap *soap, const char *URL, tt__Color 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, "tt:Color", p->soap_type() == SOAP_TYPE_tt__Color ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Color(struct soap *soap, const char *URL, tt__Color 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, "tt:Color", p->soap_type() == SOAP_TYPE_tt__Color ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Color(struct soap *soap, const char *URL, tt__Color 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, "tt:Color", p->soap_type() == SOAP_TYPE_tt__Color ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Color * SOAP_FMAC4 soap_get_tt__Color(struct soap*, tt__Color *, const char*, const char*); - -inline int soap_read_tt__Color(struct soap *soap, tt__Color *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Color(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Color(struct soap *soap, const char *URL, tt__Color *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Color(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Color(struct soap *soap, tt__Color *p) -{ - if (::soap_read_tt__Color(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Polygon_DEFINED -#define SOAP_TYPE_tt__Polygon_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Polygon(struct soap*, const char*, int, const tt__Polygon *, const char*); -SOAP_FMAC3 tt__Polygon * SOAP_FMAC4 soap_in_tt__Polygon(struct soap*, const char*, tt__Polygon *, const char*); -SOAP_FMAC1 tt__Polygon * SOAP_FMAC2 soap_instantiate_tt__Polygon(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Polygon * soap_new_tt__Polygon(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Polygon(soap, n, NULL, NULL, NULL); -} - -inline tt__Polygon * soap_new_req_tt__Polygon( - struct soap *soap, - const std::vector & Point) -{ - tt__Polygon *_p = ::soap_new_tt__Polygon(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Polygon::Point = Point; - } - return _p; -} - -inline tt__Polygon * soap_new_set_tt__Polygon( - struct soap *soap, - const std::vector & Point) -{ - tt__Polygon *_p = ::soap_new_tt__Polygon(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Polygon::Point = Point; - } - return _p; -} - -inline int soap_write_tt__Polygon(struct soap *soap, tt__Polygon const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Polygon", p->soap_type() == SOAP_TYPE_tt__Polygon ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Polygon(struct soap *soap, const char *URL, tt__Polygon 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, "tt:Polygon", p->soap_type() == SOAP_TYPE_tt__Polygon ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Polygon(struct soap *soap, const char *URL, tt__Polygon 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, "tt:Polygon", p->soap_type() == SOAP_TYPE_tt__Polygon ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Polygon(struct soap *soap, const char *URL, tt__Polygon 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, "tt:Polygon", p->soap_type() == SOAP_TYPE_tt__Polygon ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Polygon * SOAP_FMAC4 soap_get_tt__Polygon(struct soap*, tt__Polygon *, const char*, const char*); - -inline int soap_read_tt__Polygon(struct soap *soap, tt__Polygon *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Polygon(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Polygon(struct soap *soap, const char *URL, tt__Polygon *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Polygon(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Polygon(struct soap *soap, tt__Polygon *p) -{ - if (::soap_read_tt__Polygon(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Rectangle_DEFINED -#define SOAP_TYPE_tt__Rectangle_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Rectangle(struct soap*, const char*, int, const tt__Rectangle *, const char*); -SOAP_FMAC3 tt__Rectangle * SOAP_FMAC4 soap_in_tt__Rectangle(struct soap*, const char*, tt__Rectangle *, const char*); -SOAP_FMAC1 tt__Rectangle * SOAP_FMAC2 soap_instantiate_tt__Rectangle(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Rectangle * soap_new_tt__Rectangle(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Rectangle(soap, n, NULL, NULL, NULL); -} - -inline tt__Rectangle * soap_new_req_tt__Rectangle( - struct soap *soap) -{ - tt__Rectangle *_p = ::soap_new_tt__Rectangle(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Rectangle * soap_new_set_tt__Rectangle( - struct soap *soap, - float *bottom, - float *top, - float *right, - float *left) -{ - tt__Rectangle *_p = ::soap_new_tt__Rectangle(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Rectangle::bottom = bottom; - _p->tt__Rectangle::top = top; - _p->tt__Rectangle::right = right; - _p->tt__Rectangle::left = left; - } - return _p; -} - -inline int soap_write_tt__Rectangle(struct soap *soap, tt__Rectangle const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Rectangle", p->soap_type() == SOAP_TYPE_tt__Rectangle ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Rectangle(struct soap *soap, const char *URL, tt__Rectangle 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, "tt:Rectangle", p->soap_type() == SOAP_TYPE_tt__Rectangle ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Rectangle(struct soap *soap, const char *URL, tt__Rectangle 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, "tt:Rectangle", p->soap_type() == SOAP_TYPE_tt__Rectangle ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Rectangle(struct soap *soap, const char *URL, tt__Rectangle 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, "tt:Rectangle", p->soap_type() == SOAP_TYPE_tt__Rectangle ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Rectangle * SOAP_FMAC4 soap_get_tt__Rectangle(struct soap*, tt__Rectangle *, const char*, const char*); - -inline int soap_read_tt__Rectangle(struct soap *soap, tt__Rectangle *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Rectangle(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Rectangle(struct soap *soap, const char *URL, tt__Rectangle *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Rectangle(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Rectangle(struct soap *soap, tt__Rectangle *p) -{ - if (::soap_read_tt__Rectangle(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Vector_DEFINED -#define SOAP_TYPE_tt__Vector_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Vector(struct soap*, const char*, int, const tt__Vector *, const char*); -SOAP_FMAC3 tt__Vector * SOAP_FMAC4 soap_in_tt__Vector(struct soap*, const char*, tt__Vector *, const char*); -SOAP_FMAC1 tt__Vector * SOAP_FMAC2 soap_instantiate_tt__Vector(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Vector * soap_new_tt__Vector(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Vector(soap, n, NULL, NULL, NULL); -} - -inline tt__Vector * soap_new_req_tt__Vector( - struct soap *soap) -{ - tt__Vector *_p = ::soap_new_tt__Vector(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__Vector * soap_new_set_tt__Vector( - struct soap *soap, - float *x, - float *y) -{ - tt__Vector *_p = ::soap_new_tt__Vector(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Vector::x = x; - _p->tt__Vector::y = y; - } - return _p; -} - -inline int soap_write_tt__Vector(struct soap *soap, tt__Vector const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Vector", p->soap_type() == SOAP_TYPE_tt__Vector ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Vector(struct soap *soap, const char *URL, tt__Vector 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, "tt:Vector", p->soap_type() == SOAP_TYPE_tt__Vector ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Vector(struct soap *soap, const char *URL, tt__Vector 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, "tt:Vector", p->soap_type() == SOAP_TYPE_tt__Vector ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Vector(struct soap *soap, const char *URL, tt__Vector 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, "tt:Vector", p->soap_type() == SOAP_TYPE_tt__Vector ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Vector * SOAP_FMAC4 soap_get_tt__Vector(struct soap*, tt__Vector *, const char*, const char*); - -inline int soap_read_tt__Vector(struct soap *soap, tt__Vector *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Vector(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Vector(struct soap *soap, const char *URL, tt__Vector *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Vector(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Vector(struct soap *soap, tt__Vector *p) -{ - if (::soap_read_tt__Vector(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZMoveStatus_DEFINED -#define SOAP_TYPE_tt__PTZMoveStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZMoveStatus(struct soap*, const char*, int, const tt__PTZMoveStatus *, const char*); -SOAP_FMAC3 tt__PTZMoveStatus * SOAP_FMAC4 soap_in_tt__PTZMoveStatus(struct soap*, const char*, tt__PTZMoveStatus *, const char*); -SOAP_FMAC1 tt__PTZMoveStatus * SOAP_FMAC2 soap_instantiate_tt__PTZMoveStatus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZMoveStatus * soap_new_tt__PTZMoveStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZMoveStatus(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZMoveStatus * soap_new_req_tt__PTZMoveStatus( - struct soap *soap) -{ - tt__PTZMoveStatus *_p = ::soap_new_tt__PTZMoveStatus(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZMoveStatus * soap_new_set_tt__PTZMoveStatus( - struct soap *soap, - enum tt__MoveStatus *PanTilt, - enum tt__MoveStatus *Zoom) -{ - tt__PTZMoveStatus *_p = ::soap_new_tt__PTZMoveStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZMoveStatus::PanTilt = PanTilt; - _p->tt__PTZMoveStatus::Zoom = Zoom; - } - return _p; -} - -inline int soap_write_tt__PTZMoveStatus(struct soap *soap, tt__PTZMoveStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZMoveStatus", p->soap_type() == SOAP_TYPE_tt__PTZMoveStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZMoveStatus(struct soap *soap, const char *URL, tt__PTZMoveStatus 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, "tt:PTZMoveStatus", p->soap_type() == SOAP_TYPE_tt__PTZMoveStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZMoveStatus(struct soap *soap, const char *URL, tt__PTZMoveStatus 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, "tt:PTZMoveStatus", p->soap_type() == SOAP_TYPE_tt__PTZMoveStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZMoveStatus(struct soap *soap, const char *URL, tt__PTZMoveStatus 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, "tt:PTZMoveStatus", p->soap_type() == SOAP_TYPE_tt__PTZMoveStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZMoveStatus * SOAP_FMAC4 soap_get_tt__PTZMoveStatus(struct soap*, tt__PTZMoveStatus *, const char*, const char*); - -inline int soap_read_tt__PTZMoveStatus(struct soap *soap, tt__PTZMoveStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZMoveStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZMoveStatus(struct soap *soap, const char *URL, tt__PTZMoveStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZMoveStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZMoveStatus(struct soap *soap, tt__PTZMoveStatus *p) -{ - if (::soap_read_tt__PTZMoveStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZStatus_DEFINED -#define SOAP_TYPE_tt__PTZStatus_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZStatus(struct soap*, const char*, int, const tt__PTZStatus *, const char*); -SOAP_FMAC3 tt__PTZStatus * SOAP_FMAC4 soap_in_tt__PTZStatus(struct soap*, const char*, tt__PTZStatus *, const char*); -SOAP_FMAC1 tt__PTZStatus * SOAP_FMAC2 soap_instantiate_tt__PTZStatus(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZStatus * soap_new_tt__PTZStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZStatus(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZStatus * soap_new_req_tt__PTZStatus( - struct soap *soap, - const struct timeval& UtcTime) -{ - tt__PTZStatus *_p = ::soap_new_tt__PTZStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZStatus::UtcTime = UtcTime; - } - return _p; -} - -inline tt__PTZStatus * soap_new_set_tt__PTZStatus( - struct soap *soap, - tt__PTZVector *Position, - tt__PTZMoveStatus *MoveStatus, - std::string *Error, - const struct timeval& UtcTime, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - tt__PTZStatus *_p = ::soap_new_tt__PTZStatus(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZStatus::Position = Position; - _p->tt__PTZStatus::MoveStatus = MoveStatus; - _p->tt__PTZStatus::Error = Error; - _p->tt__PTZStatus::UtcTime = UtcTime; - _p->tt__PTZStatus::__any = __any; - _p->tt__PTZStatus::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tt__PTZStatus(struct soap *soap, tt__PTZStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZStatus", p->soap_type() == SOAP_TYPE_tt__PTZStatus ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZStatus(struct soap *soap, const char *URL, tt__PTZStatus 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, "tt:PTZStatus", p->soap_type() == SOAP_TYPE_tt__PTZStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZStatus(struct soap *soap, const char *URL, tt__PTZStatus 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, "tt:PTZStatus", p->soap_type() == SOAP_TYPE_tt__PTZStatus ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZStatus(struct soap *soap, const char *URL, tt__PTZStatus 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, "tt:PTZStatus", p->soap_type() == SOAP_TYPE_tt__PTZStatus ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZStatus * SOAP_FMAC4 soap_get_tt__PTZStatus(struct soap*, tt__PTZStatus *, const char*, const char*); - -inline int soap_read_tt__PTZStatus(struct soap *soap, tt__PTZStatus *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZStatus(struct soap *soap, const char *URL, tt__PTZStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZStatus(struct soap *soap, tt__PTZStatus *p) -{ - if (::soap_read_tt__PTZStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__PTZVector_DEFINED -#define SOAP_TYPE_tt__PTZVector_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__PTZVector(struct soap*, const char*, int, const tt__PTZVector *, const char*); -SOAP_FMAC3 tt__PTZVector * SOAP_FMAC4 soap_in_tt__PTZVector(struct soap*, const char*, tt__PTZVector *, const char*); -SOAP_FMAC1 tt__PTZVector * SOAP_FMAC2 soap_instantiate_tt__PTZVector(struct soap*, int, const char*, const char*, size_t*); - -inline tt__PTZVector * soap_new_tt__PTZVector(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__PTZVector(soap, n, NULL, NULL, NULL); -} - -inline tt__PTZVector * soap_new_req_tt__PTZVector( - struct soap *soap) -{ - tt__PTZVector *_p = ::soap_new_tt__PTZVector(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tt__PTZVector * soap_new_set_tt__PTZVector( - struct soap *soap, - tt__Vector2D *PanTilt, - tt__Vector1D *Zoom) -{ - tt__PTZVector *_p = ::soap_new_tt__PTZVector(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__PTZVector::PanTilt = PanTilt; - _p->tt__PTZVector::Zoom = Zoom; - } - return _p; -} - -inline int soap_write_tt__PTZVector(struct soap *soap, tt__PTZVector const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:PTZVector", p->soap_type() == SOAP_TYPE_tt__PTZVector ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__PTZVector(struct soap *soap, const char *URL, tt__PTZVector 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, "tt:PTZVector", p->soap_type() == SOAP_TYPE_tt__PTZVector ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__PTZVector(struct soap *soap, const char *URL, tt__PTZVector 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, "tt:PTZVector", p->soap_type() == SOAP_TYPE_tt__PTZVector ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__PTZVector(struct soap *soap, const char *URL, tt__PTZVector 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, "tt:PTZVector", p->soap_type() == SOAP_TYPE_tt__PTZVector ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__PTZVector * SOAP_FMAC4 soap_get_tt__PTZVector(struct soap*, tt__PTZVector *, const char*, const char*); - -inline int soap_read_tt__PTZVector(struct soap *soap, tt__PTZVector *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__PTZVector(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__PTZVector(struct soap *soap, const char *URL, tt__PTZVector *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__PTZVector(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__PTZVector(struct soap *soap, tt__PTZVector *p) -{ - if (::soap_read_tt__PTZVector(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Vector1D_DEFINED -#define SOAP_TYPE_tt__Vector1D_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Vector1D(struct soap*, const char*, int, const tt__Vector1D *, const char*); -SOAP_FMAC3 tt__Vector1D * SOAP_FMAC4 soap_in_tt__Vector1D(struct soap*, const char*, tt__Vector1D *, const char*); -SOAP_FMAC1 tt__Vector1D * SOAP_FMAC2 soap_instantiate_tt__Vector1D(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Vector1D * soap_new_tt__Vector1D(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Vector1D(soap, n, NULL, NULL, NULL); -} - -inline tt__Vector1D * soap_new_req_tt__Vector1D( - struct soap *soap, - float x) -{ - tt__Vector1D *_p = ::soap_new_tt__Vector1D(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Vector1D::x = x; - } - return _p; -} - -inline tt__Vector1D * soap_new_set_tt__Vector1D( - struct soap *soap, - float x, - std::string *space) -{ - tt__Vector1D *_p = ::soap_new_tt__Vector1D(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Vector1D::x = x; - _p->tt__Vector1D::space = space; - } - return _p; -} - -inline int soap_write_tt__Vector1D(struct soap *soap, tt__Vector1D const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Vector1D", p->soap_type() == SOAP_TYPE_tt__Vector1D ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Vector1D(struct soap *soap, const char *URL, tt__Vector1D 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, "tt:Vector1D", p->soap_type() == SOAP_TYPE_tt__Vector1D ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Vector1D(struct soap *soap, const char *URL, tt__Vector1D 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, "tt:Vector1D", p->soap_type() == SOAP_TYPE_tt__Vector1D ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Vector1D(struct soap *soap, const char *URL, tt__Vector1D 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, "tt:Vector1D", p->soap_type() == SOAP_TYPE_tt__Vector1D ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Vector1D * SOAP_FMAC4 soap_get_tt__Vector1D(struct soap*, tt__Vector1D *, const char*, const char*); - -inline int soap_read_tt__Vector1D(struct soap *soap, tt__Vector1D *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Vector1D(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Vector1D(struct soap *soap, const char *URL, tt__Vector1D *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Vector1D(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Vector1D(struct soap *soap, tt__Vector1D *p) -{ - if (::soap_read_tt__Vector1D(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__Vector2D_DEFINED -#define SOAP_TYPE_tt__Vector2D_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__Vector2D(struct soap*, const char*, int, const tt__Vector2D *, const char*); -SOAP_FMAC3 tt__Vector2D * SOAP_FMAC4 soap_in_tt__Vector2D(struct soap*, const char*, tt__Vector2D *, const char*); -SOAP_FMAC1 tt__Vector2D * SOAP_FMAC2 soap_instantiate_tt__Vector2D(struct soap*, int, const char*, const char*, size_t*); - -inline tt__Vector2D * soap_new_tt__Vector2D(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__Vector2D(soap, n, NULL, NULL, NULL); -} - -inline tt__Vector2D * soap_new_req_tt__Vector2D( - struct soap *soap, - float x, - float y) -{ - tt__Vector2D *_p = ::soap_new_tt__Vector2D(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Vector2D::x = x; - _p->tt__Vector2D::y = y; - } - return _p; -} - -inline tt__Vector2D * soap_new_set_tt__Vector2D( - struct soap *soap, - float x, - float y, - std::string *space) -{ - tt__Vector2D *_p = ::soap_new_tt__Vector2D(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__Vector2D::x = x; - _p->tt__Vector2D::y = y; - _p->tt__Vector2D::space = space; - } - return _p; -} - -inline int soap_write_tt__Vector2D(struct soap *soap, tt__Vector2D const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:Vector2D", p->soap_type() == SOAP_TYPE_tt__Vector2D ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__Vector2D(struct soap *soap, const char *URL, tt__Vector2D 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, "tt:Vector2D", p->soap_type() == SOAP_TYPE_tt__Vector2D ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__Vector2D(struct soap *soap, const char *URL, tt__Vector2D 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, "tt:Vector2D", p->soap_type() == SOAP_TYPE_tt__Vector2D ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__Vector2D(struct soap *soap, const char *URL, tt__Vector2D 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, "tt:Vector2D", p->soap_type() == SOAP_TYPE_tt__Vector2D ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__Vector2D * SOAP_FMAC4 soap_get_tt__Vector2D(struct soap*, tt__Vector2D *, const char*, const char*); - -inline int soap_read_tt__Vector2D(struct soap *soap, tt__Vector2D *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__Vector2D(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__Vector2D(struct soap *soap, const char *URL, tt__Vector2D *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__Vector2D(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__Vector2D(struct soap *soap, tt__Vector2D *p) -{ - if (::soap_read_tt__Vector2D(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IntRange_DEFINED -#define SOAP_TYPE_tt__IntRange_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntRange(struct soap*, const char*, int, const tt__IntRange *, const char*); -SOAP_FMAC3 tt__IntRange * SOAP_FMAC4 soap_in_tt__IntRange(struct soap*, const char*, tt__IntRange *, const char*); -SOAP_FMAC1 tt__IntRange * SOAP_FMAC2 soap_instantiate_tt__IntRange(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IntRange * soap_new_tt__IntRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IntRange(soap, n, NULL, NULL, NULL); -} - -inline tt__IntRange * soap_new_req_tt__IntRange( - struct soap *soap, - int Min, - int Max) -{ - tt__IntRange *_p = ::soap_new_tt__IntRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntRange::Min = Min; - _p->tt__IntRange::Max = Max; - } - return _p; -} - -inline tt__IntRange * soap_new_set_tt__IntRange( - struct soap *soap, - int Min, - int Max) -{ - tt__IntRange *_p = ::soap_new_tt__IntRange(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntRange::Min = Min; - _p->tt__IntRange::Max = Max; - } - return _p; -} - -inline int soap_write_tt__IntRange(struct soap *soap, tt__IntRange const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IntRange", p->soap_type() == SOAP_TYPE_tt__IntRange ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IntRange(struct soap *soap, const char *URL, tt__IntRange 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, "tt:IntRange", p->soap_type() == SOAP_TYPE_tt__IntRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IntRange(struct soap *soap, const char *URL, tt__IntRange 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, "tt:IntRange", p->soap_type() == SOAP_TYPE_tt__IntRange ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IntRange(struct soap *soap, const char *URL, tt__IntRange 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, "tt:IntRange", p->soap_type() == SOAP_TYPE_tt__IntRange ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IntRange * SOAP_FMAC4 soap_get_tt__IntRange(struct soap*, tt__IntRange *, const char*, const char*); - -inline int soap_read_tt__IntRange(struct soap *soap, tt__IntRange *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IntRange(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IntRange(struct soap *soap, const char *URL, tt__IntRange *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IntRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IntRange(struct soap *soap, tt__IntRange *p) -{ - if (::soap_read_tt__IntRange(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__GetEventPropertiesResponse_DEFINED -#define SOAP_TYPE__tev__GetEventPropertiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetEventPropertiesResponse(struct soap*, const char*, int, const _tev__GetEventPropertiesResponse *, const char*); -SOAP_FMAC3 _tev__GetEventPropertiesResponse * SOAP_FMAC4 soap_in__tev__GetEventPropertiesResponse(struct soap*, const char*, _tev__GetEventPropertiesResponse *, const char*); -SOAP_FMAC1 _tev__GetEventPropertiesResponse * SOAP_FMAC2 soap_instantiate__tev__GetEventPropertiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__GetEventPropertiesResponse * soap_new__tev__GetEventPropertiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__GetEventPropertiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tev__GetEventPropertiesResponse * soap_new_req__tev__GetEventPropertiesResponse( - struct soap *soap, - const std::vector & TopicNamespaceLocation, - bool wsnt__FixedTopicSet, - wstop__TopicSetType *wstop__TopicSet, - const std::vector & wsnt__TopicExpressionDialect, - const std::vector & MessageContentFilterDialect, - const std::vector & MessageContentSchemaLocation) -{ - _tev__GetEventPropertiesResponse *_p = ::soap_new__tev__GetEventPropertiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__GetEventPropertiesResponse::TopicNamespaceLocation = TopicNamespaceLocation; - _p->_tev__GetEventPropertiesResponse::wsnt__FixedTopicSet = wsnt__FixedTopicSet; - _p->_tev__GetEventPropertiesResponse::wstop__TopicSet = wstop__TopicSet; - _p->_tev__GetEventPropertiesResponse::wsnt__TopicExpressionDialect = wsnt__TopicExpressionDialect; - _p->_tev__GetEventPropertiesResponse::MessageContentFilterDialect = MessageContentFilterDialect; - _p->_tev__GetEventPropertiesResponse::MessageContentSchemaLocation = MessageContentSchemaLocation; - } - return _p; -} - -inline _tev__GetEventPropertiesResponse * soap_new_set__tev__GetEventPropertiesResponse( - struct soap *soap, - const std::vector & TopicNamespaceLocation, - bool wsnt__FixedTopicSet, - wstop__TopicSetType *wstop__TopicSet, - const std::vector & wsnt__TopicExpressionDialect, - const std::vector & MessageContentFilterDialect, - const std::vector & ProducerPropertiesFilterDialect, - const std::vector & MessageContentSchemaLocation, - const std::vector & __any) -{ - _tev__GetEventPropertiesResponse *_p = ::soap_new__tev__GetEventPropertiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__GetEventPropertiesResponse::TopicNamespaceLocation = TopicNamespaceLocation; - _p->_tev__GetEventPropertiesResponse::wsnt__FixedTopicSet = wsnt__FixedTopicSet; - _p->_tev__GetEventPropertiesResponse::wstop__TopicSet = wstop__TopicSet; - _p->_tev__GetEventPropertiesResponse::wsnt__TopicExpressionDialect = wsnt__TopicExpressionDialect; - _p->_tev__GetEventPropertiesResponse::MessageContentFilterDialect = MessageContentFilterDialect; - _p->_tev__GetEventPropertiesResponse::ProducerPropertiesFilterDialect = ProducerPropertiesFilterDialect; - _p->_tev__GetEventPropertiesResponse::MessageContentSchemaLocation = MessageContentSchemaLocation; - _p->_tev__GetEventPropertiesResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tev__GetEventPropertiesResponse(struct soap *soap, _tev__GetEventPropertiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:GetEventPropertiesResponse", p->soap_type() == SOAP_TYPE__tev__GetEventPropertiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__GetEventPropertiesResponse(struct soap *soap, const char *URL, _tev__GetEventPropertiesResponse 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, "tev:GetEventPropertiesResponse", p->soap_type() == SOAP_TYPE__tev__GetEventPropertiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__GetEventPropertiesResponse(struct soap *soap, const char *URL, _tev__GetEventPropertiesResponse 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, "tev:GetEventPropertiesResponse", p->soap_type() == SOAP_TYPE__tev__GetEventPropertiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__GetEventPropertiesResponse(struct soap *soap, const char *URL, _tev__GetEventPropertiesResponse 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, "tev:GetEventPropertiesResponse", p->soap_type() == SOAP_TYPE__tev__GetEventPropertiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__GetEventPropertiesResponse * SOAP_FMAC4 soap_get__tev__GetEventPropertiesResponse(struct soap*, _tev__GetEventPropertiesResponse *, const char*, const char*); - -inline int soap_read__tev__GetEventPropertiesResponse(struct soap *soap, _tev__GetEventPropertiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__GetEventPropertiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__GetEventPropertiesResponse(struct soap *soap, const char *URL, _tev__GetEventPropertiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__GetEventPropertiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__GetEventPropertiesResponse(struct soap *soap, _tev__GetEventPropertiesResponse *p) -{ - if (::soap_read__tev__GetEventPropertiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__GetEventProperties_DEFINED -#define SOAP_TYPE__tev__GetEventProperties_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetEventProperties(struct soap*, const char*, int, const _tev__GetEventProperties *, const char*); -SOAP_FMAC3 _tev__GetEventProperties * SOAP_FMAC4 soap_in__tev__GetEventProperties(struct soap*, const char*, _tev__GetEventProperties *, const char*); -SOAP_FMAC1 _tev__GetEventProperties * SOAP_FMAC2 soap_instantiate__tev__GetEventProperties(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__GetEventProperties * soap_new__tev__GetEventProperties(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__GetEventProperties(soap, n, NULL, NULL, NULL); -} - -inline _tev__GetEventProperties * soap_new_req__tev__GetEventProperties( - struct soap *soap) -{ - _tev__GetEventProperties *_p = ::soap_new__tev__GetEventProperties(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tev__GetEventProperties * soap_new_set__tev__GetEventProperties( - struct soap *soap) -{ - _tev__GetEventProperties *_p = ::soap_new__tev__GetEventProperties(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tev__GetEventProperties(struct soap *soap, _tev__GetEventProperties const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:GetEventProperties", p->soap_type() == SOAP_TYPE__tev__GetEventProperties ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__GetEventProperties(struct soap *soap, const char *URL, _tev__GetEventProperties 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, "tev:GetEventProperties", p->soap_type() == SOAP_TYPE__tev__GetEventProperties ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__GetEventProperties(struct soap *soap, const char *URL, _tev__GetEventProperties 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, "tev:GetEventProperties", p->soap_type() == SOAP_TYPE__tev__GetEventProperties ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__GetEventProperties(struct soap *soap, const char *URL, _tev__GetEventProperties 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, "tev:GetEventProperties", p->soap_type() == SOAP_TYPE__tev__GetEventProperties ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__GetEventProperties * SOAP_FMAC4 soap_get__tev__GetEventProperties(struct soap*, _tev__GetEventProperties *, const char*, const char*); - -inline int soap_read__tev__GetEventProperties(struct soap *soap, _tev__GetEventProperties *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__GetEventProperties(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__GetEventProperties(struct soap *soap, const char *URL, _tev__GetEventProperties *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__GetEventProperties(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__GetEventProperties(struct soap *soap, _tev__GetEventProperties *p) -{ - if (::soap_read__tev__GetEventProperties(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__SetSynchronizationPointResponse_DEFINED -#define SOAP_TYPE__tev__SetSynchronizationPointResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__SetSynchronizationPointResponse(struct soap*, const char*, int, const _tev__SetSynchronizationPointResponse *, const char*); -SOAP_FMAC3 _tev__SetSynchronizationPointResponse * SOAP_FMAC4 soap_in__tev__SetSynchronizationPointResponse(struct soap*, const char*, _tev__SetSynchronizationPointResponse *, const char*); -SOAP_FMAC1 _tev__SetSynchronizationPointResponse * SOAP_FMAC2 soap_instantiate__tev__SetSynchronizationPointResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__SetSynchronizationPointResponse * soap_new__tev__SetSynchronizationPointResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__SetSynchronizationPointResponse(soap, n, NULL, NULL, NULL); -} - -inline _tev__SetSynchronizationPointResponse * soap_new_req__tev__SetSynchronizationPointResponse( - struct soap *soap) -{ - _tev__SetSynchronizationPointResponse *_p = ::soap_new__tev__SetSynchronizationPointResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tev__SetSynchronizationPointResponse * soap_new_set__tev__SetSynchronizationPointResponse( - struct soap *soap) -{ - _tev__SetSynchronizationPointResponse *_p = ::soap_new__tev__SetSynchronizationPointResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tev__SetSynchronizationPointResponse(struct soap *soap, _tev__SetSynchronizationPointResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _tev__SetSynchronizationPointResponse 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, "tev:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _tev__SetSynchronizationPointResponse 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, "tev:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _tev__SetSynchronizationPointResponse 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, "tev:SetSynchronizationPointResponse", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__SetSynchronizationPointResponse * SOAP_FMAC4 soap_get__tev__SetSynchronizationPointResponse(struct soap*, _tev__SetSynchronizationPointResponse *, const char*, const char*); - -inline int soap_read__tev__SetSynchronizationPointResponse(struct soap *soap, _tev__SetSynchronizationPointResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__SetSynchronizationPointResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__SetSynchronizationPointResponse(struct soap *soap, const char *URL, _tev__SetSynchronizationPointResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__SetSynchronizationPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__SetSynchronizationPointResponse(struct soap *soap, _tev__SetSynchronizationPointResponse *p) -{ - if (::soap_read__tev__SetSynchronizationPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__SetSynchronizationPoint_DEFINED -#define SOAP_TYPE__tev__SetSynchronizationPoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__SetSynchronizationPoint(struct soap*, const char*, int, const _tev__SetSynchronizationPoint *, const char*); -SOAP_FMAC3 _tev__SetSynchronizationPoint * SOAP_FMAC4 soap_in__tev__SetSynchronizationPoint(struct soap*, const char*, _tev__SetSynchronizationPoint *, const char*); -SOAP_FMAC1 _tev__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate__tev__SetSynchronizationPoint(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__SetSynchronizationPoint * soap_new__tev__SetSynchronizationPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__SetSynchronizationPoint(soap, n, NULL, NULL, NULL); -} - -inline _tev__SetSynchronizationPoint * soap_new_req__tev__SetSynchronizationPoint( - struct soap *soap) -{ - _tev__SetSynchronizationPoint *_p = ::soap_new__tev__SetSynchronizationPoint(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tev__SetSynchronizationPoint * soap_new_set__tev__SetSynchronizationPoint( - struct soap *soap) -{ - _tev__SetSynchronizationPoint *_p = ::soap_new__tev__SetSynchronizationPoint(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tev__SetSynchronizationPoint(struct soap *soap, _tev__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__SetSynchronizationPoint(struct soap *soap, const char *URL, _tev__SetSynchronizationPoint 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, "tev:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__SetSynchronizationPoint(struct soap *soap, const char *URL, _tev__SetSynchronizationPoint 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, "tev:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__SetSynchronizationPoint(struct soap *soap, const char *URL, _tev__SetSynchronizationPoint 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, "tev:SetSynchronizationPoint", p->soap_type() == SOAP_TYPE__tev__SetSynchronizationPoint ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__SetSynchronizationPoint * SOAP_FMAC4 soap_get__tev__SetSynchronizationPoint(struct soap*, _tev__SetSynchronizationPoint *, const char*, const char*); - -inline int soap_read__tev__SetSynchronizationPoint(struct soap *soap, _tev__SetSynchronizationPoint *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__SetSynchronizationPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__SetSynchronizationPoint(struct soap *soap, const char *URL, _tev__SetSynchronizationPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__SetSynchronizationPoint(struct soap *soap, _tev__SetSynchronizationPoint *p) -{ - if (::soap_read__tev__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__SeekResponse_DEFINED -#define SOAP_TYPE__tev__SeekResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__SeekResponse(struct soap*, const char*, int, const _tev__SeekResponse *, const char*); -SOAP_FMAC3 _tev__SeekResponse * SOAP_FMAC4 soap_in__tev__SeekResponse(struct soap*, const char*, _tev__SeekResponse *, const char*); -SOAP_FMAC1 _tev__SeekResponse * SOAP_FMAC2 soap_instantiate__tev__SeekResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__SeekResponse * soap_new__tev__SeekResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__SeekResponse(soap, n, NULL, NULL, NULL); -} - -inline _tev__SeekResponse * soap_new_req__tev__SeekResponse( - struct soap *soap) -{ - _tev__SeekResponse *_p = ::soap_new__tev__SeekResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tev__SeekResponse * soap_new_set__tev__SeekResponse( - struct soap *soap) -{ - _tev__SeekResponse *_p = ::soap_new__tev__SeekResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tev__SeekResponse(struct soap *soap, _tev__SeekResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:SeekResponse", p->soap_type() == SOAP_TYPE__tev__SeekResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__SeekResponse(struct soap *soap, const char *URL, _tev__SeekResponse 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, "tev:SeekResponse", p->soap_type() == SOAP_TYPE__tev__SeekResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__SeekResponse(struct soap *soap, const char *URL, _tev__SeekResponse 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, "tev:SeekResponse", p->soap_type() == SOAP_TYPE__tev__SeekResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__SeekResponse(struct soap *soap, const char *URL, _tev__SeekResponse 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, "tev:SeekResponse", p->soap_type() == SOAP_TYPE__tev__SeekResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__SeekResponse * SOAP_FMAC4 soap_get__tev__SeekResponse(struct soap*, _tev__SeekResponse *, const char*, const char*); - -inline int soap_read__tev__SeekResponse(struct soap *soap, _tev__SeekResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__SeekResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__SeekResponse(struct soap *soap, const char *URL, _tev__SeekResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__SeekResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__SeekResponse(struct soap *soap, _tev__SeekResponse *p) -{ - if (::soap_read__tev__SeekResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__Seek_DEFINED -#define SOAP_TYPE__tev__Seek_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__Seek(struct soap*, const char*, int, const _tev__Seek *, const char*); -SOAP_FMAC3 _tev__Seek * SOAP_FMAC4 soap_in__tev__Seek(struct soap*, const char*, _tev__Seek *, const char*); -SOAP_FMAC1 _tev__Seek * SOAP_FMAC2 soap_instantiate__tev__Seek(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__Seek * soap_new__tev__Seek(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__Seek(soap, n, NULL, NULL, NULL); -} - -inline _tev__Seek * soap_new_req__tev__Seek( - struct soap *soap, - const struct timeval& UtcTime) -{ - _tev__Seek *_p = ::soap_new__tev__Seek(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__Seek::UtcTime = UtcTime; - } - return _p; -} - -inline _tev__Seek * soap_new_set__tev__Seek( - struct soap *soap, - const struct timeval& UtcTime, - bool *Reverse, - const std::vector & __any) -{ - _tev__Seek *_p = ::soap_new__tev__Seek(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__Seek::UtcTime = UtcTime; - _p->_tev__Seek::Reverse = Reverse; - _p->_tev__Seek::__any = __any; - } - return _p; -} - -inline int soap_write__tev__Seek(struct soap *soap, _tev__Seek const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:Seek", p->soap_type() == SOAP_TYPE__tev__Seek ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__Seek(struct soap *soap, const char *URL, _tev__Seek 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, "tev:Seek", p->soap_type() == SOAP_TYPE__tev__Seek ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__Seek(struct soap *soap, const char *URL, _tev__Seek 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, "tev:Seek", p->soap_type() == SOAP_TYPE__tev__Seek ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__Seek(struct soap *soap, const char *URL, _tev__Seek 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, "tev:Seek", p->soap_type() == SOAP_TYPE__tev__Seek ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__Seek * SOAP_FMAC4 soap_get__tev__Seek(struct soap*, _tev__Seek *, const char*, const char*); - -inline int soap_read__tev__Seek(struct soap *soap, _tev__Seek *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__Seek(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__Seek(struct soap *soap, const char *URL, _tev__Seek *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__Seek(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__Seek(struct soap *soap, _tev__Seek *p) -{ - if (::soap_read__tev__Seek(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__PullMessagesFaultResponse_DEFINED -#define SOAP_TYPE__tev__PullMessagesFaultResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__PullMessagesFaultResponse(struct soap*, const char*, int, const _tev__PullMessagesFaultResponse *, const char*); -SOAP_FMAC3 _tev__PullMessagesFaultResponse * SOAP_FMAC4 soap_in__tev__PullMessagesFaultResponse(struct soap*, const char*, _tev__PullMessagesFaultResponse *, const char*); -SOAP_FMAC1 _tev__PullMessagesFaultResponse * SOAP_FMAC2 soap_instantiate__tev__PullMessagesFaultResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__PullMessagesFaultResponse * soap_new__tev__PullMessagesFaultResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__PullMessagesFaultResponse(soap, n, NULL, NULL, NULL); -} - -inline _tev__PullMessagesFaultResponse * soap_new_req__tev__PullMessagesFaultResponse( - struct soap *soap, - const std::string& MaxTimeout, - int MaxMessageLimit) -{ - _tev__PullMessagesFaultResponse *_p = ::soap_new__tev__PullMessagesFaultResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__PullMessagesFaultResponse::MaxTimeout = MaxTimeout; - _p->_tev__PullMessagesFaultResponse::MaxMessageLimit = MaxMessageLimit; - } - return _p; -} - -inline _tev__PullMessagesFaultResponse * soap_new_set__tev__PullMessagesFaultResponse( - struct soap *soap, - const std::string& MaxTimeout, - int MaxMessageLimit, - const std::vector & __any) -{ - _tev__PullMessagesFaultResponse *_p = ::soap_new__tev__PullMessagesFaultResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__PullMessagesFaultResponse::MaxTimeout = MaxTimeout; - _p->_tev__PullMessagesFaultResponse::MaxMessageLimit = MaxMessageLimit; - _p->_tev__PullMessagesFaultResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tev__PullMessagesFaultResponse(struct soap *soap, _tev__PullMessagesFaultResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:PullMessagesFaultResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesFaultResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__PullMessagesFaultResponse(struct soap *soap, const char *URL, _tev__PullMessagesFaultResponse 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, "tev:PullMessagesFaultResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesFaultResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__PullMessagesFaultResponse(struct soap *soap, const char *URL, _tev__PullMessagesFaultResponse 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, "tev:PullMessagesFaultResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesFaultResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__PullMessagesFaultResponse(struct soap *soap, const char *URL, _tev__PullMessagesFaultResponse 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, "tev:PullMessagesFaultResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesFaultResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__PullMessagesFaultResponse * SOAP_FMAC4 soap_get__tev__PullMessagesFaultResponse(struct soap*, _tev__PullMessagesFaultResponse *, const char*, const char*); - -inline int soap_read__tev__PullMessagesFaultResponse(struct soap *soap, _tev__PullMessagesFaultResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__PullMessagesFaultResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__PullMessagesFaultResponse(struct soap *soap, const char *URL, _tev__PullMessagesFaultResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__PullMessagesFaultResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__PullMessagesFaultResponse(struct soap *soap, _tev__PullMessagesFaultResponse *p) -{ - if (::soap_read__tev__PullMessagesFaultResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__PullMessagesResponse_DEFINED -#define SOAP_TYPE__tev__PullMessagesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__PullMessagesResponse(struct soap*, const char*, int, const _tev__PullMessagesResponse *, const char*); -SOAP_FMAC3 _tev__PullMessagesResponse * SOAP_FMAC4 soap_in__tev__PullMessagesResponse(struct soap*, const char*, _tev__PullMessagesResponse *, const char*); -SOAP_FMAC1 _tev__PullMessagesResponse * SOAP_FMAC2 soap_instantiate__tev__PullMessagesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__PullMessagesResponse * soap_new__tev__PullMessagesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__PullMessagesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tev__PullMessagesResponse * soap_new_req__tev__PullMessagesResponse( - struct soap *soap, - const struct timeval& CurrentTime, - const struct timeval& TerminationTime) -{ - _tev__PullMessagesResponse *_p = ::soap_new__tev__PullMessagesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__PullMessagesResponse::CurrentTime = CurrentTime; - _p->_tev__PullMessagesResponse::TerminationTime = TerminationTime; - } - return _p; -} - -inline _tev__PullMessagesResponse * soap_new_set__tev__PullMessagesResponse( - struct soap *soap, - const struct timeval& CurrentTime, - const struct timeval& TerminationTime, - const std::vector & wsnt__NotificationMessage) -{ - _tev__PullMessagesResponse *_p = ::soap_new__tev__PullMessagesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__PullMessagesResponse::CurrentTime = CurrentTime; - _p->_tev__PullMessagesResponse::TerminationTime = TerminationTime; - _p->_tev__PullMessagesResponse::wsnt__NotificationMessage = wsnt__NotificationMessage; - } - return _p; -} - -inline int soap_write__tev__PullMessagesResponse(struct soap *soap, _tev__PullMessagesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:PullMessagesResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__PullMessagesResponse(struct soap *soap, const char *URL, _tev__PullMessagesResponse 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, "tev:PullMessagesResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__PullMessagesResponse(struct soap *soap, const char *URL, _tev__PullMessagesResponse 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, "tev:PullMessagesResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__PullMessagesResponse(struct soap *soap, const char *URL, _tev__PullMessagesResponse 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, "tev:PullMessagesResponse", p->soap_type() == SOAP_TYPE__tev__PullMessagesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__PullMessagesResponse * SOAP_FMAC4 soap_get__tev__PullMessagesResponse(struct soap*, _tev__PullMessagesResponse *, const char*, const char*); - -inline int soap_read__tev__PullMessagesResponse(struct soap *soap, _tev__PullMessagesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__PullMessagesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__PullMessagesResponse(struct soap *soap, const char *URL, _tev__PullMessagesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__PullMessagesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__PullMessagesResponse(struct soap *soap, _tev__PullMessagesResponse *p) -{ - if (::soap_read__tev__PullMessagesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__PullMessages_DEFINED -#define SOAP_TYPE__tev__PullMessages_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__PullMessages(struct soap*, const char*, int, const _tev__PullMessages *, const char*); -SOAP_FMAC3 _tev__PullMessages * SOAP_FMAC4 soap_in__tev__PullMessages(struct soap*, const char*, _tev__PullMessages *, const char*); -SOAP_FMAC1 _tev__PullMessages * SOAP_FMAC2 soap_instantiate__tev__PullMessages(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__PullMessages * soap_new__tev__PullMessages(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__PullMessages(soap, n, NULL, NULL, NULL); -} - -inline _tev__PullMessages * soap_new_req__tev__PullMessages( - struct soap *soap, - const std::string& Timeout, - int MessageLimit) -{ - _tev__PullMessages *_p = ::soap_new__tev__PullMessages(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__PullMessages::Timeout = Timeout; - _p->_tev__PullMessages::MessageLimit = MessageLimit; - } - return _p; -} - -inline _tev__PullMessages * soap_new_set__tev__PullMessages( - struct soap *soap, - const std::string& Timeout, - int MessageLimit, - const std::vector & __any) -{ - _tev__PullMessages *_p = ::soap_new__tev__PullMessages(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__PullMessages::Timeout = Timeout; - _p->_tev__PullMessages::MessageLimit = MessageLimit; - _p->_tev__PullMessages::__any = __any; - } - return _p; -} - -inline int soap_write__tev__PullMessages(struct soap *soap, _tev__PullMessages const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:PullMessages", p->soap_type() == SOAP_TYPE__tev__PullMessages ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__PullMessages(struct soap *soap, const char *URL, _tev__PullMessages 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, "tev:PullMessages", p->soap_type() == SOAP_TYPE__tev__PullMessages ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__PullMessages(struct soap *soap, const char *URL, _tev__PullMessages 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, "tev:PullMessages", p->soap_type() == SOAP_TYPE__tev__PullMessages ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__PullMessages(struct soap *soap, const char *URL, _tev__PullMessages 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, "tev:PullMessages", p->soap_type() == SOAP_TYPE__tev__PullMessages ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__PullMessages * SOAP_FMAC4 soap_get__tev__PullMessages(struct soap*, _tev__PullMessages *, const char*, const char*); - -inline int soap_read__tev__PullMessages(struct soap *soap, _tev__PullMessages *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__PullMessages(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__PullMessages(struct soap *soap, const char *URL, _tev__PullMessages *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__PullMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__PullMessages(struct soap *soap, _tev__PullMessages *p) -{ - if (::soap_read__tev__PullMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__CreatePullPointSubscriptionResponse_DEFINED -#define SOAP_TYPE__tev__CreatePullPointSubscriptionResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__CreatePullPointSubscriptionResponse(struct soap*, const char*, int, const _tev__CreatePullPointSubscriptionResponse *, const char*); -SOAP_FMAC3 _tev__CreatePullPointSubscriptionResponse * SOAP_FMAC4 soap_in__tev__CreatePullPointSubscriptionResponse(struct soap*, const char*, _tev__CreatePullPointSubscriptionResponse *, const char*); -SOAP_FMAC1 _tev__CreatePullPointSubscriptionResponse * SOAP_FMAC2 soap_instantiate__tev__CreatePullPointSubscriptionResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__CreatePullPointSubscriptionResponse * soap_new__tev__CreatePullPointSubscriptionResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__CreatePullPointSubscriptionResponse(soap, n, NULL, NULL, NULL); -} - -inline _tev__CreatePullPointSubscriptionResponse * soap_new_req__tev__CreatePullPointSubscriptionResponse( - struct soap *soap, - const struct wsa5__EndpointReferenceType& SubscriptionReference, - const struct timeval& wsnt__CurrentTime, - const struct timeval& wsnt__TerminationTime) -{ - _tev__CreatePullPointSubscriptionResponse *_p = ::soap_new__tev__CreatePullPointSubscriptionResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__CreatePullPointSubscriptionResponse::SubscriptionReference = SubscriptionReference; - _p->_tev__CreatePullPointSubscriptionResponse::wsnt__CurrentTime = wsnt__CurrentTime; - _p->_tev__CreatePullPointSubscriptionResponse::wsnt__TerminationTime = wsnt__TerminationTime; - } - return _p; -} - -inline _tev__CreatePullPointSubscriptionResponse * soap_new_set__tev__CreatePullPointSubscriptionResponse( - struct soap *soap, - const struct wsa5__EndpointReferenceType& SubscriptionReference, - const struct timeval& wsnt__CurrentTime, - const struct timeval& wsnt__TerminationTime, - const std::vector & __any) -{ - _tev__CreatePullPointSubscriptionResponse *_p = ::soap_new__tev__CreatePullPointSubscriptionResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__CreatePullPointSubscriptionResponse::SubscriptionReference = SubscriptionReference; - _p->_tev__CreatePullPointSubscriptionResponse::wsnt__CurrentTime = wsnt__CurrentTime; - _p->_tev__CreatePullPointSubscriptionResponse::wsnt__TerminationTime = wsnt__TerminationTime; - _p->_tev__CreatePullPointSubscriptionResponse::__any = __any; - } - return _p; -} - -inline int soap_write__tev__CreatePullPointSubscriptionResponse(struct soap *soap, _tev__CreatePullPointSubscriptionResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:CreatePullPointSubscriptionResponse", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscriptionResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__CreatePullPointSubscriptionResponse(struct soap *soap, const char *URL, _tev__CreatePullPointSubscriptionResponse 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, "tev:CreatePullPointSubscriptionResponse", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscriptionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__CreatePullPointSubscriptionResponse(struct soap *soap, const char *URL, _tev__CreatePullPointSubscriptionResponse 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, "tev:CreatePullPointSubscriptionResponse", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscriptionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__CreatePullPointSubscriptionResponse(struct soap *soap, const char *URL, _tev__CreatePullPointSubscriptionResponse 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, "tev:CreatePullPointSubscriptionResponse", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscriptionResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__CreatePullPointSubscriptionResponse * SOAP_FMAC4 soap_get__tev__CreatePullPointSubscriptionResponse(struct soap*, _tev__CreatePullPointSubscriptionResponse *, const char*, const char*); - -inline int soap_read__tev__CreatePullPointSubscriptionResponse(struct soap *soap, _tev__CreatePullPointSubscriptionResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__CreatePullPointSubscriptionResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__CreatePullPointSubscriptionResponse(struct soap *soap, const char *URL, _tev__CreatePullPointSubscriptionResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__CreatePullPointSubscriptionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__CreatePullPointSubscriptionResponse(struct soap *soap, _tev__CreatePullPointSubscriptionResponse *p) -{ - if (::soap_read__tev__CreatePullPointSubscriptionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__CreatePullPointSubscription_DEFINED -#define SOAP_TYPE__tev__CreatePullPointSubscription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__CreatePullPointSubscription(struct soap*, const char*, int, const _tev__CreatePullPointSubscription *, const char*); -SOAP_FMAC3 _tev__CreatePullPointSubscription * SOAP_FMAC4 soap_in__tev__CreatePullPointSubscription(struct soap*, const char*, _tev__CreatePullPointSubscription *, const char*); -SOAP_FMAC1 _tev__CreatePullPointSubscription * SOAP_FMAC2 soap_instantiate__tev__CreatePullPointSubscription(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__CreatePullPointSubscription * soap_new__tev__CreatePullPointSubscription(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__CreatePullPointSubscription(soap, n, NULL, NULL, NULL); -} - -inline _tev__CreatePullPointSubscription * soap_new_req__tev__CreatePullPointSubscription( - struct soap *soap) -{ - _tev__CreatePullPointSubscription *_p = ::soap_new__tev__CreatePullPointSubscription(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tev__CreatePullPointSubscription * soap_new_set__tev__CreatePullPointSubscription( - struct soap *soap, - wsnt__FilterType *Filter, - std::string *InitialTerminationTime, - _tev__CreatePullPointSubscription_SubscriptionPolicy *SubscriptionPolicy, - const std::vector & __any) -{ - _tev__CreatePullPointSubscription *_p = ::soap_new__tev__CreatePullPointSubscription(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__CreatePullPointSubscription::Filter = Filter; - _p->_tev__CreatePullPointSubscription::InitialTerminationTime = InitialTerminationTime; - _p->_tev__CreatePullPointSubscription::SubscriptionPolicy = SubscriptionPolicy; - _p->_tev__CreatePullPointSubscription::__any = __any; - } - return _p; -} - -inline int soap_write__tev__CreatePullPointSubscription(struct soap *soap, _tev__CreatePullPointSubscription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:CreatePullPointSubscription", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__CreatePullPointSubscription(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription 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, "tev:CreatePullPointSubscription", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__CreatePullPointSubscription(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription 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, "tev:CreatePullPointSubscription", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__CreatePullPointSubscription(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription 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, "tev:CreatePullPointSubscription", p->soap_type() == SOAP_TYPE__tev__CreatePullPointSubscription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__CreatePullPointSubscription * SOAP_FMAC4 soap_get__tev__CreatePullPointSubscription(struct soap*, _tev__CreatePullPointSubscription *, const char*, const char*); - -inline int soap_read__tev__CreatePullPointSubscription(struct soap *soap, _tev__CreatePullPointSubscription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__CreatePullPointSubscription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__CreatePullPointSubscription(struct soap *soap, const char *URL, _tev__CreatePullPointSubscription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__CreatePullPointSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__CreatePullPointSubscription(struct soap *soap, _tev__CreatePullPointSubscription *p) -{ - if (::soap_read__tev__CreatePullPointSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__GetServiceCapabilitiesResponse_DEFINED -#define SOAP_TYPE__tev__GetServiceCapabilitiesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetServiceCapabilitiesResponse(struct soap*, const char*, int, const _tev__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC3 _tev__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_in__tev__GetServiceCapabilitiesResponse(struct soap*, const char*, _tev__GetServiceCapabilitiesResponse *, const char*); -SOAP_FMAC1 _tev__GetServiceCapabilitiesResponse * SOAP_FMAC2 soap_instantiate__tev__GetServiceCapabilitiesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__GetServiceCapabilitiesResponse * soap_new__tev__GetServiceCapabilitiesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__GetServiceCapabilitiesResponse(soap, n, NULL, NULL, NULL); -} - -inline _tev__GetServiceCapabilitiesResponse * soap_new_req__tev__GetServiceCapabilitiesResponse( - struct soap *soap, - tev__Capabilities *Capabilities) -{ - _tev__GetServiceCapabilitiesResponse *_p = ::soap_new__tev__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline _tev__GetServiceCapabilitiesResponse * soap_new_set__tev__GetServiceCapabilitiesResponse( - struct soap *soap, - tev__Capabilities *Capabilities) -{ - _tev__GetServiceCapabilitiesResponse *_p = ::soap_new__tev__GetServiceCapabilitiesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_tev__GetServiceCapabilitiesResponse::Capabilities = Capabilities; - } - return _p; -} - -inline int soap_write__tev__GetServiceCapabilitiesResponse(struct soap *soap, _tev__GetServiceCapabilitiesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tev__GetServiceCapabilitiesResponse 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, "tev:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tev__GetServiceCapabilitiesResponse 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, "tev:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tev__GetServiceCapabilitiesResponse 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, "tev:GetServiceCapabilitiesResponse", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilitiesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__GetServiceCapabilitiesResponse * SOAP_FMAC4 soap_get__tev__GetServiceCapabilitiesResponse(struct soap*, _tev__GetServiceCapabilitiesResponse *, const char*, const char*); - -inline int soap_read__tev__GetServiceCapabilitiesResponse(struct soap *soap, _tev__GetServiceCapabilitiesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__GetServiceCapabilitiesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__GetServiceCapabilitiesResponse(struct soap *soap, const char *URL, _tev__GetServiceCapabilitiesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__GetServiceCapabilitiesResponse(struct soap *soap, _tev__GetServiceCapabilitiesResponse *p) -{ - if (::soap_read__tev__GetServiceCapabilitiesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tev__GetServiceCapabilities_DEFINED -#define SOAP_TYPE__tev__GetServiceCapabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tev__GetServiceCapabilities(struct soap*, const char*, int, const _tev__GetServiceCapabilities *, const char*); -SOAP_FMAC3 _tev__GetServiceCapabilities * SOAP_FMAC4 soap_in__tev__GetServiceCapabilities(struct soap*, const char*, _tev__GetServiceCapabilities *, const char*); -SOAP_FMAC1 _tev__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate__tev__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline _tev__GetServiceCapabilities * soap_new__tev__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate__tev__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline _tev__GetServiceCapabilities * soap_new_req__tev__GetServiceCapabilities( - struct soap *soap) -{ - _tev__GetServiceCapabilities *_p = ::soap_new__tev__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _tev__GetServiceCapabilities * soap_new_set__tev__GetServiceCapabilities( - struct soap *soap) -{ - _tev__GetServiceCapabilities *_p = ::soap_new__tev__GetServiceCapabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__tev__GetServiceCapabilities(struct soap *soap, _tev__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__tev__GetServiceCapabilities(struct soap *soap, const char *URL, _tev__GetServiceCapabilities 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, "tev:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__tev__GetServiceCapabilities(struct soap *soap, const char *URL, _tev__GetServiceCapabilities 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, "tev:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__tev__GetServiceCapabilities(struct soap *soap, const char *URL, _tev__GetServiceCapabilities 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, "tev:GetServiceCapabilities", p->soap_type() == SOAP_TYPE__tev__GetServiceCapabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _tev__GetServiceCapabilities * SOAP_FMAC4 soap_get__tev__GetServiceCapabilities(struct soap*, _tev__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read__tev__GetServiceCapabilities(struct soap *soap, _tev__GetServiceCapabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__tev__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__tev__GetServiceCapabilities(struct soap *soap, const char *URL, _tev__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__tev__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__tev__GetServiceCapabilities(struct soap *soap, _tev__GetServiceCapabilities *p) -{ - if (::soap_read__tev__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tev__SubscriptionPolicy_DEFINED -#define SOAP_TYPE_tev__SubscriptionPolicy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tev__SubscriptionPolicy(struct soap*, const char*, int, const tev__SubscriptionPolicy *, const char*); -SOAP_FMAC3 tev__SubscriptionPolicy * SOAP_FMAC4 soap_in_tev__SubscriptionPolicy(struct soap*, const char*, tev__SubscriptionPolicy *, const char*); -SOAP_FMAC1 tev__SubscriptionPolicy * SOAP_FMAC2 soap_instantiate_tev__SubscriptionPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline tev__SubscriptionPolicy * soap_new_tev__SubscriptionPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate_tev__SubscriptionPolicy(soap, n, NULL, NULL, NULL); -} - -inline tev__SubscriptionPolicy * soap_new_req_tev__SubscriptionPolicy( - struct soap *soap) -{ - tev__SubscriptionPolicy *_p = ::soap_new_tev__SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tev__SubscriptionPolicy * soap_new_set_tev__SubscriptionPolicy( - struct soap *soap, - const std::vector & __any, - bool *ChangedOnly, - const struct soap_dom_attribute& __anyAttribute) -{ - tev__SubscriptionPolicy *_p = ::soap_new_tev__SubscriptionPolicy(soap); - if (_p) - { _p->soap_default(soap); - _p->tev__SubscriptionPolicy::__any = __any; - _p->tev__SubscriptionPolicy::ChangedOnly = ChangedOnly; - _p->tev__SubscriptionPolicy::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tev__SubscriptionPolicy(struct soap *soap, tev__SubscriptionPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:SubscriptionPolicy", p->soap_type() == SOAP_TYPE_tev__SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tev__SubscriptionPolicy(struct soap *soap, const char *URL, tev__SubscriptionPolicy 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, "tev:SubscriptionPolicy", p->soap_type() == SOAP_TYPE_tev__SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tev__SubscriptionPolicy(struct soap *soap, const char *URL, tev__SubscriptionPolicy 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, "tev:SubscriptionPolicy", p->soap_type() == SOAP_TYPE_tev__SubscriptionPolicy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tev__SubscriptionPolicy(struct soap *soap, const char *URL, tev__SubscriptionPolicy 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, "tev:SubscriptionPolicy", p->soap_type() == SOAP_TYPE_tev__SubscriptionPolicy ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tev__SubscriptionPolicy * SOAP_FMAC4 soap_get_tev__SubscriptionPolicy(struct soap*, tev__SubscriptionPolicy *, const char*, const char*); - -inline int soap_read_tev__SubscriptionPolicy(struct soap *soap, tev__SubscriptionPolicy *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tev__SubscriptionPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tev__SubscriptionPolicy(struct soap *soap, const char *URL, tev__SubscriptionPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tev__SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tev__SubscriptionPolicy(struct soap *soap, tev__SubscriptionPolicy *p) -{ - if (::soap_read_tev__SubscriptionPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tev__Capabilities_DEFINED -#define SOAP_TYPE_tev__Capabilities_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tev__Capabilities(struct soap*, const char*, int, const tev__Capabilities *, const char*); -SOAP_FMAC3 tev__Capabilities * SOAP_FMAC4 soap_in_tev__Capabilities(struct soap*, const char*, tev__Capabilities *, const char*); -SOAP_FMAC1 tev__Capabilities * SOAP_FMAC2 soap_instantiate_tev__Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline tev__Capabilities * soap_new_tev__Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate_tev__Capabilities(soap, n, NULL, NULL, NULL); -} - -inline tev__Capabilities * soap_new_req_tev__Capabilities( - struct soap *soap) -{ - tev__Capabilities *_p = ::soap_new_tev__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline tev__Capabilities * soap_new_set_tev__Capabilities( - struct soap *soap, - const std::vector & __any, - bool *WSSubscriptionPolicySupport, - bool *WSPullPointSupport, - bool *WSPausableSubscriptionManagerInterfaceSupport, - int *MaxNotificationProducers, - int *MaxPullPoints, - bool *PersistentNotificationStorage, - const struct soap_dom_attribute& __anyAttribute) -{ - tev__Capabilities *_p = ::soap_new_tev__Capabilities(soap); - if (_p) - { _p->soap_default(soap); - _p->tev__Capabilities::__any = __any; - _p->tev__Capabilities::WSSubscriptionPolicySupport = WSSubscriptionPolicySupport; - _p->tev__Capabilities::WSPullPointSupport = WSPullPointSupport; - _p->tev__Capabilities::WSPausableSubscriptionManagerInterfaceSupport = WSPausableSubscriptionManagerInterfaceSupport; - _p->tev__Capabilities::MaxNotificationProducers = MaxNotificationProducers; - _p->tev__Capabilities::MaxPullPoints = MaxPullPoints; - _p->tev__Capabilities::PersistentNotificationStorage = PersistentNotificationStorage; - _p->tev__Capabilities::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_tev__Capabilities(struct soap *soap, tev__Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tev:Capabilities", p->soap_type() == SOAP_TYPE_tev__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tev__Capabilities(struct soap *soap, const char *URL, tev__Capabilities 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, "tev:Capabilities", p->soap_type() == SOAP_TYPE_tev__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tev__Capabilities(struct soap *soap, const char *URL, tev__Capabilities 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, "tev:Capabilities", p->soap_type() == SOAP_TYPE_tev__Capabilities ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tev__Capabilities(struct soap *soap, const char *URL, tev__Capabilities 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, "tev:Capabilities", p->soap_type() == SOAP_TYPE_tev__Capabilities ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tev__Capabilities * SOAP_FMAC4 soap_get_tev__Capabilities(struct soap*, tev__Capabilities *, const char*, const char*); - -inline int soap_read_tev__Capabilities(struct soap *soap, tev__Capabilities *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tev__Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tev__Capabilities(struct soap *soap, const char *URL, tev__Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tev__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tev__Capabilities(struct soap *soap, tev__Capabilities *p) -{ - if (::soap_read_tev__Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsrfbf__BaseFaultType_DEFINED -#define SOAP_TYPE_wsrfbf__BaseFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsrfbf__BaseFaultType(struct soap*, const char*, int, const wsrfbf__BaseFaultType *, const char*); -SOAP_FMAC3 wsrfbf__BaseFaultType * SOAP_FMAC4 soap_in_wsrfbf__BaseFaultType(struct soap*, const char*, wsrfbf__BaseFaultType *, const char*); -SOAP_FMAC1 wsrfbf__BaseFaultType * SOAP_FMAC2 soap_instantiate_wsrfbf__BaseFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsrfbf__BaseFaultType * soap_new_wsrfbf__BaseFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsrfbf__BaseFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsrfbf__BaseFaultType * soap_new_req_wsrfbf__BaseFaultType( - struct soap *soap, - const struct timeval& Timestamp) -{ - wsrfbf__BaseFaultType *_p = ::soap_new_wsrfbf__BaseFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp; - } - return _p; -} - -inline wsrfbf__BaseFaultType * soap_new_set_wsrfbf__BaseFaultType( - struct soap *soap, - const std::vector & __any, - const struct timeval& Timestamp, - struct wsa5__EndpointReferenceType *Originator, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description, - _wsrfbf__BaseFaultType_FaultCause *FaultCause, - const struct soap_dom_attribute& __anyAttribute) -{ - wsrfbf__BaseFaultType *_p = ::soap_new_wsrfbf__BaseFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp; - _p->wsrfbf__BaseFaultType::Originator = Originator; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode; - _p->wsrfbf__BaseFaultType::Description = Description; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write_wsrfbf__BaseFaultType(struct soap *soap, wsrfbf__BaseFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsrfbf:BaseFaultType", p->soap_type() == SOAP_TYPE_wsrfbf__BaseFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsrfbf__BaseFaultType(struct soap *soap, const char *URL, wsrfbf__BaseFaultType 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, "wsrfbf:BaseFaultType", p->soap_type() == SOAP_TYPE_wsrfbf__BaseFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsrfbf__BaseFaultType(struct soap *soap, const char *URL, wsrfbf__BaseFaultType 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, "wsrfbf:BaseFaultType", p->soap_type() == SOAP_TYPE_wsrfbf__BaseFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsrfbf__BaseFaultType(struct soap *soap, const char *URL, wsrfbf__BaseFaultType 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, "wsrfbf:BaseFaultType", p->soap_type() == SOAP_TYPE_wsrfbf__BaseFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsrfbf__BaseFaultType * SOAP_FMAC4 soap_get_wsrfbf__BaseFaultType(struct soap*, wsrfbf__BaseFaultType *, const char*, const char*); - -inline int soap_read_wsrfbf__BaseFaultType(struct soap *soap, wsrfbf__BaseFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsrfbf__BaseFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsrfbf__BaseFaultType(struct soap *soap, const char *URL, wsrfbf__BaseFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsrfbf__BaseFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsrfbf__BaseFaultType(struct soap *soap, wsrfbf__BaseFaultType *p) -{ - if (::soap_read_wsrfbf__BaseFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__ResumeSubscriptionResponse_DEFINED -#define SOAP_TYPE__wsnt__ResumeSubscriptionResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__ResumeSubscriptionResponse(struct soap*, const char*, int, const _wsnt__ResumeSubscriptionResponse *, const char*); -SOAP_FMAC3 _wsnt__ResumeSubscriptionResponse * SOAP_FMAC4 soap_in__wsnt__ResumeSubscriptionResponse(struct soap*, const char*, _wsnt__ResumeSubscriptionResponse *, const char*); -SOAP_FMAC1 _wsnt__ResumeSubscriptionResponse * SOAP_FMAC2 soap_instantiate__wsnt__ResumeSubscriptionResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__ResumeSubscriptionResponse * soap_new__wsnt__ResumeSubscriptionResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__ResumeSubscriptionResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__ResumeSubscriptionResponse * soap_new_req__wsnt__ResumeSubscriptionResponse( - struct soap *soap) -{ - _wsnt__ResumeSubscriptionResponse *_p = ::soap_new__wsnt__ResumeSubscriptionResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__ResumeSubscriptionResponse * soap_new_set__wsnt__ResumeSubscriptionResponse( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__ResumeSubscriptionResponse *_p = ::soap_new__wsnt__ResumeSubscriptionResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__ResumeSubscriptionResponse::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__ResumeSubscriptionResponse(struct soap *soap, _wsnt__ResumeSubscriptionResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:ResumeSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscriptionResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__ResumeSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__ResumeSubscriptionResponse 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, "wsnt:ResumeSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscriptionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__ResumeSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__ResumeSubscriptionResponse 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, "wsnt:ResumeSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscriptionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__ResumeSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__ResumeSubscriptionResponse 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, "wsnt:ResumeSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscriptionResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__ResumeSubscriptionResponse * SOAP_FMAC4 soap_get__wsnt__ResumeSubscriptionResponse(struct soap*, _wsnt__ResumeSubscriptionResponse *, const char*, const char*); - -inline int soap_read__wsnt__ResumeSubscriptionResponse(struct soap *soap, _wsnt__ResumeSubscriptionResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__ResumeSubscriptionResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__ResumeSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__ResumeSubscriptionResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__ResumeSubscriptionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__ResumeSubscriptionResponse(struct soap *soap, _wsnt__ResumeSubscriptionResponse *p) -{ - if (::soap_read__wsnt__ResumeSubscriptionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__ResumeSubscription_DEFINED -#define SOAP_TYPE__wsnt__ResumeSubscription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__ResumeSubscription(struct soap*, const char*, int, const _wsnt__ResumeSubscription *, const char*); -SOAP_FMAC3 _wsnt__ResumeSubscription * SOAP_FMAC4 soap_in__wsnt__ResumeSubscription(struct soap*, const char*, _wsnt__ResumeSubscription *, const char*); -SOAP_FMAC1 _wsnt__ResumeSubscription * SOAP_FMAC2 soap_instantiate__wsnt__ResumeSubscription(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__ResumeSubscription * soap_new__wsnt__ResumeSubscription(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__ResumeSubscription(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__ResumeSubscription * soap_new_req__wsnt__ResumeSubscription( - struct soap *soap) -{ - _wsnt__ResumeSubscription *_p = ::soap_new__wsnt__ResumeSubscription(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__ResumeSubscription * soap_new_set__wsnt__ResumeSubscription( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__ResumeSubscription *_p = ::soap_new__wsnt__ResumeSubscription(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__ResumeSubscription::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__ResumeSubscription(struct soap *soap, _wsnt__ResumeSubscription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:ResumeSubscription", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__ResumeSubscription(struct soap *soap, const char *URL, _wsnt__ResumeSubscription 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, "wsnt:ResumeSubscription", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__ResumeSubscription(struct soap *soap, const char *URL, _wsnt__ResumeSubscription 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, "wsnt:ResumeSubscription", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__ResumeSubscription(struct soap *soap, const char *URL, _wsnt__ResumeSubscription 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, "wsnt:ResumeSubscription", p->soap_type() == SOAP_TYPE__wsnt__ResumeSubscription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__ResumeSubscription * SOAP_FMAC4 soap_get__wsnt__ResumeSubscription(struct soap*, _wsnt__ResumeSubscription *, const char*, const char*); - -inline int soap_read__wsnt__ResumeSubscription(struct soap *soap, _wsnt__ResumeSubscription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__ResumeSubscription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__ResumeSubscription(struct soap *soap, const char *URL, _wsnt__ResumeSubscription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__ResumeSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__ResumeSubscription(struct soap *soap, _wsnt__ResumeSubscription *p) -{ - if (::soap_read__wsnt__ResumeSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__PauseSubscriptionResponse_DEFINED -#define SOAP_TYPE__wsnt__PauseSubscriptionResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__PauseSubscriptionResponse(struct soap*, const char*, int, const _wsnt__PauseSubscriptionResponse *, const char*); -SOAP_FMAC3 _wsnt__PauseSubscriptionResponse * SOAP_FMAC4 soap_in__wsnt__PauseSubscriptionResponse(struct soap*, const char*, _wsnt__PauseSubscriptionResponse *, const char*); -SOAP_FMAC1 _wsnt__PauseSubscriptionResponse * SOAP_FMAC2 soap_instantiate__wsnt__PauseSubscriptionResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__PauseSubscriptionResponse * soap_new__wsnt__PauseSubscriptionResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__PauseSubscriptionResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__PauseSubscriptionResponse * soap_new_req__wsnt__PauseSubscriptionResponse( - struct soap *soap) -{ - _wsnt__PauseSubscriptionResponse *_p = ::soap_new__wsnt__PauseSubscriptionResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__PauseSubscriptionResponse * soap_new_set__wsnt__PauseSubscriptionResponse( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__PauseSubscriptionResponse *_p = ::soap_new__wsnt__PauseSubscriptionResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__PauseSubscriptionResponse::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__PauseSubscriptionResponse(struct soap *soap, _wsnt__PauseSubscriptionResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:PauseSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscriptionResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__PauseSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__PauseSubscriptionResponse 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, "wsnt:PauseSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscriptionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__PauseSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__PauseSubscriptionResponse 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, "wsnt:PauseSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscriptionResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__PauseSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__PauseSubscriptionResponse 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, "wsnt:PauseSubscriptionResponse", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscriptionResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__PauseSubscriptionResponse * SOAP_FMAC4 soap_get__wsnt__PauseSubscriptionResponse(struct soap*, _wsnt__PauseSubscriptionResponse *, const char*, const char*); - -inline int soap_read__wsnt__PauseSubscriptionResponse(struct soap *soap, _wsnt__PauseSubscriptionResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__PauseSubscriptionResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__PauseSubscriptionResponse(struct soap *soap, const char *URL, _wsnt__PauseSubscriptionResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__PauseSubscriptionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__PauseSubscriptionResponse(struct soap *soap, _wsnt__PauseSubscriptionResponse *p) -{ - if (::soap_read__wsnt__PauseSubscriptionResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__PauseSubscription_DEFINED -#define SOAP_TYPE__wsnt__PauseSubscription_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__PauseSubscription(struct soap*, const char*, int, const _wsnt__PauseSubscription *, const char*); -SOAP_FMAC3 _wsnt__PauseSubscription * SOAP_FMAC4 soap_in__wsnt__PauseSubscription(struct soap*, const char*, _wsnt__PauseSubscription *, const char*); -SOAP_FMAC1 _wsnt__PauseSubscription * SOAP_FMAC2 soap_instantiate__wsnt__PauseSubscription(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__PauseSubscription * soap_new__wsnt__PauseSubscription(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__PauseSubscription(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__PauseSubscription * soap_new_req__wsnt__PauseSubscription( - struct soap *soap) -{ - _wsnt__PauseSubscription *_p = ::soap_new__wsnt__PauseSubscription(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__PauseSubscription * soap_new_set__wsnt__PauseSubscription( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__PauseSubscription *_p = ::soap_new__wsnt__PauseSubscription(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__PauseSubscription::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__PauseSubscription(struct soap *soap, _wsnt__PauseSubscription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:PauseSubscription", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscription ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__PauseSubscription(struct soap *soap, const char *URL, _wsnt__PauseSubscription 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, "wsnt:PauseSubscription", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__PauseSubscription(struct soap *soap, const char *URL, _wsnt__PauseSubscription 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, "wsnt:PauseSubscription", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscription ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__PauseSubscription(struct soap *soap, const char *URL, _wsnt__PauseSubscription 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, "wsnt:PauseSubscription", p->soap_type() == SOAP_TYPE__wsnt__PauseSubscription ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__PauseSubscription * SOAP_FMAC4 soap_get__wsnt__PauseSubscription(struct soap*, _wsnt__PauseSubscription *, const char*, const char*); - -inline int soap_read__wsnt__PauseSubscription(struct soap *soap, _wsnt__PauseSubscription *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__PauseSubscription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__PauseSubscription(struct soap *soap, const char *URL, _wsnt__PauseSubscription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__PauseSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__PauseSubscription(struct soap *soap, _wsnt__PauseSubscription *p) -{ - if (::soap_read__wsnt__PauseSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__UnsubscribeResponse_DEFINED -#define SOAP_TYPE__wsnt__UnsubscribeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__UnsubscribeResponse(struct soap*, const char*, int, const _wsnt__UnsubscribeResponse *, const char*); -SOAP_FMAC3 _wsnt__UnsubscribeResponse * SOAP_FMAC4 soap_in__wsnt__UnsubscribeResponse(struct soap*, const char*, _wsnt__UnsubscribeResponse *, const char*); -SOAP_FMAC1 _wsnt__UnsubscribeResponse * SOAP_FMAC2 soap_instantiate__wsnt__UnsubscribeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__UnsubscribeResponse * soap_new__wsnt__UnsubscribeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__UnsubscribeResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__UnsubscribeResponse * soap_new_req__wsnt__UnsubscribeResponse( - struct soap *soap) -{ - _wsnt__UnsubscribeResponse *_p = ::soap_new__wsnt__UnsubscribeResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__UnsubscribeResponse * soap_new_set__wsnt__UnsubscribeResponse( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__UnsubscribeResponse *_p = ::soap_new__wsnt__UnsubscribeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__UnsubscribeResponse::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__UnsubscribeResponse(struct soap *soap, _wsnt__UnsubscribeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnsubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__UnsubscribeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__UnsubscribeResponse(struct soap *soap, const char *URL, _wsnt__UnsubscribeResponse 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, "wsnt:UnsubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__UnsubscribeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__UnsubscribeResponse(struct soap *soap, const char *URL, _wsnt__UnsubscribeResponse 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, "wsnt:UnsubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__UnsubscribeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__UnsubscribeResponse(struct soap *soap, const char *URL, _wsnt__UnsubscribeResponse 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, "wsnt:UnsubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__UnsubscribeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__UnsubscribeResponse * SOAP_FMAC4 soap_get__wsnt__UnsubscribeResponse(struct soap*, _wsnt__UnsubscribeResponse *, const char*, const char*); - -inline int soap_read__wsnt__UnsubscribeResponse(struct soap *soap, _wsnt__UnsubscribeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__UnsubscribeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__UnsubscribeResponse(struct soap *soap, const char *URL, _wsnt__UnsubscribeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__UnsubscribeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__UnsubscribeResponse(struct soap *soap, _wsnt__UnsubscribeResponse *p) -{ - if (::soap_read__wsnt__UnsubscribeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__Unsubscribe_DEFINED -#define SOAP_TYPE__wsnt__Unsubscribe_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Unsubscribe(struct soap*, const char*, int, const _wsnt__Unsubscribe *, const char*); -SOAP_FMAC3 _wsnt__Unsubscribe * SOAP_FMAC4 soap_in__wsnt__Unsubscribe(struct soap*, const char*, _wsnt__Unsubscribe *, const char*); -SOAP_FMAC1 _wsnt__Unsubscribe * SOAP_FMAC2 soap_instantiate__wsnt__Unsubscribe(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__Unsubscribe * soap_new__wsnt__Unsubscribe(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__Unsubscribe(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__Unsubscribe * soap_new_req__wsnt__Unsubscribe( - struct soap *soap) -{ - _wsnt__Unsubscribe *_p = ::soap_new__wsnt__Unsubscribe(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__Unsubscribe * soap_new_set__wsnt__Unsubscribe( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__Unsubscribe *_p = ::soap_new__wsnt__Unsubscribe(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Unsubscribe::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__Unsubscribe(struct soap *soap, _wsnt__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:Unsubscribe", p->soap_type() == SOAP_TYPE__wsnt__Unsubscribe ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__Unsubscribe(struct soap *soap, const char *URL, _wsnt__Unsubscribe 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, "wsnt:Unsubscribe", p->soap_type() == SOAP_TYPE__wsnt__Unsubscribe ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__Unsubscribe(struct soap *soap, const char *URL, _wsnt__Unsubscribe 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, "wsnt:Unsubscribe", p->soap_type() == SOAP_TYPE__wsnt__Unsubscribe ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__Unsubscribe(struct soap *soap, const char *URL, _wsnt__Unsubscribe 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, "wsnt:Unsubscribe", p->soap_type() == SOAP_TYPE__wsnt__Unsubscribe ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__Unsubscribe * SOAP_FMAC4 soap_get__wsnt__Unsubscribe(struct soap*, _wsnt__Unsubscribe *, const char*, const char*); - -inline int soap_read__wsnt__Unsubscribe(struct soap *soap, _wsnt__Unsubscribe *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__Unsubscribe(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__Unsubscribe(struct soap *soap, const char *URL, _wsnt__Unsubscribe *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__Unsubscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__Unsubscribe(struct soap *soap, _wsnt__Unsubscribe *p) -{ - if (::soap_read__wsnt__Unsubscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__RenewResponse_DEFINED -#define SOAP_TYPE__wsnt__RenewResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__RenewResponse(struct soap*, const char*, int, const _wsnt__RenewResponse *, const char*); -SOAP_FMAC3 _wsnt__RenewResponse * SOAP_FMAC4 soap_in__wsnt__RenewResponse(struct soap*, const char*, _wsnt__RenewResponse *, const char*); -SOAP_FMAC1 _wsnt__RenewResponse * SOAP_FMAC2 soap_instantiate__wsnt__RenewResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__RenewResponse * soap_new__wsnt__RenewResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__RenewResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__RenewResponse * soap_new_req__wsnt__RenewResponse( - struct soap *soap, - const struct timeval& TerminationTime) -{ - _wsnt__RenewResponse *_p = ::soap_new__wsnt__RenewResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__RenewResponse::TerminationTime = TerminationTime; - } - return _p; -} - -inline _wsnt__RenewResponse * soap_new_set__wsnt__RenewResponse( - struct soap *soap, - const struct timeval& TerminationTime, - struct timeval *CurrentTime, - const std::vector & __any) -{ - _wsnt__RenewResponse *_p = ::soap_new__wsnt__RenewResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__RenewResponse::TerminationTime = TerminationTime; - _p->_wsnt__RenewResponse::CurrentTime = CurrentTime; - _p->_wsnt__RenewResponse::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__RenewResponse(struct soap *soap, _wsnt__RenewResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:RenewResponse", p->soap_type() == SOAP_TYPE__wsnt__RenewResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__RenewResponse(struct soap *soap, const char *URL, _wsnt__RenewResponse 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, "wsnt:RenewResponse", p->soap_type() == SOAP_TYPE__wsnt__RenewResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__RenewResponse(struct soap *soap, const char *URL, _wsnt__RenewResponse 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, "wsnt:RenewResponse", p->soap_type() == SOAP_TYPE__wsnt__RenewResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__RenewResponse(struct soap *soap, const char *URL, _wsnt__RenewResponse 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, "wsnt:RenewResponse", p->soap_type() == SOAP_TYPE__wsnt__RenewResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__RenewResponse * SOAP_FMAC4 soap_get__wsnt__RenewResponse(struct soap*, _wsnt__RenewResponse *, const char*, const char*); - -inline int soap_read__wsnt__RenewResponse(struct soap *soap, _wsnt__RenewResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__RenewResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__RenewResponse(struct soap *soap, const char *URL, _wsnt__RenewResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__RenewResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__RenewResponse(struct soap *soap, _wsnt__RenewResponse *p) -{ - if (::soap_read__wsnt__RenewResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__Renew_DEFINED -#define SOAP_TYPE__wsnt__Renew_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Renew(struct soap*, const char*, int, const _wsnt__Renew *, const char*); -SOAP_FMAC3 _wsnt__Renew * SOAP_FMAC4 soap_in__wsnt__Renew(struct soap*, const char*, _wsnt__Renew *, const char*); -SOAP_FMAC1 _wsnt__Renew * SOAP_FMAC2 soap_instantiate__wsnt__Renew(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__Renew * soap_new__wsnt__Renew(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__Renew(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__Renew * soap_new_req__wsnt__Renew( - struct soap *soap, - std::string *TerminationTime) -{ - _wsnt__Renew *_p = ::soap_new__wsnt__Renew(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Renew::TerminationTime = TerminationTime; - } - return _p; -} - -inline _wsnt__Renew * soap_new_set__wsnt__Renew( - struct soap *soap, - std::string *TerminationTime, - const std::vector & __any) -{ - _wsnt__Renew *_p = ::soap_new__wsnt__Renew(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Renew::TerminationTime = TerminationTime; - _p->_wsnt__Renew::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__Renew(struct soap *soap, _wsnt__Renew const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:Renew", p->soap_type() == SOAP_TYPE__wsnt__Renew ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__Renew(struct soap *soap, const char *URL, _wsnt__Renew 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, "wsnt:Renew", p->soap_type() == SOAP_TYPE__wsnt__Renew ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__Renew(struct soap *soap, const char *URL, _wsnt__Renew 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, "wsnt:Renew", p->soap_type() == SOAP_TYPE__wsnt__Renew ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__Renew(struct soap *soap, const char *URL, _wsnt__Renew 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, "wsnt:Renew", p->soap_type() == SOAP_TYPE__wsnt__Renew ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__Renew * SOAP_FMAC4 soap_get__wsnt__Renew(struct soap*, _wsnt__Renew *, const char*, const char*); - -inline int soap_read__wsnt__Renew(struct soap *soap, _wsnt__Renew *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__Renew(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__Renew(struct soap *soap, const char *URL, _wsnt__Renew *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__Renew(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__Renew(struct soap *soap, _wsnt__Renew *p) -{ - if (::soap_read__wsnt__Renew(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__CreatePullPointResponse_DEFINED -#define SOAP_TYPE__wsnt__CreatePullPointResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__CreatePullPointResponse(struct soap*, const char*, int, const _wsnt__CreatePullPointResponse *, const char*); -SOAP_FMAC3 _wsnt__CreatePullPointResponse * SOAP_FMAC4 soap_in__wsnt__CreatePullPointResponse(struct soap*, const char*, _wsnt__CreatePullPointResponse *, const char*); -SOAP_FMAC1 _wsnt__CreatePullPointResponse * SOAP_FMAC2 soap_instantiate__wsnt__CreatePullPointResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__CreatePullPointResponse * soap_new__wsnt__CreatePullPointResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__CreatePullPointResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__CreatePullPointResponse * soap_new_req__wsnt__CreatePullPointResponse( - struct soap *soap, - const struct wsa5__EndpointReferenceType& PullPoint) -{ - _wsnt__CreatePullPointResponse *_p = ::soap_new__wsnt__CreatePullPointResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__CreatePullPointResponse::PullPoint = PullPoint; - } - return _p; -} - -inline _wsnt__CreatePullPointResponse * soap_new_set__wsnt__CreatePullPointResponse( - struct soap *soap, - const struct wsa5__EndpointReferenceType& PullPoint, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - _wsnt__CreatePullPointResponse *_p = ::soap_new__wsnt__CreatePullPointResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__CreatePullPointResponse::PullPoint = PullPoint; - _p->_wsnt__CreatePullPointResponse::__any = __any; - _p->_wsnt__CreatePullPointResponse::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write__wsnt__CreatePullPointResponse(struct soap *soap, _wsnt__CreatePullPointResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:CreatePullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__CreatePullPointResponse(struct soap *soap, const char *URL, _wsnt__CreatePullPointResponse 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, "wsnt:CreatePullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__CreatePullPointResponse(struct soap *soap, const char *URL, _wsnt__CreatePullPointResponse 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, "wsnt:CreatePullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__CreatePullPointResponse(struct soap *soap, const char *URL, _wsnt__CreatePullPointResponse 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, "wsnt:CreatePullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__CreatePullPointResponse * SOAP_FMAC4 soap_get__wsnt__CreatePullPointResponse(struct soap*, _wsnt__CreatePullPointResponse *, const char*, const char*); - -inline int soap_read__wsnt__CreatePullPointResponse(struct soap *soap, _wsnt__CreatePullPointResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__CreatePullPointResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__CreatePullPointResponse(struct soap *soap, const char *URL, _wsnt__CreatePullPointResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__CreatePullPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__CreatePullPointResponse(struct soap *soap, _wsnt__CreatePullPointResponse *p) -{ - if (::soap_read__wsnt__CreatePullPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__CreatePullPoint_DEFINED -#define SOAP_TYPE__wsnt__CreatePullPoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__CreatePullPoint(struct soap*, const char*, int, const _wsnt__CreatePullPoint *, const char*); -SOAP_FMAC3 _wsnt__CreatePullPoint * SOAP_FMAC4 soap_in__wsnt__CreatePullPoint(struct soap*, const char*, _wsnt__CreatePullPoint *, const char*); -SOAP_FMAC1 _wsnt__CreatePullPoint * SOAP_FMAC2 soap_instantiate__wsnt__CreatePullPoint(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__CreatePullPoint * soap_new__wsnt__CreatePullPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__CreatePullPoint(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__CreatePullPoint * soap_new_req__wsnt__CreatePullPoint( - struct soap *soap) -{ - _wsnt__CreatePullPoint *_p = ::soap_new__wsnt__CreatePullPoint(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__CreatePullPoint * soap_new_set__wsnt__CreatePullPoint( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - _wsnt__CreatePullPoint *_p = ::soap_new__wsnt__CreatePullPoint(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__CreatePullPoint::__any = __any; - _p->_wsnt__CreatePullPoint::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write__wsnt__CreatePullPoint(struct soap *soap, _wsnt__CreatePullPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:CreatePullPoint", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPoint ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__CreatePullPoint(struct soap *soap, const char *URL, _wsnt__CreatePullPoint 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, "wsnt:CreatePullPoint", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__CreatePullPoint(struct soap *soap, const char *URL, _wsnt__CreatePullPoint 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, "wsnt:CreatePullPoint", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__CreatePullPoint(struct soap *soap, const char *URL, _wsnt__CreatePullPoint 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, "wsnt:CreatePullPoint", p->soap_type() == SOAP_TYPE__wsnt__CreatePullPoint ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__CreatePullPoint * SOAP_FMAC4 soap_get__wsnt__CreatePullPoint(struct soap*, _wsnt__CreatePullPoint *, const char*, const char*); - -inline int soap_read__wsnt__CreatePullPoint(struct soap *soap, _wsnt__CreatePullPoint *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__CreatePullPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__CreatePullPoint(struct soap *soap, const char *URL, _wsnt__CreatePullPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__CreatePullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__CreatePullPoint(struct soap *soap, _wsnt__CreatePullPoint *p) -{ - if (::soap_read__wsnt__CreatePullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__DestroyPullPointResponse_DEFINED -#define SOAP_TYPE__wsnt__DestroyPullPointResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__DestroyPullPointResponse(struct soap*, const char*, int, const _wsnt__DestroyPullPointResponse *, const char*); -SOAP_FMAC3 _wsnt__DestroyPullPointResponse * SOAP_FMAC4 soap_in__wsnt__DestroyPullPointResponse(struct soap*, const char*, _wsnt__DestroyPullPointResponse *, const char*); -SOAP_FMAC1 _wsnt__DestroyPullPointResponse * SOAP_FMAC2 soap_instantiate__wsnt__DestroyPullPointResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__DestroyPullPointResponse * soap_new__wsnt__DestroyPullPointResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__DestroyPullPointResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__DestroyPullPointResponse * soap_new_req__wsnt__DestroyPullPointResponse( - struct soap *soap) -{ - _wsnt__DestroyPullPointResponse *_p = ::soap_new__wsnt__DestroyPullPointResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__DestroyPullPointResponse * soap_new_set__wsnt__DestroyPullPointResponse( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - _wsnt__DestroyPullPointResponse *_p = ::soap_new__wsnt__DestroyPullPointResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__DestroyPullPointResponse::__any = __any; - _p->_wsnt__DestroyPullPointResponse::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write__wsnt__DestroyPullPointResponse(struct soap *soap, _wsnt__DestroyPullPointResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:DestroyPullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__DestroyPullPointResponse(struct soap *soap, const char *URL, _wsnt__DestroyPullPointResponse 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, "wsnt:DestroyPullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__DestroyPullPointResponse(struct soap *soap, const char *URL, _wsnt__DestroyPullPointResponse 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, "wsnt:DestroyPullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPointResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__DestroyPullPointResponse(struct soap *soap, const char *URL, _wsnt__DestroyPullPointResponse 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, "wsnt:DestroyPullPointResponse", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPointResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__DestroyPullPointResponse * SOAP_FMAC4 soap_get__wsnt__DestroyPullPointResponse(struct soap*, _wsnt__DestroyPullPointResponse *, const char*, const char*); - -inline int soap_read__wsnt__DestroyPullPointResponse(struct soap *soap, _wsnt__DestroyPullPointResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__DestroyPullPointResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__DestroyPullPointResponse(struct soap *soap, const char *URL, _wsnt__DestroyPullPointResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__DestroyPullPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__DestroyPullPointResponse(struct soap *soap, _wsnt__DestroyPullPointResponse *p) -{ - if (::soap_read__wsnt__DestroyPullPointResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__DestroyPullPoint_DEFINED -#define SOAP_TYPE__wsnt__DestroyPullPoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__DestroyPullPoint(struct soap*, const char*, int, const _wsnt__DestroyPullPoint *, const char*); -SOAP_FMAC3 _wsnt__DestroyPullPoint * SOAP_FMAC4 soap_in__wsnt__DestroyPullPoint(struct soap*, const char*, _wsnt__DestroyPullPoint *, const char*); -SOAP_FMAC1 _wsnt__DestroyPullPoint * SOAP_FMAC2 soap_instantiate__wsnt__DestroyPullPoint(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__DestroyPullPoint * soap_new__wsnt__DestroyPullPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__DestroyPullPoint(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__DestroyPullPoint * soap_new_req__wsnt__DestroyPullPoint( - struct soap *soap) -{ - _wsnt__DestroyPullPoint *_p = ::soap_new__wsnt__DestroyPullPoint(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__DestroyPullPoint * soap_new_set__wsnt__DestroyPullPoint( - struct soap *soap, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - _wsnt__DestroyPullPoint *_p = ::soap_new__wsnt__DestroyPullPoint(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__DestroyPullPoint::__any = __any; - _p->_wsnt__DestroyPullPoint::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write__wsnt__DestroyPullPoint(struct soap *soap, _wsnt__DestroyPullPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:DestroyPullPoint", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPoint ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__DestroyPullPoint(struct soap *soap, const char *URL, _wsnt__DestroyPullPoint 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, "wsnt:DestroyPullPoint", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__DestroyPullPoint(struct soap *soap, const char *URL, _wsnt__DestroyPullPoint 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, "wsnt:DestroyPullPoint", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPoint ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__DestroyPullPoint(struct soap *soap, const char *URL, _wsnt__DestroyPullPoint 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, "wsnt:DestroyPullPoint", p->soap_type() == SOAP_TYPE__wsnt__DestroyPullPoint ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__DestroyPullPoint * SOAP_FMAC4 soap_get__wsnt__DestroyPullPoint(struct soap*, _wsnt__DestroyPullPoint *, const char*, const char*); - -inline int soap_read__wsnt__DestroyPullPoint(struct soap *soap, _wsnt__DestroyPullPoint *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__DestroyPullPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__DestroyPullPoint(struct soap *soap, const char *URL, _wsnt__DestroyPullPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__DestroyPullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__DestroyPullPoint(struct soap *soap, _wsnt__DestroyPullPoint *p) -{ - if (::soap_read__wsnt__DestroyPullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__GetMessagesResponse_DEFINED -#define SOAP_TYPE__wsnt__GetMessagesResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetMessagesResponse(struct soap*, const char*, int, const _wsnt__GetMessagesResponse *, const char*); -SOAP_FMAC3 _wsnt__GetMessagesResponse * SOAP_FMAC4 soap_in__wsnt__GetMessagesResponse(struct soap*, const char*, _wsnt__GetMessagesResponse *, const char*); -SOAP_FMAC1 _wsnt__GetMessagesResponse * SOAP_FMAC2 soap_instantiate__wsnt__GetMessagesResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__GetMessagesResponse * soap_new__wsnt__GetMessagesResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__GetMessagesResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__GetMessagesResponse * soap_new_req__wsnt__GetMessagesResponse( - struct soap *soap) -{ - _wsnt__GetMessagesResponse *_p = ::soap_new__wsnt__GetMessagesResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__GetMessagesResponse * soap_new_set__wsnt__GetMessagesResponse( - struct soap *soap, - const std::vector & NotificationMessage, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - _wsnt__GetMessagesResponse *_p = ::soap_new__wsnt__GetMessagesResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__GetMessagesResponse::NotificationMessage = NotificationMessage; - _p->_wsnt__GetMessagesResponse::__any = __any; - _p->_wsnt__GetMessagesResponse::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write__wsnt__GetMessagesResponse(struct soap *soap, _wsnt__GetMessagesResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:GetMessagesResponse", p->soap_type() == SOAP_TYPE__wsnt__GetMessagesResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__GetMessagesResponse(struct soap *soap, const char *URL, _wsnt__GetMessagesResponse 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, "wsnt:GetMessagesResponse", p->soap_type() == SOAP_TYPE__wsnt__GetMessagesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__GetMessagesResponse(struct soap *soap, const char *URL, _wsnt__GetMessagesResponse 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, "wsnt:GetMessagesResponse", p->soap_type() == SOAP_TYPE__wsnt__GetMessagesResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__GetMessagesResponse(struct soap *soap, const char *URL, _wsnt__GetMessagesResponse 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, "wsnt:GetMessagesResponse", p->soap_type() == SOAP_TYPE__wsnt__GetMessagesResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__GetMessagesResponse * SOAP_FMAC4 soap_get__wsnt__GetMessagesResponse(struct soap*, _wsnt__GetMessagesResponse *, const char*, const char*); - -inline int soap_read__wsnt__GetMessagesResponse(struct soap *soap, _wsnt__GetMessagesResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__GetMessagesResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__GetMessagesResponse(struct soap *soap, const char *URL, _wsnt__GetMessagesResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__GetMessagesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__GetMessagesResponse(struct soap *soap, _wsnt__GetMessagesResponse *p) -{ - if (::soap_read__wsnt__GetMessagesResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__GetMessages_DEFINED -#define SOAP_TYPE__wsnt__GetMessages_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetMessages(struct soap*, const char*, int, const _wsnt__GetMessages *, const char*); -SOAP_FMAC3 _wsnt__GetMessages * SOAP_FMAC4 soap_in__wsnt__GetMessages(struct soap*, const char*, _wsnt__GetMessages *, const char*); -SOAP_FMAC1 _wsnt__GetMessages * SOAP_FMAC2 soap_instantiate__wsnt__GetMessages(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__GetMessages * soap_new__wsnt__GetMessages(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__GetMessages(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__GetMessages * soap_new_req__wsnt__GetMessages( - struct soap *soap) -{ - _wsnt__GetMessages *_p = ::soap_new__wsnt__GetMessages(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__GetMessages * soap_new_set__wsnt__GetMessages( - struct soap *soap, - std::string *MaximumNumber, - const std::vector & __any, - const struct soap_dom_attribute& __anyAttribute) -{ - _wsnt__GetMessages *_p = ::soap_new__wsnt__GetMessages(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__GetMessages::MaximumNumber = MaximumNumber; - _p->_wsnt__GetMessages::__any = __any; - _p->_wsnt__GetMessages::__anyAttribute = __anyAttribute; - } - return _p; -} - -inline int soap_write__wsnt__GetMessages(struct soap *soap, _wsnt__GetMessages const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:GetMessages", p->soap_type() == SOAP_TYPE__wsnt__GetMessages ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__GetMessages(struct soap *soap, const char *URL, _wsnt__GetMessages 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, "wsnt:GetMessages", p->soap_type() == SOAP_TYPE__wsnt__GetMessages ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__GetMessages(struct soap *soap, const char *URL, _wsnt__GetMessages 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, "wsnt:GetMessages", p->soap_type() == SOAP_TYPE__wsnt__GetMessages ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__GetMessages(struct soap *soap, const char *URL, _wsnt__GetMessages 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, "wsnt:GetMessages", p->soap_type() == SOAP_TYPE__wsnt__GetMessages ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__GetMessages * SOAP_FMAC4 soap_get__wsnt__GetMessages(struct soap*, _wsnt__GetMessages *, const char*, const char*); - -inline int soap_read__wsnt__GetMessages(struct soap *soap, _wsnt__GetMessages *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__GetMessages(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__GetMessages(struct soap *soap, const char *URL, _wsnt__GetMessages *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__GetMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__GetMessages(struct soap *soap, _wsnt__GetMessages *p) -{ - if (::soap_read__wsnt__GetMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__GetCurrentMessageResponse_DEFINED -#define SOAP_TYPE__wsnt__GetCurrentMessageResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetCurrentMessageResponse(struct soap*, const char*, int, const _wsnt__GetCurrentMessageResponse *, const char*); -SOAP_FMAC3 _wsnt__GetCurrentMessageResponse * SOAP_FMAC4 soap_in__wsnt__GetCurrentMessageResponse(struct soap*, const char*, _wsnt__GetCurrentMessageResponse *, const char*); -SOAP_FMAC1 _wsnt__GetCurrentMessageResponse * SOAP_FMAC2 soap_instantiate__wsnt__GetCurrentMessageResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__GetCurrentMessageResponse * soap_new__wsnt__GetCurrentMessageResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__GetCurrentMessageResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__GetCurrentMessageResponse * soap_new_req__wsnt__GetCurrentMessageResponse( - struct soap *soap) -{ - _wsnt__GetCurrentMessageResponse *_p = ::soap_new__wsnt__GetCurrentMessageResponse(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__GetCurrentMessageResponse * soap_new_set__wsnt__GetCurrentMessageResponse( - struct soap *soap, - const std::vector & __any) -{ - _wsnt__GetCurrentMessageResponse *_p = ::soap_new__wsnt__GetCurrentMessageResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__GetCurrentMessageResponse::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__GetCurrentMessageResponse(struct soap *soap, _wsnt__GetCurrentMessageResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:GetCurrentMessageResponse", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessageResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__GetCurrentMessageResponse(struct soap *soap, const char *URL, _wsnt__GetCurrentMessageResponse 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, "wsnt:GetCurrentMessageResponse", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessageResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__GetCurrentMessageResponse(struct soap *soap, const char *URL, _wsnt__GetCurrentMessageResponse 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, "wsnt:GetCurrentMessageResponse", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessageResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__GetCurrentMessageResponse(struct soap *soap, const char *URL, _wsnt__GetCurrentMessageResponse 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, "wsnt:GetCurrentMessageResponse", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessageResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__GetCurrentMessageResponse * SOAP_FMAC4 soap_get__wsnt__GetCurrentMessageResponse(struct soap*, _wsnt__GetCurrentMessageResponse *, const char*, const char*); - -inline int soap_read__wsnt__GetCurrentMessageResponse(struct soap *soap, _wsnt__GetCurrentMessageResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__GetCurrentMessageResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__GetCurrentMessageResponse(struct soap *soap, const char *URL, _wsnt__GetCurrentMessageResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__GetCurrentMessageResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__GetCurrentMessageResponse(struct soap *soap, _wsnt__GetCurrentMessageResponse *p) -{ - if (::soap_read__wsnt__GetCurrentMessageResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__GetCurrentMessage_DEFINED -#define SOAP_TYPE__wsnt__GetCurrentMessage_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__GetCurrentMessage(struct soap*, const char*, int, const _wsnt__GetCurrentMessage *, const char*); -SOAP_FMAC3 _wsnt__GetCurrentMessage * SOAP_FMAC4 soap_in__wsnt__GetCurrentMessage(struct soap*, const char*, _wsnt__GetCurrentMessage *, const char*); -SOAP_FMAC1 _wsnt__GetCurrentMessage * SOAP_FMAC2 soap_instantiate__wsnt__GetCurrentMessage(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__GetCurrentMessage * soap_new__wsnt__GetCurrentMessage(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__GetCurrentMessage(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__GetCurrentMessage * soap_new_req__wsnt__GetCurrentMessage( - struct soap *soap, - wsnt__TopicExpressionType *Topic) -{ - _wsnt__GetCurrentMessage *_p = ::soap_new__wsnt__GetCurrentMessage(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__GetCurrentMessage::Topic = Topic; - } - return _p; -} - -inline _wsnt__GetCurrentMessage * soap_new_set__wsnt__GetCurrentMessage( - struct soap *soap, - wsnt__TopicExpressionType *Topic, - const std::vector & __any) -{ - _wsnt__GetCurrentMessage *_p = ::soap_new__wsnt__GetCurrentMessage(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__GetCurrentMessage::Topic = Topic; - _p->_wsnt__GetCurrentMessage::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__GetCurrentMessage(struct soap *soap, _wsnt__GetCurrentMessage const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:GetCurrentMessage", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessage ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__GetCurrentMessage(struct soap *soap, const char *URL, _wsnt__GetCurrentMessage 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, "wsnt:GetCurrentMessage", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessage ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__GetCurrentMessage(struct soap *soap, const char *URL, _wsnt__GetCurrentMessage 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, "wsnt:GetCurrentMessage", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessage ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__GetCurrentMessage(struct soap *soap, const char *URL, _wsnt__GetCurrentMessage 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, "wsnt:GetCurrentMessage", p->soap_type() == SOAP_TYPE__wsnt__GetCurrentMessage ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__GetCurrentMessage * SOAP_FMAC4 soap_get__wsnt__GetCurrentMessage(struct soap*, _wsnt__GetCurrentMessage *, const char*, const char*); - -inline int soap_read__wsnt__GetCurrentMessage(struct soap *soap, _wsnt__GetCurrentMessage *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__GetCurrentMessage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__GetCurrentMessage(struct soap *soap, const char *URL, _wsnt__GetCurrentMessage *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__GetCurrentMessage(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__GetCurrentMessage(struct soap *soap, _wsnt__GetCurrentMessage *p) -{ - if (::soap_read__wsnt__GetCurrentMessage(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__SubscribeResponse_DEFINED -#define SOAP_TYPE__wsnt__SubscribeResponse_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__SubscribeResponse(struct soap*, const char*, int, const _wsnt__SubscribeResponse *, const char*); -SOAP_FMAC3 _wsnt__SubscribeResponse * SOAP_FMAC4 soap_in__wsnt__SubscribeResponse(struct soap*, const char*, _wsnt__SubscribeResponse *, const char*); -SOAP_FMAC1 _wsnt__SubscribeResponse * SOAP_FMAC2 soap_instantiate__wsnt__SubscribeResponse(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__SubscribeResponse * soap_new__wsnt__SubscribeResponse(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__SubscribeResponse(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__SubscribeResponse * soap_new_req__wsnt__SubscribeResponse( - struct soap *soap, - const struct wsa5__EndpointReferenceType& SubscriptionReference) -{ - _wsnt__SubscribeResponse *_p = ::soap_new__wsnt__SubscribeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__SubscribeResponse::SubscriptionReference = SubscriptionReference; - } - return _p; -} - -inline _wsnt__SubscribeResponse * soap_new_set__wsnt__SubscribeResponse( - struct soap *soap, - const struct wsa5__EndpointReferenceType& SubscriptionReference, - struct timeval *CurrentTime, - struct timeval *TerminationTime, - const std::vector & __any) -{ - _wsnt__SubscribeResponse *_p = ::soap_new__wsnt__SubscribeResponse(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__SubscribeResponse::SubscriptionReference = SubscriptionReference; - _p->_wsnt__SubscribeResponse::CurrentTime = CurrentTime; - _p->_wsnt__SubscribeResponse::TerminationTime = TerminationTime; - _p->_wsnt__SubscribeResponse::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__SubscribeResponse(struct soap *soap, _wsnt__SubscribeResponse const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:SubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__SubscribeResponse ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__SubscribeResponse(struct soap *soap, const char *URL, _wsnt__SubscribeResponse 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, "wsnt:SubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__SubscribeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__SubscribeResponse(struct soap *soap, const char *URL, _wsnt__SubscribeResponse 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, "wsnt:SubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__SubscribeResponse ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__SubscribeResponse(struct soap *soap, const char *URL, _wsnt__SubscribeResponse 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, "wsnt:SubscribeResponse", p->soap_type() == SOAP_TYPE__wsnt__SubscribeResponse ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__SubscribeResponse * SOAP_FMAC4 soap_get__wsnt__SubscribeResponse(struct soap*, _wsnt__SubscribeResponse *, const char*, const char*); - -inline int soap_read__wsnt__SubscribeResponse(struct soap *soap, _wsnt__SubscribeResponse *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__SubscribeResponse(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__SubscribeResponse(struct soap *soap, const char *URL, _wsnt__SubscribeResponse *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__SubscribeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__SubscribeResponse(struct soap *soap, _wsnt__SubscribeResponse *p) -{ - if (::soap_read__wsnt__SubscribeResponse(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__Subscribe_DEFINED -#define SOAP_TYPE__wsnt__Subscribe_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Subscribe(struct soap*, const char*, int, const _wsnt__Subscribe *, const char*); -SOAP_FMAC3 _wsnt__Subscribe * SOAP_FMAC4 soap_in__wsnt__Subscribe(struct soap*, const char*, _wsnt__Subscribe *, const char*); -SOAP_FMAC1 _wsnt__Subscribe * SOAP_FMAC2 soap_instantiate__wsnt__Subscribe(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__Subscribe * soap_new__wsnt__Subscribe(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__Subscribe(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__Subscribe * soap_new_req__wsnt__Subscribe( - struct soap *soap, - const struct wsa5__EndpointReferenceType& ConsumerReference) -{ - _wsnt__Subscribe *_p = ::soap_new__wsnt__Subscribe(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Subscribe::ConsumerReference = ConsumerReference; - } - return _p; -} - -inline _wsnt__Subscribe * soap_new_set__wsnt__Subscribe( - struct soap *soap, - const struct wsa5__EndpointReferenceType& ConsumerReference, - wsnt__FilterType *Filter, - std::string *InitialTerminationTime, - _wsnt__Subscribe_SubscriptionPolicy *SubscriptionPolicy, - const std::vector & __any) -{ - _wsnt__Subscribe *_p = ::soap_new__wsnt__Subscribe(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Subscribe::ConsumerReference = ConsumerReference; - _p->_wsnt__Subscribe::Filter = Filter; - _p->_wsnt__Subscribe::InitialTerminationTime = InitialTerminationTime; - _p->_wsnt__Subscribe::SubscriptionPolicy = SubscriptionPolicy; - _p->_wsnt__Subscribe::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__Subscribe(struct soap *soap, _wsnt__Subscribe const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:Subscribe", p->soap_type() == SOAP_TYPE__wsnt__Subscribe ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__Subscribe(struct soap *soap, const char *URL, _wsnt__Subscribe 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, "wsnt:Subscribe", p->soap_type() == SOAP_TYPE__wsnt__Subscribe ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__Subscribe(struct soap *soap, const char *URL, _wsnt__Subscribe 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, "wsnt:Subscribe", p->soap_type() == SOAP_TYPE__wsnt__Subscribe ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__Subscribe(struct soap *soap, const char *URL, _wsnt__Subscribe 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, "wsnt:Subscribe", p->soap_type() == SOAP_TYPE__wsnt__Subscribe ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__Subscribe * SOAP_FMAC4 soap_get__wsnt__Subscribe(struct soap*, _wsnt__Subscribe *, const char*, const char*); - -inline int soap_read__wsnt__Subscribe(struct soap *soap, _wsnt__Subscribe *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__Subscribe(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__Subscribe(struct soap *soap, const char *URL, _wsnt__Subscribe *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__Subscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__Subscribe(struct soap *soap, _wsnt__Subscribe *p) -{ - if (::soap_read__wsnt__Subscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__UseRaw_DEFINED -#define SOAP_TYPE__wsnt__UseRaw_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__UseRaw(struct soap*, const char*, int, const _wsnt__UseRaw *, const char*); -SOAP_FMAC3 _wsnt__UseRaw * SOAP_FMAC4 soap_in__wsnt__UseRaw(struct soap*, const char*, _wsnt__UseRaw *, const char*); -SOAP_FMAC1 _wsnt__UseRaw * SOAP_FMAC2 soap_instantiate__wsnt__UseRaw(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__UseRaw * soap_new__wsnt__UseRaw(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__UseRaw(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__UseRaw * soap_new_req__wsnt__UseRaw( - struct soap *soap) -{ - _wsnt__UseRaw *_p = ::soap_new__wsnt__UseRaw(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__UseRaw * soap_new_set__wsnt__UseRaw( - struct soap *soap) -{ - _wsnt__UseRaw *_p = ::soap_new__wsnt__UseRaw(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline int soap_write__wsnt__UseRaw(struct soap *soap, _wsnt__UseRaw const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UseRaw", p->soap_type() == SOAP_TYPE__wsnt__UseRaw ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__UseRaw(struct soap *soap, const char *URL, _wsnt__UseRaw 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, "wsnt:UseRaw", p->soap_type() == SOAP_TYPE__wsnt__UseRaw ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__UseRaw(struct soap *soap, const char *URL, _wsnt__UseRaw 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, "wsnt:UseRaw", p->soap_type() == SOAP_TYPE__wsnt__UseRaw ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__UseRaw(struct soap *soap, const char *URL, _wsnt__UseRaw 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, "wsnt:UseRaw", p->soap_type() == SOAP_TYPE__wsnt__UseRaw ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__UseRaw * SOAP_FMAC4 soap_get__wsnt__UseRaw(struct soap*, _wsnt__UseRaw *, const char*, const char*); - -inline int soap_read__wsnt__UseRaw(struct soap *soap, _wsnt__UseRaw *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__UseRaw(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__UseRaw(struct soap *soap, const char *URL, _wsnt__UseRaw *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__UseRaw(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__UseRaw(struct soap *soap, _wsnt__UseRaw *p) -{ - if (::soap_read__wsnt__UseRaw(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__Notify_DEFINED -#define SOAP_TYPE__wsnt__Notify_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__Notify(struct soap*, const char*, int, const _wsnt__Notify *, const char*); -SOAP_FMAC3 _wsnt__Notify * SOAP_FMAC4 soap_in__wsnt__Notify(struct soap*, const char*, _wsnt__Notify *, const char*); -SOAP_FMAC1 _wsnt__Notify * SOAP_FMAC2 soap_instantiate__wsnt__Notify(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__Notify * soap_new__wsnt__Notify(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__Notify(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__Notify * soap_new_req__wsnt__Notify( - struct soap *soap, - const std::vector & NotificationMessage) -{ - _wsnt__Notify *_p = ::soap_new__wsnt__Notify(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Notify::NotificationMessage = NotificationMessage; - } - return _p; -} - -inline _wsnt__Notify * soap_new_set__wsnt__Notify( - struct soap *soap, - const std::vector & NotificationMessage, - const std::vector & __any) -{ - _wsnt__Notify *_p = ::soap_new__wsnt__Notify(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__Notify::NotificationMessage = NotificationMessage; - _p->_wsnt__Notify::__any = __any; - } - return _p; -} - -inline int soap_write__wsnt__Notify(struct soap *soap, _wsnt__Notify const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:Notify", p->soap_type() == SOAP_TYPE__wsnt__Notify ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__Notify(struct soap *soap, const char *URL, _wsnt__Notify 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, "wsnt:Notify", p->soap_type() == SOAP_TYPE__wsnt__Notify ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__Notify(struct soap *soap, const char *URL, _wsnt__Notify 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, "wsnt:Notify", p->soap_type() == SOAP_TYPE__wsnt__Notify ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__Notify(struct soap *soap, const char *URL, _wsnt__Notify 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, "wsnt:Notify", p->soap_type() == SOAP_TYPE__wsnt__Notify ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__Notify * SOAP_FMAC4 soap_get__wsnt__Notify(struct soap*, _wsnt__Notify *, const char*, const char*); - -inline int soap_read__wsnt__Notify(struct soap *soap, _wsnt__Notify *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__Notify(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__Notify(struct soap *soap, const char *URL, _wsnt__Notify *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__Notify(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__Notify(struct soap *soap, _wsnt__Notify *p) -{ - if (::soap_read__wsnt__Notify(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__SubscriptionManagerRP_DEFINED -#define SOAP_TYPE__wsnt__SubscriptionManagerRP_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__SubscriptionManagerRP(struct soap*, const char*, int, const _wsnt__SubscriptionManagerRP *, const char*); -SOAP_FMAC3 _wsnt__SubscriptionManagerRP * SOAP_FMAC4 soap_in__wsnt__SubscriptionManagerRP(struct soap*, const char*, _wsnt__SubscriptionManagerRP *, const char*); -SOAP_FMAC1 _wsnt__SubscriptionManagerRP * SOAP_FMAC2 soap_instantiate__wsnt__SubscriptionManagerRP(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__SubscriptionManagerRP * soap_new__wsnt__SubscriptionManagerRP(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__SubscriptionManagerRP(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__SubscriptionManagerRP * soap_new_req__wsnt__SubscriptionManagerRP( - struct soap *soap, - const struct wsa5__EndpointReferenceType& ConsumerReference) -{ - _wsnt__SubscriptionManagerRP *_p = ::soap_new__wsnt__SubscriptionManagerRP(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__SubscriptionManagerRP::ConsumerReference = ConsumerReference; - } - return _p; -} - -inline _wsnt__SubscriptionManagerRP * soap_new_set__wsnt__SubscriptionManagerRP( - struct soap *soap, - const struct wsa5__EndpointReferenceType& ConsumerReference, - wsnt__FilterType *Filter, - wsnt__SubscriptionPolicyType *SubscriptionPolicy, - struct timeval *CreationTime) -{ - _wsnt__SubscriptionManagerRP *_p = ::soap_new__wsnt__SubscriptionManagerRP(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__SubscriptionManagerRP::ConsumerReference = ConsumerReference; - _p->_wsnt__SubscriptionManagerRP::Filter = Filter; - _p->_wsnt__SubscriptionManagerRP::SubscriptionPolicy = SubscriptionPolicy; - _p->_wsnt__SubscriptionManagerRP::CreationTime = CreationTime; - } - return _p; -} - -inline int soap_write__wsnt__SubscriptionManagerRP(struct soap *soap, _wsnt__SubscriptionManagerRP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:SubscriptionManagerRP", p->soap_type() == SOAP_TYPE__wsnt__SubscriptionManagerRP ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__SubscriptionManagerRP(struct soap *soap, const char *URL, _wsnt__SubscriptionManagerRP 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, "wsnt:SubscriptionManagerRP", p->soap_type() == SOAP_TYPE__wsnt__SubscriptionManagerRP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__SubscriptionManagerRP(struct soap *soap, const char *URL, _wsnt__SubscriptionManagerRP 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, "wsnt:SubscriptionManagerRP", p->soap_type() == SOAP_TYPE__wsnt__SubscriptionManagerRP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__SubscriptionManagerRP(struct soap *soap, const char *URL, _wsnt__SubscriptionManagerRP 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, "wsnt:SubscriptionManagerRP", p->soap_type() == SOAP_TYPE__wsnt__SubscriptionManagerRP ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__SubscriptionManagerRP * SOAP_FMAC4 soap_get__wsnt__SubscriptionManagerRP(struct soap*, _wsnt__SubscriptionManagerRP *, const char*, const char*); - -inline int soap_read__wsnt__SubscriptionManagerRP(struct soap *soap, _wsnt__SubscriptionManagerRP *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__SubscriptionManagerRP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__SubscriptionManagerRP(struct soap *soap, const char *URL, _wsnt__SubscriptionManagerRP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__SubscriptionManagerRP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__SubscriptionManagerRP(struct soap *soap, _wsnt__SubscriptionManagerRP *p) -{ - if (::soap_read__wsnt__SubscriptionManagerRP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsnt__NotificationProducerRP_DEFINED -#define SOAP_TYPE__wsnt__NotificationProducerRP_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsnt__NotificationProducerRP(struct soap*, const char*, int, const _wsnt__NotificationProducerRP *, const char*); -SOAP_FMAC3 _wsnt__NotificationProducerRP * SOAP_FMAC4 soap_in__wsnt__NotificationProducerRP(struct soap*, const char*, _wsnt__NotificationProducerRP *, const char*); -SOAP_FMAC1 _wsnt__NotificationProducerRP * SOAP_FMAC2 soap_instantiate__wsnt__NotificationProducerRP(struct soap*, int, const char*, const char*, size_t*); - -inline _wsnt__NotificationProducerRP * soap_new__wsnt__NotificationProducerRP(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsnt__NotificationProducerRP(soap, n, NULL, NULL, NULL); -} - -inline _wsnt__NotificationProducerRP * soap_new_req__wsnt__NotificationProducerRP( - struct soap *soap) -{ - _wsnt__NotificationProducerRP *_p = ::soap_new__wsnt__NotificationProducerRP(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline _wsnt__NotificationProducerRP * soap_new_set__wsnt__NotificationProducerRP( - struct soap *soap, - const std::vector & TopicExpression, - bool *FixedTopicSet, - const std::vector & TopicExpressionDialect, - wstop__TopicSetType *wstop__TopicSet) -{ - _wsnt__NotificationProducerRP *_p = ::soap_new__wsnt__NotificationProducerRP(soap); - if (_p) - { _p->soap_default(soap); - _p->_wsnt__NotificationProducerRP::TopicExpression = TopicExpression; - _p->_wsnt__NotificationProducerRP::FixedTopicSet = FixedTopicSet; - _p->_wsnt__NotificationProducerRP::TopicExpressionDialect = TopicExpressionDialect; - _p->_wsnt__NotificationProducerRP::wstop__TopicSet = wstop__TopicSet; - } - return _p; -} - -inline int soap_write__wsnt__NotificationProducerRP(struct soap *soap, _wsnt__NotificationProducerRP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:NotificationProducerRP", p->soap_type() == SOAP_TYPE__wsnt__NotificationProducerRP ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsnt__NotificationProducerRP(struct soap *soap, const char *URL, _wsnt__NotificationProducerRP 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, "wsnt:NotificationProducerRP", p->soap_type() == SOAP_TYPE__wsnt__NotificationProducerRP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsnt__NotificationProducerRP(struct soap *soap, const char *URL, _wsnt__NotificationProducerRP 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, "wsnt:NotificationProducerRP", p->soap_type() == SOAP_TYPE__wsnt__NotificationProducerRP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsnt__NotificationProducerRP(struct soap *soap, const char *URL, _wsnt__NotificationProducerRP 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, "wsnt:NotificationProducerRP", p->soap_type() == SOAP_TYPE__wsnt__NotificationProducerRP ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 _wsnt__NotificationProducerRP * SOAP_FMAC4 soap_get__wsnt__NotificationProducerRP(struct soap*, _wsnt__NotificationProducerRP *, const char*, const char*); - -inline int soap_read__wsnt__NotificationProducerRP(struct soap *soap, _wsnt__NotificationProducerRP *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get__wsnt__NotificationProducerRP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsnt__NotificationProducerRP(struct soap *soap, const char *URL, _wsnt__NotificationProducerRP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsnt__NotificationProducerRP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsnt__NotificationProducerRP(struct soap *soap, _wsnt__NotificationProducerRP *p) -{ - if (::soap_read__wsnt__NotificationProducerRP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__ResumeFailedFaultType_DEFINED -#define SOAP_TYPE_wsnt__ResumeFailedFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__ResumeFailedFaultType(struct soap*, const char*, int, const wsnt__ResumeFailedFaultType *, const char*); -SOAP_FMAC3 wsnt__ResumeFailedFaultType * SOAP_FMAC4 soap_in_wsnt__ResumeFailedFaultType(struct soap*, const char*, wsnt__ResumeFailedFaultType *, const char*); -SOAP_FMAC1 wsnt__ResumeFailedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__ResumeFailedFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__ResumeFailedFaultType * soap_new_wsnt__ResumeFailedFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__ResumeFailedFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__ResumeFailedFaultType * soap_new_req_wsnt__ResumeFailedFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__ResumeFailedFaultType *_p = ::soap_new_wsnt__ResumeFailedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__ResumeFailedFaultType * soap_new_set_wsnt__ResumeFailedFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__ResumeFailedFaultType *_p = ::soap_new_wsnt__ResumeFailedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__ResumeFailedFaultType(struct soap *soap, wsnt__ResumeFailedFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:ResumeFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__ResumeFailedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__ResumeFailedFaultType(struct soap *soap, const char *URL, wsnt__ResumeFailedFaultType 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, "wsnt:ResumeFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__ResumeFailedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__ResumeFailedFaultType(struct soap *soap, const char *URL, wsnt__ResumeFailedFaultType 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, "wsnt:ResumeFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__ResumeFailedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__ResumeFailedFaultType(struct soap *soap, const char *URL, wsnt__ResumeFailedFaultType 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, "wsnt:ResumeFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__ResumeFailedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__ResumeFailedFaultType * SOAP_FMAC4 soap_get_wsnt__ResumeFailedFaultType(struct soap*, wsnt__ResumeFailedFaultType *, const char*, const char*); - -inline int soap_read_wsnt__ResumeFailedFaultType(struct soap *soap, wsnt__ResumeFailedFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__ResumeFailedFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__ResumeFailedFaultType(struct soap *soap, const char *URL, wsnt__ResumeFailedFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__ResumeFailedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__ResumeFailedFaultType(struct soap *soap, wsnt__ResumeFailedFaultType *p) -{ - if (::soap_read_wsnt__ResumeFailedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__PauseFailedFaultType_DEFINED -#define SOAP_TYPE_wsnt__PauseFailedFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__PauseFailedFaultType(struct soap*, const char*, int, const wsnt__PauseFailedFaultType *, const char*); -SOAP_FMAC3 wsnt__PauseFailedFaultType * SOAP_FMAC4 soap_in_wsnt__PauseFailedFaultType(struct soap*, const char*, wsnt__PauseFailedFaultType *, const char*); -SOAP_FMAC1 wsnt__PauseFailedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__PauseFailedFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__PauseFailedFaultType * soap_new_wsnt__PauseFailedFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__PauseFailedFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__PauseFailedFaultType * soap_new_req_wsnt__PauseFailedFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__PauseFailedFaultType *_p = ::soap_new_wsnt__PauseFailedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__PauseFailedFaultType * soap_new_set_wsnt__PauseFailedFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__PauseFailedFaultType *_p = ::soap_new_wsnt__PauseFailedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__PauseFailedFaultType(struct soap *soap, wsnt__PauseFailedFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:PauseFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__PauseFailedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__PauseFailedFaultType(struct soap *soap, const char *URL, wsnt__PauseFailedFaultType 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, "wsnt:PauseFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__PauseFailedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__PauseFailedFaultType(struct soap *soap, const char *URL, wsnt__PauseFailedFaultType 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, "wsnt:PauseFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__PauseFailedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__PauseFailedFaultType(struct soap *soap, const char *URL, wsnt__PauseFailedFaultType 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, "wsnt:PauseFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__PauseFailedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__PauseFailedFaultType * SOAP_FMAC4 soap_get_wsnt__PauseFailedFaultType(struct soap*, wsnt__PauseFailedFaultType *, const char*, const char*); - -inline int soap_read_wsnt__PauseFailedFaultType(struct soap *soap, wsnt__PauseFailedFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__PauseFailedFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__PauseFailedFaultType(struct soap *soap, const char *URL, wsnt__PauseFailedFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__PauseFailedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__PauseFailedFaultType(struct soap *soap, wsnt__PauseFailedFaultType *p) -{ - if (::soap_read_wsnt__PauseFailedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToDestroySubscriptionFaultType(struct soap*, const char*, int, const wsnt__UnableToDestroySubscriptionFaultType *, const char*); -SOAP_FMAC3 wsnt__UnableToDestroySubscriptionFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToDestroySubscriptionFaultType(struct soap*, const char*, wsnt__UnableToDestroySubscriptionFaultType *, const char*); -SOAP_FMAC1 wsnt__UnableToDestroySubscriptionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToDestroySubscriptionFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnableToDestroySubscriptionFaultType * soap_new_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnableToDestroySubscriptionFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnableToDestroySubscriptionFaultType * soap_new_req_wsnt__UnableToDestroySubscriptionFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__UnableToDestroySubscriptionFaultType *_p = ::soap_new_wsnt__UnableToDestroySubscriptionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnableToDestroySubscriptionFaultType * soap_new_set_wsnt__UnableToDestroySubscriptionFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnableToDestroySubscriptionFaultType *_p = ::soap_new_wsnt__UnableToDestroySubscriptionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, wsnt__UnableToDestroySubscriptionFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnableToDestroySubscriptionFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroySubscriptionFaultType 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, "wsnt:UnableToDestroySubscriptionFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroySubscriptionFaultType 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, "wsnt:UnableToDestroySubscriptionFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroySubscriptionFaultType 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, "wsnt:UnableToDestroySubscriptionFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroySubscriptionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnableToDestroySubscriptionFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToDestroySubscriptionFaultType(struct soap*, wsnt__UnableToDestroySubscriptionFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, wsnt__UnableToDestroySubscriptionFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnableToDestroySubscriptionFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroySubscriptionFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnableToDestroySubscriptionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnableToDestroySubscriptionFaultType(struct soap *soap, wsnt__UnableToDestroySubscriptionFaultType *p) -{ - if (::soap_read_wsnt__UnableToDestroySubscriptionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnacceptableTerminationTimeFaultType(struct soap*, const char*, int, const wsnt__UnacceptableTerminationTimeFaultType *, const char*); -SOAP_FMAC3 wsnt__UnacceptableTerminationTimeFaultType * SOAP_FMAC4 soap_in_wsnt__UnacceptableTerminationTimeFaultType(struct soap*, const char*, wsnt__UnacceptableTerminationTimeFaultType *, const char*); -SOAP_FMAC1 wsnt__UnacceptableTerminationTimeFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnacceptableTerminationTimeFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnacceptableTerminationTimeFaultType * soap_new_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnacceptableTerminationTimeFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnacceptableTerminationTimeFaultType * soap_new_req_wsnt__UnacceptableTerminationTimeFaultType( - struct soap *soap, - const struct timeval& MinimumTime, - const struct timeval& Timestamp__1) -{ - wsnt__UnacceptableTerminationTimeFaultType *_p = ::soap_new_wsnt__UnacceptableTerminationTimeFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__UnacceptableTerminationTimeFaultType::MinimumTime = MinimumTime; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnacceptableTerminationTimeFaultType * soap_new_set_wsnt__UnacceptableTerminationTimeFaultType( - struct soap *soap, - const struct timeval& MinimumTime, - struct timeval *MaximumTime, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnacceptableTerminationTimeFaultType *_p = ::soap_new_wsnt__UnacceptableTerminationTimeFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__UnacceptableTerminationTimeFaultType::MinimumTime = MinimumTime; - _p->wsnt__UnacceptableTerminationTimeFaultType::MaximumTime = MaximumTime; - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableTerminationTimeFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnacceptableTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableTerminationTimeFaultType 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, "wsnt:UnacceptableTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableTerminationTimeFaultType 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, "wsnt:UnacceptableTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableTerminationTimeFaultType 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, "wsnt:UnacceptableTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnacceptableTerminationTimeFaultType * SOAP_FMAC4 soap_get_wsnt__UnacceptableTerminationTimeFaultType(struct soap*, wsnt__UnacceptableTerminationTimeFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableTerminationTimeFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnacceptableTerminationTimeFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableTerminationTimeFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnacceptableTerminationTimeFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnacceptableTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableTerminationTimeFaultType *p) -{ - if (::soap_read_wsnt__UnacceptableTerminationTimeFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToCreatePullPointFaultType(struct soap*, const char*, int, const wsnt__UnableToCreatePullPointFaultType *, const char*); -SOAP_FMAC3 wsnt__UnableToCreatePullPointFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToCreatePullPointFaultType(struct soap*, const char*, wsnt__UnableToCreatePullPointFaultType *, const char*); -SOAP_FMAC1 wsnt__UnableToCreatePullPointFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToCreatePullPointFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnableToCreatePullPointFaultType * soap_new_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnableToCreatePullPointFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnableToCreatePullPointFaultType * soap_new_req_wsnt__UnableToCreatePullPointFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__UnableToCreatePullPointFaultType *_p = ::soap_new_wsnt__UnableToCreatePullPointFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnableToCreatePullPointFaultType * soap_new_set_wsnt__UnableToCreatePullPointFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnableToCreatePullPointFaultType *_p = ::soap_new_wsnt__UnableToCreatePullPointFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, wsnt__UnableToCreatePullPointFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnableToCreatePullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToCreatePullPointFaultType 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, "wsnt:UnableToCreatePullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToCreatePullPointFaultType 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, "wsnt:UnableToCreatePullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToCreatePullPointFaultType 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, "wsnt:UnableToCreatePullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToCreatePullPointFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnableToCreatePullPointFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToCreatePullPointFaultType(struct soap*, wsnt__UnableToCreatePullPointFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, wsnt__UnableToCreatePullPointFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnableToCreatePullPointFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToCreatePullPointFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnableToCreatePullPointFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnableToCreatePullPointFaultType(struct soap *soap, wsnt__UnableToCreatePullPointFaultType *p) -{ - if (::soap_read_wsnt__UnableToCreatePullPointFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToDestroyPullPointFaultType(struct soap*, const char*, int, const wsnt__UnableToDestroyPullPointFaultType *, const char*); -SOAP_FMAC3 wsnt__UnableToDestroyPullPointFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToDestroyPullPointFaultType(struct soap*, const char*, wsnt__UnableToDestroyPullPointFaultType *, const char*); -SOAP_FMAC1 wsnt__UnableToDestroyPullPointFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToDestroyPullPointFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnableToDestroyPullPointFaultType * soap_new_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnableToDestroyPullPointFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnableToDestroyPullPointFaultType * soap_new_req_wsnt__UnableToDestroyPullPointFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__UnableToDestroyPullPointFaultType *_p = ::soap_new_wsnt__UnableToDestroyPullPointFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnableToDestroyPullPointFaultType * soap_new_set_wsnt__UnableToDestroyPullPointFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnableToDestroyPullPointFaultType *_p = ::soap_new_wsnt__UnableToDestroyPullPointFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, wsnt__UnableToDestroyPullPointFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnableToDestroyPullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroyPullPointFaultType 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, "wsnt:UnableToDestroyPullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroyPullPointFaultType 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, "wsnt:UnableToDestroyPullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroyPullPointFaultType 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, "wsnt:UnableToDestroyPullPointFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToDestroyPullPointFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnableToDestroyPullPointFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToDestroyPullPointFaultType(struct soap*, wsnt__UnableToDestroyPullPointFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, wsnt__UnableToDestroyPullPointFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnableToDestroyPullPointFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, const char *URL, wsnt__UnableToDestroyPullPointFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnableToDestroyPullPointFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnableToDestroyPullPointFaultType(struct soap *soap, wsnt__UnableToDestroyPullPointFaultType *p) -{ - if (::soap_read_wsnt__UnableToDestroyPullPointFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnableToGetMessagesFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnableToGetMessagesFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnableToGetMessagesFaultType(struct soap*, const char*, int, const wsnt__UnableToGetMessagesFaultType *, const char*); -SOAP_FMAC3 wsnt__UnableToGetMessagesFaultType * SOAP_FMAC4 soap_in_wsnt__UnableToGetMessagesFaultType(struct soap*, const char*, wsnt__UnableToGetMessagesFaultType *, const char*); -SOAP_FMAC1 wsnt__UnableToGetMessagesFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnableToGetMessagesFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnableToGetMessagesFaultType * soap_new_wsnt__UnableToGetMessagesFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnableToGetMessagesFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnableToGetMessagesFaultType * soap_new_req_wsnt__UnableToGetMessagesFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__UnableToGetMessagesFaultType *_p = ::soap_new_wsnt__UnableToGetMessagesFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnableToGetMessagesFaultType * soap_new_set_wsnt__UnableToGetMessagesFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnableToGetMessagesFaultType *_p = ::soap_new_wsnt__UnableToGetMessagesFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnableToGetMessagesFaultType(struct soap *soap, wsnt__UnableToGetMessagesFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnableToGetMessagesFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToGetMessagesFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnableToGetMessagesFaultType(struct soap *soap, const char *URL, wsnt__UnableToGetMessagesFaultType 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, "wsnt:UnableToGetMessagesFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToGetMessagesFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnableToGetMessagesFaultType(struct soap *soap, const char *URL, wsnt__UnableToGetMessagesFaultType 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, "wsnt:UnableToGetMessagesFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToGetMessagesFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnableToGetMessagesFaultType(struct soap *soap, const char *URL, wsnt__UnableToGetMessagesFaultType 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, "wsnt:UnableToGetMessagesFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnableToGetMessagesFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnableToGetMessagesFaultType * SOAP_FMAC4 soap_get_wsnt__UnableToGetMessagesFaultType(struct soap*, wsnt__UnableToGetMessagesFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnableToGetMessagesFaultType(struct soap *soap, wsnt__UnableToGetMessagesFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnableToGetMessagesFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnableToGetMessagesFaultType(struct soap *soap, const char *URL, wsnt__UnableToGetMessagesFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnableToGetMessagesFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnableToGetMessagesFaultType(struct soap *soap, wsnt__UnableToGetMessagesFaultType *p) -{ - if (::soap_read_wsnt__UnableToGetMessagesFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType_DEFINED -#define SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__NoCurrentMessageOnTopicFaultType(struct soap*, const char*, int, const wsnt__NoCurrentMessageOnTopicFaultType *, const char*); -SOAP_FMAC3 wsnt__NoCurrentMessageOnTopicFaultType * SOAP_FMAC4 soap_in_wsnt__NoCurrentMessageOnTopicFaultType(struct soap*, const char*, wsnt__NoCurrentMessageOnTopicFaultType *, const char*); -SOAP_FMAC1 wsnt__NoCurrentMessageOnTopicFaultType * SOAP_FMAC2 soap_instantiate_wsnt__NoCurrentMessageOnTopicFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__NoCurrentMessageOnTopicFaultType * soap_new_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__NoCurrentMessageOnTopicFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__NoCurrentMessageOnTopicFaultType * soap_new_req_wsnt__NoCurrentMessageOnTopicFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__NoCurrentMessageOnTopicFaultType *_p = ::soap_new_wsnt__NoCurrentMessageOnTopicFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__NoCurrentMessageOnTopicFaultType * soap_new_set_wsnt__NoCurrentMessageOnTopicFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__NoCurrentMessageOnTopicFaultType *_p = ::soap_new_wsnt__NoCurrentMessageOnTopicFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, wsnt__NoCurrentMessageOnTopicFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:NoCurrentMessageOnTopicFaultType", p->soap_type() == SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, const char *URL, wsnt__NoCurrentMessageOnTopicFaultType 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, "wsnt:NoCurrentMessageOnTopicFaultType", p->soap_type() == SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, const char *URL, wsnt__NoCurrentMessageOnTopicFaultType 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, "wsnt:NoCurrentMessageOnTopicFaultType", p->soap_type() == SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, const char *URL, wsnt__NoCurrentMessageOnTopicFaultType 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, "wsnt:NoCurrentMessageOnTopicFaultType", p->soap_type() == SOAP_TYPE_wsnt__NoCurrentMessageOnTopicFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__NoCurrentMessageOnTopicFaultType * SOAP_FMAC4 soap_get_wsnt__NoCurrentMessageOnTopicFaultType(struct soap*, wsnt__NoCurrentMessageOnTopicFaultType *, const char*, const char*); - -inline int soap_read_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, wsnt__NoCurrentMessageOnTopicFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__NoCurrentMessageOnTopicFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, const char *URL, wsnt__NoCurrentMessageOnTopicFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__NoCurrentMessageOnTopicFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__NoCurrentMessageOnTopicFaultType(struct soap *soap, wsnt__NoCurrentMessageOnTopicFaultType *p) -{ - if (::soap_read_wsnt__NoCurrentMessageOnTopicFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, const char*, int, const wsnt__UnacceptableInitialTerminationTimeFaultType *, const char*); -SOAP_FMAC3 wsnt__UnacceptableInitialTerminationTimeFaultType * SOAP_FMAC4 soap_in_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, const char*, wsnt__UnacceptableInitialTerminationTimeFaultType *, const char*); -SOAP_FMAC1 wsnt__UnacceptableInitialTerminationTimeFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnacceptableInitialTerminationTimeFaultType * soap_new_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnacceptableInitialTerminationTimeFaultType * soap_new_req_wsnt__UnacceptableInitialTerminationTimeFaultType( - struct soap *soap, - const struct timeval& MinimumTime, - const struct timeval& Timestamp__1) -{ - wsnt__UnacceptableInitialTerminationTimeFaultType *_p = ::soap_new_wsnt__UnacceptableInitialTerminationTimeFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__UnacceptableInitialTerminationTimeFaultType::MinimumTime = MinimumTime; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnacceptableInitialTerminationTimeFaultType * soap_new_set_wsnt__UnacceptableInitialTerminationTimeFaultType( - struct soap *soap, - const struct timeval& MinimumTime, - struct timeval *MaximumTime, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnacceptableInitialTerminationTimeFaultType *_p = ::soap_new_wsnt__UnacceptableInitialTerminationTimeFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__UnacceptableInitialTerminationTimeFaultType::MinimumTime = MinimumTime; - _p->wsnt__UnacceptableInitialTerminationTimeFaultType::MaximumTime = MaximumTime; - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableInitialTerminationTimeFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnacceptableInitialTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableInitialTerminationTimeFaultType 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, "wsnt:UnacceptableInitialTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableInitialTerminationTimeFaultType 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, "wsnt:UnacceptableInitialTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableInitialTerminationTimeFaultType 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, "wsnt:UnacceptableInitialTerminationTimeFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnacceptableInitialTerminationTimeFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnacceptableInitialTerminationTimeFaultType * SOAP_FMAC4 soap_get_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, wsnt__UnacceptableInitialTerminationTimeFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableInitialTerminationTimeFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, const char *URL, wsnt__UnacceptableInitialTerminationTimeFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnacceptableInitialTerminationTimeFaultType(struct soap *soap, wsnt__UnacceptableInitialTerminationTimeFaultType *p) -{ - if (::soap_read_wsnt__UnacceptableInitialTerminationTimeFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType_DEFINED -#define SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__NotifyMessageNotSupportedFaultType(struct soap*, const char*, int, const wsnt__NotifyMessageNotSupportedFaultType *, const char*); -SOAP_FMAC3 wsnt__NotifyMessageNotSupportedFaultType * SOAP_FMAC4 soap_in_wsnt__NotifyMessageNotSupportedFaultType(struct soap*, const char*, wsnt__NotifyMessageNotSupportedFaultType *, const char*); -SOAP_FMAC1 wsnt__NotifyMessageNotSupportedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__NotifyMessageNotSupportedFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__NotifyMessageNotSupportedFaultType * soap_new_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__NotifyMessageNotSupportedFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__NotifyMessageNotSupportedFaultType * soap_new_req_wsnt__NotifyMessageNotSupportedFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__NotifyMessageNotSupportedFaultType *_p = ::soap_new_wsnt__NotifyMessageNotSupportedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__NotifyMessageNotSupportedFaultType * soap_new_set_wsnt__NotifyMessageNotSupportedFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__NotifyMessageNotSupportedFaultType *_p = ::soap_new_wsnt__NotifyMessageNotSupportedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, wsnt__NotifyMessageNotSupportedFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:NotifyMessageNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__NotifyMessageNotSupportedFaultType 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, "wsnt:NotifyMessageNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__NotifyMessageNotSupportedFaultType 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, "wsnt:NotifyMessageNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__NotifyMessageNotSupportedFaultType 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, "wsnt:NotifyMessageNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__NotifyMessageNotSupportedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__NotifyMessageNotSupportedFaultType * SOAP_FMAC4 soap_get_wsnt__NotifyMessageNotSupportedFaultType(struct soap*, wsnt__NotifyMessageNotSupportedFaultType *, const char*, const char*); - -inline int soap_read_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, wsnt__NotifyMessageNotSupportedFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__NotifyMessageNotSupportedFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__NotifyMessageNotSupportedFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__NotifyMessageNotSupportedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__NotifyMessageNotSupportedFaultType(struct soap *soap, wsnt__NotifyMessageNotSupportedFaultType *p) -{ - if (::soap_read_wsnt__NotifyMessageNotSupportedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnsupportedPolicyRequestFaultType(struct soap*, const char*, int, const wsnt__UnsupportedPolicyRequestFaultType *, const char*); -SOAP_FMAC3 wsnt__UnsupportedPolicyRequestFaultType * SOAP_FMAC4 soap_in_wsnt__UnsupportedPolicyRequestFaultType(struct soap*, const char*, wsnt__UnsupportedPolicyRequestFaultType *, const char*); -SOAP_FMAC1 wsnt__UnsupportedPolicyRequestFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnsupportedPolicyRequestFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnsupportedPolicyRequestFaultType * soap_new_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnsupportedPolicyRequestFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnsupportedPolicyRequestFaultType * soap_new_req_wsnt__UnsupportedPolicyRequestFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__UnsupportedPolicyRequestFaultType *_p = ::soap_new_wsnt__UnsupportedPolicyRequestFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnsupportedPolicyRequestFaultType * soap_new_set_wsnt__UnsupportedPolicyRequestFaultType( - struct soap *soap, - const std::vector & UnsupportedPolicy, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnsupportedPolicyRequestFaultType *_p = ::soap_new_wsnt__UnsupportedPolicyRequestFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__UnsupportedPolicyRequestFaultType::UnsupportedPolicy = UnsupportedPolicy; - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, wsnt__UnsupportedPolicyRequestFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnsupportedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnsupportedPolicyRequestFaultType 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, "wsnt:UnsupportedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnsupportedPolicyRequestFaultType 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, "wsnt:UnsupportedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnsupportedPolicyRequestFaultType 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, "wsnt:UnsupportedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnsupportedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnsupportedPolicyRequestFaultType * SOAP_FMAC4 soap_get_wsnt__UnsupportedPolicyRequestFaultType(struct soap*, wsnt__UnsupportedPolicyRequestFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, wsnt__UnsupportedPolicyRequestFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnsupportedPolicyRequestFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnsupportedPolicyRequestFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnsupportedPolicyRequestFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnsupportedPolicyRequestFaultType(struct soap *soap, wsnt__UnsupportedPolicyRequestFaultType *p) -{ - if (::soap_read_wsnt__UnsupportedPolicyRequestFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType_DEFINED -#define SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__UnrecognizedPolicyRequestFaultType(struct soap*, const char*, int, const wsnt__UnrecognizedPolicyRequestFaultType *, const char*); -SOAP_FMAC3 wsnt__UnrecognizedPolicyRequestFaultType * SOAP_FMAC4 soap_in_wsnt__UnrecognizedPolicyRequestFaultType(struct soap*, const char*, wsnt__UnrecognizedPolicyRequestFaultType *, const char*); -SOAP_FMAC1 wsnt__UnrecognizedPolicyRequestFaultType * SOAP_FMAC2 soap_instantiate_wsnt__UnrecognizedPolicyRequestFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__UnrecognizedPolicyRequestFaultType * soap_new_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__UnrecognizedPolicyRequestFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__UnrecognizedPolicyRequestFaultType * soap_new_req_wsnt__UnrecognizedPolicyRequestFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__UnrecognizedPolicyRequestFaultType *_p = ::soap_new_wsnt__UnrecognizedPolicyRequestFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__UnrecognizedPolicyRequestFaultType * soap_new_set_wsnt__UnrecognizedPolicyRequestFaultType( - struct soap *soap, - const std::vector & UnrecognizedPolicy, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__UnrecognizedPolicyRequestFaultType *_p = ::soap_new_wsnt__UnrecognizedPolicyRequestFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__UnrecognizedPolicyRequestFaultType::UnrecognizedPolicy = UnrecognizedPolicy; - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, wsnt__UnrecognizedPolicyRequestFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:UnrecognizedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnrecognizedPolicyRequestFaultType 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, "wsnt:UnrecognizedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnrecognizedPolicyRequestFaultType 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, "wsnt:UnrecognizedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnrecognizedPolicyRequestFaultType 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, "wsnt:UnrecognizedPolicyRequestFaultType", p->soap_type() == SOAP_TYPE_wsnt__UnrecognizedPolicyRequestFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__UnrecognizedPolicyRequestFaultType * SOAP_FMAC4 soap_get_wsnt__UnrecognizedPolicyRequestFaultType(struct soap*, wsnt__UnrecognizedPolicyRequestFaultType *, const char*, const char*); - -inline int soap_read_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, wsnt__UnrecognizedPolicyRequestFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__UnrecognizedPolicyRequestFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, const char *URL, wsnt__UnrecognizedPolicyRequestFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__UnrecognizedPolicyRequestFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__UnrecognizedPolicyRequestFaultType(struct soap *soap, wsnt__UnrecognizedPolicyRequestFaultType *p) -{ - if (::soap_read_wsnt__UnrecognizedPolicyRequestFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType_DEFINED -#define SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidMessageContentExpressionFaultType(struct soap*, const char*, int, const wsnt__InvalidMessageContentExpressionFaultType *, const char*); -SOAP_FMAC3 wsnt__InvalidMessageContentExpressionFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidMessageContentExpressionFaultType(struct soap*, const char*, wsnt__InvalidMessageContentExpressionFaultType *, const char*); -SOAP_FMAC1 wsnt__InvalidMessageContentExpressionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidMessageContentExpressionFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__InvalidMessageContentExpressionFaultType * soap_new_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__InvalidMessageContentExpressionFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__InvalidMessageContentExpressionFaultType * soap_new_req_wsnt__InvalidMessageContentExpressionFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__InvalidMessageContentExpressionFaultType *_p = ::soap_new_wsnt__InvalidMessageContentExpressionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__InvalidMessageContentExpressionFaultType * soap_new_set_wsnt__InvalidMessageContentExpressionFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__InvalidMessageContentExpressionFaultType *_p = ::soap_new_wsnt__InvalidMessageContentExpressionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, wsnt__InvalidMessageContentExpressionFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:InvalidMessageContentExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidMessageContentExpressionFaultType 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, "wsnt:InvalidMessageContentExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidMessageContentExpressionFaultType 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, "wsnt:InvalidMessageContentExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidMessageContentExpressionFaultType 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, "wsnt:InvalidMessageContentExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidMessageContentExpressionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__InvalidMessageContentExpressionFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidMessageContentExpressionFaultType(struct soap*, wsnt__InvalidMessageContentExpressionFaultType *, const char*, const char*); - -inline int soap_read_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, wsnt__InvalidMessageContentExpressionFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__InvalidMessageContentExpressionFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidMessageContentExpressionFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__InvalidMessageContentExpressionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__InvalidMessageContentExpressionFaultType(struct soap *soap, wsnt__InvalidMessageContentExpressionFaultType *p) -{ - if (::soap_read_wsnt__InvalidMessageContentExpressionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType_DEFINED -#define SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, const char*, int, const wsnt__InvalidProducerPropertiesExpressionFaultType *, const char*); -SOAP_FMAC3 wsnt__InvalidProducerPropertiesExpressionFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, const char*, wsnt__InvalidProducerPropertiesExpressionFaultType *, const char*); -SOAP_FMAC1 wsnt__InvalidProducerPropertiesExpressionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__InvalidProducerPropertiesExpressionFaultType * soap_new_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__InvalidProducerPropertiesExpressionFaultType * soap_new_req_wsnt__InvalidProducerPropertiesExpressionFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__InvalidProducerPropertiesExpressionFaultType *_p = ::soap_new_wsnt__InvalidProducerPropertiesExpressionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__InvalidProducerPropertiesExpressionFaultType * soap_new_set_wsnt__InvalidProducerPropertiesExpressionFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__InvalidProducerPropertiesExpressionFaultType *_p = ::soap_new_wsnt__InvalidProducerPropertiesExpressionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, wsnt__InvalidProducerPropertiesExpressionFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:InvalidProducerPropertiesExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidProducerPropertiesExpressionFaultType 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, "wsnt:InvalidProducerPropertiesExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidProducerPropertiesExpressionFaultType 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, "wsnt:InvalidProducerPropertiesExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidProducerPropertiesExpressionFaultType 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, "wsnt:InvalidProducerPropertiesExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidProducerPropertiesExpressionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__InvalidProducerPropertiesExpressionFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, wsnt__InvalidProducerPropertiesExpressionFaultType *, const char*, const char*); - -inline int soap_read_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, wsnt__InvalidProducerPropertiesExpressionFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidProducerPropertiesExpressionFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__InvalidProducerPropertiesExpressionFaultType(struct soap *soap, wsnt__InvalidProducerPropertiesExpressionFaultType *p) -{ - if (::soap_read_wsnt__InvalidProducerPropertiesExpressionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType_DEFINED -#define SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__MultipleTopicsSpecifiedFaultType(struct soap*, const char*, int, const wsnt__MultipleTopicsSpecifiedFaultType *, const char*); -SOAP_FMAC3 wsnt__MultipleTopicsSpecifiedFaultType * SOAP_FMAC4 soap_in_wsnt__MultipleTopicsSpecifiedFaultType(struct soap*, const char*, wsnt__MultipleTopicsSpecifiedFaultType *, const char*); -SOAP_FMAC1 wsnt__MultipleTopicsSpecifiedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__MultipleTopicsSpecifiedFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__MultipleTopicsSpecifiedFaultType * soap_new_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__MultipleTopicsSpecifiedFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__MultipleTopicsSpecifiedFaultType * soap_new_req_wsnt__MultipleTopicsSpecifiedFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__MultipleTopicsSpecifiedFaultType *_p = ::soap_new_wsnt__MultipleTopicsSpecifiedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__MultipleTopicsSpecifiedFaultType * soap_new_set_wsnt__MultipleTopicsSpecifiedFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__MultipleTopicsSpecifiedFaultType *_p = ::soap_new_wsnt__MultipleTopicsSpecifiedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, wsnt__MultipleTopicsSpecifiedFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:MultipleTopicsSpecifiedFaultType", p->soap_type() == SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, const char *URL, wsnt__MultipleTopicsSpecifiedFaultType 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, "wsnt:MultipleTopicsSpecifiedFaultType", p->soap_type() == SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, const char *URL, wsnt__MultipleTopicsSpecifiedFaultType 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, "wsnt:MultipleTopicsSpecifiedFaultType", p->soap_type() == SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, const char *URL, wsnt__MultipleTopicsSpecifiedFaultType 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, "wsnt:MultipleTopicsSpecifiedFaultType", p->soap_type() == SOAP_TYPE_wsnt__MultipleTopicsSpecifiedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__MultipleTopicsSpecifiedFaultType * SOAP_FMAC4 soap_get_wsnt__MultipleTopicsSpecifiedFaultType(struct soap*, wsnt__MultipleTopicsSpecifiedFaultType *, const char*, const char*); - -inline int soap_read_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, wsnt__MultipleTopicsSpecifiedFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__MultipleTopicsSpecifiedFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, const char *URL, wsnt__MultipleTopicsSpecifiedFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__MultipleTopicsSpecifiedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__MultipleTopicsSpecifiedFaultType(struct soap *soap, wsnt__MultipleTopicsSpecifiedFaultType *p) -{ - if (::soap_read_wsnt__MultipleTopicsSpecifiedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__TopicNotSupportedFaultType_DEFINED -#define SOAP_TYPE_wsnt__TopicNotSupportedFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__TopicNotSupportedFaultType(struct soap*, const char*, int, const wsnt__TopicNotSupportedFaultType *, const char*); -SOAP_FMAC3 wsnt__TopicNotSupportedFaultType * SOAP_FMAC4 soap_in_wsnt__TopicNotSupportedFaultType(struct soap*, const char*, wsnt__TopicNotSupportedFaultType *, const char*); -SOAP_FMAC1 wsnt__TopicNotSupportedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__TopicNotSupportedFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__TopicNotSupportedFaultType * soap_new_wsnt__TopicNotSupportedFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__TopicNotSupportedFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__TopicNotSupportedFaultType * soap_new_req_wsnt__TopicNotSupportedFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__TopicNotSupportedFaultType *_p = ::soap_new_wsnt__TopicNotSupportedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__TopicNotSupportedFaultType * soap_new_set_wsnt__TopicNotSupportedFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__TopicNotSupportedFaultType *_p = ::soap_new_wsnt__TopicNotSupportedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__TopicNotSupportedFaultType(struct soap *soap, wsnt__TopicNotSupportedFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:TopicNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicNotSupportedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__TopicNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__TopicNotSupportedFaultType 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, "wsnt:TopicNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicNotSupportedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__TopicNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__TopicNotSupportedFaultType 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, "wsnt:TopicNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicNotSupportedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__TopicNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__TopicNotSupportedFaultType 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, "wsnt:TopicNotSupportedFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicNotSupportedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__TopicNotSupportedFaultType * SOAP_FMAC4 soap_get_wsnt__TopicNotSupportedFaultType(struct soap*, wsnt__TopicNotSupportedFaultType *, const char*, const char*); - -inline int soap_read_wsnt__TopicNotSupportedFaultType(struct soap *soap, wsnt__TopicNotSupportedFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__TopicNotSupportedFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__TopicNotSupportedFaultType(struct soap *soap, const char *URL, wsnt__TopicNotSupportedFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__TopicNotSupportedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__TopicNotSupportedFaultType(struct soap *soap, wsnt__TopicNotSupportedFaultType *p) -{ - if (::soap_read_wsnt__TopicNotSupportedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType_DEFINED -#define SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidTopicExpressionFaultType(struct soap*, const char*, int, const wsnt__InvalidTopicExpressionFaultType *, const char*); -SOAP_FMAC3 wsnt__InvalidTopicExpressionFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidTopicExpressionFaultType(struct soap*, const char*, wsnt__InvalidTopicExpressionFaultType *, const char*); -SOAP_FMAC1 wsnt__InvalidTopicExpressionFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidTopicExpressionFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__InvalidTopicExpressionFaultType * soap_new_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__InvalidTopicExpressionFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__InvalidTopicExpressionFaultType * soap_new_req_wsnt__InvalidTopicExpressionFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__InvalidTopicExpressionFaultType *_p = ::soap_new_wsnt__InvalidTopicExpressionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__InvalidTopicExpressionFaultType * soap_new_set_wsnt__InvalidTopicExpressionFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__InvalidTopicExpressionFaultType *_p = ::soap_new_wsnt__InvalidTopicExpressionFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, wsnt__InvalidTopicExpressionFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:InvalidTopicExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidTopicExpressionFaultType 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, "wsnt:InvalidTopicExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidTopicExpressionFaultType 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, "wsnt:InvalidTopicExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidTopicExpressionFaultType 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, "wsnt:InvalidTopicExpressionFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidTopicExpressionFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__InvalidTopicExpressionFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidTopicExpressionFaultType(struct soap*, wsnt__InvalidTopicExpressionFaultType *, const char*, const char*); - -inline int soap_read_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, wsnt__InvalidTopicExpressionFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__InvalidTopicExpressionFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, const char *URL, wsnt__InvalidTopicExpressionFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__InvalidTopicExpressionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__InvalidTopicExpressionFaultType(struct soap *soap, wsnt__InvalidTopicExpressionFaultType *p) -{ - if (::soap_read_wsnt__InvalidTopicExpressionFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType_DEFINED -#define SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__TopicExpressionDialectUnknownFaultType(struct soap*, const char*, int, const wsnt__TopicExpressionDialectUnknownFaultType *, const char*); -SOAP_FMAC3 wsnt__TopicExpressionDialectUnknownFaultType * SOAP_FMAC4 soap_in_wsnt__TopicExpressionDialectUnknownFaultType(struct soap*, const char*, wsnt__TopicExpressionDialectUnknownFaultType *, const char*); -SOAP_FMAC1 wsnt__TopicExpressionDialectUnknownFaultType * SOAP_FMAC2 soap_instantiate_wsnt__TopicExpressionDialectUnknownFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__TopicExpressionDialectUnknownFaultType * soap_new_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__TopicExpressionDialectUnknownFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__TopicExpressionDialectUnknownFaultType * soap_new_req_wsnt__TopicExpressionDialectUnknownFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__TopicExpressionDialectUnknownFaultType *_p = ::soap_new_wsnt__TopicExpressionDialectUnknownFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__TopicExpressionDialectUnknownFaultType * soap_new_set_wsnt__TopicExpressionDialectUnknownFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__TopicExpressionDialectUnknownFaultType *_p = ::soap_new_wsnt__TopicExpressionDialectUnknownFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, wsnt__TopicExpressionDialectUnknownFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:TopicExpressionDialectUnknownFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, const char *URL, wsnt__TopicExpressionDialectUnknownFaultType 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, "wsnt:TopicExpressionDialectUnknownFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, const char *URL, wsnt__TopicExpressionDialectUnknownFaultType 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, "wsnt:TopicExpressionDialectUnknownFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, const char *URL, wsnt__TopicExpressionDialectUnknownFaultType 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, "wsnt:TopicExpressionDialectUnknownFaultType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionDialectUnknownFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__TopicExpressionDialectUnknownFaultType * SOAP_FMAC4 soap_get_wsnt__TopicExpressionDialectUnknownFaultType(struct soap*, wsnt__TopicExpressionDialectUnknownFaultType *, const char*, const char*); - -inline int soap_read_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, wsnt__TopicExpressionDialectUnknownFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__TopicExpressionDialectUnknownFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, const char *URL, wsnt__TopicExpressionDialectUnknownFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__TopicExpressionDialectUnknownFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__TopicExpressionDialectUnknownFaultType(struct soap *soap, wsnt__TopicExpressionDialectUnknownFaultType *p) -{ - if (::soap_read_wsnt__TopicExpressionDialectUnknownFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__InvalidFilterFaultType_DEFINED -#define SOAP_TYPE_wsnt__InvalidFilterFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__InvalidFilterFaultType(struct soap*, const char*, int, const wsnt__InvalidFilterFaultType *, const char*); -SOAP_FMAC3 wsnt__InvalidFilterFaultType * SOAP_FMAC4 soap_in_wsnt__InvalidFilterFaultType(struct soap*, const char*, wsnt__InvalidFilterFaultType *, const char*); -SOAP_FMAC1 wsnt__InvalidFilterFaultType * SOAP_FMAC2 soap_instantiate_wsnt__InvalidFilterFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__InvalidFilterFaultType * soap_new_wsnt__InvalidFilterFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__InvalidFilterFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__InvalidFilterFaultType * soap_new_req_wsnt__InvalidFilterFaultType( - struct soap *soap, - const std::vector & UnknownFilter, - const struct timeval& Timestamp__1) -{ - wsnt__InvalidFilterFaultType *_p = ::soap_new_wsnt__InvalidFilterFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__InvalidFilterFaultType::UnknownFilter = UnknownFilter; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__InvalidFilterFaultType * soap_new_set_wsnt__InvalidFilterFaultType( - struct soap *soap, - const std::vector & UnknownFilter, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__InvalidFilterFaultType *_p = ::soap_new_wsnt__InvalidFilterFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__InvalidFilterFaultType::UnknownFilter = UnknownFilter; - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__InvalidFilterFaultType(struct soap *soap, wsnt__InvalidFilterFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:InvalidFilterFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidFilterFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__InvalidFilterFaultType(struct soap *soap, const char *URL, wsnt__InvalidFilterFaultType 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, "wsnt:InvalidFilterFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidFilterFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__InvalidFilterFaultType(struct soap *soap, const char *URL, wsnt__InvalidFilterFaultType 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, "wsnt:InvalidFilterFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidFilterFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__InvalidFilterFaultType(struct soap *soap, const char *URL, wsnt__InvalidFilterFaultType 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, "wsnt:InvalidFilterFaultType", p->soap_type() == SOAP_TYPE_wsnt__InvalidFilterFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__InvalidFilterFaultType * SOAP_FMAC4 soap_get_wsnt__InvalidFilterFaultType(struct soap*, wsnt__InvalidFilterFaultType *, const char*, const char*); - -inline int soap_read_wsnt__InvalidFilterFaultType(struct soap *soap, wsnt__InvalidFilterFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__InvalidFilterFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__InvalidFilterFaultType(struct soap *soap, const char *URL, wsnt__InvalidFilterFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__InvalidFilterFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__InvalidFilterFaultType(struct soap *soap, wsnt__InvalidFilterFaultType *p) -{ - if (::soap_read_wsnt__InvalidFilterFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType_DEFINED -#define SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__SubscribeCreationFailedFaultType(struct soap*, const char*, int, const wsnt__SubscribeCreationFailedFaultType *, const char*); -SOAP_FMAC3 wsnt__SubscribeCreationFailedFaultType * SOAP_FMAC4 soap_in_wsnt__SubscribeCreationFailedFaultType(struct soap*, const char*, wsnt__SubscribeCreationFailedFaultType *, const char*); -SOAP_FMAC1 wsnt__SubscribeCreationFailedFaultType * SOAP_FMAC2 soap_instantiate_wsnt__SubscribeCreationFailedFaultType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__SubscribeCreationFailedFaultType * soap_new_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__SubscribeCreationFailedFaultType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__SubscribeCreationFailedFaultType * soap_new_req_wsnt__SubscribeCreationFailedFaultType( - struct soap *soap, - const struct timeval& Timestamp__1) -{ - wsnt__SubscribeCreationFailedFaultType *_p = ::soap_new_wsnt__SubscribeCreationFailedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - } - return _p; -} - -inline wsnt__SubscribeCreationFailedFaultType * soap_new_set_wsnt__SubscribeCreationFailedFaultType( - struct soap *soap, - const std::vector & __any__1, - const struct timeval& Timestamp__1, - struct wsa5__EndpointReferenceType *Originator__1, - _wsrfbf__BaseFaultType_ErrorCode *ErrorCode__1, - const std::vector<_wsrfbf__BaseFaultType_Description> & Description__1, - _wsrfbf__BaseFaultType_FaultCause *FaultCause__1, - const struct soap_dom_attribute& __anyAttribute__1) -{ - wsnt__SubscribeCreationFailedFaultType *_p = ::soap_new_wsnt__SubscribeCreationFailedFaultType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsrfbf__BaseFaultType::__any = __any__1; - _p->wsrfbf__BaseFaultType::Timestamp = Timestamp__1; - _p->wsrfbf__BaseFaultType::Originator = Originator__1; - _p->wsrfbf__BaseFaultType::ErrorCode = ErrorCode__1; - _p->wsrfbf__BaseFaultType::Description = Description__1; - _p->wsrfbf__BaseFaultType::FaultCause = FaultCause__1; - _p->wsrfbf__BaseFaultType::__anyAttribute = __anyAttribute__1; - } - return _p; -} - -inline int soap_write_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, wsnt__SubscribeCreationFailedFaultType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:SubscribeCreationFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, const char *URL, wsnt__SubscribeCreationFailedFaultType 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, "wsnt:SubscribeCreationFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, const char *URL, wsnt__SubscribeCreationFailedFaultType 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, "wsnt:SubscribeCreationFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, const char *URL, wsnt__SubscribeCreationFailedFaultType 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, "wsnt:SubscribeCreationFailedFaultType", p->soap_type() == SOAP_TYPE_wsnt__SubscribeCreationFailedFaultType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__SubscribeCreationFailedFaultType * SOAP_FMAC4 soap_get_wsnt__SubscribeCreationFailedFaultType(struct soap*, wsnt__SubscribeCreationFailedFaultType *, const char*, const char*); - -inline int soap_read_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, wsnt__SubscribeCreationFailedFaultType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__SubscribeCreationFailedFaultType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, const char *URL, wsnt__SubscribeCreationFailedFaultType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__SubscribeCreationFailedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__SubscribeCreationFailedFaultType(struct soap *soap, wsnt__SubscribeCreationFailedFaultType *p) -{ - if (::soap_read_wsnt__SubscribeCreationFailedFaultType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__NotificationMessageHolderType_DEFINED -#define SOAP_TYPE_wsnt__NotificationMessageHolderType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__NotificationMessageHolderType(struct soap*, const char*, int, const wsnt__NotificationMessageHolderType *, const char*); -SOAP_FMAC3 wsnt__NotificationMessageHolderType * SOAP_FMAC4 soap_in_wsnt__NotificationMessageHolderType(struct soap*, const char*, wsnt__NotificationMessageHolderType *, const char*); -SOAP_FMAC1 wsnt__NotificationMessageHolderType * SOAP_FMAC2 soap_instantiate_wsnt__NotificationMessageHolderType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__NotificationMessageHolderType * soap_new_wsnt__NotificationMessageHolderType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__NotificationMessageHolderType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__NotificationMessageHolderType * soap_new_req_wsnt__NotificationMessageHolderType( - struct soap *soap, - const _wsnt__NotificationMessageHolderType_Message& Message) -{ - wsnt__NotificationMessageHolderType *_p = ::soap_new_wsnt__NotificationMessageHolderType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__NotificationMessageHolderType::Message = Message; - } - return _p; -} - -inline wsnt__NotificationMessageHolderType * soap_new_set_wsnt__NotificationMessageHolderType( - struct soap *soap, - struct wsa5__EndpointReferenceType *SubscriptionReference, - wsnt__TopicExpressionType *Topic, - struct wsa5__EndpointReferenceType *ProducerReference, - const _wsnt__NotificationMessageHolderType_Message& Message) -{ - wsnt__NotificationMessageHolderType *_p = ::soap_new_wsnt__NotificationMessageHolderType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__NotificationMessageHolderType::SubscriptionReference = SubscriptionReference; - _p->wsnt__NotificationMessageHolderType::Topic = Topic; - _p->wsnt__NotificationMessageHolderType::ProducerReference = ProducerReference; - _p->wsnt__NotificationMessageHolderType::Message = Message; - } - return _p; -} - -inline int soap_write_wsnt__NotificationMessageHolderType(struct soap *soap, wsnt__NotificationMessageHolderType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:NotificationMessageHolderType", p->soap_type() == SOAP_TYPE_wsnt__NotificationMessageHolderType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__NotificationMessageHolderType(struct soap *soap, const char *URL, wsnt__NotificationMessageHolderType 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, "wsnt:NotificationMessageHolderType", p->soap_type() == SOAP_TYPE_wsnt__NotificationMessageHolderType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__NotificationMessageHolderType(struct soap *soap, const char *URL, wsnt__NotificationMessageHolderType 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, "wsnt:NotificationMessageHolderType", p->soap_type() == SOAP_TYPE_wsnt__NotificationMessageHolderType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__NotificationMessageHolderType(struct soap *soap, const char *URL, wsnt__NotificationMessageHolderType 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, "wsnt:NotificationMessageHolderType", p->soap_type() == SOAP_TYPE_wsnt__NotificationMessageHolderType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__NotificationMessageHolderType * SOAP_FMAC4 soap_get_wsnt__NotificationMessageHolderType(struct soap*, wsnt__NotificationMessageHolderType *, const char*, const char*); - -inline int soap_read_wsnt__NotificationMessageHolderType(struct soap *soap, wsnt__NotificationMessageHolderType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__NotificationMessageHolderType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__NotificationMessageHolderType(struct soap *soap, const char *URL, wsnt__NotificationMessageHolderType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__NotificationMessageHolderType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__NotificationMessageHolderType(struct soap *soap, wsnt__NotificationMessageHolderType *p) -{ - if (::soap_read_wsnt__NotificationMessageHolderType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__SubscriptionPolicyType_DEFINED -#define SOAP_TYPE_wsnt__SubscriptionPolicyType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__SubscriptionPolicyType(struct soap*, const char*, int, const wsnt__SubscriptionPolicyType *, const char*); -SOAP_FMAC3 wsnt__SubscriptionPolicyType * SOAP_FMAC4 soap_in_wsnt__SubscriptionPolicyType(struct soap*, const char*, wsnt__SubscriptionPolicyType *, const char*); -SOAP_FMAC1 wsnt__SubscriptionPolicyType * SOAP_FMAC2 soap_instantiate_wsnt__SubscriptionPolicyType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__SubscriptionPolicyType * soap_new_wsnt__SubscriptionPolicyType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__SubscriptionPolicyType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__SubscriptionPolicyType * soap_new_req_wsnt__SubscriptionPolicyType( - struct soap *soap) -{ - wsnt__SubscriptionPolicyType *_p = ::soap_new_wsnt__SubscriptionPolicyType(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline wsnt__SubscriptionPolicyType * soap_new_set_wsnt__SubscriptionPolicyType( - struct soap *soap, - const std::vector & __any) -{ - wsnt__SubscriptionPolicyType *_p = ::soap_new_wsnt__SubscriptionPolicyType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__SubscriptionPolicyType::__any = __any; - } - return _p; -} - -inline int soap_write_wsnt__SubscriptionPolicyType(struct soap *soap, wsnt__SubscriptionPolicyType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:SubscriptionPolicyType", p->soap_type() == SOAP_TYPE_wsnt__SubscriptionPolicyType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__SubscriptionPolicyType(struct soap *soap, const char *URL, wsnt__SubscriptionPolicyType 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, "wsnt:SubscriptionPolicyType", p->soap_type() == SOAP_TYPE_wsnt__SubscriptionPolicyType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__SubscriptionPolicyType(struct soap *soap, const char *URL, wsnt__SubscriptionPolicyType 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, "wsnt:SubscriptionPolicyType", p->soap_type() == SOAP_TYPE_wsnt__SubscriptionPolicyType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__SubscriptionPolicyType(struct soap *soap, const char *URL, wsnt__SubscriptionPolicyType 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, "wsnt:SubscriptionPolicyType", p->soap_type() == SOAP_TYPE_wsnt__SubscriptionPolicyType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__SubscriptionPolicyType * SOAP_FMAC4 soap_get_wsnt__SubscriptionPolicyType(struct soap*, wsnt__SubscriptionPolicyType *, const char*, const char*); - -inline int soap_read_wsnt__SubscriptionPolicyType(struct soap *soap, wsnt__SubscriptionPolicyType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__SubscriptionPolicyType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__SubscriptionPolicyType(struct soap *soap, const char *URL, wsnt__SubscriptionPolicyType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__SubscriptionPolicyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__SubscriptionPolicyType(struct soap *soap, wsnt__SubscriptionPolicyType *p) -{ - if (::soap_read_wsnt__SubscriptionPolicyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__FilterType_DEFINED -#define SOAP_TYPE_wsnt__FilterType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__FilterType(struct soap*, const char*, int, const wsnt__FilterType *, const char*); -SOAP_FMAC3 wsnt__FilterType * SOAP_FMAC4 soap_in_wsnt__FilterType(struct soap*, const char*, wsnt__FilterType *, const char*); -SOAP_FMAC1 wsnt__FilterType * SOAP_FMAC2 soap_instantiate_wsnt__FilterType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__FilterType * soap_new_wsnt__FilterType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__FilterType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__FilterType * soap_new_req_wsnt__FilterType( - struct soap *soap) -{ - wsnt__FilterType *_p = ::soap_new_wsnt__FilterType(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline wsnt__FilterType * soap_new_set_wsnt__FilterType( - struct soap *soap, - const std::vector & __any) -{ - wsnt__FilterType *_p = ::soap_new_wsnt__FilterType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__FilterType::__any = __any; - } - return _p; -} - -inline int soap_write_wsnt__FilterType(struct soap *soap, wsnt__FilterType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:FilterType", p->soap_type() == SOAP_TYPE_wsnt__FilterType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__FilterType(struct soap *soap, const char *URL, wsnt__FilterType 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, "wsnt:FilterType", p->soap_type() == SOAP_TYPE_wsnt__FilterType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__FilterType(struct soap *soap, const char *URL, wsnt__FilterType 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, "wsnt:FilterType", p->soap_type() == SOAP_TYPE_wsnt__FilterType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__FilterType(struct soap *soap, const char *URL, wsnt__FilterType 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, "wsnt:FilterType", p->soap_type() == SOAP_TYPE_wsnt__FilterType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__FilterType * SOAP_FMAC4 soap_get_wsnt__FilterType(struct soap*, wsnt__FilterType *, const char*, const char*); - -inline int soap_read_wsnt__FilterType(struct soap *soap, wsnt__FilterType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__FilterType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__FilterType(struct soap *soap, const char *URL, wsnt__FilterType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__FilterType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__FilterType(struct soap *soap, wsnt__FilterType *p) -{ - if (::soap_read_wsnt__FilterType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__TopicExpressionType_DEFINED -#define SOAP_TYPE_wsnt__TopicExpressionType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__TopicExpressionType(struct soap*, const char*, int, const wsnt__TopicExpressionType *, const char*); -SOAP_FMAC3 wsnt__TopicExpressionType * SOAP_FMAC4 soap_in_wsnt__TopicExpressionType(struct soap*, const char*, wsnt__TopicExpressionType *, const char*); -SOAP_FMAC1 wsnt__TopicExpressionType * SOAP_FMAC2 soap_instantiate_wsnt__TopicExpressionType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__TopicExpressionType * soap_new_wsnt__TopicExpressionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__TopicExpressionType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__TopicExpressionType * soap_new_req_wsnt__TopicExpressionType( - struct soap *soap, - const std::string& Dialect) -{ - wsnt__TopicExpressionType *_p = ::soap_new_wsnt__TopicExpressionType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__TopicExpressionType::Dialect = Dialect; - } - return _p; -} - -inline wsnt__TopicExpressionType * soap_new_set_wsnt__TopicExpressionType( - struct soap *soap, - const struct soap_dom_element& __any, - const std::string& Dialect, - const struct soap_dom_attribute& __anyAttribute, - const struct soap_dom_element& __mixed) -{ - wsnt__TopicExpressionType *_p = ::soap_new_wsnt__TopicExpressionType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__TopicExpressionType::__any = __any; - _p->wsnt__TopicExpressionType::Dialect = Dialect; - _p->wsnt__TopicExpressionType::__anyAttribute = __anyAttribute; - _p->wsnt__TopicExpressionType::__mixed = __mixed; - } - return _p; -} - -inline int soap_write_wsnt__TopicExpressionType(struct soap *soap, wsnt__TopicExpressionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:TopicExpressionType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__TopicExpressionType(struct soap *soap, const char *URL, wsnt__TopicExpressionType 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, "wsnt:TopicExpressionType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__TopicExpressionType(struct soap *soap, const char *URL, wsnt__TopicExpressionType 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, "wsnt:TopicExpressionType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__TopicExpressionType(struct soap *soap, const char *URL, wsnt__TopicExpressionType 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, "wsnt:TopicExpressionType", p->soap_type() == SOAP_TYPE_wsnt__TopicExpressionType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__TopicExpressionType * SOAP_FMAC4 soap_get_wsnt__TopicExpressionType(struct soap*, wsnt__TopicExpressionType *, const char*, const char*); - -inline int soap_read_wsnt__TopicExpressionType(struct soap *soap, wsnt__TopicExpressionType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__TopicExpressionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__TopicExpressionType(struct soap *soap, const char *URL, wsnt__TopicExpressionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__TopicExpressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__TopicExpressionType(struct soap *soap, wsnt__TopicExpressionType *p) -{ - if (::soap_read_wsnt__TopicExpressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsnt__QueryExpressionType_DEFINED -#define SOAP_TYPE_wsnt__QueryExpressionType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsnt__QueryExpressionType(struct soap*, const char*, int, const wsnt__QueryExpressionType *, const char*); -SOAP_FMAC3 wsnt__QueryExpressionType * SOAP_FMAC4 soap_in_wsnt__QueryExpressionType(struct soap*, const char*, wsnt__QueryExpressionType *, const char*); -SOAP_FMAC1 wsnt__QueryExpressionType * SOAP_FMAC2 soap_instantiate_wsnt__QueryExpressionType(struct soap*, int, const char*, const char*, size_t*); - -inline wsnt__QueryExpressionType * soap_new_wsnt__QueryExpressionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsnt__QueryExpressionType(soap, n, NULL, NULL, NULL); -} - -inline wsnt__QueryExpressionType * soap_new_req_wsnt__QueryExpressionType( - struct soap *soap, - const std::string& Dialect) -{ - wsnt__QueryExpressionType *_p = ::soap_new_wsnt__QueryExpressionType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__QueryExpressionType::Dialect = Dialect; - } - return _p; -} - -inline wsnt__QueryExpressionType * soap_new_set_wsnt__QueryExpressionType( - struct soap *soap, - const struct soap_dom_element& __any, - const std::string& Dialect, - const struct soap_dom_element& __mixed) -{ - wsnt__QueryExpressionType *_p = ::soap_new_wsnt__QueryExpressionType(soap); - if (_p) - { _p->soap_default(soap); - _p->wsnt__QueryExpressionType::__any = __any; - _p->wsnt__QueryExpressionType::Dialect = Dialect; - _p->wsnt__QueryExpressionType::__mixed = __mixed; - } - return _p; -} - -inline int soap_write_wsnt__QueryExpressionType(struct soap *soap, wsnt__QueryExpressionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsnt:QueryExpressionType", p->soap_type() == SOAP_TYPE_wsnt__QueryExpressionType ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsnt__QueryExpressionType(struct soap *soap, const char *URL, wsnt__QueryExpressionType 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, "wsnt:QueryExpressionType", p->soap_type() == SOAP_TYPE_wsnt__QueryExpressionType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsnt__QueryExpressionType(struct soap *soap, const char *URL, wsnt__QueryExpressionType 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, "wsnt:QueryExpressionType", p->soap_type() == SOAP_TYPE_wsnt__QueryExpressionType ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsnt__QueryExpressionType(struct soap *soap, const char *URL, wsnt__QueryExpressionType 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, "wsnt:QueryExpressionType", p->soap_type() == SOAP_TYPE_wsnt__QueryExpressionType ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsnt__QueryExpressionType * SOAP_FMAC4 soap_get_wsnt__QueryExpressionType(struct soap*, wsnt__QueryExpressionType *, const char*, const char*); - -inline int soap_read_wsnt__QueryExpressionType(struct soap *soap, wsnt__QueryExpressionType *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsnt__QueryExpressionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsnt__QueryExpressionType(struct soap *soap, const char *URL, wsnt__QueryExpressionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsnt__QueryExpressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsnt__QueryExpressionType(struct soap *soap, wsnt__QueryExpressionType *p) -{ - if (::soap_read_wsnt__QueryExpressionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _xml__lang is a typedef synonym of std__string */ - -#ifndef SOAP_TYPE__xml__lang_DEFINED -#define SOAP_TYPE__xml__lang_DEFINED - -#define soap_default__xml__lang soap_default_std__string - - -#define soap_serialize__xml__lang soap_serialize_std__string - - -#define soap__xml__lang2s(soap, a) ((a).c_str()) - -#define soap_out__xml__lang soap_out_std__string - - -#define soap_s2_xml__lang(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) - -#define soap_in__xml__lang soap_in_std__string - - -#define soap_instantiate__xml__lang soap_instantiate_std__string - - -#define soap_new__xml__lang soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__xml__lang(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write__xml__lang(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__xml__lang(soap, p, "xml:lang", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__xml__lang(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__xml__lang(soap, p, "xml:lang", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__xml__lang(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__xml__lang(soap, p, "xml:lang", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__xml__lang(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__xml__lang(soap, p, "xml:lang", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__xml__lang soap_get_std__string - - -#define soap_read__xml__lang soap_read_std__string - - -#define soap_GET__xml__lang soap_GET_std__string - - -#define soap_POST_recv__xml__lang soap_POST_recv_std__string - -#endif -/* _xmime__contentType is a typedef synonym of std__string */ - -#ifndef SOAP_TYPE__xmime__contentType_DEFINED -#define SOAP_TYPE__xmime__contentType_DEFINED - -#define soap_default__xmime__contentType soap_default_std__string - - -#define soap_serialize__xmime__contentType soap_serialize_std__string - - -#define soap__xmime__contentType2s(soap, a) ((a).c_str()) - -#define soap_out__xmime__contentType soap_out_std__string - - -#define soap_s2_xmime__contentType(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) - -#define soap_in__xmime__contentType soap_in_std__string - - -#define soap_instantiate__xmime__contentType soap_instantiate_std__string - - -#define soap_new__xmime__contentType soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__xmime__contentType(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write__xmime__contentType(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__xmime__contentType(soap, p, "xmime:contentType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__xmime__contentType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__xmime__contentType(soap, p, "xmime:contentType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__xmime__contentType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__xmime__contentType(soap, p, "xmime:contentType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__xmime__contentType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__xmime__contentType(soap, p, "xmime:contentType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__xmime__contentType soap_get_std__string - - -#define soap_read__xmime__contentType soap_read_std__string - - -#define soap_GET__xmime__contentType soap_GET_std__string - - -#define soap_POST_recv__xmime__contentType soap_POST_recv_std__string - -#endif - -#ifndef SOAP_TYPE_xsd__token___DEFINED -#define SOAP_TYPE_xsd__token___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__token__(struct soap*, const char*, int, const xsd__token__ *, const char*); -SOAP_FMAC3 xsd__token__ * SOAP_FMAC4 soap_in_xsd__token__(struct soap*, const char*, xsd__token__ *, const char*); -SOAP_FMAC1 xsd__token__ * SOAP_FMAC2 soap_instantiate_xsd__token__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__token__ * soap_new_xsd__token__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__token__(soap, n, NULL, NULL, NULL); -} - -inline xsd__token__ * soap_new_req_xsd__token__( - struct soap *soap, - const std::string& __item) -{ - xsd__token__ *_p = ::soap_new_xsd__token__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__token__::__item = __item; - } - return _p; -} - -inline xsd__token__ * soap_new_set_xsd__token__( - struct soap *soap, - const std::string& __item) -{ - xsd__token__ *_p = ::soap_new_xsd__token__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__token__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__token__(struct soap *soap, xsd__token__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:token", p->soap_type() == SOAP_TYPE_xsd__token__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__token__(struct soap *soap, const char *URL, xsd__token__ 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, "xsd:token", p->soap_type() == SOAP_TYPE_xsd__token__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__token__(struct soap *soap, const char *URL, xsd__token__ 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, "xsd:token", p->soap_type() == SOAP_TYPE_xsd__token__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__token__(struct soap *soap, const char *URL, xsd__token__ 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, "xsd:token", p->soap_type() == SOAP_TYPE_xsd__token__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__token__ * SOAP_FMAC4 soap_get_xsd__token__(struct soap*, xsd__token__ *, const char*, const char*); - -inline int soap_read_xsd__token__(struct soap *soap, xsd__token__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__token__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__token__(struct soap *soap, const char *URL, xsd__token__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__token__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__token__(struct soap *soap, xsd__token__ *p) -{ - if (::soap_read_xsd__token__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__token_DEFINED -#define SOAP_TYPE_xsd__token_DEFINED - -inline void soap_default_xsd__token(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__token(struct soap*, const std::string *); - -#define soap_xsd__token2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__token(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__token(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__token(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_xsd__token soap_instantiate_std__string - - -#define soap_new_xsd__token soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__token(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__token(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__token(soap, p, "xsd:token", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__token(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__token(soap, p, "xsd:token", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__token(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__token(soap, p, "xsd:token", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__token(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__token(soap, p, "xsd:token", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__token(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__token(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__token(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__token(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__token(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__token(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__token(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__string__DEFINED -#define SOAP_TYPE_xsd__string__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__string_(struct soap*, const char*, int, const xsd__string_ *, const char*); -SOAP_FMAC3 xsd__string_ * SOAP_FMAC4 soap_in_xsd__string_(struct soap*, const char*, xsd__string_ *, const char*); -SOAP_FMAC1 xsd__string_ * SOAP_FMAC2 soap_instantiate_xsd__string_(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__string_ * soap_new_xsd__string_(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__string_(soap, n, NULL, NULL, NULL); -} - -inline xsd__string_ * soap_new_req_xsd__string_( - struct soap *soap, - const std::string& __item) -{ - xsd__string_ *_p = ::soap_new_xsd__string_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__string_::__item = __item; - } - return _p; -} - -inline xsd__string_ * soap_new_set_xsd__string_( - struct soap *soap, - const std::string& __item) -{ - xsd__string_ *_p = ::soap_new_xsd__string_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__string_::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__string_(struct soap *soap, xsd__string_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:string", p->soap_type() == SOAP_TYPE_xsd__string_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__string_(struct soap *soap, const char *URL, xsd__string_ 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, "xsd:string", p->soap_type() == SOAP_TYPE_xsd__string_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__string_(struct soap *soap, const char *URL, xsd__string_ 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, "xsd:string", p->soap_type() == SOAP_TYPE_xsd__string_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__string_(struct soap *soap, const char *URL, xsd__string_ 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, "xsd:string", p->soap_type() == SOAP_TYPE_xsd__string_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__string_ * SOAP_FMAC4 soap_get_xsd__string_(struct soap*, xsd__string_ *, const char*, const char*); - -inline int soap_read_xsd__string_(struct soap *soap, xsd__string_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__string_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__string_(struct soap *soap, const char *URL, xsd__string_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__string_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__string_(struct soap *soap, xsd__string_ *p) -{ - if (::soap_read_xsd__string_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__nonNegativeInteger___DEFINED -#define SOAP_TYPE_xsd__nonNegativeInteger___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__nonNegativeInteger__(struct soap*, const char*, int, const xsd__nonNegativeInteger__ *, const char*); -SOAP_FMAC3 xsd__nonNegativeInteger__ * SOAP_FMAC4 soap_in_xsd__nonNegativeInteger__(struct soap*, const char*, xsd__nonNegativeInteger__ *, const char*); -SOAP_FMAC1 xsd__nonNegativeInteger__ * SOAP_FMAC2 soap_instantiate_xsd__nonNegativeInteger__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__nonNegativeInteger__ * soap_new_xsd__nonNegativeInteger__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__nonNegativeInteger__(soap, n, NULL, NULL, NULL); -} - -inline xsd__nonNegativeInteger__ * soap_new_req_xsd__nonNegativeInteger__( - struct soap *soap, - const std::string& __item) -{ - xsd__nonNegativeInteger__ *_p = ::soap_new_xsd__nonNegativeInteger__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__nonNegativeInteger__::__item = __item; - } - return _p; -} - -inline xsd__nonNegativeInteger__ * soap_new_set_xsd__nonNegativeInteger__( - struct soap *soap, - const std::string& __item) -{ - xsd__nonNegativeInteger__ *_p = ::soap_new_xsd__nonNegativeInteger__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__nonNegativeInteger__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__nonNegativeInteger__(struct soap *soap, xsd__nonNegativeInteger__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:nonNegativeInteger", p->soap_type() == SOAP_TYPE_xsd__nonNegativeInteger__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__nonNegativeInteger__(struct soap *soap, const char *URL, xsd__nonNegativeInteger__ 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, "xsd:nonNegativeInteger", p->soap_type() == SOAP_TYPE_xsd__nonNegativeInteger__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__nonNegativeInteger__(struct soap *soap, const char *URL, xsd__nonNegativeInteger__ 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, "xsd:nonNegativeInteger", p->soap_type() == SOAP_TYPE_xsd__nonNegativeInteger__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__nonNegativeInteger__(struct soap *soap, const char *URL, xsd__nonNegativeInteger__ 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, "xsd:nonNegativeInteger", p->soap_type() == SOAP_TYPE_xsd__nonNegativeInteger__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__nonNegativeInteger__ * SOAP_FMAC4 soap_get_xsd__nonNegativeInteger__(struct soap*, xsd__nonNegativeInteger__ *, const char*, const char*); - -inline int soap_read_xsd__nonNegativeInteger__(struct soap *soap, xsd__nonNegativeInteger__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__nonNegativeInteger__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__nonNegativeInteger__(struct soap *soap, const char *URL, xsd__nonNegativeInteger__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__nonNegativeInteger__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__nonNegativeInteger__(struct soap *soap, xsd__nonNegativeInteger__ *p) -{ - if (::soap_read_xsd__nonNegativeInteger__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__nonNegativeInteger_DEFINED -#define SOAP_TYPE_xsd__nonNegativeInteger_DEFINED - -inline void soap_default_xsd__nonNegativeInteger(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__nonNegativeInteger(struct soap*, const std::string *); - -#define soap_xsd__nonNegativeInteger2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__nonNegativeInteger(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__nonNegativeInteger(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, "\\+?\\d+") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__nonNegativeInteger(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_xsd__nonNegativeInteger soap_instantiate_std__string - - -#define soap_new_xsd__nonNegativeInteger soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__nonNegativeInteger(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__nonNegativeInteger(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__nonNegativeInteger(soap, p, "xsd:nonNegativeInteger", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__nonNegativeInteger(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__nonNegativeInteger(soap, p, "xsd:nonNegativeInteger", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__nonNegativeInteger(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__nonNegativeInteger(soap, p, "xsd:nonNegativeInteger", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__nonNegativeInteger(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__nonNegativeInteger(soap, p, "xsd:nonNegativeInteger", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__nonNegativeInteger(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__nonNegativeInteger(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__nonNegativeInteger(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__nonNegativeInteger(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__nonNegativeInteger(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__nonNegativeInteger(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__nonNegativeInteger(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__integer___DEFINED -#define SOAP_TYPE_xsd__integer___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__integer__(struct soap*, const char*, int, const xsd__integer__ *, const char*); -SOAP_FMAC3 xsd__integer__ * SOAP_FMAC4 soap_in_xsd__integer__(struct soap*, const char*, xsd__integer__ *, const char*); -SOAP_FMAC1 xsd__integer__ * SOAP_FMAC2 soap_instantiate_xsd__integer__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__integer__ * soap_new_xsd__integer__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__integer__(soap, n, NULL, NULL, NULL); -} - -inline xsd__integer__ * soap_new_req_xsd__integer__( - struct soap *soap, - const std::string& __item) -{ - xsd__integer__ *_p = ::soap_new_xsd__integer__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__integer__::__item = __item; - } - return _p; -} - -inline xsd__integer__ * soap_new_set_xsd__integer__( - struct soap *soap, - const std::string& __item) -{ - xsd__integer__ *_p = ::soap_new_xsd__integer__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__integer__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__integer__(struct soap *soap, xsd__integer__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:integer", p->soap_type() == SOAP_TYPE_xsd__integer__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__integer__(struct soap *soap, const char *URL, xsd__integer__ 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, "xsd:integer", p->soap_type() == SOAP_TYPE_xsd__integer__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__integer__(struct soap *soap, const char *URL, xsd__integer__ 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, "xsd:integer", p->soap_type() == SOAP_TYPE_xsd__integer__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__integer__(struct soap *soap, const char *URL, xsd__integer__ 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, "xsd:integer", p->soap_type() == SOAP_TYPE_xsd__integer__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__integer__ * SOAP_FMAC4 soap_get_xsd__integer__(struct soap*, xsd__integer__ *, const char*, const char*); - -inline int soap_read_xsd__integer__(struct soap *soap, xsd__integer__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__integer__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__integer__(struct soap *soap, const char *URL, xsd__integer__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__integer__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__integer__(struct soap *soap, xsd__integer__ *p) -{ - if (::soap_read_xsd__integer__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__integer_DEFINED -#define SOAP_TYPE_xsd__integer_DEFINED - -inline void soap_default_xsd__integer(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__integer(struct soap*, const std::string *); - -#define soap_xsd__integer2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__integer(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__integer(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, "[-+]?\\d+") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__integer(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_xsd__integer soap_instantiate_std__string - - -#define soap_new_xsd__integer soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__integer(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__integer(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__integer(soap, p, "xsd:integer", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__integer(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__integer(soap, p, "xsd:integer", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__integer(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__integer(soap, p, "xsd:integer", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__integer(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__integer(soap, p, "xsd:integer", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__integer(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__integer(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__integer(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__integer(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__integer(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__integer(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__integer(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__int__DEFINED -#define SOAP_TYPE_xsd__int__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__int_(struct soap*, const char*, int, const xsd__int_ *, const char*); -SOAP_FMAC3 xsd__int_ * SOAP_FMAC4 soap_in_xsd__int_(struct soap*, const char*, xsd__int_ *, const char*); -SOAP_FMAC1 xsd__int_ * SOAP_FMAC2 soap_instantiate_xsd__int_(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__int_ * soap_new_xsd__int_(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__int_(soap, n, NULL, NULL, NULL); -} - -inline xsd__int_ * soap_new_req_xsd__int_( - struct soap *soap, - int __item) -{ - xsd__int_ *_p = ::soap_new_xsd__int_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__int_::__item = __item; - } - return _p; -} - -inline xsd__int_ * soap_new_set_xsd__int_( - struct soap *soap, - int __item) -{ - xsd__int_ *_p = ::soap_new_xsd__int_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__int_::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__int_(struct soap *soap, xsd__int_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:int", p->soap_type() == SOAP_TYPE_xsd__int_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__int_(struct soap *soap, const char *URL, xsd__int_ 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, "xsd:int", p->soap_type() == SOAP_TYPE_xsd__int_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__int_(struct soap *soap, const char *URL, xsd__int_ 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, "xsd:int", p->soap_type() == SOAP_TYPE_xsd__int_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__int_(struct soap *soap, const char *URL, xsd__int_ 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, "xsd:int", p->soap_type() == SOAP_TYPE_xsd__int_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__int_ * SOAP_FMAC4 soap_get_xsd__int_(struct soap*, xsd__int_ *, const char*, const char*); - -inline int soap_read_xsd__int_(struct soap *soap, xsd__int_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__int_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__int_(struct soap *soap, const char *URL, xsd__int_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__int_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__int_(struct soap *soap, xsd__int_ *p) -{ - if (::soap_read_xsd__int_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__hexBinary___DEFINED -#define SOAP_TYPE_xsd__hexBinary___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__hexBinary__(struct soap*, const char*, int, const xsd__hexBinary__ *, const char*); -SOAP_FMAC3 xsd__hexBinary__ * SOAP_FMAC4 soap_in_xsd__hexBinary__(struct soap*, const char*, xsd__hexBinary__ *, const char*); -SOAP_FMAC1 xsd__hexBinary__ * SOAP_FMAC2 soap_instantiate_xsd__hexBinary__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__hexBinary__ * soap_new_xsd__hexBinary__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__hexBinary__(soap, n, NULL, NULL, NULL); -} - -inline xsd__hexBinary__ * soap_new_req_xsd__hexBinary__( - struct soap *soap, - const xsd__hexBinary& __item) -{ - xsd__hexBinary__ *_p = ::soap_new_xsd__hexBinary__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__hexBinary__::__item = __item; - } - return _p; -} - -inline xsd__hexBinary__ * soap_new_set_xsd__hexBinary__( - struct soap *soap, - const xsd__hexBinary& __item) -{ - xsd__hexBinary__ *_p = ::soap_new_xsd__hexBinary__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__hexBinary__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__hexBinary__(struct soap *soap, xsd__hexBinary__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__hexBinary__(struct soap *soap, const char *URL, xsd__hexBinary__ 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, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__hexBinary__(struct soap *soap, const char *URL, xsd__hexBinary__ 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, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__hexBinary__(struct soap *soap, const char *URL, xsd__hexBinary__ 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, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__hexBinary__ * SOAP_FMAC4 soap_get_xsd__hexBinary__(struct soap*, xsd__hexBinary__ *, const char*, const char*); - -inline int soap_read_xsd__hexBinary__(struct soap *soap, xsd__hexBinary__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__hexBinary__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__hexBinary__(struct soap *soap, const char *URL, xsd__hexBinary__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__hexBinary__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__hexBinary__(struct soap *soap, xsd__hexBinary__ *p) -{ - if (::soap_read_xsd__hexBinary__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__float__DEFINED -#define SOAP_TYPE_xsd__float__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__float_(struct soap*, const char*, int, const xsd__float_ *, const char*); -SOAP_FMAC3 xsd__float_ * SOAP_FMAC4 soap_in_xsd__float_(struct soap*, const char*, xsd__float_ *, const char*); -SOAP_FMAC1 xsd__float_ * SOAP_FMAC2 soap_instantiate_xsd__float_(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__float_ * soap_new_xsd__float_(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__float_(soap, n, NULL, NULL, NULL); -} - -inline xsd__float_ * soap_new_req_xsd__float_( - struct soap *soap, - float __item) -{ - xsd__float_ *_p = ::soap_new_xsd__float_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__float_::__item = __item; - } - return _p; -} - -inline xsd__float_ * soap_new_set_xsd__float_( - struct soap *soap, - float __item) -{ - xsd__float_ *_p = ::soap_new_xsd__float_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__float_::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__float_(struct soap *soap, xsd__float_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:float", p->soap_type() == SOAP_TYPE_xsd__float_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__float_(struct soap *soap, const char *URL, xsd__float_ 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, "xsd:float", p->soap_type() == SOAP_TYPE_xsd__float_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__float_(struct soap *soap, const char *URL, xsd__float_ 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, "xsd:float", p->soap_type() == SOAP_TYPE_xsd__float_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__float_(struct soap *soap, const char *URL, xsd__float_ 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, "xsd:float", p->soap_type() == SOAP_TYPE_xsd__float_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__float_ * SOAP_FMAC4 soap_get_xsd__float_(struct soap*, xsd__float_ *, const char*, const char*); - -inline int soap_read_xsd__float_(struct soap *soap, xsd__float_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__float_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__float_(struct soap *soap, const char *URL, xsd__float_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__float_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__float_(struct soap *soap, xsd__float_ *p) -{ - if (::soap_read_xsd__float_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__duration___DEFINED -#define SOAP_TYPE_xsd__duration___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__duration__(struct soap*, const char*, int, const xsd__duration__ *, const char*); -SOAP_FMAC3 xsd__duration__ * SOAP_FMAC4 soap_in_xsd__duration__(struct soap*, const char*, xsd__duration__ *, const char*); -SOAP_FMAC1 xsd__duration__ * SOAP_FMAC2 soap_instantiate_xsd__duration__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__duration__ * soap_new_xsd__duration__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__duration__(soap, n, NULL, NULL, NULL); -} - -inline xsd__duration__ * soap_new_req_xsd__duration__( - struct soap *soap, - const std::string& __item) -{ - xsd__duration__ *_p = ::soap_new_xsd__duration__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__duration__::__item = __item; - } - return _p; -} - -inline xsd__duration__ * soap_new_set_xsd__duration__( - struct soap *soap, - const std::string& __item) -{ - xsd__duration__ *_p = ::soap_new_xsd__duration__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__duration__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__duration__(struct soap *soap, xsd__duration__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:duration", p->soap_type() == SOAP_TYPE_xsd__duration__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__duration__(struct soap *soap, const char *URL, xsd__duration__ 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, "xsd:duration", p->soap_type() == SOAP_TYPE_xsd__duration__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__duration__(struct soap *soap, const char *URL, xsd__duration__ 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, "xsd:duration", p->soap_type() == SOAP_TYPE_xsd__duration__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__duration__(struct soap *soap, const char *URL, xsd__duration__ 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, "xsd:duration", p->soap_type() == SOAP_TYPE_xsd__duration__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__duration__ * SOAP_FMAC4 soap_get_xsd__duration__(struct soap*, xsd__duration__ *, const char*, const char*); - -inline int soap_read_xsd__duration__(struct soap *soap, xsd__duration__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__duration__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__duration__(struct soap *soap, const char *URL, xsd__duration__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__duration__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__duration__(struct soap *soap, xsd__duration__ *p) -{ - if (::soap_read_xsd__duration__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__duration_DEFINED -#define SOAP_TYPE_xsd__duration_DEFINED - -inline void soap_default_xsd__duration(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__duration(struct soap*, const std::string *); - -#define soap_xsd__duration2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__duration(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__duration(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, "[-+]?P(\\d+Y)?(\\d+M)?(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(\\.\\d*)?S)?)?") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__duration(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_xsd__duration soap_instantiate_std__string - - -#define soap_new_xsd__duration soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__duration(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__duration(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__duration(soap, p, "xsd:duration", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__duration(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__duration(soap, p, "xsd:duration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__duration(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__duration(soap, p, "xsd:duration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__duration(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__duration(soap, p, "xsd:duration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__duration(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__duration(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__duration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__duration(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__duration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__duration(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__duration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__double__DEFINED -#define SOAP_TYPE_xsd__double__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__double_(struct soap*, const char*, int, const xsd__double_ *, const char*); -SOAP_FMAC3 xsd__double_ * SOAP_FMAC4 soap_in_xsd__double_(struct soap*, const char*, xsd__double_ *, const char*); -SOAP_FMAC1 xsd__double_ * SOAP_FMAC2 soap_instantiate_xsd__double_(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__double_ * soap_new_xsd__double_(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__double_(soap, n, NULL, NULL, NULL); -} - -inline xsd__double_ * soap_new_req_xsd__double_( - struct soap *soap, - double __item) -{ - xsd__double_ *_p = ::soap_new_xsd__double_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__double_::__item = __item; - } - return _p; -} - -inline xsd__double_ * soap_new_set_xsd__double_( - struct soap *soap, - double __item) -{ - xsd__double_ *_p = ::soap_new_xsd__double_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__double_::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__double_(struct soap *soap, xsd__double_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:double", p->soap_type() == SOAP_TYPE_xsd__double_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__double_(struct soap *soap, const char *URL, xsd__double_ 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, "xsd:double", p->soap_type() == SOAP_TYPE_xsd__double_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__double_(struct soap *soap, const char *URL, xsd__double_ 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, "xsd:double", p->soap_type() == SOAP_TYPE_xsd__double_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__double_(struct soap *soap, const char *URL, xsd__double_ 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, "xsd:double", p->soap_type() == SOAP_TYPE_xsd__double_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__double_ * SOAP_FMAC4 soap_get_xsd__double_(struct soap*, xsd__double_ *, const char*, const char*); - -inline int soap_read_xsd__double_(struct soap *soap, xsd__double_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__double_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__double_(struct soap *soap, const char *URL, xsd__double_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__double_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__double_(struct soap *soap, xsd__double_ *p) -{ - if (::soap_read_xsd__double_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__dateTime___DEFINED -#define SOAP_TYPE_xsd__dateTime___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__dateTime__(struct soap*, const char*, int, const xsd__dateTime__ *, const char*); -SOAP_FMAC3 xsd__dateTime__ * SOAP_FMAC4 soap_in_xsd__dateTime__(struct soap*, const char*, xsd__dateTime__ *, const char*); -SOAP_FMAC1 xsd__dateTime__ * SOAP_FMAC2 soap_instantiate_xsd__dateTime__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__dateTime__ * soap_new_xsd__dateTime__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__dateTime__(soap, n, NULL, NULL, NULL); -} - -inline xsd__dateTime__ * soap_new_req_xsd__dateTime__( - struct soap *soap, - const struct timeval& __item) -{ - xsd__dateTime__ *_p = ::soap_new_xsd__dateTime__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__dateTime__::__item = __item; - } - return _p; -} - -inline xsd__dateTime__ * soap_new_set_xsd__dateTime__( - struct soap *soap, - const struct timeval& __item) -{ - xsd__dateTime__ *_p = ::soap_new_xsd__dateTime__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__dateTime__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__dateTime__(struct soap *soap, xsd__dateTime__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:dateTime", p->soap_type() == SOAP_TYPE_xsd__dateTime__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__dateTime__(struct soap *soap, const char *URL, xsd__dateTime__ 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, "xsd:dateTime", p->soap_type() == SOAP_TYPE_xsd__dateTime__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__dateTime__(struct soap *soap, const char *URL, xsd__dateTime__ 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, "xsd:dateTime", p->soap_type() == SOAP_TYPE_xsd__dateTime__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__dateTime__(struct soap *soap, const char *URL, xsd__dateTime__ 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, "xsd:dateTime", p->soap_type() == SOAP_TYPE_xsd__dateTime__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__dateTime__ * SOAP_FMAC4 soap_get_xsd__dateTime__(struct soap*, xsd__dateTime__ *, const char*, const char*); - -inline int soap_read_xsd__dateTime__(struct soap *soap, xsd__dateTime__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__dateTime__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__dateTime__(struct soap *soap, const char *URL, xsd__dateTime__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__dateTime__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__dateTime__(struct soap *soap, xsd__dateTime__ *p) -{ - if (::soap_read_xsd__dateTime__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__boolean__DEFINED -#define SOAP_TYPE_xsd__boolean__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__boolean_(struct soap*, const char*, int, const xsd__boolean_ *, const char*); -SOAP_FMAC3 xsd__boolean_ * SOAP_FMAC4 soap_in_xsd__boolean_(struct soap*, const char*, xsd__boolean_ *, const char*); -SOAP_FMAC1 xsd__boolean_ * SOAP_FMAC2 soap_instantiate_xsd__boolean_(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__boolean_ * soap_new_xsd__boolean_(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__boolean_(soap, n, NULL, NULL, NULL); -} - -inline xsd__boolean_ * soap_new_req_xsd__boolean_( - struct soap *soap, - bool __item) -{ - xsd__boolean_ *_p = ::soap_new_xsd__boolean_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__boolean_::__item = __item; - } - return _p; -} - -inline xsd__boolean_ * soap_new_set_xsd__boolean_( - struct soap *soap, - bool __item) -{ - xsd__boolean_ *_p = ::soap_new_xsd__boolean_(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__boolean_::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__boolean_(struct soap *soap, xsd__boolean_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:boolean", p->soap_type() == SOAP_TYPE_xsd__boolean_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__boolean_(struct soap *soap, const char *URL, xsd__boolean_ 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, "xsd:boolean", p->soap_type() == SOAP_TYPE_xsd__boolean_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__boolean_(struct soap *soap, const char *URL, xsd__boolean_ 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, "xsd:boolean", p->soap_type() == SOAP_TYPE_xsd__boolean_ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__boolean_(struct soap *soap, const char *URL, xsd__boolean_ 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, "xsd:boolean", p->soap_type() == SOAP_TYPE_xsd__boolean_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__boolean_ * SOAP_FMAC4 soap_get_xsd__boolean_(struct soap*, xsd__boolean_ *, const char*, const char*); - -inline int soap_read_xsd__boolean_(struct soap *soap, xsd__boolean_ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__boolean_(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__boolean_(struct soap *soap, const char *URL, xsd__boolean_ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__boolean_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__boolean_(struct soap *soap, xsd__boolean_ *p) -{ - if (::soap_read_xsd__boolean_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__base64Binary___DEFINED -#define SOAP_TYPE_xsd__base64Binary___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__base64Binary__(struct soap*, const char*, int, const xsd__base64Binary__ *, const char*); -SOAP_FMAC3 xsd__base64Binary__ * SOAP_FMAC4 soap_in_xsd__base64Binary__(struct soap*, const char*, xsd__base64Binary__ *, const char*); -SOAP_FMAC1 xsd__base64Binary__ * SOAP_FMAC2 soap_instantiate_xsd__base64Binary__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__base64Binary__ * soap_new_xsd__base64Binary__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__base64Binary__(soap, n, NULL, NULL, NULL); -} - -inline xsd__base64Binary__ * soap_new_req_xsd__base64Binary__( - struct soap *soap, - const xsd__base64Binary& __item) -{ - xsd__base64Binary__ *_p = ::soap_new_xsd__base64Binary__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__base64Binary__::__item = __item; - } - return _p; -} - -inline xsd__base64Binary__ * soap_new_set_xsd__base64Binary__( - struct soap *soap, - const xsd__base64Binary& __item) -{ - xsd__base64Binary__ *_p = ::soap_new_xsd__base64Binary__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__base64Binary__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__base64Binary__(struct soap *soap, xsd__base64Binary__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__base64Binary__(struct soap *soap, const char *URL, xsd__base64Binary__ 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, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__base64Binary__(struct soap *soap, const char *URL, xsd__base64Binary__ 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, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__base64Binary__(struct soap *soap, const char *URL, xsd__base64Binary__ 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, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__base64Binary__ * SOAP_FMAC4 soap_get_xsd__base64Binary__(struct soap*, xsd__base64Binary__ *, const char*, const char*); - -inline int soap_read_xsd__base64Binary__(struct soap *soap, xsd__base64Binary__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__base64Binary__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__base64Binary__(struct soap *soap, const char *URL, xsd__base64Binary__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__base64Binary__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__base64Binary__(struct soap *soap, xsd__base64Binary__ *p) -{ - if (::soap_read_xsd__base64Binary__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__anyURI___DEFINED -#define SOAP_TYPE_xsd__anyURI___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anyURI__(struct soap*, const char*, int, const xsd__anyURI__ *, const char*); -SOAP_FMAC3 xsd__anyURI__ * SOAP_FMAC4 soap_in_xsd__anyURI__(struct soap*, const char*, xsd__anyURI__ *, const char*); -SOAP_FMAC1 xsd__anyURI__ * SOAP_FMAC2 soap_instantiate_xsd__anyURI__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__anyURI__ * soap_new_xsd__anyURI__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__anyURI__(soap, n, NULL, NULL, NULL); -} - -inline xsd__anyURI__ * soap_new_req_xsd__anyURI__( - struct soap *soap, - const std::string& __item) -{ - xsd__anyURI__ *_p = ::soap_new_xsd__anyURI__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__anyURI__::__item = __item; - } - return _p; -} - -inline xsd__anyURI__ * soap_new_set_xsd__anyURI__( - struct soap *soap, - const std::string& __item) -{ - xsd__anyURI__ *_p = ::soap_new_xsd__anyURI__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__anyURI__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__anyURI__(struct soap *soap, xsd__anyURI__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:anyURI", p->soap_type() == SOAP_TYPE_xsd__anyURI__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__anyURI__(struct soap *soap, const char *URL, xsd__anyURI__ 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, "xsd:anyURI", p->soap_type() == SOAP_TYPE_xsd__anyURI__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__anyURI__(struct soap *soap, const char *URL, xsd__anyURI__ 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, "xsd:anyURI", p->soap_type() == SOAP_TYPE_xsd__anyURI__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__anyURI__(struct soap *soap, const char *URL, xsd__anyURI__ 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, "xsd:anyURI", p->soap_type() == SOAP_TYPE_xsd__anyURI__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__anyURI__ * SOAP_FMAC4 soap_get_xsd__anyURI__(struct soap*, xsd__anyURI__ *, const char*, const char*); - -inline int soap_read_xsd__anyURI__(struct soap *soap, xsd__anyURI__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__anyURI__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__anyURI__(struct soap *soap, const char *URL, xsd__anyURI__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__anyURI__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__anyURI__(struct soap *soap, xsd__anyURI__ *p) -{ - if (::soap_read_xsd__anyURI__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__anyURI_DEFINED -#define SOAP_TYPE_xsd__anyURI_DEFINED - -inline void soap_default_xsd__anyURI(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__anyURI(struct soap*, const std::string *); - -#define soap_xsd__anyURI2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anyURI(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__anyURI(soap, s, a) soap_s2stdchar((soap), (s), (a), 4, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__anyURI(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_xsd__anyURI soap_instantiate_std__string - - -#define soap_new_xsd__anyURI soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anyURI(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__anyURI(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__anyURI(soap, p, "xsd:anyURI", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__anyURI(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__anyURI(soap, p, "xsd:anyURI", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__anyURI(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__anyURI(soap, p, "xsd:anyURI", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__anyURI(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__anyURI(soap, p, "xsd:anyURI", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__anyURI(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__anyURI(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__anyURI(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__anyURI(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__anyURI(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__anyURI(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__anyURI(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__anySimpleType___DEFINED -#define SOAP_TYPE_xsd__anySimpleType___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anySimpleType__(struct soap*, const char*, int, const xsd__anySimpleType__ *, const char*); -SOAP_FMAC3 xsd__anySimpleType__ * SOAP_FMAC4 soap_in_xsd__anySimpleType__(struct soap*, const char*, xsd__anySimpleType__ *, const char*); -SOAP_FMAC1 xsd__anySimpleType__ * SOAP_FMAC2 soap_instantiate_xsd__anySimpleType__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__anySimpleType__ * soap_new_xsd__anySimpleType__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__anySimpleType__(soap, n, NULL, NULL, NULL); -} - -inline xsd__anySimpleType__ * soap_new_req_xsd__anySimpleType__( - struct soap *soap, - const std::string& __item) -{ - xsd__anySimpleType__ *_p = ::soap_new_xsd__anySimpleType__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__anySimpleType__::__item = __item; - } - return _p; -} - -inline xsd__anySimpleType__ * soap_new_set_xsd__anySimpleType__( - struct soap *soap, - const std::string& __item) -{ - xsd__anySimpleType__ *_p = ::soap_new_xsd__anySimpleType__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__anySimpleType__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__anySimpleType__(struct soap *soap, xsd__anySimpleType__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:anySimpleType", p->soap_type() == SOAP_TYPE_xsd__anySimpleType__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__anySimpleType__(struct soap *soap, const char *URL, xsd__anySimpleType__ 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, "xsd:anySimpleType", p->soap_type() == SOAP_TYPE_xsd__anySimpleType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__anySimpleType__(struct soap *soap, const char *URL, xsd__anySimpleType__ 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, "xsd:anySimpleType", p->soap_type() == SOAP_TYPE_xsd__anySimpleType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__anySimpleType__(struct soap *soap, const char *URL, xsd__anySimpleType__ 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, "xsd:anySimpleType", p->soap_type() == SOAP_TYPE_xsd__anySimpleType__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__anySimpleType__ * SOAP_FMAC4 soap_get_xsd__anySimpleType__(struct soap*, xsd__anySimpleType__ *, const char*, const char*); - -inline int soap_read_xsd__anySimpleType__(struct soap *soap, xsd__anySimpleType__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__anySimpleType__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__anySimpleType__(struct soap *soap, const char *URL, xsd__anySimpleType__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__anySimpleType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__anySimpleType__(struct soap *soap, xsd__anySimpleType__ *p) -{ - if (::soap_read_xsd__anySimpleType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__anySimpleType_DEFINED -#define SOAP_TYPE_xsd__anySimpleType_DEFINED - -inline void soap_default_xsd__anySimpleType(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__anySimpleType(struct soap*, const std::string *); - -#define soap_xsd__anySimpleType2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__anySimpleType(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__anySimpleType(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__anySimpleType(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_xsd__anySimpleType soap_instantiate_std__string - - -#define soap_new_xsd__anySimpleType soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anySimpleType(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__anySimpleType(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__anySimpleType(soap, p, "xsd:anySimpleType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__anySimpleType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__anySimpleType(soap, p, "xsd:anySimpleType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__anySimpleType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__anySimpleType(soap, p, "xsd:anySimpleType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__anySimpleType(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__anySimpleType(soap, p, "xsd:anySimpleType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__anySimpleType(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__anySimpleType(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__anySimpleType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__anySimpleType(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__anySimpleType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__anySimpleType(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__anySimpleType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__QName___DEFINED -#define SOAP_TYPE_xsd__QName___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__QName__(struct soap*, const char*, int, const xsd__QName__ *, const char*); -SOAP_FMAC3 xsd__QName__ * SOAP_FMAC4 soap_in_xsd__QName__(struct soap*, const char*, xsd__QName__ *, const char*); -SOAP_FMAC1 xsd__QName__ * SOAP_FMAC2 soap_instantiate_xsd__QName__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__QName__ * soap_new_xsd__QName__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__QName__(soap, n, NULL, NULL, NULL); -} - -inline xsd__QName__ * soap_new_req_xsd__QName__( - struct soap *soap, - const std::string& __item) -{ - xsd__QName__ *_p = ::soap_new_xsd__QName__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__QName__::__item = __item; - } - return _p; -} - -inline xsd__QName__ * soap_new_set_xsd__QName__( - struct soap *soap, - const std::string& __item) -{ - xsd__QName__ *_p = ::soap_new_xsd__QName__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__QName__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__QName__(struct soap *soap, xsd__QName__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:QName", p->soap_type() == SOAP_TYPE_xsd__QName__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__QName__(struct soap *soap, const char *URL, xsd__QName__ 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, "xsd:QName", p->soap_type() == SOAP_TYPE_xsd__QName__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__QName__(struct soap *soap, const char *URL, xsd__QName__ 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, "xsd:QName", p->soap_type() == SOAP_TYPE_xsd__QName__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__QName__(struct soap *soap, const char *URL, xsd__QName__ 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, "xsd:QName", p->soap_type() == SOAP_TYPE_xsd__QName__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__QName__ * SOAP_FMAC4 soap_get_xsd__QName__(struct soap*, xsd__QName__ *, const char*, const char*); - -inline int soap_read_xsd__QName__(struct soap *soap, xsd__QName__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__QName__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__QName__(struct soap *soap, const char *URL, xsd__QName__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__QName__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__QName__(struct soap *soap, xsd__QName__ *p) -{ - if (::soap_read_xsd__QName__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__NCName___DEFINED -#define SOAP_TYPE_xsd__NCName___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__NCName__(struct soap*, const char*, int, const xsd__NCName__ *, const char*); -SOAP_FMAC3 xsd__NCName__ * SOAP_FMAC4 soap_in_xsd__NCName__(struct soap*, const char*, xsd__NCName__ *, const char*); -SOAP_FMAC1 xsd__NCName__ * SOAP_FMAC2 soap_instantiate_xsd__NCName__(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__NCName__ * soap_new_xsd__NCName__(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__NCName__(soap, n, NULL, NULL, NULL); -} - -inline xsd__NCName__ * soap_new_req_xsd__NCName__( - struct soap *soap, - const std::string& __item) -{ - xsd__NCName__ *_p = ::soap_new_xsd__NCName__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__NCName__::__item = __item; - } - return _p; -} - -inline xsd__NCName__ * soap_new_set_xsd__NCName__( - struct soap *soap, - const std::string& __item) -{ - xsd__NCName__ *_p = ::soap_new_xsd__NCName__(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__NCName__::__item = __item; - } - return _p; -} - -inline int soap_write_xsd__NCName__(struct soap *soap, xsd__NCName__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:NCName", p->soap_type() == SOAP_TYPE_xsd__NCName__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__NCName__(struct soap *soap, const char *URL, xsd__NCName__ 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, "xsd:NCName", p->soap_type() == SOAP_TYPE_xsd__NCName__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__NCName__(struct soap *soap, const char *URL, xsd__NCName__ 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, "xsd:NCName", p->soap_type() == SOAP_TYPE_xsd__NCName__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__NCName__(struct soap *soap, const char *URL, xsd__NCName__ 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, "xsd:NCName", p->soap_type() == SOAP_TYPE_xsd__NCName__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__NCName__ * SOAP_FMAC4 soap_get_xsd__NCName__(struct soap*, xsd__NCName__ *, const char*, const char*); - -inline int soap_read_xsd__NCName__(struct soap *soap, xsd__NCName__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__NCName__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__NCName__(struct soap *soap, const char *URL, xsd__NCName__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__NCName__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__NCName__(struct soap *soap, xsd__NCName__ *p) -{ - if (::soap_read_xsd__NCName__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__NCName_DEFINED -#define SOAP_TYPE_xsd__NCName_DEFINED - -inline void soap_default_xsd__NCName(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__NCName(struct soap*, const std::string *); - -#define soap_xsd__NCName2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__NCName(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__NCName(soap, s, a) soap_s2stdchar((soap), (s), (a), 5, 0, -1, "[\\i-[:]][\\c-[:]]*") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__NCName(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_xsd__NCName soap_instantiate_std__string - - -#define soap_new_xsd__NCName soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__NCName(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__NCName(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__NCName(soap, p, "xsd:NCName", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__NCName(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__NCName(soap, p, "xsd:NCName", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__NCName(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__NCName(soap, p, "xsd:NCName", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__NCName(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__NCName(soap, p, "xsd:NCName", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__NCName(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__NCName(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__NCName(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__NCName(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__NCName(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__NCName(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__NCName(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_SOAP_ENV__Fault__DEFINED -#define SOAP_TYPE_SOAP_ENV__Fault__DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Fault_(struct soap*, const char*, int, const SOAP_ENV__Fault_ *, const char*); -SOAP_FMAC3 SOAP_ENV__Fault_ * SOAP_FMAC4 soap_in_SOAP_ENV__Fault_(struct soap*, const char*, SOAP_ENV__Fault_ *, const char*); -SOAP_FMAC1 SOAP_ENV__Fault_ * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Fault_(struct soap*, int, const char*, const char*, size_t*); - -inline 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 SOAP_ENV__Fault_ * soap_new_req_SOAP_ENV__Fault_( - struct soap *soap, - const struct SOAP_ENV__Fault& __item) -{ - SOAP_ENV__Fault_ *_p = ::soap_new_SOAP_ENV__Fault_(soap); - if (_p) - { _p->soap_default(soap); - _p->SOAP_ENV__Fault_::__item = __item; - } - return _p; -} - -inline SOAP_ENV__Fault_ * soap_new_set_SOAP_ENV__Fault_( - struct soap *soap, - const struct SOAP_ENV__Fault& __item) -{ - SOAP_ENV__Fault_ *_p = ::soap_new_SOAP_ENV__Fault_(soap); - if (_p) - { _p->soap_default(soap); - _p->SOAP_ENV__Fault_::__item = __item; - } - return _p; -} - -inline int soap_write_SOAP_ENV__Fault_(struct soap *soap, SOAP_ENV__Fault_ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "SOAP-ENV:Fault", p->soap_type() == SOAP_TYPE_SOAP_ENV__Fault_ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_SOAP_ENV__Fault_(struct soap *soap, const char *URL, SOAP_ENV__Fault_ 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, "SOAP-ENV:Fault", p->soap_type() == SOAP_TYPE_SOAP_ENV__Fault_ ? "" : NULL) || 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, SOAP_ENV__Fault_ 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, "SOAP-ENV:Fault", p->soap_type() == SOAP_TYPE_SOAP_ENV__Fault_ ? "" : NULL) || 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, SOAP_ENV__Fault_ 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, "SOAP-ENV:Fault", p->soap_type() == SOAP_TYPE_SOAP_ENV__Fault_ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 SOAP_ENV__Fault_ * SOAP_FMAC4 soap_get_SOAP_ENV__Fault_(struct soap*, SOAP_ENV__Fault_ *, const char*, const char*); - -inline int soap_read_SOAP_ENV__Fault_(struct soap *soap, SOAP_ENV__Fault_ *p) -{ - if (p) - { p->soap_default(soap); - 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, 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, SOAP_ENV__Fault_ *p) -{ - if (::soap_read_SOAP_ENV__Fault_(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_SOAP_ENV__Envelope___DEFINED -#define SOAP_TYPE_SOAP_ENV__Envelope___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Envelope__(struct soap*, const char*, int, const SOAP_ENV__Envelope__ *, const char*); -SOAP_FMAC3 SOAP_ENV__Envelope__ * SOAP_FMAC4 soap_in_SOAP_ENV__Envelope__(struct soap*, const char*, SOAP_ENV__Envelope__ *, const char*); -SOAP_FMAC1 SOAP_ENV__Envelope__ * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Envelope__(struct soap*, int, const char*, const char*, size_t*); - -inline SOAP_ENV__Envelope__ * soap_new_SOAP_ENV__Envelope__(struct soap *soap, int n = -1) -{ - return soap_instantiate_SOAP_ENV__Envelope__(soap, n, NULL, NULL, NULL); -} - -inline SOAP_ENV__Envelope__ * soap_new_req_SOAP_ENV__Envelope__( - struct soap *soap, - const std::string& __item) -{ - SOAP_ENV__Envelope__ *_p = ::soap_new_SOAP_ENV__Envelope__(soap); - if (_p) - { _p->soap_default(soap); - _p->SOAP_ENV__Envelope__::__item = __item; - } - return _p; -} - -inline SOAP_ENV__Envelope__ * soap_new_set_SOAP_ENV__Envelope__( - struct soap *soap, - const std::string& __item) -{ - SOAP_ENV__Envelope__ *_p = ::soap_new_SOAP_ENV__Envelope__(soap); - if (_p) - { _p->soap_default(soap); - _p->SOAP_ENV__Envelope__::__item = __item; - } - return _p; -} - -inline int soap_write_SOAP_ENV__Envelope__(struct soap *soap, SOAP_ENV__Envelope__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "SOAP-ENV:Envelope", p->soap_type() == SOAP_TYPE_SOAP_ENV__Envelope__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_SOAP_ENV__Envelope__(struct soap *soap, const char *URL, SOAP_ENV__Envelope__ 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, "SOAP-ENV:Envelope", p->soap_type() == SOAP_TYPE_SOAP_ENV__Envelope__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_SOAP_ENV__Envelope__(struct soap *soap, const char *URL, SOAP_ENV__Envelope__ 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, "SOAP-ENV:Envelope", p->soap_type() == SOAP_TYPE_SOAP_ENV__Envelope__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_SOAP_ENV__Envelope__(struct soap *soap, const char *URL, SOAP_ENV__Envelope__ 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, "SOAP-ENV:Envelope", p->soap_type() == SOAP_TYPE_SOAP_ENV__Envelope__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 SOAP_ENV__Envelope__ * SOAP_FMAC4 soap_get_SOAP_ENV__Envelope__(struct soap*, SOAP_ENV__Envelope__ *, const char*, const char*); - -inline int soap_read_SOAP_ENV__Envelope__(struct soap *soap, SOAP_ENV__Envelope__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_SOAP_ENV__Envelope__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_SOAP_ENV__Envelope__(struct soap *soap, const char *URL, SOAP_ENV__Envelope__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_SOAP_ENV__Envelope__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_SOAP_ENV__Envelope__(struct soap *soap, SOAP_ENV__Envelope__ *p) -{ - if (::soap_read_SOAP_ENV__Envelope__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_SOAP_ENV__Envelope_DEFINED -#define SOAP_TYPE_SOAP_ENV__Envelope_DEFINED - -inline void soap_default_SOAP_ENV__Envelope(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Envelope(struct soap*, const std::string *); - -#define soap_SOAP_ENV__Envelope2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Envelope(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2SOAP_ENV__Envelope(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_SOAP_ENV__Envelope(struct soap*, const char*, std::string*, const char*); - -#define soap_instantiate_SOAP_ENV__Envelope soap_instantiate_std__string - - -#define soap_new_SOAP_ENV__Envelope soap_new_std__string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Envelope(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_SOAP_ENV__Envelope(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_SOAP_ENV__Envelope(soap, p, "SOAP-ENV:Envelope", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_SOAP_ENV__Envelope(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_SOAP_ENV__Envelope(soap, p, "SOAP-ENV:Envelope", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_SOAP_ENV__Envelope(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_SOAP_ENV__Envelope(soap, p, "SOAP-ENV:Envelope", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_SOAP_ENV__Envelope(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_SOAP_ENV__Envelope(soap, p, "SOAP-ENV:Envelope", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_SOAP_ENV__Envelope(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_SOAP_ENV__Envelope(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_SOAP_ENV__Envelope(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_SOAP_ENV__Envelope(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_SOAP_ENV__Envelope(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_SOAP_ENV__Envelope(struct soap *soap, std::string *p) -{ - if (::soap_read_SOAP_ENV__Envelope(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__EndpointReferenceType___DEFINED -#define SOAP_TYPE_wsa5__EndpointReferenceType___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__EndpointReferenceType__(struct soap*, const char*, int, const wsa5__EndpointReferenceType__ *, const char*); -SOAP_FMAC3 wsa5__EndpointReferenceType__ * SOAP_FMAC4 soap_in_wsa5__EndpointReferenceType__(struct soap*, const char*, wsa5__EndpointReferenceType__ *, const char*); -SOAP_FMAC1 wsa5__EndpointReferenceType__ * SOAP_FMAC2 soap_instantiate_wsa5__EndpointReferenceType__(struct soap*, int, const char*, const char*, size_t*); - -inline wsa5__EndpointReferenceType__ * soap_new_wsa5__EndpointReferenceType__(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa5__EndpointReferenceType__(soap, n, NULL, NULL, NULL); -} - -inline wsa5__EndpointReferenceType__ * soap_new_req_wsa5__EndpointReferenceType__( - struct soap *soap, - const struct wsa5__EndpointReferenceType& __item) -{ - wsa5__EndpointReferenceType__ *_p = ::soap_new_wsa5__EndpointReferenceType__(soap); - if (_p) - { _p->soap_default(soap); - _p->wsa5__EndpointReferenceType__::__item = __item; - } - return _p; -} - -inline wsa5__EndpointReferenceType__ * soap_new_set_wsa5__EndpointReferenceType__( - struct soap *soap, - const struct wsa5__EndpointReferenceType& __item) -{ - wsa5__EndpointReferenceType__ *_p = ::soap_new_wsa5__EndpointReferenceType__(soap); - if (_p) - { _p->soap_default(soap); - _p->wsa5__EndpointReferenceType__::__item = __item; - } - return _p; -} - -inline int soap_write_wsa5__EndpointReferenceType__(struct soap *soap, wsa5__EndpointReferenceType__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "wsa5:EndpointReferenceType", p->soap_type() == SOAP_TYPE_wsa5__EndpointReferenceType__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa5__EndpointReferenceType__(struct soap *soap, const char *URL, wsa5__EndpointReferenceType__ 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, "wsa5:EndpointReferenceType", p->soap_type() == SOAP_TYPE_wsa5__EndpointReferenceType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__EndpointReferenceType__(struct soap *soap, const char *URL, wsa5__EndpointReferenceType__ 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, "wsa5:EndpointReferenceType", p->soap_type() == SOAP_TYPE_wsa5__EndpointReferenceType__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__EndpointReferenceType__(struct soap *soap, const char *URL, wsa5__EndpointReferenceType__ 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, "wsa5:EndpointReferenceType", p->soap_type() == SOAP_TYPE_wsa5__EndpointReferenceType__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 wsa5__EndpointReferenceType__ * SOAP_FMAC4 soap_get_wsa5__EndpointReferenceType__(struct soap*, wsa5__EndpointReferenceType__ *, const char*, const char*); - -inline int soap_read_wsa5__EndpointReferenceType__(struct soap *soap, wsa5__EndpointReferenceType__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_wsa5__EndpointReferenceType__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__EndpointReferenceType__(struct soap *soap, const char *URL, wsa5__EndpointReferenceType__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__EndpointReferenceType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__EndpointReferenceType__(struct soap *soap, wsa5__EndpointReferenceType__ *p) -{ - if (::soap_read_wsa5__EndpointReferenceType__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__IntList___DEFINED -#define SOAP_TYPE_tt__IntList___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__IntList__(struct soap*, const char*, int, const tt__IntList__ *, const char*); -SOAP_FMAC3 tt__IntList__ * SOAP_FMAC4 soap_in_tt__IntList__(struct soap*, const char*, tt__IntList__ *, const char*); -SOAP_FMAC1 tt__IntList__ * SOAP_FMAC2 soap_instantiate_tt__IntList__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__IntList__ * soap_new_tt__IntList__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__IntList__(soap, n, NULL, NULL, NULL); -} - -inline tt__IntList__ * soap_new_req_tt__IntList__( - struct soap *soap, - int tt__IntList) -{ - tt__IntList__ *_p = ::soap_new_tt__IntList__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntList__::tt__IntList = tt__IntList; - } - return _p; -} - -inline tt__IntList__ * soap_new_set_tt__IntList__( - struct soap *soap, - int tt__IntList) -{ - tt__IntList__ *_p = ::soap_new_tt__IntList__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__IntList__::tt__IntList = tt__IntList; - } - return _p; -} - -inline int soap_write_tt__IntList__(struct soap *soap, tt__IntList__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:IntList", p->soap_type() == SOAP_TYPE_tt__IntList__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__IntList__(struct soap *soap, const char *URL, tt__IntList__ 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, "tt:IntList", p->soap_type() == SOAP_TYPE_tt__IntList__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__IntList__(struct soap *soap, const char *URL, tt__IntList__ 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, "tt:IntList", p->soap_type() == SOAP_TYPE_tt__IntList__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__IntList__(struct soap *soap, const char *URL, tt__IntList__ 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, "tt:IntList", p->soap_type() == SOAP_TYPE_tt__IntList__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__IntList__ * SOAP_FMAC4 soap_get_tt__IntList__(struct soap*, tt__IntList__ *, const char*, const char*); - -inline int soap_read_tt__IntList__(struct soap *soap, tt__IntList__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__IntList__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__IntList__(struct soap *soap, const char *URL, tt__IntList__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__IntList__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__IntList__(struct soap *soap, tt__IntList__ *p) -{ - if (::soap_read_tt__IntList__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_tt__FloatList___DEFINED -#define SOAP_TYPE_tt__FloatList___DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_tt__FloatList__(struct soap*, const char*, int, const tt__FloatList__ *, const char*); -SOAP_FMAC3 tt__FloatList__ * SOAP_FMAC4 soap_in_tt__FloatList__(struct soap*, const char*, tt__FloatList__ *, const char*); -SOAP_FMAC1 tt__FloatList__ * SOAP_FMAC2 soap_instantiate_tt__FloatList__(struct soap*, int, const char*, const char*, size_t*); - -inline tt__FloatList__ * soap_new_tt__FloatList__(struct soap *soap, int n = -1) -{ - return soap_instantiate_tt__FloatList__(soap, n, NULL, NULL, NULL); -} - -inline tt__FloatList__ * soap_new_req_tt__FloatList__( - struct soap *soap, - int tt__FloatList) -{ - tt__FloatList__ *_p = ::soap_new_tt__FloatList__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FloatList__::tt__FloatList = tt__FloatList; - } - return _p; -} - -inline tt__FloatList__ * soap_new_set_tt__FloatList__( - struct soap *soap, - int tt__FloatList) -{ - tt__FloatList__ *_p = ::soap_new_tt__FloatList__(soap); - if (_p) - { _p->soap_default(soap); - _p->tt__FloatList__::tt__FloatList = tt__FloatList; - } - return _p; -} - -inline int soap_write_tt__FloatList__(struct soap *soap, tt__FloatList__ const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "tt:FloatList", p->soap_type() == SOAP_TYPE_tt__FloatList__ ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_tt__FloatList__(struct soap *soap, const char *URL, tt__FloatList__ 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, "tt:FloatList", p->soap_type() == SOAP_TYPE_tt__FloatList__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_tt__FloatList__(struct soap *soap, const char *URL, tt__FloatList__ 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, "tt:FloatList", p->soap_type() == SOAP_TYPE_tt__FloatList__ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_tt__FloatList__(struct soap *soap, const char *URL, tt__FloatList__ 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, "tt:FloatList", p->soap_type() == SOAP_TYPE_tt__FloatList__ ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 tt__FloatList__ * SOAP_FMAC4 soap_get_tt__FloatList__(struct soap*, tt__FloatList__ *, const char*, const char*); - -inline int soap_read_tt__FloatList__(struct soap *soap, tt__FloatList__ *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_tt__FloatList__(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_tt__FloatList__(struct soap *soap, const char *URL, tt__FloatList__ *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_tt__FloatList__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_tt__FloatList__(struct soap *soap, tt__FloatList__ *p) -{ - if (::soap_read_tt__FloatList__(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__hexBinary_DEFINED -#define SOAP_TYPE_xsd__hexBinary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__hexBinary(struct soap*, const char*, int, const xsd__hexBinary *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_xsd__hexBinary2s(struct soap*, xsd__hexBinary); -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_in_xsd__hexBinary(struct soap*, const char*, xsd__hexBinary *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2xsd__hexBinary(struct soap*, const char*, xsd__hexBinary *); -SOAP_FMAC1 xsd__hexBinary * SOAP_FMAC2 soap_instantiate_xsd__hexBinary(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__hexBinary * soap_new_xsd__hexBinary(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__hexBinary(soap, n, NULL, NULL, NULL); -} - -inline xsd__hexBinary * soap_new_req_xsd__hexBinary( - struct soap *soap) -{ - xsd__hexBinary *_p = ::soap_new_xsd__hexBinary(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline xsd__hexBinary * soap_new_set_xsd__hexBinary( - struct soap *soap, - unsigned char *__ptr, - int __size) -{ - xsd__hexBinary *_p = ::soap_new_xsd__hexBinary(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__hexBinary::__ptr = __ptr; - _p->xsd__hexBinary::__size = __size; - } - return _p; -} - -inline int soap_write_xsd__hexBinary(struct soap *soap, xsd__hexBinary const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__hexBinary(struct soap *soap, const char *URL, xsd__hexBinary 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, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__hexBinary(struct soap *soap, const char *URL, xsd__hexBinary 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, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__hexBinary(struct soap *soap, const char *URL, xsd__hexBinary 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, "xsd:hexBinary", p->soap_type() == SOAP_TYPE_xsd__hexBinary ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__hexBinary * SOAP_FMAC4 soap_get_xsd__hexBinary(struct soap*, xsd__hexBinary *, const char*, const char*); - -inline int soap_read_xsd__hexBinary(struct soap *soap, xsd__hexBinary *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__hexBinary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__hexBinary(struct soap *soap, const char *URL, xsd__hexBinary *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__hexBinary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__hexBinary(struct soap *soap, xsd__hexBinary *p) -{ - if (::soap_read_xsd__hexBinary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__base64Binary_DEFINED -#define SOAP_TYPE_xsd__base64Binary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__base64Binary(struct soap*, const char*, int, const xsd__base64Binary *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_xsd__base64Binary2s(struct soap*, xsd__base64Binary); -SOAP_FMAC3 xsd__base64Binary * SOAP_FMAC4 soap_in_xsd__base64Binary(struct soap*, const char*, xsd__base64Binary *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2xsd__base64Binary(struct soap*, const char*, xsd__base64Binary *); -SOAP_FMAC1 xsd__base64Binary * SOAP_FMAC2 soap_instantiate_xsd__base64Binary(struct soap*, int, const char*, const char*, size_t*); - -inline xsd__base64Binary * soap_new_xsd__base64Binary(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__base64Binary(soap, n, NULL, NULL, NULL); -} - -inline xsd__base64Binary * soap_new_req_xsd__base64Binary( - struct soap *soap) -{ - xsd__base64Binary *_p = ::soap_new_xsd__base64Binary(soap); - if (_p) - { _p->soap_default(soap); - } - return _p; -} - -inline xsd__base64Binary * soap_new_set_xsd__base64Binary( - struct soap *soap, - unsigned char *__ptr, - int __size, - char *id, - char *type, - char *options) -{ - xsd__base64Binary *_p = ::soap_new_xsd__base64Binary(soap); - if (_p) - { _p->soap_default(soap); - _p->xsd__base64Binary::__ptr = __ptr; - _p->xsd__base64Binary::__size = __size; - _p->xsd__base64Binary::id = id; - _p->xsd__base64Binary::type = type; - _p->xsd__base64Binary::options = options; - } - return _p; -} - -inline int soap_write_xsd__base64Binary(struct soap *soap, xsd__base64Binary const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary ? "" : NULL) || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__base64Binary(struct soap *soap, const char *URL, xsd__base64Binary 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, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__base64Binary(struct soap *soap, const char *URL, xsd__base64Binary 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, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__base64Binary(struct soap *soap, const char *URL, xsd__base64Binary 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, "xsd:base64Binary", p->soap_type() == SOAP_TYPE_xsd__base64Binary ? "" : NULL) || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 xsd__base64Binary * SOAP_FMAC4 soap_get_xsd__base64Binary(struct soap*, xsd__base64Binary *, const char*, const char*); - -inline int soap_read_xsd__base64Binary(struct soap *soap, xsd__base64Binary *p) -{ - if (p) - { p->soap_default(soap); - if (soap_begin_recv(soap) || ::soap_get_xsd__base64Binary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__base64Binary(struct soap *soap, const char *URL, xsd__base64Binary *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__base64Binary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__base64Binary(struct soap *soap, xsd__base64Binary *p) -{ - if (::soap_read_xsd__base64Binary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__QName_DEFINED -#define SOAP_TYPE_xsd__QName_DEFINED - -inline void soap_default_xsd__QName(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xsd__QName(struct soap*, const std::string *); - -#define soap_xsd__QName2s(soap, a) soap_QName2s((soap), (a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xsd__QName(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2xsd__QName(soap, s, a) soap_s2stdQName((soap), (s), (a), 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_xsd__QName(struct soap*, const char*, std::string*, const char*); -SOAP_FMAC1 std::string * SOAP_FMAC2 soap_instantiate_xsd__QName(struct soap*, int, const char*, const char*, size_t*); - -inline std::string * soap_new_xsd__QName(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__QName(soap, n, NULL, NULL, NULL); -} - -inline std::string * soap_new_req_xsd__QName( - struct soap *soap) -{ - std::string *_p = ::soap_new_xsd__QName(soap); - if (_p) - { ::soap_default_xsd__QName(soap, _p); - } - return _p; -} - -inline std::string * soap_new_set_xsd__QName( - struct soap *soap) -{ - std::string *_p = ::soap_new_xsd__QName(soap); - if (_p) - { ::soap_default_xsd__QName(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__QName(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_xsd__QName(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_xsd__QName(soap, p, "xsd:QName", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_xsd__QName(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__QName(soap, p, "xsd:QName", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__QName(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__QName(soap, p, "xsd:QName", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__QName(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_xsd__QName(soap, p, "xsd:QName", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_xsd__QName(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_xsd__QName(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_xsd__QName(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__QName(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xsd__QName(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__QName(struct soap *soap, std::string *p) -{ - if (::soap_read_xsd__QName(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_std__string_DEFINED -#define SOAP_TYPE_std__string_DEFINED - -inline void soap_default_std__string(struct soap *soap, std::string *p) -{ - (void)soap; /* appease -Wall -Werror */ - p->erase(); -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__string(struct soap*, const std::string *); - -#define soap_std__string2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__string(struct soap*, const char*, int, const std::string*, const char*); - -#define soap_s2std__string(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_std__string(struct soap*, const char*, std::string*, const char*); -SOAP_FMAC1 std::string * SOAP_FMAC2 soap_instantiate_std__string(struct soap*, int, const char*, const char*, size_t*); - -inline std::string * soap_new_std__string(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__string(soap, n, NULL, NULL, NULL); -} - -inline std::string * soap_new_req_std__string( - struct soap *soap) -{ - std::string *_p = ::soap_new_std__string(soap); - if (_p) - { ::soap_default_std__string(soap, _p); - } - return _p; -} - -inline std::string * soap_new_set_std__string( - struct soap *soap) -{ - std::string *_p = ::soap_new_std__string(soap); - if (_p) - { ::soap_default_std__string(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__string(struct soap*, const std::string *, const char*, const char*); - -inline int soap_write_std__string(struct soap *soap, std::string const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_std__string(soap, p, "string", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_std__string(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_std__string(soap, p, "string", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_std__string(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_std__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_std__string(struct soap *soap, const char *URL, std::string const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_std__string(soap, p, "string", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_std__string(struct soap*, std::string *, const char*, const char*); - -inline int soap_read_std__string(struct soap *soap, std::string *p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_std__string(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_std__string(struct soap *soap, const char *URL, std::string *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_std__string(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_std__string(struct soap *soap, std::string *p) -{ - if (::soap_read_std__string(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetMetadataSearchResults_DEFINED -#define SOAP_TYPE___tse__GetMetadataSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetMetadataSearchResults(struct soap*, struct __tse__GetMetadataSearchResults *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetMetadataSearchResults(struct soap*, const struct __tse__GetMetadataSearchResults *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetMetadataSearchResults(struct soap*, const char*, int, const struct __tse__GetMetadataSearchResults *, const char*); -SOAP_FMAC3 struct __tse__GetMetadataSearchResults * SOAP_FMAC4 soap_in___tse__GetMetadataSearchResults(struct soap*, const char*, struct __tse__GetMetadataSearchResults *, const char*); -SOAP_FMAC1 struct __tse__GetMetadataSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetMetadataSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetMetadataSearchResults * soap_new___tse__GetMetadataSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetMetadataSearchResults(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetMetadataSearchResults * soap_new_req___tse__GetMetadataSearchResults( - struct soap *soap) -{ - struct __tse__GetMetadataSearchResults *_p = ::soap_new___tse__GetMetadataSearchResults(soap); - if (_p) - { ::soap_default___tse__GetMetadataSearchResults(soap, _p); - } - return _p; -} - -inline struct __tse__GetMetadataSearchResults * soap_new_set___tse__GetMetadataSearchResults( - struct soap *soap, - _tse__GetMetadataSearchResults *tse__GetMetadataSearchResults) -{ - struct __tse__GetMetadataSearchResults *_p = ::soap_new___tse__GetMetadataSearchResults(soap); - if (_p) - { ::soap_default___tse__GetMetadataSearchResults(soap, _p); - _p->tse__GetMetadataSearchResults = tse__GetMetadataSearchResults; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetMetadataSearchResults(struct soap*, const struct __tse__GetMetadataSearchResults *, const char*, const char*); - -inline int soap_write___tse__GetMetadataSearchResults(struct soap *soap, struct __tse__GetMetadataSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetMetadataSearchResults(soap, p), 0) || ::soap_put___tse__GetMetadataSearchResults(soap, p, "-tse:GetMetadataSearchResults", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetMetadataSearchResults(struct soap *soap, const char *URL, struct __tse__GetMetadataSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetMetadataSearchResults(soap, p), 0) || ::soap_put___tse__GetMetadataSearchResults(soap, p, "-tse:GetMetadataSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetMetadataSearchResults(struct soap *soap, const char *URL, struct __tse__GetMetadataSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetMetadataSearchResults(soap, p), 0) || ::soap_put___tse__GetMetadataSearchResults(soap, p, "-tse:GetMetadataSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetMetadataSearchResults(struct soap *soap, const char *URL, struct __tse__GetMetadataSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetMetadataSearchResults(soap, p), 0) || ::soap_put___tse__GetMetadataSearchResults(soap, p, "-tse:GetMetadataSearchResults", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetMetadataSearchResults * SOAP_FMAC4 soap_get___tse__GetMetadataSearchResults(struct soap*, struct __tse__GetMetadataSearchResults *, const char*, const char*); - -inline int soap_read___tse__GetMetadataSearchResults(struct soap *soap, struct __tse__GetMetadataSearchResults *p) -{ - if (p) - { ::soap_default___tse__GetMetadataSearchResults(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetMetadataSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetMetadataSearchResults(struct soap *soap, const char *URL, struct __tse__GetMetadataSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetMetadataSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetMetadataSearchResults(struct soap *soap, struct __tse__GetMetadataSearchResults *p) -{ - if (::soap_read___tse__GetMetadataSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__FindMetadata_DEFINED -#define SOAP_TYPE___tse__FindMetadata_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindMetadata(struct soap*, struct __tse__FindMetadata *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindMetadata(struct soap*, const struct __tse__FindMetadata *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindMetadata(struct soap*, const char*, int, const struct __tse__FindMetadata *, const char*); -SOAP_FMAC3 struct __tse__FindMetadata * SOAP_FMAC4 soap_in___tse__FindMetadata(struct soap*, const char*, struct __tse__FindMetadata *, const char*); -SOAP_FMAC1 struct __tse__FindMetadata * SOAP_FMAC2 soap_instantiate___tse__FindMetadata(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__FindMetadata * soap_new___tse__FindMetadata(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__FindMetadata(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__FindMetadata * soap_new_req___tse__FindMetadata( - struct soap *soap) -{ - struct __tse__FindMetadata *_p = ::soap_new___tse__FindMetadata(soap); - if (_p) - { ::soap_default___tse__FindMetadata(soap, _p); - } - return _p; -} - -inline struct __tse__FindMetadata * soap_new_set___tse__FindMetadata( - struct soap *soap, - _tse__FindMetadata *tse__FindMetadata) -{ - struct __tse__FindMetadata *_p = ::soap_new___tse__FindMetadata(soap); - if (_p) - { ::soap_default___tse__FindMetadata(soap, _p); - _p->tse__FindMetadata = tse__FindMetadata; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindMetadata(struct soap*, const struct __tse__FindMetadata *, const char*, const char*); - -inline int soap_write___tse__FindMetadata(struct soap *soap, struct __tse__FindMetadata const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__FindMetadata(soap, p), 0) || ::soap_put___tse__FindMetadata(soap, p, "-tse:FindMetadata", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__FindMetadata(struct soap *soap, const char *URL, struct __tse__FindMetadata const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindMetadata(soap, p), 0) || ::soap_put___tse__FindMetadata(soap, p, "-tse:FindMetadata", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__FindMetadata(struct soap *soap, const char *URL, struct __tse__FindMetadata const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindMetadata(soap, p), 0) || ::soap_put___tse__FindMetadata(soap, p, "-tse:FindMetadata", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__FindMetadata(struct soap *soap, const char *URL, struct __tse__FindMetadata const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindMetadata(soap, p), 0) || ::soap_put___tse__FindMetadata(soap, p, "-tse:FindMetadata", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__FindMetadata * SOAP_FMAC4 soap_get___tse__FindMetadata(struct soap*, struct __tse__FindMetadata *, const char*, const char*); - -inline int soap_read___tse__FindMetadata(struct soap *soap, struct __tse__FindMetadata *p) -{ - if (p) - { ::soap_default___tse__FindMetadata(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__FindMetadata(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__FindMetadata(struct soap *soap, const char *URL, struct __tse__FindMetadata *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__FindMetadata(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__FindMetadata(struct soap *soap, struct __tse__FindMetadata *p) -{ - if (::soap_read___tse__FindMetadata(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__EndSearch_DEFINED -#define SOAP_TYPE___tse__EndSearch_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__EndSearch(struct soap*, struct __tse__EndSearch *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__EndSearch(struct soap*, const struct __tse__EndSearch *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__EndSearch(struct soap*, const char*, int, const struct __tse__EndSearch *, const char*); -SOAP_FMAC3 struct __tse__EndSearch * SOAP_FMAC4 soap_in___tse__EndSearch(struct soap*, const char*, struct __tse__EndSearch *, const char*); -SOAP_FMAC1 struct __tse__EndSearch * SOAP_FMAC2 soap_instantiate___tse__EndSearch(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__EndSearch * soap_new___tse__EndSearch(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__EndSearch(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__EndSearch * soap_new_req___tse__EndSearch( - struct soap *soap) -{ - struct __tse__EndSearch *_p = ::soap_new___tse__EndSearch(soap); - if (_p) - { ::soap_default___tse__EndSearch(soap, _p); - } - return _p; -} - -inline struct __tse__EndSearch * soap_new_set___tse__EndSearch( - struct soap *soap, - _tse__EndSearch *tse__EndSearch) -{ - struct __tse__EndSearch *_p = ::soap_new___tse__EndSearch(soap); - if (_p) - { ::soap_default___tse__EndSearch(soap, _p); - _p->tse__EndSearch = tse__EndSearch; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__EndSearch(struct soap*, const struct __tse__EndSearch *, const char*, const char*); - -inline int soap_write___tse__EndSearch(struct soap *soap, struct __tse__EndSearch const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__EndSearch(soap, p), 0) || ::soap_put___tse__EndSearch(soap, p, "-tse:EndSearch", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__EndSearch(struct soap *soap, const char *URL, struct __tse__EndSearch const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__EndSearch(soap, p), 0) || ::soap_put___tse__EndSearch(soap, p, "-tse:EndSearch", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__EndSearch(struct soap *soap, const char *URL, struct __tse__EndSearch const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__EndSearch(soap, p), 0) || ::soap_put___tse__EndSearch(soap, p, "-tse:EndSearch", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__EndSearch(struct soap *soap, const char *URL, struct __tse__EndSearch const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__EndSearch(soap, p), 0) || ::soap_put___tse__EndSearch(soap, p, "-tse:EndSearch", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__EndSearch * SOAP_FMAC4 soap_get___tse__EndSearch(struct soap*, struct __tse__EndSearch *, const char*, const char*); - -inline int soap_read___tse__EndSearch(struct soap *soap, struct __tse__EndSearch *p) -{ - if (p) - { ::soap_default___tse__EndSearch(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__EndSearch(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__EndSearch(struct soap *soap, const char *URL, struct __tse__EndSearch *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__EndSearch(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__EndSearch(struct soap *soap, struct __tse__EndSearch *p) -{ - if (::soap_read___tse__EndSearch(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetSearchState_DEFINED -#define SOAP_TYPE___tse__GetSearchState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetSearchState(struct soap*, struct __tse__GetSearchState *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetSearchState(struct soap*, const struct __tse__GetSearchState *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetSearchState(struct soap*, const char*, int, const struct __tse__GetSearchState *, const char*); -SOAP_FMAC3 struct __tse__GetSearchState * SOAP_FMAC4 soap_in___tse__GetSearchState(struct soap*, const char*, struct __tse__GetSearchState *, const char*); -SOAP_FMAC1 struct __tse__GetSearchState * SOAP_FMAC2 soap_instantiate___tse__GetSearchState(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetSearchState * soap_new___tse__GetSearchState(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetSearchState(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetSearchState * soap_new_req___tse__GetSearchState( - struct soap *soap) -{ - struct __tse__GetSearchState *_p = ::soap_new___tse__GetSearchState(soap); - if (_p) - { ::soap_default___tse__GetSearchState(soap, _p); - } - return _p; -} - -inline struct __tse__GetSearchState * soap_new_set___tse__GetSearchState( - struct soap *soap, - _tse__GetSearchState *tse__GetSearchState) -{ - struct __tse__GetSearchState *_p = ::soap_new___tse__GetSearchState(soap); - if (_p) - { ::soap_default___tse__GetSearchState(soap, _p); - _p->tse__GetSearchState = tse__GetSearchState; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetSearchState(struct soap*, const struct __tse__GetSearchState *, const char*, const char*); - -inline int soap_write___tse__GetSearchState(struct soap *soap, struct __tse__GetSearchState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetSearchState(soap, p), 0) || ::soap_put___tse__GetSearchState(soap, p, "-tse:GetSearchState", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetSearchState(struct soap *soap, const char *URL, struct __tse__GetSearchState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetSearchState(soap, p), 0) || ::soap_put___tse__GetSearchState(soap, p, "-tse:GetSearchState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetSearchState(struct soap *soap, const char *URL, struct __tse__GetSearchState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetSearchState(soap, p), 0) || ::soap_put___tse__GetSearchState(soap, p, "-tse:GetSearchState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetSearchState(struct soap *soap, const char *URL, struct __tse__GetSearchState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetSearchState(soap, p), 0) || ::soap_put___tse__GetSearchState(soap, p, "-tse:GetSearchState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetSearchState * SOAP_FMAC4 soap_get___tse__GetSearchState(struct soap*, struct __tse__GetSearchState *, const char*, const char*); - -inline int soap_read___tse__GetSearchState(struct soap *soap, struct __tse__GetSearchState *p) -{ - if (p) - { ::soap_default___tse__GetSearchState(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetSearchState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetSearchState(struct soap *soap, const char *URL, struct __tse__GetSearchState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetSearchState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetSearchState(struct soap *soap, struct __tse__GetSearchState *p) -{ - if (::soap_read___tse__GetSearchState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetPTZPositionSearchResults_DEFINED -#define SOAP_TYPE___tse__GetPTZPositionSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetPTZPositionSearchResults(struct soap*, struct __tse__GetPTZPositionSearchResults *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetPTZPositionSearchResults(struct soap*, const struct __tse__GetPTZPositionSearchResults *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetPTZPositionSearchResults(struct soap*, const char*, int, const struct __tse__GetPTZPositionSearchResults *, const char*); -SOAP_FMAC3 struct __tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_in___tse__GetPTZPositionSearchResults(struct soap*, const char*, struct __tse__GetPTZPositionSearchResults *, const char*); -SOAP_FMAC1 struct __tse__GetPTZPositionSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetPTZPositionSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetPTZPositionSearchResults * soap_new___tse__GetPTZPositionSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetPTZPositionSearchResults(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetPTZPositionSearchResults * soap_new_req___tse__GetPTZPositionSearchResults( - struct soap *soap) -{ - struct __tse__GetPTZPositionSearchResults *_p = ::soap_new___tse__GetPTZPositionSearchResults(soap); - if (_p) - { ::soap_default___tse__GetPTZPositionSearchResults(soap, _p); - } - return _p; -} - -inline struct __tse__GetPTZPositionSearchResults * soap_new_set___tse__GetPTZPositionSearchResults( - struct soap *soap, - _tse__GetPTZPositionSearchResults *tse__GetPTZPositionSearchResults) -{ - struct __tse__GetPTZPositionSearchResults *_p = ::soap_new___tse__GetPTZPositionSearchResults(soap); - if (_p) - { ::soap_default___tse__GetPTZPositionSearchResults(soap, _p); - _p->tse__GetPTZPositionSearchResults = tse__GetPTZPositionSearchResults; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetPTZPositionSearchResults(struct soap*, const struct __tse__GetPTZPositionSearchResults *, const char*, const char*); - -inline int soap_write___tse__GetPTZPositionSearchResults(struct soap *soap, struct __tse__GetPTZPositionSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetPTZPositionSearchResults(soap, p), 0) || ::soap_put___tse__GetPTZPositionSearchResults(soap, p, "-tse:GetPTZPositionSearchResults", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, struct __tse__GetPTZPositionSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetPTZPositionSearchResults(soap, p), 0) || ::soap_put___tse__GetPTZPositionSearchResults(soap, p, "-tse:GetPTZPositionSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, struct __tse__GetPTZPositionSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetPTZPositionSearchResults(soap, p), 0) || ::soap_put___tse__GetPTZPositionSearchResults(soap, p, "-tse:GetPTZPositionSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, struct __tse__GetPTZPositionSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetPTZPositionSearchResults(soap, p), 0) || ::soap_put___tse__GetPTZPositionSearchResults(soap, p, "-tse:GetPTZPositionSearchResults", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetPTZPositionSearchResults * SOAP_FMAC4 soap_get___tse__GetPTZPositionSearchResults(struct soap*, struct __tse__GetPTZPositionSearchResults *, const char*, const char*); - -inline int soap_read___tse__GetPTZPositionSearchResults(struct soap *soap, struct __tse__GetPTZPositionSearchResults *p) -{ - if (p) - { ::soap_default___tse__GetPTZPositionSearchResults(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetPTZPositionSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetPTZPositionSearchResults(struct soap *soap, const char *URL, struct __tse__GetPTZPositionSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetPTZPositionSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetPTZPositionSearchResults(struct soap *soap, struct __tse__GetPTZPositionSearchResults *p) -{ - if (::soap_read___tse__GetPTZPositionSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__FindPTZPosition_DEFINED -#define SOAP_TYPE___tse__FindPTZPosition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindPTZPosition(struct soap*, struct __tse__FindPTZPosition *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindPTZPosition(struct soap*, const struct __tse__FindPTZPosition *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindPTZPosition(struct soap*, const char*, int, const struct __tse__FindPTZPosition *, const char*); -SOAP_FMAC3 struct __tse__FindPTZPosition * SOAP_FMAC4 soap_in___tse__FindPTZPosition(struct soap*, const char*, struct __tse__FindPTZPosition *, const char*); -SOAP_FMAC1 struct __tse__FindPTZPosition * SOAP_FMAC2 soap_instantiate___tse__FindPTZPosition(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__FindPTZPosition * soap_new___tse__FindPTZPosition(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__FindPTZPosition(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__FindPTZPosition * soap_new_req___tse__FindPTZPosition( - struct soap *soap) -{ - struct __tse__FindPTZPosition *_p = ::soap_new___tse__FindPTZPosition(soap); - if (_p) - { ::soap_default___tse__FindPTZPosition(soap, _p); - } - return _p; -} - -inline struct __tse__FindPTZPosition * soap_new_set___tse__FindPTZPosition( - struct soap *soap, - _tse__FindPTZPosition *tse__FindPTZPosition) -{ - struct __tse__FindPTZPosition *_p = ::soap_new___tse__FindPTZPosition(soap); - if (_p) - { ::soap_default___tse__FindPTZPosition(soap, _p); - _p->tse__FindPTZPosition = tse__FindPTZPosition; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindPTZPosition(struct soap*, const struct __tse__FindPTZPosition *, const char*, const char*); - -inline int soap_write___tse__FindPTZPosition(struct soap *soap, struct __tse__FindPTZPosition const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__FindPTZPosition(soap, p), 0) || ::soap_put___tse__FindPTZPosition(soap, p, "-tse:FindPTZPosition", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__FindPTZPosition(struct soap *soap, const char *URL, struct __tse__FindPTZPosition const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindPTZPosition(soap, p), 0) || ::soap_put___tse__FindPTZPosition(soap, p, "-tse:FindPTZPosition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__FindPTZPosition(struct soap *soap, const char *URL, struct __tse__FindPTZPosition const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindPTZPosition(soap, p), 0) || ::soap_put___tse__FindPTZPosition(soap, p, "-tse:FindPTZPosition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__FindPTZPosition(struct soap *soap, const char *URL, struct __tse__FindPTZPosition const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindPTZPosition(soap, p), 0) || ::soap_put___tse__FindPTZPosition(soap, p, "-tse:FindPTZPosition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__FindPTZPosition * SOAP_FMAC4 soap_get___tse__FindPTZPosition(struct soap*, struct __tse__FindPTZPosition *, const char*, const char*); - -inline int soap_read___tse__FindPTZPosition(struct soap *soap, struct __tse__FindPTZPosition *p) -{ - if (p) - { ::soap_default___tse__FindPTZPosition(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__FindPTZPosition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__FindPTZPosition(struct soap *soap, const char *URL, struct __tse__FindPTZPosition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__FindPTZPosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__FindPTZPosition(struct soap *soap, struct __tse__FindPTZPosition *p) -{ - if (::soap_read___tse__FindPTZPosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetEventSearchResults_DEFINED -#define SOAP_TYPE___tse__GetEventSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetEventSearchResults(struct soap*, struct __tse__GetEventSearchResults *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetEventSearchResults(struct soap*, const struct __tse__GetEventSearchResults *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetEventSearchResults(struct soap*, const char*, int, const struct __tse__GetEventSearchResults *, const char*); -SOAP_FMAC3 struct __tse__GetEventSearchResults * SOAP_FMAC4 soap_in___tse__GetEventSearchResults(struct soap*, const char*, struct __tse__GetEventSearchResults *, const char*); -SOAP_FMAC1 struct __tse__GetEventSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetEventSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetEventSearchResults * soap_new___tse__GetEventSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetEventSearchResults(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetEventSearchResults * soap_new_req___tse__GetEventSearchResults( - struct soap *soap) -{ - struct __tse__GetEventSearchResults *_p = ::soap_new___tse__GetEventSearchResults(soap); - if (_p) - { ::soap_default___tse__GetEventSearchResults(soap, _p); - } - return _p; -} - -inline struct __tse__GetEventSearchResults * soap_new_set___tse__GetEventSearchResults( - struct soap *soap, - _tse__GetEventSearchResults *tse__GetEventSearchResults) -{ - struct __tse__GetEventSearchResults *_p = ::soap_new___tse__GetEventSearchResults(soap); - if (_p) - { ::soap_default___tse__GetEventSearchResults(soap, _p); - _p->tse__GetEventSearchResults = tse__GetEventSearchResults; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetEventSearchResults(struct soap*, const struct __tse__GetEventSearchResults *, const char*, const char*); - -inline int soap_write___tse__GetEventSearchResults(struct soap *soap, struct __tse__GetEventSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetEventSearchResults(soap, p), 0) || ::soap_put___tse__GetEventSearchResults(soap, p, "-tse:GetEventSearchResults", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetEventSearchResults(struct soap *soap, const char *URL, struct __tse__GetEventSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetEventSearchResults(soap, p), 0) || ::soap_put___tse__GetEventSearchResults(soap, p, "-tse:GetEventSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetEventSearchResults(struct soap *soap, const char *URL, struct __tse__GetEventSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetEventSearchResults(soap, p), 0) || ::soap_put___tse__GetEventSearchResults(soap, p, "-tse:GetEventSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetEventSearchResults(struct soap *soap, const char *URL, struct __tse__GetEventSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetEventSearchResults(soap, p), 0) || ::soap_put___tse__GetEventSearchResults(soap, p, "-tse:GetEventSearchResults", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetEventSearchResults * SOAP_FMAC4 soap_get___tse__GetEventSearchResults(struct soap*, struct __tse__GetEventSearchResults *, const char*, const char*); - -inline int soap_read___tse__GetEventSearchResults(struct soap *soap, struct __tse__GetEventSearchResults *p) -{ - if (p) - { ::soap_default___tse__GetEventSearchResults(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetEventSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetEventSearchResults(struct soap *soap, const char *URL, struct __tse__GetEventSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetEventSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetEventSearchResults(struct soap *soap, struct __tse__GetEventSearchResults *p) -{ - if (::soap_read___tse__GetEventSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__FindEvents_DEFINED -#define SOAP_TYPE___tse__FindEvents_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindEvents(struct soap*, struct __tse__FindEvents *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindEvents(struct soap*, const struct __tse__FindEvents *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindEvents(struct soap*, const char*, int, const struct __tse__FindEvents *, const char*); -SOAP_FMAC3 struct __tse__FindEvents * SOAP_FMAC4 soap_in___tse__FindEvents(struct soap*, const char*, struct __tse__FindEvents *, const char*); -SOAP_FMAC1 struct __tse__FindEvents * SOAP_FMAC2 soap_instantiate___tse__FindEvents(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__FindEvents * soap_new___tse__FindEvents(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__FindEvents(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__FindEvents * soap_new_req___tse__FindEvents( - struct soap *soap) -{ - struct __tse__FindEvents *_p = ::soap_new___tse__FindEvents(soap); - if (_p) - { ::soap_default___tse__FindEvents(soap, _p); - } - return _p; -} - -inline struct __tse__FindEvents * soap_new_set___tse__FindEvents( - struct soap *soap, - _tse__FindEvents *tse__FindEvents) -{ - struct __tse__FindEvents *_p = ::soap_new___tse__FindEvents(soap); - if (_p) - { ::soap_default___tse__FindEvents(soap, _p); - _p->tse__FindEvents = tse__FindEvents; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindEvents(struct soap*, const struct __tse__FindEvents *, const char*, const char*); - -inline int soap_write___tse__FindEvents(struct soap *soap, struct __tse__FindEvents const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__FindEvents(soap, p), 0) || ::soap_put___tse__FindEvents(soap, p, "-tse:FindEvents", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__FindEvents(struct soap *soap, const char *URL, struct __tse__FindEvents const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindEvents(soap, p), 0) || ::soap_put___tse__FindEvents(soap, p, "-tse:FindEvents", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__FindEvents(struct soap *soap, const char *URL, struct __tse__FindEvents const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindEvents(soap, p), 0) || ::soap_put___tse__FindEvents(soap, p, "-tse:FindEvents", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__FindEvents(struct soap *soap, const char *URL, struct __tse__FindEvents const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindEvents(soap, p), 0) || ::soap_put___tse__FindEvents(soap, p, "-tse:FindEvents", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__FindEvents * SOAP_FMAC4 soap_get___tse__FindEvents(struct soap*, struct __tse__FindEvents *, const char*, const char*); - -inline int soap_read___tse__FindEvents(struct soap *soap, struct __tse__FindEvents *p) -{ - if (p) - { ::soap_default___tse__FindEvents(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__FindEvents(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__FindEvents(struct soap *soap, const char *URL, struct __tse__FindEvents *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__FindEvents(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__FindEvents(struct soap *soap, struct __tse__FindEvents *p) -{ - if (::soap_read___tse__FindEvents(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetRecordingSearchResults_DEFINED -#define SOAP_TYPE___tse__GetRecordingSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetRecordingSearchResults(struct soap*, struct __tse__GetRecordingSearchResults *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetRecordingSearchResults(struct soap*, const struct __tse__GetRecordingSearchResults *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetRecordingSearchResults(struct soap*, const char*, int, const struct __tse__GetRecordingSearchResults *, const char*); -SOAP_FMAC3 struct __tse__GetRecordingSearchResults * SOAP_FMAC4 soap_in___tse__GetRecordingSearchResults(struct soap*, const char*, struct __tse__GetRecordingSearchResults *, const char*); -SOAP_FMAC1 struct __tse__GetRecordingSearchResults * SOAP_FMAC2 soap_instantiate___tse__GetRecordingSearchResults(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetRecordingSearchResults * soap_new___tse__GetRecordingSearchResults(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetRecordingSearchResults(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetRecordingSearchResults * soap_new_req___tse__GetRecordingSearchResults( - struct soap *soap) -{ - struct __tse__GetRecordingSearchResults *_p = ::soap_new___tse__GetRecordingSearchResults(soap); - if (_p) - { ::soap_default___tse__GetRecordingSearchResults(soap, _p); - } - return _p; -} - -inline struct __tse__GetRecordingSearchResults * soap_new_set___tse__GetRecordingSearchResults( - struct soap *soap, - _tse__GetRecordingSearchResults *tse__GetRecordingSearchResults) -{ - struct __tse__GetRecordingSearchResults *_p = ::soap_new___tse__GetRecordingSearchResults(soap); - if (_p) - { ::soap_default___tse__GetRecordingSearchResults(soap, _p); - _p->tse__GetRecordingSearchResults = tse__GetRecordingSearchResults; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetRecordingSearchResults(struct soap*, const struct __tse__GetRecordingSearchResults *, const char*, const char*); - -inline int soap_write___tse__GetRecordingSearchResults(struct soap *soap, struct __tse__GetRecordingSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetRecordingSearchResults(soap, p), 0) || ::soap_put___tse__GetRecordingSearchResults(soap, p, "-tse:GetRecordingSearchResults", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetRecordingSearchResults(struct soap *soap, const char *URL, struct __tse__GetRecordingSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingSearchResults(soap, p), 0) || ::soap_put___tse__GetRecordingSearchResults(soap, p, "-tse:GetRecordingSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetRecordingSearchResults(struct soap *soap, const char *URL, struct __tse__GetRecordingSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingSearchResults(soap, p), 0) || ::soap_put___tse__GetRecordingSearchResults(soap, p, "-tse:GetRecordingSearchResults", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetRecordingSearchResults(struct soap *soap, const char *URL, struct __tse__GetRecordingSearchResults const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingSearchResults(soap, p), 0) || ::soap_put___tse__GetRecordingSearchResults(soap, p, "-tse:GetRecordingSearchResults", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetRecordingSearchResults * SOAP_FMAC4 soap_get___tse__GetRecordingSearchResults(struct soap*, struct __tse__GetRecordingSearchResults *, const char*, const char*); - -inline int soap_read___tse__GetRecordingSearchResults(struct soap *soap, struct __tse__GetRecordingSearchResults *p) -{ - if (p) - { ::soap_default___tse__GetRecordingSearchResults(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetRecordingSearchResults(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetRecordingSearchResults(struct soap *soap, const char *URL, struct __tse__GetRecordingSearchResults *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetRecordingSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetRecordingSearchResults(struct soap *soap, struct __tse__GetRecordingSearchResults *p) -{ - if (::soap_read___tse__GetRecordingSearchResults(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__FindRecordings_DEFINED -#define SOAP_TYPE___tse__FindRecordings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__FindRecordings(struct soap*, struct __tse__FindRecordings *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__FindRecordings(struct soap*, const struct __tse__FindRecordings *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__FindRecordings(struct soap*, const char*, int, const struct __tse__FindRecordings *, const char*); -SOAP_FMAC3 struct __tse__FindRecordings * SOAP_FMAC4 soap_in___tse__FindRecordings(struct soap*, const char*, struct __tse__FindRecordings *, const char*); -SOAP_FMAC1 struct __tse__FindRecordings * SOAP_FMAC2 soap_instantiate___tse__FindRecordings(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__FindRecordings * soap_new___tse__FindRecordings(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__FindRecordings(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__FindRecordings * soap_new_req___tse__FindRecordings( - struct soap *soap) -{ - struct __tse__FindRecordings *_p = ::soap_new___tse__FindRecordings(soap); - if (_p) - { ::soap_default___tse__FindRecordings(soap, _p); - } - return _p; -} - -inline struct __tse__FindRecordings * soap_new_set___tse__FindRecordings( - struct soap *soap, - _tse__FindRecordings *tse__FindRecordings) -{ - struct __tse__FindRecordings *_p = ::soap_new___tse__FindRecordings(soap); - if (_p) - { ::soap_default___tse__FindRecordings(soap, _p); - _p->tse__FindRecordings = tse__FindRecordings; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__FindRecordings(struct soap*, const struct __tse__FindRecordings *, const char*, const char*); - -inline int soap_write___tse__FindRecordings(struct soap *soap, struct __tse__FindRecordings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__FindRecordings(soap, p), 0) || ::soap_put___tse__FindRecordings(soap, p, "-tse:FindRecordings", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__FindRecordings(struct soap *soap, const char *URL, struct __tse__FindRecordings const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindRecordings(soap, p), 0) || ::soap_put___tse__FindRecordings(soap, p, "-tse:FindRecordings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__FindRecordings(struct soap *soap, const char *URL, struct __tse__FindRecordings const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindRecordings(soap, p), 0) || ::soap_put___tse__FindRecordings(soap, p, "-tse:FindRecordings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__FindRecordings(struct soap *soap, const char *URL, struct __tse__FindRecordings const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__FindRecordings(soap, p), 0) || ::soap_put___tse__FindRecordings(soap, p, "-tse:FindRecordings", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__FindRecordings * SOAP_FMAC4 soap_get___tse__FindRecordings(struct soap*, struct __tse__FindRecordings *, const char*, const char*); - -inline int soap_read___tse__FindRecordings(struct soap *soap, struct __tse__FindRecordings *p) -{ - if (p) - { ::soap_default___tse__FindRecordings(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__FindRecordings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__FindRecordings(struct soap *soap, const char *URL, struct __tse__FindRecordings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__FindRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__FindRecordings(struct soap *soap, struct __tse__FindRecordings *p) -{ - if (::soap_read___tse__FindRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetMediaAttributes_DEFINED -#define SOAP_TYPE___tse__GetMediaAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetMediaAttributes(struct soap*, struct __tse__GetMediaAttributes *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetMediaAttributes(struct soap*, const struct __tse__GetMediaAttributes *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetMediaAttributes(struct soap*, const char*, int, const struct __tse__GetMediaAttributes *, const char*); -SOAP_FMAC3 struct __tse__GetMediaAttributes * SOAP_FMAC4 soap_in___tse__GetMediaAttributes(struct soap*, const char*, struct __tse__GetMediaAttributes *, const char*); -SOAP_FMAC1 struct __tse__GetMediaAttributes * SOAP_FMAC2 soap_instantiate___tse__GetMediaAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetMediaAttributes * soap_new___tse__GetMediaAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetMediaAttributes(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetMediaAttributes * soap_new_req___tse__GetMediaAttributes( - struct soap *soap) -{ - struct __tse__GetMediaAttributes *_p = ::soap_new___tse__GetMediaAttributes(soap); - if (_p) - { ::soap_default___tse__GetMediaAttributes(soap, _p); - } - return _p; -} - -inline struct __tse__GetMediaAttributes * soap_new_set___tse__GetMediaAttributes( - struct soap *soap, - _tse__GetMediaAttributes *tse__GetMediaAttributes) -{ - struct __tse__GetMediaAttributes *_p = ::soap_new___tse__GetMediaAttributes(soap); - if (_p) - { ::soap_default___tse__GetMediaAttributes(soap, _p); - _p->tse__GetMediaAttributes = tse__GetMediaAttributes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetMediaAttributes(struct soap*, const struct __tse__GetMediaAttributes *, const char*, const char*); - -inline int soap_write___tse__GetMediaAttributes(struct soap *soap, struct __tse__GetMediaAttributes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetMediaAttributes(soap, p), 0) || ::soap_put___tse__GetMediaAttributes(soap, p, "-tse:GetMediaAttributes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetMediaAttributes(struct soap *soap, const char *URL, struct __tse__GetMediaAttributes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetMediaAttributes(soap, p), 0) || ::soap_put___tse__GetMediaAttributes(soap, p, "-tse:GetMediaAttributes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetMediaAttributes(struct soap *soap, const char *URL, struct __tse__GetMediaAttributes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetMediaAttributes(soap, p), 0) || ::soap_put___tse__GetMediaAttributes(soap, p, "-tse:GetMediaAttributes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetMediaAttributes(struct soap *soap, const char *URL, struct __tse__GetMediaAttributes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetMediaAttributes(soap, p), 0) || ::soap_put___tse__GetMediaAttributes(soap, p, "-tse:GetMediaAttributes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetMediaAttributes * SOAP_FMAC4 soap_get___tse__GetMediaAttributes(struct soap*, struct __tse__GetMediaAttributes *, const char*, const char*); - -inline int soap_read___tse__GetMediaAttributes(struct soap *soap, struct __tse__GetMediaAttributes *p) -{ - if (p) - { ::soap_default___tse__GetMediaAttributes(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetMediaAttributes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetMediaAttributes(struct soap *soap, const char *URL, struct __tse__GetMediaAttributes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetMediaAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetMediaAttributes(struct soap *soap, struct __tse__GetMediaAttributes *p) -{ - if (::soap_read___tse__GetMediaAttributes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetRecordingInformation_DEFINED -#define SOAP_TYPE___tse__GetRecordingInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetRecordingInformation(struct soap*, struct __tse__GetRecordingInformation *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetRecordingInformation(struct soap*, const struct __tse__GetRecordingInformation *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetRecordingInformation(struct soap*, const char*, int, const struct __tse__GetRecordingInformation *, const char*); -SOAP_FMAC3 struct __tse__GetRecordingInformation * SOAP_FMAC4 soap_in___tse__GetRecordingInformation(struct soap*, const char*, struct __tse__GetRecordingInformation *, const char*); -SOAP_FMAC1 struct __tse__GetRecordingInformation * SOAP_FMAC2 soap_instantiate___tse__GetRecordingInformation(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetRecordingInformation * soap_new___tse__GetRecordingInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetRecordingInformation(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetRecordingInformation * soap_new_req___tse__GetRecordingInformation( - struct soap *soap) -{ - struct __tse__GetRecordingInformation *_p = ::soap_new___tse__GetRecordingInformation(soap); - if (_p) - { ::soap_default___tse__GetRecordingInformation(soap, _p); - } - return _p; -} - -inline struct __tse__GetRecordingInformation * soap_new_set___tse__GetRecordingInformation( - struct soap *soap, - _tse__GetRecordingInformation *tse__GetRecordingInformation) -{ - struct __tse__GetRecordingInformation *_p = ::soap_new___tse__GetRecordingInformation(soap); - if (_p) - { ::soap_default___tse__GetRecordingInformation(soap, _p); - _p->tse__GetRecordingInformation = tse__GetRecordingInformation; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetRecordingInformation(struct soap*, const struct __tse__GetRecordingInformation *, const char*, const char*); - -inline int soap_write___tse__GetRecordingInformation(struct soap *soap, struct __tse__GetRecordingInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetRecordingInformation(soap, p), 0) || ::soap_put___tse__GetRecordingInformation(soap, p, "-tse:GetRecordingInformation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetRecordingInformation(struct soap *soap, const char *URL, struct __tse__GetRecordingInformation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingInformation(soap, p), 0) || ::soap_put___tse__GetRecordingInformation(soap, p, "-tse:GetRecordingInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetRecordingInformation(struct soap *soap, const char *URL, struct __tse__GetRecordingInformation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingInformation(soap, p), 0) || ::soap_put___tse__GetRecordingInformation(soap, p, "-tse:GetRecordingInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetRecordingInformation(struct soap *soap, const char *URL, struct __tse__GetRecordingInformation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingInformation(soap, p), 0) || ::soap_put___tse__GetRecordingInformation(soap, p, "-tse:GetRecordingInformation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetRecordingInformation * SOAP_FMAC4 soap_get___tse__GetRecordingInformation(struct soap*, struct __tse__GetRecordingInformation *, const char*, const char*); - -inline int soap_read___tse__GetRecordingInformation(struct soap *soap, struct __tse__GetRecordingInformation *p) -{ - if (p) - { ::soap_default___tse__GetRecordingInformation(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetRecordingInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetRecordingInformation(struct soap *soap, const char *URL, struct __tse__GetRecordingInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetRecordingInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetRecordingInformation(struct soap *soap, struct __tse__GetRecordingInformation *p) -{ - if (::soap_read___tse__GetRecordingInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetRecordingSummary_DEFINED -#define SOAP_TYPE___tse__GetRecordingSummary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetRecordingSummary(struct soap*, struct __tse__GetRecordingSummary *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetRecordingSummary(struct soap*, const struct __tse__GetRecordingSummary *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetRecordingSummary(struct soap*, const char*, int, const struct __tse__GetRecordingSummary *, const char*); -SOAP_FMAC3 struct __tse__GetRecordingSummary * SOAP_FMAC4 soap_in___tse__GetRecordingSummary(struct soap*, const char*, struct __tse__GetRecordingSummary *, const char*); -SOAP_FMAC1 struct __tse__GetRecordingSummary * SOAP_FMAC2 soap_instantiate___tse__GetRecordingSummary(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetRecordingSummary * soap_new___tse__GetRecordingSummary(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetRecordingSummary(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetRecordingSummary * soap_new_req___tse__GetRecordingSummary( - struct soap *soap) -{ - struct __tse__GetRecordingSummary *_p = ::soap_new___tse__GetRecordingSummary(soap); - if (_p) - { ::soap_default___tse__GetRecordingSummary(soap, _p); - } - return _p; -} - -inline struct __tse__GetRecordingSummary * soap_new_set___tse__GetRecordingSummary( - struct soap *soap, - _tse__GetRecordingSummary *tse__GetRecordingSummary) -{ - struct __tse__GetRecordingSummary *_p = ::soap_new___tse__GetRecordingSummary(soap); - if (_p) - { ::soap_default___tse__GetRecordingSummary(soap, _p); - _p->tse__GetRecordingSummary = tse__GetRecordingSummary; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetRecordingSummary(struct soap*, const struct __tse__GetRecordingSummary *, const char*, const char*); - -inline int soap_write___tse__GetRecordingSummary(struct soap *soap, struct __tse__GetRecordingSummary const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetRecordingSummary(soap, p), 0) || ::soap_put___tse__GetRecordingSummary(soap, p, "-tse:GetRecordingSummary", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetRecordingSummary(struct soap *soap, const char *URL, struct __tse__GetRecordingSummary const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingSummary(soap, p), 0) || ::soap_put___tse__GetRecordingSummary(soap, p, "-tse:GetRecordingSummary", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetRecordingSummary(struct soap *soap, const char *URL, struct __tse__GetRecordingSummary const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingSummary(soap, p), 0) || ::soap_put___tse__GetRecordingSummary(soap, p, "-tse:GetRecordingSummary", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetRecordingSummary(struct soap *soap, const char *URL, struct __tse__GetRecordingSummary const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetRecordingSummary(soap, p), 0) || ::soap_put___tse__GetRecordingSummary(soap, p, "-tse:GetRecordingSummary", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetRecordingSummary * SOAP_FMAC4 soap_get___tse__GetRecordingSummary(struct soap*, struct __tse__GetRecordingSummary *, const char*, const char*); - -inline int soap_read___tse__GetRecordingSummary(struct soap *soap, struct __tse__GetRecordingSummary *p) -{ - if (p) - { ::soap_default___tse__GetRecordingSummary(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetRecordingSummary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetRecordingSummary(struct soap *soap, const char *URL, struct __tse__GetRecordingSummary *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetRecordingSummary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetRecordingSummary(struct soap *soap, struct __tse__GetRecordingSummary *p) -{ - if (::soap_read___tse__GetRecordingSummary(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tse__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___tse__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tse__GetServiceCapabilities(struct soap*, struct __tse__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tse__GetServiceCapabilities(struct soap*, const struct __tse__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tse__GetServiceCapabilities(struct soap*, const char*, int, const struct __tse__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __tse__GetServiceCapabilities * SOAP_FMAC4 soap_in___tse__GetServiceCapabilities(struct soap*, const char*, struct __tse__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __tse__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tse__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tse__GetServiceCapabilities * soap_new___tse__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___tse__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __tse__GetServiceCapabilities * soap_new_req___tse__GetServiceCapabilities( - struct soap *soap) -{ - struct __tse__GetServiceCapabilities *_p = ::soap_new___tse__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tse__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __tse__GetServiceCapabilities * soap_new_set___tse__GetServiceCapabilities( - struct soap *soap, - _tse__GetServiceCapabilities *tse__GetServiceCapabilities) -{ - struct __tse__GetServiceCapabilities *_p = ::soap_new___tse__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tse__GetServiceCapabilities(soap, _p); - _p->tse__GetServiceCapabilities = tse__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tse__GetServiceCapabilities(struct soap*, const struct __tse__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___tse__GetServiceCapabilities(struct soap *soap, struct __tse__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tse__GetServiceCapabilities(soap, p), 0) || ::soap_put___tse__GetServiceCapabilities(soap, p, "-tse:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tse__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tse__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetServiceCapabilities(soap, p), 0) || ::soap_put___tse__GetServiceCapabilities(soap, p, "-tse:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tse__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tse__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetServiceCapabilities(soap, p), 0) || ::soap_put___tse__GetServiceCapabilities(soap, p, "-tse:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tse__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tse__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tse__GetServiceCapabilities(soap, p), 0) || ::soap_put___tse__GetServiceCapabilities(soap, p, "-tse:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tse__GetServiceCapabilities * SOAP_FMAC4 soap_get___tse__GetServiceCapabilities(struct soap*, struct __tse__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___tse__GetServiceCapabilities(struct soap *soap, struct __tse__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___tse__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tse__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tse__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tse__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tse__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tse__GetServiceCapabilities(struct soap *soap, struct __tse__GetServiceCapabilities *p) -{ - if (::soap_read___tse__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__GetReceiverState_DEFINED -#define SOAP_TYPE___trv__GetReceiverState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetReceiverState(struct soap*, struct __trv__GetReceiverState *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetReceiverState(struct soap*, const struct __trv__GetReceiverState *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetReceiverState(struct soap*, const char*, int, const struct __trv__GetReceiverState *, const char*); -SOAP_FMAC3 struct __trv__GetReceiverState * SOAP_FMAC4 soap_in___trv__GetReceiverState(struct soap*, const char*, struct __trv__GetReceiverState *, const char*); -SOAP_FMAC1 struct __trv__GetReceiverState * SOAP_FMAC2 soap_instantiate___trv__GetReceiverState(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__GetReceiverState * soap_new___trv__GetReceiverState(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__GetReceiverState(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__GetReceiverState * soap_new_req___trv__GetReceiverState( - struct soap *soap) -{ - struct __trv__GetReceiverState *_p = ::soap_new___trv__GetReceiverState(soap); - if (_p) - { ::soap_default___trv__GetReceiverState(soap, _p); - } - return _p; -} - -inline struct __trv__GetReceiverState * soap_new_set___trv__GetReceiverState( - struct soap *soap, - _trv__GetReceiverState *trv__GetReceiverState) -{ - struct __trv__GetReceiverState *_p = ::soap_new___trv__GetReceiverState(soap); - if (_p) - { ::soap_default___trv__GetReceiverState(soap, _p); - _p->trv__GetReceiverState = trv__GetReceiverState; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetReceiverState(struct soap*, const struct __trv__GetReceiverState *, const char*, const char*); - -inline int soap_write___trv__GetReceiverState(struct soap *soap, struct __trv__GetReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__GetReceiverState(soap, p), 0) || ::soap_put___trv__GetReceiverState(soap, p, "-trv:GetReceiverState", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__GetReceiverState(struct soap *soap, const char *URL, struct __trv__GetReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceiverState(soap, p), 0) || ::soap_put___trv__GetReceiverState(soap, p, "-trv:GetReceiverState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__GetReceiverState(struct soap *soap, const char *URL, struct __trv__GetReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceiverState(soap, p), 0) || ::soap_put___trv__GetReceiverState(soap, p, "-trv:GetReceiverState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__GetReceiverState(struct soap *soap, const char *URL, struct __trv__GetReceiverState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceiverState(soap, p), 0) || ::soap_put___trv__GetReceiverState(soap, p, "-trv:GetReceiverState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__GetReceiverState * SOAP_FMAC4 soap_get___trv__GetReceiverState(struct soap*, struct __trv__GetReceiverState *, const char*, const char*); - -inline int soap_read___trv__GetReceiverState(struct soap *soap, struct __trv__GetReceiverState *p) -{ - if (p) - { ::soap_default___trv__GetReceiverState(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__GetReceiverState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__GetReceiverState(struct soap *soap, const char *URL, struct __trv__GetReceiverState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__GetReceiverState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__GetReceiverState(struct soap *soap, struct __trv__GetReceiverState *p) -{ - if (::soap_read___trv__GetReceiverState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__SetReceiverMode_DEFINED -#define SOAP_TYPE___trv__SetReceiverMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__SetReceiverMode(struct soap*, struct __trv__SetReceiverMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__SetReceiverMode(struct soap*, const struct __trv__SetReceiverMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__SetReceiverMode(struct soap*, const char*, int, const struct __trv__SetReceiverMode *, const char*); -SOAP_FMAC3 struct __trv__SetReceiverMode * SOAP_FMAC4 soap_in___trv__SetReceiverMode(struct soap*, const char*, struct __trv__SetReceiverMode *, const char*); -SOAP_FMAC1 struct __trv__SetReceiverMode * SOAP_FMAC2 soap_instantiate___trv__SetReceiverMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__SetReceiverMode * soap_new___trv__SetReceiverMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__SetReceiverMode(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__SetReceiverMode * soap_new_req___trv__SetReceiverMode( - struct soap *soap) -{ - struct __trv__SetReceiverMode *_p = ::soap_new___trv__SetReceiverMode(soap); - if (_p) - { ::soap_default___trv__SetReceiverMode(soap, _p); - } - return _p; -} - -inline struct __trv__SetReceiverMode * soap_new_set___trv__SetReceiverMode( - struct soap *soap, - _trv__SetReceiverMode *trv__SetReceiverMode) -{ - struct __trv__SetReceiverMode *_p = ::soap_new___trv__SetReceiverMode(soap); - if (_p) - { ::soap_default___trv__SetReceiverMode(soap, _p); - _p->trv__SetReceiverMode = trv__SetReceiverMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__SetReceiverMode(struct soap*, const struct __trv__SetReceiverMode *, const char*, const char*); - -inline int soap_write___trv__SetReceiverMode(struct soap *soap, struct __trv__SetReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__SetReceiverMode(soap, p), 0) || ::soap_put___trv__SetReceiverMode(soap, p, "-trv:SetReceiverMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__SetReceiverMode(struct soap *soap, const char *URL, struct __trv__SetReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__SetReceiverMode(soap, p), 0) || ::soap_put___trv__SetReceiverMode(soap, p, "-trv:SetReceiverMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__SetReceiverMode(struct soap *soap, const char *URL, struct __trv__SetReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__SetReceiverMode(soap, p), 0) || ::soap_put___trv__SetReceiverMode(soap, p, "-trv:SetReceiverMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__SetReceiverMode(struct soap *soap, const char *URL, struct __trv__SetReceiverMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__SetReceiverMode(soap, p), 0) || ::soap_put___trv__SetReceiverMode(soap, p, "-trv:SetReceiverMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__SetReceiverMode * SOAP_FMAC4 soap_get___trv__SetReceiverMode(struct soap*, struct __trv__SetReceiverMode *, const char*, const char*); - -inline int soap_read___trv__SetReceiverMode(struct soap *soap, struct __trv__SetReceiverMode *p) -{ - if (p) - { ::soap_default___trv__SetReceiverMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__SetReceiverMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__SetReceiverMode(struct soap *soap, const char *URL, struct __trv__SetReceiverMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__SetReceiverMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__SetReceiverMode(struct soap *soap, struct __trv__SetReceiverMode *p) -{ - if (::soap_read___trv__SetReceiverMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__ConfigureReceiver_DEFINED -#define SOAP_TYPE___trv__ConfigureReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__ConfigureReceiver(struct soap*, struct __trv__ConfigureReceiver *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__ConfigureReceiver(struct soap*, const struct __trv__ConfigureReceiver *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__ConfigureReceiver(struct soap*, const char*, int, const struct __trv__ConfigureReceiver *, const char*); -SOAP_FMAC3 struct __trv__ConfigureReceiver * SOAP_FMAC4 soap_in___trv__ConfigureReceiver(struct soap*, const char*, struct __trv__ConfigureReceiver *, const char*); -SOAP_FMAC1 struct __trv__ConfigureReceiver * SOAP_FMAC2 soap_instantiate___trv__ConfigureReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__ConfigureReceiver * soap_new___trv__ConfigureReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__ConfigureReceiver(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__ConfigureReceiver * soap_new_req___trv__ConfigureReceiver( - struct soap *soap) -{ - struct __trv__ConfigureReceiver *_p = ::soap_new___trv__ConfigureReceiver(soap); - if (_p) - { ::soap_default___trv__ConfigureReceiver(soap, _p); - } - return _p; -} - -inline struct __trv__ConfigureReceiver * soap_new_set___trv__ConfigureReceiver( - struct soap *soap, - _trv__ConfigureReceiver *trv__ConfigureReceiver) -{ - struct __trv__ConfigureReceiver *_p = ::soap_new___trv__ConfigureReceiver(soap); - if (_p) - { ::soap_default___trv__ConfigureReceiver(soap, _p); - _p->trv__ConfigureReceiver = trv__ConfigureReceiver; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__ConfigureReceiver(struct soap*, const struct __trv__ConfigureReceiver *, const char*, const char*); - -inline int soap_write___trv__ConfigureReceiver(struct soap *soap, struct __trv__ConfigureReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__ConfigureReceiver(soap, p), 0) || ::soap_put___trv__ConfigureReceiver(soap, p, "-trv:ConfigureReceiver", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__ConfigureReceiver(struct soap *soap, const char *URL, struct __trv__ConfigureReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__ConfigureReceiver(soap, p), 0) || ::soap_put___trv__ConfigureReceiver(soap, p, "-trv:ConfigureReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__ConfigureReceiver(struct soap *soap, const char *URL, struct __trv__ConfigureReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__ConfigureReceiver(soap, p), 0) || ::soap_put___trv__ConfigureReceiver(soap, p, "-trv:ConfigureReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__ConfigureReceiver(struct soap *soap, const char *URL, struct __trv__ConfigureReceiver const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__ConfigureReceiver(soap, p), 0) || ::soap_put___trv__ConfigureReceiver(soap, p, "-trv:ConfigureReceiver", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__ConfigureReceiver * SOAP_FMAC4 soap_get___trv__ConfigureReceiver(struct soap*, struct __trv__ConfigureReceiver *, const char*, const char*); - -inline int soap_read___trv__ConfigureReceiver(struct soap *soap, struct __trv__ConfigureReceiver *p) -{ - if (p) - { ::soap_default___trv__ConfigureReceiver(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__ConfigureReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__ConfigureReceiver(struct soap *soap, const char *URL, struct __trv__ConfigureReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__ConfigureReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__ConfigureReceiver(struct soap *soap, struct __trv__ConfigureReceiver *p) -{ - if (::soap_read___trv__ConfigureReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__DeleteReceiver_DEFINED -#define SOAP_TYPE___trv__DeleteReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__DeleteReceiver(struct soap*, struct __trv__DeleteReceiver *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__DeleteReceiver(struct soap*, const struct __trv__DeleteReceiver *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__DeleteReceiver(struct soap*, const char*, int, const struct __trv__DeleteReceiver *, const char*); -SOAP_FMAC3 struct __trv__DeleteReceiver * SOAP_FMAC4 soap_in___trv__DeleteReceiver(struct soap*, const char*, struct __trv__DeleteReceiver *, const char*); -SOAP_FMAC1 struct __trv__DeleteReceiver * SOAP_FMAC2 soap_instantiate___trv__DeleteReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__DeleteReceiver * soap_new___trv__DeleteReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__DeleteReceiver(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__DeleteReceiver * soap_new_req___trv__DeleteReceiver( - struct soap *soap) -{ - struct __trv__DeleteReceiver *_p = ::soap_new___trv__DeleteReceiver(soap); - if (_p) - { ::soap_default___trv__DeleteReceiver(soap, _p); - } - return _p; -} - -inline struct __trv__DeleteReceiver * soap_new_set___trv__DeleteReceiver( - struct soap *soap, - _trv__DeleteReceiver *trv__DeleteReceiver) -{ - struct __trv__DeleteReceiver *_p = ::soap_new___trv__DeleteReceiver(soap); - if (_p) - { ::soap_default___trv__DeleteReceiver(soap, _p); - _p->trv__DeleteReceiver = trv__DeleteReceiver; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__DeleteReceiver(struct soap*, const struct __trv__DeleteReceiver *, const char*, const char*); - -inline int soap_write___trv__DeleteReceiver(struct soap *soap, struct __trv__DeleteReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__DeleteReceiver(soap, p), 0) || ::soap_put___trv__DeleteReceiver(soap, p, "-trv:DeleteReceiver", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__DeleteReceiver(struct soap *soap, const char *URL, struct __trv__DeleteReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__DeleteReceiver(soap, p), 0) || ::soap_put___trv__DeleteReceiver(soap, p, "-trv:DeleteReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__DeleteReceiver(struct soap *soap, const char *URL, struct __trv__DeleteReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__DeleteReceiver(soap, p), 0) || ::soap_put___trv__DeleteReceiver(soap, p, "-trv:DeleteReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__DeleteReceiver(struct soap *soap, const char *URL, struct __trv__DeleteReceiver const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__DeleteReceiver(soap, p), 0) || ::soap_put___trv__DeleteReceiver(soap, p, "-trv:DeleteReceiver", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__DeleteReceiver * SOAP_FMAC4 soap_get___trv__DeleteReceiver(struct soap*, struct __trv__DeleteReceiver *, const char*, const char*); - -inline int soap_read___trv__DeleteReceiver(struct soap *soap, struct __trv__DeleteReceiver *p) -{ - if (p) - { ::soap_default___trv__DeleteReceiver(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__DeleteReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__DeleteReceiver(struct soap *soap, const char *URL, struct __trv__DeleteReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__DeleteReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__DeleteReceiver(struct soap *soap, struct __trv__DeleteReceiver *p) -{ - if (::soap_read___trv__DeleteReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__CreateReceiver_DEFINED -#define SOAP_TYPE___trv__CreateReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__CreateReceiver(struct soap*, struct __trv__CreateReceiver *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__CreateReceiver(struct soap*, const struct __trv__CreateReceiver *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__CreateReceiver(struct soap*, const char*, int, const struct __trv__CreateReceiver *, const char*); -SOAP_FMAC3 struct __trv__CreateReceiver * SOAP_FMAC4 soap_in___trv__CreateReceiver(struct soap*, const char*, struct __trv__CreateReceiver *, const char*); -SOAP_FMAC1 struct __trv__CreateReceiver * SOAP_FMAC2 soap_instantiate___trv__CreateReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__CreateReceiver * soap_new___trv__CreateReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__CreateReceiver(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__CreateReceiver * soap_new_req___trv__CreateReceiver( - struct soap *soap) -{ - struct __trv__CreateReceiver *_p = ::soap_new___trv__CreateReceiver(soap); - if (_p) - { ::soap_default___trv__CreateReceiver(soap, _p); - } - return _p; -} - -inline struct __trv__CreateReceiver * soap_new_set___trv__CreateReceiver( - struct soap *soap, - _trv__CreateReceiver *trv__CreateReceiver) -{ - struct __trv__CreateReceiver *_p = ::soap_new___trv__CreateReceiver(soap); - if (_p) - { ::soap_default___trv__CreateReceiver(soap, _p); - _p->trv__CreateReceiver = trv__CreateReceiver; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__CreateReceiver(struct soap*, const struct __trv__CreateReceiver *, const char*, const char*); - -inline int soap_write___trv__CreateReceiver(struct soap *soap, struct __trv__CreateReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__CreateReceiver(soap, p), 0) || ::soap_put___trv__CreateReceiver(soap, p, "-trv:CreateReceiver", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__CreateReceiver(struct soap *soap, const char *URL, struct __trv__CreateReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__CreateReceiver(soap, p), 0) || ::soap_put___trv__CreateReceiver(soap, p, "-trv:CreateReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__CreateReceiver(struct soap *soap, const char *URL, struct __trv__CreateReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__CreateReceiver(soap, p), 0) || ::soap_put___trv__CreateReceiver(soap, p, "-trv:CreateReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__CreateReceiver(struct soap *soap, const char *URL, struct __trv__CreateReceiver const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__CreateReceiver(soap, p), 0) || ::soap_put___trv__CreateReceiver(soap, p, "-trv:CreateReceiver", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__CreateReceiver * SOAP_FMAC4 soap_get___trv__CreateReceiver(struct soap*, struct __trv__CreateReceiver *, const char*, const char*); - -inline int soap_read___trv__CreateReceiver(struct soap *soap, struct __trv__CreateReceiver *p) -{ - if (p) - { ::soap_default___trv__CreateReceiver(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__CreateReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__CreateReceiver(struct soap *soap, const char *URL, struct __trv__CreateReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__CreateReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__CreateReceiver(struct soap *soap, struct __trv__CreateReceiver *p) -{ - if (::soap_read___trv__CreateReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__GetReceiver_DEFINED -#define SOAP_TYPE___trv__GetReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetReceiver(struct soap*, struct __trv__GetReceiver *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetReceiver(struct soap*, const struct __trv__GetReceiver *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetReceiver(struct soap*, const char*, int, const struct __trv__GetReceiver *, const char*); -SOAP_FMAC3 struct __trv__GetReceiver * SOAP_FMAC4 soap_in___trv__GetReceiver(struct soap*, const char*, struct __trv__GetReceiver *, const char*); -SOAP_FMAC1 struct __trv__GetReceiver * SOAP_FMAC2 soap_instantiate___trv__GetReceiver(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__GetReceiver * soap_new___trv__GetReceiver(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__GetReceiver(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__GetReceiver * soap_new_req___trv__GetReceiver( - struct soap *soap) -{ - struct __trv__GetReceiver *_p = ::soap_new___trv__GetReceiver(soap); - if (_p) - { ::soap_default___trv__GetReceiver(soap, _p); - } - return _p; -} - -inline struct __trv__GetReceiver * soap_new_set___trv__GetReceiver( - struct soap *soap, - _trv__GetReceiver *trv__GetReceiver) -{ - struct __trv__GetReceiver *_p = ::soap_new___trv__GetReceiver(soap); - if (_p) - { ::soap_default___trv__GetReceiver(soap, _p); - _p->trv__GetReceiver = trv__GetReceiver; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetReceiver(struct soap*, const struct __trv__GetReceiver *, const char*, const char*); - -inline int soap_write___trv__GetReceiver(struct soap *soap, struct __trv__GetReceiver const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__GetReceiver(soap, p), 0) || ::soap_put___trv__GetReceiver(soap, p, "-trv:GetReceiver", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__GetReceiver(struct soap *soap, const char *URL, struct __trv__GetReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceiver(soap, p), 0) || ::soap_put___trv__GetReceiver(soap, p, "-trv:GetReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__GetReceiver(struct soap *soap, const char *URL, struct __trv__GetReceiver const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceiver(soap, p), 0) || ::soap_put___trv__GetReceiver(soap, p, "-trv:GetReceiver", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__GetReceiver(struct soap *soap, const char *URL, struct __trv__GetReceiver const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceiver(soap, p), 0) || ::soap_put___trv__GetReceiver(soap, p, "-trv:GetReceiver", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__GetReceiver * SOAP_FMAC4 soap_get___trv__GetReceiver(struct soap*, struct __trv__GetReceiver *, const char*, const char*); - -inline int soap_read___trv__GetReceiver(struct soap *soap, struct __trv__GetReceiver *p) -{ - if (p) - { ::soap_default___trv__GetReceiver(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__GetReceiver(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__GetReceiver(struct soap *soap, const char *URL, struct __trv__GetReceiver *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__GetReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__GetReceiver(struct soap *soap, struct __trv__GetReceiver *p) -{ - if (::soap_read___trv__GetReceiver(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__GetReceivers_DEFINED -#define SOAP_TYPE___trv__GetReceivers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetReceivers(struct soap*, struct __trv__GetReceivers *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetReceivers(struct soap*, const struct __trv__GetReceivers *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetReceivers(struct soap*, const char*, int, const struct __trv__GetReceivers *, const char*); -SOAP_FMAC3 struct __trv__GetReceivers * SOAP_FMAC4 soap_in___trv__GetReceivers(struct soap*, const char*, struct __trv__GetReceivers *, const char*); -SOAP_FMAC1 struct __trv__GetReceivers * SOAP_FMAC2 soap_instantiate___trv__GetReceivers(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__GetReceivers * soap_new___trv__GetReceivers(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__GetReceivers(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__GetReceivers * soap_new_req___trv__GetReceivers( - struct soap *soap) -{ - struct __trv__GetReceivers *_p = ::soap_new___trv__GetReceivers(soap); - if (_p) - { ::soap_default___trv__GetReceivers(soap, _p); - } - return _p; -} - -inline struct __trv__GetReceivers * soap_new_set___trv__GetReceivers( - struct soap *soap, - _trv__GetReceivers *trv__GetReceivers) -{ - struct __trv__GetReceivers *_p = ::soap_new___trv__GetReceivers(soap); - if (_p) - { ::soap_default___trv__GetReceivers(soap, _p); - _p->trv__GetReceivers = trv__GetReceivers; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetReceivers(struct soap*, const struct __trv__GetReceivers *, const char*, const char*); - -inline int soap_write___trv__GetReceivers(struct soap *soap, struct __trv__GetReceivers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__GetReceivers(soap, p), 0) || ::soap_put___trv__GetReceivers(soap, p, "-trv:GetReceivers", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__GetReceivers(struct soap *soap, const char *URL, struct __trv__GetReceivers const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceivers(soap, p), 0) || ::soap_put___trv__GetReceivers(soap, p, "-trv:GetReceivers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__GetReceivers(struct soap *soap, const char *URL, struct __trv__GetReceivers const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceivers(soap, p), 0) || ::soap_put___trv__GetReceivers(soap, p, "-trv:GetReceivers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__GetReceivers(struct soap *soap, const char *URL, struct __trv__GetReceivers const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetReceivers(soap, p), 0) || ::soap_put___trv__GetReceivers(soap, p, "-trv:GetReceivers", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__GetReceivers * SOAP_FMAC4 soap_get___trv__GetReceivers(struct soap*, struct __trv__GetReceivers *, const char*, const char*); - -inline int soap_read___trv__GetReceivers(struct soap *soap, struct __trv__GetReceivers *p) -{ - if (p) - { ::soap_default___trv__GetReceivers(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__GetReceivers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__GetReceivers(struct soap *soap, const char *URL, struct __trv__GetReceivers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__GetReceivers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__GetReceivers(struct soap *soap, struct __trv__GetReceivers *p) -{ - if (::soap_read___trv__GetReceivers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trv__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___trv__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trv__GetServiceCapabilities(struct soap*, struct __trv__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trv__GetServiceCapabilities(struct soap*, const struct __trv__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trv__GetServiceCapabilities(struct soap*, const char*, int, const struct __trv__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __trv__GetServiceCapabilities * SOAP_FMAC4 soap_in___trv__GetServiceCapabilities(struct soap*, const char*, struct __trv__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __trv__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trv__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trv__GetServiceCapabilities * soap_new___trv__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___trv__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __trv__GetServiceCapabilities * soap_new_req___trv__GetServiceCapabilities( - struct soap *soap) -{ - struct __trv__GetServiceCapabilities *_p = ::soap_new___trv__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trv__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __trv__GetServiceCapabilities * soap_new_set___trv__GetServiceCapabilities( - struct soap *soap, - _trv__GetServiceCapabilities *trv__GetServiceCapabilities) -{ - struct __trv__GetServiceCapabilities *_p = ::soap_new___trv__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trv__GetServiceCapabilities(soap, _p); - _p->trv__GetServiceCapabilities = trv__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trv__GetServiceCapabilities(struct soap*, const struct __trv__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___trv__GetServiceCapabilities(struct soap *soap, struct __trv__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trv__GetServiceCapabilities(soap, p), 0) || ::soap_put___trv__GetServiceCapabilities(soap, p, "-trv:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trv__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trv__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetServiceCapabilities(soap, p), 0) || ::soap_put___trv__GetServiceCapabilities(soap, p, "-trv:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trv__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trv__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetServiceCapabilities(soap, p), 0) || ::soap_put___trv__GetServiceCapabilities(soap, p, "-trv:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trv__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trv__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trv__GetServiceCapabilities(soap, p), 0) || ::soap_put___trv__GetServiceCapabilities(soap, p, "-trv:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trv__GetServiceCapabilities * SOAP_FMAC4 soap_get___trv__GetServiceCapabilities(struct soap*, struct __trv__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___trv__GetServiceCapabilities(struct soap *soap, struct __trv__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___trv__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trv__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trv__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trv__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trv__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trv__GetServiceCapabilities(struct soap *soap, struct __trv__GetServiceCapabilities *p) -{ - if (::soap_read___trv__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__DeleteOSD_DEFINED -#define SOAP_TYPE___trt__DeleteOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__DeleteOSD(struct soap*, struct __trt__DeleteOSD *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__DeleteOSD(struct soap*, const struct __trt__DeleteOSD *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__DeleteOSD(struct soap*, const char*, int, const struct __trt__DeleteOSD *, const char*); -SOAP_FMAC3 struct __trt__DeleteOSD * SOAP_FMAC4 soap_in___trt__DeleteOSD(struct soap*, const char*, struct __trt__DeleteOSD *, const char*); -SOAP_FMAC1 struct __trt__DeleteOSD * SOAP_FMAC2 soap_instantiate___trt__DeleteOSD(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__DeleteOSD * soap_new___trt__DeleteOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__DeleteOSD(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__DeleteOSD * soap_new_req___trt__DeleteOSD( - struct soap *soap) -{ - struct __trt__DeleteOSD *_p = ::soap_new___trt__DeleteOSD(soap); - if (_p) - { ::soap_default___trt__DeleteOSD(soap, _p); - } - return _p; -} - -inline struct __trt__DeleteOSD * soap_new_set___trt__DeleteOSD( - struct soap *soap, - _trt__DeleteOSD *trt__DeleteOSD) -{ - struct __trt__DeleteOSD *_p = ::soap_new___trt__DeleteOSD(soap); - if (_p) - { ::soap_default___trt__DeleteOSD(soap, _p); - _p->trt__DeleteOSD = trt__DeleteOSD; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__DeleteOSD(struct soap*, const struct __trt__DeleteOSD *, const char*, const char*); - -inline int soap_write___trt__DeleteOSD(struct soap *soap, struct __trt__DeleteOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__DeleteOSD(soap, p), 0) || ::soap_put___trt__DeleteOSD(soap, p, "-trt:DeleteOSD", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__DeleteOSD(struct soap *soap, const char *URL, struct __trt__DeleteOSD const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__DeleteOSD(soap, p), 0) || ::soap_put___trt__DeleteOSD(soap, p, "-trt:DeleteOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__DeleteOSD(struct soap *soap, const char *URL, struct __trt__DeleteOSD const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__DeleteOSD(soap, p), 0) || ::soap_put___trt__DeleteOSD(soap, p, "-trt:DeleteOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__DeleteOSD(struct soap *soap, const char *URL, struct __trt__DeleteOSD const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__DeleteOSD(soap, p), 0) || ::soap_put___trt__DeleteOSD(soap, p, "-trt:DeleteOSD", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__DeleteOSD * SOAP_FMAC4 soap_get___trt__DeleteOSD(struct soap*, struct __trt__DeleteOSD *, const char*, const char*); - -inline int soap_read___trt__DeleteOSD(struct soap *soap, struct __trt__DeleteOSD *p) -{ - if (p) - { ::soap_default___trt__DeleteOSD(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__DeleteOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__DeleteOSD(struct soap *soap, const char *URL, struct __trt__DeleteOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__DeleteOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__DeleteOSD(struct soap *soap, struct __trt__DeleteOSD *p) -{ - if (::soap_read___trt__DeleteOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__CreateOSD_DEFINED -#define SOAP_TYPE___trt__CreateOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__CreateOSD(struct soap*, struct __trt__CreateOSD *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__CreateOSD(struct soap*, const struct __trt__CreateOSD *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__CreateOSD(struct soap*, const char*, int, const struct __trt__CreateOSD *, const char*); -SOAP_FMAC3 struct __trt__CreateOSD * SOAP_FMAC4 soap_in___trt__CreateOSD(struct soap*, const char*, struct __trt__CreateOSD *, const char*); -SOAP_FMAC1 struct __trt__CreateOSD * SOAP_FMAC2 soap_instantiate___trt__CreateOSD(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__CreateOSD * soap_new___trt__CreateOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__CreateOSD(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__CreateOSD * soap_new_req___trt__CreateOSD( - struct soap *soap) -{ - struct __trt__CreateOSD *_p = ::soap_new___trt__CreateOSD(soap); - if (_p) - { ::soap_default___trt__CreateOSD(soap, _p); - } - return _p; -} - -inline struct __trt__CreateOSD * soap_new_set___trt__CreateOSD( - struct soap *soap, - _trt__CreateOSD *trt__CreateOSD) -{ - struct __trt__CreateOSD *_p = ::soap_new___trt__CreateOSD(soap); - if (_p) - { ::soap_default___trt__CreateOSD(soap, _p); - _p->trt__CreateOSD = trt__CreateOSD; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__CreateOSD(struct soap*, const struct __trt__CreateOSD *, const char*, const char*); - -inline int soap_write___trt__CreateOSD(struct soap *soap, struct __trt__CreateOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__CreateOSD(soap, p), 0) || ::soap_put___trt__CreateOSD(soap, p, "-trt:CreateOSD", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__CreateOSD(struct soap *soap, const char *URL, struct __trt__CreateOSD const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__CreateOSD(soap, p), 0) || ::soap_put___trt__CreateOSD(soap, p, "-trt:CreateOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__CreateOSD(struct soap *soap, const char *URL, struct __trt__CreateOSD const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__CreateOSD(soap, p), 0) || ::soap_put___trt__CreateOSD(soap, p, "-trt:CreateOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__CreateOSD(struct soap *soap, const char *URL, struct __trt__CreateOSD const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__CreateOSD(soap, p), 0) || ::soap_put___trt__CreateOSD(soap, p, "-trt:CreateOSD", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__CreateOSD * SOAP_FMAC4 soap_get___trt__CreateOSD(struct soap*, struct __trt__CreateOSD *, const char*, const char*); - -inline int soap_read___trt__CreateOSD(struct soap *soap, struct __trt__CreateOSD *p) -{ - if (p) - { ::soap_default___trt__CreateOSD(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__CreateOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__CreateOSD(struct soap *soap, const char *URL, struct __trt__CreateOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__CreateOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__CreateOSD(struct soap *soap, struct __trt__CreateOSD *p) -{ - if (::soap_read___trt__CreateOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetOSD_DEFINED -#define SOAP_TYPE___trt__SetOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetOSD(struct soap*, struct __trt__SetOSD *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetOSD(struct soap*, const struct __trt__SetOSD *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetOSD(struct soap*, const char*, int, const struct __trt__SetOSD *, const char*); -SOAP_FMAC3 struct __trt__SetOSD * SOAP_FMAC4 soap_in___trt__SetOSD(struct soap*, const char*, struct __trt__SetOSD *, const char*); -SOAP_FMAC1 struct __trt__SetOSD * SOAP_FMAC2 soap_instantiate___trt__SetOSD(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetOSD * soap_new___trt__SetOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetOSD(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetOSD * soap_new_req___trt__SetOSD( - struct soap *soap) -{ - struct __trt__SetOSD *_p = ::soap_new___trt__SetOSD(soap); - if (_p) - { ::soap_default___trt__SetOSD(soap, _p); - } - return _p; -} - -inline struct __trt__SetOSD * soap_new_set___trt__SetOSD( - struct soap *soap, - _trt__SetOSD *trt__SetOSD) -{ - struct __trt__SetOSD *_p = ::soap_new___trt__SetOSD(soap); - if (_p) - { ::soap_default___trt__SetOSD(soap, _p); - _p->trt__SetOSD = trt__SetOSD; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetOSD(struct soap*, const struct __trt__SetOSD *, const char*, const char*); - -inline int soap_write___trt__SetOSD(struct soap *soap, struct __trt__SetOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetOSD(soap, p), 0) || ::soap_put___trt__SetOSD(soap, p, "-trt:SetOSD", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetOSD(struct soap *soap, const char *URL, struct __trt__SetOSD const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetOSD(soap, p), 0) || ::soap_put___trt__SetOSD(soap, p, "-trt:SetOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetOSD(struct soap *soap, const char *URL, struct __trt__SetOSD const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetOSD(soap, p), 0) || ::soap_put___trt__SetOSD(soap, p, "-trt:SetOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetOSD(struct soap *soap, const char *URL, struct __trt__SetOSD const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetOSD(soap, p), 0) || ::soap_put___trt__SetOSD(soap, p, "-trt:SetOSD", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetOSD * SOAP_FMAC4 soap_get___trt__SetOSD(struct soap*, struct __trt__SetOSD *, const char*, const char*); - -inline int soap_read___trt__SetOSD(struct soap *soap, struct __trt__SetOSD *p) -{ - if (p) - { ::soap_default___trt__SetOSD(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetOSD(struct soap *soap, const char *URL, struct __trt__SetOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetOSD(struct soap *soap, struct __trt__SetOSD *p) -{ - if (::soap_read___trt__SetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetOSDOptions_DEFINED -#define SOAP_TYPE___trt__GetOSDOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetOSDOptions(struct soap*, struct __trt__GetOSDOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetOSDOptions(struct soap*, const struct __trt__GetOSDOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetOSDOptions(struct soap*, const char*, int, const struct __trt__GetOSDOptions *, const char*); -SOAP_FMAC3 struct __trt__GetOSDOptions * SOAP_FMAC4 soap_in___trt__GetOSDOptions(struct soap*, const char*, struct __trt__GetOSDOptions *, const char*); -SOAP_FMAC1 struct __trt__GetOSDOptions * SOAP_FMAC2 soap_instantiate___trt__GetOSDOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetOSDOptions * soap_new___trt__GetOSDOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetOSDOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetOSDOptions * soap_new_req___trt__GetOSDOptions( - struct soap *soap) -{ - struct __trt__GetOSDOptions *_p = ::soap_new___trt__GetOSDOptions(soap); - if (_p) - { ::soap_default___trt__GetOSDOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetOSDOptions * soap_new_set___trt__GetOSDOptions( - struct soap *soap, - _trt__GetOSDOptions *trt__GetOSDOptions) -{ - struct __trt__GetOSDOptions *_p = ::soap_new___trt__GetOSDOptions(soap); - if (_p) - { ::soap_default___trt__GetOSDOptions(soap, _p); - _p->trt__GetOSDOptions = trt__GetOSDOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetOSDOptions(struct soap*, const struct __trt__GetOSDOptions *, const char*, const char*); - -inline int soap_write___trt__GetOSDOptions(struct soap *soap, struct __trt__GetOSDOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetOSDOptions(soap, p), 0) || ::soap_put___trt__GetOSDOptions(soap, p, "-trt:GetOSDOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetOSDOptions(struct soap *soap, const char *URL, struct __trt__GetOSDOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSDOptions(soap, p), 0) || ::soap_put___trt__GetOSDOptions(soap, p, "-trt:GetOSDOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetOSDOptions(struct soap *soap, const char *URL, struct __trt__GetOSDOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSDOptions(soap, p), 0) || ::soap_put___trt__GetOSDOptions(soap, p, "-trt:GetOSDOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetOSDOptions(struct soap *soap, const char *URL, struct __trt__GetOSDOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSDOptions(soap, p), 0) || ::soap_put___trt__GetOSDOptions(soap, p, "-trt:GetOSDOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetOSDOptions * SOAP_FMAC4 soap_get___trt__GetOSDOptions(struct soap*, struct __trt__GetOSDOptions *, const char*, const char*); - -inline int soap_read___trt__GetOSDOptions(struct soap *soap, struct __trt__GetOSDOptions *p) -{ - if (p) - { ::soap_default___trt__GetOSDOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetOSDOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetOSDOptions(struct soap *soap, const char *URL, struct __trt__GetOSDOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetOSDOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetOSDOptions(struct soap *soap, struct __trt__GetOSDOptions *p) -{ - if (::soap_read___trt__GetOSDOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetOSD_DEFINED -#define SOAP_TYPE___trt__GetOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetOSD(struct soap*, struct __trt__GetOSD *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetOSD(struct soap*, const struct __trt__GetOSD *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetOSD(struct soap*, const char*, int, const struct __trt__GetOSD *, const char*); -SOAP_FMAC3 struct __trt__GetOSD * SOAP_FMAC4 soap_in___trt__GetOSD(struct soap*, const char*, struct __trt__GetOSD *, const char*); -SOAP_FMAC1 struct __trt__GetOSD * SOAP_FMAC2 soap_instantiate___trt__GetOSD(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetOSD * soap_new___trt__GetOSD(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetOSD(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetOSD * soap_new_req___trt__GetOSD( - struct soap *soap) -{ - struct __trt__GetOSD *_p = ::soap_new___trt__GetOSD(soap); - if (_p) - { ::soap_default___trt__GetOSD(soap, _p); - } - return _p; -} - -inline struct __trt__GetOSD * soap_new_set___trt__GetOSD( - struct soap *soap, - _trt__GetOSD *trt__GetOSD) -{ - struct __trt__GetOSD *_p = ::soap_new___trt__GetOSD(soap); - if (_p) - { ::soap_default___trt__GetOSD(soap, _p); - _p->trt__GetOSD = trt__GetOSD; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetOSD(struct soap*, const struct __trt__GetOSD *, const char*, const char*); - -inline int soap_write___trt__GetOSD(struct soap *soap, struct __trt__GetOSD const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetOSD(soap, p), 0) || ::soap_put___trt__GetOSD(soap, p, "-trt:GetOSD", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetOSD(struct soap *soap, const char *URL, struct __trt__GetOSD const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSD(soap, p), 0) || ::soap_put___trt__GetOSD(soap, p, "-trt:GetOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetOSD(struct soap *soap, const char *URL, struct __trt__GetOSD const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSD(soap, p), 0) || ::soap_put___trt__GetOSD(soap, p, "-trt:GetOSD", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetOSD(struct soap *soap, const char *URL, struct __trt__GetOSD const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSD(soap, p), 0) || ::soap_put___trt__GetOSD(soap, p, "-trt:GetOSD", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetOSD * SOAP_FMAC4 soap_get___trt__GetOSD(struct soap*, struct __trt__GetOSD *, const char*, const char*); - -inline int soap_read___trt__GetOSD(struct soap *soap, struct __trt__GetOSD *p) -{ - if (p) - { ::soap_default___trt__GetOSD(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetOSD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetOSD(struct soap *soap, const char *URL, struct __trt__GetOSD *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetOSD(struct soap *soap, struct __trt__GetOSD *p) -{ - if (::soap_read___trt__GetOSD(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetOSDs_DEFINED -#define SOAP_TYPE___trt__GetOSDs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetOSDs(struct soap*, struct __trt__GetOSDs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetOSDs(struct soap*, const struct __trt__GetOSDs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetOSDs(struct soap*, const char*, int, const struct __trt__GetOSDs *, const char*); -SOAP_FMAC3 struct __trt__GetOSDs * SOAP_FMAC4 soap_in___trt__GetOSDs(struct soap*, const char*, struct __trt__GetOSDs *, const char*); -SOAP_FMAC1 struct __trt__GetOSDs * SOAP_FMAC2 soap_instantiate___trt__GetOSDs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetOSDs * soap_new___trt__GetOSDs(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetOSDs(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetOSDs * soap_new_req___trt__GetOSDs( - struct soap *soap) -{ - struct __trt__GetOSDs *_p = ::soap_new___trt__GetOSDs(soap); - if (_p) - { ::soap_default___trt__GetOSDs(soap, _p); - } - return _p; -} - -inline struct __trt__GetOSDs * soap_new_set___trt__GetOSDs( - struct soap *soap, - _trt__GetOSDs *trt__GetOSDs) -{ - struct __trt__GetOSDs *_p = ::soap_new___trt__GetOSDs(soap); - if (_p) - { ::soap_default___trt__GetOSDs(soap, _p); - _p->trt__GetOSDs = trt__GetOSDs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetOSDs(struct soap*, const struct __trt__GetOSDs *, const char*, const char*); - -inline int soap_write___trt__GetOSDs(struct soap *soap, struct __trt__GetOSDs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetOSDs(soap, p), 0) || ::soap_put___trt__GetOSDs(soap, p, "-trt:GetOSDs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetOSDs(struct soap *soap, const char *URL, struct __trt__GetOSDs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSDs(soap, p), 0) || ::soap_put___trt__GetOSDs(soap, p, "-trt:GetOSDs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetOSDs(struct soap *soap, const char *URL, struct __trt__GetOSDs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSDs(soap, p), 0) || ::soap_put___trt__GetOSDs(soap, p, "-trt:GetOSDs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetOSDs(struct soap *soap, const char *URL, struct __trt__GetOSDs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetOSDs(soap, p), 0) || ::soap_put___trt__GetOSDs(soap, p, "-trt:GetOSDs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetOSDs * SOAP_FMAC4 soap_get___trt__GetOSDs(struct soap*, struct __trt__GetOSDs *, const char*, const char*); - -inline int soap_read___trt__GetOSDs(struct soap *soap, struct __trt__GetOSDs *p) -{ - if (p) - { ::soap_default___trt__GetOSDs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetOSDs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetOSDs(struct soap *soap, const char *URL, struct __trt__GetOSDs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetOSDs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetOSDs(struct soap *soap, struct __trt__GetOSDs *p) -{ - if (::soap_read___trt__GetOSDs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetVideoSourceMode_DEFINED -#define SOAP_TYPE___trt__SetVideoSourceMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoSourceMode(struct soap*, struct __trt__SetVideoSourceMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoSourceMode(struct soap*, const struct __trt__SetVideoSourceMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoSourceMode(struct soap*, const char*, int, const struct __trt__SetVideoSourceMode *, const char*); -SOAP_FMAC3 struct __trt__SetVideoSourceMode * SOAP_FMAC4 soap_in___trt__SetVideoSourceMode(struct soap*, const char*, struct __trt__SetVideoSourceMode *, const char*); -SOAP_FMAC1 struct __trt__SetVideoSourceMode * SOAP_FMAC2 soap_instantiate___trt__SetVideoSourceMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetVideoSourceMode * soap_new___trt__SetVideoSourceMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetVideoSourceMode(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetVideoSourceMode * soap_new_req___trt__SetVideoSourceMode( - struct soap *soap) -{ - struct __trt__SetVideoSourceMode *_p = ::soap_new___trt__SetVideoSourceMode(soap); - if (_p) - { ::soap_default___trt__SetVideoSourceMode(soap, _p); - } - return _p; -} - -inline struct __trt__SetVideoSourceMode * soap_new_set___trt__SetVideoSourceMode( - struct soap *soap, - _trt__SetVideoSourceMode *trt__SetVideoSourceMode) -{ - struct __trt__SetVideoSourceMode *_p = ::soap_new___trt__SetVideoSourceMode(soap); - if (_p) - { ::soap_default___trt__SetVideoSourceMode(soap, _p); - _p->trt__SetVideoSourceMode = trt__SetVideoSourceMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoSourceMode(struct soap*, const struct __trt__SetVideoSourceMode *, const char*, const char*); - -inline int soap_write___trt__SetVideoSourceMode(struct soap *soap, struct __trt__SetVideoSourceMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetVideoSourceMode(soap, p), 0) || ::soap_put___trt__SetVideoSourceMode(soap, p, "-trt:SetVideoSourceMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetVideoSourceMode(struct soap *soap, const char *URL, struct __trt__SetVideoSourceMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoSourceMode(soap, p), 0) || ::soap_put___trt__SetVideoSourceMode(soap, p, "-trt:SetVideoSourceMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetVideoSourceMode(struct soap *soap, const char *URL, struct __trt__SetVideoSourceMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoSourceMode(soap, p), 0) || ::soap_put___trt__SetVideoSourceMode(soap, p, "-trt:SetVideoSourceMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetVideoSourceMode(struct soap *soap, const char *URL, struct __trt__SetVideoSourceMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoSourceMode(soap, p), 0) || ::soap_put___trt__SetVideoSourceMode(soap, p, "-trt:SetVideoSourceMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetVideoSourceMode * SOAP_FMAC4 soap_get___trt__SetVideoSourceMode(struct soap*, struct __trt__SetVideoSourceMode *, const char*, const char*); - -inline int soap_read___trt__SetVideoSourceMode(struct soap *soap, struct __trt__SetVideoSourceMode *p) -{ - if (p) - { ::soap_default___trt__SetVideoSourceMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetVideoSourceMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetVideoSourceMode(struct soap *soap, const char *URL, struct __trt__SetVideoSourceMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetVideoSourceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetVideoSourceMode(struct soap *soap, struct __trt__SetVideoSourceMode *p) -{ - if (::soap_read___trt__SetVideoSourceMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoSourceModes_DEFINED -#define SOAP_TYPE___trt__GetVideoSourceModes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceModes(struct soap*, struct __trt__GetVideoSourceModes *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceModes(struct soap*, const struct __trt__GetVideoSourceModes *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceModes(struct soap*, const char*, int, const struct __trt__GetVideoSourceModes *, const char*); -SOAP_FMAC3 struct __trt__GetVideoSourceModes * SOAP_FMAC4 soap_in___trt__GetVideoSourceModes(struct soap*, const char*, struct __trt__GetVideoSourceModes *, const char*); -SOAP_FMAC1 struct __trt__GetVideoSourceModes * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceModes(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoSourceModes * soap_new___trt__GetVideoSourceModes(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoSourceModes(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoSourceModes * soap_new_req___trt__GetVideoSourceModes( - struct soap *soap) -{ - struct __trt__GetVideoSourceModes *_p = ::soap_new___trt__GetVideoSourceModes(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceModes(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoSourceModes * soap_new_set___trt__GetVideoSourceModes( - struct soap *soap, - _trt__GetVideoSourceModes *trt__GetVideoSourceModes) -{ - struct __trt__GetVideoSourceModes *_p = ::soap_new___trt__GetVideoSourceModes(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceModes(soap, _p); - _p->trt__GetVideoSourceModes = trt__GetVideoSourceModes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceModes(struct soap*, const struct __trt__GetVideoSourceModes *, const char*, const char*); - -inline int soap_write___trt__GetVideoSourceModes(struct soap *soap, struct __trt__GetVideoSourceModes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoSourceModes(soap, p), 0) || ::soap_put___trt__GetVideoSourceModes(soap, p, "-trt:GetVideoSourceModes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoSourceModes(struct soap *soap, const char *URL, struct __trt__GetVideoSourceModes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceModes(soap, p), 0) || ::soap_put___trt__GetVideoSourceModes(soap, p, "-trt:GetVideoSourceModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoSourceModes(struct soap *soap, const char *URL, struct __trt__GetVideoSourceModes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceModes(soap, p), 0) || ::soap_put___trt__GetVideoSourceModes(soap, p, "-trt:GetVideoSourceModes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoSourceModes(struct soap *soap, const char *URL, struct __trt__GetVideoSourceModes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceModes(soap, p), 0) || ::soap_put___trt__GetVideoSourceModes(soap, p, "-trt:GetVideoSourceModes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoSourceModes * SOAP_FMAC4 soap_get___trt__GetVideoSourceModes(struct soap*, struct __trt__GetVideoSourceModes *, const char*, const char*); - -inline int soap_read___trt__GetVideoSourceModes(struct soap *soap, struct __trt__GetVideoSourceModes *p) -{ - if (p) - { ::soap_default___trt__GetVideoSourceModes(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoSourceModes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoSourceModes(struct soap *soap, const char *URL, struct __trt__GetVideoSourceModes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoSourceModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoSourceModes(struct soap *soap, struct __trt__GetVideoSourceModes *p) -{ - if (::soap_read___trt__GetVideoSourceModes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetSnapshotUri_DEFINED -#define SOAP_TYPE___trt__GetSnapshotUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetSnapshotUri(struct soap*, struct __trt__GetSnapshotUri *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetSnapshotUri(struct soap*, const struct __trt__GetSnapshotUri *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetSnapshotUri(struct soap*, const char*, int, const struct __trt__GetSnapshotUri *, const char*); -SOAP_FMAC3 struct __trt__GetSnapshotUri * SOAP_FMAC4 soap_in___trt__GetSnapshotUri(struct soap*, const char*, struct __trt__GetSnapshotUri *, const char*); -SOAP_FMAC1 struct __trt__GetSnapshotUri * SOAP_FMAC2 soap_instantiate___trt__GetSnapshotUri(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetSnapshotUri * soap_new___trt__GetSnapshotUri(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetSnapshotUri(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetSnapshotUri * soap_new_req___trt__GetSnapshotUri( - struct soap *soap) -{ - struct __trt__GetSnapshotUri *_p = ::soap_new___trt__GetSnapshotUri(soap); - if (_p) - { ::soap_default___trt__GetSnapshotUri(soap, _p); - } - return _p; -} - -inline struct __trt__GetSnapshotUri * soap_new_set___trt__GetSnapshotUri( - struct soap *soap, - _trt__GetSnapshotUri *trt__GetSnapshotUri) -{ - struct __trt__GetSnapshotUri *_p = ::soap_new___trt__GetSnapshotUri(soap); - if (_p) - { ::soap_default___trt__GetSnapshotUri(soap, _p); - _p->trt__GetSnapshotUri = trt__GetSnapshotUri; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetSnapshotUri(struct soap*, const struct __trt__GetSnapshotUri *, const char*, const char*); - -inline int soap_write___trt__GetSnapshotUri(struct soap *soap, struct __trt__GetSnapshotUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetSnapshotUri(soap, p), 0) || ::soap_put___trt__GetSnapshotUri(soap, p, "-trt:GetSnapshotUri", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetSnapshotUri(struct soap *soap, const char *URL, struct __trt__GetSnapshotUri const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetSnapshotUri(soap, p), 0) || ::soap_put___trt__GetSnapshotUri(soap, p, "-trt:GetSnapshotUri", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetSnapshotUri(struct soap *soap, const char *URL, struct __trt__GetSnapshotUri const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetSnapshotUri(soap, p), 0) || ::soap_put___trt__GetSnapshotUri(soap, p, "-trt:GetSnapshotUri", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetSnapshotUri(struct soap *soap, const char *URL, struct __trt__GetSnapshotUri const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetSnapshotUri(soap, p), 0) || ::soap_put___trt__GetSnapshotUri(soap, p, "-trt:GetSnapshotUri", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetSnapshotUri * SOAP_FMAC4 soap_get___trt__GetSnapshotUri(struct soap*, struct __trt__GetSnapshotUri *, const char*, const char*); - -inline int soap_read___trt__GetSnapshotUri(struct soap *soap, struct __trt__GetSnapshotUri *p) -{ - if (p) - { ::soap_default___trt__GetSnapshotUri(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetSnapshotUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetSnapshotUri(struct soap *soap, const char *URL, struct __trt__GetSnapshotUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetSnapshotUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetSnapshotUri(struct soap *soap, struct __trt__GetSnapshotUri *p) -{ - if (::soap_read___trt__GetSnapshotUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetSynchronizationPoint_DEFINED -#define SOAP_TYPE___trt__SetSynchronizationPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetSynchronizationPoint(struct soap*, struct __trt__SetSynchronizationPoint *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetSynchronizationPoint(struct soap*, const struct __trt__SetSynchronizationPoint *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetSynchronizationPoint(struct soap*, const char*, int, const struct __trt__SetSynchronizationPoint *, const char*); -SOAP_FMAC3 struct __trt__SetSynchronizationPoint * SOAP_FMAC4 soap_in___trt__SetSynchronizationPoint(struct soap*, const char*, struct __trt__SetSynchronizationPoint *, const char*); -SOAP_FMAC1 struct __trt__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate___trt__SetSynchronizationPoint(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetSynchronizationPoint * soap_new___trt__SetSynchronizationPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetSynchronizationPoint(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetSynchronizationPoint * soap_new_req___trt__SetSynchronizationPoint( - struct soap *soap) -{ - struct __trt__SetSynchronizationPoint *_p = ::soap_new___trt__SetSynchronizationPoint(soap); - if (_p) - { ::soap_default___trt__SetSynchronizationPoint(soap, _p); - } - return _p; -} - -inline struct __trt__SetSynchronizationPoint * soap_new_set___trt__SetSynchronizationPoint( - struct soap *soap, - _trt__SetSynchronizationPoint *trt__SetSynchronizationPoint) -{ - struct __trt__SetSynchronizationPoint *_p = ::soap_new___trt__SetSynchronizationPoint(soap); - if (_p) - { ::soap_default___trt__SetSynchronizationPoint(soap, _p); - _p->trt__SetSynchronizationPoint = trt__SetSynchronizationPoint; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetSynchronizationPoint(struct soap*, const struct __trt__SetSynchronizationPoint *, const char*, const char*); - -inline int soap_write___trt__SetSynchronizationPoint(struct soap *soap, struct __trt__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetSynchronizationPoint(soap, p), 0) || ::soap_put___trt__SetSynchronizationPoint(soap, p, "-trt:SetSynchronizationPoint", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __trt__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetSynchronizationPoint(soap, p), 0) || ::soap_put___trt__SetSynchronizationPoint(soap, p, "-trt:SetSynchronizationPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __trt__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetSynchronizationPoint(soap, p), 0) || ::soap_put___trt__SetSynchronizationPoint(soap, p, "-trt:SetSynchronizationPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __trt__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetSynchronizationPoint(soap, p), 0) || ::soap_put___trt__SetSynchronizationPoint(soap, p, "-trt:SetSynchronizationPoint", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetSynchronizationPoint * SOAP_FMAC4 soap_get___trt__SetSynchronizationPoint(struct soap*, struct __trt__SetSynchronizationPoint *, const char*, const char*); - -inline int soap_read___trt__SetSynchronizationPoint(struct soap *soap, struct __trt__SetSynchronizationPoint *p) -{ - if (p) - { ::soap_default___trt__SetSynchronizationPoint(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetSynchronizationPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __trt__SetSynchronizationPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetSynchronizationPoint(struct soap *soap, struct __trt__SetSynchronizationPoint *p) -{ - if (::soap_read___trt__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__StopMulticastStreaming_DEFINED -#define SOAP_TYPE___trt__StopMulticastStreaming_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__StopMulticastStreaming(struct soap*, struct __trt__StopMulticastStreaming *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__StopMulticastStreaming(struct soap*, const struct __trt__StopMulticastStreaming *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__StopMulticastStreaming(struct soap*, const char*, int, const struct __trt__StopMulticastStreaming *, const char*); -SOAP_FMAC3 struct __trt__StopMulticastStreaming * SOAP_FMAC4 soap_in___trt__StopMulticastStreaming(struct soap*, const char*, struct __trt__StopMulticastStreaming *, const char*); -SOAP_FMAC1 struct __trt__StopMulticastStreaming * SOAP_FMAC2 soap_instantiate___trt__StopMulticastStreaming(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__StopMulticastStreaming * soap_new___trt__StopMulticastStreaming(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__StopMulticastStreaming(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__StopMulticastStreaming * soap_new_req___trt__StopMulticastStreaming( - struct soap *soap) -{ - struct __trt__StopMulticastStreaming *_p = ::soap_new___trt__StopMulticastStreaming(soap); - if (_p) - { ::soap_default___trt__StopMulticastStreaming(soap, _p); - } - return _p; -} - -inline struct __trt__StopMulticastStreaming * soap_new_set___trt__StopMulticastStreaming( - struct soap *soap, - _trt__StopMulticastStreaming *trt__StopMulticastStreaming) -{ - struct __trt__StopMulticastStreaming *_p = ::soap_new___trt__StopMulticastStreaming(soap); - if (_p) - { ::soap_default___trt__StopMulticastStreaming(soap, _p); - _p->trt__StopMulticastStreaming = trt__StopMulticastStreaming; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__StopMulticastStreaming(struct soap*, const struct __trt__StopMulticastStreaming *, const char*, const char*); - -inline int soap_write___trt__StopMulticastStreaming(struct soap *soap, struct __trt__StopMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__StopMulticastStreaming(soap, p), 0) || ::soap_put___trt__StopMulticastStreaming(soap, p, "-trt:StopMulticastStreaming", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__StopMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StopMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__StopMulticastStreaming(soap, p), 0) || ::soap_put___trt__StopMulticastStreaming(soap, p, "-trt:StopMulticastStreaming", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__StopMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StopMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__StopMulticastStreaming(soap, p), 0) || ::soap_put___trt__StopMulticastStreaming(soap, p, "-trt:StopMulticastStreaming", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__StopMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StopMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__StopMulticastStreaming(soap, p), 0) || ::soap_put___trt__StopMulticastStreaming(soap, p, "-trt:StopMulticastStreaming", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__StopMulticastStreaming * SOAP_FMAC4 soap_get___trt__StopMulticastStreaming(struct soap*, struct __trt__StopMulticastStreaming *, const char*, const char*); - -inline int soap_read___trt__StopMulticastStreaming(struct soap *soap, struct __trt__StopMulticastStreaming *p) -{ - if (p) - { ::soap_default___trt__StopMulticastStreaming(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__StopMulticastStreaming(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__StopMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StopMulticastStreaming *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__StopMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__StopMulticastStreaming(struct soap *soap, struct __trt__StopMulticastStreaming *p) -{ - if (::soap_read___trt__StopMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__StartMulticastStreaming_DEFINED -#define SOAP_TYPE___trt__StartMulticastStreaming_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__StartMulticastStreaming(struct soap*, struct __trt__StartMulticastStreaming *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__StartMulticastStreaming(struct soap*, const struct __trt__StartMulticastStreaming *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__StartMulticastStreaming(struct soap*, const char*, int, const struct __trt__StartMulticastStreaming *, const char*); -SOAP_FMAC3 struct __trt__StartMulticastStreaming * SOAP_FMAC4 soap_in___trt__StartMulticastStreaming(struct soap*, const char*, struct __trt__StartMulticastStreaming *, const char*); -SOAP_FMAC1 struct __trt__StartMulticastStreaming * SOAP_FMAC2 soap_instantiate___trt__StartMulticastStreaming(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__StartMulticastStreaming * soap_new___trt__StartMulticastStreaming(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__StartMulticastStreaming(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__StartMulticastStreaming * soap_new_req___trt__StartMulticastStreaming( - struct soap *soap) -{ - struct __trt__StartMulticastStreaming *_p = ::soap_new___trt__StartMulticastStreaming(soap); - if (_p) - { ::soap_default___trt__StartMulticastStreaming(soap, _p); - } - return _p; -} - -inline struct __trt__StartMulticastStreaming * soap_new_set___trt__StartMulticastStreaming( - struct soap *soap, - _trt__StartMulticastStreaming *trt__StartMulticastStreaming) -{ - struct __trt__StartMulticastStreaming *_p = ::soap_new___trt__StartMulticastStreaming(soap); - if (_p) - { ::soap_default___trt__StartMulticastStreaming(soap, _p); - _p->trt__StartMulticastStreaming = trt__StartMulticastStreaming; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__StartMulticastStreaming(struct soap*, const struct __trt__StartMulticastStreaming *, const char*, const char*); - -inline int soap_write___trt__StartMulticastStreaming(struct soap *soap, struct __trt__StartMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__StartMulticastStreaming(soap, p), 0) || ::soap_put___trt__StartMulticastStreaming(soap, p, "-trt:StartMulticastStreaming", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__StartMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StartMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__StartMulticastStreaming(soap, p), 0) || ::soap_put___trt__StartMulticastStreaming(soap, p, "-trt:StartMulticastStreaming", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__StartMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StartMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__StartMulticastStreaming(soap, p), 0) || ::soap_put___trt__StartMulticastStreaming(soap, p, "-trt:StartMulticastStreaming", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__StartMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StartMulticastStreaming const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__StartMulticastStreaming(soap, p), 0) || ::soap_put___trt__StartMulticastStreaming(soap, p, "-trt:StartMulticastStreaming", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__StartMulticastStreaming * SOAP_FMAC4 soap_get___trt__StartMulticastStreaming(struct soap*, struct __trt__StartMulticastStreaming *, const char*, const char*); - -inline int soap_read___trt__StartMulticastStreaming(struct soap *soap, struct __trt__StartMulticastStreaming *p) -{ - if (p) - { ::soap_default___trt__StartMulticastStreaming(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__StartMulticastStreaming(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__StartMulticastStreaming(struct soap *soap, const char *URL, struct __trt__StartMulticastStreaming *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__StartMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__StartMulticastStreaming(struct soap *soap, struct __trt__StartMulticastStreaming *p) -{ - if (::soap_read___trt__StartMulticastStreaming(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetStreamUri_DEFINED -#define SOAP_TYPE___trt__GetStreamUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetStreamUri(struct soap*, struct __trt__GetStreamUri *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetStreamUri(struct soap*, const struct __trt__GetStreamUri *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetStreamUri(struct soap*, const char*, int, const struct __trt__GetStreamUri *, const char*); -SOAP_FMAC3 struct __trt__GetStreamUri * SOAP_FMAC4 soap_in___trt__GetStreamUri(struct soap*, const char*, struct __trt__GetStreamUri *, const char*); -SOAP_FMAC1 struct __trt__GetStreamUri * SOAP_FMAC2 soap_instantiate___trt__GetStreamUri(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetStreamUri * soap_new___trt__GetStreamUri(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetStreamUri(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetStreamUri * soap_new_req___trt__GetStreamUri( - struct soap *soap) -{ - struct __trt__GetStreamUri *_p = ::soap_new___trt__GetStreamUri(soap); - if (_p) - { ::soap_default___trt__GetStreamUri(soap, _p); - } - return _p; -} - -inline struct __trt__GetStreamUri * soap_new_set___trt__GetStreamUri( - struct soap *soap, - _trt__GetStreamUri *trt__GetStreamUri) -{ - struct __trt__GetStreamUri *_p = ::soap_new___trt__GetStreamUri(soap); - if (_p) - { ::soap_default___trt__GetStreamUri(soap, _p); - _p->trt__GetStreamUri = trt__GetStreamUri; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetStreamUri(struct soap*, const struct __trt__GetStreamUri *, const char*, const char*); - -inline int soap_write___trt__GetStreamUri(struct soap *soap, struct __trt__GetStreamUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetStreamUri(soap, p), 0) || ::soap_put___trt__GetStreamUri(soap, p, "-trt:GetStreamUri", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetStreamUri(struct soap *soap, const char *URL, struct __trt__GetStreamUri const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetStreamUri(soap, p), 0) || ::soap_put___trt__GetStreamUri(soap, p, "-trt:GetStreamUri", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetStreamUri(struct soap *soap, const char *URL, struct __trt__GetStreamUri const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetStreamUri(soap, p), 0) || ::soap_put___trt__GetStreamUri(soap, p, "-trt:GetStreamUri", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetStreamUri(struct soap *soap, const char *URL, struct __trt__GetStreamUri const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetStreamUri(soap, p), 0) || ::soap_put___trt__GetStreamUri(soap, p, "-trt:GetStreamUri", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetStreamUri * SOAP_FMAC4 soap_get___trt__GetStreamUri(struct soap*, struct __trt__GetStreamUri *, const char*, const char*); - -inline int soap_read___trt__GetStreamUri(struct soap *soap, struct __trt__GetStreamUri *p) -{ - if (p) - { ::soap_default___trt__GetStreamUri(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetStreamUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetStreamUri(struct soap *soap, const char *URL, struct __trt__GetStreamUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetStreamUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetStreamUri(struct soap *soap, struct __trt__GetStreamUri *p) -{ - if (::soap_read___trt__GetStreamUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances_DEFINED -#define SOAP_TYPE___trt__GetGuaranteedNumberOfVideoEncoderInstances_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const char*, int, const struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *, const char*); -SOAP_FMAC3 struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_in___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const char*, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *, const char*); -SOAP_FMAC1 struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC2 soap_instantiate___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * soap_new___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * soap_new_req___trt__GetGuaranteedNumberOfVideoEncoderInstances( - struct soap *soap) -{ - struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *_p = ::soap_new___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap); - if (_p) - { ::soap_default___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, _p); - } - return _p; -} - -inline struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * soap_new_set___trt__GetGuaranteedNumberOfVideoEncoderInstances( - struct soap *soap, - _trt__GetGuaranteedNumberOfVideoEncoderInstances *trt__GetGuaranteedNumberOfVideoEncoderInstances) -{ - struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *_p = ::soap_new___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap); - if (_p) - { ::soap_default___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, _p); - _p->trt__GetGuaranteedNumberOfVideoEncoderInstances = trt__GetGuaranteedNumberOfVideoEncoderInstances; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *, const char*, const char*); - -inline int soap_write___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p), 0) || ::soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p, "-trt:GetGuaranteedNumberOfVideoEncoderInstances", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p), 0) || ::soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p, "-trt:GetGuaranteedNumberOfVideoEncoderInstances", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p), 0) || ::soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p, "-trt:GetGuaranteedNumberOfVideoEncoderInstances", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p), 0) || ::soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p, "-trt:GetGuaranteedNumberOfVideoEncoderInstances", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetGuaranteedNumberOfVideoEncoderInstances * SOAP_FMAC4 soap_get___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *, const char*, const char*); - -inline int soap_read___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *p) -{ - if (p) - { ::soap_default___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, const char *URL, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap *soap, struct __trt__GetGuaranteedNumberOfVideoEncoderInstances *p) -{ - if (::soap_read___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions_DEFINED -#define SOAP_TYPE___trt__GetAudioDecoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioDecoderConfigurationOptions(struct soap*, struct __trt__GetAudioDecoderConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioDecoderConfigurationOptions(struct soap*, const struct __trt__GetAudioDecoderConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioDecoderConfigurationOptions(struct soap*, const char*, int, const struct __trt__GetAudioDecoderConfigurationOptions *, const char*); -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioDecoderConfigurationOptions(struct soap*, const char*, struct __trt__GetAudioDecoderConfigurationOptions *, const char*); -SOAP_FMAC1 struct __trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioDecoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioDecoderConfigurationOptions * soap_new___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioDecoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioDecoderConfigurationOptions * soap_new_req___trt__GetAudioDecoderConfigurationOptions( - struct soap *soap) -{ - struct __trt__GetAudioDecoderConfigurationOptions *_p = ::soap_new___trt__GetAudioDecoderConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioDecoderConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioDecoderConfigurationOptions * soap_new_set___trt__GetAudioDecoderConfigurationOptions( - struct soap *soap, - _trt__GetAudioDecoderConfigurationOptions *trt__GetAudioDecoderConfigurationOptions) -{ - struct __trt__GetAudioDecoderConfigurationOptions *_p = ::soap_new___trt__GetAudioDecoderConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioDecoderConfigurationOptions(soap, _p); - _p->trt__GetAudioDecoderConfigurationOptions = trt__GetAudioDecoderConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioDecoderConfigurationOptions(struct soap*, const struct __trt__GetAudioDecoderConfigurationOptions *, const char*, const char*); - -inline int soap_write___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioDecoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioDecoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurationOptions(soap, p, "-trt:GetAudioDecoderConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurationOptions(soap, p, "-trt:GetAudioDecoderConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurationOptions(soap, p, "-trt:GetAudioDecoderConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurationOptions(soap, p, "-trt:GetAudioDecoderConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioDecoderConfigurationOptions(struct soap*, struct __trt__GetAudioDecoderConfigurationOptions *, const char*, const char*); - -inline int soap_read___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioDecoderConfigurationOptions *p) -{ - if (p) - { ::soap_default___trt__GetAudioDecoderConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioDecoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioDecoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioDecoderConfigurationOptions *p) -{ - if (::soap_read___trt__GetAudioDecoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE___trt__GetAudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputConfigurationOptions(struct soap*, struct __trt__GetAudioOutputConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputConfigurationOptions(struct soap*, const struct __trt__GetAudioOutputConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputConfigurationOptions(struct soap*, const char*, int, const struct __trt__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioOutputConfigurationOptions(struct soap*, const char*, struct __trt__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC1 struct __trt__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioOutputConfigurationOptions * soap_new___trt__GetAudioOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioOutputConfigurationOptions * soap_new_req___trt__GetAudioOutputConfigurationOptions( - struct soap *soap) -{ - struct __trt__GetAudioOutputConfigurationOptions *_p = ::soap_new___trt__GetAudioOutputConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioOutputConfigurationOptions * soap_new_set___trt__GetAudioOutputConfigurationOptions( - struct soap *soap, - _trt__GetAudioOutputConfigurationOptions *trt__GetAudioOutputConfigurationOptions) -{ - struct __trt__GetAudioOutputConfigurationOptions *_p = ::soap_new___trt__GetAudioOutputConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputConfigurationOptions(soap, _p); - _p->trt__GetAudioOutputConfigurationOptions = trt__GetAudioOutputConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputConfigurationOptions(struct soap*, const struct __trt__GetAudioOutputConfigurationOptions *, const char*, const char*); - -inline int soap_write___trt__GetAudioOutputConfigurationOptions(struct soap *soap, struct __trt__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurationOptions(soap, p, "-trt:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurationOptions(soap, p, "-trt:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurationOptions(soap, p, "-trt:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurationOptions(soap, p, "-trt:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioOutputConfigurationOptions(struct soap*, struct __trt__GetAudioOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read___trt__GetAudioOutputConfigurationOptions(struct soap *soap, struct __trt__GetAudioOutputConfigurationOptions *p) -{ - if (p) - { ::soap_default___trt__GetAudioOutputConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioOutputConfigurationOptions(struct soap *soap, struct __trt__GetAudioOutputConfigurationOptions *p) -{ - if (::soap_read___trt__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetMetadataConfigurationOptions_DEFINED -#define SOAP_TYPE___trt__GetMetadataConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetMetadataConfigurationOptions(struct soap*, struct __trt__GetMetadataConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetMetadataConfigurationOptions(struct soap*, const struct __trt__GetMetadataConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetMetadataConfigurationOptions(struct soap*, const char*, int, const struct __trt__GetMetadataConfigurationOptions *, const char*); -SOAP_FMAC3 struct __trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetMetadataConfigurationOptions(struct soap*, const char*, struct __trt__GetMetadataConfigurationOptions *, const char*); -SOAP_FMAC1 struct __trt__GetMetadataConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetMetadataConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetMetadataConfigurationOptions * soap_new___trt__GetMetadataConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetMetadataConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetMetadataConfigurationOptions * soap_new_req___trt__GetMetadataConfigurationOptions( - struct soap *soap) -{ - struct __trt__GetMetadataConfigurationOptions *_p = ::soap_new___trt__GetMetadataConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetMetadataConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetMetadataConfigurationOptions * soap_new_set___trt__GetMetadataConfigurationOptions( - struct soap *soap, - _trt__GetMetadataConfigurationOptions *trt__GetMetadataConfigurationOptions) -{ - struct __trt__GetMetadataConfigurationOptions *_p = ::soap_new___trt__GetMetadataConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetMetadataConfigurationOptions(soap, _p); - _p->trt__GetMetadataConfigurationOptions = trt__GetMetadataConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetMetadataConfigurationOptions(struct soap*, const struct __trt__GetMetadataConfigurationOptions *, const char*, const char*); - -inline int soap_write___trt__GetMetadataConfigurationOptions(struct soap *soap, struct __trt__GetMetadataConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetMetadataConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurationOptions(soap, p, "-trt:GetMetadataConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurationOptions(soap, p, "-trt:GetMetadataConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurationOptions(soap, p, "-trt:GetMetadataConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurationOptions(soap, p, "-trt:GetMetadataConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetMetadataConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetMetadataConfigurationOptions(struct soap*, struct __trt__GetMetadataConfigurationOptions *, const char*, const char*); - -inline int soap_read___trt__GetMetadataConfigurationOptions(struct soap *soap, struct __trt__GetMetadataConfigurationOptions *p) -{ - if (p) - { ::soap_default___trt__GetMetadataConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetMetadataConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetMetadataConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetMetadataConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetMetadataConfigurationOptions(struct soap *soap, struct __trt__GetMetadataConfigurationOptions *p) -{ - if (::soap_read___trt__GetMetadataConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE___trt__GetAudioEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioEncoderConfigurationOptions(struct soap*, struct __trt__GetAudioEncoderConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioEncoderConfigurationOptions(struct soap*, const struct __trt__GetAudioEncoderConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioEncoderConfigurationOptions(struct soap*, const char*, int, const struct __trt__GetAudioEncoderConfigurationOptions *, const char*); -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioEncoderConfigurationOptions(struct soap*, const char*, struct __trt__GetAudioEncoderConfigurationOptions *, const char*); -SOAP_FMAC1 struct __trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioEncoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioEncoderConfigurationOptions * soap_new___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioEncoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioEncoderConfigurationOptions * soap_new_req___trt__GetAudioEncoderConfigurationOptions( - struct soap *soap) -{ - struct __trt__GetAudioEncoderConfigurationOptions *_p = ::soap_new___trt__GetAudioEncoderConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioEncoderConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioEncoderConfigurationOptions * soap_new_set___trt__GetAudioEncoderConfigurationOptions( - struct soap *soap, - _trt__GetAudioEncoderConfigurationOptions *trt__GetAudioEncoderConfigurationOptions) -{ - struct __trt__GetAudioEncoderConfigurationOptions *_p = ::soap_new___trt__GetAudioEncoderConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioEncoderConfigurationOptions(soap, _p); - _p->trt__GetAudioEncoderConfigurationOptions = trt__GetAudioEncoderConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioEncoderConfigurationOptions(struct soap*, const struct __trt__GetAudioEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_write___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurationOptions(soap, p, "-trt:GetAudioEncoderConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurationOptions(soap, p, "-trt:GetAudioEncoderConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurationOptions(soap, p, "-trt:GetAudioEncoderConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurationOptions(soap, p, "-trt:GetAudioEncoderConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioEncoderConfigurationOptions(struct soap*, struct __trt__GetAudioEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_read___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioEncoderConfigurationOptions *p) -{ - if (p) - { ::soap_default___trt__GetAudioEncoderConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioEncoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioEncoderConfigurationOptions(struct soap *soap, struct __trt__GetAudioEncoderConfigurationOptions *p) -{ - if (::soap_read___trt__GetAudioEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE___trt__GetAudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSourceConfigurationOptions(struct soap*, struct __trt__GetAudioSourceConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSourceConfigurationOptions(struct soap*, const struct __trt__GetAudioSourceConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSourceConfigurationOptions(struct soap*, const char*, int, const struct __trt__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetAudioSourceConfigurationOptions(struct soap*, const char*, struct __trt__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC1 struct __trt__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetAudioSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioSourceConfigurationOptions * soap_new___trt__GetAudioSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioSourceConfigurationOptions * soap_new_req___trt__GetAudioSourceConfigurationOptions( - struct soap *soap) -{ - struct __trt__GetAudioSourceConfigurationOptions *_p = ::soap_new___trt__GetAudioSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioSourceConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioSourceConfigurationOptions * soap_new_set___trt__GetAudioSourceConfigurationOptions( - struct soap *soap, - _trt__GetAudioSourceConfigurationOptions *trt__GetAudioSourceConfigurationOptions) -{ - struct __trt__GetAudioSourceConfigurationOptions *_p = ::soap_new___trt__GetAudioSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetAudioSourceConfigurationOptions(soap, _p); - _p->trt__GetAudioSourceConfigurationOptions = trt__GetAudioSourceConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSourceConfigurationOptions(struct soap*, const struct __trt__GetAudioSourceConfigurationOptions *, const char*, const char*); - -inline int soap_write___trt__GetAudioSourceConfigurationOptions(struct soap *soap, struct __trt__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurationOptions(soap, p, "-trt:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurationOptions(soap, p, "-trt:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurationOptions(soap, p, "-trt:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurationOptions(soap, p, "-trt:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetAudioSourceConfigurationOptions(struct soap*, struct __trt__GetAudioSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read___trt__GetAudioSourceConfigurationOptions(struct soap *soap, struct __trt__GetAudioSourceConfigurationOptions *p) -{ - if (p) - { ::soap_default___trt__GetAudioSourceConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioSourceConfigurationOptions(struct soap *soap, struct __trt__GetAudioSourceConfigurationOptions *p) -{ - if (::soap_read___trt__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE___trt__GetVideoEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoEncoderConfigurationOptions(struct soap*, struct __trt__GetVideoEncoderConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoEncoderConfigurationOptions(struct soap*, const struct __trt__GetVideoEncoderConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoEncoderConfigurationOptions(struct soap*, const char*, int, const struct __trt__GetVideoEncoderConfigurationOptions *, const char*); -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetVideoEncoderConfigurationOptions(struct soap*, const char*, struct __trt__GetVideoEncoderConfigurationOptions *, const char*); -SOAP_FMAC1 struct __trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetVideoEncoderConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoEncoderConfigurationOptions * soap_new___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoEncoderConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoEncoderConfigurationOptions * soap_new_req___trt__GetVideoEncoderConfigurationOptions( - struct soap *soap) -{ - struct __trt__GetVideoEncoderConfigurationOptions *_p = ::soap_new___trt__GetVideoEncoderConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetVideoEncoderConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoEncoderConfigurationOptions * soap_new_set___trt__GetVideoEncoderConfigurationOptions( - struct soap *soap, - _trt__GetVideoEncoderConfigurationOptions *trt__GetVideoEncoderConfigurationOptions) -{ - struct __trt__GetVideoEncoderConfigurationOptions *_p = ::soap_new___trt__GetVideoEncoderConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetVideoEncoderConfigurationOptions(soap, _p); - _p->trt__GetVideoEncoderConfigurationOptions = trt__GetVideoEncoderConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoEncoderConfigurationOptions(struct soap*, const struct __trt__GetVideoEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_write___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, struct __trt__GetVideoEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurationOptions(soap, p, "-trt:GetVideoEncoderConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurationOptions(soap, p, "-trt:GetVideoEncoderConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurationOptions(soap, p, "-trt:GetVideoEncoderConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurationOptions(soap, p, "-trt:GetVideoEncoderConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetVideoEncoderConfigurationOptions(struct soap*, struct __trt__GetVideoEncoderConfigurationOptions *, const char*, const char*); - -inline int soap_read___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, struct __trt__GetVideoEncoderConfigurationOptions *p) -{ - if (p) - { ::soap_default___trt__GetVideoEncoderConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoEncoderConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoEncoderConfigurationOptions(struct soap *soap, struct __trt__GetVideoEncoderConfigurationOptions *p) -{ - if (::soap_read___trt__GetVideoEncoderConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE___trt__GetVideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceConfigurationOptions(struct soap*, struct __trt__GetVideoSourceConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceConfigurationOptions(struct soap*, const struct __trt__GetVideoSourceConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceConfigurationOptions(struct soap*, const char*, int, const struct __trt__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in___trt__GetVideoSourceConfigurationOptions(struct soap*, const char*, struct __trt__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC1 struct __trt__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoSourceConfigurationOptions * soap_new___trt__GetVideoSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoSourceConfigurationOptions * soap_new_req___trt__GetVideoSourceConfigurationOptions( - struct soap *soap) -{ - struct __trt__GetVideoSourceConfigurationOptions *_p = ::soap_new___trt__GetVideoSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoSourceConfigurationOptions * soap_new_set___trt__GetVideoSourceConfigurationOptions( - struct soap *soap, - _trt__GetVideoSourceConfigurationOptions *trt__GetVideoSourceConfigurationOptions) -{ - struct __trt__GetVideoSourceConfigurationOptions *_p = ::soap_new___trt__GetVideoSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceConfigurationOptions(soap, _p); - _p->trt__GetVideoSourceConfigurationOptions = trt__GetVideoSourceConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceConfigurationOptions(struct soap*, const struct __trt__GetVideoSourceConfigurationOptions *, const char*, const char*); - -inline int soap_write___trt__GetVideoSourceConfigurationOptions(struct soap *soap, struct __trt__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurationOptions(soap, p, "-trt:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurationOptions(soap, p, "-trt:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurationOptions(soap, p, "-trt:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurationOptions(soap, p, "-trt:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get___trt__GetVideoSourceConfigurationOptions(struct soap*, struct __trt__GetVideoSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read___trt__GetVideoSourceConfigurationOptions(struct soap *soap, struct __trt__GetVideoSourceConfigurationOptions *p) -{ - if (p) - { ::soap_default___trt__GetVideoSourceConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoSourceConfigurationOptions(struct soap *soap, struct __trt__GetVideoSourceConfigurationOptions *p) -{ - if (::soap_read___trt__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE___trt__SetAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioDecoderConfiguration(struct soap*, struct __trt__SetAudioDecoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioDecoderConfiguration(struct soap*, const struct __trt__SetAudioDecoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioDecoderConfiguration(struct soap*, const char*, int, const struct __trt__SetAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioDecoderConfiguration(struct soap*, const char*, struct __trt__SetAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetAudioDecoderConfiguration * soap_new___trt__SetAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetAudioDecoderConfiguration * soap_new_req___trt__SetAudioDecoderConfiguration( - struct soap *soap) -{ - struct __trt__SetAudioDecoderConfiguration *_p = ::soap_new___trt__SetAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioDecoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetAudioDecoderConfiguration * soap_new_set___trt__SetAudioDecoderConfiguration( - struct soap *soap, - _trt__SetAudioDecoderConfiguration *trt__SetAudioDecoderConfiguration) -{ - struct __trt__SetAudioDecoderConfiguration *_p = ::soap_new___trt__SetAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioDecoderConfiguration(soap, _p); - _p->trt__SetAudioDecoderConfiguration = trt__SetAudioDecoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioDecoderConfiguration(struct soap*, const struct __trt__SetAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetAudioDecoderConfiguration(struct soap *soap, struct __trt__SetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioDecoderConfiguration(soap, p, "-trt:SetAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioDecoderConfiguration(soap, p, "-trt:SetAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioDecoderConfiguration(soap, p, "-trt:SetAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioDecoderConfiguration(soap, p, "-trt:SetAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioDecoderConfiguration(struct soap*, struct __trt__SetAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetAudioDecoderConfiguration(struct soap *soap, struct __trt__SetAudioDecoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetAudioDecoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetAudioDecoderConfiguration(struct soap *soap, struct __trt__SetAudioDecoderConfiguration *p) -{ - if (::soap_read___trt__SetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE___trt__SetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioOutputConfiguration(struct soap*, struct __trt__SetAudioOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioOutputConfiguration(struct soap*, const struct __trt__SetAudioOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioOutputConfiguration(struct soap*, const char*, int, const struct __trt__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioOutputConfiguration(struct soap*, const char*, struct __trt__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetAudioOutputConfiguration * soap_new___trt__SetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetAudioOutputConfiguration * soap_new_req___trt__SetAudioOutputConfiguration( - struct soap *soap) -{ - struct __trt__SetAudioOutputConfiguration *_p = ::soap_new___trt__SetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetAudioOutputConfiguration * soap_new_set___trt__SetAudioOutputConfiguration( - struct soap *soap, - _trt__SetAudioOutputConfiguration *trt__SetAudioOutputConfiguration) -{ - struct __trt__SetAudioOutputConfiguration *_p = ::soap_new___trt__SetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioOutputConfiguration(soap, _p); - _p->trt__SetAudioOutputConfiguration = trt__SetAudioOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioOutputConfiguration(struct soap*, const struct __trt__SetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetAudioOutputConfiguration(struct soap *soap, struct __trt__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioOutputConfiguration(soap, p, "-trt:SetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioOutputConfiguration(soap, p, "-trt:SetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioOutputConfiguration(soap, p, "-trt:SetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioOutputConfiguration(soap, p, "-trt:SetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioOutputConfiguration(struct soap*, struct __trt__SetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetAudioOutputConfiguration(struct soap *soap, struct __trt__SetAudioOutputConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetAudioOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetAudioOutputConfiguration(struct soap *soap, struct __trt__SetAudioOutputConfiguration *p) -{ - if (::soap_read___trt__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetMetadataConfiguration_DEFINED -#define SOAP_TYPE___trt__SetMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetMetadataConfiguration(struct soap*, struct __trt__SetMetadataConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetMetadataConfiguration(struct soap*, const struct __trt__SetMetadataConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetMetadataConfiguration(struct soap*, const char*, int, const struct __trt__SetMetadataConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetMetadataConfiguration * SOAP_FMAC4 soap_in___trt__SetMetadataConfiguration(struct soap*, const char*, struct __trt__SetMetadataConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetMetadataConfiguration * soap_new___trt__SetMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetMetadataConfiguration * soap_new_req___trt__SetMetadataConfiguration( - struct soap *soap) -{ - struct __trt__SetMetadataConfiguration *_p = ::soap_new___trt__SetMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__SetMetadataConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetMetadataConfiguration * soap_new_set___trt__SetMetadataConfiguration( - struct soap *soap, - _trt__SetMetadataConfiguration *trt__SetMetadataConfiguration) -{ - struct __trt__SetMetadataConfiguration *_p = ::soap_new___trt__SetMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__SetMetadataConfiguration(soap, _p); - _p->trt__SetMetadataConfiguration = trt__SetMetadataConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetMetadataConfiguration(struct soap*, const struct __trt__SetMetadataConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetMetadataConfiguration(struct soap *soap, struct __trt__SetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__SetMetadataConfiguration(soap, p, "-trt:SetMetadataConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__SetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__SetMetadataConfiguration(soap, p, "-trt:SetMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__SetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__SetMetadataConfiguration(soap, p, "-trt:SetMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__SetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__SetMetadataConfiguration(soap, p, "-trt:SetMetadataConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetMetadataConfiguration * SOAP_FMAC4 soap_get___trt__SetMetadataConfiguration(struct soap*, struct __trt__SetMetadataConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetMetadataConfiguration(struct soap *soap, struct __trt__SetMetadataConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetMetadataConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__SetMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetMetadataConfiguration(struct soap *soap, struct __trt__SetMetadataConfiguration *p) -{ - if (::soap_read___trt__SetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE___trt__SetVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoAnalyticsConfiguration(struct soap*, struct __trt__SetVideoAnalyticsConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoAnalyticsConfiguration(struct soap*, const struct __trt__SetVideoAnalyticsConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoAnalyticsConfiguration(struct soap*, const char*, int, const struct __trt__SetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__SetVideoAnalyticsConfiguration(struct soap*, const char*, struct __trt__SetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetVideoAnalyticsConfiguration * soap_new___trt__SetVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetVideoAnalyticsConfiguration * soap_new_req___trt__SetVideoAnalyticsConfiguration( - struct soap *soap) -{ - struct __trt__SetVideoAnalyticsConfiguration *_p = ::soap_new___trt__SetVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__SetVideoAnalyticsConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetVideoAnalyticsConfiguration * soap_new_set___trt__SetVideoAnalyticsConfiguration( - struct soap *soap, - _trt__SetVideoAnalyticsConfiguration *trt__SetVideoAnalyticsConfiguration) -{ - struct __trt__SetVideoAnalyticsConfiguration *_p = ::soap_new___trt__SetVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__SetVideoAnalyticsConfiguration(soap, _p); - _p->trt__SetVideoAnalyticsConfiguration = trt__SetVideoAnalyticsConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoAnalyticsConfiguration(struct soap*, const struct __trt__SetVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__SetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoAnalyticsConfiguration(soap, p, "-trt:SetVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoAnalyticsConfiguration(soap, p, "-trt:SetVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoAnalyticsConfiguration(soap, p, "-trt:SetVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoAnalyticsConfiguration(soap, p, "-trt:SetVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__SetVideoAnalyticsConfiguration(struct soap*, struct __trt__SetVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__SetVideoAnalyticsConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetVideoAnalyticsConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__SetVideoAnalyticsConfiguration *p) -{ - if (::soap_read___trt__SetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__SetAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioEncoderConfiguration(struct soap*, struct __trt__SetAudioEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioEncoderConfiguration(struct soap*, const struct __trt__SetAudioEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioEncoderConfiguration(struct soap*, const char*, int, const struct __trt__SetAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioEncoderConfiguration(struct soap*, const char*, struct __trt__SetAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetAudioEncoderConfiguration * soap_new___trt__SetAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetAudioEncoderConfiguration * soap_new_req___trt__SetAudioEncoderConfiguration( - struct soap *soap) -{ - struct __trt__SetAudioEncoderConfiguration *_p = ::soap_new___trt__SetAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetAudioEncoderConfiguration * soap_new_set___trt__SetAudioEncoderConfiguration( - struct soap *soap, - _trt__SetAudioEncoderConfiguration *trt__SetAudioEncoderConfiguration) -{ - struct __trt__SetAudioEncoderConfiguration *_p = ::soap_new___trt__SetAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioEncoderConfiguration(soap, _p); - _p->trt__SetAudioEncoderConfiguration = trt__SetAudioEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioEncoderConfiguration(struct soap*, const struct __trt__SetAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetAudioEncoderConfiguration(struct soap *soap, struct __trt__SetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioEncoderConfiguration(soap, p, "-trt:SetAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioEncoderConfiguration(soap, p, "-trt:SetAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioEncoderConfiguration(soap, p, "-trt:SetAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioEncoderConfiguration(soap, p, "-trt:SetAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioEncoderConfiguration(struct soap*, struct __trt__SetAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetAudioEncoderConfiguration(struct soap *soap, struct __trt__SetAudioEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetAudioEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetAudioEncoderConfiguration(struct soap *soap, struct __trt__SetAudioEncoderConfiguration *p) -{ - if (::soap_read___trt__SetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__SetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetAudioSourceConfiguration(struct soap*, struct __trt__SetAudioSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetAudioSourceConfiguration(struct soap*, const struct __trt__SetAudioSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetAudioSourceConfiguration(struct soap*, const char*, int, const struct __trt__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__SetAudioSourceConfiguration(struct soap*, const char*, struct __trt__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetAudioSourceConfiguration * soap_new___trt__SetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetAudioSourceConfiguration * soap_new_req___trt__SetAudioSourceConfiguration( - struct soap *soap) -{ - struct __trt__SetAudioSourceConfiguration *_p = ::soap_new___trt__SetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetAudioSourceConfiguration * soap_new_set___trt__SetAudioSourceConfiguration( - struct soap *soap, - _trt__SetAudioSourceConfiguration *trt__SetAudioSourceConfiguration) -{ - struct __trt__SetAudioSourceConfiguration *_p = ::soap_new___trt__SetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__SetAudioSourceConfiguration(soap, _p); - _p->trt__SetAudioSourceConfiguration = trt__SetAudioSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetAudioSourceConfiguration(struct soap*, const struct __trt__SetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetAudioSourceConfiguration(struct soap *soap, struct __trt__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioSourceConfiguration(soap, p, "-trt:SetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioSourceConfiguration(soap, p, "-trt:SetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioSourceConfiguration(soap, p, "-trt:SetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetAudioSourceConfiguration(soap, p, "-trt:SetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__SetAudioSourceConfiguration(struct soap*, struct __trt__SetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetAudioSourceConfiguration(struct soap *soap, struct __trt__SetAudioSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetAudioSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetAudioSourceConfiguration(struct soap *soap, struct __trt__SetAudioSourceConfiguration *p) -{ - if (::soap_read___trt__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__SetVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoEncoderConfiguration(struct soap*, struct __trt__SetVideoEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoEncoderConfiguration(struct soap*, const struct __trt__SetVideoEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoEncoderConfiguration(struct soap*, const char*, int, const struct __trt__SetVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__SetVideoEncoderConfiguration(struct soap*, const char*, struct __trt__SetVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetVideoEncoderConfiguration * soap_new___trt__SetVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetVideoEncoderConfiguration * soap_new_req___trt__SetVideoEncoderConfiguration( - struct soap *soap) -{ - struct __trt__SetVideoEncoderConfiguration *_p = ::soap_new___trt__SetVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__SetVideoEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetVideoEncoderConfiguration * soap_new_set___trt__SetVideoEncoderConfiguration( - struct soap *soap, - _trt__SetVideoEncoderConfiguration *trt__SetVideoEncoderConfiguration) -{ - struct __trt__SetVideoEncoderConfiguration *_p = ::soap_new___trt__SetVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__SetVideoEncoderConfiguration(soap, _p); - _p->trt__SetVideoEncoderConfiguration = trt__SetVideoEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoEncoderConfiguration(struct soap*, const struct __trt__SetVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetVideoEncoderConfiguration(struct soap *soap, struct __trt__SetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoEncoderConfiguration(soap, p, "-trt:SetVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoEncoderConfiguration(soap, p, "-trt:SetVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoEncoderConfiguration(soap, p, "-trt:SetVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoEncoderConfiguration(soap, p, "-trt:SetVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__SetVideoEncoderConfiguration(struct soap*, struct __trt__SetVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetVideoEncoderConfiguration(struct soap *soap, struct __trt__SetVideoEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetVideoEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetVideoEncoderConfiguration(struct soap *soap, struct __trt__SetVideoEncoderConfiguration *p) -{ - if (::soap_read___trt__SetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__SetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__SetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__SetVideoSourceConfiguration(struct soap*, struct __trt__SetVideoSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__SetVideoSourceConfiguration(struct soap*, const struct __trt__SetVideoSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__SetVideoSourceConfiguration(struct soap*, const char*, int, const struct __trt__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__SetVideoSourceConfiguration(struct soap*, const char*, struct __trt__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__SetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__SetVideoSourceConfiguration * soap_new___trt__SetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__SetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__SetVideoSourceConfiguration * soap_new_req___trt__SetVideoSourceConfiguration( - struct soap *soap) -{ - struct __trt__SetVideoSourceConfiguration *_p = ::soap_new___trt__SetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__SetVideoSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__SetVideoSourceConfiguration * soap_new_set___trt__SetVideoSourceConfiguration( - struct soap *soap, - _trt__SetVideoSourceConfiguration *trt__SetVideoSourceConfiguration) -{ - struct __trt__SetVideoSourceConfiguration *_p = ::soap_new___trt__SetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__SetVideoSourceConfiguration(soap, _p); - _p->trt__SetVideoSourceConfiguration = trt__SetVideoSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__SetVideoSourceConfiguration(struct soap*, const struct __trt__SetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__SetVideoSourceConfiguration(struct soap *soap, struct __trt__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoSourceConfiguration(soap, p, "-trt:SetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoSourceConfiguration(soap, p, "-trt:SetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoSourceConfiguration(soap, p, "-trt:SetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__SetVideoSourceConfiguration(soap, p, "-trt:SetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__SetVideoSourceConfiguration(struct soap*, struct __trt__SetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__SetVideoSourceConfiguration(struct soap *soap, struct __trt__SetVideoSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__SetVideoSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__SetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__SetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__SetVideoSourceConfiguration(struct soap *soap, struct __trt__SetVideoSourceConfiguration *p) -{ - if (::soap_read___trt__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleAudioDecoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioDecoderConfigurations(struct soap*, struct __trt__GetCompatibleAudioDecoderConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const struct __trt__GetCompatibleAudioDecoderConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleAudioDecoderConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const char*, struct __trt__GetCompatibleAudioDecoderConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioDecoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleAudioDecoderConfigurations * soap_new___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleAudioDecoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleAudioDecoderConfigurations * soap_new_req___trt__GetCompatibleAudioDecoderConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleAudioDecoderConfigurations *_p = ::soap_new___trt__GetCompatibleAudioDecoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioDecoderConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleAudioDecoderConfigurations * soap_new_set___trt__GetCompatibleAudioDecoderConfigurations( - struct soap *soap, - _trt__GetCompatibleAudioDecoderConfigurations *trt__GetCompatibleAudioDecoderConfigurations) -{ - struct __trt__GetCompatibleAudioDecoderConfigurations *_p = ::soap_new___trt__GetCompatibleAudioDecoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioDecoderConfigurations(soap, _p); - _p->trt__GetCompatibleAudioDecoderConfigurations = trt__GetCompatibleAudioDecoderConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const struct __trt__GetCompatibleAudioDecoderConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioDecoderConfigurations(soap, p, "-trt:GetCompatibleAudioDecoderConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioDecoderConfigurations(soap, p, "-trt:GetCompatibleAudioDecoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioDecoderConfigurations(soap, p, "-trt:GetCompatibleAudioDecoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioDecoderConfigurations(soap, p, "-trt:GetCompatibleAudioDecoderConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleAudioDecoderConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioDecoderConfigurations(struct soap*, struct __trt__GetCompatibleAudioDecoderConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioDecoderConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleAudioDecoderConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleAudioDecoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioDecoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleAudioDecoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioDecoderConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleAudioOutputConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioOutputConfigurations(struct soap*, struct __trt__GetCompatibleAudioOutputConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioOutputConfigurations(struct soap*, const struct __trt__GetCompatibleAudioOutputConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioOutputConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleAudioOutputConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioOutputConfigurations(struct soap*, const char*, struct __trt__GetCompatibleAudioOutputConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioOutputConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleAudioOutputConfigurations * soap_new___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleAudioOutputConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleAudioOutputConfigurations * soap_new_req___trt__GetCompatibleAudioOutputConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleAudioOutputConfigurations *_p = ::soap_new___trt__GetCompatibleAudioOutputConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioOutputConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleAudioOutputConfigurations * soap_new_set___trt__GetCompatibleAudioOutputConfigurations( - struct soap *soap, - _trt__GetCompatibleAudioOutputConfigurations *trt__GetCompatibleAudioOutputConfigurations) -{ - struct __trt__GetCompatibleAudioOutputConfigurations *_p = ::soap_new___trt__GetCompatibleAudioOutputConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioOutputConfigurations(soap, _p); - _p->trt__GetCompatibleAudioOutputConfigurations = trt__GetCompatibleAudioOutputConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioOutputConfigurations(struct soap*, const struct __trt__GetCompatibleAudioOutputConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioOutputConfigurations(soap, p, "-trt:GetCompatibleAudioOutputConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioOutputConfigurations(soap, p, "-trt:GetCompatibleAudioOutputConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioOutputConfigurations(soap, p, "-trt:GetCompatibleAudioOutputConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioOutputConfigurations(soap, p, "-trt:GetCompatibleAudioOutputConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleAudioOutputConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioOutputConfigurations(struct soap*, struct __trt__GetCompatibleAudioOutputConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioOutputConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleAudioOutputConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleAudioOutputConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioOutputConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleAudioOutputConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioOutputConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleMetadataConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleMetadataConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleMetadataConfigurations(struct soap*, struct __trt__GetCompatibleMetadataConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleMetadataConfigurations(struct soap*, const struct __trt__GetCompatibleMetadataConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleMetadataConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleMetadataConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleMetadataConfigurations(struct soap*, const char*, struct __trt__GetCompatibleMetadataConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleMetadataConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleMetadataConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleMetadataConfigurations * soap_new___trt__GetCompatibleMetadataConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleMetadataConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleMetadataConfigurations * soap_new_req___trt__GetCompatibleMetadataConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleMetadataConfigurations *_p = ::soap_new___trt__GetCompatibleMetadataConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleMetadataConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleMetadataConfigurations * soap_new_set___trt__GetCompatibleMetadataConfigurations( - struct soap *soap, - _trt__GetCompatibleMetadataConfigurations *trt__GetCompatibleMetadataConfigurations) -{ - struct __trt__GetCompatibleMetadataConfigurations *_p = ::soap_new___trt__GetCompatibleMetadataConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleMetadataConfigurations(soap, _p); - _p->trt__GetCompatibleMetadataConfigurations = trt__GetCompatibleMetadataConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleMetadataConfigurations(struct soap*, const struct __trt__GetCompatibleMetadataConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleMetadataConfigurations(struct soap *soap, struct __trt__GetCompatibleMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleMetadataConfigurations(soap, p, "-trt:GetCompatibleMetadataConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleMetadataConfigurations(soap, p, "-trt:GetCompatibleMetadataConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleMetadataConfigurations(soap, p, "-trt:GetCompatibleMetadataConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleMetadataConfigurations(soap, p, "-trt:GetCompatibleMetadataConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleMetadataConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleMetadataConfigurations(struct soap*, struct __trt__GetCompatibleMetadataConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleMetadataConfigurations(struct soap *soap, struct __trt__GetCompatibleMetadataConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleMetadataConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleMetadataConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleMetadataConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleMetadataConfigurations(struct soap *soap, struct __trt__GetCompatibleMetadataConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleVideoAnalyticsConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, struct __trt__GetCompatibleVideoAnalyticsConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const struct __trt__GetCompatibleVideoAnalyticsConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const char*, struct __trt__GetCompatibleVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleVideoAnalyticsConfigurations * soap_new___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleVideoAnalyticsConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleVideoAnalyticsConfigurations * soap_new_req___trt__GetCompatibleVideoAnalyticsConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleVideoAnalyticsConfigurations *_p = ::soap_new___trt__GetCompatibleVideoAnalyticsConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleVideoAnalyticsConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleVideoAnalyticsConfigurations * soap_new_set___trt__GetCompatibleVideoAnalyticsConfigurations( - struct soap *soap, - _trt__GetCompatibleVideoAnalyticsConfigurations *trt__GetCompatibleVideoAnalyticsConfigurations) -{ - struct __trt__GetCompatibleVideoAnalyticsConfigurations *_p = ::soap_new___trt__GetCompatibleVideoAnalyticsConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleVideoAnalyticsConfigurations(soap, _p); - _p->trt__GetCompatibleVideoAnalyticsConfigurations = trt__GetCompatibleVideoAnalyticsConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const struct __trt__GetCompatibleVideoAnalyticsConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p, "-trt:GetCompatibleVideoAnalyticsConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p, "-trt:GetCompatibleVideoAnalyticsConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p, "-trt:GetCompatibleVideoAnalyticsConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p, "-trt:GetCompatibleVideoAnalyticsConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, struct __trt__GetCompatibleVideoAnalyticsConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoAnalyticsConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoAnalyticsConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoAnalyticsConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleAudioSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioSourceConfigurations(struct soap*, struct __trt__GetCompatibleAudioSourceConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioSourceConfigurations(struct soap*, const struct __trt__GetCompatibleAudioSourceConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioSourceConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleAudioSourceConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioSourceConfigurations(struct soap*, const char*, struct __trt__GetCompatibleAudioSourceConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleAudioSourceConfigurations * soap_new___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleAudioSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleAudioSourceConfigurations * soap_new_req___trt__GetCompatibleAudioSourceConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleAudioSourceConfigurations *_p = ::soap_new___trt__GetCompatibleAudioSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioSourceConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleAudioSourceConfigurations * soap_new_set___trt__GetCompatibleAudioSourceConfigurations( - struct soap *soap, - _trt__GetCompatibleAudioSourceConfigurations *trt__GetCompatibleAudioSourceConfigurations) -{ - struct __trt__GetCompatibleAudioSourceConfigurations *_p = ::soap_new___trt__GetCompatibleAudioSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioSourceConfigurations(soap, _p); - _p->trt__GetCompatibleAudioSourceConfigurations = trt__GetCompatibleAudioSourceConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioSourceConfigurations(struct soap*, const struct __trt__GetCompatibleAudioSourceConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioSourceConfigurations(soap, p, "-trt:GetCompatibleAudioSourceConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioSourceConfigurations(soap, p, "-trt:GetCompatibleAudioSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioSourceConfigurations(soap, p, "-trt:GetCompatibleAudioSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioSourceConfigurations(soap, p, "-trt:GetCompatibleAudioSourceConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleAudioSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioSourceConfigurations(struct soap*, struct __trt__GetCompatibleAudioSourceConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioSourceConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleAudioSourceConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleAudioSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleAudioSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioSourceConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleAudioEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleAudioEncoderConfigurations(struct soap*, struct __trt__GetCompatibleAudioEncoderConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const struct __trt__GetCompatibleAudioEncoderConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleAudioEncoderConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const char*, struct __trt__GetCompatibleAudioEncoderConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleAudioEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleAudioEncoderConfigurations * soap_new___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleAudioEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleAudioEncoderConfigurations * soap_new_req___trt__GetCompatibleAudioEncoderConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleAudioEncoderConfigurations *_p = ::soap_new___trt__GetCompatibleAudioEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioEncoderConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleAudioEncoderConfigurations * soap_new_set___trt__GetCompatibleAudioEncoderConfigurations( - struct soap *soap, - _trt__GetCompatibleAudioEncoderConfigurations *trt__GetCompatibleAudioEncoderConfigurations) -{ - struct __trt__GetCompatibleAudioEncoderConfigurations *_p = ::soap_new___trt__GetCompatibleAudioEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleAudioEncoderConfigurations(soap, _p); - _p->trt__GetCompatibleAudioEncoderConfigurations = trt__GetCompatibleAudioEncoderConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const struct __trt__GetCompatibleAudioEncoderConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioEncoderConfigurations(soap, p, "-trt:GetCompatibleAudioEncoderConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioEncoderConfigurations(soap, p, "-trt:GetCompatibleAudioEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioEncoderConfigurations(soap, p, "-trt:GetCompatibleAudioEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleAudioEncoderConfigurations(soap, p, "-trt:GetCompatibleAudioEncoderConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleAudioEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleAudioEncoderConfigurations(struct soap*, struct __trt__GetCompatibleAudioEncoderConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioEncoderConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleAudioEncoderConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleAudioEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleAudioEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleAudioEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleAudioEncoderConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleVideoSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleVideoSourceConfigurations(struct soap*, struct __trt__GetCompatibleVideoSourceConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleVideoSourceConfigurations(struct soap*, const struct __trt__GetCompatibleVideoSourceConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleVideoSourceConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleVideoSourceConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleVideoSourceConfigurations(struct soap*, const char*, struct __trt__GetCompatibleVideoSourceConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleVideoSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleVideoSourceConfigurations * soap_new___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleVideoSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleVideoSourceConfigurations * soap_new_req___trt__GetCompatibleVideoSourceConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleVideoSourceConfigurations *_p = ::soap_new___trt__GetCompatibleVideoSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleVideoSourceConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleVideoSourceConfigurations * soap_new_set___trt__GetCompatibleVideoSourceConfigurations( - struct soap *soap, - _trt__GetCompatibleVideoSourceConfigurations *trt__GetCompatibleVideoSourceConfigurations) -{ - struct __trt__GetCompatibleVideoSourceConfigurations *_p = ::soap_new___trt__GetCompatibleVideoSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleVideoSourceConfigurations(soap, _p); - _p->trt__GetCompatibleVideoSourceConfigurations = trt__GetCompatibleVideoSourceConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleVideoSourceConfigurations(struct soap*, const struct __trt__GetCompatibleVideoSourceConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoSourceConfigurations(soap, p, "-trt:GetCompatibleVideoSourceConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoSourceConfigurations(soap, p, "-trt:GetCompatibleVideoSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoSourceConfigurations(soap, p, "-trt:GetCompatibleVideoSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoSourceConfigurations(soap, p, "-trt:GetCompatibleVideoSourceConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleVideoSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleVideoSourceConfigurations(struct soap*, struct __trt__GetCompatibleVideoSourceConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoSourceConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleVideoSourceConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleVideoSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleVideoSourceConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoSourceConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations_DEFINED -#define SOAP_TYPE___trt__GetCompatibleVideoEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetCompatibleVideoEncoderConfigurations(struct soap*, struct __trt__GetCompatibleVideoEncoderConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const struct __trt__GetCompatibleVideoEncoderConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const char*, int, const struct __trt__GetCompatibleVideoEncoderConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const char*, struct __trt__GetCompatibleVideoEncoderConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetCompatibleVideoEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetCompatibleVideoEncoderConfigurations * soap_new___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetCompatibleVideoEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetCompatibleVideoEncoderConfigurations * soap_new_req___trt__GetCompatibleVideoEncoderConfigurations( - struct soap *soap) -{ - struct __trt__GetCompatibleVideoEncoderConfigurations *_p = ::soap_new___trt__GetCompatibleVideoEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleVideoEncoderConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetCompatibleVideoEncoderConfigurations * soap_new_set___trt__GetCompatibleVideoEncoderConfigurations( - struct soap *soap, - _trt__GetCompatibleVideoEncoderConfigurations *trt__GetCompatibleVideoEncoderConfigurations) -{ - struct __trt__GetCompatibleVideoEncoderConfigurations *_p = ::soap_new___trt__GetCompatibleVideoEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetCompatibleVideoEncoderConfigurations(soap, _p); - _p->trt__GetCompatibleVideoEncoderConfigurations = trt__GetCompatibleVideoEncoderConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const struct __trt__GetCompatibleVideoEncoderConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoEncoderConfigurations(soap, p, "-trt:GetCompatibleVideoEncoderConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoEncoderConfigurations(soap, p, "-trt:GetCompatibleVideoEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoEncoderConfigurations(soap, p, "-trt:GetCompatibleVideoEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetCompatibleVideoEncoderConfigurations(soap, p, "-trt:GetCompatibleVideoEncoderConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetCompatibleVideoEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetCompatibleVideoEncoderConfigurations(struct soap*, struct __trt__GetCompatibleVideoEncoderConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoEncoderConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetCompatibleVideoEncoderConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetCompatibleVideoEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetCompatibleVideoEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetCompatibleVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetCompatibleVideoEncoderConfigurations(struct soap *soap, struct __trt__GetCompatibleVideoEncoderConfigurations *p) -{ - if (::soap_read___trt__GetCompatibleVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE___trt__GetAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioDecoderConfiguration(struct soap*, struct __trt__GetAudioDecoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioDecoderConfiguration(struct soap*, const struct __trt__GetAudioDecoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioDecoderConfiguration(struct soap*, const char*, int, const struct __trt__GetAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioDecoderConfiguration(struct soap*, const char*, struct __trt__GetAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioDecoderConfiguration * soap_new___trt__GetAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioDecoderConfiguration * soap_new_req___trt__GetAudioDecoderConfiguration( - struct soap *soap) -{ - struct __trt__GetAudioDecoderConfiguration *_p = ::soap_new___trt__GetAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioDecoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioDecoderConfiguration * soap_new_set___trt__GetAudioDecoderConfiguration( - struct soap *soap, - _trt__GetAudioDecoderConfiguration *trt__GetAudioDecoderConfiguration) -{ - struct __trt__GetAudioDecoderConfiguration *_p = ::soap_new___trt__GetAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioDecoderConfiguration(soap, _p); - _p->trt__GetAudioDecoderConfiguration = trt__GetAudioDecoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioDecoderConfiguration(struct soap*, const struct __trt__GetAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetAudioDecoderConfiguration(struct soap *soap, struct __trt__GetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfiguration(soap, p, "-trt:GetAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfiguration(soap, p, "-trt:GetAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfiguration(soap, p, "-trt:GetAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfiguration(soap, p, "-trt:GetAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioDecoderConfiguration(struct soap*, struct __trt__GetAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetAudioDecoderConfiguration(struct soap *soap, struct __trt__GetAudioDecoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetAudioDecoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioDecoderConfiguration(struct soap *soap, struct __trt__GetAudioDecoderConfiguration *p) -{ - if (::soap_read___trt__GetAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE___trt__GetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputConfiguration(struct soap*, struct __trt__GetAudioOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputConfiguration(struct soap*, const struct __trt__GetAudioOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputConfiguration(struct soap*, const char*, int, const struct __trt__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioOutputConfiguration(struct soap*, const char*, struct __trt__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioOutputConfiguration * soap_new___trt__GetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioOutputConfiguration * soap_new_req___trt__GetAudioOutputConfiguration( - struct soap *soap) -{ - struct __trt__GetAudioOutputConfiguration *_p = ::soap_new___trt__GetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioOutputConfiguration * soap_new_set___trt__GetAudioOutputConfiguration( - struct soap *soap, - _trt__GetAudioOutputConfiguration *trt__GetAudioOutputConfiguration) -{ - struct __trt__GetAudioOutputConfiguration *_p = ::soap_new___trt__GetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputConfiguration(soap, _p); - _p->trt__GetAudioOutputConfiguration = trt__GetAudioOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputConfiguration(struct soap*, const struct __trt__GetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetAudioOutputConfiguration(struct soap *soap, struct __trt__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfiguration(soap, p, "-trt:GetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfiguration(soap, p, "-trt:GetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfiguration(soap, p, "-trt:GetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfiguration(soap, p, "-trt:GetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioOutputConfiguration(struct soap*, struct __trt__GetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetAudioOutputConfiguration(struct soap *soap, struct __trt__GetAudioOutputConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetAudioOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioOutputConfiguration(struct soap *soap, struct __trt__GetAudioOutputConfiguration *p) -{ - if (::soap_read___trt__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetMetadataConfiguration_DEFINED -#define SOAP_TYPE___trt__GetMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetMetadataConfiguration(struct soap*, struct __trt__GetMetadataConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetMetadataConfiguration(struct soap*, const struct __trt__GetMetadataConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetMetadataConfiguration(struct soap*, const char*, int, const struct __trt__GetMetadataConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetMetadataConfiguration * SOAP_FMAC4 soap_in___trt__GetMetadataConfiguration(struct soap*, const char*, struct __trt__GetMetadataConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetMetadataConfiguration * soap_new___trt__GetMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetMetadataConfiguration * soap_new_req___trt__GetMetadataConfiguration( - struct soap *soap) -{ - struct __trt__GetMetadataConfiguration *_p = ::soap_new___trt__GetMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__GetMetadataConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetMetadataConfiguration * soap_new_set___trt__GetMetadataConfiguration( - struct soap *soap, - _trt__GetMetadataConfiguration *trt__GetMetadataConfiguration) -{ - struct __trt__GetMetadataConfiguration *_p = ::soap_new___trt__GetMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__GetMetadataConfiguration(soap, _p); - _p->trt__GetMetadataConfiguration = trt__GetMetadataConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetMetadataConfiguration(struct soap*, const struct __trt__GetMetadataConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetMetadataConfiguration(struct soap *soap, struct __trt__GetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__GetMetadataConfiguration(soap, p, "-trt:GetMetadataConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__GetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__GetMetadataConfiguration(soap, p, "-trt:GetMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__GetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__GetMetadataConfiguration(soap, p, "-trt:GetMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__GetMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfiguration(soap, p), 0) || ::soap_put___trt__GetMetadataConfiguration(soap, p, "-trt:GetMetadataConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetMetadataConfiguration * SOAP_FMAC4 soap_get___trt__GetMetadataConfiguration(struct soap*, struct __trt__GetMetadataConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetMetadataConfiguration(struct soap *soap, struct __trt__GetMetadataConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetMetadataConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__GetMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetMetadataConfiguration(struct soap *soap, struct __trt__GetMetadataConfiguration *p) -{ - if (::soap_read___trt__GetMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE___trt__GetVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoAnalyticsConfiguration(struct soap*, struct __trt__GetVideoAnalyticsConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoAnalyticsConfiguration(struct soap*, const struct __trt__GetVideoAnalyticsConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoAnalyticsConfiguration(struct soap*, const char*, int, const struct __trt__GetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__GetVideoAnalyticsConfiguration(struct soap*, const char*, struct __trt__GetVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoAnalyticsConfiguration * soap_new___trt__GetVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoAnalyticsConfiguration * soap_new_req___trt__GetVideoAnalyticsConfiguration( - struct soap *soap) -{ - struct __trt__GetVideoAnalyticsConfiguration *_p = ::soap_new___trt__GetVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__GetVideoAnalyticsConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoAnalyticsConfiguration * soap_new_set___trt__GetVideoAnalyticsConfiguration( - struct soap *soap, - _trt__GetVideoAnalyticsConfiguration *trt__GetVideoAnalyticsConfiguration) -{ - struct __trt__GetVideoAnalyticsConfiguration *_p = ::soap_new___trt__GetVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__GetVideoAnalyticsConfiguration(soap, _p); - _p->trt__GetVideoAnalyticsConfiguration = trt__GetVideoAnalyticsConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoAnalyticsConfiguration(struct soap*, const struct __trt__GetVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__GetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfiguration(soap, p, "-trt:GetVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfiguration(soap, p, "-trt:GetVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfiguration(soap, p, "-trt:GetVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfiguration(soap, p, "-trt:GetVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__GetVideoAnalyticsConfiguration(struct soap*, struct __trt__GetVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__GetVideoAnalyticsConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetVideoAnalyticsConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoAnalyticsConfiguration(struct soap *soap, struct __trt__GetVideoAnalyticsConfiguration *p) -{ - if (::soap_read___trt__GetVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__GetAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioEncoderConfiguration(struct soap*, struct __trt__GetAudioEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioEncoderConfiguration(struct soap*, const struct __trt__GetAudioEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioEncoderConfiguration(struct soap*, const char*, int, const struct __trt__GetAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioEncoderConfiguration(struct soap*, const char*, struct __trt__GetAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioEncoderConfiguration * soap_new___trt__GetAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioEncoderConfiguration * soap_new_req___trt__GetAudioEncoderConfiguration( - struct soap *soap) -{ - struct __trt__GetAudioEncoderConfiguration *_p = ::soap_new___trt__GetAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioEncoderConfiguration * soap_new_set___trt__GetAudioEncoderConfiguration( - struct soap *soap, - _trt__GetAudioEncoderConfiguration *trt__GetAudioEncoderConfiguration) -{ - struct __trt__GetAudioEncoderConfiguration *_p = ::soap_new___trt__GetAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioEncoderConfiguration(soap, _p); - _p->trt__GetAudioEncoderConfiguration = trt__GetAudioEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioEncoderConfiguration(struct soap*, const struct __trt__GetAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetAudioEncoderConfiguration(struct soap *soap, struct __trt__GetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfiguration(soap, p, "-trt:GetAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfiguration(soap, p, "-trt:GetAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfiguration(soap, p, "-trt:GetAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfiguration(soap, p, "-trt:GetAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioEncoderConfiguration(struct soap*, struct __trt__GetAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetAudioEncoderConfiguration(struct soap *soap, struct __trt__GetAudioEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetAudioEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioEncoderConfiguration(struct soap *soap, struct __trt__GetAudioEncoderConfiguration *p) -{ - if (::soap_read___trt__GetAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__GetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSourceConfiguration(struct soap*, struct __trt__GetAudioSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSourceConfiguration(struct soap*, const struct __trt__GetAudioSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSourceConfiguration(struct soap*, const char*, int, const struct __trt__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__GetAudioSourceConfiguration(struct soap*, const char*, struct __trt__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioSourceConfiguration * soap_new___trt__GetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioSourceConfiguration * soap_new_req___trt__GetAudioSourceConfiguration( - struct soap *soap) -{ - struct __trt__GetAudioSourceConfiguration *_p = ::soap_new___trt__GetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioSourceConfiguration * soap_new_set___trt__GetAudioSourceConfiguration( - struct soap *soap, - _trt__GetAudioSourceConfiguration *trt__GetAudioSourceConfiguration) -{ - struct __trt__GetAudioSourceConfiguration *_p = ::soap_new___trt__GetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__GetAudioSourceConfiguration(soap, _p); - _p->trt__GetAudioSourceConfiguration = trt__GetAudioSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSourceConfiguration(struct soap*, const struct __trt__GetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetAudioSourceConfiguration(struct soap *soap, struct __trt__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfiguration(soap, p, "-trt:GetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfiguration(soap, p, "-trt:GetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfiguration(soap, p, "-trt:GetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfiguration(soap, p, "-trt:GetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__GetAudioSourceConfiguration(struct soap*, struct __trt__GetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetAudioSourceConfiguration(struct soap *soap, struct __trt__GetAudioSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetAudioSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioSourceConfiguration(struct soap *soap, struct __trt__GetAudioSourceConfiguration *p) -{ - if (::soap_read___trt__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__GetVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoEncoderConfiguration(struct soap*, struct __trt__GetVideoEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoEncoderConfiguration(struct soap*, const struct __trt__GetVideoEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoEncoderConfiguration(struct soap*, const char*, int, const struct __trt__GetVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__GetVideoEncoderConfiguration(struct soap*, const char*, struct __trt__GetVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoEncoderConfiguration * soap_new___trt__GetVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoEncoderConfiguration * soap_new_req___trt__GetVideoEncoderConfiguration( - struct soap *soap) -{ - struct __trt__GetVideoEncoderConfiguration *_p = ::soap_new___trt__GetVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__GetVideoEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoEncoderConfiguration * soap_new_set___trt__GetVideoEncoderConfiguration( - struct soap *soap, - _trt__GetVideoEncoderConfiguration *trt__GetVideoEncoderConfiguration) -{ - struct __trt__GetVideoEncoderConfiguration *_p = ::soap_new___trt__GetVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__GetVideoEncoderConfiguration(soap, _p); - _p->trt__GetVideoEncoderConfiguration = trt__GetVideoEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoEncoderConfiguration(struct soap*, const struct __trt__GetVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetVideoEncoderConfiguration(struct soap *soap, struct __trt__GetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfiguration(soap, p, "-trt:GetVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfiguration(soap, p, "-trt:GetVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfiguration(soap, p, "-trt:GetVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfiguration(soap, p, "-trt:GetVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__GetVideoEncoderConfiguration(struct soap*, struct __trt__GetVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetVideoEncoderConfiguration(struct soap *soap, struct __trt__GetVideoEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetVideoEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoEncoderConfiguration(struct soap *soap, struct __trt__GetVideoEncoderConfiguration *p) -{ - if (::soap_read___trt__GetVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__GetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceConfiguration(struct soap*, struct __trt__GetVideoSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceConfiguration(struct soap*, const struct __trt__GetVideoSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceConfiguration(struct soap*, const char*, int, const struct __trt__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__GetVideoSourceConfiguration(struct soap*, const char*, struct __trt__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoSourceConfiguration * soap_new___trt__GetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoSourceConfiguration * soap_new_req___trt__GetVideoSourceConfiguration( - struct soap *soap) -{ - struct __trt__GetVideoSourceConfiguration *_p = ::soap_new___trt__GetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoSourceConfiguration * soap_new_set___trt__GetVideoSourceConfiguration( - struct soap *soap, - _trt__GetVideoSourceConfiguration *trt__GetVideoSourceConfiguration) -{ - struct __trt__GetVideoSourceConfiguration *_p = ::soap_new___trt__GetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceConfiguration(soap, _p); - _p->trt__GetVideoSourceConfiguration = trt__GetVideoSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceConfiguration(struct soap*, const struct __trt__GetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__GetVideoSourceConfiguration(struct soap *soap, struct __trt__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfiguration(soap, p, "-trt:GetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfiguration(soap, p, "-trt:GetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfiguration(soap, p, "-trt:GetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfiguration(soap, p, "-trt:GetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__GetVideoSourceConfiguration(struct soap*, struct __trt__GetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__GetVideoSourceConfiguration(struct soap *soap, struct __trt__GetVideoSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__GetVideoSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoSourceConfiguration(struct soap *soap, struct __trt__GetVideoSourceConfiguration *p) -{ - if (::soap_read___trt__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioDecoderConfigurations_DEFINED -#define SOAP_TYPE___trt__GetAudioDecoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioDecoderConfigurations(struct soap*, struct __trt__GetAudioDecoderConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioDecoderConfigurations(struct soap*, const struct __trt__GetAudioDecoderConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioDecoderConfigurations(struct soap*, const char*, int, const struct __trt__GetAudioDecoderConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioDecoderConfigurations(struct soap*, const char*, struct __trt__GetAudioDecoderConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetAudioDecoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioDecoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioDecoderConfigurations * soap_new___trt__GetAudioDecoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioDecoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioDecoderConfigurations * soap_new_req___trt__GetAudioDecoderConfigurations( - struct soap *soap) -{ - struct __trt__GetAudioDecoderConfigurations *_p = ::soap_new___trt__GetAudioDecoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioDecoderConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioDecoderConfigurations * soap_new_set___trt__GetAudioDecoderConfigurations( - struct soap *soap, - _trt__GetAudioDecoderConfigurations *trt__GetAudioDecoderConfigurations) -{ - struct __trt__GetAudioDecoderConfigurations *_p = ::soap_new___trt__GetAudioDecoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioDecoderConfigurations(soap, _p); - _p->trt__GetAudioDecoderConfigurations = trt__GetAudioDecoderConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioDecoderConfigurations(struct soap*, const struct __trt__GetAudioDecoderConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetAudioDecoderConfigurations(struct soap *soap, struct __trt__GetAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurations(soap, p, "-trt:GetAudioDecoderConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurations(soap, p, "-trt:GetAudioDecoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurations(soap, p, "-trt:GetAudioDecoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioDecoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioDecoderConfigurations(soap, p, "-trt:GetAudioDecoderConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioDecoderConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioDecoderConfigurations(struct soap*, struct __trt__GetAudioDecoderConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetAudioDecoderConfigurations(struct soap *soap, struct __trt__GetAudioDecoderConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetAudioDecoderConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioDecoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioDecoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioDecoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioDecoderConfigurations(struct soap *soap, struct __trt__GetAudioDecoderConfigurations *p) -{ - if (::soap_read___trt__GetAudioDecoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioOutputConfigurations_DEFINED -#define SOAP_TYPE___trt__GetAudioOutputConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputConfigurations(struct soap*, struct __trt__GetAudioOutputConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputConfigurations(struct soap*, const struct __trt__GetAudioOutputConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputConfigurations(struct soap*, const char*, int, const struct __trt__GetAudioOutputConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioOutputConfigurations(struct soap*, const char*, struct __trt__GetAudioOutputConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetAudioOutputConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioOutputConfigurations * soap_new___trt__GetAudioOutputConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioOutputConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioOutputConfigurations * soap_new_req___trt__GetAudioOutputConfigurations( - struct soap *soap) -{ - struct __trt__GetAudioOutputConfigurations *_p = ::soap_new___trt__GetAudioOutputConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioOutputConfigurations * soap_new_set___trt__GetAudioOutputConfigurations( - struct soap *soap, - _trt__GetAudioOutputConfigurations *trt__GetAudioOutputConfigurations) -{ - struct __trt__GetAudioOutputConfigurations *_p = ::soap_new___trt__GetAudioOutputConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputConfigurations(soap, _p); - _p->trt__GetAudioOutputConfigurations = trt__GetAudioOutputConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputConfigurations(struct soap*, const struct __trt__GetAudioOutputConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetAudioOutputConfigurations(struct soap *soap, struct __trt__GetAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurations(soap, p, "-trt:GetAudioOutputConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurations(soap, p, "-trt:GetAudioOutputConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurations(soap, p, "-trt:GetAudioOutputConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioOutputConfigurations(soap, p, "-trt:GetAudioOutputConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioOutputConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioOutputConfigurations(struct soap*, struct __trt__GetAudioOutputConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetAudioOutputConfigurations(struct soap *soap, struct __trt__GetAudioOutputConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetAudioOutputConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioOutputConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioOutputConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioOutputConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioOutputConfigurations(struct soap *soap, struct __trt__GetAudioOutputConfigurations *p) -{ - if (::soap_read___trt__GetAudioOutputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetMetadataConfigurations_DEFINED -#define SOAP_TYPE___trt__GetMetadataConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetMetadataConfigurations(struct soap*, struct __trt__GetMetadataConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetMetadataConfigurations(struct soap*, const struct __trt__GetMetadataConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetMetadataConfigurations(struct soap*, const char*, int, const struct __trt__GetMetadataConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetMetadataConfigurations * SOAP_FMAC4 soap_in___trt__GetMetadataConfigurations(struct soap*, const char*, struct __trt__GetMetadataConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetMetadataConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetMetadataConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetMetadataConfigurations * soap_new___trt__GetMetadataConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetMetadataConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetMetadataConfigurations * soap_new_req___trt__GetMetadataConfigurations( - struct soap *soap) -{ - struct __trt__GetMetadataConfigurations *_p = ::soap_new___trt__GetMetadataConfigurations(soap); - if (_p) - { ::soap_default___trt__GetMetadataConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetMetadataConfigurations * soap_new_set___trt__GetMetadataConfigurations( - struct soap *soap, - _trt__GetMetadataConfigurations *trt__GetMetadataConfigurations) -{ - struct __trt__GetMetadataConfigurations *_p = ::soap_new___trt__GetMetadataConfigurations(soap); - if (_p) - { ::soap_default___trt__GetMetadataConfigurations(soap, _p); - _p->trt__GetMetadataConfigurations = trt__GetMetadataConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetMetadataConfigurations(struct soap*, const struct __trt__GetMetadataConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetMetadataConfigurations(struct soap *soap, struct __trt__GetMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurations(soap, p, "-trt:GetMetadataConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurations(soap, p, "-trt:GetMetadataConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurations(soap, p, "-trt:GetMetadataConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetMetadataConfigurations(soap, p), 0) || ::soap_put___trt__GetMetadataConfigurations(soap, p, "-trt:GetMetadataConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetMetadataConfigurations * SOAP_FMAC4 soap_get___trt__GetMetadataConfigurations(struct soap*, struct __trt__GetMetadataConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetMetadataConfigurations(struct soap *soap, struct __trt__GetMetadataConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetMetadataConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetMetadataConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetMetadataConfigurations(struct soap *soap, const char *URL, struct __trt__GetMetadataConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetMetadataConfigurations(struct soap *soap, struct __trt__GetMetadataConfigurations *p) -{ - if (::soap_read___trt__GetMetadataConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoAnalyticsConfigurations_DEFINED -#define SOAP_TYPE___trt__GetVideoAnalyticsConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoAnalyticsConfigurations(struct soap*, struct __trt__GetVideoAnalyticsConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoAnalyticsConfigurations(struct soap*, const struct __trt__GetVideoAnalyticsConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoAnalyticsConfigurations(struct soap*, const char*, int, const struct __trt__GetVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_in___trt__GetVideoAnalyticsConfigurations(struct soap*, const char*, struct __trt__GetVideoAnalyticsConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetVideoAnalyticsConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetVideoAnalyticsConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoAnalyticsConfigurations * soap_new___trt__GetVideoAnalyticsConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoAnalyticsConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoAnalyticsConfigurations * soap_new_req___trt__GetVideoAnalyticsConfigurations( - struct soap *soap) -{ - struct __trt__GetVideoAnalyticsConfigurations *_p = ::soap_new___trt__GetVideoAnalyticsConfigurations(soap); - if (_p) - { ::soap_default___trt__GetVideoAnalyticsConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoAnalyticsConfigurations * soap_new_set___trt__GetVideoAnalyticsConfigurations( - struct soap *soap, - _trt__GetVideoAnalyticsConfigurations *trt__GetVideoAnalyticsConfigurations) -{ - struct __trt__GetVideoAnalyticsConfigurations *_p = ::soap_new___trt__GetVideoAnalyticsConfigurations(soap); - if (_p) - { ::soap_default___trt__GetVideoAnalyticsConfigurations(soap, _p); - _p->trt__GetVideoAnalyticsConfigurations = trt__GetVideoAnalyticsConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoAnalyticsConfigurations(struct soap*, const struct __trt__GetVideoAnalyticsConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfigurations(soap, p, "-trt:GetVideoAnalyticsConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfigurations(soap, p, "-trt:GetVideoAnalyticsConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfigurations(soap, p, "-trt:GetVideoAnalyticsConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoAnalyticsConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoAnalyticsConfigurations(soap, p, "-trt:GetVideoAnalyticsConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoAnalyticsConfigurations * SOAP_FMAC4 soap_get___trt__GetVideoAnalyticsConfigurations(struct soap*, struct __trt__GetVideoAnalyticsConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetVideoAnalyticsConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetVideoAnalyticsConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoAnalyticsConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoAnalyticsConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoAnalyticsConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoAnalyticsConfigurations(struct soap *soap, struct __trt__GetVideoAnalyticsConfigurations *p) -{ - if (::soap_read___trt__GetVideoAnalyticsConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioEncoderConfigurations_DEFINED -#define SOAP_TYPE___trt__GetAudioEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioEncoderConfigurations(struct soap*, struct __trt__GetAudioEncoderConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioEncoderConfigurations(struct soap*, const struct __trt__GetAudioEncoderConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioEncoderConfigurations(struct soap*, const char*, int, const struct __trt__GetAudioEncoderConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioEncoderConfigurations(struct soap*, const char*, struct __trt__GetAudioEncoderConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetAudioEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioEncoderConfigurations * soap_new___trt__GetAudioEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioEncoderConfigurations * soap_new_req___trt__GetAudioEncoderConfigurations( - struct soap *soap) -{ - struct __trt__GetAudioEncoderConfigurations *_p = ::soap_new___trt__GetAudioEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioEncoderConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioEncoderConfigurations * soap_new_set___trt__GetAudioEncoderConfigurations( - struct soap *soap, - _trt__GetAudioEncoderConfigurations *trt__GetAudioEncoderConfigurations) -{ - struct __trt__GetAudioEncoderConfigurations *_p = ::soap_new___trt__GetAudioEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioEncoderConfigurations(soap, _p); - _p->trt__GetAudioEncoderConfigurations = trt__GetAudioEncoderConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioEncoderConfigurations(struct soap*, const struct __trt__GetAudioEncoderConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetAudioEncoderConfigurations(struct soap *soap, struct __trt__GetAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurations(soap, p, "-trt:GetAudioEncoderConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurations(soap, p, "-trt:GetAudioEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurations(soap, p, "-trt:GetAudioEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioEncoderConfigurations(soap, p, "-trt:GetAudioEncoderConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioEncoderConfigurations(struct soap*, struct __trt__GetAudioEncoderConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetAudioEncoderConfigurations(struct soap *soap, struct __trt__GetAudioEncoderConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetAudioEncoderConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioEncoderConfigurations(struct soap *soap, struct __trt__GetAudioEncoderConfigurations *p) -{ - if (::soap_read___trt__GetAudioEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioSourceConfigurations_DEFINED -#define SOAP_TYPE___trt__GetAudioSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSourceConfigurations(struct soap*, struct __trt__GetAudioSourceConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSourceConfigurations(struct soap*, const struct __trt__GetAudioSourceConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSourceConfigurations(struct soap*, const char*, int, const struct __trt__GetAudioSourceConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetAudioSourceConfigurations(struct soap*, const char*, struct __trt__GetAudioSourceConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetAudioSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetAudioSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioSourceConfigurations * soap_new___trt__GetAudioSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioSourceConfigurations * soap_new_req___trt__GetAudioSourceConfigurations( - struct soap *soap) -{ - struct __trt__GetAudioSourceConfigurations *_p = ::soap_new___trt__GetAudioSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioSourceConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioSourceConfigurations * soap_new_set___trt__GetAudioSourceConfigurations( - struct soap *soap, - _trt__GetAudioSourceConfigurations *trt__GetAudioSourceConfigurations) -{ - struct __trt__GetAudioSourceConfigurations *_p = ::soap_new___trt__GetAudioSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetAudioSourceConfigurations(soap, _p); - _p->trt__GetAudioSourceConfigurations = trt__GetAudioSourceConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSourceConfigurations(struct soap*, const struct __trt__GetAudioSourceConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetAudioSourceConfigurations(struct soap *soap, struct __trt__GetAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurations(soap, p, "-trt:GetAudioSourceConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurations(soap, p, "-trt:GetAudioSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurations(soap, p, "-trt:GetAudioSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetAudioSourceConfigurations(soap, p, "-trt:GetAudioSourceConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetAudioSourceConfigurations(struct soap*, struct __trt__GetAudioSourceConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetAudioSourceConfigurations(struct soap *soap, struct __trt__GetAudioSourceConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetAudioSourceConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetAudioSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioSourceConfigurations(struct soap *soap, struct __trt__GetAudioSourceConfigurations *p) -{ - if (::soap_read___trt__GetAudioSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoEncoderConfigurations_DEFINED -#define SOAP_TYPE___trt__GetVideoEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoEncoderConfigurations(struct soap*, struct __trt__GetVideoEncoderConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoEncoderConfigurations(struct soap*, const struct __trt__GetVideoEncoderConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoEncoderConfigurations(struct soap*, const char*, int, const struct __trt__GetVideoEncoderConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_in___trt__GetVideoEncoderConfigurations(struct soap*, const char*, struct __trt__GetVideoEncoderConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetVideoEncoderConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetVideoEncoderConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoEncoderConfigurations * soap_new___trt__GetVideoEncoderConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoEncoderConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoEncoderConfigurations * soap_new_req___trt__GetVideoEncoderConfigurations( - struct soap *soap) -{ - struct __trt__GetVideoEncoderConfigurations *_p = ::soap_new___trt__GetVideoEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetVideoEncoderConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoEncoderConfigurations * soap_new_set___trt__GetVideoEncoderConfigurations( - struct soap *soap, - _trt__GetVideoEncoderConfigurations *trt__GetVideoEncoderConfigurations) -{ - struct __trt__GetVideoEncoderConfigurations *_p = ::soap_new___trt__GetVideoEncoderConfigurations(soap); - if (_p) - { ::soap_default___trt__GetVideoEncoderConfigurations(soap, _p); - _p->trt__GetVideoEncoderConfigurations = trt__GetVideoEncoderConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoEncoderConfigurations(struct soap*, const struct __trt__GetVideoEncoderConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetVideoEncoderConfigurations(struct soap *soap, struct __trt__GetVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurations(soap, p, "-trt:GetVideoEncoderConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurations(soap, p, "-trt:GetVideoEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurations(soap, p, "-trt:GetVideoEncoderConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoEncoderConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoEncoderConfigurations(soap, p, "-trt:GetVideoEncoderConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoEncoderConfigurations * SOAP_FMAC4 soap_get___trt__GetVideoEncoderConfigurations(struct soap*, struct __trt__GetVideoEncoderConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetVideoEncoderConfigurations(struct soap *soap, struct __trt__GetVideoEncoderConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetVideoEncoderConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoEncoderConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoEncoderConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoEncoderConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoEncoderConfigurations(struct soap *soap, struct __trt__GetVideoEncoderConfigurations *p) -{ - if (::soap_read___trt__GetVideoEncoderConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoSourceConfigurations_DEFINED -#define SOAP_TYPE___trt__GetVideoSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSourceConfigurations(struct soap*, struct __trt__GetVideoSourceConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSourceConfigurations(struct soap*, const struct __trt__GetVideoSourceConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSourceConfigurations(struct soap*, const char*, int, const struct __trt__GetVideoSourceConfigurations *, const char*); -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_in___trt__GetVideoSourceConfigurations(struct soap*, const char*, struct __trt__GetVideoSourceConfigurations *, const char*); -SOAP_FMAC1 struct __trt__GetVideoSourceConfigurations * SOAP_FMAC2 soap_instantiate___trt__GetVideoSourceConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoSourceConfigurations * soap_new___trt__GetVideoSourceConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoSourceConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoSourceConfigurations * soap_new_req___trt__GetVideoSourceConfigurations( - struct soap *soap) -{ - struct __trt__GetVideoSourceConfigurations *_p = ::soap_new___trt__GetVideoSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceConfigurations(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoSourceConfigurations * soap_new_set___trt__GetVideoSourceConfigurations( - struct soap *soap, - _trt__GetVideoSourceConfigurations *trt__GetVideoSourceConfigurations) -{ - struct __trt__GetVideoSourceConfigurations *_p = ::soap_new___trt__GetVideoSourceConfigurations(soap); - if (_p) - { ::soap_default___trt__GetVideoSourceConfigurations(soap, _p); - _p->trt__GetVideoSourceConfigurations = trt__GetVideoSourceConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSourceConfigurations(struct soap*, const struct __trt__GetVideoSourceConfigurations *, const char*, const char*); - -inline int soap_write___trt__GetVideoSourceConfigurations(struct soap *soap, struct __trt__GetVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurations(soap, p, "-trt:GetVideoSourceConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurations(soap, p, "-trt:GetVideoSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurations(soap, p, "-trt:GetVideoSourceConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSourceConfigurations(soap, p), 0) || ::soap_put___trt__GetVideoSourceConfigurations(soap, p, "-trt:GetVideoSourceConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoSourceConfigurations * SOAP_FMAC4 soap_get___trt__GetVideoSourceConfigurations(struct soap*, struct __trt__GetVideoSourceConfigurations *, const char*, const char*); - -inline int soap_read___trt__GetVideoSourceConfigurations(struct soap *soap, struct __trt__GetVideoSourceConfigurations *p) -{ - if (p) - { ::soap_default___trt__GetVideoSourceConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoSourceConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoSourceConfigurations(struct soap *soap, const char *URL, struct __trt__GetVideoSourceConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoSourceConfigurations(struct soap *soap, struct __trt__GetVideoSourceConfigurations *p) -{ - if (::soap_read___trt__GetVideoSourceConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__DeleteProfile_DEFINED -#define SOAP_TYPE___trt__DeleteProfile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__DeleteProfile(struct soap*, struct __trt__DeleteProfile *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__DeleteProfile(struct soap*, const struct __trt__DeleteProfile *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__DeleteProfile(struct soap*, const char*, int, const struct __trt__DeleteProfile *, const char*); -SOAP_FMAC3 struct __trt__DeleteProfile * SOAP_FMAC4 soap_in___trt__DeleteProfile(struct soap*, const char*, struct __trt__DeleteProfile *, const char*); -SOAP_FMAC1 struct __trt__DeleteProfile * SOAP_FMAC2 soap_instantiate___trt__DeleteProfile(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__DeleteProfile * soap_new___trt__DeleteProfile(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__DeleteProfile(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__DeleteProfile * soap_new_req___trt__DeleteProfile( - struct soap *soap) -{ - struct __trt__DeleteProfile *_p = ::soap_new___trt__DeleteProfile(soap); - if (_p) - { ::soap_default___trt__DeleteProfile(soap, _p); - } - return _p; -} - -inline struct __trt__DeleteProfile * soap_new_set___trt__DeleteProfile( - struct soap *soap, - _trt__DeleteProfile *trt__DeleteProfile) -{ - struct __trt__DeleteProfile *_p = ::soap_new___trt__DeleteProfile(soap); - if (_p) - { ::soap_default___trt__DeleteProfile(soap, _p); - _p->trt__DeleteProfile = trt__DeleteProfile; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__DeleteProfile(struct soap*, const struct __trt__DeleteProfile *, const char*, const char*); - -inline int soap_write___trt__DeleteProfile(struct soap *soap, struct __trt__DeleteProfile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__DeleteProfile(soap, p), 0) || ::soap_put___trt__DeleteProfile(soap, p, "-trt:DeleteProfile", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__DeleteProfile(struct soap *soap, const char *URL, struct __trt__DeleteProfile const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__DeleteProfile(soap, p), 0) || ::soap_put___trt__DeleteProfile(soap, p, "-trt:DeleteProfile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__DeleteProfile(struct soap *soap, const char *URL, struct __trt__DeleteProfile const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__DeleteProfile(soap, p), 0) || ::soap_put___trt__DeleteProfile(soap, p, "-trt:DeleteProfile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__DeleteProfile(struct soap *soap, const char *URL, struct __trt__DeleteProfile const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__DeleteProfile(soap, p), 0) || ::soap_put___trt__DeleteProfile(soap, p, "-trt:DeleteProfile", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__DeleteProfile * SOAP_FMAC4 soap_get___trt__DeleteProfile(struct soap*, struct __trt__DeleteProfile *, const char*, const char*); - -inline int soap_read___trt__DeleteProfile(struct soap *soap, struct __trt__DeleteProfile *p) -{ - if (p) - { ::soap_default___trt__DeleteProfile(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__DeleteProfile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__DeleteProfile(struct soap *soap, const char *URL, struct __trt__DeleteProfile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__DeleteProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__DeleteProfile(struct soap *soap, struct __trt__DeleteProfile *p) -{ - if (::soap_read___trt__DeleteProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioDecoderConfiguration(struct soap*, struct __trt__RemoveAudioDecoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioDecoderConfiguration(struct soap*, const struct __trt__RemoveAudioDecoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioDecoderConfiguration(struct soap*, const char*, int, const struct __trt__RemoveAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioDecoderConfiguration(struct soap*, const char*, struct __trt__RemoveAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveAudioDecoderConfiguration * soap_new___trt__RemoveAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveAudioDecoderConfiguration * soap_new_req___trt__RemoveAudioDecoderConfiguration( - struct soap *soap) -{ - struct __trt__RemoveAudioDecoderConfiguration *_p = ::soap_new___trt__RemoveAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioDecoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveAudioDecoderConfiguration * soap_new_set___trt__RemoveAudioDecoderConfiguration( - struct soap *soap, - _trt__RemoveAudioDecoderConfiguration *trt__RemoveAudioDecoderConfiguration) -{ - struct __trt__RemoveAudioDecoderConfiguration *_p = ::soap_new___trt__RemoveAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioDecoderConfiguration(soap, _p); - _p->trt__RemoveAudioDecoderConfiguration = trt__RemoveAudioDecoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioDecoderConfiguration(struct soap*, const struct __trt__RemoveAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveAudioDecoderConfiguration(struct soap *soap, struct __trt__RemoveAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioDecoderConfiguration(soap, p, "-trt:RemoveAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioDecoderConfiguration(soap, p, "-trt:RemoveAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioDecoderConfiguration(soap, p, "-trt:RemoveAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioDecoderConfiguration(soap, p, "-trt:RemoveAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioDecoderConfiguration(struct soap*, struct __trt__RemoveAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveAudioDecoderConfiguration(struct soap *soap, struct __trt__RemoveAudioDecoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveAudioDecoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveAudioDecoderConfiguration(struct soap *soap, struct __trt__RemoveAudioDecoderConfiguration *p) -{ - if (::soap_read___trt__RemoveAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveAudioOutputConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioOutputConfiguration(struct soap*, struct __trt__RemoveAudioOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioOutputConfiguration(struct soap*, const struct __trt__RemoveAudioOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioOutputConfiguration(struct soap*, const char*, int, const struct __trt__RemoveAudioOutputConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioOutputConfiguration(struct soap*, const char*, struct __trt__RemoveAudioOutputConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveAudioOutputConfiguration * soap_new___trt__RemoveAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveAudioOutputConfiguration * soap_new_req___trt__RemoveAudioOutputConfiguration( - struct soap *soap) -{ - struct __trt__RemoveAudioOutputConfiguration *_p = ::soap_new___trt__RemoveAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveAudioOutputConfiguration * soap_new_set___trt__RemoveAudioOutputConfiguration( - struct soap *soap, - _trt__RemoveAudioOutputConfiguration *trt__RemoveAudioOutputConfiguration) -{ - struct __trt__RemoveAudioOutputConfiguration *_p = ::soap_new___trt__RemoveAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioOutputConfiguration(soap, _p); - _p->trt__RemoveAudioOutputConfiguration = trt__RemoveAudioOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioOutputConfiguration(struct soap*, const struct __trt__RemoveAudioOutputConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveAudioOutputConfiguration(struct soap *soap, struct __trt__RemoveAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioOutputConfiguration(soap, p, "-trt:RemoveAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioOutputConfiguration(soap, p, "-trt:RemoveAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioOutputConfiguration(soap, p, "-trt:RemoveAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioOutputConfiguration(soap, p, "-trt:RemoveAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioOutputConfiguration(struct soap*, struct __trt__RemoveAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveAudioOutputConfiguration(struct soap *soap, struct __trt__RemoveAudioOutputConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveAudioOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveAudioOutputConfiguration(struct soap *soap, struct __trt__RemoveAudioOutputConfiguration *p) -{ - if (::soap_read___trt__RemoveAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveMetadataConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveMetadataConfiguration(struct soap*, struct __trt__RemoveMetadataConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveMetadataConfiguration(struct soap*, const struct __trt__RemoveMetadataConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveMetadataConfiguration(struct soap*, const char*, int, const struct __trt__RemoveMetadataConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_in___trt__RemoveMetadataConfiguration(struct soap*, const char*, struct __trt__RemoveMetadataConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveMetadataConfiguration * soap_new___trt__RemoveMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveMetadataConfiguration * soap_new_req___trt__RemoveMetadataConfiguration( - struct soap *soap) -{ - struct __trt__RemoveMetadataConfiguration *_p = ::soap_new___trt__RemoveMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveMetadataConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveMetadataConfiguration * soap_new_set___trt__RemoveMetadataConfiguration( - struct soap *soap, - _trt__RemoveMetadataConfiguration *trt__RemoveMetadataConfiguration) -{ - struct __trt__RemoveMetadataConfiguration *_p = ::soap_new___trt__RemoveMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveMetadataConfiguration(soap, _p); - _p->trt__RemoveMetadataConfiguration = trt__RemoveMetadataConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveMetadataConfiguration(struct soap*, const struct __trt__RemoveMetadataConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveMetadataConfiguration(struct soap *soap, struct __trt__RemoveMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveMetadataConfiguration(soap, p), 0) || ::soap_put___trt__RemoveMetadataConfiguration(soap, p, "-trt:RemoveMetadataConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveMetadataConfiguration(soap, p), 0) || ::soap_put___trt__RemoveMetadataConfiguration(soap, p, "-trt:RemoveMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveMetadataConfiguration(soap, p), 0) || ::soap_put___trt__RemoveMetadataConfiguration(soap, p, "-trt:RemoveMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveMetadataConfiguration(soap, p), 0) || ::soap_put___trt__RemoveMetadataConfiguration(soap, p, "-trt:RemoveMetadataConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveMetadataConfiguration * SOAP_FMAC4 soap_get___trt__RemoveMetadataConfiguration(struct soap*, struct __trt__RemoveMetadataConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveMetadataConfiguration(struct soap *soap, struct __trt__RemoveMetadataConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveMetadataConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveMetadataConfiguration(struct soap *soap, struct __trt__RemoveMetadataConfiguration *p) -{ - if (::soap_read___trt__RemoveMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveVideoAnalyticsConfiguration(struct soap*, struct __trt__RemoveVideoAnalyticsConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveVideoAnalyticsConfiguration(struct soap*, const struct __trt__RemoveVideoAnalyticsConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveVideoAnalyticsConfiguration(struct soap*, const char*, int, const struct __trt__RemoveVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__RemoveVideoAnalyticsConfiguration(struct soap*, const char*, struct __trt__RemoveVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveVideoAnalyticsConfiguration * soap_new___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveVideoAnalyticsConfiguration * soap_new_req___trt__RemoveVideoAnalyticsConfiguration( - struct soap *soap) -{ - struct __trt__RemoveVideoAnalyticsConfiguration *_p = ::soap_new___trt__RemoveVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveVideoAnalyticsConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveVideoAnalyticsConfiguration * soap_new_set___trt__RemoveVideoAnalyticsConfiguration( - struct soap *soap, - _trt__RemoveVideoAnalyticsConfiguration *trt__RemoveVideoAnalyticsConfiguration) -{ - struct __trt__RemoveVideoAnalyticsConfiguration *_p = ::soap_new___trt__RemoveVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveVideoAnalyticsConfiguration(soap, _p); - _p->trt__RemoveVideoAnalyticsConfiguration = trt__RemoveVideoAnalyticsConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveVideoAnalyticsConfiguration(struct soap*, const struct __trt__RemoveVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, struct __trt__RemoveVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoAnalyticsConfiguration(soap, p, "-trt:RemoveVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoAnalyticsConfiguration(soap, p, "-trt:RemoveVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoAnalyticsConfiguration(soap, p, "-trt:RemoveVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoAnalyticsConfiguration(soap, p, "-trt:RemoveVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__RemoveVideoAnalyticsConfiguration(struct soap*, struct __trt__RemoveVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, struct __trt__RemoveVideoAnalyticsConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveVideoAnalyticsConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveVideoAnalyticsConfiguration(struct soap *soap, struct __trt__RemoveVideoAnalyticsConfiguration *p) -{ - if (::soap_read___trt__RemoveVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemovePTZConfiguration_DEFINED -#define SOAP_TYPE___trt__RemovePTZConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemovePTZConfiguration(struct soap*, struct __trt__RemovePTZConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemovePTZConfiguration(struct soap*, const struct __trt__RemovePTZConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemovePTZConfiguration(struct soap*, const char*, int, const struct __trt__RemovePTZConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemovePTZConfiguration * SOAP_FMAC4 soap_in___trt__RemovePTZConfiguration(struct soap*, const char*, struct __trt__RemovePTZConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemovePTZConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemovePTZConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemovePTZConfiguration * soap_new___trt__RemovePTZConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemovePTZConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemovePTZConfiguration * soap_new_req___trt__RemovePTZConfiguration( - struct soap *soap) -{ - struct __trt__RemovePTZConfiguration *_p = ::soap_new___trt__RemovePTZConfiguration(soap); - if (_p) - { ::soap_default___trt__RemovePTZConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemovePTZConfiguration * soap_new_set___trt__RemovePTZConfiguration( - struct soap *soap, - _trt__RemovePTZConfiguration *trt__RemovePTZConfiguration) -{ - struct __trt__RemovePTZConfiguration *_p = ::soap_new___trt__RemovePTZConfiguration(soap); - if (_p) - { ::soap_default___trt__RemovePTZConfiguration(soap, _p); - _p->trt__RemovePTZConfiguration = trt__RemovePTZConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemovePTZConfiguration(struct soap*, const struct __trt__RemovePTZConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemovePTZConfiguration(struct soap *soap, struct __trt__RemovePTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemovePTZConfiguration(soap, p), 0) || ::soap_put___trt__RemovePTZConfiguration(soap, p, "-trt:RemovePTZConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemovePTZConfiguration(struct soap *soap, const char *URL, struct __trt__RemovePTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemovePTZConfiguration(soap, p), 0) || ::soap_put___trt__RemovePTZConfiguration(soap, p, "-trt:RemovePTZConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemovePTZConfiguration(struct soap *soap, const char *URL, struct __trt__RemovePTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemovePTZConfiguration(soap, p), 0) || ::soap_put___trt__RemovePTZConfiguration(soap, p, "-trt:RemovePTZConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemovePTZConfiguration(struct soap *soap, const char *URL, struct __trt__RemovePTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemovePTZConfiguration(soap, p), 0) || ::soap_put___trt__RemovePTZConfiguration(soap, p, "-trt:RemovePTZConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemovePTZConfiguration * SOAP_FMAC4 soap_get___trt__RemovePTZConfiguration(struct soap*, struct __trt__RemovePTZConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemovePTZConfiguration(struct soap *soap, struct __trt__RemovePTZConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemovePTZConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemovePTZConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemovePTZConfiguration(struct soap *soap, const char *URL, struct __trt__RemovePTZConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemovePTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemovePTZConfiguration(struct soap *soap, struct __trt__RemovePTZConfiguration *p) -{ - if (::soap_read___trt__RemovePTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveAudioSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioSourceConfiguration(struct soap*, struct __trt__RemoveAudioSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioSourceConfiguration(struct soap*, const struct __trt__RemoveAudioSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioSourceConfiguration(struct soap*, const char*, int, const struct __trt__RemoveAudioSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioSourceConfiguration(struct soap*, const char*, struct __trt__RemoveAudioSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveAudioSourceConfiguration * soap_new___trt__RemoveAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveAudioSourceConfiguration * soap_new_req___trt__RemoveAudioSourceConfiguration( - struct soap *soap) -{ - struct __trt__RemoveAudioSourceConfiguration *_p = ::soap_new___trt__RemoveAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveAudioSourceConfiguration * soap_new_set___trt__RemoveAudioSourceConfiguration( - struct soap *soap, - _trt__RemoveAudioSourceConfiguration *trt__RemoveAudioSourceConfiguration) -{ - struct __trt__RemoveAudioSourceConfiguration *_p = ::soap_new___trt__RemoveAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioSourceConfiguration(soap, _p); - _p->trt__RemoveAudioSourceConfiguration = trt__RemoveAudioSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioSourceConfiguration(struct soap*, const struct __trt__RemoveAudioSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveAudioSourceConfiguration(struct soap *soap, struct __trt__RemoveAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioSourceConfiguration(soap, p, "-trt:RemoveAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioSourceConfiguration(soap, p, "-trt:RemoveAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioSourceConfiguration(soap, p, "-trt:RemoveAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioSourceConfiguration(soap, p, "-trt:RemoveAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioSourceConfiguration(struct soap*, struct __trt__RemoveAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveAudioSourceConfiguration(struct soap *soap, struct __trt__RemoveAudioSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveAudioSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveAudioSourceConfiguration(struct soap *soap, struct __trt__RemoveAudioSourceConfiguration *p) -{ - if (::soap_read___trt__RemoveAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveAudioEncoderConfiguration(struct soap*, struct __trt__RemoveAudioEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveAudioEncoderConfiguration(struct soap*, const struct __trt__RemoveAudioEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveAudioEncoderConfiguration(struct soap*, const char*, int, const struct __trt__RemoveAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__RemoveAudioEncoderConfiguration(struct soap*, const char*, struct __trt__RemoveAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveAudioEncoderConfiguration * soap_new___trt__RemoveAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveAudioEncoderConfiguration * soap_new_req___trt__RemoveAudioEncoderConfiguration( - struct soap *soap) -{ - struct __trt__RemoveAudioEncoderConfiguration *_p = ::soap_new___trt__RemoveAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveAudioEncoderConfiguration * soap_new_set___trt__RemoveAudioEncoderConfiguration( - struct soap *soap, - _trt__RemoveAudioEncoderConfiguration *trt__RemoveAudioEncoderConfiguration) -{ - struct __trt__RemoveAudioEncoderConfiguration *_p = ::soap_new___trt__RemoveAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveAudioEncoderConfiguration(soap, _p); - _p->trt__RemoveAudioEncoderConfiguration = trt__RemoveAudioEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveAudioEncoderConfiguration(struct soap*, const struct __trt__RemoveAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveAudioEncoderConfiguration(struct soap *soap, struct __trt__RemoveAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioEncoderConfiguration(soap, p, "-trt:RemoveAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioEncoderConfiguration(soap, p, "-trt:RemoveAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioEncoderConfiguration(soap, p, "-trt:RemoveAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveAudioEncoderConfiguration(soap, p, "-trt:RemoveAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__RemoveAudioEncoderConfiguration(struct soap*, struct __trt__RemoveAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveAudioEncoderConfiguration(struct soap *soap, struct __trt__RemoveAudioEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveAudioEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveAudioEncoderConfiguration(struct soap *soap, struct __trt__RemoveAudioEncoderConfiguration *p) -{ - if (::soap_read___trt__RemoveAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveVideoSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveVideoSourceConfiguration(struct soap*, struct __trt__RemoveVideoSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveVideoSourceConfiguration(struct soap*, const struct __trt__RemoveVideoSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveVideoSourceConfiguration(struct soap*, const char*, int, const struct __trt__RemoveVideoSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__RemoveVideoSourceConfiguration(struct soap*, const char*, struct __trt__RemoveVideoSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveVideoSourceConfiguration * soap_new___trt__RemoveVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveVideoSourceConfiguration * soap_new_req___trt__RemoveVideoSourceConfiguration( - struct soap *soap) -{ - struct __trt__RemoveVideoSourceConfiguration *_p = ::soap_new___trt__RemoveVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveVideoSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveVideoSourceConfiguration * soap_new_set___trt__RemoveVideoSourceConfiguration( - struct soap *soap, - _trt__RemoveVideoSourceConfiguration *trt__RemoveVideoSourceConfiguration) -{ - struct __trt__RemoveVideoSourceConfiguration *_p = ::soap_new___trt__RemoveVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveVideoSourceConfiguration(soap, _p); - _p->trt__RemoveVideoSourceConfiguration = trt__RemoveVideoSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveVideoSourceConfiguration(struct soap*, const struct __trt__RemoveVideoSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveVideoSourceConfiguration(struct soap *soap, struct __trt__RemoveVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoSourceConfiguration(soap, p, "-trt:RemoveVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoSourceConfiguration(soap, p, "-trt:RemoveVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoSourceConfiguration(soap, p, "-trt:RemoveVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoSourceConfiguration(soap, p, "-trt:RemoveVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__RemoveVideoSourceConfiguration(struct soap*, struct __trt__RemoveVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveVideoSourceConfiguration(struct soap *soap, struct __trt__RemoveVideoSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveVideoSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveVideoSourceConfiguration(struct soap *soap, struct __trt__RemoveVideoSourceConfiguration *p) -{ - if (::soap_read___trt__RemoveVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__RemoveVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__RemoveVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__RemoveVideoEncoderConfiguration(struct soap*, struct __trt__RemoveVideoEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__RemoveVideoEncoderConfiguration(struct soap*, const struct __trt__RemoveVideoEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__RemoveVideoEncoderConfiguration(struct soap*, const char*, int, const struct __trt__RemoveVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__RemoveVideoEncoderConfiguration(struct soap*, const char*, struct __trt__RemoveVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__RemoveVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__RemoveVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__RemoveVideoEncoderConfiguration * soap_new___trt__RemoveVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__RemoveVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__RemoveVideoEncoderConfiguration * soap_new_req___trt__RemoveVideoEncoderConfiguration( - struct soap *soap) -{ - struct __trt__RemoveVideoEncoderConfiguration *_p = ::soap_new___trt__RemoveVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveVideoEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__RemoveVideoEncoderConfiguration * soap_new_set___trt__RemoveVideoEncoderConfiguration( - struct soap *soap, - _trt__RemoveVideoEncoderConfiguration *trt__RemoveVideoEncoderConfiguration) -{ - struct __trt__RemoveVideoEncoderConfiguration *_p = ::soap_new___trt__RemoveVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__RemoveVideoEncoderConfiguration(soap, _p); - _p->trt__RemoveVideoEncoderConfiguration = trt__RemoveVideoEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__RemoveVideoEncoderConfiguration(struct soap*, const struct __trt__RemoveVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__RemoveVideoEncoderConfiguration(struct soap *soap, struct __trt__RemoveVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__RemoveVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoEncoderConfiguration(soap, p, "-trt:RemoveVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoEncoderConfiguration(soap, p, "-trt:RemoveVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoEncoderConfiguration(soap, p, "-trt:RemoveVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__RemoveVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__RemoveVideoEncoderConfiguration(soap, p, "-trt:RemoveVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__RemoveVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__RemoveVideoEncoderConfiguration(struct soap*, struct __trt__RemoveVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__RemoveVideoEncoderConfiguration(struct soap *soap, struct __trt__RemoveVideoEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__RemoveVideoEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__RemoveVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__RemoveVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__RemoveVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__RemoveVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__RemoveVideoEncoderConfiguration(struct soap *soap, struct __trt__RemoveVideoEncoderConfiguration *p) -{ - if (::soap_read___trt__RemoveVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE___trt__AddAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioDecoderConfiguration(struct soap*, struct __trt__AddAudioDecoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioDecoderConfiguration(struct soap*, const struct __trt__AddAudioDecoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioDecoderConfiguration(struct soap*, const char*, int, const struct __trt__AddAudioDecoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioDecoderConfiguration(struct soap*, const char*, struct __trt__AddAudioDecoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddAudioDecoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddAudioDecoderConfiguration * soap_new___trt__AddAudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddAudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddAudioDecoderConfiguration * soap_new_req___trt__AddAudioDecoderConfiguration( - struct soap *soap) -{ - struct __trt__AddAudioDecoderConfiguration *_p = ::soap_new___trt__AddAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioDecoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddAudioDecoderConfiguration * soap_new_set___trt__AddAudioDecoderConfiguration( - struct soap *soap, - _trt__AddAudioDecoderConfiguration *trt__AddAudioDecoderConfiguration) -{ - struct __trt__AddAudioDecoderConfiguration *_p = ::soap_new___trt__AddAudioDecoderConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioDecoderConfiguration(soap, _p); - _p->trt__AddAudioDecoderConfiguration = trt__AddAudioDecoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioDecoderConfiguration(struct soap*, const struct __trt__AddAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddAudioDecoderConfiguration(struct soap *soap, struct __trt__AddAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioDecoderConfiguration(soap, p, "-trt:AddAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioDecoderConfiguration(soap, p, "-trt:AddAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioDecoderConfiguration(soap, p, "-trt:AddAudioDecoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioDecoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioDecoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioDecoderConfiguration(soap, p, "-trt:AddAudioDecoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddAudioDecoderConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioDecoderConfiguration(struct soap*, struct __trt__AddAudioDecoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddAudioDecoderConfiguration(struct soap *soap, struct __trt__AddAudioDecoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddAudioDecoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddAudioDecoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddAudioDecoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioDecoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddAudioDecoderConfiguration(struct soap *soap, struct __trt__AddAudioDecoderConfiguration *p) -{ - if (::soap_read___trt__AddAudioDecoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddAudioOutputConfiguration_DEFINED -#define SOAP_TYPE___trt__AddAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioOutputConfiguration(struct soap*, struct __trt__AddAudioOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioOutputConfiguration(struct soap*, const struct __trt__AddAudioOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioOutputConfiguration(struct soap*, const char*, int, const struct __trt__AddAudioOutputConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioOutputConfiguration(struct soap*, const char*, struct __trt__AddAudioOutputConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddAudioOutputConfiguration * soap_new___trt__AddAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddAudioOutputConfiguration * soap_new_req___trt__AddAudioOutputConfiguration( - struct soap *soap) -{ - struct __trt__AddAudioOutputConfiguration *_p = ::soap_new___trt__AddAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddAudioOutputConfiguration * soap_new_set___trt__AddAudioOutputConfiguration( - struct soap *soap, - _trt__AddAudioOutputConfiguration *trt__AddAudioOutputConfiguration) -{ - struct __trt__AddAudioOutputConfiguration *_p = ::soap_new___trt__AddAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioOutputConfiguration(soap, _p); - _p->trt__AddAudioOutputConfiguration = trt__AddAudioOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioOutputConfiguration(struct soap*, const struct __trt__AddAudioOutputConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddAudioOutputConfiguration(struct soap *soap, struct __trt__AddAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioOutputConfiguration(soap, p, "-trt:AddAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioOutputConfiguration(soap, p, "-trt:AddAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioOutputConfiguration(soap, p, "-trt:AddAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioOutputConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioOutputConfiguration(soap, p, "-trt:AddAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddAudioOutputConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioOutputConfiguration(struct soap*, struct __trt__AddAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddAudioOutputConfiguration(struct soap *soap, struct __trt__AddAudioOutputConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddAudioOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddAudioOutputConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddAudioOutputConfiguration(struct soap *soap, struct __trt__AddAudioOutputConfiguration *p) -{ - if (::soap_read___trt__AddAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddMetadataConfiguration_DEFINED -#define SOAP_TYPE___trt__AddMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddMetadataConfiguration(struct soap*, struct __trt__AddMetadataConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddMetadataConfiguration(struct soap*, const struct __trt__AddMetadataConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddMetadataConfiguration(struct soap*, const char*, int, const struct __trt__AddMetadataConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddMetadataConfiguration * SOAP_FMAC4 soap_in___trt__AddMetadataConfiguration(struct soap*, const char*, struct __trt__AddMetadataConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddMetadataConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddMetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddMetadataConfiguration * soap_new___trt__AddMetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddMetadataConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddMetadataConfiguration * soap_new_req___trt__AddMetadataConfiguration( - struct soap *soap) -{ - struct __trt__AddMetadataConfiguration *_p = ::soap_new___trt__AddMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__AddMetadataConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddMetadataConfiguration * soap_new_set___trt__AddMetadataConfiguration( - struct soap *soap, - _trt__AddMetadataConfiguration *trt__AddMetadataConfiguration) -{ - struct __trt__AddMetadataConfiguration *_p = ::soap_new___trt__AddMetadataConfiguration(soap); - if (_p) - { ::soap_default___trt__AddMetadataConfiguration(soap, _p); - _p->trt__AddMetadataConfiguration = trt__AddMetadataConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddMetadataConfiguration(struct soap*, const struct __trt__AddMetadataConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddMetadataConfiguration(struct soap *soap, struct __trt__AddMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddMetadataConfiguration(soap, p), 0) || ::soap_put___trt__AddMetadataConfiguration(soap, p, "-trt:AddMetadataConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__AddMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddMetadataConfiguration(soap, p), 0) || ::soap_put___trt__AddMetadataConfiguration(soap, p, "-trt:AddMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__AddMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddMetadataConfiguration(soap, p), 0) || ::soap_put___trt__AddMetadataConfiguration(soap, p, "-trt:AddMetadataConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__AddMetadataConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddMetadataConfiguration(soap, p), 0) || ::soap_put___trt__AddMetadataConfiguration(soap, p, "-trt:AddMetadataConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddMetadataConfiguration * SOAP_FMAC4 soap_get___trt__AddMetadataConfiguration(struct soap*, struct __trt__AddMetadataConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddMetadataConfiguration(struct soap *soap, struct __trt__AddMetadataConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddMetadataConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddMetadataConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddMetadataConfiguration(struct soap *soap, const char *URL, struct __trt__AddMetadataConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddMetadataConfiguration(struct soap *soap, struct __trt__AddMetadataConfiguration *p) -{ - if (::soap_read___trt__AddMetadataConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE___trt__AddVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddVideoAnalyticsConfiguration(struct soap*, struct __trt__AddVideoAnalyticsConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddVideoAnalyticsConfiguration(struct soap*, const struct __trt__AddVideoAnalyticsConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddVideoAnalyticsConfiguration(struct soap*, const char*, int, const struct __trt__AddVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_in___trt__AddVideoAnalyticsConfiguration(struct soap*, const char*, struct __trt__AddVideoAnalyticsConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddVideoAnalyticsConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddVideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddVideoAnalyticsConfiguration * soap_new___trt__AddVideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddVideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddVideoAnalyticsConfiguration * soap_new_req___trt__AddVideoAnalyticsConfiguration( - struct soap *soap) -{ - struct __trt__AddVideoAnalyticsConfiguration *_p = ::soap_new___trt__AddVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__AddVideoAnalyticsConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddVideoAnalyticsConfiguration * soap_new_set___trt__AddVideoAnalyticsConfiguration( - struct soap *soap, - _trt__AddVideoAnalyticsConfiguration *trt__AddVideoAnalyticsConfiguration) -{ - struct __trt__AddVideoAnalyticsConfiguration *_p = ::soap_new___trt__AddVideoAnalyticsConfiguration(soap); - if (_p) - { ::soap_default___trt__AddVideoAnalyticsConfiguration(soap, _p); - _p->trt__AddVideoAnalyticsConfiguration = trt__AddVideoAnalyticsConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddVideoAnalyticsConfiguration(struct soap*, const struct __trt__AddVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddVideoAnalyticsConfiguration(struct soap *soap, struct __trt__AddVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoAnalyticsConfiguration(soap, p, "-trt:AddVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoAnalyticsConfiguration(soap, p, "-trt:AddVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoAnalyticsConfiguration(soap, p, "-trt:AddVideoAnalyticsConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoAnalyticsConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoAnalyticsConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoAnalyticsConfiguration(soap, p, "-trt:AddVideoAnalyticsConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddVideoAnalyticsConfiguration * SOAP_FMAC4 soap_get___trt__AddVideoAnalyticsConfiguration(struct soap*, struct __trt__AddVideoAnalyticsConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddVideoAnalyticsConfiguration(struct soap *soap, struct __trt__AddVideoAnalyticsConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddVideoAnalyticsConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddVideoAnalyticsConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddVideoAnalyticsConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoAnalyticsConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddVideoAnalyticsConfiguration(struct soap *soap, struct __trt__AddVideoAnalyticsConfiguration *p) -{ - if (::soap_read___trt__AddVideoAnalyticsConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddPTZConfiguration_DEFINED -#define SOAP_TYPE___trt__AddPTZConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddPTZConfiguration(struct soap*, struct __trt__AddPTZConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddPTZConfiguration(struct soap*, const struct __trt__AddPTZConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddPTZConfiguration(struct soap*, const char*, int, const struct __trt__AddPTZConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddPTZConfiguration * SOAP_FMAC4 soap_in___trt__AddPTZConfiguration(struct soap*, const char*, struct __trt__AddPTZConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddPTZConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddPTZConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddPTZConfiguration * soap_new___trt__AddPTZConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddPTZConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddPTZConfiguration * soap_new_req___trt__AddPTZConfiguration( - struct soap *soap) -{ - struct __trt__AddPTZConfiguration *_p = ::soap_new___trt__AddPTZConfiguration(soap); - if (_p) - { ::soap_default___trt__AddPTZConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddPTZConfiguration * soap_new_set___trt__AddPTZConfiguration( - struct soap *soap, - _trt__AddPTZConfiguration *trt__AddPTZConfiguration) -{ - struct __trt__AddPTZConfiguration *_p = ::soap_new___trt__AddPTZConfiguration(soap); - if (_p) - { ::soap_default___trt__AddPTZConfiguration(soap, _p); - _p->trt__AddPTZConfiguration = trt__AddPTZConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddPTZConfiguration(struct soap*, const struct __trt__AddPTZConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddPTZConfiguration(struct soap *soap, struct __trt__AddPTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddPTZConfiguration(soap, p), 0) || ::soap_put___trt__AddPTZConfiguration(soap, p, "-trt:AddPTZConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddPTZConfiguration(struct soap *soap, const char *URL, struct __trt__AddPTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddPTZConfiguration(soap, p), 0) || ::soap_put___trt__AddPTZConfiguration(soap, p, "-trt:AddPTZConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddPTZConfiguration(struct soap *soap, const char *URL, struct __trt__AddPTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddPTZConfiguration(soap, p), 0) || ::soap_put___trt__AddPTZConfiguration(soap, p, "-trt:AddPTZConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddPTZConfiguration(struct soap *soap, const char *URL, struct __trt__AddPTZConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddPTZConfiguration(soap, p), 0) || ::soap_put___trt__AddPTZConfiguration(soap, p, "-trt:AddPTZConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddPTZConfiguration * SOAP_FMAC4 soap_get___trt__AddPTZConfiguration(struct soap*, struct __trt__AddPTZConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddPTZConfiguration(struct soap *soap, struct __trt__AddPTZConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddPTZConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddPTZConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddPTZConfiguration(struct soap *soap, const char *URL, struct __trt__AddPTZConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddPTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddPTZConfiguration(struct soap *soap, struct __trt__AddPTZConfiguration *p) -{ - if (::soap_read___trt__AddPTZConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddAudioSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__AddAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioSourceConfiguration(struct soap*, struct __trt__AddAudioSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioSourceConfiguration(struct soap*, const struct __trt__AddAudioSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioSourceConfiguration(struct soap*, const char*, int, const struct __trt__AddAudioSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioSourceConfiguration(struct soap*, const char*, struct __trt__AddAudioSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddAudioSourceConfiguration * soap_new___trt__AddAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddAudioSourceConfiguration * soap_new_req___trt__AddAudioSourceConfiguration( - struct soap *soap) -{ - struct __trt__AddAudioSourceConfiguration *_p = ::soap_new___trt__AddAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddAudioSourceConfiguration * soap_new_set___trt__AddAudioSourceConfiguration( - struct soap *soap, - _trt__AddAudioSourceConfiguration *trt__AddAudioSourceConfiguration) -{ - struct __trt__AddAudioSourceConfiguration *_p = ::soap_new___trt__AddAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioSourceConfiguration(soap, _p); - _p->trt__AddAudioSourceConfiguration = trt__AddAudioSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioSourceConfiguration(struct soap*, const struct __trt__AddAudioSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddAudioSourceConfiguration(struct soap *soap, struct __trt__AddAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioSourceConfiguration(soap, p, "-trt:AddAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioSourceConfiguration(soap, p, "-trt:AddAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioSourceConfiguration(soap, p, "-trt:AddAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioSourceConfiguration(soap, p, "-trt:AddAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddAudioSourceConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioSourceConfiguration(struct soap*, struct __trt__AddAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddAudioSourceConfiguration(struct soap *soap, struct __trt__AddAudioSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddAudioSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddAudioSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddAudioSourceConfiguration(struct soap *soap, struct __trt__AddAudioSourceConfiguration *p) -{ - if (::soap_read___trt__AddAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__AddAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddAudioEncoderConfiguration(struct soap*, struct __trt__AddAudioEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddAudioEncoderConfiguration(struct soap*, const struct __trt__AddAudioEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddAudioEncoderConfiguration(struct soap*, const char*, int, const struct __trt__AddAudioEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_in___trt__AddAudioEncoderConfiguration(struct soap*, const char*, struct __trt__AddAudioEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddAudioEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddAudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddAudioEncoderConfiguration * soap_new___trt__AddAudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddAudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddAudioEncoderConfiguration * soap_new_req___trt__AddAudioEncoderConfiguration( - struct soap *soap) -{ - struct __trt__AddAudioEncoderConfiguration *_p = ::soap_new___trt__AddAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddAudioEncoderConfiguration * soap_new_set___trt__AddAudioEncoderConfiguration( - struct soap *soap, - _trt__AddAudioEncoderConfiguration *trt__AddAudioEncoderConfiguration) -{ - struct __trt__AddAudioEncoderConfiguration *_p = ::soap_new___trt__AddAudioEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__AddAudioEncoderConfiguration(soap, _p); - _p->trt__AddAudioEncoderConfiguration = trt__AddAudioEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddAudioEncoderConfiguration(struct soap*, const struct __trt__AddAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddAudioEncoderConfiguration(struct soap *soap, struct __trt__AddAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioEncoderConfiguration(soap, p, "-trt:AddAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioEncoderConfiguration(soap, p, "-trt:AddAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioEncoderConfiguration(soap, p, "-trt:AddAudioEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddAudioEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddAudioEncoderConfiguration(soap, p, "-trt:AddAudioEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddAudioEncoderConfiguration * SOAP_FMAC4 soap_get___trt__AddAudioEncoderConfiguration(struct soap*, struct __trt__AddAudioEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddAudioEncoderConfiguration(struct soap *soap, struct __trt__AddAudioEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddAudioEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddAudioEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddAudioEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddAudioEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddAudioEncoderConfiguration(struct soap *soap, struct __trt__AddAudioEncoderConfiguration *p) -{ - if (::soap_read___trt__AddAudioEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddVideoSourceConfiguration_DEFINED -#define SOAP_TYPE___trt__AddVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddVideoSourceConfiguration(struct soap*, struct __trt__AddVideoSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddVideoSourceConfiguration(struct soap*, const struct __trt__AddVideoSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddVideoSourceConfiguration(struct soap*, const char*, int, const struct __trt__AddVideoSourceConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_in___trt__AddVideoSourceConfiguration(struct soap*, const char*, struct __trt__AddVideoSourceConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddVideoSourceConfiguration * soap_new___trt__AddVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddVideoSourceConfiguration * soap_new_req___trt__AddVideoSourceConfiguration( - struct soap *soap) -{ - struct __trt__AddVideoSourceConfiguration *_p = ::soap_new___trt__AddVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__AddVideoSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddVideoSourceConfiguration * soap_new_set___trt__AddVideoSourceConfiguration( - struct soap *soap, - _trt__AddVideoSourceConfiguration *trt__AddVideoSourceConfiguration) -{ - struct __trt__AddVideoSourceConfiguration *_p = ::soap_new___trt__AddVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___trt__AddVideoSourceConfiguration(soap, _p); - _p->trt__AddVideoSourceConfiguration = trt__AddVideoSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddVideoSourceConfiguration(struct soap*, const struct __trt__AddVideoSourceConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddVideoSourceConfiguration(struct soap *soap, struct __trt__AddVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoSourceConfiguration(soap, p, "-trt:AddVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoSourceConfiguration(soap, p, "-trt:AddVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoSourceConfiguration(soap, p, "-trt:AddVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoSourceConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoSourceConfiguration(soap, p, "-trt:AddVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddVideoSourceConfiguration * SOAP_FMAC4 soap_get___trt__AddVideoSourceConfiguration(struct soap*, struct __trt__AddVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddVideoSourceConfiguration(struct soap *soap, struct __trt__AddVideoSourceConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddVideoSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddVideoSourceConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddVideoSourceConfiguration(struct soap *soap, struct __trt__AddVideoSourceConfiguration *p) -{ - if (::soap_read___trt__AddVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__AddVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE___trt__AddVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__AddVideoEncoderConfiguration(struct soap*, struct __trt__AddVideoEncoderConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__AddVideoEncoderConfiguration(struct soap*, const struct __trt__AddVideoEncoderConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__AddVideoEncoderConfiguration(struct soap*, const char*, int, const struct __trt__AddVideoEncoderConfiguration *, const char*); -SOAP_FMAC3 struct __trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_in___trt__AddVideoEncoderConfiguration(struct soap*, const char*, struct __trt__AddVideoEncoderConfiguration *, const char*); -SOAP_FMAC1 struct __trt__AddVideoEncoderConfiguration * SOAP_FMAC2 soap_instantiate___trt__AddVideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__AddVideoEncoderConfiguration * soap_new___trt__AddVideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__AddVideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__AddVideoEncoderConfiguration * soap_new_req___trt__AddVideoEncoderConfiguration( - struct soap *soap) -{ - struct __trt__AddVideoEncoderConfiguration *_p = ::soap_new___trt__AddVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__AddVideoEncoderConfiguration(soap, _p); - } - return _p; -} - -inline struct __trt__AddVideoEncoderConfiguration * soap_new_set___trt__AddVideoEncoderConfiguration( - struct soap *soap, - _trt__AddVideoEncoderConfiguration *trt__AddVideoEncoderConfiguration) -{ - struct __trt__AddVideoEncoderConfiguration *_p = ::soap_new___trt__AddVideoEncoderConfiguration(soap); - if (_p) - { ::soap_default___trt__AddVideoEncoderConfiguration(soap, _p); - _p->trt__AddVideoEncoderConfiguration = trt__AddVideoEncoderConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__AddVideoEncoderConfiguration(struct soap*, const struct __trt__AddVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_write___trt__AddVideoEncoderConfiguration(struct soap *soap, struct __trt__AddVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__AddVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoEncoderConfiguration(soap, p, "-trt:AddVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoEncoderConfiguration(soap, p, "-trt:AddVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoEncoderConfiguration(soap, p, "-trt:AddVideoEncoderConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoEncoderConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__AddVideoEncoderConfiguration(soap, p), 0) || ::soap_put___trt__AddVideoEncoderConfiguration(soap, p, "-trt:AddVideoEncoderConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__AddVideoEncoderConfiguration * SOAP_FMAC4 soap_get___trt__AddVideoEncoderConfiguration(struct soap*, struct __trt__AddVideoEncoderConfiguration *, const char*, const char*); - -inline int soap_read___trt__AddVideoEncoderConfiguration(struct soap *soap, struct __trt__AddVideoEncoderConfiguration *p) -{ - if (p) - { ::soap_default___trt__AddVideoEncoderConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__AddVideoEncoderConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__AddVideoEncoderConfiguration(struct soap *soap, const char *URL, struct __trt__AddVideoEncoderConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__AddVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__AddVideoEncoderConfiguration(struct soap *soap, struct __trt__AddVideoEncoderConfiguration *p) -{ - if (::soap_read___trt__AddVideoEncoderConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetProfiles_DEFINED -#define SOAP_TYPE___trt__GetProfiles_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetProfiles(struct soap*, struct __trt__GetProfiles *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetProfiles(struct soap*, const struct __trt__GetProfiles *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetProfiles(struct soap*, const char*, int, const struct __trt__GetProfiles *, const char*); -SOAP_FMAC3 struct __trt__GetProfiles * SOAP_FMAC4 soap_in___trt__GetProfiles(struct soap*, const char*, struct __trt__GetProfiles *, const char*); -SOAP_FMAC1 struct __trt__GetProfiles * SOAP_FMAC2 soap_instantiate___trt__GetProfiles(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetProfiles * soap_new___trt__GetProfiles(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetProfiles(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetProfiles * soap_new_req___trt__GetProfiles( - struct soap *soap) -{ - struct __trt__GetProfiles *_p = ::soap_new___trt__GetProfiles(soap); - if (_p) - { ::soap_default___trt__GetProfiles(soap, _p); - } - return _p; -} - -inline struct __trt__GetProfiles * soap_new_set___trt__GetProfiles( - struct soap *soap, - _trt__GetProfiles *trt__GetProfiles) -{ - struct __trt__GetProfiles *_p = ::soap_new___trt__GetProfiles(soap); - if (_p) - { ::soap_default___trt__GetProfiles(soap, _p); - _p->trt__GetProfiles = trt__GetProfiles; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetProfiles(struct soap*, const struct __trt__GetProfiles *, const char*, const char*); - -inline int soap_write___trt__GetProfiles(struct soap *soap, struct __trt__GetProfiles const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetProfiles(soap, p), 0) || ::soap_put___trt__GetProfiles(soap, p, "-trt:GetProfiles", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetProfiles(struct soap *soap, const char *URL, struct __trt__GetProfiles const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetProfiles(soap, p), 0) || ::soap_put___trt__GetProfiles(soap, p, "-trt:GetProfiles", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetProfiles(struct soap *soap, const char *URL, struct __trt__GetProfiles const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetProfiles(soap, p), 0) || ::soap_put___trt__GetProfiles(soap, p, "-trt:GetProfiles", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetProfiles(struct soap *soap, const char *URL, struct __trt__GetProfiles const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetProfiles(soap, p), 0) || ::soap_put___trt__GetProfiles(soap, p, "-trt:GetProfiles", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetProfiles * SOAP_FMAC4 soap_get___trt__GetProfiles(struct soap*, struct __trt__GetProfiles *, const char*, const char*); - -inline int soap_read___trt__GetProfiles(struct soap *soap, struct __trt__GetProfiles *p) -{ - if (p) - { ::soap_default___trt__GetProfiles(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetProfiles(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetProfiles(struct soap *soap, const char *URL, struct __trt__GetProfiles *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetProfiles(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetProfiles(struct soap *soap, struct __trt__GetProfiles *p) -{ - if (::soap_read___trt__GetProfiles(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetProfile_DEFINED -#define SOAP_TYPE___trt__GetProfile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetProfile(struct soap*, struct __trt__GetProfile *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetProfile(struct soap*, const struct __trt__GetProfile *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetProfile(struct soap*, const char*, int, const struct __trt__GetProfile *, const char*); -SOAP_FMAC3 struct __trt__GetProfile * SOAP_FMAC4 soap_in___trt__GetProfile(struct soap*, const char*, struct __trt__GetProfile *, const char*); -SOAP_FMAC1 struct __trt__GetProfile * SOAP_FMAC2 soap_instantiate___trt__GetProfile(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetProfile * soap_new___trt__GetProfile(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetProfile(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetProfile * soap_new_req___trt__GetProfile( - struct soap *soap) -{ - struct __trt__GetProfile *_p = ::soap_new___trt__GetProfile(soap); - if (_p) - { ::soap_default___trt__GetProfile(soap, _p); - } - return _p; -} - -inline struct __trt__GetProfile * soap_new_set___trt__GetProfile( - struct soap *soap, - _trt__GetProfile *trt__GetProfile) -{ - struct __trt__GetProfile *_p = ::soap_new___trt__GetProfile(soap); - if (_p) - { ::soap_default___trt__GetProfile(soap, _p); - _p->trt__GetProfile = trt__GetProfile; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetProfile(struct soap*, const struct __trt__GetProfile *, const char*, const char*); - -inline int soap_write___trt__GetProfile(struct soap *soap, struct __trt__GetProfile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetProfile(soap, p), 0) || ::soap_put___trt__GetProfile(soap, p, "-trt:GetProfile", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetProfile(struct soap *soap, const char *URL, struct __trt__GetProfile const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetProfile(soap, p), 0) || ::soap_put___trt__GetProfile(soap, p, "-trt:GetProfile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetProfile(struct soap *soap, const char *URL, struct __trt__GetProfile const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetProfile(soap, p), 0) || ::soap_put___trt__GetProfile(soap, p, "-trt:GetProfile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetProfile(struct soap *soap, const char *URL, struct __trt__GetProfile const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetProfile(soap, p), 0) || ::soap_put___trt__GetProfile(soap, p, "-trt:GetProfile", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetProfile * SOAP_FMAC4 soap_get___trt__GetProfile(struct soap*, struct __trt__GetProfile *, const char*, const char*); - -inline int soap_read___trt__GetProfile(struct soap *soap, struct __trt__GetProfile *p) -{ - if (p) - { ::soap_default___trt__GetProfile(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetProfile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetProfile(struct soap *soap, const char *URL, struct __trt__GetProfile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetProfile(struct soap *soap, struct __trt__GetProfile *p) -{ - if (::soap_read___trt__GetProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__CreateProfile_DEFINED -#define SOAP_TYPE___trt__CreateProfile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__CreateProfile(struct soap*, struct __trt__CreateProfile *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__CreateProfile(struct soap*, const struct __trt__CreateProfile *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__CreateProfile(struct soap*, const char*, int, const struct __trt__CreateProfile *, const char*); -SOAP_FMAC3 struct __trt__CreateProfile * SOAP_FMAC4 soap_in___trt__CreateProfile(struct soap*, const char*, struct __trt__CreateProfile *, const char*); -SOAP_FMAC1 struct __trt__CreateProfile * SOAP_FMAC2 soap_instantiate___trt__CreateProfile(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__CreateProfile * soap_new___trt__CreateProfile(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__CreateProfile(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__CreateProfile * soap_new_req___trt__CreateProfile( - struct soap *soap) -{ - struct __trt__CreateProfile *_p = ::soap_new___trt__CreateProfile(soap); - if (_p) - { ::soap_default___trt__CreateProfile(soap, _p); - } - return _p; -} - -inline struct __trt__CreateProfile * soap_new_set___trt__CreateProfile( - struct soap *soap, - _trt__CreateProfile *trt__CreateProfile) -{ - struct __trt__CreateProfile *_p = ::soap_new___trt__CreateProfile(soap); - if (_p) - { ::soap_default___trt__CreateProfile(soap, _p); - _p->trt__CreateProfile = trt__CreateProfile; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__CreateProfile(struct soap*, const struct __trt__CreateProfile *, const char*, const char*); - -inline int soap_write___trt__CreateProfile(struct soap *soap, struct __trt__CreateProfile const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__CreateProfile(soap, p), 0) || ::soap_put___trt__CreateProfile(soap, p, "-trt:CreateProfile", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__CreateProfile(struct soap *soap, const char *URL, struct __trt__CreateProfile const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__CreateProfile(soap, p), 0) || ::soap_put___trt__CreateProfile(soap, p, "-trt:CreateProfile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__CreateProfile(struct soap *soap, const char *URL, struct __trt__CreateProfile const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__CreateProfile(soap, p), 0) || ::soap_put___trt__CreateProfile(soap, p, "-trt:CreateProfile", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__CreateProfile(struct soap *soap, const char *URL, struct __trt__CreateProfile const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__CreateProfile(soap, p), 0) || ::soap_put___trt__CreateProfile(soap, p, "-trt:CreateProfile", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__CreateProfile * SOAP_FMAC4 soap_get___trt__CreateProfile(struct soap*, struct __trt__CreateProfile *, const char*, const char*); - -inline int soap_read___trt__CreateProfile(struct soap *soap, struct __trt__CreateProfile *p) -{ - if (p) - { ::soap_default___trt__CreateProfile(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__CreateProfile(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__CreateProfile(struct soap *soap, const char *URL, struct __trt__CreateProfile *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__CreateProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__CreateProfile(struct soap *soap, struct __trt__CreateProfile *p) -{ - if (::soap_read___trt__CreateProfile(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioOutputs_DEFINED -#define SOAP_TYPE___trt__GetAudioOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioOutputs(struct soap*, struct __trt__GetAudioOutputs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioOutputs(struct soap*, const struct __trt__GetAudioOutputs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioOutputs(struct soap*, const char*, int, const struct __trt__GetAudioOutputs *, const char*); -SOAP_FMAC3 struct __trt__GetAudioOutputs * SOAP_FMAC4 soap_in___trt__GetAudioOutputs(struct soap*, const char*, struct __trt__GetAudioOutputs *, const char*); -SOAP_FMAC1 struct __trt__GetAudioOutputs * SOAP_FMAC2 soap_instantiate___trt__GetAudioOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioOutputs * soap_new___trt__GetAudioOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioOutputs(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioOutputs * soap_new_req___trt__GetAudioOutputs( - struct soap *soap) -{ - struct __trt__GetAudioOutputs *_p = ::soap_new___trt__GetAudioOutputs(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputs(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioOutputs * soap_new_set___trt__GetAudioOutputs( - struct soap *soap, - _trt__GetAudioOutputs *trt__GetAudioOutputs) -{ - struct __trt__GetAudioOutputs *_p = ::soap_new___trt__GetAudioOutputs(soap); - if (_p) - { ::soap_default___trt__GetAudioOutputs(soap, _p); - _p->trt__GetAudioOutputs = trt__GetAudioOutputs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioOutputs(struct soap*, const struct __trt__GetAudioOutputs *, const char*, const char*); - -inline int soap_write___trt__GetAudioOutputs(struct soap *soap, struct __trt__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioOutputs(soap, p), 0) || ::soap_put___trt__GetAudioOutputs(soap, p, "-trt:GetAudioOutputs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioOutputs(struct soap *soap, const char *URL, struct __trt__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputs(soap, p), 0) || ::soap_put___trt__GetAudioOutputs(soap, p, "-trt:GetAudioOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioOutputs(struct soap *soap, const char *URL, struct __trt__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputs(soap, p), 0) || ::soap_put___trt__GetAudioOutputs(soap, p, "-trt:GetAudioOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioOutputs(struct soap *soap, const char *URL, struct __trt__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioOutputs(soap, p), 0) || ::soap_put___trt__GetAudioOutputs(soap, p, "-trt:GetAudioOutputs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioOutputs * SOAP_FMAC4 soap_get___trt__GetAudioOutputs(struct soap*, struct __trt__GetAudioOutputs *, const char*, const char*); - -inline int soap_read___trt__GetAudioOutputs(struct soap *soap, struct __trt__GetAudioOutputs *p) -{ - if (p) - { ::soap_default___trt__GetAudioOutputs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioOutputs(struct soap *soap, const char *URL, struct __trt__GetAudioOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioOutputs(struct soap *soap, struct __trt__GetAudioOutputs *p) -{ - if (::soap_read___trt__GetAudioOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetAudioSources_DEFINED -#define SOAP_TYPE___trt__GetAudioSources_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetAudioSources(struct soap*, struct __trt__GetAudioSources *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetAudioSources(struct soap*, const struct __trt__GetAudioSources *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetAudioSources(struct soap*, const char*, int, const struct __trt__GetAudioSources *, const char*); -SOAP_FMAC3 struct __trt__GetAudioSources * SOAP_FMAC4 soap_in___trt__GetAudioSources(struct soap*, const char*, struct __trt__GetAudioSources *, const char*); -SOAP_FMAC1 struct __trt__GetAudioSources * SOAP_FMAC2 soap_instantiate___trt__GetAudioSources(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetAudioSources * soap_new___trt__GetAudioSources(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetAudioSources(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetAudioSources * soap_new_req___trt__GetAudioSources( - struct soap *soap) -{ - struct __trt__GetAudioSources *_p = ::soap_new___trt__GetAudioSources(soap); - if (_p) - { ::soap_default___trt__GetAudioSources(soap, _p); - } - return _p; -} - -inline struct __trt__GetAudioSources * soap_new_set___trt__GetAudioSources( - struct soap *soap, - _trt__GetAudioSources *trt__GetAudioSources) -{ - struct __trt__GetAudioSources *_p = ::soap_new___trt__GetAudioSources(soap); - if (_p) - { ::soap_default___trt__GetAudioSources(soap, _p); - _p->trt__GetAudioSources = trt__GetAudioSources; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetAudioSources(struct soap*, const struct __trt__GetAudioSources *, const char*, const char*); - -inline int soap_write___trt__GetAudioSources(struct soap *soap, struct __trt__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetAudioSources(soap, p), 0) || ::soap_put___trt__GetAudioSources(soap, p, "-trt:GetAudioSources", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetAudioSources(struct soap *soap, const char *URL, struct __trt__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSources(soap, p), 0) || ::soap_put___trt__GetAudioSources(soap, p, "-trt:GetAudioSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetAudioSources(struct soap *soap, const char *URL, struct __trt__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSources(soap, p), 0) || ::soap_put___trt__GetAudioSources(soap, p, "-trt:GetAudioSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetAudioSources(struct soap *soap, const char *URL, struct __trt__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetAudioSources(soap, p), 0) || ::soap_put___trt__GetAudioSources(soap, p, "-trt:GetAudioSources", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetAudioSources * SOAP_FMAC4 soap_get___trt__GetAudioSources(struct soap*, struct __trt__GetAudioSources *, const char*, const char*); - -inline int soap_read___trt__GetAudioSources(struct soap *soap, struct __trt__GetAudioSources *p) -{ - if (p) - { ::soap_default___trt__GetAudioSources(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetAudioSources(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetAudioSources(struct soap *soap, const char *URL, struct __trt__GetAudioSources *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetAudioSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetAudioSources(struct soap *soap, struct __trt__GetAudioSources *p) -{ - if (::soap_read___trt__GetAudioSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetVideoSources_DEFINED -#define SOAP_TYPE___trt__GetVideoSources_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetVideoSources(struct soap*, struct __trt__GetVideoSources *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetVideoSources(struct soap*, const struct __trt__GetVideoSources *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetVideoSources(struct soap*, const char*, int, const struct __trt__GetVideoSources *, const char*); -SOAP_FMAC3 struct __trt__GetVideoSources * SOAP_FMAC4 soap_in___trt__GetVideoSources(struct soap*, const char*, struct __trt__GetVideoSources *, const char*); -SOAP_FMAC1 struct __trt__GetVideoSources * SOAP_FMAC2 soap_instantiate___trt__GetVideoSources(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetVideoSources * soap_new___trt__GetVideoSources(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetVideoSources(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetVideoSources * soap_new_req___trt__GetVideoSources( - struct soap *soap) -{ - struct __trt__GetVideoSources *_p = ::soap_new___trt__GetVideoSources(soap); - if (_p) - { ::soap_default___trt__GetVideoSources(soap, _p); - } - return _p; -} - -inline struct __trt__GetVideoSources * soap_new_set___trt__GetVideoSources( - struct soap *soap, - _trt__GetVideoSources *trt__GetVideoSources) -{ - struct __trt__GetVideoSources *_p = ::soap_new___trt__GetVideoSources(soap); - if (_p) - { ::soap_default___trt__GetVideoSources(soap, _p); - _p->trt__GetVideoSources = trt__GetVideoSources; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetVideoSources(struct soap*, const struct __trt__GetVideoSources *, const char*, const char*); - -inline int soap_write___trt__GetVideoSources(struct soap *soap, struct __trt__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetVideoSources(soap, p), 0) || ::soap_put___trt__GetVideoSources(soap, p, "-trt:GetVideoSources", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetVideoSources(struct soap *soap, const char *URL, struct __trt__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSources(soap, p), 0) || ::soap_put___trt__GetVideoSources(soap, p, "-trt:GetVideoSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetVideoSources(struct soap *soap, const char *URL, struct __trt__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSources(soap, p), 0) || ::soap_put___trt__GetVideoSources(soap, p, "-trt:GetVideoSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetVideoSources(struct soap *soap, const char *URL, struct __trt__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetVideoSources(soap, p), 0) || ::soap_put___trt__GetVideoSources(soap, p, "-trt:GetVideoSources", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetVideoSources * SOAP_FMAC4 soap_get___trt__GetVideoSources(struct soap*, struct __trt__GetVideoSources *, const char*, const char*); - -inline int soap_read___trt__GetVideoSources(struct soap *soap, struct __trt__GetVideoSources *p) -{ - if (p) - { ::soap_default___trt__GetVideoSources(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetVideoSources(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetVideoSources(struct soap *soap, const char *URL, struct __trt__GetVideoSources *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetVideoSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetVideoSources(struct soap *soap, struct __trt__GetVideoSources *p) -{ - if (::soap_read___trt__GetVideoSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trt__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___trt__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trt__GetServiceCapabilities(struct soap*, struct __trt__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trt__GetServiceCapabilities(struct soap*, const struct __trt__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trt__GetServiceCapabilities(struct soap*, const char*, int, const struct __trt__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __trt__GetServiceCapabilities * SOAP_FMAC4 soap_in___trt__GetServiceCapabilities(struct soap*, const char*, struct __trt__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __trt__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trt__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trt__GetServiceCapabilities * soap_new___trt__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___trt__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __trt__GetServiceCapabilities * soap_new_req___trt__GetServiceCapabilities( - struct soap *soap) -{ - struct __trt__GetServiceCapabilities *_p = ::soap_new___trt__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trt__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __trt__GetServiceCapabilities * soap_new_set___trt__GetServiceCapabilities( - struct soap *soap, - _trt__GetServiceCapabilities *trt__GetServiceCapabilities) -{ - struct __trt__GetServiceCapabilities *_p = ::soap_new___trt__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trt__GetServiceCapabilities(soap, _p); - _p->trt__GetServiceCapabilities = trt__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trt__GetServiceCapabilities(struct soap*, const struct __trt__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___trt__GetServiceCapabilities(struct soap *soap, struct __trt__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trt__GetServiceCapabilities(soap, p), 0) || ::soap_put___trt__GetServiceCapabilities(soap, p, "-trt:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trt__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trt__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetServiceCapabilities(soap, p), 0) || ::soap_put___trt__GetServiceCapabilities(soap, p, "-trt:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trt__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trt__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetServiceCapabilities(soap, p), 0) || ::soap_put___trt__GetServiceCapabilities(soap, p, "-trt:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trt__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trt__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trt__GetServiceCapabilities(soap, p), 0) || ::soap_put___trt__GetServiceCapabilities(soap, p, "-trt:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trt__GetServiceCapabilities * SOAP_FMAC4 soap_get___trt__GetServiceCapabilities(struct soap*, struct __trt__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___trt__GetServiceCapabilities(struct soap *soap, struct __trt__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___trt__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trt__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trt__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trt__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trt__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trt__GetServiceCapabilities(struct soap *soap, struct __trt__GetServiceCapabilities *p) -{ - if (::soap_read___trt__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trp__SetReplayConfiguration_DEFINED -#define SOAP_TYPE___trp__SetReplayConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__SetReplayConfiguration(struct soap*, struct __trp__SetReplayConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__SetReplayConfiguration(struct soap*, const struct __trp__SetReplayConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__SetReplayConfiguration(struct soap*, const char*, int, const struct __trp__SetReplayConfiguration *, const char*); -SOAP_FMAC3 struct __trp__SetReplayConfiguration * SOAP_FMAC4 soap_in___trp__SetReplayConfiguration(struct soap*, const char*, struct __trp__SetReplayConfiguration *, const char*); -SOAP_FMAC1 struct __trp__SetReplayConfiguration * SOAP_FMAC2 soap_instantiate___trp__SetReplayConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trp__SetReplayConfiguration * soap_new___trp__SetReplayConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trp__SetReplayConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trp__SetReplayConfiguration * soap_new_req___trp__SetReplayConfiguration( - struct soap *soap) -{ - struct __trp__SetReplayConfiguration *_p = ::soap_new___trp__SetReplayConfiguration(soap); - if (_p) - { ::soap_default___trp__SetReplayConfiguration(soap, _p); - } - return _p; -} - -inline struct __trp__SetReplayConfiguration * soap_new_set___trp__SetReplayConfiguration( - struct soap *soap, - _trp__SetReplayConfiguration *trp__SetReplayConfiguration) -{ - struct __trp__SetReplayConfiguration *_p = ::soap_new___trp__SetReplayConfiguration(soap); - if (_p) - { ::soap_default___trp__SetReplayConfiguration(soap, _p); - _p->trp__SetReplayConfiguration = trp__SetReplayConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__SetReplayConfiguration(struct soap*, const struct __trp__SetReplayConfiguration *, const char*, const char*); - -inline int soap_write___trp__SetReplayConfiguration(struct soap *soap, struct __trp__SetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trp__SetReplayConfiguration(soap, p), 0) || ::soap_put___trp__SetReplayConfiguration(soap, p, "-trp:SetReplayConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trp__SetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__SetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__SetReplayConfiguration(soap, p), 0) || ::soap_put___trp__SetReplayConfiguration(soap, p, "-trp:SetReplayConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trp__SetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__SetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__SetReplayConfiguration(soap, p), 0) || ::soap_put___trp__SetReplayConfiguration(soap, p, "-trp:SetReplayConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trp__SetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__SetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__SetReplayConfiguration(soap, p), 0) || ::soap_put___trp__SetReplayConfiguration(soap, p, "-trp:SetReplayConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trp__SetReplayConfiguration * SOAP_FMAC4 soap_get___trp__SetReplayConfiguration(struct soap*, struct __trp__SetReplayConfiguration *, const char*, const char*); - -inline int soap_read___trp__SetReplayConfiguration(struct soap *soap, struct __trp__SetReplayConfiguration *p) -{ - if (p) - { ::soap_default___trp__SetReplayConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trp__SetReplayConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trp__SetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__SetReplayConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trp__SetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trp__SetReplayConfiguration(struct soap *soap, struct __trp__SetReplayConfiguration *p) -{ - if (::soap_read___trp__SetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trp__GetReplayConfiguration_DEFINED -#define SOAP_TYPE___trp__GetReplayConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__GetReplayConfiguration(struct soap*, struct __trp__GetReplayConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__GetReplayConfiguration(struct soap*, const struct __trp__GetReplayConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__GetReplayConfiguration(struct soap*, const char*, int, const struct __trp__GetReplayConfiguration *, const char*); -SOAP_FMAC3 struct __trp__GetReplayConfiguration * SOAP_FMAC4 soap_in___trp__GetReplayConfiguration(struct soap*, const char*, struct __trp__GetReplayConfiguration *, const char*); -SOAP_FMAC1 struct __trp__GetReplayConfiguration * SOAP_FMAC2 soap_instantiate___trp__GetReplayConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trp__GetReplayConfiguration * soap_new___trp__GetReplayConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trp__GetReplayConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trp__GetReplayConfiguration * soap_new_req___trp__GetReplayConfiguration( - struct soap *soap) -{ - struct __trp__GetReplayConfiguration *_p = ::soap_new___trp__GetReplayConfiguration(soap); - if (_p) - { ::soap_default___trp__GetReplayConfiguration(soap, _p); - } - return _p; -} - -inline struct __trp__GetReplayConfiguration * soap_new_set___trp__GetReplayConfiguration( - struct soap *soap, - _trp__GetReplayConfiguration *trp__GetReplayConfiguration) -{ - struct __trp__GetReplayConfiguration *_p = ::soap_new___trp__GetReplayConfiguration(soap); - if (_p) - { ::soap_default___trp__GetReplayConfiguration(soap, _p); - _p->trp__GetReplayConfiguration = trp__GetReplayConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__GetReplayConfiguration(struct soap*, const struct __trp__GetReplayConfiguration *, const char*, const char*); - -inline int soap_write___trp__GetReplayConfiguration(struct soap *soap, struct __trp__GetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trp__GetReplayConfiguration(soap, p), 0) || ::soap_put___trp__GetReplayConfiguration(soap, p, "-trp:GetReplayConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trp__GetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__GetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetReplayConfiguration(soap, p), 0) || ::soap_put___trp__GetReplayConfiguration(soap, p, "-trp:GetReplayConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trp__GetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__GetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetReplayConfiguration(soap, p), 0) || ::soap_put___trp__GetReplayConfiguration(soap, p, "-trp:GetReplayConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trp__GetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__GetReplayConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetReplayConfiguration(soap, p), 0) || ::soap_put___trp__GetReplayConfiguration(soap, p, "-trp:GetReplayConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trp__GetReplayConfiguration * SOAP_FMAC4 soap_get___trp__GetReplayConfiguration(struct soap*, struct __trp__GetReplayConfiguration *, const char*, const char*); - -inline int soap_read___trp__GetReplayConfiguration(struct soap *soap, struct __trp__GetReplayConfiguration *p) -{ - if (p) - { ::soap_default___trp__GetReplayConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trp__GetReplayConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trp__GetReplayConfiguration(struct soap *soap, const char *URL, struct __trp__GetReplayConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trp__GetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trp__GetReplayConfiguration(struct soap *soap, struct __trp__GetReplayConfiguration *p) -{ - if (::soap_read___trp__GetReplayConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trp__GetReplayUri_DEFINED -#define SOAP_TYPE___trp__GetReplayUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__GetReplayUri(struct soap*, struct __trp__GetReplayUri *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__GetReplayUri(struct soap*, const struct __trp__GetReplayUri *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__GetReplayUri(struct soap*, const char*, int, const struct __trp__GetReplayUri *, const char*); -SOAP_FMAC3 struct __trp__GetReplayUri * SOAP_FMAC4 soap_in___trp__GetReplayUri(struct soap*, const char*, struct __trp__GetReplayUri *, const char*); -SOAP_FMAC1 struct __trp__GetReplayUri * SOAP_FMAC2 soap_instantiate___trp__GetReplayUri(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trp__GetReplayUri * soap_new___trp__GetReplayUri(struct soap *soap, int n = -1) -{ - return soap_instantiate___trp__GetReplayUri(soap, n, NULL, NULL, NULL); -} - -inline struct __trp__GetReplayUri * soap_new_req___trp__GetReplayUri( - struct soap *soap) -{ - struct __trp__GetReplayUri *_p = ::soap_new___trp__GetReplayUri(soap); - if (_p) - { ::soap_default___trp__GetReplayUri(soap, _p); - } - return _p; -} - -inline struct __trp__GetReplayUri * soap_new_set___trp__GetReplayUri( - struct soap *soap, - _trp__GetReplayUri *trp__GetReplayUri) -{ - struct __trp__GetReplayUri *_p = ::soap_new___trp__GetReplayUri(soap); - if (_p) - { ::soap_default___trp__GetReplayUri(soap, _p); - _p->trp__GetReplayUri = trp__GetReplayUri; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__GetReplayUri(struct soap*, const struct __trp__GetReplayUri *, const char*, const char*); - -inline int soap_write___trp__GetReplayUri(struct soap *soap, struct __trp__GetReplayUri const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trp__GetReplayUri(soap, p), 0) || ::soap_put___trp__GetReplayUri(soap, p, "-trp:GetReplayUri", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trp__GetReplayUri(struct soap *soap, const char *URL, struct __trp__GetReplayUri const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetReplayUri(soap, p), 0) || ::soap_put___trp__GetReplayUri(soap, p, "-trp:GetReplayUri", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trp__GetReplayUri(struct soap *soap, const char *URL, struct __trp__GetReplayUri const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetReplayUri(soap, p), 0) || ::soap_put___trp__GetReplayUri(soap, p, "-trp:GetReplayUri", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trp__GetReplayUri(struct soap *soap, const char *URL, struct __trp__GetReplayUri const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetReplayUri(soap, p), 0) || ::soap_put___trp__GetReplayUri(soap, p, "-trp:GetReplayUri", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trp__GetReplayUri * SOAP_FMAC4 soap_get___trp__GetReplayUri(struct soap*, struct __trp__GetReplayUri *, const char*, const char*); - -inline int soap_read___trp__GetReplayUri(struct soap *soap, struct __trp__GetReplayUri *p) -{ - if (p) - { ::soap_default___trp__GetReplayUri(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trp__GetReplayUri(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trp__GetReplayUri(struct soap *soap, const char *URL, struct __trp__GetReplayUri *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trp__GetReplayUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trp__GetReplayUri(struct soap *soap, struct __trp__GetReplayUri *p) -{ - if (::soap_read___trp__GetReplayUri(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trp__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___trp__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trp__GetServiceCapabilities(struct soap*, struct __trp__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trp__GetServiceCapabilities(struct soap*, const struct __trp__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trp__GetServiceCapabilities(struct soap*, const char*, int, const struct __trp__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __trp__GetServiceCapabilities * SOAP_FMAC4 soap_in___trp__GetServiceCapabilities(struct soap*, const char*, struct __trp__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __trp__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trp__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trp__GetServiceCapabilities * soap_new___trp__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___trp__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __trp__GetServiceCapabilities * soap_new_req___trp__GetServiceCapabilities( - struct soap *soap) -{ - struct __trp__GetServiceCapabilities *_p = ::soap_new___trp__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trp__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __trp__GetServiceCapabilities * soap_new_set___trp__GetServiceCapabilities( - struct soap *soap, - _trp__GetServiceCapabilities *trp__GetServiceCapabilities) -{ - struct __trp__GetServiceCapabilities *_p = ::soap_new___trp__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trp__GetServiceCapabilities(soap, _p); - _p->trp__GetServiceCapabilities = trp__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trp__GetServiceCapabilities(struct soap*, const struct __trp__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___trp__GetServiceCapabilities(struct soap *soap, struct __trp__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trp__GetServiceCapabilities(soap, p), 0) || ::soap_put___trp__GetServiceCapabilities(soap, p, "-trp:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trp__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trp__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetServiceCapabilities(soap, p), 0) || ::soap_put___trp__GetServiceCapabilities(soap, p, "-trp:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trp__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trp__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetServiceCapabilities(soap, p), 0) || ::soap_put___trp__GetServiceCapabilities(soap, p, "-trp:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trp__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trp__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trp__GetServiceCapabilities(soap, p), 0) || ::soap_put___trp__GetServiceCapabilities(soap, p, "-trp:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trp__GetServiceCapabilities * SOAP_FMAC4 soap_get___trp__GetServiceCapabilities(struct soap*, struct __trp__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___trp__GetServiceCapabilities(struct soap *soap, struct __trp__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___trp__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trp__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trp__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trp__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trp__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trp__GetServiceCapabilities(struct soap *soap, struct __trp__GetServiceCapabilities *p) -{ - if (::soap_read___trp__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetExportRecordedDataState_DEFINED -#define SOAP_TYPE___trc__GetExportRecordedDataState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetExportRecordedDataState(struct soap*, struct __trc__GetExportRecordedDataState *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetExportRecordedDataState(struct soap*, const struct __trc__GetExportRecordedDataState *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetExportRecordedDataState(struct soap*, const char*, int, const struct __trc__GetExportRecordedDataState *, const char*); -SOAP_FMAC3 struct __trc__GetExportRecordedDataState * SOAP_FMAC4 soap_in___trc__GetExportRecordedDataState(struct soap*, const char*, struct __trc__GetExportRecordedDataState *, const char*); -SOAP_FMAC1 struct __trc__GetExportRecordedDataState * SOAP_FMAC2 soap_instantiate___trc__GetExportRecordedDataState(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetExportRecordedDataState * soap_new___trc__GetExportRecordedDataState(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetExportRecordedDataState(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetExportRecordedDataState * soap_new_req___trc__GetExportRecordedDataState( - struct soap *soap) -{ - struct __trc__GetExportRecordedDataState *_p = ::soap_new___trc__GetExportRecordedDataState(soap); - if (_p) - { ::soap_default___trc__GetExportRecordedDataState(soap, _p); - } - return _p; -} - -inline struct __trc__GetExportRecordedDataState * soap_new_set___trc__GetExportRecordedDataState( - struct soap *soap, - _trc__GetExportRecordedDataState *trc__GetExportRecordedDataState) -{ - struct __trc__GetExportRecordedDataState *_p = ::soap_new___trc__GetExportRecordedDataState(soap); - if (_p) - { ::soap_default___trc__GetExportRecordedDataState(soap, _p); - _p->trc__GetExportRecordedDataState = trc__GetExportRecordedDataState; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetExportRecordedDataState(struct soap*, const struct __trc__GetExportRecordedDataState *, const char*, const char*); - -inline int soap_write___trc__GetExportRecordedDataState(struct soap *soap, struct __trc__GetExportRecordedDataState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetExportRecordedDataState(soap, p), 0) || ::soap_put___trc__GetExportRecordedDataState(soap, p, "-trc:GetExportRecordedDataState", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetExportRecordedDataState(struct soap *soap, const char *URL, struct __trc__GetExportRecordedDataState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetExportRecordedDataState(soap, p), 0) || ::soap_put___trc__GetExportRecordedDataState(soap, p, "-trc:GetExportRecordedDataState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetExportRecordedDataState(struct soap *soap, const char *URL, struct __trc__GetExportRecordedDataState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetExportRecordedDataState(soap, p), 0) || ::soap_put___trc__GetExportRecordedDataState(soap, p, "-trc:GetExportRecordedDataState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetExportRecordedDataState(struct soap *soap, const char *URL, struct __trc__GetExportRecordedDataState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetExportRecordedDataState(soap, p), 0) || ::soap_put___trc__GetExportRecordedDataState(soap, p, "-trc:GetExportRecordedDataState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetExportRecordedDataState * SOAP_FMAC4 soap_get___trc__GetExportRecordedDataState(struct soap*, struct __trc__GetExportRecordedDataState *, const char*, const char*); - -inline int soap_read___trc__GetExportRecordedDataState(struct soap *soap, struct __trc__GetExportRecordedDataState *p) -{ - if (p) - { ::soap_default___trc__GetExportRecordedDataState(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetExportRecordedDataState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetExportRecordedDataState(struct soap *soap, const char *URL, struct __trc__GetExportRecordedDataState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetExportRecordedDataState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetExportRecordedDataState(struct soap *soap, struct __trc__GetExportRecordedDataState *p) -{ - if (::soap_read___trc__GetExportRecordedDataState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__StopExportRecordedData_DEFINED -#define SOAP_TYPE___trc__StopExportRecordedData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__StopExportRecordedData(struct soap*, struct __trc__StopExportRecordedData *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__StopExportRecordedData(struct soap*, const struct __trc__StopExportRecordedData *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__StopExportRecordedData(struct soap*, const char*, int, const struct __trc__StopExportRecordedData *, const char*); -SOAP_FMAC3 struct __trc__StopExportRecordedData * SOAP_FMAC4 soap_in___trc__StopExportRecordedData(struct soap*, const char*, struct __trc__StopExportRecordedData *, const char*); -SOAP_FMAC1 struct __trc__StopExportRecordedData * SOAP_FMAC2 soap_instantiate___trc__StopExportRecordedData(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__StopExportRecordedData * soap_new___trc__StopExportRecordedData(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__StopExportRecordedData(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__StopExportRecordedData * soap_new_req___trc__StopExportRecordedData( - struct soap *soap) -{ - struct __trc__StopExportRecordedData *_p = ::soap_new___trc__StopExportRecordedData(soap); - if (_p) - { ::soap_default___trc__StopExportRecordedData(soap, _p); - } - return _p; -} - -inline struct __trc__StopExportRecordedData * soap_new_set___trc__StopExportRecordedData( - struct soap *soap, - _trc__StopExportRecordedData *trc__StopExportRecordedData) -{ - struct __trc__StopExportRecordedData *_p = ::soap_new___trc__StopExportRecordedData(soap); - if (_p) - { ::soap_default___trc__StopExportRecordedData(soap, _p); - _p->trc__StopExportRecordedData = trc__StopExportRecordedData; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__StopExportRecordedData(struct soap*, const struct __trc__StopExportRecordedData *, const char*, const char*); - -inline int soap_write___trc__StopExportRecordedData(struct soap *soap, struct __trc__StopExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__StopExportRecordedData(soap, p), 0) || ::soap_put___trc__StopExportRecordedData(soap, p, "-trc:StopExportRecordedData", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__StopExportRecordedData(struct soap *soap, const char *URL, struct __trc__StopExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__StopExportRecordedData(soap, p), 0) || ::soap_put___trc__StopExportRecordedData(soap, p, "-trc:StopExportRecordedData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__StopExportRecordedData(struct soap *soap, const char *URL, struct __trc__StopExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__StopExportRecordedData(soap, p), 0) || ::soap_put___trc__StopExportRecordedData(soap, p, "-trc:StopExportRecordedData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__StopExportRecordedData(struct soap *soap, const char *URL, struct __trc__StopExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__StopExportRecordedData(soap, p), 0) || ::soap_put___trc__StopExportRecordedData(soap, p, "-trc:StopExportRecordedData", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__StopExportRecordedData * SOAP_FMAC4 soap_get___trc__StopExportRecordedData(struct soap*, struct __trc__StopExportRecordedData *, const char*, const char*); - -inline int soap_read___trc__StopExportRecordedData(struct soap *soap, struct __trc__StopExportRecordedData *p) -{ - if (p) - { ::soap_default___trc__StopExportRecordedData(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__StopExportRecordedData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__StopExportRecordedData(struct soap *soap, const char *URL, struct __trc__StopExportRecordedData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__StopExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__StopExportRecordedData(struct soap *soap, struct __trc__StopExportRecordedData *p) -{ - if (::soap_read___trc__StopExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__ExportRecordedData_DEFINED -#define SOAP_TYPE___trc__ExportRecordedData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__ExportRecordedData(struct soap*, struct __trc__ExportRecordedData *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__ExportRecordedData(struct soap*, const struct __trc__ExportRecordedData *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__ExportRecordedData(struct soap*, const char*, int, const struct __trc__ExportRecordedData *, const char*); -SOAP_FMAC3 struct __trc__ExportRecordedData * SOAP_FMAC4 soap_in___trc__ExportRecordedData(struct soap*, const char*, struct __trc__ExportRecordedData *, const char*); -SOAP_FMAC1 struct __trc__ExportRecordedData * SOAP_FMAC2 soap_instantiate___trc__ExportRecordedData(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__ExportRecordedData * soap_new___trc__ExportRecordedData(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__ExportRecordedData(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__ExportRecordedData * soap_new_req___trc__ExportRecordedData( - struct soap *soap) -{ - struct __trc__ExportRecordedData *_p = ::soap_new___trc__ExportRecordedData(soap); - if (_p) - { ::soap_default___trc__ExportRecordedData(soap, _p); - } - return _p; -} - -inline struct __trc__ExportRecordedData * soap_new_set___trc__ExportRecordedData( - struct soap *soap, - _trc__ExportRecordedData *trc__ExportRecordedData) -{ - struct __trc__ExportRecordedData *_p = ::soap_new___trc__ExportRecordedData(soap); - if (_p) - { ::soap_default___trc__ExportRecordedData(soap, _p); - _p->trc__ExportRecordedData = trc__ExportRecordedData; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__ExportRecordedData(struct soap*, const struct __trc__ExportRecordedData *, const char*, const char*); - -inline int soap_write___trc__ExportRecordedData(struct soap *soap, struct __trc__ExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__ExportRecordedData(soap, p), 0) || ::soap_put___trc__ExportRecordedData(soap, p, "-trc:ExportRecordedData", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__ExportRecordedData(struct soap *soap, const char *URL, struct __trc__ExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__ExportRecordedData(soap, p), 0) || ::soap_put___trc__ExportRecordedData(soap, p, "-trc:ExportRecordedData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__ExportRecordedData(struct soap *soap, const char *URL, struct __trc__ExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__ExportRecordedData(soap, p), 0) || ::soap_put___trc__ExportRecordedData(soap, p, "-trc:ExportRecordedData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__ExportRecordedData(struct soap *soap, const char *URL, struct __trc__ExportRecordedData const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__ExportRecordedData(soap, p), 0) || ::soap_put___trc__ExportRecordedData(soap, p, "-trc:ExportRecordedData", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__ExportRecordedData * SOAP_FMAC4 soap_get___trc__ExportRecordedData(struct soap*, struct __trc__ExportRecordedData *, const char*, const char*); - -inline int soap_read___trc__ExportRecordedData(struct soap *soap, struct __trc__ExportRecordedData *p) -{ - if (p) - { ::soap_default___trc__ExportRecordedData(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__ExportRecordedData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__ExportRecordedData(struct soap *soap, const char *URL, struct __trc__ExportRecordedData *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__ExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__ExportRecordedData(struct soap *soap, struct __trc__ExportRecordedData *p) -{ - if (::soap_read___trc__ExportRecordedData(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetRecordingJobState_DEFINED -#define SOAP_TYPE___trc__GetRecordingJobState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingJobState(struct soap*, struct __trc__GetRecordingJobState *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingJobState(struct soap*, const struct __trc__GetRecordingJobState *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingJobState(struct soap*, const char*, int, const struct __trc__GetRecordingJobState *, const char*); -SOAP_FMAC3 struct __trc__GetRecordingJobState * SOAP_FMAC4 soap_in___trc__GetRecordingJobState(struct soap*, const char*, struct __trc__GetRecordingJobState *, const char*); -SOAP_FMAC1 struct __trc__GetRecordingJobState * SOAP_FMAC2 soap_instantiate___trc__GetRecordingJobState(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetRecordingJobState * soap_new___trc__GetRecordingJobState(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetRecordingJobState(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetRecordingJobState * soap_new_req___trc__GetRecordingJobState( - struct soap *soap) -{ - struct __trc__GetRecordingJobState *_p = ::soap_new___trc__GetRecordingJobState(soap); - if (_p) - { ::soap_default___trc__GetRecordingJobState(soap, _p); - } - return _p; -} - -inline struct __trc__GetRecordingJobState * soap_new_set___trc__GetRecordingJobState( - struct soap *soap, - _trc__GetRecordingJobState *trc__GetRecordingJobState) -{ - struct __trc__GetRecordingJobState *_p = ::soap_new___trc__GetRecordingJobState(soap); - if (_p) - { ::soap_default___trc__GetRecordingJobState(soap, _p); - _p->trc__GetRecordingJobState = trc__GetRecordingJobState; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingJobState(struct soap*, const struct __trc__GetRecordingJobState *, const char*, const char*); - -inline int soap_write___trc__GetRecordingJobState(struct soap *soap, struct __trc__GetRecordingJobState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetRecordingJobState(soap, p), 0) || ::soap_put___trc__GetRecordingJobState(soap, p, "-trc:GetRecordingJobState", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetRecordingJobState(struct soap *soap, const char *URL, struct __trc__GetRecordingJobState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobState(soap, p), 0) || ::soap_put___trc__GetRecordingJobState(soap, p, "-trc:GetRecordingJobState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetRecordingJobState(struct soap *soap, const char *URL, struct __trc__GetRecordingJobState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobState(soap, p), 0) || ::soap_put___trc__GetRecordingJobState(soap, p, "-trc:GetRecordingJobState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetRecordingJobState(struct soap *soap, const char *URL, struct __trc__GetRecordingJobState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobState(soap, p), 0) || ::soap_put___trc__GetRecordingJobState(soap, p, "-trc:GetRecordingJobState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetRecordingJobState * SOAP_FMAC4 soap_get___trc__GetRecordingJobState(struct soap*, struct __trc__GetRecordingJobState *, const char*, const char*); - -inline int soap_read___trc__GetRecordingJobState(struct soap *soap, struct __trc__GetRecordingJobState *p) -{ - if (p) - { ::soap_default___trc__GetRecordingJobState(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetRecordingJobState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetRecordingJobState(struct soap *soap, const char *URL, struct __trc__GetRecordingJobState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetRecordingJobState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetRecordingJobState(struct soap *soap, struct __trc__GetRecordingJobState *p) -{ - if (::soap_read___trc__GetRecordingJobState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__SetRecordingJobMode_DEFINED -#define SOAP_TYPE___trc__SetRecordingJobMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetRecordingJobMode(struct soap*, struct __trc__SetRecordingJobMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetRecordingJobMode(struct soap*, const struct __trc__SetRecordingJobMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetRecordingJobMode(struct soap*, const char*, int, const struct __trc__SetRecordingJobMode *, const char*); -SOAP_FMAC3 struct __trc__SetRecordingJobMode * SOAP_FMAC4 soap_in___trc__SetRecordingJobMode(struct soap*, const char*, struct __trc__SetRecordingJobMode *, const char*); -SOAP_FMAC1 struct __trc__SetRecordingJobMode * SOAP_FMAC2 soap_instantiate___trc__SetRecordingJobMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__SetRecordingJobMode * soap_new___trc__SetRecordingJobMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__SetRecordingJobMode(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__SetRecordingJobMode * soap_new_req___trc__SetRecordingJobMode( - struct soap *soap) -{ - struct __trc__SetRecordingJobMode *_p = ::soap_new___trc__SetRecordingJobMode(soap); - if (_p) - { ::soap_default___trc__SetRecordingJobMode(soap, _p); - } - return _p; -} - -inline struct __trc__SetRecordingJobMode * soap_new_set___trc__SetRecordingJobMode( - struct soap *soap, - _trc__SetRecordingJobMode *trc__SetRecordingJobMode) -{ - struct __trc__SetRecordingJobMode *_p = ::soap_new___trc__SetRecordingJobMode(soap); - if (_p) - { ::soap_default___trc__SetRecordingJobMode(soap, _p); - _p->trc__SetRecordingJobMode = trc__SetRecordingJobMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetRecordingJobMode(struct soap*, const struct __trc__SetRecordingJobMode *, const char*, const char*); - -inline int soap_write___trc__SetRecordingJobMode(struct soap *soap, struct __trc__SetRecordingJobMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__SetRecordingJobMode(soap, p), 0) || ::soap_put___trc__SetRecordingJobMode(soap, p, "-trc:SetRecordingJobMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__SetRecordingJobMode(struct soap *soap, const char *URL, struct __trc__SetRecordingJobMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingJobMode(soap, p), 0) || ::soap_put___trc__SetRecordingJobMode(soap, p, "-trc:SetRecordingJobMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__SetRecordingJobMode(struct soap *soap, const char *URL, struct __trc__SetRecordingJobMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingJobMode(soap, p), 0) || ::soap_put___trc__SetRecordingJobMode(soap, p, "-trc:SetRecordingJobMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__SetRecordingJobMode(struct soap *soap, const char *URL, struct __trc__SetRecordingJobMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingJobMode(soap, p), 0) || ::soap_put___trc__SetRecordingJobMode(soap, p, "-trc:SetRecordingJobMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__SetRecordingJobMode * SOAP_FMAC4 soap_get___trc__SetRecordingJobMode(struct soap*, struct __trc__SetRecordingJobMode *, const char*, const char*); - -inline int soap_read___trc__SetRecordingJobMode(struct soap *soap, struct __trc__SetRecordingJobMode *p) -{ - if (p) - { ::soap_default___trc__SetRecordingJobMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__SetRecordingJobMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__SetRecordingJobMode(struct soap *soap, const char *URL, struct __trc__SetRecordingJobMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__SetRecordingJobMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__SetRecordingJobMode(struct soap *soap, struct __trc__SetRecordingJobMode *p) -{ - if (::soap_read___trc__SetRecordingJobMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetRecordingJobConfiguration_DEFINED -#define SOAP_TYPE___trc__GetRecordingJobConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingJobConfiguration(struct soap*, struct __trc__GetRecordingJobConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingJobConfiguration(struct soap*, const struct __trc__GetRecordingJobConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingJobConfiguration(struct soap*, const char*, int, const struct __trc__GetRecordingJobConfiguration *, const char*); -SOAP_FMAC3 struct __trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_in___trc__GetRecordingJobConfiguration(struct soap*, const char*, struct __trc__GetRecordingJobConfiguration *, const char*); -SOAP_FMAC1 struct __trc__GetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate___trc__GetRecordingJobConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetRecordingJobConfiguration * soap_new___trc__GetRecordingJobConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetRecordingJobConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetRecordingJobConfiguration * soap_new_req___trc__GetRecordingJobConfiguration( - struct soap *soap) -{ - struct __trc__GetRecordingJobConfiguration *_p = ::soap_new___trc__GetRecordingJobConfiguration(soap); - if (_p) - { ::soap_default___trc__GetRecordingJobConfiguration(soap, _p); - } - return _p; -} - -inline struct __trc__GetRecordingJobConfiguration * soap_new_set___trc__GetRecordingJobConfiguration( - struct soap *soap, - _trc__GetRecordingJobConfiguration *trc__GetRecordingJobConfiguration) -{ - struct __trc__GetRecordingJobConfiguration *_p = ::soap_new___trc__GetRecordingJobConfiguration(soap); - if (_p) - { ::soap_default___trc__GetRecordingJobConfiguration(soap, _p); - _p->trc__GetRecordingJobConfiguration = trc__GetRecordingJobConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingJobConfiguration(struct soap*, const struct __trc__GetRecordingJobConfiguration *, const char*, const char*); - -inline int soap_write___trc__GetRecordingJobConfiguration(struct soap *soap, struct __trc__GetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingJobConfiguration(soap, p, "-trc:GetRecordingJobConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingJobConfiguration(soap, p, "-trc:GetRecordingJobConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingJobConfiguration(soap, p, "-trc:GetRecordingJobConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingJobConfiguration(soap, p, "-trc:GetRecordingJobConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetRecordingJobConfiguration * SOAP_FMAC4 soap_get___trc__GetRecordingJobConfiguration(struct soap*, struct __trc__GetRecordingJobConfiguration *, const char*, const char*); - -inline int soap_read___trc__GetRecordingJobConfiguration(struct soap *soap, struct __trc__GetRecordingJobConfiguration *p) -{ - if (p) - { ::soap_default___trc__GetRecordingJobConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetRecordingJobConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingJobConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetRecordingJobConfiguration(struct soap *soap, struct __trc__GetRecordingJobConfiguration *p) -{ - if (::soap_read___trc__GetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__SetRecordingJobConfiguration_DEFINED -#define SOAP_TYPE___trc__SetRecordingJobConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetRecordingJobConfiguration(struct soap*, struct __trc__SetRecordingJobConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetRecordingJobConfiguration(struct soap*, const struct __trc__SetRecordingJobConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetRecordingJobConfiguration(struct soap*, const char*, int, const struct __trc__SetRecordingJobConfiguration *, const char*); -SOAP_FMAC3 struct __trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_in___trc__SetRecordingJobConfiguration(struct soap*, const char*, struct __trc__SetRecordingJobConfiguration *, const char*); -SOAP_FMAC1 struct __trc__SetRecordingJobConfiguration * SOAP_FMAC2 soap_instantiate___trc__SetRecordingJobConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__SetRecordingJobConfiguration * soap_new___trc__SetRecordingJobConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__SetRecordingJobConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__SetRecordingJobConfiguration * soap_new_req___trc__SetRecordingJobConfiguration( - struct soap *soap) -{ - struct __trc__SetRecordingJobConfiguration *_p = ::soap_new___trc__SetRecordingJobConfiguration(soap); - if (_p) - { ::soap_default___trc__SetRecordingJobConfiguration(soap, _p); - } - return _p; -} - -inline struct __trc__SetRecordingJobConfiguration * soap_new_set___trc__SetRecordingJobConfiguration( - struct soap *soap, - _trc__SetRecordingJobConfiguration *trc__SetRecordingJobConfiguration) -{ - struct __trc__SetRecordingJobConfiguration *_p = ::soap_new___trc__SetRecordingJobConfiguration(soap); - if (_p) - { ::soap_default___trc__SetRecordingJobConfiguration(soap, _p); - _p->trc__SetRecordingJobConfiguration = trc__SetRecordingJobConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetRecordingJobConfiguration(struct soap*, const struct __trc__SetRecordingJobConfiguration *, const char*, const char*); - -inline int soap_write___trc__SetRecordingJobConfiguration(struct soap *soap, struct __trc__SetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__SetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingJobConfiguration(soap, p, "-trc:SetRecordingJobConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingJobConfiguration(soap, p, "-trc:SetRecordingJobConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingJobConfiguration(soap, p, "-trc:SetRecordingJobConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingJobConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingJobConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingJobConfiguration(soap, p, "-trc:SetRecordingJobConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__SetRecordingJobConfiguration * SOAP_FMAC4 soap_get___trc__SetRecordingJobConfiguration(struct soap*, struct __trc__SetRecordingJobConfiguration *, const char*, const char*); - -inline int soap_read___trc__SetRecordingJobConfiguration(struct soap *soap, struct __trc__SetRecordingJobConfiguration *p) -{ - if (p) - { ::soap_default___trc__SetRecordingJobConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__SetRecordingJobConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__SetRecordingJobConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingJobConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__SetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__SetRecordingJobConfiguration(struct soap *soap, struct __trc__SetRecordingJobConfiguration *p) -{ - if (::soap_read___trc__SetRecordingJobConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetRecordingJobs_DEFINED -#define SOAP_TYPE___trc__GetRecordingJobs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingJobs(struct soap*, struct __trc__GetRecordingJobs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingJobs(struct soap*, const struct __trc__GetRecordingJobs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingJobs(struct soap*, const char*, int, const struct __trc__GetRecordingJobs *, const char*); -SOAP_FMAC3 struct __trc__GetRecordingJobs * SOAP_FMAC4 soap_in___trc__GetRecordingJobs(struct soap*, const char*, struct __trc__GetRecordingJobs *, const char*); -SOAP_FMAC1 struct __trc__GetRecordingJobs * SOAP_FMAC2 soap_instantiate___trc__GetRecordingJobs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetRecordingJobs * soap_new___trc__GetRecordingJobs(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetRecordingJobs(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetRecordingJobs * soap_new_req___trc__GetRecordingJobs( - struct soap *soap) -{ - struct __trc__GetRecordingJobs *_p = ::soap_new___trc__GetRecordingJobs(soap); - if (_p) - { ::soap_default___trc__GetRecordingJobs(soap, _p); - } - return _p; -} - -inline struct __trc__GetRecordingJobs * soap_new_set___trc__GetRecordingJobs( - struct soap *soap, - _trc__GetRecordingJobs *trc__GetRecordingJobs) -{ - struct __trc__GetRecordingJobs *_p = ::soap_new___trc__GetRecordingJobs(soap); - if (_p) - { ::soap_default___trc__GetRecordingJobs(soap, _p); - _p->trc__GetRecordingJobs = trc__GetRecordingJobs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingJobs(struct soap*, const struct __trc__GetRecordingJobs *, const char*, const char*); - -inline int soap_write___trc__GetRecordingJobs(struct soap *soap, struct __trc__GetRecordingJobs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetRecordingJobs(soap, p), 0) || ::soap_put___trc__GetRecordingJobs(soap, p, "-trc:GetRecordingJobs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetRecordingJobs(struct soap *soap, const char *URL, struct __trc__GetRecordingJobs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobs(soap, p), 0) || ::soap_put___trc__GetRecordingJobs(soap, p, "-trc:GetRecordingJobs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetRecordingJobs(struct soap *soap, const char *URL, struct __trc__GetRecordingJobs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobs(soap, p), 0) || ::soap_put___trc__GetRecordingJobs(soap, p, "-trc:GetRecordingJobs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetRecordingJobs(struct soap *soap, const char *URL, struct __trc__GetRecordingJobs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingJobs(soap, p), 0) || ::soap_put___trc__GetRecordingJobs(soap, p, "-trc:GetRecordingJobs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetRecordingJobs * SOAP_FMAC4 soap_get___trc__GetRecordingJobs(struct soap*, struct __trc__GetRecordingJobs *, const char*, const char*); - -inline int soap_read___trc__GetRecordingJobs(struct soap *soap, struct __trc__GetRecordingJobs *p) -{ - if (p) - { ::soap_default___trc__GetRecordingJobs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetRecordingJobs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetRecordingJobs(struct soap *soap, const char *URL, struct __trc__GetRecordingJobs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetRecordingJobs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetRecordingJobs(struct soap *soap, struct __trc__GetRecordingJobs *p) -{ - if (::soap_read___trc__GetRecordingJobs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__DeleteRecordingJob_DEFINED -#define SOAP_TYPE___trc__DeleteRecordingJob_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__DeleteRecordingJob(struct soap*, struct __trc__DeleteRecordingJob *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__DeleteRecordingJob(struct soap*, const struct __trc__DeleteRecordingJob *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__DeleteRecordingJob(struct soap*, const char*, int, const struct __trc__DeleteRecordingJob *, const char*); -SOAP_FMAC3 struct __trc__DeleteRecordingJob * SOAP_FMAC4 soap_in___trc__DeleteRecordingJob(struct soap*, const char*, struct __trc__DeleteRecordingJob *, const char*); -SOAP_FMAC1 struct __trc__DeleteRecordingJob * SOAP_FMAC2 soap_instantiate___trc__DeleteRecordingJob(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__DeleteRecordingJob * soap_new___trc__DeleteRecordingJob(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__DeleteRecordingJob(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__DeleteRecordingJob * soap_new_req___trc__DeleteRecordingJob( - struct soap *soap) -{ - struct __trc__DeleteRecordingJob *_p = ::soap_new___trc__DeleteRecordingJob(soap); - if (_p) - { ::soap_default___trc__DeleteRecordingJob(soap, _p); - } - return _p; -} - -inline struct __trc__DeleteRecordingJob * soap_new_set___trc__DeleteRecordingJob( - struct soap *soap, - _trc__DeleteRecordingJob *trc__DeleteRecordingJob) -{ - struct __trc__DeleteRecordingJob *_p = ::soap_new___trc__DeleteRecordingJob(soap); - if (_p) - { ::soap_default___trc__DeleteRecordingJob(soap, _p); - _p->trc__DeleteRecordingJob = trc__DeleteRecordingJob; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__DeleteRecordingJob(struct soap*, const struct __trc__DeleteRecordingJob *, const char*, const char*); - -inline int soap_write___trc__DeleteRecordingJob(struct soap *soap, struct __trc__DeleteRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__DeleteRecordingJob(soap, p), 0) || ::soap_put___trc__DeleteRecordingJob(soap, p, "-trc:DeleteRecordingJob", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__DeleteRecordingJob(struct soap *soap, const char *URL, struct __trc__DeleteRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteRecordingJob(soap, p), 0) || ::soap_put___trc__DeleteRecordingJob(soap, p, "-trc:DeleteRecordingJob", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__DeleteRecordingJob(struct soap *soap, const char *URL, struct __trc__DeleteRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteRecordingJob(soap, p), 0) || ::soap_put___trc__DeleteRecordingJob(soap, p, "-trc:DeleteRecordingJob", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__DeleteRecordingJob(struct soap *soap, const char *URL, struct __trc__DeleteRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteRecordingJob(soap, p), 0) || ::soap_put___trc__DeleteRecordingJob(soap, p, "-trc:DeleteRecordingJob", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__DeleteRecordingJob * SOAP_FMAC4 soap_get___trc__DeleteRecordingJob(struct soap*, struct __trc__DeleteRecordingJob *, const char*, const char*); - -inline int soap_read___trc__DeleteRecordingJob(struct soap *soap, struct __trc__DeleteRecordingJob *p) -{ - if (p) - { ::soap_default___trc__DeleteRecordingJob(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__DeleteRecordingJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__DeleteRecordingJob(struct soap *soap, const char *URL, struct __trc__DeleteRecordingJob *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__DeleteRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__DeleteRecordingJob(struct soap *soap, struct __trc__DeleteRecordingJob *p) -{ - if (::soap_read___trc__DeleteRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__CreateRecordingJob_DEFINED -#define SOAP_TYPE___trc__CreateRecordingJob_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__CreateRecordingJob(struct soap*, struct __trc__CreateRecordingJob *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__CreateRecordingJob(struct soap*, const struct __trc__CreateRecordingJob *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__CreateRecordingJob(struct soap*, const char*, int, const struct __trc__CreateRecordingJob *, const char*); -SOAP_FMAC3 struct __trc__CreateRecordingJob * SOAP_FMAC4 soap_in___trc__CreateRecordingJob(struct soap*, const char*, struct __trc__CreateRecordingJob *, const char*); -SOAP_FMAC1 struct __trc__CreateRecordingJob * SOAP_FMAC2 soap_instantiate___trc__CreateRecordingJob(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__CreateRecordingJob * soap_new___trc__CreateRecordingJob(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__CreateRecordingJob(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__CreateRecordingJob * soap_new_req___trc__CreateRecordingJob( - struct soap *soap) -{ - struct __trc__CreateRecordingJob *_p = ::soap_new___trc__CreateRecordingJob(soap); - if (_p) - { ::soap_default___trc__CreateRecordingJob(soap, _p); - } - return _p; -} - -inline struct __trc__CreateRecordingJob * soap_new_set___trc__CreateRecordingJob( - struct soap *soap, - _trc__CreateRecordingJob *trc__CreateRecordingJob) -{ - struct __trc__CreateRecordingJob *_p = ::soap_new___trc__CreateRecordingJob(soap); - if (_p) - { ::soap_default___trc__CreateRecordingJob(soap, _p); - _p->trc__CreateRecordingJob = trc__CreateRecordingJob; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__CreateRecordingJob(struct soap*, const struct __trc__CreateRecordingJob *, const char*, const char*); - -inline int soap_write___trc__CreateRecordingJob(struct soap *soap, struct __trc__CreateRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__CreateRecordingJob(soap, p), 0) || ::soap_put___trc__CreateRecordingJob(soap, p, "-trc:CreateRecordingJob", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__CreateRecordingJob(struct soap *soap, const char *URL, struct __trc__CreateRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateRecordingJob(soap, p), 0) || ::soap_put___trc__CreateRecordingJob(soap, p, "-trc:CreateRecordingJob", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__CreateRecordingJob(struct soap *soap, const char *URL, struct __trc__CreateRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateRecordingJob(soap, p), 0) || ::soap_put___trc__CreateRecordingJob(soap, p, "-trc:CreateRecordingJob", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__CreateRecordingJob(struct soap *soap, const char *URL, struct __trc__CreateRecordingJob const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateRecordingJob(soap, p), 0) || ::soap_put___trc__CreateRecordingJob(soap, p, "-trc:CreateRecordingJob", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__CreateRecordingJob * SOAP_FMAC4 soap_get___trc__CreateRecordingJob(struct soap*, struct __trc__CreateRecordingJob *, const char*, const char*); - -inline int soap_read___trc__CreateRecordingJob(struct soap *soap, struct __trc__CreateRecordingJob *p) -{ - if (p) - { ::soap_default___trc__CreateRecordingJob(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__CreateRecordingJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__CreateRecordingJob(struct soap *soap, const char *URL, struct __trc__CreateRecordingJob *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__CreateRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__CreateRecordingJob(struct soap *soap, struct __trc__CreateRecordingJob *p) -{ - if (::soap_read___trc__CreateRecordingJob(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__SetTrackConfiguration_DEFINED -#define SOAP_TYPE___trc__SetTrackConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetTrackConfiguration(struct soap*, struct __trc__SetTrackConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetTrackConfiguration(struct soap*, const struct __trc__SetTrackConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetTrackConfiguration(struct soap*, const char*, int, const struct __trc__SetTrackConfiguration *, const char*); -SOAP_FMAC3 struct __trc__SetTrackConfiguration * SOAP_FMAC4 soap_in___trc__SetTrackConfiguration(struct soap*, const char*, struct __trc__SetTrackConfiguration *, const char*); -SOAP_FMAC1 struct __trc__SetTrackConfiguration * SOAP_FMAC2 soap_instantiate___trc__SetTrackConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__SetTrackConfiguration * soap_new___trc__SetTrackConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__SetTrackConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__SetTrackConfiguration * soap_new_req___trc__SetTrackConfiguration( - struct soap *soap) -{ - struct __trc__SetTrackConfiguration *_p = ::soap_new___trc__SetTrackConfiguration(soap); - if (_p) - { ::soap_default___trc__SetTrackConfiguration(soap, _p); - } - return _p; -} - -inline struct __trc__SetTrackConfiguration * soap_new_set___trc__SetTrackConfiguration( - struct soap *soap, - _trc__SetTrackConfiguration *trc__SetTrackConfiguration) -{ - struct __trc__SetTrackConfiguration *_p = ::soap_new___trc__SetTrackConfiguration(soap); - if (_p) - { ::soap_default___trc__SetTrackConfiguration(soap, _p); - _p->trc__SetTrackConfiguration = trc__SetTrackConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetTrackConfiguration(struct soap*, const struct __trc__SetTrackConfiguration *, const char*, const char*); - -inline int soap_write___trc__SetTrackConfiguration(struct soap *soap, struct __trc__SetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__SetTrackConfiguration(soap, p), 0) || ::soap_put___trc__SetTrackConfiguration(soap, p, "-trc:SetTrackConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__SetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__SetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetTrackConfiguration(soap, p), 0) || ::soap_put___trc__SetTrackConfiguration(soap, p, "-trc:SetTrackConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__SetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__SetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetTrackConfiguration(soap, p), 0) || ::soap_put___trc__SetTrackConfiguration(soap, p, "-trc:SetTrackConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__SetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__SetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetTrackConfiguration(soap, p), 0) || ::soap_put___trc__SetTrackConfiguration(soap, p, "-trc:SetTrackConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__SetTrackConfiguration * SOAP_FMAC4 soap_get___trc__SetTrackConfiguration(struct soap*, struct __trc__SetTrackConfiguration *, const char*, const char*); - -inline int soap_read___trc__SetTrackConfiguration(struct soap *soap, struct __trc__SetTrackConfiguration *p) -{ - if (p) - { ::soap_default___trc__SetTrackConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__SetTrackConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__SetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__SetTrackConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__SetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__SetTrackConfiguration(struct soap *soap, struct __trc__SetTrackConfiguration *p) -{ - if (::soap_read___trc__SetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetTrackConfiguration_DEFINED -#define SOAP_TYPE___trc__GetTrackConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetTrackConfiguration(struct soap*, struct __trc__GetTrackConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetTrackConfiguration(struct soap*, const struct __trc__GetTrackConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetTrackConfiguration(struct soap*, const char*, int, const struct __trc__GetTrackConfiguration *, const char*); -SOAP_FMAC3 struct __trc__GetTrackConfiguration * SOAP_FMAC4 soap_in___trc__GetTrackConfiguration(struct soap*, const char*, struct __trc__GetTrackConfiguration *, const char*); -SOAP_FMAC1 struct __trc__GetTrackConfiguration * SOAP_FMAC2 soap_instantiate___trc__GetTrackConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetTrackConfiguration * soap_new___trc__GetTrackConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetTrackConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetTrackConfiguration * soap_new_req___trc__GetTrackConfiguration( - struct soap *soap) -{ - struct __trc__GetTrackConfiguration *_p = ::soap_new___trc__GetTrackConfiguration(soap); - if (_p) - { ::soap_default___trc__GetTrackConfiguration(soap, _p); - } - return _p; -} - -inline struct __trc__GetTrackConfiguration * soap_new_set___trc__GetTrackConfiguration( - struct soap *soap, - _trc__GetTrackConfiguration *trc__GetTrackConfiguration) -{ - struct __trc__GetTrackConfiguration *_p = ::soap_new___trc__GetTrackConfiguration(soap); - if (_p) - { ::soap_default___trc__GetTrackConfiguration(soap, _p); - _p->trc__GetTrackConfiguration = trc__GetTrackConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetTrackConfiguration(struct soap*, const struct __trc__GetTrackConfiguration *, const char*, const char*); - -inline int soap_write___trc__GetTrackConfiguration(struct soap *soap, struct __trc__GetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetTrackConfiguration(soap, p), 0) || ::soap_put___trc__GetTrackConfiguration(soap, p, "-trc:GetTrackConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__GetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetTrackConfiguration(soap, p), 0) || ::soap_put___trc__GetTrackConfiguration(soap, p, "-trc:GetTrackConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__GetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetTrackConfiguration(soap, p), 0) || ::soap_put___trc__GetTrackConfiguration(soap, p, "-trc:GetTrackConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__GetTrackConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetTrackConfiguration(soap, p), 0) || ::soap_put___trc__GetTrackConfiguration(soap, p, "-trc:GetTrackConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetTrackConfiguration * SOAP_FMAC4 soap_get___trc__GetTrackConfiguration(struct soap*, struct __trc__GetTrackConfiguration *, const char*, const char*); - -inline int soap_read___trc__GetTrackConfiguration(struct soap *soap, struct __trc__GetTrackConfiguration *p) -{ - if (p) - { ::soap_default___trc__GetTrackConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetTrackConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetTrackConfiguration(struct soap *soap, const char *URL, struct __trc__GetTrackConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetTrackConfiguration(struct soap *soap, struct __trc__GetTrackConfiguration *p) -{ - if (::soap_read___trc__GetTrackConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__DeleteTrack_DEFINED -#define SOAP_TYPE___trc__DeleteTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__DeleteTrack(struct soap*, struct __trc__DeleteTrack *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__DeleteTrack(struct soap*, const struct __trc__DeleteTrack *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__DeleteTrack(struct soap*, const char*, int, const struct __trc__DeleteTrack *, const char*); -SOAP_FMAC3 struct __trc__DeleteTrack * SOAP_FMAC4 soap_in___trc__DeleteTrack(struct soap*, const char*, struct __trc__DeleteTrack *, const char*); -SOAP_FMAC1 struct __trc__DeleteTrack * SOAP_FMAC2 soap_instantiate___trc__DeleteTrack(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__DeleteTrack * soap_new___trc__DeleteTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__DeleteTrack(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__DeleteTrack * soap_new_req___trc__DeleteTrack( - struct soap *soap) -{ - struct __trc__DeleteTrack *_p = ::soap_new___trc__DeleteTrack(soap); - if (_p) - { ::soap_default___trc__DeleteTrack(soap, _p); - } - return _p; -} - -inline struct __trc__DeleteTrack * soap_new_set___trc__DeleteTrack( - struct soap *soap, - _trc__DeleteTrack *trc__DeleteTrack) -{ - struct __trc__DeleteTrack *_p = ::soap_new___trc__DeleteTrack(soap); - if (_p) - { ::soap_default___trc__DeleteTrack(soap, _p); - _p->trc__DeleteTrack = trc__DeleteTrack; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__DeleteTrack(struct soap*, const struct __trc__DeleteTrack *, const char*, const char*); - -inline int soap_write___trc__DeleteTrack(struct soap *soap, struct __trc__DeleteTrack const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__DeleteTrack(soap, p), 0) || ::soap_put___trc__DeleteTrack(soap, p, "-trc:DeleteTrack", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__DeleteTrack(struct soap *soap, const char *URL, struct __trc__DeleteTrack const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteTrack(soap, p), 0) || ::soap_put___trc__DeleteTrack(soap, p, "-trc:DeleteTrack", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__DeleteTrack(struct soap *soap, const char *URL, struct __trc__DeleteTrack const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteTrack(soap, p), 0) || ::soap_put___trc__DeleteTrack(soap, p, "-trc:DeleteTrack", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__DeleteTrack(struct soap *soap, const char *URL, struct __trc__DeleteTrack const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteTrack(soap, p), 0) || ::soap_put___trc__DeleteTrack(soap, p, "-trc:DeleteTrack", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__DeleteTrack * SOAP_FMAC4 soap_get___trc__DeleteTrack(struct soap*, struct __trc__DeleteTrack *, const char*, const char*); - -inline int soap_read___trc__DeleteTrack(struct soap *soap, struct __trc__DeleteTrack *p) -{ - if (p) - { ::soap_default___trc__DeleteTrack(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__DeleteTrack(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__DeleteTrack(struct soap *soap, const char *URL, struct __trc__DeleteTrack *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__DeleteTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__DeleteTrack(struct soap *soap, struct __trc__DeleteTrack *p) -{ - if (::soap_read___trc__DeleteTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__CreateTrack_DEFINED -#define SOAP_TYPE___trc__CreateTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__CreateTrack(struct soap*, struct __trc__CreateTrack *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__CreateTrack(struct soap*, const struct __trc__CreateTrack *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__CreateTrack(struct soap*, const char*, int, const struct __trc__CreateTrack *, const char*); -SOAP_FMAC3 struct __trc__CreateTrack * SOAP_FMAC4 soap_in___trc__CreateTrack(struct soap*, const char*, struct __trc__CreateTrack *, const char*); -SOAP_FMAC1 struct __trc__CreateTrack * SOAP_FMAC2 soap_instantiate___trc__CreateTrack(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__CreateTrack * soap_new___trc__CreateTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__CreateTrack(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__CreateTrack * soap_new_req___trc__CreateTrack( - struct soap *soap) -{ - struct __trc__CreateTrack *_p = ::soap_new___trc__CreateTrack(soap); - if (_p) - { ::soap_default___trc__CreateTrack(soap, _p); - } - return _p; -} - -inline struct __trc__CreateTrack * soap_new_set___trc__CreateTrack( - struct soap *soap, - _trc__CreateTrack *trc__CreateTrack) -{ - struct __trc__CreateTrack *_p = ::soap_new___trc__CreateTrack(soap); - if (_p) - { ::soap_default___trc__CreateTrack(soap, _p); - _p->trc__CreateTrack = trc__CreateTrack; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__CreateTrack(struct soap*, const struct __trc__CreateTrack *, const char*, const char*); - -inline int soap_write___trc__CreateTrack(struct soap *soap, struct __trc__CreateTrack const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__CreateTrack(soap, p), 0) || ::soap_put___trc__CreateTrack(soap, p, "-trc:CreateTrack", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__CreateTrack(struct soap *soap, const char *URL, struct __trc__CreateTrack const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateTrack(soap, p), 0) || ::soap_put___trc__CreateTrack(soap, p, "-trc:CreateTrack", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__CreateTrack(struct soap *soap, const char *URL, struct __trc__CreateTrack const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateTrack(soap, p), 0) || ::soap_put___trc__CreateTrack(soap, p, "-trc:CreateTrack", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__CreateTrack(struct soap *soap, const char *URL, struct __trc__CreateTrack const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateTrack(soap, p), 0) || ::soap_put___trc__CreateTrack(soap, p, "-trc:CreateTrack", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__CreateTrack * SOAP_FMAC4 soap_get___trc__CreateTrack(struct soap*, struct __trc__CreateTrack *, const char*, const char*); - -inline int soap_read___trc__CreateTrack(struct soap *soap, struct __trc__CreateTrack *p) -{ - if (p) - { ::soap_default___trc__CreateTrack(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__CreateTrack(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__CreateTrack(struct soap *soap, const char *URL, struct __trc__CreateTrack *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__CreateTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__CreateTrack(struct soap *soap, struct __trc__CreateTrack *p) -{ - if (::soap_read___trc__CreateTrack(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetRecordingOptions_DEFINED -#define SOAP_TYPE___trc__GetRecordingOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingOptions(struct soap*, struct __trc__GetRecordingOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingOptions(struct soap*, const struct __trc__GetRecordingOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingOptions(struct soap*, const char*, int, const struct __trc__GetRecordingOptions *, const char*); -SOAP_FMAC3 struct __trc__GetRecordingOptions * SOAP_FMAC4 soap_in___trc__GetRecordingOptions(struct soap*, const char*, struct __trc__GetRecordingOptions *, const char*); -SOAP_FMAC1 struct __trc__GetRecordingOptions * SOAP_FMAC2 soap_instantiate___trc__GetRecordingOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetRecordingOptions * soap_new___trc__GetRecordingOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetRecordingOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetRecordingOptions * soap_new_req___trc__GetRecordingOptions( - struct soap *soap) -{ - struct __trc__GetRecordingOptions *_p = ::soap_new___trc__GetRecordingOptions(soap); - if (_p) - { ::soap_default___trc__GetRecordingOptions(soap, _p); - } - return _p; -} - -inline struct __trc__GetRecordingOptions * soap_new_set___trc__GetRecordingOptions( - struct soap *soap, - _trc__GetRecordingOptions *trc__GetRecordingOptions) -{ - struct __trc__GetRecordingOptions *_p = ::soap_new___trc__GetRecordingOptions(soap); - if (_p) - { ::soap_default___trc__GetRecordingOptions(soap, _p); - _p->trc__GetRecordingOptions = trc__GetRecordingOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingOptions(struct soap*, const struct __trc__GetRecordingOptions *, const char*, const char*); - -inline int soap_write___trc__GetRecordingOptions(struct soap *soap, struct __trc__GetRecordingOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetRecordingOptions(soap, p), 0) || ::soap_put___trc__GetRecordingOptions(soap, p, "-trc:GetRecordingOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetRecordingOptions(struct soap *soap, const char *URL, struct __trc__GetRecordingOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingOptions(soap, p), 0) || ::soap_put___trc__GetRecordingOptions(soap, p, "-trc:GetRecordingOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetRecordingOptions(struct soap *soap, const char *URL, struct __trc__GetRecordingOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingOptions(soap, p), 0) || ::soap_put___trc__GetRecordingOptions(soap, p, "-trc:GetRecordingOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetRecordingOptions(struct soap *soap, const char *URL, struct __trc__GetRecordingOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingOptions(soap, p), 0) || ::soap_put___trc__GetRecordingOptions(soap, p, "-trc:GetRecordingOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetRecordingOptions * SOAP_FMAC4 soap_get___trc__GetRecordingOptions(struct soap*, struct __trc__GetRecordingOptions *, const char*, const char*); - -inline int soap_read___trc__GetRecordingOptions(struct soap *soap, struct __trc__GetRecordingOptions *p) -{ - if (p) - { ::soap_default___trc__GetRecordingOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetRecordingOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetRecordingOptions(struct soap *soap, const char *URL, struct __trc__GetRecordingOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetRecordingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetRecordingOptions(struct soap *soap, struct __trc__GetRecordingOptions *p) -{ - if (::soap_read___trc__GetRecordingOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetRecordingConfiguration_DEFINED -#define SOAP_TYPE___trc__GetRecordingConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordingConfiguration(struct soap*, struct __trc__GetRecordingConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordingConfiguration(struct soap*, const struct __trc__GetRecordingConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordingConfiguration(struct soap*, const char*, int, const struct __trc__GetRecordingConfiguration *, const char*); -SOAP_FMAC3 struct __trc__GetRecordingConfiguration * SOAP_FMAC4 soap_in___trc__GetRecordingConfiguration(struct soap*, const char*, struct __trc__GetRecordingConfiguration *, const char*); -SOAP_FMAC1 struct __trc__GetRecordingConfiguration * SOAP_FMAC2 soap_instantiate___trc__GetRecordingConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetRecordingConfiguration * soap_new___trc__GetRecordingConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetRecordingConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetRecordingConfiguration * soap_new_req___trc__GetRecordingConfiguration( - struct soap *soap) -{ - struct __trc__GetRecordingConfiguration *_p = ::soap_new___trc__GetRecordingConfiguration(soap); - if (_p) - { ::soap_default___trc__GetRecordingConfiguration(soap, _p); - } - return _p; -} - -inline struct __trc__GetRecordingConfiguration * soap_new_set___trc__GetRecordingConfiguration( - struct soap *soap, - _trc__GetRecordingConfiguration *trc__GetRecordingConfiguration) -{ - struct __trc__GetRecordingConfiguration *_p = ::soap_new___trc__GetRecordingConfiguration(soap); - if (_p) - { ::soap_default___trc__GetRecordingConfiguration(soap, _p); - _p->trc__GetRecordingConfiguration = trc__GetRecordingConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordingConfiguration(struct soap*, const struct __trc__GetRecordingConfiguration *, const char*, const char*); - -inline int soap_write___trc__GetRecordingConfiguration(struct soap *soap, struct __trc__GetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingConfiguration(soap, p, "-trc:GetRecordingConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingConfiguration(soap, p, "-trc:GetRecordingConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingConfiguration(soap, p, "-trc:GetRecordingConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__GetRecordingConfiguration(soap, p, "-trc:GetRecordingConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetRecordingConfiguration * SOAP_FMAC4 soap_get___trc__GetRecordingConfiguration(struct soap*, struct __trc__GetRecordingConfiguration *, const char*, const char*); - -inline int soap_read___trc__GetRecordingConfiguration(struct soap *soap, struct __trc__GetRecordingConfiguration *p) -{ - if (p) - { ::soap_default___trc__GetRecordingConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetRecordingConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__GetRecordingConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetRecordingConfiguration(struct soap *soap, struct __trc__GetRecordingConfiguration *p) -{ - if (::soap_read___trc__GetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__SetRecordingConfiguration_DEFINED -#define SOAP_TYPE___trc__SetRecordingConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__SetRecordingConfiguration(struct soap*, struct __trc__SetRecordingConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__SetRecordingConfiguration(struct soap*, const struct __trc__SetRecordingConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__SetRecordingConfiguration(struct soap*, const char*, int, const struct __trc__SetRecordingConfiguration *, const char*); -SOAP_FMAC3 struct __trc__SetRecordingConfiguration * SOAP_FMAC4 soap_in___trc__SetRecordingConfiguration(struct soap*, const char*, struct __trc__SetRecordingConfiguration *, const char*); -SOAP_FMAC1 struct __trc__SetRecordingConfiguration * SOAP_FMAC2 soap_instantiate___trc__SetRecordingConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__SetRecordingConfiguration * soap_new___trc__SetRecordingConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__SetRecordingConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__SetRecordingConfiguration * soap_new_req___trc__SetRecordingConfiguration( - struct soap *soap) -{ - struct __trc__SetRecordingConfiguration *_p = ::soap_new___trc__SetRecordingConfiguration(soap); - if (_p) - { ::soap_default___trc__SetRecordingConfiguration(soap, _p); - } - return _p; -} - -inline struct __trc__SetRecordingConfiguration * soap_new_set___trc__SetRecordingConfiguration( - struct soap *soap, - _trc__SetRecordingConfiguration *trc__SetRecordingConfiguration) -{ - struct __trc__SetRecordingConfiguration *_p = ::soap_new___trc__SetRecordingConfiguration(soap); - if (_p) - { ::soap_default___trc__SetRecordingConfiguration(soap, _p); - _p->trc__SetRecordingConfiguration = trc__SetRecordingConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__SetRecordingConfiguration(struct soap*, const struct __trc__SetRecordingConfiguration *, const char*, const char*); - -inline int soap_write___trc__SetRecordingConfiguration(struct soap *soap, struct __trc__SetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__SetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingConfiguration(soap, p, "-trc:SetRecordingConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__SetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingConfiguration(soap, p, "-trc:SetRecordingConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__SetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingConfiguration(soap, p, "-trc:SetRecordingConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__SetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__SetRecordingConfiguration(soap, p), 0) || ::soap_put___trc__SetRecordingConfiguration(soap, p, "-trc:SetRecordingConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__SetRecordingConfiguration * SOAP_FMAC4 soap_get___trc__SetRecordingConfiguration(struct soap*, struct __trc__SetRecordingConfiguration *, const char*, const char*); - -inline int soap_read___trc__SetRecordingConfiguration(struct soap *soap, struct __trc__SetRecordingConfiguration *p) -{ - if (p) - { ::soap_default___trc__SetRecordingConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__SetRecordingConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__SetRecordingConfiguration(struct soap *soap, const char *URL, struct __trc__SetRecordingConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__SetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__SetRecordingConfiguration(struct soap *soap, struct __trc__SetRecordingConfiguration *p) -{ - if (::soap_read___trc__SetRecordingConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetRecordings_DEFINED -#define SOAP_TYPE___trc__GetRecordings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetRecordings(struct soap*, struct __trc__GetRecordings *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetRecordings(struct soap*, const struct __trc__GetRecordings *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetRecordings(struct soap*, const char*, int, const struct __trc__GetRecordings *, const char*); -SOAP_FMAC3 struct __trc__GetRecordings * SOAP_FMAC4 soap_in___trc__GetRecordings(struct soap*, const char*, struct __trc__GetRecordings *, const char*); -SOAP_FMAC1 struct __trc__GetRecordings * SOAP_FMAC2 soap_instantiate___trc__GetRecordings(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetRecordings * soap_new___trc__GetRecordings(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetRecordings(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetRecordings * soap_new_req___trc__GetRecordings( - struct soap *soap) -{ - struct __trc__GetRecordings *_p = ::soap_new___trc__GetRecordings(soap); - if (_p) - { ::soap_default___trc__GetRecordings(soap, _p); - } - return _p; -} - -inline struct __trc__GetRecordings * soap_new_set___trc__GetRecordings( - struct soap *soap, - _trc__GetRecordings *trc__GetRecordings) -{ - struct __trc__GetRecordings *_p = ::soap_new___trc__GetRecordings(soap); - if (_p) - { ::soap_default___trc__GetRecordings(soap, _p); - _p->trc__GetRecordings = trc__GetRecordings; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetRecordings(struct soap*, const struct __trc__GetRecordings *, const char*, const char*); - -inline int soap_write___trc__GetRecordings(struct soap *soap, struct __trc__GetRecordings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetRecordings(soap, p), 0) || ::soap_put___trc__GetRecordings(soap, p, "-trc:GetRecordings", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetRecordings(struct soap *soap, const char *URL, struct __trc__GetRecordings const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordings(soap, p), 0) || ::soap_put___trc__GetRecordings(soap, p, "-trc:GetRecordings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetRecordings(struct soap *soap, const char *URL, struct __trc__GetRecordings const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordings(soap, p), 0) || ::soap_put___trc__GetRecordings(soap, p, "-trc:GetRecordings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetRecordings(struct soap *soap, const char *URL, struct __trc__GetRecordings const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetRecordings(soap, p), 0) || ::soap_put___trc__GetRecordings(soap, p, "-trc:GetRecordings", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetRecordings * SOAP_FMAC4 soap_get___trc__GetRecordings(struct soap*, struct __trc__GetRecordings *, const char*, const char*); - -inline int soap_read___trc__GetRecordings(struct soap *soap, struct __trc__GetRecordings *p) -{ - if (p) - { ::soap_default___trc__GetRecordings(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetRecordings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetRecordings(struct soap *soap, const char *URL, struct __trc__GetRecordings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetRecordings(struct soap *soap, struct __trc__GetRecordings *p) -{ - if (::soap_read___trc__GetRecordings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__DeleteRecording_DEFINED -#define SOAP_TYPE___trc__DeleteRecording_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__DeleteRecording(struct soap*, struct __trc__DeleteRecording *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__DeleteRecording(struct soap*, const struct __trc__DeleteRecording *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__DeleteRecording(struct soap*, const char*, int, const struct __trc__DeleteRecording *, const char*); -SOAP_FMAC3 struct __trc__DeleteRecording * SOAP_FMAC4 soap_in___trc__DeleteRecording(struct soap*, const char*, struct __trc__DeleteRecording *, const char*); -SOAP_FMAC1 struct __trc__DeleteRecording * SOAP_FMAC2 soap_instantiate___trc__DeleteRecording(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__DeleteRecording * soap_new___trc__DeleteRecording(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__DeleteRecording(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__DeleteRecording * soap_new_req___trc__DeleteRecording( - struct soap *soap) -{ - struct __trc__DeleteRecording *_p = ::soap_new___trc__DeleteRecording(soap); - if (_p) - { ::soap_default___trc__DeleteRecording(soap, _p); - } - return _p; -} - -inline struct __trc__DeleteRecording * soap_new_set___trc__DeleteRecording( - struct soap *soap, - _trc__DeleteRecording *trc__DeleteRecording) -{ - struct __trc__DeleteRecording *_p = ::soap_new___trc__DeleteRecording(soap); - if (_p) - { ::soap_default___trc__DeleteRecording(soap, _p); - _p->trc__DeleteRecording = trc__DeleteRecording; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__DeleteRecording(struct soap*, const struct __trc__DeleteRecording *, const char*, const char*); - -inline int soap_write___trc__DeleteRecording(struct soap *soap, struct __trc__DeleteRecording const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__DeleteRecording(soap, p), 0) || ::soap_put___trc__DeleteRecording(soap, p, "-trc:DeleteRecording", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__DeleteRecording(struct soap *soap, const char *URL, struct __trc__DeleteRecording const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteRecording(soap, p), 0) || ::soap_put___trc__DeleteRecording(soap, p, "-trc:DeleteRecording", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__DeleteRecording(struct soap *soap, const char *URL, struct __trc__DeleteRecording const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteRecording(soap, p), 0) || ::soap_put___trc__DeleteRecording(soap, p, "-trc:DeleteRecording", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__DeleteRecording(struct soap *soap, const char *URL, struct __trc__DeleteRecording const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__DeleteRecording(soap, p), 0) || ::soap_put___trc__DeleteRecording(soap, p, "-trc:DeleteRecording", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__DeleteRecording * SOAP_FMAC4 soap_get___trc__DeleteRecording(struct soap*, struct __trc__DeleteRecording *, const char*, const char*); - -inline int soap_read___trc__DeleteRecording(struct soap *soap, struct __trc__DeleteRecording *p) -{ - if (p) - { ::soap_default___trc__DeleteRecording(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__DeleteRecording(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__DeleteRecording(struct soap *soap, const char *URL, struct __trc__DeleteRecording *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__DeleteRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__DeleteRecording(struct soap *soap, struct __trc__DeleteRecording *p) -{ - if (::soap_read___trc__DeleteRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__CreateRecording_DEFINED -#define SOAP_TYPE___trc__CreateRecording_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__CreateRecording(struct soap*, struct __trc__CreateRecording *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__CreateRecording(struct soap*, const struct __trc__CreateRecording *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__CreateRecording(struct soap*, const char*, int, const struct __trc__CreateRecording *, const char*); -SOAP_FMAC3 struct __trc__CreateRecording * SOAP_FMAC4 soap_in___trc__CreateRecording(struct soap*, const char*, struct __trc__CreateRecording *, const char*); -SOAP_FMAC1 struct __trc__CreateRecording * SOAP_FMAC2 soap_instantiate___trc__CreateRecording(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__CreateRecording * soap_new___trc__CreateRecording(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__CreateRecording(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__CreateRecording * soap_new_req___trc__CreateRecording( - struct soap *soap) -{ - struct __trc__CreateRecording *_p = ::soap_new___trc__CreateRecording(soap); - if (_p) - { ::soap_default___trc__CreateRecording(soap, _p); - } - return _p; -} - -inline struct __trc__CreateRecording * soap_new_set___trc__CreateRecording( - struct soap *soap, - _trc__CreateRecording *trc__CreateRecording) -{ - struct __trc__CreateRecording *_p = ::soap_new___trc__CreateRecording(soap); - if (_p) - { ::soap_default___trc__CreateRecording(soap, _p); - _p->trc__CreateRecording = trc__CreateRecording; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__CreateRecording(struct soap*, const struct __trc__CreateRecording *, const char*, const char*); - -inline int soap_write___trc__CreateRecording(struct soap *soap, struct __trc__CreateRecording const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__CreateRecording(soap, p), 0) || ::soap_put___trc__CreateRecording(soap, p, "-trc:CreateRecording", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__CreateRecording(struct soap *soap, const char *URL, struct __trc__CreateRecording const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateRecording(soap, p), 0) || ::soap_put___trc__CreateRecording(soap, p, "-trc:CreateRecording", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__CreateRecording(struct soap *soap, const char *URL, struct __trc__CreateRecording const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateRecording(soap, p), 0) || ::soap_put___trc__CreateRecording(soap, p, "-trc:CreateRecording", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__CreateRecording(struct soap *soap, const char *URL, struct __trc__CreateRecording const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__CreateRecording(soap, p), 0) || ::soap_put___trc__CreateRecording(soap, p, "-trc:CreateRecording", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__CreateRecording * SOAP_FMAC4 soap_get___trc__CreateRecording(struct soap*, struct __trc__CreateRecording *, const char*, const char*); - -inline int soap_read___trc__CreateRecording(struct soap *soap, struct __trc__CreateRecording *p) -{ - if (p) - { ::soap_default___trc__CreateRecording(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__CreateRecording(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__CreateRecording(struct soap *soap, const char *URL, struct __trc__CreateRecording *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__CreateRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__CreateRecording(struct soap *soap, struct __trc__CreateRecording *p) -{ - if (::soap_read___trc__CreateRecording(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___trc__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___trc__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___trc__GetServiceCapabilities(struct soap*, struct __trc__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___trc__GetServiceCapabilities(struct soap*, const struct __trc__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___trc__GetServiceCapabilities(struct soap*, const char*, int, const struct __trc__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __trc__GetServiceCapabilities * SOAP_FMAC4 soap_in___trc__GetServiceCapabilities(struct soap*, const char*, struct __trc__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __trc__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___trc__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __trc__GetServiceCapabilities * soap_new___trc__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___trc__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __trc__GetServiceCapabilities * soap_new_req___trc__GetServiceCapabilities( - struct soap *soap) -{ - struct __trc__GetServiceCapabilities *_p = ::soap_new___trc__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trc__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __trc__GetServiceCapabilities * soap_new_set___trc__GetServiceCapabilities( - struct soap *soap, - _trc__GetServiceCapabilities *trc__GetServiceCapabilities) -{ - struct __trc__GetServiceCapabilities *_p = ::soap_new___trc__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___trc__GetServiceCapabilities(soap, _p); - _p->trc__GetServiceCapabilities = trc__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___trc__GetServiceCapabilities(struct soap*, const struct __trc__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___trc__GetServiceCapabilities(struct soap *soap, struct __trc__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___trc__GetServiceCapabilities(soap, p), 0) || ::soap_put___trc__GetServiceCapabilities(soap, p, "-trc:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___trc__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trc__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetServiceCapabilities(soap, p), 0) || ::soap_put___trc__GetServiceCapabilities(soap, p, "-trc:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___trc__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trc__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetServiceCapabilities(soap, p), 0) || ::soap_put___trc__GetServiceCapabilities(soap, p, "-trc:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___trc__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trc__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___trc__GetServiceCapabilities(soap, p), 0) || ::soap_put___trc__GetServiceCapabilities(soap, p, "-trc:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __trc__GetServiceCapabilities * SOAP_FMAC4 soap_get___trc__GetServiceCapabilities(struct soap*, struct __trc__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___trc__GetServiceCapabilities(struct soap *soap, struct __trc__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___trc__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___trc__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___trc__GetServiceCapabilities(struct soap *soap, const char *URL, struct __trc__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___trc__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___trc__GetServiceCapabilities(struct soap *soap, struct __trc__GetServiceCapabilities *p) -{ - if (::soap_read___trc__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetCompatibleConfigurations_DEFINED -#define SOAP_TYPE___tptz__GetCompatibleConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetCompatibleConfigurations(struct soap*, struct __tptz__GetCompatibleConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetCompatibleConfigurations(struct soap*, const struct __tptz__GetCompatibleConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetCompatibleConfigurations(struct soap*, const char*, int, const struct __tptz__GetCompatibleConfigurations *, const char*); -SOAP_FMAC3 struct __tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_in___tptz__GetCompatibleConfigurations(struct soap*, const char*, struct __tptz__GetCompatibleConfigurations *, const char*); -SOAP_FMAC1 struct __tptz__GetCompatibleConfigurations * SOAP_FMAC2 soap_instantiate___tptz__GetCompatibleConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetCompatibleConfigurations * soap_new___tptz__GetCompatibleConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetCompatibleConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetCompatibleConfigurations * soap_new_req___tptz__GetCompatibleConfigurations( - struct soap *soap) -{ - struct __tptz__GetCompatibleConfigurations *_p = ::soap_new___tptz__GetCompatibleConfigurations(soap); - if (_p) - { ::soap_default___tptz__GetCompatibleConfigurations(soap, _p); - } - return _p; -} - -inline struct __tptz__GetCompatibleConfigurations * soap_new_set___tptz__GetCompatibleConfigurations( - struct soap *soap, - _tptz__GetCompatibleConfigurations *tptz__GetCompatibleConfigurations) -{ - struct __tptz__GetCompatibleConfigurations *_p = ::soap_new___tptz__GetCompatibleConfigurations(soap); - if (_p) - { ::soap_default___tptz__GetCompatibleConfigurations(soap, _p); - _p->tptz__GetCompatibleConfigurations = tptz__GetCompatibleConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetCompatibleConfigurations(struct soap*, const struct __tptz__GetCompatibleConfigurations *, const char*, const char*); - -inline int soap_write___tptz__GetCompatibleConfigurations(struct soap *soap, struct __tptz__GetCompatibleConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetCompatibleConfigurations(soap, p), 0) || ::soap_put___tptz__GetCompatibleConfigurations(soap, p, "-tptz:GetCompatibleConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, struct __tptz__GetCompatibleConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetCompatibleConfigurations(soap, p), 0) || ::soap_put___tptz__GetCompatibleConfigurations(soap, p, "-tptz:GetCompatibleConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, struct __tptz__GetCompatibleConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetCompatibleConfigurations(soap, p), 0) || ::soap_put___tptz__GetCompatibleConfigurations(soap, p, "-tptz:GetCompatibleConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, struct __tptz__GetCompatibleConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetCompatibleConfigurations(soap, p), 0) || ::soap_put___tptz__GetCompatibleConfigurations(soap, p, "-tptz:GetCompatibleConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetCompatibleConfigurations * SOAP_FMAC4 soap_get___tptz__GetCompatibleConfigurations(struct soap*, struct __tptz__GetCompatibleConfigurations *, const char*, const char*); - -inline int soap_read___tptz__GetCompatibleConfigurations(struct soap *soap, struct __tptz__GetCompatibleConfigurations *p) -{ - if (p) - { ::soap_default___tptz__GetCompatibleConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetCompatibleConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetCompatibleConfigurations(struct soap *soap, const char *URL, struct __tptz__GetCompatibleConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetCompatibleConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetCompatibleConfigurations(struct soap *soap, struct __tptz__GetCompatibleConfigurations *p) -{ - if (::soap_read___tptz__GetCompatibleConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__RemovePresetTour_DEFINED -#define SOAP_TYPE___tptz__RemovePresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__RemovePresetTour(struct soap*, struct __tptz__RemovePresetTour *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__RemovePresetTour(struct soap*, const struct __tptz__RemovePresetTour *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__RemovePresetTour(struct soap*, const char*, int, const struct __tptz__RemovePresetTour *, const char*); -SOAP_FMAC3 struct __tptz__RemovePresetTour * SOAP_FMAC4 soap_in___tptz__RemovePresetTour(struct soap*, const char*, struct __tptz__RemovePresetTour *, const char*); -SOAP_FMAC1 struct __tptz__RemovePresetTour * SOAP_FMAC2 soap_instantiate___tptz__RemovePresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__RemovePresetTour * soap_new___tptz__RemovePresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__RemovePresetTour(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__RemovePresetTour * soap_new_req___tptz__RemovePresetTour( - struct soap *soap) -{ - struct __tptz__RemovePresetTour *_p = ::soap_new___tptz__RemovePresetTour(soap); - if (_p) - { ::soap_default___tptz__RemovePresetTour(soap, _p); - } - return _p; -} - -inline struct __tptz__RemovePresetTour * soap_new_set___tptz__RemovePresetTour( - struct soap *soap, - _tptz__RemovePresetTour *tptz__RemovePresetTour) -{ - struct __tptz__RemovePresetTour *_p = ::soap_new___tptz__RemovePresetTour(soap); - if (_p) - { ::soap_default___tptz__RemovePresetTour(soap, _p); - _p->tptz__RemovePresetTour = tptz__RemovePresetTour; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__RemovePresetTour(struct soap*, const struct __tptz__RemovePresetTour *, const char*, const char*); - -inline int soap_write___tptz__RemovePresetTour(struct soap *soap, struct __tptz__RemovePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__RemovePresetTour(soap, p), 0) || ::soap_put___tptz__RemovePresetTour(soap, p, "-tptz:RemovePresetTour", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__RemovePresetTour(struct soap *soap, const char *URL, struct __tptz__RemovePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RemovePresetTour(soap, p), 0) || ::soap_put___tptz__RemovePresetTour(soap, p, "-tptz:RemovePresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__RemovePresetTour(struct soap *soap, const char *URL, struct __tptz__RemovePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RemovePresetTour(soap, p), 0) || ::soap_put___tptz__RemovePresetTour(soap, p, "-tptz:RemovePresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__RemovePresetTour(struct soap *soap, const char *URL, struct __tptz__RemovePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RemovePresetTour(soap, p), 0) || ::soap_put___tptz__RemovePresetTour(soap, p, "-tptz:RemovePresetTour", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__RemovePresetTour * SOAP_FMAC4 soap_get___tptz__RemovePresetTour(struct soap*, struct __tptz__RemovePresetTour *, const char*, const char*); - -inline int soap_read___tptz__RemovePresetTour(struct soap *soap, struct __tptz__RemovePresetTour *p) -{ - if (p) - { ::soap_default___tptz__RemovePresetTour(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__RemovePresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__RemovePresetTour(struct soap *soap, const char *URL, struct __tptz__RemovePresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__RemovePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__RemovePresetTour(struct soap *soap, struct __tptz__RemovePresetTour *p) -{ - if (::soap_read___tptz__RemovePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__OperatePresetTour_DEFINED -#define SOAP_TYPE___tptz__OperatePresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__OperatePresetTour(struct soap*, struct __tptz__OperatePresetTour *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__OperatePresetTour(struct soap*, const struct __tptz__OperatePresetTour *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__OperatePresetTour(struct soap*, const char*, int, const struct __tptz__OperatePresetTour *, const char*); -SOAP_FMAC3 struct __tptz__OperatePresetTour * SOAP_FMAC4 soap_in___tptz__OperatePresetTour(struct soap*, const char*, struct __tptz__OperatePresetTour *, const char*); -SOAP_FMAC1 struct __tptz__OperatePresetTour * SOAP_FMAC2 soap_instantiate___tptz__OperatePresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__OperatePresetTour * soap_new___tptz__OperatePresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__OperatePresetTour(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__OperatePresetTour * soap_new_req___tptz__OperatePresetTour( - struct soap *soap) -{ - struct __tptz__OperatePresetTour *_p = ::soap_new___tptz__OperatePresetTour(soap); - if (_p) - { ::soap_default___tptz__OperatePresetTour(soap, _p); - } - return _p; -} - -inline struct __tptz__OperatePresetTour * soap_new_set___tptz__OperatePresetTour( - struct soap *soap, - _tptz__OperatePresetTour *tptz__OperatePresetTour) -{ - struct __tptz__OperatePresetTour *_p = ::soap_new___tptz__OperatePresetTour(soap); - if (_p) - { ::soap_default___tptz__OperatePresetTour(soap, _p); - _p->tptz__OperatePresetTour = tptz__OperatePresetTour; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__OperatePresetTour(struct soap*, const struct __tptz__OperatePresetTour *, const char*, const char*); - -inline int soap_write___tptz__OperatePresetTour(struct soap *soap, struct __tptz__OperatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__OperatePresetTour(soap, p), 0) || ::soap_put___tptz__OperatePresetTour(soap, p, "-tptz:OperatePresetTour", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__OperatePresetTour(struct soap *soap, const char *URL, struct __tptz__OperatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__OperatePresetTour(soap, p), 0) || ::soap_put___tptz__OperatePresetTour(soap, p, "-tptz:OperatePresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__OperatePresetTour(struct soap *soap, const char *URL, struct __tptz__OperatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__OperatePresetTour(soap, p), 0) || ::soap_put___tptz__OperatePresetTour(soap, p, "-tptz:OperatePresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__OperatePresetTour(struct soap *soap, const char *URL, struct __tptz__OperatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__OperatePresetTour(soap, p), 0) || ::soap_put___tptz__OperatePresetTour(soap, p, "-tptz:OperatePresetTour", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__OperatePresetTour * SOAP_FMAC4 soap_get___tptz__OperatePresetTour(struct soap*, struct __tptz__OperatePresetTour *, const char*, const char*); - -inline int soap_read___tptz__OperatePresetTour(struct soap *soap, struct __tptz__OperatePresetTour *p) -{ - if (p) - { ::soap_default___tptz__OperatePresetTour(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__OperatePresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__OperatePresetTour(struct soap *soap, const char *URL, struct __tptz__OperatePresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__OperatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__OperatePresetTour(struct soap *soap, struct __tptz__OperatePresetTour *p) -{ - if (::soap_read___tptz__OperatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__ModifyPresetTour_DEFINED -#define SOAP_TYPE___tptz__ModifyPresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__ModifyPresetTour(struct soap*, struct __tptz__ModifyPresetTour *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__ModifyPresetTour(struct soap*, const struct __tptz__ModifyPresetTour *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__ModifyPresetTour(struct soap*, const char*, int, const struct __tptz__ModifyPresetTour *, const char*); -SOAP_FMAC3 struct __tptz__ModifyPresetTour * SOAP_FMAC4 soap_in___tptz__ModifyPresetTour(struct soap*, const char*, struct __tptz__ModifyPresetTour *, const char*); -SOAP_FMAC1 struct __tptz__ModifyPresetTour * SOAP_FMAC2 soap_instantiate___tptz__ModifyPresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__ModifyPresetTour * soap_new___tptz__ModifyPresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__ModifyPresetTour(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__ModifyPresetTour * soap_new_req___tptz__ModifyPresetTour( - struct soap *soap) -{ - struct __tptz__ModifyPresetTour *_p = ::soap_new___tptz__ModifyPresetTour(soap); - if (_p) - { ::soap_default___tptz__ModifyPresetTour(soap, _p); - } - return _p; -} - -inline struct __tptz__ModifyPresetTour * soap_new_set___tptz__ModifyPresetTour( - struct soap *soap, - _tptz__ModifyPresetTour *tptz__ModifyPresetTour) -{ - struct __tptz__ModifyPresetTour *_p = ::soap_new___tptz__ModifyPresetTour(soap); - if (_p) - { ::soap_default___tptz__ModifyPresetTour(soap, _p); - _p->tptz__ModifyPresetTour = tptz__ModifyPresetTour; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__ModifyPresetTour(struct soap*, const struct __tptz__ModifyPresetTour *, const char*, const char*); - -inline int soap_write___tptz__ModifyPresetTour(struct soap *soap, struct __tptz__ModifyPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__ModifyPresetTour(soap, p), 0) || ::soap_put___tptz__ModifyPresetTour(soap, p, "-tptz:ModifyPresetTour", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__ModifyPresetTour(struct soap *soap, const char *URL, struct __tptz__ModifyPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__ModifyPresetTour(soap, p), 0) || ::soap_put___tptz__ModifyPresetTour(soap, p, "-tptz:ModifyPresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__ModifyPresetTour(struct soap *soap, const char *URL, struct __tptz__ModifyPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__ModifyPresetTour(soap, p), 0) || ::soap_put___tptz__ModifyPresetTour(soap, p, "-tptz:ModifyPresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__ModifyPresetTour(struct soap *soap, const char *URL, struct __tptz__ModifyPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__ModifyPresetTour(soap, p), 0) || ::soap_put___tptz__ModifyPresetTour(soap, p, "-tptz:ModifyPresetTour", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__ModifyPresetTour * SOAP_FMAC4 soap_get___tptz__ModifyPresetTour(struct soap*, struct __tptz__ModifyPresetTour *, const char*, const char*); - -inline int soap_read___tptz__ModifyPresetTour(struct soap *soap, struct __tptz__ModifyPresetTour *p) -{ - if (p) - { ::soap_default___tptz__ModifyPresetTour(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__ModifyPresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__ModifyPresetTour(struct soap *soap, const char *URL, struct __tptz__ModifyPresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__ModifyPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__ModifyPresetTour(struct soap *soap, struct __tptz__ModifyPresetTour *p) -{ - if (::soap_read___tptz__ModifyPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__CreatePresetTour_DEFINED -#define SOAP_TYPE___tptz__CreatePresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__CreatePresetTour(struct soap*, struct __tptz__CreatePresetTour *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__CreatePresetTour(struct soap*, const struct __tptz__CreatePresetTour *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__CreatePresetTour(struct soap*, const char*, int, const struct __tptz__CreatePresetTour *, const char*); -SOAP_FMAC3 struct __tptz__CreatePresetTour * SOAP_FMAC4 soap_in___tptz__CreatePresetTour(struct soap*, const char*, struct __tptz__CreatePresetTour *, const char*); -SOAP_FMAC1 struct __tptz__CreatePresetTour * SOAP_FMAC2 soap_instantiate___tptz__CreatePresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__CreatePresetTour * soap_new___tptz__CreatePresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__CreatePresetTour(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__CreatePresetTour * soap_new_req___tptz__CreatePresetTour( - struct soap *soap) -{ - struct __tptz__CreatePresetTour *_p = ::soap_new___tptz__CreatePresetTour(soap); - if (_p) - { ::soap_default___tptz__CreatePresetTour(soap, _p); - } - return _p; -} - -inline struct __tptz__CreatePresetTour * soap_new_set___tptz__CreatePresetTour( - struct soap *soap, - _tptz__CreatePresetTour *tptz__CreatePresetTour) -{ - struct __tptz__CreatePresetTour *_p = ::soap_new___tptz__CreatePresetTour(soap); - if (_p) - { ::soap_default___tptz__CreatePresetTour(soap, _p); - _p->tptz__CreatePresetTour = tptz__CreatePresetTour; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__CreatePresetTour(struct soap*, const struct __tptz__CreatePresetTour *, const char*, const char*); - -inline int soap_write___tptz__CreatePresetTour(struct soap *soap, struct __tptz__CreatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__CreatePresetTour(soap, p), 0) || ::soap_put___tptz__CreatePresetTour(soap, p, "-tptz:CreatePresetTour", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__CreatePresetTour(struct soap *soap, const char *URL, struct __tptz__CreatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__CreatePresetTour(soap, p), 0) || ::soap_put___tptz__CreatePresetTour(soap, p, "-tptz:CreatePresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__CreatePresetTour(struct soap *soap, const char *URL, struct __tptz__CreatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__CreatePresetTour(soap, p), 0) || ::soap_put___tptz__CreatePresetTour(soap, p, "-tptz:CreatePresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__CreatePresetTour(struct soap *soap, const char *URL, struct __tptz__CreatePresetTour const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__CreatePresetTour(soap, p), 0) || ::soap_put___tptz__CreatePresetTour(soap, p, "-tptz:CreatePresetTour", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__CreatePresetTour * SOAP_FMAC4 soap_get___tptz__CreatePresetTour(struct soap*, struct __tptz__CreatePresetTour *, const char*, const char*); - -inline int soap_read___tptz__CreatePresetTour(struct soap *soap, struct __tptz__CreatePresetTour *p) -{ - if (p) - { ::soap_default___tptz__CreatePresetTour(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__CreatePresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__CreatePresetTour(struct soap *soap, const char *URL, struct __tptz__CreatePresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__CreatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__CreatePresetTour(struct soap *soap, struct __tptz__CreatePresetTour *p) -{ - if (::soap_read___tptz__CreatePresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetPresetTourOptions_DEFINED -#define SOAP_TYPE___tptz__GetPresetTourOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresetTourOptions(struct soap*, struct __tptz__GetPresetTourOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresetTourOptions(struct soap*, const struct __tptz__GetPresetTourOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresetTourOptions(struct soap*, const char*, int, const struct __tptz__GetPresetTourOptions *, const char*); -SOAP_FMAC3 struct __tptz__GetPresetTourOptions * SOAP_FMAC4 soap_in___tptz__GetPresetTourOptions(struct soap*, const char*, struct __tptz__GetPresetTourOptions *, const char*); -SOAP_FMAC1 struct __tptz__GetPresetTourOptions * SOAP_FMAC2 soap_instantiate___tptz__GetPresetTourOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetPresetTourOptions * soap_new___tptz__GetPresetTourOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetPresetTourOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetPresetTourOptions * soap_new_req___tptz__GetPresetTourOptions( - struct soap *soap) -{ - struct __tptz__GetPresetTourOptions *_p = ::soap_new___tptz__GetPresetTourOptions(soap); - if (_p) - { ::soap_default___tptz__GetPresetTourOptions(soap, _p); - } - return _p; -} - -inline struct __tptz__GetPresetTourOptions * soap_new_set___tptz__GetPresetTourOptions( - struct soap *soap, - _tptz__GetPresetTourOptions *tptz__GetPresetTourOptions) -{ - struct __tptz__GetPresetTourOptions *_p = ::soap_new___tptz__GetPresetTourOptions(soap); - if (_p) - { ::soap_default___tptz__GetPresetTourOptions(soap, _p); - _p->tptz__GetPresetTourOptions = tptz__GetPresetTourOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresetTourOptions(struct soap*, const struct __tptz__GetPresetTourOptions *, const char*, const char*); - -inline int soap_write___tptz__GetPresetTourOptions(struct soap *soap, struct __tptz__GetPresetTourOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetPresetTourOptions(soap, p), 0) || ::soap_put___tptz__GetPresetTourOptions(soap, p, "-tptz:GetPresetTourOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetPresetTourOptions(struct soap *soap, const char *URL, struct __tptz__GetPresetTourOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTourOptions(soap, p), 0) || ::soap_put___tptz__GetPresetTourOptions(soap, p, "-tptz:GetPresetTourOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetPresetTourOptions(struct soap *soap, const char *URL, struct __tptz__GetPresetTourOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTourOptions(soap, p), 0) || ::soap_put___tptz__GetPresetTourOptions(soap, p, "-tptz:GetPresetTourOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetPresetTourOptions(struct soap *soap, const char *URL, struct __tptz__GetPresetTourOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTourOptions(soap, p), 0) || ::soap_put___tptz__GetPresetTourOptions(soap, p, "-tptz:GetPresetTourOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetPresetTourOptions * SOAP_FMAC4 soap_get___tptz__GetPresetTourOptions(struct soap*, struct __tptz__GetPresetTourOptions *, const char*, const char*); - -inline int soap_read___tptz__GetPresetTourOptions(struct soap *soap, struct __tptz__GetPresetTourOptions *p) -{ - if (p) - { ::soap_default___tptz__GetPresetTourOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetPresetTourOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetPresetTourOptions(struct soap *soap, const char *URL, struct __tptz__GetPresetTourOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetPresetTourOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetPresetTourOptions(struct soap *soap, struct __tptz__GetPresetTourOptions *p) -{ - if (::soap_read___tptz__GetPresetTourOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetPresetTour_DEFINED -#define SOAP_TYPE___tptz__GetPresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresetTour(struct soap*, struct __tptz__GetPresetTour *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresetTour(struct soap*, const struct __tptz__GetPresetTour *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresetTour(struct soap*, const char*, int, const struct __tptz__GetPresetTour *, const char*); -SOAP_FMAC3 struct __tptz__GetPresetTour * SOAP_FMAC4 soap_in___tptz__GetPresetTour(struct soap*, const char*, struct __tptz__GetPresetTour *, const char*); -SOAP_FMAC1 struct __tptz__GetPresetTour * SOAP_FMAC2 soap_instantiate___tptz__GetPresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetPresetTour * soap_new___tptz__GetPresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetPresetTour(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetPresetTour * soap_new_req___tptz__GetPresetTour( - struct soap *soap) -{ - struct __tptz__GetPresetTour *_p = ::soap_new___tptz__GetPresetTour(soap); - if (_p) - { ::soap_default___tptz__GetPresetTour(soap, _p); - } - return _p; -} - -inline struct __tptz__GetPresetTour * soap_new_set___tptz__GetPresetTour( - struct soap *soap, - _tptz__GetPresetTour *tptz__GetPresetTour) -{ - struct __tptz__GetPresetTour *_p = ::soap_new___tptz__GetPresetTour(soap); - if (_p) - { ::soap_default___tptz__GetPresetTour(soap, _p); - _p->tptz__GetPresetTour = tptz__GetPresetTour; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresetTour(struct soap*, const struct __tptz__GetPresetTour *, const char*, const char*); - -inline int soap_write___tptz__GetPresetTour(struct soap *soap, struct __tptz__GetPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetPresetTour(soap, p), 0) || ::soap_put___tptz__GetPresetTour(soap, p, "-tptz:GetPresetTour", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetPresetTour(struct soap *soap, const char *URL, struct __tptz__GetPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTour(soap, p), 0) || ::soap_put___tptz__GetPresetTour(soap, p, "-tptz:GetPresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetPresetTour(struct soap *soap, const char *URL, struct __tptz__GetPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTour(soap, p), 0) || ::soap_put___tptz__GetPresetTour(soap, p, "-tptz:GetPresetTour", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetPresetTour(struct soap *soap, const char *URL, struct __tptz__GetPresetTour const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTour(soap, p), 0) || ::soap_put___tptz__GetPresetTour(soap, p, "-tptz:GetPresetTour", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetPresetTour * SOAP_FMAC4 soap_get___tptz__GetPresetTour(struct soap*, struct __tptz__GetPresetTour *, const char*, const char*); - -inline int soap_read___tptz__GetPresetTour(struct soap *soap, struct __tptz__GetPresetTour *p) -{ - if (p) - { ::soap_default___tptz__GetPresetTour(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetPresetTour(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetPresetTour(struct soap *soap, const char *URL, struct __tptz__GetPresetTour *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetPresetTour(struct soap *soap, struct __tptz__GetPresetTour *p) -{ - if (::soap_read___tptz__GetPresetTour(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetPresetTours_DEFINED -#define SOAP_TYPE___tptz__GetPresetTours_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresetTours(struct soap*, struct __tptz__GetPresetTours *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresetTours(struct soap*, const struct __tptz__GetPresetTours *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresetTours(struct soap*, const char*, int, const struct __tptz__GetPresetTours *, const char*); -SOAP_FMAC3 struct __tptz__GetPresetTours * SOAP_FMAC4 soap_in___tptz__GetPresetTours(struct soap*, const char*, struct __tptz__GetPresetTours *, const char*); -SOAP_FMAC1 struct __tptz__GetPresetTours * SOAP_FMAC2 soap_instantiate___tptz__GetPresetTours(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetPresetTours * soap_new___tptz__GetPresetTours(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetPresetTours(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetPresetTours * soap_new_req___tptz__GetPresetTours( - struct soap *soap) -{ - struct __tptz__GetPresetTours *_p = ::soap_new___tptz__GetPresetTours(soap); - if (_p) - { ::soap_default___tptz__GetPresetTours(soap, _p); - } - return _p; -} - -inline struct __tptz__GetPresetTours * soap_new_set___tptz__GetPresetTours( - struct soap *soap, - _tptz__GetPresetTours *tptz__GetPresetTours) -{ - struct __tptz__GetPresetTours *_p = ::soap_new___tptz__GetPresetTours(soap); - if (_p) - { ::soap_default___tptz__GetPresetTours(soap, _p); - _p->tptz__GetPresetTours = tptz__GetPresetTours; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresetTours(struct soap*, const struct __tptz__GetPresetTours *, const char*, const char*); - -inline int soap_write___tptz__GetPresetTours(struct soap *soap, struct __tptz__GetPresetTours const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetPresetTours(soap, p), 0) || ::soap_put___tptz__GetPresetTours(soap, p, "-tptz:GetPresetTours", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetPresetTours(struct soap *soap, const char *URL, struct __tptz__GetPresetTours const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTours(soap, p), 0) || ::soap_put___tptz__GetPresetTours(soap, p, "-tptz:GetPresetTours", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetPresetTours(struct soap *soap, const char *URL, struct __tptz__GetPresetTours const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTours(soap, p), 0) || ::soap_put___tptz__GetPresetTours(soap, p, "-tptz:GetPresetTours", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetPresetTours(struct soap *soap, const char *URL, struct __tptz__GetPresetTours const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresetTours(soap, p), 0) || ::soap_put___tptz__GetPresetTours(soap, p, "-tptz:GetPresetTours", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetPresetTours * SOAP_FMAC4 soap_get___tptz__GetPresetTours(struct soap*, struct __tptz__GetPresetTours *, const char*, const char*); - -inline int soap_read___tptz__GetPresetTours(struct soap *soap, struct __tptz__GetPresetTours *p) -{ - if (p) - { ::soap_default___tptz__GetPresetTours(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetPresetTours(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetPresetTours(struct soap *soap, const char *URL, struct __tptz__GetPresetTours *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetPresetTours(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetPresetTours(struct soap *soap, struct __tptz__GetPresetTours *p) -{ - if (::soap_read___tptz__GetPresetTours(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__Stop_DEFINED -#define SOAP_TYPE___tptz__Stop_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__Stop(struct soap*, struct __tptz__Stop *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__Stop(struct soap*, const struct __tptz__Stop *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__Stop(struct soap*, const char*, int, const struct __tptz__Stop *, const char*); -SOAP_FMAC3 struct __tptz__Stop * SOAP_FMAC4 soap_in___tptz__Stop(struct soap*, const char*, struct __tptz__Stop *, const char*); -SOAP_FMAC1 struct __tptz__Stop * SOAP_FMAC2 soap_instantiate___tptz__Stop(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__Stop * soap_new___tptz__Stop(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__Stop(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__Stop * soap_new_req___tptz__Stop( - struct soap *soap) -{ - struct __tptz__Stop *_p = ::soap_new___tptz__Stop(soap); - if (_p) - { ::soap_default___tptz__Stop(soap, _p); - } - return _p; -} - -inline struct __tptz__Stop * soap_new_set___tptz__Stop( - struct soap *soap, - _tptz__Stop *tptz__Stop) -{ - struct __tptz__Stop *_p = ::soap_new___tptz__Stop(soap); - if (_p) - { ::soap_default___tptz__Stop(soap, _p); - _p->tptz__Stop = tptz__Stop; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__Stop(struct soap*, const struct __tptz__Stop *, const char*, const char*); - -inline int soap_write___tptz__Stop(struct soap *soap, struct __tptz__Stop const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__Stop(soap, p), 0) || ::soap_put___tptz__Stop(soap, p, "-tptz:Stop", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__Stop(struct soap *soap, const char *URL, struct __tptz__Stop const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__Stop(soap, p), 0) || ::soap_put___tptz__Stop(soap, p, "-tptz:Stop", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__Stop(struct soap *soap, const char *URL, struct __tptz__Stop const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__Stop(soap, p), 0) || ::soap_put___tptz__Stop(soap, p, "-tptz:Stop", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__Stop(struct soap *soap, const char *URL, struct __tptz__Stop const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__Stop(soap, p), 0) || ::soap_put___tptz__Stop(soap, p, "-tptz:Stop", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__Stop * SOAP_FMAC4 soap_get___tptz__Stop(struct soap*, struct __tptz__Stop *, const char*, const char*); - -inline int soap_read___tptz__Stop(struct soap *soap, struct __tptz__Stop *p) -{ - if (p) - { ::soap_default___tptz__Stop(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__Stop(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__Stop(struct soap *soap, const char *URL, struct __tptz__Stop *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__Stop(struct soap *soap, struct __tptz__Stop *p) -{ - if (::soap_read___tptz__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__AbsoluteMove_DEFINED -#define SOAP_TYPE___tptz__AbsoluteMove_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__AbsoluteMove(struct soap*, struct __tptz__AbsoluteMove *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__AbsoluteMove(struct soap*, const struct __tptz__AbsoluteMove *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__AbsoluteMove(struct soap*, const char*, int, const struct __tptz__AbsoluteMove *, const char*); -SOAP_FMAC3 struct __tptz__AbsoluteMove * SOAP_FMAC4 soap_in___tptz__AbsoluteMove(struct soap*, const char*, struct __tptz__AbsoluteMove *, const char*); -SOAP_FMAC1 struct __tptz__AbsoluteMove * SOAP_FMAC2 soap_instantiate___tptz__AbsoluteMove(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__AbsoluteMove * soap_new___tptz__AbsoluteMove(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__AbsoluteMove(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__AbsoluteMove * soap_new_req___tptz__AbsoluteMove( - struct soap *soap) -{ - struct __tptz__AbsoluteMove *_p = ::soap_new___tptz__AbsoluteMove(soap); - if (_p) - { ::soap_default___tptz__AbsoluteMove(soap, _p); - } - return _p; -} - -inline struct __tptz__AbsoluteMove * soap_new_set___tptz__AbsoluteMove( - struct soap *soap, - _tptz__AbsoluteMove *tptz__AbsoluteMove) -{ - struct __tptz__AbsoluteMove *_p = ::soap_new___tptz__AbsoluteMove(soap); - if (_p) - { ::soap_default___tptz__AbsoluteMove(soap, _p); - _p->tptz__AbsoluteMove = tptz__AbsoluteMove; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__AbsoluteMove(struct soap*, const struct __tptz__AbsoluteMove *, const char*, const char*); - -inline int soap_write___tptz__AbsoluteMove(struct soap *soap, struct __tptz__AbsoluteMove const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__AbsoluteMove(soap, p), 0) || ::soap_put___tptz__AbsoluteMove(soap, p, "-tptz:AbsoluteMove", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__AbsoluteMove(struct soap *soap, const char *URL, struct __tptz__AbsoluteMove const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__AbsoluteMove(soap, p), 0) || ::soap_put___tptz__AbsoluteMove(soap, p, "-tptz:AbsoluteMove", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__AbsoluteMove(struct soap *soap, const char *URL, struct __tptz__AbsoluteMove const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__AbsoluteMove(soap, p), 0) || ::soap_put___tptz__AbsoluteMove(soap, p, "-tptz:AbsoluteMove", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__AbsoluteMove(struct soap *soap, const char *URL, struct __tptz__AbsoluteMove const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__AbsoluteMove(soap, p), 0) || ::soap_put___tptz__AbsoluteMove(soap, p, "-tptz:AbsoluteMove", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__AbsoluteMove * SOAP_FMAC4 soap_get___tptz__AbsoluteMove(struct soap*, struct __tptz__AbsoluteMove *, const char*, const char*); - -inline int soap_read___tptz__AbsoluteMove(struct soap *soap, struct __tptz__AbsoluteMove *p) -{ - if (p) - { ::soap_default___tptz__AbsoluteMove(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__AbsoluteMove(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__AbsoluteMove(struct soap *soap, const char *URL, struct __tptz__AbsoluteMove *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__AbsoluteMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__AbsoluteMove(struct soap *soap, struct __tptz__AbsoluteMove *p) -{ - if (::soap_read___tptz__AbsoluteMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__SendAuxiliaryCommand_DEFINED -#define SOAP_TYPE___tptz__SendAuxiliaryCommand_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SendAuxiliaryCommand(struct soap*, struct __tptz__SendAuxiliaryCommand *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SendAuxiliaryCommand(struct soap*, const struct __tptz__SendAuxiliaryCommand *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SendAuxiliaryCommand(struct soap*, const char*, int, const struct __tptz__SendAuxiliaryCommand *, const char*); -SOAP_FMAC3 struct __tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_in___tptz__SendAuxiliaryCommand(struct soap*, const char*, struct __tptz__SendAuxiliaryCommand *, const char*); -SOAP_FMAC1 struct __tptz__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate___tptz__SendAuxiliaryCommand(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__SendAuxiliaryCommand * soap_new___tptz__SendAuxiliaryCommand(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__SendAuxiliaryCommand(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__SendAuxiliaryCommand * soap_new_req___tptz__SendAuxiliaryCommand( - struct soap *soap) -{ - struct __tptz__SendAuxiliaryCommand *_p = ::soap_new___tptz__SendAuxiliaryCommand(soap); - if (_p) - { ::soap_default___tptz__SendAuxiliaryCommand(soap, _p); - } - return _p; -} - -inline struct __tptz__SendAuxiliaryCommand * soap_new_set___tptz__SendAuxiliaryCommand( - struct soap *soap, - _tptz__SendAuxiliaryCommand *tptz__SendAuxiliaryCommand) -{ - struct __tptz__SendAuxiliaryCommand *_p = ::soap_new___tptz__SendAuxiliaryCommand(soap); - if (_p) - { ::soap_default___tptz__SendAuxiliaryCommand(soap, _p); - _p->tptz__SendAuxiliaryCommand = tptz__SendAuxiliaryCommand; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SendAuxiliaryCommand(struct soap*, const struct __tptz__SendAuxiliaryCommand *, const char*, const char*); - -inline int soap_write___tptz__SendAuxiliaryCommand(struct soap *soap, struct __tptz__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tptz__SendAuxiliaryCommand(soap, p, "-tptz:SendAuxiliaryCommand", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tptz__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tptz__SendAuxiliaryCommand(soap, p, "-tptz:SendAuxiliaryCommand", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tptz__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tptz__SendAuxiliaryCommand(soap, p, "-tptz:SendAuxiliaryCommand", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tptz__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tptz__SendAuxiliaryCommand(soap, p, "-tptz:SendAuxiliaryCommand", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__SendAuxiliaryCommand * SOAP_FMAC4 soap_get___tptz__SendAuxiliaryCommand(struct soap*, struct __tptz__SendAuxiliaryCommand *, const char*, const char*); - -inline int soap_read___tptz__SendAuxiliaryCommand(struct soap *soap, struct __tptz__SendAuxiliaryCommand *p) -{ - if (p) - { ::soap_default___tptz__SendAuxiliaryCommand(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__SendAuxiliaryCommand(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tptz__SendAuxiliaryCommand *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__SendAuxiliaryCommand(struct soap *soap, struct __tptz__SendAuxiliaryCommand *p) -{ - if (::soap_read___tptz__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__RelativeMove_DEFINED -#define SOAP_TYPE___tptz__RelativeMove_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__RelativeMove(struct soap*, struct __tptz__RelativeMove *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__RelativeMove(struct soap*, const struct __tptz__RelativeMove *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__RelativeMove(struct soap*, const char*, int, const struct __tptz__RelativeMove *, const char*); -SOAP_FMAC3 struct __tptz__RelativeMove * SOAP_FMAC4 soap_in___tptz__RelativeMove(struct soap*, const char*, struct __tptz__RelativeMove *, const char*); -SOAP_FMAC1 struct __tptz__RelativeMove * SOAP_FMAC2 soap_instantiate___tptz__RelativeMove(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__RelativeMove * soap_new___tptz__RelativeMove(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__RelativeMove(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__RelativeMove * soap_new_req___tptz__RelativeMove( - struct soap *soap) -{ - struct __tptz__RelativeMove *_p = ::soap_new___tptz__RelativeMove(soap); - if (_p) - { ::soap_default___tptz__RelativeMove(soap, _p); - } - return _p; -} - -inline struct __tptz__RelativeMove * soap_new_set___tptz__RelativeMove( - struct soap *soap, - _tptz__RelativeMove *tptz__RelativeMove) -{ - struct __tptz__RelativeMove *_p = ::soap_new___tptz__RelativeMove(soap); - if (_p) - { ::soap_default___tptz__RelativeMove(soap, _p); - _p->tptz__RelativeMove = tptz__RelativeMove; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__RelativeMove(struct soap*, const struct __tptz__RelativeMove *, const char*, const char*); - -inline int soap_write___tptz__RelativeMove(struct soap *soap, struct __tptz__RelativeMove const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__RelativeMove(soap, p), 0) || ::soap_put___tptz__RelativeMove(soap, p, "-tptz:RelativeMove", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__RelativeMove(struct soap *soap, const char *URL, struct __tptz__RelativeMove const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RelativeMove(soap, p), 0) || ::soap_put___tptz__RelativeMove(soap, p, "-tptz:RelativeMove", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__RelativeMove(struct soap *soap, const char *URL, struct __tptz__RelativeMove const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RelativeMove(soap, p), 0) || ::soap_put___tptz__RelativeMove(soap, p, "-tptz:RelativeMove", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__RelativeMove(struct soap *soap, const char *URL, struct __tptz__RelativeMove const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RelativeMove(soap, p), 0) || ::soap_put___tptz__RelativeMove(soap, p, "-tptz:RelativeMove", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__RelativeMove * SOAP_FMAC4 soap_get___tptz__RelativeMove(struct soap*, struct __tptz__RelativeMove *, const char*, const char*); - -inline int soap_read___tptz__RelativeMove(struct soap *soap, struct __tptz__RelativeMove *p) -{ - if (p) - { ::soap_default___tptz__RelativeMove(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__RelativeMove(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__RelativeMove(struct soap *soap, const char *URL, struct __tptz__RelativeMove *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__RelativeMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__RelativeMove(struct soap *soap, struct __tptz__RelativeMove *p) -{ - if (::soap_read___tptz__RelativeMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__ContinuousMove_DEFINED -#define SOAP_TYPE___tptz__ContinuousMove_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__ContinuousMove(struct soap*, struct __tptz__ContinuousMove *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__ContinuousMove(struct soap*, const struct __tptz__ContinuousMove *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__ContinuousMove(struct soap*, const char*, int, const struct __tptz__ContinuousMove *, const char*); -SOAP_FMAC3 struct __tptz__ContinuousMove * SOAP_FMAC4 soap_in___tptz__ContinuousMove(struct soap*, const char*, struct __tptz__ContinuousMove *, const char*); -SOAP_FMAC1 struct __tptz__ContinuousMove * SOAP_FMAC2 soap_instantiate___tptz__ContinuousMove(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__ContinuousMove * soap_new___tptz__ContinuousMove(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__ContinuousMove(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__ContinuousMove * soap_new_req___tptz__ContinuousMove( - struct soap *soap) -{ - struct __tptz__ContinuousMove *_p = ::soap_new___tptz__ContinuousMove(soap); - if (_p) - { ::soap_default___tptz__ContinuousMove(soap, _p); - } - return _p; -} - -inline struct __tptz__ContinuousMove * soap_new_set___tptz__ContinuousMove( - struct soap *soap, - _tptz__ContinuousMove *tptz__ContinuousMove) -{ - struct __tptz__ContinuousMove *_p = ::soap_new___tptz__ContinuousMove(soap); - if (_p) - { ::soap_default___tptz__ContinuousMove(soap, _p); - _p->tptz__ContinuousMove = tptz__ContinuousMove; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__ContinuousMove(struct soap*, const struct __tptz__ContinuousMove *, const char*, const char*); - -inline int soap_write___tptz__ContinuousMove(struct soap *soap, struct __tptz__ContinuousMove const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__ContinuousMove(soap, p), 0) || ::soap_put___tptz__ContinuousMove(soap, p, "-tptz:ContinuousMove", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__ContinuousMove(struct soap *soap, const char *URL, struct __tptz__ContinuousMove const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__ContinuousMove(soap, p), 0) || ::soap_put___tptz__ContinuousMove(soap, p, "-tptz:ContinuousMove", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__ContinuousMove(struct soap *soap, const char *URL, struct __tptz__ContinuousMove const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__ContinuousMove(soap, p), 0) || ::soap_put___tptz__ContinuousMove(soap, p, "-tptz:ContinuousMove", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__ContinuousMove(struct soap *soap, const char *URL, struct __tptz__ContinuousMove const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__ContinuousMove(soap, p), 0) || ::soap_put___tptz__ContinuousMove(soap, p, "-tptz:ContinuousMove", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__ContinuousMove * SOAP_FMAC4 soap_get___tptz__ContinuousMove(struct soap*, struct __tptz__ContinuousMove *, const char*, const char*); - -inline int soap_read___tptz__ContinuousMove(struct soap *soap, struct __tptz__ContinuousMove *p) -{ - if (p) - { ::soap_default___tptz__ContinuousMove(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__ContinuousMove(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__ContinuousMove(struct soap *soap, const char *URL, struct __tptz__ContinuousMove *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__ContinuousMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__ContinuousMove(struct soap *soap, struct __tptz__ContinuousMove *p) -{ - if (::soap_read___tptz__ContinuousMove(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__SetHomePosition_DEFINED -#define SOAP_TYPE___tptz__SetHomePosition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetHomePosition(struct soap*, struct __tptz__SetHomePosition *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetHomePosition(struct soap*, const struct __tptz__SetHomePosition *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetHomePosition(struct soap*, const char*, int, const struct __tptz__SetHomePosition *, const char*); -SOAP_FMAC3 struct __tptz__SetHomePosition * SOAP_FMAC4 soap_in___tptz__SetHomePosition(struct soap*, const char*, struct __tptz__SetHomePosition *, const char*); -SOAP_FMAC1 struct __tptz__SetHomePosition * SOAP_FMAC2 soap_instantiate___tptz__SetHomePosition(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__SetHomePosition * soap_new___tptz__SetHomePosition(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__SetHomePosition(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__SetHomePosition * soap_new_req___tptz__SetHomePosition( - struct soap *soap) -{ - struct __tptz__SetHomePosition *_p = ::soap_new___tptz__SetHomePosition(soap); - if (_p) - { ::soap_default___tptz__SetHomePosition(soap, _p); - } - return _p; -} - -inline struct __tptz__SetHomePosition * soap_new_set___tptz__SetHomePosition( - struct soap *soap, - _tptz__SetHomePosition *tptz__SetHomePosition) -{ - struct __tptz__SetHomePosition *_p = ::soap_new___tptz__SetHomePosition(soap); - if (_p) - { ::soap_default___tptz__SetHomePosition(soap, _p); - _p->tptz__SetHomePosition = tptz__SetHomePosition; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetHomePosition(struct soap*, const struct __tptz__SetHomePosition *, const char*, const char*); - -inline int soap_write___tptz__SetHomePosition(struct soap *soap, struct __tptz__SetHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__SetHomePosition(soap, p), 0) || ::soap_put___tptz__SetHomePosition(soap, p, "-tptz:SetHomePosition", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__SetHomePosition(struct soap *soap, const char *URL, struct __tptz__SetHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetHomePosition(soap, p), 0) || ::soap_put___tptz__SetHomePosition(soap, p, "-tptz:SetHomePosition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__SetHomePosition(struct soap *soap, const char *URL, struct __tptz__SetHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetHomePosition(soap, p), 0) || ::soap_put___tptz__SetHomePosition(soap, p, "-tptz:SetHomePosition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__SetHomePosition(struct soap *soap, const char *URL, struct __tptz__SetHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetHomePosition(soap, p), 0) || ::soap_put___tptz__SetHomePosition(soap, p, "-tptz:SetHomePosition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__SetHomePosition * SOAP_FMAC4 soap_get___tptz__SetHomePosition(struct soap*, struct __tptz__SetHomePosition *, const char*, const char*); - -inline int soap_read___tptz__SetHomePosition(struct soap *soap, struct __tptz__SetHomePosition *p) -{ - if (p) - { ::soap_default___tptz__SetHomePosition(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__SetHomePosition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__SetHomePosition(struct soap *soap, const char *URL, struct __tptz__SetHomePosition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__SetHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__SetHomePosition(struct soap *soap, struct __tptz__SetHomePosition *p) -{ - if (::soap_read___tptz__SetHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GotoHomePosition_DEFINED -#define SOAP_TYPE___tptz__GotoHomePosition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GotoHomePosition(struct soap*, struct __tptz__GotoHomePosition *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GotoHomePosition(struct soap*, const struct __tptz__GotoHomePosition *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GotoHomePosition(struct soap*, const char*, int, const struct __tptz__GotoHomePosition *, const char*); -SOAP_FMAC3 struct __tptz__GotoHomePosition * SOAP_FMAC4 soap_in___tptz__GotoHomePosition(struct soap*, const char*, struct __tptz__GotoHomePosition *, const char*); -SOAP_FMAC1 struct __tptz__GotoHomePosition * SOAP_FMAC2 soap_instantiate___tptz__GotoHomePosition(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GotoHomePosition * soap_new___tptz__GotoHomePosition(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GotoHomePosition(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GotoHomePosition * soap_new_req___tptz__GotoHomePosition( - struct soap *soap) -{ - struct __tptz__GotoHomePosition *_p = ::soap_new___tptz__GotoHomePosition(soap); - if (_p) - { ::soap_default___tptz__GotoHomePosition(soap, _p); - } - return _p; -} - -inline struct __tptz__GotoHomePosition * soap_new_set___tptz__GotoHomePosition( - struct soap *soap, - _tptz__GotoHomePosition *tptz__GotoHomePosition) -{ - struct __tptz__GotoHomePosition *_p = ::soap_new___tptz__GotoHomePosition(soap); - if (_p) - { ::soap_default___tptz__GotoHomePosition(soap, _p); - _p->tptz__GotoHomePosition = tptz__GotoHomePosition; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GotoHomePosition(struct soap*, const struct __tptz__GotoHomePosition *, const char*, const char*); - -inline int soap_write___tptz__GotoHomePosition(struct soap *soap, struct __tptz__GotoHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GotoHomePosition(soap, p), 0) || ::soap_put___tptz__GotoHomePosition(soap, p, "-tptz:GotoHomePosition", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GotoHomePosition(struct soap *soap, const char *URL, struct __tptz__GotoHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GotoHomePosition(soap, p), 0) || ::soap_put___tptz__GotoHomePosition(soap, p, "-tptz:GotoHomePosition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GotoHomePosition(struct soap *soap, const char *URL, struct __tptz__GotoHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GotoHomePosition(soap, p), 0) || ::soap_put___tptz__GotoHomePosition(soap, p, "-tptz:GotoHomePosition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GotoHomePosition(struct soap *soap, const char *URL, struct __tptz__GotoHomePosition const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GotoHomePosition(soap, p), 0) || ::soap_put___tptz__GotoHomePosition(soap, p, "-tptz:GotoHomePosition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GotoHomePosition * SOAP_FMAC4 soap_get___tptz__GotoHomePosition(struct soap*, struct __tptz__GotoHomePosition *, const char*, const char*); - -inline int soap_read___tptz__GotoHomePosition(struct soap *soap, struct __tptz__GotoHomePosition *p) -{ - if (p) - { ::soap_default___tptz__GotoHomePosition(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GotoHomePosition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GotoHomePosition(struct soap *soap, const char *URL, struct __tptz__GotoHomePosition *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GotoHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GotoHomePosition(struct soap *soap, struct __tptz__GotoHomePosition *p) -{ - if (::soap_read___tptz__GotoHomePosition(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetConfigurationOptions_DEFINED -#define SOAP_TYPE___tptz__GetConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetConfigurationOptions(struct soap*, struct __tptz__GetConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetConfigurationOptions(struct soap*, const struct __tptz__GetConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetConfigurationOptions(struct soap*, const char*, int, const struct __tptz__GetConfigurationOptions *, const char*); -SOAP_FMAC3 struct __tptz__GetConfigurationOptions * SOAP_FMAC4 soap_in___tptz__GetConfigurationOptions(struct soap*, const char*, struct __tptz__GetConfigurationOptions *, const char*); -SOAP_FMAC1 struct __tptz__GetConfigurationOptions * SOAP_FMAC2 soap_instantiate___tptz__GetConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetConfigurationOptions * soap_new___tptz__GetConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetConfigurationOptions * soap_new_req___tptz__GetConfigurationOptions( - struct soap *soap) -{ - struct __tptz__GetConfigurationOptions *_p = ::soap_new___tptz__GetConfigurationOptions(soap); - if (_p) - { ::soap_default___tptz__GetConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __tptz__GetConfigurationOptions * soap_new_set___tptz__GetConfigurationOptions( - struct soap *soap, - _tptz__GetConfigurationOptions *tptz__GetConfigurationOptions) -{ - struct __tptz__GetConfigurationOptions *_p = ::soap_new___tptz__GetConfigurationOptions(soap); - if (_p) - { ::soap_default___tptz__GetConfigurationOptions(soap, _p); - _p->tptz__GetConfigurationOptions = tptz__GetConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetConfigurationOptions(struct soap*, const struct __tptz__GetConfigurationOptions *, const char*, const char*); - -inline int soap_write___tptz__GetConfigurationOptions(struct soap *soap, struct __tptz__GetConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetConfigurationOptions(soap, p), 0) || ::soap_put___tptz__GetConfigurationOptions(soap, p, "-tptz:GetConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetConfigurationOptions(struct soap *soap, const char *URL, struct __tptz__GetConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfigurationOptions(soap, p), 0) || ::soap_put___tptz__GetConfigurationOptions(soap, p, "-tptz:GetConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetConfigurationOptions(struct soap *soap, const char *URL, struct __tptz__GetConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfigurationOptions(soap, p), 0) || ::soap_put___tptz__GetConfigurationOptions(soap, p, "-tptz:GetConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetConfigurationOptions(struct soap *soap, const char *URL, struct __tptz__GetConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfigurationOptions(soap, p), 0) || ::soap_put___tptz__GetConfigurationOptions(soap, p, "-tptz:GetConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetConfigurationOptions * SOAP_FMAC4 soap_get___tptz__GetConfigurationOptions(struct soap*, struct __tptz__GetConfigurationOptions *, const char*, const char*); - -inline int soap_read___tptz__GetConfigurationOptions(struct soap *soap, struct __tptz__GetConfigurationOptions *p) -{ - if (p) - { ::soap_default___tptz__GetConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetConfigurationOptions(struct soap *soap, const char *URL, struct __tptz__GetConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetConfigurationOptions(struct soap *soap, struct __tptz__GetConfigurationOptions *p) -{ - if (::soap_read___tptz__GetConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__SetConfiguration_DEFINED -#define SOAP_TYPE___tptz__SetConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetConfiguration(struct soap*, struct __tptz__SetConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetConfiguration(struct soap*, const struct __tptz__SetConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetConfiguration(struct soap*, const char*, int, const struct __tptz__SetConfiguration *, const char*); -SOAP_FMAC3 struct __tptz__SetConfiguration * SOAP_FMAC4 soap_in___tptz__SetConfiguration(struct soap*, const char*, struct __tptz__SetConfiguration *, const char*); -SOAP_FMAC1 struct __tptz__SetConfiguration * SOAP_FMAC2 soap_instantiate___tptz__SetConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__SetConfiguration * soap_new___tptz__SetConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__SetConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__SetConfiguration * soap_new_req___tptz__SetConfiguration( - struct soap *soap) -{ - struct __tptz__SetConfiguration *_p = ::soap_new___tptz__SetConfiguration(soap); - if (_p) - { ::soap_default___tptz__SetConfiguration(soap, _p); - } - return _p; -} - -inline struct __tptz__SetConfiguration * soap_new_set___tptz__SetConfiguration( - struct soap *soap, - _tptz__SetConfiguration *tptz__SetConfiguration) -{ - struct __tptz__SetConfiguration *_p = ::soap_new___tptz__SetConfiguration(soap); - if (_p) - { ::soap_default___tptz__SetConfiguration(soap, _p); - _p->tptz__SetConfiguration = tptz__SetConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetConfiguration(struct soap*, const struct __tptz__SetConfiguration *, const char*, const char*); - -inline int soap_write___tptz__SetConfiguration(struct soap *soap, struct __tptz__SetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__SetConfiguration(soap, p), 0) || ::soap_put___tptz__SetConfiguration(soap, p, "-tptz:SetConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__SetConfiguration(struct soap *soap, const char *URL, struct __tptz__SetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetConfiguration(soap, p), 0) || ::soap_put___tptz__SetConfiguration(soap, p, "-tptz:SetConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__SetConfiguration(struct soap *soap, const char *URL, struct __tptz__SetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetConfiguration(soap, p), 0) || ::soap_put___tptz__SetConfiguration(soap, p, "-tptz:SetConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__SetConfiguration(struct soap *soap, const char *URL, struct __tptz__SetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetConfiguration(soap, p), 0) || ::soap_put___tptz__SetConfiguration(soap, p, "-tptz:SetConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__SetConfiguration * SOAP_FMAC4 soap_get___tptz__SetConfiguration(struct soap*, struct __tptz__SetConfiguration *, const char*, const char*); - -inline int soap_read___tptz__SetConfiguration(struct soap *soap, struct __tptz__SetConfiguration *p) -{ - if (p) - { ::soap_default___tptz__SetConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__SetConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__SetConfiguration(struct soap *soap, const char *URL, struct __tptz__SetConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__SetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__SetConfiguration(struct soap *soap, struct __tptz__SetConfiguration *p) -{ - if (::soap_read___tptz__SetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetNode_DEFINED -#define SOAP_TYPE___tptz__GetNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetNode(struct soap*, struct __tptz__GetNode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetNode(struct soap*, const struct __tptz__GetNode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetNode(struct soap*, const char*, int, const struct __tptz__GetNode *, const char*); -SOAP_FMAC3 struct __tptz__GetNode * SOAP_FMAC4 soap_in___tptz__GetNode(struct soap*, const char*, struct __tptz__GetNode *, const char*); -SOAP_FMAC1 struct __tptz__GetNode * SOAP_FMAC2 soap_instantiate___tptz__GetNode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetNode * soap_new___tptz__GetNode(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetNode(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetNode * soap_new_req___tptz__GetNode( - struct soap *soap) -{ - struct __tptz__GetNode *_p = ::soap_new___tptz__GetNode(soap); - if (_p) - { ::soap_default___tptz__GetNode(soap, _p); - } - return _p; -} - -inline struct __tptz__GetNode * soap_new_set___tptz__GetNode( - struct soap *soap, - _tptz__GetNode *tptz__GetNode) -{ - struct __tptz__GetNode *_p = ::soap_new___tptz__GetNode(soap); - if (_p) - { ::soap_default___tptz__GetNode(soap, _p); - _p->tptz__GetNode = tptz__GetNode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetNode(struct soap*, const struct __tptz__GetNode *, const char*, const char*); - -inline int soap_write___tptz__GetNode(struct soap *soap, struct __tptz__GetNode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetNode(soap, p), 0) || ::soap_put___tptz__GetNode(soap, p, "-tptz:GetNode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetNode(struct soap *soap, const char *URL, struct __tptz__GetNode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetNode(soap, p), 0) || ::soap_put___tptz__GetNode(soap, p, "-tptz:GetNode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetNode(struct soap *soap, const char *URL, struct __tptz__GetNode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetNode(soap, p), 0) || ::soap_put___tptz__GetNode(soap, p, "-tptz:GetNode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetNode(struct soap *soap, const char *URL, struct __tptz__GetNode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetNode(soap, p), 0) || ::soap_put___tptz__GetNode(soap, p, "-tptz:GetNode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetNode * SOAP_FMAC4 soap_get___tptz__GetNode(struct soap*, struct __tptz__GetNode *, const char*, const char*); - -inline int soap_read___tptz__GetNode(struct soap *soap, struct __tptz__GetNode *p) -{ - if (p) - { ::soap_default___tptz__GetNode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetNode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetNode(struct soap *soap, const char *URL, struct __tptz__GetNode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetNode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetNode(struct soap *soap, struct __tptz__GetNode *p) -{ - if (::soap_read___tptz__GetNode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetNodes_DEFINED -#define SOAP_TYPE___tptz__GetNodes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetNodes(struct soap*, struct __tptz__GetNodes *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetNodes(struct soap*, const struct __tptz__GetNodes *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetNodes(struct soap*, const char*, int, const struct __tptz__GetNodes *, const char*); -SOAP_FMAC3 struct __tptz__GetNodes * SOAP_FMAC4 soap_in___tptz__GetNodes(struct soap*, const char*, struct __tptz__GetNodes *, const char*); -SOAP_FMAC1 struct __tptz__GetNodes * SOAP_FMAC2 soap_instantiate___tptz__GetNodes(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetNodes * soap_new___tptz__GetNodes(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetNodes(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetNodes * soap_new_req___tptz__GetNodes( - struct soap *soap) -{ - struct __tptz__GetNodes *_p = ::soap_new___tptz__GetNodes(soap); - if (_p) - { ::soap_default___tptz__GetNodes(soap, _p); - } - return _p; -} - -inline struct __tptz__GetNodes * soap_new_set___tptz__GetNodes( - struct soap *soap, - _tptz__GetNodes *tptz__GetNodes) -{ - struct __tptz__GetNodes *_p = ::soap_new___tptz__GetNodes(soap); - if (_p) - { ::soap_default___tptz__GetNodes(soap, _p); - _p->tptz__GetNodes = tptz__GetNodes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetNodes(struct soap*, const struct __tptz__GetNodes *, const char*, const char*); - -inline int soap_write___tptz__GetNodes(struct soap *soap, struct __tptz__GetNodes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetNodes(soap, p), 0) || ::soap_put___tptz__GetNodes(soap, p, "-tptz:GetNodes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetNodes(struct soap *soap, const char *URL, struct __tptz__GetNodes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetNodes(soap, p), 0) || ::soap_put___tptz__GetNodes(soap, p, "-tptz:GetNodes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetNodes(struct soap *soap, const char *URL, struct __tptz__GetNodes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetNodes(soap, p), 0) || ::soap_put___tptz__GetNodes(soap, p, "-tptz:GetNodes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetNodes(struct soap *soap, const char *URL, struct __tptz__GetNodes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetNodes(soap, p), 0) || ::soap_put___tptz__GetNodes(soap, p, "-tptz:GetNodes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetNodes * SOAP_FMAC4 soap_get___tptz__GetNodes(struct soap*, struct __tptz__GetNodes *, const char*, const char*); - -inline int soap_read___tptz__GetNodes(struct soap *soap, struct __tptz__GetNodes *p) -{ - if (p) - { ::soap_default___tptz__GetNodes(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetNodes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetNodes(struct soap *soap, const char *URL, struct __tptz__GetNodes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetNodes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetNodes(struct soap *soap, struct __tptz__GetNodes *p) -{ - if (::soap_read___tptz__GetNodes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetConfiguration_DEFINED -#define SOAP_TYPE___tptz__GetConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetConfiguration(struct soap*, struct __tptz__GetConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetConfiguration(struct soap*, const struct __tptz__GetConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetConfiguration(struct soap*, const char*, int, const struct __tptz__GetConfiguration *, const char*); -SOAP_FMAC3 struct __tptz__GetConfiguration * SOAP_FMAC4 soap_in___tptz__GetConfiguration(struct soap*, const char*, struct __tptz__GetConfiguration *, const char*); -SOAP_FMAC1 struct __tptz__GetConfiguration * SOAP_FMAC2 soap_instantiate___tptz__GetConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetConfiguration * soap_new___tptz__GetConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetConfiguration * soap_new_req___tptz__GetConfiguration( - struct soap *soap) -{ - struct __tptz__GetConfiguration *_p = ::soap_new___tptz__GetConfiguration(soap); - if (_p) - { ::soap_default___tptz__GetConfiguration(soap, _p); - } - return _p; -} - -inline struct __tptz__GetConfiguration * soap_new_set___tptz__GetConfiguration( - struct soap *soap, - _tptz__GetConfiguration *tptz__GetConfiguration) -{ - struct __tptz__GetConfiguration *_p = ::soap_new___tptz__GetConfiguration(soap); - if (_p) - { ::soap_default___tptz__GetConfiguration(soap, _p); - _p->tptz__GetConfiguration = tptz__GetConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetConfiguration(struct soap*, const struct __tptz__GetConfiguration *, const char*, const char*); - -inline int soap_write___tptz__GetConfiguration(struct soap *soap, struct __tptz__GetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetConfiguration(soap, p), 0) || ::soap_put___tptz__GetConfiguration(soap, p, "-tptz:GetConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetConfiguration(struct soap *soap, const char *URL, struct __tptz__GetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfiguration(soap, p), 0) || ::soap_put___tptz__GetConfiguration(soap, p, "-tptz:GetConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetConfiguration(struct soap *soap, const char *URL, struct __tptz__GetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfiguration(soap, p), 0) || ::soap_put___tptz__GetConfiguration(soap, p, "-tptz:GetConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetConfiguration(struct soap *soap, const char *URL, struct __tptz__GetConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfiguration(soap, p), 0) || ::soap_put___tptz__GetConfiguration(soap, p, "-tptz:GetConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetConfiguration * SOAP_FMAC4 soap_get___tptz__GetConfiguration(struct soap*, struct __tptz__GetConfiguration *, const char*, const char*); - -inline int soap_read___tptz__GetConfiguration(struct soap *soap, struct __tptz__GetConfiguration *p) -{ - if (p) - { ::soap_default___tptz__GetConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetConfiguration(struct soap *soap, const char *URL, struct __tptz__GetConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetConfiguration(struct soap *soap, struct __tptz__GetConfiguration *p) -{ - if (::soap_read___tptz__GetConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetStatus_DEFINED -#define SOAP_TYPE___tptz__GetStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetStatus(struct soap*, struct __tptz__GetStatus *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetStatus(struct soap*, const struct __tptz__GetStatus *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetStatus(struct soap*, const char*, int, const struct __tptz__GetStatus *, const char*); -SOAP_FMAC3 struct __tptz__GetStatus * SOAP_FMAC4 soap_in___tptz__GetStatus(struct soap*, const char*, struct __tptz__GetStatus *, const char*); -SOAP_FMAC1 struct __tptz__GetStatus * SOAP_FMAC2 soap_instantiate___tptz__GetStatus(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetStatus * soap_new___tptz__GetStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetStatus(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetStatus * soap_new_req___tptz__GetStatus( - struct soap *soap) -{ - struct __tptz__GetStatus *_p = ::soap_new___tptz__GetStatus(soap); - if (_p) - { ::soap_default___tptz__GetStatus(soap, _p); - } - return _p; -} - -inline struct __tptz__GetStatus * soap_new_set___tptz__GetStatus( - struct soap *soap, - _tptz__GetStatus *tptz__GetStatus) -{ - struct __tptz__GetStatus *_p = ::soap_new___tptz__GetStatus(soap); - if (_p) - { ::soap_default___tptz__GetStatus(soap, _p); - _p->tptz__GetStatus = tptz__GetStatus; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetStatus(struct soap*, const struct __tptz__GetStatus *, const char*, const char*); - -inline int soap_write___tptz__GetStatus(struct soap *soap, struct __tptz__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetStatus(soap, p), 0) || ::soap_put___tptz__GetStatus(soap, p, "-tptz:GetStatus", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetStatus(struct soap *soap, const char *URL, struct __tptz__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetStatus(soap, p), 0) || ::soap_put___tptz__GetStatus(soap, p, "-tptz:GetStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetStatus(struct soap *soap, const char *URL, struct __tptz__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetStatus(soap, p), 0) || ::soap_put___tptz__GetStatus(soap, p, "-tptz:GetStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetStatus(struct soap *soap, const char *URL, struct __tptz__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetStatus(soap, p), 0) || ::soap_put___tptz__GetStatus(soap, p, "-tptz:GetStatus", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetStatus * SOAP_FMAC4 soap_get___tptz__GetStatus(struct soap*, struct __tptz__GetStatus *, const char*, const char*); - -inline int soap_read___tptz__GetStatus(struct soap *soap, struct __tptz__GetStatus *p) -{ - if (p) - { ::soap_default___tptz__GetStatus(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetStatus(struct soap *soap, const char *URL, struct __tptz__GetStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetStatus(struct soap *soap, struct __tptz__GetStatus *p) -{ - if (::soap_read___tptz__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GotoPreset_DEFINED -#define SOAP_TYPE___tptz__GotoPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GotoPreset(struct soap*, struct __tptz__GotoPreset *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GotoPreset(struct soap*, const struct __tptz__GotoPreset *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GotoPreset(struct soap*, const char*, int, const struct __tptz__GotoPreset *, const char*); -SOAP_FMAC3 struct __tptz__GotoPreset * SOAP_FMAC4 soap_in___tptz__GotoPreset(struct soap*, const char*, struct __tptz__GotoPreset *, const char*); -SOAP_FMAC1 struct __tptz__GotoPreset * SOAP_FMAC2 soap_instantiate___tptz__GotoPreset(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GotoPreset * soap_new___tptz__GotoPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GotoPreset(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GotoPreset * soap_new_req___tptz__GotoPreset( - struct soap *soap) -{ - struct __tptz__GotoPreset *_p = ::soap_new___tptz__GotoPreset(soap); - if (_p) - { ::soap_default___tptz__GotoPreset(soap, _p); - } - return _p; -} - -inline struct __tptz__GotoPreset * soap_new_set___tptz__GotoPreset( - struct soap *soap, - _tptz__GotoPreset *tptz__GotoPreset) -{ - struct __tptz__GotoPreset *_p = ::soap_new___tptz__GotoPreset(soap); - if (_p) - { ::soap_default___tptz__GotoPreset(soap, _p); - _p->tptz__GotoPreset = tptz__GotoPreset; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GotoPreset(struct soap*, const struct __tptz__GotoPreset *, const char*, const char*); - -inline int soap_write___tptz__GotoPreset(struct soap *soap, struct __tptz__GotoPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GotoPreset(soap, p), 0) || ::soap_put___tptz__GotoPreset(soap, p, "-tptz:GotoPreset", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GotoPreset(struct soap *soap, const char *URL, struct __tptz__GotoPreset const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GotoPreset(soap, p), 0) || ::soap_put___tptz__GotoPreset(soap, p, "-tptz:GotoPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GotoPreset(struct soap *soap, const char *URL, struct __tptz__GotoPreset const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GotoPreset(soap, p), 0) || ::soap_put___tptz__GotoPreset(soap, p, "-tptz:GotoPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GotoPreset(struct soap *soap, const char *URL, struct __tptz__GotoPreset const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GotoPreset(soap, p), 0) || ::soap_put___tptz__GotoPreset(soap, p, "-tptz:GotoPreset", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GotoPreset * SOAP_FMAC4 soap_get___tptz__GotoPreset(struct soap*, struct __tptz__GotoPreset *, const char*, const char*); - -inline int soap_read___tptz__GotoPreset(struct soap *soap, struct __tptz__GotoPreset *p) -{ - if (p) - { ::soap_default___tptz__GotoPreset(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GotoPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GotoPreset(struct soap *soap, const char *URL, struct __tptz__GotoPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GotoPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GotoPreset(struct soap *soap, struct __tptz__GotoPreset *p) -{ - if (::soap_read___tptz__GotoPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__RemovePreset_DEFINED -#define SOAP_TYPE___tptz__RemovePreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__RemovePreset(struct soap*, struct __tptz__RemovePreset *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__RemovePreset(struct soap*, const struct __tptz__RemovePreset *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__RemovePreset(struct soap*, const char*, int, const struct __tptz__RemovePreset *, const char*); -SOAP_FMAC3 struct __tptz__RemovePreset * SOAP_FMAC4 soap_in___tptz__RemovePreset(struct soap*, const char*, struct __tptz__RemovePreset *, const char*); -SOAP_FMAC1 struct __tptz__RemovePreset * SOAP_FMAC2 soap_instantiate___tptz__RemovePreset(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__RemovePreset * soap_new___tptz__RemovePreset(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__RemovePreset(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__RemovePreset * soap_new_req___tptz__RemovePreset( - struct soap *soap) -{ - struct __tptz__RemovePreset *_p = ::soap_new___tptz__RemovePreset(soap); - if (_p) - { ::soap_default___tptz__RemovePreset(soap, _p); - } - return _p; -} - -inline struct __tptz__RemovePreset * soap_new_set___tptz__RemovePreset( - struct soap *soap, - _tptz__RemovePreset *tptz__RemovePreset) -{ - struct __tptz__RemovePreset *_p = ::soap_new___tptz__RemovePreset(soap); - if (_p) - { ::soap_default___tptz__RemovePreset(soap, _p); - _p->tptz__RemovePreset = tptz__RemovePreset; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__RemovePreset(struct soap*, const struct __tptz__RemovePreset *, const char*, const char*); - -inline int soap_write___tptz__RemovePreset(struct soap *soap, struct __tptz__RemovePreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__RemovePreset(soap, p), 0) || ::soap_put___tptz__RemovePreset(soap, p, "-tptz:RemovePreset", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__RemovePreset(struct soap *soap, const char *URL, struct __tptz__RemovePreset const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RemovePreset(soap, p), 0) || ::soap_put___tptz__RemovePreset(soap, p, "-tptz:RemovePreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__RemovePreset(struct soap *soap, const char *URL, struct __tptz__RemovePreset const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RemovePreset(soap, p), 0) || ::soap_put___tptz__RemovePreset(soap, p, "-tptz:RemovePreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__RemovePreset(struct soap *soap, const char *URL, struct __tptz__RemovePreset const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__RemovePreset(soap, p), 0) || ::soap_put___tptz__RemovePreset(soap, p, "-tptz:RemovePreset", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__RemovePreset * SOAP_FMAC4 soap_get___tptz__RemovePreset(struct soap*, struct __tptz__RemovePreset *, const char*, const char*); - -inline int soap_read___tptz__RemovePreset(struct soap *soap, struct __tptz__RemovePreset *p) -{ - if (p) - { ::soap_default___tptz__RemovePreset(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__RemovePreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__RemovePreset(struct soap *soap, const char *URL, struct __tptz__RemovePreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__RemovePreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__RemovePreset(struct soap *soap, struct __tptz__RemovePreset *p) -{ - if (::soap_read___tptz__RemovePreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__SetPreset_DEFINED -#define SOAP_TYPE___tptz__SetPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetPreset(struct soap*, struct __tptz__SetPreset *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetPreset(struct soap*, const struct __tptz__SetPreset *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetPreset(struct soap*, const char*, int, const struct __tptz__SetPreset *, const char*); -SOAP_FMAC3 struct __tptz__SetPreset * SOAP_FMAC4 soap_in___tptz__SetPreset(struct soap*, const char*, struct __tptz__SetPreset *, const char*); -SOAP_FMAC1 struct __tptz__SetPreset * SOAP_FMAC2 soap_instantiate___tptz__SetPreset(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__SetPreset * soap_new___tptz__SetPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__SetPreset(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__SetPreset * soap_new_req___tptz__SetPreset( - struct soap *soap) -{ - struct __tptz__SetPreset *_p = ::soap_new___tptz__SetPreset(soap); - if (_p) - { ::soap_default___tptz__SetPreset(soap, _p); - } - return _p; -} - -inline struct __tptz__SetPreset * soap_new_set___tptz__SetPreset( - struct soap *soap, - _tptz__SetPreset *tptz__SetPreset) -{ - struct __tptz__SetPreset *_p = ::soap_new___tptz__SetPreset(soap); - if (_p) - { ::soap_default___tptz__SetPreset(soap, _p); - _p->tptz__SetPreset = tptz__SetPreset; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetPreset(struct soap*, const struct __tptz__SetPreset *, const char*, const char*); - -inline int soap_write___tptz__SetPreset(struct soap *soap, struct __tptz__SetPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__SetPreset(soap, p), 0) || ::soap_put___tptz__SetPreset(soap, p, "-tptz:SetPreset", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__SetPreset(struct soap *soap, const char *URL, struct __tptz__SetPreset const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetPreset(soap, p), 0) || ::soap_put___tptz__SetPreset(soap, p, "-tptz:SetPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__SetPreset(struct soap *soap, const char *URL, struct __tptz__SetPreset const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetPreset(soap, p), 0) || ::soap_put___tptz__SetPreset(soap, p, "-tptz:SetPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__SetPreset(struct soap *soap, const char *URL, struct __tptz__SetPreset const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetPreset(soap, p), 0) || ::soap_put___tptz__SetPreset(soap, p, "-tptz:SetPreset", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__SetPreset * SOAP_FMAC4 soap_get___tptz__SetPreset(struct soap*, struct __tptz__SetPreset *, const char*, const char*); - -inline int soap_read___tptz__SetPreset(struct soap *soap, struct __tptz__SetPreset *p) -{ - if (p) - { ::soap_default___tptz__SetPreset(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__SetPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__SetPreset(struct soap *soap, const char *URL, struct __tptz__SetPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__SetPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__SetPreset(struct soap *soap, struct __tptz__SetPreset *p) -{ - if (::soap_read___tptz__SetPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetPresets_DEFINED -#define SOAP_TYPE___tptz__GetPresets_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetPresets(struct soap*, struct __tptz__GetPresets *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetPresets(struct soap*, const struct __tptz__GetPresets *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetPresets(struct soap*, const char*, int, const struct __tptz__GetPresets *, const char*); -SOAP_FMAC3 struct __tptz__GetPresets * SOAP_FMAC4 soap_in___tptz__GetPresets(struct soap*, const char*, struct __tptz__GetPresets *, const char*); -SOAP_FMAC1 struct __tptz__GetPresets * SOAP_FMAC2 soap_instantiate___tptz__GetPresets(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetPresets * soap_new___tptz__GetPresets(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetPresets(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetPresets * soap_new_req___tptz__GetPresets( - struct soap *soap) -{ - struct __tptz__GetPresets *_p = ::soap_new___tptz__GetPresets(soap); - if (_p) - { ::soap_default___tptz__GetPresets(soap, _p); - } - return _p; -} - -inline struct __tptz__GetPresets * soap_new_set___tptz__GetPresets( - struct soap *soap, - _tptz__GetPresets *tptz__GetPresets) -{ - struct __tptz__GetPresets *_p = ::soap_new___tptz__GetPresets(soap); - if (_p) - { ::soap_default___tptz__GetPresets(soap, _p); - _p->tptz__GetPresets = tptz__GetPresets; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetPresets(struct soap*, const struct __tptz__GetPresets *, const char*, const char*); - -inline int soap_write___tptz__GetPresets(struct soap *soap, struct __tptz__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetPresets(soap, p), 0) || ::soap_put___tptz__GetPresets(soap, p, "-tptz:GetPresets", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetPresets(struct soap *soap, const char *URL, struct __tptz__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresets(soap, p), 0) || ::soap_put___tptz__GetPresets(soap, p, "-tptz:GetPresets", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetPresets(struct soap *soap, const char *URL, struct __tptz__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresets(soap, p), 0) || ::soap_put___tptz__GetPresets(soap, p, "-tptz:GetPresets", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetPresets(struct soap *soap, const char *URL, struct __tptz__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetPresets(soap, p), 0) || ::soap_put___tptz__GetPresets(soap, p, "-tptz:GetPresets", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetPresets * SOAP_FMAC4 soap_get___tptz__GetPresets(struct soap*, struct __tptz__GetPresets *, const char*, const char*); - -inline int soap_read___tptz__GetPresets(struct soap *soap, struct __tptz__GetPresets *p) -{ - if (p) - { ::soap_default___tptz__GetPresets(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetPresets(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetPresets(struct soap *soap, const char *URL, struct __tptz__GetPresets *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetPresets(struct soap *soap, struct __tptz__GetPresets *p) -{ - if (::soap_read___tptz__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetConfigurations_DEFINED -#define SOAP_TYPE___tptz__GetConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetConfigurations(struct soap*, struct __tptz__GetConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetConfigurations(struct soap*, const struct __tptz__GetConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetConfigurations(struct soap*, const char*, int, const struct __tptz__GetConfigurations *, const char*); -SOAP_FMAC3 struct __tptz__GetConfigurations * SOAP_FMAC4 soap_in___tptz__GetConfigurations(struct soap*, const char*, struct __tptz__GetConfigurations *, const char*); -SOAP_FMAC1 struct __tptz__GetConfigurations * SOAP_FMAC2 soap_instantiate___tptz__GetConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetConfigurations * soap_new___tptz__GetConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetConfigurations * soap_new_req___tptz__GetConfigurations( - struct soap *soap) -{ - struct __tptz__GetConfigurations *_p = ::soap_new___tptz__GetConfigurations(soap); - if (_p) - { ::soap_default___tptz__GetConfigurations(soap, _p); - } - return _p; -} - -inline struct __tptz__GetConfigurations * soap_new_set___tptz__GetConfigurations( - struct soap *soap, - _tptz__GetConfigurations *tptz__GetConfigurations) -{ - struct __tptz__GetConfigurations *_p = ::soap_new___tptz__GetConfigurations(soap); - if (_p) - { ::soap_default___tptz__GetConfigurations(soap, _p); - _p->tptz__GetConfigurations = tptz__GetConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetConfigurations(struct soap*, const struct __tptz__GetConfigurations *, const char*, const char*); - -inline int soap_write___tptz__GetConfigurations(struct soap *soap, struct __tptz__GetConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetConfigurations(soap, p), 0) || ::soap_put___tptz__GetConfigurations(soap, p, "-tptz:GetConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetConfigurations(struct soap *soap, const char *URL, struct __tptz__GetConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfigurations(soap, p), 0) || ::soap_put___tptz__GetConfigurations(soap, p, "-tptz:GetConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetConfigurations(struct soap *soap, const char *URL, struct __tptz__GetConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfigurations(soap, p), 0) || ::soap_put___tptz__GetConfigurations(soap, p, "-tptz:GetConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetConfigurations(struct soap *soap, const char *URL, struct __tptz__GetConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetConfigurations(soap, p), 0) || ::soap_put___tptz__GetConfigurations(soap, p, "-tptz:GetConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetConfigurations * SOAP_FMAC4 soap_get___tptz__GetConfigurations(struct soap*, struct __tptz__GetConfigurations *, const char*, const char*); - -inline int soap_read___tptz__GetConfigurations(struct soap *soap, struct __tptz__GetConfigurations *p) -{ - if (p) - { ::soap_default___tptz__GetConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetConfigurations(struct soap *soap, const char *URL, struct __tptz__GetConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetConfigurations(struct soap *soap, struct __tptz__GetConfigurations *p) -{ - if (::soap_read___tptz__GetConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___tptz__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__GetServiceCapabilities(struct soap*, struct __tptz__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__GetServiceCapabilities(struct soap*, const struct __tptz__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__GetServiceCapabilities(struct soap*, const char*, int, const struct __tptz__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __tptz__GetServiceCapabilities * SOAP_FMAC4 soap_in___tptz__GetServiceCapabilities(struct soap*, const char*, struct __tptz__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __tptz__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tptz__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__GetServiceCapabilities * soap_new___tptz__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__GetServiceCapabilities * soap_new_req___tptz__GetServiceCapabilities( - struct soap *soap) -{ - struct __tptz__GetServiceCapabilities *_p = ::soap_new___tptz__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tptz__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __tptz__GetServiceCapabilities * soap_new_set___tptz__GetServiceCapabilities( - struct soap *soap, - _tptz__GetServiceCapabilities *tptz__GetServiceCapabilities) -{ - struct __tptz__GetServiceCapabilities *_p = ::soap_new___tptz__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tptz__GetServiceCapabilities(soap, _p); - _p->tptz__GetServiceCapabilities = tptz__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__GetServiceCapabilities(struct soap*, const struct __tptz__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___tptz__GetServiceCapabilities(struct soap *soap, struct __tptz__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__GetServiceCapabilities(soap, p), 0) || ::soap_put___tptz__GetServiceCapabilities(soap, p, "-tptz:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tptz__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetServiceCapabilities(soap, p), 0) || ::soap_put___tptz__GetServiceCapabilities(soap, p, "-tptz:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tptz__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetServiceCapabilities(soap, p), 0) || ::soap_put___tptz__GetServiceCapabilities(soap, p, "-tptz:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tptz__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__GetServiceCapabilities(soap, p), 0) || ::soap_put___tptz__GetServiceCapabilities(soap, p, "-tptz:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__GetServiceCapabilities * SOAP_FMAC4 soap_get___tptz__GetServiceCapabilities(struct soap*, struct __tptz__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___tptz__GetServiceCapabilities(struct soap *soap, struct __tptz__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___tptz__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tptz__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__GetServiceCapabilities(struct soap *soap, struct __tptz__GetServiceCapabilities *p) -{ - if (::soap_read___tptz__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SendReceiveSerialCommand_DEFINED -#define SOAP_TYPE___tmd__SendReceiveSerialCommand_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SendReceiveSerialCommand(struct soap*, struct __tmd__SendReceiveSerialCommand *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SendReceiveSerialCommand(struct soap*, const struct __tmd__SendReceiveSerialCommand *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SendReceiveSerialCommand(struct soap*, const char*, int, const struct __tmd__SendReceiveSerialCommand *, const char*); -SOAP_FMAC3 struct __tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_in___tmd__SendReceiveSerialCommand(struct soap*, const char*, struct __tmd__SendReceiveSerialCommand *, const char*); -SOAP_FMAC1 struct __tmd__SendReceiveSerialCommand * SOAP_FMAC2 soap_instantiate___tmd__SendReceiveSerialCommand(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SendReceiveSerialCommand * soap_new___tmd__SendReceiveSerialCommand(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SendReceiveSerialCommand(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SendReceiveSerialCommand * soap_new_req___tmd__SendReceiveSerialCommand( - struct soap *soap) -{ - struct __tmd__SendReceiveSerialCommand *_p = ::soap_new___tmd__SendReceiveSerialCommand(soap); - if (_p) - { ::soap_default___tmd__SendReceiveSerialCommand(soap, _p); - } - return _p; -} - -inline struct __tmd__SendReceiveSerialCommand * soap_new_set___tmd__SendReceiveSerialCommand( - struct soap *soap, - _tmd__SendReceiveSerialCommand *tmd__SendReceiveSerialCommand) -{ - struct __tmd__SendReceiveSerialCommand *_p = ::soap_new___tmd__SendReceiveSerialCommand(soap); - if (_p) - { ::soap_default___tmd__SendReceiveSerialCommand(soap, _p); - _p->tmd__SendReceiveSerialCommand = tmd__SendReceiveSerialCommand; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SendReceiveSerialCommand(struct soap*, const struct __tmd__SendReceiveSerialCommand *, const char*, const char*); - -inline int soap_write___tmd__SendReceiveSerialCommand(struct soap *soap, struct __tmd__SendReceiveSerialCommand const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SendReceiveSerialCommand(soap, p), 0) || ::soap_put___tmd__SendReceiveSerialCommand(soap, p, "-tmd:SendReceiveSerialCommand", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, struct __tmd__SendReceiveSerialCommand const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SendReceiveSerialCommand(soap, p), 0) || ::soap_put___tmd__SendReceiveSerialCommand(soap, p, "-tmd:SendReceiveSerialCommand", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, struct __tmd__SendReceiveSerialCommand const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SendReceiveSerialCommand(soap, p), 0) || ::soap_put___tmd__SendReceiveSerialCommand(soap, p, "-tmd:SendReceiveSerialCommand", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, struct __tmd__SendReceiveSerialCommand const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SendReceiveSerialCommand(soap, p), 0) || ::soap_put___tmd__SendReceiveSerialCommand(soap, p, "-tmd:SendReceiveSerialCommand", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SendReceiveSerialCommand * SOAP_FMAC4 soap_get___tmd__SendReceiveSerialCommand(struct soap*, struct __tmd__SendReceiveSerialCommand *, const char*, const char*); - -inline int soap_read___tmd__SendReceiveSerialCommand(struct soap *soap, struct __tmd__SendReceiveSerialCommand *p) -{ - if (p) - { ::soap_default___tmd__SendReceiveSerialCommand(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SendReceiveSerialCommand(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SendReceiveSerialCommand(struct soap *soap, const char *URL, struct __tmd__SendReceiveSerialCommand *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SendReceiveSerialCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SendReceiveSerialCommand(struct soap *soap, struct __tmd__SendReceiveSerialCommand *p) -{ - if (::soap_read___tmd__SendReceiveSerialCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetSerialPortConfigurationOptions_DEFINED -#define SOAP_TYPE___tmd__GetSerialPortConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetSerialPortConfigurationOptions(struct soap*, struct __tmd__GetSerialPortConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetSerialPortConfigurationOptions(struct soap*, const struct __tmd__GetSerialPortConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetSerialPortConfigurationOptions(struct soap*, const char*, int, const struct __tmd__GetSerialPortConfigurationOptions *, const char*); -SOAP_FMAC3 struct __tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetSerialPortConfigurationOptions(struct soap*, const char*, struct __tmd__GetSerialPortConfigurationOptions *, const char*); -SOAP_FMAC1 struct __tmd__GetSerialPortConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetSerialPortConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetSerialPortConfigurationOptions * soap_new___tmd__GetSerialPortConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetSerialPortConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetSerialPortConfigurationOptions * soap_new_req___tmd__GetSerialPortConfigurationOptions( - struct soap *soap) -{ - struct __tmd__GetSerialPortConfigurationOptions *_p = ::soap_new___tmd__GetSerialPortConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetSerialPortConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __tmd__GetSerialPortConfigurationOptions * soap_new_set___tmd__GetSerialPortConfigurationOptions( - struct soap *soap, - _tmd__GetSerialPortConfigurationOptions *tmd__GetSerialPortConfigurationOptions) -{ - struct __tmd__GetSerialPortConfigurationOptions *_p = ::soap_new___tmd__GetSerialPortConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetSerialPortConfigurationOptions(soap, _p); - _p->tmd__GetSerialPortConfigurationOptions = tmd__GetSerialPortConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetSerialPortConfigurationOptions(struct soap*, const struct __tmd__GetSerialPortConfigurationOptions *, const char*, const char*); - -inline int soap_write___tmd__GetSerialPortConfigurationOptions(struct soap *soap, struct __tmd__GetSerialPortConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetSerialPortConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfigurationOptions(soap, p, "-tmd:GetSerialPortConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPortConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfigurationOptions(soap, p, "-tmd:GetSerialPortConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPortConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfigurationOptions(soap, p, "-tmd:GetSerialPortConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPortConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfigurationOptions(soap, p, "-tmd:GetSerialPortConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetSerialPortConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetSerialPortConfigurationOptions(struct soap*, struct __tmd__GetSerialPortConfigurationOptions *, const char*, const char*); - -inline int soap_read___tmd__GetSerialPortConfigurationOptions(struct soap *soap, struct __tmd__GetSerialPortConfigurationOptions *p) -{ - if (p) - { ::soap_default___tmd__GetSerialPortConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetSerialPortConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetSerialPortConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetSerialPortConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetSerialPortConfigurationOptions(struct soap *soap, struct __tmd__GetSerialPortConfigurationOptions *p) -{ - if (::soap_read___tmd__GetSerialPortConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetSerialPortConfiguration_DEFINED -#define SOAP_TYPE___tmd__SetSerialPortConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetSerialPortConfiguration(struct soap*, struct __tmd__SetSerialPortConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetSerialPortConfiguration(struct soap*, const struct __tmd__SetSerialPortConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetSerialPortConfiguration(struct soap*, const char*, int, const struct __tmd__SetSerialPortConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_in___tmd__SetSerialPortConfiguration(struct soap*, const char*, struct __tmd__SetSerialPortConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__SetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetSerialPortConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetSerialPortConfiguration * soap_new___tmd__SetSerialPortConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetSerialPortConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetSerialPortConfiguration * soap_new_req___tmd__SetSerialPortConfiguration( - struct soap *soap) -{ - struct __tmd__SetSerialPortConfiguration *_p = ::soap_new___tmd__SetSerialPortConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetSerialPortConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__SetSerialPortConfiguration * soap_new_set___tmd__SetSerialPortConfiguration( - struct soap *soap, - _tmd__SetSerialPortConfiguration *tmd__SetSerialPortConfiguration) -{ - struct __tmd__SetSerialPortConfiguration *_p = ::soap_new___tmd__SetSerialPortConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetSerialPortConfiguration(soap, _p); - _p->tmd__SetSerialPortConfiguration = tmd__SetSerialPortConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetSerialPortConfiguration(struct soap*, const struct __tmd__SetSerialPortConfiguration *, const char*, const char*); - -inline int soap_write___tmd__SetSerialPortConfiguration(struct soap *soap, struct __tmd__SetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__SetSerialPortConfiguration(soap, p, "-tmd:SetSerialPortConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__SetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__SetSerialPortConfiguration(soap, p, "-tmd:SetSerialPortConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__SetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__SetSerialPortConfiguration(soap, p, "-tmd:SetSerialPortConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__SetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__SetSerialPortConfiguration(soap, p, "-tmd:SetSerialPortConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetSerialPortConfiguration * SOAP_FMAC4 soap_get___tmd__SetSerialPortConfiguration(struct soap*, struct __tmd__SetSerialPortConfiguration *, const char*, const char*); - -inline int soap_read___tmd__SetSerialPortConfiguration(struct soap *soap, struct __tmd__SetSerialPortConfiguration *p) -{ - if (p) - { ::soap_default___tmd__SetSerialPortConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetSerialPortConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__SetSerialPortConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetSerialPortConfiguration(struct soap *soap, struct __tmd__SetSerialPortConfiguration *p) -{ - if (::soap_read___tmd__SetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetSerialPortConfiguration_DEFINED -#define SOAP_TYPE___tmd__GetSerialPortConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetSerialPortConfiguration(struct soap*, struct __tmd__GetSerialPortConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetSerialPortConfiguration(struct soap*, const struct __tmd__GetSerialPortConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetSerialPortConfiguration(struct soap*, const char*, int, const struct __tmd__GetSerialPortConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_in___tmd__GetSerialPortConfiguration(struct soap*, const char*, struct __tmd__GetSerialPortConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__GetSerialPortConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetSerialPortConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetSerialPortConfiguration * soap_new___tmd__GetSerialPortConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetSerialPortConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetSerialPortConfiguration * soap_new_req___tmd__GetSerialPortConfiguration( - struct soap *soap) -{ - struct __tmd__GetSerialPortConfiguration *_p = ::soap_new___tmd__GetSerialPortConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetSerialPortConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__GetSerialPortConfiguration * soap_new_set___tmd__GetSerialPortConfiguration( - struct soap *soap, - _tmd__GetSerialPortConfiguration *tmd__GetSerialPortConfiguration) -{ - struct __tmd__GetSerialPortConfiguration *_p = ::soap_new___tmd__GetSerialPortConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetSerialPortConfiguration(soap, _p); - _p->tmd__GetSerialPortConfiguration = tmd__GetSerialPortConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetSerialPortConfiguration(struct soap*, const struct __tmd__GetSerialPortConfiguration *, const char*, const char*); - -inline int soap_write___tmd__GetSerialPortConfiguration(struct soap *soap, struct __tmd__GetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfiguration(soap, p, "-tmd:GetSerialPortConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfiguration(soap, p, "-tmd:GetSerialPortConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfiguration(soap, p, "-tmd:GetSerialPortConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPortConfiguration(soap, p), 0) || ::soap_put___tmd__GetSerialPortConfiguration(soap, p, "-tmd:GetSerialPortConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetSerialPortConfiguration * SOAP_FMAC4 soap_get___tmd__GetSerialPortConfiguration(struct soap*, struct __tmd__GetSerialPortConfiguration *, const char*, const char*); - -inline int soap_read___tmd__GetSerialPortConfiguration(struct soap *soap, struct __tmd__GetSerialPortConfiguration *p) -{ - if (p) - { ::soap_default___tmd__GetSerialPortConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetSerialPortConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetSerialPortConfiguration(struct soap *soap, const char *URL, struct __tmd__GetSerialPortConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetSerialPortConfiguration(struct soap *soap, struct __tmd__GetSerialPortConfiguration *p) -{ - if (::soap_read___tmd__GetSerialPortConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetSerialPorts_DEFINED -#define SOAP_TYPE___tmd__GetSerialPorts_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetSerialPorts(struct soap*, struct __tmd__GetSerialPorts *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetSerialPorts(struct soap*, const struct __tmd__GetSerialPorts *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetSerialPorts(struct soap*, const char*, int, const struct __tmd__GetSerialPorts *, const char*); -SOAP_FMAC3 struct __tmd__GetSerialPorts * SOAP_FMAC4 soap_in___tmd__GetSerialPorts(struct soap*, const char*, struct __tmd__GetSerialPorts *, const char*); -SOAP_FMAC1 struct __tmd__GetSerialPorts * SOAP_FMAC2 soap_instantiate___tmd__GetSerialPorts(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetSerialPorts * soap_new___tmd__GetSerialPorts(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetSerialPorts(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetSerialPorts * soap_new_req___tmd__GetSerialPorts( - struct soap *soap) -{ - struct __tmd__GetSerialPorts *_p = ::soap_new___tmd__GetSerialPorts(soap); - if (_p) - { ::soap_default___tmd__GetSerialPorts(soap, _p); - } - return _p; -} - -inline struct __tmd__GetSerialPorts * soap_new_set___tmd__GetSerialPorts( - struct soap *soap, - _tmd__GetSerialPorts *tmd__GetSerialPorts) -{ - struct __tmd__GetSerialPorts *_p = ::soap_new___tmd__GetSerialPorts(soap); - if (_p) - { ::soap_default___tmd__GetSerialPorts(soap, _p); - _p->tmd__GetSerialPorts = tmd__GetSerialPorts; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetSerialPorts(struct soap*, const struct __tmd__GetSerialPorts *, const char*, const char*); - -inline int soap_write___tmd__GetSerialPorts(struct soap *soap, struct __tmd__GetSerialPorts const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetSerialPorts(soap, p), 0) || ::soap_put___tmd__GetSerialPorts(soap, p, "-tmd:GetSerialPorts", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetSerialPorts(struct soap *soap, const char *URL, struct __tmd__GetSerialPorts const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPorts(soap, p), 0) || ::soap_put___tmd__GetSerialPorts(soap, p, "-tmd:GetSerialPorts", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetSerialPorts(struct soap *soap, const char *URL, struct __tmd__GetSerialPorts const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPorts(soap, p), 0) || ::soap_put___tmd__GetSerialPorts(soap, p, "-tmd:GetSerialPorts", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetSerialPorts(struct soap *soap, const char *URL, struct __tmd__GetSerialPorts const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetSerialPorts(soap, p), 0) || ::soap_put___tmd__GetSerialPorts(soap, p, "-tmd:GetSerialPorts", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetSerialPorts * SOAP_FMAC4 soap_get___tmd__GetSerialPorts(struct soap*, struct __tmd__GetSerialPorts *, const char*, const char*); - -inline int soap_read___tmd__GetSerialPorts(struct soap *soap, struct __tmd__GetSerialPorts *p) -{ - if (p) - { ::soap_default___tmd__GetSerialPorts(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetSerialPorts(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetSerialPorts(struct soap *soap, const char *URL, struct __tmd__GetSerialPorts *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetSerialPorts(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetSerialPorts(struct soap *soap, struct __tmd__GetSerialPorts *p) -{ - if (::soap_read___tmd__GetSerialPorts(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetDigitalInputConfigurations_DEFINED -#define SOAP_TYPE___tmd__SetDigitalInputConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetDigitalInputConfigurations(struct soap*, struct __tmd__SetDigitalInputConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetDigitalInputConfigurations(struct soap*, const struct __tmd__SetDigitalInputConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetDigitalInputConfigurations(struct soap*, const char*, int, const struct __tmd__SetDigitalInputConfigurations *, const char*); -SOAP_FMAC3 struct __tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_in___tmd__SetDigitalInputConfigurations(struct soap*, const char*, struct __tmd__SetDigitalInputConfigurations *, const char*); -SOAP_FMAC1 struct __tmd__SetDigitalInputConfigurations * SOAP_FMAC2 soap_instantiate___tmd__SetDigitalInputConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetDigitalInputConfigurations * soap_new___tmd__SetDigitalInputConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetDigitalInputConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetDigitalInputConfigurations * soap_new_req___tmd__SetDigitalInputConfigurations( - struct soap *soap) -{ - struct __tmd__SetDigitalInputConfigurations *_p = ::soap_new___tmd__SetDigitalInputConfigurations(soap); - if (_p) - { ::soap_default___tmd__SetDigitalInputConfigurations(soap, _p); - } - return _p; -} - -inline struct __tmd__SetDigitalInputConfigurations * soap_new_set___tmd__SetDigitalInputConfigurations( - struct soap *soap, - _tmd__SetDigitalInputConfigurations *tmd__SetDigitalInputConfigurations) -{ - struct __tmd__SetDigitalInputConfigurations *_p = ::soap_new___tmd__SetDigitalInputConfigurations(soap); - if (_p) - { ::soap_default___tmd__SetDigitalInputConfigurations(soap, _p); - _p->tmd__SetDigitalInputConfigurations = tmd__SetDigitalInputConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetDigitalInputConfigurations(struct soap*, const struct __tmd__SetDigitalInputConfigurations *, const char*, const char*); - -inline int soap_write___tmd__SetDigitalInputConfigurations(struct soap *soap, struct __tmd__SetDigitalInputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetDigitalInputConfigurations(soap, p), 0) || ::soap_put___tmd__SetDigitalInputConfigurations(soap, p, "-tmd:SetDigitalInputConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, struct __tmd__SetDigitalInputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetDigitalInputConfigurations(soap, p), 0) || ::soap_put___tmd__SetDigitalInputConfigurations(soap, p, "-tmd:SetDigitalInputConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, struct __tmd__SetDigitalInputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetDigitalInputConfigurations(soap, p), 0) || ::soap_put___tmd__SetDigitalInputConfigurations(soap, p, "-tmd:SetDigitalInputConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, struct __tmd__SetDigitalInputConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetDigitalInputConfigurations(soap, p), 0) || ::soap_put___tmd__SetDigitalInputConfigurations(soap, p, "-tmd:SetDigitalInputConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetDigitalInputConfigurations * SOAP_FMAC4 soap_get___tmd__SetDigitalInputConfigurations(struct soap*, struct __tmd__SetDigitalInputConfigurations *, const char*, const char*); - -inline int soap_read___tmd__SetDigitalInputConfigurations(struct soap *soap, struct __tmd__SetDigitalInputConfigurations *p) -{ - if (p) - { ::soap_default___tmd__SetDigitalInputConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetDigitalInputConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetDigitalInputConfigurations(struct soap *soap, const char *URL, struct __tmd__SetDigitalInputConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetDigitalInputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetDigitalInputConfigurations(struct soap *soap, struct __tmd__SetDigitalInputConfigurations *p) -{ - if (::soap_read___tmd__SetDigitalInputConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions_DEFINED -#define SOAP_TYPE___tmd__GetDigitalInputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetDigitalInputConfigurationOptions(struct soap*, struct __tmd__GetDigitalInputConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetDigitalInputConfigurationOptions(struct soap*, const struct __tmd__GetDigitalInputConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetDigitalInputConfigurationOptions(struct soap*, const char*, int, const struct __tmd__GetDigitalInputConfigurationOptions *, const char*); -SOAP_FMAC3 struct __tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetDigitalInputConfigurationOptions(struct soap*, const char*, struct __tmd__GetDigitalInputConfigurationOptions *, const char*); -SOAP_FMAC1 struct __tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetDigitalInputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetDigitalInputConfigurationOptions * soap_new___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetDigitalInputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetDigitalInputConfigurationOptions * soap_new_req___tmd__GetDigitalInputConfigurationOptions( - struct soap *soap) -{ - struct __tmd__GetDigitalInputConfigurationOptions *_p = ::soap_new___tmd__GetDigitalInputConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetDigitalInputConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __tmd__GetDigitalInputConfigurationOptions * soap_new_set___tmd__GetDigitalInputConfigurationOptions( - struct soap *soap, - _tmd__GetDigitalInputConfigurationOptions *tmd__GetDigitalInputConfigurationOptions) -{ - struct __tmd__GetDigitalInputConfigurationOptions *_p = ::soap_new___tmd__GetDigitalInputConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetDigitalInputConfigurationOptions(soap, _p); - _p->tmd__GetDigitalInputConfigurationOptions = tmd__GetDigitalInputConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetDigitalInputConfigurationOptions(struct soap*, const struct __tmd__GetDigitalInputConfigurationOptions *, const char*, const char*); - -inline int soap_write___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, struct __tmd__GetDigitalInputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetDigitalInputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetDigitalInputConfigurationOptions(soap, p, "-tmd:GetDigitalInputConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetDigitalInputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetDigitalInputConfigurationOptions(soap, p, "-tmd:GetDigitalInputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetDigitalInputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetDigitalInputConfigurationOptions(soap, p, "-tmd:GetDigitalInputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetDigitalInputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetDigitalInputConfigurationOptions(soap, p, "-tmd:GetDigitalInputConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetDigitalInputConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetDigitalInputConfigurationOptions(struct soap*, struct __tmd__GetDigitalInputConfigurationOptions *, const char*, const char*); - -inline int soap_read___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, struct __tmd__GetDigitalInputConfigurationOptions *p) -{ - if (p) - { ::soap_default___tmd__GetDigitalInputConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetDigitalInputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetDigitalInputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetDigitalInputConfigurationOptions(struct soap *soap, struct __tmd__GetDigitalInputConfigurationOptions *p) -{ - if (::soap_read___tmd__GetDigitalInputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetDigitalInputs_DEFINED -#define SOAP_TYPE___tmd__GetDigitalInputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetDigitalInputs(struct soap*, struct __tmd__GetDigitalInputs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetDigitalInputs(struct soap*, const struct __tmd__GetDigitalInputs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetDigitalInputs(struct soap*, const char*, int, const struct __tmd__GetDigitalInputs *, const char*); -SOAP_FMAC3 struct __tmd__GetDigitalInputs * SOAP_FMAC4 soap_in___tmd__GetDigitalInputs(struct soap*, const char*, struct __tmd__GetDigitalInputs *, const char*); -SOAP_FMAC1 struct __tmd__GetDigitalInputs * SOAP_FMAC2 soap_instantiate___tmd__GetDigitalInputs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetDigitalInputs * soap_new___tmd__GetDigitalInputs(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetDigitalInputs(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetDigitalInputs * soap_new_req___tmd__GetDigitalInputs( - struct soap *soap) -{ - struct __tmd__GetDigitalInputs *_p = ::soap_new___tmd__GetDigitalInputs(soap); - if (_p) - { ::soap_default___tmd__GetDigitalInputs(soap, _p); - } - return _p; -} - -inline struct __tmd__GetDigitalInputs * soap_new_set___tmd__GetDigitalInputs( - struct soap *soap, - _tmd__GetDigitalInputs *tmd__GetDigitalInputs) -{ - struct __tmd__GetDigitalInputs *_p = ::soap_new___tmd__GetDigitalInputs(soap); - if (_p) - { ::soap_default___tmd__GetDigitalInputs(soap, _p); - _p->tmd__GetDigitalInputs = tmd__GetDigitalInputs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetDigitalInputs(struct soap*, const struct __tmd__GetDigitalInputs *, const char*, const char*); - -inline int soap_write___tmd__GetDigitalInputs(struct soap *soap, struct __tmd__GetDigitalInputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetDigitalInputs(soap, p), 0) || ::soap_put___tmd__GetDigitalInputs(soap, p, "-tmd:GetDigitalInputs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetDigitalInputs(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetDigitalInputs(soap, p), 0) || ::soap_put___tmd__GetDigitalInputs(soap, p, "-tmd:GetDigitalInputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetDigitalInputs(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetDigitalInputs(soap, p), 0) || ::soap_put___tmd__GetDigitalInputs(soap, p, "-tmd:GetDigitalInputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetDigitalInputs(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetDigitalInputs(soap, p), 0) || ::soap_put___tmd__GetDigitalInputs(soap, p, "-tmd:GetDigitalInputs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetDigitalInputs * SOAP_FMAC4 soap_get___tmd__GetDigitalInputs(struct soap*, struct __tmd__GetDigitalInputs *, const char*, const char*); - -inline int soap_read___tmd__GetDigitalInputs(struct soap *soap, struct __tmd__GetDigitalInputs *p) -{ - if (p) - { ::soap_default___tmd__GetDigitalInputs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetDigitalInputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetDigitalInputs(struct soap *soap, const char *URL, struct __tmd__GetDigitalInputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetDigitalInputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetDigitalInputs(struct soap *soap, struct __tmd__GetDigitalInputs *p) -{ - if (::soap_read___tmd__GetDigitalInputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetRelayOutputState_DEFINED -#define SOAP_TYPE___tmd__SetRelayOutputState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetRelayOutputState(struct soap*, struct __tmd__SetRelayOutputState *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetRelayOutputState(struct soap*, const struct __tmd__SetRelayOutputState *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetRelayOutputState(struct soap*, const char*, int, const struct __tmd__SetRelayOutputState *, const char*); -SOAP_FMAC3 struct __tmd__SetRelayOutputState * SOAP_FMAC4 soap_in___tmd__SetRelayOutputState(struct soap*, const char*, struct __tmd__SetRelayOutputState *, const char*); -SOAP_FMAC1 struct __tmd__SetRelayOutputState * SOAP_FMAC2 soap_instantiate___tmd__SetRelayOutputState(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetRelayOutputState * soap_new___tmd__SetRelayOutputState(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetRelayOutputState(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetRelayOutputState * soap_new_req___tmd__SetRelayOutputState( - struct soap *soap) -{ - struct __tmd__SetRelayOutputState *_p = ::soap_new___tmd__SetRelayOutputState(soap); - if (_p) - { ::soap_default___tmd__SetRelayOutputState(soap, _p); - } - return _p; -} - -inline struct __tmd__SetRelayOutputState * soap_new_set___tmd__SetRelayOutputState( - struct soap *soap, - _tds__SetRelayOutputState *tds__SetRelayOutputState) -{ - struct __tmd__SetRelayOutputState *_p = ::soap_new___tmd__SetRelayOutputState(soap); - if (_p) - { ::soap_default___tmd__SetRelayOutputState(soap, _p); - _p->tds__SetRelayOutputState = tds__SetRelayOutputState; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetRelayOutputState(struct soap*, const struct __tmd__SetRelayOutputState *, const char*, const char*); - -inline int soap_write___tmd__SetRelayOutputState(struct soap *soap, struct __tmd__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetRelayOutputState(soap, p), 0) || ::soap_put___tmd__SetRelayOutputState(soap, p, "-tmd:SetRelayOutputState", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetRelayOutputState(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetRelayOutputState(soap, p), 0) || ::soap_put___tmd__SetRelayOutputState(soap, p, "-tmd:SetRelayOutputState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetRelayOutputState(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetRelayOutputState(soap, p), 0) || ::soap_put___tmd__SetRelayOutputState(soap, p, "-tmd:SetRelayOutputState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetRelayOutputState(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetRelayOutputState(soap, p), 0) || ::soap_put___tmd__SetRelayOutputState(soap, p, "-tmd:SetRelayOutputState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetRelayOutputState * SOAP_FMAC4 soap_get___tmd__SetRelayOutputState(struct soap*, struct __tmd__SetRelayOutputState *, const char*, const char*); - -inline int soap_read___tmd__SetRelayOutputState(struct soap *soap, struct __tmd__SetRelayOutputState *p) -{ - if (p) - { ::soap_default___tmd__SetRelayOutputState(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetRelayOutputState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetRelayOutputState(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetRelayOutputState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetRelayOutputState(struct soap *soap, struct __tmd__SetRelayOutputState *p) -{ - if (::soap_read___tmd__SetRelayOutputState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetRelayOutputSettings_DEFINED -#define SOAP_TYPE___tmd__SetRelayOutputSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetRelayOutputSettings(struct soap*, struct __tmd__SetRelayOutputSettings *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetRelayOutputSettings(struct soap*, const struct __tmd__SetRelayOutputSettings *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetRelayOutputSettings(struct soap*, const char*, int, const struct __tmd__SetRelayOutputSettings *, const char*); -SOAP_FMAC3 struct __tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_in___tmd__SetRelayOutputSettings(struct soap*, const char*, struct __tmd__SetRelayOutputSettings *, const char*); -SOAP_FMAC1 struct __tmd__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate___tmd__SetRelayOutputSettings(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetRelayOutputSettings * soap_new___tmd__SetRelayOutputSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetRelayOutputSettings(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetRelayOutputSettings * soap_new_req___tmd__SetRelayOutputSettings( - struct soap *soap) -{ - struct __tmd__SetRelayOutputSettings *_p = ::soap_new___tmd__SetRelayOutputSettings(soap); - if (_p) - { ::soap_default___tmd__SetRelayOutputSettings(soap, _p); - } - return _p; -} - -inline struct __tmd__SetRelayOutputSettings * soap_new_set___tmd__SetRelayOutputSettings( - struct soap *soap, - _tmd__SetRelayOutputSettings *tmd__SetRelayOutputSettings) -{ - struct __tmd__SetRelayOutputSettings *_p = ::soap_new___tmd__SetRelayOutputSettings(soap); - if (_p) - { ::soap_default___tmd__SetRelayOutputSettings(soap, _p); - _p->tmd__SetRelayOutputSettings = tmd__SetRelayOutputSettings; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetRelayOutputSettings(struct soap*, const struct __tmd__SetRelayOutputSettings *, const char*, const char*); - -inline int soap_write___tmd__SetRelayOutputSettings(struct soap *soap, struct __tmd__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tmd__SetRelayOutputSettings(soap, p, "-tmd:SetRelayOutputSettings", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tmd__SetRelayOutputSettings(soap, p, "-tmd:SetRelayOutputSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tmd__SetRelayOutputSettings(soap, p, "-tmd:SetRelayOutputSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tmd__SetRelayOutputSettings(soap, p, "-tmd:SetRelayOutputSettings", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetRelayOutputSettings * SOAP_FMAC4 soap_get___tmd__SetRelayOutputSettings(struct soap*, struct __tmd__SetRelayOutputSettings *, const char*, const char*); - -inline int soap_read___tmd__SetRelayOutputSettings(struct soap *soap, struct __tmd__SetRelayOutputSettings *p) -{ - if (p) - { ::soap_default___tmd__SetRelayOutputSettings(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetRelayOutputSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tmd__SetRelayOutputSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetRelayOutputSettings(struct soap *soap, struct __tmd__SetRelayOutputSettings *p) -{ - if (::soap_read___tmd__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetRelayOutputs_DEFINED -#define SOAP_TYPE___tmd__GetRelayOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetRelayOutputs(struct soap*, struct __tmd__GetRelayOutputs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetRelayOutputs(struct soap*, const struct __tmd__GetRelayOutputs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetRelayOutputs(struct soap*, const char*, int, const struct __tmd__GetRelayOutputs *, const char*); -SOAP_FMAC3 struct __tmd__GetRelayOutputs * SOAP_FMAC4 soap_in___tmd__GetRelayOutputs(struct soap*, const char*, struct __tmd__GetRelayOutputs *, const char*); -SOAP_FMAC1 struct __tmd__GetRelayOutputs * SOAP_FMAC2 soap_instantiate___tmd__GetRelayOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetRelayOutputs * soap_new___tmd__GetRelayOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetRelayOutputs(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetRelayOutputs * soap_new_req___tmd__GetRelayOutputs( - struct soap *soap) -{ - struct __tmd__GetRelayOutputs *_p = ::soap_new___tmd__GetRelayOutputs(soap); - if (_p) - { ::soap_default___tmd__GetRelayOutputs(soap, _p); - } - return _p; -} - -inline struct __tmd__GetRelayOutputs * soap_new_set___tmd__GetRelayOutputs( - struct soap *soap, - _tds__GetRelayOutputs *tds__GetRelayOutputs) -{ - struct __tmd__GetRelayOutputs *_p = ::soap_new___tmd__GetRelayOutputs(soap); - if (_p) - { ::soap_default___tmd__GetRelayOutputs(soap, _p); - _p->tds__GetRelayOutputs = tds__GetRelayOutputs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetRelayOutputs(struct soap*, const struct __tmd__GetRelayOutputs *, const char*, const char*); - -inline int soap_write___tmd__GetRelayOutputs(struct soap *soap, struct __tmd__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetRelayOutputs(soap, p), 0) || ::soap_put___tmd__GetRelayOutputs(soap, p, "-tmd:GetRelayOutputs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetRelayOutputs(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetRelayOutputs(soap, p), 0) || ::soap_put___tmd__GetRelayOutputs(soap, p, "-tmd:GetRelayOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetRelayOutputs(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetRelayOutputs(soap, p), 0) || ::soap_put___tmd__GetRelayOutputs(soap, p, "-tmd:GetRelayOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetRelayOutputs(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetRelayOutputs(soap, p), 0) || ::soap_put___tmd__GetRelayOutputs(soap, p, "-tmd:GetRelayOutputs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetRelayOutputs * SOAP_FMAC4 soap_get___tmd__GetRelayOutputs(struct soap*, struct __tmd__GetRelayOutputs *, const char*, const char*); - -inline int soap_read___tmd__GetRelayOutputs(struct soap *soap, struct __tmd__GetRelayOutputs *p) -{ - if (p) - { ::soap_default___tmd__GetRelayOutputs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetRelayOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetRelayOutputs(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetRelayOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetRelayOutputs(struct soap *soap, struct __tmd__GetRelayOutputs *p) -{ - if (::soap_read___tmd__GetRelayOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE___tmd__GetAudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioOutputConfigurationOptions(struct soap*, struct __tmd__GetAudioOutputConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioOutputConfigurationOptions(struct soap*, const struct __tmd__GetAudioOutputConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioOutputConfigurationOptions(struct soap*, const char*, int, const struct __tmd__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC3 struct __tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetAudioOutputConfigurationOptions(struct soap*, const char*, struct __tmd__GetAudioOutputConfigurationOptions *, const char*); -SOAP_FMAC1 struct __tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetAudioOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetAudioOutputConfigurationOptions * soap_new___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetAudioOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetAudioOutputConfigurationOptions * soap_new_req___tmd__GetAudioOutputConfigurationOptions( - struct soap *soap) -{ - struct __tmd__GetAudioOutputConfigurationOptions *_p = ::soap_new___tmd__GetAudioOutputConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetAudioOutputConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __tmd__GetAudioOutputConfigurationOptions * soap_new_set___tmd__GetAudioOutputConfigurationOptions( - struct soap *soap, - _tmd__GetAudioOutputConfigurationOptions *tmd__GetAudioOutputConfigurationOptions) -{ - struct __tmd__GetAudioOutputConfigurationOptions *_p = ::soap_new___tmd__GetAudioOutputConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetAudioOutputConfigurationOptions(soap, _p); - _p->tmd__GetAudioOutputConfigurationOptions = tmd__GetAudioOutputConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioOutputConfigurationOptions(struct soap*, const struct __tmd__GetAudioOutputConfigurationOptions *, const char*, const char*); - -inline int soap_write___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, struct __tmd__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfigurationOptions(soap, p, "-tmd:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfigurationOptions(soap, p, "-tmd:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfigurationOptions(soap, p, "-tmd:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfigurationOptions(soap, p, "-tmd:GetAudioOutputConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetAudioOutputConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetAudioOutputConfigurationOptions(struct soap*, struct __tmd__GetAudioOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, struct __tmd__GetAudioOutputConfigurationOptions *p) -{ - if (p) - { ::soap_default___tmd__GetAudioOutputConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetAudioOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetAudioOutputConfigurationOptions(struct soap *soap, struct __tmd__GetAudioOutputConfigurationOptions *p) -{ - if (::soap_read___tmd__GetAudioOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE___tmd__GetAudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioSourceConfigurationOptions(struct soap*, struct __tmd__GetAudioSourceConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioSourceConfigurationOptions(struct soap*, const struct __tmd__GetAudioSourceConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioSourceConfigurationOptions(struct soap*, const char*, int, const struct __tmd__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC3 struct __tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetAudioSourceConfigurationOptions(struct soap*, const char*, struct __tmd__GetAudioSourceConfigurationOptions *, const char*); -SOAP_FMAC1 struct __tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetAudioSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetAudioSourceConfigurationOptions * soap_new___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetAudioSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetAudioSourceConfigurationOptions * soap_new_req___tmd__GetAudioSourceConfigurationOptions( - struct soap *soap) -{ - struct __tmd__GetAudioSourceConfigurationOptions *_p = ::soap_new___tmd__GetAudioSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetAudioSourceConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __tmd__GetAudioSourceConfigurationOptions * soap_new_set___tmd__GetAudioSourceConfigurationOptions( - struct soap *soap, - _tmd__GetAudioSourceConfigurationOptions *tmd__GetAudioSourceConfigurationOptions) -{ - struct __tmd__GetAudioSourceConfigurationOptions *_p = ::soap_new___tmd__GetAudioSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetAudioSourceConfigurationOptions(soap, _p); - _p->tmd__GetAudioSourceConfigurationOptions = tmd__GetAudioSourceConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioSourceConfigurationOptions(struct soap*, const struct __tmd__GetAudioSourceConfigurationOptions *, const char*, const char*); - -inline int soap_write___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, struct __tmd__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfigurationOptions(soap, p, "-tmd:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfigurationOptions(soap, p, "-tmd:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfigurationOptions(soap, p, "-tmd:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfigurationOptions(soap, p, "-tmd:GetAudioSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetAudioSourceConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetAudioSourceConfigurationOptions(struct soap*, struct __tmd__GetAudioSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, struct __tmd__GetAudioSourceConfigurationOptions *p) -{ - if (p) - { ::soap_default___tmd__GetAudioSourceConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetAudioSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetAudioSourceConfigurationOptions(struct soap *soap, struct __tmd__GetAudioSourceConfigurationOptions *p) -{ - if (::soap_read___tmd__GetAudioSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions_DEFINED -#define SOAP_TYPE___tmd__GetVideoOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoOutputConfigurationOptions(struct soap*, struct __tmd__GetVideoOutputConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoOutputConfigurationOptions(struct soap*, const struct __tmd__GetVideoOutputConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoOutputConfigurationOptions(struct soap*, const char*, int, const struct __tmd__GetVideoOutputConfigurationOptions *, const char*); -SOAP_FMAC3 struct __tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetVideoOutputConfigurationOptions(struct soap*, const char*, struct __tmd__GetVideoOutputConfigurationOptions *, const char*); -SOAP_FMAC1 struct __tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetVideoOutputConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetVideoOutputConfigurationOptions * soap_new___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetVideoOutputConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetVideoOutputConfigurationOptions * soap_new_req___tmd__GetVideoOutputConfigurationOptions( - struct soap *soap) -{ - struct __tmd__GetVideoOutputConfigurationOptions *_p = ::soap_new___tmd__GetVideoOutputConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetVideoOutputConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __tmd__GetVideoOutputConfigurationOptions * soap_new_set___tmd__GetVideoOutputConfigurationOptions( - struct soap *soap, - _tmd__GetVideoOutputConfigurationOptions *tmd__GetVideoOutputConfigurationOptions) -{ - struct __tmd__GetVideoOutputConfigurationOptions *_p = ::soap_new___tmd__GetVideoOutputConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetVideoOutputConfigurationOptions(soap, _p); - _p->tmd__GetVideoOutputConfigurationOptions = tmd__GetVideoOutputConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoOutputConfigurationOptions(struct soap*, const struct __tmd__GetVideoOutputConfigurationOptions *, const char*, const char*); - -inline int soap_write___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, struct __tmd__GetVideoOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetVideoOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfigurationOptions(soap, p, "-tmd:GetVideoOutputConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfigurationOptions(soap, p, "-tmd:GetVideoOutputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfigurationOptions(soap, p, "-tmd:GetVideoOutputConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfigurationOptions(soap, p, "-tmd:GetVideoOutputConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetVideoOutputConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetVideoOutputConfigurationOptions(struct soap*, struct __tmd__GetVideoOutputConfigurationOptions *, const char*, const char*); - -inline int soap_read___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, struct __tmd__GetVideoOutputConfigurationOptions *p) -{ - if (p) - { ::soap_default___tmd__GetVideoOutputConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetVideoOutputConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetVideoOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetVideoOutputConfigurationOptions(struct soap *soap, struct __tmd__GetVideoOutputConfigurationOptions *p) -{ - if (::soap_read___tmd__GetVideoOutputConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE___tmd__GetVideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoSourceConfigurationOptions(struct soap*, struct __tmd__GetVideoSourceConfigurationOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoSourceConfigurationOptions(struct soap*, const struct __tmd__GetVideoSourceConfigurationOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoSourceConfigurationOptions(struct soap*, const char*, int, const struct __tmd__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC3 struct __tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_in___tmd__GetVideoSourceConfigurationOptions(struct soap*, const char*, struct __tmd__GetVideoSourceConfigurationOptions *, const char*); -SOAP_FMAC1 struct __tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC2 soap_instantiate___tmd__GetVideoSourceConfigurationOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetVideoSourceConfigurationOptions * soap_new___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetVideoSourceConfigurationOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetVideoSourceConfigurationOptions * soap_new_req___tmd__GetVideoSourceConfigurationOptions( - struct soap *soap) -{ - struct __tmd__GetVideoSourceConfigurationOptions *_p = ::soap_new___tmd__GetVideoSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetVideoSourceConfigurationOptions(soap, _p); - } - return _p; -} - -inline struct __tmd__GetVideoSourceConfigurationOptions * soap_new_set___tmd__GetVideoSourceConfigurationOptions( - struct soap *soap, - _tmd__GetVideoSourceConfigurationOptions *tmd__GetVideoSourceConfigurationOptions) -{ - struct __tmd__GetVideoSourceConfigurationOptions *_p = ::soap_new___tmd__GetVideoSourceConfigurationOptions(soap); - if (_p) - { ::soap_default___tmd__GetVideoSourceConfigurationOptions(soap, _p); - _p->tmd__GetVideoSourceConfigurationOptions = tmd__GetVideoSourceConfigurationOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoSourceConfigurationOptions(struct soap*, const struct __tmd__GetVideoSourceConfigurationOptions *, const char*, const char*); - -inline int soap_write___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, struct __tmd__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfigurationOptions(soap, p, "-tmd:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfigurationOptions(soap, p, "-tmd:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfigurationOptions(soap, p, "-tmd:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfigurationOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSourceConfigurationOptions(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfigurationOptions(soap, p, "-tmd:GetVideoSourceConfigurationOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetVideoSourceConfigurationOptions * SOAP_FMAC4 soap_get___tmd__GetVideoSourceConfigurationOptions(struct soap*, struct __tmd__GetVideoSourceConfigurationOptions *, const char*, const char*); - -inline int soap_read___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, struct __tmd__GetVideoSourceConfigurationOptions *p) -{ - if (p) - { ::soap_default___tmd__GetVideoSourceConfigurationOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetVideoSourceConfigurationOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfigurationOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetVideoSourceConfigurationOptions(struct soap *soap, struct __tmd__GetVideoSourceConfigurationOptions *p) -{ - if (::soap_read___tmd__GetVideoSourceConfigurationOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE___tmd__SetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetAudioOutputConfiguration(struct soap*, struct __tmd__SetAudioOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetAudioOutputConfiguration(struct soap*, const struct __tmd__SetAudioOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetAudioOutputConfiguration(struct soap*, const char*, int, const struct __tmd__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_in___tmd__SetAudioOutputConfiguration(struct soap*, const char*, struct __tmd__SetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__SetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetAudioOutputConfiguration * soap_new___tmd__SetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetAudioOutputConfiguration * soap_new_req___tmd__SetAudioOutputConfiguration( - struct soap *soap) -{ - struct __tmd__SetAudioOutputConfiguration *_p = ::soap_new___tmd__SetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetAudioOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__SetAudioOutputConfiguration * soap_new_set___tmd__SetAudioOutputConfiguration( - struct soap *soap, - _tmd__SetAudioOutputConfiguration *tmd__SetAudioOutputConfiguration) -{ - struct __tmd__SetAudioOutputConfiguration *_p = ::soap_new___tmd__SetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetAudioOutputConfiguration(soap, _p); - _p->tmd__SetAudioOutputConfiguration = tmd__SetAudioOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetAudioOutputConfiguration(struct soap*, const struct __tmd__SetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_write___tmd__SetAudioOutputConfiguration(struct soap *soap, struct __tmd__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioOutputConfiguration(soap, p, "-tmd:SetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioOutputConfiguration(soap, p, "-tmd:SetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioOutputConfiguration(soap, p, "-tmd:SetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioOutputConfiguration(soap, p, "-tmd:SetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetAudioOutputConfiguration * SOAP_FMAC4 soap_get___tmd__SetAudioOutputConfiguration(struct soap*, struct __tmd__SetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read___tmd__SetAudioOutputConfiguration(struct soap *soap, struct __tmd__SetAudioOutputConfiguration *p) -{ - if (p) - { ::soap_default___tmd__SetAudioOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetAudioOutputConfiguration(struct soap *soap, struct __tmd__SetAudioOutputConfiguration *p) -{ - if (::soap_read___tmd__SetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE___tmd__SetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetAudioSourceConfiguration(struct soap*, struct __tmd__SetAudioSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetAudioSourceConfiguration(struct soap*, const struct __tmd__SetAudioSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetAudioSourceConfiguration(struct soap*, const char*, int, const struct __tmd__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_in___tmd__SetAudioSourceConfiguration(struct soap*, const char*, struct __tmd__SetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__SetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetAudioSourceConfiguration * soap_new___tmd__SetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetAudioSourceConfiguration * soap_new_req___tmd__SetAudioSourceConfiguration( - struct soap *soap) -{ - struct __tmd__SetAudioSourceConfiguration *_p = ::soap_new___tmd__SetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetAudioSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__SetAudioSourceConfiguration * soap_new_set___tmd__SetAudioSourceConfiguration( - struct soap *soap, - _tmd__SetAudioSourceConfiguration *tmd__SetAudioSourceConfiguration) -{ - struct __tmd__SetAudioSourceConfiguration *_p = ::soap_new___tmd__SetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetAudioSourceConfiguration(soap, _p); - _p->tmd__SetAudioSourceConfiguration = tmd__SetAudioSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetAudioSourceConfiguration(struct soap*, const struct __tmd__SetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_write___tmd__SetAudioSourceConfiguration(struct soap *soap, struct __tmd__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioSourceConfiguration(soap, p, "-tmd:SetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioSourceConfiguration(soap, p, "-tmd:SetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioSourceConfiguration(soap, p, "-tmd:SetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetAudioSourceConfiguration(soap, p, "-tmd:SetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetAudioSourceConfiguration * SOAP_FMAC4 soap_get___tmd__SetAudioSourceConfiguration(struct soap*, struct __tmd__SetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read___tmd__SetAudioSourceConfiguration(struct soap *soap, struct __tmd__SetAudioSourceConfiguration *p) -{ - if (p) - { ::soap_default___tmd__SetAudioSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetAudioSourceConfiguration(struct soap *soap, struct __tmd__SetAudioSourceConfiguration *p) -{ - if (::soap_read___tmd__SetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetVideoOutputConfiguration_DEFINED -#define SOAP_TYPE___tmd__SetVideoOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetVideoOutputConfiguration(struct soap*, struct __tmd__SetVideoOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetVideoOutputConfiguration(struct soap*, const struct __tmd__SetVideoOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetVideoOutputConfiguration(struct soap*, const char*, int, const struct __tmd__SetVideoOutputConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_in___tmd__SetVideoOutputConfiguration(struct soap*, const char*, struct __tmd__SetVideoOutputConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__SetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetVideoOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetVideoOutputConfiguration * soap_new___tmd__SetVideoOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetVideoOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetVideoOutputConfiguration * soap_new_req___tmd__SetVideoOutputConfiguration( - struct soap *soap) -{ - struct __tmd__SetVideoOutputConfiguration *_p = ::soap_new___tmd__SetVideoOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetVideoOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__SetVideoOutputConfiguration * soap_new_set___tmd__SetVideoOutputConfiguration( - struct soap *soap, - _tmd__SetVideoOutputConfiguration *tmd__SetVideoOutputConfiguration) -{ - struct __tmd__SetVideoOutputConfiguration *_p = ::soap_new___tmd__SetVideoOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetVideoOutputConfiguration(soap, _p); - _p->tmd__SetVideoOutputConfiguration = tmd__SetVideoOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetVideoOutputConfiguration(struct soap*, const struct __tmd__SetVideoOutputConfiguration *, const char*, const char*); - -inline int soap_write___tmd__SetVideoOutputConfiguration(struct soap *soap, struct __tmd__SetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoOutputConfiguration(soap, p, "-tmd:SetVideoOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoOutputConfiguration(soap, p, "-tmd:SetVideoOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoOutputConfiguration(soap, p, "-tmd:SetVideoOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoOutputConfiguration(soap, p, "-tmd:SetVideoOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetVideoOutputConfiguration * SOAP_FMAC4 soap_get___tmd__SetVideoOutputConfiguration(struct soap*, struct __tmd__SetVideoOutputConfiguration *, const char*, const char*); - -inline int soap_read___tmd__SetVideoOutputConfiguration(struct soap *soap, struct __tmd__SetVideoOutputConfiguration *p) -{ - if (p) - { ::soap_default___tmd__SetVideoOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetVideoOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetVideoOutputConfiguration(struct soap *soap, struct __tmd__SetVideoOutputConfiguration *p) -{ - if (::soap_read___tmd__SetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__SetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE___tmd__SetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__SetVideoSourceConfiguration(struct soap*, struct __tmd__SetVideoSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__SetVideoSourceConfiguration(struct soap*, const struct __tmd__SetVideoSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__SetVideoSourceConfiguration(struct soap*, const char*, int, const struct __tmd__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_in___tmd__SetVideoSourceConfiguration(struct soap*, const char*, struct __tmd__SetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__SetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__SetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__SetVideoSourceConfiguration * soap_new___tmd__SetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__SetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__SetVideoSourceConfiguration * soap_new_req___tmd__SetVideoSourceConfiguration( - struct soap *soap) -{ - struct __tmd__SetVideoSourceConfiguration *_p = ::soap_new___tmd__SetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetVideoSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__SetVideoSourceConfiguration * soap_new_set___tmd__SetVideoSourceConfiguration( - struct soap *soap, - _tmd__SetVideoSourceConfiguration *tmd__SetVideoSourceConfiguration) -{ - struct __tmd__SetVideoSourceConfiguration *_p = ::soap_new___tmd__SetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__SetVideoSourceConfiguration(soap, _p); - _p->tmd__SetVideoSourceConfiguration = tmd__SetVideoSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__SetVideoSourceConfiguration(struct soap*, const struct __tmd__SetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_write___tmd__SetVideoSourceConfiguration(struct soap *soap, struct __tmd__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoSourceConfiguration(soap, p, "-tmd:SetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoSourceConfiguration(soap, p, "-tmd:SetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoSourceConfiguration(soap, p, "-tmd:SetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__SetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__SetVideoSourceConfiguration(soap, p, "-tmd:SetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__SetVideoSourceConfiguration * SOAP_FMAC4 soap_get___tmd__SetVideoSourceConfiguration(struct soap*, struct __tmd__SetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read___tmd__SetVideoSourceConfiguration(struct soap *soap, struct __tmd__SetVideoSourceConfiguration *p) -{ - if (p) - { ::soap_default___tmd__SetVideoSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__SetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__SetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__SetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__SetVideoSourceConfiguration(struct soap *soap, struct __tmd__SetVideoSourceConfiguration *p) -{ - if (::soap_read___tmd__SetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE___tmd__GetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioOutputConfiguration(struct soap*, struct __tmd__GetAudioOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioOutputConfiguration(struct soap*, const struct __tmd__GetAudioOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioOutputConfiguration(struct soap*, const char*, int, const struct __tmd__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_in___tmd__GetAudioOutputConfiguration(struct soap*, const char*, struct __tmd__GetAudioOutputConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__GetAudioOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetAudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetAudioOutputConfiguration * soap_new___tmd__GetAudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetAudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetAudioOutputConfiguration * soap_new_req___tmd__GetAudioOutputConfiguration( - struct soap *soap) -{ - struct __tmd__GetAudioOutputConfiguration *_p = ::soap_new___tmd__GetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetAudioOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__GetAudioOutputConfiguration * soap_new_set___tmd__GetAudioOutputConfiguration( - struct soap *soap, - _tmd__GetAudioOutputConfiguration *tmd__GetAudioOutputConfiguration) -{ - struct __tmd__GetAudioOutputConfiguration *_p = ::soap_new___tmd__GetAudioOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetAudioOutputConfiguration(soap, _p); - _p->tmd__GetAudioOutputConfiguration = tmd__GetAudioOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioOutputConfiguration(struct soap*, const struct __tmd__GetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_write___tmd__GetAudioOutputConfiguration(struct soap *soap, struct __tmd__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfiguration(soap, p, "-tmd:GetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfiguration(soap, p, "-tmd:GetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfiguration(soap, p, "-tmd:GetAudioOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioOutputConfiguration(soap, p, "-tmd:GetAudioOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetAudioOutputConfiguration * SOAP_FMAC4 soap_get___tmd__GetAudioOutputConfiguration(struct soap*, struct __tmd__GetAudioOutputConfiguration *, const char*, const char*); - -inline int soap_read___tmd__GetAudioOutputConfiguration(struct soap *soap, struct __tmd__GetAudioOutputConfiguration *p) -{ - if (p) - { ::soap_default___tmd__GetAudioOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetAudioOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetAudioOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetAudioOutputConfiguration(struct soap *soap, struct __tmd__GetAudioOutputConfiguration *p) -{ - if (::soap_read___tmd__GetAudioOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE___tmd__GetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioSourceConfiguration(struct soap*, struct __tmd__GetAudioSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioSourceConfiguration(struct soap*, const struct __tmd__GetAudioSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioSourceConfiguration(struct soap*, const char*, int, const struct __tmd__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_in___tmd__GetAudioSourceConfiguration(struct soap*, const char*, struct __tmd__GetAudioSourceConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__GetAudioSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetAudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetAudioSourceConfiguration * soap_new___tmd__GetAudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetAudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetAudioSourceConfiguration * soap_new_req___tmd__GetAudioSourceConfiguration( - struct soap *soap) -{ - struct __tmd__GetAudioSourceConfiguration *_p = ::soap_new___tmd__GetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetAudioSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__GetAudioSourceConfiguration * soap_new_set___tmd__GetAudioSourceConfiguration( - struct soap *soap, - _tmd__GetAudioSourceConfiguration *tmd__GetAudioSourceConfiguration) -{ - struct __tmd__GetAudioSourceConfiguration *_p = ::soap_new___tmd__GetAudioSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetAudioSourceConfiguration(soap, _p); - _p->tmd__GetAudioSourceConfiguration = tmd__GetAudioSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioSourceConfiguration(struct soap*, const struct __tmd__GetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_write___tmd__GetAudioSourceConfiguration(struct soap *soap, struct __tmd__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfiguration(soap, p, "-tmd:GetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfiguration(soap, p, "-tmd:GetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfiguration(soap, p, "-tmd:GetAudioSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetAudioSourceConfiguration(soap, p, "-tmd:GetAudioSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetAudioSourceConfiguration * SOAP_FMAC4 soap_get___tmd__GetAudioSourceConfiguration(struct soap*, struct __tmd__GetAudioSourceConfiguration *, const char*, const char*); - -inline int soap_read___tmd__GetAudioSourceConfiguration(struct soap *soap, struct __tmd__GetAudioSourceConfiguration *p) -{ - if (p) - { ::soap_default___tmd__GetAudioSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetAudioSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetAudioSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetAudioSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetAudioSourceConfiguration(struct soap *soap, struct __tmd__GetAudioSourceConfiguration *p) -{ - if (::soap_read___tmd__GetAudioSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetVideoOutputConfiguration_DEFINED -#define SOAP_TYPE___tmd__GetVideoOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoOutputConfiguration(struct soap*, struct __tmd__GetVideoOutputConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoOutputConfiguration(struct soap*, const struct __tmd__GetVideoOutputConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoOutputConfiguration(struct soap*, const char*, int, const struct __tmd__GetVideoOutputConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_in___tmd__GetVideoOutputConfiguration(struct soap*, const char*, struct __tmd__GetVideoOutputConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__GetVideoOutputConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetVideoOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetVideoOutputConfiguration * soap_new___tmd__GetVideoOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetVideoOutputConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetVideoOutputConfiguration * soap_new_req___tmd__GetVideoOutputConfiguration( - struct soap *soap) -{ - struct __tmd__GetVideoOutputConfiguration *_p = ::soap_new___tmd__GetVideoOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetVideoOutputConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__GetVideoOutputConfiguration * soap_new_set___tmd__GetVideoOutputConfiguration( - struct soap *soap, - _tmd__GetVideoOutputConfiguration *tmd__GetVideoOutputConfiguration) -{ - struct __tmd__GetVideoOutputConfiguration *_p = ::soap_new___tmd__GetVideoOutputConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetVideoOutputConfiguration(soap, _p); - _p->tmd__GetVideoOutputConfiguration = tmd__GetVideoOutputConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoOutputConfiguration(struct soap*, const struct __tmd__GetVideoOutputConfiguration *, const char*, const char*); - -inline int soap_write___tmd__GetVideoOutputConfiguration(struct soap *soap, struct __tmd__GetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfiguration(soap, p, "-tmd:GetVideoOutputConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfiguration(soap, p, "-tmd:GetVideoOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfiguration(soap, p, "-tmd:GetVideoOutputConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoOutputConfiguration(soap, p, "-tmd:GetVideoOutputConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetVideoOutputConfiguration * SOAP_FMAC4 soap_get___tmd__GetVideoOutputConfiguration(struct soap*, struct __tmd__GetVideoOutputConfiguration *, const char*, const char*); - -inline int soap_read___tmd__GetVideoOutputConfiguration(struct soap *soap, struct __tmd__GetVideoOutputConfiguration *p) -{ - if (p) - { ::soap_default___tmd__GetVideoOutputConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetVideoOutputConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetVideoOutputConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetVideoOutputConfiguration(struct soap *soap, struct __tmd__GetVideoOutputConfiguration *p) -{ - if (::soap_read___tmd__GetVideoOutputConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE___tmd__GetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoSourceConfiguration(struct soap*, struct __tmd__GetVideoSourceConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoSourceConfiguration(struct soap*, const struct __tmd__GetVideoSourceConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoSourceConfiguration(struct soap*, const char*, int, const struct __tmd__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC3 struct __tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_in___tmd__GetVideoSourceConfiguration(struct soap*, const char*, struct __tmd__GetVideoSourceConfiguration *, const char*); -SOAP_FMAC1 struct __tmd__GetVideoSourceConfiguration * SOAP_FMAC2 soap_instantiate___tmd__GetVideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetVideoSourceConfiguration * soap_new___tmd__GetVideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetVideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetVideoSourceConfiguration * soap_new_req___tmd__GetVideoSourceConfiguration( - struct soap *soap) -{ - struct __tmd__GetVideoSourceConfiguration *_p = ::soap_new___tmd__GetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetVideoSourceConfiguration(soap, _p); - } - return _p; -} - -inline struct __tmd__GetVideoSourceConfiguration * soap_new_set___tmd__GetVideoSourceConfiguration( - struct soap *soap, - _tmd__GetVideoSourceConfiguration *tmd__GetVideoSourceConfiguration) -{ - struct __tmd__GetVideoSourceConfiguration *_p = ::soap_new___tmd__GetVideoSourceConfiguration(soap); - if (_p) - { ::soap_default___tmd__GetVideoSourceConfiguration(soap, _p); - _p->tmd__GetVideoSourceConfiguration = tmd__GetVideoSourceConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoSourceConfiguration(struct soap*, const struct __tmd__GetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_write___tmd__GetVideoSourceConfiguration(struct soap *soap, struct __tmd__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfiguration(soap, p, "-tmd:GetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfiguration(soap, p, "-tmd:GetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfiguration(soap, p, "-tmd:GetVideoSourceConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSourceConfiguration(soap, p), 0) || ::soap_put___tmd__GetVideoSourceConfiguration(soap, p, "-tmd:GetVideoSourceConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetVideoSourceConfiguration * SOAP_FMAC4 soap_get___tmd__GetVideoSourceConfiguration(struct soap*, struct __tmd__GetVideoSourceConfiguration *, const char*, const char*); - -inline int soap_read___tmd__GetVideoSourceConfiguration(struct soap *soap, struct __tmd__GetVideoSourceConfiguration *p) -{ - if (p) - { ::soap_default___tmd__GetVideoSourceConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetVideoSourceConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetVideoSourceConfiguration(struct soap *soap, const char *URL, struct __tmd__GetVideoSourceConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetVideoSourceConfiguration(struct soap *soap, struct __tmd__GetVideoSourceConfiguration *p) -{ - if (::soap_read___tmd__GetVideoSourceConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetVideoOutputs_DEFINED -#define SOAP_TYPE___tmd__GetVideoOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoOutputs(struct soap*, struct __tmd__GetVideoOutputs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoOutputs(struct soap*, const struct __tmd__GetVideoOutputs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoOutputs(struct soap*, const char*, int, const struct __tmd__GetVideoOutputs *, const char*); -SOAP_FMAC3 struct __tmd__GetVideoOutputs * SOAP_FMAC4 soap_in___tmd__GetVideoOutputs(struct soap*, const char*, struct __tmd__GetVideoOutputs *, const char*); -SOAP_FMAC1 struct __tmd__GetVideoOutputs * SOAP_FMAC2 soap_instantiate___tmd__GetVideoOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetVideoOutputs * soap_new___tmd__GetVideoOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetVideoOutputs(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetVideoOutputs * soap_new_req___tmd__GetVideoOutputs( - struct soap *soap) -{ - struct __tmd__GetVideoOutputs *_p = ::soap_new___tmd__GetVideoOutputs(soap); - if (_p) - { ::soap_default___tmd__GetVideoOutputs(soap, _p); - } - return _p; -} - -inline struct __tmd__GetVideoOutputs * soap_new_set___tmd__GetVideoOutputs( - struct soap *soap, - _tmd__GetVideoOutputs *tmd__GetVideoOutputs) -{ - struct __tmd__GetVideoOutputs *_p = ::soap_new___tmd__GetVideoOutputs(soap); - if (_p) - { ::soap_default___tmd__GetVideoOutputs(soap, _p); - _p->tmd__GetVideoOutputs = tmd__GetVideoOutputs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoOutputs(struct soap*, const struct __tmd__GetVideoOutputs *, const char*, const char*); - -inline int soap_write___tmd__GetVideoOutputs(struct soap *soap, struct __tmd__GetVideoOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetVideoOutputs(soap, p), 0) || ::soap_put___tmd__GetVideoOutputs(soap, p, "-tmd:GetVideoOutputs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetVideoOutputs(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputs(soap, p), 0) || ::soap_put___tmd__GetVideoOutputs(soap, p, "-tmd:GetVideoOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetVideoOutputs(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputs(soap, p), 0) || ::soap_put___tmd__GetVideoOutputs(soap, p, "-tmd:GetVideoOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetVideoOutputs(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoOutputs(soap, p), 0) || ::soap_put___tmd__GetVideoOutputs(soap, p, "-tmd:GetVideoOutputs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetVideoOutputs * SOAP_FMAC4 soap_get___tmd__GetVideoOutputs(struct soap*, struct __tmd__GetVideoOutputs *, const char*, const char*); - -inline int soap_read___tmd__GetVideoOutputs(struct soap *soap, struct __tmd__GetVideoOutputs *p) -{ - if (p) - { ::soap_default___tmd__GetVideoOutputs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetVideoOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetVideoOutputs(struct soap *soap, const char *URL, struct __tmd__GetVideoOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetVideoOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetVideoOutputs(struct soap *soap, struct __tmd__GetVideoOutputs *p) -{ - if (::soap_read___tmd__GetVideoOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetVideoSources_DEFINED -#define SOAP_TYPE___tmd__GetVideoSources_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetVideoSources(struct soap*, struct __tmd__GetVideoSources *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetVideoSources(struct soap*, const struct __tmd__GetVideoSources *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetVideoSources(struct soap*, const char*, int, const struct __tmd__GetVideoSources *, const char*); -SOAP_FMAC3 struct __tmd__GetVideoSources * SOAP_FMAC4 soap_in___tmd__GetVideoSources(struct soap*, const char*, struct __tmd__GetVideoSources *, const char*); -SOAP_FMAC1 struct __tmd__GetVideoSources * SOAP_FMAC2 soap_instantiate___tmd__GetVideoSources(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetVideoSources * soap_new___tmd__GetVideoSources(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetVideoSources(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetVideoSources * soap_new_req___tmd__GetVideoSources( - struct soap *soap) -{ - struct __tmd__GetVideoSources *_p = ::soap_new___tmd__GetVideoSources(soap); - if (_p) - { ::soap_default___tmd__GetVideoSources(soap, _p); - } - return _p; -} - -inline struct __tmd__GetVideoSources * soap_new_set___tmd__GetVideoSources( - struct soap *soap, - tmd__Get *tmd__GetVideoSources) -{ - struct __tmd__GetVideoSources *_p = ::soap_new___tmd__GetVideoSources(soap); - if (_p) - { ::soap_default___tmd__GetVideoSources(soap, _p); - _p->tmd__GetVideoSources = tmd__GetVideoSources; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetVideoSources(struct soap*, const struct __tmd__GetVideoSources *, const char*, const char*); - -inline int soap_write___tmd__GetVideoSources(struct soap *soap, struct __tmd__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetVideoSources(soap, p), 0) || ::soap_put___tmd__GetVideoSources(soap, p, "-tmd:GetVideoSources", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetVideoSources(struct soap *soap, const char *URL, struct __tmd__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSources(soap, p), 0) || ::soap_put___tmd__GetVideoSources(soap, p, "-tmd:GetVideoSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetVideoSources(struct soap *soap, const char *URL, struct __tmd__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSources(soap, p), 0) || ::soap_put___tmd__GetVideoSources(soap, p, "-tmd:GetVideoSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetVideoSources(struct soap *soap, const char *URL, struct __tmd__GetVideoSources const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetVideoSources(soap, p), 0) || ::soap_put___tmd__GetVideoSources(soap, p, "-tmd:GetVideoSources", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetVideoSources * SOAP_FMAC4 soap_get___tmd__GetVideoSources(struct soap*, struct __tmd__GetVideoSources *, const char*, const char*); - -inline int soap_read___tmd__GetVideoSources(struct soap *soap, struct __tmd__GetVideoSources *p) -{ - if (p) - { ::soap_default___tmd__GetVideoSources(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetVideoSources(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetVideoSources(struct soap *soap, const char *URL, struct __tmd__GetVideoSources *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetVideoSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetVideoSources(struct soap *soap, struct __tmd__GetVideoSources *p) -{ - if (::soap_read___tmd__GetVideoSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetAudioOutputs_DEFINED -#define SOAP_TYPE___tmd__GetAudioOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioOutputs(struct soap*, struct __tmd__GetAudioOutputs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioOutputs(struct soap*, const struct __tmd__GetAudioOutputs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioOutputs(struct soap*, const char*, int, const struct __tmd__GetAudioOutputs *, const char*); -SOAP_FMAC3 struct __tmd__GetAudioOutputs * SOAP_FMAC4 soap_in___tmd__GetAudioOutputs(struct soap*, const char*, struct __tmd__GetAudioOutputs *, const char*); -SOAP_FMAC1 struct __tmd__GetAudioOutputs * SOAP_FMAC2 soap_instantiate___tmd__GetAudioOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetAudioOutputs * soap_new___tmd__GetAudioOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetAudioOutputs(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetAudioOutputs * soap_new_req___tmd__GetAudioOutputs( - struct soap *soap) -{ - struct __tmd__GetAudioOutputs *_p = ::soap_new___tmd__GetAudioOutputs(soap); - if (_p) - { ::soap_default___tmd__GetAudioOutputs(soap, _p); - } - return _p; -} - -inline struct __tmd__GetAudioOutputs * soap_new_set___tmd__GetAudioOutputs( - struct soap *soap, - tmd__Get *tmd__GetAudioOutputs) -{ - struct __tmd__GetAudioOutputs *_p = ::soap_new___tmd__GetAudioOutputs(soap); - if (_p) - { ::soap_default___tmd__GetAudioOutputs(soap, _p); - _p->tmd__GetAudioOutputs = tmd__GetAudioOutputs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioOutputs(struct soap*, const struct __tmd__GetAudioOutputs *, const char*, const char*); - -inline int soap_write___tmd__GetAudioOutputs(struct soap *soap, struct __tmd__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetAudioOutputs(soap, p), 0) || ::soap_put___tmd__GetAudioOutputs(soap, p, "-tmd:GetAudioOutputs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetAudioOutputs(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputs(soap, p), 0) || ::soap_put___tmd__GetAudioOutputs(soap, p, "-tmd:GetAudioOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetAudioOutputs(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputs(soap, p), 0) || ::soap_put___tmd__GetAudioOutputs(soap, p, "-tmd:GetAudioOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetAudioOutputs(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioOutputs(soap, p), 0) || ::soap_put___tmd__GetAudioOutputs(soap, p, "-tmd:GetAudioOutputs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetAudioOutputs * SOAP_FMAC4 soap_get___tmd__GetAudioOutputs(struct soap*, struct __tmd__GetAudioOutputs *, const char*, const char*); - -inline int soap_read___tmd__GetAudioOutputs(struct soap *soap, struct __tmd__GetAudioOutputs *p) -{ - if (p) - { ::soap_default___tmd__GetAudioOutputs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetAudioOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetAudioOutputs(struct soap *soap, const char *URL, struct __tmd__GetAudioOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetAudioOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetAudioOutputs(struct soap *soap, struct __tmd__GetAudioOutputs *p) -{ - if (::soap_read___tmd__GetAudioOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetAudioSources_DEFINED -#define SOAP_TYPE___tmd__GetAudioSources_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetAudioSources(struct soap*, struct __tmd__GetAudioSources *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetAudioSources(struct soap*, const struct __tmd__GetAudioSources *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetAudioSources(struct soap*, const char*, int, const struct __tmd__GetAudioSources *, const char*); -SOAP_FMAC3 struct __tmd__GetAudioSources * SOAP_FMAC4 soap_in___tmd__GetAudioSources(struct soap*, const char*, struct __tmd__GetAudioSources *, const char*); -SOAP_FMAC1 struct __tmd__GetAudioSources * SOAP_FMAC2 soap_instantiate___tmd__GetAudioSources(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetAudioSources * soap_new___tmd__GetAudioSources(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetAudioSources(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetAudioSources * soap_new_req___tmd__GetAudioSources( - struct soap *soap) -{ - struct __tmd__GetAudioSources *_p = ::soap_new___tmd__GetAudioSources(soap); - if (_p) - { ::soap_default___tmd__GetAudioSources(soap, _p); - } - return _p; -} - -inline struct __tmd__GetAudioSources * soap_new_set___tmd__GetAudioSources( - struct soap *soap, - tmd__Get *tmd__GetAudioSources) -{ - struct __tmd__GetAudioSources *_p = ::soap_new___tmd__GetAudioSources(soap); - if (_p) - { ::soap_default___tmd__GetAudioSources(soap, _p); - _p->tmd__GetAudioSources = tmd__GetAudioSources; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetAudioSources(struct soap*, const struct __tmd__GetAudioSources *, const char*, const char*); - -inline int soap_write___tmd__GetAudioSources(struct soap *soap, struct __tmd__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetAudioSources(soap, p), 0) || ::soap_put___tmd__GetAudioSources(soap, p, "-tmd:GetAudioSources", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetAudioSources(struct soap *soap, const char *URL, struct __tmd__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSources(soap, p), 0) || ::soap_put___tmd__GetAudioSources(soap, p, "-tmd:GetAudioSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetAudioSources(struct soap *soap, const char *URL, struct __tmd__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSources(soap, p), 0) || ::soap_put___tmd__GetAudioSources(soap, p, "-tmd:GetAudioSources", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetAudioSources(struct soap *soap, const char *URL, struct __tmd__GetAudioSources const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetAudioSources(soap, p), 0) || ::soap_put___tmd__GetAudioSources(soap, p, "-tmd:GetAudioSources", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetAudioSources * SOAP_FMAC4 soap_get___tmd__GetAudioSources(struct soap*, struct __tmd__GetAudioSources *, const char*, const char*); - -inline int soap_read___tmd__GetAudioSources(struct soap *soap, struct __tmd__GetAudioSources *p) -{ - if (p) - { ::soap_default___tmd__GetAudioSources(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetAudioSources(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetAudioSources(struct soap *soap, const char *URL, struct __tmd__GetAudioSources *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetAudioSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetAudioSources(struct soap *soap, struct __tmd__GetAudioSources *p) -{ - if (::soap_read___tmd__GetAudioSources(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetRelayOutputOptions_DEFINED -#define SOAP_TYPE___tmd__GetRelayOutputOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetRelayOutputOptions(struct soap*, struct __tmd__GetRelayOutputOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetRelayOutputOptions(struct soap*, const struct __tmd__GetRelayOutputOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetRelayOutputOptions(struct soap*, const char*, int, const struct __tmd__GetRelayOutputOptions *, const char*); -SOAP_FMAC3 struct __tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_in___tmd__GetRelayOutputOptions(struct soap*, const char*, struct __tmd__GetRelayOutputOptions *, const char*); -SOAP_FMAC1 struct __tmd__GetRelayOutputOptions * SOAP_FMAC2 soap_instantiate___tmd__GetRelayOutputOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetRelayOutputOptions * soap_new___tmd__GetRelayOutputOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetRelayOutputOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetRelayOutputOptions * soap_new_req___tmd__GetRelayOutputOptions( - struct soap *soap) -{ - struct __tmd__GetRelayOutputOptions *_p = ::soap_new___tmd__GetRelayOutputOptions(soap); - if (_p) - { ::soap_default___tmd__GetRelayOutputOptions(soap, _p); - } - return _p; -} - -inline struct __tmd__GetRelayOutputOptions * soap_new_set___tmd__GetRelayOutputOptions( - struct soap *soap, - _tmd__GetRelayOutputOptions *tmd__GetRelayOutputOptions) -{ - struct __tmd__GetRelayOutputOptions *_p = ::soap_new___tmd__GetRelayOutputOptions(soap); - if (_p) - { ::soap_default___tmd__GetRelayOutputOptions(soap, _p); - _p->tmd__GetRelayOutputOptions = tmd__GetRelayOutputOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetRelayOutputOptions(struct soap*, const struct __tmd__GetRelayOutputOptions *, const char*, const char*); - -inline int soap_write___tmd__GetRelayOutputOptions(struct soap *soap, struct __tmd__GetRelayOutputOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetRelayOutputOptions(soap, p), 0) || ::soap_put___tmd__GetRelayOutputOptions(soap, p, "-tmd:GetRelayOutputOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetRelayOutputOptions(soap, p), 0) || ::soap_put___tmd__GetRelayOutputOptions(soap, p, "-tmd:GetRelayOutputOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetRelayOutputOptions(soap, p), 0) || ::soap_put___tmd__GetRelayOutputOptions(soap, p, "-tmd:GetRelayOutputOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetRelayOutputOptions(soap, p), 0) || ::soap_put___tmd__GetRelayOutputOptions(soap, p, "-tmd:GetRelayOutputOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetRelayOutputOptions * SOAP_FMAC4 soap_get___tmd__GetRelayOutputOptions(struct soap*, struct __tmd__GetRelayOutputOptions *, const char*, const char*); - -inline int soap_read___tmd__GetRelayOutputOptions(struct soap *soap, struct __tmd__GetRelayOutputOptions *p) -{ - if (p) - { ::soap_default___tmd__GetRelayOutputOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetRelayOutputOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetRelayOutputOptions(struct soap *soap, const char *URL, struct __tmd__GetRelayOutputOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetRelayOutputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetRelayOutputOptions(struct soap *soap, struct __tmd__GetRelayOutputOptions *p) -{ - if (::soap_read___tmd__GetRelayOutputOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tmd__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___tmd__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tmd__GetServiceCapabilities(struct soap*, struct __tmd__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tmd__GetServiceCapabilities(struct soap*, const struct __tmd__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tmd__GetServiceCapabilities(struct soap*, const char*, int, const struct __tmd__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __tmd__GetServiceCapabilities * SOAP_FMAC4 soap_in___tmd__GetServiceCapabilities(struct soap*, const char*, struct __tmd__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __tmd__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tmd__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tmd__GetServiceCapabilities * soap_new___tmd__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___tmd__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __tmd__GetServiceCapabilities * soap_new_req___tmd__GetServiceCapabilities( - struct soap *soap) -{ - struct __tmd__GetServiceCapabilities *_p = ::soap_new___tmd__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tmd__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __tmd__GetServiceCapabilities * soap_new_set___tmd__GetServiceCapabilities( - struct soap *soap, - _tmd__GetServiceCapabilities *tmd__GetServiceCapabilities) -{ - struct __tmd__GetServiceCapabilities *_p = ::soap_new___tmd__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tmd__GetServiceCapabilities(soap, _p); - _p->tmd__GetServiceCapabilities = tmd__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tmd__GetServiceCapabilities(struct soap*, const struct __tmd__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___tmd__GetServiceCapabilities(struct soap *soap, struct __tmd__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tmd__GetServiceCapabilities(soap, p), 0) || ::soap_put___tmd__GetServiceCapabilities(soap, p, "-tmd:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tmd__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tmd__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetServiceCapabilities(soap, p), 0) || ::soap_put___tmd__GetServiceCapabilities(soap, p, "-tmd:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tmd__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tmd__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetServiceCapabilities(soap, p), 0) || ::soap_put___tmd__GetServiceCapabilities(soap, p, "-tmd:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tmd__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tmd__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tmd__GetServiceCapabilities(soap, p), 0) || ::soap_put___tmd__GetServiceCapabilities(soap, p, "-tmd:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tmd__GetServiceCapabilities * SOAP_FMAC4 soap_get___tmd__GetServiceCapabilities(struct soap*, struct __tmd__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___tmd__GetServiceCapabilities(struct soap *soap, struct __tmd__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___tmd__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tmd__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tmd__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tmd__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tmd__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tmd__GetServiceCapabilities(struct soap *soap, struct __tmd__GetServiceCapabilities *p) -{ - if (::soap_read___tmd__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__DeletePaneConfiguration_DEFINED -#define SOAP_TYPE___tls__DeletePaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__DeletePaneConfiguration(struct soap*, struct __tls__DeletePaneConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__DeletePaneConfiguration(struct soap*, const struct __tls__DeletePaneConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__DeletePaneConfiguration(struct soap*, const char*, int, const struct __tls__DeletePaneConfiguration *, const char*); -SOAP_FMAC3 struct __tls__DeletePaneConfiguration * SOAP_FMAC4 soap_in___tls__DeletePaneConfiguration(struct soap*, const char*, struct __tls__DeletePaneConfiguration *, const char*); -SOAP_FMAC1 struct __tls__DeletePaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__DeletePaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__DeletePaneConfiguration * soap_new___tls__DeletePaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__DeletePaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__DeletePaneConfiguration * soap_new_req___tls__DeletePaneConfiguration( - struct soap *soap) -{ - struct __tls__DeletePaneConfiguration *_p = ::soap_new___tls__DeletePaneConfiguration(soap); - if (_p) - { ::soap_default___tls__DeletePaneConfiguration(soap, _p); - } - return _p; -} - -inline struct __tls__DeletePaneConfiguration * soap_new_set___tls__DeletePaneConfiguration( - struct soap *soap, - _tls__DeletePaneConfiguration *tls__DeletePaneConfiguration) -{ - struct __tls__DeletePaneConfiguration *_p = ::soap_new___tls__DeletePaneConfiguration(soap); - if (_p) - { ::soap_default___tls__DeletePaneConfiguration(soap, _p); - _p->tls__DeletePaneConfiguration = tls__DeletePaneConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__DeletePaneConfiguration(struct soap*, const struct __tls__DeletePaneConfiguration *, const char*, const char*); - -inline int soap_write___tls__DeletePaneConfiguration(struct soap *soap, struct __tls__DeletePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__DeletePaneConfiguration(soap, p), 0) || ::soap_put___tls__DeletePaneConfiguration(soap, p, "-tls:DeletePaneConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__DeletePaneConfiguration(struct soap *soap, const char *URL, struct __tls__DeletePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__DeletePaneConfiguration(soap, p), 0) || ::soap_put___tls__DeletePaneConfiguration(soap, p, "-tls:DeletePaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__DeletePaneConfiguration(struct soap *soap, const char *URL, struct __tls__DeletePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__DeletePaneConfiguration(soap, p), 0) || ::soap_put___tls__DeletePaneConfiguration(soap, p, "-tls:DeletePaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__DeletePaneConfiguration(struct soap *soap, const char *URL, struct __tls__DeletePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__DeletePaneConfiguration(soap, p), 0) || ::soap_put___tls__DeletePaneConfiguration(soap, p, "-tls:DeletePaneConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__DeletePaneConfiguration * SOAP_FMAC4 soap_get___tls__DeletePaneConfiguration(struct soap*, struct __tls__DeletePaneConfiguration *, const char*, const char*); - -inline int soap_read___tls__DeletePaneConfiguration(struct soap *soap, struct __tls__DeletePaneConfiguration *p) -{ - if (p) - { ::soap_default___tls__DeletePaneConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__DeletePaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__DeletePaneConfiguration(struct soap *soap, const char *URL, struct __tls__DeletePaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__DeletePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__DeletePaneConfiguration(struct soap *soap, struct __tls__DeletePaneConfiguration *p) -{ - if (::soap_read___tls__DeletePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__CreatePaneConfiguration_DEFINED -#define SOAP_TYPE___tls__CreatePaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__CreatePaneConfiguration(struct soap*, struct __tls__CreatePaneConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__CreatePaneConfiguration(struct soap*, const struct __tls__CreatePaneConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__CreatePaneConfiguration(struct soap*, const char*, int, const struct __tls__CreatePaneConfiguration *, const char*); -SOAP_FMAC3 struct __tls__CreatePaneConfiguration * SOAP_FMAC4 soap_in___tls__CreatePaneConfiguration(struct soap*, const char*, struct __tls__CreatePaneConfiguration *, const char*); -SOAP_FMAC1 struct __tls__CreatePaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__CreatePaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__CreatePaneConfiguration * soap_new___tls__CreatePaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__CreatePaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__CreatePaneConfiguration * soap_new_req___tls__CreatePaneConfiguration( - struct soap *soap) -{ - struct __tls__CreatePaneConfiguration *_p = ::soap_new___tls__CreatePaneConfiguration(soap); - if (_p) - { ::soap_default___tls__CreatePaneConfiguration(soap, _p); - } - return _p; -} - -inline struct __tls__CreatePaneConfiguration * soap_new_set___tls__CreatePaneConfiguration( - struct soap *soap, - _tls__CreatePaneConfiguration *tls__CreatePaneConfiguration) -{ - struct __tls__CreatePaneConfiguration *_p = ::soap_new___tls__CreatePaneConfiguration(soap); - if (_p) - { ::soap_default___tls__CreatePaneConfiguration(soap, _p); - _p->tls__CreatePaneConfiguration = tls__CreatePaneConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__CreatePaneConfiguration(struct soap*, const struct __tls__CreatePaneConfiguration *, const char*, const char*); - -inline int soap_write___tls__CreatePaneConfiguration(struct soap *soap, struct __tls__CreatePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__CreatePaneConfiguration(soap, p), 0) || ::soap_put___tls__CreatePaneConfiguration(soap, p, "-tls:CreatePaneConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__CreatePaneConfiguration(struct soap *soap, const char *URL, struct __tls__CreatePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__CreatePaneConfiguration(soap, p), 0) || ::soap_put___tls__CreatePaneConfiguration(soap, p, "-tls:CreatePaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__CreatePaneConfiguration(struct soap *soap, const char *URL, struct __tls__CreatePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__CreatePaneConfiguration(soap, p), 0) || ::soap_put___tls__CreatePaneConfiguration(soap, p, "-tls:CreatePaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__CreatePaneConfiguration(struct soap *soap, const char *URL, struct __tls__CreatePaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__CreatePaneConfiguration(soap, p), 0) || ::soap_put___tls__CreatePaneConfiguration(soap, p, "-tls:CreatePaneConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__CreatePaneConfiguration * SOAP_FMAC4 soap_get___tls__CreatePaneConfiguration(struct soap*, struct __tls__CreatePaneConfiguration *, const char*, const char*); - -inline int soap_read___tls__CreatePaneConfiguration(struct soap *soap, struct __tls__CreatePaneConfiguration *p) -{ - if (p) - { ::soap_default___tls__CreatePaneConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__CreatePaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__CreatePaneConfiguration(struct soap *soap, const char *URL, struct __tls__CreatePaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__CreatePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__CreatePaneConfiguration(struct soap *soap, struct __tls__CreatePaneConfiguration *p) -{ - if (::soap_read___tls__CreatePaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__SetPaneConfiguration_DEFINED -#define SOAP_TYPE___tls__SetPaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__SetPaneConfiguration(struct soap*, struct __tls__SetPaneConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__SetPaneConfiguration(struct soap*, const struct __tls__SetPaneConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__SetPaneConfiguration(struct soap*, const char*, int, const struct __tls__SetPaneConfiguration *, const char*); -SOAP_FMAC3 struct __tls__SetPaneConfiguration * SOAP_FMAC4 soap_in___tls__SetPaneConfiguration(struct soap*, const char*, struct __tls__SetPaneConfiguration *, const char*); -SOAP_FMAC1 struct __tls__SetPaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__SetPaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__SetPaneConfiguration * soap_new___tls__SetPaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__SetPaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__SetPaneConfiguration * soap_new_req___tls__SetPaneConfiguration( - struct soap *soap) -{ - struct __tls__SetPaneConfiguration *_p = ::soap_new___tls__SetPaneConfiguration(soap); - if (_p) - { ::soap_default___tls__SetPaneConfiguration(soap, _p); - } - return _p; -} - -inline struct __tls__SetPaneConfiguration * soap_new_set___tls__SetPaneConfiguration( - struct soap *soap, - _tls__SetPaneConfiguration *tls__SetPaneConfiguration) -{ - struct __tls__SetPaneConfiguration *_p = ::soap_new___tls__SetPaneConfiguration(soap); - if (_p) - { ::soap_default___tls__SetPaneConfiguration(soap, _p); - _p->tls__SetPaneConfiguration = tls__SetPaneConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__SetPaneConfiguration(struct soap*, const struct __tls__SetPaneConfiguration *, const char*, const char*); - -inline int soap_write___tls__SetPaneConfiguration(struct soap *soap, struct __tls__SetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__SetPaneConfiguration(soap, p), 0) || ::soap_put___tls__SetPaneConfiguration(soap, p, "-tls:SetPaneConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__SetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__SetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetPaneConfiguration(soap, p), 0) || ::soap_put___tls__SetPaneConfiguration(soap, p, "-tls:SetPaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__SetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__SetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetPaneConfiguration(soap, p), 0) || ::soap_put___tls__SetPaneConfiguration(soap, p, "-tls:SetPaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__SetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__SetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetPaneConfiguration(soap, p), 0) || ::soap_put___tls__SetPaneConfiguration(soap, p, "-tls:SetPaneConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__SetPaneConfiguration * SOAP_FMAC4 soap_get___tls__SetPaneConfiguration(struct soap*, struct __tls__SetPaneConfiguration *, const char*, const char*); - -inline int soap_read___tls__SetPaneConfiguration(struct soap *soap, struct __tls__SetPaneConfiguration *p) -{ - if (p) - { ::soap_default___tls__SetPaneConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__SetPaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__SetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__SetPaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__SetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__SetPaneConfiguration(struct soap *soap, struct __tls__SetPaneConfiguration *p) -{ - if (::soap_read___tls__SetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__SetPaneConfigurations_DEFINED -#define SOAP_TYPE___tls__SetPaneConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__SetPaneConfigurations(struct soap*, struct __tls__SetPaneConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__SetPaneConfigurations(struct soap*, const struct __tls__SetPaneConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__SetPaneConfigurations(struct soap*, const char*, int, const struct __tls__SetPaneConfigurations *, const char*); -SOAP_FMAC3 struct __tls__SetPaneConfigurations * SOAP_FMAC4 soap_in___tls__SetPaneConfigurations(struct soap*, const char*, struct __tls__SetPaneConfigurations *, const char*); -SOAP_FMAC1 struct __tls__SetPaneConfigurations * SOAP_FMAC2 soap_instantiate___tls__SetPaneConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__SetPaneConfigurations * soap_new___tls__SetPaneConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__SetPaneConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__SetPaneConfigurations * soap_new_req___tls__SetPaneConfigurations( - struct soap *soap) -{ - struct __tls__SetPaneConfigurations *_p = ::soap_new___tls__SetPaneConfigurations(soap); - if (_p) - { ::soap_default___tls__SetPaneConfigurations(soap, _p); - } - return _p; -} - -inline struct __tls__SetPaneConfigurations * soap_new_set___tls__SetPaneConfigurations( - struct soap *soap, - _tls__SetPaneConfigurations *tls__SetPaneConfigurations) -{ - struct __tls__SetPaneConfigurations *_p = ::soap_new___tls__SetPaneConfigurations(soap); - if (_p) - { ::soap_default___tls__SetPaneConfigurations(soap, _p); - _p->tls__SetPaneConfigurations = tls__SetPaneConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__SetPaneConfigurations(struct soap*, const struct __tls__SetPaneConfigurations *, const char*, const char*); - -inline int soap_write___tls__SetPaneConfigurations(struct soap *soap, struct __tls__SetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__SetPaneConfigurations(soap, p), 0) || ::soap_put___tls__SetPaneConfigurations(soap, p, "-tls:SetPaneConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__SetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__SetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetPaneConfigurations(soap, p), 0) || ::soap_put___tls__SetPaneConfigurations(soap, p, "-tls:SetPaneConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__SetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__SetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetPaneConfigurations(soap, p), 0) || ::soap_put___tls__SetPaneConfigurations(soap, p, "-tls:SetPaneConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__SetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__SetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetPaneConfigurations(soap, p), 0) || ::soap_put___tls__SetPaneConfigurations(soap, p, "-tls:SetPaneConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__SetPaneConfigurations * SOAP_FMAC4 soap_get___tls__SetPaneConfigurations(struct soap*, struct __tls__SetPaneConfigurations *, const char*, const char*); - -inline int soap_read___tls__SetPaneConfigurations(struct soap *soap, struct __tls__SetPaneConfigurations *p) -{ - if (p) - { ::soap_default___tls__SetPaneConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__SetPaneConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__SetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__SetPaneConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__SetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__SetPaneConfigurations(struct soap *soap, struct __tls__SetPaneConfigurations *p) -{ - if (::soap_read___tls__SetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__GetPaneConfiguration_DEFINED -#define SOAP_TYPE___tls__GetPaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetPaneConfiguration(struct soap*, struct __tls__GetPaneConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetPaneConfiguration(struct soap*, const struct __tls__GetPaneConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetPaneConfiguration(struct soap*, const char*, int, const struct __tls__GetPaneConfiguration *, const char*); -SOAP_FMAC3 struct __tls__GetPaneConfiguration * SOAP_FMAC4 soap_in___tls__GetPaneConfiguration(struct soap*, const char*, struct __tls__GetPaneConfiguration *, const char*); -SOAP_FMAC1 struct __tls__GetPaneConfiguration * SOAP_FMAC2 soap_instantiate___tls__GetPaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__GetPaneConfiguration * soap_new___tls__GetPaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__GetPaneConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__GetPaneConfiguration * soap_new_req___tls__GetPaneConfiguration( - struct soap *soap) -{ - struct __tls__GetPaneConfiguration *_p = ::soap_new___tls__GetPaneConfiguration(soap); - if (_p) - { ::soap_default___tls__GetPaneConfiguration(soap, _p); - } - return _p; -} - -inline struct __tls__GetPaneConfiguration * soap_new_set___tls__GetPaneConfiguration( - struct soap *soap, - _tls__GetPaneConfiguration *tls__GetPaneConfiguration) -{ - struct __tls__GetPaneConfiguration *_p = ::soap_new___tls__GetPaneConfiguration(soap); - if (_p) - { ::soap_default___tls__GetPaneConfiguration(soap, _p); - _p->tls__GetPaneConfiguration = tls__GetPaneConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetPaneConfiguration(struct soap*, const struct __tls__GetPaneConfiguration *, const char*, const char*); - -inline int soap_write___tls__GetPaneConfiguration(struct soap *soap, struct __tls__GetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__GetPaneConfiguration(soap, p), 0) || ::soap_put___tls__GetPaneConfiguration(soap, p, "-tls:GetPaneConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__GetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__GetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetPaneConfiguration(soap, p), 0) || ::soap_put___tls__GetPaneConfiguration(soap, p, "-tls:GetPaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__GetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__GetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetPaneConfiguration(soap, p), 0) || ::soap_put___tls__GetPaneConfiguration(soap, p, "-tls:GetPaneConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__GetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__GetPaneConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetPaneConfiguration(soap, p), 0) || ::soap_put___tls__GetPaneConfiguration(soap, p, "-tls:GetPaneConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__GetPaneConfiguration * SOAP_FMAC4 soap_get___tls__GetPaneConfiguration(struct soap*, struct __tls__GetPaneConfiguration *, const char*, const char*); - -inline int soap_read___tls__GetPaneConfiguration(struct soap *soap, struct __tls__GetPaneConfiguration *p) -{ - if (p) - { ::soap_default___tls__GetPaneConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__GetPaneConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__GetPaneConfiguration(struct soap *soap, const char *URL, struct __tls__GetPaneConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__GetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__GetPaneConfiguration(struct soap *soap, struct __tls__GetPaneConfiguration *p) -{ - if (::soap_read___tls__GetPaneConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__GetPaneConfigurations_DEFINED -#define SOAP_TYPE___tls__GetPaneConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetPaneConfigurations(struct soap*, struct __tls__GetPaneConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetPaneConfigurations(struct soap*, const struct __tls__GetPaneConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetPaneConfigurations(struct soap*, const char*, int, const struct __tls__GetPaneConfigurations *, const char*); -SOAP_FMAC3 struct __tls__GetPaneConfigurations * SOAP_FMAC4 soap_in___tls__GetPaneConfigurations(struct soap*, const char*, struct __tls__GetPaneConfigurations *, const char*); -SOAP_FMAC1 struct __tls__GetPaneConfigurations * SOAP_FMAC2 soap_instantiate___tls__GetPaneConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__GetPaneConfigurations * soap_new___tls__GetPaneConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__GetPaneConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__GetPaneConfigurations * soap_new_req___tls__GetPaneConfigurations( - struct soap *soap) -{ - struct __tls__GetPaneConfigurations *_p = ::soap_new___tls__GetPaneConfigurations(soap); - if (_p) - { ::soap_default___tls__GetPaneConfigurations(soap, _p); - } - return _p; -} - -inline struct __tls__GetPaneConfigurations * soap_new_set___tls__GetPaneConfigurations( - struct soap *soap, - _tls__GetPaneConfigurations *tls__GetPaneConfigurations) -{ - struct __tls__GetPaneConfigurations *_p = ::soap_new___tls__GetPaneConfigurations(soap); - if (_p) - { ::soap_default___tls__GetPaneConfigurations(soap, _p); - _p->tls__GetPaneConfigurations = tls__GetPaneConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetPaneConfigurations(struct soap*, const struct __tls__GetPaneConfigurations *, const char*, const char*); - -inline int soap_write___tls__GetPaneConfigurations(struct soap *soap, struct __tls__GetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__GetPaneConfigurations(soap, p), 0) || ::soap_put___tls__GetPaneConfigurations(soap, p, "-tls:GetPaneConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__GetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__GetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetPaneConfigurations(soap, p), 0) || ::soap_put___tls__GetPaneConfigurations(soap, p, "-tls:GetPaneConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__GetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__GetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetPaneConfigurations(soap, p), 0) || ::soap_put___tls__GetPaneConfigurations(soap, p, "-tls:GetPaneConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__GetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__GetPaneConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetPaneConfigurations(soap, p), 0) || ::soap_put___tls__GetPaneConfigurations(soap, p, "-tls:GetPaneConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__GetPaneConfigurations * SOAP_FMAC4 soap_get___tls__GetPaneConfigurations(struct soap*, struct __tls__GetPaneConfigurations *, const char*, const char*); - -inline int soap_read___tls__GetPaneConfigurations(struct soap *soap, struct __tls__GetPaneConfigurations *p) -{ - if (p) - { ::soap_default___tls__GetPaneConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__GetPaneConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__GetPaneConfigurations(struct soap *soap, const char *URL, struct __tls__GetPaneConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__GetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__GetPaneConfigurations(struct soap *soap, struct __tls__GetPaneConfigurations *p) -{ - if (::soap_read___tls__GetPaneConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__GetDisplayOptions_DEFINED -#define SOAP_TYPE___tls__GetDisplayOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetDisplayOptions(struct soap*, struct __tls__GetDisplayOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetDisplayOptions(struct soap*, const struct __tls__GetDisplayOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetDisplayOptions(struct soap*, const char*, int, const struct __tls__GetDisplayOptions *, const char*); -SOAP_FMAC3 struct __tls__GetDisplayOptions * SOAP_FMAC4 soap_in___tls__GetDisplayOptions(struct soap*, const char*, struct __tls__GetDisplayOptions *, const char*); -SOAP_FMAC1 struct __tls__GetDisplayOptions * SOAP_FMAC2 soap_instantiate___tls__GetDisplayOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__GetDisplayOptions * soap_new___tls__GetDisplayOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__GetDisplayOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__GetDisplayOptions * soap_new_req___tls__GetDisplayOptions( - struct soap *soap) -{ - struct __tls__GetDisplayOptions *_p = ::soap_new___tls__GetDisplayOptions(soap); - if (_p) - { ::soap_default___tls__GetDisplayOptions(soap, _p); - } - return _p; -} - -inline struct __tls__GetDisplayOptions * soap_new_set___tls__GetDisplayOptions( - struct soap *soap, - _tls__GetDisplayOptions *tls__GetDisplayOptions) -{ - struct __tls__GetDisplayOptions *_p = ::soap_new___tls__GetDisplayOptions(soap); - if (_p) - { ::soap_default___tls__GetDisplayOptions(soap, _p); - _p->tls__GetDisplayOptions = tls__GetDisplayOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetDisplayOptions(struct soap*, const struct __tls__GetDisplayOptions *, const char*, const char*); - -inline int soap_write___tls__GetDisplayOptions(struct soap *soap, struct __tls__GetDisplayOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__GetDisplayOptions(soap, p), 0) || ::soap_put___tls__GetDisplayOptions(soap, p, "-tls:GetDisplayOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__GetDisplayOptions(struct soap *soap, const char *URL, struct __tls__GetDisplayOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetDisplayOptions(soap, p), 0) || ::soap_put___tls__GetDisplayOptions(soap, p, "-tls:GetDisplayOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__GetDisplayOptions(struct soap *soap, const char *URL, struct __tls__GetDisplayOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetDisplayOptions(soap, p), 0) || ::soap_put___tls__GetDisplayOptions(soap, p, "-tls:GetDisplayOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__GetDisplayOptions(struct soap *soap, const char *URL, struct __tls__GetDisplayOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetDisplayOptions(soap, p), 0) || ::soap_put___tls__GetDisplayOptions(soap, p, "-tls:GetDisplayOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__GetDisplayOptions * SOAP_FMAC4 soap_get___tls__GetDisplayOptions(struct soap*, struct __tls__GetDisplayOptions *, const char*, const char*); - -inline int soap_read___tls__GetDisplayOptions(struct soap *soap, struct __tls__GetDisplayOptions *p) -{ - if (p) - { ::soap_default___tls__GetDisplayOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__GetDisplayOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__GetDisplayOptions(struct soap *soap, const char *URL, struct __tls__GetDisplayOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__GetDisplayOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__GetDisplayOptions(struct soap *soap, struct __tls__GetDisplayOptions *p) -{ - if (::soap_read___tls__GetDisplayOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__SetLayout_DEFINED -#define SOAP_TYPE___tls__SetLayout_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__SetLayout(struct soap*, struct __tls__SetLayout *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__SetLayout(struct soap*, const struct __tls__SetLayout *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__SetLayout(struct soap*, const char*, int, const struct __tls__SetLayout *, const char*); -SOAP_FMAC3 struct __tls__SetLayout * SOAP_FMAC4 soap_in___tls__SetLayout(struct soap*, const char*, struct __tls__SetLayout *, const char*); -SOAP_FMAC1 struct __tls__SetLayout * SOAP_FMAC2 soap_instantiate___tls__SetLayout(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__SetLayout * soap_new___tls__SetLayout(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__SetLayout(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__SetLayout * soap_new_req___tls__SetLayout( - struct soap *soap) -{ - struct __tls__SetLayout *_p = ::soap_new___tls__SetLayout(soap); - if (_p) - { ::soap_default___tls__SetLayout(soap, _p); - } - return _p; -} - -inline struct __tls__SetLayout * soap_new_set___tls__SetLayout( - struct soap *soap, - _tls__SetLayout *tls__SetLayout) -{ - struct __tls__SetLayout *_p = ::soap_new___tls__SetLayout(soap); - if (_p) - { ::soap_default___tls__SetLayout(soap, _p); - _p->tls__SetLayout = tls__SetLayout; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__SetLayout(struct soap*, const struct __tls__SetLayout *, const char*, const char*); - -inline int soap_write___tls__SetLayout(struct soap *soap, struct __tls__SetLayout const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__SetLayout(soap, p), 0) || ::soap_put___tls__SetLayout(soap, p, "-tls:SetLayout", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__SetLayout(struct soap *soap, const char *URL, struct __tls__SetLayout const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetLayout(soap, p), 0) || ::soap_put___tls__SetLayout(soap, p, "-tls:SetLayout", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__SetLayout(struct soap *soap, const char *URL, struct __tls__SetLayout const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetLayout(soap, p), 0) || ::soap_put___tls__SetLayout(soap, p, "-tls:SetLayout", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__SetLayout(struct soap *soap, const char *URL, struct __tls__SetLayout const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__SetLayout(soap, p), 0) || ::soap_put___tls__SetLayout(soap, p, "-tls:SetLayout", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__SetLayout * SOAP_FMAC4 soap_get___tls__SetLayout(struct soap*, struct __tls__SetLayout *, const char*, const char*); - -inline int soap_read___tls__SetLayout(struct soap *soap, struct __tls__SetLayout *p) -{ - if (p) - { ::soap_default___tls__SetLayout(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__SetLayout(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__SetLayout(struct soap *soap, const char *URL, struct __tls__SetLayout *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__SetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__SetLayout(struct soap *soap, struct __tls__SetLayout *p) -{ - if (::soap_read___tls__SetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__GetLayout_DEFINED -#define SOAP_TYPE___tls__GetLayout_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetLayout(struct soap*, struct __tls__GetLayout *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetLayout(struct soap*, const struct __tls__GetLayout *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetLayout(struct soap*, const char*, int, const struct __tls__GetLayout *, const char*); -SOAP_FMAC3 struct __tls__GetLayout * SOAP_FMAC4 soap_in___tls__GetLayout(struct soap*, const char*, struct __tls__GetLayout *, const char*); -SOAP_FMAC1 struct __tls__GetLayout * SOAP_FMAC2 soap_instantiate___tls__GetLayout(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__GetLayout * soap_new___tls__GetLayout(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__GetLayout(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__GetLayout * soap_new_req___tls__GetLayout( - struct soap *soap) -{ - struct __tls__GetLayout *_p = ::soap_new___tls__GetLayout(soap); - if (_p) - { ::soap_default___tls__GetLayout(soap, _p); - } - return _p; -} - -inline struct __tls__GetLayout * soap_new_set___tls__GetLayout( - struct soap *soap, - _tls__GetLayout *tls__GetLayout) -{ - struct __tls__GetLayout *_p = ::soap_new___tls__GetLayout(soap); - if (_p) - { ::soap_default___tls__GetLayout(soap, _p); - _p->tls__GetLayout = tls__GetLayout; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetLayout(struct soap*, const struct __tls__GetLayout *, const char*, const char*); - -inline int soap_write___tls__GetLayout(struct soap *soap, struct __tls__GetLayout const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__GetLayout(soap, p), 0) || ::soap_put___tls__GetLayout(soap, p, "-tls:GetLayout", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__GetLayout(struct soap *soap, const char *URL, struct __tls__GetLayout const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetLayout(soap, p), 0) || ::soap_put___tls__GetLayout(soap, p, "-tls:GetLayout", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__GetLayout(struct soap *soap, const char *URL, struct __tls__GetLayout const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetLayout(soap, p), 0) || ::soap_put___tls__GetLayout(soap, p, "-tls:GetLayout", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__GetLayout(struct soap *soap, const char *URL, struct __tls__GetLayout const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetLayout(soap, p), 0) || ::soap_put___tls__GetLayout(soap, p, "-tls:GetLayout", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__GetLayout * SOAP_FMAC4 soap_get___tls__GetLayout(struct soap*, struct __tls__GetLayout *, const char*, const char*); - -inline int soap_read___tls__GetLayout(struct soap *soap, struct __tls__GetLayout *p) -{ - if (p) - { ::soap_default___tls__GetLayout(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__GetLayout(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__GetLayout(struct soap *soap, const char *URL, struct __tls__GetLayout *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__GetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__GetLayout(struct soap *soap, struct __tls__GetLayout *p) -{ - if (::soap_read___tls__GetLayout(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tls__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___tls__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tls__GetServiceCapabilities(struct soap*, struct __tls__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tls__GetServiceCapabilities(struct soap*, const struct __tls__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tls__GetServiceCapabilities(struct soap*, const char*, int, const struct __tls__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __tls__GetServiceCapabilities * SOAP_FMAC4 soap_in___tls__GetServiceCapabilities(struct soap*, const char*, struct __tls__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __tls__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tls__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tls__GetServiceCapabilities * soap_new___tls__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___tls__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __tls__GetServiceCapabilities * soap_new_req___tls__GetServiceCapabilities( - struct soap *soap) -{ - struct __tls__GetServiceCapabilities *_p = ::soap_new___tls__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tls__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __tls__GetServiceCapabilities * soap_new_set___tls__GetServiceCapabilities( - struct soap *soap, - _tls__GetServiceCapabilities *tls__GetServiceCapabilities) -{ - struct __tls__GetServiceCapabilities *_p = ::soap_new___tls__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tls__GetServiceCapabilities(soap, _p); - _p->tls__GetServiceCapabilities = tls__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tls__GetServiceCapabilities(struct soap*, const struct __tls__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___tls__GetServiceCapabilities(struct soap *soap, struct __tls__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tls__GetServiceCapabilities(soap, p), 0) || ::soap_put___tls__GetServiceCapabilities(soap, p, "-tls:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tls__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tls__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetServiceCapabilities(soap, p), 0) || ::soap_put___tls__GetServiceCapabilities(soap, p, "-tls:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tls__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tls__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetServiceCapabilities(soap, p), 0) || ::soap_put___tls__GetServiceCapabilities(soap, p, "-tls:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tls__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tls__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tls__GetServiceCapabilities(soap, p), 0) || ::soap_put___tls__GetServiceCapabilities(soap, p, "-tls:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tls__GetServiceCapabilities * SOAP_FMAC4 soap_get___tls__GetServiceCapabilities(struct soap*, struct __tls__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___tls__GetServiceCapabilities(struct soap *soap, struct __tls__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___tls__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tls__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tls__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tls__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tls__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tls__GetServiceCapabilities(struct soap *soap, struct __tls__GetServiceCapabilities *p) -{ - if (::soap_read___tls__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__SetCurrentPreset_DEFINED -#define SOAP_TYPE___timg__SetCurrentPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__SetCurrentPreset(struct soap*, struct __timg__SetCurrentPreset *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__SetCurrentPreset(struct soap*, const struct __timg__SetCurrentPreset *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__SetCurrentPreset(struct soap*, const char*, int, const struct __timg__SetCurrentPreset *, const char*); -SOAP_FMAC3 struct __timg__SetCurrentPreset * SOAP_FMAC4 soap_in___timg__SetCurrentPreset(struct soap*, const char*, struct __timg__SetCurrentPreset *, const char*); -SOAP_FMAC1 struct __timg__SetCurrentPreset * SOAP_FMAC2 soap_instantiate___timg__SetCurrentPreset(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__SetCurrentPreset * soap_new___timg__SetCurrentPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__SetCurrentPreset(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__SetCurrentPreset * soap_new_req___timg__SetCurrentPreset( - struct soap *soap) -{ - struct __timg__SetCurrentPreset *_p = ::soap_new___timg__SetCurrentPreset(soap); - if (_p) - { ::soap_default___timg__SetCurrentPreset(soap, _p); - } - return _p; -} - -inline struct __timg__SetCurrentPreset * soap_new_set___timg__SetCurrentPreset( - struct soap *soap, - _timg__SetCurrentPreset *timg__SetCurrentPreset) -{ - struct __timg__SetCurrentPreset *_p = ::soap_new___timg__SetCurrentPreset(soap); - if (_p) - { ::soap_default___timg__SetCurrentPreset(soap, _p); - _p->timg__SetCurrentPreset = timg__SetCurrentPreset; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__SetCurrentPreset(struct soap*, const struct __timg__SetCurrentPreset *, const char*, const char*); - -inline int soap_write___timg__SetCurrentPreset(struct soap *soap, struct __timg__SetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__SetCurrentPreset(soap, p), 0) || ::soap_put___timg__SetCurrentPreset(soap, p, "-timg:SetCurrentPreset", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__SetCurrentPreset(struct soap *soap, const char *URL, struct __timg__SetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__SetCurrentPreset(soap, p), 0) || ::soap_put___timg__SetCurrentPreset(soap, p, "-timg:SetCurrentPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__SetCurrentPreset(struct soap *soap, const char *URL, struct __timg__SetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__SetCurrentPreset(soap, p), 0) || ::soap_put___timg__SetCurrentPreset(soap, p, "-timg:SetCurrentPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__SetCurrentPreset(struct soap *soap, const char *URL, struct __timg__SetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__SetCurrentPreset(soap, p), 0) || ::soap_put___timg__SetCurrentPreset(soap, p, "-timg:SetCurrentPreset", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__SetCurrentPreset * SOAP_FMAC4 soap_get___timg__SetCurrentPreset(struct soap*, struct __timg__SetCurrentPreset *, const char*, const char*); - -inline int soap_read___timg__SetCurrentPreset(struct soap *soap, struct __timg__SetCurrentPreset *p) -{ - if (p) - { ::soap_default___timg__SetCurrentPreset(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__SetCurrentPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__SetCurrentPreset(struct soap *soap, const char *URL, struct __timg__SetCurrentPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__SetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__SetCurrentPreset(struct soap *soap, struct __timg__SetCurrentPreset *p) -{ - if (::soap_read___timg__SetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__GetCurrentPreset_DEFINED -#define SOAP_TYPE___timg__GetCurrentPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetCurrentPreset(struct soap*, struct __timg__GetCurrentPreset *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetCurrentPreset(struct soap*, const struct __timg__GetCurrentPreset *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetCurrentPreset(struct soap*, const char*, int, const struct __timg__GetCurrentPreset *, const char*); -SOAP_FMAC3 struct __timg__GetCurrentPreset * SOAP_FMAC4 soap_in___timg__GetCurrentPreset(struct soap*, const char*, struct __timg__GetCurrentPreset *, const char*); -SOAP_FMAC1 struct __timg__GetCurrentPreset * SOAP_FMAC2 soap_instantiate___timg__GetCurrentPreset(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__GetCurrentPreset * soap_new___timg__GetCurrentPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__GetCurrentPreset(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__GetCurrentPreset * soap_new_req___timg__GetCurrentPreset( - struct soap *soap) -{ - struct __timg__GetCurrentPreset *_p = ::soap_new___timg__GetCurrentPreset(soap); - if (_p) - { ::soap_default___timg__GetCurrentPreset(soap, _p); - } - return _p; -} - -inline struct __timg__GetCurrentPreset * soap_new_set___timg__GetCurrentPreset( - struct soap *soap, - _timg__GetCurrentPreset *timg__GetCurrentPreset) -{ - struct __timg__GetCurrentPreset *_p = ::soap_new___timg__GetCurrentPreset(soap); - if (_p) - { ::soap_default___timg__GetCurrentPreset(soap, _p); - _p->timg__GetCurrentPreset = timg__GetCurrentPreset; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetCurrentPreset(struct soap*, const struct __timg__GetCurrentPreset *, const char*, const char*); - -inline int soap_write___timg__GetCurrentPreset(struct soap *soap, struct __timg__GetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__GetCurrentPreset(soap, p), 0) || ::soap_put___timg__GetCurrentPreset(soap, p, "-timg:GetCurrentPreset", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__GetCurrentPreset(struct soap *soap, const char *URL, struct __timg__GetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetCurrentPreset(soap, p), 0) || ::soap_put___timg__GetCurrentPreset(soap, p, "-timg:GetCurrentPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__GetCurrentPreset(struct soap *soap, const char *URL, struct __timg__GetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetCurrentPreset(soap, p), 0) || ::soap_put___timg__GetCurrentPreset(soap, p, "-timg:GetCurrentPreset", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__GetCurrentPreset(struct soap *soap, const char *URL, struct __timg__GetCurrentPreset const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetCurrentPreset(soap, p), 0) || ::soap_put___timg__GetCurrentPreset(soap, p, "-timg:GetCurrentPreset", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__GetCurrentPreset * SOAP_FMAC4 soap_get___timg__GetCurrentPreset(struct soap*, struct __timg__GetCurrentPreset *, const char*, const char*); - -inline int soap_read___timg__GetCurrentPreset(struct soap *soap, struct __timg__GetCurrentPreset *p) -{ - if (p) - { ::soap_default___timg__GetCurrentPreset(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__GetCurrentPreset(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__GetCurrentPreset(struct soap *soap, const char *URL, struct __timg__GetCurrentPreset *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__GetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__GetCurrentPreset(struct soap *soap, struct __timg__GetCurrentPreset *p) -{ - if (::soap_read___timg__GetCurrentPreset(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__GetPresets_DEFINED -#define SOAP_TYPE___timg__GetPresets_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetPresets(struct soap*, struct __timg__GetPresets *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetPresets(struct soap*, const struct __timg__GetPresets *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetPresets(struct soap*, const char*, int, const struct __timg__GetPresets *, const char*); -SOAP_FMAC3 struct __timg__GetPresets * SOAP_FMAC4 soap_in___timg__GetPresets(struct soap*, const char*, struct __timg__GetPresets *, const char*); -SOAP_FMAC1 struct __timg__GetPresets * SOAP_FMAC2 soap_instantiate___timg__GetPresets(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__GetPresets * soap_new___timg__GetPresets(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__GetPresets(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__GetPresets * soap_new_req___timg__GetPresets( - struct soap *soap) -{ - struct __timg__GetPresets *_p = ::soap_new___timg__GetPresets(soap); - if (_p) - { ::soap_default___timg__GetPresets(soap, _p); - } - return _p; -} - -inline struct __timg__GetPresets * soap_new_set___timg__GetPresets( - struct soap *soap, - _timg__GetPresets *timg__GetPresets) -{ - struct __timg__GetPresets *_p = ::soap_new___timg__GetPresets(soap); - if (_p) - { ::soap_default___timg__GetPresets(soap, _p); - _p->timg__GetPresets = timg__GetPresets; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetPresets(struct soap*, const struct __timg__GetPresets *, const char*, const char*); - -inline int soap_write___timg__GetPresets(struct soap *soap, struct __timg__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__GetPresets(soap, p), 0) || ::soap_put___timg__GetPresets(soap, p, "-timg:GetPresets", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__GetPresets(struct soap *soap, const char *URL, struct __timg__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetPresets(soap, p), 0) || ::soap_put___timg__GetPresets(soap, p, "-timg:GetPresets", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__GetPresets(struct soap *soap, const char *URL, struct __timg__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetPresets(soap, p), 0) || ::soap_put___timg__GetPresets(soap, p, "-timg:GetPresets", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__GetPresets(struct soap *soap, const char *URL, struct __timg__GetPresets const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetPresets(soap, p), 0) || ::soap_put___timg__GetPresets(soap, p, "-timg:GetPresets", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__GetPresets * SOAP_FMAC4 soap_get___timg__GetPresets(struct soap*, struct __timg__GetPresets *, const char*, const char*); - -inline int soap_read___timg__GetPresets(struct soap *soap, struct __timg__GetPresets *p) -{ - if (p) - { ::soap_default___timg__GetPresets(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__GetPresets(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__GetPresets(struct soap *soap, const char *URL, struct __timg__GetPresets *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__GetPresets(struct soap *soap, struct __timg__GetPresets *p) -{ - if (::soap_read___timg__GetPresets(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__GetMoveOptions_DEFINED -#define SOAP_TYPE___timg__GetMoveOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetMoveOptions(struct soap*, struct __timg__GetMoveOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetMoveOptions(struct soap*, const struct __timg__GetMoveOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetMoveOptions(struct soap*, const char*, int, const struct __timg__GetMoveOptions *, const char*); -SOAP_FMAC3 struct __timg__GetMoveOptions * SOAP_FMAC4 soap_in___timg__GetMoveOptions(struct soap*, const char*, struct __timg__GetMoveOptions *, const char*); -SOAP_FMAC1 struct __timg__GetMoveOptions * SOAP_FMAC2 soap_instantiate___timg__GetMoveOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__GetMoveOptions * soap_new___timg__GetMoveOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__GetMoveOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__GetMoveOptions * soap_new_req___timg__GetMoveOptions( - struct soap *soap) -{ - struct __timg__GetMoveOptions *_p = ::soap_new___timg__GetMoveOptions(soap); - if (_p) - { ::soap_default___timg__GetMoveOptions(soap, _p); - } - return _p; -} - -inline struct __timg__GetMoveOptions * soap_new_set___timg__GetMoveOptions( - struct soap *soap, - _timg__GetMoveOptions *timg__GetMoveOptions) -{ - struct __timg__GetMoveOptions *_p = ::soap_new___timg__GetMoveOptions(soap); - if (_p) - { ::soap_default___timg__GetMoveOptions(soap, _p); - _p->timg__GetMoveOptions = timg__GetMoveOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetMoveOptions(struct soap*, const struct __timg__GetMoveOptions *, const char*, const char*); - -inline int soap_write___timg__GetMoveOptions(struct soap *soap, struct __timg__GetMoveOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__GetMoveOptions(soap, p), 0) || ::soap_put___timg__GetMoveOptions(soap, p, "-timg:GetMoveOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__GetMoveOptions(struct soap *soap, const char *URL, struct __timg__GetMoveOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetMoveOptions(soap, p), 0) || ::soap_put___timg__GetMoveOptions(soap, p, "-timg:GetMoveOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__GetMoveOptions(struct soap *soap, const char *URL, struct __timg__GetMoveOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetMoveOptions(soap, p), 0) || ::soap_put___timg__GetMoveOptions(soap, p, "-timg:GetMoveOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__GetMoveOptions(struct soap *soap, const char *URL, struct __timg__GetMoveOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetMoveOptions(soap, p), 0) || ::soap_put___timg__GetMoveOptions(soap, p, "-timg:GetMoveOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__GetMoveOptions * SOAP_FMAC4 soap_get___timg__GetMoveOptions(struct soap*, struct __timg__GetMoveOptions *, const char*, const char*); - -inline int soap_read___timg__GetMoveOptions(struct soap *soap, struct __timg__GetMoveOptions *p) -{ - if (p) - { ::soap_default___timg__GetMoveOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__GetMoveOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__GetMoveOptions(struct soap *soap, const char *URL, struct __timg__GetMoveOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__GetMoveOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__GetMoveOptions(struct soap *soap, struct __timg__GetMoveOptions *p) -{ - if (::soap_read___timg__GetMoveOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__GetStatus_DEFINED -#define SOAP_TYPE___timg__GetStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetStatus(struct soap*, struct __timg__GetStatus *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetStatus(struct soap*, const struct __timg__GetStatus *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetStatus(struct soap*, const char*, int, const struct __timg__GetStatus *, const char*); -SOAP_FMAC3 struct __timg__GetStatus * SOAP_FMAC4 soap_in___timg__GetStatus(struct soap*, const char*, struct __timg__GetStatus *, const char*); -SOAP_FMAC1 struct __timg__GetStatus * SOAP_FMAC2 soap_instantiate___timg__GetStatus(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__GetStatus * soap_new___timg__GetStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__GetStatus(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__GetStatus * soap_new_req___timg__GetStatus( - struct soap *soap) -{ - struct __timg__GetStatus *_p = ::soap_new___timg__GetStatus(soap); - if (_p) - { ::soap_default___timg__GetStatus(soap, _p); - } - return _p; -} - -inline struct __timg__GetStatus * soap_new_set___timg__GetStatus( - struct soap *soap, - _timg__GetStatus *timg__GetStatus) -{ - struct __timg__GetStatus *_p = ::soap_new___timg__GetStatus(soap); - if (_p) - { ::soap_default___timg__GetStatus(soap, _p); - _p->timg__GetStatus = timg__GetStatus; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetStatus(struct soap*, const struct __timg__GetStatus *, const char*, const char*); - -inline int soap_write___timg__GetStatus(struct soap *soap, struct __timg__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__GetStatus(soap, p), 0) || ::soap_put___timg__GetStatus(soap, p, "-timg:GetStatus", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__GetStatus(struct soap *soap, const char *URL, struct __timg__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetStatus(soap, p), 0) || ::soap_put___timg__GetStatus(soap, p, "-timg:GetStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__GetStatus(struct soap *soap, const char *URL, struct __timg__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetStatus(soap, p), 0) || ::soap_put___timg__GetStatus(soap, p, "-timg:GetStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__GetStatus(struct soap *soap, const char *URL, struct __timg__GetStatus const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetStatus(soap, p), 0) || ::soap_put___timg__GetStatus(soap, p, "-timg:GetStatus", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__GetStatus * SOAP_FMAC4 soap_get___timg__GetStatus(struct soap*, struct __timg__GetStatus *, const char*, const char*); - -inline int soap_read___timg__GetStatus(struct soap *soap, struct __timg__GetStatus *p) -{ - if (p) - { ::soap_default___timg__GetStatus(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__GetStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__GetStatus(struct soap *soap, const char *URL, struct __timg__GetStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__GetStatus(struct soap *soap, struct __timg__GetStatus *p) -{ - if (::soap_read___timg__GetStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__Stop_DEFINED -#define SOAP_TYPE___timg__Stop_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__Stop(struct soap*, struct __timg__Stop *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__Stop(struct soap*, const struct __timg__Stop *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__Stop(struct soap*, const char*, int, const struct __timg__Stop *, const char*); -SOAP_FMAC3 struct __timg__Stop * SOAP_FMAC4 soap_in___timg__Stop(struct soap*, const char*, struct __timg__Stop *, const char*); -SOAP_FMAC1 struct __timg__Stop * SOAP_FMAC2 soap_instantiate___timg__Stop(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__Stop * soap_new___timg__Stop(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__Stop(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__Stop * soap_new_req___timg__Stop( - struct soap *soap) -{ - struct __timg__Stop *_p = ::soap_new___timg__Stop(soap); - if (_p) - { ::soap_default___timg__Stop(soap, _p); - } - return _p; -} - -inline struct __timg__Stop * soap_new_set___timg__Stop( - struct soap *soap, - _timg__Stop *timg__Stop) -{ - struct __timg__Stop *_p = ::soap_new___timg__Stop(soap); - if (_p) - { ::soap_default___timg__Stop(soap, _p); - _p->timg__Stop = timg__Stop; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__Stop(struct soap*, const struct __timg__Stop *, const char*, const char*); - -inline int soap_write___timg__Stop(struct soap *soap, struct __timg__Stop const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__Stop(soap, p), 0) || ::soap_put___timg__Stop(soap, p, "-timg:Stop", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__Stop(struct soap *soap, const char *URL, struct __timg__Stop const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__Stop(soap, p), 0) || ::soap_put___timg__Stop(soap, p, "-timg:Stop", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__Stop(struct soap *soap, const char *URL, struct __timg__Stop const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__Stop(soap, p), 0) || ::soap_put___timg__Stop(soap, p, "-timg:Stop", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__Stop(struct soap *soap, const char *URL, struct __timg__Stop const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__Stop(soap, p), 0) || ::soap_put___timg__Stop(soap, p, "-timg:Stop", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__Stop * SOAP_FMAC4 soap_get___timg__Stop(struct soap*, struct __timg__Stop *, const char*, const char*); - -inline int soap_read___timg__Stop(struct soap *soap, struct __timg__Stop *p) -{ - if (p) - { ::soap_default___timg__Stop(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__Stop(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__Stop(struct soap *soap, const char *URL, struct __timg__Stop *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__Stop(struct soap *soap, struct __timg__Stop *p) -{ - if (::soap_read___timg__Stop(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__Move_DEFINED -#define SOAP_TYPE___timg__Move_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__Move(struct soap*, struct __timg__Move *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__Move(struct soap*, const struct __timg__Move *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__Move(struct soap*, const char*, int, const struct __timg__Move *, const char*); -SOAP_FMAC3 struct __timg__Move * SOAP_FMAC4 soap_in___timg__Move(struct soap*, const char*, struct __timg__Move *, const char*); -SOAP_FMAC1 struct __timg__Move * SOAP_FMAC2 soap_instantiate___timg__Move(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__Move * soap_new___timg__Move(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__Move(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__Move * soap_new_req___timg__Move( - struct soap *soap) -{ - struct __timg__Move *_p = ::soap_new___timg__Move(soap); - if (_p) - { ::soap_default___timg__Move(soap, _p); - } - return _p; -} - -inline struct __timg__Move * soap_new_set___timg__Move( - struct soap *soap, - _timg__Move *timg__Move) -{ - struct __timg__Move *_p = ::soap_new___timg__Move(soap); - if (_p) - { ::soap_default___timg__Move(soap, _p); - _p->timg__Move = timg__Move; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__Move(struct soap*, const struct __timg__Move *, const char*, const char*); - -inline int soap_write___timg__Move(struct soap *soap, struct __timg__Move const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__Move(soap, p), 0) || ::soap_put___timg__Move(soap, p, "-timg:Move", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__Move(struct soap *soap, const char *URL, struct __timg__Move const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__Move(soap, p), 0) || ::soap_put___timg__Move(soap, p, "-timg:Move", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__Move(struct soap *soap, const char *URL, struct __timg__Move const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__Move(soap, p), 0) || ::soap_put___timg__Move(soap, p, "-timg:Move", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__Move(struct soap *soap, const char *URL, struct __timg__Move const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__Move(soap, p), 0) || ::soap_put___timg__Move(soap, p, "-timg:Move", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__Move * SOAP_FMAC4 soap_get___timg__Move(struct soap*, struct __timg__Move *, const char*, const char*); - -inline int soap_read___timg__Move(struct soap *soap, struct __timg__Move *p) -{ - if (p) - { ::soap_default___timg__Move(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__Move(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__Move(struct soap *soap, const char *URL, struct __timg__Move *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__Move(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__Move(struct soap *soap, struct __timg__Move *p) -{ - if (::soap_read___timg__Move(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__GetOptions_DEFINED -#define SOAP_TYPE___timg__GetOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetOptions(struct soap*, struct __timg__GetOptions *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetOptions(struct soap*, const struct __timg__GetOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetOptions(struct soap*, const char*, int, const struct __timg__GetOptions *, const char*); -SOAP_FMAC3 struct __timg__GetOptions * SOAP_FMAC4 soap_in___timg__GetOptions(struct soap*, const char*, struct __timg__GetOptions *, const char*); -SOAP_FMAC1 struct __timg__GetOptions * SOAP_FMAC2 soap_instantiate___timg__GetOptions(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__GetOptions * soap_new___timg__GetOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__GetOptions(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__GetOptions * soap_new_req___timg__GetOptions( - struct soap *soap) -{ - struct __timg__GetOptions *_p = ::soap_new___timg__GetOptions(soap); - if (_p) - { ::soap_default___timg__GetOptions(soap, _p); - } - return _p; -} - -inline struct __timg__GetOptions * soap_new_set___timg__GetOptions( - struct soap *soap, - _timg__GetOptions *timg__GetOptions) -{ - struct __timg__GetOptions *_p = ::soap_new___timg__GetOptions(soap); - if (_p) - { ::soap_default___timg__GetOptions(soap, _p); - _p->timg__GetOptions = timg__GetOptions; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetOptions(struct soap*, const struct __timg__GetOptions *, const char*, const char*); - -inline int soap_write___timg__GetOptions(struct soap *soap, struct __timg__GetOptions const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__GetOptions(soap, p), 0) || ::soap_put___timg__GetOptions(soap, p, "-timg:GetOptions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__GetOptions(struct soap *soap, const char *URL, struct __timg__GetOptions const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetOptions(soap, p), 0) || ::soap_put___timg__GetOptions(soap, p, "-timg:GetOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__GetOptions(struct soap *soap, const char *URL, struct __timg__GetOptions const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetOptions(soap, p), 0) || ::soap_put___timg__GetOptions(soap, p, "-timg:GetOptions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__GetOptions(struct soap *soap, const char *URL, struct __timg__GetOptions const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetOptions(soap, p), 0) || ::soap_put___timg__GetOptions(soap, p, "-timg:GetOptions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__GetOptions * SOAP_FMAC4 soap_get___timg__GetOptions(struct soap*, struct __timg__GetOptions *, const char*, const char*); - -inline int soap_read___timg__GetOptions(struct soap *soap, struct __timg__GetOptions *p) -{ - if (p) - { ::soap_default___timg__GetOptions(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__GetOptions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__GetOptions(struct soap *soap, const char *URL, struct __timg__GetOptions *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__GetOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__GetOptions(struct soap *soap, struct __timg__GetOptions *p) -{ - if (::soap_read___timg__GetOptions(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__SetImagingSettings_DEFINED -#define SOAP_TYPE___timg__SetImagingSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__SetImagingSettings(struct soap*, struct __timg__SetImagingSettings *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__SetImagingSettings(struct soap*, const struct __timg__SetImagingSettings *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__SetImagingSettings(struct soap*, const char*, int, const struct __timg__SetImagingSettings *, const char*); -SOAP_FMAC3 struct __timg__SetImagingSettings * SOAP_FMAC4 soap_in___timg__SetImagingSettings(struct soap*, const char*, struct __timg__SetImagingSettings *, const char*); -SOAP_FMAC1 struct __timg__SetImagingSettings * SOAP_FMAC2 soap_instantiate___timg__SetImagingSettings(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__SetImagingSettings * soap_new___timg__SetImagingSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__SetImagingSettings(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__SetImagingSettings * soap_new_req___timg__SetImagingSettings( - struct soap *soap) -{ - struct __timg__SetImagingSettings *_p = ::soap_new___timg__SetImagingSettings(soap); - if (_p) - { ::soap_default___timg__SetImagingSettings(soap, _p); - } - return _p; -} - -inline struct __timg__SetImagingSettings * soap_new_set___timg__SetImagingSettings( - struct soap *soap, - _timg__SetImagingSettings *timg__SetImagingSettings) -{ - struct __timg__SetImagingSettings *_p = ::soap_new___timg__SetImagingSettings(soap); - if (_p) - { ::soap_default___timg__SetImagingSettings(soap, _p); - _p->timg__SetImagingSettings = timg__SetImagingSettings; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__SetImagingSettings(struct soap*, const struct __timg__SetImagingSettings *, const char*, const char*); - -inline int soap_write___timg__SetImagingSettings(struct soap *soap, struct __timg__SetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__SetImagingSettings(soap, p), 0) || ::soap_put___timg__SetImagingSettings(soap, p, "-timg:SetImagingSettings", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__SetImagingSettings(struct soap *soap, const char *URL, struct __timg__SetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__SetImagingSettings(soap, p), 0) || ::soap_put___timg__SetImagingSettings(soap, p, "-timg:SetImagingSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__SetImagingSettings(struct soap *soap, const char *URL, struct __timg__SetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__SetImagingSettings(soap, p), 0) || ::soap_put___timg__SetImagingSettings(soap, p, "-timg:SetImagingSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__SetImagingSettings(struct soap *soap, const char *URL, struct __timg__SetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__SetImagingSettings(soap, p), 0) || ::soap_put___timg__SetImagingSettings(soap, p, "-timg:SetImagingSettings", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__SetImagingSettings * SOAP_FMAC4 soap_get___timg__SetImagingSettings(struct soap*, struct __timg__SetImagingSettings *, const char*, const char*); - -inline int soap_read___timg__SetImagingSettings(struct soap *soap, struct __timg__SetImagingSettings *p) -{ - if (p) - { ::soap_default___timg__SetImagingSettings(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__SetImagingSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__SetImagingSettings(struct soap *soap, const char *URL, struct __timg__SetImagingSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__SetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__SetImagingSettings(struct soap *soap, struct __timg__SetImagingSettings *p) -{ - if (::soap_read___timg__SetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__GetImagingSettings_DEFINED -#define SOAP_TYPE___timg__GetImagingSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetImagingSettings(struct soap*, struct __timg__GetImagingSettings *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetImagingSettings(struct soap*, const struct __timg__GetImagingSettings *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetImagingSettings(struct soap*, const char*, int, const struct __timg__GetImagingSettings *, const char*); -SOAP_FMAC3 struct __timg__GetImagingSettings * SOAP_FMAC4 soap_in___timg__GetImagingSettings(struct soap*, const char*, struct __timg__GetImagingSettings *, const char*); -SOAP_FMAC1 struct __timg__GetImagingSettings * SOAP_FMAC2 soap_instantiate___timg__GetImagingSettings(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__GetImagingSettings * soap_new___timg__GetImagingSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__GetImagingSettings(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__GetImagingSettings * soap_new_req___timg__GetImagingSettings( - struct soap *soap) -{ - struct __timg__GetImagingSettings *_p = ::soap_new___timg__GetImagingSettings(soap); - if (_p) - { ::soap_default___timg__GetImagingSettings(soap, _p); - } - return _p; -} - -inline struct __timg__GetImagingSettings * soap_new_set___timg__GetImagingSettings( - struct soap *soap, - _timg__GetImagingSettings *timg__GetImagingSettings) -{ - struct __timg__GetImagingSettings *_p = ::soap_new___timg__GetImagingSettings(soap); - if (_p) - { ::soap_default___timg__GetImagingSettings(soap, _p); - _p->timg__GetImagingSettings = timg__GetImagingSettings; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetImagingSettings(struct soap*, const struct __timg__GetImagingSettings *, const char*, const char*); - -inline int soap_write___timg__GetImagingSettings(struct soap *soap, struct __timg__GetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__GetImagingSettings(soap, p), 0) || ::soap_put___timg__GetImagingSettings(soap, p, "-timg:GetImagingSettings", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__GetImagingSettings(struct soap *soap, const char *URL, struct __timg__GetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetImagingSettings(soap, p), 0) || ::soap_put___timg__GetImagingSettings(soap, p, "-timg:GetImagingSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__GetImagingSettings(struct soap *soap, const char *URL, struct __timg__GetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetImagingSettings(soap, p), 0) || ::soap_put___timg__GetImagingSettings(soap, p, "-timg:GetImagingSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__GetImagingSettings(struct soap *soap, const char *URL, struct __timg__GetImagingSettings const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetImagingSettings(soap, p), 0) || ::soap_put___timg__GetImagingSettings(soap, p, "-timg:GetImagingSettings", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__GetImagingSettings * SOAP_FMAC4 soap_get___timg__GetImagingSettings(struct soap*, struct __timg__GetImagingSettings *, const char*, const char*); - -inline int soap_read___timg__GetImagingSettings(struct soap *soap, struct __timg__GetImagingSettings *p) -{ - if (p) - { ::soap_default___timg__GetImagingSettings(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__GetImagingSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__GetImagingSettings(struct soap *soap, const char *URL, struct __timg__GetImagingSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__GetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__GetImagingSettings(struct soap *soap, struct __timg__GetImagingSettings *p) -{ - if (::soap_read___timg__GetImagingSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___timg__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___timg__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___timg__GetServiceCapabilities(struct soap*, struct __timg__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___timg__GetServiceCapabilities(struct soap*, const struct __timg__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___timg__GetServiceCapabilities(struct soap*, const char*, int, const struct __timg__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __timg__GetServiceCapabilities * SOAP_FMAC4 soap_in___timg__GetServiceCapabilities(struct soap*, const char*, struct __timg__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __timg__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___timg__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __timg__GetServiceCapabilities * soap_new___timg__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___timg__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __timg__GetServiceCapabilities * soap_new_req___timg__GetServiceCapabilities( - struct soap *soap) -{ - struct __timg__GetServiceCapabilities *_p = ::soap_new___timg__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___timg__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __timg__GetServiceCapabilities * soap_new_set___timg__GetServiceCapabilities( - struct soap *soap, - _timg__GetServiceCapabilities *timg__GetServiceCapabilities) -{ - struct __timg__GetServiceCapabilities *_p = ::soap_new___timg__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___timg__GetServiceCapabilities(soap, _p); - _p->timg__GetServiceCapabilities = timg__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___timg__GetServiceCapabilities(struct soap*, const struct __timg__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___timg__GetServiceCapabilities(struct soap *soap, struct __timg__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___timg__GetServiceCapabilities(soap, p), 0) || ::soap_put___timg__GetServiceCapabilities(soap, p, "-timg:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___timg__GetServiceCapabilities(struct soap *soap, const char *URL, struct __timg__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetServiceCapabilities(soap, p), 0) || ::soap_put___timg__GetServiceCapabilities(soap, p, "-timg:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___timg__GetServiceCapabilities(struct soap *soap, const char *URL, struct __timg__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetServiceCapabilities(soap, p), 0) || ::soap_put___timg__GetServiceCapabilities(soap, p, "-timg:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___timg__GetServiceCapabilities(struct soap *soap, const char *URL, struct __timg__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___timg__GetServiceCapabilities(soap, p), 0) || ::soap_put___timg__GetServiceCapabilities(soap, p, "-timg:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __timg__GetServiceCapabilities * SOAP_FMAC4 soap_get___timg__GetServiceCapabilities(struct soap*, struct __timg__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___timg__GetServiceCapabilities(struct soap *soap, struct __timg__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___timg__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___timg__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___timg__GetServiceCapabilities(struct soap *soap, const char *URL, struct __timg__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___timg__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___timg__GetServiceCapabilities(struct soap *soap, struct __timg__GetServiceCapabilities *p) -{ - if (::soap_read___timg__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevs__Unsubscribe_DEFINED -#define SOAP_TYPE___tevs__Unsubscribe_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevs__Unsubscribe(struct soap*, struct __tevs__Unsubscribe *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevs__Unsubscribe(struct soap*, const struct __tevs__Unsubscribe *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevs__Unsubscribe(struct soap*, const char*, int, const struct __tevs__Unsubscribe *, const char*); -SOAP_FMAC3 struct __tevs__Unsubscribe * SOAP_FMAC4 soap_in___tevs__Unsubscribe(struct soap*, const char*, struct __tevs__Unsubscribe *, const char*); -SOAP_FMAC1 struct __tevs__Unsubscribe * SOAP_FMAC2 soap_instantiate___tevs__Unsubscribe(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevs__Unsubscribe * soap_new___tevs__Unsubscribe(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevs__Unsubscribe(soap, n, NULL, NULL, NULL); -} - -inline struct __tevs__Unsubscribe * soap_new_req___tevs__Unsubscribe( - struct soap *soap) -{ - struct __tevs__Unsubscribe *_p = ::soap_new___tevs__Unsubscribe(soap); - if (_p) - { ::soap_default___tevs__Unsubscribe(soap, _p); - } - return _p; -} - -inline struct __tevs__Unsubscribe * soap_new_set___tevs__Unsubscribe( - struct soap *soap, - _wsnt__Unsubscribe *wsnt__Unsubscribe) -{ - struct __tevs__Unsubscribe *_p = ::soap_new___tevs__Unsubscribe(soap); - if (_p) - { ::soap_default___tevs__Unsubscribe(soap, _p); - _p->wsnt__Unsubscribe = wsnt__Unsubscribe; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevs__Unsubscribe(struct soap*, const struct __tevs__Unsubscribe *, const char*, const char*); - -inline int soap_write___tevs__Unsubscribe(struct soap *soap, struct __tevs__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevs__Unsubscribe(soap, p), 0) || ::soap_put___tevs__Unsubscribe(soap, p, "-tevs:Unsubscribe", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevs__Unsubscribe(struct soap *soap, const char *URL, struct __tevs__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevs__Unsubscribe(soap, p), 0) || ::soap_put___tevs__Unsubscribe(soap, p, "-tevs:Unsubscribe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevs__Unsubscribe(struct soap *soap, const char *URL, struct __tevs__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevs__Unsubscribe(soap, p), 0) || ::soap_put___tevs__Unsubscribe(soap, p, "-tevs:Unsubscribe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevs__Unsubscribe(struct soap *soap, const char *URL, struct __tevs__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevs__Unsubscribe(soap, p), 0) || ::soap_put___tevs__Unsubscribe(soap, p, "-tevs:Unsubscribe", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevs__Unsubscribe * SOAP_FMAC4 soap_get___tevs__Unsubscribe(struct soap*, struct __tevs__Unsubscribe *, const char*, const char*); - -inline int soap_read___tevs__Unsubscribe(struct soap *soap, struct __tevs__Unsubscribe *p) -{ - if (p) - { ::soap_default___tevs__Unsubscribe(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevs__Unsubscribe(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevs__Unsubscribe(struct soap *soap, const char *URL, struct __tevs__Unsubscribe *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevs__Unsubscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevs__Unsubscribe(struct soap *soap, struct __tevs__Unsubscribe *p) -{ - if (::soap_read___tevs__Unsubscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevs__Renew_DEFINED -#define SOAP_TYPE___tevs__Renew_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevs__Renew(struct soap*, struct __tevs__Renew *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevs__Renew(struct soap*, const struct __tevs__Renew *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevs__Renew(struct soap*, const char*, int, const struct __tevs__Renew *, const char*); -SOAP_FMAC3 struct __tevs__Renew * SOAP_FMAC4 soap_in___tevs__Renew(struct soap*, const char*, struct __tevs__Renew *, const char*); -SOAP_FMAC1 struct __tevs__Renew * SOAP_FMAC2 soap_instantiate___tevs__Renew(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevs__Renew * soap_new___tevs__Renew(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevs__Renew(soap, n, NULL, NULL, NULL); -} - -inline struct __tevs__Renew * soap_new_req___tevs__Renew( - struct soap *soap) -{ - struct __tevs__Renew *_p = ::soap_new___tevs__Renew(soap); - if (_p) - { ::soap_default___tevs__Renew(soap, _p); - } - return _p; -} - -inline struct __tevs__Renew * soap_new_set___tevs__Renew( - struct soap *soap, - _wsnt__Renew *wsnt__Renew) -{ - struct __tevs__Renew *_p = ::soap_new___tevs__Renew(soap); - if (_p) - { ::soap_default___tevs__Renew(soap, _p); - _p->wsnt__Renew = wsnt__Renew; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevs__Renew(struct soap*, const struct __tevs__Renew *, const char*, const char*); - -inline int soap_write___tevs__Renew(struct soap *soap, struct __tevs__Renew const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevs__Renew(soap, p), 0) || ::soap_put___tevs__Renew(soap, p, "-tevs:Renew", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevs__Renew(struct soap *soap, const char *URL, struct __tevs__Renew const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevs__Renew(soap, p), 0) || ::soap_put___tevs__Renew(soap, p, "-tevs:Renew", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevs__Renew(struct soap *soap, const char *URL, struct __tevs__Renew const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevs__Renew(soap, p), 0) || ::soap_put___tevs__Renew(soap, p, "-tevs:Renew", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevs__Renew(struct soap *soap, const char *URL, struct __tevs__Renew const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevs__Renew(soap, p), 0) || ::soap_put___tevs__Renew(soap, p, "-tevs:Renew", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevs__Renew * SOAP_FMAC4 soap_get___tevs__Renew(struct soap*, struct __tevs__Renew *, const char*, const char*); - -inline int soap_read___tevs__Renew(struct soap *soap, struct __tevs__Renew *p) -{ - if (p) - { ::soap_default___tevs__Renew(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevs__Renew(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevs__Renew(struct soap *soap, const char *URL, struct __tevs__Renew *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevs__Renew(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevs__Renew(struct soap *soap, struct __tevs__Renew *p) -{ - if (::soap_read___tevs__Renew(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevps__ResumeSubscription_DEFINED -#define SOAP_TYPE___tevps__ResumeSubscription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__ResumeSubscription(struct soap*, struct __tevps__ResumeSubscription *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__ResumeSubscription(struct soap*, const struct __tevps__ResumeSubscription *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__ResumeSubscription(struct soap*, const char*, int, const struct __tevps__ResumeSubscription *, const char*); -SOAP_FMAC3 struct __tevps__ResumeSubscription * SOAP_FMAC4 soap_in___tevps__ResumeSubscription(struct soap*, const char*, struct __tevps__ResumeSubscription *, const char*); -SOAP_FMAC1 struct __tevps__ResumeSubscription * SOAP_FMAC2 soap_instantiate___tevps__ResumeSubscription(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevps__ResumeSubscription * soap_new___tevps__ResumeSubscription(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevps__ResumeSubscription(soap, n, NULL, NULL, NULL); -} - -inline struct __tevps__ResumeSubscription * soap_new_req___tevps__ResumeSubscription( - struct soap *soap) -{ - struct __tevps__ResumeSubscription *_p = ::soap_new___tevps__ResumeSubscription(soap); - if (_p) - { ::soap_default___tevps__ResumeSubscription(soap, _p); - } - return _p; -} - -inline struct __tevps__ResumeSubscription * soap_new_set___tevps__ResumeSubscription( - struct soap *soap, - _wsnt__ResumeSubscription *wsnt__ResumeSubscription) -{ - struct __tevps__ResumeSubscription *_p = ::soap_new___tevps__ResumeSubscription(soap); - if (_p) - { ::soap_default___tevps__ResumeSubscription(soap, _p); - _p->wsnt__ResumeSubscription = wsnt__ResumeSubscription; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__ResumeSubscription(struct soap*, const struct __tevps__ResumeSubscription *, const char*, const char*); - -inline int soap_write___tevps__ResumeSubscription(struct soap *soap, struct __tevps__ResumeSubscription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevps__ResumeSubscription(soap, p), 0) || ::soap_put___tevps__ResumeSubscription(soap, p, "-tevps:ResumeSubscription", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevps__ResumeSubscription(struct soap *soap, const char *URL, struct __tevps__ResumeSubscription const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__ResumeSubscription(soap, p), 0) || ::soap_put___tevps__ResumeSubscription(soap, p, "-tevps:ResumeSubscription", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevps__ResumeSubscription(struct soap *soap, const char *URL, struct __tevps__ResumeSubscription const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__ResumeSubscription(soap, p), 0) || ::soap_put___tevps__ResumeSubscription(soap, p, "-tevps:ResumeSubscription", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevps__ResumeSubscription(struct soap *soap, const char *URL, struct __tevps__ResumeSubscription const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__ResumeSubscription(soap, p), 0) || ::soap_put___tevps__ResumeSubscription(soap, p, "-tevps:ResumeSubscription", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevps__ResumeSubscription * SOAP_FMAC4 soap_get___tevps__ResumeSubscription(struct soap*, struct __tevps__ResumeSubscription *, const char*, const char*); - -inline int soap_read___tevps__ResumeSubscription(struct soap *soap, struct __tevps__ResumeSubscription *p) -{ - if (p) - { ::soap_default___tevps__ResumeSubscription(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevps__ResumeSubscription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevps__ResumeSubscription(struct soap *soap, const char *URL, struct __tevps__ResumeSubscription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevps__ResumeSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevps__ResumeSubscription(struct soap *soap, struct __tevps__ResumeSubscription *p) -{ - if (::soap_read___tevps__ResumeSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevps__PauseSubscription_DEFINED -#define SOAP_TYPE___tevps__PauseSubscription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__PauseSubscription(struct soap*, struct __tevps__PauseSubscription *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__PauseSubscription(struct soap*, const struct __tevps__PauseSubscription *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__PauseSubscription(struct soap*, const char*, int, const struct __tevps__PauseSubscription *, const char*); -SOAP_FMAC3 struct __tevps__PauseSubscription * SOAP_FMAC4 soap_in___tevps__PauseSubscription(struct soap*, const char*, struct __tevps__PauseSubscription *, const char*); -SOAP_FMAC1 struct __tevps__PauseSubscription * SOAP_FMAC2 soap_instantiate___tevps__PauseSubscription(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevps__PauseSubscription * soap_new___tevps__PauseSubscription(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevps__PauseSubscription(soap, n, NULL, NULL, NULL); -} - -inline struct __tevps__PauseSubscription * soap_new_req___tevps__PauseSubscription( - struct soap *soap) -{ - struct __tevps__PauseSubscription *_p = ::soap_new___tevps__PauseSubscription(soap); - if (_p) - { ::soap_default___tevps__PauseSubscription(soap, _p); - } - return _p; -} - -inline struct __tevps__PauseSubscription * soap_new_set___tevps__PauseSubscription( - struct soap *soap, - _wsnt__PauseSubscription *wsnt__PauseSubscription) -{ - struct __tevps__PauseSubscription *_p = ::soap_new___tevps__PauseSubscription(soap); - if (_p) - { ::soap_default___tevps__PauseSubscription(soap, _p); - _p->wsnt__PauseSubscription = wsnt__PauseSubscription; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__PauseSubscription(struct soap*, const struct __tevps__PauseSubscription *, const char*, const char*); - -inline int soap_write___tevps__PauseSubscription(struct soap *soap, struct __tevps__PauseSubscription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevps__PauseSubscription(soap, p), 0) || ::soap_put___tevps__PauseSubscription(soap, p, "-tevps:PauseSubscription", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevps__PauseSubscription(struct soap *soap, const char *URL, struct __tevps__PauseSubscription const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__PauseSubscription(soap, p), 0) || ::soap_put___tevps__PauseSubscription(soap, p, "-tevps:PauseSubscription", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevps__PauseSubscription(struct soap *soap, const char *URL, struct __tevps__PauseSubscription const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__PauseSubscription(soap, p), 0) || ::soap_put___tevps__PauseSubscription(soap, p, "-tevps:PauseSubscription", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevps__PauseSubscription(struct soap *soap, const char *URL, struct __tevps__PauseSubscription const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__PauseSubscription(soap, p), 0) || ::soap_put___tevps__PauseSubscription(soap, p, "-tevps:PauseSubscription", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevps__PauseSubscription * SOAP_FMAC4 soap_get___tevps__PauseSubscription(struct soap*, struct __tevps__PauseSubscription *, const char*, const char*); - -inline int soap_read___tevps__PauseSubscription(struct soap *soap, struct __tevps__PauseSubscription *p) -{ - if (p) - { ::soap_default___tevps__PauseSubscription(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevps__PauseSubscription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevps__PauseSubscription(struct soap *soap, const char *URL, struct __tevps__PauseSubscription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevps__PauseSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevps__PauseSubscription(struct soap *soap, struct __tevps__PauseSubscription *p) -{ - if (::soap_read___tevps__PauseSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevps__Unsubscribe_DEFINED -#define SOAP_TYPE___tevps__Unsubscribe_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__Unsubscribe(struct soap*, struct __tevps__Unsubscribe *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__Unsubscribe(struct soap*, const struct __tevps__Unsubscribe *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__Unsubscribe(struct soap*, const char*, int, const struct __tevps__Unsubscribe *, const char*); -SOAP_FMAC3 struct __tevps__Unsubscribe * SOAP_FMAC4 soap_in___tevps__Unsubscribe(struct soap*, const char*, struct __tevps__Unsubscribe *, const char*); -SOAP_FMAC1 struct __tevps__Unsubscribe * SOAP_FMAC2 soap_instantiate___tevps__Unsubscribe(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevps__Unsubscribe * soap_new___tevps__Unsubscribe(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevps__Unsubscribe(soap, n, NULL, NULL, NULL); -} - -inline struct __tevps__Unsubscribe * soap_new_req___tevps__Unsubscribe( - struct soap *soap) -{ - struct __tevps__Unsubscribe *_p = ::soap_new___tevps__Unsubscribe(soap); - if (_p) - { ::soap_default___tevps__Unsubscribe(soap, _p); - } - return _p; -} - -inline struct __tevps__Unsubscribe * soap_new_set___tevps__Unsubscribe( - struct soap *soap, - _wsnt__Unsubscribe *wsnt__Unsubscribe) -{ - struct __tevps__Unsubscribe *_p = ::soap_new___tevps__Unsubscribe(soap); - if (_p) - { ::soap_default___tevps__Unsubscribe(soap, _p); - _p->wsnt__Unsubscribe = wsnt__Unsubscribe; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__Unsubscribe(struct soap*, const struct __tevps__Unsubscribe *, const char*, const char*); - -inline int soap_write___tevps__Unsubscribe(struct soap *soap, struct __tevps__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevps__Unsubscribe(soap, p), 0) || ::soap_put___tevps__Unsubscribe(soap, p, "-tevps:Unsubscribe", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevps__Unsubscribe(struct soap *soap, const char *URL, struct __tevps__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__Unsubscribe(soap, p), 0) || ::soap_put___tevps__Unsubscribe(soap, p, "-tevps:Unsubscribe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevps__Unsubscribe(struct soap *soap, const char *URL, struct __tevps__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__Unsubscribe(soap, p), 0) || ::soap_put___tevps__Unsubscribe(soap, p, "-tevps:Unsubscribe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevps__Unsubscribe(struct soap *soap, const char *URL, struct __tevps__Unsubscribe const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__Unsubscribe(soap, p), 0) || ::soap_put___tevps__Unsubscribe(soap, p, "-tevps:Unsubscribe", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevps__Unsubscribe * SOAP_FMAC4 soap_get___tevps__Unsubscribe(struct soap*, struct __tevps__Unsubscribe *, const char*, const char*); - -inline int soap_read___tevps__Unsubscribe(struct soap *soap, struct __tevps__Unsubscribe *p) -{ - if (p) - { ::soap_default___tevps__Unsubscribe(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevps__Unsubscribe(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevps__Unsubscribe(struct soap *soap, const char *URL, struct __tevps__Unsubscribe *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevps__Unsubscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevps__Unsubscribe(struct soap *soap, struct __tevps__Unsubscribe *p) -{ - if (::soap_read___tevps__Unsubscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevps__Renew_DEFINED -#define SOAP_TYPE___tevps__Renew_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevps__Renew(struct soap*, struct __tevps__Renew *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevps__Renew(struct soap*, const struct __tevps__Renew *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevps__Renew(struct soap*, const char*, int, const struct __tevps__Renew *, const char*); -SOAP_FMAC3 struct __tevps__Renew * SOAP_FMAC4 soap_in___tevps__Renew(struct soap*, const char*, struct __tevps__Renew *, const char*); -SOAP_FMAC1 struct __tevps__Renew * SOAP_FMAC2 soap_instantiate___tevps__Renew(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevps__Renew * soap_new___tevps__Renew(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevps__Renew(soap, n, NULL, NULL, NULL); -} - -inline struct __tevps__Renew * soap_new_req___tevps__Renew( - struct soap *soap) -{ - struct __tevps__Renew *_p = ::soap_new___tevps__Renew(soap); - if (_p) - { ::soap_default___tevps__Renew(soap, _p); - } - return _p; -} - -inline struct __tevps__Renew * soap_new_set___tevps__Renew( - struct soap *soap, - _wsnt__Renew *wsnt__Renew) -{ - struct __tevps__Renew *_p = ::soap_new___tevps__Renew(soap); - if (_p) - { ::soap_default___tevps__Renew(soap, _p); - _p->wsnt__Renew = wsnt__Renew; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevps__Renew(struct soap*, const struct __tevps__Renew *, const char*, const char*); - -inline int soap_write___tevps__Renew(struct soap *soap, struct __tevps__Renew const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevps__Renew(soap, p), 0) || ::soap_put___tevps__Renew(soap, p, "-tevps:Renew", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevps__Renew(struct soap *soap, const char *URL, struct __tevps__Renew const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__Renew(soap, p), 0) || ::soap_put___tevps__Renew(soap, p, "-tevps:Renew", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevps__Renew(struct soap *soap, const char *URL, struct __tevps__Renew const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__Renew(soap, p), 0) || ::soap_put___tevps__Renew(soap, p, "-tevps:Renew", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevps__Renew(struct soap *soap, const char *URL, struct __tevps__Renew const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevps__Renew(soap, p), 0) || ::soap_put___tevps__Renew(soap, p, "-tevps:Renew", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevps__Renew * SOAP_FMAC4 soap_get___tevps__Renew(struct soap*, struct __tevps__Renew *, const char*, const char*); - -inline int soap_read___tevps__Renew(struct soap *soap, struct __tevps__Renew *p) -{ - if (p) - { ::soap_default___tevps__Renew(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevps__Renew(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevps__Renew(struct soap *soap, const char *URL, struct __tevps__Renew *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevps__Renew(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevps__Renew(struct soap *soap, struct __tevps__Renew *p) -{ - if (::soap_read___tevps__Renew(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevpps__SetSynchronizationPoint_DEFINED -#define SOAP_TYPE___tevpps__SetSynchronizationPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpps__SetSynchronizationPoint(struct soap*, struct __tevpps__SetSynchronizationPoint *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpps__SetSynchronizationPoint(struct soap*, const struct __tevpps__SetSynchronizationPoint *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpps__SetSynchronizationPoint(struct soap*, const char*, int, const struct __tevpps__SetSynchronizationPoint *, const char*); -SOAP_FMAC3 struct __tevpps__SetSynchronizationPoint * SOAP_FMAC4 soap_in___tevpps__SetSynchronizationPoint(struct soap*, const char*, struct __tevpps__SetSynchronizationPoint *, const char*); -SOAP_FMAC1 struct __tevpps__SetSynchronizationPoint * SOAP_FMAC2 soap_instantiate___tevpps__SetSynchronizationPoint(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevpps__SetSynchronizationPoint * soap_new___tevpps__SetSynchronizationPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevpps__SetSynchronizationPoint(soap, n, NULL, NULL, NULL); -} - -inline struct __tevpps__SetSynchronizationPoint * soap_new_req___tevpps__SetSynchronizationPoint( - struct soap *soap) -{ - struct __tevpps__SetSynchronizationPoint *_p = ::soap_new___tevpps__SetSynchronizationPoint(soap); - if (_p) - { ::soap_default___tevpps__SetSynchronizationPoint(soap, _p); - } - return _p; -} - -inline struct __tevpps__SetSynchronizationPoint * soap_new_set___tevpps__SetSynchronizationPoint( - struct soap *soap, - _tev__SetSynchronizationPoint *tev__SetSynchronizationPoint) -{ - struct __tevpps__SetSynchronizationPoint *_p = ::soap_new___tevpps__SetSynchronizationPoint(soap); - if (_p) - { ::soap_default___tevpps__SetSynchronizationPoint(soap, _p); - _p->tev__SetSynchronizationPoint = tev__SetSynchronizationPoint; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpps__SetSynchronizationPoint(struct soap*, const struct __tevpps__SetSynchronizationPoint *, const char*, const char*); - -inline int soap_write___tevpps__SetSynchronizationPoint(struct soap *soap, struct __tevpps__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevpps__SetSynchronizationPoint(soap, p), 0) || ::soap_put___tevpps__SetSynchronizationPoint(soap, p, "-tevpps:SetSynchronizationPoint", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevpps__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __tevpps__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__SetSynchronizationPoint(soap, p), 0) || ::soap_put___tevpps__SetSynchronizationPoint(soap, p, "-tevpps:SetSynchronizationPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevpps__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __tevpps__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__SetSynchronizationPoint(soap, p), 0) || ::soap_put___tevpps__SetSynchronizationPoint(soap, p, "-tevpps:SetSynchronizationPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevpps__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __tevpps__SetSynchronizationPoint const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__SetSynchronizationPoint(soap, p), 0) || ::soap_put___tevpps__SetSynchronizationPoint(soap, p, "-tevpps:SetSynchronizationPoint", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevpps__SetSynchronizationPoint * SOAP_FMAC4 soap_get___tevpps__SetSynchronizationPoint(struct soap*, struct __tevpps__SetSynchronizationPoint *, const char*, const char*); - -inline int soap_read___tevpps__SetSynchronizationPoint(struct soap *soap, struct __tevpps__SetSynchronizationPoint *p) -{ - if (p) - { ::soap_default___tevpps__SetSynchronizationPoint(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevpps__SetSynchronizationPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevpps__SetSynchronizationPoint(struct soap *soap, const char *URL, struct __tevpps__SetSynchronizationPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevpps__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevpps__SetSynchronizationPoint(struct soap *soap, struct __tevpps__SetSynchronizationPoint *p) -{ - if (::soap_read___tevpps__SetSynchronizationPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevpps__Seek_DEFINED -#define SOAP_TYPE___tevpps__Seek_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpps__Seek(struct soap*, struct __tevpps__Seek *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpps__Seek(struct soap*, const struct __tevpps__Seek *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpps__Seek(struct soap*, const char*, int, const struct __tevpps__Seek *, const char*); -SOAP_FMAC3 struct __tevpps__Seek * SOAP_FMAC4 soap_in___tevpps__Seek(struct soap*, const char*, struct __tevpps__Seek *, const char*); -SOAP_FMAC1 struct __tevpps__Seek * SOAP_FMAC2 soap_instantiate___tevpps__Seek(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevpps__Seek * soap_new___tevpps__Seek(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevpps__Seek(soap, n, NULL, NULL, NULL); -} - -inline struct __tevpps__Seek * soap_new_req___tevpps__Seek( - struct soap *soap) -{ - struct __tevpps__Seek *_p = ::soap_new___tevpps__Seek(soap); - if (_p) - { ::soap_default___tevpps__Seek(soap, _p); - } - return _p; -} - -inline struct __tevpps__Seek * soap_new_set___tevpps__Seek( - struct soap *soap, - _tev__Seek *tev__Seek) -{ - struct __tevpps__Seek *_p = ::soap_new___tevpps__Seek(soap); - if (_p) - { ::soap_default___tevpps__Seek(soap, _p); - _p->tev__Seek = tev__Seek; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpps__Seek(struct soap*, const struct __tevpps__Seek *, const char*, const char*); - -inline int soap_write___tevpps__Seek(struct soap *soap, struct __tevpps__Seek const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevpps__Seek(soap, p), 0) || ::soap_put___tevpps__Seek(soap, p, "-tevpps:Seek", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevpps__Seek(struct soap *soap, const char *URL, struct __tevpps__Seek const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__Seek(soap, p), 0) || ::soap_put___tevpps__Seek(soap, p, "-tevpps:Seek", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevpps__Seek(struct soap *soap, const char *URL, struct __tevpps__Seek const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__Seek(soap, p), 0) || ::soap_put___tevpps__Seek(soap, p, "-tevpps:Seek", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevpps__Seek(struct soap *soap, const char *URL, struct __tevpps__Seek const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__Seek(soap, p), 0) || ::soap_put___tevpps__Seek(soap, p, "-tevpps:Seek", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevpps__Seek * SOAP_FMAC4 soap_get___tevpps__Seek(struct soap*, struct __tevpps__Seek *, const char*, const char*); - -inline int soap_read___tevpps__Seek(struct soap *soap, struct __tevpps__Seek *p) -{ - if (p) - { ::soap_default___tevpps__Seek(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevpps__Seek(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevpps__Seek(struct soap *soap, const char *URL, struct __tevpps__Seek *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevpps__Seek(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevpps__Seek(struct soap *soap, struct __tevpps__Seek *p) -{ - if (::soap_read___tevpps__Seek(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevpps__PullMessages_DEFINED -#define SOAP_TYPE___tevpps__PullMessages_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpps__PullMessages(struct soap*, struct __tevpps__PullMessages *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpps__PullMessages(struct soap*, const struct __tevpps__PullMessages *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpps__PullMessages(struct soap*, const char*, int, const struct __tevpps__PullMessages *, const char*); -SOAP_FMAC3 struct __tevpps__PullMessages * SOAP_FMAC4 soap_in___tevpps__PullMessages(struct soap*, const char*, struct __tevpps__PullMessages *, const char*); -SOAP_FMAC1 struct __tevpps__PullMessages * SOAP_FMAC2 soap_instantiate___tevpps__PullMessages(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevpps__PullMessages * soap_new___tevpps__PullMessages(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevpps__PullMessages(soap, n, NULL, NULL, NULL); -} - -inline struct __tevpps__PullMessages * soap_new_req___tevpps__PullMessages( - struct soap *soap) -{ - struct __tevpps__PullMessages *_p = ::soap_new___tevpps__PullMessages(soap); - if (_p) - { ::soap_default___tevpps__PullMessages(soap, _p); - } - return _p; -} - -inline struct __tevpps__PullMessages * soap_new_set___tevpps__PullMessages( - struct soap *soap, - _tev__PullMessages *tev__PullMessages) -{ - struct __tevpps__PullMessages *_p = ::soap_new___tevpps__PullMessages(soap); - if (_p) - { ::soap_default___tevpps__PullMessages(soap, _p); - _p->tev__PullMessages = tev__PullMessages; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpps__PullMessages(struct soap*, const struct __tevpps__PullMessages *, const char*, const char*); - -inline int soap_write___tevpps__PullMessages(struct soap *soap, struct __tevpps__PullMessages const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevpps__PullMessages(soap, p), 0) || ::soap_put___tevpps__PullMessages(soap, p, "-tevpps:PullMessages", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevpps__PullMessages(struct soap *soap, const char *URL, struct __tevpps__PullMessages const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__PullMessages(soap, p), 0) || ::soap_put___tevpps__PullMessages(soap, p, "-tevpps:PullMessages", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevpps__PullMessages(struct soap *soap, const char *URL, struct __tevpps__PullMessages const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__PullMessages(soap, p), 0) || ::soap_put___tevpps__PullMessages(soap, p, "-tevpps:PullMessages", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevpps__PullMessages(struct soap *soap, const char *URL, struct __tevpps__PullMessages const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpps__PullMessages(soap, p), 0) || ::soap_put___tevpps__PullMessages(soap, p, "-tevpps:PullMessages", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevpps__PullMessages * SOAP_FMAC4 soap_get___tevpps__PullMessages(struct soap*, struct __tevpps__PullMessages *, const char*, const char*); - -inline int soap_read___tevpps__PullMessages(struct soap *soap, struct __tevpps__PullMessages *p) -{ - if (p) - { ::soap_default___tevpps__PullMessages(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevpps__PullMessages(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevpps__PullMessages(struct soap *soap, const char *URL, struct __tevpps__PullMessages *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevpps__PullMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevpps__PullMessages(struct soap *soap, struct __tevpps__PullMessages *p) -{ - if (::soap_read___tevpps__PullMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevpp__Notify_DEFINED -#define SOAP_TYPE___tevpp__Notify_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpp__Notify(struct soap*, struct __tevpp__Notify *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpp__Notify(struct soap*, const struct __tevpp__Notify *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpp__Notify(struct soap*, const char*, int, const struct __tevpp__Notify *, const char*); -SOAP_FMAC3 struct __tevpp__Notify * SOAP_FMAC4 soap_in___tevpp__Notify(struct soap*, const char*, struct __tevpp__Notify *, const char*); -SOAP_FMAC1 struct __tevpp__Notify * SOAP_FMAC2 soap_instantiate___tevpp__Notify(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevpp__Notify * soap_new___tevpp__Notify(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevpp__Notify(soap, n, NULL, NULL, NULL); -} - -inline struct __tevpp__Notify * soap_new_req___tevpp__Notify( - struct soap *soap) -{ - struct __tevpp__Notify *_p = ::soap_new___tevpp__Notify(soap); - if (_p) - { ::soap_default___tevpp__Notify(soap, _p); - } - return _p; -} - -inline struct __tevpp__Notify * soap_new_set___tevpp__Notify( - struct soap *soap, - _wsnt__Notify *wsnt__Notify) -{ - struct __tevpp__Notify *_p = ::soap_new___tevpp__Notify(soap); - if (_p) - { ::soap_default___tevpp__Notify(soap, _p); - _p->wsnt__Notify = wsnt__Notify; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpp__Notify(struct soap*, const struct __tevpp__Notify *, const char*, const char*); - -inline int soap_write___tevpp__Notify(struct soap *soap, struct __tevpp__Notify const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevpp__Notify(soap, p), 0) || ::soap_put___tevpp__Notify(soap, p, "-tevpp:Notify", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevpp__Notify(struct soap *soap, const char *URL, struct __tevpp__Notify const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__Notify(soap, p), 0) || ::soap_put___tevpp__Notify(soap, p, "-tevpp:Notify", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevpp__Notify(struct soap *soap, const char *URL, struct __tevpp__Notify const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__Notify(soap, p), 0) || ::soap_put___tevpp__Notify(soap, p, "-tevpp:Notify", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevpp__Notify(struct soap *soap, const char *URL, struct __tevpp__Notify const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__Notify(soap, p), 0) || ::soap_put___tevpp__Notify(soap, p, "-tevpp:Notify", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevpp__Notify * SOAP_FMAC4 soap_get___tevpp__Notify(struct soap*, struct __tevpp__Notify *, const char*, const char*); - -inline int soap_read___tevpp__Notify(struct soap *soap, struct __tevpp__Notify *p) -{ - if (p) - { ::soap_default___tevpp__Notify(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevpp__Notify(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevpp__Notify(struct soap *soap, const char *URL, struct __tevpp__Notify *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevpp__Notify(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevpp__Notify(struct soap *soap, struct __tevpp__Notify *p) -{ - if (::soap_read___tevpp__Notify(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevpp__DestroyPullPoint_DEFINED -#define SOAP_TYPE___tevpp__DestroyPullPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpp__DestroyPullPoint(struct soap*, struct __tevpp__DestroyPullPoint *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpp__DestroyPullPoint(struct soap*, const struct __tevpp__DestroyPullPoint *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpp__DestroyPullPoint(struct soap*, const char*, int, const struct __tevpp__DestroyPullPoint *, const char*); -SOAP_FMAC3 struct __tevpp__DestroyPullPoint * SOAP_FMAC4 soap_in___tevpp__DestroyPullPoint(struct soap*, const char*, struct __tevpp__DestroyPullPoint *, const char*); -SOAP_FMAC1 struct __tevpp__DestroyPullPoint * SOAP_FMAC2 soap_instantiate___tevpp__DestroyPullPoint(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevpp__DestroyPullPoint * soap_new___tevpp__DestroyPullPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevpp__DestroyPullPoint(soap, n, NULL, NULL, NULL); -} - -inline struct __tevpp__DestroyPullPoint * soap_new_req___tevpp__DestroyPullPoint( - struct soap *soap) -{ - struct __tevpp__DestroyPullPoint *_p = ::soap_new___tevpp__DestroyPullPoint(soap); - if (_p) - { ::soap_default___tevpp__DestroyPullPoint(soap, _p); - } - return _p; -} - -inline struct __tevpp__DestroyPullPoint * soap_new_set___tevpp__DestroyPullPoint( - struct soap *soap, - _wsnt__DestroyPullPoint *wsnt__DestroyPullPoint) -{ - struct __tevpp__DestroyPullPoint *_p = ::soap_new___tevpp__DestroyPullPoint(soap); - if (_p) - { ::soap_default___tevpp__DestroyPullPoint(soap, _p); - _p->wsnt__DestroyPullPoint = wsnt__DestroyPullPoint; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpp__DestroyPullPoint(struct soap*, const struct __tevpp__DestroyPullPoint *, const char*, const char*); - -inline int soap_write___tevpp__DestroyPullPoint(struct soap *soap, struct __tevpp__DestroyPullPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevpp__DestroyPullPoint(soap, p), 0) || ::soap_put___tevpp__DestroyPullPoint(soap, p, "-tevpp:DestroyPullPoint", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevpp__DestroyPullPoint(struct soap *soap, const char *URL, struct __tevpp__DestroyPullPoint const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__DestroyPullPoint(soap, p), 0) || ::soap_put___tevpp__DestroyPullPoint(soap, p, "-tevpp:DestroyPullPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevpp__DestroyPullPoint(struct soap *soap, const char *URL, struct __tevpp__DestroyPullPoint const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__DestroyPullPoint(soap, p), 0) || ::soap_put___tevpp__DestroyPullPoint(soap, p, "-tevpp:DestroyPullPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevpp__DestroyPullPoint(struct soap *soap, const char *URL, struct __tevpp__DestroyPullPoint const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__DestroyPullPoint(soap, p), 0) || ::soap_put___tevpp__DestroyPullPoint(soap, p, "-tevpp:DestroyPullPoint", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevpp__DestroyPullPoint * SOAP_FMAC4 soap_get___tevpp__DestroyPullPoint(struct soap*, struct __tevpp__DestroyPullPoint *, const char*, const char*); - -inline int soap_read___tevpp__DestroyPullPoint(struct soap *soap, struct __tevpp__DestroyPullPoint *p) -{ - if (p) - { ::soap_default___tevpp__DestroyPullPoint(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevpp__DestroyPullPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevpp__DestroyPullPoint(struct soap *soap, const char *URL, struct __tevpp__DestroyPullPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevpp__DestroyPullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevpp__DestroyPullPoint(struct soap *soap, struct __tevpp__DestroyPullPoint *p) -{ - if (::soap_read___tevpp__DestroyPullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevpp__GetMessages_DEFINED -#define SOAP_TYPE___tevpp__GetMessages_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevpp__GetMessages(struct soap*, struct __tevpp__GetMessages *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevpp__GetMessages(struct soap*, const struct __tevpp__GetMessages *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevpp__GetMessages(struct soap*, const char*, int, const struct __tevpp__GetMessages *, const char*); -SOAP_FMAC3 struct __tevpp__GetMessages * SOAP_FMAC4 soap_in___tevpp__GetMessages(struct soap*, const char*, struct __tevpp__GetMessages *, const char*); -SOAP_FMAC1 struct __tevpp__GetMessages * SOAP_FMAC2 soap_instantiate___tevpp__GetMessages(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevpp__GetMessages * soap_new___tevpp__GetMessages(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevpp__GetMessages(soap, n, NULL, NULL, NULL); -} - -inline struct __tevpp__GetMessages * soap_new_req___tevpp__GetMessages( - struct soap *soap) -{ - struct __tevpp__GetMessages *_p = ::soap_new___tevpp__GetMessages(soap); - if (_p) - { ::soap_default___tevpp__GetMessages(soap, _p); - } - return _p; -} - -inline struct __tevpp__GetMessages * soap_new_set___tevpp__GetMessages( - struct soap *soap, - _wsnt__GetMessages *wsnt__GetMessages) -{ - struct __tevpp__GetMessages *_p = ::soap_new___tevpp__GetMessages(soap); - if (_p) - { ::soap_default___tevpp__GetMessages(soap, _p); - _p->wsnt__GetMessages = wsnt__GetMessages; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevpp__GetMessages(struct soap*, const struct __tevpp__GetMessages *, const char*, const char*); - -inline int soap_write___tevpp__GetMessages(struct soap *soap, struct __tevpp__GetMessages const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevpp__GetMessages(soap, p), 0) || ::soap_put___tevpp__GetMessages(soap, p, "-tevpp:GetMessages", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevpp__GetMessages(struct soap *soap, const char *URL, struct __tevpp__GetMessages const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__GetMessages(soap, p), 0) || ::soap_put___tevpp__GetMessages(soap, p, "-tevpp:GetMessages", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevpp__GetMessages(struct soap *soap, const char *URL, struct __tevpp__GetMessages const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__GetMessages(soap, p), 0) || ::soap_put___tevpp__GetMessages(soap, p, "-tevpp:GetMessages", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevpp__GetMessages(struct soap *soap, const char *URL, struct __tevpp__GetMessages const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevpp__GetMessages(soap, p), 0) || ::soap_put___tevpp__GetMessages(soap, p, "-tevpp:GetMessages", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevpp__GetMessages * SOAP_FMAC4 soap_get___tevpp__GetMessages(struct soap*, struct __tevpp__GetMessages *, const char*, const char*); - -inline int soap_read___tevpp__GetMessages(struct soap *soap, struct __tevpp__GetMessages *p) -{ - if (p) - { ::soap_default___tevpp__GetMessages(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevpp__GetMessages(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevpp__GetMessages(struct soap *soap, const char *URL, struct __tevpp__GetMessages *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevpp__GetMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevpp__GetMessages(struct soap *soap, struct __tevpp__GetMessages *p) -{ - if (::soap_read___tevpp__GetMessages(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevnp__GetCurrentMessage_DEFINED -#define SOAP_TYPE___tevnp__GetCurrentMessage_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevnp__GetCurrentMessage(struct soap*, struct __tevnp__GetCurrentMessage *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevnp__GetCurrentMessage(struct soap*, const struct __tevnp__GetCurrentMessage *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevnp__GetCurrentMessage(struct soap*, const char*, int, const struct __tevnp__GetCurrentMessage *, const char*); -SOAP_FMAC3 struct __tevnp__GetCurrentMessage * SOAP_FMAC4 soap_in___tevnp__GetCurrentMessage(struct soap*, const char*, struct __tevnp__GetCurrentMessage *, const char*); -SOAP_FMAC1 struct __tevnp__GetCurrentMessage * SOAP_FMAC2 soap_instantiate___tevnp__GetCurrentMessage(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevnp__GetCurrentMessage * soap_new___tevnp__GetCurrentMessage(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevnp__GetCurrentMessage(soap, n, NULL, NULL, NULL); -} - -inline struct __tevnp__GetCurrentMessage * soap_new_req___tevnp__GetCurrentMessage( - struct soap *soap) -{ - struct __tevnp__GetCurrentMessage *_p = ::soap_new___tevnp__GetCurrentMessage(soap); - if (_p) - { ::soap_default___tevnp__GetCurrentMessage(soap, _p); - } - return _p; -} - -inline struct __tevnp__GetCurrentMessage * soap_new_set___tevnp__GetCurrentMessage( - struct soap *soap, - _wsnt__GetCurrentMessage *wsnt__GetCurrentMessage) -{ - struct __tevnp__GetCurrentMessage *_p = ::soap_new___tevnp__GetCurrentMessage(soap); - if (_p) - { ::soap_default___tevnp__GetCurrentMessage(soap, _p); - _p->wsnt__GetCurrentMessage = wsnt__GetCurrentMessage; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevnp__GetCurrentMessage(struct soap*, const struct __tevnp__GetCurrentMessage *, const char*, const char*); - -inline int soap_write___tevnp__GetCurrentMessage(struct soap *soap, struct __tevnp__GetCurrentMessage const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevnp__GetCurrentMessage(soap, p), 0) || ::soap_put___tevnp__GetCurrentMessage(soap, p, "-tevnp:GetCurrentMessage", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevnp__GetCurrentMessage(struct soap *soap, const char *URL, struct __tevnp__GetCurrentMessage const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnp__GetCurrentMessage(soap, p), 0) || ::soap_put___tevnp__GetCurrentMessage(soap, p, "-tevnp:GetCurrentMessage", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevnp__GetCurrentMessage(struct soap *soap, const char *URL, struct __tevnp__GetCurrentMessage const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnp__GetCurrentMessage(soap, p), 0) || ::soap_put___tevnp__GetCurrentMessage(soap, p, "-tevnp:GetCurrentMessage", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevnp__GetCurrentMessage(struct soap *soap, const char *URL, struct __tevnp__GetCurrentMessage const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnp__GetCurrentMessage(soap, p), 0) || ::soap_put___tevnp__GetCurrentMessage(soap, p, "-tevnp:GetCurrentMessage", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevnp__GetCurrentMessage * SOAP_FMAC4 soap_get___tevnp__GetCurrentMessage(struct soap*, struct __tevnp__GetCurrentMessage *, const char*, const char*); - -inline int soap_read___tevnp__GetCurrentMessage(struct soap *soap, struct __tevnp__GetCurrentMessage *p) -{ - if (p) - { ::soap_default___tevnp__GetCurrentMessage(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevnp__GetCurrentMessage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevnp__GetCurrentMessage(struct soap *soap, const char *URL, struct __tevnp__GetCurrentMessage *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevnp__GetCurrentMessage(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevnp__GetCurrentMessage(struct soap *soap, struct __tevnp__GetCurrentMessage *p) -{ - if (::soap_read___tevnp__GetCurrentMessage(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevnp__Subscribe_DEFINED -#define SOAP_TYPE___tevnp__Subscribe_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevnp__Subscribe(struct soap*, struct __tevnp__Subscribe *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevnp__Subscribe(struct soap*, const struct __tevnp__Subscribe *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevnp__Subscribe(struct soap*, const char*, int, const struct __tevnp__Subscribe *, const char*); -SOAP_FMAC3 struct __tevnp__Subscribe * SOAP_FMAC4 soap_in___tevnp__Subscribe(struct soap*, const char*, struct __tevnp__Subscribe *, const char*); -SOAP_FMAC1 struct __tevnp__Subscribe * SOAP_FMAC2 soap_instantiate___tevnp__Subscribe(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevnp__Subscribe * soap_new___tevnp__Subscribe(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevnp__Subscribe(soap, n, NULL, NULL, NULL); -} - -inline struct __tevnp__Subscribe * soap_new_req___tevnp__Subscribe( - struct soap *soap) -{ - struct __tevnp__Subscribe *_p = ::soap_new___tevnp__Subscribe(soap); - if (_p) - { ::soap_default___tevnp__Subscribe(soap, _p); - } - return _p; -} - -inline struct __tevnp__Subscribe * soap_new_set___tevnp__Subscribe( - struct soap *soap, - _wsnt__Subscribe *wsnt__Subscribe) -{ - struct __tevnp__Subscribe *_p = ::soap_new___tevnp__Subscribe(soap); - if (_p) - { ::soap_default___tevnp__Subscribe(soap, _p); - _p->wsnt__Subscribe = wsnt__Subscribe; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevnp__Subscribe(struct soap*, const struct __tevnp__Subscribe *, const char*, const char*); - -inline int soap_write___tevnp__Subscribe(struct soap *soap, struct __tevnp__Subscribe const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevnp__Subscribe(soap, p), 0) || ::soap_put___tevnp__Subscribe(soap, p, "-tevnp:Subscribe", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevnp__Subscribe(struct soap *soap, const char *URL, struct __tevnp__Subscribe const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnp__Subscribe(soap, p), 0) || ::soap_put___tevnp__Subscribe(soap, p, "-tevnp:Subscribe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevnp__Subscribe(struct soap *soap, const char *URL, struct __tevnp__Subscribe const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnp__Subscribe(soap, p), 0) || ::soap_put___tevnp__Subscribe(soap, p, "-tevnp:Subscribe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevnp__Subscribe(struct soap *soap, const char *URL, struct __tevnp__Subscribe const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnp__Subscribe(soap, p), 0) || ::soap_put___tevnp__Subscribe(soap, p, "-tevnp:Subscribe", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevnp__Subscribe * SOAP_FMAC4 soap_get___tevnp__Subscribe(struct soap*, struct __tevnp__Subscribe *, const char*, const char*); - -inline int soap_read___tevnp__Subscribe(struct soap *soap, struct __tevnp__Subscribe *p) -{ - if (p) - { ::soap_default___tevnp__Subscribe(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevnp__Subscribe(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevnp__Subscribe(struct soap *soap, const char *URL, struct __tevnp__Subscribe *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevnp__Subscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevnp__Subscribe(struct soap *soap, struct __tevnp__Subscribe *p) -{ - if (::soap_read___tevnp__Subscribe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevnc__Notify_DEFINED -#define SOAP_TYPE___tevnc__Notify_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevnc__Notify(struct soap*, struct __tevnc__Notify *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevnc__Notify(struct soap*, const struct __tevnc__Notify *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevnc__Notify(struct soap*, const char*, int, const struct __tevnc__Notify *, const char*); -SOAP_FMAC3 struct __tevnc__Notify * SOAP_FMAC4 soap_in___tevnc__Notify(struct soap*, const char*, struct __tevnc__Notify *, const char*); -SOAP_FMAC1 struct __tevnc__Notify * SOAP_FMAC2 soap_instantiate___tevnc__Notify(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevnc__Notify * soap_new___tevnc__Notify(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevnc__Notify(soap, n, NULL, NULL, NULL); -} - -inline struct __tevnc__Notify * soap_new_req___tevnc__Notify( - struct soap *soap) -{ - struct __tevnc__Notify *_p = ::soap_new___tevnc__Notify(soap); - if (_p) - { ::soap_default___tevnc__Notify(soap, _p); - } - return _p; -} - -inline struct __tevnc__Notify * soap_new_set___tevnc__Notify( - struct soap *soap, - _wsnt__Notify *wsnt__Notify) -{ - struct __tevnc__Notify *_p = ::soap_new___tevnc__Notify(soap); - if (_p) - { ::soap_default___tevnc__Notify(soap, _p); - _p->wsnt__Notify = wsnt__Notify; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevnc__Notify(struct soap*, const struct __tevnc__Notify *, const char*, const char*); - -inline int soap_write___tevnc__Notify(struct soap *soap, struct __tevnc__Notify const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevnc__Notify(soap, p), 0) || ::soap_put___tevnc__Notify(soap, p, "-tevnc:Notify", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevnc__Notify(struct soap *soap, const char *URL, struct __tevnc__Notify const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnc__Notify(soap, p), 0) || ::soap_put___tevnc__Notify(soap, p, "-tevnc:Notify", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevnc__Notify(struct soap *soap, const char *URL, struct __tevnc__Notify const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnc__Notify(soap, p), 0) || ::soap_put___tevnc__Notify(soap, p, "-tevnc:Notify", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevnc__Notify(struct soap *soap, const char *URL, struct __tevnc__Notify const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevnc__Notify(soap, p), 0) || ::soap_put___tevnc__Notify(soap, p, "-tevnc:Notify", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevnc__Notify * SOAP_FMAC4 soap_get___tevnc__Notify(struct soap*, struct __tevnc__Notify *, const char*, const char*); - -inline int soap_read___tevnc__Notify(struct soap *soap, struct __tevnc__Notify *p) -{ - if (p) - { ::soap_default___tevnc__Notify(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevnc__Notify(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevnc__Notify(struct soap *soap, const char *URL, struct __tevnc__Notify *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevnc__Notify(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevnc__Notify(struct soap *soap, struct __tevnc__Notify *p) -{ - if (::soap_read___tevnc__Notify(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___teve__GetEventProperties_DEFINED -#define SOAP_TYPE___teve__GetEventProperties_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___teve__GetEventProperties(struct soap*, struct __teve__GetEventProperties *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___teve__GetEventProperties(struct soap*, const struct __teve__GetEventProperties *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___teve__GetEventProperties(struct soap*, const char*, int, const struct __teve__GetEventProperties *, const char*); -SOAP_FMAC3 struct __teve__GetEventProperties * SOAP_FMAC4 soap_in___teve__GetEventProperties(struct soap*, const char*, struct __teve__GetEventProperties *, const char*); -SOAP_FMAC1 struct __teve__GetEventProperties * SOAP_FMAC2 soap_instantiate___teve__GetEventProperties(struct soap*, int, const char*, const char*, size_t*); - -inline struct __teve__GetEventProperties * soap_new___teve__GetEventProperties(struct soap *soap, int n = -1) -{ - return soap_instantiate___teve__GetEventProperties(soap, n, NULL, NULL, NULL); -} - -inline struct __teve__GetEventProperties * soap_new_req___teve__GetEventProperties( - struct soap *soap) -{ - struct __teve__GetEventProperties *_p = ::soap_new___teve__GetEventProperties(soap); - if (_p) - { ::soap_default___teve__GetEventProperties(soap, _p); - } - return _p; -} - -inline struct __teve__GetEventProperties * soap_new_set___teve__GetEventProperties( - struct soap *soap, - _tev__GetEventProperties *tev__GetEventProperties) -{ - struct __teve__GetEventProperties *_p = ::soap_new___teve__GetEventProperties(soap); - if (_p) - { ::soap_default___teve__GetEventProperties(soap, _p); - _p->tev__GetEventProperties = tev__GetEventProperties; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___teve__GetEventProperties(struct soap*, const struct __teve__GetEventProperties *, const char*, const char*); - -inline int soap_write___teve__GetEventProperties(struct soap *soap, struct __teve__GetEventProperties const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___teve__GetEventProperties(soap, p), 0) || ::soap_put___teve__GetEventProperties(soap, p, "-teve:GetEventProperties", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___teve__GetEventProperties(struct soap *soap, const char *URL, struct __teve__GetEventProperties const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__GetEventProperties(soap, p), 0) || ::soap_put___teve__GetEventProperties(soap, p, "-teve:GetEventProperties", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___teve__GetEventProperties(struct soap *soap, const char *URL, struct __teve__GetEventProperties const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__GetEventProperties(soap, p), 0) || ::soap_put___teve__GetEventProperties(soap, p, "-teve:GetEventProperties", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___teve__GetEventProperties(struct soap *soap, const char *URL, struct __teve__GetEventProperties const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__GetEventProperties(soap, p), 0) || ::soap_put___teve__GetEventProperties(soap, p, "-teve:GetEventProperties", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __teve__GetEventProperties * SOAP_FMAC4 soap_get___teve__GetEventProperties(struct soap*, struct __teve__GetEventProperties *, const char*, const char*); - -inline int soap_read___teve__GetEventProperties(struct soap *soap, struct __teve__GetEventProperties *p) -{ - if (p) - { ::soap_default___teve__GetEventProperties(soap, p); - if (soap_begin_recv(soap) || ::soap_get___teve__GetEventProperties(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___teve__GetEventProperties(struct soap *soap, const char *URL, struct __teve__GetEventProperties *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___teve__GetEventProperties(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___teve__GetEventProperties(struct soap *soap, struct __teve__GetEventProperties *p) -{ - if (::soap_read___teve__GetEventProperties(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___teve__CreatePullPointSubscription_DEFINED -#define SOAP_TYPE___teve__CreatePullPointSubscription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___teve__CreatePullPointSubscription(struct soap*, struct __teve__CreatePullPointSubscription *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___teve__CreatePullPointSubscription(struct soap*, const struct __teve__CreatePullPointSubscription *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___teve__CreatePullPointSubscription(struct soap*, const char*, int, const struct __teve__CreatePullPointSubscription *, const char*); -SOAP_FMAC3 struct __teve__CreatePullPointSubscription * SOAP_FMAC4 soap_in___teve__CreatePullPointSubscription(struct soap*, const char*, struct __teve__CreatePullPointSubscription *, const char*); -SOAP_FMAC1 struct __teve__CreatePullPointSubscription * SOAP_FMAC2 soap_instantiate___teve__CreatePullPointSubscription(struct soap*, int, const char*, const char*, size_t*); - -inline struct __teve__CreatePullPointSubscription * soap_new___teve__CreatePullPointSubscription(struct soap *soap, int n = -1) -{ - return soap_instantiate___teve__CreatePullPointSubscription(soap, n, NULL, NULL, NULL); -} - -inline struct __teve__CreatePullPointSubscription * soap_new_req___teve__CreatePullPointSubscription( - struct soap *soap) -{ - struct __teve__CreatePullPointSubscription *_p = ::soap_new___teve__CreatePullPointSubscription(soap); - if (_p) - { ::soap_default___teve__CreatePullPointSubscription(soap, _p); - } - return _p; -} - -inline struct __teve__CreatePullPointSubscription * soap_new_set___teve__CreatePullPointSubscription( - struct soap *soap, - _tev__CreatePullPointSubscription *tev__CreatePullPointSubscription) -{ - struct __teve__CreatePullPointSubscription *_p = ::soap_new___teve__CreatePullPointSubscription(soap); - if (_p) - { ::soap_default___teve__CreatePullPointSubscription(soap, _p); - _p->tev__CreatePullPointSubscription = tev__CreatePullPointSubscription; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___teve__CreatePullPointSubscription(struct soap*, const struct __teve__CreatePullPointSubscription *, const char*, const char*); - -inline int soap_write___teve__CreatePullPointSubscription(struct soap *soap, struct __teve__CreatePullPointSubscription const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___teve__CreatePullPointSubscription(soap, p), 0) || ::soap_put___teve__CreatePullPointSubscription(soap, p, "-teve:CreatePullPointSubscription", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___teve__CreatePullPointSubscription(struct soap *soap, const char *URL, struct __teve__CreatePullPointSubscription const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__CreatePullPointSubscription(soap, p), 0) || ::soap_put___teve__CreatePullPointSubscription(soap, p, "-teve:CreatePullPointSubscription", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___teve__CreatePullPointSubscription(struct soap *soap, const char *URL, struct __teve__CreatePullPointSubscription const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__CreatePullPointSubscription(soap, p), 0) || ::soap_put___teve__CreatePullPointSubscription(soap, p, "-teve:CreatePullPointSubscription", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___teve__CreatePullPointSubscription(struct soap *soap, const char *URL, struct __teve__CreatePullPointSubscription const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__CreatePullPointSubscription(soap, p), 0) || ::soap_put___teve__CreatePullPointSubscription(soap, p, "-teve:CreatePullPointSubscription", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __teve__CreatePullPointSubscription * SOAP_FMAC4 soap_get___teve__CreatePullPointSubscription(struct soap*, struct __teve__CreatePullPointSubscription *, const char*, const char*); - -inline int soap_read___teve__CreatePullPointSubscription(struct soap *soap, struct __teve__CreatePullPointSubscription *p) -{ - if (p) - { ::soap_default___teve__CreatePullPointSubscription(soap, p); - if (soap_begin_recv(soap) || ::soap_get___teve__CreatePullPointSubscription(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___teve__CreatePullPointSubscription(struct soap *soap, const char *URL, struct __teve__CreatePullPointSubscription *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___teve__CreatePullPointSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___teve__CreatePullPointSubscription(struct soap *soap, struct __teve__CreatePullPointSubscription *p) -{ - if (::soap_read___teve__CreatePullPointSubscription(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___teve__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___teve__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___teve__GetServiceCapabilities(struct soap*, struct __teve__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___teve__GetServiceCapabilities(struct soap*, const struct __teve__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___teve__GetServiceCapabilities(struct soap*, const char*, int, const struct __teve__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __teve__GetServiceCapabilities * SOAP_FMAC4 soap_in___teve__GetServiceCapabilities(struct soap*, const char*, struct __teve__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __teve__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___teve__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __teve__GetServiceCapabilities * soap_new___teve__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___teve__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __teve__GetServiceCapabilities * soap_new_req___teve__GetServiceCapabilities( - struct soap *soap) -{ - struct __teve__GetServiceCapabilities *_p = ::soap_new___teve__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___teve__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __teve__GetServiceCapabilities * soap_new_set___teve__GetServiceCapabilities( - struct soap *soap, - _tev__GetServiceCapabilities *tev__GetServiceCapabilities) -{ - struct __teve__GetServiceCapabilities *_p = ::soap_new___teve__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___teve__GetServiceCapabilities(soap, _p); - _p->tev__GetServiceCapabilities = tev__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___teve__GetServiceCapabilities(struct soap*, const struct __teve__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___teve__GetServiceCapabilities(struct soap *soap, struct __teve__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___teve__GetServiceCapabilities(soap, p), 0) || ::soap_put___teve__GetServiceCapabilities(soap, p, "-teve:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___teve__GetServiceCapabilities(struct soap *soap, const char *URL, struct __teve__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__GetServiceCapabilities(soap, p), 0) || ::soap_put___teve__GetServiceCapabilities(soap, p, "-teve:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___teve__GetServiceCapabilities(struct soap *soap, const char *URL, struct __teve__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__GetServiceCapabilities(soap, p), 0) || ::soap_put___teve__GetServiceCapabilities(soap, p, "-teve:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___teve__GetServiceCapabilities(struct soap *soap, const char *URL, struct __teve__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___teve__GetServiceCapabilities(soap, p), 0) || ::soap_put___teve__GetServiceCapabilities(soap, p, "-teve:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __teve__GetServiceCapabilities * SOAP_FMAC4 soap_get___teve__GetServiceCapabilities(struct soap*, struct __teve__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___teve__GetServiceCapabilities(struct soap *soap, struct __teve__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___teve__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___teve__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___teve__GetServiceCapabilities(struct soap *soap, const char *URL, struct __teve__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___teve__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___teve__GetServiceCapabilities(struct soap *soap, struct __teve__GetServiceCapabilities *p) -{ - if (::soap_read___teve__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tevcpp__CreatePullPoint_DEFINED -#define SOAP_TYPE___tevcpp__CreatePullPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tevcpp__CreatePullPoint(struct soap*, struct __tevcpp__CreatePullPoint *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tevcpp__CreatePullPoint(struct soap*, const struct __tevcpp__CreatePullPoint *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tevcpp__CreatePullPoint(struct soap*, const char*, int, const struct __tevcpp__CreatePullPoint *, const char*); -SOAP_FMAC3 struct __tevcpp__CreatePullPoint * SOAP_FMAC4 soap_in___tevcpp__CreatePullPoint(struct soap*, const char*, struct __tevcpp__CreatePullPoint *, const char*); -SOAP_FMAC1 struct __tevcpp__CreatePullPoint * SOAP_FMAC2 soap_instantiate___tevcpp__CreatePullPoint(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tevcpp__CreatePullPoint * soap_new___tevcpp__CreatePullPoint(struct soap *soap, int n = -1) -{ - return soap_instantiate___tevcpp__CreatePullPoint(soap, n, NULL, NULL, NULL); -} - -inline struct __tevcpp__CreatePullPoint * soap_new_req___tevcpp__CreatePullPoint( - struct soap *soap) -{ - struct __tevcpp__CreatePullPoint *_p = ::soap_new___tevcpp__CreatePullPoint(soap); - if (_p) - { ::soap_default___tevcpp__CreatePullPoint(soap, _p); - } - return _p; -} - -inline struct __tevcpp__CreatePullPoint * soap_new_set___tevcpp__CreatePullPoint( - struct soap *soap, - _wsnt__CreatePullPoint *wsnt__CreatePullPoint) -{ - struct __tevcpp__CreatePullPoint *_p = ::soap_new___tevcpp__CreatePullPoint(soap); - if (_p) - { ::soap_default___tevcpp__CreatePullPoint(soap, _p); - _p->wsnt__CreatePullPoint = wsnt__CreatePullPoint; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tevcpp__CreatePullPoint(struct soap*, const struct __tevcpp__CreatePullPoint *, const char*, const char*); - -inline int soap_write___tevcpp__CreatePullPoint(struct soap *soap, struct __tevcpp__CreatePullPoint const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tevcpp__CreatePullPoint(soap, p), 0) || ::soap_put___tevcpp__CreatePullPoint(soap, p, "-tevcpp:CreatePullPoint", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tevcpp__CreatePullPoint(struct soap *soap, const char *URL, struct __tevcpp__CreatePullPoint const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevcpp__CreatePullPoint(soap, p), 0) || ::soap_put___tevcpp__CreatePullPoint(soap, p, "-tevcpp:CreatePullPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tevcpp__CreatePullPoint(struct soap *soap, const char *URL, struct __tevcpp__CreatePullPoint const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevcpp__CreatePullPoint(soap, p), 0) || ::soap_put___tevcpp__CreatePullPoint(soap, p, "-tevcpp:CreatePullPoint", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tevcpp__CreatePullPoint(struct soap *soap, const char *URL, struct __tevcpp__CreatePullPoint const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tevcpp__CreatePullPoint(soap, p), 0) || ::soap_put___tevcpp__CreatePullPoint(soap, p, "-tevcpp:CreatePullPoint", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tevcpp__CreatePullPoint * SOAP_FMAC4 soap_get___tevcpp__CreatePullPoint(struct soap*, struct __tevcpp__CreatePullPoint *, const char*, const char*); - -inline int soap_read___tevcpp__CreatePullPoint(struct soap *soap, struct __tevcpp__CreatePullPoint *p) -{ - if (p) - { ::soap_default___tevcpp__CreatePullPoint(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tevcpp__CreatePullPoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tevcpp__CreatePullPoint(struct soap *soap, const char *URL, struct __tevcpp__CreatePullPoint *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tevcpp__CreatePullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tevcpp__CreatePullPoint(struct soap *soap, struct __tevcpp__CreatePullPoint *p) -{ - if (::soap_read___tevcpp__CreatePullPoint(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__DeleteGeoLocation_DEFINED -#define SOAP_TYPE___tds__DeleteGeoLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteGeoLocation(struct soap*, struct __tds__DeleteGeoLocation *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteGeoLocation(struct soap*, const struct __tds__DeleteGeoLocation *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteGeoLocation(struct soap*, const char*, int, const struct __tds__DeleteGeoLocation *, const char*); -SOAP_FMAC3 struct __tds__DeleteGeoLocation * SOAP_FMAC4 soap_in___tds__DeleteGeoLocation(struct soap*, const char*, struct __tds__DeleteGeoLocation *, const char*); -SOAP_FMAC1 struct __tds__DeleteGeoLocation * SOAP_FMAC2 soap_instantiate___tds__DeleteGeoLocation(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__DeleteGeoLocation * soap_new___tds__DeleteGeoLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__DeleteGeoLocation(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__DeleteGeoLocation * soap_new_req___tds__DeleteGeoLocation( - struct soap *soap) -{ - struct __tds__DeleteGeoLocation *_p = ::soap_new___tds__DeleteGeoLocation(soap); - if (_p) - { ::soap_default___tds__DeleteGeoLocation(soap, _p); - } - return _p; -} - -inline struct __tds__DeleteGeoLocation * soap_new_set___tds__DeleteGeoLocation( - struct soap *soap, - _tds__DeleteGeoLocation *tds__DeleteGeoLocation) -{ - struct __tds__DeleteGeoLocation *_p = ::soap_new___tds__DeleteGeoLocation(soap); - if (_p) - { ::soap_default___tds__DeleteGeoLocation(soap, _p); - _p->tds__DeleteGeoLocation = tds__DeleteGeoLocation; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteGeoLocation(struct soap*, const struct __tds__DeleteGeoLocation *, const char*, const char*); - -inline int soap_write___tds__DeleteGeoLocation(struct soap *soap, struct __tds__DeleteGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__DeleteGeoLocation(soap, p), 0) || ::soap_put___tds__DeleteGeoLocation(soap, p, "-tds:DeleteGeoLocation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__DeleteGeoLocation(struct soap *soap, const char *URL, struct __tds__DeleteGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteGeoLocation(soap, p), 0) || ::soap_put___tds__DeleteGeoLocation(soap, p, "-tds:DeleteGeoLocation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__DeleteGeoLocation(struct soap *soap, const char *URL, struct __tds__DeleteGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteGeoLocation(soap, p), 0) || ::soap_put___tds__DeleteGeoLocation(soap, p, "-tds:DeleteGeoLocation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__DeleteGeoLocation(struct soap *soap, const char *URL, struct __tds__DeleteGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteGeoLocation(soap, p), 0) || ::soap_put___tds__DeleteGeoLocation(soap, p, "-tds:DeleteGeoLocation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__DeleteGeoLocation * SOAP_FMAC4 soap_get___tds__DeleteGeoLocation(struct soap*, struct __tds__DeleteGeoLocation *, const char*, const char*); - -inline int soap_read___tds__DeleteGeoLocation(struct soap *soap, struct __tds__DeleteGeoLocation *p) -{ - if (p) - { ::soap_default___tds__DeleteGeoLocation(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__DeleteGeoLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__DeleteGeoLocation(struct soap *soap, const char *URL, struct __tds__DeleteGeoLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__DeleteGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__DeleteGeoLocation(struct soap *soap, struct __tds__DeleteGeoLocation *p) -{ - if (::soap_read___tds__DeleteGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetGeoLocation_DEFINED -#define SOAP_TYPE___tds__SetGeoLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetGeoLocation(struct soap*, struct __tds__SetGeoLocation *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetGeoLocation(struct soap*, const struct __tds__SetGeoLocation *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetGeoLocation(struct soap*, const char*, int, const struct __tds__SetGeoLocation *, const char*); -SOAP_FMAC3 struct __tds__SetGeoLocation * SOAP_FMAC4 soap_in___tds__SetGeoLocation(struct soap*, const char*, struct __tds__SetGeoLocation *, const char*); -SOAP_FMAC1 struct __tds__SetGeoLocation * SOAP_FMAC2 soap_instantiate___tds__SetGeoLocation(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetGeoLocation * soap_new___tds__SetGeoLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetGeoLocation(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetGeoLocation * soap_new_req___tds__SetGeoLocation( - struct soap *soap) -{ - struct __tds__SetGeoLocation *_p = ::soap_new___tds__SetGeoLocation(soap); - if (_p) - { ::soap_default___tds__SetGeoLocation(soap, _p); - } - return _p; -} - -inline struct __tds__SetGeoLocation * soap_new_set___tds__SetGeoLocation( - struct soap *soap, - _tds__SetGeoLocation *tds__SetGeoLocation) -{ - struct __tds__SetGeoLocation *_p = ::soap_new___tds__SetGeoLocation(soap); - if (_p) - { ::soap_default___tds__SetGeoLocation(soap, _p); - _p->tds__SetGeoLocation = tds__SetGeoLocation; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetGeoLocation(struct soap*, const struct __tds__SetGeoLocation *, const char*, const char*); - -inline int soap_write___tds__SetGeoLocation(struct soap *soap, struct __tds__SetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetGeoLocation(soap, p), 0) || ::soap_put___tds__SetGeoLocation(soap, p, "-tds:SetGeoLocation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetGeoLocation(struct soap *soap, const char *URL, struct __tds__SetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetGeoLocation(soap, p), 0) || ::soap_put___tds__SetGeoLocation(soap, p, "-tds:SetGeoLocation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetGeoLocation(struct soap *soap, const char *URL, struct __tds__SetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetGeoLocation(soap, p), 0) || ::soap_put___tds__SetGeoLocation(soap, p, "-tds:SetGeoLocation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetGeoLocation(struct soap *soap, const char *URL, struct __tds__SetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetGeoLocation(soap, p), 0) || ::soap_put___tds__SetGeoLocation(soap, p, "-tds:SetGeoLocation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetGeoLocation * SOAP_FMAC4 soap_get___tds__SetGeoLocation(struct soap*, struct __tds__SetGeoLocation *, const char*, const char*); - -inline int soap_read___tds__SetGeoLocation(struct soap *soap, struct __tds__SetGeoLocation *p) -{ - if (p) - { ::soap_default___tds__SetGeoLocation(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetGeoLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetGeoLocation(struct soap *soap, const char *URL, struct __tds__SetGeoLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetGeoLocation(struct soap *soap, struct __tds__SetGeoLocation *p) -{ - if (::soap_read___tds__SetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetGeoLocation_DEFINED -#define SOAP_TYPE___tds__GetGeoLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetGeoLocation(struct soap*, struct __tds__GetGeoLocation *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetGeoLocation(struct soap*, const struct __tds__GetGeoLocation *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetGeoLocation(struct soap*, const char*, int, const struct __tds__GetGeoLocation *, const char*); -SOAP_FMAC3 struct __tds__GetGeoLocation * SOAP_FMAC4 soap_in___tds__GetGeoLocation(struct soap*, const char*, struct __tds__GetGeoLocation *, const char*); -SOAP_FMAC1 struct __tds__GetGeoLocation * SOAP_FMAC2 soap_instantiate___tds__GetGeoLocation(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetGeoLocation * soap_new___tds__GetGeoLocation(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetGeoLocation(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetGeoLocation * soap_new_req___tds__GetGeoLocation( - struct soap *soap) -{ - struct __tds__GetGeoLocation *_p = ::soap_new___tds__GetGeoLocation(soap); - if (_p) - { ::soap_default___tds__GetGeoLocation(soap, _p); - } - return _p; -} - -inline struct __tds__GetGeoLocation * soap_new_set___tds__GetGeoLocation( - struct soap *soap, - _tds__GetGeoLocation *tds__GetGeoLocation) -{ - struct __tds__GetGeoLocation *_p = ::soap_new___tds__GetGeoLocation(soap); - if (_p) - { ::soap_default___tds__GetGeoLocation(soap, _p); - _p->tds__GetGeoLocation = tds__GetGeoLocation; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetGeoLocation(struct soap*, const struct __tds__GetGeoLocation *, const char*, const char*); - -inline int soap_write___tds__GetGeoLocation(struct soap *soap, struct __tds__GetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetGeoLocation(soap, p), 0) || ::soap_put___tds__GetGeoLocation(soap, p, "-tds:GetGeoLocation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetGeoLocation(struct soap *soap, const char *URL, struct __tds__GetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetGeoLocation(soap, p), 0) || ::soap_put___tds__GetGeoLocation(soap, p, "-tds:GetGeoLocation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetGeoLocation(struct soap *soap, const char *URL, struct __tds__GetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetGeoLocation(soap, p), 0) || ::soap_put___tds__GetGeoLocation(soap, p, "-tds:GetGeoLocation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetGeoLocation(struct soap *soap, const char *URL, struct __tds__GetGeoLocation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetGeoLocation(soap, p), 0) || ::soap_put___tds__GetGeoLocation(soap, p, "-tds:GetGeoLocation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetGeoLocation * SOAP_FMAC4 soap_get___tds__GetGeoLocation(struct soap*, struct __tds__GetGeoLocation *, const char*, const char*); - -inline int soap_read___tds__GetGeoLocation(struct soap *soap, struct __tds__GetGeoLocation *p) -{ - if (p) - { ::soap_default___tds__GetGeoLocation(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetGeoLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetGeoLocation(struct soap *soap, const char *URL, struct __tds__GetGeoLocation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetGeoLocation(struct soap *soap, struct __tds__GetGeoLocation *p) -{ - if (::soap_read___tds__GetGeoLocation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__DeleteStorageConfiguration_DEFINED -#define SOAP_TYPE___tds__DeleteStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteStorageConfiguration(struct soap*, struct __tds__DeleteStorageConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteStorageConfiguration(struct soap*, const struct __tds__DeleteStorageConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteStorageConfiguration(struct soap*, const char*, int, const struct __tds__DeleteStorageConfiguration *, const char*); -SOAP_FMAC3 struct __tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_in___tds__DeleteStorageConfiguration(struct soap*, const char*, struct __tds__DeleteStorageConfiguration *, const char*); -SOAP_FMAC1 struct __tds__DeleteStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__DeleteStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__DeleteStorageConfiguration * soap_new___tds__DeleteStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__DeleteStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__DeleteStorageConfiguration * soap_new_req___tds__DeleteStorageConfiguration( - struct soap *soap) -{ - struct __tds__DeleteStorageConfiguration *_p = ::soap_new___tds__DeleteStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__DeleteStorageConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__DeleteStorageConfiguration * soap_new_set___tds__DeleteStorageConfiguration( - struct soap *soap, - _tds__DeleteStorageConfiguration *tds__DeleteStorageConfiguration) -{ - struct __tds__DeleteStorageConfiguration *_p = ::soap_new___tds__DeleteStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__DeleteStorageConfiguration(soap, _p); - _p->tds__DeleteStorageConfiguration = tds__DeleteStorageConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteStorageConfiguration(struct soap*, const struct __tds__DeleteStorageConfiguration *, const char*, const char*); - -inline int soap_write___tds__DeleteStorageConfiguration(struct soap *soap, struct __tds__DeleteStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__DeleteStorageConfiguration(soap, p), 0) || ::soap_put___tds__DeleteStorageConfiguration(soap, p, "-tds:DeleteStorageConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteStorageConfiguration(soap, p), 0) || ::soap_put___tds__DeleteStorageConfiguration(soap, p, "-tds:DeleteStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteStorageConfiguration(soap, p), 0) || ::soap_put___tds__DeleteStorageConfiguration(soap, p, "-tds:DeleteStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteStorageConfiguration(soap, p), 0) || ::soap_put___tds__DeleteStorageConfiguration(soap, p, "-tds:DeleteStorageConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__DeleteStorageConfiguration * SOAP_FMAC4 soap_get___tds__DeleteStorageConfiguration(struct soap*, struct __tds__DeleteStorageConfiguration *, const char*, const char*); - -inline int soap_read___tds__DeleteStorageConfiguration(struct soap *soap, struct __tds__DeleteStorageConfiguration *p) -{ - if (p) - { ::soap_default___tds__DeleteStorageConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__DeleteStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__DeleteStorageConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__DeleteStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__DeleteStorageConfiguration(struct soap *soap, struct __tds__DeleteStorageConfiguration *p) -{ - if (::soap_read___tds__DeleteStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetStorageConfiguration_DEFINED -#define SOAP_TYPE___tds__SetStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetStorageConfiguration(struct soap*, struct __tds__SetStorageConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetStorageConfiguration(struct soap*, const struct __tds__SetStorageConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetStorageConfiguration(struct soap*, const char*, int, const struct __tds__SetStorageConfiguration *, const char*); -SOAP_FMAC3 struct __tds__SetStorageConfiguration * SOAP_FMAC4 soap_in___tds__SetStorageConfiguration(struct soap*, const char*, struct __tds__SetStorageConfiguration *, const char*); -SOAP_FMAC1 struct __tds__SetStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__SetStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetStorageConfiguration * soap_new___tds__SetStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetStorageConfiguration * soap_new_req___tds__SetStorageConfiguration( - struct soap *soap) -{ - struct __tds__SetStorageConfiguration *_p = ::soap_new___tds__SetStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__SetStorageConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__SetStorageConfiguration * soap_new_set___tds__SetStorageConfiguration( - struct soap *soap, - _tds__SetStorageConfiguration *tds__SetStorageConfiguration) -{ - struct __tds__SetStorageConfiguration *_p = ::soap_new___tds__SetStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__SetStorageConfiguration(soap, _p); - _p->tds__SetStorageConfiguration = tds__SetStorageConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetStorageConfiguration(struct soap*, const struct __tds__SetStorageConfiguration *, const char*, const char*); - -inline int soap_write___tds__SetStorageConfiguration(struct soap *soap, struct __tds__SetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetStorageConfiguration(soap, p), 0) || ::soap_put___tds__SetStorageConfiguration(soap, p, "-tds:SetStorageConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__SetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetStorageConfiguration(soap, p), 0) || ::soap_put___tds__SetStorageConfiguration(soap, p, "-tds:SetStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__SetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetStorageConfiguration(soap, p), 0) || ::soap_put___tds__SetStorageConfiguration(soap, p, "-tds:SetStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__SetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetStorageConfiguration(soap, p), 0) || ::soap_put___tds__SetStorageConfiguration(soap, p, "-tds:SetStorageConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetStorageConfiguration * SOAP_FMAC4 soap_get___tds__SetStorageConfiguration(struct soap*, struct __tds__SetStorageConfiguration *, const char*, const char*); - -inline int soap_read___tds__SetStorageConfiguration(struct soap *soap, struct __tds__SetStorageConfiguration *p) -{ - if (p) - { ::soap_default___tds__SetStorageConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__SetStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetStorageConfiguration(struct soap *soap, struct __tds__SetStorageConfiguration *p) -{ - if (::soap_read___tds__SetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetStorageConfiguration_DEFINED -#define SOAP_TYPE___tds__GetStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetStorageConfiguration(struct soap*, struct __tds__GetStorageConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetStorageConfiguration(struct soap*, const struct __tds__GetStorageConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetStorageConfiguration(struct soap*, const char*, int, const struct __tds__GetStorageConfiguration *, const char*); -SOAP_FMAC3 struct __tds__GetStorageConfiguration * SOAP_FMAC4 soap_in___tds__GetStorageConfiguration(struct soap*, const char*, struct __tds__GetStorageConfiguration *, const char*); -SOAP_FMAC1 struct __tds__GetStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__GetStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetStorageConfiguration * soap_new___tds__GetStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetStorageConfiguration * soap_new_req___tds__GetStorageConfiguration( - struct soap *soap) -{ - struct __tds__GetStorageConfiguration *_p = ::soap_new___tds__GetStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__GetStorageConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__GetStorageConfiguration * soap_new_set___tds__GetStorageConfiguration( - struct soap *soap, - _tds__GetStorageConfiguration *tds__GetStorageConfiguration) -{ - struct __tds__GetStorageConfiguration *_p = ::soap_new___tds__GetStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__GetStorageConfiguration(soap, _p); - _p->tds__GetStorageConfiguration = tds__GetStorageConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetStorageConfiguration(struct soap*, const struct __tds__GetStorageConfiguration *, const char*, const char*); - -inline int soap_write___tds__GetStorageConfiguration(struct soap *soap, struct __tds__GetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetStorageConfiguration(soap, p), 0) || ::soap_put___tds__GetStorageConfiguration(soap, p, "-tds:GetStorageConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__GetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetStorageConfiguration(soap, p), 0) || ::soap_put___tds__GetStorageConfiguration(soap, p, "-tds:GetStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__GetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetStorageConfiguration(soap, p), 0) || ::soap_put___tds__GetStorageConfiguration(soap, p, "-tds:GetStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__GetStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetStorageConfiguration(soap, p), 0) || ::soap_put___tds__GetStorageConfiguration(soap, p, "-tds:GetStorageConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetStorageConfiguration * SOAP_FMAC4 soap_get___tds__GetStorageConfiguration(struct soap*, struct __tds__GetStorageConfiguration *, const char*, const char*); - -inline int soap_read___tds__GetStorageConfiguration(struct soap *soap, struct __tds__GetStorageConfiguration *p) -{ - if (p) - { ::soap_default___tds__GetStorageConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetStorageConfiguration(struct soap *soap, const char *URL, struct __tds__GetStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetStorageConfiguration(struct soap *soap, struct __tds__GetStorageConfiguration *p) -{ - if (::soap_read___tds__GetStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__CreateStorageConfiguration_DEFINED -#define SOAP_TYPE___tds__CreateStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateStorageConfiguration(struct soap*, struct __tds__CreateStorageConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateStorageConfiguration(struct soap*, const struct __tds__CreateStorageConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateStorageConfiguration(struct soap*, const char*, int, const struct __tds__CreateStorageConfiguration *, const char*); -SOAP_FMAC3 struct __tds__CreateStorageConfiguration * SOAP_FMAC4 soap_in___tds__CreateStorageConfiguration(struct soap*, const char*, struct __tds__CreateStorageConfiguration *, const char*); -SOAP_FMAC1 struct __tds__CreateStorageConfiguration * SOAP_FMAC2 soap_instantiate___tds__CreateStorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__CreateStorageConfiguration * soap_new___tds__CreateStorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__CreateStorageConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__CreateStorageConfiguration * soap_new_req___tds__CreateStorageConfiguration( - struct soap *soap) -{ - struct __tds__CreateStorageConfiguration *_p = ::soap_new___tds__CreateStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__CreateStorageConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__CreateStorageConfiguration * soap_new_set___tds__CreateStorageConfiguration( - struct soap *soap, - _tds__CreateStorageConfiguration *tds__CreateStorageConfiguration) -{ - struct __tds__CreateStorageConfiguration *_p = ::soap_new___tds__CreateStorageConfiguration(soap); - if (_p) - { ::soap_default___tds__CreateStorageConfiguration(soap, _p); - _p->tds__CreateStorageConfiguration = tds__CreateStorageConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateStorageConfiguration(struct soap*, const struct __tds__CreateStorageConfiguration *, const char*, const char*); - -inline int soap_write___tds__CreateStorageConfiguration(struct soap *soap, struct __tds__CreateStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__CreateStorageConfiguration(soap, p), 0) || ::soap_put___tds__CreateStorageConfiguration(soap, p, "-tds:CreateStorageConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__CreateStorageConfiguration(struct soap *soap, const char *URL, struct __tds__CreateStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateStorageConfiguration(soap, p), 0) || ::soap_put___tds__CreateStorageConfiguration(soap, p, "-tds:CreateStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__CreateStorageConfiguration(struct soap *soap, const char *URL, struct __tds__CreateStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateStorageConfiguration(soap, p), 0) || ::soap_put___tds__CreateStorageConfiguration(soap, p, "-tds:CreateStorageConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__CreateStorageConfiguration(struct soap *soap, const char *URL, struct __tds__CreateStorageConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateStorageConfiguration(soap, p), 0) || ::soap_put___tds__CreateStorageConfiguration(soap, p, "-tds:CreateStorageConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__CreateStorageConfiguration * SOAP_FMAC4 soap_get___tds__CreateStorageConfiguration(struct soap*, struct __tds__CreateStorageConfiguration *, const char*, const char*); - -inline int soap_read___tds__CreateStorageConfiguration(struct soap *soap, struct __tds__CreateStorageConfiguration *p) -{ - if (p) - { ::soap_default___tds__CreateStorageConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__CreateStorageConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__CreateStorageConfiguration(struct soap *soap, const char *URL, struct __tds__CreateStorageConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__CreateStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__CreateStorageConfiguration(struct soap *soap, struct __tds__CreateStorageConfiguration *p) -{ - if (::soap_read___tds__CreateStorageConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetStorageConfigurations_DEFINED -#define SOAP_TYPE___tds__GetStorageConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetStorageConfigurations(struct soap*, struct __tds__GetStorageConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetStorageConfigurations(struct soap*, const struct __tds__GetStorageConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetStorageConfigurations(struct soap*, const char*, int, const struct __tds__GetStorageConfigurations *, const char*); -SOAP_FMAC3 struct __tds__GetStorageConfigurations * SOAP_FMAC4 soap_in___tds__GetStorageConfigurations(struct soap*, const char*, struct __tds__GetStorageConfigurations *, const char*); -SOAP_FMAC1 struct __tds__GetStorageConfigurations * SOAP_FMAC2 soap_instantiate___tds__GetStorageConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetStorageConfigurations * soap_new___tds__GetStorageConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetStorageConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetStorageConfigurations * soap_new_req___tds__GetStorageConfigurations( - struct soap *soap) -{ - struct __tds__GetStorageConfigurations *_p = ::soap_new___tds__GetStorageConfigurations(soap); - if (_p) - { ::soap_default___tds__GetStorageConfigurations(soap, _p); - } - return _p; -} - -inline struct __tds__GetStorageConfigurations * soap_new_set___tds__GetStorageConfigurations( - struct soap *soap, - _tds__GetStorageConfigurations *tds__GetStorageConfigurations) -{ - struct __tds__GetStorageConfigurations *_p = ::soap_new___tds__GetStorageConfigurations(soap); - if (_p) - { ::soap_default___tds__GetStorageConfigurations(soap, _p); - _p->tds__GetStorageConfigurations = tds__GetStorageConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetStorageConfigurations(struct soap*, const struct __tds__GetStorageConfigurations *, const char*, const char*); - -inline int soap_write___tds__GetStorageConfigurations(struct soap *soap, struct __tds__GetStorageConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetStorageConfigurations(soap, p), 0) || ::soap_put___tds__GetStorageConfigurations(soap, p, "-tds:GetStorageConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetStorageConfigurations(struct soap *soap, const char *URL, struct __tds__GetStorageConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetStorageConfigurations(soap, p), 0) || ::soap_put___tds__GetStorageConfigurations(soap, p, "-tds:GetStorageConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetStorageConfigurations(struct soap *soap, const char *URL, struct __tds__GetStorageConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetStorageConfigurations(soap, p), 0) || ::soap_put___tds__GetStorageConfigurations(soap, p, "-tds:GetStorageConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetStorageConfigurations(struct soap *soap, const char *URL, struct __tds__GetStorageConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetStorageConfigurations(soap, p), 0) || ::soap_put___tds__GetStorageConfigurations(soap, p, "-tds:GetStorageConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetStorageConfigurations * SOAP_FMAC4 soap_get___tds__GetStorageConfigurations(struct soap*, struct __tds__GetStorageConfigurations *, const char*, const char*); - -inline int soap_read___tds__GetStorageConfigurations(struct soap *soap, struct __tds__GetStorageConfigurations *p) -{ - if (p) - { ::soap_default___tds__GetStorageConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetStorageConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetStorageConfigurations(struct soap *soap, const char *URL, struct __tds__GetStorageConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetStorageConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetStorageConfigurations(struct soap *soap, struct __tds__GetStorageConfigurations *p) -{ - if (::soap_read___tds__GetStorageConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__StartSystemRestore_DEFINED -#define SOAP_TYPE___tds__StartSystemRestore_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__StartSystemRestore(struct soap*, struct __tds__StartSystemRestore *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__StartSystemRestore(struct soap*, const struct __tds__StartSystemRestore *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__StartSystemRestore(struct soap*, const char*, int, const struct __tds__StartSystemRestore *, const char*); -SOAP_FMAC3 struct __tds__StartSystemRestore * SOAP_FMAC4 soap_in___tds__StartSystemRestore(struct soap*, const char*, struct __tds__StartSystemRestore *, const char*); -SOAP_FMAC1 struct __tds__StartSystemRestore * SOAP_FMAC2 soap_instantiate___tds__StartSystemRestore(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__StartSystemRestore * soap_new___tds__StartSystemRestore(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__StartSystemRestore(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__StartSystemRestore * soap_new_req___tds__StartSystemRestore( - struct soap *soap) -{ - struct __tds__StartSystemRestore *_p = ::soap_new___tds__StartSystemRestore(soap); - if (_p) - { ::soap_default___tds__StartSystemRestore(soap, _p); - } - return _p; -} - -inline struct __tds__StartSystemRestore * soap_new_set___tds__StartSystemRestore( - struct soap *soap, - _tds__StartSystemRestore *tds__StartSystemRestore) -{ - struct __tds__StartSystemRestore *_p = ::soap_new___tds__StartSystemRestore(soap); - if (_p) - { ::soap_default___tds__StartSystemRestore(soap, _p); - _p->tds__StartSystemRestore = tds__StartSystemRestore; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__StartSystemRestore(struct soap*, const struct __tds__StartSystemRestore *, const char*, const char*); - -inline int soap_write___tds__StartSystemRestore(struct soap *soap, struct __tds__StartSystemRestore const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__StartSystemRestore(soap, p), 0) || ::soap_put___tds__StartSystemRestore(soap, p, "-tds:StartSystemRestore", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__StartSystemRestore(struct soap *soap, const char *URL, struct __tds__StartSystemRestore const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__StartSystemRestore(soap, p), 0) || ::soap_put___tds__StartSystemRestore(soap, p, "-tds:StartSystemRestore", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__StartSystemRestore(struct soap *soap, const char *URL, struct __tds__StartSystemRestore const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__StartSystemRestore(soap, p), 0) || ::soap_put___tds__StartSystemRestore(soap, p, "-tds:StartSystemRestore", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__StartSystemRestore(struct soap *soap, const char *URL, struct __tds__StartSystemRestore const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__StartSystemRestore(soap, p), 0) || ::soap_put___tds__StartSystemRestore(soap, p, "-tds:StartSystemRestore", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__StartSystemRestore * SOAP_FMAC4 soap_get___tds__StartSystemRestore(struct soap*, struct __tds__StartSystemRestore *, const char*, const char*); - -inline int soap_read___tds__StartSystemRestore(struct soap *soap, struct __tds__StartSystemRestore *p) -{ - if (p) - { ::soap_default___tds__StartSystemRestore(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__StartSystemRestore(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__StartSystemRestore(struct soap *soap, const char *URL, struct __tds__StartSystemRestore *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__StartSystemRestore(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__StartSystemRestore(struct soap *soap, struct __tds__StartSystemRestore *p) -{ - if (::soap_read___tds__StartSystemRestore(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__StartFirmwareUpgrade_DEFINED -#define SOAP_TYPE___tds__StartFirmwareUpgrade_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__StartFirmwareUpgrade(struct soap*, struct __tds__StartFirmwareUpgrade *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__StartFirmwareUpgrade(struct soap*, const struct __tds__StartFirmwareUpgrade *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__StartFirmwareUpgrade(struct soap*, const char*, int, const struct __tds__StartFirmwareUpgrade *, const char*); -SOAP_FMAC3 struct __tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_in___tds__StartFirmwareUpgrade(struct soap*, const char*, struct __tds__StartFirmwareUpgrade *, const char*); -SOAP_FMAC1 struct __tds__StartFirmwareUpgrade * SOAP_FMAC2 soap_instantiate___tds__StartFirmwareUpgrade(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__StartFirmwareUpgrade * soap_new___tds__StartFirmwareUpgrade(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__StartFirmwareUpgrade(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__StartFirmwareUpgrade * soap_new_req___tds__StartFirmwareUpgrade( - struct soap *soap) -{ - struct __tds__StartFirmwareUpgrade *_p = ::soap_new___tds__StartFirmwareUpgrade(soap); - if (_p) - { ::soap_default___tds__StartFirmwareUpgrade(soap, _p); - } - return _p; -} - -inline struct __tds__StartFirmwareUpgrade * soap_new_set___tds__StartFirmwareUpgrade( - struct soap *soap, - _tds__StartFirmwareUpgrade *tds__StartFirmwareUpgrade) -{ - struct __tds__StartFirmwareUpgrade *_p = ::soap_new___tds__StartFirmwareUpgrade(soap); - if (_p) - { ::soap_default___tds__StartFirmwareUpgrade(soap, _p); - _p->tds__StartFirmwareUpgrade = tds__StartFirmwareUpgrade; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__StartFirmwareUpgrade(struct soap*, const struct __tds__StartFirmwareUpgrade *, const char*, const char*); - -inline int soap_write___tds__StartFirmwareUpgrade(struct soap *soap, struct __tds__StartFirmwareUpgrade const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__StartFirmwareUpgrade(soap, p), 0) || ::soap_put___tds__StartFirmwareUpgrade(soap, p, "-tds:StartFirmwareUpgrade", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, struct __tds__StartFirmwareUpgrade const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__StartFirmwareUpgrade(soap, p), 0) || ::soap_put___tds__StartFirmwareUpgrade(soap, p, "-tds:StartFirmwareUpgrade", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, struct __tds__StartFirmwareUpgrade const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__StartFirmwareUpgrade(soap, p), 0) || ::soap_put___tds__StartFirmwareUpgrade(soap, p, "-tds:StartFirmwareUpgrade", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, struct __tds__StartFirmwareUpgrade const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__StartFirmwareUpgrade(soap, p), 0) || ::soap_put___tds__StartFirmwareUpgrade(soap, p, "-tds:StartFirmwareUpgrade", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__StartFirmwareUpgrade * SOAP_FMAC4 soap_get___tds__StartFirmwareUpgrade(struct soap*, struct __tds__StartFirmwareUpgrade *, const char*, const char*); - -inline int soap_read___tds__StartFirmwareUpgrade(struct soap *soap, struct __tds__StartFirmwareUpgrade *p) -{ - if (p) - { ::soap_default___tds__StartFirmwareUpgrade(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__StartFirmwareUpgrade(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__StartFirmwareUpgrade(struct soap *soap, const char *URL, struct __tds__StartFirmwareUpgrade *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__StartFirmwareUpgrade(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__StartFirmwareUpgrade(struct soap *soap, struct __tds__StartFirmwareUpgrade *p) -{ - if (::soap_read___tds__StartFirmwareUpgrade(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetSystemUris_DEFINED -#define SOAP_TYPE___tds__GetSystemUris_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemUris(struct soap*, struct __tds__GetSystemUris *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemUris(struct soap*, const struct __tds__GetSystemUris *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemUris(struct soap*, const char*, int, const struct __tds__GetSystemUris *, const char*); -SOAP_FMAC3 struct __tds__GetSystemUris * SOAP_FMAC4 soap_in___tds__GetSystemUris(struct soap*, const char*, struct __tds__GetSystemUris *, const char*); -SOAP_FMAC1 struct __tds__GetSystemUris * SOAP_FMAC2 soap_instantiate___tds__GetSystemUris(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetSystemUris * soap_new___tds__GetSystemUris(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetSystemUris(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetSystemUris * soap_new_req___tds__GetSystemUris( - struct soap *soap) -{ - struct __tds__GetSystemUris *_p = ::soap_new___tds__GetSystemUris(soap); - if (_p) - { ::soap_default___tds__GetSystemUris(soap, _p); - } - return _p; -} - -inline struct __tds__GetSystemUris * soap_new_set___tds__GetSystemUris( - struct soap *soap, - _tds__GetSystemUris *tds__GetSystemUris) -{ - struct __tds__GetSystemUris *_p = ::soap_new___tds__GetSystemUris(soap); - if (_p) - { ::soap_default___tds__GetSystemUris(soap, _p); - _p->tds__GetSystemUris = tds__GetSystemUris; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemUris(struct soap*, const struct __tds__GetSystemUris *, const char*, const char*); - -inline int soap_write___tds__GetSystemUris(struct soap *soap, struct __tds__GetSystemUris const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetSystemUris(soap, p), 0) || ::soap_put___tds__GetSystemUris(soap, p, "-tds:GetSystemUris", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetSystemUris(struct soap *soap, const char *URL, struct __tds__GetSystemUris const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemUris(soap, p), 0) || ::soap_put___tds__GetSystemUris(soap, p, "-tds:GetSystemUris", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetSystemUris(struct soap *soap, const char *URL, struct __tds__GetSystemUris const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemUris(soap, p), 0) || ::soap_put___tds__GetSystemUris(soap, p, "-tds:GetSystemUris", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetSystemUris(struct soap *soap, const char *URL, struct __tds__GetSystemUris const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemUris(soap, p), 0) || ::soap_put___tds__GetSystemUris(soap, p, "-tds:GetSystemUris", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetSystemUris * SOAP_FMAC4 soap_get___tds__GetSystemUris(struct soap*, struct __tds__GetSystemUris *, const char*, const char*); - -inline int soap_read___tds__GetSystemUris(struct soap *soap, struct __tds__GetSystemUris *p) -{ - if (p) - { ::soap_default___tds__GetSystemUris(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetSystemUris(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetSystemUris(struct soap *soap, const char *URL, struct __tds__GetSystemUris *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetSystemUris(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetSystemUris(struct soap *soap, struct __tds__GetSystemUris *p) -{ - if (::soap_read___tds__GetSystemUris(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__ScanAvailableDot11Networks_DEFINED -#define SOAP_TYPE___tds__ScanAvailableDot11Networks_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__ScanAvailableDot11Networks(struct soap*, struct __tds__ScanAvailableDot11Networks *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__ScanAvailableDot11Networks(struct soap*, const struct __tds__ScanAvailableDot11Networks *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__ScanAvailableDot11Networks(struct soap*, const char*, int, const struct __tds__ScanAvailableDot11Networks *, const char*); -SOAP_FMAC3 struct __tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_in___tds__ScanAvailableDot11Networks(struct soap*, const char*, struct __tds__ScanAvailableDot11Networks *, const char*); -SOAP_FMAC1 struct __tds__ScanAvailableDot11Networks * SOAP_FMAC2 soap_instantiate___tds__ScanAvailableDot11Networks(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__ScanAvailableDot11Networks * soap_new___tds__ScanAvailableDot11Networks(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__ScanAvailableDot11Networks(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__ScanAvailableDot11Networks * soap_new_req___tds__ScanAvailableDot11Networks( - struct soap *soap) -{ - struct __tds__ScanAvailableDot11Networks *_p = ::soap_new___tds__ScanAvailableDot11Networks(soap); - if (_p) - { ::soap_default___tds__ScanAvailableDot11Networks(soap, _p); - } - return _p; -} - -inline struct __tds__ScanAvailableDot11Networks * soap_new_set___tds__ScanAvailableDot11Networks( - struct soap *soap, - _tds__ScanAvailableDot11Networks *tds__ScanAvailableDot11Networks) -{ - struct __tds__ScanAvailableDot11Networks *_p = ::soap_new___tds__ScanAvailableDot11Networks(soap); - if (_p) - { ::soap_default___tds__ScanAvailableDot11Networks(soap, _p); - _p->tds__ScanAvailableDot11Networks = tds__ScanAvailableDot11Networks; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__ScanAvailableDot11Networks(struct soap*, const struct __tds__ScanAvailableDot11Networks *, const char*, const char*); - -inline int soap_write___tds__ScanAvailableDot11Networks(struct soap *soap, struct __tds__ScanAvailableDot11Networks const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__ScanAvailableDot11Networks(soap, p), 0) || ::soap_put___tds__ScanAvailableDot11Networks(soap, p, "-tds:ScanAvailableDot11Networks", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, struct __tds__ScanAvailableDot11Networks const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__ScanAvailableDot11Networks(soap, p), 0) || ::soap_put___tds__ScanAvailableDot11Networks(soap, p, "-tds:ScanAvailableDot11Networks", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, struct __tds__ScanAvailableDot11Networks const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__ScanAvailableDot11Networks(soap, p), 0) || ::soap_put___tds__ScanAvailableDot11Networks(soap, p, "-tds:ScanAvailableDot11Networks", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, struct __tds__ScanAvailableDot11Networks const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__ScanAvailableDot11Networks(soap, p), 0) || ::soap_put___tds__ScanAvailableDot11Networks(soap, p, "-tds:ScanAvailableDot11Networks", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__ScanAvailableDot11Networks * SOAP_FMAC4 soap_get___tds__ScanAvailableDot11Networks(struct soap*, struct __tds__ScanAvailableDot11Networks *, const char*, const char*); - -inline int soap_read___tds__ScanAvailableDot11Networks(struct soap *soap, struct __tds__ScanAvailableDot11Networks *p) -{ - if (p) - { ::soap_default___tds__ScanAvailableDot11Networks(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__ScanAvailableDot11Networks(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__ScanAvailableDot11Networks(struct soap *soap, const char *URL, struct __tds__ScanAvailableDot11Networks *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__ScanAvailableDot11Networks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__ScanAvailableDot11Networks(struct soap *soap, struct __tds__ScanAvailableDot11Networks *p) -{ - if (::soap_read___tds__ScanAvailableDot11Networks(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDot11Status_DEFINED -#define SOAP_TYPE___tds__GetDot11Status_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot11Status(struct soap*, struct __tds__GetDot11Status *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot11Status(struct soap*, const struct __tds__GetDot11Status *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot11Status(struct soap*, const char*, int, const struct __tds__GetDot11Status *, const char*); -SOAP_FMAC3 struct __tds__GetDot11Status * SOAP_FMAC4 soap_in___tds__GetDot11Status(struct soap*, const char*, struct __tds__GetDot11Status *, const char*); -SOAP_FMAC1 struct __tds__GetDot11Status * SOAP_FMAC2 soap_instantiate___tds__GetDot11Status(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDot11Status * soap_new___tds__GetDot11Status(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDot11Status(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDot11Status * soap_new_req___tds__GetDot11Status( - struct soap *soap) -{ - struct __tds__GetDot11Status *_p = ::soap_new___tds__GetDot11Status(soap); - if (_p) - { ::soap_default___tds__GetDot11Status(soap, _p); - } - return _p; -} - -inline struct __tds__GetDot11Status * soap_new_set___tds__GetDot11Status( - struct soap *soap, - _tds__GetDot11Status *tds__GetDot11Status) -{ - struct __tds__GetDot11Status *_p = ::soap_new___tds__GetDot11Status(soap); - if (_p) - { ::soap_default___tds__GetDot11Status(soap, _p); - _p->tds__GetDot11Status = tds__GetDot11Status; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot11Status(struct soap*, const struct __tds__GetDot11Status *, const char*, const char*); - -inline int soap_write___tds__GetDot11Status(struct soap *soap, struct __tds__GetDot11Status const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDot11Status(soap, p), 0) || ::soap_put___tds__GetDot11Status(soap, p, "-tds:GetDot11Status", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDot11Status(struct soap *soap, const char *URL, struct __tds__GetDot11Status const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot11Status(soap, p), 0) || ::soap_put___tds__GetDot11Status(soap, p, "-tds:GetDot11Status", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDot11Status(struct soap *soap, const char *URL, struct __tds__GetDot11Status const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot11Status(soap, p), 0) || ::soap_put___tds__GetDot11Status(soap, p, "-tds:GetDot11Status", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDot11Status(struct soap *soap, const char *URL, struct __tds__GetDot11Status const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot11Status(soap, p), 0) || ::soap_put___tds__GetDot11Status(soap, p, "-tds:GetDot11Status", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDot11Status * SOAP_FMAC4 soap_get___tds__GetDot11Status(struct soap*, struct __tds__GetDot11Status *, const char*, const char*); - -inline int soap_read___tds__GetDot11Status(struct soap *soap, struct __tds__GetDot11Status *p) -{ - if (p) - { ::soap_default___tds__GetDot11Status(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDot11Status(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDot11Status(struct soap *soap, const char *URL, struct __tds__GetDot11Status *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDot11Status(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDot11Status(struct soap *soap, struct __tds__GetDot11Status *p) -{ - if (::soap_read___tds__GetDot11Status(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDot11Capabilities_DEFINED -#define SOAP_TYPE___tds__GetDot11Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot11Capabilities(struct soap*, struct __tds__GetDot11Capabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot11Capabilities(struct soap*, const struct __tds__GetDot11Capabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot11Capabilities(struct soap*, const char*, int, const struct __tds__GetDot11Capabilities *, const char*); -SOAP_FMAC3 struct __tds__GetDot11Capabilities * SOAP_FMAC4 soap_in___tds__GetDot11Capabilities(struct soap*, const char*, struct __tds__GetDot11Capabilities *, const char*); -SOAP_FMAC1 struct __tds__GetDot11Capabilities * SOAP_FMAC2 soap_instantiate___tds__GetDot11Capabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDot11Capabilities * soap_new___tds__GetDot11Capabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDot11Capabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDot11Capabilities * soap_new_req___tds__GetDot11Capabilities( - struct soap *soap) -{ - struct __tds__GetDot11Capabilities *_p = ::soap_new___tds__GetDot11Capabilities(soap); - if (_p) - { ::soap_default___tds__GetDot11Capabilities(soap, _p); - } - return _p; -} - -inline struct __tds__GetDot11Capabilities * soap_new_set___tds__GetDot11Capabilities( - struct soap *soap, - _tds__GetDot11Capabilities *tds__GetDot11Capabilities) -{ - struct __tds__GetDot11Capabilities *_p = ::soap_new___tds__GetDot11Capabilities(soap); - if (_p) - { ::soap_default___tds__GetDot11Capabilities(soap, _p); - _p->tds__GetDot11Capabilities = tds__GetDot11Capabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot11Capabilities(struct soap*, const struct __tds__GetDot11Capabilities *, const char*, const char*); - -inline int soap_write___tds__GetDot11Capabilities(struct soap *soap, struct __tds__GetDot11Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDot11Capabilities(soap, p), 0) || ::soap_put___tds__GetDot11Capabilities(soap, p, "-tds:GetDot11Capabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDot11Capabilities(struct soap *soap, const char *URL, struct __tds__GetDot11Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot11Capabilities(soap, p), 0) || ::soap_put___tds__GetDot11Capabilities(soap, p, "-tds:GetDot11Capabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDot11Capabilities(struct soap *soap, const char *URL, struct __tds__GetDot11Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot11Capabilities(soap, p), 0) || ::soap_put___tds__GetDot11Capabilities(soap, p, "-tds:GetDot11Capabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDot11Capabilities(struct soap *soap, const char *URL, struct __tds__GetDot11Capabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot11Capabilities(soap, p), 0) || ::soap_put___tds__GetDot11Capabilities(soap, p, "-tds:GetDot11Capabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDot11Capabilities * SOAP_FMAC4 soap_get___tds__GetDot11Capabilities(struct soap*, struct __tds__GetDot11Capabilities *, const char*, const char*); - -inline int soap_read___tds__GetDot11Capabilities(struct soap *soap, struct __tds__GetDot11Capabilities *p) -{ - if (p) - { ::soap_default___tds__GetDot11Capabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDot11Capabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDot11Capabilities(struct soap *soap, const char *URL, struct __tds__GetDot11Capabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDot11Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDot11Capabilities(struct soap *soap, struct __tds__GetDot11Capabilities *p) -{ - if (::soap_read___tds__GetDot11Capabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__DeleteDot1XConfiguration_DEFINED -#define SOAP_TYPE___tds__DeleteDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteDot1XConfiguration(struct soap*, struct __tds__DeleteDot1XConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteDot1XConfiguration(struct soap*, const struct __tds__DeleteDot1XConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteDot1XConfiguration(struct soap*, const char*, int, const struct __tds__DeleteDot1XConfiguration *, const char*); -SOAP_FMAC3 struct __tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_in___tds__DeleteDot1XConfiguration(struct soap*, const char*, struct __tds__DeleteDot1XConfiguration *, const char*); -SOAP_FMAC1 struct __tds__DeleteDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__DeleteDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__DeleteDot1XConfiguration * soap_new___tds__DeleteDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__DeleteDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__DeleteDot1XConfiguration * soap_new_req___tds__DeleteDot1XConfiguration( - struct soap *soap) -{ - struct __tds__DeleteDot1XConfiguration *_p = ::soap_new___tds__DeleteDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__DeleteDot1XConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__DeleteDot1XConfiguration * soap_new_set___tds__DeleteDot1XConfiguration( - struct soap *soap, - _tds__DeleteDot1XConfiguration *tds__DeleteDot1XConfiguration) -{ - struct __tds__DeleteDot1XConfiguration *_p = ::soap_new___tds__DeleteDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__DeleteDot1XConfiguration(soap, _p); - _p->tds__DeleteDot1XConfiguration = tds__DeleteDot1XConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteDot1XConfiguration(struct soap*, const struct __tds__DeleteDot1XConfiguration *, const char*, const char*); - -inline int soap_write___tds__DeleteDot1XConfiguration(struct soap *soap, struct __tds__DeleteDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__DeleteDot1XConfiguration(soap, p), 0) || ::soap_put___tds__DeleteDot1XConfiguration(soap, p, "-tds:DeleteDot1XConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteDot1XConfiguration(soap, p), 0) || ::soap_put___tds__DeleteDot1XConfiguration(soap, p, "-tds:DeleteDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteDot1XConfiguration(soap, p), 0) || ::soap_put___tds__DeleteDot1XConfiguration(soap, p, "-tds:DeleteDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteDot1XConfiguration(soap, p), 0) || ::soap_put___tds__DeleteDot1XConfiguration(soap, p, "-tds:DeleteDot1XConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__DeleteDot1XConfiguration * SOAP_FMAC4 soap_get___tds__DeleteDot1XConfiguration(struct soap*, struct __tds__DeleteDot1XConfiguration *, const char*, const char*); - -inline int soap_read___tds__DeleteDot1XConfiguration(struct soap *soap, struct __tds__DeleteDot1XConfiguration *p) -{ - if (p) - { ::soap_default___tds__DeleteDot1XConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__DeleteDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__DeleteDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__DeleteDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__DeleteDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__DeleteDot1XConfiguration(struct soap *soap, struct __tds__DeleteDot1XConfiguration *p) -{ - if (::soap_read___tds__DeleteDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDot1XConfigurations_DEFINED -#define SOAP_TYPE___tds__GetDot1XConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot1XConfigurations(struct soap*, struct __tds__GetDot1XConfigurations *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot1XConfigurations(struct soap*, const struct __tds__GetDot1XConfigurations *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot1XConfigurations(struct soap*, const char*, int, const struct __tds__GetDot1XConfigurations *, const char*); -SOAP_FMAC3 struct __tds__GetDot1XConfigurations * SOAP_FMAC4 soap_in___tds__GetDot1XConfigurations(struct soap*, const char*, struct __tds__GetDot1XConfigurations *, const char*); -SOAP_FMAC1 struct __tds__GetDot1XConfigurations * SOAP_FMAC2 soap_instantiate___tds__GetDot1XConfigurations(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDot1XConfigurations * soap_new___tds__GetDot1XConfigurations(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDot1XConfigurations(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDot1XConfigurations * soap_new_req___tds__GetDot1XConfigurations( - struct soap *soap) -{ - struct __tds__GetDot1XConfigurations *_p = ::soap_new___tds__GetDot1XConfigurations(soap); - if (_p) - { ::soap_default___tds__GetDot1XConfigurations(soap, _p); - } - return _p; -} - -inline struct __tds__GetDot1XConfigurations * soap_new_set___tds__GetDot1XConfigurations( - struct soap *soap, - _tds__GetDot1XConfigurations *tds__GetDot1XConfigurations) -{ - struct __tds__GetDot1XConfigurations *_p = ::soap_new___tds__GetDot1XConfigurations(soap); - if (_p) - { ::soap_default___tds__GetDot1XConfigurations(soap, _p); - _p->tds__GetDot1XConfigurations = tds__GetDot1XConfigurations; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot1XConfigurations(struct soap*, const struct __tds__GetDot1XConfigurations *, const char*, const char*); - -inline int soap_write___tds__GetDot1XConfigurations(struct soap *soap, struct __tds__GetDot1XConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDot1XConfigurations(soap, p), 0) || ::soap_put___tds__GetDot1XConfigurations(soap, p, "-tds:GetDot1XConfigurations", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDot1XConfigurations(struct soap *soap, const char *URL, struct __tds__GetDot1XConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot1XConfigurations(soap, p), 0) || ::soap_put___tds__GetDot1XConfigurations(soap, p, "-tds:GetDot1XConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDot1XConfigurations(struct soap *soap, const char *URL, struct __tds__GetDot1XConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot1XConfigurations(soap, p), 0) || ::soap_put___tds__GetDot1XConfigurations(soap, p, "-tds:GetDot1XConfigurations", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDot1XConfigurations(struct soap *soap, const char *URL, struct __tds__GetDot1XConfigurations const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot1XConfigurations(soap, p), 0) || ::soap_put___tds__GetDot1XConfigurations(soap, p, "-tds:GetDot1XConfigurations", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDot1XConfigurations * SOAP_FMAC4 soap_get___tds__GetDot1XConfigurations(struct soap*, struct __tds__GetDot1XConfigurations *, const char*, const char*); - -inline int soap_read___tds__GetDot1XConfigurations(struct soap *soap, struct __tds__GetDot1XConfigurations *p) -{ - if (p) - { ::soap_default___tds__GetDot1XConfigurations(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDot1XConfigurations(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDot1XConfigurations(struct soap *soap, const char *URL, struct __tds__GetDot1XConfigurations *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDot1XConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDot1XConfigurations(struct soap *soap, struct __tds__GetDot1XConfigurations *p) -{ - if (::soap_read___tds__GetDot1XConfigurations(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDot1XConfiguration_DEFINED -#define SOAP_TYPE___tds__GetDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDot1XConfiguration(struct soap*, struct __tds__GetDot1XConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDot1XConfiguration(struct soap*, const struct __tds__GetDot1XConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDot1XConfiguration(struct soap*, const char*, int, const struct __tds__GetDot1XConfiguration *, const char*); -SOAP_FMAC3 struct __tds__GetDot1XConfiguration * SOAP_FMAC4 soap_in___tds__GetDot1XConfiguration(struct soap*, const char*, struct __tds__GetDot1XConfiguration *, const char*); -SOAP_FMAC1 struct __tds__GetDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__GetDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDot1XConfiguration * soap_new___tds__GetDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDot1XConfiguration * soap_new_req___tds__GetDot1XConfiguration( - struct soap *soap) -{ - struct __tds__GetDot1XConfiguration *_p = ::soap_new___tds__GetDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__GetDot1XConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__GetDot1XConfiguration * soap_new_set___tds__GetDot1XConfiguration( - struct soap *soap, - _tds__GetDot1XConfiguration *tds__GetDot1XConfiguration) -{ - struct __tds__GetDot1XConfiguration *_p = ::soap_new___tds__GetDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__GetDot1XConfiguration(soap, _p); - _p->tds__GetDot1XConfiguration = tds__GetDot1XConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDot1XConfiguration(struct soap*, const struct __tds__GetDot1XConfiguration *, const char*, const char*); - -inline int soap_write___tds__GetDot1XConfiguration(struct soap *soap, struct __tds__GetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__GetDot1XConfiguration(soap, p, "-tds:GetDot1XConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__GetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__GetDot1XConfiguration(soap, p, "-tds:GetDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__GetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__GetDot1XConfiguration(soap, p, "-tds:GetDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__GetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__GetDot1XConfiguration(soap, p, "-tds:GetDot1XConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDot1XConfiguration * SOAP_FMAC4 soap_get___tds__GetDot1XConfiguration(struct soap*, struct __tds__GetDot1XConfiguration *, const char*, const char*); - -inline int soap_read___tds__GetDot1XConfiguration(struct soap *soap, struct __tds__GetDot1XConfiguration *p) -{ - if (p) - { ::soap_default___tds__GetDot1XConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__GetDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDot1XConfiguration(struct soap *soap, struct __tds__GetDot1XConfiguration *p) -{ - if (::soap_read___tds__GetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetDot1XConfiguration_DEFINED -#define SOAP_TYPE___tds__SetDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDot1XConfiguration(struct soap*, struct __tds__SetDot1XConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDot1XConfiguration(struct soap*, const struct __tds__SetDot1XConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDot1XConfiguration(struct soap*, const char*, int, const struct __tds__SetDot1XConfiguration *, const char*); -SOAP_FMAC3 struct __tds__SetDot1XConfiguration * SOAP_FMAC4 soap_in___tds__SetDot1XConfiguration(struct soap*, const char*, struct __tds__SetDot1XConfiguration *, const char*); -SOAP_FMAC1 struct __tds__SetDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__SetDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetDot1XConfiguration * soap_new___tds__SetDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetDot1XConfiguration * soap_new_req___tds__SetDot1XConfiguration( - struct soap *soap) -{ - struct __tds__SetDot1XConfiguration *_p = ::soap_new___tds__SetDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__SetDot1XConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__SetDot1XConfiguration * soap_new_set___tds__SetDot1XConfiguration( - struct soap *soap, - _tds__SetDot1XConfiguration *tds__SetDot1XConfiguration) -{ - struct __tds__SetDot1XConfiguration *_p = ::soap_new___tds__SetDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__SetDot1XConfiguration(soap, _p); - _p->tds__SetDot1XConfiguration = tds__SetDot1XConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDot1XConfiguration(struct soap*, const struct __tds__SetDot1XConfiguration *, const char*, const char*); - -inline int soap_write___tds__SetDot1XConfiguration(struct soap *soap, struct __tds__SetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__SetDot1XConfiguration(soap, p, "-tds:SetDot1XConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__SetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__SetDot1XConfiguration(soap, p, "-tds:SetDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__SetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__SetDot1XConfiguration(soap, p, "-tds:SetDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__SetDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDot1XConfiguration(soap, p), 0) || ::soap_put___tds__SetDot1XConfiguration(soap, p, "-tds:SetDot1XConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetDot1XConfiguration * SOAP_FMAC4 soap_get___tds__SetDot1XConfiguration(struct soap*, struct __tds__SetDot1XConfiguration *, const char*, const char*); - -inline int soap_read___tds__SetDot1XConfiguration(struct soap *soap, struct __tds__SetDot1XConfiguration *p) -{ - if (p) - { ::soap_default___tds__SetDot1XConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__SetDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetDot1XConfiguration(struct soap *soap, struct __tds__SetDot1XConfiguration *p) -{ - if (::soap_read___tds__SetDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__CreateDot1XConfiguration_DEFINED -#define SOAP_TYPE___tds__CreateDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateDot1XConfiguration(struct soap*, struct __tds__CreateDot1XConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateDot1XConfiguration(struct soap*, const struct __tds__CreateDot1XConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateDot1XConfiguration(struct soap*, const char*, int, const struct __tds__CreateDot1XConfiguration *, const char*); -SOAP_FMAC3 struct __tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_in___tds__CreateDot1XConfiguration(struct soap*, const char*, struct __tds__CreateDot1XConfiguration *, const char*); -SOAP_FMAC1 struct __tds__CreateDot1XConfiguration * SOAP_FMAC2 soap_instantiate___tds__CreateDot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__CreateDot1XConfiguration * soap_new___tds__CreateDot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__CreateDot1XConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__CreateDot1XConfiguration * soap_new_req___tds__CreateDot1XConfiguration( - struct soap *soap) -{ - struct __tds__CreateDot1XConfiguration *_p = ::soap_new___tds__CreateDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__CreateDot1XConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__CreateDot1XConfiguration * soap_new_set___tds__CreateDot1XConfiguration( - struct soap *soap, - _tds__CreateDot1XConfiguration *tds__CreateDot1XConfiguration) -{ - struct __tds__CreateDot1XConfiguration *_p = ::soap_new___tds__CreateDot1XConfiguration(soap); - if (_p) - { ::soap_default___tds__CreateDot1XConfiguration(soap, _p); - _p->tds__CreateDot1XConfiguration = tds__CreateDot1XConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateDot1XConfiguration(struct soap*, const struct __tds__CreateDot1XConfiguration *, const char*, const char*); - -inline int soap_write___tds__CreateDot1XConfiguration(struct soap *soap, struct __tds__CreateDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__CreateDot1XConfiguration(soap, p), 0) || ::soap_put___tds__CreateDot1XConfiguration(soap, p, "-tds:CreateDot1XConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__CreateDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateDot1XConfiguration(soap, p), 0) || ::soap_put___tds__CreateDot1XConfiguration(soap, p, "-tds:CreateDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__CreateDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateDot1XConfiguration(soap, p), 0) || ::soap_put___tds__CreateDot1XConfiguration(soap, p, "-tds:CreateDot1XConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__CreateDot1XConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateDot1XConfiguration(soap, p), 0) || ::soap_put___tds__CreateDot1XConfiguration(soap, p, "-tds:CreateDot1XConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__CreateDot1XConfiguration * SOAP_FMAC4 soap_get___tds__CreateDot1XConfiguration(struct soap*, struct __tds__CreateDot1XConfiguration *, const char*, const char*); - -inline int soap_read___tds__CreateDot1XConfiguration(struct soap *soap, struct __tds__CreateDot1XConfiguration *p) -{ - if (p) - { ::soap_default___tds__CreateDot1XConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__CreateDot1XConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__CreateDot1XConfiguration(struct soap *soap, const char *URL, struct __tds__CreateDot1XConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__CreateDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__CreateDot1XConfiguration(struct soap *soap, struct __tds__CreateDot1XConfiguration *p) -{ - if (::soap_read___tds__CreateDot1XConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__LoadCACertificates_DEFINED -#define SOAP_TYPE___tds__LoadCACertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__LoadCACertificates(struct soap*, struct __tds__LoadCACertificates *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__LoadCACertificates(struct soap*, const struct __tds__LoadCACertificates *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__LoadCACertificates(struct soap*, const char*, int, const struct __tds__LoadCACertificates *, const char*); -SOAP_FMAC3 struct __tds__LoadCACertificates * SOAP_FMAC4 soap_in___tds__LoadCACertificates(struct soap*, const char*, struct __tds__LoadCACertificates *, const char*); -SOAP_FMAC1 struct __tds__LoadCACertificates * SOAP_FMAC2 soap_instantiate___tds__LoadCACertificates(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__LoadCACertificates * soap_new___tds__LoadCACertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__LoadCACertificates(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__LoadCACertificates * soap_new_req___tds__LoadCACertificates( - struct soap *soap) -{ - struct __tds__LoadCACertificates *_p = ::soap_new___tds__LoadCACertificates(soap); - if (_p) - { ::soap_default___tds__LoadCACertificates(soap, _p); - } - return _p; -} - -inline struct __tds__LoadCACertificates * soap_new_set___tds__LoadCACertificates( - struct soap *soap, - _tds__LoadCACertificates *tds__LoadCACertificates) -{ - struct __tds__LoadCACertificates *_p = ::soap_new___tds__LoadCACertificates(soap); - if (_p) - { ::soap_default___tds__LoadCACertificates(soap, _p); - _p->tds__LoadCACertificates = tds__LoadCACertificates; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__LoadCACertificates(struct soap*, const struct __tds__LoadCACertificates *, const char*, const char*); - -inline int soap_write___tds__LoadCACertificates(struct soap *soap, struct __tds__LoadCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__LoadCACertificates(soap, p), 0) || ::soap_put___tds__LoadCACertificates(soap, p, "-tds:LoadCACertificates", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__LoadCACertificates(struct soap *soap, const char *URL, struct __tds__LoadCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCACertificates(soap, p), 0) || ::soap_put___tds__LoadCACertificates(soap, p, "-tds:LoadCACertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__LoadCACertificates(struct soap *soap, const char *URL, struct __tds__LoadCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCACertificates(soap, p), 0) || ::soap_put___tds__LoadCACertificates(soap, p, "-tds:LoadCACertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__LoadCACertificates(struct soap *soap, const char *URL, struct __tds__LoadCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCACertificates(soap, p), 0) || ::soap_put___tds__LoadCACertificates(soap, p, "-tds:LoadCACertificates", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__LoadCACertificates * SOAP_FMAC4 soap_get___tds__LoadCACertificates(struct soap*, struct __tds__LoadCACertificates *, const char*, const char*); - -inline int soap_read___tds__LoadCACertificates(struct soap *soap, struct __tds__LoadCACertificates *p) -{ - if (p) - { ::soap_default___tds__LoadCACertificates(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__LoadCACertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__LoadCACertificates(struct soap *soap, const char *URL, struct __tds__LoadCACertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__LoadCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__LoadCACertificates(struct soap *soap, struct __tds__LoadCACertificates *p) -{ - if (::soap_read___tds__LoadCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetCertificateInformation_DEFINED -#define SOAP_TYPE___tds__GetCertificateInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCertificateInformation(struct soap*, struct __tds__GetCertificateInformation *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCertificateInformation(struct soap*, const struct __tds__GetCertificateInformation *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCertificateInformation(struct soap*, const char*, int, const struct __tds__GetCertificateInformation *, const char*); -SOAP_FMAC3 struct __tds__GetCertificateInformation * SOAP_FMAC4 soap_in___tds__GetCertificateInformation(struct soap*, const char*, struct __tds__GetCertificateInformation *, const char*); -SOAP_FMAC1 struct __tds__GetCertificateInformation * SOAP_FMAC2 soap_instantiate___tds__GetCertificateInformation(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetCertificateInformation * soap_new___tds__GetCertificateInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetCertificateInformation(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetCertificateInformation * soap_new_req___tds__GetCertificateInformation( - struct soap *soap) -{ - struct __tds__GetCertificateInformation *_p = ::soap_new___tds__GetCertificateInformation(soap); - if (_p) - { ::soap_default___tds__GetCertificateInformation(soap, _p); - } - return _p; -} - -inline struct __tds__GetCertificateInformation * soap_new_set___tds__GetCertificateInformation( - struct soap *soap, - _tds__GetCertificateInformation *tds__GetCertificateInformation) -{ - struct __tds__GetCertificateInformation *_p = ::soap_new___tds__GetCertificateInformation(soap); - if (_p) - { ::soap_default___tds__GetCertificateInformation(soap, _p); - _p->tds__GetCertificateInformation = tds__GetCertificateInformation; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCertificateInformation(struct soap*, const struct __tds__GetCertificateInformation *, const char*, const char*); - -inline int soap_write___tds__GetCertificateInformation(struct soap *soap, struct __tds__GetCertificateInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetCertificateInformation(soap, p), 0) || ::soap_put___tds__GetCertificateInformation(soap, p, "-tds:GetCertificateInformation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetCertificateInformation(struct soap *soap, const char *URL, struct __tds__GetCertificateInformation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificateInformation(soap, p), 0) || ::soap_put___tds__GetCertificateInformation(soap, p, "-tds:GetCertificateInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetCertificateInformation(struct soap *soap, const char *URL, struct __tds__GetCertificateInformation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificateInformation(soap, p), 0) || ::soap_put___tds__GetCertificateInformation(soap, p, "-tds:GetCertificateInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetCertificateInformation(struct soap *soap, const char *URL, struct __tds__GetCertificateInformation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificateInformation(soap, p), 0) || ::soap_put___tds__GetCertificateInformation(soap, p, "-tds:GetCertificateInformation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetCertificateInformation * SOAP_FMAC4 soap_get___tds__GetCertificateInformation(struct soap*, struct __tds__GetCertificateInformation *, const char*, const char*); - -inline int soap_read___tds__GetCertificateInformation(struct soap *soap, struct __tds__GetCertificateInformation *p) -{ - if (p) - { ::soap_default___tds__GetCertificateInformation(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetCertificateInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetCertificateInformation(struct soap *soap, const char *URL, struct __tds__GetCertificateInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetCertificateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetCertificateInformation(struct soap *soap, struct __tds__GetCertificateInformation *p) -{ - if (::soap_read___tds__GetCertificateInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__LoadCertificateWithPrivateKey_DEFINED -#define SOAP_TYPE___tds__LoadCertificateWithPrivateKey_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__LoadCertificateWithPrivateKey(struct soap*, struct __tds__LoadCertificateWithPrivateKey *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__LoadCertificateWithPrivateKey(struct soap*, const struct __tds__LoadCertificateWithPrivateKey *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__LoadCertificateWithPrivateKey(struct soap*, const char*, int, const struct __tds__LoadCertificateWithPrivateKey *, const char*); -SOAP_FMAC3 struct __tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_in___tds__LoadCertificateWithPrivateKey(struct soap*, const char*, struct __tds__LoadCertificateWithPrivateKey *, const char*); -SOAP_FMAC1 struct __tds__LoadCertificateWithPrivateKey * SOAP_FMAC2 soap_instantiate___tds__LoadCertificateWithPrivateKey(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__LoadCertificateWithPrivateKey * soap_new___tds__LoadCertificateWithPrivateKey(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__LoadCertificateWithPrivateKey(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__LoadCertificateWithPrivateKey * soap_new_req___tds__LoadCertificateWithPrivateKey( - struct soap *soap) -{ - struct __tds__LoadCertificateWithPrivateKey *_p = ::soap_new___tds__LoadCertificateWithPrivateKey(soap); - if (_p) - { ::soap_default___tds__LoadCertificateWithPrivateKey(soap, _p); - } - return _p; -} - -inline struct __tds__LoadCertificateWithPrivateKey * soap_new_set___tds__LoadCertificateWithPrivateKey( - struct soap *soap, - _tds__LoadCertificateWithPrivateKey *tds__LoadCertificateWithPrivateKey) -{ - struct __tds__LoadCertificateWithPrivateKey *_p = ::soap_new___tds__LoadCertificateWithPrivateKey(soap); - if (_p) - { ::soap_default___tds__LoadCertificateWithPrivateKey(soap, _p); - _p->tds__LoadCertificateWithPrivateKey = tds__LoadCertificateWithPrivateKey; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__LoadCertificateWithPrivateKey(struct soap*, const struct __tds__LoadCertificateWithPrivateKey *, const char*, const char*); - -inline int soap_write___tds__LoadCertificateWithPrivateKey(struct soap *soap, struct __tds__LoadCertificateWithPrivateKey const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__LoadCertificateWithPrivateKey(soap, p), 0) || ::soap_put___tds__LoadCertificateWithPrivateKey(soap, p, "-tds:LoadCertificateWithPrivateKey", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, struct __tds__LoadCertificateWithPrivateKey const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCertificateWithPrivateKey(soap, p), 0) || ::soap_put___tds__LoadCertificateWithPrivateKey(soap, p, "-tds:LoadCertificateWithPrivateKey", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, struct __tds__LoadCertificateWithPrivateKey const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCertificateWithPrivateKey(soap, p), 0) || ::soap_put___tds__LoadCertificateWithPrivateKey(soap, p, "-tds:LoadCertificateWithPrivateKey", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, struct __tds__LoadCertificateWithPrivateKey const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCertificateWithPrivateKey(soap, p), 0) || ::soap_put___tds__LoadCertificateWithPrivateKey(soap, p, "-tds:LoadCertificateWithPrivateKey", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__LoadCertificateWithPrivateKey * SOAP_FMAC4 soap_get___tds__LoadCertificateWithPrivateKey(struct soap*, struct __tds__LoadCertificateWithPrivateKey *, const char*, const char*); - -inline int soap_read___tds__LoadCertificateWithPrivateKey(struct soap *soap, struct __tds__LoadCertificateWithPrivateKey *p) -{ - if (p) - { ::soap_default___tds__LoadCertificateWithPrivateKey(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__LoadCertificateWithPrivateKey(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__LoadCertificateWithPrivateKey(struct soap *soap, const char *URL, struct __tds__LoadCertificateWithPrivateKey *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__LoadCertificateWithPrivateKey(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__LoadCertificateWithPrivateKey(struct soap *soap, struct __tds__LoadCertificateWithPrivateKey *p) -{ - if (::soap_read___tds__LoadCertificateWithPrivateKey(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetCACertificates_DEFINED -#define SOAP_TYPE___tds__GetCACertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCACertificates(struct soap*, struct __tds__GetCACertificates *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCACertificates(struct soap*, const struct __tds__GetCACertificates *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCACertificates(struct soap*, const char*, int, const struct __tds__GetCACertificates *, const char*); -SOAP_FMAC3 struct __tds__GetCACertificates * SOAP_FMAC4 soap_in___tds__GetCACertificates(struct soap*, const char*, struct __tds__GetCACertificates *, const char*); -SOAP_FMAC1 struct __tds__GetCACertificates * SOAP_FMAC2 soap_instantiate___tds__GetCACertificates(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetCACertificates * soap_new___tds__GetCACertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetCACertificates(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetCACertificates * soap_new_req___tds__GetCACertificates( - struct soap *soap) -{ - struct __tds__GetCACertificates *_p = ::soap_new___tds__GetCACertificates(soap); - if (_p) - { ::soap_default___tds__GetCACertificates(soap, _p); - } - return _p; -} - -inline struct __tds__GetCACertificates * soap_new_set___tds__GetCACertificates( - struct soap *soap, - _tds__GetCACertificates *tds__GetCACertificates) -{ - struct __tds__GetCACertificates *_p = ::soap_new___tds__GetCACertificates(soap); - if (_p) - { ::soap_default___tds__GetCACertificates(soap, _p); - _p->tds__GetCACertificates = tds__GetCACertificates; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCACertificates(struct soap*, const struct __tds__GetCACertificates *, const char*, const char*); - -inline int soap_write___tds__GetCACertificates(struct soap *soap, struct __tds__GetCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetCACertificates(soap, p), 0) || ::soap_put___tds__GetCACertificates(soap, p, "-tds:GetCACertificates", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetCACertificates(struct soap *soap, const char *URL, struct __tds__GetCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCACertificates(soap, p), 0) || ::soap_put___tds__GetCACertificates(soap, p, "-tds:GetCACertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetCACertificates(struct soap *soap, const char *URL, struct __tds__GetCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCACertificates(soap, p), 0) || ::soap_put___tds__GetCACertificates(soap, p, "-tds:GetCACertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetCACertificates(struct soap *soap, const char *URL, struct __tds__GetCACertificates const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCACertificates(soap, p), 0) || ::soap_put___tds__GetCACertificates(soap, p, "-tds:GetCACertificates", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetCACertificates * SOAP_FMAC4 soap_get___tds__GetCACertificates(struct soap*, struct __tds__GetCACertificates *, const char*, const char*); - -inline int soap_read___tds__GetCACertificates(struct soap *soap, struct __tds__GetCACertificates *p) -{ - if (p) - { ::soap_default___tds__GetCACertificates(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetCACertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetCACertificates(struct soap *soap, const char *URL, struct __tds__GetCACertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetCACertificates(struct soap *soap, struct __tds__GetCACertificates *p) -{ - if (::soap_read___tds__GetCACertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SendAuxiliaryCommand_DEFINED -#define SOAP_TYPE___tds__SendAuxiliaryCommand_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SendAuxiliaryCommand(struct soap*, struct __tds__SendAuxiliaryCommand *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SendAuxiliaryCommand(struct soap*, const struct __tds__SendAuxiliaryCommand *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SendAuxiliaryCommand(struct soap*, const char*, int, const struct __tds__SendAuxiliaryCommand *, const char*); -SOAP_FMAC3 struct __tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_in___tds__SendAuxiliaryCommand(struct soap*, const char*, struct __tds__SendAuxiliaryCommand *, const char*); -SOAP_FMAC1 struct __tds__SendAuxiliaryCommand * SOAP_FMAC2 soap_instantiate___tds__SendAuxiliaryCommand(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SendAuxiliaryCommand * soap_new___tds__SendAuxiliaryCommand(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SendAuxiliaryCommand(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SendAuxiliaryCommand * soap_new_req___tds__SendAuxiliaryCommand( - struct soap *soap) -{ - struct __tds__SendAuxiliaryCommand *_p = ::soap_new___tds__SendAuxiliaryCommand(soap); - if (_p) - { ::soap_default___tds__SendAuxiliaryCommand(soap, _p); - } - return _p; -} - -inline struct __tds__SendAuxiliaryCommand * soap_new_set___tds__SendAuxiliaryCommand( - struct soap *soap, - _tds__SendAuxiliaryCommand *tds__SendAuxiliaryCommand) -{ - struct __tds__SendAuxiliaryCommand *_p = ::soap_new___tds__SendAuxiliaryCommand(soap); - if (_p) - { ::soap_default___tds__SendAuxiliaryCommand(soap, _p); - _p->tds__SendAuxiliaryCommand = tds__SendAuxiliaryCommand; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SendAuxiliaryCommand(struct soap*, const struct __tds__SendAuxiliaryCommand *, const char*, const char*); - -inline int soap_write___tds__SendAuxiliaryCommand(struct soap *soap, struct __tds__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tds__SendAuxiliaryCommand(soap, p, "-tds:SendAuxiliaryCommand", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tds__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tds__SendAuxiliaryCommand(soap, p, "-tds:SendAuxiliaryCommand", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tds__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tds__SendAuxiliaryCommand(soap, p, "-tds:SendAuxiliaryCommand", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tds__SendAuxiliaryCommand const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SendAuxiliaryCommand(soap, p), 0) || ::soap_put___tds__SendAuxiliaryCommand(soap, p, "-tds:SendAuxiliaryCommand", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SendAuxiliaryCommand * SOAP_FMAC4 soap_get___tds__SendAuxiliaryCommand(struct soap*, struct __tds__SendAuxiliaryCommand *, const char*, const char*); - -inline int soap_read___tds__SendAuxiliaryCommand(struct soap *soap, struct __tds__SendAuxiliaryCommand *p) -{ - if (p) - { ::soap_default___tds__SendAuxiliaryCommand(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SendAuxiliaryCommand(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SendAuxiliaryCommand(struct soap *soap, const char *URL, struct __tds__SendAuxiliaryCommand *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SendAuxiliaryCommand(struct soap *soap, struct __tds__SendAuxiliaryCommand *p) -{ - if (::soap_read___tds__SendAuxiliaryCommand(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetRelayOutputState_DEFINED -#define SOAP_TYPE___tds__SetRelayOutputState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRelayOutputState(struct soap*, struct __tds__SetRelayOutputState *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRelayOutputState(struct soap*, const struct __tds__SetRelayOutputState *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRelayOutputState(struct soap*, const char*, int, const struct __tds__SetRelayOutputState *, const char*); -SOAP_FMAC3 struct __tds__SetRelayOutputState * SOAP_FMAC4 soap_in___tds__SetRelayOutputState(struct soap*, const char*, struct __tds__SetRelayOutputState *, const char*); -SOAP_FMAC1 struct __tds__SetRelayOutputState * SOAP_FMAC2 soap_instantiate___tds__SetRelayOutputState(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetRelayOutputState * soap_new___tds__SetRelayOutputState(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetRelayOutputState(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetRelayOutputState * soap_new_req___tds__SetRelayOutputState( - struct soap *soap) -{ - struct __tds__SetRelayOutputState *_p = ::soap_new___tds__SetRelayOutputState(soap); - if (_p) - { ::soap_default___tds__SetRelayOutputState(soap, _p); - } - return _p; -} - -inline struct __tds__SetRelayOutputState * soap_new_set___tds__SetRelayOutputState( - struct soap *soap, - _tds__SetRelayOutputState *tds__SetRelayOutputState) -{ - struct __tds__SetRelayOutputState *_p = ::soap_new___tds__SetRelayOutputState(soap); - if (_p) - { ::soap_default___tds__SetRelayOutputState(soap, _p); - _p->tds__SetRelayOutputState = tds__SetRelayOutputState; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRelayOutputState(struct soap*, const struct __tds__SetRelayOutputState *, const char*, const char*); - -inline int soap_write___tds__SetRelayOutputState(struct soap *soap, struct __tds__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetRelayOutputState(soap, p), 0) || ::soap_put___tds__SetRelayOutputState(soap, p, "-tds:SetRelayOutputState", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetRelayOutputState(struct soap *soap, const char *URL, struct __tds__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRelayOutputState(soap, p), 0) || ::soap_put___tds__SetRelayOutputState(soap, p, "-tds:SetRelayOutputState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetRelayOutputState(struct soap *soap, const char *URL, struct __tds__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRelayOutputState(soap, p), 0) || ::soap_put___tds__SetRelayOutputState(soap, p, "-tds:SetRelayOutputState", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetRelayOutputState(struct soap *soap, const char *URL, struct __tds__SetRelayOutputState const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRelayOutputState(soap, p), 0) || ::soap_put___tds__SetRelayOutputState(soap, p, "-tds:SetRelayOutputState", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetRelayOutputState * SOAP_FMAC4 soap_get___tds__SetRelayOutputState(struct soap*, struct __tds__SetRelayOutputState *, const char*, const char*); - -inline int soap_read___tds__SetRelayOutputState(struct soap *soap, struct __tds__SetRelayOutputState *p) -{ - if (p) - { ::soap_default___tds__SetRelayOutputState(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetRelayOutputState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetRelayOutputState(struct soap *soap, const char *URL, struct __tds__SetRelayOutputState *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetRelayOutputState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetRelayOutputState(struct soap *soap, struct __tds__SetRelayOutputState *p) -{ - if (::soap_read___tds__SetRelayOutputState(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetRelayOutputSettings_DEFINED -#define SOAP_TYPE___tds__SetRelayOutputSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRelayOutputSettings(struct soap*, struct __tds__SetRelayOutputSettings *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRelayOutputSettings(struct soap*, const struct __tds__SetRelayOutputSettings *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRelayOutputSettings(struct soap*, const char*, int, const struct __tds__SetRelayOutputSettings *, const char*); -SOAP_FMAC3 struct __tds__SetRelayOutputSettings * SOAP_FMAC4 soap_in___tds__SetRelayOutputSettings(struct soap*, const char*, struct __tds__SetRelayOutputSettings *, const char*); -SOAP_FMAC1 struct __tds__SetRelayOutputSettings * SOAP_FMAC2 soap_instantiate___tds__SetRelayOutputSettings(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetRelayOutputSettings * soap_new___tds__SetRelayOutputSettings(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetRelayOutputSettings(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetRelayOutputSettings * soap_new_req___tds__SetRelayOutputSettings( - struct soap *soap) -{ - struct __tds__SetRelayOutputSettings *_p = ::soap_new___tds__SetRelayOutputSettings(soap); - if (_p) - { ::soap_default___tds__SetRelayOutputSettings(soap, _p); - } - return _p; -} - -inline struct __tds__SetRelayOutputSettings * soap_new_set___tds__SetRelayOutputSettings( - struct soap *soap, - _tds__SetRelayOutputSettings *tds__SetRelayOutputSettings) -{ - struct __tds__SetRelayOutputSettings *_p = ::soap_new___tds__SetRelayOutputSettings(soap); - if (_p) - { ::soap_default___tds__SetRelayOutputSettings(soap, _p); - _p->tds__SetRelayOutputSettings = tds__SetRelayOutputSettings; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRelayOutputSettings(struct soap*, const struct __tds__SetRelayOutputSettings *, const char*, const char*); - -inline int soap_write___tds__SetRelayOutputSettings(struct soap *soap, struct __tds__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tds__SetRelayOutputSettings(soap, p, "-tds:SetRelayOutputSettings", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tds__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tds__SetRelayOutputSettings(soap, p, "-tds:SetRelayOutputSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tds__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tds__SetRelayOutputSettings(soap, p, "-tds:SetRelayOutputSettings", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tds__SetRelayOutputSettings const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRelayOutputSettings(soap, p), 0) || ::soap_put___tds__SetRelayOutputSettings(soap, p, "-tds:SetRelayOutputSettings", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetRelayOutputSettings * SOAP_FMAC4 soap_get___tds__SetRelayOutputSettings(struct soap*, struct __tds__SetRelayOutputSettings *, const char*, const char*); - -inline int soap_read___tds__SetRelayOutputSettings(struct soap *soap, struct __tds__SetRelayOutputSettings *p) -{ - if (p) - { ::soap_default___tds__SetRelayOutputSettings(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetRelayOutputSettings(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetRelayOutputSettings(struct soap *soap, const char *URL, struct __tds__SetRelayOutputSettings *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetRelayOutputSettings(struct soap *soap, struct __tds__SetRelayOutputSettings *p) -{ - if (::soap_read___tds__SetRelayOutputSettings(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetRelayOutputs_DEFINED -#define SOAP_TYPE___tds__GetRelayOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetRelayOutputs(struct soap*, struct __tds__GetRelayOutputs *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetRelayOutputs(struct soap*, const struct __tds__GetRelayOutputs *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetRelayOutputs(struct soap*, const char*, int, const struct __tds__GetRelayOutputs *, const char*); -SOAP_FMAC3 struct __tds__GetRelayOutputs * SOAP_FMAC4 soap_in___tds__GetRelayOutputs(struct soap*, const char*, struct __tds__GetRelayOutputs *, const char*); -SOAP_FMAC1 struct __tds__GetRelayOutputs * SOAP_FMAC2 soap_instantiate___tds__GetRelayOutputs(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetRelayOutputs * soap_new___tds__GetRelayOutputs(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetRelayOutputs(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetRelayOutputs * soap_new_req___tds__GetRelayOutputs( - struct soap *soap) -{ - struct __tds__GetRelayOutputs *_p = ::soap_new___tds__GetRelayOutputs(soap); - if (_p) - { ::soap_default___tds__GetRelayOutputs(soap, _p); - } - return _p; -} - -inline struct __tds__GetRelayOutputs * soap_new_set___tds__GetRelayOutputs( - struct soap *soap, - _tds__GetRelayOutputs *tds__GetRelayOutputs) -{ - struct __tds__GetRelayOutputs *_p = ::soap_new___tds__GetRelayOutputs(soap); - if (_p) - { ::soap_default___tds__GetRelayOutputs(soap, _p); - _p->tds__GetRelayOutputs = tds__GetRelayOutputs; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetRelayOutputs(struct soap*, const struct __tds__GetRelayOutputs *, const char*, const char*); - -inline int soap_write___tds__GetRelayOutputs(struct soap *soap, struct __tds__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetRelayOutputs(soap, p), 0) || ::soap_put___tds__GetRelayOutputs(soap, p, "-tds:GetRelayOutputs", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetRelayOutputs(struct soap *soap, const char *URL, struct __tds__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRelayOutputs(soap, p), 0) || ::soap_put___tds__GetRelayOutputs(soap, p, "-tds:GetRelayOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetRelayOutputs(struct soap *soap, const char *URL, struct __tds__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRelayOutputs(soap, p), 0) || ::soap_put___tds__GetRelayOutputs(soap, p, "-tds:GetRelayOutputs", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetRelayOutputs(struct soap *soap, const char *URL, struct __tds__GetRelayOutputs const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRelayOutputs(soap, p), 0) || ::soap_put___tds__GetRelayOutputs(soap, p, "-tds:GetRelayOutputs", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetRelayOutputs * SOAP_FMAC4 soap_get___tds__GetRelayOutputs(struct soap*, struct __tds__GetRelayOutputs *, const char*, const char*); - -inline int soap_read___tds__GetRelayOutputs(struct soap *soap, struct __tds__GetRelayOutputs *p) -{ - if (p) - { ::soap_default___tds__GetRelayOutputs(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetRelayOutputs(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetRelayOutputs(struct soap *soap, const char *URL, struct __tds__GetRelayOutputs *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetRelayOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetRelayOutputs(struct soap *soap, struct __tds__GetRelayOutputs *p) -{ - if (::soap_read___tds__GetRelayOutputs(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetClientCertificateMode_DEFINED -#define SOAP_TYPE___tds__SetClientCertificateMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetClientCertificateMode(struct soap*, struct __tds__SetClientCertificateMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetClientCertificateMode(struct soap*, const struct __tds__SetClientCertificateMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetClientCertificateMode(struct soap*, const char*, int, const struct __tds__SetClientCertificateMode *, const char*); -SOAP_FMAC3 struct __tds__SetClientCertificateMode * SOAP_FMAC4 soap_in___tds__SetClientCertificateMode(struct soap*, const char*, struct __tds__SetClientCertificateMode *, const char*); -SOAP_FMAC1 struct __tds__SetClientCertificateMode * SOAP_FMAC2 soap_instantiate___tds__SetClientCertificateMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetClientCertificateMode * soap_new___tds__SetClientCertificateMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetClientCertificateMode(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetClientCertificateMode * soap_new_req___tds__SetClientCertificateMode( - struct soap *soap) -{ - struct __tds__SetClientCertificateMode *_p = ::soap_new___tds__SetClientCertificateMode(soap); - if (_p) - { ::soap_default___tds__SetClientCertificateMode(soap, _p); - } - return _p; -} - -inline struct __tds__SetClientCertificateMode * soap_new_set___tds__SetClientCertificateMode( - struct soap *soap, - _tds__SetClientCertificateMode *tds__SetClientCertificateMode) -{ - struct __tds__SetClientCertificateMode *_p = ::soap_new___tds__SetClientCertificateMode(soap); - if (_p) - { ::soap_default___tds__SetClientCertificateMode(soap, _p); - _p->tds__SetClientCertificateMode = tds__SetClientCertificateMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetClientCertificateMode(struct soap*, const struct __tds__SetClientCertificateMode *, const char*, const char*); - -inline int soap_write___tds__SetClientCertificateMode(struct soap *soap, struct __tds__SetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetClientCertificateMode(soap, p), 0) || ::soap_put___tds__SetClientCertificateMode(soap, p, "-tds:SetClientCertificateMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__SetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetClientCertificateMode(soap, p), 0) || ::soap_put___tds__SetClientCertificateMode(soap, p, "-tds:SetClientCertificateMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__SetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetClientCertificateMode(soap, p), 0) || ::soap_put___tds__SetClientCertificateMode(soap, p, "-tds:SetClientCertificateMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__SetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetClientCertificateMode(soap, p), 0) || ::soap_put___tds__SetClientCertificateMode(soap, p, "-tds:SetClientCertificateMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetClientCertificateMode * SOAP_FMAC4 soap_get___tds__SetClientCertificateMode(struct soap*, struct __tds__SetClientCertificateMode *, const char*, const char*); - -inline int soap_read___tds__SetClientCertificateMode(struct soap *soap, struct __tds__SetClientCertificateMode *p) -{ - if (p) - { ::soap_default___tds__SetClientCertificateMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetClientCertificateMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__SetClientCertificateMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetClientCertificateMode(struct soap *soap, struct __tds__SetClientCertificateMode *p) -{ - if (::soap_read___tds__SetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetClientCertificateMode_DEFINED -#define SOAP_TYPE___tds__GetClientCertificateMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetClientCertificateMode(struct soap*, struct __tds__GetClientCertificateMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetClientCertificateMode(struct soap*, const struct __tds__GetClientCertificateMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetClientCertificateMode(struct soap*, const char*, int, const struct __tds__GetClientCertificateMode *, const char*); -SOAP_FMAC3 struct __tds__GetClientCertificateMode * SOAP_FMAC4 soap_in___tds__GetClientCertificateMode(struct soap*, const char*, struct __tds__GetClientCertificateMode *, const char*); -SOAP_FMAC1 struct __tds__GetClientCertificateMode * SOAP_FMAC2 soap_instantiate___tds__GetClientCertificateMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetClientCertificateMode * soap_new___tds__GetClientCertificateMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetClientCertificateMode(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetClientCertificateMode * soap_new_req___tds__GetClientCertificateMode( - struct soap *soap) -{ - struct __tds__GetClientCertificateMode *_p = ::soap_new___tds__GetClientCertificateMode(soap); - if (_p) - { ::soap_default___tds__GetClientCertificateMode(soap, _p); - } - return _p; -} - -inline struct __tds__GetClientCertificateMode * soap_new_set___tds__GetClientCertificateMode( - struct soap *soap, - _tds__GetClientCertificateMode *tds__GetClientCertificateMode) -{ - struct __tds__GetClientCertificateMode *_p = ::soap_new___tds__GetClientCertificateMode(soap); - if (_p) - { ::soap_default___tds__GetClientCertificateMode(soap, _p); - _p->tds__GetClientCertificateMode = tds__GetClientCertificateMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetClientCertificateMode(struct soap*, const struct __tds__GetClientCertificateMode *, const char*, const char*); - -inline int soap_write___tds__GetClientCertificateMode(struct soap *soap, struct __tds__GetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetClientCertificateMode(soap, p), 0) || ::soap_put___tds__GetClientCertificateMode(soap, p, "-tds:GetClientCertificateMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__GetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetClientCertificateMode(soap, p), 0) || ::soap_put___tds__GetClientCertificateMode(soap, p, "-tds:GetClientCertificateMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__GetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetClientCertificateMode(soap, p), 0) || ::soap_put___tds__GetClientCertificateMode(soap, p, "-tds:GetClientCertificateMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__GetClientCertificateMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetClientCertificateMode(soap, p), 0) || ::soap_put___tds__GetClientCertificateMode(soap, p, "-tds:GetClientCertificateMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetClientCertificateMode * SOAP_FMAC4 soap_get___tds__GetClientCertificateMode(struct soap*, struct __tds__GetClientCertificateMode *, const char*, const char*); - -inline int soap_read___tds__GetClientCertificateMode(struct soap *soap, struct __tds__GetClientCertificateMode *p) -{ - if (p) - { ::soap_default___tds__GetClientCertificateMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetClientCertificateMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetClientCertificateMode(struct soap *soap, const char *URL, struct __tds__GetClientCertificateMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetClientCertificateMode(struct soap *soap, struct __tds__GetClientCertificateMode *p) -{ - if (::soap_read___tds__GetClientCertificateMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__LoadCertificates_DEFINED -#define SOAP_TYPE___tds__LoadCertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__LoadCertificates(struct soap*, struct __tds__LoadCertificates *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__LoadCertificates(struct soap*, const struct __tds__LoadCertificates *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__LoadCertificates(struct soap*, const char*, int, const struct __tds__LoadCertificates *, const char*); -SOAP_FMAC3 struct __tds__LoadCertificates * SOAP_FMAC4 soap_in___tds__LoadCertificates(struct soap*, const char*, struct __tds__LoadCertificates *, const char*); -SOAP_FMAC1 struct __tds__LoadCertificates * SOAP_FMAC2 soap_instantiate___tds__LoadCertificates(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__LoadCertificates * soap_new___tds__LoadCertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__LoadCertificates(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__LoadCertificates * soap_new_req___tds__LoadCertificates( - struct soap *soap) -{ - struct __tds__LoadCertificates *_p = ::soap_new___tds__LoadCertificates(soap); - if (_p) - { ::soap_default___tds__LoadCertificates(soap, _p); - } - return _p; -} - -inline struct __tds__LoadCertificates * soap_new_set___tds__LoadCertificates( - struct soap *soap, - _tds__LoadCertificates *tds__LoadCertificates) -{ - struct __tds__LoadCertificates *_p = ::soap_new___tds__LoadCertificates(soap); - if (_p) - { ::soap_default___tds__LoadCertificates(soap, _p); - _p->tds__LoadCertificates = tds__LoadCertificates; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__LoadCertificates(struct soap*, const struct __tds__LoadCertificates *, const char*, const char*); - -inline int soap_write___tds__LoadCertificates(struct soap *soap, struct __tds__LoadCertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__LoadCertificates(soap, p), 0) || ::soap_put___tds__LoadCertificates(soap, p, "-tds:LoadCertificates", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__LoadCertificates(struct soap *soap, const char *URL, struct __tds__LoadCertificates const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCertificates(soap, p), 0) || ::soap_put___tds__LoadCertificates(soap, p, "-tds:LoadCertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__LoadCertificates(struct soap *soap, const char *URL, struct __tds__LoadCertificates const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCertificates(soap, p), 0) || ::soap_put___tds__LoadCertificates(soap, p, "-tds:LoadCertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__LoadCertificates(struct soap *soap, const char *URL, struct __tds__LoadCertificates const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__LoadCertificates(soap, p), 0) || ::soap_put___tds__LoadCertificates(soap, p, "-tds:LoadCertificates", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__LoadCertificates * SOAP_FMAC4 soap_get___tds__LoadCertificates(struct soap*, struct __tds__LoadCertificates *, const char*, const char*); - -inline int soap_read___tds__LoadCertificates(struct soap *soap, struct __tds__LoadCertificates *p) -{ - if (p) - { ::soap_default___tds__LoadCertificates(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__LoadCertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__LoadCertificates(struct soap *soap, const char *URL, struct __tds__LoadCertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__LoadCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__LoadCertificates(struct soap *soap, struct __tds__LoadCertificates *p) -{ - if (::soap_read___tds__LoadCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetPkcs10Request_DEFINED -#define SOAP_TYPE___tds__GetPkcs10Request_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetPkcs10Request(struct soap*, struct __tds__GetPkcs10Request *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetPkcs10Request(struct soap*, const struct __tds__GetPkcs10Request *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetPkcs10Request(struct soap*, const char*, int, const struct __tds__GetPkcs10Request *, const char*); -SOAP_FMAC3 struct __tds__GetPkcs10Request * SOAP_FMAC4 soap_in___tds__GetPkcs10Request(struct soap*, const char*, struct __tds__GetPkcs10Request *, const char*); -SOAP_FMAC1 struct __tds__GetPkcs10Request * SOAP_FMAC2 soap_instantiate___tds__GetPkcs10Request(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetPkcs10Request * soap_new___tds__GetPkcs10Request(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetPkcs10Request(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetPkcs10Request * soap_new_req___tds__GetPkcs10Request( - struct soap *soap) -{ - struct __tds__GetPkcs10Request *_p = ::soap_new___tds__GetPkcs10Request(soap); - if (_p) - { ::soap_default___tds__GetPkcs10Request(soap, _p); - } - return _p; -} - -inline struct __tds__GetPkcs10Request * soap_new_set___tds__GetPkcs10Request( - struct soap *soap, - _tds__GetPkcs10Request *tds__GetPkcs10Request) -{ - struct __tds__GetPkcs10Request *_p = ::soap_new___tds__GetPkcs10Request(soap); - if (_p) - { ::soap_default___tds__GetPkcs10Request(soap, _p); - _p->tds__GetPkcs10Request = tds__GetPkcs10Request; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetPkcs10Request(struct soap*, const struct __tds__GetPkcs10Request *, const char*, const char*); - -inline int soap_write___tds__GetPkcs10Request(struct soap *soap, struct __tds__GetPkcs10Request const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetPkcs10Request(soap, p), 0) || ::soap_put___tds__GetPkcs10Request(soap, p, "-tds:GetPkcs10Request", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetPkcs10Request(struct soap *soap, const char *URL, struct __tds__GetPkcs10Request const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetPkcs10Request(soap, p), 0) || ::soap_put___tds__GetPkcs10Request(soap, p, "-tds:GetPkcs10Request", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetPkcs10Request(struct soap *soap, const char *URL, struct __tds__GetPkcs10Request const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetPkcs10Request(soap, p), 0) || ::soap_put___tds__GetPkcs10Request(soap, p, "-tds:GetPkcs10Request", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetPkcs10Request(struct soap *soap, const char *URL, struct __tds__GetPkcs10Request const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetPkcs10Request(soap, p), 0) || ::soap_put___tds__GetPkcs10Request(soap, p, "-tds:GetPkcs10Request", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetPkcs10Request * SOAP_FMAC4 soap_get___tds__GetPkcs10Request(struct soap*, struct __tds__GetPkcs10Request *, const char*, const char*); - -inline int soap_read___tds__GetPkcs10Request(struct soap *soap, struct __tds__GetPkcs10Request *p) -{ - if (p) - { ::soap_default___tds__GetPkcs10Request(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetPkcs10Request(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetPkcs10Request(struct soap *soap, const char *URL, struct __tds__GetPkcs10Request *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetPkcs10Request(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetPkcs10Request(struct soap *soap, struct __tds__GetPkcs10Request *p) -{ - if (::soap_read___tds__GetPkcs10Request(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__DeleteCertificates_DEFINED -#define SOAP_TYPE___tds__DeleteCertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteCertificates(struct soap*, struct __tds__DeleteCertificates *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteCertificates(struct soap*, const struct __tds__DeleteCertificates *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteCertificates(struct soap*, const char*, int, const struct __tds__DeleteCertificates *, const char*); -SOAP_FMAC3 struct __tds__DeleteCertificates * SOAP_FMAC4 soap_in___tds__DeleteCertificates(struct soap*, const char*, struct __tds__DeleteCertificates *, const char*); -SOAP_FMAC1 struct __tds__DeleteCertificates * SOAP_FMAC2 soap_instantiate___tds__DeleteCertificates(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__DeleteCertificates * soap_new___tds__DeleteCertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__DeleteCertificates(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__DeleteCertificates * soap_new_req___tds__DeleteCertificates( - struct soap *soap) -{ - struct __tds__DeleteCertificates *_p = ::soap_new___tds__DeleteCertificates(soap); - if (_p) - { ::soap_default___tds__DeleteCertificates(soap, _p); - } - return _p; -} - -inline struct __tds__DeleteCertificates * soap_new_set___tds__DeleteCertificates( - struct soap *soap, - _tds__DeleteCertificates *tds__DeleteCertificates) -{ - struct __tds__DeleteCertificates *_p = ::soap_new___tds__DeleteCertificates(soap); - if (_p) - { ::soap_default___tds__DeleteCertificates(soap, _p); - _p->tds__DeleteCertificates = tds__DeleteCertificates; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteCertificates(struct soap*, const struct __tds__DeleteCertificates *, const char*, const char*); - -inline int soap_write___tds__DeleteCertificates(struct soap *soap, struct __tds__DeleteCertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__DeleteCertificates(soap, p), 0) || ::soap_put___tds__DeleteCertificates(soap, p, "-tds:DeleteCertificates", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__DeleteCertificates(struct soap *soap, const char *URL, struct __tds__DeleteCertificates const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteCertificates(soap, p), 0) || ::soap_put___tds__DeleteCertificates(soap, p, "-tds:DeleteCertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__DeleteCertificates(struct soap *soap, const char *URL, struct __tds__DeleteCertificates const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteCertificates(soap, p), 0) || ::soap_put___tds__DeleteCertificates(soap, p, "-tds:DeleteCertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__DeleteCertificates(struct soap *soap, const char *URL, struct __tds__DeleteCertificates const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteCertificates(soap, p), 0) || ::soap_put___tds__DeleteCertificates(soap, p, "-tds:DeleteCertificates", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__DeleteCertificates * SOAP_FMAC4 soap_get___tds__DeleteCertificates(struct soap*, struct __tds__DeleteCertificates *, const char*, const char*); - -inline int soap_read___tds__DeleteCertificates(struct soap *soap, struct __tds__DeleteCertificates *p) -{ - if (p) - { ::soap_default___tds__DeleteCertificates(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__DeleteCertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__DeleteCertificates(struct soap *soap, const char *URL, struct __tds__DeleteCertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__DeleteCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__DeleteCertificates(struct soap *soap, struct __tds__DeleteCertificates *p) -{ - if (::soap_read___tds__DeleteCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetCertificatesStatus_DEFINED -#define SOAP_TYPE___tds__SetCertificatesStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetCertificatesStatus(struct soap*, struct __tds__SetCertificatesStatus *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetCertificatesStatus(struct soap*, const struct __tds__SetCertificatesStatus *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetCertificatesStatus(struct soap*, const char*, int, const struct __tds__SetCertificatesStatus *, const char*); -SOAP_FMAC3 struct __tds__SetCertificatesStatus * SOAP_FMAC4 soap_in___tds__SetCertificatesStatus(struct soap*, const char*, struct __tds__SetCertificatesStatus *, const char*); -SOAP_FMAC1 struct __tds__SetCertificatesStatus * SOAP_FMAC2 soap_instantiate___tds__SetCertificatesStatus(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetCertificatesStatus * soap_new___tds__SetCertificatesStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetCertificatesStatus(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetCertificatesStatus * soap_new_req___tds__SetCertificatesStatus( - struct soap *soap) -{ - struct __tds__SetCertificatesStatus *_p = ::soap_new___tds__SetCertificatesStatus(soap); - if (_p) - { ::soap_default___tds__SetCertificatesStatus(soap, _p); - } - return _p; -} - -inline struct __tds__SetCertificatesStatus * soap_new_set___tds__SetCertificatesStatus( - struct soap *soap, - _tds__SetCertificatesStatus *tds__SetCertificatesStatus) -{ - struct __tds__SetCertificatesStatus *_p = ::soap_new___tds__SetCertificatesStatus(soap); - if (_p) - { ::soap_default___tds__SetCertificatesStatus(soap, _p); - _p->tds__SetCertificatesStatus = tds__SetCertificatesStatus; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetCertificatesStatus(struct soap*, const struct __tds__SetCertificatesStatus *, const char*, const char*); - -inline int soap_write___tds__SetCertificatesStatus(struct soap *soap, struct __tds__SetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetCertificatesStatus(soap, p), 0) || ::soap_put___tds__SetCertificatesStatus(soap, p, "-tds:SetCertificatesStatus", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__SetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetCertificatesStatus(soap, p), 0) || ::soap_put___tds__SetCertificatesStatus(soap, p, "-tds:SetCertificatesStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__SetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetCertificatesStatus(soap, p), 0) || ::soap_put___tds__SetCertificatesStatus(soap, p, "-tds:SetCertificatesStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__SetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetCertificatesStatus(soap, p), 0) || ::soap_put___tds__SetCertificatesStatus(soap, p, "-tds:SetCertificatesStatus", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetCertificatesStatus * SOAP_FMAC4 soap_get___tds__SetCertificatesStatus(struct soap*, struct __tds__SetCertificatesStatus *, const char*, const char*); - -inline int soap_read___tds__SetCertificatesStatus(struct soap *soap, struct __tds__SetCertificatesStatus *p) -{ - if (p) - { ::soap_default___tds__SetCertificatesStatus(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetCertificatesStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__SetCertificatesStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetCertificatesStatus(struct soap *soap, struct __tds__SetCertificatesStatus *p) -{ - if (::soap_read___tds__SetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetCertificatesStatus_DEFINED -#define SOAP_TYPE___tds__GetCertificatesStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCertificatesStatus(struct soap*, struct __tds__GetCertificatesStatus *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCertificatesStatus(struct soap*, const struct __tds__GetCertificatesStatus *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCertificatesStatus(struct soap*, const char*, int, const struct __tds__GetCertificatesStatus *, const char*); -SOAP_FMAC3 struct __tds__GetCertificatesStatus * SOAP_FMAC4 soap_in___tds__GetCertificatesStatus(struct soap*, const char*, struct __tds__GetCertificatesStatus *, const char*); -SOAP_FMAC1 struct __tds__GetCertificatesStatus * SOAP_FMAC2 soap_instantiate___tds__GetCertificatesStatus(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetCertificatesStatus * soap_new___tds__GetCertificatesStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetCertificatesStatus(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetCertificatesStatus * soap_new_req___tds__GetCertificatesStatus( - struct soap *soap) -{ - struct __tds__GetCertificatesStatus *_p = ::soap_new___tds__GetCertificatesStatus(soap); - if (_p) - { ::soap_default___tds__GetCertificatesStatus(soap, _p); - } - return _p; -} - -inline struct __tds__GetCertificatesStatus * soap_new_set___tds__GetCertificatesStatus( - struct soap *soap, - _tds__GetCertificatesStatus *tds__GetCertificatesStatus) -{ - struct __tds__GetCertificatesStatus *_p = ::soap_new___tds__GetCertificatesStatus(soap); - if (_p) - { ::soap_default___tds__GetCertificatesStatus(soap, _p); - _p->tds__GetCertificatesStatus = tds__GetCertificatesStatus; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCertificatesStatus(struct soap*, const struct __tds__GetCertificatesStatus *, const char*, const char*); - -inline int soap_write___tds__GetCertificatesStatus(struct soap *soap, struct __tds__GetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetCertificatesStatus(soap, p), 0) || ::soap_put___tds__GetCertificatesStatus(soap, p, "-tds:GetCertificatesStatus", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__GetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificatesStatus(soap, p), 0) || ::soap_put___tds__GetCertificatesStatus(soap, p, "-tds:GetCertificatesStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__GetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificatesStatus(soap, p), 0) || ::soap_put___tds__GetCertificatesStatus(soap, p, "-tds:GetCertificatesStatus", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__GetCertificatesStatus const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificatesStatus(soap, p), 0) || ::soap_put___tds__GetCertificatesStatus(soap, p, "-tds:GetCertificatesStatus", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetCertificatesStatus * SOAP_FMAC4 soap_get___tds__GetCertificatesStatus(struct soap*, struct __tds__GetCertificatesStatus *, const char*, const char*); - -inline int soap_read___tds__GetCertificatesStatus(struct soap *soap, struct __tds__GetCertificatesStatus *p) -{ - if (p) - { ::soap_default___tds__GetCertificatesStatus(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetCertificatesStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetCertificatesStatus(struct soap *soap, const char *URL, struct __tds__GetCertificatesStatus *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetCertificatesStatus(struct soap *soap, struct __tds__GetCertificatesStatus *p) -{ - if (::soap_read___tds__GetCertificatesStatus(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetCertificates_DEFINED -#define SOAP_TYPE___tds__GetCertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCertificates(struct soap*, struct __tds__GetCertificates *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCertificates(struct soap*, const struct __tds__GetCertificates *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCertificates(struct soap*, const char*, int, const struct __tds__GetCertificates *, const char*); -SOAP_FMAC3 struct __tds__GetCertificates * SOAP_FMAC4 soap_in___tds__GetCertificates(struct soap*, const char*, struct __tds__GetCertificates *, const char*); -SOAP_FMAC1 struct __tds__GetCertificates * SOAP_FMAC2 soap_instantiate___tds__GetCertificates(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetCertificates * soap_new___tds__GetCertificates(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetCertificates(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetCertificates * soap_new_req___tds__GetCertificates( - struct soap *soap) -{ - struct __tds__GetCertificates *_p = ::soap_new___tds__GetCertificates(soap); - if (_p) - { ::soap_default___tds__GetCertificates(soap, _p); - } - return _p; -} - -inline struct __tds__GetCertificates * soap_new_set___tds__GetCertificates( - struct soap *soap, - _tds__GetCertificates *tds__GetCertificates) -{ - struct __tds__GetCertificates *_p = ::soap_new___tds__GetCertificates(soap); - if (_p) - { ::soap_default___tds__GetCertificates(soap, _p); - _p->tds__GetCertificates = tds__GetCertificates; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCertificates(struct soap*, const struct __tds__GetCertificates *, const char*, const char*); - -inline int soap_write___tds__GetCertificates(struct soap *soap, struct __tds__GetCertificates const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetCertificates(soap, p), 0) || ::soap_put___tds__GetCertificates(soap, p, "-tds:GetCertificates", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetCertificates(struct soap *soap, const char *URL, struct __tds__GetCertificates const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificates(soap, p), 0) || ::soap_put___tds__GetCertificates(soap, p, "-tds:GetCertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetCertificates(struct soap *soap, const char *URL, struct __tds__GetCertificates const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificates(soap, p), 0) || ::soap_put___tds__GetCertificates(soap, p, "-tds:GetCertificates", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetCertificates(struct soap *soap, const char *URL, struct __tds__GetCertificates const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCertificates(soap, p), 0) || ::soap_put___tds__GetCertificates(soap, p, "-tds:GetCertificates", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetCertificates * SOAP_FMAC4 soap_get___tds__GetCertificates(struct soap*, struct __tds__GetCertificates *, const char*, const char*); - -inline int soap_read___tds__GetCertificates(struct soap *soap, struct __tds__GetCertificates *p) -{ - if (p) - { ::soap_default___tds__GetCertificates(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetCertificates(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetCertificates(struct soap *soap, const char *URL, struct __tds__GetCertificates *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetCertificates(struct soap *soap, struct __tds__GetCertificates *p) -{ - if (::soap_read___tds__GetCertificates(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__CreateCertificate_DEFINED -#define SOAP_TYPE___tds__CreateCertificate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateCertificate(struct soap*, struct __tds__CreateCertificate *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateCertificate(struct soap*, const struct __tds__CreateCertificate *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateCertificate(struct soap*, const char*, int, const struct __tds__CreateCertificate *, const char*); -SOAP_FMAC3 struct __tds__CreateCertificate * SOAP_FMAC4 soap_in___tds__CreateCertificate(struct soap*, const char*, struct __tds__CreateCertificate *, const char*); -SOAP_FMAC1 struct __tds__CreateCertificate * SOAP_FMAC2 soap_instantiate___tds__CreateCertificate(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__CreateCertificate * soap_new___tds__CreateCertificate(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__CreateCertificate(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__CreateCertificate * soap_new_req___tds__CreateCertificate( - struct soap *soap) -{ - struct __tds__CreateCertificate *_p = ::soap_new___tds__CreateCertificate(soap); - if (_p) - { ::soap_default___tds__CreateCertificate(soap, _p); - } - return _p; -} - -inline struct __tds__CreateCertificate * soap_new_set___tds__CreateCertificate( - struct soap *soap, - _tds__CreateCertificate *tds__CreateCertificate) -{ - struct __tds__CreateCertificate *_p = ::soap_new___tds__CreateCertificate(soap); - if (_p) - { ::soap_default___tds__CreateCertificate(soap, _p); - _p->tds__CreateCertificate = tds__CreateCertificate; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateCertificate(struct soap*, const struct __tds__CreateCertificate *, const char*, const char*); - -inline int soap_write___tds__CreateCertificate(struct soap *soap, struct __tds__CreateCertificate const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__CreateCertificate(soap, p), 0) || ::soap_put___tds__CreateCertificate(soap, p, "-tds:CreateCertificate", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__CreateCertificate(struct soap *soap, const char *URL, struct __tds__CreateCertificate const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateCertificate(soap, p), 0) || ::soap_put___tds__CreateCertificate(soap, p, "-tds:CreateCertificate", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__CreateCertificate(struct soap *soap, const char *URL, struct __tds__CreateCertificate const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateCertificate(soap, p), 0) || ::soap_put___tds__CreateCertificate(soap, p, "-tds:CreateCertificate", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__CreateCertificate(struct soap *soap, const char *URL, struct __tds__CreateCertificate const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateCertificate(soap, p), 0) || ::soap_put___tds__CreateCertificate(soap, p, "-tds:CreateCertificate", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__CreateCertificate * SOAP_FMAC4 soap_get___tds__CreateCertificate(struct soap*, struct __tds__CreateCertificate *, const char*, const char*); - -inline int soap_read___tds__CreateCertificate(struct soap *soap, struct __tds__CreateCertificate *p) -{ - if (p) - { ::soap_default___tds__CreateCertificate(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__CreateCertificate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__CreateCertificate(struct soap *soap, const char *URL, struct __tds__CreateCertificate *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__CreateCertificate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__CreateCertificate(struct soap *soap, struct __tds__CreateCertificate *p) -{ - if (::soap_read___tds__CreateCertificate(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetAccessPolicy_DEFINED -#define SOAP_TYPE___tds__SetAccessPolicy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetAccessPolicy(struct soap*, struct __tds__SetAccessPolicy *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetAccessPolicy(struct soap*, const struct __tds__SetAccessPolicy *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetAccessPolicy(struct soap*, const char*, int, const struct __tds__SetAccessPolicy *, const char*); -SOAP_FMAC3 struct __tds__SetAccessPolicy * SOAP_FMAC4 soap_in___tds__SetAccessPolicy(struct soap*, const char*, struct __tds__SetAccessPolicy *, const char*); -SOAP_FMAC1 struct __tds__SetAccessPolicy * SOAP_FMAC2 soap_instantiate___tds__SetAccessPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetAccessPolicy * soap_new___tds__SetAccessPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetAccessPolicy(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetAccessPolicy * soap_new_req___tds__SetAccessPolicy( - struct soap *soap) -{ - struct __tds__SetAccessPolicy *_p = ::soap_new___tds__SetAccessPolicy(soap); - if (_p) - { ::soap_default___tds__SetAccessPolicy(soap, _p); - } - return _p; -} - -inline struct __tds__SetAccessPolicy * soap_new_set___tds__SetAccessPolicy( - struct soap *soap, - _tds__SetAccessPolicy *tds__SetAccessPolicy) -{ - struct __tds__SetAccessPolicy *_p = ::soap_new___tds__SetAccessPolicy(soap); - if (_p) - { ::soap_default___tds__SetAccessPolicy(soap, _p); - _p->tds__SetAccessPolicy = tds__SetAccessPolicy; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetAccessPolicy(struct soap*, const struct __tds__SetAccessPolicy *, const char*, const char*); - -inline int soap_write___tds__SetAccessPolicy(struct soap *soap, struct __tds__SetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetAccessPolicy(soap, p), 0) || ::soap_put___tds__SetAccessPolicy(soap, p, "-tds:SetAccessPolicy", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetAccessPolicy(struct soap *soap, const char *URL, struct __tds__SetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetAccessPolicy(soap, p), 0) || ::soap_put___tds__SetAccessPolicy(soap, p, "-tds:SetAccessPolicy", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetAccessPolicy(struct soap *soap, const char *URL, struct __tds__SetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetAccessPolicy(soap, p), 0) || ::soap_put___tds__SetAccessPolicy(soap, p, "-tds:SetAccessPolicy", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetAccessPolicy(struct soap *soap, const char *URL, struct __tds__SetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetAccessPolicy(soap, p), 0) || ::soap_put___tds__SetAccessPolicy(soap, p, "-tds:SetAccessPolicy", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetAccessPolicy * SOAP_FMAC4 soap_get___tds__SetAccessPolicy(struct soap*, struct __tds__SetAccessPolicy *, const char*, const char*); - -inline int soap_read___tds__SetAccessPolicy(struct soap *soap, struct __tds__SetAccessPolicy *p) -{ - if (p) - { ::soap_default___tds__SetAccessPolicy(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetAccessPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetAccessPolicy(struct soap *soap, const char *URL, struct __tds__SetAccessPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetAccessPolicy(struct soap *soap, struct __tds__SetAccessPolicy *p) -{ - if (::soap_read___tds__SetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetAccessPolicy_DEFINED -#define SOAP_TYPE___tds__GetAccessPolicy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetAccessPolicy(struct soap*, struct __tds__GetAccessPolicy *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetAccessPolicy(struct soap*, const struct __tds__GetAccessPolicy *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetAccessPolicy(struct soap*, const char*, int, const struct __tds__GetAccessPolicy *, const char*); -SOAP_FMAC3 struct __tds__GetAccessPolicy * SOAP_FMAC4 soap_in___tds__GetAccessPolicy(struct soap*, const char*, struct __tds__GetAccessPolicy *, const char*); -SOAP_FMAC1 struct __tds__GetAccessPolicy * SOAP_FMAC2 soap_instantiate___tds__GetAccessPolicy(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetAccessPolicy * soap_new___tds__GetAccessPolicy(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetAccessPolicy(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetAccessPolicy * soap_new_req___tds__GetAccessPolicy( - struct soap *soap) -{ - struct __tds__GetAccessPolicy *_p = ::soap_new___tds__GetAccessPolicy(soap); - if (_p) - { ::soap_default___tds__GetAccessPolicy(soap, _p); - } - return _p; -} - -inline struct __tds__GetAccessPolicy * soap_new_set___tds__GetAccessPolicy( - struct soap *soap, - _tds__GetAccessPolicy *tds__GetAccessPolicy) -{ - struct __tds__GetAccessPolicy *_p = ::soap_new___tds__GetAccessPolicy(soap); - if (_p) - { ::soap_default___tds__GetAccessPolicy(soap, _p); - _p->tds__GetAccessPolicy = tds__GetAccessPolicy; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetAccessPolicy(struct soap*, const struct __tds__GetAccessPolicy *, const char*, const char*); - -inline int soap_write___tds__GetAccessPolicy(struct soap *soap, struct __tds__GetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetAccessPolicy(soap, p), 0) || ::soap_put___tds__GetAccessPolicy(soap, p, "-tds:GetAccessPolicy", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetAccessPolicy(struct soap *soap, const char *URL, struct __tds__GetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetAccessPolicy(soap, p), 0) || ::soap_put___tds__GetAccessPolicy(soap, p, "-tds:GetAccessPolicy", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetAccessPolicy(struct soap *soap, const char *URL, struct __tds__GetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetAccessPolicy(soap, p), 0) || ::soap_put___tds__GetAccessPolicy(soap, p, "-tds:GetAccessPolicy", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetAccessPolicy(struct soap *soap, const char *URL, struct __tds__GetAccessPolicy const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetAccessPolicy(soap, p), 0) || ::soap_put___tds__GetAccessPolicy(soap, p, "-tds:GetAccessPolicy", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetAccessPolicy * SOAP_FMAC4 soap_get___tds__GetAccessPolicy(struct soap*, struct __tds__GetAccessPolicy *, const char*, const char*); - -inline int soap_read___tds__GetAccessPolicy(struct soap *soap, struct __tds__GetAccessPolicy *p) -{ - if (p) - { ::soap_default___tds__GetAccessPolicy(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetAccessPolicy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetAccessPolicy(struct soap *soap, const char *URL, struct __tds__GetAccessPolicy *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetAccessPolicy(struct soap *soap, struct __tds__GetAccessPolicy *p) -{ - if (::soap_read___tds__GetAccessPolicy(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__RemoveIPAddressFilter_DEFINED -#define SOAP_TYPE___tds__RemoveIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__RemoveIPAddressFilter(struct soap*, struct __tds__RemoveIPAddressFilter *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__RemoveIPAddressFilter(struct soap*, const struct __tds__RemoveIPAddressFilter *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__RemoveIPAddressFilter(struct soap*, const char*, int, const struct __tds__RemoveIPAddressFilter *, const char*); -SOAP_FMAC3 struct __tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_in___tds__RemoveIPAddressFilter(struct soap*, const char*, struct __tds__RemoveIPAddressFilter *, const char*); -SOAP_FMAC1 struct __tds__RemoveIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__RemoveIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__RemoveIPAddressFilter * soap_new___tds__RemoveIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__RemoveIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__RemoveIPAddressFilter * soap_new_req___tds__RemoveIPAddressFilter( - struct soap *soap) -{ - struct __tds__RemoveIPAddressFilter *_p = ::soap_new___tds__RemoveIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__RemoveIPAddressFilter(soap, _p); - } - return _p; -} - -inline struct __tds__RemoveIPAddressFilter * soap_new_set___tds__RemoveIPAddressFilter( - struct soap *soap, - _tds__RemoveIPAddressFilter *tds__RemoveIPAddressFilter) -{ - struct __tds__RemoveIPAddressFilter *_p = ::soap_new___tds__RemoveIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__RemoveIPAddressFilter(soap, _p); - _p->tds__RemoveIPAddressFilter = tds__RemoveIPAddressFilter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__RemoveIPAddressFilter(struct soap*, const struct __tds__RemoveIPAddressFilter *, const char*, const char*); - -inline int soap_write___tds__RemoveIPAddressFilter(struct soap *soap, struct __tds__RemoveIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__RemoveIPAddressFilter(soap, p), 0) || ::soap_put___tds__RemoveIPAddressFilter(soap, p, "-tds:RemoveIPAddressFilter", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, struct __tds__RemoveIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RemoveIPAddressFilter(soap, p), 0) || ::soap_put___tds__RemoveIPAddressFilter(soap, p, "-tds:RemoveIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, struct __tds__RemoveIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RemoveIPAddressFilter(soap, p), 0) || ::soap_put___tds__RemoveIPAddressFilter(soap, p, "-tds:RemoveIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, struct __tds__RemoveIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RemoveIPAddressFilter(soap, p), 0) || ::soap_put___tds__RemoveIPAddressFilter(soap, p, "-tds:RemoveIPAddressFilter", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__RemoveIPAddressFilter * SOAP_FMAC4 soap_get___tds__RemoveIPAddressFilter(struct soap*, struct __tds__RemoveIPAddressFilter *, const char*, const char*); - -inline int soap_read___tds__RemoveIPAddressFilter(struct soap *soap, struct __tds__RemoveIPAddressFilter *p) -{ - if (p) - { ::soap_default___tds__RemoveIPAddressFilter(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__RemoveIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__RemoveIPAddressFilter(struct soap *soap, const char *URL, struct __tds__RemoveIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__RemoveIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__RemoveIPAddressFilter(struct soap *soap, struct __tds__RemoveIPAddressFilter *p) -{ - if (::soap_read___tds__RemoveIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__AddIPAddressFilter_DEFINED -#define SOAP_TYPE___tds__AddIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__AddIPAddressFilter(struct soap*, struct __tds__AddIPAddressFilter *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__AddIPAddressFilter(struct soap*, const struct __tds__AddIPAddressFilter *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__AddIPAddressFilter(struct soap*, const char*, int, const struct __tds__AddIPAddressFilter *, const char*); -SOAP_FMAC3 struct __tds__AddIPAddressFilter * SOAP_FMAC4 soap_in___tds__AddIPAddressFilter(struct soap*, const char*, struct __tds__AddIPAddressFilter *, const char*); -SOAP_FMAC1 struct __tds__AddIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__AddIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__AddIPAddressFilter * soap_new___tds__AddIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__AddIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__AddIPAddressFilter * soap_new_req___tds__AddIPAddressFilter( - struct soap *soap) -{ - struct __tds__AddIPAddressFilter *_p = ::soap_new___tds__AddIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__AddIPAddressFilter(soap, _p); - } - return _p; -} - -inline struct __tds__AddIPAddressFilter * soap_new_set___tds__AddIPAddressFilter( - struct soap *soap, - _tds__AddIPAddressFilter *tds__AddIPAddressFilter) -{ - struct __tds__AddIPAddressFilter *_p = ::soap_new___tds__AddIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__AddIPAddressFilter(soap, _p); - _p->tds__AddIPAddressFilter = tds__AddIPAddressFilter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__AddIPAddressFilter(struct soap*, const struct __tds__AddIPAddressFilter *, const char*, const char*); - -inline int soap_write___tds__AddIPAddressFilter(struct soap *soap, struct __tds__AddIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__AddIPAddressFilter(soap, p), 0) || ::soap_put___tds__AddIPAddressFilter(soap, p, "-tds:AddIPAddressFilter", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__AddIPAddressFilter(struct soap *soap, const char *URL, struct __tds__AddIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__AddIPAddressFilter(soap, p), 0) || ::soap_put___tds__AddIPAddressFilter(soap, p, "-tds:AddIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__AddIPAddressFilter(struct soap *soap, const char *URL, struct __tds__AddIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__AddIPAddressFilter(soap, p), 0) || ::soap_put___tds__AddIPAddressFilter(soap, p, "-tds:AddIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__AddIPAddressFilter(struct soap *soap, const char *URL, struct __tds__AddIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__AddIPAddressFilter(soap, p), 0) || ::soap_put___tds__AddIPAddressFilter(soap, p, "-tds:AddIPAddressFilter", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__AddIPAddressFilter * SOAP_FMAC4 soap_get___tds__AddIPAddressFilter(struct soap*, struct __tds__AddIPAddressFilter *, const char*, const char*); - -inline int soap_read___tds__AddIPAddressFilter(struct soap *soap, struct __tds__AddIPAddressFilter *p) -{ - if (p) - { ::soap_default___tds__AddIPAddressFilter(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__AddIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__AddIPAddressFilter(struct soap *soap, const char *URL, struct __tds__AddIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__AddIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__AddIPAddressFilter(struct soap *soap, struct __tds__AddIPAddressFilter *p) -{ - if (::soap_read___tds__AddIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetIPAddressFilter_DEFINED -#define SOAP_TYPE___tds__SetIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetIPAddressFilter(struct soap*, struct __tds__SetIPAddressFilter *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetIPAddressFilter(struct soap*, const struct __tds__SetIPAddressFilter *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetIPAddressFilter(struct soap*, const char*, int, const struct __tds__SetIPAddressFilter *, const char*); -SOAP_FMAC3 struct __tds__SetIPAddressFilter * SOAP_FMAC4 soap_in___tds__SetIPAddressFilter(struct soap*, const char*, struct __tds__SetIPAddressFilter *, const char*); -SOAP_FMAC1 struct __tds__SetIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__SetIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetIPAddressFilter * soap_new___tds__SetIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetIPAddressFilter * soap_new_req___tds__SetIPAddressFilter( - struct soap *soap) -{ - struct __tds__SetIPAddressFilter *_p = ::soap_new___tds__SetIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__SetIPAddressFilter(soap, _p); - } - return _p; -} - -inline struct __tds__SetIPAddressFilter * soap_new_set___tds__SetIPAddressFilter( - struct soap *soap, - _tds__SetIPAddressFilter *tds__SetIPAddressFilter) -{ - struct __tds__SetIPAddressFilter *_p = ::soap_new___tds__SetIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__SetIPAddressFilter(soap, _p); - _p->tds__SetIPAddressFilter = tds__SetIPAddressFilter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetIPAddressFilter(struct soap*, const struct __tds__SetIPAddressFilter *, const char*, const char*); - -inline int soap_write___tds__SetIPAddressFilter(struct soap *soap, struct __tds__SetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetIPAddressFilter(soap, p), 0) || ::soap_put___tds__SetIPAddressFilter(soap, p, "-tds:SetIPAddressFilter", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__SetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetIPAddressFilter(soap, p), 0) || ::soap_put___tds__SetIPAddressFilter(soap, p, "-tds:SetIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__SetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetIPAddressFilter(soap, p), 0) || ::soap_put___tds__SetIPAddressFilter(soap, p, "-tds:SetIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__SetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetIPAddressFilter(soap, p), 0) || ::soap_put___tds__SetIPAddressFilter(soap, p, "-tds:SetIPAddressFilter", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetIPAddressFilter * SOAP_FMAC4 soap_get___tds__SetIPAddressFilter(struct soap*, struct __tds__SetIPAddressFilter *, const char*, const char*); - -inline int soap_read___tds__SetIPAddressFilter(struct soap *soap, struct __tds__SetIPAddressFilter *p) -{ - if (p) - { ::soap_default___tds__SetIPAddressFilter(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__SetIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetIPAddressFilter(struct soap *soap, struct __tds__SetIPAddressFilter *p) -{ - if (::soap_read___tds__SetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetIPAddressFilter_DEFINED -#define SOAP_TYPE___tds__GetIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetIPAddressFilter(struct soap*, struct __tds__GetIPAddressFilter *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetIPAddressFilter(struct soap*, const struct __tds__GetIPAddressFilter *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetIPAddressFilter(struct soap*, const char*, int, const struct __tds__GetIPAddressFilter *, const char*); -SOAP_FMAC3 struct __tds__GetIPAddressFilter * SOAP_FMAC4 soap_in___tds__GetIPAddressFilter(struct soap*, const char*, struct __tds__GetIPAddressFilter *, const char*); -SOAP_FMAC1 struct __tds__GetIPAddressFilter * SOAP_FMAC2 soap_instantiate___tds__GetIPAddressFilter(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetIPAddressFilter * soap_new___tds__GetIPAddressFilter(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetIPAddressFilter(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetIPAddressFilter * soap_new_req___tds__GetIPAddressFilter( - struct soap *soap) -{ - struct __tds__GetIPAddressFilter *_p = ::soap_new___tds__GetIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__GetIPAddressFilter(soap, _p); - } - return _p; -} - -inline struct __tds__GetIPAddressFilter * soap_new_set___tds__GetIPAddressFilter( - struct soap *soap, - _tds__GetIPAddressFilter *tds__GetIPAddressFilter) -{ - struct __tds__GetIPAddressFilter *_p = ::soap_new___tds__GetIPAddressFilter(soap); - if (_p) - { ::soap_default___tds__GetIPAddressFilter(soap, _p); - _p->tds__GetIPAddressFilter = tds__GetIPAddressFilter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetIPAddressFilter(struct soap*, const struct __tds__GetIPAddressFilter *, const char*, const char*); - -inline int soap_write___tds__GetIPAddressFilter(struct soap *soap, struct __tds__GetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetIPAddressFilter(soap, p), 0) || ::soap_put___tds__GetIPAddressFilter(soap, p, "-tds:GetIPAddressFilter", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__GetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetIPAddressFilter(soap, p), 0) || ::soap_put___tds__GetIPAddressFilter(soap, p, "-tds:GetIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__GetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetIPAddressFilter(soap, p), 0) || ::soap_put___tds__GetIPAddressFilter(soap, p, "-tds:GetIPAddressFilter", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__GetIPAddressFilter const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetIPAddressFilter(soap, p), 0) || ::soap_put___tds__GetIPAddressFilter(soap, p, "-tds:GetIPAddressFilter", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetIPAddressFilter * SOAP_FMAC4 soap_get___tds__GetIPAddressFilter(struct soap*, struct __tds__GetIPAddressFilter *, const char*, const char*); - -inline int soap_read___tds__GetIPAddressFilter(struct soap *soap, struct __tds__GetIPAddressFilter *p) -{ - if (p) - { ::soap_default___tds__GetIPAddressFilter(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetIPAddressFilter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetIPAddressFilter(struct soap *soap, const char *URL, struct __tds__GetIPAddressFilter *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetIPAddressFilter(struct soap *soap, struct __tds__GetIPAddressFilter *p) -{ - if (::soap_read___tds__GetIPAddressFilter(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetZeroConfiguration_DEFINED -#define SOAP_TYPE___tds__SetZeroConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetZeroConfiguration(struct soap*, struct __tds__SetZeroConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetZeroConfiguration(struct soap*, const struct __tds__SetZeroConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetZeroConfiguration(struct soap*, const char*, int, const struct __tds__SetZeroConfiguration *, const char*); -SOAP_FMAC3 struct __tds__SetZeroConfiguration * SOAP_FMAC4 soap_in___tds__SetZeroConfiguration(struct soap*, const char*, struct __tds__SetZeroConfiguration *, const char*); -SOAP_FMAC1 struct __tds__SetZeroConfiguration * SOAP_FMAC2 soap_instantiate___tds__SetZeroConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetZeroConfiguration * soap_new___tds__SetZeroConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetZeroConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetZeroConfiguration * soap_new_req___tds__SetZeroConfiguration( - struct soap *soap) -{ - struct __tds__SetZeroConfiguration *_p = ::soap_new___tds__SetZeroConfiguration(soap); - if (_p) - { ::soap_default___tds__SetZeroConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__SetZeroConfiguration * soap_new_set___tds__SetZeroConfiguration( - struct soap *soap, - _tds__SetZeroConfiguration *tds__SetZeroConfiguration) -{ - struct __tds__SetZeroConfiguration *_p = ::soap_new___tds__SetZeroConfiguration(soap); - if (_p) - { ::soap_default___tds__SetZeroConfiguration(soap, _p); - _p->tds__SetZeroConfiguration = tds__SetZeroConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetZeroConfiguration(struct soap*, const struct __tds__SetZeroConfiguration *, const char*, const char*); - -inline int soap_write___tds__SetZeroConfiguration(struct soap *soap, struct __tds__SetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetZeroConfiguration(soap, p), 0) || ::soap_put___tds__SetZeroConfiguration(soap, p, "-tds:SetZeroConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__SetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetZeroConfiguration(soap, p), 0) || ::soap_put___tds__SetZeroConfiguration(soap, p, "-tds:SetZeroConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__SetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetZeroConfiguration(soap, p), 0) || ::soap_put___tds__SetZeroConfiguration(soap, p, "-tds:SetZeroConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__SetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetZeroConfiguration(soap, p), 0) || ::soap_put___tds__SetZeroConfiguration(soap, p, "-tds:SetZeroConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetZeroConfiguration * SOAP_FMAC4 soap_get___tds__SetZeroConfiguration(struct soap*, struct __tds__SetZeroConfiguration *, const char*, const char*); - -inline int soap_read___tds__SetZeroConfiguration(struct soap *soap, struct __tds__SetZeroConfiguration *p) -{ - if (p) - { ::soap_default___tds__SetZeroConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetZeroConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__SetZeroConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetZeroConfiguration(struct soap *soap, struct __tds__SetZeroConfiguration *p) -{ - if (::soap_read___tds__SetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetZeroConfiguration_DEFINED -#define SOAP_TYPE___tds__GetZeroConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetZeroConfiguration(struct soap*, struct __tds__GetZeroConfiguration *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetZeroConfiguration(struct soap*, const struct __tds__GetZeroConfiguration *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetZeroConfiguration(struct soap*, const char*, int, const struct __tds__GetZeroConfiguration *, const char*); -SOAP_FMAC3 struct __tds__GetZeroConfiguration * SOAP_FMAC4 soap_in___tds__GetZeroConfiguration(struct soap*, const char*, struct __tds__GetZeroConfiguration *, const char*); -SOAP_FMAC1 struct __tds__GetZeroConfiguration * SOAP_FMAC2 soap_instantiate___tds__GetZeroConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetZeroConfiguration * soap_new___tds__GetZeroConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetZeroConfiguration(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetZeroConfiguration * soap_new_req___tds__GetZeroConfiguration( - struct soap *soap) -{ - struct __tds__GetZeroConfiguration *_p = ::soap_new___tds__GetZeroConfiguration(soap); - if (_p) - { ::soap_default___tds__GetZeroConfiguration(soap, _p); - } - return _p; -} - -inline struct __tds__GetZeroConfiguration * soap_new_set___tds__GetZeroConfiguration( - struct soap *soap, - _tds__GetZeroConfiguration *tds__GetZeroConfiguration) -{ - struct __tds__GetZeroConfiguration *_p = ::soap_new___tds__GetZeroConfiguration(soap); - if (_p) - { ::soap_default___tds__GetZeroConfiguration(soap, _p); - _p->tds__GetZeroConfiguration = tds__GetZeroConfiguration; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetZeroConfiguration(struct soap*, const struct __tds__GetZeroConfiguration *, const char*, const char*); - -inline int soap_write___tds__GetZeroConfiguration(struct soap *soap, struct __tds__GetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetZeroConfiguration(soap, p), 0) || ::soap_put___tds__GetZeroConfiguration(soap, p, "-tds:GetZeroConfiguration", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__GetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetZeroConfiguration(soap, p), 0) || ::soap_put___tds__GetZeroConfiguration(soap, p, "-tds:GetZeroConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__GetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetZeroConfiguration(soap, p), 0) || ::soap_put___tds__GetZeroConfiguration(soap, p, "-tds:GetZeroConfiguration", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__GetZeroConfiguration const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetZeroConfiguration(soap, p), 0) || ::soap_put___tds__GetZeroConfiguration(soap, p, "-tds:GetZeroConfiguration", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetZeroConfiguration * SOAP_FMAC4 soap_get___tds__GetZeroConfiguration(struct soap*, struct __tds__GetZeroConfiguration *, const char*, const char*); - -inline int soap_read___tds__GetZeroConfiguration(struct soap *soap, struct __tds__GetZeroConfiguration *p) -{ - if (p) - { ::soap_default___tds__GetZeroConfiguration(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetZeroConfiguration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetZeroConfiguration(struct soap *soap, const char *URL, struct __tds__GetZeroConfiguration *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetZeroConfiguration(struct soap *soap, struct __tds__GetZeroConfiguration *p) -{ - if (::soap_read___tds__GetZeroConfiguration(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetNetworkDefaultGateway_DEFINED -#define SOAP_TYPE___tds__SetNetworkDefaultGateway_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNetworkDefaultGateway(struct soap*, struct __tds__SetNetworkDefaultGateway *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNetworkDefaultGateway(struct soap*, const struct __tds__SetNetworkDefaultGateway *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNetworkDefaultGateway(struct soap*, const char*, int, const struct __tds__SetNetworkDefaultGateway *, const char*); -SOAP_FMAC3 struct __tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_in___tds__SetNetworkDefaultGateway(struct soap*, const char*, struct __tds__SetNetworkDefaultGateway *, const char*); -SOAP_FMAC1 struct __tds__SetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate___tds__SetNetworkDefaultGateway(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetNetworkDefaultGateway * soap_new___tds__SetNetworkDefaultGateway(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetNetworkDefaultGateway(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetNetworkDefaultGateway * soap_new_req___tds__SetNetworkDefaultGateway( - struct soap *soap) -{ - struct __tds__SetNetworkDefaultGateway *_p = ::soap_new___tds__SetNetworkDefaultGateway(soap); - if (_p) - { ::soap_default___tds__SetNetworkDefaultGateway(soap, _p); - } - return _p; -} - -inline struct __tds__SetNetworkDefaultGateway * soap_new_set___tds__SetNetworkDefaultGateway( - struct soap *soap, - _tds__SetNetworkDefaultGateway *tds__SetNetworkDefaultGateway) -{ - struct __tds__SetNetworkDefaultGateway *_p = ::soap_new___tds__SetNetworkDefaultGateway(soap); - if (_p) - { ::soap_default___tds__SetNetworkDefaultGateway(soap, _p); - _p->tds__SetNetworkDefaultGateway = tds__SetNetworkDefaultGateway; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNetworkDefaultGateway(struct soap*, const struct __tds__SetNetworkDefaultGateway *, const char*, const char*); - -inline int soap_write___tds__SetNetworkDefaultGateway(struct soap *soap, struct __tds__SetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__SetNetworkDefaultGateway(soap, p, "-tds:SetNetworkDefaultGateway", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__SetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__SetNetworkDefaultGateway(soap, p, "-tds:SetNetworkDefaultGateway", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__SetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__SetNetworkDefaultGateway(soap, p, "-tds:SetNetworkDefaultGateway", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__SetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__SetNetworkDefaultGateway(soap, p, "-tds:SetNetworkDefaultGateway", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetNetworkDefaultGateway * SOAP_FMAC4 soap_get___tds__SetNetworkDefaultGateway(struct soap*, struct __tds__SetNetworkDefaultGateway *, const char*, const char*); - -inline int soap_read___tds__SetNetworkDefaultGateway(struct soap *soap, struct __tds__SetNetworkDefaultGateway *p) -{ - if (p) - { ::soap_default___tds__SetNetworkDefaultGateway(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetNetworkDefaultGateway(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__SetNetworkDefaultGateway *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetNetworkDefaultGateway(struct soap *soap, struct __tds__SetNetworkDefaultGateway *p) -{ - if (::soap_read___tds__SetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetNetworkDefaultGateway_DEFINED -#define SOAP_TYPE___tds__GetNetworkDefaultGateway_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNetworkDefaultGateway(struct soap*, struct __tds__GetNetworkDefaultGateway *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNetworkDefaultGateway(struct soap*, const struct __tds__GetNetworkDefaultGateway *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNetworkDefaultGateway(struct soap*, const char*, int, const struct __tds__GetNetworkDefaultGateway *, const char*); -SOAP_FMAC3 struct __tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_in___tds__GetNetworkDefaultGateway(struct soap*, const char*, struct __tds__GetNetworkDefaultGateway *, const char*); -SOAP_FMAC1 struct __tds__GetNetworkDefaultGateway * SOAP_FMAC2 soap_instantiate___tds__GetNetworkDefaultGateway(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetNetworkDefaultGateway * soap_new___tds__GetNetworkDefaultGateway(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetNetworkDefaultGateway(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetNetworkDefaultGateway * soap_new_req___tds__GetNetworkDefaultGateway( - struct soap *soap) -{ - struct __tds__GetNetworkDefaultGateway *_p = ::soap_new___tds__GetNetworkDefaultGateway(soap); - if (_p) - { ::soap_default___tds__GetNetworkDefaultGateway(soap, _p); - } - return _p; -} - -inline struct __tds__GetNetworkDefaultGateway * soap_new_set___tds__GetNetworkDefaultGateway( - struct soap *soap, - _tds__GetNetworkDefaultGateway *tds__GetNetworkDefaultGateway) -{ - struct __tds__GetNetworkDefaultGateway *_p = ::soap_new___tds__GetNetworkDefaultGateway(soap); - if (_p) - { ::soap_default___tds__GetNetworkDefaultGateway(soap, _p); - _p->tds__GetNetworkDefaultGateway = tds__GetNetworkDefaultGateway; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNetworkDefaultGateway(struct soap*, const struct __tds__GetNetworkDefaultGateway *, const char*, const char*); - -inline int soap_write___tds__GetNetworkDefaultGateway(struct soap *soap, struct __tds__GetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__GetNetworkDefaultGateway(soap, p, "-tds:GetNetworkDefaultGateway", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__GetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__GetNetworkDefaultGateway(soap, p, "-tds:GetNetworkDefaultGateway", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__GetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__GetNetworkDefaultGateway(soap, p, "-tds:GetNetworkDefaultGateway", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__GetNetworkDefaultGateway const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkDefaultGateway(soap, p), 0) || ::soap_put___tds__GetNetworkDefaultGateway(soap, p, "-tds:GetNetworkDefaultGateway", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetNetworkDefaultGateway * SOAP_FMAC4 soap_get___tds__GetNetworkDefaultGateway(struct soap*, struct __tds__GetNetworkDefaultGateway *, const char*, const char*); - -inline int soap_read___tds__GetNetworkDefaultGateway(struct soap *soap, struct __tds__GetNetworkDefaultGateway *p) -{ - if (p) - { ::soap_default___tds__GetNetworkDefaultGateway(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetNetworkDefaultGateway(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetNetworkDefaultGateway(struct soap *soap, const char *URL, struct __tds__GetNetworkDefaultGateway *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetNetworkDefaultGateway(struct soap *soap, struct __tds__GetNetworkDefaultGateway *p) -{ - if (::soap_read___tds__GetNetworkDefaultGateway(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetNetworkProtocols_DEFINED -#define SOAP_TYPE___tds__SetNetworkProtocols_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNetworkProtocols(struct soap*, struct __tds__SetNetworkProtocols *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNetworkProtocols(struct soap*, const struct __tds__SetNetworkProtocols *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNetworkProtocols(struct soap*, const char*, int, const struct __tds__SetNetworkProtocols *, const char*); -SOAP_FMAC3 struct __tds__SetNetworkProtocols * SOAP_FMAC4 soap_in___tds__SetNetworkProtocols(struct soap*, const char*, struct __tds__SetNetworkProtocols *, const char*); -SOAP_FMAC1 struct __tds__SetNetworkProtocols * SOAP_FMAC2 soap_instantiate___tds__SetNetworkProtocols(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetNetworkProtocols * soap_new___tds__SetNetworkProtocols(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetNetworkProtocols(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetNetworkProtocols * soap_new_req___tds__SetNetworkProtocols( - struct soap *soap) -{ - struct __tds__SetNetworkProtocols *_p = ::soap_new___tds__SetNetworkProtocols(soap); - if (_p) - { ::soap_default___tds__SetNetworkProtocols(soap, _p); - } - return _p; -} - -inline struct __tds__SetNetworkProtocols * soap_new_set___tds__SetNetworkProtocols( - struct soap *soap, - _tds__SetNetworkProtocols *tds__SetNetworkProtocols) -{ - struct __tds__SetNetworkProtocols *_p = ::soap_new___tds__SetNetworkProtocols(soap); - if (_p) - { ::soap_default___tds__SetNetworkProtocols(soap, _p); - _p->tds__SetNetworkProtocols = tds__SetNetworkProtocols; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNetworkProtocols(struct soap*, const struct __tds__SetNetworkProtocols *, const char*, const char*); - -inline int soap_write___tds__SetNetworkProtocols(struct soap *soap, struct __tds__SetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetNetworkProtocols(soap, p), 0) || ::soap_put___tds__SetNetworkProtocols(soap, p, "-tds:SetNetworkProtocols", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__SetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkProtocols(soap, p), 0) || ::soap_put___tds__SetNetworkProtocols(soap, p, "-tds:SetNetworkProtocols", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__SetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkProtocols(soap, p), 0) || ::soap_put___tds__SetNetworkProtocols(soap, p, "-tds:SetNetworkProtocols", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__SetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkProtocols(soap, p), 0) || ::soap_put___tds__SetNetworkProtocols(soap, p, "-tds:SetNetworkProtocols", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetNetworkProtocols * SOAP_FMAC4 soap_get___tds__SetNetworkProtocols(struct soap*, struct __tds__SetNetworkProtocols *, const char*, const char*); - -inline int soap_read___tds__SetNetworkProtocols(struct soap *soap, struct __tds__SetNetworkProtocols *p) -{ - if (p) - { ::soap_default___tds__SetNetworkProtocols(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetNetworkProtocols(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__SetNetworkProtocols *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetNetworkProtocols(struct soap *soap, struct __tds__SetNetworkProtocols *p) -{ - if (::soap_read___tds__SetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetNetworkProtocols_DEFINED -#define SOAP_TYPE___tds__GetNetworkProtocols_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNetworkProtocols(struct soap*, struct __tds__GetNetworkProtocols *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNetworkProtocols(struct soap*, const struct __tds__GetNetworkProtocols *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNetworkProtocols(struct soap*, const char*, int, const struct __tds__GetNetworkProtocols *, const char*); -SOAP_FMAC3 struct __tds__GetNetworkProtocols * SOAP_FMAC4 soap_in___tds__GetNetworkProtocols(struct soap*, const char*, struct __tds__GetNetworkProtocols *, const char*); -SOAP_FMAC1 struct __tds__GetNetworkProtocols * SOAP_FMAC2 soap_instantiate___tds__GetNetworkProtocols(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetNetworkProtocols * soap_new___tds__GetNetworkProtocols(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetNetworkProtocols(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetNetworkProtocols * soap_new_req___tds__GetNetworkProtocols( - struct soap *soap) -{ - struct __tds__GetNetworkProtocols *_p = ::soap_new___tds__GetNetworkProtocols(soap); - if (_p) - { ::soap_default___tds__GetNetworkProtocols(soap, _p); - } - return _p; -} - -inline struct __tds__GetNetworkProtocols * soap_new_set___tds__GetNetworkProtocols( - struct soap *soap, - _tds__GetNetworkProtocols *tds__GetNetworkProtocols) -{ - struct __tds__GetNetworkProtocols *_p = ::soap_new___tds__GetNetworkProtocols(soap); - if (_p) - { ::soap_default___tds__GetNetworkProtocols(soap, _p); - _p->tds__GetNetworkProtocols = tds__GetNetworkProtocols; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNetworkProtocols(struct soap*, const struct __tds__GetNetworkProtocols *, const char*, const char*); - -inline int soap_write___tds__GetNetworkProtocols(struct soap *soap, struct __tds__GetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetNetworkProtocols(soap, p), 0) || ::soap_put___tds__GetNetworkProtocols(soap, p, "-tds:GetNetworkProtocols", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__GetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkProtocols(soap, p), 0) || ::soap_put___tds__GetNetworkProtocols(soap, p, "-tds:GetNetworkProtocols", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__GetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkProtocols(soap, p), 0) || ::soap_put___tds__GetNetworkProtocols(soap, p, "-tds:GetNetworkProtocols", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__GetNetworkProtocols const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkProtocols(soap, p), 0) || ::soap_put___tds__GetNetworkProtocols(soap, p, "-tds:GetNetworkProtocols", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetNetworkProtocols * SOAP_FMAC4 soap_get___tds__GetNetworkProtocols(struct soap*, struct __tds__GetNetworkProtocols *, const char*, const char*); - -inline int soap_read___tds__GetNetworkProtocols(struct soap *soap, struct __tds__GetNetworkProtocols *p) -{ - if (p) - { ::soap_default___tds__GetNetworkProtocols(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetNetworkProtocols(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetNetworkProtocols(struct soap *soap, const char *URL, struct __tds__GetNetworkProtocols *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetNetworkProtocols(struct soap *soap, struct __tds__GetNetworkProtocols *p) -{ - if (::soap_read___tds__GetNetworkProtocols(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetNetworkInterfaces_DEFINED -#define SOAP_TYPE___tds__SetNetworkInterfaces_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNetworkInterfaces(struct soap*, struct __tds__SetNetworkInterfaces *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNetworkInterfaces(struct soap*, const struct __tds__SetNetworkInterfaces *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNetworkInterfaces(struct soap*, const char*, int, const struct __tds__SetNetworkInterfaces *, const char*); -SOAP_FMAC3 struct __tds__SetNetworkInterfaces * SOAP_FMAC4 soap_in___tds__SetNetworkInterfaces(struct soap*, const char*, struct __tds__SetNetworkInterfaces *, const char*); -SOAP_FMAC1 struct __tds__SetNetworkInterfaces * SOAP_FMAC2 soap_instantiate___tds__SetNetworkInterfaces(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetNetworkInterfaces * soap_new___tds__SetNetworkInterfaces(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetNetworkInterfaces(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetNetworkInterfaces * soap_new_req___tds__SetNetworkInterfaces( - struct soap *soap) -{ - struct __tds__SetNetworkInterfaces *_p = ::soap_new___tds__SetNetworkInterfaces(soap); - if (_p) - { ::soap_default___tds__SetNetworkInterfaces(soap, _p); - } - return _p; -} - -inline struct __tds__SetNetworkInterfaces * soap_new_set___tds__SetNetworkInterfaces( - struct soap *soap, - _tds__SetNetworkInterfaces *tds__SetNetworkInterfaces) -{ - struct __tds__SetNetworkInterfaces *_p = ::soap_new___tds__SetNetworkInterfaces(soap); - if (_p) - { ::soap_default___tds__SetNetworkInterfaces(soap, _p); - _p->tds__SetNetworkInterfaces = tds__SetNetworkInterfaces; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNetworkInterfaces(struct soap*, const struct __tds__SetNetworkInterfaces *, const char*, const char*); - -inline int soap_write___tds__SetNetworkInterfaces(struct soap *soap, struct __tds__SetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__SetNetworkInterfaces(soap, p, "-tds:SetNetworkInterfaces", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__SetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__SetNetworkInterfaces(soap, p, "-tds:SetNetworkInterfaces", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__SetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__SetNetworkInterfaces(soap, p, "-tds:SetNetworkInterfaces", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__SetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__SetNetworkInterfaces(soap, p, "-tds:SetNetworkInterfaces", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetNetworkInterfaces * SOAP_FMAC4 soap_get___tds__SetNetworkInterfaces(struct soap*, struct __tds__SetNetworkInterfaces *, const char*, const char*); - -inline int soap_read___tds__SetNetworkInterfaces(struct soap *soap, struct __tds__SetNetworkInterfaces *p) -{ - if (p) - { ::soap_default___tds__SetNetworkInterfaces(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetNetworkInterfaces(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__SetNetworkInterfaces *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetNetworkInterfaces(struct soap *soap, struct __tds__SetNetworkInterfaces *p) -{ - if (::soap_read___tds__SetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetNetworkInterfaces_DEFINED -#define SOAP_TYPE___tds__GetNetworkInterfaces_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNetworkInterfaces(struct soap*, struct __tds__GetNetworkInterfaces *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNetworkInterfaces(struct soap*, const struct __tds__GetNetworkInterfaces *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNetworkInterfaces(struct soap*, const char*, int, const struct __tds__GetNetworkInterfaces *, const char*); -SOAP_FMAC3 struct __tds__GetNetworkInterfaces * SOAP_FMAC4 soap_in___tds__GetNetworkInterfaces(struct soap*, const char*, struct __tds__GetNetworkInterfaces *, const char*); -SOAP_FMAC1 struct __tds__GetNetworkInterfaces * SOAP_FMAC2 soap_instantiate___tds__GetNetworkInterfaces(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetNetworkInterfaces * soap_new___tds__GetNetworkInterfaces(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetNetworkInterfaces(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetNetworkInterfaces * soap_new_req___tds__GetNetworkInterfaces( - struct soap *soap) -{ - struct __tds__GetNetworkInterfaces *_p = ::soap_new___tds__GetNetworkInterfaces(soap); - if (_p) - { ::soap_default___tds__GetNetworkInterfaces(soap, _p); - } - return _p; -} - -inline struct __tds__GetNetworkInterfaces * soap_new_set___tds__GetNetworkInterfaces( - struct soap *soap, - _tds__GetNetworkInterfaces *tds__GetNetworkInterfaces) -{ - struct __tds__GetNetworkInterfaces *_p = ::soap_new___tds__GetNetworkInterfaces(soap); - if (_p) - { ::soap_default___tds__GetNetworkInterfaces(soap, _p); - _p->tds__GetNetworkInterfaces = tds__GetNetworkInterfaces; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNetworkInterfaces(struct soap*, const struct __tds__GetNetworkInterfaces *, const char*, const char*); - -inline int soap_write___tds__GetNetworkInterfaces(struct soap *soap, struct __tds__GetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__GetNetworkInterfaces(soap, p, "-tds:GetNetworkInterfaces", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__GetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__GetNetworkInterfaces(soap, p, "-tds:GetNetworkInterfaces", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__GetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__GetNetworkInterfaces(soap, p, "-tds:GetNetworkInterfaces", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__GetNetworkInterfaces const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNetworkInterfaces(soap, p), 0) || ::soap_put___tds__GetNetworkInterfaces(soap, p, "-tds:GetNetworkInterfaces", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetNetworkInterfaces * SOAP_FMAC4 soap_get___tds__GetNetworkInterfaces(struct soap*, struct __tds__GetNetworkInterfaces *, const char*, const char*); - -inline int soap_read___tds__GetNetworkInterfaces(struct soap *soap, struct __tds__GetNetworkInterfaces *p) -{ - if (p) - { ::soap_default___tds__GetNetworkInterfaces(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetNetworkInterfaces(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetNetworkInterfaces(struct soap *soap, const char *URL, struct __tds__GetNetworkInterfaces *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetNetworkInterfaces(struct soap *soap, struct __tds__GetNetworkInterfaces *p) -{ - if (::soap_read___tds__GetNetworkInterfaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetDynamicDNS_DEFINED -#define SOAP_TYPE___tds__SetDynamicDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDynamicDNS(struct soap*, struct __tds__SetDynamicDNS *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDynamicDNS(struct soap*, const struct __tds__SetDynamicDNS *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDynamicDNS(struct soap*, const char*, int, const struct __tds__SetDynamicDNS *, const char*); -SOAP_FMAC3 struct __tds__SetDynamicDNS * SOAP_FMAC4 soap_in___tds__SetDynamicDNS(struct soap*, const char*, struct __tds__SetDynamicDNS *, const char*); -SOAP_FMAC1 struct __tds__SetDynamicDNS * SOAP_FMAC2 soap_instantiate___tds__SetDynamicDNS(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetDynamicDNS * soap_new___tds__SetDynamicDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetDynamicDNS(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetDynamicDNS * soap_new_req___tds__SetDynamicDNS( - struct soap *soap) -{ - struct __tds__SetDynamicDNS *_p = ::soap_new___tds__SetDynamicDNS(soap); - if (_p) - { ::soap_default___tds__SetDynamicDNS(soap, _p); - } - return _p; -} - -inline struct __tds__SetDynamicDNS * soap_new_set___tds__SetDynamicDNS( - struct soap *soap, - _tds__SetDynamicDNS *tds__SetDynamicDNS) -{ - struct __tds__SetDynamicDNS *_p = ::soap_new___tds__SetDynamicDNS(soap); - if (_p) - { ::soap_default___tds__SetDynamicDNS(soap, _p); - _p->tds__SetDynamicDNS = tds__SetDynamicDNS; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDynamicDNS(struct soap*, const struct __tds__SetDynamicDNS *, const char*, const char*); - -inline int soap_write___tds__SetDynamicDNS(struct soap *soap, struct __tds__SetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetDynamicDNS(soap, p), 0) || ::soap_put___tds__SetDynamicDNS(soap, p, "-tds:SetDynamicDNS", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetDynamicDNS(struct soap *soap, const char *URL, struct __tds__SetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDynamicDNS(soap, p), 0) || ::soap_put___tds__SetDynamicDNS(soap, p, "-tds:SetDynamicDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetDynamicDNS(struct soap *soap, const char *URL, struct __tds__SetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDynamicDNS(soap, p), 0) || ::soap_put___tds__SetDynamicDNS(soap, p, "-tds:SetDynamicDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetDynamicDNS(struct soap *soap, const char *URL, struct __tds__SetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDynamicDNS(soap, p), 0) || ::soap_put___tds__SetDynamicDNS(soap, p, "-tds:SetDynamicDNS", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetDynamicDNS * SOAP_FMAC4 soap_get___tds__SetDynamicDNS(struct soap*, struct __tds__SetDynamicDNS *, const char*, const char*); - -inline int soap_read___tds__SetDynamicDNS(struct soap *soap, struct __tds__SetDynamicDNS *p) -{ - if (p) - { ::soap_default___tds__SetDynamicDNS(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetDynamicDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetDynamicDNS(struct soap *soap, const char *URL, struct __tds__SetDynamicDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetDynamicDNS(struct soap *soap, struct __tds__SetDynamicDNS *p) -{ - if (::soap_read___tds__SetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDynamicDNS_DEFINED -#define SOAP_TYPE___tds__GetDynamicDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDynamicDNS(struct soap*, struct __tds__GetDynamicDNS *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDynamicDNS(struct soap*, const struct __tds__GetDynamicDNS *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDynamicDNS(struct soap*, const char*, int, const struct __tds__GetDynamicDNS *, const char*); -SOAP_FMAC3 struct __tds__GetDynamicDNS * SOAP_FMAC4 soap_in___tds__GetDynamicDNS(struct soap*, const char*, struct __tds__GetDynamicDNS *, const char*); -SOAP_FMAC1 struct __tds__GetDynamicDNS * SOAP_FMAC2 soap_instantiate___tds__GetDynamicDNS(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDynamicDNS * soap_new___tds__GetDynamicDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDynamicDNS(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDynamicDNS * soap_new_req___tds__GetDynamicDNS( - struct soap *soap) -{ - struct __tds__GetDynamicDNS *_p = ::soap_new___tds__GetDynamicDNS(soap); - if (_p) - { ::soap_default___tds__GetDynamicDNS(soap, _p); - } - return _p; -} - -inline struct __tds__GetDynamicDNS * soap_new_set___tds__GetDynamicDNS( - struct soap *soap, - _tds__GetDynamicDNS *tds__GetDynamicDNS) -{ - struct __tds__GetDynamicDNS *_p = ::soap_new___tds__GetDynamicDNS(soap); - if (_p) - { ::soap_default___tds__GetDynamicDNS(soap, _p); - _p->tds__GetDynamicDNS = tds__GetDynamicDNS; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDynamicDNS(struct soap*, const struct __tds__GetDynamicDNS *, const char*, const char*); - -inline int soap_write___tds__GetDynamicDNS(struct soap *soap, struct __tds__GetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDynamicDNS(soap, p), 0) || ::soap_put___tds__GetDynamicDNS(soap, p, "-tds:GetDynamicDNS", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDynamicDNS(struct soap *soap, const char *URL, struct __tds__GetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDynamicDNS(soap, p), 0) || ::soap_put___tds__GetDynamicDNS(soap, p, "-tds:GetDynamicDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDynamicDNS(struct soap *soap, const char *URL, struct __tds__GetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDynamicDNS(soap, p), 0) || ::soap_put___tds__GetDynamicDNS(soap, p, "-tds:GetDynamicDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDynamicDNS(struct soap *soap, const char *URL, struct __tds__GetDynamicDNS const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDynamicDNS(soap, p), 0) || ::soap_put___tds__GetDynamicDNS(soap, p, "-tds:GetDynamicDNS", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDynamicDNS * SOAP_FMAC4 soap_get___tds__GetDynamicDNS(struct soap*, struct __tds__GetDynamicDNS *, const char*, const char*); - -inline int soap_read___tds__GetDynamicDNS(struct soap *soap, struct __tds__GetDynamicDNS *p) -{ - if (p) - { ::soap_default___tds__GetDynamicDNS(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDynamicDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDynamicDNS(struct soap *soap, const char *URL, struct __tds__GetDynamicDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDynamicDNS(struct soap *soap, struct __tds__GetDynamicDNS *p) -{ - if (::soap_read___tds__GetDynamicDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetNTP_DEFINED -#define SOAP_TYPE___tds__SetNTP_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetNTP(struct soap*, struct __tds__SetNTP *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetNTP(struct soap*, const struct __tds__SetNTP *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetNTP(struct soap*, const char*, int, const struct __tds__SetNTP *, const char*); -SOAP_FMAC3 struct __tds__SetNTP * SOAP_FMAC4 soap_in___tds__SetNTP(struct soap*, const char*, struct __tds__SetNTP *, const char*); -SOAP_FMAC1 struct __tds__SetNTP * SOAP_FMAC2 soap_instantiate___tds__SetNTP(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetNTP * soap_new___tds__SetNTP(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetNTP(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetNTP * soap_new_req___tds__SetNTP( - struct soap *soap) -{ - struct __tds__SetNTP *_p = ::soap_new___tds__SetNTP(soap); - if (_p) - { ::soap_default___tds__SetNTP(soap, _p); - } - return _p; -} - -inline struct __tds__SetNTP * soap_new_set___tds__SetNTP( - struct soap *soap, - _tds__SetNTP *tds__SetNTP) -{ - struct __tds__SetNTP *_p = ::soap_new___tds__SetNTP(soap); - if (_p) - { ::soap_default___tds__SetNTP(soap, _p); - _p->tds__SetNTP = tds__SetNTP; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetNTP(struct soap*, const struct __tds__SetNTP *, const char*, const char*); - -inline int soap_write___tds__SetNTP(struct soap *soap, struct __tds__SetNTP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetNTP(soap, p), 0) || ::soap_put___tds__SetNTP(soap, p, "-tds:SetNTP", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetNTP(struct soap *soap, const char *URL, struct __tds__SetNTP const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNTP(soap, p), 0) || ::soap_put___tds__SetNTP(soap, p, "-tds:SetNTP", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetNTP(struct soap *soap, const char *URL, struct __tds__SetNTP const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNTP(soap, p), 0) || ::soap_put___tds__SetNTP(soap, p, "-tds:SetNTP", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetNTP(struct soap *soap, const char *URL, struct __tds__SetNTP const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetNTP(soap, p), 0) || ::soap_put___tds__SetNTP(soap, p, "-tds:SetNTP", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetNTP * SOAP_FMAC4 soap_get___tds__SetNTP(struct soap*, struct __tds__SetNTP *, const char*, const char*); - -inline int soap_read___tds__SetNTP(struct soap *soap, struct __tds__SetNTP *p) -{ - if (p) - { ::soap_default___tds__SetNTP(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetNTP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetNTP(struct soap *soap, const char *URL, struct __tds__SetNTP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetNTP(struct soap *soap, struct __tds__SetNTP *p) -{ - if (::soap_read___tds__SetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetNTP_DEFINED -#define SOAP_TYPE___tds__GetNTP_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetNTP(struct soap*, struct __tds__GetNTP *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetNTP(struct soap*, const struct __tds__GetNTP *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetNTP(struct soap*, const char*, int, const struct __tds__GetNTP *, const char*); -SOAP_FMAC3 struct __tds__GetNTP * SOAP_FMAC4 soap_in___tds__GetNTP(struct soap*, const char*, struct __tds__GetNTP *, const char*); -SOAP_FMAC1 struct __tds__GetNTP * SOAP_FMAC2 soap_instantiate___tds__GetNTP(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetNTP * soap_new___tds__GetNTP(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetNTP(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetNTP * soap_new_req___tds__GetNTP( - struct soap *soap) -{ - struct __tds__GetNTP *_p = ::soap_new___tds__GetNTP(soap); - if (_p) - { ::soap_default___tds__GetNTP(soap, _p); - } - return _p; -} - -inline struct __tds__GetNTP * soap_new_set___tds__GetNTP( - struct soap *soap, - _tds__GetNTP *tds__GetNTP) -{ - struct __tds__GetNTP *_p = ::soap_new___tds__GetNTP(soap); - if (_p) - { ::soap_default___tds__GetNTP(soap, _p); - _p->tds__GetNTP = tds__GetNTP; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetNTP(struct soap*, const struct __tds__GetNTP *, const char*, const char*); - -inline int soap_write___tds__GetNTP(struct soap *soap, struct __tds__GetNTP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetNTP(soap, p), 0) || ::soap_put___tds__GetNTP(soap, p, "-tds:GetNTP", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetNTP(struct soap *soap, const char *URL, struct __tds__GetNTP const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNTP(soap, p), 0) || ::soap_put___tds__GetNTP(soap, p, "-tds:GetNTP", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetNTP(struct soap *soap, const char *URL, struct __tds__GetNTP const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNTP(soap, p), 0) || ::soap_put___tds__GetNTP(soap, p, "-tds:GetNTP", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetNTP(struct soap *soap, const char *URL, struct __tds__GetNTP const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetNTP(soap, p), 0) || ::soap_put___tds__GetNTP(soap, p, "-tds:GetNTP", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetNTP * SOAP_FMAC4 soap_get___tds__GetNTP(struct soap*, struct __tds__GetNTP *, const char*, const char*); - -inline int soap_read___tds__GetNTP(struct soap *soap, struct __tds__GetNTP *p) -{ - if (p) - { ::soap_default___tds__GetNTP(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetNTP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetNTP(struct soap *soap, const char *URL, struct __tds__GetNTP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetNTP(struct soap *soap, struct __tds__GetNTP *p) -{ - if (::soap_read___tds__GetNTP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetDNS_DEFINED -#define SOAP_TYPE___tds__SetDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDNS(struct soap*, struct __tds__SetDNS *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDNS(struct soap*, const struct __tds__SetDNS *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDNS(struct soap*, const char*, int, const struct __tds__SetDNS *, const char*); -SOAP_FMAC3 struct __tds__SetDNS * SOAP_FMAC4 soap_in___tds__SetDNS(struct soap*, const char*, struct __tds__SetDNS *, const char*); -SOAP_FMAC1 struct __tds__SetDNS * SOAP_FMAC2 soap_instantiate___tds__SetDNS(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetDNS * soap_new___tds__SetDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetDNS(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetDNS * soap_new_req___tds__SetDNS( - struct soap *soap) -{ - struct __tds__SetDNS *_p = ::soap_new___tds__SetDNS(soap); - if (_p) - { ::soap_default___tds__SetDNS(soap, _p); - } - return _p; -} - -inline struct __tds__SetDNS * soap_new_set___tds__SetDNS( - struct soap *soap, - _tds__SetDNS *tds__SetDNS) -{ - struct __tds__SetDNS *_p = ::soap_new___tds__SetDNS(soap); - if (_p) - { ::soap_default___tds__SetDNS(soap, _p); - _p->tds__SetDNS = tds__SetDNS; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDNS(struct soap*, const struct __tds__SetDNS *, const char*, const char*); - -inline int soap_write___tds__SetDNS(struct soap *soap, struct __tds__SetDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetDNS(soap, p), 0) || ::soap_put___tds__SetDNS(soap, p, "-tds:SetDNS", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetDNS(struct soap *soap, const char *URL, struct __tds__SetDNS const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDNS(soap, p), 0) || ::soap_put___tds__SetDNS(soap, p, "-tds:SetDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetDNS(struct soap *soap, const char *URL, struct __tds__SetDNS const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDNS(soap, p), 0) || ::soap_put___tds__SetDNS(soap, p, "-tds:SetDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetDNS(struct soap *soap, const char *URL, struct __tds__SetDNS const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDNS(soap, p), 0) || ::soap_put___tds__SetDNS(soap, p, "-tds:SetDNS", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetDNS * SOAP_FMAC4 soap_get___tds__SetDNS(struct soap*, struct __tds__SetDNS *, const char*, const char*); - -inline int soap_read___tds__SetDNS(struct soap *soap, struct __tds__SetDNS *p) -{ - if (p) - { ::soap_default___tds__SetDNS(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetDNS(struct soap *soap, const char *URL, struct __tds__SetDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetDNS(struct soap *soap, struct __tds__SetDNS *p) -{ - if (::soap_read___tds__SetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDNS_DEFINED -#define SOAP_TYPE___tds__GetDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDNS(struct soap*, struct __tds__GetDNS *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDNS(struct soap*, const struct __tds__GetDNS *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDNS(struct soap*, const char*, int, const struct __tds__GetDNS *, const char*); -SOAP_FMAC3 struct __tds__GetDNS * SOAP_FMAC4 soap_in___tds__GetDNS(struct soap*, const char*, struct __tds__GetDNS *, const char*); -SOAP_FMAC1 struct __tds__GetDNS * SOAP_FMAC2 soap_instantiate___tds__GetDNS(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDNS * soap_new___tds__GetDNS(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDNS(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDNS * soap_new_req___tds__GetDNS( - struct soap *soap) -{ - struct __tds__GetDNS *_p = ::soap_new___tds__GetDNS(soap); - if (_p) - { ::soap_default___tds__GetDNS(soap, _p); - } - return _p; -} - -inline struct __tds__GetDNS * soap_new_set___tds__GetDNS( - struct soap *soap, - _tds__GetDNS *tds__GetDNS) -{ - struct __tds__GetDNS *_p = ::soap_new___tds__GetDNS(soap); - if (_p) - { ::soap_default___tds__GetDNS(soap, _p); - _p->tds__GetDNS = tds__GetDNS; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDNS(struct soap*, const struct __tds__GetDNS *, const char*, const char*); - -inline int soap_write___tds__GetDNS(struct soap *soap, struct __tds__GetDNS const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDNS(soap, p), 0) || ::soap_put___tds__GetDNS(soap, p, "-tds:GetDNS", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDNS(struct soap *soap, const char *URL, struct __tds__GetDNS const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDNS(soap, p), 0) || ::soap_put___tds__GetDNS(soap, p, "-tds:GetDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDNS(struct soap *soap, const char *URL, struct __tds__GetDNS const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDNS(soap, p), 0) || ::soap_put___tds__GetDNS(soap, p, "-tds:GetDNS", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDNS(struct soap *soap, const char *URL, struct __tds__GetDNS const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDNS(soap, p), 0) || ::soap_put___tds__GetDNS(soap, p, "-tds:GetDNS", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDNS * SOAP_FMAC4 soap_get___tds__GetDNS(struct soap*, struct __tds__GetDNS *, const char*, const char*); - -inline int soap_read___tds__GetDNS(struct soap *soap, struct __tds__GetDNS *p) -{ - if (p) - { ::soap_default___tds__GetDNS(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDNS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDNS(struct soap *soap, const char *URL, struct __tds__GetDNS *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDNS(struct soap *soap, struct __tds__GetDNS *p) -{ - if (::soap_read___tds__GetDNS(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetHostnameFromDHCP_DEFINED -#define SOAP_TYPE___tds__SetHostnameFromDHCP_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetHostnameFromDHCP(struct soap*, struct __tds__SetHostnameFromDHCP *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetHostnameFromDHCP(struct soap*, const struct __tds__SetHostnameFromDHCP *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetHostnameFromDHCP(struct soap*, const char*, int, const struct __tds__SetHostnameFromDHCP *, const char*); -SOAP_FMAC3 struct __tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_in___tds__SetHostnameFromDHCP(struct soap*, const char*, struct __tds__SetHostnameFromDHCP *, const char*); -SOAP_FMAC1 struct __tds__SetHostnameFromDHCP * SOAP_FMAC2 soap_instantiate___tds__SetHostnameFromDHCP(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetHostnameFromDHCP * soap_new___tds__SetHostnameFromDHCP(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetHostnameFromDHCP(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetHostnameFromDHCP * soap_new_req___tds__SetHostnameFromDHCP( - struct soap *soap) -{ - struct __tds__SetHostnameFromDHCP *_p = ::soap_new___tds__SetHostnameFromDHCP(soap); - if (_p) - { ::soap_default___tds__SetHostnameFromDHCP(soap, _p); - } - return _p; -} - -inline struct __tds__SetHostnameFromDHCP * soap_new_set___tds__SetHostnameFromDHCP( - struct soap *soap, - _tds__SetHostnameFromDHCP *tds__SetHostnameFromDHCP) -{ - struct __tds__SetHostnameFromDHCP *_p = ::soap_new___tds__SetHostnameFromDHCP(soap); - if (_p) - { ::soap_default___tds__SetHostnameFromDHCP(soap, _p); - _p->tds__SetHostnameFromDHCP = tds__SetHostnameFromDHCP; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetHostnameFromDHCP(struct soap*, const struct __tds__SetHostnameFromDHCP *, const char*, const char*); - -inline int soap_write___tds__SetHostnameFromDHCP(struct soap *soap, struct __tds__SetHostnameFromDHCP const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetHostnameFromDHCP(soap, p), 0) || ::soap_put___tds__SetHostnameFromDHCP(soap, p, "-tds:SetHostnameFromDHCP", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, struct __tds__SetHostnameFromDHCP const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetHostnameFromDHCP(soap, p), 0) || ::soap_put___tds__SetHostnameFromDHCP(soap, p, "-tds:SetHostnameFromDHCP", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, struct __tds__SetHostnameFromDHCP const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetHostnameFromDHCP(soap, p), 0) || ::soap_put___tds__SetHostnameFromDHCP(soap, p, "-tds:SetHostnameFromDHCP", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, struct __tds__SetHostnameFromDHCP const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetHostnameFromDHCP(soap, p), 0) || ::soap_put___tds__SetHostnameFromDHCP(soap, p, "-tds:SetHostnameFromDHCP", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetHostnameFromDHCP * SOAP_FMAC4 soap_get___tds__SetHostnameFromDHCP(struct soap*, struct __tds__SetHostnameFromDHCP *, const char*, const char*); - -inline int soap_read___tds__SetHostnameFromDHCP(struct soap *soap, struct __tds__SetHostnameFromDHCP *p) -{ - if (p) - { ::soap_default___tds__SetHostnameFromDHCP(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetHostnameFromDHCP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetHostnameFromDHCP(struct soap *soap, const char *URL, struct __tds__SetHostnameFromDHCP *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetHostnameFromDHCP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetHostnameFromDHCP(struct soap *soap, struct __tds__SetHostnameFromDHCP *p) -{ - if (::soap_read___tds__SetHostnameFromDHCP(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetHostname_DEFINED -#define SOAP_TYPE___tds__SetHostname_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetHostname(struct soap*, struct __tds__SetHostname *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetHostname(struct soap*, const struct __tds__SetHostname *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetHostname(struct soap*, const char*, int, const struct __tds__SetHostname *, const char*); -SOAP_FMAC3 struct __tds__SetHostname * SOAP_FMAC4 soap_in___tds__SetHostname(struct soap*, const char*, struct __tds__SetHostname *, const char*); -SOAP_FMAC1 struct __tds__SetHostname * SOAP_FMAC2 soap_instantiate___tds__SetHostname(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetHostname * soap_new___tds__SetHostname(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetHostname(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetHostname * soap_new_req___tds__SetHostname( - struct soap *soap) -{ - struct __tds__SetHostname *_p = ::soap_new___tds__SetHostname(soap); - if (_p) - { ::soap_default___tds__SetHostname(soap, _p); - } - return _p; -} - -inline struct __tds__SetHostname * soap_new_set___tds__SetHostname( - struct soap *soap, - _tds__SetHostname *tds__SetHostname) -{ - struct __tds__SetHostname *_p = ::soap_new___tds__SetHostname(soap); - if (_p) - { ::soap_default___tds__SetHostname(soap, _p); - _p->tds__SetHostname = tds__SetHostname; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetHostname(struct soap*, const struct __tds__SetHostname *, const char*, const char*); - -inline int soap_write___tds__SetHostname(struct soap *soap, struct __tds__SetHostname const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetHostname(soap, p), 0) || ::soap_put___tds__SetHostname(soap, p, "-tds:SetHostname", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetHostname(struct soap *soap, const char *URL, struct __tds__SetHostname const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetHostname(soap, p), 0) || ::soap_put___tds__SetHostname(soap, p, "-tds:SetHostname", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetHostname(struct soap *soap, const char *URL, struct __tds__SetHostname const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetHostname(soap, p), 0) || ::soap_put___tds__SetHostname(soap, p, "-tds:SetHostname", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetHostname(struct soap *soap, const char *URL, struct __tds__SetHostname const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetHostname(soap, p), 0) || ::soap_put___tds__SetHostname(soap, p, "-tds:SetHostname", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetHostname * SOAP_FMAC4 soap_get___tds__SetHostname(struct soap*, struct __tds__SetHostname *, const char*, const char*); - -inline int soap_read___tds__SetHostname(struct soap *soap, struct __tds__SetHostname *p) -{ - if (p) - { ::soap_default___tds__SetHostname(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetHostname(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetHostname(struct soap *soap, const char *URL, struct __tds__SetHostname *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetHostname(struct soap *soap, struct __tds__SetHostname *p) -{ - if (::soap_read___tds__SetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetHostname_DEFINED -#define SOAP_TYPE___tds__GetHostname_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetHostname(struct soap*, struct __tds__GetHostname *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetHostname(struct soap*, const struct __tds__GetHostname *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetHostname(struct soap*, const char*, int, const struct __tds__GetHostname *, const char*); -SOAP_FMAC3 struct __tds__GetHostname * SOAP_FMAC4 soap_in___tds__GetHostname(struct soap*, const char*, struct __tds__GetHostname *, const char*); -SOAP_FMAC1 struct __tds__GetHostname * SOAP_FMAC2 soap_instantiate___tds__GetHostname(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetHostname * soap_new___tds__GetHostname(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetHostname(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetHostname * soap_new_req___tds__GetHostname( - struct soap *soap) -{ - struct __tds__GetHostname *_p = ::soap_new___tds__GetHostname(soap); - if (_p) - { ::soap_default___tds__GetHostname(soap, _p); - } - return _p; -} - -inline struct __tds__GetHostname * soap_new_set___tds__GetHostname( - struct soap *soap, - _tds__GetHostname *tds__GetHostname) -{ - struct __tds__GetHostname *_p = ::soap_new___tds__GetHostname(soap); - if (_p) - { ::soap_default___tds__GetHostname(soap, _p); - _p->tds__GetHostname = tds__GetHostname; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetHostname(struct soap*, const struct __tds__GetHostname *, const char*, const char*); - -inline int soap_write___tds__GetHostname(struct soap *soap, struct __tds__GetHostname const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetHostname(soap, p), 0) || ::soap_put___tds__GetHostname(soap, p, "-tds:GetHostname", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetHostname(struct soap *soap, const char *URL, struct __tds__GetHostname const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetHostname(soap, p), 0) || ::soap_put___tds__GetHostname(soap, p, "-tds:GetHostname", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetHostname(struct soap *soap, const char *URL, struct __tds__GetHostname const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetHostname(soap, p), 0) || ::soap_put___tds__GetHostname(soap, p, "-tds:GetHostname", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetHostname(struct soap *soap, const char *URL, struct __tds__GetHostname const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetHostname(soap, p), 0) || ::soap_put___tds__GetHostname(soap, p, "-tds:GetHostname", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetHostname * SOAP_FMAC4 soap_get___tds__GetHostname(struct soap*, struct __tds__GetHostname *, const char*, const char*); - -inline int soap_read___tds__GetHostname(struct soap *soap, struct __tds__GetHostname *p) -{ - if (p) - { ::soap_default___tds__GetHostname(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetHostname(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetHostname(struct soap *soap, const char *URL, struct __tds__GetHostname *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetHostname(struct soap *soap, struct __tds__GetHostname *p) -{ - if (::soap_read___tds__GetHostname(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetDPAddresses_DEFINED -#define SOAP_TYPE___tds__SetDPAddresses_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDPAddresses(struct soap*, struct __tds__SetDPAddresses *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDPAddresses(struct soap*, const struct __tds__SetDPAddresses *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDPAddresses(struct soap*, const char*, int, const struct __tds__SetDPAddresses *, const char*); -SOAP_FMAC3 struct __tds__SetDPAddresses * SOAP_FMAC4 soap_in___tds__SetDPAddresses(struct soap*, const char*, struct __tds__SetDPAddresses *, const char*); -SOAP_FMAC1 struct __tds__SetDPAddresses * SOAP_FMAC2 soap_instantiate___tds__SetDPAddresses(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetDPAddresses * soap_new___tds__SetDPAddresses(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetDPAddresses(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetDPAddresses * soap_new_req___tds__SetDPAddresses( - struct soap *soap) -{ - struct __tds__SetDPAddresses *_p = ::soap_new___tds__SetDPAddresses(soap); - if (_p) - { ::soap_default___tds__SetDPAddresses(soap, _p); - } - return _p; -} - -inline struct __tds__SetDPAddresses * soap_new_set___tds__SetDPAddresses( - struct soap *soap, - _tds__SetDPAddresses *tds__SetDPAddresses) -{ - struct __tds__SetDPAddresses *_p = ::soap_new___tds__SetDPAddresses(soap); - if (_p) - { ::soap_default___tds__SetDPAddresses(soap, _p); - _p->tds__SetDPAddresses = tds__SetDPAddresses; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDPAddresses(struct soap*, const struct __tds__SetDPAddresses *, const char*, const char*); - -inline int soap_write___tds__SetDPAddresses(struct soap *soap, struct __tds__SetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetDPAddresses(soap, p), 0) || ::soap_put___tds__SetDPAddresses(soap, p, "-tds:SetDPAddresses", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetDPAddresses(struct soap *soap, const char *URL, struct __tds__SetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDPAddresses(soap, p), 0) || ::soap_put___tds__SetDPAddresses(soap, p, "-tds:SetDPAddresses", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetDPAddresses(struct soap *soap, const char *URL, struct __tds__SetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDPAddresses(soap, p), 0) || ::soap_put___tds__SetDPAddresses(soap, p, "-tds:SetDPAddresses", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetDPAddresses(struct soap *soap, const char *URL, struct __tds__SetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDPAddresses(soap, p), 0) || ::soap_put___tds__SetDPAddresses(soap, p, "-tds:SetDPAddresses", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetDPAddresses * SOAP_FMAC4 soap_get___tds__SetDPAddresses(struct soap*, struct __tds__SetDPAddresses *, const char*, const char*); - -inline int soap_read___tds__SetDPAddresses(struct soap *soap, struct __tds__SetDPAddresses *p) -{ - if (p) - { ::soap_default___tds__SetDPAddresses(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetDPAddresses(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetDPAddresses(struct soap *soap, const char *URL, struct __tds__SetDPAddresses *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetDPAddresses(struct soap *soap, struct __tds__SetDPAddresses *p) -{ - if (::soap_read___tds__SetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetCapabilities_DEFINED -#define SOAP_TYPE___tds__GetCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetCapabilities(struct soap*, struct __tds__GetCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetCapabilities(struct soap*, const struct __tds__GetCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetCapabilities(struct soap*, const char*, int, const struct __tds__GetCapabilities *, const char*); -SOAP_FMAC3 struct __tds__GetCapabilities * SOAP_FMAC4 soap_in___tds__GetCapabilities(struct soap*, const char*, struct __tds__GetCapabilities *, const char*); -SOAP_FMAC1 struct __tds__GetCapabilities * SOAP_FMAC2 soap_instantiate___tds__GetCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetCapabilities * soap_new___tds__GetCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetCapabilities * soap_new_req___tds__GetCapabilities( - struct soap *soap) -{ - struct __tds__GetCapabilities *_p = ::soap_new___tds__GetCapabilities(soap); - if (_p) - { ::soap_default___tds__GetCapabilities(soap, _p); - } - return _p; -} - -inline struct __tds__GetCapabilities * soap_new_set___tds__GetCapabilities( - struct soap *soap, - _tds__GetCapabilities *tds__GetCapabilities) -{ - struct __tds__GetCapabilities *_p = ::soap_new___tds__GetCapabilities(soap); - if (_p) - { ::soap_default___tds__GetCapabilities(soap, _p); - _p->tds__GetCapabilities = tds__GetCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetCapabilities(struct soap*, const struct __tds__GetCapabilities *, const char*, const char*); - -inline int soap_write___tds__GetCapabilities(struct soap *soap, struct __tds__GetCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetCapabilities(soap, p), 0) || ::soap_put___tds__GetCapabilities(soap, p, "-tds:GetCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetCapabilities(struct soap *soap, const char *URL, struct __tds__GetCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCapabilities(soap, p), 0) || ::soap_put___tds__GetCapabilities(soap, p, "-tds:GetCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetCapabilities(struct soap *soap, const char *URL, struct __tds__GetCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCapabilities(soap, p), 0) || ::soap_put___tds__GetCapabilities(soap, p, "-tds:GetCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetCapabilities(struct soap *soap, const char *URL, struct __tds__GetCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetCapabilities(soap, p), 0) || ::soap_put___tds__GetCapabilities(soap, p, "-tds:GetCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetCapabilities * SOAP_FMAC4 soap_get___tds__GetCapabilities(struct soap*, struct __tds__GetCapabilities *, const char*, const char*); - -inline int soap_read___tds__GetCapabilities(struct soap *soap, struct __tds__GetCapabilities *p) -{ - if (p) - { ::soap_default___tds__GetCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetCapabilities(struct soap *soap, const char *URL, struct __tds__GetCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetCapabilities(struct soap *soap, struct __tds__GetCapabilities *p) -{ - if (::soap_read___tds__GetCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetWsdlUrl_DEFINED -#define SOAP_TYPE___tds__GetWsdlUrl_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetWsdlUrl(struct soap*, struct __tds__GetWsdlUrl *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetWsdlUrl(struct soap*, const struct __tds__GetWsdlUrl *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetWsdlUrl(struct soap*, const char*, int, const struct __tds__GetWsdlUrl *, const char*); -SOAP_FMAC3 struct __tds__GetWsdlUrl * SOAP_FMAC4 soap_in___tds__GetWsdlUrl(struct soap*, const char*, struct __tds__GetWsdlUrl *, const char*); -SOAP_FMAC1 struct __tds__GetWsdlUrl * SOAP_FMAC2 soap_instantiate___tds__GetWsdlUrl(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetWsdlUrl * soap_new___tds__GetWsdlUrl(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetWsdlUrl(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetWsdlUrl * soap_new_req___tds__GetWsdlUrl( - struct soap *soap) -{ - struct __tds__GetWsdlUrl *_p = ::soap_new___tds__GetWsdlUrl(soap); - if (_p) - { ::soap_default___tds__GetWsdlUrl(soap, _p); - } - return _p; -} - -inline struct __tds__GetWsdlUrl * soap_new_set___tds__GetWsdlUrl( - struct soap *soap, - _tds__GetWsdlUrl *tds__GetWsdlUrl) -{ - struct __tds__GetWsdlUrl *_p = ::soap_new___tds__GetWsdlUrl(soap); - if (_p) - { ::soap_default___tds__GetWsdlUrl(soap, _p); - _p->tds__GetWsdlUrl = tds__GetWsdlUrl; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetWsdlUrl(struct soap*, const struct __tds__GetWsdlUrl *, const char*, const char*); - -inline int soap_write___tds__GetWsdlUrl(struct soap *soap, struct __tds__GetWsdlUrl const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetWsdlUrl(soap, p), 0) || ::soap_put___tds__GetWsdlUrl(soap, p, "-tds:GetWsdlUrl", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetWsdlUrl(struct soap *soap, const char *URL, struct __tds__GetWsdlUrl const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetWsdlUrl(soap, p), 0) || ::soap_put___tds__GetWsdlUrl(soap, p, "-tds:GetWsdlUrl", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetWsdlUrl(struct soap *soap, const char *URL, struct __tds__GetWsdlUrl const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetWsdlUrl(soap, p), 0) || ::soap_put___tds__GetWsdlUrl(soap, p, "-tds:GetWsdlUrl", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetWsdlUrl(struct soap *soap, const char *URL, struct __tds__GetWsdlUrl const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetWsdlUrl(soap, p), 0) || ::soap_put___tds__GetWsdlUrl(soap, p, "-tds:GetWsdlUrl", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetWsdlUrl * SOAP_FMAC4 soap_get___tds__GetWsdlUrl(struct soap*, struct __tds__GetWsdlUrl *, const char*, const char*); - -inline int soap_read___tds__GetWsdlUrl(struct soap *soap, struct __tds__GetWsdlUrl *p) -{ - if (p) - { ::soap_default___tds__GetWsdlUrl(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetWsdlUrl(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetWsdlUrl(struct soap *soap, const char *URL, struct __tds__GetWsdlUrl *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetWsdlUrl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetWsdlUrl(struct soap *soap, struct __tds__GetWsdlUrl *p) -{ - if (::soap_read___tds__GetWsdlUrl(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetUser_DEFINED -#define SOAP_TYPE___tds__SetUser_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetUser(struct soap*, struct __tds__SetUser *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetUser(struct soap*, const struct __tds__SetUser *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetUser(struct soap*, const char*, int, const struct __tds__SetUser *, const char*); -SOAP_FMAC3 struct __tds__SetUser * SOAP_FMAC4 soap_in___tds__SetUser(struct soap*, const char*, struct __tds__SetUser *, const char*); -SOAP_FMAC1 struct __tds__SetUser * SOAP_FMAC2 soap_instantiate___tds__SetUser(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetUser * soap_new___tds__SetUser(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetUser(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetUser * soap_new_req___tds__SetUser( - struct soap *soap) -{ - struct __tds__SetUser *_p = ::soap_new___tds__SetUser(soap); - if (_p) - { ::soap_default___tds__SetUser(soap, _p); - } - return _p; -} - -inline struct __tds__SetUser * soap_new_set___tds__SetUser( - struct soap *soap, - _tds__SetUser *tds__SetUser) -{ - struct __tds__SetUser *_p = ::soap_new___tds__SetUser(soap); - if (_p) - { ::soap_default___tds__SetUser(soap, _p); - _p->tds__SetUser = tds__SetUser; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetUser(struct soap*, const struct __tds__SetUser *, const char*, const char*); - -inline int soap_write___tds__SetUser(struct soap *soap, struct __tds__SetUser const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetUser(soap, p), 0) || ::soap_put___tds__SetUser(soap, p, "-tds:SetUser", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetUser(struct soap *soap, const char *URL, struct __tds__SetUser const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetUser(soap, p), 0) || ::soap_put___tds__SetUser(soap, p, "-tds:SetUser", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetUser(struct soap *soap, const char *URL, struct __tds__SetUser const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetUser(soap, p), 0) || ::soap_put___tds__SetUser(soap, p, "-tds:SetUser", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetUser(struct soap *soap, const char *URL, struct __tds__SetUser const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetUser(soap, p), 0) || ::soap_put___tds__SetUser(soap, p, "-tds:SetUser", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetUser * SOAP_FMAC4 soap_get___tds__SetUser(struct soap*, struct __tds__SetUser *, const char*, const char*); - -inline int soap_read___tds__SetUser(struct soap *soap, struct __tds__SetUser *p) -{ - if (p) - { ::soap_default___tds__SetUser(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetUser(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetUser(struct soap *soap, const char *URL, struct __tds__SetUser *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetUser(struct soap *soap, struct __tds__SetUser *p) -{ - if (::soap_read___tds__SetUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__DeleteUsers_DEFINED -#define SOAP_TYPE___tds__DeleteUsers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__DeleteUsers(struct soap*, struct __tds__DeleteUsers *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__DeleteUsers(struct soap*, const struct __tds__DeleteUsers *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__DeleteUsers(struct soap*, const char*, int, const struct __tds__DeleteUsers *, const char*); -SOAP_FMAC3 struct __tds__DeleteUsers * SOAP_FMAC4 soap_in___tds__DeleteUsers(struct soap*, const char*, struct __tds__DeleteUsers *, const char*); -SOAP_FMAC1 struct __tds__DeleteUsers * SOAP_FMAC2 soap_instantiate___tds__DeleteUsers(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__DeleteUsers * soap_new___tds__DeleteUsers(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__DeleteUsers(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__DeleteUsers * soap_new_req___tds__DeleteUsers( - struct soap *soap) -{ - struct __tds__DeleteUsers *_p = ::soap_new___tds__DeleteUsers(soap); - if (_p) - { ::soap_default___tds__DeleteUsers(soap, _p); - } - return _p; -} - -inline struct __tds__DeleteUsers * soap_new_set___tds__DeleteUsers( - struct soap *soap, - _tds__DeleteUsers *tds__DeleteUsers) -{ - struct __tds__DeleteUsers *_p = ::soap_new___tds__DeleteUsers(soap); - if (_p) - { ::soap_default___tds__DeleteUsers(soap, _p); - _p->tds__DeleteUsers = tds__DeleteUsers; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__DeleteUsers(struct soap*, const struct __tds__DeleteUsers *, const char*, const char*); - -inline int soap_write___tds__DeleteUsers(struct soap *soap, struct __tds__DeleteUsers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__DeleteUsers(soap, p), 0) || ::soap_put___tds__DeleteUsers(soap, p, "-tds:DeleteUsers", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__DeleteUsers(struct soap *soap, const char *URL, struct __tds__DeleteUsers const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteUsers(soap, p), 0) || ::soap_put___tds__DeleteUsers(soap, p, "-tds:DeleteUsers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__DeleteUsers(struct soap *soap, const char *URL, struct __tds__DeleteUsers const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteUsers(soap, p), 0) || ::soap_put___tds__DeleteUsers(soap, p, "-tds:DeleteUsers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__DeleteUsers(struct soap *soap, const char *URL, struct __tds__DeleteUsers const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__DeleteUsers(soap, p), 0) || ::soap_put___tds__DeleteUsers(soap, p, "-tds:DeleteUsers", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__DeleteUsers * SOAP_FMAC4 soap_get___tds__DeleteUsers(struct soap*, struct __tds__DeleteUsers *, const char*, const char*); - -inline int soap_read___tds__DeleteUsers(struct soap *soap, struct __tds__DeleteUsers *p) -{ - if (p) - { ::soap_default___tds__DeleteUsers(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__DeleteUsers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__DeleteUsers(struct soap *soap, const char *URL, struct __tds__DeleteUsers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__DeleteUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__DeleteUsers(struct soap *soap, struct __tds__DeleteUsers *p) -{ - if (::soap_read___tds__DeleteUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__CreateUsers_DEFINED -#define SOAP_TYPE___tds__CreateUsers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__CreateUsers(struct soap*, struct __tds__CreateUsers *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__CreateUsers(struct soap*, const struct __tds__CreateUsers *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__CreateUsers(struct soap*, const char*, int, const struct __tds__CreateUsers *, const char*); -SOAP_FMAC3 struct __tds__CreateUsers * SOAP_FMAC4 soap_in___tds__CreateUsers(struct soap*, const char*, struct __tds__CreateUsers *, const char*); -SOAP_FMAC1 struct __tds__CreateUsers * SOAP_FMAC2 soap_instantiate___tds__CreateUsers(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__CreateUsers * soap_new___tds__CreateUsers(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__CreateUsers(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__CreateUsers * soap_new_req___tds__CreateUsers( - struct soap *soap) -{ - struct __tds__CreateUsers *_p = ::soap_new___tds__CreateUsers(soap); - if (_p) - { ::soap_default___tds__CreateUsers(soap, _p); - } - return _p; -} - -inline struct __tds__CreateUsers * soap_new_set___tds__CreateUsers( - struct soap *soap, - _tds__CreateUsers *tds__CreateUsers) -{ - struct __tds__CreateUsers *_p = ::soap_new___tds__CreateUsers(soap); - if (_p) - { ::soap_default___tds__CreateUsers(soap, _p); - _p->tds__CreateUsers = tds__CreateUsers; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__CreateUsers(struct soap*, const struct __tds__CreateUsers *, const char*, const char*); - -inline int soap_write___tds__CreateUsers(struct soap *soap, struct __tds__CreateUsers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__CreateUsers(soap, p), 0) || ::soap_put___tds__CreateUsers(soap, p, "-tds:CreateUsers", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__CreateUsers(struct soap *soap, const char *URL, struct __tds__CreateUsers const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateUsers(soap, p), 0) || ::soap_put___tds__CreateUsers(soap, p, "-tds:CreateUsers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__CreateUsers(struct soap *soap, const char *URL, struct __tds__CreateUsers const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateUsers(soap, p), 0) || ::soap_put___tds__CreateUsers(soap, p, "-tds:CreateUsers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__CreateUsers(struct soap *soap, const char *URL, struct __tds__CreateUsers const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__CreateUsers(soap, p), 0) || ::soap_put___tds__CreateUsers(soap, p, "-tds:CreateUsers", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__CreateUsers * SOAP_FMAC4 soap_get___tds__CreateUsers(struct soap*, struct __tds__CreateUsers *, const char*, const char*); - -inline int soap_read___tds__CreateUsers(struct soap *soap, struct __tds__CreateUsers *p) -{ - if (p) - { ::soap_default___tds__CreateUsers(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__CreateUsers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__CreateUsers(struct soap *soap, const char *URL, struct __tds__CreateUsers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__CreateUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__CreateUsers(struct soap *soap, struct __tds__CreateUsers *p) -{ - if (::soap_read___tds__CreateUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetUsers_DEFINED -#define SOAP_TYPE___tds__GetUsers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetUsers(struct soap*, struct __tds__GetUsers *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetUsers(struct soap*, const struct __tds__GetUsers *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetUsers(struct soap*, const char*, int, const struct __tds__GetUsers *, const char*); -SOAP_FMAC3 struct __tds__GetUsers * SOAP_FMAC4 soap_in___tds__GetUsers(struct soap*, const char*, struct __tds__GetUsers *, const char*); -SOAP_FMAC1 struct __tds__GetUsers * SOAP_FMAC2 soap_instantiate___tds__GetUsers(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetUsers * soap_new___tds__GetUsers(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetUsers(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetUsers * soap_new_req___tds__GetUsers( - struct soap *soap) -{ - struct __tds__GetUsers *_p = ::soap_new___tds__GetUsers(soap); - if (_p) - { ::soap_default___tds__GetUsers(soap, _p); - } - return _p; -} - -inline struct __tds__GetUsers * soap_new_set___tds__GetUsers( - struct soap *soap, - _tds__GetUsers *tds__GetUsers) -{ - struct __tds__GetUsers *_p = ::soap_new___tds__GetUsers(soap); - if (_p) - { ::soap_default___tds__GetUsers(soap, _p); - _p->tds__GetUsers = tds__GetUsers; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetUsers(struct soap*, const struct __tds__GetUsers *, const char*, const char*); - -inline int soap_write___tds__GetUsers(struct soap *soap, struct __tds__GetUsers const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetUsers(soap, p), 0) || ::soap_put___tds__GetUsers(soap, p, "-tds:GetUsers", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetUsers(struct soap *soap, const char *URL, struct __tds__GetUsers const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetUsers(soap, p), 0) || ::soap_put___tds__GetUsers(soap, p, "-tds:GetUsers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetUsers(struct soap *soap, const char *URL, struct __tds__GetUsers const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetUsers(soap, p), 0) || ::soap_put___tds__GetUsers(soap, p, "-tds:GetUsers", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetUsers(struct soap *soap, const char *URL, struct __tds__GetUsers const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetUsers(soap, p), 0) || ::soap_put___tds__GetUsers(soap, p, "-tds:GetUsers", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetUsers * SOAP_FMAC4 soap_get___tds__GetUsers(struct soap*, struct __tds__GetUsers *, const char*, const char*); - -inline int soap_read___tds__GetUsers(struct soap *soap, struct __tds__GetUsers *p) -{ - if (p) - { ::soap_default___tds__GetUsers(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetUsers(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetUsers(struct soap *soap, const char *URL, struct __tds__GetUsers *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetUsers(struct soap *soap, struct __tds__GetUsers *p) -{ - if (::soap_read___tds__GetUsers(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetRemoteUser_DEFINED -#define SOAP_TYPE___tds__SetRemoteUser_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRemoteUser(struct soap*, struct __tds__SetRemoteUser *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRemoteUser(struct soap*, const struct __tds__SetRemoteUser *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRemoteUser(struct soap*, const char*, int, const struct __tds__SetRemoteUser *, const char*); -SOAP_FMAC3 struct __tds__SetRemoteUser * SOAP_FMAC4 soap_in___tds__SetRemoteUser(struct soap*, const char*, struct __tds__SetRemoteUser *, const char*); -SOAP_FMAC1 struct __tds__SetRemoteUser * SOAP_FMAC2 soap_instantiate___tds__SetRemoteUser(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetRemoteUser * soap_new___tds__SetRemoteUser(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetRemoteUser(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetRemoteUser * soap_new_req___tds__SetRemoteUser( - struct soap *soap) -{ - struct __tds__SetRemoteUser *_p = ::soap_new___tds__SetRemoteUser(soap); - if (_p) - { ::soap_default___tds__SetRemoteUser(soap, _p); - } - return _p; -} - -inline struct __tds__SetRemoteUser * soap_new_set___tds__SetRemoteUser( - struct soap *soap, - _tds__SetRemoteUser *tds__SetRemoteUser) -{ - struct __tds__SetRemoteUser *_p = ::soap_new___tds__SetRemoteUser(soap); - if (_p) - { ::soap_default___tds__SetRemoteUser(soap, _p); - _p->tds__SetRemoteUser = tds__SetRemoteUser; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRemoteUser(struct soap*, const struct __tds__SetRemoteUser *, const char*, const char*); - -inline int soap_write___tds__SetRemoteUser(struct soap *soap, struct __tds__SetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetRemoteUser(soap, p), 0) || ::soap_put___tds__SetRemoteUser(soap, p, "-tds:SetRemoteUser", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetRemoteUser(struct soap *soap, const char *URL, struct __tds__SetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRemoteUser(soap, p), 0) || ::soap_put___tds__SetRemoteUser(soap, p, "-tds:SetRemoteUser", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetRemoteUser(struct soap *soap, const char *URL, struct __tds__SetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRemoteUser(soap, p), 0) || ::soap_put___tds__SetRemoteUser(soap, p, "-tds:SetRemoteUser", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetRemoteUser(struct soap *soap, const char *URL, struct __tds__SetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRemoteUser(soap, p), 0) || ::soap_put___tds__SetRemoteUser(soap, p, "-tds:SetRemoteUser", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetRemoteUser * SOAP_FMAC4 soap_get___tds__SetRemoteUser(struct soap*, struct __tds__SetRemoteUser *, const char*, const char*); - -inline int soap_read___tds__SetRemoteUser(struct soap *soap, struct __tds__SetRemoteUser *p) -{ - if (p) - { ::soap_default___tds__SetRemoteUser(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetRemoteUser(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetRemoteUser(struct soap *soap, const char *URL, struct __tds__SetRemoteUser *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetRemoteUser(struct soap *soap, struct __tds__SetRemoteUser *p) -{ - if (::soap_read___tds__SetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetRemoteUser_DEFINED -#define SOAP_TYPE___tds__GetRemoteUser_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetRemoteUser(struct soap*, struct __tds__GetRemoteUser *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetRemoteUser(struct soap*, const struct __tds__GetRemoteUser *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetRemoteUser(struct soap*, const char*, int, const struct __tds__GetRemoteUser *, const char*); -SOAP_FMAC3 struct __tds__GetRemoteUser * SOAP_FMAC4 soap_in___tds__GetRemoteUser(struct soap*, const char*, struct __tds__GetRemoteUser *, const char*); -SOAP_FMAC1 struct __tds__GetRemoteUser * SOAP_FMAC2 soap_instantiate___tds__GetRemoteUser(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetRemoteUser * soap_new___tds__GetRemoteUser(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetRemoteUser(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetRemoteUser * soap_new_req___tds__GetRemoteUser( - struct soap *soap) -{ - struct __tds__GetRemoteUser *_p = ::soap_new___tds__GetRemoteUser(soap); - if (_p) - { ::soap_default___tds__GetRemoteUser(soap, _p); - } - return _p; -} - -inline struct __tds__GetRemoteUser * soap_new_set___tds__GetRemoteUser( - struct soap *soap, - _tds__GetRemoteUser *tds__GetRemoteUser) -{ - struct __tds__GetRemoteUser *_p = ::soap_new___tds__GetRemoteUser(soap); - if (_p) - { ::soap_default___tds__GetRemoteUser(soap, _p); - _p->tds__GetRemoteUser = tds__GetRemoteUser; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetRemoteUser(struct soap*, const struct __tds__GetRemoteUser *, const char*, const char*); - -inline int soap_write___tds__GetRemoteUser(struct soap *soap, struct __tds__GetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetRemoteUser(soap, p), 0) || ::soap_put___tds__GetRemoteUser(soap, p, "-tds:GetRemoteUser", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetRemoteUser(struct soap *soap, const char *URL, struct __tds__GetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRemoteUser(soap, p), 0) || ::soap_put___tds__GetRemoteUser(soap, p, "-tds:GetRemoteUser", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetRemoteUser(struct soap *soap, const char *URL, struct __tds__GetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRemoteUser(soap, p), 0) || ::soap_put___tds__GetRemoteUser(soap, p, "-tds:GetRemoteUser", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetRemoteUser(struct soap *soap, const char *URL, struct __tds__GetRemoteUser const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRemoteUser(soap, p), 0) || ::soap_put___tds__GetRemoteUser(soap, p, "-tds:GetRemoteUser", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetRemoteUser * SOAP_FMAC4 soap_get___tds__GetRemoteUser(struct soap*, struct __tds__GetRemoteUser *, const char*, const char*); - -inline int soap_read___tds__GetRemoteUser(struct soap *soap, struct __tds__GetRemoteUser *p) -{ - if (p) - { ::soap_default___tds__GetRemoteUser(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetRemoteUser(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetRemoteUser(struct soap *soap, const char *URL, struct __tds__GetRemoteUser *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetRemoteUser(struct soap *soap, struct __tds__GetRemoteUser *p) -{ - if (::soap_read___tds__GetRemoteUser(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetEndpointReference_DEFINED -#define SOAP_TYPE___tds__GetEndpointReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetEndpointReference(struct soap*, struct __tds__GetEndpointReference *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetEndpointReference(struct soap*, const struct __tds__GetEndpointReference *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetEndpointReference(struct soap*, const char*, int, const struct __tds__GetEndpointReference *, const char*); -SOAP_FMAC3 struct __tds__GetEndpointReference * SOAP_FMAC4 soap_in___tds__GetEndpointReference(struct soap*, const char*, struct __tds__GetEndpointReference *, const char*); -SOAP_FMAC1 struct __tds__GetEndpointReference * SOAP_FMAC2 soap_instantiate___tds__GetEndpointReference(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetEndpointReference * soap_new___tds__GetEndpointReference(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetEndpointReference(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetEndpointReference * soap_new_req___tds__GetEndpointReference( - struct soap *soap) -{ - struct __tds__GetEndpointReference *_p = ::soap_new___tds__GetEndpointReference(soap); - if (_p) - { ::soap_default___tds__GetEndpointReference(soap, _p); - } - return _p; -} - -inline struct __tds__GetEndpointReference * soap_new_set___tds__GetEndpointReference( - struct soap *soap, - _tds__GetEndpointReference *tds__GetEndpointReference) -{ - struct __tds__GetEndpointReference *_p = ::soap_new___tds__GetEndpointReference(soap); - if (_p) - { ::soap_default___tds__GetEndpointReference(soap, _p); - _p->tds__GetEndpointReference = tds__GetEndpointReference; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetEndpointReference(struct soap*, const struct __tds__GetEndpointReference *, const char*, const char*); - -inline int soap_write___tds__GetEndpointReference(struct soap *soap, struct __tds__GetEndpointReference const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetEndpointReference(soap, p), 0) || ::soap_put___tds__GetEndpointReference(soap, p, "-tds:GetEndpointReference", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetEndpointReference(struct soap *soap, const char *URL, struct __tds__GetEndpointReference const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetEndpointReference(soap, p), 0) || ::soap_put___tds__GetEndpointReference(soap, p, "-tds:GetEndpointReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetEndpointReference(struct soap *soap, const char *URL, struct __tds__GetEndpointReference const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetEndpointReference(soap, p), 0) || ::soap_put___tds__GetEndpointReference(soap, p, "-tds:GetEndpointReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetEndpointReference(struct soap *soap, const char *URL, struct __tds__GetEndpointReference const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetEndpointReference(soap, p), 0) || ::soap_put___tds__GetEndpointReference(soap, p, "-tds:GetEndpointReference", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetEndpointReference * SOAP_FMAC4 soap_get___tds__GetEndpointReference(struct soap*, struct __tds__GetEndpointReference *, const char*, const char*); - -inline int soap_read___tds__GetEndpointReference(struct soap *soap, struct __tds__GetEndpointReference *p) -{ - if (p) - { ::soap_default___tds__GetEndpointReference(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetEndpointReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetEndpointReference(struct soap *soap, const char *URL, struct __tds__GetEndpointReference *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetEndpointReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetEndpointReference(struct soap *soap, struct __tds__GetEndpointReference *p) -{ - if (::soap_read___tds__GetEndpointReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDPAddresses_DEFINED -#define SOAP_TYPE___tds__GetDPAddresses_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDPAddresses(struct soap*, struct __tds__GetDPAddresses *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDPAddresses(struct soap*, const struct __tds__GetDPAddresses *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDPAddresses(struct soap*, const char*, int, const struct __tds__GetDPAddresses *, const char*); -SOAP_FMAC3 struct __tds__GetDPAddresses * SOAP_FMAC4 soap_in___tds__GetDPAddresses(struct soap*, const char*, struct __tds__GetDPAddresses *, const char*); -SOAP_FMAC1 struct __tds__GetDPAddresses * SOAP_FMAC2 soap_instantiate___tds__GetDPAddresses(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDPAddresses * soap_new___tds__GetDPAddresses(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDPAddresses(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDPAddresses * soap_new_req___tds__GetDPAddresses( - struct soap *soap) -{ - struct __tds__GetDPAddresses *_p = ::soap_new___tds__GetDPAddresses(soap); - if (_p) - { ::soap_default___tds__GetDPAddresses(soap, _p); - } - return _p; -} - -inline struct __tds__GetDPAddresses * soap_new_set___tds__GetDPAddresses( - struct soap *soap, - _tds__GetDPAddresses *tds__GetDPAddresses) -{ - struct __tds__GetDPAddresses *_p = ::soap_new___tds__GetDPAddresses(soap); - if (_p) - { ::soap_default___tds__GetDPAddresses(soap, _p); - _p->tds__GetDPAddresses = tds__GetDPAddresses; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDPAddresses(struct soap*, const struct __tds__GetDPAddresses *, const char*, const char*); - -inline int soap_write___tds__GetDPAddresses(struct soap *soap, struct __tds__GetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDPAddresses(soap, p), 0) || ::soap_put___tds__GetDPAddresses(soap, p, "-tds:GetDPAddresses", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDPAddresses(struct soap *soap, const char *URL, struct __tds__GetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDPAddresses(soap, p), 0) || ::soap_put___tds__GetDPAddresses(soap, p, "-tds:GetDPAddresses", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDPAddresses(struct soap *soap, const char *URL, struct __tds__GetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDPAddresses(soap, p), 0) || ::soap_put___tds__GetDPAddresses(soap, p, "-tds:GetDPAddresses", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDPAddresses(struct soap *soap, const char *URL, struct __tds__GetDPAddresses const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDPAddresses(soap, p), 0) || ::soap_put___tds__GetDPAddresses(soap, p, "-tds:GetDPAddresses", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDPAddresses * SOAP_FMAC4 soap_get___tds__GetDPAddresses(struct soap*, struct __tds__GetDPAddresses *, const char*, const char*); - -inline int soap_read___tds__GetDPAddresses(struct soap *soap, struct __tds__GetDPAddresses *p) -{ - if (p) - { ::soap_default___tds__GetDPAddresses(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDPAddresses(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDPAddresses(struct soap *soap, const char *URL, struct __tds__GetDPAddresses *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDPAddresses(struct soap *soap, struct __tds__GetDPAddresses *p) -{ - if (::soap_read___tds__GetDPAddresses(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetRemoteDiscoveryMode_DEFINED -#define SOAP_TYPE___tds__SetRemoteDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetRemoteDiscoveryMode(struct soap*, struct __tds__SetRemoteDiscoveryMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetRemoteDiscoveryMode(struct soap*, const struct __tds__SetRemoteDiscoveryMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetRemoteDiscoveryMode(struct soap*, const char*, int, const struct __tds__SetRemoteDiscoveryMode *, const char*); -SOAP_FMAC3 struct __tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_in___tds__SetRemoteDiscoveryMode(struct soap*, const char*, struct __tds__SetRemoteDiscoveryMode *, const char*); -SOAP_FMAC1 struct __tds__SetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__SetRemoteDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetRemoteDiscoveryMode * soap_new___tds__SetRemoteDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetRemoteDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetRemoteDiscoveryMode * soap_new_req___tds__SetRemoteDiscoveryMode( - struct soap *soap) -{ - struct __tds__SetRemoteDiscoveryMode *_p = ::soap_new___tds__SetRemoteDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__SetRemoteDiscoveryMode(soap, _p); - } - return _p; -} - -inline struct __tds__SetRemoteDiscoveryMode * soap_new_set___tds__SetRemoteDiscoveryMode( - struct soap *soap, - _tds__SetRemoteDiscoveryMode *tds__SetRemoteDiscoveryMode) -{ - struct __tds__SetRemoteDiscoveryMode *_p = ::soap_new___tds__SetRemoteDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__SetRemoteDiscoveryMode(soap, _p); - _p->tds__SetRemoteDiscoveryMode = tds__SetRemoteDiscoveryMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetRemoteDiscoveryMode(struct soap*, const struct __tds__SetRemoteDiscoveryMode *, const char*, const char*); - -inline int soap_write___tds__SetRemoteDiscoveryMode(struct soap *soap, struct __tds__SetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetRemoteDiscoveryMode(soap, p, "-tds:SetRemoteDiscoveryMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetRemoteDiscoveryMode(soap, p, "-tds:SetRemoteDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetRemoteDiscoveryMode(soap, p, "-tds:SetRemoteDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetRemoteDiscoveryMode(soap, p, "-tds:SetRemoteDiscoveryMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetRemoteDiscoveryMode * SOAP_FMAC4 soap_get___tds__SetRemoteDiscoveryMode(struct soap*, struct __tds__SetRemoteDiscoveryMode *, const char*, const char*); - -inline int soap_read___tds__SetRemoteDiscoveryMode(struct soap *soap, struct __tds__SetRemoteDiscoveryMode *p) -{ - if (p) - { ::soap_default___tds__SetRemoteDiscoveryMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetRemoteDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetRemoteDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetRemoteDiscoveryMode(struct soap *soap, struct __tds__SetRemoteDiscoveryMode *p) -{ - if (::soap_read___tds__SetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetRemoteDiscoveryMode_DEFINED -#define SOAP_TYPE___tds__GetRemoteDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetRemoteDiscoveryMode(struct soap*, struct __tds__GetRemoteDiscoveryMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetRemoteDiscoveryMode(struct soap*, const struct __tds__GetRemoteDiscoveryMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetRemoteDiscoveryMode(struct soap*, const char*, int, const struct __tds__GetRemoteDiscoveryMode *, const char*); -SOAP_FMAC3 struct __tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_in___tds__GetRemoteDiscoveryMode(struct soap*, const char*, struct __tds__GetRemoteDiscoveryMode *, const char*); -SOAP_FMAC1 struct __tds__GetRemoteDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__GetRemoteDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetRemoteDiscoveryMode * soap_new___tds__GetRemoteDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetRemoteDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetRemoteDiscoveryMode * soap_new_req___tds__GetRemoteDiscoveryMode( - struct soap *soap) -{ - struct __tds__GetRemoteDiscoveryMode *_p = ::soap_new___tds__GetRemoteDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__GetRemoteDiscoveryMode(soap, _p); - } - return _p; -} - -inline struct __tds__GetRemoteDiscoveryMode * soap_new_set___tds__GetRemoteDiscoveryMode( - struct soap *soap, - _tds__GetRemoteDiscoveryMode *tds__GetRemoteDiscoveryMode) -{ - struct __tds__GetRemoteDiscoveryMode *_p = ::soap_new___tds__GetRemoteDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__GetRemoteDiscoveryMode(soap, _p); - _p->tds__GetRemoteDiscoveryMode = tds__GetRemoteDiscoveryMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetRemoteDiscoveryMode(struct soap*, const struct __tds__GetRemoteDiscoveryMode *, const char*, const char*); - -inline int soap_write___tds__GetRemoteDiscoveryMode(struct soap *soap, struct __tds__GetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetRemoteDiscoveryMode(soap, p, "-tds:GetRemoteDiscoveryMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetRemoteDiscoveryMode(soap, p, "-tds:GetRemoteDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetRemoteDiscoveryMode(soap, p, "-tds:GetRemoteDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetRemoteDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetRemoteDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetRemoteDiscoveryMode(soap, p, "-tds:GetRemoteDiscoveryMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetRemoteDiscoveryMode * SOAP_FMAC4 soap_get___tds__GetRemoteDiscoveryMode(struct soap*, struct __tds__GetRemoteDiscoveryMode *, const char*, const char*); - -inline int soap_read___tds__GetRemoteDiscoveryMode(struct soap *soap, struct __tds__GetRemoteDiscoveryMode *p) -{ - if (p) - { ::soap_default___tds__GetRemoteDiscoveryMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetRemoteDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetRemoteDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetRemoteDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetRemoteDiscoveryMode(struct soap *soap, struct __tds__GetRemoteDiscoveryMode *p) -{ - if (::soap_read___tds__GetRemoteDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetDiscoveryMode_DEFINED -#define SOAP_TYPE___tds__SetDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetDiscoveryMode(struct soap*, struct __tds__SetDiscoveryMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetDiscoveryMode(struct soap*, const struct __tds__SetDiscoveryMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetDiscoveryMode(struct soap*, const char*, int, const struct __tds__SetDiscoveryMode *, const char*); -SOAP_FMAC3 struct __tds__SetDiscoveryMode * SOAP_FMAC4 soap_in___tds__SetDiscoveryMode(struct soap*, const char*, struct __tds__SetDiscoveryMode *, const char*); -SOAP_FMAC1 struct __tds__SetDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__SetDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetDiscoveryMode * soap_new___tds__SetDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetDiscoveryMode * soap_new_req___tds__SetDiscoveryMode( - struct soap *soap) -{ - struct __tds__SetDiscoveryMode *_p = ::soap_new___tds__SetDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__SetDiscoveryMode(soap, _p); - } - return _p; -} - -inline struct __tds__SetDiscoveryMode * soap_new_set___tds__SetDiscoveryMode( - struct soap *soap, - _tds__SetDiscoveryMode *tds__SetDiscoveryMode) -{ - struct __tds__SetDiscoveryMode *_p = ::soap_new___tds__SetDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__SetDiscoveryMode(soap, _p); - _p->tds__SetDiscoveryMode = tds__SetDiscoveryMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetDiscoveryMode(struct soap*, const struct __tds__SetDiscoveryMode *, const char*, const char*); - -inline int soap_write___tds__SetDiscoveryMode(struct soap *soap, struct __tds__SetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetDiscoveryMode(soap, p, "-tds:SetDiscoveryMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetDiscoveryMode(soap, p, "-tds:SetDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetDiscoveryMode(soap, p, "-tds:SetDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetDiscoveryMode(soap, p), 0) || ::soap_put___tds__SetDiscoveryMode(soap, p, "-tds:SetDiscoveryMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetDiscoveryMode * SOAP_FMAC4 soap_get___tds__SetDiscoveryMode(struct soap*, struct __tds__SetDiscoveryMode *, const char*, const char*); - -inline int soap_read___tds__SetDiscoveryMode(struct soap *soap, struct __tds__SetDiscoveryMode *p) -{ - if (p) - { ::soap_default___tds__SetDiscoveryMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__SetDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetDiscoveryMode(struct soap *soap, struct __tds__SetDiscoveryMode *p) -{ - if (::soap_read___tds__SetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDiscoveryMode_DEFINED -#define SOAP_TYPE___tds__GetDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDiscoveryMode(struct soap*, struct __tds__GetDiscoveryMode *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDiscoveryMode(struct soap*, const struct __tds__GetDiscoveryMode *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDiscoveryMode(struct soap*, const char*, int, const struct __tds__GetDiscoveryMode *, const char*); -SOAP_FMAC3 struct __tds__GetDiscoveryMode * SOAP_FMAC4 soap_in___tds__GetDiscoveryMode(struct soap*, const char*, struct __tds__GetDiscoveryMode *, const char*); -SOAP_FMAC1 struct __tds__GetDiscoveryMode * SOAP_FMAC2 soap_instantiate___tds__GetDiscoveryMode(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDiscoveryMode * soap_new___tds__GetDiscoveryMode(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDiscoveryMode(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDiscoveryMode * soap_new_req___tds__GetDiscoveryMode( - struct soap *soap) -{ - struct __tds__GetDiscoveryMode *_p = ::soap_new___tds__GetDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__GetDiscoveryMode(soap, _p); - } - return _p; -} - -inline struct __tds__GetDiscoveryMode * soap_new_set___tds__GetDiscoveryMode( - struct soap *soap, - _tds__GetDiscoveryMode *tds__GetDiscoveryMode) -{ - struct __tds__GetDiscoveryMode *_p = ::soap_new___tds__GetDiscoveryMode(soap); - if (_p) - { ::soap_default___tds__GetDiscoveryMode(soap, _p); - _p->tds__GetDiscoveryMode = tds__GetDiscoveryMode; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDiscoveryMode(struct soap*, const struct __tds__GetDiscoveryMode *, const char*, const char*); - -inline int soap_write___tds__GetDiscoveryMode(struct soap *soap, struct __tds__GetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetDiscoveryMode(soap, p, "-tds:GetDiscoveryMode", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetDiscoveryMode(soap, p, "-tds:GetDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetDiscoveryMode(soap, p, "-tds:GetDiscoveryMode", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetDiscoveryMode const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDiscoveryMode(soap, p), 0) || ::soap_put___tds__GetDiscoveryMode(soap, p, "-tds:GetDiscoveryMode", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDiscoveryMode * SOAP_FMAC4 soap_get___tds__GetDiscoveryMode(struct soap*, struct __tds__GetDiscoveryMode *, const char*, const char*); - -inline int soap_read___tds__GetDiscoveryMode(struct soap *soap, struct __tds__GetDiscoveryMode *p) -{ - if (p) - { ::soap_default___tds__GetDiscoveryMode(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDiscoveryMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDiscoveryMode(struct soap *soap, const char *URL, struct __tds__GetDiscoveryMode *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDiscoveryMode(struct soap *soap, struct __tds__GetDiscoveryMode *p) -{ - if (::soap_read___tds__GetDiscoveryMode(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__RemoveScopes_DEFINED -#define SOAP_TYPE___tds__RemoveScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__RemoveScopes(struct soap*, struct __tds__RemoveScopes *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__RemoveScopes(struct soap*, const struct __tds__RemoveScopes *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__RemoveScopes(struct soap*, const char*, int, const struct __tds__RemoveScopes *, const char*); -SOAP_FMAC3 struct __tds__RemoveScopes * SOAP_FMAC4 soap_in___tds__RemoveScopes(struct soap*, const char*, struct __tds__RemoveScopes *, const char*); -SOAP_FMAC1 struct __tds__RemoveScopes * SOAP_FMAC2 soap_instantiate___tds__RemoveScopes(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__RemoveScopes * soap_new___tds__RemoveScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__RemoveScopes(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__RemoveScopes * soap_new_req___tds__RemoveScopes( - struct soap *soap) -{ - struct __tds__RemoveScopes *_p = ::soap_new___tds__RemoveScopes(soap); - if (_p) - { ::soap_default___tds__RemoveScopes(soap, _p); - } - return _p; -} - -inline struct __tds__RemoveScopes * soap_new_set___tds__RemoveScopes( - struct soap *soap, - _tds__RemoveScopes *tds__RemoveScopes) -{ - struct __tds__RemoveScopes *_p = ::soap_new___tds__RemoveScopes(soap); - if (_p) - { ::soap_default___tds__RemoveScopes(soap, _p); - _p->tds__RemoveScopes = tds__RemoveScopes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__RemoveScopes(struct soap*, const struct __tds__RemoveScopes *, const char*, const char*); - -inline int soap_write___tds__RemoveScopes(struct soap *soap, struct __tds__RemoveScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__RemoveScopes(soap, p), 0) || ::soap_put___tds__RemoveScopes(soap, p, "-tds:RemoveScopes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__RemoveScopes(struct soap *soap, const char *URL, struct __tds__RemoveScopes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RemoveScopes(soap, p), 0) || ::soap_put___tds__RemoveScopes(soap, p, "-tds:RemoveScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__RemoveScopes(struct soap *soap, const char *URL, struct __tds__RemoveScopes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RemoveScopes(soap, p), 0) || ::soap_put___tds__RemoveScopes(soap, p, "-tds:RemoveScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__RemoveScopes(struct soap *soap, const char *URL, struct __tds__RemoveScopes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RemoveScopes(soap, p), 0) || ::soap_put___tds__RemoveScopes(soap, p, "-tds:RemoveScopes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__RemoveScopes * SOAP_FMAC4 soap_get___tds__RemoveScopes(struct soap*, struct __tds__RemoveScopes *, const char*, const char*); - -inline int soap_read___tds__RemoveScopes(struct soap *soap, struct __tds__RemoveScopes *p) -{ - if (p) - { ::soap_default___tds__RemoveScopes(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__RemoveScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__RemoveScopes(struct soap *soap, const char *URL, struct __tds__RemoveScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__RemoveScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__RemoveScopes(struct soap *soap, struct __tds__RemoveScopes *p) -{ - if (::soap_read___tds__RemoveScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__AddScopes_DEFINED -#define SOAP_TYPE___tds__AddScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__AddScopes(struct soap*, struct __tds__AddScopes *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__AddScopes(struct soap*, const struct __tds__AddScopes *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__AddScopes(struct soap*, const char*, int, const struct __tds__AddScopes *, const char*); -SOAP_FMAC3 struct __tds__AddScopes * SOAP_FMAC4 soap_in___tds__AddScopes(struct soap*, const char*, struct __tds__AddScopes *, const char*); -SOAP_FMAC1 struct __tds__AddScopes * SOAP_FMAC2 soap_instantiate___tds__AddScopes(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__AddScopes * soap_new___tds__AddScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__AddScopes(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__AddScopes * soap_new_req___tds__AddScopes( - struct soap *soap) -{ - struct __tds__AddScopes *_p = ::soap_new___tds__AddScopes(soap); - if (_p) - { ::soap_default___tds__AddScopes(soap, _p); - } - return _p; -} - -inline struct __tds__AddScopes * soap_new_set___tds__AddScopes( - struct soap *soap, - _tds__AddScopes *tds__AddScopes) -{ - struct __tds__AddScopes *_p = ::soap_new___tds__AddScopes(soap); - if (_p) - { ::soap_default___tds__AddScopes(soap, _p); - _p->tds__AddScopes = tds__AddScopes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__AddScopes(struct soap*, const struct __tds__AddScopes *, const char*, const char*); - -inline int soap_write___tds__AddScopes(struct soap *soap, struct __tds__AddScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__AddScopes(soap, p), 0) || ::soap_put___tds__AddScopes(soap, p, "-tds:AddScopes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__AddScopes(struct soap *soap, const char *URL, struct __tds__AddScopes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__AddScopes(soap, p), 0) || ::soap_put___tds__AddScopes(soap, p, "-tds:AddScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__AddScopes(struct soap *soap, const char *URL, struct __tds__AddScopes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__AddScopes(soap, p), 0) || ::soap_put___tds__AddScopes(soap, p, "-tds:AddScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__AddScopes(struct soap *soap, const char *URL, struct __tds__AddScopes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__AddScopes(soap, p), 0) || ::soap_put___tds__AddScopes(soap, p, "-tds:AddScopes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__AddScopes * SOAP_FMAC4 soap_get___tds__AddScopes(struct soap*, struct __tds__AddScopes *, const char*, const char*); - -inline int soap_read___tds__AddScopes(struct soap *soap, struct __tds__AddScopes *p) -{ - if (p) - { ::soap_default___tds__AddScopes(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__AddScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__AddScopes(struct soap *soap, const char *URL, struct __tds__AddScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__AddScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__AddScopes(struct soap *soap, struct __tds__AddScopes *p) -{ - if (::soap_read___tds__AddScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetScopes_DEFINED -#define SOAP_TYPE___tds__SetScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetScopes(struct soap*, struct __tds__SetScopes *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetScopes(struct soap*, const struct __tds__SetScopes *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetScopes(struct soap*, const char*, int, const struct __tds__SetScopes *, const char*); -SOAP_FMAC3 struct __tds__SetScopes * SOAP_FMAC4 soap_in___tds__SetScopes(struct soap*, const char*, struct __tds__SetScopes *, const char*); -SOAP_FMAC1 struct __tds__SetScopes * SOAP_FMAC2 soap_instantiate___tds__SetScopes(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetScopes * soap_new___tds__SetScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetScopes(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetScopes * soap_new_req___tds__SetScopes( - struct soap *soap) -{ - struct __tds__SetScopes *_p = ::soap_new___tds__SetScopes(soap); - if (_p) - { ::soap_default___tds__SetScopes(soap, _p); - } - return _p; -} - -inline struct __tds__SetScopes * soap_new_set___tds__SetScopes( - struct soap *soap, - _tds__SetScopes *tds__SetScopes) -{ - struct __tds__SetScopes *_p = ::soap_new___tds__SetScopes(soap); - if (_p) - { ::soap_default___tds__SetScopes(soap, _p); - _p->tds__SetScopes = tds__SetScopes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetScopes(struct soap*, const struct __tds__SetScopes *, const char*, const char*); - -inline int soap_write___tds__SetScopes(struct soap *soap, struct __tds__SetScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetScopes(soap, p), 0) || ::soap_put___tds__SetScopes(soap, p, "-tds:SetScopes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetScopes(struct soap *soap, const char *URL, struct __tds__SetScopes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetScopes(soap, p), 0) || ::soap_put___tds__SetScopes(soap, p, "-tds:SetScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetScopes(struct soap *soap, const char *URL, struct __tds__SetScopes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetScopes(soap, p), 0) || ::soap_put___tds__SetScopes(soap, p, "-tds:SetScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetScopes(struct soap *soap, const char *URL, struct __tds__SetScopes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetScopes(soap, p), 0) || ::soap_put___tds__SetScopes(soap, p, "-tds:SetScopes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetScopes * SOAP_FMAC4 soap_get___tds__SetScopes(struct soap*, struct __tds__SetScopes *, const char*, const char*); - -inline int soap_read___tds__SetScopes(struct soap *soap, struct __tds__SetScopes *p) -{ - if (p) - { ::soap_default___tds__SetScopes(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetScopes(struct soap *soap, const char *URL, struct __tds__SetScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetScopes(struct soap *soap, struct __tds__SetScopes *p) -{ - if (::soap_read___tds__SetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetScopes_DEFINED -#define SOAP_TYPE___tds__GetScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetScopes(struct soap*, struct __tds__GetScopes *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetScopes(struct soap*, const struct __tds__GetScopes *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetScopes(struct soap*, const char*, int, const struct __tds__GetScopes *, const char*); -SOAP_FMAC3 struct __tds__GetScopes * SOAP_FMAC4 soap_in___tds__GetScopes(struct soap*, const char*, struct __tds__GetScopes *, const char*); -SOAP_FMAC1 struct __tds__GetScopes * SOAP_FMAC2 soap_instantiate___tds__GetScopes(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetScopes * soap_new___tds__GetScopes(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetScopes(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetScopes * soap_new_req___tds__GetScopes( - struct soap *soap) -{ - struct __tds__GetScopes *_p = ::soap_new___tds__GetScopes(soap); - if (_p) - { ::soap_default___tds__GetScopes(soap, _p); - } - return _p; -} - -inline struct __tds__GetScopes * soap_new_set___tds__GetScopes( - struct soap *soap, - _tds__GetScopes *tds__GetScopes) -{ - struct __tds__GetScopes *_p = ::soap_new___tds__GetScopes(soap); - if (_p) - { ::soap_default___tds__GetScopes(soap, _p); - _p->tds__GetScopes = tds__GetScopes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetScopes(struct soap*, const struct __tds__GetScopes *, const char*, const char*); - -inline int soap_write___tds__GetScopes(struct soap *soap, struct __tds__GetScopes const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetScopes(soap, p), 0) || ::soap_put___tds__GetScopes(soap, p, "-tds:GetScopes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetScopes(struct soap *soap, const char *URL, struct __tds__GetScopes const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetScopes(soap, p), 0) || ::soap_put___tds__GetScopes(soap, p, "-tds:GetScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetScopes(struct soap *soap, const char *URL, struct __tds__GetScopes const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetScopes(soap, p), 0) || ::soap_put___tds__GetScopes(soap, p, "-tds:GetScopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetScopes(struct soap *soap, const char *URL, struct __tds__GetScopes const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetScopes(soap, p), 0) || ::soap_put___tds__GetScopes(soap, p, "-tds:GetScopes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetScopes * SOAP_FMAC4 soap_get___tds__GetScopes(struct soap*, struct __tds__GetScopes *, const char*, const char*); - -inline int soap_read___tds__GetScopes(struct soap *soap, struct __tds__GetScopes *p) -{ - if (p) - { ::soap_default___tds__GetScopes(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetScopes(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetScopes(struct soap *soap, const char *URL, struct __tds__GetScopes *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetScopes(struct soap *soap, struct __tds__GetScopes *p) -{ - if (::soap_read___tds__GetScopes(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetSystemSupportInformation_DEFINED -#define SOAP_TYPE___tds__GetSystemSupportInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemSupportInformation(struct soap*, struct __tds__GetSystemSupportInformation *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemSupportInformation(struct soap*, const struct __tds__GetSystemSupportInformation *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemSupportInformation(struct soap*, const char*, int, const struct __tds__GetSystemSupportInformation *, const char*); -SOAP_FMAC3 struct __tds__GetSystemSupportInformation * SOAP_FMAC4 soap_in___tds__GetSystemSupportInformation(struct soap*, const char*, struct __tds__GetSystemSupportInformation *, const char*); -SOAP_FMAC1 struct __tds__GetSystemSupportInformation * SOAP_FMAC2 soap_instantiate___tds__GetSystemSupportInformation(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetSystemSupportInformation * soap_new___tds__GetSystemSupportInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetSystemSupportInformation(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetSystemSupportInformation * soap_new_req___tds__GetSystemSupportInformation( - struct soap *soap) -{ - struct __tds__GetSystemSupportInformation *_p = ::soap_new___tds__GetSystemSupportInformation(soap); - if (_p) - { ::soap_default___tds__GetSystemSupportInformation(soap, _p); - } - return _p; -} - -inline struct __tds__GetSystemSupportInformation * soap_new_set___tds__GetSystemSupportInformation( - struct soap *soap, - _tds__GetSystemSupportInformation *tds__GetSystemSupportInformation) -{ - struct __tds__GetSystemSupportInformation *_p = ::soap_new___tds__GetSystemSupportInformation(soap); - if (_p) - { ::soap_default___tds__GetSystemSupportInformation(soap, _p); - _p->tds__GetSystemSupportInformation = tds__GetSystemSupportInformation; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemSupportInformation(struct soap*, const struct __tds__GetSystemSupportInformation *, const char*, const char*); - -inline int soap_write___tds__GetSystemSupportInformation(struct soap *soap, struct __tds__GetSystemSupportInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetSystemSupportInformation(soap, p), 0) || ::soap_put___tds__GetSystemSupportInformation(soap, p, "-tds:GetSystemSupportInformation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetSystemSupportInformation(struct soap *soap, const char *URL, struct __tds__GetSystemSupportInformation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemSupportInformation(soap, p), 0) || ::soap_put___tds__GetSystemSupportInformation(soap, p, "-tds:GetSystemSupportInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetSystemSupportInformation(struct soap *soap, const char *URL, struct __tds__GetSystemSupportInformation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemSupportInformation(soap, p), 0) || ::soap_put___tds__GetSystemSupportInformation(soap, p, "-tds:GetSystemSupportInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetSystemSupportInformation(struct soap *soap, const char *URL, struct __tds__GetSystemSupportInformation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemSupportInformation(soap, p), 0) || ::soap_put___tds__GetSystemSupportInformation(soap, p, "-tds:GetSystemSupportInformation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetSystemSupportInformation * SOAP_FMAC4 soap_get___tds__GetSystemSupportInformation(struct soap*, struct __tds__GetSystemSupportInformation *, const char*, const char*); - -inline int soap_read___tds__GetSystemSupportInformation(struct soap *soap, struct __tds__GetSystemSupportInformation *p) -{ - if (p) - { ::soap_default___tds__GetSystemSupportInformation(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetSystemSupportInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetSystemSupportInformation(struct soap *soap, const char *URL, struct __tds__GetSystemSupportInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetSystemSupportInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetSystemSupportInformation(struct soap *soap, struct __tds__GetSystemSupportInformation *p) -{ - if (::soap_read___tds__GetSystemSupportInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetSystemLog_DEFINED -#define SOAP_TYPE___tds__GetSystemLog_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemLog(struct soap*, struct __tds__GetSystemLog *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemLog(struct soap*, const struct __tds__GetSystemLog *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemLog(struct soap*, const char*, int, const struct __tds__GetSystemLog *, const char*); -SOAP_FMAC3 struct __tds__GetSystemLog * SOAP_FMAC4 soap_in___tds__GetSystemLog(struct soap*, const char*, struct __tds__GetSystemLog *, const char*); -SOAP_FMAC1 struct __tds__GetSystemLog * SOAP_FMAC2 soap_instantiate___tds__GetSystemLog(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetSystemLog * soap_new___tds__GetSystemLog(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetSystemLog(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetSystemLog * soap_new_req___tds__GetSystemLog( - struct soap *soap) -{ - struct __tds__GetSystemLog *_p = ::soap_new___tds__GetSystemLog(soap); - if (_p) - { ::soap_default___tds__GetSystemLog(soap, _p); - } - return _p; -} - -inline struct __tds__GetSystemLog * soap_new_set___tds__GetSystemLog( - struct soap *soap, - _tds__GetSystemLog *tds__GetSystemLog) -{ - struct __tds__GetSystemLog *_p = ::soap_new___tds__GetSystemLog(soap); - if (_p) - { ::soap_default___tds__GetSystemLog(soap, _p); - _p->tds__GetSystemLog = tds__GetSystemLog; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemLog(struct soap*, const struct __tds__GetSystemLog *, const char*, const char*); - -inline int soap_write___tds__GetSystemLog(struct soap *soap, struct __tds__GetSystemLog const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetSystemLog(soap, p), 0) || ::soap_put___tds__GetSystemLog(soap, p, "-tds:GetSystemLog", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetSystemLog(struct soap *soap, const char *URL, struct __tds__GetSystemLog const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemLog(soap, p), 0) || ::soap_put___tds__GetSystemLog(soap, p, "-tds:GetSystemLog", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetSystemLog(struct soap *soap, const char *URL, struct __tds__GetSystemLog const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemLog(soap, p), 0) || ::soap_put___tds__GetSystemLog(soap, p, "-tds:GetSystemLog", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetSystemLog(struct soap *soap, const char *URL, struct __tds__GetSystemLog const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemLog(soap, p), 0) || ::soap_put___tds__GetSystemLog(soap, p, "-tds:GetSystemLog", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetSystemLog * SOAP_FMAC4 soap_get___tds__GetSystemLog(struct soap*, struct __tds__GetSystemLog *, const char*, const char*); - -inline int soap_read___tds__GetSystemLog(struct soap *soap, struct __tds__GetSystemLog *p) -{ - if (p) - { ::soap_default___tds__GetSystemLog(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetSystemLog(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetSystemLog(struct soap *soap, const char *URL, struct __tds__GetSystemLog *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetSystemLog(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetSystemLog(struct soap *soap, struct __tds__GetSystemLog *p) -{ - if (::soap_read___tds__GetSystemLog(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetSystemBackup_DEFINED -#define SOAP_TYPE___tds__GetSystemBackup_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemBackup(struct soap*, struct __tds__GetSystemBackup *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemBackup(struct soap*, const struct __tds__GetSystemBackup *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemBackup(struct soap*, const char*, int, const struct __tds__GetSystemBackup *, const char*); -SOAP_FMAC3 struct __tds__GetSystemBackup * SOAP_FMAC4 soap_in___tds__GetSystemBackup(struct soap*, const char*, struct __tds__GetSystemBackup *, const char*); -SOAP_FMAC1 struct __tds__GetSystemBackup * SOAP_FMAC2 soap_instantiate___tds__GetSystemBackup(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetSystemBackup * soap_new___tds__GetSystemBackup(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetSystemBackup(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetSystemBackup * soap_new_req___tds__GetSystemBackup( - struct soap *soap) -{ - struct __tds__GetSystemBackup *_p = ::soap_new___tds__GetSystemBackup(soap); - if (_p) - { ::soap_default___tds__GetSystemBackup(soap, _p); - } - return _p; -} - -inline struct __tds__GetSystemBackup * soap_new_set___tds__GetSystemBackup( - struct soap *soap, - _tds__GetSystemBackup *tds__GetSystemBackup) -{ - struct __tds__GetSystemBackup *_p = ::soap_new___tds__GetSystemBackup(soap); - if (_p) - { ::soap_default___tds__GetSystemBackup(soap, _p); - _p->tds__GetSystemBackup = tds__GetSystemBackup; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemBackup(struct soap*, const struct __tds__GetSystemBackup *, const char*, const char*); - -inline int soap_write___tds__GetSystemBackup(struct soap *soap, struct __tds__GetSystemBackup const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetSystemBackup(soap, p), 0) || ::soap_put___tds__GetSystemBackup(soap, p, "-tds:GetSystemBackup", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetSystemBackup(struct soap *soap, const char *URL, struct __tds__GetSystemBackup const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemBackup(soap, p), 0) || ::soap_put___tds__GetSystemBackup(soap, p, "-tds:GetSystemBackup", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetSystemBackup(struct soap *soap, const char *URL, struct __tds__GetSystemBackup const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemBackup(soap, p), 0) || ::soap_put___tds__GetSystemBackup(soap, p, "-tds:GetSystemBackup", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetSystemBackup(struct soap *soap, const char *URL, struct __tds__GetSystemBackup const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemBackup(soap, p), 0) || ::soap_put___tds__GetSystemBackup(soap, p, "-tds:GetSystemBackup", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetSystemBackup * SOAP_FMAC4 soap_get___tds__GetSystemBackup(struct soap*, struct __tds__GetSystemBackup *, const char*, const char*); - -inline int soap_read___tds__GetSystemBackup(struct soap *soap, struct __tds__GetSystemBackup *p) -{ - if (p) - { ::soap_default___tds__GetSystemBackup(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetSystemBackup(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetSystemBackup(struct soap *soap, const char *URL, struct __tds__GetSystemBackup *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetSystemBackup(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetSystemBackup(struct soap *soap, struct __tds__GetSystemBackup *p) -{ - if (::soap_read___tds__GetSystemBackup(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__RestoreSystem_DEFINED -#define SOAP_TYPE___tds__RestoreSystem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__RestoreSystem(struct soap*, struct __tds__RestoreSystem *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__RestoreSystem(struct soap*, const struct __tds__RestoreSystem *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__RestoreSystem(struct soap*, const char*, int, const struct __tds__RestoreSystem *, const char*); -SOAP_FMAC3 struct __tds__RestoreSystem * SOAP_FMAC4 soap_in___tds__RestoreSystem(struct soap*, const char*, struct __tds__RestoreSystem *, const char*); -SOAP_FMAC1 struct __tds__RestoreSystem * SOAP_FMAC2 soap_instantiate___tds__RestoreSystem(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__RestoreSystem * soap_new___tds__RestoreSystem(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__RestoreSystem(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__RestoreSystem * soap_new_req___tds__RestoreSystem( - struct soap *soap) -{ - struct __tds__RestoreSystem *_p = ::soap_new___tds__RestoreSystem(soap); - if (_p) - { ::soap_default___tds__RestoreSystem(soap, _p); - } - return _p; -} - -inline struct __tds__RestoreSystem * soap_new_set___tds__RestoreSystem( - struct soap *soap, - _tds__RestoreSystem *tds__RestoreSystem) -{ - struct __tds__RestoreSystem *_p = ::soap_new___tds__RestoreSystem(soap); - if (_p) - { ::soap_default___tds__RestoreSystem(soap, _p); - _p->tds__RestoreSystem = tds__RestoreSystem; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__RestoreSystem(struct soap*, const struct __tds__RestoreSystem *, const char*, const char*); - -inline int soap_write___tds__RestoreSystem(struct soap *soap, struct __tds__RestoreSystem const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__RestoreSystem(soap, p), 0) || ::soap_put___tds__RestoreSystem(soap, p, "-tds:RestoreSystem", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__RestoreSystem(struct soap *soap, const char *URL, struct __tds__RestoreSystem const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RestoreSystem(soap, p), 0) || ::soap_put___tds__RestoreSystem(soap, p, "-tds:RestoreSystem", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__RestoreSystem(struct soap *soap, const char *URL, struct __tds__RestoreSystem const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RestoreSystem(soap, p), 0) || ::soap_put___tds__RestoreSystem(soap, p, "-tds:RestoreSystem", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__RestoreSystem(struct soap *soap, const char *URL, struct __tds__RestoreSystem const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__RestoreSystem(soap, p), 0) || ::soap_put___tds__RestoreSystem(soap, p, "-tds:RestoreSystem", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__RestoreSystem * SOAP_FMAC4 soap_get___tds__RestoreSystem(struct soap*, struct __tds__RestoreSystem *, const char*, const char*); - -inline int soap_read___tds__RestoreSystem(struct soap *soap, struct __tds__RestoreSystem *p) -{ - if (p) - { ::soap_default___tds__RestoreSystem(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__RestoreSystem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__RestoreSystem(struct soap *soap, const char *URL, struct __tds__RestoreSystem *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__RestoreSystem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__RestoreSystem(struct soap *soap, struct __tds__RestoreSystem *p) -{ - if (::soap_read___tds__RestoreSystem(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SystemReboot_DEFINED -#define SOAP_TYPE___tds__SystemReboot_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SystemReboot(struct soap*, struct __tds__SystemReboot *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SystemReboot(struct soap*, const struct __tds__SystemReboot *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SystemReboot(struct soap*, const char*, int, const struct __tds__SystemReboot *, const char*); -SOAP_FMAC3 struct __tds__SystemReboot * SOAP_FMAC4 soap_in___tds__SystemReboot(struct soap*, const char*, struct __tds__SystemReboot *, const char*); -SOAP_FMAC1 struct __tds__SystemReboot * SOAP_FMAC2 soap_instantiate___tds__SystemReboot(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SystemReboot * soap_new___tds__SystemReboot(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SystemReboot(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SystemReboot * soap_new_req___tds__SystemReboot( - struct soap *soap) -{ - struct __tds__SystemReboot *_p = ::soap_new___tds__SystemReboot(soap); - if (_p) - { ::soap_default___tds__SystemReboot(soap, _p); - } - return _p; -} - -inline struct __tds__SystemReboot * soap_new_set___tds__SystemReboot( - struct soap *soap, - _tds__SystemReboot *tds__SystemReboot) -{ - struct __tds__SystemReboot *_p = ::soap_new___tds__SystemReboot(soap); - if (_p) - { ::soap_default___tds__SystemReboot(soap, _p); - _p->tds__SystemReboot = tds__SystemReboot; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SystemReboot(struct soap*, const struct __tds__SystemReboot *, const char*, const char*); - -inline int soap_write___tds__SystemReboot(struct soap *soap, struct __tds__SystemReboot const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SystemReboot(soap, p), 0) || ::soap_put___tds__SystemReboot(soap, p, "-tds:SystemReboot", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SystemReboot(struct soap *soap, const char *URL, struct __tds__SystemReboot const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SystemReboot(soap, p), 0) || ::soap_put___tds__SystemReboot(soap, p, "-tds:SystemReboot", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SystemReboot(struct soap *soap, const char *URL, struct __tds__SystemReboot const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SystemReboot(soap, p), 0) || ::soap_put___tds__SystemReboot(soap, p, "-tds:SystemReboot", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SystemReboot(struct soap *soap, const char *URL, struct __tds__SystemReboot const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SystemReboot(soap, p), 0) || ::soap_put___tds__SystemReboot(soap, p, "-tds:SystemReboot", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SystemReboot * SOAP_FMAC4 soap_get___tds__SystemReboot(struct soap*, struct __tds__SystemReboot *, const char*, const char*); - -inline int soap_read___tds__SystemReboot(struct soap *soap, struct __tds__SystemReboot *p) -{ - if (p) - { ::soap_default___tds__SystemReboot(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SystemReboot(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SystemReboot(struct soap *soap, const char *URL, struct __tds__SystemReboot *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SystemReboot(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SystemReboot(struct soap *soap, struct __tds__SystemReboot *p) -{ - if (::soap_read___tds__SystemReboot(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__UpgradeSystemFirmware_DEFINED -#define SOAP_TYPE___tds__UpgradeSystemFirmware_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__UpgradeSystemFirmware(struct soap*, struct __tds__UpgradeSystemFirmware *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__UpgradeSystemFirmware(struct soap*, const struct __tds__UpgradeSystemFirmware *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__UpgradeSystemFirmware(struct soap*, const char*, int, const struct __tds__UpgradeSystemFirmware *, const char*); -SOAP_FMAC3 struct __tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_in___tds__UpgradeSystemFirmware(struct soap*, const char*, struct __tds__UpgradeSystemFirmware *, const char*); -SOAP_FMAC1 struct __tds__UpgradeSystemFirmware * SOAP_FMAC2 soap_instantiate___tds__UpgradeSystemFirmware(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__UpgradeSystemFirmware * soap_new___tds__UpgradeSystemFirmware(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__UpgradeSystemFirmware(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__UpgradeSystemFirmware * soap_new_req___tds__UpgradeSystemFirmware( - struct soap *soap) -{ - struct __tds__UpgradeSystemFirmware *_p = ::soap_new___tds__UpgradeSystemFirmware(soap); - if (_p) - { ::soap_default___tds__UpgradeSystemFirmware(soap, _p); - } - return _p; -} - -inline struct __tds__UpgradeSystemFirmware * soap_new_set___tds__UpgradeSystemFirmware( - struct soap *soap, - _tds__UpgradeSystemFirmware *tds__UpgradeSystemFirmware) -{ - struct __tds__UpgradeSystemFirmware *_p = ::soap_new___tds__UpgradeSystemFirmware(soap); - if (_p) - { ::soap_default___tds__UpgradeSystemFirmware(soap, _p); - _p->tds__UpgradeSystemFirmware = tds__UpgradeSystemFirmware; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__UpgradeSystemFirmware(struct soap*, const struct __tds__UpgradeSystemFirmware *, const char*, const char*); - -inline int soap_write___tds__UpgradeSystemFirmware(struct soap *soap, struct __tds__UpgradeSystemFirmware const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__UpgradeSystemFirmware(soap, p), 0) || ::soap_put___tds__UpgradeSystemFirmware(soap, p, "-tds:UpgradeSystemFirmware", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, struct __tds__UpgradeSystemFirmware const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__UpgradeSystemFirmware(soap, p), 0) || ::soap_put___tds__UpgradeSystemFirmware(soap, p, "-tds:UpgradeSystemFirmware", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, struct __tds__UpgradeSystemFirmware const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__UpgradeSystemFirmware(soap, p), 0) || ::soap_put___tds__UpgradeSystemFirmware(soap, p, "-tds:UpgradeSystemFirmware", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, struct __tds__UpgradeSystemFirmware const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__UpgradeSystemFirmware(soap, p), 0) || ::soap_put___tds__UpgradeSystemFirmware(soap, p, "-tds:UpgradeSystemFirmware", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__UpgradeSystemFirmware * SOAP_FMAC4 soap_get___tds__UpgradeSystemFirmware(struct soap*, struct __tds__UpgradeSystemFirmware *, const char*, const char*); - -inline int soap_read___tds__UpgradeSystemFirmware(struct soap *soap, struct __tds__UpgradeSystemFirmware *p) -{ - if (p) - { ::soap_default___tds__UpgradeSystemFirmware(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__UpgradeSystemFirmware(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__UpgradeSystemFirmware(struct soap *soap, const char *URL, struct __tds__UpgradeSystemFirmware *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__UpgradeSystemFirmware(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__UpgradeSystemFirmware(struct soap *soap, struct __tds__UpgradeSystemFirmware *p) -{ - if (::soap_read___tds__UpgradeSystemFirmware(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetSystemFactoryDefault_DEFINED -#define SOAP_TYPE___tds__SetSystemFactoryDefault_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetSystemFactoryDefault(struct soap*, struct __tds__SetSystemFactoryDefault *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetSystemFactoryDefault(struct soap*, const struct __tds__SetSystemFactoryDefault *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetSystemFactoryDefault(struct soap*, const char*, int, const struct __tds__SetSystemFactoryDefault *, const char*); -SOAP_FMAC3 struct __tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_in___tds__SetSystemFactoryDefault(struct soap*, const char*, struct __tds__SetSystemFactoryDefault *, const char*); -SOAP_FMAC1 struct __tds__SetSystemFactoryDefault * SOAP_FMAC2 soap_instantiate___tds__SetSystemFactoryDefault(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetSystemFactoryDefault * soap_new___tds__SetSystemFactoryDefault(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetSystemFactoryDefault(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetSystemFactoryDefault * soap_new_req___tds__SetSystemFactoryDefault( - struct soap *soap) -{ - struct __tds__SetSystemFactoryDefault *_p = ::soap_new___tds__SetSystemFactoryDefault(soap); - if (_p) - { ::soap_default___tds__SetSystemFactoryDefault(soap, _p); - } - return _p; -} - -inline struct __tds__SetSystemFactoryDefault * soap_new_set___tds__SetSystemFactoryDefault( - struct soap *soap, - _tds__SetSystemFactoryDefault *tds__SetSystemFactoryDefault) -{ - struct __tds__SetSystemFactoryDefault *_p = ::soap_new___tds__SetSystemFactoryDefault(soap); - if (_p) - { ::soap_default___tds__SetSystemFactoryDefault(soap, _p); - _p->tds__SetSystemFactoryDefault = tds__SetSystemFactoryDefault; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetSystemFactoryDefault(struct soap*, const struct __tds__SetSystemFactoryDefault *, const char*, const char*); - -inline int soap_write___tds__SetSystemFactoryDefault(struct soap *soap, struct __tds__SetSystemFactoryDefault const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetSystemFactoryDefault(soap, p), 0) || ::soap_put___tds__SetSystemFactoryDefault(soap, p, "-tds:SetSystemFactoryDefault", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, struct __tds__SetSystemFactoryDefault const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetSystemFactoryDefault(soap, p), 0) || ::soap_put___tds__SetSystemFactoryDefault(soap, p, "-tds:SetSystemFactoryDefault", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, struct __tds__SetSystemFactoryDefault const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetSystemFactoryDefault(soap, p), 0) || ::soap_put___tds__SetSystemFactoryDefault(soap, p, "-tds:SetSystemFactoryDefault", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, struct __tds__SetSystemFactoryDefault const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetSystemFactoryDefault(soap, p), 0) || ::soap_put___tds__SetSystemFactoryDefault(soap, p, "-tds:SetSystemFactoryDefault", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetSystemFactoryDefault * SOAP_FMAC4 soap_get___tds__SetSystemFactoryDefault(struct soap*, struct __tds__SetSystemFactoryDefault *, const char*, const char*); - -inline int soap_read___tds__SetSystemFactoryDefault(struct soap *soap, struct __tds__SetSystemFactoryDefault *p) -{ - if (p) - { ::soap_default___tds__SetSystemFactoryDefault(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetSystemFactoryDefault(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetSystemFactoryDefault(struct soap *soap, const char *URL, struct __tds__SetSystemFactoryDefault *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetSystemFactoryDefault(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetSystemFactoryDefault(struct soap *soap, struct __tds__SetSystemFactoryDefault *p) -{ - if (::soap_read___tds__SetSystemFactoryDefault(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetSystemDateAndTime_DEFINED -#define SOAP_TYPE___tds__GetSystemDateAndTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetSystemDateAndTime(struct soap*, struct __tds__GetSystemDateAndTime *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetSystemDateAndTime(struct soap*, const struct __tds__GetSystemDateAndTime *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetSystemDateAndTime(struct soap*, const char*, int, const struct __tds__GetSystemDateAndTime *, const char*); -SOAP_FMAC3 struct __tds__GetSystemDateAndTime * SOAP_FMAC4 soap_in___tds__GetSystemDateAndTime(struct soap*, const char*, struct __tds__GetSystemDateAndTime *, const char*); -SOAP_FMAC1 struct __tds__GetSystemDateAndTime * SOAP_FMAC2 soap_instantiate___tds__GetSystemDateAndTime(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetSystemDateAndTime * soap_new___tds__GetSystemDateAndTime(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetSystemDateAndTime(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetSystemDateAndTime * soap_new_req___tds__GetSystemDateAndTime( - struct soap *soap) -{ - struct __tds__GetSystemDateAndTime *_p = ::soap_new___tds__GetSystemDateAndTime(soap); - if (_p) - { ::soap_default___tds__GetSystemDateAndTime(soap, _p); - } - return _p; -} - -inline struct __tds__GetSystemDateAndTime * soap_new_set___tds__GetSystemDateAndTime( - struct soap *soap, - _tds__GetSystemDateAndTime *tds__GetSystemDateAndTime) -{ - struct __tds__GetSystemDateAndTime *_p = ::soap_new___tds__GetSystemDateAndTime(soap); - if (_p) - { ::soap_default___tds__GetSystemDateAndTime(soap, _p); - _p->tds__GetSystemDateAndTime = tds__GetSystemDateAndTime; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetSystemDateAndTime(struct soap*, const struct __tds__GetSystemDateAndTime *, const char*, const char*); - -inline int soap_write___tds__GetSystemDateAndTime(struct soap *soap, struct __tds__GetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__GetSystemDateAndTime(soap, p, "-tds:GetSystemDateAndTime", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__GetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__GetSystemDateAndTime(soap, p, "-tds:GetSystemDateAndTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__GetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__GetSystemDateAndTime(soap, p, "-tds:GetSystemDateAndTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__GetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__GetSystemDateAndTime(soap, p, "-tds:GetSystemDateAndTime", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetSystemDateAndTime * SOAP_FMAC4 soap_get___tds__GetSystemDateAndTime(struct soap*, struct __tds__GetSystemDateAndTime *, const char*, const char*); - -inline int soap_read___tds__GetSystemDateAndTime(struct soap *soap, struct __tds__GetSystemDateAndTime *p) -{ - if (p) - { ::soap_default___tds__GetSystemDateAndTime(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetSystemDateAndTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__GetSystemDateAndTime *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetSystemDateAndTime(struct soap *soap, struct __tds__GetSystemDateAndTime *p) -{ - if (::soap_read___tds__GetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__SetSystemDateAndTime_DEFINED -#define SOAP_TYPE___tds__SetSystemDateAndTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__SetSystemDateAndTime(struct soap*, struct __tds__SetSystemDateAndTime *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__SetSystemDateAndTime(struct soap*, const struct __tds__SetSystemDateAndTime *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__SetSystemDateAndTime(struct soap*, const char*, int, const struct __tds__SetSystemDateAndTime *, const char*); -SOAP_FMAC3 struct __tds__SetSystemDateAndTime * SOAP_FMAC4 soap_in___tds__SetSystemDateAndTime(struct soap*, const char*, struct __tds__SetSystemDateAndTime *, const char*); -SOAP_FMAC1 struct __tds__SetSystemDateAndTime * SOAP_FMAC2 soap_instantiate___tds__SetSystemDateAndTime(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__SetSystemDateAndTime * soap_new___tds__SetSystemDateAndTime(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__SetSystemDateAndTime(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__SetSystemDateAndTime * soap_new_req___tds__SetSystemDateAndTime( - struct soap *soap) -{ - struct __tds__SetSystemDateAndTime *_p = ::soap_new___tds__SetSystemDateAndTime(soap); - if (_p) - { ::soap_default___tds__SetSystemDateAndTime(soap, _p); - } - return _p; -} - -inline struct __tds__SetSystemDateAndTime * soap_new_set___tds__SetSystemDateAndTime( - struct soap *soap, - _tds__SetSystemDateAndTime *tds__SetSystemDateAndTime) -{ - struct __tds__SetSystemDateAndTime *_p = ::soap_new___tds__SetSystemDateAndTime(soap); - if (_p) - { ::soap_default___tds__SetSystemDateAndTime(soap, _p); - _p->tds__SetSystemDateAndTime = tds__SetSystemDateAndTime; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__SetSystemDateAndTime(struct soap*, const struct __tds__SetSystemDateAndTime *, const char*, const char*); - -inline int soap_write___tds__SetSystemDateAndTime(struct soap *soap, struct __tds__SetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__SetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__SetSystemDateAndTime(soap, p, "-tds:SetSystemDateAndTime", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__SetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__SetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__SetSystemDateAndTime(soap, p, "-tds:SetSystemDateAndTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__SetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__SetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__SetSystemDateAndTime(soap, p, "-tds:SetSystemDateAndTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__SetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__SetSystemDateAndTime const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__SetSystemDateAndTime(soap, p), 0) || ::soap_put___tds__SetSystemDateAndTime(soap, p, "-tds:SetSystemDateAndTime", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__SetSystemDateAndTime * SOAP_FMAC4 soap_get___tds__SetSystemDateAndTime(struct soap*, struct __tds__SetSystemDateAndTime *, const char*, const char*); - -inline int soap_read___tds__SetSystemDateAndTime(struct soap *soap, struct __tds__SetSystemDateAndTime *p) -{ - if (p) - { ::soap_default___tds__SetSystemDateAndTime(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__SetSystemDateAndTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__SetSystemDateAndTime(struct soap *soap, const char *URL, struct __tds__SetSystemDateAndTime *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__SetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__SetSystemDateAndTime(struct soap *soap, struct __tds__SetSystemDateAndTime *p) -{ - if (::soap_read___tds__SetSystemDateAndTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetDeviceInformation_DEFINED -#define SOAP_TYPE___tds__GetDeviceInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetDeviceInformation(struct soap*, struct __tds__GetDeviceInformation *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetDeviceInformation(struct soap*, const struct __tds__GetDeviceInformation *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetDeviceInformation(struct soap*, const char*, int, const struct __tds__GetDeviceInformation *, const char*); -SOAP_FMAC3 struct __tds__GetDeviceInformation * SOAP_FMAC4 soap_in___tds__GetDeviceInformation(struct soap*, const char*, struct __tds__GetDeviceInformation *, const char*); -SOAP_FMAC1 struct __tds__GetDeviceInformation * SOAP_FMAC2 soap_instantiate___tds__GetDeviceInformation(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetDeviceInformation * soap_new___tds__GetDeviceInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetDeviceInformation(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetDeviceInformation * soap_new_req___tds__GetDeviceInformation( - struct soap *soap) -{ - struct __tds__GetDeviceInformation *_p = ::soap_new___tds__GetDeviceInformation(soap); - if (_p) - { ::soap_default___tds__GetDeviceInformation(soap, _p); - } - return _p; -} - -inline struct __tds__GetDeviceInformation * soap_new_set___tds__GetDeviceInformation( - struct soap *soap, - _tds__GetDeviceInformation *tds__GetDeviceInformation) -{ - struct __tds__GetDeviceInformation *_p = ::soap_new___tds__GetDeviceInformation(soap); - if (_p) - { ::soap_default___tds__GetDeviceInformation(soap, _p); - _p->tds__GetDeviceInformation = tds__GetDeviceInformation; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetDeviceInformation(struct soap*, const struct __tds__GetDeviceInformation *, const char*, const char*); - -inline int soap_write___tds__GetDeviceInformation(struct soap *soap, struct __tds__GetDeviceInformation const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetDeviceInformation(soap, p), 0) || ::soap_put___tds__GetDeviceInformation(soap, p, "-tds:GetDeviceInformation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetDeviceInformation(struct soap *soap, const char *URL, struct __tds__GetDeviceInformation const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDeviceInformation(soap, p), 0) || ::soap_put___tds__GetDeviceInformation(soap, p, "-tds:GetDeviceInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetDeviceInformation(struct soap *soap, const char *URL, struct __tds__GetDeviceInformation const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDeviceInformation(soap, p), 0) || ::soap_put___tds__GetDeviceInformation(soap, p, "-tds:GetDeviceInformation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetDeviceInformation(struct soap *soap, const char *URL, struct __tds__GetDeviceInformation const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetDeviceInformation(soap, p), 0) || ::soap_put___tds__GetDeviceInformation(soap, p, "-tds:GetDeviceInformation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetDeviceInformation * SOAP_FMAC4 soap_get___tds__GetDeviceInformation(struct soap*, struct __tds__GetDeviceInformation *, const char*, const char*); - -inline int soap_read___tds__GetDeviceInformation(struct soap *soap, struct __tds__GetDeviceInformation *p) -{ - if (p) - { ::soap_default___tds__GetDeviceInformation(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetDeviceInformation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetDeviceInformation(struct soap *soap, const char *URL, struct __tds__GetDeviceInformation *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetDeviceInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetDeviceInformation(struct soap *soap, struct __tds__GetDeviceInformation *p) -{ - if (::soap_read___tds__GetDeviceInformation(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetServiceCapabilities_DEFINED -#define SOAP_TYPE___tds__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetServiceCapabilities(struct soap*, struct __tds__GetServiceCapabilities *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetServiceCapabilities(struct soap*, const struct __tds__GetServiceCapabilities *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetServiceCapabilities(struct soap*, const char*, int, const struct __tds__GetServiceCapabilities *, const char*); -SOAP_FMAC3 struct __tds__GetServiceCapabilities * SOAP_FMAC4 soap_in___tds__GetServiceCapabilities(struct soap*, const char*, struct __tds__GetServiceCapabilities *, const char*); -SOAP_FMAC1 struct __tds__GetServiceCapabilities * SOAP_FMAC2 soap_instantiate___tds__GetServiceCapabilities(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetServiceCapabilities * soap_new___tds__GetServiceCapabilities(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetServiceCapabilities(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetServiceCapabilities * soap_new_req___tds__GetServiceCapabilities( - struct soap *soap) -{ - struct __tds__GetServiceCapabilities *_p = ::soap_new___tds__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tds__GetServiceCapabilities(soap, _p); - } - return _p; -} - -inline struct __tds__GetServiceCapabilities * soap_new_set___tds__GetServiceCapabilities( - struct soap *soap, - _tds__GetServiceCapabilities *tds__GetServiceCapabilities) -{ - struct __tds__GetServiceCapabilities *_p = ::soap_new___tds__GetServiceCapabilities(soap); - if (_p) - { ::soap_default___tds__GetServiceCapabilities(soap, _p); - _p->tds__GetServiceCapabilities = tds__GetServiceCapabilities; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetServiceCapabilities(struct soap*, const struct __tds__GetServiceCapabilities *, const char*, const char*); - -inline int soap_write___tds__GetServiceCapabilities(struct soap *soap, struct __tds__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetServiceCapabilities(soap, p), 0) || ::soap_put___tds__GetServiceCapabilities(soap, p, "-tds:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tds__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetServiceCapabilities(soap, p), 0) || ::soap_put___tds__GetServiceCapabilities(soap, p, "-tds:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tds__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetServiceCapabilities(soap, p), 0) || ::soap_put___tds__GetServiceCapabilities(soap, p, "-tds:GetServiceCapabilities", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tds__GetServiceCapabilities const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetServiceCapabilities(soap, p), 0) || ::soap_put___tds__GetServiceCapabilities(soap, p, "-tds:GetServiceCapabilities", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetServiceCapabilities * SOAP_FMAC4 soap_get___tds__GetServiceCapabilities(struct soap*, struct __tds__GetServiceCapabilities *, const char*, const char*); - -inline int soap_read___tds__GetServiceCapabilities(struct soap *soap, struct __tds__GetServiceCapabilities *p) -{ - if (p) - { ::soap_default___tds__GetServiceCapabilities(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetServiceCapabilities(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetServiceCapabilities(struct soap *soap, const char *URL, struct __tds__GetServiceCapabilities *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetServiceCapabilities(struct soap *soap, struct __tds__GetServiceCapabilities *p) -{ - if (::soap_read___tds__GetServiceCapabilities(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tds__GetServices_DEFINED -#define SOAP_TYPE___tds__GetServices_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tds__GetServices(struct soap*, struct __tds__GetServices *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tds__GetServices(struct soap*, const struct __tds__GetServices *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tds__GetServices(struct soap*, const char*, int, const struct __tds__GetServices *, const char*); -SOAP_FMAC3 struct __tds__GetServices * SOAP_FMAC4 soap_in___tds__GetServices(struct soap*, const char*, struct __tds__GetServices *, const char*); -SOAP_FMAC1 struct __tds__GetServices * SOAP_FMAC2 soap_instantiate___tds__GetServices(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tds__GetServices * soap_new___tds__GetServices(struct soap *soap, int n = -1) -{ - return soap_instantiate___tds__GetServices(soap, n, NULL, NULL, NULL); -} - -inline struct __tds__GetServices * soap_new_req___tds__GetServices( - struct soap *soap) -{ - struct __tds__GetServices *_p = ::soap_new___tds__GetServices(soap); - if (_p) - { ::soap_default___tds__GetServices(soap, _p); - } - return _p; -} - -inline struct __tds__GetServices * soap_new_set___tds__GetServices( - struct soap *soap, - _tds__GetServices *tds__GetServices) -{ - struct __tds__GetServices *_p = ::soap_new___tds__GetServices(soap); - if (_p) - { ::soap_default___tds__GetServices(soap, _p); - _p->tds__GetServices = tds__GetServices; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tds__GetServices(struct soap*, const struct __tds__GetServices *, const char*, const char*); - -inline int soap_write___tds__GetServices(struct soap *soap, struct __tds__GetServices const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tds__GetServices(soap, p), 0) || ::soap_put___tds__GetServices(soap, p, "-tds:GetServices", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tds__GetServices(struct soap *soap, const char *URL, struct __tds__GetServices const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetServices(soap, p), 0) || ::soap_put___tds__GetServices(soap, p, "-tds:GetServices", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tds__GetServices(struct soap *soap, const char *URL, struct __tds__GetServices const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetServices(soap, p), 0) || ::soap_put___tds__GetServices(soap, p, "-tds:GetServices", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tds__GetServices(struct soap *soap, const char *URL, struct __tds__GetServices const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tds__GetServices(soap, p), 0) || ::soap_put___tds__GetServices(soap, p, "-tds:GetServices", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tds__GetServices * SOAP_FMAC4 soap_get___tds__GetServices(struct soap*, struct __tds__GetServices *, const char*, const char*); - -inline int soap_read___tds__GetServices(struct soap *soap, struct __tds__GetServices *p) -{ - if (p) - { ::soap_default___tds__GetServices(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tds__GetServices(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tds__GetServices(struct soap *soap, const char *URL, struct __tds__GetServices *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tds__GetServices(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tds__GetServices(struct soap *soap, struct __tds__GetServices *p) -{ - if (::soap_read___tds__GetServices(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___tptz__SetConfigurationResponse_sequence_DEFINED -#define SOAP_TYPE___tptz__SetConfigurationResponse_sequence_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___tptz__SetConfigurationResponse_sequence(struct soap*, struct __tptz__SetConfigurationResponse_sequence *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___tptz__SetConfigurationResponse_sequence(struct soap*, const struct __tptz__SetConfigurationResponse_sequence *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___tptz__SetConfigurationResponse_sequence(struct soap*, const char*, int, const struct __tptz__SetConfigurationResponse_sequence *, const char*); -SOAP_FMAC3 struct __tptz__SetConfigurationResponse_sequence * SOAP_FMAC4 soap_in___tptz__SetConfigurationResponse_sequence(struct soap*, const char*, struct __tptz__SetConfigurationResponse_sequence *, const char*); -SOAP_FMAC1 struct __tptz__SetConfigurationResponse_sequence * SOAP_FMAC2 soap_instantiate___tptz__SetConfigurationResponse_sequence(struct soap*, int, const char*, const char*, size_t*); - -inline struct __tptz__SetConfigurationResponse_sequence * soap_new___tptz__SetConfigurationResponse_sequence(struct soap *soap, int n = -1) -{ - return soap_instantiate___tptz__SetConfigurationResponse_sequence(soap, n, NULL, NULL, NULL); -} - -inline struct __tptz__SetConfigurationResponse_sequence * soap_new_req___tptz__SetConfigurationResponse_sequence( - struct soap *soap) -{ - struct __tptz__SetConfigurationResponse_sequence *_p = ::soap_new___tptz__SetConfigurationResponse_sequence(soap); - if (_p) - { ::soap_default___tptz__SetConfigurationResponse_sequence(soap, _p); - } - return _p; -} - -inline struct __tptz__SetConfigurationResponse_sequence * soap_new_set___tptz__SetConfigurationResponse_sequence( - struct soap *soap) -{ - struct __tptz__SetConfigurationResponse_sequence *_p = ::soap_new___tptz__SetConfigurationResponse_sequence(soap); - if (_p) - { ::soap_default___tptz__SetConfigurationResponse_sequence(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___tptz__SetConfigurationResponse_sequence(struct soap*, const struct __tptz__SetConfigurationResponse_sequence *, const char*, const char*); - -inline int soap_write___tptz__SetConfigurationResponse_sequence(struct soap *soap, struct __tptz__SetConfigurationResponse_sequence const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___tptz__SetConfigurationResponse_sequence(soap, p), 0) || ::soap_put___tptz__SetConfigurationResponse_sequence(soap, p, "-tptz:SetConfigurationResponse-sequence", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___tptz__SetConfigurationResponse_sequence(struct soap *soap, const char *URL, struct __tptz__SetConfigurationResponse_sequence const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetConfigurationResponse_sequence(soap, p), 0) || ::soap_put___tptz__SetConfigurationResponse_sequence(soap, p, "-tptz:SetConfigurationResponse-sequence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___tptz__SetConfigurationResponse_sequence(struct soap *soap, const char *URL, struct __tptz__SetConfigurationResponse_sequence const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetConfigurationResponse_sequence(soap, p), 0) || ::soap_put___tptz__SetConfigurationResponse_sequence(soap, p, "-tptz:SetConfigurationResponse-sequence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___tptz__SetConfigurationResponse_sequence(struct soap *soap, const char *URL, struct __tptz__SetConfigurationResponse_sequence const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___tptz__SetConfigurationResponse_sequence(soap, p), 0) || ::soap_put___tptz__SetConfigurationResponse_sequence(soap, p, "-tptz:SetConfigurationResponse-sequence", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __tptz__SetConfigurationResponse_sequence * SOAP_FMAC4 soap_get___tptz__SetConfigurationResponse_sequence(struct soap*, struct __tptz__SetConfigurationResponse_sequence *, const char*, const char*); - -inline int soap_read___tptz__SetConfigurationResponse_sequence(struct soap *soap, struct __tptz__SetConfigurationResponse_sequence *p) -{ - if (p) - { ::soap_default___tptz__SetConfigurationResponse_sequence(soap, p); - if (soap_begin_recv(soap) || ::soap_get___tptz__SetConfigurationResponse_sequence(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___tptz__SetConfigurationResponse_sequence(struct soap *soap, const char *URL, struct __tptz__SetConfigurationResponse_sequence *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___tptz__SetConfigurationResponse_sequence(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___tptz__SetConfigurationResponse_sequence(struct soap *soap, struct __tptz__SetConfigurationResponse_sequence *p) -{ - if (::soap_read___tptz__SetConfigurationResponse_sequence(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_chan__ChannelInstanceType_DEFINED -#define SOAP_TYPE_chan__ChannelInstanceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_chan__ChannelInstanceType(struct soap*, struct chan__ChannelInstanceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_chan__ChannelInstanceType(struct soap*, const struct chan__ChannelInstanceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_chan__ChannelInstanceType(struct soap*, const char*, int, const struct chan__ChannelInstanceType *, const char*); -SOAP_FMAC3 struct chan__ChannelInstanceType * SOAP_FMAC4 soap_in_chan__ChannelInstanceType(struct soap*, const char*, struct chan__ChannelInstanceType *, const char*); -SOAP_FMAC1 struct chan__ChannelInstanceType * SOAP_FMAC2 soap_instantiate_chan__ChannelInstanceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct chan__ChannelInstanceType * soap_new_chan__ChannelInstanceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_chan__ChannelInstanceType(soap, n, NULL, NULL, NULL); -} - -inline struct chan__ChannelInstanceType * soap_new_req_chan__ChannelInstanceType( - struct soap *soap, - int __item) -{ - struct chan__ChannelInstanceType *_p = ::soap_new_chan__ChannelInstanceType(soap); - if (_p) - { ::soap_default_chan__ChannelInstanceType(soap, _p); - _p->__item = __item; - } - return _p; -} - -inline struct chan__ChannelInstanceType * soap_new_set_chan__ChannelInstanceType( - struct soap *soap, - int __item, - enum _wsa5__IsReferenceParameter wsa5__IsReferenceParameter) -{ - struct chan__ChannelInstanceType *_p = ::soap_new_chan__ChannelInstanceType(soap); - if (_p) - { ::soap_default_chan__ChannelInstanceType(soap, _p); - _p->__item = __item; - _p->wsa5__IsReferenceParameter = wsa5__IsReferenceParameter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_chan__ChannelInstanceType(struct soap*, const struct chan__ChannelInstanceType *, const char*, const char*); - -inline int soap_write_chan__ChannelInstanceType(struct soap *soap, struct chan__ChannelInstanceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_chan__ChannelInstanceType(soap, p), 0) || ::soap_put_chan__ChannelInstanceType(soap, p, "chan:ChannelInstanceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_chan__ChannelInstanceType(struct soap *soap, const char *URL, struct chan__ChannelInstanceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_chan__ChannelInstanceType(soap, p), 0) || ::soap_put_chan__ChannelInstanceType(soap, p, "chan:ChannelInstanceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_chan__ChannelInstanceType(struct soap *soap, const char *URL, struct chan__ChannelInstanceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_chan__ChannelInstanceType(soap, p), 0) || ::soap_put_chan__ChannelInstanceType(soap, p, "chan:ChannelInstanceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_chan__ChannelInstanceType(struct soap *soap, const char *URL, struct chan__ChannelInstanceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_chan__ChannelInstanceType(soap, p), 0) || ::soap_put_chan__ChannelInstanceType(soap, p, "chan:ChannelInstanceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct chan__ChannelInstanceType * SOAP_FMAC4 soap_get_chan__ChannelInstanceType(struct soap*, struct chan__ChannelInstanceType *, const char*, const char*); - -inline int soap_read_chan__ChannelInstanceType(struct soap *soap, struct chan__ChannelInstanceType *p) -{ - if (p) - { ::soap_default_chan__ChannelInstanceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_chan__ChannelInstanceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_chan__ChannelInstanceType(struct soap *soap, const char *URL, struct chan__ChannelInstanceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_chan__ChannelInstanceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_chan__ChannelInstanceType(struct soap *soap, struct chan__ChannelInstanceType *p) -{ - if (::soap_read_chan__ChannelInstanceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _wsa5__ProblemAction is a typedef synonym of wsa5__ProblemActionType */ - -#ifndef SOAP_TYPE__wsa5__ProblemAction_DEFINED -#define SOAP_TYPE__wsa5__ProblemAction_DEFINED - -#define soap_default__wsa5__ProblemAction soap_default_wsa5__ProblemActionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__ProblemActionType(struct soap*, const struct wsa5__ProblemActionType *); - -#define soap_serialize__wsa5__ProblemAction soap_serialize_wsa5__ProblemActionType - - -#define soap__wsa5__ProblemAction2s soap_wsa5__ProblemActionType2s - - -#define soap_out__wsa5__ProblemAction soap_out_wsa5__ProblemActionType - - -#define soap_s2_wsa5__ProblemAction soap_s2wsa5__ProblemActionType - - -#define soap_in__wsa5__ProblemAction soap_in_wsa5__ProblemActionType - - -#define soap_instantiate__wsa5__ProblemAction soap_instantiate_wsa5__ProblemActionType - - -#define soap_new__wsa5__ProblemAction soap_new_wsa5__ProblemActionType - - -#define soap_new_req__wsa5__ProblemAction soap_new_req_wsa5__ProblemActionType - - -#define soap_new_set__wsa5__ProblemAction soap_new_set_wsa5__ProblemActionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__ProblemAction(struct soap*, const struct wsa5__ProblemActionType *, const char*, const char*); - -inline int soap_write__wsa5__ProblemAction(struct soap *soap, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__ProblemAction(soap, p), 0) || ::soap_put__wsa5__ProblemAction(soap, p, "wsa5:ProblemAction", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__ProblemAction(struct soap *soap, const char *URL, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ProblemAction(soap, p), 0) || ::soap_put__wsa5__ProblemAction(soap, p, "wsa5:ProblemAction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__ProblemAction(struct soap *soap, const char *URL, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ProblemAction(soap, p), 0) || ::soap_put__wsa5__ProblemAction(soap, p, "wsa5:ProblemAction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__ProblemAction(struct soap *soap, const char *URL, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ProblemAction(soap, p), 0) || ::soap_put__wsa5__ProblemAction(soap, p, "wsa5:ProblemAction", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__ProblemAction soap_get_wsa5__ProblemActionType - - -#define soap_read__wsa5__ProblemAction soap_read_wsa5__ProblemActionType - - -#define soap_GET__wsa5__ProblemAction soap_GET_wsa5__ProblemActionType - - -#define soap_POST_recv__wsa5__ProblemAction soap_POST_recv_wsa5__ProblemActionType - -#endif -/* _wsa5__FaultTo is a typedef synonym of wsa5__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa5__FaultTo_DEFINED -#define SOAP_TYPE__wsa5__FaultTo_DEFINED - -#define soap_default__wsa5__FaultTo soap_default_wsa5__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__EndpointReferenceType(struct soap*, const struct wsa5__EndpointReferenceType *); - -#define soap_serialize__wsa5__FaultTo soap_serialize_wsa5__EndpointReferenceType - - -#define soap__wsa5__FaultTo2s soap_wsa5__EndpointReferenceType2s - - -#define soap_out__wsa5__FaultTo soap_out_wsa5__EndpointReferenceType - - -#define soap_s2_wsa5__FaultTo soap_s2wsa5__EndpointReferenceType - - -#define soap_in__wsa5__FaultTo soap_in_wsa5__EndpointReferenceType - - -#define soap_instantiate__wsa5__FaultTo soap_instantiate_wsa5__EndpointReferenceType - - -#define soap_new__wsa5__FaultTo soap_new_wsa5__EndpointReferenceType - - -#define soap_new_req__wsa5__FaultTo soap_new_req_wsa5__EndpointReferenceType - - -#define soap_new_set__wsa5__FaultTo soap_new_set_wsa5__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__FaultTo(struct soap*, const struct wsa5__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa5__FaultTo(struct soap *soap, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__FaultTo(soap, p), 0) || ::soap_put__wsa5__FaultTo(soap, p, "wsa5:FaultTo", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__FaultTo(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__FaultTo(soap, p), 0) || ::soap_put__wsa5__FaultTo(soap, p, "wsa5:FaultTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__FaultTo(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__FaultTo(soap, p), 0) || ::soap_put__wsa5__FaultTo(soap, p, "wsa5:FaultTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__FaultTo(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__FaultTo(soap, p), 0) || ::soap_put__wsa5__FaultTo(soap, p, "wsa5:FaultTo", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__FaultTo soap_get_wsa5__EndpointReferenceType - - -#define soap_read__wsa5__FaultTo soap_read_wsa5__EndpointReferenceType - - -#define soap_GET__wsa5__FaultTo soap_GET_wsa5__EndpointReferenceType - - -#define soap_POST_recv__wsa5__FaultTo soap_POST_recv_wsa5__EndpointReferenceType - -#endif -/* _wsa5__From is a typedef synonym of wsa5__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa5__From_DEFINED -#define SOAP_TYPE__wsa5__From_DEFINED - -#define soap_default__wsa5__From soap_default_wsa5__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__EndpointReferenceType(struct soap*, const struct wsa5__EndpointReferenceType *); - -#define soap_serialize__wsa5__From soap_serialize_wsa5__EndpointReferenceType - - -#define soap__wsa5__From2s soap_wsa5__EndpointReferenceType2s - - -#define soap_out__wsa5__From soap_out_wsa5__EndpointReferenceType - - -#define soap_s2_wsa5__From soap_s2wsa5__EndpointReferenceType - - -#define soap_in__wsa5__From soap_in_wsa5__EndpointReferenceType - - -#define soap_instantiate__wsa5__From soap_instantiate_wsa5__EndpointReferenceType - - -#define soap_new__wsa5__From soap_new_wsa5__EndpointReferenceType - - -#define soap_new_req__wsa5__From soap_new_req_wsa5__EndpointReferenceType - - -#define soap_new_set__wsa5__From soap_new_set_wsa5__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__From(struct soap*, const struct wsa5__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa5__From(struct soap *soap, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__From(soap, p), 0) || ::soap_put__wsa5__From(soap, p, "wsa5:From", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__From(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__From(soap, p), 0) || ::soap_put__wsa5__From(soap, p, "wsa5:From", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__From(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__From(soap, p), 0) || ::soap_put__wsa5__From(soap, p, "wsa5:From", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__From(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__From(soap, p), 0) || ::soap_put__wsa5__From(soap, p, "wsa5:From", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__From soap_get_wsa5__EndpointReferenceType - - -#define soap_read__wsa5__From soap_read_wsa5__EndpointReferenceType - - -#define soap_GET__wsa5__From soap_GET_wsa5__EndpointReferenceType - - -#define soap_POST_recv__wsa5__From soap_POST_recv_wsa5__EndpointReferenceType - -#endif -/* _wsa5__ReplyTo is a typedef synonym of wsa5__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa5__ReplyTo_DEFINED -#define SOAP_TYPE__wsa5__ReplyTo_DEFINED - -#define soap_default__wsa5__ReplyTo soap_default_wsa5__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__EndpointReferenceType(struct soap*, const struct wsa5__EndpointReferenceType *); - -#define soap_serialize__wsa5__ReplyTo soap_serialize_wsa5__EndpointReferenceType - - -#define soap__wsa5__ReplyTo2s soap_wsa5__EndpointReferenceType2s - - -#define soap_out__wsa5__ReplyTo soap_out_wsa5__EndpointReferenceType - - -#define soap_s2_wsa5__ReplyTo soap_s2wsa5__EndpointReferenceType - - -#define soap_in__wsa5__ReplyTo soap_in_wsa5__EndpointReferenceType - - -#define soap_instantiate__wsa5__ReplyTo soap_instantiate_wsa5__EndpointReferenceType - - -#define soap_new__wsa5__ReplyTo soap_new_wsa5__EndpointReferenceType - - -#define soap_new_req__wsa5__ReplyTo soap_new_req_wsa5__EndpointReferenceType - - -#define soap_new_set__wsa5__ReplyTo soap_new_set_wsa5__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__ReplyTo(struct soap*, const struct wsa5__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa5__ReplyTo(struct soap *soap, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__ReplyTo(soap, p), 0) || ::soap_put__wsa5__ReplyTo(soap, p, "wsa5:ReplyTo", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__ReplyTo(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ReplyTo(soap, p), 0) || ::soap_put__wsa5__ReplyTo(soap, p, "wsa5:ReplyTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__ReplyTo(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ReplyTo(soap, p), 0) || ::soap_put__wsa5__ReplyTo(soap, p, "wsa5:ReplyTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__ReplyTo(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ReplyTo(soap, p), 0) || ::soap_put__wsa5__ReplyTo(soap, p, "wsa5:ReplyTo", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__ReplyTo soap_get_wsa5__EndpointReferenceType - - -#define soap_read__wsa5__ReplyTo soap_read_wsa5__EndpointReferenceType - - -#define soap_GET__wsa5__ReplyTo soap_GET_wsa5__EndpointReferenceType - - -#define soap_POST_recv__wsa5__ReplyTo soap_POST_recv_wsa5__EndpointReferenceType - -#endif -/* _wsa5__RelatesTo is a typedef synonym of wsa5__RelatesToType */ - -#ifndef SOAP_TYPE__wsa5__RelatesTo_DEFINED -#define SOAP_TYPE__wsa5__RelatesTo_DEFINED - -#define soap_default__wsa5__RelatesTo soap_default_wsa5__RelatesToType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__RelatesToType(struct soap*, const struct wsa5__RelatesToType *); - -#define soap_serialize__wsa5__RelatesTo soap_serialize_wsa5__RelatesToType - - -#define soap__wsa5__RelatesTo2s soap_wsa5__RelatesToType2s - - -#define soap_out__wsa5__RelatesTo soap_out_wsa5__RelatesToType - - -#define soap_s2_wsa5__RelatesTo soap_s2wsa5__RelatesToType - - -#define soap_in__wsa5__RelatesTo soap_in_wsa5__RelatesToType - - -#define soap_instantiate__wsa5__RelatesTo soap_instantiate_wsa5__RelatesToType - - -#define soap_new__wsa5__RelatesTo soap_new_wsa5__RelatesToType - - -#define soap_new_req__wsa5__RelatesTo soap_new_req_wsa5__RelatesToType - - -#define soap_new_set__wsa5__RelatesTo soap_new_set_wsa5__RelatesToType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__RelatesTo(struct soap*, const struct wsa5__RelatesToType *, const char*, const char*); - -inline int soap_write__wsa5__RelatesTo(struct soap *soap, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__RelatesTo(soap, p), 0) || ::soap_put__wsa5__RelatesTo(soap, p, "wsa5:RelatesTo", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__RelatesTo(struct soap *soap, const char *URL, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__RelatesTo(soap, p), 0) || ::soap_put__wsa5__RelatesTo(soap, p, "wsa5:RelatesTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__RelatesTo(struct soap *soap, const char *URL, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__RelatesTo(soap, p), 0) || ::soap_put__wsa5__RelatesTo(soap, p, "wsa5:RelatesTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__RelatesTo(struct soap *soap, const char *URL, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__RelatesTo(soap, p), 0) || ::soap_put__wsa5__RelatesTo(soap, p, "wsa5:RelatesTo", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__RelatesTo soap_get_wsa5__RelatesToType - - -#define soap_read__wsa5__RelatesTo soap_read_wsa5__RelatesToType - - -#define soap_GET__wsa5__RelatesTo soap_GET_wsa5__RelatesToType - - -#define soap_POST_recv__wsa5__RelatesTo soap_POST_recv_wsa5__RelatesToType - -#endif -/* _wsa5__Metadata is a typedef synonym of wsa5__MetadataType */ - -#ifndef SOAP_TYPE__wsa5__Metadata_DEFINED -#define SOAP_TYPE__wsa5__Metadata_DEFINED - -#define soap_default__wsa5__Metadata soap_default_wsa5__MetadataType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__MetadataType(struct soap*, const struct wsa5__MetadataType *); - -#define soap_serialize__wsa5__Metadata soap_serialize_wsa5__MetadataType - - -#define soap__wsa5__Metadata2s soap_wsa5__MetadataType2s - - -#define soap_out__wsa5__Metadata soap_out_wsa5__MetadataType - - -#define soap_s2_wsa5__Metadata soap_s2wsa5__MetadataType - - -#define soap_in__wsa5__Metadata soap_in_wsa5__MetadataType - - -#define soap_instantiate__wsa5__Metadata soap_instantiate_wsa5__MetadataType - - -#define soap_new__wsa5__Metadata soap_new_wsa5__MetadataType - - -#define soap_new_req__wsa5__Metadata soap_new_req_wsa5__MetadataType - - -#define soap_new_set__wsa5__Metadata soap_new_set_wsa5__MetadataType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__Metadata(struct soap*, const struct wsa5__MetadataType *, const char*, const char*); - -inline int soap_write__wsa5__Metadata(struct soap *soap, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__Metadata(soap, p), 0) || ::soap_put__wsa5__Metadata(soap, p, "wsa5:Metadata", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__Metadata(struct soap *soap, const char *URL, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__Metadata(soap, p), 0) || ::soap_put__wsa5__Metadata(soap, p, "wsa5:Metadata", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__Metadata(struct soap *soap, const char *URL, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__Metadata(soap, p), 0) || ::soap_put__wsa5__Metadata(soap, p, "wsa5:Metadata", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__Metadata(struct soap *soap, const char *URL, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__Metadata(soap, p), 0) || ::soap_put__wsa5__Metadata(soap, p, "wsa5:Metadata", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__Metadata soap_get_wsa5__MetadataType - - -#define soap_read__wsa5__Metadata soap_read_wsa5__MetadataType - - -#define soap_GET__wsa5__Metadata soap_GET_wsa5__MetadataType - - -#define soap_POST_recv__wsa5__Metadata soap_POST_recv_wsa5__MetadataType - -#endif -/* _wsa5__ReferenceParameters is a typedef synonym of wsa5__ReferenceParametersType */ - -#ifndef SOAP_TYPE__wsa5__ReferenceParameters_DEFINED -#define SOAP_TYPE__wsa5__ReferenceParameters_DEFINED - -#define soap_default__wsa5__ReferenceParameters soap_default_wsa5__ReferenceParametersType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__ReferenceParametersType(struct soap*, const struct wsa5__ReferenceParametersType *); - -#define soap_serialize__wsa5__ReferenceParameters soap_serialize_wsa5__ReferenceParametersType - - -#define soap__wsa5__ReferenceParameters2s soap_wsa5__ReferenceParametersType2s - - -#define soap_out__wsa5__ReferenceParameters soap_out_wsa5__ReferenceParametersType - - -#define soap_s2_wsa5__ReferenceParameters soap_s2wsa5__ReferenceParametersType - - -#define soap_in__wsa5__ReferenceParameters soap_in_wsa5__ReferenceParametersType - - -#define soap_instantiate__wsa5__ReferenceParameters soap_instantiate_wsa5__ReferenceParametersType - - -#define soap_new__wsa5__ReferenceParameters soap_new_wsa5__ReferenceParametersType - - -#define soap_new_req__wsa5__ReferenceParameters soap_new_req_wsa5__ReferenceParametersType - - -#define soap_new_set__wsa5__ReferenceParameters soap_new_set_wsa5__ReferenceParametersType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__ReferenceParameters(struct soap*, const struct wsa5__ReferenceParametersType *, const char*, const char*); - -inline int soap_write__wsa5__ReferenceParameters(struct soap *soap, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__ReferenceParameters(soap, p), 0) || ::soap_put__wsa5__ReferenceParameters(soap, p, "wsa5:ReferenceParameters", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__ReferenceParameters(struct soap *soap, const char *URL, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ReferenceParameters(soap, p), 0) || ::soap_put__wsa5__ReferenceParameters(soap, p, "wsa5:ReferenceParameters", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__ReferenceParameters(struct soap *soap, const char *URL, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ReferenceParameters(soap, p), 0) || ::soap_put__wsa5__ReferenceParameters(soap, p, "wsa5:ReferenceParameters", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__ReferenceParameters(struct soap *soap, const char *URL, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__ReferenceParameters(soap, p), 0) || ::soap_put__wsa5__ReferenceParameters(soap, p, "wsa5:ReferenceParameters", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__ReferenceParameters soap_get_wsa5__ReferenceParametersType - - -#define soap_read__wsa5__ReferenceParameters soap_read_wsa5__ReferenceParametersType - - -#define soap_GET__wsa5__ReferenceParameters soap_GET_wsa5__ReferenceParametersType - - -#define soap_POST_recv__wsa5__ReferenceParameters soap_POST_recv_wsa5__ReferenceParametersType - -#endif -/* _wsa5__EndpointReference is a typedef synonym of wsa5__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa5__EndpointReference_DEFINED -#define SOAP_TYPE__wsa5__EndpointReference_DEFINED - -#define soap_default__wsa5__EndpointReference soap_default_wsa5__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__EndpointReferenceType(struct soap*, const struct wsa5__EndpointReferenceType *); - -#define soap_serialize__wsa5__EndpointReference soap_serialize_wsa5__EndpointReferenceType - - -#define soap__wsa5__EndpointReference2s soap_wsa5__EndpointReferenceType2s - - -#define soap_out__wsa5__EndpointReference soap_out_wsa5__EndpointReferenceType - - -#define soap_s2_wsa5__EndpointReference soap_s2wsa5__EndpointReferenceType - - -#define soap_in__wsa5__EndpointReference soap_in_wsa5__EndpointReferenceType - - -#define soap_instantiate__wsa5__EndpointReference soap_instantiate_wsa5__EndpointReferenceType - - -#define soap_new__wsa5__EndpointReference soap_new_wsa5__EndpointReferenceType - - -#define soap_new_req__wsa5__EndpointReference soap_new_req_wsa5__EndpointReferenceType - - -#define soap_new_set__wsa5__EndpointReference soap_new_set_wsa5__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__EndpointReference(struct soap*, const struct wsa5__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa5__EndpointReference(struct soap *soap, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa5__EndpointReference(soap, p), 0) || ::soap_put__wsa5__EndpointReference(soap, p, "wsa5:EndpointReference", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa5__EndpointReference(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__EndpointReference(soap, p), 0) || ::soap_put__wsa5__EndpointReference(soap, p, "wsa5:EndpointReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__EndpointReference(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__EndpointReference(soap, p), 0) || ::soap_put__wsa5__EndpointReference(soap, p, "wsa5:EndpointReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__EndpointReference(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa5__EndpointReference(soap, p), 0) || ::soap_put__wsa5__EndpointReference(soap, p, "wsa5:EndpointReference", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__EndpointReference soap_get_wsa5__EndpointReferenceType - - -#define soap_read__wsa5__EndpointReference soap_read_wsa5__EndpointReferenceType - - -#define soap_GET__wsa5__EndpointReference soap_GET_wsa5__EndpointReferenceType - - -#define soap_POST_recv__wsa5__EndpointReference soap_POST_recv_wsa5__EndpointReferenceType - -#endif - -#ifndef SOAP_TYPE_wsa5__ProblemActionType_DEFINED -#define SOAP_TYPE_wsa5__ProblemActionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__ProblemActionType(struct soap*, struct wsa5__ProblemActionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__ProblemActionType(struct soap*, const struct wsa5__ProblemActionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__ProblemActionType(struct soap*, const char*, int, const struct wsa5__ProblemActionType *, const char*); -SOAP_FMAC3 struct wsa5__ProblemActionType * SOAP_FMAC4 soap_in_wsa5__ProblemActionType(struct soap*, const char*, struct wsa5__ProblemActionType *, const char*); -SOAP_FMAC1 struct wsa5__ProblemActionType * SOAP_FMAC2 soap_instantiate_wsa5__ProblemActionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa5__ProblemActionType * soap_new_wsa5__ProblemActionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa5__ProblemActionType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa5__ProblemActionType * soap_new_req_wsa5__ProblemActionType( - struct soap *soap) -{ - struct wsa5__ProblemActionType *_p = ::soap_new_wsa5__ProblemActionType(soap); - if (_p) - { ::soap_default_wsa5__ProblemActionType(soap, _p); - } - return _p; -} - -inline struct wsa5__ProblemActionType * soap_new_set_wsa5__ProblemActionType( - struct soap *soap, - char *Action, - char *SoapAction, - char *__anyAttribute) -{ - struct wsa5__ProblemActionType *_p = ::soap_new_wsa5__ProblemActionType(soap); - if (_p) - { ::soap_default_wsa5__ProblemActionType(soap, _p); - _p->Action = Action; - _p->SoapAction = SoapAction; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__ProblemActionType(struct soap*, const struct wsa5__ProblemActionType *, const char*, const char*); - -inline int soap_write_wsa5__ProblemActionType(struct soap *soap, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa5__ProblemActionType(soap, p), 0) || ::soap_put_wsa5__ProblemActionType(soap, p, "wsa5:ProblemActionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa5__ProblemActionType(struct soap *soap, const char *URL, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__ProblemActionType(soap, p), 0) || ::soap_put_wsa5__ProblemActionType(soap, p, "wsa5:ProblemActionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__ProblemActionType(struct soap *soap, const char *URL, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__ProblemActionType(soap, p), 0) || ::soap_put_wsa5__ProblemActionType(soap, p, "wsa5:ProblemActionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__ProblemActionType(struct soap *soap, const char *URL, struct wsa5__ProblemActionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__ProblemActionType(soap, p), 0) || ::soap_put_wsa5__ProblemActionType(soap, p, "wsa5:ProblemActionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa5__ProblemActionType * SOAP_FMAC4 soap_get_wsa5__ProblemActionType(struct soap*, struct wsa5__ProblemActionType *, const char*, const char*); - -inline int soap_read_wsa5__ProblemActionType(struct soap *soap, struct wsa5__ProblemActionType *p) -{ - if (p) - { ::soap_default_wsa5__ProblemActionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa5__ProblemActionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__ProblemActionType(struct soap *soap, const char *URL, struct wsa5__ProblemActionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__ProblemActionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__ProblemActionType(struct soap *soap, struct wsa5__ProblemActionType *p) -{ - if (::soap_read_wsa5__ProblemActionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__RelatesToType_DEFINED -#define SOAP_TYPE_wsa5__RelatesToType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__RelatesToType(struct soap*, struct wsa5__RelatesToType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__RelatesToType(struct soap*, const struct wsa5__RelatesToType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__RelatesToType(struct soap*, const char*, int, const struct wsa5__RelatesToType *, const char*); -SOAP_FMAC3 struct wsa5__RelatesToType * SOAP_FMAC4 soap_in_wsa5__RelatesToType(struct soap*, const char*, struct wsa5__RelatesToType *, const char*); -SOAP_FMAC1 struct wsa5__RelatesToType * SOAP_FMAC2 soap_instantiate_wsa5__RelatesToType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa5__RelatesToType * soap_new_wsa5__RelatesToType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa5__RelatesToType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa5__RelatesToType * soap_new_req_wsa5__RelatesToType( - struct soap *soap) -{ - struct wsa5__RelatesToType *_p = ::soap_new_wsa5__RelatesToType(soap); - if (_p) - { ::soap_default_wsa5__RelatesToType(soap, _p); - } - return _p; -} - -inline struct wsa5__RelatesToType * soap_new_set_wsa5__RelatesToType( - struct soap *soap, - char *__item, - char *RelationshipType, - char *__anyAttribute) -{ - struct wsa5__RelatesToType *_p = ::soap_new_wsa5__RelatesToType(soap); - if (_p) - { ::soap_default_wsa5__RelatesToType(soap, _p); - _p->__item = __item; - _p->RelationshipType = RelationshipType; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__RelatesToType(struct soap*, const struct wsa5__RelatesToType *, const char*, const char*); - -inline int soap_write_wsa5__RelatesToType(struct soap *soap, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa5__RelatesToType(soap, p), 0) || ::soap_put_wsa5__RelatesToType(soap, p, "wsa5:RelatesToType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa5__RelatesToType(struct soap *soap, const char *URL, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__RelatesToType(soap, p), 0) || ::soap_put_wsa5__RelatesToType(soap, p, "wsa5:RelatesToType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__RelatesToType(struct soap *soap, const char *URL, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__RelatesToType(soap, p), 0) || ::soap_put_wsa5__RelatesToType(soap, p, "wsa5:RelatesToType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__RelatesToType(struct soap *soap, const char *URL, struct wsa5__RelatesToType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__RelatesToType(soap, p), 0) || ::soap_put_wsa5__RelatesToType(soap, p, "wsa5:RelatesToType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa5__RelatesToType * SOAP_FMAC4 soap_get_wsa5__RelatesToType(struct soap*, struct wsa5__RelatesToType *, const char*, const char*); - -inline int soap_read_wsa5__RelatesToType(struct soap *soap, struct wsa5__RelatesToType *p) -{ - if (p) - { ::soap_default_wsa5__RelatesToType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa5__RelatesToType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__RelatesToType(struct soap *soap, const char *URL, struct wsa5__RelatesToType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__RelatesToType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__RelatesToType(struct soap *soap, struct wsa5__RelatesToType *p) -{ - if (::soap_read_wsa5__RelatesToType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__MetadataType_DEFINED -#define SOAP_TYPE_wsa5__MetadataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__MetadataType(struct soap*, struct wsa5__MetadataType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__MetadataType(struct soap*, const struct wsa5__MetadataType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__MetadataType(struct soap*, const char*, int, const struct wsa5__MetadataType *, const char*); -SOAP_FMAC3 struct wsa5__MetadataType * SOAP_FMAC4 soap_in_wsa5__MetadataType(struct soap*, const char*, struct wsa5__MetadataType *, const char*); -SOAP_FMAC1 struct wsa5__MetadataType * SOAP_FMAC2 soap_instantiate_wsa5__MetadataType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa5__MetadataType * soap_new_wsa5__MetadataType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa5__MetadataType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa5__MetadataType * soap_new_req_wsa5__MetadataType( - struct soap *soap, - int __size, - char **__any) -{ - struct wsa5__MetadataType *_p = ::soap_new_wsa5__MetadataType(soap); - if (_p) - { ::soap_default_wsa5__MetadataType(soap, _p); - _p->__size = __size; - _p->__any = __any; - } - return _p; -} - -inline struct wsa5__MetadataType * soap_new_set_wsa5__MetadataType( - struct soap *soap, - int __size, - char **__any, - char *__anyAttribute) -{ - struct wsa5__MetadataType *_p = ::soap_new_wsa5__MetadataType(soap); - if (_p) - { ::soap_default_wsa5__MetadataType(soap, _p); - _p->__size = __size; - _p->__any = __any; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__MetadataType(struct soap*, const struct wsa5__MetadataType *, const char*, const char*); - -inline int soap_write_wsa5__MetadataType(struct soap *soap, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa5__MetadataType(soap, p), 0) || ::soap_put_wsa5__MetadataType(soap, p, "wsa5:MetadataType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa5__MetadataType(struct soap *soap, const char *URL, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__MetadataType(soap, p), 0) || ::soap_put_wsa5__MetadataType(soap, p, "wsa5:MetadataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__MetadataType(struct soap *soap, const char *URL, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__MetadataType(soap, p), 0) || ::soap_put_wsa5__MetadataType(soap, p, "wsa5:MetadataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__MetadataType(struct soap *soap, const char *URL, struct wsa5__MetadataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__MetadataType(soap, p), 0) || ::soap_put_wsa5__MetadataType(soap, p, "wsa5:MetadataType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa5__MetadataType * SOAP_FMAC4 soap_get_wsa5__MetadataType(struct soap*, struct wsa5__MetadataType *, const char*, const char*); - -inline int soap_read_wsa5__MetadataType(struct soap *soap, struct wsa5__MetadataType *p) -{ - if (p) - { ::soap_default_wsa5__MetadataType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa5__MetadataType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__MetadataType(struct soap *soap, const char *URL, struct wsa5__MetadataType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__MetadataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__MetadataType(struct soap *soap, struct wsa5__MetadataType *p) -{ - if (::soap_read_wsa5__MetadataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__ReferenceParametersType_DEFINED -#define SOAP_TYPE_wsa5__ReferenceParametersType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__ReferenceParametersType(struct soap*, struct wsa5__ReferenceParametersType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__ReferenceParametersType(struct soap*, const struct wsa5__ReferenceParametersType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__ReferenceParametersType(struct soap*, const char*, int, const struct wsa5__ReferenceParametersType *, const char*); -SOAP_FMAC3 struct wsa5__ReferenceParametersType * SOAP_FMAC4 soap_in_wsa5__ReferenceParametersType(struct soap*, const char*, struct wsa5__ReferenceParametersType *, const char*); -SOAP_FMAC1 struct wsa5__ReferenceParametersType * SOAP_FMAC2 soap_instantiate_wsa5__ReferenceParametersType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa5__ReferenceParametersType * soap_new_wsa5__ReferenceParametersType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa5__ReferenceParametersType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa5__ReferenceParametersType * soap_new_req_wsa5__ReferenceParametersType( - struct soap *soap, - int __size, - char **__any) -{ - struct wsa5__ReferenceParametersType *_p = ::soap_new_wsa5__ReferenceParametersType(soap); - if (_p) - { ::soap_default_wsa5__ReferenceParametersType(soap, _p); - _p->__size = __size; - _p->__any = __any; - } - return _p; -} - -inline struct wsa5__ReferenceParametersType * soap_new_set_wsa5__ReferenceParametersType( - struct soap *soap, - int *chan__ChannelInstance, - int __size, - char **__any, - char *__anyAttribute) -{ - struct wsa5__ReferenceParametersType *_p = ::soap_new_wsa5__ReferenceParametersType(soap); - if (_p) - { ::soap_default_wsa5__ReferenceParametersType(soap, _p); - _p->chan__ChannelInstance = chan__ChannelInstance; - _p->__size = __size; - _p->__any = __any; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__ReferenceParametersType(struct soap*, const struct wsa5__ReferenceParametersType *, const char*, const char*); - -inline int soap_write_wsa5__ReferenceParametersType(struct soap *soap, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa5__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa5__ReferenceParametersType(soap, p, "wsa5:ReferenceParametersType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa5__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa5__ReferenceParametersType(soap, p, "wsa5:ReferenceParametersType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa5__ReferenceParametersType(soap, p, "wsa5:ReferenceParametersType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa5__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa5__ReferenceParametersType(soap, p, "wsa5:ReferenceParametersType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa5__ReferenceParametersType * SOAP_FMAC4 soap_get_wsa5__ReferenceParametersType(struct soap*, struct wsa5__ReferenceParametersType *, const char*, const char*); - -inline int soap_read_wsa5__ReferenceParametersType(struct soap *soap, struct wsa5__ReferenceParametersType *p) -{ - if (p) - { ::soap_default_wsa5__ReferenceParametersType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa5__ReferenceParametersType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa5__ReferenceParametersType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__ReferenceParametersType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__ReferenceParametersType(struct soap *soap, struct wsa5__ReferenceParametersType *p) -{ - if (::soap_read_wsa5__ReferenceParametersType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__EndpointReferenceType_DEFINED -#define SOAP_TYPE_wsa5__EndpointReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa5__EndpointReferenceType(struct soap*, struct wsa5__EndpointReferenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__EndpointReferenceType(struct soap*, const struct wsa5__EndpointReferenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__EndpointReferenceType(struct soap*, const char*, int, const struct wsa5__EndpointReferenceType *, const char*); -SOAP_FMAC3 struct wsa5__EndpointReferenceType * SOAP_FMAC4 soap_in_wsa5__EndpointReferenceType(struct soap*, const char*, struct wsa5__EndpointReferenceType *, const char*); -SOAP_FMAC1 struct wsa5__EndpointReferenceType * SOAP_FMAC2 soap_instantiate_wsa5__EndpointReferenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa5__EndpointReferenceType * soap_new_wsa5__EndpointReferenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa5__EndpointReferenceType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa5__EndpointReferenceType * soap_new_req_wsa5__EndpointReferenceType( - struct soap *soap, - char *Address, - int __size, - char **__any) -{ - struct wsa5__EndpointReferenceType *_p = ::soap_new_wsa5__EndpointReferenceType(soap); - if (_p) - { ::soap_default_wsa5__EndpointReferenceType(soap, _p); - _p->Address = Address; - _p->__size = __size; - _p->__any = __any; - } - return _p; -} - -inline struct wsa5__EndpointReferenceType * soap_new_set_wsa5__EndpointReferenceType( - struct soap *soap, - char *Address, - struct wsa5__ReferenceParametersType *ReferenceParameters, - struct wsa5__MetadataType *Metadata, - int __size, - char **__any, - char *__anyAttribute) -{ - struct wsa5__EndpointReferenceType *_p = ::soap_new_wsa5__EndpointReferenceType(soap); - if (_p) - { ::soap_default_wsa5__EndpointReferenceType(soap, _p); - _p->Address = Address; - _p->ReferenceParameters = ReferenceParameters; - _p->Metadata = Metadata; - _p->__size = __size; - _p->__any = __any; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__EndpointReferenceType(struct soap*, const struct wsa5__EndpointReferenceType *, const char*, const char*); - -inline int soap_write_wsa5__EndpointReferenceType(struct soap *soap, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa5__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa5__EndpointReferenceType(soap, p, "wsa5:EndpointReferenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa5__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa5__EndpointReferenceType(soap, p, "wsa5:EndpointReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa5__EndpointReferenceType(soap, p, "wsa5:EndpointReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa5__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa5__EndpointReferenceType(soap, p, "wsa5:EndpointReferenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa5__EndpointReferenceType * SOAP_FMAC4 soap_get_wsa5__EndpointReferenceType(struct soap*, struct wsa5__EndpointReferenceType *, const char*, const char*); - -inline int soap_read_wsa5__EndpointReferenceType(struct soap *soap, struct wsa5__EndpointReferenceType *p) -{ - if (p) - { ::soap_default_wsa5__EndpointReferenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa5__EndpointReferenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa5__EndpointReferenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__EndpointReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__EndpointReferenceType(struct soap *soap, struct wsa5__EndpointReferenceType *p) -{ - if (::soap_read_wsa5__EndpointReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__anyAttribute_DEFINED -#define SOAP_TYPE_xsd__anyAttribute_DEFINED -SOAP_FMAC1 void SOAP_FMAC2 soap_default_xsd__anyAttribute(struct soap*, struct soap_dom_attribute *); -SOAP_FMAC1 void SOAP_FMAC2 soap_serialize_xsd__anyAttribute(struct soap*, const struct soap_dom_attribute *); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_xsd__anyAttribute2s(struct soap*, struct soap_dom_attribute); -SOAP_FMAC1 int SOAP_FMAC2 soap_out_xsd__anyAttribute(struct soap*, const char*, int, const struct soap_dom_attribute *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2xsd__anyAttribute(struct soap*, const char*, struct soap_dom_attribute *); -SOAP_FMAC1 struct soap_dom_attribute * SOAP_FMAC2 soap_in_xsd__anyAttribute(struct soap*, const char*, struct soap_dom_attribute *, const char*); -SOAP_FMAC1 struct soap_dom_attribute * SOAP_FMAC2 soap_instantiate_xsd__anyAttribute(struct soap*, int, const char*, const char*, size_t*); - -inline struct soap_dom_attribute * soap_new_xsd__anyAttribute(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__anyAttribute(soap, n, NULL, NULL, NULL); -} - -inline struct soap_dom_attribute * soap_new_req_xsd__anyAttribute( - struct soap *soap) -{ - struct soap_dom_attribute *_p = soap_new_xsd__anyAttribute(soap); - if (_p) - { - } - return _p; -} - -inline struct soap_dom_attribute * soap_new_set_xsd__anyAttribute( - struct soap *soap) -{ - struct soap_dom_attribute *_p = soap_new_xsd__anyAttribute(soap); - if (_p) - { - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anyAttribute(struct soap*, const struct soap_dom_attribute *, const char*, const char*); -SOAP_FMAC3 struct soap_dom_attribute * SOAP_FMAC4 soap_get_xsd__anyAttribute(struct soap*, struct soap_dom_attribute *, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_xsd__anyType_DEFINED -#define SOAP_TYPE_xsd__anyType_DEFINED -SOAP_FMAC1 void SOAP_FMAC2 soap_default_xsd__anyType(struct soap*, struct soap_dom_element *); -SOAP_FMAC1 void SOAP_FMAC2 soap_serialize_xsd__anyType(struct soap*, const struct soap_dom_element *); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_xsd__anyType2s(struct soap*, struct soap_dom_element); -SOAP_FMAC1 int SOAP_FMAC2 soap_out_xsd__anyType(struct soap*, const char*, int, const struct soap_dom_element *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2xsd__anyType(struct soap*, const char*, struct soap_dom_element *); -SOAP_FMAC1 struct soap_dom_element * SOAP_FMAC2 soap_in_xsd__anyType(struct soap*, const char*, struct soap_dom_element *, const char*); -SOAP_FMAC1 struct soap_dom_element * SOAP_FMAC2 soap_instantiate_xsd__anyType(struct soap*, int, const char*, const char*, size_t*); - -inline struct soap_dom_element * soap_new_xsd__anyType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__anyType(soap, n, NULL, NULL, NULL); -} - -inline struct soap_dom_element * soap_new_req_xsd__anyType( - struct soap *soap) -{ - struct soap_dom_element *_p = soap_new_xsd__anyType(soap); - if (_p) - { - } - return _p; -} - -inline struct soap_dom_element * soap_new_set_xsd__anyType( - struct soap *soap) -{ - struct soap_dom_element *_p = soap_new_xsd__anyType(soap); - if (_p) - { - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__anyType(struct soap*, const struct soap_dom_element *, const char*, const char*); - -inline int soap_write_xsd__anyType(struct soap *soap, struct soap_dom_element const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (soap_serialize_xsd__anyType(soap, p), 0) || soap_put_xsd__anyType(soap, p, "xsd:anyType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__anyType(struct soap *soap, const char *URL, struct soap_dom_element const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (soap_serialize_xsd__anyType(soap, p), 0) || soap_put_xsd__anyType(soap, p, "xsd:anyType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__anyType(struct soap *soap, const char *URL, struct soap_dom_element const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (soap_serialize_xsd__anyType(soap, p), 0) || soap_put_xsd__anyType(soap, p, "xsd:anyType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__anyType(struct soap *soap, const char *URL, struct soap_dom_element const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (soap_serialize_xsd__anyType(soap, p), 0) || soap_put_xsd__anyType(soap, p, "xsd:anyType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct soap_dom_element * SOAP_FMAC4 soap_get_xsd__anyType(struct soap*, struct soap_dom_element *, const char*, const char*); - -inline int soap_read_xsd__anyType(struct soap *soap, struct soap_dom_element *p) -{ - if (p) - { soap_default_xsd__anyType(soap, p); - if (soap_begin_recv(soap) || soap_get_xsd__anyType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__anyType(struct soap *soap, const char *URL, struct soap_dom_element *p) -{ - if (soap_GET(soap, URL, NULL) || soap_read_xsd__anyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__anyType(struct soap *soap, struct soap_dom_element *p) -{ - if (soap_read_xsd__anyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__Security_DEFINED -#define SOAP_TYPE__wsse__Security_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Security(struct soap*, struct _wsse__Security *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Security(struct soap*, const struct _wsse__Security *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Security(struct soap*, const char*, int, const struct _wsse__Security *, const char*); -SOAP_FMAC3 struct _wsse__Security * SOAP_FMAC4 soap_in__wsse__Security(struct soap*, const char*, struct _wsse__Security *, const char*); -SOAP_FMAC1 struct _wsse__Security * SOAP_FMAC2 soap_instantiate__wsse__Security(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__Security * soap_new__wsse__Security(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__Security(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__Security * soap_new_req__wsse__Security( - struct soap *soap) -{ - struct _wsse__Security *_p = ::soap_new__wsse__Security(soap); - if (_p) - { ::soap_default__wsse__Security(soap, _p); - } - return _p; -} - -inline struct _wsse__Security * soap_new_set__wsse__Security( - struct soap *soap, - struct _wsu__Timestamp *wsu__Timestamp, - struct _wsse__UsernameToken *UsernameToken, - struct _wsse__BinarySecurityToken *BinarySecurityToken, - struct xenc__EncryptedKeyType *xenc__EncryptedKey, - struct _xenc__ReferenceList *xenc__ReferenceList, - struct wsc__SecurityContextTokenType *wsc__SecurityContextToken, - struct ds__SignatureType *ds__Signature, - struct saml1__AssertionType *saml1__Assertion, - struct saml2__AssertionType *saml2__Assertion, - char *SOAP_ENV__actor, - char *SOAP_ENV__role) -{ - struct _wsse__Security *_p = ::soap_new__wsse__Security(soap); - if (_p) - { ::soap_default__wsse__Security(soap, _p); - _p->wsu__Timestamp = wsu__Timestamp; - _p->UsernameToken = UsernameToken; - _p->BinarySecurityToken = BinarySecurityToken; - _p->xenc__EncryptedKey = xenc__EncryptedKey; - _p->xenc__ReferenceList = xenc__ReferenceList; - _p->wsc__SecurityContextToken = wsc__SecurityContextToken; - _p->ds__Signature = ds__Signature; - _p->saml1__Assertion = saml1__Assertion; - _p->saml2__Assertion = saml2__Assertion; - _p->SOAP_ENV__actor = SOAP_ENV__actor; - _p->SOAP_ENV__role = SOAP_ENV__role; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Security(struct soap*, const struct _wsse__Security *, const char*, const char*); - -inline int soap_write__wsse__Security(struct soap *soap, struct _wsse__Security const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__Security(soap, p), 0) || ::soap_put__wsse__Security(soap, p, "wsse:Security", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__Security(struct soap *soap, const char *URL, struct _wsse__Security const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Security(soap, p), 0) || ::soap_put__wsse__Security(soap, p, "wsse:Security", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__Security(struct soap *soap, const char *URL, struct _wsse__Security const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Security(soap, p), 0) || ::soap_put__wsse__Security(soap, p, "wsse:Security", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__Security(struct soap *soap, const char *URL, struct _wsse__Security const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Security(soap, p), 0) || ::soap_put__wsse__Security(soap, p, "wsse:Security", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__Security * SOAP_FMAC4 soap_get__wsse__Security(struct soap*, struct _wsse__Security *, const char*, const char*); - -inline int soap_read__wsse__Security(struct soap *soap, struct _wsse__Security *p) -{ - if (p) - { ::soap_default__wsse__Security(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__Security(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__Security(struct soap *soap, const char *URL, struct _wsse__Security *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__Security(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__Security(struct soap *soap, struct _wsse__Security *p) -{ - if (::soap_read__wsse__Security(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _saml2__EncryptedAttribute is a typedef synonym of saml2__EncryptedElementType */ - -#ifndef SOAP_TYPE__saml2__EncryptedAttribute_DEFINED -#define SOAP_TYPE__saml2__EncryptedAttribute_DEFINED - -#define soap_default__saml2__EncryptedAttribute soap_default_saml2__EncryptedElementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EncryptedElementType(struct soap*, const struct saml2__EncryptedElementType *); - -#define soap_serialize__saml2__EncryptedAttribute soap_serialize_saml2__EncryptedElementType - - -#define soap__saml2__EncryptedAttribute2s soap_saml2__EncryptedElementType2s - - -#define soap_out__saml2__EncryptedAttribute soap_out_saml2__EncryptedElementType - - -#define soap_s2_saml2__EncryptedAttribute soap_s2saml2__EncryptedElementType - - -#define soap_in__saml2__EncryptedAttribute soap_in_saml2__EncryptedElementType - - -#define soap_instantiate__saml2__EncryptedAttribute soap_instantiate_saml2__EncryptedElementType - - -#define soap_new__saml2__EncryptedAttribute soap_new_saml2__EncryptedElementType - - -#define soap_new_req__saml2__EncryptedAttribute soap_new_req_saml2__EncryptedElementType - - -#define soap_new_set__saml2__EncryptedAttribute soap_new_set_saml2__EncryptedElementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__EncryptedAttribute(struct soap*, const struct saml2__EncryptedElementType *, const char*, const char*); - -inline int soap_write__saml2__EncryptedAttribute(struct soap *soap, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__EncryptedAttribute(soap, p), 0) || ::soap_put__saml2__EncryptedAttribute(soap, p, "saml2:EncryptedAttribute", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__EncryptedAttribute(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedAttribute(soap, p), 0) || ::soap_put__saml2__EncryptedAttribute(soap, p, "saml2:EncryptedAttribute", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__EncryptedAttribute(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedAttribute(soap, p), 0) || ::soap_put__saml2__EncryptedAttribute(soap, p, "saml2:EncryptedAttribute", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__EncryptedAttribute(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedAttribute(soap, p), 0) || ::soap_put__saml2__EncryptedAttribute(soap, p, "saml2:EncryptedAttribute", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__EncryptedAttribute soap_get_saml2__EncryptedElementType - - -#define soap_read__saml2__EncryptedAttribute soap_read_saml2__EncryptedElementType - - -#define soap_GET__saml2__EncryptedAttribute soap_GET_saml2__EncryptedElementType - - -#define soap_POST_recv__saml2__EncryptedAttribute soap_POST_recv_saml2__EncryptedElementType - -#endif -/* _saml2__Attribute is a typedef synonym of saml2__AttributeType */ - -#ifndef SOAP_TYPE__saml2__Attribute_DEFINED -#define SOAP_TYPE__saml2__Attribute_DEFINED - -#define soap_default__saml2__Attribute soap_default_saml2__AttributeType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AttributeType(struct soap*, const struct saml2__AttributeType *); - -#define soap_serialize__saml2__Attribute soap_serialize_saml2__AttributeType - - -#define soap__saml2__Attribute2s soap_saml2__AttributeType2s - - -#define soap_out__saml2__Attribute soap_out_saml2__AttributeType - - -#define soap_s2_saml2__Attribute soap_s2saml2__AttributeType - - -#define soap_in__saml2__Attribute soap_in_saml2__AttributeType - - -#define soap_instantiate__saml2__Attribute soap_instantiate_saml2__AttributeType - - -#define soap_new__saml2__Attribute soap_new_saml2__AttributeType - - -#define soap_new_req__saml2__Attribute soap_new_req_saml2__AttributeType - - -#define soap_new_set__saml2__Attribute soap_new_set_saml2__AttributeType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Attribute(struct soap*, const struct saml2__AttributeType *, const char*, const char*); - -inline int soap_write__saml2__Attribute(struct soap *soap, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Attribute(soap, p), 0) || ::soap_put__saml2__Attribute(soap, p, "saml2:Attribute", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Attribute(struct soap *soap, const char *URL, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Attribute(soap, p), 0) || ::soap_put__saml2__Attribute(soap, p, "saml2:Attribute", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Attribute(struct soap *soap, const char *URL, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Attribute(soap, p), 0) || ::soap_put__saml2__Attribute(soap, p, "saml2:Attribute", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Attribute(struct soap *soap, const char *URL, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Attribute(soap, p), 0) || ::soap_put__saml2__Attribute(soap, p, "saml2:Attribute", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Attribute soap_get_saml2__AttributeType - - -#define soap_read__saml2__Attribute soap_read_saml2__AttributeType - - -#define soap_GET__saml2__Attribute soap_GET_saml2__AttributeType - - -#define soap_POST_recv__saml2__Attribute soap_POST_recv_saml2__AttributeType - -#endif -/* _saml2__AttributeStatement is a typedef synonym of saml2__AttributeStatementType */ - -#ifndef SOAP_TYPE__saml2__AttributeStatement_DEFINED -#define SOAP_TYPE__saml2__AttributeStatement_DEFINED - -#define soap_default__saml2__AttributeStatement soap_default_saml2__AttributeStatementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AttributeStatementType(struct soap*, const struct saml2__AttributeStatementType *); - -#define soap_serialize__saml2__AttributeStatement soap_serialize_saml2__AttributeStatementType - - -#define soap__saml2__AttributeStatement2s soap_saml2__AttributeStatementType2s - - -#define soap_out__saml2__AttributeStatement soap_out_saml2__AttributeStatementType - - -#define soap_s2_saml2__AttributeStatement soap_s2saml2__AttributeStatementType - - -#define soap_in__saml2__AttributeStatement soap_in_saml2__AttributeStatementType - - -#define soap_instantiate__saml2__AttributeStatement soap_instantiate_saml2__AttributeStatementType - - -#define soap_new__saml2__AttributeStatement soap_new_saml2__AttributeStatementType - - -#define soap_new_req__saml2__AttributeStatement soap_new_req_saml2__AttributeStatementType - - -#define soap_new_set__saml2__AttributeStatement soap_new_set_saml2__AttributeStatementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AttributeStatement(struct soap*, const struct saml2__AttributeStatementType *, const char*, const char*); - -inline int soap_write__saml2__AttributeStatement(struct soap *soap, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__AttributeStatement(soap, p), 0) || ::soap_put__saml2__AttributeStatement(soap, p, "saml2:AttributeStatement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__AttributeStatement(struct soap *soap, const char *URL, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AttributeStatement(soap, p), 0) || ::soap_put__saml2__AttributeStatement(soap, p, "saml2:AttributeStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AttributeStatement(struct soap *soap, const char *URL, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AttributeStatement(soap, p), 0) || ::soap_put__saml2__AttributeStatement(soap, p, "saml2:AttributeStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AttributeStatement(struct soap *soap, const char *URL, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AttributeStatement(soap, p), 0) || ::soap_put__saml2__AttributeStatement(soap, p, "saml2:AttributeStatement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AttributeStatement soap_get_saml2__AttributeStatementType - - -#define soap_read__saml2__AttributeStatement soap_read_saml2__AttributeStatementType - - -#define soap_GET__saml2__AttributeStatement soap_GET_saml2__AttributeStatementType - - -#define soap_POST_recv__saml2__AttributeStatement soap_POST_recv_saml2__AttributeStatementType - -#endif -/* _saml2__Evidence is a typedef synonym of saml2__EvidenceType */ - -#ifndef SOAP_TYPE__saml2__Evidence_DEFINED -#define SOAP_TYPE__saml2__Evidence_DEFINED - -#define soap_default__saml2__Evidence soap_default_saml2__EvidenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EvidenceType(struct soap*, const struct saml2__EvidenceType *); - -#define soap_serialize__saml2__Evidence soap_serialize_saml2__EvidenceType - - -#define soap__saml2__Evidence2s soap_saml2__EvidenceType2s - - -#define soap_out__saml2__Evidence soap_out_saml2__EvidenceType - - -#define soap_s2_saml2__Evidence soap_s2saml2__EvidenceType - - -#define soap_in__saml2__Evidence soap_in_saml2__EvidenceType - - -#define soap_instantiate__saml2__Evidence soap_instantiate_saml2__EvidenceType - - -#define soap_new__saml2__Evidence soap_new_saml2__EvidenceType - - -#define soap_new_req__saml2__Evidence soap_new_req_saml2__EvidenceType - - -#define soap_new_set__saml2__Evidence soap_new_set_saml2__EvidenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Evidence(struct soap*, const struct saml2__EvidenceType *, const char*, const char*); - -inline int soap_write__saml2__Evidence(struct soap *soap, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Evidence(soap, p), 0) || ::soap_put__saml2__Evidence(soap, p, "saml2:Evidence", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Evidence(struct soap *soap, const char *URL, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Evidence(soap, p), 0) || ::soap_put__saml2__Evidence(soap, p, "saml2:Evidence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Evidence(struct soap *soap, const char *URL, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Evidence(soap, p), 0) || ::soap_put__saml2__Evidence(soap, p, "saml2:Evidence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Evidence(struct soap *soap, const char *URL, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Evidence(soap, p), 0) || ::soap_put__saml2__Evidence(soap, p, "saml2:Evidence", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Evidence soap_get_saml2__EvidenceType - - -#define soap_read__saml2__Evidence soap_read_saml2__EvidenceType - - -#define soap_GET__saml2__Evidence soap_GET_saml2__EvidenceType - - -#define soap_POST_recv__saml2__Evidence soap_POST_recv_saml2__EvidenceType - -#endif -/* _saml2__Action is a typedef synonym of saml2__ActionType */ - -#ifndef SOAP_TYPE__saml2__Action_DEFINED -#define SOAP_TYPE__saml2__Action_DEFINED - -#define soap_default__saml2__Action soap_default_saml2__ActionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ActionType(struct soap*, const struct saml2__ActionType *); - -#define soap_serialize__saml2__Action soap_serialize_saml2__ActionType - - -#define soap__saml2__Action2s soap_saml2__ActionType2s - - -#define soap_out__saml2__Action soap_out_saml2__ActionType - - -#define soap_s2_saml2__Action soap_s2saml2__ActionType - - -#define soap_in__saml2__Action soap_in_saml2__ActionType - - -#define soap_instantiate__saml2__Action soap_instantiate_saml2__ActionType - - -#define soap_new__saml2__Action soap_new_saml2__ActionType - - -#define soap_new_req__saml2__Action soap_new_req_saml2__ActionType - - -#define soap_new_set__saml2__Action soap_new_set_saml2__ActionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Action(struct soap*, const struct saml2__ActionType *, const char*, const char*); - -inline int soap_write__saml2__Action(struct soap *soap, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Action(soap, p), 0) || ::soap_put__saml2__Action(soap, p, "saml2:Action", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Action(struct soap *soap, const char *URL, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Action(soap, p), 0) || ::soap_put__saml2__Action(soap, p, "saml2:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Action(struct soap *soap, const char *URL, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Action(soap, p), 0) || ::soap_put__saml2__Action(soap, p, "saml2:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Action(struct soap *soap, const char *URL, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Action(soap, p), 0) || ::soap_put__saml2__Action(soap, p, "saml2:Action", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Action soap_get_saml2__ActionType - - -#define soap_read__saml2__Action soap_read_saml2__ActionType - - -#define soap_GET__saml2__Action soap_GET_saml2__ActionType - - -#define soap_POST_recv__saml2__Action soap_POST_recv_saml2__ActionType - -#endif -/* _saml2__AuthzDecisionStatement is a typedef synonym of saml2__AuthzDecisionStatementType */ - -#ifndef SOAP_TYPE__saml2__AuthzDecisionStatement_DEFINED -#define SOAP_TYPE__saml2__AuthzDecisionStatement_DEFINED - -#define soap_default__saml2__AuthzDecisionStatement soap_default_saml2__AuthzDecisionStatementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthzDecisionStatementType(struct soap*, const struct saml2__AuthzDecisionStatementType *); - -#define soap_serialize__saml2__AuthzDecisionStatement soap_serialize_saml2__AuthzDecisionStatementType - - -#define soap__saml2__AuthzDecisionStatement2s soap_saml2__AuthzDecisionStatementType2s - - -#define soap_out__saml2__AuthzDecisionStatement soap_out_saml2__AuthzDecisionStatementType - - -#define soap_s2_saml2__AuthzDecisionStatement soap_s2saml2__AuthzDecisionStatementType - - -#define soap_in__saml2__AuthzDecisionStatement soap_in_saml2__AuthzDecisionStatementType - - -#define soap_instantiate__saml2__AuthzDecisionStatement soap_instantiate_saml2__AuthzDecisionStatementType - - -#define soap_new__saml2__AuthzDecisionStatement soap_new_saml2__AuthzDecisionStatementType - - -#define soap_new_req__saml2__AuthzDecisionStatement soap_new_req_saml2__AuthzDecisionStatementType - - -#define soap_new_set__saml2__AuthzDecisionStatement soap_new_set_saml2__AuthzDecisionStatementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthzDecisionStatement(struct soap*, const struct saml2__AuthzDecisionStatementType *, const char*, const char*); - -inline int soap_write__saml2__AuthzDecisionStatement(struct soap *soap, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__AuthzDecisionStatement(soap, p), 0) || ::soap_put__saml2__AuthzDecisionStatement(soap, p, "saml2:AuthzDecisionStatement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__AuthzDecisionStatement(struct soap *soap, const char *URL, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthzDecisionStatement(soap, p), 0) || ::soap_put__saml2__AuthzDecisionStatement(soap, p, "saml2:AuthzDecisionStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AuthzDecisionStatement(struct soap *soap, const char *URL, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthzDecisionStatement(soap, p), 0) || ::soap_put__saml2__AuthzDecisionStatement(soap, p, "saml2:AuthzDecisionStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AuthzDecisionStatement(struct soap *soap, const char *URL, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthzDecisionStatement(soap, p), 0) || ::soap_put__saml2__AuthzDecisionStatement(soap, p, "saml2:AuthzDecisionStatement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AuthzDecisionStatement soap_get_saml2__AuthzDecisionStatementType - - -#define soap_read__saml2__AuthzDecisionStatement soap_read_saml2__AuthzDecisionStatementType - - -#define soap_GET__saml2__AuthzDecisionStatement soap_GET_saml2__AuthzDecisionStatementType - - -#define soap_POST_recv__saml2__AuthzDecisionStatement soap_POST_recv_saml2__AuthzDecisionStatementType - -#endif -/* _saml2__AuthnContext is a typedef synonym of saml2__AuthnContextType */ - -#ifndef SOAP_TYPE__saml2__AuthnContext_DEFINED -#define SOAP_TYPE__saml2__AuthnContext_DEFINED - -#define soap_default__saml2__AuthnContext soap_default_saml2__AuthnContextType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthnContextType(struct soap*, const struct saml2__AuthnContextType *); - -#define soap_serialize__saml2__AuthnContext soap_serialize_saml2__AuthnContextType - - -#define soap__saml2__AuthnContext2s soap_saml2__AuthnContextType2s - - -#define soap_out__saml2__AuthnContext soap_out_saml2__AuthnContextType - - -#define soap_s2_saml2__AuthnContext soap_s2saml2__AuthnContextType - - -#define soap_in__saml2__AuthnContext soap_in_saml2__AuthnContextType - - -#define soap_instantiate__saml2__AuthnContext soap_instantiate_saml2__AuthnContextType - - -#define soap_new__saml2__AuthnContext soap_new_saml2__AuthnContextType - - -#define soap_new_req__saml2__AuthnContext soap_new_req_saml2__AuthnContextType - - -#define soap_new_set__saml2__AuthnContext soap_new_set_saml2__AuthnContextType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthnContext(struct soap*, const struct saml2__AuthnContextType *, const char*, const char*); - -inline int soap_write__saml2__AuthnContext(struct soap *soap, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__AuthnContext(soap, p), 0) || ::soap_put__saml2__AuthnContext(soap, p, "saml2:AuthnContext", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__AuthnContext(struct soap *soap, const char *URL, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthnContext(soap, p), 0) || ::soap_put__saml2__AuthnContext(soap, p, "saml2:AuthnContext", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AuthnContext(struct soap *soap, const char *URL, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthnContext(soap, p), 0) || ::soap_put__saml2__AuthnContext(soap, p, "saml2:AuthnContext", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AuthnContext(struct soap *soap, const char *URL, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthnContext(soap, p), 0) || ::soap_put__saml2__AuthnContext(soap, p, "saml2:AuthnContext", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AuthnContext soap_get_saml2__AuthnContextType - - -#define soap_read__saml2__AuthnContext soap_read_saml2__AuthnContextType - - -#define soap_GET__saml2__AuthnContext soap_GET_saml2__AuthnContextType - - -#define soap_POST_recv__saml2__AuthnContext soap_POST_recv_saml2__AuthnContextType - -#endif -/* _saml2__SubjectLocality is a typedef synonym of saml2__SubjectLocalityType */ - -#ifndef SOAP_TYPE__saml2__SubjectLocality_DEFINED -#define SOAP_TYPE__saml2__SubjectLocality_DEFINED - -#define soap_default__saml2__SubjectLocality soap_default_saml2__SubjectLocalityType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectLocalityType(struct soap*, const struct saml2__SubjectLocalityType *); - -#define soap_serialize__saml2__SubjectLocality soap_serialize_saml2__SubjectLocalityType - - -#define soap__saml2__SubjectLocality2s soap_saml2__SubjectLocalityType2s - - -#define soap_out__saml2__SubjectLocality soap_out_saml2__SubjectLocalityType - - -#define soap_s2_saml2__SubjectLocality soap_s2saml2__SubjectLocalityType - - -#define soap_in__saml2__SubjectLocality soap_in_saml2__SubjectLocalityType - - -#define soap_instantiate__saml2__SubjectLocality soap_instantiate_saml2__SubjectLocalityType - - -#define soap_new__saml2__SubjectLocality soap_new_saml2__SubjectLocalityType - - -#define soap_new_req__saml2__SubjectLocality soap_new_req_saml2__SubjectLocalityType - - -#define soap_new_set__saml2__SubjectLocality soap_new_set_saml2__SubjectLocalityType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__SubjectLocality(struct soap*, const struct saml2__SubjectLocalityType *, const char*, const char*); - -inline int soap_write__saml2__SubjectLocality(struct soap *soap, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__SubjectLocality(soap, p), 0) || ::soap_put__saml2__SubjectLocality(soap, p, "saml2:SubjectLocality", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__SubjectLocality(struct soap *soap, const char *URL, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectLocality(soap, p), 0) || ::soap_put__saml2__SubjectLocality(soap, p, "saml2:SubjectLocality", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__SubjectLocality(struct soap *soap, const char *URL, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectLocality(soap, p), 0) || ::soap_put__saml2__SubjectLocality(soap, p, "saml2:SubjectLocality", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__SubjectLocality(struct soap *soap, const char *URL, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectLocality(soap, p), 0) || ::soap_put__saml2__SubjectLocality(soap, p, "saml2:SubjectLocality", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__SubjectLocality soap_get_saml2__SubjectLocalityType - - -#define soap_read__saml2__SubjectLocality soap_read_saml2__SubjectLocalityType - - -#define soap_GET__saml2__SubjectLocality soap_GET_saml2__SubjectLocalityType - - -#define soap_POST_recv__saml2__SubjectLocality soap_POST_recv_saml2__SubjectLocalityType - -#endif -/* _saml2__AuthnStatement is a typedef synonym of saml2__AuthnStatementType */ - -#ifndef SOAP_TYPE__saml2__AuthnStatement_DEFINED -#define SOAP_TYPE__saml2__AuthnStatement_DEFINED - -#define soap_default__saml2__AuthnStatement soap_default_saml2__AuthnStatementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthnStatementType(struct soap*, const struct saml2__AuthnStatementType *); - -#define soap_serialize__saml2__AuthnStatement soap_serialize_saml2__AuthnStatementType - - -#define soap__saml2__AuthnStatement2s soap_saml2__AuthnStatementType2s - - -#define soap_out__saml2__AuthnStatement soap_out_saml2__AuthnStatementType - - -#define soap_s2_saml2__AuthnStatement soap_s2saml2__AuthnStatementType - - -#define soap_in__saml2__AuthnStatement soap_in_saml2__AuthnStatementType - - -#define soap_instantiate__saml2__AuthnStatement soap_instantiate_saml2__AuthnStatementType - - -#define soap_new__saml2__AuthnStatement soap_new_saml2__AuthnStatementType - - -#define soap_new_req__saml2__AuthnStatement soap_new_req_saml2__AuthnStatementType - - -#define soap_new_set__saml2__AuthnStatement soap_new_set_saml2__AuthnStatementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthnStatement(struct soap*, const struct saml2__AuthnStatementType *, const char*, const char*); - -inline int soap_write__saml2__AuthnStatement(struct soap *soap, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__AuthnStatement(soap, p), 0) || ::soap_put__saml2__AuthnStatement(soap, p, "saml2:AuthnStatement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__AuthnStatement(struct soap *soap, const char *URL, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthnStatement(soap, p), 0) || ::soap_put__saml2__AuthnStatement(soap, p, "saml2:AuthnStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AuthnStatement(struct soap *soap, const char *URL, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthnStatement(soap, p), 0) || ::soap_put__saml2__AuthnStatement(soap, p, "saml2:AuthnStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AuthnStatement(struct soap *soap, const char *URL, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AuthnStatement(soap, p), 0) || ::soap_put__saml2__AuthnStatement(soap, p, "saml2:AuthnStatement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AuthnStatement soap_get_saml2__AuthnStatementType - - -#define soap_read__saml2__AuthnStatement soap_read_saml2__AuthnStatementType - - -#define soap_GET__saml2__AuthnStatement soap_GET_saml2__AuthnStatementType - - -#define soap_POST_recv__saml2__AuthnStatement soap_POST_recv_saml2__AuthnStatementType - -#endif -/* _saml2__Statement is a typedef synonym of saml2__StatementAbstractType */ - -#ifndef SOAP_TYPE__saml2__Statement_DEFINED -#define SOAP_TYPE__saml2__Statement_DEFINED - -#define soap_default__saml2__Statement soap_default_saml2__StatementAbstractType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__StatementAbstractType(struct soap*, const struct saml2__StatementAbstractType *); - -#define soap_serialize__saml2__Statement soap_serialize_saml2__StatementAbstractType - - -#define soap__saml2__Statement2s soap_saml2__StatementAbstractType2s - - -#define soap_out__saml2__Statement soap_out_saml2__StatementAbstractType - - -#define soap_s2_saml2__Statement soap_s2saml2__StatementAbstractType - - -#define soap_in__saml2__Statement soap_in_saml2__StatementAbstractType - - -#define soap_instantiate__saml2__Statement soap_instantiate_saml2__StatementAbstractType - - -#define soap_new__saml2__Statement soap_new_saml2__StatementAbstractType - - -#define soap_new_req__saml2__Statement soap_new_req_saml2__StatementAbstractType - - -#define soap_new_set__saml2__Statement soap_new_set_saml2__StatementAbstractType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Statement(struct soap*, const struct saml2__StatementAbstractType *, const char*, const char*); - -inline int soap_write__saml2__Statement(struct soap *soap, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Statement(soap, p), 0) || ::soap_put__saml2__Statement(soap, p, "saml2:Statement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Statement(struct soap *soap, const char *URL, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Statement(soap, p), 0) || ::soap_put__saml2__Statement(soap, p, "saml2:Statement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Statement(struct soap *soap, const char *URL, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Statement(soap, p), 0) || ::soap_put__saml2__Statement(soap, p, "saml2:Statement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Statement(struct soap *soap, const char *URL, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Statement(soap, p), 0) || ::soap_put__saml2__Statement(soap, p, "saml2:Statement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Statement soap_get_saml2__StatementAbstractType - - -#define soap_read__saml2__Statement soap_read_saml2__StatementAbstractType - - -#define soap_GET__saml2__Statement soap_GET_saml2__StatementAbstractType - - -#define soap_POST_recv__saml2__Statement soap_POST_recv_saml2__StatementAbstractType - -#endif -/* _saml2__EncryptedAssertion is a typedef synonym of saml2__EncryptedElementType */ - -#ifndef SOAP_TYPE__saml2__EncryptedAssertion_DEFINED -#define SOAP_TYPE__saml2__EncryptedAssertion_DEFINED - -#define soap_default__saml2__EncryptedAssertion soap_default_saml2__EncryptedElementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EncryptedElementType(struct soap*, const struct saml2__EncryptedElementType *); - -#define soap_serialize__saml2__EncryptedAssertion soap_serialize_saml2__EncryptedElementType - - -#define soap__saml2__EncryptedAssertion2s soap_saml2__EncryptedElementType2s - - -#define soap_out__saml2__EncryptedAssertion soap_out_saml2__EncryptedElementType - - -#define soap_s2_saml2__EncryptedAssertion soap_s2saml2__EncryptedElementType - - -#define soap_in__saml2__EncryptedAssertion soap_in_saml2__EncryptedElementType - - -#define soap_instantiate__saml2__EncryptedAssertion soap_instantiate_saml2__EncryptedElementType - - -#define soap_new__saml2__EncryptedAssertion soap_new_saml2__EncryptedElementType - - -#define soap_new_req__saml2__EncryptedAssertion soap_new_req_saml2__EncryptedElementType - - -#define soap_new_set__saml2__EncryptedAssertion soap_new_set_saml2__EncryptedElementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__EncryptedAssertion(struct soap*, const struct saml2__EncryptedElementType *, const char*, const char*); - -inline int soap_write__saml2__EncryptedAssertion(struct soap *soap, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__EncryptedAssertion(soap, p), 0) || ::soap_put__saml2__EncryptedAssertion(soap, p, "saml2:EncryptedAssertion", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__EncryptedAssertion(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedAssertion(soap, p), 0) || ::soap_put__saml2__EncryptedAssertion(soap, p, "saml2:EncryptedAssertion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__EncryptedAssertion(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedAssertion(soap, p), 0) || ::soap_put__saml2__EncryptedAssertion(soap, p, "saml2:EncryptedAssertion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__EncryptedAssertion(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedAssertion(soap, p), 0) || ::soap_put__saml2__EncryptedAssertion(soap, p, "saml2:EncryptedAssertion", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__EncryptedAssertion soap_get_saml2__EncryptedElementType - - -#define soap_read__saml2__EncryptedAssertion soap_read_saml2__EncryptedElementType - - -#define soap_GET__saml2__EncryptedAssertion soap_GET_saml2__EncryptedElementType - - -#define soap_POST_recv__saml2__EncryptedAssertion soap_POST_recv_saml2__EncryptedElementType - -#endif -/* _saml2__Advice is a typedef synonym of saml2__AdviceType */ - -#ifndef SOAP_TYPE__saml2__Advice_DEFINED -#define SOAP_TYPE__saml2__Advice_DEFINED - -#define soap_default__saml2__Advice soap_default_saml2__AdviceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AdviceType(struct soap*, const struct saml2__AdviceType *); - -#define soap_serialize__saml2__Advice soap_serialize_saml2__AdviceType - - -#define soap__saml2__Advice2s soap_saml2__AdviceType2s - - -#define soap_out__saml2__Advice soap_out_saml2__AdviceType - - -#define soap_s2_saml2__Advice soap_s2saml2__AdviceType - - -#define soap_in__saml2__Advice soap_in_saml2__AdviceType - - -#define soap_instantiate__saml2__Advice soap_instantiate_saml2__AdviceType - - -#define soap_new__saml2__Advice soap_new_saml2__AdviceType - - -#define soap_new_req__saml2__Advice soap_new_req_saml2__AdviceType - - -#define soap_new_set__saml2__Advice soap_new_set_saml2__AdviceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Advice(struct soap*, const struct saml2__AdviceType *, const char*, const char*); - -inline int soap_write__saml2__Advice(struct soap *soap, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Advice(soap, p), 0) || ::soap_put__saml2__Advice(soap, p, "saml2:Advice", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Advice(struct soap *soap, const char *URL, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Advice(soap, p), 0) || ::soap_put__saml2__Advice(soap, p, "saml2:Advice", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Advice(struct soap *soap, const char *URL, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Advice(soap, p), 0) || ::soap_put__saml2__Advice(soap, p, "saml2:Advice", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Advice(struct soap *soap, const char *URL, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Advice(soap, p), 0) || ::soap_put__saml2__Advice(soap, p, "saml2:Advice", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Advice soap_get_saml2__AdviceType - - -#define soap_read__saml2__Advice soap_read_saml2__AdviceType - - -#define soap_GET__saml2__Advice soap_GET_saml2__AdviceType - - -#define soap_POST_recv__saml2__Advice soap_POST_recv_saml2__AdviceType - -#endif -/* _saml2__ProxyRestriction is a typedef synonym of saml2__ProxyRestrictionType */ - -#ifndef SOAP_TYPE__saml2__ProxyRestriction_DEFINED -#define SOAP_TYPE__saml2__ProxyRestriction_DEFINED - -#define soap_default__saml2__ProxyRestriction soap_default_saml2__ProxyRestrictionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ProxyRestrictionType(struct soap*, const struct saml2__ProxyRestrictionType *); - -#define soap_serialize__saml2__ProxyRestriction soap_serialize_saml2__ProxyRestrictionType - - -#define soap__saml2__ProxyRestriction2s soap_saml2__ProxyRestrictionType2s - - -#define soap_out__saml2__ProxyRestriction soap_out_saml2__ProxyRestrictionType - - -#define soap_s2_saml2__ProxyRestriction soap_s2saml2__ProxyRestrictionType - - -#define soap_in__saml2__ProxyRestriction soap_in_saml2__ProxyRestrictionType - - -#define soap_instantiate__saml2__ProxyRestriction soap_instantiate_saml2__ProxyRestrictionType - - -#define soap_new__saml2__ProxyRestriction soap_new_saml2__ProxyRestrictionType - - -#define soap_new_req__saml2__ProxyRestriction soap_new_req_saml2__ProxyRestrictionType - - -#define soap_new_set__saml2__ProxyRestriction soap_new_set_saml2__ProxyRestrictionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__ProxyRestriction(struct soap*, const struct saml2__ProxyRestrictionType *, const char*, const char*); - -inline int soap_write__saml2__ProxyRestriction(struct soap *soap, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__ProxyRestriction(soap, p), 0) || ::soap_put__saml2__ProxyRestriction(soap, p, "saml2:ProxyRestriction", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__ProxyRestriction(struct soap *soap, const char *URL, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__ProxyRestriction(soap, p), 0) || ::soap_put__saml2__ProxyRestriction(soap, p, "saml2:ProxyRestriction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__ProxyRestriction(struct soap *soap, const char *URL, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__ProxyRestriction(soap, p), 0) || ::soap_put__saml2__ProxyRestriction(soap, p, "saml2:ProxyRestriction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__ProxyRestriction(struct soap *soap, const char *URL, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__ProxyRestriction(soap, p), 0) || ::soap_put__saml2__ProxyRestriction(soap, p, "saml2:ProxyRestriction", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__ProxyRestriction soap_get_saml2__ProxyRestrictionType - - -#define soap_read__saml2__ProxyRestriction soap_read_saml2__ProxyRestrictionType - - -#define soap_GET__saml2__ProxyRestriction soap_GET_saml2__ProxyRestrictionType - - -#define soap_POST_recv__saml2__ProxyRestriction soap_POST_recv_saml2__ProxyRestrictionType - -#endif -/* _saml2__OneTimeUse is a typedef synonym of saml2__OneTimeUseType */ - -#ifndef SOAP_TYPE__saml2__OneTimeUse_DEFINED -#define SOAP_TYPE__saml2__OneTimeUse_DEFINED - -#define soap_default__saml2__OneTimeUse soap_default_saml2__OneTimeUseType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__OneTimeUseType(struct soap*, const struct saml2__OneTimeUseType *); - -#define soap_serialize__saml2__OneTimeUse soap_serialize_saml2__OneTimeUseType - - -#define soap__saml2__OneTimeUse2s soap_saml2__OneTimeUseType2s - - -#define soap_out__saml2__OneTimeUse soap_out_saml2__OneTimeUseType - - -#define soap_s2_saml2__OneTimeUse soap_s2saml2__OneTimeUseType - - -#define soap_in__saml2__OneTimeUse soap_in_saml2__OneTimeUseType - - -#define soap_instantiate__saml2__OneTimeUse soap_instantiate_saml2__OneTimeUseType - - -#define soap_new__saml2__OneTimeUse soap_new_saml2__OneTimeUseType - - -#define soap_new_req__saml2__OneTimeUse soap_new_req_saml2__OneTimeUseType - - -#define soap_new_set__saml2__OneTimeUse soap_new_set_saml2__OneTimeUseType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__OneTimeUse(struct soap*, const struct saml2__OneTimeUseType *, const char*, const char*); - -inline int soap_write__saml2__OneTimeUse(struct soap *soap, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__OneTimeUse(soap, p), 0) || ::soap_put__saml2__OneTimeUse(soap, p, "saml2:OneTimeUse", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__OneTimeUse(struct soap *soap, const char *URL, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__OneTimeUse(soap, p), 0) || ::soap_put__saml2__OneTimeUse(soap, p, "saml2:OneTimeUse", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__OneTimeUse(struct soap *soap, const char *URL, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__OneTimeUse(soap, p), 0) || ::soap_put__saml2__OneTimeUse(soap, p, "saml2:OneTimeUse", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__OneTimeUse(struct soap *soap, const char *URL, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__OneTimeUse(soap, p), 0) || ::soap_put__saml2__OneTimeUse(soap, p, "saml2:OneTimeUse", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__OneTimeUse soap_get_saml2__OneTimeUseType - - -#define soap_read__saml2__OneTimeUse soap_read_saml2__OneTimeUseType - - -#define soap_GET__saml2__OneTimeUse soap_GET_saml2__OneTimeUseType - - -#define soap_POST_recv__saml2__OneTimeUse soap_POST_recv_saml2__OneTimeUseType - -#endif -/* _saml2__AudienceRestriction is a typedef synonym of saml2__AudienceRestrictionType */ - -#ifndef SOAP_TYPE__saml2__AudienceRestriction_DEFINED -#define SOAP_TYPE__saml2__AudienceRestriction_DEFINED - -#define soap_default__saml2__AudienceRestriction soap_default_saml2__AudienceRestrictionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AudienceRestrictionType(struct soap*, const struct saml2__AudienceRestrictionType *); - -#define soap_serialize__saml2__AudienceRestriction soap_serialize_saml2__AudienceRestrictionType - - -#define soap__saml2__AudienceRestriction2s soap_saml2__AudienceRestrictionType2s - - -#define soap_out__saml2__AudienceRestriction soap_out_saml2__AudienceRestrictionType - - -#define soap_s2_saml2__AudienceRestriction soap_s2saml2__AudienceRestrictionType - - -#define soap_in__saml2__AudienceRestriction soap_in_saml2__AudienceRestrictionType - - -#define soap_instantiate__saml2__AudienceRestriction soap_instantiate_saml2__AudienceRestrictionType - - -#define soap_new__saml2__AudienceRestriction soap_new_saml2__AudienceRestrictionType - - -#define soap_new_req__saml2__AudienceRestriction soap_new_req_saml2__AudienceRestrictionType - - -#define soap_new_set__saml2__AudienceRestriction soap_new_set_saml2__AudienceRestrictionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AudienceRestriction(struct soap*, const struct saml2__AudienceRestrictionType *, const char*, const char*); - -inline int soap_write__saml2__AudienceRestriction(struct soap *soap, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__AudienceRestriction(soap, p), 0) || ::soap_put__saml2__AudienceRestriction(soap, p, "saml2:AudienceRestriction", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__AudienceRestriction(struct soap *soap, const char *URL, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AudienceRestriction(soap, p), 0) || ::soap_put__saml2__AudienceRestriction(soap, p, "saml2:AudienceRestriction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AudienceRestriction(struct soap *soap, const char *URL, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AudienceRestriction(soap, p), 0) || ::soap_put__saml2__AudienceRestriction(soap, p, "saml2:AudienceRestriction", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AudienceRestriction(struct soap *soap, const char *URL, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__AudienceRestriction(soap, p), 0) || ::soap_put__saml2__AudienceRestriction(soap, p, "saml2:AudienceRestriction", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AudienceRestriction soap_get_saml2__AudienceRestrictionType - - -#define soap_read__saml2__AudienceRestriction soap_read_saml2__AudienceRestrictionType - - -#define soap_GET__saml2__AudienceRestriction soap_GET_saml2__AudienceRestrictionType - - -#define soap_POST_recv__saml2__AudienceRestriction soap_POST_recv_saml2__AudienceRestrictionType - -#endif -/* _saml2__Condition is a typedef synonym of saml2__ConditionAbstractType */ - -#ifndef SOAP_TYPE__saml2__Condition_DEFINED -#define SOAP_TYPE__saml2__Condition_DEFINED - -#define soap_default__saml2__Condition soap_default_saml2__ConditionAbstractType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ConditionAbstractType(struct soap*, const struct saml2__ConditionAbstractType *); - -#define soap_serialize__saml2__Condition soap_serialize_saml2__ConditionAbstractType - - -#define soap__saml2__Condition2s soap_saml2__ConditionAbstractType2s - - -#define soap_out__saml2__Condition soap_out_saml2__ConditionAbstractType - - -#define soap_s2_saml2__Condition soap_s2saml2__ConditionAbstractType - - -#define soap_in__saml2__Condition soap_in_saml2__ConditionAbstractType - - -#define soap_instantiate__saml2__Condition soap_instantiate_saml2__ConditionAbstractType - - -#define soap_new__saml2__Condition soap_new_saml2__ConditionAbstractType - - -#define soap_new_req__saml2__Condition soap_new_req_saml2__ConditionAbstractType - - -#define soap_new_set__saml2__Condition soap_new_set_saml2__ConditionAbstractType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Condition(struct soap*, const struct saml2__ConditionAbstractType *, const char*, const char*); - -inline int soap_write__saml2__Condition(struct soap *soap, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Condition(soap, p), 0) || ::soap_put__saml2__Condition(soap, p, "saml2:Condition", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Condition(struct soap *soap, const char *URL, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Condition(soap, p), 0) || ::soap_put__saml2__Condition(soap, p, "saml2:Condition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Condition(struct soap *soap, const char *URL, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Condition(soap, p), 0) || ::soap_put__saml2__Condition(soap, p, "saml2:Condition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Condition(struct soap *soap, const char *URL, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Condition(soap, p), 0) || ::soap_put__saml2__Condition(soap, p, "saml2:Condition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Condition soap_get_saml2__ConditionAbstractType - - -#define soap_read__saml2__Condition soap_read_saml2__ConditionAbstractType - - -#define soap_GET__saml2__Condition soap_GET_saml2__ConditionAbstractType - - -#define soap_POST_recv__saml2__Condition soap_POST_recv_saml2__ConditionAbstractType - -#endif -/* _saml2__Conditions is a typedef synonym of saml2__ConditionsType */ - -#ifndef SOAP_TYPE__saml2__Conditions_DEFINED -#define SOAP_TYPE__saml2__Conditions_DEFINED - -#define soap_default__saml2__Conditions soap_default_saml2__ConditionsType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ConditionsType(struct soap*, const struct saml2__ConditionsType *); - -#define soap_serialize__saml2__Conditions soap_serialize_saml2__ConditionsType - - -#define soap__saml2__Conditions2s soap_saml2__ConditionsType2s - - -#define soap_out__saml2__Conditions soap_out_saml2__ConditionsType - - -#define soap_s2_saml2__Conditions soap_s2saml2__ConditionsType - - -#define soap_in__saml2__Conditions soap_in_saml2__ConditionsType - - -#define soap_instantiate__saml2__Conditions soap_instantiate_saml2__ConditionsType - - -#define soap_new__saml2__Conditions soap_new_saml2__ConditionsType - - -#define soap_new_req__saml2__Conditions soap_new_req_saml2__ConditionsType - - -#define soap_new_set__saml2__Conditions soap_new_set_saml2__ConditionsType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Conditions(struct soap*, const struct saml2__ConditionsType *, const char*, const char*); - -inline int soap_write__saml2__Conditions(struct soap *soap, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Conditions(soap, p), 0) || ::soap_put__saml2__Conditions(soap, p, "saml2:Conditions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Conditions(struct soap *soap, const char *URL, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Conditions(soap, p), 0) || ::soap_put__saml2__Conditions(soap, p, "saml2:Conditions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Conditions(struct soap *soap, const char *URL, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Conditions(soap, p), 0) || ::soap_put__saml2__Conditions(soap, p, "saml2:Conditions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Conditions(struct soap *soap, const char *URL, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Conditions(soap, p), 0) || ::soap_put__saml2__Conditions(soap, p, "saml2:Conditions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Conditions soap_get_saml2__ConditionsType - - -#define soap_read__saml2__Conditions soap_read_saml2__ConditionsType - - -#define soap_GET__saml2__Conditions soap_GET_saml2__ConditionsType - - -#define soap_POST_recv__saml2__Conditions soap_POST_recv_saml2__ConditionsType - -#endif -/* _saml2__SubjectConfirmationData is a typedef synonym of saml2__SubjectConfirmationDataType */ - -#ifndef SOAP_TYPE__saml2__SubjectConfirmationData_DEFINED -#define SOAP_TYPE__saml2__SubjectConfirmationData_DEFINED - -#define soap_default__saml2__SubjectConfirmationData soap_default_saml2__SubjectConfirmationDataType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectConfirmationDataType(struct soap*, const struct saml2__SubjectConfirmationDataType *); - -#define soap_serialize__saml2__SubjectConfirmationData soap_serialize_saml2__SubjectConfirmationDataType - - -#define soap__saml2__SubjectConfirmationData2s soap_saml2__SubjectConfirmationDataType2s - - -#define soap_out__saml2__SubjectConfirmationData soap_out_saml2__SubjectConfirmationDataType - - -#define soap_s2_saml2__SubjectConfirmationData soap_s2saml2__SubjectConfirmationDataType - - -#define soap_in__saml2__SubjectConfirmationData soap_in_saml2__SubjectConfirmationDataType - - -#define soap_instantiate__saml2__SubjectConfirmationData soap_instantiate_saml2__SubjectConfirmationDataType - - -#define soap_new__saml2__SubjectConfirmationData soap_new_saml2__SubjectConfirmationDataType - - -#define soap_new_req__saml2__SubjectConfirmationData soap_new_req_saml2__SubjectConfirmationDataType - - -#define soap_new_set__saml2__SubjectConfirmationData soap_new_set_saml2__SubjectConfirmationDataType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__SubjectConfirmationData(struct soap*, const struct saml2__SubjectConfirmationDataType *, const char*, const char*); - -inline int soap_write__saml2__SubjectConfirmationData(struct soap *soap, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__SubjectConfirmationData(soap, p), 0) || ::soap_put__saml2__SubjectConfirmationData(soap, p, "saml2:SubjectConfirmationData", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__SubjectConfirmationData(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectConfirmationData(soap, p), 0) || ::soap_put__saml2__SubjectConfirmationData(soap, p, "saml2:SubjectConfirmationData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__SubjectConfirmationData(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectConfirmationData(soap, p), 0) || ::soap_put__saml2__SubjectConfirmationData(soap, p, "saml2:SubjectConfirmationData", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__SubjectConfirmationData(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectConfirmationData(soap, p), 0) || ::soap_put__saml2__SubjectConfirmationData(soap, p, "saml2:SubjectConfirmationData", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__SubjectConfirmationData soap_get_saml2__SubjectConfirmationDataType - - -#define soap_read__saml2__SubjectConfirmationData soap_read_saml2__SubjectConfirmationDataType - - -#define soap_GET__saml2__SubjectConfirmationData soap_GET_saml2__SubjectConfirmationDataType - - -#define soap_POST_recv__saml2__SubjectConfirmationData soap_POST_recv_saml2__SubjectConfirmationDataType - -#endif -/* _saml2__SubjectConfirmation is a typedef synonym of saml2__SubjectConfirmationType */ - -#ifndef SOAP_TYPE__saml2__SubjectConfirmation_DEFINED -#define SOAP_TYPE__saml2__SubjectConfirmation_DEFINED - -#define soap_default__saml2__SubjectConfirmation soap_default_saml2__SubjectConfirmationType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectConfirmationType(struct soap*, const struct saml2__SubjectConfirmationType *); - -#define soap_serialize__saml2__SubjectConfirmation soap_serialize_saml2__SubjectConfirmationType - - -#define soap__saml2__SubjectConfirmation2s soap_saml2__SubjectConfirmationType2s - - -#define soap_out__saml2__SubjectConfirmation soap_out_saml2__SubjectConfirmationType - - -#define soap_s2_saml2__SubjectConfirmation soap_s2saml2__SubjectConfirmationType - - -#define soap_in__saml2__SubjectConfirmation soap_in_saml2__SubjectConfirmationType - - -#define soap_instantiate__saml2__SubjectConfirmation soap_instantiate_saml2__SubjectConfirmationType - - -#define soap_new__saml2__SubjectConfirmation soap_new_saml2__SubjectConfirmationType - - -#define soap_new_req__saml2__SubjectConfirmation soap_new_req_saml2__SubjectConfirmationType - - -#define soap_new_set__saml2__SubjectConfirmation soap_new_set_saml2__SubjectConfirmationType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__SubjectConfirmation(struct soap*, const struct saml2__SubjectConfirmationType *, const char*, const char*); - -inline int soap_write__saml2__SubjectConfirmation(struct soap *soap, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__SubjectConfirmation(soap, p), 0) || ::soap_put__saml2__SubjectConfirmation(soap, p, "saml2:SubjectConfirmation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__SubjectConfirmation(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectConfirmation(soap, p), 0) || ::soap_put__saml2__SubjectConfirmation(soap, p, "saml2:SubjectConfirmation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__SubjectConfirmation(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectConfirmation(soap, p), 0) || ::soap_put__saml2__SubjectConfirmation(soap, p, "saml2:SubjectConfirmation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__SubjectConfirmation(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__SubjectConfirmation(soap, p), 0) || ::soap_put__saml2__SubjectConfirmation(soap, p, "saml2:SubjectConfirmation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__SubjectConfirmation soap_get_saml2__SubjectConfirmationType - - -#define soap_read__saml2__SubjectConfirmation soap_read_saml2__SubjectConfirmationType - - -#define soap_GET__saml2__SubjectConfirmation soap_GET_saml2__SubjectConfirmationType - - -#define soap_POST_recv__saml2__SubjectConfirmation soap_POST_recv_saml2__SubjectConfirmationType - -#endif -/* _saml2__Subject is a typedef synonym of saml2__SubjectType */ - -#ifndef SOAP_TYPE__saml2__Subject_DEFINED -#define SOAP_TYPE__saml2__Subject_DEFINED - -#define soap_default__saml2__Subject soap_default_saml2__SubjectType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectType(struct soap*, const struct saml2__SubjectType *); - -#define soap_serialize__saml2__Subject soap_serialize_saml2__SubjectType - - -#define soap__saml2__Subject2s soap_saml2__SubjectType2s - - -#define soap_out__saml2__Subject soap_out_saml2__SubjectType - - -#define soap_s2_saml2__Subject soap_s2saml2__SubjectType - - -#define soap_in__saml2__Subject soap_in_saml2__SubjectType - - -#define soap_instantiate__saml2__Subject soap_instantiate_saml2__SubjectType - - -#define soap_new__saml2__Subject soap_new_saml2__SubjectType - - -#define soap_new_req__saml2__Subject soap_new_req_saml2__SubjectType - - -#define soap_new_set__saml2__Subject soap_new_set_saml2__SubjectType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Subject(struct soap*, const struct saml2__SubjectType *, const char*, const char*); - -inline int soap_write__saml2__Subject(struct soap *soap, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Subject(soap, p), 0) || ::soap_put__saml2__Subject(soap, p, "saml2:Subject", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Subject(struct soap *soap, const char *URL, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Subject(soap, p), 0) || ::soap_put__saml2__Subject(soap, p, "saml2:Subject", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Subject(struct soap *soap, const char *URL, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Subject(soap, p), 0) || ::soap_put__saml2__Subject(soap, p, "saml2:Subject", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Subject(struct soap *soap, const char *URL, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Subject(soap, p), 0) || ::soap_put__saml2__Subject(soap, p, "saml2:Subject", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Subject soap_get_saml2__SubjectType - - -#define soap_read__saml2__Subject soap_read_saml2__SubjectType - - -#define soap_GET__saml2__Subject soap_GET_saml2__SubjectType - - -#define soap_POST_recv__saml2__Subject soap_POST_recv_saml2__SubjectType - -#endif -/* _saml2__Assertion is a typedef synonym of saml2__AssertionType */ - -#ifndef SOAP_TYPE__saml2__Assertion_DEFINED -#define SOAP_TYPE__saml2__Assertion_DEFINED - -#define soap_default__saml2__Assertion soap_default_saml2__AssertionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AssertionType(struct soap*, const struct saml2__AssertionType *); - -#define soap_serialize__saml2__Assertion soap_serialize_saml2__AssertionType - - -#define soap__saml2__Assertion2s soap_saml2__AssertionType2s - - -#define soap_out__saml2__Assertion soap_out_saml2__AssertionType - - -#define soap_s2_saml2__Assertion soap_s2saml2__AssertionType - - -#define soap_in__saml2__Assertion soap_in_saml2__AssertionType - - -#define soap_instantiate__saml2__Assertion soap_instantiate_saml2__AssertionType - - -#define soap_new__saml2__Assertion soap_new_saml2__AssertionType - - -#define soap_new_req__saml2__Assertion soap_new_req_saml2__AssertionType - - -#define soap_new_set__saml2__Assertion soap_new_set_saml2__AssertionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Assertion(struct soap*, const struct saml2__AssertionType *, const char*, const char*); - -inline int soap_write__saml2__Assertion(struct soap *soap, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Assertion(soap, p), 0) || ::soap_put__saml2__Assertion(soap, p, "saml2:Assertion", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Assertion(struct soap *soap, const char *URL, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Assertion(soap, p), 0) || ::soap_put__saml2__Assertion(soap, p, "saml2:Assertion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Assertion(struct soap *soap, const char *URL, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Assertion(soap, p), 0) || ::soap_put__saml2__Assertion(soap, p, "saml2:Assertion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Assertion(struct soap *soap, const char *URL, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Assertion(soap, p), 0) || ::soap_put__saml2__Assertion(soap, p, "saml2:Assertion", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Assertion soap_get_saml2__AssertionType - - -#define soap_read__saml2__Assertion soap_read_saml2__AssertionType - - -#define soap_GET__saml2__Assertion soap_GET_saml2__AssertionType - - -#define soap_POST_recv__saml2__Assertion soap_POST_recv_saml2__AssertionType - -#endif -/* _saml2__Issuer is a typedef synonym of saml2__NameIDType */ - -#ifndef SOAP_TYPE__saml2__Issuer_DEFINED -#define SOAP_TYPE__saml2__Issuer_DEFINED - -#define soap_default__saml2__Issuer soap_default_saml2__NameIDType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__NameIDType(struct soap*, const struct saml2__NameIDType *); - -#define soap_serialize__saml2__Issuer soap_serialize_saml2__NameIDType - - -#define soap__saml2__Issuer2s soap_saml2__NameIDType2s - - -#define soap_out__saml2__Issuer soap_out_saml2__NameIDType - - -#define soap_s2_saml2__Issuer soap_s2saml2__NameIDType - - -#define soap_in__saml2__Issuer soap_in_saml2__NameIDType - - -#define soap_instantiate__saml2__Issuer soap_instantiate_saml2__NameIDType - - -#define soap_new__saml2__Issuer soap_new_saml2__NameIDType - - -#define soap_new_req__saml2__Issuer soap_new_req_saml2__NameIDType - - -#define soap_new_set__saml2__Issuer soap_new_set_saml2__NameIDType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Issuer(struct soap*, const struct saml2__NameIDType *, const char*, const char*); - -inline int soap_write__saml2__Issuer(struct soap *soap, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__Issuer(soap, p), 0) || ::soap_put__saml2__Issuer(soap, p, "saml2:Issuer", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__Issuer(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Issuer(soap, p), 0) || ::soap_put__saml2__Issuer(soap, p, "saml2:Issuer", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Issuer(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Issuer(soap, p), 0) || ::soap_put__saml2__Issuer(soap, p, "saml2:Issuer", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Issuer(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__Issuer(soap, p), 0) || ::soap_put__saml2__Issuer(soap, p, "saml2:Issuer", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Issuer soap_get_saml2__NameIDType - - -#define soap_read__saml2__Issuer soap_read_saml2__NameIDType - - -#define soap_GET__saml2__Issuer soap_GET_saml2__NameIDType - - -#define soap_POST_recv__saml2__Issuer soap_POST_recv_saml2__NameIDType - -#endif -/* _saml2__EncryptedID is a typedef synonym of saml2__EncryptedElementType */ - -#ifndef SOAP_TYPE__saml2__EncryptedID_DEFINED -#define SOAP_TYPE__saml2__EncryptedID_DEFINED - -#define soap_default__saml2__EncryptedID soap_default_saml2__EncryptedElementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EncryptedElementType(struct soap*, const struct saml2__EncryptedElementType *); - -#define soap_serialize__saml2__EncryptedID soap_serialize_saml2__EncryptedElementType - - -#define soap__saml2__EncryptedID2s soap_saml2__EncryptedElementType2s - - -#define soap_out__saml2__EncryptedID soap_out_saml2__EncryptedElementType - - -#define soap_s2_saml2__EncryptedID soap_s2saml2__EncryptedElementType - - -#define soap_in__saml2__EncryptedID soap_in_saml2__EncryptedElementType - - -#define soap_instantiate__saml2__EncryptedID soap_instantiate_saml2__EncryptedElementType - - -#define soap_new__saml2__EncryptedID soap_new_saml2__EncryptedElementType - - -#define soap_new_req__saml2__EncryptedID soap_new_req_saml2__EncryptedElementType - - -#define soap_new_set__saml2__EncryptedID soap_new_set_saml2__EncryptedElementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__EncryptedID(struct soap*, const struct saml2__EncryptedElementType *, const char*, const char*); - -inline int soap_write__saml2__EncryptedID(struct soap *soap, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__EncryptedID(soap, p), 0) || ::soap_put__saml2__EncryptedID(soap, p, "saml2:EncryptedID", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__EncryptedID(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedID(soap, p), 0) || ::soap_put__saml2__EncryptedID(soap, p, "saml2:EncryptedID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__EncryptedID(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedID(soap, p), 0) || ::soap_put__saml2__EncryptedID(soap, p, "saml2:EncryptedID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__EncryptedID(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__EncryptedID(soap, p), 0) || ::soap_put__saml2__EncryptedID(soap, p, "saml2:EncryptedID", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__EncryptedID soap_get_saml2__EncryptedElementType - - -#define soap_read__saml2__EncryptedID soap_read_saml2__EncryptedElementType - - -#define soap_GET__saml2__EncryptedID soap_GET_saml2__EncryptedElementType - - -#define soap_POST_recv__saml2__EncryptedID soap_POST_recv_saml2__EncryptedElementType - -#endif -/* _saml2__NameID is a typedef synonym of saml2__NameIDType */ - -#ifndef SOAP_TYPE__saml2__NameID_DEFINED -#define SOAP_TYPE__saml2__NameID_DEFINED - -#define soap_default__saml2__NameID soap_default_saml2__NameIDType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__NameIDType(struct soap*, const struct saml2__NameIDType *); - -#define soap_serialize__saml2__NameID soap_serialize_saml2__NameIDType - - -#define soap__saml2__NameID2s soap_saml2__NameIDType2s - - -#define soap_out__saml2__NameID soap_out_saml2__NameIDType - - -#define soap_s2_saml2__NameID soap_s2saml2__NameIDType - - -#define soap_in__saml2__NameID soap_in_saml2__NameIDType - - -#define soap_instantiate__saml2__NameID soap_instantiate_saml2__NameIDType - - -#define soap_new__saml2__NameID soap_new_saml2__NameIDType - - -#define soap_new_req__saml2__NameID soap_new_req_saml2__NameIDType - - -#define soap_new_set__saml2__NameID soap_new_set_saml2__NameIDType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__NameID(struct soap*, const struct saml2__NameIDType *, const char*, const char*); - -inline int soap_write__saml2__NameID(struct soap *soap, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__NameID(soap, p), 0) || ::soap_put__saml2__NameID(soap, p, "saml2:NameID", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__NameID(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__NameID(soap, p), 0) || ::soap_put__saml2__NameID(soap, p, "saml2:NameID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__NameID(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__NameID(soap, p), 0) || ::soap_put__saml2__NameID(soap, p, "saml2:NameID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__NameID(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__NameID(soap, p), 0) || ::soap_put__saml2__NameID(soap, p, "saml2:NameID", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__NameID soap_get_saml2__NameIDType - - -#define soap_read__saml2__NameID soap_read_saml2__NameIDType - - -#define soap_GET__saml2__NameID soap_GET_saml2__NameIDType - - -#define soap_POST_recv__saml2__NameID soap_POST_recv_saml2__NameIDType - -#endif -/* _saml2__BaseID is a typedef synonym of saml2__BaseIDAbstractType */ - -#ifndef SOAP_TYPE__saml2__BaseID_DEFINED -#define SOAP_TYPE__saml2__BaseID_DEFINED - -#define soap_default__saml2__BaseID soap_default_saml2__BaseIDAbstractType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__BaseIDAbstractType(struct soap*, const struct saml2__BaseIDAbstractType *); - -#define soap_serialize__saml2__BaseID soap_serialize_saml2__BaseIDAbstractType - - -#define soap__saml2__BaseID2s soap_saml2__BaseIDAbstractType2s - - -#define soap_out__saml2__BaseID soap_out_saml2__BaseIDAbstractType - - -#define soap_s2_saml2__BaseID soap_s2saml2__BaseIDAbstractType - - -#define soap_in__saml2__BaseID soap_in_saml2__BaseIDAbstractType - - -#define soap_instantiate__saml2__BaseID soap_instantiate_saml2__BaseIDAbstractType - - -#define soap_new__saml2__BaseID soap_new_saml2__BaseIDAbstractType - - -#define soap_new_req__saml2__BaseID soap_new_req_saml2__BaseIDAbstractType - - -#define soap_new_set__saml2__BaseID soap_new_set_saml2__BaseIDAbstractType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__BaseID(struct soap*, const struct saml2__BaseIDAbstractType *, const char*, const char*); - -inline int soap_write__saml2__BaseID(struct soap *soap, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml2__BaseID(soap, p), 0) || ::soap_put__saml2__BaseID(soap, p, "saml2:BaseID", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml2__BaseID(struct soap *soap, const char *URL, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__BaseID(soap, p), 0) || ::soap_put__saml2__BaseID(soap, p, "saml2:BaseID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__BaseID(struct soap *soap, const char *URL, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__BaseID(soap, p), 0) || ::soap_put__saml2__BaseID(soap, p, "saml2:BaseID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__BaseID(struct soap *soap, const char *URL, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml2__BaseID(soap, p), 0) || ::soap_put__saml2__BaseID(soap, p, "saml2:BaseID", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__BaseID soap_get_saml2__BaseIDAbstractType - - -#define soap_read__saml2__BaseID soap_read_saml2__BaseIDAbstractType - - -#define soap_GET__saml2__BaseID soap_GET_saml2__BaseIDAbstractType - - -#define soap_POST_recv__saml2__BaseID soap_POST_recv_saml2__BaseIDAbstractType - -#endif - -#ifndef SOAP_TYPE___saml2__union_AttributeStatementType_DEFINED -#define SOAP_TYPE___saml2__union_AttributeStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_AttributeStatementType(struct soap*, struct __saml2__union_AttributeStatementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_AttributeStatementType(struct soap*, const struct __saml2__union_AttributeStatementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_AttributeStatementType(struct soap*, const char*, int, const struct __saml2__union_AttributeStatementType *, const char*); -SOAP_FMAC3 struct __saml2__union_AttributeStatementType * SOAP_FMAC4 soap_in___saml2__union_AttributeStatementType(struct soap*, const char*, struct __saml2__union_AttributeStatementType *, const char*); -SOAP_FMAC1 struct __saml2__union_AttributeStatementType * SOAP_FMAC2 soap_instantiate___saml2__union_AttributeStatementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml2__union_AttributeStatementType * soap_new___saml2__union_AttributeStatementType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml2__union_AttributeStatementType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml2__union_AttributeStatementType * soap_new_req___saml2__union_AttributeStatementType( - struct soap *soap) -{ - struct __saml2__union_AttributeStatementType *_p = ::soap_new___saml2__union_AttributeStatementType(soap); - if (_p) - { ::soap_default___saml2__union_AttributeStatementType(soap, _p); - } - return _p; -} - -inline struct __saml2__union_AttributeStatementType * soap_new_set___saml2__union_AttributeStatementType( - struct soap *soap, - struct saml2__AttributeType *saml2__Attribute, - struct saml2__EncryptedElementType *saml2__EncryptedAttribute) -{ - struct __saml2__union_AttributeStatementType *_p = ::soap_new___saml2__union_AttributeStatementType(soap); - if (_p) - { ::soap_default___saml2__union_AttributeStatementType(soap, _p); - _p->saml2__Attribute = saml2__Attribute; - _p->saml2__EncryptedAttribute = saml2__EncryptedAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_AttributeStatementType(struct soap*, const struct __saml2__union_AttributeStatementType *, const char*, const char*); - -inline int soap_write___saml2__union_AttributeStatementType(struct soap *soap, struct __saml2__union_AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml2__union_AttributeStatementType(soap, p), 0) || ::soap_put___saml2__union_AttributeStatementType(soap, p, "-saml2:union-AttributeStatementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml2__union_AttributeStatementType(struct soap *soap, const char *URL, struct __saml2__union_AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AttributeStatementType(soap, p), 0) || ::soap_put___saml2__union_AttributeStatementType(soap, p, "-saml2:union-AttributeStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml2__union_AttributeStatementType(struct soap *soap, const char *URL, struct __saml2__union_AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AttributeStatementType(soap, p), 0) || ::soap_put___saml2__union_AttributeStatementType(soap, p, "-saml2:union-AttributeStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml2__union_AttributeStatementType(struct soap *soap, const char *URL, struct __saml2__union_AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AttributeStatementType(soap, p), 0) || ::soap_put___saml2__union_AttributeStatementType(soap, p, "-saml2:union-AttributeStatementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml2__union_AttributeStatementType * SOAP_FMAC4 soap_get___saml2__union_AttributeStatementType(struct soap*, struct __saml2__union_AttributeStatementType *, const char*, const char*); - -inline int soap_read___saml2__union_AttributeStatementType(struct soap *soap, struct __saml2__union_AttributeStatementType *p) -{ - if (p) - { ::soap_default___saml2__union_AttributeStatementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml2__union_AttributeStatementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml2__union_AttributeStatementType(struct soap *soap, const char *URL, struct __saml2__union_AttributeStatementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml2__union_AttributeStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml2__union_AttributeStatementType(struct soap *soap, struct __saml2__union_AttributeStatementType *p) -{ - if (::soap_read___saml2__union_AttributeStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___saml2__union_EvidenceType_DEFINED -#define SOAP_TYPE___saml2__union_EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_EvidenceType(struct soap*, struct __saml2__union_EvidenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_EvidenceType(struct soap*, const struct __saml2__union_EvidenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_EvidenceType(struct soap*, const char*, int, const struct __saml2__union_EvidenceType *, const char*); -SOAP_FMAC3 struct __saml2__union_EvidenceType * SOAP_FMAC4 soap_in___saml2__union_EvidenceType(struct soap*, const char*, struct __saml2__union_EvidenceType *, const char*); -SOAP_FMAC1 struct __saml2__union_EvidenceType * SOAP_FMAC2 soap_instantiate___saml2__union_EvidenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml2__union_EvidenceType * soap_new___saml2__union_EvidenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml2__union_EvidenceType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml2__union_EvidenceType * soap_new_req___saml2__union_EvidenceType( - struct soap *soap) -{ - struct __saml2__union_EvidenceType *_p = ::soap_new___saml2__union_EvidenceType(soap); - if (_p) - { ::soap_default___saml2__union_EvidenceType(soap, _p); - } - return _p; -} - -inline struct __saml2__union_EvidenceType * soap_new_set___saml2__union_EvidenceType( - struct soap *soap, - char *saml2__AssertionIDRef, - char *saml2__AssertionURIRef, - struct saml2__AssertionType *saml2__Assertion, - struct saml2__EncryptedElementType *saml2__EncryptedAssertion) -{ - struct __saml2__union_EvidenceType *_p = ::soap_new___saml2__union_EvidenceType(soap); - if (_p) - { ::soap_default___saml2__union_EvidenceType(soap, _p); - _p->saml2__AssertionIDRef = saml2__AssertionIDRef; - _p->saml2__AssertionURIRef = saml2__AssertionURIRef; - _p->saml2__Assertion = saml2__Assertion; - _p->saml2__EncryptedAssertion = saml2__EncryptedAssertion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_EvidenceType(struct soap*, const struct __saml2__union_EvidenceType *, const char*, const char*); - -inline int soap_write___saml2__union_EvidenceType(struct soap *soap, struct __saml2__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml2__union_EvidenceType(soap, p), 0) || ::soap_put___saml2__union_EvidenceType(soap, p, "-saml2:union-EvidenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml2__union_EvidenceType(struct soap *soap, const char *URL, struct __saml2__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_EvidenceType(soap, p), 0) || ::soap_put___saml2__union_EvidenceType(soap, p, "-saml2:union-EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml2__union_EvidenceType(struct soap *soap, const char *URL, struct __saml2__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_EvidenceType(soap, p), 0) || ::soap_put___saml2__union_EvidenceType(soap, p, "-saml2:union-EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml2__union_EvidenceType(struct soap *soap, const char *URL, struct __saml2__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_EvidenceType(soap, p), 0) || ::soap_put___saml2__union_EvidenceType(soap, p, "-saml2:union-EvidenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml2__union_EvidenceType * SOAP_FMAC4 soap_get___saml2__union_EvidenceType(struct soap*, struct __saml2__union_EvidenceType *, const char*, const char*); - -inline int soap_read___saml2__union_EvidenceType(struct soap *soap, struct __saml2__union_EvidenceType *p) -{ - if (p) - { ::soap_default___saml2__union_EvidenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml2__union_EvidenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml2__union_EvidenceType(struct soap *soap, const char *URL, struct __saml2__union_EvidenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml2__union_EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml2__union_EvidenceType(struct soap *soap, struct __saml2__union_EvidenceType *p) -{ - if (::soap_read___saml2__union_EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___saml2__union_AdviceType_DEFINED -#define SOAP_TYPE___saml2__union_AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_AdviceType(struct soap*, struct __saml2__union_AdviceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_AdviceType(struct soap*, const struct __saml2__union_AdviceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_AdviceType(struct soap*, const char*, int, const struct __saml2__union_AdviceType *, const char*); -SOAP_FMAC3 struct __saml2__union_AdviceType * SOAP_FMAC4 soap_in___saml2__union_AdviceType(struct soap*, const char*, struct __saml2__union_AdviceType *, const char*); -SOAP_FMAC1 struct __saml2__union_AdviceType * SOAP_FMAC2 soap_instantiate___saml2__union_AdviceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml2__union_AdviceType * soap_new___saml2__union_AdviceType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml2__union_AdviceType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml2__union_AdviceType * soap_new_req___saml2__union_AdviceType( - struct soap *soap) -{ - struct __saml2__union_AdviceType *_p = ::soap_new___saml2__union_AdviceType(soap); - if (_p) - { ::soap_default___saml2__union_AdviceType(soap, _p); - } - return _p; -} - -inline struct __saml2__union_AdviceType * soap_new_set___saml2__union_AdviceType( - struct soap *soap, - char *saml2__AssertionIDRef, - char *saml2__AssertionURIRef, - struct saml2__AssertionType *saml2__Assertion, - struct saml2__EncryptedElementType *saml2__EncryptedAssertion) -{ - struct __saml2__union_AdviceType *_p = ::soap_new___saml2__union_AdviceType(soap); - if (_p) - { ::soap_default___saml2__union_AdviceType(soap, _p); - _p->saml2__AssertionIDRef = saml2__AssertionIDRef; - _p->saml2__AssertionURIRef = saml2__AssertionURIRef; - _p->saml2__Assertion = saml2__Assertion; - _p->saml2__EncryptedAssertion = saml2__EncryptedAssertion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_AdviceType(struct soap*, const struct __saml2__union_AdviceType *, const char*, const char*); - -inline int soap_write___saml2__union_AdviceType(struct soap *soap, struct __saml2__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml2__union_AdviceType(soap, p), 0) || ::soap_put___saml2__union_AdviceType(soap, p, "-saml2:union-AdviceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml2__union_AdviceType(struct soap *soap, const char *URL, struct __saml2__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AdviceType(soap, p), 0) || ::soap_put___saml2__union_AdviceType(soap, p, "-saml2:union-AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml2__union_AdviceType(struct soap *soap, const char *URL, struct __saml2__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AdviceType(soap, p), 0) || ::soap_put___saml2__union_AdviceType(soap, p, "-saml2:union-AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml2__union_AdviceType(struct soap *soap, const char *URL, struct __saml2__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AdviceType(soap, p), 0) || ::soap_put___saml2__union_AdviceType(soap, p, "-saml2:union-AdviceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml2__union_AdviceType * SOAP_FMAC4 soap_get___saml2__union_AdviceType(struct soap*, struct __saml2__union_AdviceType *, const char*, const char*); - -inline int soap_read___saml2__union_AdviceType(struct soap *soap, struct __saml2__union_AdviceType *p) -{ - if (p) - { ::soap_default___saml2__union_AdviceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml2__union_AdviceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml2__union_AdviceType(struct soap *soap, const char *URL, struct __saml2__union_AdviceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml2__union_AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml2__union_AdviceType(struct soap *soap, struct __saml2__union_AdviceType *p) -{ - if (::soap_read___saml2__union_AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___saml2__union_ConditionsType_DEFINED -#define SOAP_TYPE___saml2__union_ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_ConditionsType(struct soap*, struct __saml2__union_ConditionsType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_ConditionsType(struct soap*, const struct __saml2__union_ConditionsType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_ConditionsType(struct soap*, const char*, int, const struct __saml2__union_ConditionsType *, const char*); -SOAP_FMAC3 struct __saml2__union_ConditionsType * SOAP_FMAC4 soap_in___saml2__union_ConditionsType(struct soap*, const char*, struct __saml2__union_ConditionsType *, const char*); -SOAP_FMAC1 struct __saml2__union_ConditionsType * SOAP_FMAC2 soap_instantiate___saml2__union_ConditionsType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml2__union_ConditionsType * soap_new___saml2__union_ConditionsType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml2__union_ConditionsType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml2__union_ConditionsType * soap_new_req___saml2__union_ConditionsType( - struct soap *soap) -{ - struct __saml2__union_ConditionsType *_p = ::soap_new___saml2__union_ConditionsType(soap); - if (_p) - { ::soap_default___saml2__union_ConditionsType(soap, _p); - } - return _p; -} - -inline struct __saml2__union_ConditionsType * soap_new_set___saml2__union_ConditionsType( - struct soap *soap, - struct saml2__ConditionAbstractType *saml2__Condition, - struct saml2__AudienceRestrictionType *saml2__AudienceRestriction, - struct saml2__OneTimeUseType *saml2__OneTimeUse, - struct saml2__ProxyRestrictionType *saml2__ProxyRestriction) -{ - struct __saml2__union_ConditionsType *_p = ::soap_new___saml2__union_ConditionsType(soap); - if (_p) - { ::soap_default___saml2__union_ConditionsType(soap, _p); - _p->saml2__Condition = saml2__Condition; - _p->saml2__AudienceRestriction = saml2__AudienceRestriction; - _p->saml2__OneTimeUse = saml2__OneTimeUse; - _p->saml2__ProxyRestriction = saml2__ProxyRestriction; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_ConditionsType(struct soap*, const struct __saml2__union_ConditionsType *, const char*, const char*); - -inline int soap_write___saml2__union_ConditionsType(struct soap *soap, struct __saml2__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml2__union_ConditionsType(soap, p), 0) || ::soap_put___saml2__union_ConditionsType(soap, p, "-saml2:union-ConditionsType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml2__union_ConditionsType(struct soap *soap, const char *URL, struct __saml2__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_ConditionsType(soap, p), 0) || ::soap_put___saml2__union_ConditionsType(soap, p, "-saml2:union-ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml2__union_ConditionsType(struct soap *soap, const char *URL, struct __saml2__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_ConditionsType(soap, p), 0) || ::soap_put___saml2__union_ConditionsType(soap, p, "-saml2:union-ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml2__union_ConditionsType(struct soap *soap, const char *URL, struct __saml2__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_ConditionsType(soap, p), 0) || ::soap_put___saml2__union_ConditionsType(soap, p, "-saml2:union-ConditionsType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml2__union_ConditionsType * SOAP_FMAC4 soap_get___saml2__union_ConditionsType(struct soap*, struct __saml2__union_ConditionsType *, const char*, const char*); - -inline int soap_read___saml2__union_ConditionsType(struct soap *soap, struct __saml2__union_ConditionsType *p) -{ - if (p) - { ::soap_default___saml2__union_ConditionsType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml2__union_ConditionsType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml2__union_ConditionsType(struct soap *soap, const char *URL, struct __saml2__union_ConditionsType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml2__union_ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml2__union_ConditionsType(struct soap *soap, struct __saml2__union_ConditionsType *p) -{ - if (::soap_read___saml2__union_ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___saml2__union_AssertionType_DEFINED -#define SOAP_TYPE___saml2__union_AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml2__union_AssertionType(struct soap*, struct __saml2__union_AssertionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml2__union_AssertionType(struct soap*, const struct __saml2__union_AssertionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml2__union_AssertionType(struct soap*, const char*, int, const struct __saml2__union_AssertionType *, const char*); -SOAP_FMAC3 struct __saml2__union_AssertionType * SOAP_FMAC4 soap_in___saml2__union_AssertionType(struct soap*, const char*, struct __saml2__union_AssertionType *, const char*); -SOAP_FMAC1 struct __saml2__union_AssertionType * SOAP_FMAC2 soap_instantiate___saml2__union_AssertionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml2__union_AssertionType * soap_new___saml2__union_AssertionType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml2__union_AssertionType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml2__union_AssertionType * soap_new_req___saml2__union_AssertionType( - struct soap *soap) -{ - struct __saml2__union_AssertionType *_p = ::soap_new___saml2__union_AssertionType(soap); - if (_p) - { ::soap_default___saml2__union_AssertionType(soap, _p); - } - return _p; -} - -inline struct __saml2__union_AssertionType * soap_new_set___saml2__union_AssertionType( - struct soap *soap, - struct saml2__StatementAbstractType *saml2__Statement, - struct saml2__AuthnStatementType *saml2__AuthnStatement, - struct saml2__AuthzDecisionStatementType *saml2__AuthzDecisionStatement, - struct saml2__AttributeStatementType *saml2__AttributeStatement) -{ - struct __saml2__union_AssertionType *_p = ::soap_new___saml2__union_AssertionType(soap); - if (_p) - { ::soap_default___saml2__union_AssertionType(soap, _p); - _p->saml2__Statement = saml2__Statement; - _p->saml2__AuthnStatement = saml2__AuthnStatement; - _p->saml2__AuthzDecisionStatement = saml2__AuthzDecisionStatement; - _p->saml2__AttributeStatement = saml2__AttributeStatement; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml2__union_AssertionType(struct soap*, const struct __saml2__union_AssertionType *, const char*, const char*); - -inline int soap_write___saml2__union_AssertionType(struct soap *soap, struct __saml2__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml2__union_AssertionType(soap, p), 0) || ::soap_put___saml2__union_AssertionType(soap, p, "-saml2:union-AssertionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml2__union_AssertionType(struct soap *soap, const char *URL, struct __saml2__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AssertionType(soap, p), 0) || ::soap_put___saml2__union_AssertionType(soap, p, "-saml2:union-AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml2__union_AssertionType(struct soap *soap, const char *URL, struct __saml2__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AssertionType(soap, p), 0) || ::soap_put___saml2__union_AssertionType(soap, p, "-saml2:union-AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml2__union_AssertionType(struct soap *soap, const char *URL, struct __saml2__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml2__union_AssertionType(soap, p), 0) || ::soap_put___saml2__union_AssertionType(soap, p, "-saml2:union-AssertionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml2__union_AssertionType * SOAP_FMAC4 soap_get___saml2__union_AssertionType(struct soap*, struct __saml2__union_AssertionType *, const char*, const char*); - -inline int soap_read___saml2__union_AssertionType(struct soap *soap, struct __saml2__union_AssertionType *p) -{ - if (p) - { ::soap_default___saml2__union_AssertionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml2__union_AssertionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml2__union_AssertionType(struct soap *soap, const char *URL, struct __saml2__union_AssertionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml2__union_AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml2__union_AssertionType(struct soap *soap, struct __saml2__union_AssertionType *p) -{ - if (::soap_read___saml2__union_AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AttributeType_DEFINED -#define SOAP_TYPE_saml2__AttributeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AttributeType(struct soap*, struct saml2__AttributeType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AttributeType(struct soap*, const struct saml2__AttributeType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AttributeType(struct soap*, const char*, int, const struct saml2__AttributeType *, const char*); -SOAP_FMAC3 struct saml2__AttributeType * SOAP_FMAC4 soap_in_saml2__AttributeType(struct soap*, const char*, struct saml2__AttributeType *, const char*); -SOAP_FMAC1 struct saml2__AttributeType * SOAP_FMAC2 soap_instantiate_saml2__AttributeType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AttributeType * soap_new_saml2__AttributeType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AttributeType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AttributeType * soap_new_req_saml2__AttributeType( - struct soap *soap, - int __sizeAttributeValue, - char **saml2__AttributeValue, - char *Name) -{ - struct saml2__AttributeType *_p = ::soap_new_saml2__AttributeType(soap); - if (_p) - { ::soap_default_saml2__AttributeType(soap, _p); - _p->__sizeAttributeValue = __sizeAttributeValue; - _p->saml2__AttributeValue = saml2__AttributeValue; - _p->Name = Name; - } - return _p; -} - -inline struct saml2__AttributeType * soap_new_set_saml2__AttributeType( - struct soap *soap, - int __sizeAttributeValue, - char **saml2__AttributeValue, - char *Name, - char *NameFormat, - char *FriendlyName) -{ - struct saml2__AttributeType *_p = ::soap_new_saml2__AttributeType(soap); - if (_p) - { ::soap_default_saml2__AttributeType(soap, _p); - _p->__sizeAttributeValue = __sizeAttributeValue; - _p->saml2__AttributeValue = saml2__AttributeValue; - _p->Name = Name; - _p->NameFormat = NameFormat; - _p->FriendlyName = FriendlyName; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AttributeType(struct soap*, const struct saml2__AttributeType *, const char*, const char*); - -inline int soap_write_saml2__AttributeType(struct soap *soap, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AttributeType(soap, p), 0) || ::soap_put_saml2__AttributeType(soap, p, "saml2:AttributeType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AttributeType(struct soap *soap, const char *URL, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AttributeType(soap, p), 0) || ::soap_put_saml2__AttributeType(soap, p, "saml2:AttributeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AttributeType(struct soap *soap, const char *URL, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AttributeType(soap, p), 0) || ::soap_put_saml2__AttributeType(soap, p, "saml2:AttributeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AttributeType(struct soap *soap, const char *URL, struct saml2__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AttributeType(soap, p), 0) || ::soap_put_saml2__AttributeType(soap, p, "saml2:AttributeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AttributeType * SOAP_FMAC4 soap_get_saml2__AttributeType(struct soap*, struct saml2__AttributeType *, const char*, const char*); - -inline int soap_read_saml2__AttributeType(struct soap *soap, struct saml2__AttributeType *p) -{ - if (p) - { ::soap_default_saml2__AttributeType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AttributeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AttributeType(struct soap *soap, const char *URL, struct saml2__AttributeType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AttributeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AttributeType(struct soap *soap, struct saml2__AttributeType *p) -{ - if (::soap_read_saml2__AttributeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AttributeStatementType_DEFINED -#define SOAP_TYPE_saml2__AttributeStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AttributeStatementType(struct soap*, struct saml2__AttributeStatementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AttributeStatementType(struct soap*, const struct saml2__AttributeStatementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AttributeStatementType(struct soap*, const char*, int, const struct saml2__AttributeStatementType *, const char*); -SOAP_FMAC3 struct saml2__AttributeStatementType * SOAP_FMAC4 soap_in_saml2__AttributeStatementType(struct soap*, const char*, struct saml2__AttributeStatementType *, const char*); -SOAP_FMAC1 struct saml2__AttributeStatementType * SOAP_FMAC2 soap_instantiate_saml2__AttributeStatementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AttributeStatementType * soap_new_saml2__AttributeStatementType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AttributeStatementType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AttributeStatementType * soap_new_req_saml2__AttributeStatementType( - struct soap *soap, - int __size_AttributeStatementType, - struct __saml2__union_AttributeStatementType *__union_AttributeStatementType) -{ - struct saml2__AttributeStatementType *_p = ::soap_new_saml2__AttributeStatementType(soap); - if (_p) - { ::soap_default_saml2__AttributeStatementType(soap, _p); - _p->__size_AttributeStatementType = __size_AttributeStatementType; - _p->__union_AttributeStatementType = __union_AttributeStatementType; - } - return _p; -} - -inline struct saml2__AttributeStatementType * soap_new_set_saml2__AttributeStatementType( - struct soap *soap, - int __size_AttributeStatementType, - struct __saml2__union_AttributeStatementType *__union_AttributeStatementType) -{ - struct saml2__AttributeStatementType *_p = ::soap_new_saml2__AttributeStatementType(soap); - if (_p) - { ::soap_default_saml2__AttributeStatementType(soap, _p); - _p->__size_AttributeStatementType = __size_AttributeStatementType; - _p->__union_AttributeStatementType = __union_AttributeStatementType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AttributeStatementType(struct soap*, const struct saml2__AttributeStatementType *, const char*, const char*); - -inline int soap_write_saml2__AttributeStatementType(struct soap *soap, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AttributeStatementType(soap, p), 0) || ::soap_put_saml2__AttributeStatementType(soap, p, "saml2:AttributeStatementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AttributeStatementType(struct soap *soap, const char *URL, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AttributeStatementType(soap, p), 0) || ::soap_put_saml2__AttributeStatementType(soap, p, "saml2:AttributeStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AttributeStatementType(struct soap *soap, const char *URL, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AttributeStatementType(soap, p), 0) || ::soap_put_saml2__AttributeStatementType(soap, p, "saml2:AttributeStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AttributeStatementType(struct soap *soap, const char *URL, struct saml2__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AttributeStatementType(soap, p), 0) || ::soap_put_saml2__AttributeStatementType(soap, p, "saml2:AttributeStatementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AttributeStatementType * SOAP_FMAC4 soap_get_saml2__AttributeStatementType(struct soap*, struct saml2__AttributeStatementType *, const char*, const char*); - -inline int soap_read_saml2__AttributeStatementType(struct soap *soap, struct saml2__AttributeStatementType *p) -{ - if (p) - { ::soap_default_saml2__AttributeStatementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AttributeStatementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AttributeStatementType(struct soap *soap, const char *URL, struct saml2__AttributeStatementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AttributeStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AttributeStatementType(struct soap *soap, struct saml2__AttributeStatementType *p) -{ - if (::soap_read_saml2__AttributeStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__EvidenceType_DEFINED -#define SOAP_TYPE_saml2__EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__EvidenceType(struct soap*, struct saml2__EvidenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EvidenceType(struct soap*, const struct saml2__EvidenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__EvidenceType(struct soap*, const char*, int, const struct saml2__EvidenceType *, const char*); -SOAP_FMAC3 struct saml2__EvidenceType * SOAP_FMAC4 soap_in_saml2__EvidenceType(struct soap*, const char*, struct saml2__EvidenceType *, const char*); -SOAP_FMAC1 struct saml2__EvidenceType * SOAP_FMAC2 soap_instantiate_saml2__EvidenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__EvidenceType * soap_new_saml2__EvidenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__EvidenceType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__EvidenceType * soap_new_req_saml2__EvidenceType( - struct soap *soap, - int __size_EvidenceType, - struct __saml2__union_EvidenceType *__union_EvidenceType) -{ - struct saml2__EvidenceType *_p = ::soap_new_saml2__EvidenceType(soap); - if (_p) - { ::soap_default_saml2__EvidenceType(soap, _p); - _p->__size_EvidenceType = __size_EvidenceType; - _p->__union_EvidenceType = __union_EvidenceType; - } - return _p; -} - -inline struct saml2__EvidenceType * soap_new_set_saml2__EvidenceType( - struct soap *soap, - int __size_EvidenceType, - struct __saml2__union_EvidenceType *__union_EvidenceType) -{ - struct saml2__EvidenceType *_p = ::soap_new_saml2__EvidenceType(soap); - if (_p) - { ::soap_default_saml2__EvidenceType(soap, _p); - _p->__size_EvidenceType = __size_EvidenceType; - _p->__union_EvidenceType = __union_EvidenceType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__EvidenceType(struct soap*, const struct saml2__EvidenceType *, const char*, const char*); - -inline int soap_write_saml2__EvidenceType(struct soap *soap, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__EvidenceType(soap, p), 0) || ::soap_put_saml2__EvidenceType(soap, p, "saml2:EvidenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__EvidenceType(struct soap *soap, const char *URL, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__EvidenceType(soap, p), 0) || ::soap_put_saml2__EvidenceType(soap, p, "saml2:EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__EvidenceType(struct soap *soap, const char *URL, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__EvidenceType(soap, p), 0) || ::soap_put_saml2__EvidenceType(soap, p, "saml2:EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__EvidenceType(struct soap *soap, const char *URL, struct saml2__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__EvidenceType(soap, p), 0) || ::soap_put_saml2__EvidenceType(soap, p, "saml2:EvidenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__EvidenceType * SOAP_FMAC4 soap_get_saml2__EvidenceType(struct soap*, struct saml2__EvidenceType *, const char*, const char*); - -inline int soap_read_saml2__EvidenceType(struct soap *soap, struct saml2__EvidenceType *p) -{ - if (p) - { ::soap_default_saml2__EvidenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__EvidenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__EvidenceType(struct soap *soap, const char *URL, struct saml2__EvidenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__EvidenceType(struct soap *soap, struct saml2__EvidenceType *p) -{ - if (::soap_read_saml2__EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__ActionType_DEFINED -#define SOAP_TYPE_saml2__ActionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ActionType(struct soap*, struct saml2__ActionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ActionType(struct soap*, const struct saml2__ActionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ActionType(struct soap*, const char*, int, const struct saml2__ActionType *, const char*); -SOAP_FMAC3 struct saml2__ActionType * SOAP_FMAC4 soap_in_saml2__ActionType(struct soap*, const char*, struct saml2__ActionType *, const char*); -SOAP_FMAC1 struct saml2__ActionType * SOAP_FMAC2 soap_instantiate_saml2__ActionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__ActionType * soap_new_saml2__ActionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__ActionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__ActionType * soap_new_req_saml2__ActionType( - struct soap *soap, - char *Namespace) -{ - struct saml2__ActionType *_p = ::soap_new_saml2__ActionType(soap); - if (_p) - { ::soap_default_saml2__ActionType(soap, _p); - _p->Namespace = Namespace; - } - return _p; -} - -inline struct saml2__ActionType * soap_new_set_saml2__ActionType( - struct soap *soap, - char *__item, - char *Namespace) -{ - struct saml2__ActionType *_p = ::soap_new_saml2__ActionType(soap); - if (_p) - { ::soap_default_saml2__ActionType(soap, _p); - _p->__item = __item; - _p->Namespace = Namespace; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ActionType(struct soap*, const struct saml2__ActionType *, const char*, const char*); - -inline int soap_write_saml2__ActionType(struct soap *soap, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__ActionType(soap, p), 0) || ::soap_put_saml2__ActionType(soap, p, "saml2:ActionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__ActionType(struct soap *soap, const char *URL, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ActionType(soap, p), 0) || ::soap_put_saml2__ActionType(soap, p, "saml2:ActionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__ActionType(struct soap *soap, const char *URL, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ActionType(soap, p), 0) || ::soap_put_saml2__ActionType(soap, p, "saml2:ActionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__ActionType(struct soap *soap, const char *URL, struct saml2__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ActionType(soap, p), 0) || ::soap_put_saml2__ActionType(soap, p, "saml2:ActionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__ActionType * SOAP_FMAC4 soap_get_saml2__ActionType(struct soap*, struct saml2__ActionType *, const char*, const char*); - -inline int soap_read_saml2__ActionType(struct soap *soap, struct saml2__ActionType *p) -{ - if (p) - { ::soap_default_saml2__ActionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__ActionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__ActionType(struct soap *soap, const char *URL, struct saml2__ActionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__ActionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__ActionType(struct soap *soap, struct saml2__ActionType *p) -{ - if (::soap_read_saml2__ActionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AuthzDecisionStatementType_DEFINED -#define SOAP_TYPE_saml2__AuthzDecisionStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AuthzDecisionStatementType(struct soap*, struct saml2__AuthzDecisionStatementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthzDecisionStatementType(struct soap*, const struct saml2__AuthzDecisionStatementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AuthzDecisionStatementType(struct soap*, const char*, int, const struct saml2__AuthzDecisionStatementType *, const char*); -SOAP_FMAC3 struct saml2__AuthzDecisionStatementType * SOAP_FMAC4 soap_in_saml2__AuthzDecisionStatementType(struct soap*, const char*, struct saml2__AuthzDecisionStatementType *, const char*); -SOAP_FMAC1 struct saml2__AuthzDecisionStatementType * SOAP_FMAC2 soap_instantiate_saml2__AuthzDecisionStatementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AuthzDecisionStatementType * soap_new_saml2__AuthzDecisionStatementType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AuthzDecisionStatementType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AuthzDecisionStatementType * soap_new_req_saml2__AuthzDecisionStatementType( - struct soap *soap, - int __sizeAction, - struct saml2__ActionType *saml2__Action, - char *Resource, - enum saml2__DecisionType Decision) -{ - struct saml2__AuthzDecisionStatementType *_p = ::soap_new_saml2__AuthzDecisionStatementType(soap); - if (_p) - { ::soap_default_saml2__AuthzDecisionStatementType(soap, _p); - _p->__sizeAction = __sizeAction; - _p->saml2__Action = saml2__Action; - _p->Resource = Resource; - _p->Decision = Decision; - } - return _p; -} - -inline struct saml2__AuthzDecisionStatementType * soap_new_set_saml2__AuthzDecisionStatementType( - struct soap *soap, - int __sizeAction, - struct saml2__ActionType *saml2__Action, - struct saml2__EvidenceType *saml2__Evidence, - char *Resource, - enum saml2__DecisionType Decision) -{ - struct saml2__AuthzDecisionStatementType *_p = ::soap_new_saml2__AuthzDecisionStatementType(soap); - if (_p) - { ::soap_default_saml2__AuthzDecisionStatementType(soap, _p); - _p->__sizeAction = __sizeAction; - _p->saml2__Action = saml2__Action; - _p->saml2__Evidence = saml2__Evidence; - _p->Resource = Resource; - _p->Decision = Decision; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AuthzDecisionStatementType(struct soap*, const struct saml2__AuthzDecisionStatementType *, const char*, const char*); - -inline int soap_write_saml2__AuthzDecisionStatementType(struct soap *soap, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AuthzDecisionStatementType(soap, p), 0) || ::soap_put_saml2__AuthzDecisionStatementType(soap, p, "saml2:AuthzDecisionStatementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AuthzDecisionStatementType(struct soap *soap, const char *URL, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthzDecisionStatementType(soap, p), 0) || ::soap_put_saml2__AuthzDecisionStatementType(soap, p, "saml2:AuthzDecisionStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AuthzDecisionStatementType(struct soap *soap, const char *URL, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthzDecisionStatementType(soap, p), 0) || ::soap_put_saml2__AuthzDecisionStatementType(soap, p, "saml2:AuthzDecisionStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AuthzDecisionStatementType(struct soap *soap, const char *URL, struct saml2__AuthzDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthzDecisionStatementType(soap, p), 0) || ::soap_put_saml2__AuthzDecisionStatementType(soap, p, "saml2:AuthzDecisionStatementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AuthzDecisionStatementType * SOAP_FMAC4 soap_get_saml2__AuthzDecisionStatementType(struct soap*, struct saml2__AuthzDecisionStatementType *, const char*, const char*); - -inline int soap_read_saml2__AuthzDecisionStatementType(struct soap *soap, struct saml2__AuthzDecisionStatementType *p) -{ - if (p) - { ::soap_default_saml2__AuthzDecisionStatementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AuthzDecisionStatementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AuthzDecisionStatementType(struct soap *soap, const char *URL, struct saml2__AuthzDecisionStatementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AuthzDecisionStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AuthzDecisionStatementType(struct soap *soap, struct saml2__AuthzDecisionStatementType *p) -{ - if (::soap_read_saml2__AuthzDecisionStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AuthnContextType_DEFINED -#define SOAP_TYPE_saml2__AuthnContextType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AuthnContextType(struct soap*, struct saml2__AuthnContextType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthnContextType(struct soap*, const struct saml2__AuthnContextType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AuthnContextType(struct soap*, const char*, int, const struct saml2__AuthnContextType *, const char*); -SOAP_FMAC3 struct saml2__AuthnContextType * SOAP_FMAC4 soap_in_saml2__AuthnContextType(struct soap*, const char*, struct saml2__AuthnContextType *, const char*); -SOAP_FMAC1 struct saml2__AuthnContextType * SOAP_FMAC2 soap_instantiate_saml2__AuthnContextType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AuthnContextType * soap_new_saml2__AuthnContextType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AuthnContextType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AuthnContextType * soap_new_req_saml2__AuthnContextType( - struct soap *soap, - int __sizeAuthenticatingAuthority, - char **saml2__AuthenticatingAuthority) -{ - struct saml2__AuthnContextType *_p = ::soap_new_saml2__AuthnContextType(soap); - if (_p) - { ::soap_default_saml2__AuthnContextType(soap, _p); - _p->__sizeAuthenticatingAuthority = __sizeAuthenticatingAuthority; - _p->saml2__AuthenticatingAuthority = saml2__AuthenticatingAuthority; - } - return _p; -} - -inline struct saml2__AuthnContextType * soap_new_set_saml2__AuthnContextType( - struct soap *soap, - char *saml2__AuthnContextClassRef, - char *saml2__AuthnContextDecl, - char *saml2__AuthnContextDeclRef, - char *saml2__AuthnContextDecl_, - char *saml2__AuthnContextDeclRef_, - int __sizeAuthenticatingAuthority, - char **saml2__AuthenticatingAuthority) -{ - struct saml2__AuthnContextType *_p = ::soap_new_saml2__AuthnContextType(soap); - if (_p) - { ::soap_default_saml2__AuthnContextType(soap, _p); - _p->saml2__AuthnContextClassRef = saml2__AuthnContextClassRef; - _p->saml2__AuthnContextDecl = saml2__AuthnContextDecl; - _p->saml2__AuthnContextDeclRef = saml2__AuthnContextDeclRef; - _p->saml2__AuthnContextDecl_ = saml2__AuthnContextDecl_; - _p->saml2__AuthnContextDeclRef_ = saml2__AuthnContextDeclRef_; - _p->__sizeAuthenticatingAuthority = __sizeAuthenticatingAuthority; - _p->saml2__AuthenticatingAuthority = saml2__AuthenticatingAuthority; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AuthnContextType(struct soap*, const struct saml2__AuthnContextType *, const char*, const char*); - -inline int soap_write_saml2__AuthnContextType(struct soap *soap, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AuthnContextType(soap, p), 0) || ::soap_put_saml2__AuthnContextType(soap, p, "saml2:AuthnContextType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AuthnContextType(struct soap *soap, const char *URL, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthnContextType(soap, p), 0) || ::soap_put_saml2__AuthnContextType(soap, p, "saml2:AuthnContextType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AuthnContextType(struct soap *soap, const char *URL, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthnContextType(soap, p), 0) || ::soap_put_saml2__AuthnContextType(soap, p, "saml2:AuthnContextType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AuthnContextType(struct soap *soap, const char *URL, struct saml2__AuthnContextType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthnContextType(soap, p), 0) || ::soap_put_saml2__AuthnContextType(soap, p, "saml2:AuthnContextType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AuthnContextType * SOAP_FMAC4 soap_get_saml2__AuthnContextType(struct soap*, struct saml2__AuthnContextType *, const char*, const char*); - -inline int soap_read_saml2__AuthnContextType(struct soap *soap, struct saml2__AuthnContextType *p) -{ - if (p) - { ::soap_default_saml2__AuthnContextType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AuthnContextType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AuthnContextType(struct soap *soap, const char *URL, struct saml2__AuthnContextType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AuthnContextType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AuthnContextType(struct soap *soap, struct saml2__AuthnContextType *p) -{ - if (::soap_read_saml2__AuthnContextType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__SubjectLocalityType_DEFINED -#define SOAP_TYPE_saml2__SubjectLocalityType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectLocalityType(struct soap*, struct saml2__SubjectLocalityType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectLocalityType(struct soap*, const struct saml2__SubjectLocalityType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectLocalityType(struct soap*, const char*, int, const struct saml2__SubjectLocalityType *, const char*); -SOAP_FMAC3 struct saml2__SubjectLocalityType * SOAP_FMAC4 soap_in_saml2__SubjectLocalityType(struct soap*, const char*, struct saml2__SubjectLocalityType *, const char*); -SOAP_FMAC1 struct saml2__SubjectLocalityType * SOAP_FMAC2 soap_instantiate_saml2__SubjectLocalityType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__SubjectLocalityType * soap_new_saml2__SubjectLocalityType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__SubjectLocalityType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__SubjectLocalityType * soap_new_req_saml2__SubjectLocalityType( - struct soap *soap) -{ - struct saml2__SubjectLocalityType *_p = ::soap_new_saml2__SubjectLocalityType(soap); - if (_p) - { ::soap_default_saml2__SubjectLocalityType(soap, _p); - } - return _p; -} - -inline struct saml2__SubjectLocalityType * soap_new_set_saml2__SubjectLocalityType( - struct soap *soap, - char *Address, - char *DNSName) -{ - struct saml2__SubjectLocalityType *_p = ::soap_new_saml2__SubjectLocalityType(soap); - if (_p) - { ::soap_default_saml2__SubjectLocalityType(soap, _p); - _p->Address = Address; - _p->DNSName = DNSName; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectLocalityType(struct soap*, const struct saml2__SubjectLocalityType *, const char*, const char*); - -inline int soap_write_saml2__SubjectLocalityType(struct soap *soap, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__SubjectLocalityType(soap, p), 0) || ::soap_put_saml2__SubjectLocalityType(soap, p, "saml2:SubjectLocalityType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__SubjectLocalityType(struct soap *soap, const char *URL, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectLocalityType(soap, p), 0) || ::soap_put_saml2__SubjectLocalityType(soap, p, "saml2:SubjectLocalityType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__SubjectLocalityType(struct soap *soap, const char *URL, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectLocalityType(soap, p), 0) || ::soap_put_saml2__SubjectLocalityType(soap, p, "saml2:SubjectLocalityType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__SubjectLocalityType(struct soap *soap, const char *URL, struct saml2__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectLocalityType(soap, p), 0) || ::soap_put_saml2__SubjectLocalityType(soap, p, "saml2:SubjectLocalityType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__SubjectLocalityType * SOAP_FMAC4 soap_get_saml2__SubjectLocalityType(struct soap*, struct saml2__SubjectLocalityType *, const char*, const char*); - -inline int soap_read_saml2__SubjectLocalityType(struct soap *soap, struct saml2__SubjectLocalityType *p) -{ - if (p) - { ::soap_default_saml2__SubjectLocalityType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__SubjectLocalityType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__SubjectLocalityType(struct soap *soap, const char *URL, struct saml2__SubjectLocalityType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__SubjectLocalityType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__SubjectLocalityType(struct soap *soap, struct saml2__SubjectLocalityType *p) -{ - if (::soap_read_saml2__SubjectLocalityType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AuthnStatementType_DEFINED -#define SOAP_TYPE_saml2__AuthnStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AuthnStatementType(struct soap*, struct saml2__AuthnStatementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AuthnStatementType(struct soap*, const struct saml2__AuthnStatementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AuthnStatementType(struct soap*, const char*, int, const struct saml2__AuthnStatementType *, const char*); -SOAP_FMAC3 struct saml2__AuthnStatementType * SOAP_FMAC4 soap_in_saml2__AuthnStatementType(struct soap*, const char*, struct saml2__AuthnStatementType *, const char*); -SOAP_FMAC1 struct saml2__AuthnStatementType * SOAP_FMAC2 soap_instantiate_saml2__AuthnStatementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AuthnStatementType * soap_new_saml2__AuthnStatementType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AuthnStatementType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AuthnStatementType * soap_new_req_saml2__AuthnStatementType( - struct soap *soap, - struct saml2__AuthnContextType *saml2__AuthnContext, - const struct timeval& AuthnInstant) -{ - struct saml2__AuthnStatementType *_p = ::soap_new_saml2__AuthnStatementType(soap); - if (_p) - { ::soap_default_saml2__AuthnStatementType(soap, _p); - _p->saml2__AuthnContext = saml2__AuthnContext; - _p->AuthnInstant = AuthnInstant; - } - return _p; -} - -inline struct saml2__AuthnStatementType * soap_new_set_saml2__AuthnStatementType( - struct soap *soap, - struct saml2__SubjectLocalityType *saml2__SubjectLocality, - struct saml2__AuthnContextType *saml2__AuthnContext, - const struct timeval& AuthnInstant, - char *SessionIndex, - struct timeval *SessionNotOnOrAfter) -{ - struct saml2__AuthnStatementType *_p = ::soap_new_saml2__AuthnStatementType(soap); - if (_p) - { ::soap_default_saml2__AuthnStatementType(soap, _p); - _p->saml2__SubjectLocality = saml2__SubjectLocality; - _p->saml2__AuthnContext = saml2__AuthnContext; - _p->AuthnInstant = AuthnInstant; - _p->SessionIndex = SessionIndex; - _p->SessionNotOnOrAfter = SessionNotOnOrAfter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AuthnStatementType(struct soap*, const struct saml2__AuthnStatementType *, const char*, const char*); - -inline int soap_write_saml2__AuthnStatementType(struct soap *soap, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AuthnStatementType(soap, p), 0) || ::soap_put_saml2__AuthnStatementType(soap, p, "saml2:AuthnStatementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AuthnStatementType(struct soap *soap, const char *URL, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthnStatementType(soap, p), 0) || ::soap_put_saml2__AuthnStatementType(soap, p, "saml2:AuthnStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AuthnStatementType(struct soap *soap, const char *URL, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthnStatementType(soap, p), 0) || ::soap_put_saml2__AuthnStatementType(soap, p, "saml2:AuthnStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AuthnStatementType(struct soap *soap, const char *URL, struct saml2__AuthnStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AuthnStatementType(soap, p), 0) || ::soap_put_saml2__AuthnStatementType(soap, p, "saml2:AuthnStatementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AuthnStatementType * SOAP_FMAC4 soap_get_saml2__AuthnStatementType(struct soap*, struct saml2__AuthnStatementType *, const char*, const char*); - -inline int soap_read_saml2__AuthnStatementType(struct soap *soap, struct saml2__AuthnStatementType *p) -{ - if (p) - { ::soap_default_saml2__AuthnStatementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AuthnStatementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AuthnStatementType(struct soap *soap, const char *URL, struct saml2__AuthnStatementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AuthnStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AuthnStatementType(struct soap *soap, struct saml2__AuthnStatementType *p) -{ - if (::soap_read_saml2__AuthnStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__StatementAbstractType_DEFINED -#define SOAP_TYPE_saml2__StatementAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__StatementAbstractType(struct soap*, struct saml2__StatementAbstractType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__StatementAbstractType(struct soap*, const struct saml2__StatementAbstractType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__StatementAbstractType(struct soap*, const char*, int, const struct saml2__StatementAbstractType *, const char*); -SOAP_FMAC3 struct saml2__StatementAbstractType * SOAP_FMAC4 soap_in_saml2__StatementAbstractType(struct soap*, const char*, struct saml2__StatementAbstractType *, const char*); -SOAP_FMAC1 struct saml2__StatementAbstractType * SOAP_FMAC2 soap_instantiate_saml2__StatementAbstractType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__StatementAbstractType * soap_new_saml2__StatementAbstractType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__StatementAbstractType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__StatementAbstractType * soap_new_req_saml2__StatementAbstractType( - struct soap *soap) -{ - struct saml2__StatementAbstractType *_p = ::soap_new_saml2__StatementAbstractType(soap); - if (_p) - { ::soap_default_saml2__StatementAbstractType(soap, _p); - } - return _p; -} - -inline struct saml2__StatementAbstractType * soap_new_set_saml2__StatementAbstractType( - struct soap *soap) -{ - struct saml2__StatementAbstractType *_p = ::soap_new_saml2__StatementAbstractType(soap); - if (_p) - { ::soap_default_saml2__StatementAbstractType(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__StatementAbstractType(struct soap*, const struct saml2__StatementAbstractType *, const char*, const char*); - -inline int soap_write_saml2__StatementAbstractType(struct soap *soap, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__StatementAbstractType(soap, p), 0) || ::soap_put_saml2__StatementAbstractType(soap, p, "saml2:StatementAbstractType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__StatementAbstractType(struct soap *soap, const char *URL, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__StatementAbstractType(soap, p), 0) || ::soap_put_saml2__StatementAbstractType(soap, p, "saml2:StatementAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__StatementAbstractType(struct soap *soap, const char *URL, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__StatementAbstractType(soap, p), 0) || ::soap_put_saml2__StatementAbstractType(soap, p, "saml2:StatementAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__StatementAbstractType(struct soap *soap, const char *URL, struct saml2__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__StatementAbstractType(soap, p), 0) || ::soap_put_saml2__StatementAbstractType(soap, p, "saml2:StatementAbstractType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__StatementAbstractType * SOAP_FMAC4 soap_get_saml2__StatementAbstractType(struct soap*, struct saml2__StatementAbstractType *, const char*, const char*); - -inline int soap_read_saml2__StatementAbstractType(struct soap *soap, struct saml2__StatementAbstractType *p) -{ - if (p) - { ::soap_default_saml2__StatementAbstractType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__StatementAbstractType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__StatementAbstractType(struct soap *soap, const char *URL, struct saml2__StatementAbstractType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__StatementAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__StatementAbstractType(struct soap *soap, struct saml2__StatementAbstractType *p) -{ - if (::soap_read_saml2__StatementAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AdviceType_DEFINED -#define SOAP_TYPE_saml2__AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AdviceType(struct soap*, struct saml2__AdviceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AdviceType(struct soap*, const struct saml2__AdviceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AdviceType(struct soap*, const char*, int, const struct saml2__AdviceType *, const char*); -SOAP_FMAC3 struct saml2__AdviceType * SOAP_FMAC4 soap_in_saml2__AdviceType(struct soap*, const char*, struct saml2__AdviceType *, const char*); -SOAP_FMAC1 struct saml2__AdviceType * SOAP_FMAC2 soap_instantiate_saml2__AdviceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AdviceType * soap_new_saml2__AdviceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AdviceType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AdviceType * soap_new_req_saml2__AdviceType( - struct soap *soap, - int __size_AdviceType, - struct __saml2__union_AdviceType *__union_AdviceType) -{ - struct saml2__AdviceType *_p = ::soap_new_saml2__AdviceType(soap); - if (_p) - { ::soap_default_saml2__AdviceType(soap, _p); - _p->__size_AdviceType = __size_AdviceType; - _p->__union_AdviceType = __union_AdviceType; - } - return _p; -} - -inline struct saml2__AdviceType * soap_new_set_saml2__AdviceType( - struct soap *soap, - int __size_AdviceType, - struct __saml2__union_AdviceType *__union_AdviceType) -{ - struct saml2__AdviceType *_p = ::soap_new_saml2__AdviceType(soap); - if (_p) - { ::soap_default_saml2__AdviceType(soap, _p); - _p->__size_AdviceType = __size_AdviceType; - _p->__union_AdviceType = __union_AdviceType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AdviceType(struct soap*, const struct saml2__AdviceType *, const char*, const char*); - -inline int soap_write_saml2__AdviceType(struct soap *soap, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AdviceType(soap, p), 0) || ::soap_put_saml2__AdviceType(soap, p, "saml2:AdviceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AdviceType(struct soap *soap, const char *URL, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AdviceType(soap, p), 0) || ::soap_put_saml2__AdviceType(soap, p, "saml2:AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AdviceType(struct soap *soap, const char *URL, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AdviceType(soap, p), 0) || ::soap_put_saml2__AdviceType(soap, p, "saml2:AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AdviceType(struct soap *soap, const char *URL, struct saml2__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AdviceType(soap, p), 0) || ::soap_put_saml2__AdviceType(soap, p, "saml2:AdviceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AdviceType * SOAP_FMAC4 soap_get_saml2__AdviceType(struct soap*, struct saml2__AdviceType *, const char*, const char*); - -inline int soap_read_saml2__AdviceType(struct soap *soap, struct saml2__AdviceType *p) -{ - if (p) - { ::soap_default_saml2__AdviceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AdviceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AdviceType(struct soap *soap, const char *URL, struct saml2__AdviceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AdviceType(struct soap *soap, struct saml2__AdviceType *p) -{ - if (::soap_read_saml2__AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__ProxyRestrictionType_DEFINED -#define SOAP_TYPE_saml2__ProxyRestrictionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ProxyRestrictionType(struct soap*, struct saml2__ProxyRestrictionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ProxyRestrictionType(struct soap*, const struct saml2__ProxyRestrictionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ProxyRestrictionType(struct soap*, const char*, int, const struct saml2__ProxyRestrictionType *, const char*); -SOAP_FMAC3 struct saml2__ProxyRestrictionType * SOAP_FMAC4 soap_in_saml2__ProxyRestrictionType(struct soap*, const char*, struct saml2__ProxyRestrictionType *, const char*); -SOAP_FMAC1 struct saml2__ProxyRestrictionType * SOAP_FMAC2 soap_instantiate_saml2__ProxyRestrictionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__ProxyRestrictionType * soap_new_saml2__ProxyRestrictionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__ProxyRestrictionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__ProxyRestrictionType * soap_new_req_saml2__ProxyRestrictionType( - struct soap *soap, - int __sizeAudience, - char **saml2__Audience) -{ - struct saml2__ProxyRestrictionType *_p = ::soap_new_saml2__ProxyRestrictionType(soap); - if (_p) - { ::soap_default_saml2__ProxyRestrictionType(soap, _p); - _p->__sizeAudience = __sizeAudience; - _p->saml2__Audience = saml2__Audience; - } - return _p; -} - -inline struct saml2__ProxyRestrictionType * soap_new_set_saml2__ProxyRestrictionType( - struct soap *soap, - int __sizeAudience, - char **saml2__Audience, - char *Count) -{ - struct saml2__ProxyRestrictionType *_p = ::soap_new_saml2__ProxyRestrictionType(soap); - if (_p) - { ::soap_default_saml2__ProxyRestrictionType(soap, _p); - _p->__sizeAudience = __sizeAudience; - _p->saml2__Audience = saml2__Audience; - _p->Count = Count; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ProxyRestrictionType(struct soap*, const struct saml2__ProxyRestrictionType *, const char*, const char*); - -inline int soap_write_saml2__ProxyRestrictionType(struct soap *soap, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__ProxyRestrictionType(soap, p), 0) || ::soap_put_saml2__ProxyRestrictionType(soap, p, "saml2:ProxyRestrictionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__ProxyRestrictionType(struct soap *soap, const char *URL, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ProxyRestrictionType(soap, p), 0) || ::soap_put_saml2__ProxyRestrictionType(soap, p, "saml2:ProxyRestrictionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__ProxyRestrictionType(struct soap *soap, const char *URL, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ProxyRestrictionType(soap, p), 0) || ::soap_put_saml2__ProxyRestrictionType(soap, p, "saml2:ProxyRestrictionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__ProxyRestrictionType(struct soap *soap, const char *URL, struct saml2__ProxyRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ProxyRestrictionType(soap, p), 0) || ::soap_put_saml2__ProxyRestrictionType(soap, p, "saml2:ProxyRestrictionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__ProxyRestrictionType * SOAP_FMAC4 soap_get_saml2__ProxyRestrictionType(struct soap*, struct saml2__ProxyRestrictionType *, const char*, const char*); - -inline int soap_read_saml2__ProxyRestrictionType(struct soap *soap, struct saml2__ProxyRestrictionType *p) -{ - if (p) - { ::soap_default_saml2__ProxyRestrictionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__ProxyRestrictionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__ProxyRestrictionType(struct soap *soap, const char *URL, struct saml2__ProxyRestrictionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__ProxyRestrictionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__ProxyRestrictionType(struct soap *soap, struct saml2__ProxyRestrictionType *p) -{ - if (::soap_read_saml2__ProxyRestrictionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__OneTimeUseType_DEFINED -#define SOAP_TYPE_saml2__OneTimeUseType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__OneTimeUseType(struct soap*, struct saml2__OneTimeUseType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__OneTimeUseType(struct soap*, const struct saml2__OneTimeUseType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__OneTimeUseType(struct soap*, const char*, int, const struct saml2__OneTimeUseType *, const char*); -SOAP_FMAC3 struct saml2__OneTimeUseType * SOAP_FMAC4 soap_in_saml2__OneTimeUseType(struct soap*, const char*, struct saml2__OneTimeUseType *, const char*); -SOAP_FMAC1 struct saml2__OneTimeUseType * SOAP_FMAC2 soap_instantiate_saml2__OneTimeUseType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__OneTimeUseType * soap_new_saml2__OneTimeUseType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__OneTimeUseType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__OneTimeUseType * soap_new_req_saml2__OneTimeUseType( - struct soap *soap) -{ - struct saml2__OneTimeUseType *_p = ::soap_new_saml2__OneTimeUseType(soap); - if (_p) - { ::soap_default_saml2__OneTimeUseType(soap, _p); - } - return _p; -} - -inline struct saml2__OneTimeUseType * soap_new_set_saml2__OneTimeUseType( - struct soap *soap) -{ - struct saml2__OneTimeUseType *_p = ::soap_new_saml2__OneTimeUseType(soap); - if (_p) - { ::soap_default_saml2__OneTimeUseType(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__OneTimeUseType(struct soap*, const struct saml2__OneTimeUseType *, const char*, const char*); - -inline int soap_write_saml2__OneTimeUseType(struct soap *soap, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__OneTimeUseType(soap, p), 0) || ::soap_put_saml2__OneTimeUseType(soap, p, "saml2:OneTimeUseType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__OneTimeUseType(struct soap *soap, const char *URL, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__OneTimeUseType(soap, p), 0) || ::soap_put_saml2__OneTimeUseType(soap, p, "saml2:OneTimeUseType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__OneTimeUseType(struct soap *soap, const char *URL, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__OneTimeUseType(soap, p), 0) || ::soap_put_saml2__OneTimeUseType(soap, p, "saml2:OneTimeUseType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__OneTimeUseType(struct soap *soap, const char *URL, struct saml2__OneTimeUseType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__OneTimeUseType(soap, p), 0) || ::soap_put_saml2__OneTimeUseType(soap, p, "saml2:OneTimeUseType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__OneTimeUseType * SOAP_FMAC4 soap_get_saml2__OneTimeUseType(struct soap*, struct saml2__OneTimeUseType *, const char*, const char*); - -inline int soap_read_saml2__OneTimeUseType(struct soap *soap, struct saml2__OneTimeUseType *p) -{ - if (p) - { ::soap_default_saml2__OneTimeUseType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__OneTimeUseType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__OneTimeUseType(struct soap *soap, const char *URL, struct saml2__OneTimeUseType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__OneTimeUseType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__OneTimeUseType(struct soap *soap, struct saml2__OneTimeUseType *p) -{ - if (::soap_read_saml2__OneTimeUseType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AudienceRestrictionType_DEFINED -#define SOAP_TYPE_saml2__AudienceRestrictionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AudienceRestrictionType(struct soap*, struct saml2__AudienceRestrictionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AudienceRestrictionType(struct soap*, const struct saml2__AudienceRestrictionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AudienceRestrictionType(struct soap*, const char*, int, const struct saml2__AudienceRestrictionType *, const char*); -SOAP_FMAC3 struct saml2__AudienceRestrictionType * SOAP_FMAC4 soap_in_saml2__AudienceRestrictionType(struct soap*, const char*, struct saml2__AudienceRestrictionType *, const char*); -SOAP_FMAC1 struct saml2__AudienceRestrictionType * SOAP_FMAC2 soap_instantiate_saml2__AudienceRestrictionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AudienceRestrictionType * soap_new_saml2__AudienceRestrictionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AudienceRestrictionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AudienceRestrictionType * soap_new_req_saml2__AudienceRestrictionType( - struct soap *soap, - int __sizeAudience, - char **saml2__Audience) -{ - struct saml2__AudienceRestrictionType *_p = ::soap_new_saml2__AudienceRestrictionType(soap); - if (_p) - { ::soap_default_saml2__AudienceRestrictionType(soap, _p); - _p->__sizeAudience = __sizeAudience; - _p->saml2__Audience = saml2__Audience; - } - return _p; -} - -inline struct saml2__AudienceRestrictionType * soap_new_set_saml2__AudienceRestrictionType( - struct soap *soap, - int __sizeAudience, - char **saml2__Audience) -{ - struct saml2__AudienceRestrictionType *_p = ::soap_new_saml2__AudienceRestrictionType(soap); - if (_p) - { ::soap_default_saml2__AudienceRestrictionType(soap, _p); - _p->__sizeAudience = __sizeAudience; - _p->saml2__Audience = saml2__Audience; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AudienceRestrictionType(struct soap*, const struct saml2__AudienceRestrictionType *, const char*, const char*); - -inline int soap_write_saml2__AudienceRestrictionType(struct soap *soap, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AudienceRestrictionType(soap, p), 0) || ::soap_put_saml2__AudienceRestrictionType(soap, p, "saml2:AudienceRestrictionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AudienceRestrictionType(struct soap *soap, const char *URL, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AudienceRestrictionType(soap, p), 0) || ::soap_put_saml2__AudienceRestrictionType(soap, p, "saml2:AudienceRestrictionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AudienceRestrictionType(struct soap *soap, const char *URL, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AudienceRestrictionType(soap, p), 0) || ::soap_put_saml2__AudienceRestrictionType(soap, p, "saml2:AudienceRestrictionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AudienceRestrictionType(struct soap *soap, const char *URL, struct saml2__AudienceRestrictionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AudienceRestrictionType(soap, p), 0) || ::soap_put_saml2__AudienceRestrictionType(soap, p, "saml2:AudienceRestrictionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AudienceRestrictionType * SOAP_FMAC4 soap_get_saml2__AudienceRestrictionType(struct soap*, struct saml2__AudienceRestrictionType *, const char*, const char*); - -inline int soap_read_saml2__AudienceRestrictionType(struct soap *soap, struct saml2__AudienceRestrictionType *p) -{ - if (p) - { ::soap_default_saml2__AudienceRestrictionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AudienceRestrictionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AudienceRestrictionType(struct soap *soap, const char *URL, struct saml2__AudienceRestrictionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AudienceRestrictionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AudienceRestrictionType(struct soap *soap, struct saml2__AudienceRestrictionType *p) -{ - if (::soap_read_saml2__AudienceRestrictionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__ConditionAbstractType_DEFINED -#define SOAP_TYPE_saml2__ConditionAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ConditionAbstractType(struct soap*, struct saml2__ConditionAbstractType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ConditionAbstractType(struct soap*, const struct saml2__ConditionAbstractType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ConditionAbstractType(struct soap*, const char*, int, const struct saml2__ConditionAbstractType *, const char*); -SOAP_FMAC3 struct saml2__ConditionAbstractType * SOAP_FMAC4 soap_in_saml2__ConditionAbstractType(struct soap*, const char*, struct saml2__ConditionAbstractType *, const char*); -SOAP_FMAC1 struct saml2__ConditionAbstractType * SOAP_FMAC2 soap_instantiate_saml2__ConditionAbstractType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__ConditionAbstractType * soap_new_saml2__ConditionAbstractType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__ConditionAbstractType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__ConditionAbstractType * soap_new_req_saml2__ConditionAbstractType( - struct soap *soap) -{ - struct saml2__ConditionAbstractType *_p = ::soap_new_saml2__ConditionAbstractType(soap); - if (_p) - { ::soap_default_saml2__ConditionAbstractType(soap, _p); - } - return _p; -} - -inline struct saml2__ConditionAbstractType * soap_new_set_saml2__ConditionAbstractType( - struct soap *soap) -{ - struct saml2__ConditionAbstractType *_p = ::soap_new_saml2__ConditionAbstractType(soap); - if (_p) - { ::soap_default_saml2__ConditionAbstractType(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ConditionAbstractType(struct soap*, const struct saml2__ConditionAbstractType *, const char*, const char*); - -inline int soap_write_saml2__ConditionAbstractType(struct soap *soap, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__ConditionAbstractType(soap, p), 0) || ::soap_put_saml2__ConditionAbstractType(soap, p, "saml2:ConditionAbstractType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__ConditionAbstractType(struct soap *soap, const char *URL, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ConditionAbstractType(soap, p), 0) || ::soap_put_saml2__ConditionAbstractType(soap, p, "saml2:ConditionAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__ConditionAbstractType(struct soap *soap, const char *URL, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ConditionAbstractType(soap, p), 0) || ::soap_put_saml2__ConditionAbstractType(soap, p, "saml2:ConditionAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__ConditionAbstractType(struct soap *soap, const char *URL, struct saml2__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ConditionAbstractType(soap, p), 0) || ::soap_put_saml2__ConditionAbstractType(soap, p, "saml2:ConditionAbstractType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__ConditionAbstractType * SOAP_FMAC4 soap_get_saml2__ConditionAbstractType(struct soap*, struct saml2__ConditionAbstractType *, const char*, const char*); - -inline int soap_read_saml2__ConditionAbstractType(struct soap *soap, struct saml2__ConditionAbstractType *p) -{ - if (p) - { ::soap_default_saml2__ConditionAbstractType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__ConditionAbstractType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__ConditionAbstractType(struct soap *soap, const char *URL, struct saml2__ConditionAbstractType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__ConditionAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__ConditionAbstractType(struct soap *soap, struct saml2__ConditionAbstractType *p) -{ - if (::soap_read_saml2__ConditionAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__ConditionsType_DEFINED -#define SOAP_TYPE_saml2__ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__ConditionsType(struct soap*, struct saml2__ConditionsType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__ConditionsType(struct soap*, const struct saml2__ConditionsType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__ConditionsType(struct soap*, const char*, int, const struct saml2__ConditionsType *, const char*); -SOAP_FMAC3 struct saml2__ConditionsType * SOAP_FMAC4 soap_in_saml2__ConditionsType(struct soap*, const char*, struct saml2__ConditionsType *, const char*); -SOAP_FMAC1 struct saml2__ConditionsType * SOAP_FMAC2 soap_instantiate_saml2__ConditionsType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__ConditionsType * soap_new_saml2__ConditionsType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__ConditionsType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__ConditionsType * soap_new_req_saml2__ConditionsType( - struct soap *soap, - int __size_ConditionsType, - struct __saml2__union_ConditionsType *__union_ConditionsType) -{ - struct saml2__ConditionsType *_p = ::soap_new_saml2__ConditionsType(soap); - if (_p) - { ::soap_default_saml2__ConditionsType(soap, _p); - _p->__size_ConditionsType = __size_ConditionsType; - _p->__union_ConditionsType = __union_ConditionsType; - } - return _p; -} - -inline struct saml2__ConditionsType * soap_new_set_saml2__ConditionsType( - struct soap *soap, - int __size_ConditionsType, - struct __saml2__union_ConditionsType *__union_ConditionsType, - struct timeval *NotBefore, - struct timeval *NotOnOrAfter) -{ - struct saml2__ConditionsType *_p = ::soap_new_saml2__ConditionsType(soap); - if (_p) - { ::soap_default_saml2__ConditionsType(soap, _p); - _p->__size_ConditionsType = __size_ConditionsType; - _p->__union_ConditionsType = __union_ConditionsType; - _p->NotBefore = NotBefore; - _p->NotOnOrAfter = NotOnOrAfter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__ConditionsType(struct soap*, const struct saml2__ConditionsType *, const char*, const char*); - -inline int soap_write_saml2__ConditionsType(struct soap *soap, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__ConditionsType(soap, p), 0) || ::soap_put_saml2__ConditionsType(soap, p, "saml2:ConditionsType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__ConditionsType(struct soap *soap, const char *URL, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ConditionsType(soap, p), 0) || ::soap_put_saml2__ConditionsType(soap, p, "saml2:ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__ConditionsType(struct soap *soap, const char *URL, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ConditionsType(soap, p), 0) || ::soap_put_saml2__ConditionsType(soap, p, "saml2:ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__ConditionsType(struct soap *soap, const char *URL, struct saml2__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__ConditionsType(soap, p), 0) || ::soap_put_saml2__ConditionsType(soap, p, "saml2:ConditionsType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__ConditionsType * SOAP_FMAC4 soap_get_saml2__ConditionsType(struct soap*, struct saml2__ConditionsType *, const char*, const char*); - -inline int soap_read_saml2__ConditionsType(struct soap *soap, struct saml2__ConditionsType *p) -{ - if (p) - { ::soap_default_saml2__ConditionsType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__ConditionsType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__ConditionsType(struct soap *soap, const char *URL, struct saml2__ConditionsType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__ConditionsType(struct soap *soap, struct saml2__ConditionsType *p) -{ - if (::soap_read_saml2__ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__KeyInfoConfirmationDataType_DEFINED -#define SOAP_TYPE_saml2__KeyInfoConfirmationDataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__KeyInfoConfirmationDataType(struct soap*, struct saml2__KeyInfoConfirmationDataType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__KeyInfoConfirmationDataType(struct soap*, const struct saml2__KeyInfoConfirmationDataType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__KeyInfoConfirmationDataType(struct soap*, const char*, int, const struct saml2__KeyInfoConfirmationDataType *, const char*); -SOAP_FMAC3 struct saml2__KeyInfoConfirmationDataType * SOAP_FMAC4 soap_in_saml2__KeyInfoConfirmationDataType(struct soap*, const char*, struct saml2__KeyInfoConfirmationDataType *, const char*); -SOAP_FMAC1 struct saml2__KeyInfoConfirmationDataType * SOAP_FMAC2 soap_instantiate_saml2__KeyInfoConfirmationDataType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__KeyInfoConfirmationDataType * soap_new_saml2__KeyInfoConfirmationDataType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__KeyInfoConfirmationDataType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__KeyInfoConfirmationDataType * soap_new_req_saml2__KeyInfoConfirmationDataType( - struct soap *soap, - int __sizeds__KeyInfo, - struct ds__KeyInfoType **ds__KeyInfo) -{ - struct saml2__KeyInfoConfirmationDataType *_p = ::soap_new_saml2__KeyInfoConfirmationDataType(soap); - if (_p) - { ::soap_default_saml2__KeyInfoConfirmationDataType(soap, _p); - _p->__sizeds__KeyInfo = __sizeds__KeyInfo; - _p->ds__KeyInfo = ds__KeyInfo; - } - return _p; -} - -inline struct saml2__KeyInfoConfirmationDataType * soap_new_set_saml2__KeyInfoConfirmationDataType( - struct soap *soap, - int __sizeds__KeyInfo, - struct ds__KeyInfoType **ds__KeyInfo) -{ - struct saml2__KeyInfoConfirmationDataType *_p = ::soap_new_saml2__KeyInfoConfirmationDataType(soap); - if (_p) - { ::soap_default_saml2__KeyInfoConfirmationDataType(soap, _p); - _p->__sizeds__KeyInfo = __sizeds__KeyInfo; - _p->ds__KeyInfo = ds__KeyInfo; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__KeyInfoConfirmationDataType(struct soap*, const struct saml2__KeyInfoConfirmationDataType *, const char*, const char*); - -inline int soap_write_saml2__KeyInfoConfirmationDataType(struct soap *soap, struct saml2__KeyInfoConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__KeyInfoConfirmationDataType(soap, p), 0) || ::soap_put_saml2__KeyInfoConfirmationDataType(soap, p, "saml2:KeyInfoConfirmationDataType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__KeyInfoConfirmationDataType(struct soap *soap, const char *URL, struct saml2__KeyInfoConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__KeyInfoConfirmationDataType(soap, p), 0) || ::soap_put_saml2__KeyInfoConfirmationDataType(soap, p, "saml2:KeyInfoConfirmationDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__KeyInfoConfirmationDataType(struct soap *soap, const char *URL, struct saml2__KeyInfoConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__KeyInfoConfirmationDataType(soap, p), 0) || ::soap_put_saml2__KeyInfoConfirmationDataType(soap, p, "saml2:KeyInfoConfirmationDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__KeyInfoConfirmationDataType(struct soap *soap, const char *URL, struct saml2__KeyInfoConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__KeyInfoConfirmationDataType(soap, p), 0) || ::soap_put_saml2__KeyInfoConfirmationDataType(soap, p, "saml2:KeyInfoConfirmationDataType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__KeyInfoConfirmationDataType * SOAP_FMAC4 soap_get_saml2__KeyInfoConfirmationDataType(struct soap*, struct saml2__KeyInfoConfirmationDataType *, const char*, const char*); - -inline int soap_read_saml2__KeyInfoConfirmationDataType(struct soap *soap, struct saml2__KeyInfoConfirmationDataType *p) -{ - if (p) - { ::soap_default_saml2__KeyInfoConfirmationDataType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__KeyInfoConfirmationDataType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__KeyInfoConfirmationDataType(struct soap *soap, const char *URL, struct saml2__KeyInfoConfirmationDataType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__KeyInfoConfirmationDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__KeyInfoConfirmationDataType(struct soap *soap, struct saml2__KeyInfoConfirmationDataType *p) -{ - if (::soap_read_saml2__KeyInfoConfirmationDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__SubjectConfirmationDataType_DEFINED -#define SOAP_TYPE_saml2__SubjectConfirmationDataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectConfirmationDataType(struct soap*, struct saml2__SubjectConfirmationDataType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectConfirmationDataType(struct soap*, const struct saml2__SubjectConfirmationDataType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectConfirmationDataType(struct soap*, const char*, int, const struct saml2__SubjectConfirmationDataType *, const char*); -SOAP_FMAC3 struct saml2__SubjectConfirmationDataType * SOAP_FMAC4 soap_in_saml2__SubjectConfirmationDataType(struct soap*, const char*, struct saml2__SubjectConfirmationDataType *, const char*); -SOAP_FMAC1 struct saml2__SubjectConfirmationDataType * SOAP_FMAC2 soap_instantiate_saml2__SubjectConfirmationDataType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__SubjectConfirmationDataType * soap_new_saml2__SubjectConfirmationDataType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__SubjectConfirmationDataType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__SubjectConfirmationDataType * soap_new_req_saml2__SubjectConfirmationDataType( - struct soap *soap) -{ - struct saml2__SubjectConfirmationDataType *_p = ::soap_new_saml2__SubjectConfirmationDataType(soap); - if (_p) - { ::soap_default_saml2__SubjectConfirmationDataType(soap, _p); - } - return _p; -} - -inline struct saml2__SubjectConfirmationDataType * soap_new_set_saml2__SubjectConfirmationDataType( - struct soap *soap, - struct timeval *NotBefore, - struct timeval *NotOnOrAfter, - char *Recipient, - char *InResponseTo, - char *Address, - char *__mixed) -{ - struct saml2__SubjectConfirmationDataType *_p = ::soap_new_saml2__SubjectConfirmationDataType(soap); - if (_p) - { ::soap_default_saml2__SubjectConfirmationDataType(soap, _p); - _p->NotBefore = NotBefore; - _p->NotOnOrAfter = NotOnOrAfter; - _p->Recipient = Recipient; - _p->InResponseTo = InResponseTo; - _p->Address = Address; - _p->__mixed = __mixed; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectConfirmationDataType(struct soap*, const struct saml2__SubjectConfirmationDataType *, const char*, const char*); - -inline int soap_write_saml2__SubjectConfirmationDataType(struct soap *soap, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__SubjectConfirmationDataType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationDataType(soap, p, "saml2:SubjectConfirmationDataType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__SubjectConfirmationDataType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectConfirmationDataType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationDataType(soap, p, "saml2:SubjectConfirmationDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__SubjectConfirmationDataType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectConfirmationDataType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationDataType(soap, p, "saml2:SubjectConfirmationDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__SubjectConfirmationDataType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationDataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectConfirmationDataType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationDataType(soap, p, "saml2:SubjectConfirmationDataType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__SubjectConfirmationDataType * SOAP_FMAC4 soap_get_saml2__SubjectConfirmationDataType(struct soap*, struct saml2__SubjectConfirmationDataType *, const char*, const char*); - -inline int soap_read_saml2__SubjectConfirmationDataType(struct soap *soap, struct saml2__SubjectConfirmationDataType *p) -{ - if (p) - { ::soap_default_saml2__SubjectConfirmationDataType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__SubjectConfirmationDataType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__SubjectConfirmationDataType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationDataType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__SubjectConfirmationDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__SubjectConfirmationDataType(struct soap *soap, struct saml2__SubjectConfirmationDataType *p) -{ - if (::soap_read_saml2__SubjectConfirmationDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__SubjectConfirmationType_DEFINED -#define SOAP_TYPE_saml2__SubjectConfirmationType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectConfirmationType(struct soap*, struct saml2__SubjectConfirmationType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectConfirmationType(struct soap*, const struct saml2__SubjectConfirmationType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectConfirmationType(struct soap*, const char*, int, const struct saml2__SubjectConfirmationType *, const char*); -SOAP_FMAC3 struct saml2__SubjectConfirmationType * SOAP_FMAC4 soap_in_saml2__SubjectConfirmationType(struct soap*, const char*, struct saml2__SubjectConfirmationType *, const char*); -SOAP_FMAC1 struct saml2__SubjectConfirmationType * SOAP_FMAC2 soap_instantiate_saml2__SubjectConfirmationType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__SubjectConfirmationType * soap_new_saml2__SubjectConfirmationType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__SubjectConfirmationType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__SubjectConfirmationType * soap_new_req_saml2__SubjectConfirmationType( - struct soap *soap, - char *Method) -{ - struct saml2__SubjectConfirmationType *_p = ::soap_new_saml2__SubjectConfirmationType(soap); - if (_p) - { ::soap_default_saml2__SubjectConfirmationType(soap, _p); - _p->Method = Method; - } - return _p; -} - -inline struct saml2__SubjectConfirmationType * soap_new_set_saml2__SubjectConfirmationType( - struct soap *soap, - struct saml2__BaseIDAbstractType *saml2__BaseID, - struct saml2__NameIDType *saml2__NameID, - struct saml2__EncryptedElementType *saml2__EncryptedID, - struct saml2__SubjectConfirmationDataType *saml2__SubjectConfirmationData, - char *Method) -{ - struct saml2__SubjectConfirmationType *_p = ::soap_new_saml2__SubjectConfirmationType(soap); - if (_p) - { ::soap_default_saml2__SubjectConfirmationType(soap, _p); - _p->saml2__BaseID = saml2__BaseID; - _p->saml2__NameID = saml2__NameID; - _p->saml2__EncryptedID = saml2__EncryptedID; - _p->saml2__SubjectConfirmationData = saml2__SubjectConfirmationData; - _p->Method = Method; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectConfirmationType(struct soap*, const struct saml2__SubjectConfirmationType *, const char*, const char*); - -inline int soap_write_saml2__SubjectConfirmationType(struct soap *soap, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationType(soap, p, "saml2:SubjectConfirmationType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationType(soap, p, "saml2:SubjectConfirmationType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationType(soap, p, "saml2:SubjectConfirmationType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml2__SubjectConfirmationType(soap, p, "saml2:SubjectConfirmationType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__SubjectConfirmationType * SOAP_FMAC4 soap_get_saml2__SubjectConfirmationType(struct soap*, struct saml2__SubjectConfirmationType *, const char*, const char*); - -inline int soap_read_saml2__SubjectConfirmationType(struct soap *soap, struct saml2__SubjectConfirmationType *p) -{ - if (p) - { ::soap_default_saml2__SubjectConfirmationType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__SubjectConfirmationType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml2__SubjectConfirmationType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__SubjectConfirmationType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__SubjectConfirmationType(struct soap *soap, struct saml2__SubjectConfirmationType *p) -{ - if (::soap_read_saml2__SubjectConfirmationType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__SubjectType_DEFINED -#define SOAP_TYPE_saml2__SubjectType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__SubjectType(struct soap*, struct saml2__SubjectType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__SubjectType(struct soap*, const struct saml2__SubjectType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__SubjectType(struct soap*, const char*, int, const struct saml2__SubjectType *, const char*); -SOAP_FMAC3 struct saml2__SubjectType * SOAP_FMAC4 soap_in_saml2__SubjectType(struct soap*, const char*, struct saml2__SubjectType *, const char*); -SOAP_FMAC1 struct saml2__SubjectType * SOAP_FMAC2 soap_instantiate_saml2__SubjectType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__SubjectType * soap_new_saml2__SubjectType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__SubjectType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__SubjectType * soap_new_req_saml2__SubjectType( - struct soap *soap, - int __sizeSubjectConfirmation, - struct saml2__SubjectConfirmationType *saml2__SubjectConfirmation, - int __sizeSubjectConfirmation_, - struct saml2__SubjectConfirmationType *saml2__SubjectConfirmation_) -{ - struct saml2__SubjectType *_p = ::soap_new_saml2__SubjectType(soap); - if (_p) - { ::soap_default_saml2__SubjectType(soap, _p); - _p->__sizeSubjectConfirmation = __sizeSubjectConfirmation; - _p->saml2__SubjectConfirmation = saml2__SubjectConfirmation; - _p->__sizeSubjectConfirmation_ = __sizeSubjectConfirmation_; - _p->saml2__SubjectConfirmation_ = saml2__SubjectConfirmation_; - } - return _p; -} - -inline struct saml2__SubjectType * soap_new_set_saml2__SubjectType( - struct soap *soap, - struct saml2__BaseIDAbstractType *saml2__BaseID, - struct saml2__NameIDType *saml2__NameID, - struct saml2__EncryptedElementType *saml2__EncryptedID, - int __sizeSubjectConfirmation, - struct saml2__SubjectConfirmationType *saml2__SubjectConfirmation, - int __sizeSubjectConfirmation_, - struct saml2__SubjectConfirmationType *saml2__SubjectConfirmation_) -{ - struct saml2__SubjectType *_p = ::soap_new_saml2__SubjectType(soap); - if (_p) - { ::soap_default_saml2__SubjectType(soap, _p); - _p->saml2__BaseID = saml2__BaseID; - _p->saml2__NameID = saml2__NameID; - _p->saml2__EncryptedID = saml2__EncryptedID; - _p->__sizeSubjectConfirmation = __sizeSubjectConfirmation; - _p->saml2__SubjectConfirmation = saml2__SubjectConfirmation; - _p->__sizeSubjectConfirmation_ = __sizeSubjectConfirmation_; - _p->saml2__SubjectConfirmation_ = saml2__SubjectConfirmation_; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__SubjectType(struct soap*, const struct saml2__SubjectType *, const char*, const char*); - -inline int soap_write_saml2__SubjectType(struct soap *soap, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__SubjectType(soap, p), 0) || ::soap_put_saml2__SubjectType(soap, p, "saml2:SubjectType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__SubjectType(struct soap *soap, const char *URL, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectType(soap, p), 0) || ::soap_put_saml2__SubjectType(soap, p, "saml2:SubjectType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__SubjectType(struct soap *soap, const char *URL, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectType(soap, p), 0) || ::soap_put_saml2__SubjectType(soap, p, "saml2:SubjectType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__SubjectType(struct soap *soap, const char *URL, struct saml2__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__SubjectType(soap, p), 0) || ::soap_put_saml2__SubjectType(soap, p, "saml2:SubjectType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__SubjectType * SOAP_FMAC4 soap_get_saml2__SubjectType(struct soap*, struct saml2__SubjectType *, const char*, const char*); - -inline int soap_read_saml2__SubjectType(struct soap *soap, struct saml2__SubjectType *p) -{ - if (p) - { ::soap_default_saml2__SubjectType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__SubjectType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__SubjectType(struct soap *soap, const char *URL, struct saml2__SubjectType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__SubjectType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__SubjectType(struct soap *soap, struct saml2__SubjectType *p) -{ - if (::soap_read_saml2__SubjectType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__AssertionType_DEFINED -#define SOAP_TYPE_saml2__AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__AssertionType(struct soap*, struct saml2__AssertionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__AssertionType(struct soap*, const struct saml2__AssertionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__AssertionType(struct soap*, const char*, int, const struct saml2__AssertionType *, const char*); -SOAP_FMAC3 struct saml2__AssertionType * SOAP_FMAC4 soap_in_saml2__AssertionType(struct soap*, const char*, struct saml2__AssertionType *, const char*); -SOAP_FMAC1 struct saml2__AssertionType * SOAP_FMAC2 soap_instantiate_saml2__AssertionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__AssertionType * soap_new_saml2__AssertionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__AssertionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__AssertionType * soap_new_req_saml2__AssertionType( - struct soap *soap, - struct saml2__NameIDType *saml2__Issuer, - int __size_AssertionType, - struct __saml2__union_AssertionType *__union_AssertionType, - char *Version, - char *ID, - const struct timeval& IssueInstant) -{ - struct saml2__AssertionType *_p = ::soap_new_saml2__AssertionType(soap); - if (_p) - { ::soap_default_saml2__AssertionType(soap, _p); - _p->saml2__Issuer = saml2__Issuer; - _p->__size_AssertionType = __size_AssertionType; - _p->__union_AssertionType = __union_AssertionType; - _p->Version = Version; - _p->ID = ID; - _p->IssueInstant = IssueInstant; - } - return _p; -} - -inline struct saml2__AssertionType * soap_new_set_saml2__AssertionType( - struct soap *soap, - struct saml2__NameIDType *saml2__Issuer, - struct ds__SignatureType *ds__Signature, - struct saml2__SubjectType *saml2__Subject, - struct saml2__ConditionsType *saml2__Conditions, - struct saml2__AdviceType *saml2__Advice, - int __size_AssertionType, - struct __saml2__union_AssertionType *__union_AssertionType, - char *Version, - char *ID, - const struct timeval& IssueInstant, - char *wsu__Id) -{ - struct saml2__AssertionType *_p = ::soap_new_saml2__AssertionType(soap); - if (_p) - { ::soap_default_saml2__AssertionType(soap, _p); - _p->saml2__Issuer = saml2__Issuer; - _p->ds__Signature = ds__Signature; - _p->saml2__Subject = saml2__Subject; - _p->saml2__Conditions = saml2__Conditions; - _p->saml2__Advice = saml2__Advice; - _p->__size_AssertionType = __size_AssertionType; - _p->__union_AssertionType = __union_AssertionType; - _p->Version = Version; - _p->ID = ID; - _p->IssueInstant = IssueInstant; - _p->wsu__Id = wsu__Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__AssertionType(struct soap*, const struct saml2__AssertionType *, const char*, const char*); - -inline int soap_write_saml2__AssertionType(struct soap *soap, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__AssertionType(soap, p), 0) || ::soap_put_saml2__AssertionType(soap, p, "saml2:AssertionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__AssertionType(struct soap *soap, const char *URL, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AssertionType(soap, p), 0) || ::soap_put_saml2__AssertionType(soap, p, "saml2:AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__AssertionType(struct soap *soap, const char *URL, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AssertionType(soap, p), 0) || ::soap_put_saml2__AssertionType(soap, p, "saml2:AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__AssertionType(struct soap *soap, const char *URL, struct saml2__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__AssertionType(soap, p), 0) || ::soap_put_saml2__AssertionType(soap, p, "saml2:AssertionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__AssertionType * SOAP_FMAC4 soap_get_saml2__AssertionType(struct soap*, struct saml2__AssertionType *, const char*, const char*); - -inline int soap_read_saml2__AssertionType(struct soap *soap, struct saml2__AssertionType *p) -{ - if (p) - { ::soap_default_saml2__AssertionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__AssertionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__AssertionType(struct soap *soap, const char *URL, struct saml2__AssertionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__AssertionType(struct soap *soap, struct saml2__AssertionType *p) -{ - if (::soap_read_saml2__AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__EncryptedElementType_DEFINED -#define SOAP_TYPE_saml2__EncryptedElementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__EncryptedElementType(struct soap*, struct saml2__EncryptedElementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__EncryptedElementType(struct soap*, const struct saml2__EncryptedElementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__EncryptedElementType(struct soap*, const char*, int, const struct saml2__EncryptedElementType *, const char*); -SOAP_FMAC3 struct saml2__EncryptedElementType * SOAP_FMAC4 soap_in_saml2__EncryptedElementType(struct soap*, const char*, struct saml2__EncryptedElementType *, const char*); -SOAP_FMAC1 struct saml2__EncryptedElementType * SOAP_FMAC2 soap_instantiate_saml2__EncryptedElementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__EncryptedElementType * soap_new_saml2__EncryptedElementType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__EncryptedElementType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__EncryptedElementType * soap_new_req_saml2__EncryptedElementType( - struct soap *soap, - const struct xenc__EncryptedDataType& xenc__EncryptedData, - int __sizexenc__EncryptedKey, - struct xenc__EncryptedKeyType **xenc__EncryptedKey) -{ - struct saml2__EncryptedElementType *_p = ::soap_new_saml2__EncryptedElementType(soap); - if (_p) - { ::soap_default_saml2__EncryptedElementType(soap, _p); - _p->xenc__EncryptedData = xenc__EncryptedData; - _p->__sizexenc__EncryptedKey = __sizexenc__EncryptedKey; - _p->xenc__EncryptedKey = xenc__EncryptedKey; - } - return _p; -} - -inline struct saml2__EncryptedElementType * soap_new_set_saml2__EncryptedElementType( - struct soap *soap, - const struct xenc__EncryptedDataType& xenc__EncryptedData, - int __sizexenc__EncryptedKey, - struct xenc__EncryptedKeyType **xenc__EncryptedKey) -{ - struct saml2__EncryptedElementType *_p = ::soap_new_saml2__EncryptedElementType(soap); - if (_p) - { ::soap_default_saml2__EncryptedElementType(soap, _p); - _p->xenc__EncryptedData = xenc__EncryptedData; - _p->__sizexenc__EncryptedKey = __sizexenc__EncryptedKey; - _p->xenc__EncryptedKey = xenc__EncryptedKey; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__EncryptedElementType(struct soap*, const struct saml2__EncryptedElementType *, const char*, const char*); - -inline int soap_write_saml2__EncryptedElementType(struct soap *soap, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__EncryptedElementType(soap, p), 0) || ::soap_put_saml2__EncryptedElementType(soap, p, "saml2:EncryptedElementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__EncryptedElementType(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__EncryptedElementType(soap, p), 0) || ::soap_put_saml2__EncryptedElementType(soap, p, "saml2:EncryptedElementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__EncryptedElementType(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__EncryptedElementType(soap, p), 0) || ::soap_put_saml2__EncryptedElementType(soap, p, "saml2:EncryptedElementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__EncryptedElementType(struct soap *soap, const char *URL, struct saml2__EncryptedElementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__EncryptedElementType(soap, p), 0) || ::soap_put_saml2__EncryptedElementType(soap, p, "saml2:EncryptedElementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__EncryptedElementType * SOAP_FMAC4 soap_get_saml2__EncryptedElementType(struct soap*, struct saml2__EncryptedElementType *, const char*, const char*); - -inline int soap_read_saml2__EncryptedElementType(struct soap *soap, struct saml2__EncryptedElementType *p) -{ - if (p) - { ::soap_default_saml2__EncryptedElementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__EncryptedElementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__EncryptedElementType(struct soap *soap, const char *URL, struct saml2__EncryptedElementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__EncryptedElementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__EncryptedElementType(struct soap *soap, struct saml2__EncryptedElementType *p) -{ - if (::soap_read_saml2__EncryptedElementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__NameIDType_DEFINED -#define SOAP_TYPE_saml2__NameIDType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__NameIDType(struct soap*, struct saml2__NameIDType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__NameIDType(struct soap*, const struct saml2__NameIDType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__NameIDType(struct soap*, const char*, int, const struct saml2__NameIDType *, const char*); -SOAP_FMAC3 struct saml2__NameIDType * SOAP_FMAC4 soap_in_saml2__NameIDType(struct soap*, const char*, struct saml2__NameIDType *, const char*); -SOAP_FMAC1 struct saml2__NameIDType * SOAP_FMAC2 soap_instantiate_saml2__NameIDType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__NameIDType * soap_new_saml2__NameIDType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__NameIDType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__NameIDType * soap_new_req_saml2__NameIDType( - struct soap *soap) -{ - struct saml2__NameIDType *_p = ::soap_new_saml2__NameIDType(soap); - if (_p) - { ::soap_default_saml2__NameIDType(soap, _p); - } - return _p; -} - -inline struct saml2__NameIDType * soap_new_set_saml2__NameIDType( - struct soap *soap, - char *__item, - char *Format, - char *SPProvidedID, - char *NameQualifier, - char *SPNameQualifier) -{ - struct saml2__NameIDType *_p = ::soap_new_saml2__NameIDType(soap); - if (_p) - { ::soap_default_saml2__NameIDType(soap, _p); - _p->__item = __item; - _p->Format = Format; - _p->SPProvidedID = SPProvidedID; - _p->NameQualifier = NameQualifier; - _p->SPNameQualifier = SPNameQualifier; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__NameIDType(struct soap*, const struct saml2__NameIDType *, const char*, const char*); - -inline int soap_write_saml2__NameIDType(struct soap *soap, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__NameIDType(soap, p), 0) || ::soap_put_saml2__NameIDType(soap, p, "saml2:NameIDType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__NameIDType(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__NameIDType(soap, p), 0) || ::soap_put_saml2__NameIDType(soap, p, "saml2:NameIDType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__NameIDType(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__NameIDType(soap, p), 0) || ::soap_put_saml2__NameIDType(soap, p, "saml2:NameIDType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__NameIDType(struct soap *soap, const char *URL, struct saml2__NameIDType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__NameIDType(soap, p), 0) || ::soap_put_saml2__NameIDType(soap, p, "saml2:NameIDType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__NameIDType * SOAP_FMAC4 soap_get_saml2__NameIDType(struct soap*, struct saml2__NameIDType *, const char*, const char*); - -inline int soap_read_saml2__NameIDType(struct soap *soap, struct saml2__NameIDType *p) -{ - if (p) - { ::soap_default_saml2__NameIDType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__NameIDType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__NameIDType(struct soap *soap, const char *URL, struct saml2__NameIDType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__NameIDType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__NameIDType(struct soap *soap, struct saml2__NameIDType *p) -{ - if (::soap_read_saml2__NameIDType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml2__BaseIDAbstractType_DEFINED -#define SOAP_TYPE_saml2__BaseIDAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml2__BaseIDAbstractType(struct soap*, struct saml2__BaseIDAbstractType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml2__BaseIDAbstractType(struct soap*, const struct saml2__BaseIDAbstractType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml2__BaseIDAbstractType(struct soap*, const char*, int, const struct saml2__BaseIDAbstractType *, const char*); -SOAP_FMAC3 struct saml2__BaseIDAbstractType * SOAP_FMAC4 soap_in_saml2__BaseIDAbstractType(struct soap*, const char*, struct saml2__BaseIDAbstractType *, const char*); -SOAP_FMAC1 struct saml2__BaseIDAbstractType * SOAP_FMAC2 soap_instantiate_saml2__BaseIDAbstractType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml2__BaseIDAbstractType * soap_new_saml2__BaseIDAbstractType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml2__BaseIDAbstractType(soap, n, NULL, NULL, NULL); -} - -inline struct saml2__BaseIDAbstractType * soap_new_req_saml2__BaseIDAbstractType( - struct soap *soap) -{ - struct saml2__BaseIDAbstractType *_p = ::soap_new_saml2__BaseIDAbstractType(soap); - if (_p) - { ::soap_default_saml2__BaseIDAbstractType(soap, _p); - } - return _p; -} - -inline struct saml2__BaseIDAbstractType * soap_new_set_saml2__BaseIDAbstractType( - struct soap *soap, - char *NameQualifier, - char *SPNameQualifier) -{ - struct saml2__BaseIDAbstractType *_p = ::soap_new_saml2__BaseIDAbstractType(soap); - if (_p) - { ::soap_default_saml2__BaseIDAbstractType(soap, _p); - _p->NameQualifier = NameQualifier; - _p->SPNameQualifier = SPNameQualifier; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml2__BaseIDAbstractType(struct soap*, const struct saml2__BaseIDAbstractType *, const char*, const char*); - -inline int soap_write_saml2__BaseIDAbstractType(struct soap *soap, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml2__BaseIDAbstractType(soap, p), 0) || ::soap_put_saml2__BaseIDAbstractType(soap, p, "saml2:BaseIDAbstractType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml2__BaseIDAbstractType(struct soap *soap, const char *URL, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__BaseIDAbstractType(soap, p), 0) || ::soap_put_saml2__BaseIDAbstractType(soap, p, "saml2:BaseIDAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml2__BaseIDAbstractType(struct soap *soap, const char *URL, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__BaseIDAbstractType(soap, p), 0) || ::soap_put_saml2__BaseIDAbstractType(soap, p, "saml2:BaseIDAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml2__BaseIDAbstractType(struct soap *soap, const char *URL, struct saml2__BaseIDAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml2__BaseIDAbstractType(soap, p), 0) || ::soap_put_saml2__BaseIDAbstractType(soap, p, "saml2:BaseIDAbstractType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml2__BaseIDAbstractType * SOAP_FMAC4 soap_get_saml2__BaseIDAbstractType(struct soap*, struct saml2__BaseIDAbstractType *, const char*, const char*); - -inline int soap_read_saml2__BaseIDAbstractType(struct soap *soap, struct saml2__BaseIDAbstractType *p) -{ - if (p) - { ::soap_default_saml2__BaseIDAbstractType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml2__BaseIDAbstractType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml2__BaseIDAbstractType(struct soap *soap, const char *URL, struct saml2__BaseIDAbstractType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml2__BaseIDAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml2__BaseIDAbstractType(struct soap *soap, struct saml2__BaseIDAbstractType *p) -{ - if (::soap_read_saml2__BaseIDAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _saml1__Attribute is a typedef synonym of saml1__AttributeType */ - -#ifndef SOAP_TYPE__saml1__Attribute_DEFINED -#define SOAP_TYPE__saml1__Attribute_DEFINED - -#define soap_default__saml1__Attribute soap_default_saml1__AttributeType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeType(struct soap*, const struct saml1__AttributeType *); - -#define soap_serialize__saml1__Attribute soap_serialize_saml1__AttributeType - - -#define soap__saml1__Attribute2s soap_saml1__AttributeType2s - - -#define soap_out__saml1__Attribute soap_out_saml1__AttributeType - - -#define soap_s2_saml1__Attribute soap_s2saml1__AttributeType - - -#define soap_in__saml1__Attribute soap_in_saml1__AttributeType - - -#define soap_instantiate__saml1__Attribute soap_instantiate_saml1__AttributeType - - -#define soap_new__saml1__Attribute soap_new_saml1__AttributeType - - -#define soap_new_req__saml1__Attribute soap_new_req_saml1__AttributeType - - -#define soap_new_set__saml1__Attribute soap_new_set_saml1__AttributeType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Attribute(struct soap*, const struct saml1__AttributeType *, const char*, const char*); - -inline int soap_write__saml1__Attribute(struct soap *soap, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Attribute(soap, p), 0) || ::soap_put__saml1__Attribute(soap, p, "saml1:Attribute", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Attribute(struct soap *soap, const char *URL, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Attribute(soap, p), 0) || ::soap_put__saml1__Attribute(soap, p, "saml1:Attribute", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Attribute(struct soap *soap, const char *URL, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Attribute(soap, p), 0) || ::soap_put__saml1__Attribute(soap, p, "saml1:Attribute", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Attribute(struct soap *soap, const char *URL, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Attribute(soap, p), 0) || ::soap_put__saml1__Attribute(soap, p, "saml1:Attribute", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Attribute soap_get_saml1__AttributeType - - -#define soap_read__saml1__Attribute soap_read_saml1__AttributeType - - -#define soap_GET__saml1__Attribute soap_GET_saml1__AttributeType - - -#define soap_POST_recv__saml1__Attribute soap_POST_recv_saml1__AttributeType - -#endif -/* _saml1__AttributeDesignator is a typedef synonym of saml1__AttributeDesignatorType */ - -#ifndef SOAP_TYPE__saml1__AttributeDesignator_DEFINED -#define SOAP_TYPE__saml1__AttributeDesignator_DEFINED - -#define soap_default__saml1__AttributeDesignator soap_default_saml1__AttributeDesignatorType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeDesignatorType(struct soap*, const struct saml1__AttributeDesignatorType *); - -#define soap_serialize__saml1__AttributeDesignator soap_serialize_saml1__AttributeDesignatorType - - -#define soap__saml1__AttributeDesignator2s soap_saml1__AttributeDesignatorType2s - - -#define soap_out__saml1__AttributeDesignator soap_out_saml1__AttributeDesignatorType - - -#define soap_s2_saml1__AttributeDesignator soap_s2saml1__AttributeDesignatorType - - -#define soap_in__saml1__AttributeDesignator soap_in_saml1__AttributeDesignatorType - - -#define soap_instantiate__saml1__AttributeDesignator soap_instantiate_saml1__AttributeDesignatorType - - -#define soap_new__saml1__AttributeDesignator soap_new_saml1__AttributeDesignatorType - - -#define soap_new_req__saml1__AttributeDesignator soap_new_req_saml1__AttributeDesignatorType - - -#define soap_new_set__saml1__AttributeDesignator soap_new_set_saml1__AttributeDesignatorType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AttributeDesignator(struct soap*, const struct saml1__AttributeDesignatorType *, const char*, const char*); - -inline int soap_write__saml1__AttributeDesignator(struct soap *soap, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__AttributeDesignator(soap, p), 0) || ::soap_put__saml1__AttributeDesignator(soap, p, "saml1:AttributeDesignator", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__AttributeDesignator(struct soap *soap, const char *URL, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AttributeDesignator(soap, p), 0) || ::soap_put__saml1__AttributeDesignator(soap, p, "saml1:AttributeDesignator", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__AttributeDesignator(struct soap *soap, const char *URL, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AttributeDesignator(soap, p), 0) || ::soap_put__saml1__AttributeDesignator(soap, p, "saml1:AttributeDesignator", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__AttributeDesignator(struct soap *soap, const char *URL, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AttributeDesignator(soap, p), 0) || ::soap_put__saml1__AttributeDesignator(soap, p, "saml1:AttributeDesignator", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__AttributeDesignator soap_get_saml1__AttributeDesignatorType - - -#define soap_read__saml1__AttributeDesignator soap_read_saml1__AttributeDesignatorType - - -#define soap_GET__saml1__AttributeDesignator soap_GET_saml1__AttributeDesignatorType - - -#define soap_POST_recv__saml1__AttributeDesignator soap_POST_recv_saml1__AttributeDesignatorType - -#endif -/* _saml1__AttributeStatement is a typedef synonym of saml1__AttributeStatementType */ - -#ifndef SOAP_TYPE__saml1__AttributeStatement_DEFINED -#define SOAP_TYPE__saml1__AttributeStatement_DEFINED - -#define soap_default__saml1__AttributeStatement soap_default_saml1__AttributeStatementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeStatementType(struct soap*, const struct saml1__AttributeStatementType *); - -#define soap_serialize__saml1__AttributeStatement soap_serialize_saml1__AttributeStatementType - - -#define soap__saml1__AttributeStatement2s soap_saml1__AttributeStatementType2s - - -#define soap_out__saml1__AttributeStatement soap_out_saml1__AttributeStatementType - - -#define soap_s2_saml1__AttributeStatement soap_s2saml1__AttributeStatementType - - -#define soap_in__saml1__AttributeStatement soap_in_saml1__AttributeStatementType - - -#define soap_instantiate__saml1__AttributeStatement soap_instantiate_saml1__AttributeStatementType - - -#define soap_new__saml1__AttributeStatement soap_new_saml1__AttributeStatementType - - -#define soap_new_req__saml1__AttributeStatement soap_new_req_saml1__AttributeStatementType - - -#define soap_new_set__saml1__AttributeStatement soap_new_set_saml1__AttributeStatementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AttributeStatement(struct soap*, const struct saml1__AttributeStatementType *, const char*, const char*); - -inline int soap_write__saml1__AttributeStatement(struct soap *soap, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__AttributeStatement(soap, p), 0) || ::soap_put__saml1__AttributeStatement(soap, p, "saml1:AttributeStatement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__AttributeStatement(struct soap *soap, const char *URL, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AttributeStatement(soap, p), 0) || ::soap_put__saml1__AttributeStatement(soap, p, "saml1:AttributeStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__AttributeStatement(struct soap *soap, const char *URL, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AttributeStatement(soap, p), 0) || ::soap_put__saml1__AttributeStatement(soap, p, "saml1:AttributeStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__AttributeStatement(struct soap *soap, const char *URL, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AttributeStatement(soap, p), 0) || ::soap_put__saml1__AttributeStatement(soap, p, "saml1:AttributeStatement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__AttributeStatement soap_get_saml1__AttributeStatementType - - -#define soap_read__saml1__AttributeStatement soap_read_saml1__AttributeStatementType - - -#define soap_GET__saml1__AttributeStatement soap_GET_saml1__AttributeStatementType - - -#define soap_POST_recv__saml1__AttributeStatement soap_POST_recv_saml1__AttributeStatementType - -#endif -/* _saml1__Evidence is a typedef synonym of saml1__EvidenceType */ - -#ifndef SOAP_TYPE__saml1__Evidence_DEFINED -#define SOAP_TYPE__saml1__Evidence_DEFINED - -#define soap_default__saml1__Evidence soap_default_saml1__EvidenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__EvidenceType(struct soap*, const struct saml1__EvidenceType *); - -#define soap_serialize__saml1__Evidence soap_serialize_saml1__EvidenceType - - -#define soap__saml1__Evidence2s soap_saml1__EvidenceType2s - - -#define soap_out__saml1__Evidence soap_out_saml1__EvidenceType - - -#define soap_s2_saml1__Evidence soap_s2saml1__EvidenceType - - -#define soap_in__saml1__Evidence soap_in_saml1__EvidenceType - - -#define soap_instantiate__saml1__Evidence soap_instantiate_saml1__EvidenceType - - -#define soap_new__saml1__Evidence soap_new_saml1__EvidenceType - - -#define soap_new_req__saml1__Evidence soap_new_req_saml1__EvidenceType - - -#define soap_new_set__saml1__Evidence soap_new_set_saml1__EvidenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Evidence(struct soap*, const struct saml1__EvidenceType *, const char*, const char*); - -inline int soap_write__saml1__Evidence(struct soap *soap, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Evidence(soap, p), 0) || ::soap_put__saml1__Evidence(soap, p, "saml1:Evidence", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Evidence(struct soap *soap, const char *URL, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Evidence(soap, p), 0) || ::soap_put__saml1__Evidence(soap, p, "saml1:Evidence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Evidence(struct soap *soap, const char *URL, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Evidence(soap, p), 0) || ::soap_put__saml1__Evidence(soap, p, "saml1:Evidence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Evidence(struct soap *soap, const char *URL, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Evidence(soap, p), 0) || ::soap_put__saml1__Evidence(soap, p, "saml1:Evidence", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Evidence soap_get_saml1__EvidenceType - - -#define soap_read__saml1__Evidence soap_read_saml1__EvidenceType - - -#define soap_GET__saml1__Evidence soap_GET_saml1__EvidenceType - - -#define soap_POST_recv__saml1__Evidence soap_POST_recv_saml1__EvidenceType - -#endif -/* _saml1__Action is a typedef synonym of saml1__ActionType */ - -#ifndef SOAP_TYPE__saml1__Action_DEFINED -#define SOAP_TYPE__saml1__Action_DEFINED - -#define soap_default__saml1__Action soap_default_saml1__ActionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ActionType(struct soap*, const struct saml1__ActionType *); - -#define soap_serialize__saml1__Action soap_serialize_saml1__ActionType - - -#define soap__saml1__Action2s soap_saml1__ActionType2s - - -#define soap_out__saml1__Action soap_out_saml1__ActionType - - -#define soap_s2_saml1__Action soap_s2saml1__ActionType - - -#define soap_in__saml1__Action soap_in_saml1__ActionType - - -#define soap_instantiate__saml1__Action soap_instantiate_saml1__ActionType - - -#define soap_new__saml1__Action soap_new_saml1__ActionType - - -#define soap_new_req__saml1__Action soap_new_req_saml1__ActionType - - -#define soap_new_set__saml1__Action soap_new_set_saml1__ActionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Action(struct soap*, const struct saml1__ActionType *, const char*, const char*); - -inline int soap_write__saml1__Action(struct soap *soap, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Action(soap, p), 0) || ::soap_put__saml1__Action(soap, p, "saml1:Action", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Action(struct soap *soap, const char *URL, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Action(soap, p), 0) || ::soap_put__saml1__Action(soap, p, "saml1:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Action(struct soap *soap, const char *URL, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Action(soap, p), 0) || ::soap_put__saml1__Action(soap, p, "saml1:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Action(struct soap *soap, const char *URL, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Action(soap, p), 0) || ::soap_put__saml1__Action(soap, p, "saml1:Action", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Action soap_get_saml1__ActionType - - -#define soap_read__saml1__Action soap_read_saml1__ActionType - - -#define soap_GET__saml1__Action soap_GET_saml1__ActionType - - -#define soap_POST_recv__saml1__Action soap_POST_recv_saml1__ActionType - -#endif -/* _saml1__AuthorizationDecisionStatement is a typedef synonym of saml1__AuthorizationDecisionStatementType */ - -#ifndef SOAP_TYPE__saml1__AuthorizationDecisionStatement_DEFINED -#define SOAP_TYPE__saml1__AuthorizationDecisionStatement_DEFINED - -#define soap_default__saml1__AuthorizationDecisionStatement soap_default_saml1__AuthorizationDecisionStatementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthorizationDecisionStatementType(struct soap*, const struct saml1__AuthorizationDecisionStatementType *); - -#define soap_serialize__saml1__AuthorizationDecisionStatement soap_serialize_saml1__AuthorizationDecisionStatementType - - -#define soap__saml1__AuthorizationDecisionStatement2s soap_saml1__AuthorizationDecisionStatementType2s - - -#define soap_out__saml1__AuthorizationDecisionStatement soap_out_saml1__AuthorizationDecisionStatementType - - -#define soap_s2_saml1__AuthorizationDecisionStatement soap_s2saml1__AuthorizationDecisionStatementType - - -#define soap_in__saml1__AuthorizationDecisionStatement soap_in_saml1__AuthorizationDecisionStatementType - - -#define soap_instantiate__saml1__AuthorizationDecisionStatement soap_instantiate_saml1__AuthorizationDecisionStatementType - - -#define soap_new__saml1__AuthorizationDecisionStatement soap_new_saml1__AuthorizationDecisionStatementType - - -#define soap_new_req__saml1__AuthorizationDecisionStatement soap_new_req_saml1__AuthorizationDecisionStatementType - - -#define soap_new_set__saml1__AuthorizationDecisionStatement soap_new_set_saml1__AuthorizationDecisionStatementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AuthorizationDecisionStatement(struct soap*, const struct saml1__AuthorizationDecisionStatementType *, const char*, const char*); - -inline int soap_write__saml1__AuthorizationDecisionStatement(struct soap *soap, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__AuthorizationDecisionStatement(soap, p), 0) || ::soap_put__saml1__AuthorizationDecisionStatement(soap, p, "saml1:AuthorizationDecisionStatement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__AuthorizationDecisionStatement(struct soap *soap, const char *URL, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthorizationDecisionStatement(soap, p), 0) || ::soap_put__saml1__AuthorizationDecisionStatement(soap, p, "saml1:AuthorizationDecisionStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__AuthorizationDecisionStatement(struct soap *soap, const char *URL, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthorizationDecisionStatement(soap, p), 0) || ::soap_put__saml1__AuthorizationDecisionStatement(soap, p, "saml1:AuthorizationDecisionStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__AuthorizationDecisionStatement(struct soap *soap, const char *URL, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthorizationDecisionStatement(soap, p), 0) || ::soap_put__saml1__AuthorizationDecisionStatement(soap, p, "saml1:AuthorizationDecisionStatement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__AuthorizationDecisionStatement soap_get_saml1__AuthorizationDecisionStatementType - - -#define soap_read__saml1__AuthorizationDecisionStatement soap_read_saml1__AuthorizationDecisionStatementType - - -#define soap_GET__saml1__AuthorizationDecisionStatement soap_GET_saml1__AuthorizationDecisionStatementType - - -#define soap_POST_recv__saml1__AuthorizationDecisionStatement soap_POST_recv_saml1__AuthorizationDecisionStatementType - -#endif -/* _saml1__AuthorityBinding is a typedef synonym of saml1__AuthorityBindingType */ - -#ifndef SOAP_TYPE__saml1__AuthorityBinding_DEFINED -#define SOAP_TYPE__saml1__AuthorityBinding_DEFINED - -#define soap_default__saml1__AuthorityBinding soap_default_saml1__AuthorityBindingType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthorityBindingType(struct soap*, const struct saml1__AuthorityBindingType *); - -#define soap_serialize__saml1__AuthorityBinding soap_serialize_saml1__AuthorityBindingType - - -#define soap__saml1__AuthorityBinding2s soap_saml1__AuthorityBindingType2s - - -#define soap_out__saml1__AuthorityBinding soap_out_saml1__AuthorityBindingType - - -#define soap_s2_saml1__AuthorityBinding soap_s2saml1__AuthorityBindingType - - -#define soap_in__saml1__AuthorityBinding soap_in_saml1__AuthorityBindingType - - -#define soap_instantiate__saml1__AuthorityBinding soap_instantiate_saml1__AuthorityBindingType - - -#define soap_new__saml1__AuthorityBinding soap_new_saml1__AuthorityBindingType - - -#define soap_new_req__saml1__AuthorityBinding soap_new_req_saml1__AuthorityBindingType - - -#define soap_new_set__saml1__AuthorityBinding soap_new_set_saml1__AuthorityBindingType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AuthorityBinding(struct soap*, const struct saml1__AuthorityBindingType *, const char*, const char*); - -inline int soap_write__saml1__AuthorityBinding(struct soap *soap, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__AuthorityBinding(soap, p), 0) || ::soap_put__saml1__AuthorityBinding(soap, p, "saml1:AuthorityBinding", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__AuthorityBinding(struct soap *soap, const char *URL, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthorityBinding(soap, p), 0) || ::soap_put__saml1__AuthorityBinding(soap, p, "saml1:AuthorityBinding", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__AuthorityBinding(struct soap *soap, const char *URL, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthorityBinding(soap, p), 0) || ::soap_put__saml1__AuthorityBinding(soap, p, "saml1:AuthorityBinding", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__AuthorityBinding(struct soap *soap, const char *URL, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthorityBinding(soap, p), 0) || ::soap_put__saml1__AuthorityBinding(soap, p, "saml1:AuthorityBinding", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__AuthorityBinding soap_get_saml1__AuthorityBindingType - - -#define soap_read__saml1__AuthorityBinding soap_read_saml1__AuthorityBindingType - - -#define soap_GET__saml1__AuthorityBinding soap_GET_saml1__AuthorityBindingType - - -#define soap_POST_recv__saml1__AuthorityBinding soap_POST_recv_saml1__AuthorityBindingType - -#endif -/* _saml1__SubjectLocality is a typedef synonym of saml1__SubjectLocalityType */ - -#ifndef SOAP_TYPE__saml1__SubjectLocality_DEFINED -#define SOAP_TYPE__saml1__SubjectLocality_DEFINED - -#define soap_default__saml1__SubjectLocality soap_default_saml1__SubjectLocalityType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectLocalityType(struct soap*, const struct saml1__SubjectLocalityType *); - -#define soap_serialize__saml1__SubjectLocality soap_serialize_saml1__SubjectLocalityType - - -#define soap__saml1__SubjectLocality2s soap_saml1__SubjectLocalityType2s - - -#define soap_out__saml1__SubjectLocality soap_out_saml1__SubjectLocalityType - - -#define soap_s2_saml1__SubjectLocality soap_s2saml1__SubjectLocalityType - - -#define soap_in__saml1__SubjectLocality soap_in_saml1__SubjectLocalityType - - -#define soap_instantiate__saml1__SubjectLocality soap_instantiate_saml1__SubjectLocalityType - - -#define soap_new__saml1__SubjectLocality soap_new_saml1__SubjectLocalityType - - -#define soap_new_req__saml1__SubjectLocality soap_new_req_saml1__SubjectLocalityType - - -#define soap_new_set__saml1__SubjectLocality soap_new_set_saml1__SubjectLocalityType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__SubjectLocality(struct soap*, const struct saml1__SubjectLocalityType *, const char*, const char*); - -inline int soap_write__saml1__SubjectLocality(struct soap *soap, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__SubjectLocality(soap, p), 0) || ::soap_put__saml1__SubjectLocality(soap, p, "saml1:SubjectLocality", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__SubjectLocality(struct soap *soap, const char *URL, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectLocality(soap, p), 0) || ::soap_put__saml1__SubjectLocality(soap, p, "saml1:SubjectLocality", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__SubjectLocality(struct soap *soap, const char *URL, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectLocality(soap, p), 0) || ::soap_put__saml1__SubjectLocality(soap, p, "saml1:SubjectLocality", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__SubjectLocality(struct soap *soap, const char *URL, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectLocality(soap, p), 0) || ::soap_put__saml1__SubjectLocality(soap, p, "saml1:SubjectLocality", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__SubjectLocality soap_get_saml1__SubjectLocalityType - - -#define soap_read__saml1__SubjectLocality soap_read_saml1__SubjectLocalityType - - -#define soap_GET__saml1__SubjectLocality soap_GET_saml1__SubjectLocalityType - - -#define soap_POST_recv__saml1__SubjectLocality soap_POST_recv_saml1__SubjectLocalityType - -#endif -/* _saml1__AuthenticationStatement is a typedef synonym of saml1__AuthenticationStatementType */ - -#ifndef SOAP_TYPE__saml1__AuthenticationStatement_DEFINED -#define SOAP_TYPE__saml1__AuthenticationStatement_DEFINED - -#define soap_default__saml1__AuthenticationStatement soap_default_saml1__AuthenticationStatementType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthenticationStatementType(struct soap*, const struct saml1__AuthenticationStatementType *); - -#define soap_serialize__saml1__AuthenticationStatement soap_serialize_saml1__AuthenticationStatementType - - -#define soap__saml1__AuthenticationStatement2s soap_saml1__AuthenticationStatementType2s - - -#define soap_out__saml1__AuthenticationStatement soap_out_saml1__AuthenticationStatementType - - -#define soap_s2_saml1__AuthenticationStatement soap_s2saml1__AuthenticationStatementType - - -#define soap_in__saml1__AuthenticationStatement soap_in_saml1__AuthenticationStatementType - - -#define soap_instantiate__saml1__AuthenticationStatement soap_instantiate_saml1__AuthenticationStatementType - - -#define soap_new__saml1__AuthenticationStatement soap_new_saml1__AuthenticationStatementType - - -#define soap_new_req__saml1__AuthenticationStatement soap_new_req_saml1__AuthenticationStatementType - - -#define soap_new_set__saml1__AuthenticationStatement soap_new_set_saml1__AuthenticationStatementType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AuthenticationStatement(struct soap*, const struct saml1__AuthenticationStatementType *, const char*, const char*); - -inline int soap_write__saml1__AuthenticationStatement(struct soap *soap, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__AuthenticationStatement(soap, p), 0) || ::soap_put__saml1__AuthenticationStatement(soap, p, "saml1:AuthenticationStatement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__AuthenticationStatement(struct soap *soap, const char *URL, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthenticationStatement(soap, p), 0) || ::soap_put__saml1__AuthenticationStatement(soap, p, "saml1:AuthenticationStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__AuthenticationStatement(struct soap *soap, const char *URL, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthenticationStatement(soap, p), 0) || ::soap_put__saml1__AuthenticationStatement(soap, p, "saml1:AuthenticationStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__AuthenticationStatement(struct soap *soap, const char *URL, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AuthenticationStatement(soap, p), 0) || ::soap_put__saml1__AuthenticationStatement(soap, p, "saml1:AuthenticationStatement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__AuthenticationStatement soap_get_saml1__AuthenticationStatementType - - -#define soap_read__saml1__AuthenticationStatement soap_read_saml1__AuthenticationStatementType - - -#define soap_GET__saml1__AuthenticationStatement soap_GET_saml1__AuthenticationStatementType - - -#define soap_POST_recv__saml1__AuthenticationStatement soap_POST_recv_saml1__AuthenticationStatementType - -#endif -/* _saml1__SubjectConfirmation is a typedef synonym of saml1__SubjectConfirmationType */ - -#ifndef SOAP_TYPE__saml1__SubjectConfirmation_DEFINED -#define SOAP_TYPE__saml1__SubjectConfirmation_DEFINED - -#define soap_default__saml1__SubjectConfirmation soap_default_saml1__SubjectConfirmationType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectConfirmationType(struct soap*, const struct saml1__SubjectConfirmationType *); - -#define soap_serialize__saml1__SubjectConfirmation soap_serialize_saml1__SubjectConfirmationType - - -#define soap__saml1__SubjectConfirmation2s soap_saml1__SubjectConfirmationType2s - - -#define soap_out__saml1__SubjectConfirmation soap_out_saml1__SubjectConfirmationType - - -#define soap_s2_saml1__SubjectConfirmation soap_s2saml1__SubjectConfirmationType - - -#define soap_in__saml1__SubjectConfirmation soap_in_saml1__SubjectConfirmationType - - -#define soap_instantiate__saml1__SubjectConfirmation soap_instantiate_saml1__SubjectConfirmationType - - -#define soap_new__saml1__SubjectConfirmation soap_new_saml1__SubjectConfirmationType - - -#define soap_new_req__saml1__SubjectConfirmation soap_new_req_saml1__SubjectConfirmationType - - -#define soap_new_set__saml1__SubjectConfirmation soap_new_set_saml1__SubjectConfirmationType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__SubjectConfirmation(struct soap*, const struct saml1__SubjectConfirmationType *, const char*, const char*); - -inline int soap_write__saml1__SubjectConfirmation(struct soap *soap, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__SubjectConfirmation(soap, p), 0) || ::soap_put__saml1__SubjectConfirmation(soap, p, "saml1:SubjectConfirmation", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__SubjectConfirmation(struct soap *soap, const char *URL, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectConfirmation(soap, p), 0) || ::soap_put__saml1__SubjectConfirmation(soap, p, "saml1:SubjectConfirmation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__SubjectConfirmation(struct soap *soap, const char *URL, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectConfirmation(soap, p), 0) || ::soap_put__saml1__SubjectConfirmation(soap, p, "saml1:SubjectConfirmation", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__SubjectConfirmation(struct soap *soap, const char *URL, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectConfirmation(soap, p), 0) || ::soap_put__saml1__SubjectConfirmation(soap, p, "saml1:SubjectConfirmation", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__SubjectConfirmation soap_get_saml1__SubjectConfirmationType - - -#define soap_read__saml1__SubjectConfirmation soap_read_saml1__SubjectConfirmationType - - -#define soap_GET__saml1__SubjectConfirmation soap_GET_saml1__SubjectConfirmationType - - -#define soap_POST_recv__saml1__SubjectConfirmation soap_POST_recv_saml1__SubjectConfirmationType - -#endif -/* _saml1__NameIdentifier is a typedef synonym of saml1__NameIdentifierType */ - -#ifndef SOAP_TYPE__saml1__NameIdentifier_DEFINED -#define SOAP_TYPE__saml1__NameIdentifier_DEFINED - -#define soap_default__saml1__NameIdentifier soap_default_saml1__NameIdentifierType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__NameIdentifierType(struct soap*, const struct saml1__NameIdentifierType *); - -#define soap_serialize__saml1__NameIdentifier soap_serialize_saml1__NameIdentifierType - - -#define soap__saml1__NameIdentifier2s soap_saml1__NameIdentifierType2s - - -#define soap_out__saml1__NameIdentifier soap_out_saml1__NameIdentifierType - - -#define soap_s2_saml1__NameIdentifier soap_s2saml1__NameIdentifierType - - -#define soap_in__saml1__NameIdentifier soap_in_saml1__NameIdentifierType - - -#define soap_instantiate__saml1__NameIdentifier soap_instantiate_saml1__NameIdentifierType - - -#define soap_new__saml1__NameIdentifier soap_new_saml1__NameIdentifierType - - -#define soap_new_req__saml1__NameIdentifier soap_new_req_saml1__NameIdentifierType - - -#define soap_new_set__saml1__NameIdentifier soap_new_set_saml1__NameIdentifierType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__NameIdentifier(struct soap*, const struct saml1__NameIdentifierType *, const char*, const char*); - -inline int soap_write__saml1__NameIdentifier(struct soap *soap, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__NameIdentifier(soap, p), 0) || ::soap_put__saml1__NameIdentifier(soap, p, "saml1:NameIdentifier", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__NameIdentifier(struct soap *soap, const char *URL, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__NameIdentifier(soap, p), 0) || ::soap_put__saml1__NameIdentifier(soap, p, "saml1:NameIdentifier", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__NameIdentifier(struct soap *soap, const char *URL, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__NameIdentifier(soap, p), 0) || ::soap_put__saml1__NameIdentifier(soap, p, "saml1:NameIdentifier", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__NameIdentifier(struct soap *soap, const char *URL, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__NameIdentifier(soap, p), 0) || ::soap_put__saml1__NameIdentifier(soap, p, "saml1:NameIdentifier", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__NameIdentifier soap_get_saml1__NameIdentifierType - - -#define soap_read__saml1__NameIdentifier soap_read_saml1__NameIdentifierType - - -#define soap_GET__saml1__NameIdentifier soap_GET_saml1__NameIdentifierType - - -#define soap_POST_recv__saml1__NameIdentifier soap_POST_recv_saml1__NameIdentifierType - -#endif -/* _saml1__Subject is a typedef synonym of saml1__SubjectType */ - -#ifndef SOAP_TYPE__saml1__Subject_DEFINED -#define SOAP_TYPE__saml1__Subject_DEFINED - -#define soap_default__saml1__Subject soap_default_saml1__SubjectType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectType(struct soap*, const struct saml1__SubjectType *); - -#define soap_serialize__saml1__Subject soap_serialize_saml1__SubjectType - - -#define soap__saml1__Subject2s soap_saml1__SubjectType2s - - -#define soap_out__saml1__Subject soap_out_saml1__SubjectType - - -#define soap_s2_saml1__Subject soap_s2saml1__SubjectType - - -#define soap_in__saml1__Subject soap_in_saml1__SubjectType - - -#define soap_instantiate__saml1__Subject soap_instantiate_saml1__SubjectType - - -#define soap_new__saml1__Subject soap_new_saml1__SubjectType - - -#define soap_new_req__saml1__Subject soap_new_req_saml1__SubjectType - - -#define soap_new_set__saml1__Subject soap_new_set_saml1__SubjectType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Subject(struct soap*, const struct saml1__SubjectType *, const char*, const char*); - -inline int soap_write__saml1__Subject(struct soap *soap, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Subject(soap, p), 0) || ::soap_put__saml1__Subject(soap, p, "saml1:Subject", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Subject(struct soap *soap, const char *URL, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Subject(soap, p), 0) || ::soap_put__saml1__Subject(soap, p, "saml1:Subject", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Subject(struct soap *soap, const char *URL, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Subject(soap, p), 0) || ::soap_put__saml1__Subject(soap, p, "saml1:Subject", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Subject(struct soap *soap, const char *URL, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Subject(soap, p), 0) || ::soap_put__saml1__Subject(soap, p, "saml1:Subject", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Subject soap_get_saml1__SubjectType - - -#define soap_read__saml1__Subject soap_read_saml1__SubjectType - - -#define soap_GET__saml1__Subject soap_GET_saml1__SubjectType - - -#define soap_POST_recv__saml1__Subject soap_POST_recv_saml1__SubjectType - -#endif -/* _saml1__SubjectStatement is a typedef synonym of saml1__SubjectStatementAbstractType */ - -#ifndef SOAP_TYPE__saml1__SubjectStatement_DEFINED -#define SOAP_TYPE__saml1__SubjectStatement_DEFINED - -#define soap_default__saml1__SubjectStatement soap_default_saml1__SubjectStatementAbstractType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectStatementAbstractType(struct soap*, const struct saml1__SubjectStatementAbstractType *); - -#define soap_serialize__saml1__SubjectStatement soap_serialize_saml1__SubjectStatementAbstractType - - -#define soap__saml1__SubjectStatement2s soap_saml1__SubjectStatementAbstractType2s - - -#define soap_out__saml1__SubjectStatement soap_out_saml1__SubjectStatementAbstractType - - -#define soap_s2_saml1__SubjectStatement soap_s2saml1__SubjectStatementAbstractType - - -#define soap_in__saml1__SubjectStatement soap_in_saml1__SubjectStatementAbstractType - - -#define soap_instantiate__saml1__SubjectStatement soap_instantiate_saml1__SubjectStatementAbstractType - - -#define soap_new__saml1__SubjectStatement soap_new_saml1__SubjectStatementAbstractType - - -#define soap_new_req__saml1__SubjectStatement soap_new_req_saml1__SubjectStatementAbstractType - - -#define soap_new_set__saml1__SubjectStatement soap_new_set_saml1__SubjectStatementAbstractType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__SubjectStatement(struct soap*, const struct saml1__SubjectStatementAbstractType *, const char*, const char*); - -inline int soap_write__saml1__SubjectStatement(struct soap *soap, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__SubjectStatement(soap, p), 0) || ::soap_put__saml1__SubjectStatement(soap, p, "saml1:SubjectStatement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__SubjectStatement(struct soap *soap, const char *URL, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectStatement(soap, p), 0) || ::soap_put__saml1__SubjectStatement(soap, p, "saml1:SubjectStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__SubjectStatement(struct soap *soap, const char *URL, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectStatement(soap, p), 0) || ::soap_put__saml1__SubjectStatement(soap, p, "saml1:SubjectStatement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__SubjectStatement(struct soap *soap, const char *URL, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__SubjectStatement(soap, p), 0) || ::soap_put__saml1__SubjectStatement(soap, p, "saml1:SubjectStatement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__SubjectStatement soap_get_saml1__SubjectStatementAbstractType - - -#define soap_read__saml1__SubjectStatement soap_read_saml1__SubjectStatementAbstractType - - -#define soap_GET__saml1__SubjectStatement soap_GET_saml1__SubjectStatementAbstractType - - -#define soap_POST_recv__saml1__SubjectStatement soap_POST_recv_saml1__SubjectStatementAbstractType - -#endif -/* _saml1__Statement is a typedef synonym of saml1__StatementAbstractType */ - -#ifndef SOAP_TYPE__saml1__Statement_DEFINED -#define SOAP_TYPE__saml1__Statement_DEFINED - -#define soap_default__saml1__Statement soap_default_saml1__StatementAbstractType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__StatementAbstractType(struct soap*, const struct saml1__StatementAbstractType *); - -#define soap_serialize__saml1__Statement soap_serialize_saml1__StatementAbstractType - - -#define soap__saml1__Statement2s soap_saml1__StatementAbstractType2s - - -#define soap_out__saml1__Statement soap_out_saml1__StatementAbstractType - - -#define soap_s2_saml1__Statement soap_s2saml1__StatementAbstractType - - -#define soap_in__saml1__Statement soap_in_saml1__StatementAbstractType - - -#define soap_instantiate__saml1__Statement soap_instantiate_saml1__StatementAbstractType - - -#define soap_new__saml1__Statement soap_new_saml1__StatementAbstractType - - -#define soap_new_req__saml1__Statement soap_new_req_saml1__StatementAbstractType - - -#define soap_new_set__saml1__Statement soap_new_set_saml1__StatementAbstractType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Statement(struct soap*, const struct saml1__StatementAbstractType *, const char*, const char*); - -inline int soap_write__saml1__Statement(struct soap *soap, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Statement(soap, p), 0) || ::soap_put__saml1__Statement(soap, p, "saml1:Statement", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Statement(struct soap *soap, const char *URL, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Statement(soap, p), 0) || ::soap_put__saml1__Statement(soap, p, "saml1:Statement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Statement(struct soap *soap, const char *URL, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Statement(soap, p), 0) || ::soap_put__saml1__Statement(soap, p, "saml1:Statement", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Statement(struct soap *soap, const char *URL, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Statement(soap, p), 0) || ::soap_put__saml1__Statement(soap, p, "saml1:Statement", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Statement soap_get_saml1__StatementAbstractType - - -#define soap_read__saml1__Statement soap_read_saml1__StatementAbstractType - - -#define soap_GET__saml1__Statement soap_GET_saml1__StatementAbstractType - - -#define soap_POST_recv__saml1__Statement soap_POST_recv_saml1__StatementAbstractType - -#endif -/* _saml1__Advice is a typedef synonym of saml1__AdviceType */ - -#ifndef SOAP_TYPE__saml1__Advice_DEFINED -#define SOAP_TYPE__saml1__Advice_DEFINED - -#define soap_default__saml1__Advice soap_default_saml1__AdviceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AdviceType(struct soap*, const struct saml1__AdviceType *); - -#define soap_serialize__saml1__Advice soap_serialize_saml1__AdviceType - - -#define soap__saml1__Advice2s soap_saml1__AdviceType2s - - -#define soap_out__saml1__Advice soap_out_saml1__AdviceType - - -#define soap_s2_saml1__Advice soap_s2saml1__AdviceType - - -#define soap_in__saml1__Advice soap_in_saml1__AdviceType - - -#define soap_instantiate__saml1__Advice soap_instantiate_saml1__AdviceType - - -#define soap_new__saml1__Advice soap_new_saml1__AdviceType - - -#define soap_new_req__saml1__Advice soap_new_req_saml1__AdviceType - - -#define soap_new_set__saml1__Advice soap_new_set_saml1__AdviceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Advice(struct soap*, const struct saml1__AdviceType *, const char*, const char*); - -inline int soap_write__saml1__Advice(struct soap *soap, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Advice(soap, p), 0) || ::soap_put__saml1__Advice(soap, p, "saml1:Advice", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Advice(struct soap *soap, const char *URL, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Advice(soap, p), 0) || ::soap_put__saml1__Advice(soap, p, "saml1:Advice", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Advice(struct soap *soap, const char *URL, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Advice(soap, p), 0) || ::soap_put__saml1__Advice(soap, p, "saml1:Advice", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Advice(struct soap *soap, const char *URL, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Advice(soap, p), 0) || ::soap_put__saml1__Advice(soap, p, "saml1:Advice", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Advice soap_get_saml1__AdviceType - - -#define soap_read__saml1__Advice soap_read_saml1__AdviceType - - -#define soap_GET__saml1__Advice soap_GET_saml1__AdviceType - - -#define soap_POST_recv__saml1__Advice soap_POST_recv_saml1__AdviceType - -#endif -/* _saml1__DoNotCacheCondition is a typedef synonym of saml1__DoNotCacheConditionType */ - -#ifndef SOAP_TYPE__saml1__DoNotCacheCondition_DEFINED -#define SOAP_TYPE__saml1__DoNotCacheCondition_DEFINED - -#define soap_default__saml1__DoNotCacheCondition soap_default_saml1__DoNotCacheConditionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__DoNotCacheConditionType(struct soap*, const struct saml1__DoNotCacheConditionType *); - -#define soap_serialize__saml1__DoNotCacheCondition soap_serialize_saml1__DoNotCacheConditionType - - -#define soap__saml1__DoNotCacheCondition2s soap_saml1__DoNotCacheConditionType2s - - -#define soap_out__saml1__DoNotCacheCondition soap_out_saml1__DoNotCacheConditionType - - -#define soap_s2_saml1__DoNotCacheCondition soap_s2saml1__DoNotCacheConditionType - - -#define soap_in__saml1__DoNotCacheCondition soap_in_saml1__DoNotCacheConditionType - - -#define soap_instantiate__saml1__DoNotCacheCondition soap_instantiate_saml1__DoNotCacheConditionType - - -#define soap_new__saml1__DoNotCacheCondition soap_new_saml1__DoNotCacheConditionType - - -#define soap_new_req__saml1__DoNotCacheCondition soap_new_req_saml1__DoNotCacheConditionType - - -#define soap_new_set__saml1__DoNotCacheCondition soap_new_set_saml1__DoNotCacheConditionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__DoNotCacheCondition(struct soap*, const struct saml1__DoNotCacheConditionType *, const char*, const char*); - -inline int soap_write__saml1__DoNotCacheCondition(struct soap *soap, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__DoNotCacheCondition(soap, p), 0) || ::soap_put__saml1__DoNotCacheCondition(soap, p, "saml1:DoNotCacheCondition", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__DoNotCacheCondition(struct soap *soap, const char *URL, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__DoNotCacheCondition(soap, p), 0) || ::soap_put__saml1__DoNotCacheCondition(soap, p, "saml1:DoNotCacheCondition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__DoNotCacheCondition(struct soap *soap, const char *URL, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__DoNotCacheCondition(soap, p), 0) || ::soap_put__saml1__DoNotCacheCondition(soap, p, "saml1:DoNotCacheCondition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__DoNotCacheCondition(struct soap *soap, const char *URL, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__DoNotCacheCondition(soap, p), 0) || ::soap_put__saml1__DoNotCacheCondition(soap, p, "saml1:DoNotCacheCondition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__DoNotCacheCondition soap_get_saml1__DoNotCacheConditionType - - -#define soap_read__saml1__DoNotCacheCondition soap_read_saml1__DoNotCacheConditionType - - -#define soap_GET__saml1__DoNotCacheCondition soap_GET_saml1__DoNotCacheConditionType - - -#define soap_POST_recv__saml1__DoNotCacheCondition soap_POST_recv_saml1__DoNotCacheConditionType - -#endif -/* _saml1__AudienceRestrictionCondition is a typedef synonym of saml1__AudienceRestrictionConditionType */ - -#ifndef SOAP_TYPE__saml1__AudienceRestrictionCondition_DEFINED -#define SOAP_TYPE__saml1__AudienceRestrictionCondition_DEFINED - -#define soap_default__saml1__AudienceRestrictionCondition soap_default_saml1__AudienceRestrictionConditionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AudienceRestrictionConditionType(struct soap*, const struct saml1__AudienceRestrictionConditionType *); - -#define soap_serialize__saml1__AudienceRestrictionCondition soap_serialize_saml1__AudienceRestrictionConditionType - - -#define soap__saml1__AudienceRestrictionCondition2s soap_saml1__AudienceRestrictionConditionType2s - - -#define soap_out__saml1__AudienceRestrictionCondition soap_out_saml1__AudienceRestrictionConditionType - - -#define soap_s2_saml1__AudienceRestrictionCondition soap_s2saml1__AudienceRestrictionConditionType - - -#define soap_in__saml1__AudienceRestrictionCondition soap_in_saml1__AudienceRestrictionConditionType - - -#define soap_instantiate__saml1__AudienceRestrictionCondition soap_instantiate_saml1__AudienceRestrictionConditionType - - -#define soap_new__saml1__AudienceRestrictionCondition soap_new_saml1__AudienceRestrictionConditionType - - -#define soap_new_req__saml1__AudienceRestrictionCondition soap_new_req_saml1__AudienceRestrictionConditionType - - -#define soap_new_set__saml1__AudienceRestrictionCondition soap_new_set_saml1__AudienceRestrictionConditionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AudienceRestrictionCondition(struct soap*, const struct saml1__AudienceRestrictionConditionType *, const char*, const char*); - -inline int soap_write__saml1__AudienceRestrictionCondition(struct soap *soap, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__AudienceRestrictionCondition(soap, p), 0) || ::soap_put__saml1__AudienceRestrictionCondition(soap, p, "saml1:AudienceRestrictionCondition", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__AudienceRestrictionCondition(struct soap *soap, const char *URL, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AudienceRestrictionCondition(soap, p), 0) || ::soap_put__saml1__AudienceRestrictionCondition(soap, p, "saml1:AudienceRestrictionCondition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__AudienceRestrictionCondition(struct soap *soap, const char *URL, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AudienceRestrictionCondition(soap, p), 0) || ::soap_put__saml1__AudienceRestrictionCondition(soap, p, "saml1:AudienceRestrictionCondition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__AudienceRestrictionCondition(struct soap *soap, const char *URL, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__AudienceRestrictionCondition(soap, p), 0) || ::soap_put__saml1__AudienceRestrictionCondition(soap, p, "saml1:AudienceRestrictionCondition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__AudienceRestrictionCondition soap_get_saml1__AudienceRestrictionConditionType - - -#define soap_read__saml1__AudienceRestrictionCondition soap_read_saml1__AudienceRestrictionConditionType - - -#define soap_GET__saml1__AudienceRestrictionCondition soap_GET_saml1__AudienceRestrictionConditionType - - -#define soap_POST_recv__saml1__AudienceRestrictionCondition soap_POST_recv_saml1__AudienceRestrictionConditionType - -#endif -/* _saml1__Condition is a typedef synonym of saml1__ConditionAbstractType */ - -#ifndef SOAP_TYPE__saml1__Condition_DEFINED -#define SOAP_TYPE__saml1__Condition_DEFINED - -#define soap_default__saml1__Condition soap_default_saml1__ConditionAbstractType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ConditionAbstractType(struct soap*, const struct saml1__ConditionAbstractType *); - -#define soap_serialize__saml1__Condition soap_serialize_saml1__ConditionAbstractType - - -#define soap__saml1__Condition2s soap_saml1__ConditionAbstractType2s - - -#define soap_out__saml1__Condition soap_out_saml1__ConditionAbstractType - - -#define soap_s2_saml1__Condition soap_s2saml1__ConditionAbstractType - - -#define soap_in__saml1__Condition soap_in_saml1__ConditionAbstractType - - -#define soap_instantiate__saml1__Condition soap_instantiate_saml1__ConditionAbstractType - - -#define soap_new__saml1__Condition soap_new_saml1__ConditionAbstractType - - -#define soap_new_req__saml1__Condition soap_new_req_saml1__ConditionAbstractType - - -#define soap_new_set__saml1__Condition soap_new_set_saml1__ConditionAbstractType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Condition(struct soap*, const struct saml1__ConditionAbstractType *, const char*, const char*); - -inline int soap_write__saml1__Condition(struct soap *soap, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Condition(soap, p), 0) || ::soap_put__saml1__Condition(soap, p, "saml1:Condition", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Condition(struct soap *soap, const char *URL, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Condition(soap, p), 0) || ::soap_put__saml1__Condition(soap, p, "saml1:Condition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Condition(struct soap *soap, const char *URL, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Condition(soap, p), 0) || ::soap_put__saml1__Condition(soap, p, "saml1:Condition", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Condition(struct soap *soap, const char *URL, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Condition(soap, p), 0) || ::soap_put__saml1__Condition(soap, p, "saml1:Condition", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Condition soap_get_saml1__ConditionAbstractType - - -#define soap_read__saml1__Condition soap_read_saml1__ConditionAbstractType - - -#define soap_GET__saml1__Condition soap_GET_saml1__ConditionAbstractType - - -#define soap_POST_recv__saml1__Condition soap_POST_recv_saml1__ConditionAbstractType - -#endif -/* _saml1__Conditions is a typedef synonym of saml1__ConditionsType */ - -#ifndef SOAP_TYPE__saml1__Conditions_DEFINED -#define SOAP_TYPE__saml1__Conditions_DEFINED - -#define soap_default__saml1__Conditions soap_default_saml1__ConditionsType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ConditionsType(struct soap*, const struct saml1__ConditionsType *); - -#define soap_serialize__saml1__Conditions soap_serialize_saml1__ConditionsType - - -#define soap__saml1__Conditions2s soap_saml1__ConditionsType2s - - -#define soap_out__saml1__Conditions soap_out_saml1__ConditionsType - - -#define soap_s2_saml1__Conditions soap_s2saml1__ConditionsType - - -#define soap_in__saml1__Conditions soap_in_saml1__ConditionsType - - -#define soap_instantiate__saml1__Conditions soap_instantiate_saml1__ConditionsType - - -#define soap_new__saml1__Conditions soap_new_saml1__ConditionsType - - -#define soap_new_req__saml1__Conditions soap_new_req_saml1__ConditionsType - - -#define soap_new_set__saml1__Conditions soap_new_set_saml1__ConditionsType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Conditions(struct soap*, const struct saml1__ConditionsType *, const char*, const char*); - -inline int soap_write__saml1__Conditions(struct soap *soap, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Conditions(soap, p), 0) || ::soap_put__saml1__Conditions(soap, p, "saml1:Conditions", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Conditions(struct soap *soap, const char *URL, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Conditions(soap, p), 0) || ::soap_put__saml1__Conditions(soap, p, "saml1:Conditions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Conditions(struct soap *soap, const char *URL, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Conditions(soap, p), 0) || ::soap_put__saml1__Conditions(soap, p, "saml1:Conditions", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Conditions(struct soap *soap, const char *URL, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Conditions(soap, p), 0) || ::soap_put__saml1__Conditions(soap, p, "saml1:Conditions", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Conditions soap_get_saml1__ConditionsType - - -#define soap_read__saml1__Conditions soap_read_saml1__ConditionsType - - -#define soap_GET__saml1__Conditions soap_GET_saml1__ConditionsType - - -#define soap_POST_recv__saml1__Conditions soap_POST_recv_saml1__ConditionsType - -#endif -/* _saml1__Assertion is a typedef synonym of saml1__AssertionType */ - -#ifndef SOAP_TYPE__saml1__Assertion_DEFINED -#define SOAP_TYPE__saml1__Assertion_DEFINED - -#define soap_default__saml1__Assertion soap_default_saml1__AssertionType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AssertionType(struct soap*, const struct saml1__AssertionType *); - -#define soap_serialize__saml1__Assertion soap_serialize_saml1__AssertionType - - -#define soap__saml1__Assertion2s soap_saml1__AssertionType2s - - -#define soap_out__saml1__Assertion soap_out_saml1__AssertionType - - -#define soap_s2_saml1__Assertion soap_s2saml1__AssertionType - - -#define soap_in__saml1__Assertion soap_in_saml1__AssertionType - - -#define soap_instantiate__saml1__Assertion soap_instantiate_saml1__AssertionType - - -#define soap_new__saml1__Assertion soap_new_saml1__AssertionType - - -#define soap_new_req__saml1__Assertion soap_new_req_saml1__AssertionType - - -#define soap_new_set__saml1__Assertion soap_new_set_saml1__AssertionType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Assertion(struct soap*, const struct saml1__AssertionType *, const char*, const char*); - -inline int soap_write__saml1__Assertion(struct soap *soap, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__saml1__Assertion(soap, p), 0) || ::soap_put__saml1__Assertion(soap, p, "saml1:Assertion", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__saml1__Assertion(struct soap *soap, const char *URL, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Assertion(soap, p), 0) || ::soap_put__saml1__Assertion(soap, p, "saml1:Assertion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Assertion(struct soap *soap, const char *URL, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Assertion(soap, p), 0) || ::soap_put__saml1__Assertion(soap, p, "saml1:Assertion", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Assertion(struct soap *soap, const char *URL, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__saml1__Assertion(soap, p), 0) || ::soap_put__saml1__Assertion(soap, p, "saml1:Assertion", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Assertion soap_get_saml1__AssertionType - - -#define soap_read__saml1__Assertion soap_read_saml1__AssertionType - - -#define soap_GET__saml1__Assertion soap_GET_saml1__AssertionType - - -#define soap_POST_recv__saml1__Assertion soap_POST_recv_saml1__AssertionType - -#endif - -#ifndef SOAP_TYPE___saml1__union_EvidenceType_DEFINED -#define SOAP_TYPE___saml1__union_EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_EvidenceType(struct soap*, struct __saml1__union_EvidenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_EvidenceType(struct soap*, const struct __saml1__union_EvidenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_EvidenceType(struct soap*, const char*, int, const struct __saml1__union_EvidenceType *, const char*); -SOAP_FMAC3 struct __saml1__union_EvidenceType * SOAP_FMAC4 soap_in___saml1__union_EvidenceType(struct soap*, const char*, struct __saml1__union_EvidenceType *, const char*); -SOAP_FMAC1 struct __saml1__union_EvidenceType * SOAP_FMAC2 soap_instantiate___saml1__union_EvidenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml1__union_EvidenceType * soap_new___saml1__union_EvidenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml1__union_EvidenceType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml1__union_EvidenceType * soap_new_req___saml1__union_EvidenceType( - struct soap *soap) -{ - struct __saml1__union_EvidenceType *_p = ::soap_new___saml1__union_EvidenceType(soap); - if (_p) - { ::soap_default___saml1__union_EvidenceType(soap, _p); - } - return _p; -} - -inline struct __saml1__union_EvidenceType * soap_new_set___saml1__union_EvidenceType( - struct soap *soap, - char *saml1__AssertionIDReference, - struct saml1__AssertionType *saml1__Assertion) -{ - struct __saml1__union_EvidenceType *_p = ::soap_new___saml1__union_EvidenceType(soap); - if (_p) - { ::soap_default___saml1__union_EvidenceType(soap, _p); - _p->saml1__AssertionIDReference = saml1__AssertionIDReference; - _p->saml1__Assertion = saml1__Assertion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_EvidenceType(struct soap*, const struct __saml1__union_EvidenceType *, const char*, const char*); - -inline int soap_write___saml1__union_EvidenceType(struct soap *soap, struct __saml1__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml1__union_EvidenceType(soap, p), 0) || ::soap_put___saml1__union_EvidenceType(soap, p, "-saml1:union-EvidenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml1__union_EvidenceType(struct soap *soap, const char *URL, struct __saml1__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_EvidenceType(soap, p), 0) || ::soap_put___saml1__union_EvidenceType(soap, p, "-saml1:union-EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml1__union_EvidenceType(struct soap *soap, const char *URL, struct __saml1__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_EvidenceType(soap, p), 0) || ::soap_put___saml1__union_EvidenceType(soap, p, "-saml1:union-EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml1__union_EvidenceType(struct soap *soap, const char *URL, struct __saml1__union_EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_EvidenceType(soap, p), 0) || ::soap_put___saml1__union_EvidenceType(soap, p, "-saml1:union-EvidenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml1__union_EvidenceType * SOAP_FMAC4 soap_get___saml1__union_EvidenceType(struct soap*, struct __saml1__union_EvidenceType *, const char*, const char*); - -inline int soap_read___saml1__union_EvidenceType(struct soap *soap, struct __saml1__union_EvidenceType *p) -{ - if (p) - { ::soap_default___saml1__union_EvidenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml1__union_EvidenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml1__union_EvidenceType(struct soap *soap, const char *URL, struct __saml1__union_EvidenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml1__union_EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml1__union_EvidenceType(struct soap *soap, struct __saml1__union_EvidenceType *p) -{ - if (::soap_read___saml1__union_EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___saml1__union_AdviceType_DEFINED -#define SOAP_TYPE___saml1__union_AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_AdviceType(struct soap*, struct __saml1__union_AdviceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_AdviceType(struct soap*, const struct __saml1__union_AdviceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_AdviceType(struct soap*, const char*, int, const struct __saml1__union_AdviceType *, const char*); -SOAP_FMAC3 struct __saml1__union_AdviceType * SOAP_FMAC4 soap_in___saml1__union_AdviceType(struct soap*, const char*, struct __saml1__union_AdviceType *, const char*); -SOAP_FMAC1 struct __saml1__union_AdviceType * SOAP_FMAC2 soap_instantiate___saml1__union_AdviceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml1__union_AdviceType * soap_new___saml1__union_AdviceType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml1__union_AdviceType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml1__union_AdviceType * soap_new_req___saml1__union_AdviceType( - struct soap *soap) -{ - struct __saml1__union_AdviceType *_p = ::soap_new___saml1__union_AdviceType(soap); - if (_p) - { ::soap_default___saml1__union_AdviceType(soap, _p); - } - return _p; -} - -inline struct __saml1__union_AdviceType * soap_new_set___saml1__union_AdviceType( - struct soap *soap, - char *saml1__AssertionIDReference, - struct saml1__AssertionType *saml1__Assertion) -{ - struct __saml1__union_AdviceType *_p = ::soap_new___saml1__union_AdviceType(soap); - if (_p) - { ::soap_default___saml1__union_AdviceType(soap, _p); - _p->saml1__AssertionIDReference = saml1__AssertionIDReference; - _p->saml1__Assertion = saml1__Assertion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_AdviceType(struct soap*, const struct __saml1__union_AdviceType *, const char*, const char*); - -inline int soap_write___saml1__union_AdviceType(struct soap *soap, struct __saml1__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml1__union_AdviceType(soap, p), 0) || ::soap_put___saml1__union_AdviceType(soap, p, "-saml1:union-AdviceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml1__union_AdviceType(struct soap *soap, const char *URL, struct __saml1__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_AdviceType(soap, p), 0) || ::soap_put___saml1__union_AdviceType(soap, p, "-saml1:union-AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml1__union_AdviceType(struct soap *soap, const char *URL, struct __saml1__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_AdviceType(soap, p), 0) || ::soap_put___saml1__union_AdviceType(soap, p, "-saml1:union-AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml1__union_AdviceType(struct soap *soap, const char *URL, struct __saml1__union_AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_AdviceType(soap, p), 0) || ::soap_put___saml1__union_AdviceType(soap, p, "-saml1:union-AdviceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml1__union_AdviceType * SOAP_FMAC4 soap_get___saml1__union_AdviceType(struct soap*, struct __saml1__union_AdviceType *, const char*, const char*); - -inline int soap_read___saml1__union_AdviceType(struct soap *soap, struct __saml1__union_AdviceType *p) -{ - if (p) - { ::soap_default___saml1__union_AdviceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml1__union_AdviceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml1__union_AdviceType(struct soap *soap, const char *URL, struct __saml1__union_AdviceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml1__union_AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml1__union_AdviceType(struct soap *soap, struct __saml1__union_AdviceType *p) -{ - if (::soap_read___saml1__union_AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___saml1__union_ConditionsType_DEFINED -#define SOAP_TYPE___saml1__union_ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_ConditionsType(struct soap*, struct __saml1__union_ConditionsType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_ConditionsType(struct soap*, const struct __saml1__union_ConditionsType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_ConditionsType(struct soap*, const char*, int, const struct __saml1__union_ConditionsType *, const char*); -SOAP_FMAC3 struct __saml1__union_ConditionsType * SOAP_FMAC4 soap_in___saml1__union_ConditionsType(struct soap*, const char*, struct __saml1__union_ConditionsType *, const char*); -SOAP_FMAC1 struct __saml1__union_ConditionsType * SOAP_FMAC2 soap_instantiate___saml1__union_ConditionsType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml1__union_ConditionsType * soap_new___saml1__union_ConditionsType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml1__union_ConditionsType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml1__union_ConditionsType * soap_new_req___saml1__union_ConditionsType( - struct soap *soap) -{ - struct __saml1__union_ConditionsType *_p = ::soap_new___saml1__union_ConditionsType(soap); - if (_p) - { ::soap_default___saml1__union_ConditionsType(soap, _p); - } - return _p; -} - -inline struct __saml1__union_ConditionsType * soap_new_set___saml1__union_ConditionsType( - struct soap *soap, - struct saml1__AudienceRestrictionConditionType *saml1__AudienceRestrictionCondition, - struct saml1__DoNotCacheConditionType *saml1__DoNotCacheCondition, - struct saml1__ConditionAbstractType *saml1__Condition) -{ - struct __saml1__union_ConditionsType *_p = ::soap_new___saml1__union_ConditionsType(soap); - if (_p) - { ::soap_default___saml1__union_ConditionsType(soap, _p); - _p->saml1__AudienceRestrictionCondition = saml1__AudienceRestrictionCondition; - _p->saml1__DoNotCacheCondition = saml1__DoNotCacheCondition; - _p->saml1__Condition = saml1__Condition; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_ConditionsType(struct soap*, const struct __saml1__union_ConditionsType *, const char*, const char*); - -inline int soap_write___saml1__union_ConditionsType(struct soap *soap, struct __saml1__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml1__union_ConditionsType(soap, p), 0) || ::soap_put___saml1__union_ConditionsType(soap, p, "-saml1:union-ConditionsType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml1__union_ConditionsType(struct soap *soap, const char *URL, struct __saml1__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_ConditionsType(soap, p), 0) || ::soap_put___saml1__union_ConditionsType(soap, p, "-saml1:union-ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml1__union_ConditionsType(struct soap *soap, const char *URL, struct __saml1__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_ConditionsType(soap, p), 0) || ::soap_put___saml1__union_ConditionsType(soap, p, "-saml1:union-ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml1__union_ConditionsType(struct soap *soap, const char *URL, struct __saml1__union_ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_ConditionsType(soap, p), 0) || ::soap_put___saml1__union_ConditionsType(soap, p, "-saml1:union-ConditionsType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml1__union_ConditionsType * SOAP_FMAC4 soap_get___saml1__union_ConditionsType(struct soap*, struct __saml1__union_ConditionsType *, const char*, const char*); - -inline int soap_read___saml1__union_ConditionsType(struct soap *soap, struct __saml1__union_ConditionsType *p) -{ - if (p) - { ::soap_default___saml1__union_ConditionsType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml1__union_ConditionsType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml1__union_ConditionsType(struct soap *soap, const char *URL, struct __saml1__union_ConditionsType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml1__union_ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml1__union_ConditionsType(struct soap *soap, struct __saml1__union_ConditionsType *p) -{ - if (::soap_read___saml1__union_ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___saml1__union_AssertionType_DEFINED -#define SOAP_TYPE___saml1__union_AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___saml1__union_AssertionType(struct soap*, struct __saml1__union_AssertionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___saml1__union_AssertionType(struct soap*, const struct __saml1__union_AssertionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___saml1__union_AssertionType(struct soap*, const char*, int, const struct __saml1__union_AssertionType *, const char*); -SOAP_FMAC3 struct __saml1__union_AssertionType * SOAP_FMAC4 soap_in___saml1__union_AssertionType(struct soap*, const char*, struct __saml1__union_AssertionType *, const char*); -SOAP_FMAC1 struct __saml1__union_AssertionType * SOAP_FMAC2 soap_instantiate___saml1__union_AssertionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct __saml1__union_AssertionType * soap_new___saml1__union_AssertionType(struct soap *soap, int n = -1) -{ - return soap_instantiate___saml1__union_AssertionType(soap, n, NULL, NULL, NULL); -} - -inline struct __saml1__union_AssertionType * soap_new_req___saml1__union_AssertionType( - struct soap *soap) -{ - struct __saml1__union_AssertionType *_p = ::soap_new___saml1__union_AssertionType(soap); - if (_p) - { ::soap_default___saml1__union_AssertionType(soap, _p); - } - return _p; -} - -inline struct __saml1__union_AssertionType * soap_new_set___saml1__union_AssertionType( - struct soap *soap, - struct saml1__StatementAbstractType *saml1__Statement, - struct saml1__SubjectStatementAbstractType *saml1__SubjectStatement, - struct saml1__AuthenticationStatementType *saml1__AuthenticationStatement, - struct saml1__AuthorizationDecisionStatementType *saml1__AuthorizationDecisionStatement, - struct saml1__AttributeStatementType *saml1__AttributeStatement) -{ - struct __saml1__union_AssertionType *_p = ::soap_new___saml1__union_AssertionType(soap); - if (_p) - { ::soap_default___saml1__union_AssertionType(soap, _p); - _p->saml1__Statement = saml1__Statement; - _p->saml1__SubjectStatement = saml1__SubjectStatement; - _p->saml1__AuthenticationStatement = saml1__AuthenticationStatement; - _p->saml1__AuthorizationDecisionStatement = saml1__AuthorizationDecisionStatement; - _p->saml1__AttributeStatement = saml1__AttributeStatement; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___saml1__union_AssertionType(struct soap*, const struct __saml1__union_AssertionType *, const char*, const char*); - -inline int soap_write___saml1__union_AssertionType(struct soap *soap, struct __saml1__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___saml1__union_AssertionType(soap, p), 0) || ::soap_put___saml1__union_AssertionType(soap, p, "-saml1:union-AssertionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___saml1__union_AssertionType(struct soap *soap, const char *URL, struct __saml1__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_AssertionType(soap, p), 0) || ::soap_put___saml1__union_AssertionType(soap, p, "-saml1:union-AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___saml1__union_AssertionType(struct soap *soap, const char *URL, struct __saml1__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_AssertionType(soap, p), 0) || ::soap_put___saml1__union_AssertionType(soap, p, "-saml1:union-AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___saml1__union_AssertionType(struct soap *soap, const char *URL, struct __saml1__union_AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___saml1__union_AssertionType(soap, p), 0) || ::soap_put___saml1__union_AssertionType(soap, p, "-saml1:union-AssertionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __saml1__union_AssertionType * SOAP_FMAC4 soap_get___saml1__union_AssertionType(struct soap*, struct __saml1__union_AssertionType *, const char*, const char*); - -inline int soap_read___saml1__union_AssertionType(struct soap *soap, struct __saml1__union_AssertionType *p) -{ - if (p) - { ::soap_default___saml1__union_AssertionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get___saml1__union_AssertionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___saml1__union_AssertionType(struct soap *soap, const char *URL, struct __saml1__union_AssertionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___saml1__union_AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___saml1__union_AssertionType(struct soap *soap, struct __saml1__union_AssertionType *p) -{ - if (::soap_read___saml1__union_AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AttributeType_DEFINED -#define SOAP_TYPE_saml1__AttributeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AttributeType(struct soap*, struct saml1__AttributeType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeType(struct soap*, const struct saml1__AttributeType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AttributeType(struct soap*, const char*, int, const struct saml1__AttributeType *, const char*); -SOAP_FMAC3 struct saml1__AttributeType * SOAP_FMAC4 soap_in_saml1__AttributeType(struct soap*, const char*, struct saml1__AttributeType *, const char*); -SOAP_FMAC1 struct saml1__AttributeType * SOAP_FMAC2 soap_instantiate_saml1__AttributeType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AttributeType * soap_new_saml1__AttributeType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AttributeType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AttributeType * soap_new_req_saml1__AttributeType( - struct soap *soap, - char *AttributeName, - char *AttributeNamespace, - int __sizeAttributeValue, - char **saml1__AttributeValue) -{ - struct saml1__AttributeType *_p = ::soap_new_saml1__AttributeType(soap); - if (_p) - { ::soap_default_saml1__AttributeType(soap, _p); - _p->AttributeName = AttributeName; - _p->AttributeNamespace = AttributeNamespace; - _p->__sizeAttributeValue = __sizeAttributeValue; - _p->saml1__AttributeValue = saml1__AttributeValue; - } - return _p; -} - -inline struct saml1__AttributeType * soap_new_set_saml1__AttributeType( - struct soap *soap, - char *AttributeName, - char *AttributeNamespace, - int __sizeAttributeValue, - char **saml1__AttributeValue) -{ - struct saml1__AttributeType *_p = ::soap_new_saml1__AttributeType(soap); - if (_p) - { ::soap_default_saml1__AttributeType(soap, _p); - _p->AttributeName = AttributeName; - _p->AttributeNamespace = AttributeNamespace; - _p->__sizeAttributeValue = __sizeAttributeValue; - _p->saml1__AttributeValue = saml1__AttributeValue; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AttributeType(struct soap*, const struct saml1__AttributeType *, const char*, const char*); - -inline int soap_write_saml1__AttributeType(struct soap *soap, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AttributeType(soap, p), 0) || ::soap_put_saml1__AttributeType(soap, p, "saml1:AttributeType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AttributeType(struct soap *soap, const char *URL, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeType(soap, p), 0) || ::soap_put_saml1__AttributeType(soap, p, "saml1:AttributeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AttributeType(struct soap *soap, const char *URL, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeType(soap, p), 0) || ::soap_put_saml1__AttributeType(soap, p, "saml1:AttributeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AttributeType(struct soap *soap, const char *URL, struct saml1__AttributeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeType(soap, p), 0) || ::soap_put_saml1__AttributeType(soap, p, "saml1:AttributeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AttributeType * SOAP_FMAC4 soap_get_saml1__AttributeType(struct soap*, struct saml1__AttributeType *, const char*, const char*); - -inline int soap_read_saml1__AttributeType(struct soap *soap, struct saml1__AttributeType *p) -{ - if (p) - { ::soap_default_saml1__AttributeType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AttributeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AttributeType(struct soap *soap, const char *URL, struct saml1__AttributeType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AttributeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AttributeType(struct soap *soap, struct saml1__AttributeType *p) -{ - if (::soap_read_saml1__AttributeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AttributeDesignatorType_DEFINED -#define SOAP_TYPE_saml1__AttributeDesignatorType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AttributeDesignatorType(struct soap*, struct saml1__AttributeDesignatorType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeDesignatorType(struct soap*, const struct saml1__AttributeDesignatorType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AttributeDesignatorType(struct soap*, const char*, int, const struct saml1__AttributeDesignatorType *, const char*); -SOAP_FMAC3 struct saml1__AttributeDesignatorType * SOAP_FMAC4 soap_in_saml1__AttributeDesignatorType(struct soap*, const char*, struct saml1__AttributeDesignatorType *, const char*); -SOAP_FMAC1 struct saml1__AttributeDesignatorType * SOAP_FMAC2 soap_instantiate_saml1__AttributeDesignatorType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AttributeDesignatorType * soap_new_saml1__AttributeDesignatorType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AttributeDesignatorType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AttributeDesignatorType * soap_new_req_saml1__AttributeDesignatorType( - struct soap *soap, - char *AttributeName, - char *AttributeNamespace) -{ - struct saml1__AttributeDesignatorType *_p = ::soap_new_saml1__AttributeDesignatorType(soap); - if (_p) - { ::soap_default_saml1__AttributeDesignatorType(soap, _p); - _p->AttributeName = AttributeName; - _p->AttributeNamespace = AttributeNamespace; - } - return _p; -} - -inline struct saml1__AttributeDesignatorType * soap_new_set_saml1__AttributeDesignatorType( - struct soap *soap, - char *AttributeName, - char *AttributeNamespace) -{ - struct saml1__AttributeDesignatorType *_p = ::soap_new_saml1__AttributeDesignatorType(soap); - if (_p) - { ::soap_default_saml1__AttributeDesignatorType(soap, _p); - _p->AttributeName = AttributeName; - _p->AttributeNamespace = AttributeNamespace; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AttributeDesignatorType(struct soap*, const struct saml1__AttributeDesignatorType *, const char*, const char*); - -inline int soap_write_saml1__AttributeDesignatorType(struct soap *soap, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AttributeDesignatorType(soap, p), 0) || ::soap_put_saml1__AttributeDesignatorType(soap, p, "saml1:AttributeDesignatorType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AttributeDesignatorType(struct soap *soap, const char *URL, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeDesignatorType(soap, p), 0) || ::soap_put_saml1__AttributeDesignatorType(soap, p, "saml1:AttributeDesignatorType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AttributeDesignatorType(struct soap *soap, const char *URL, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeDesignatorType(soap, p), 0) || ::soap_put_saml1__AttributeDesignatorType(soap, p, "saml1:AttributeDesignatorType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AttributeDesignatorType(struct soap *soap, const char *URL, struct saml1__AttributeDesignatorType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeDesignatorType(soap, p), 0) || ::soap_put_saml1__AttributeDesignatorType(soap, p, "saml1:AttributeDesignatorType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AttributeDesignatorType * SOAP_FMAC4 soap_get_saml1__AttributeDesignatorType(struct soap*, struct saml1__AttributeDesignatorType *, const char*, const char*); - -inline int soap_read_saml1__AttributeDesignatorType(struct soap *soap, struct saml1__AttributeDesignatorType *p) -{ - if (p) - { ::soap_default_saml1__AttributeDesignatorType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AttributeDesignatorType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AttributeDesignatorType(struct soap *soap, const char *URL, struct saml1__AttributeDesignatorType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AttributeDesignatorType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AttributeDesignatorType(struct soap *soap, struct saml1__AttributeDesignatorType *p) -{ - if (::soap_read_saml1__AttributeDesignatorType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AttributeStatementType_DEFINED -#define SOAP_TYPE_saml1__AttributeStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AttributeStatementType(struct soap*, struct saml1__AttributeStatementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AttributeStatementType(struct soap*, const struct saml1__AttributeStatementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AttributeStatementType(struct soap*, const char*, int, const struct saml1__AttributeStatementType *, const char*); -SOAP_FMAC3 struct saml1__AttributeStatementType * SOAP_FMAC4 soap_in_saml1__AttributeStatementType(struct soap*, const char*, struct saml1__AttributeStatementType *, const char*); -SOAP_FMAC1 struct saml1__AttributeStatementType * SOAP_FMAC2 soap_instantiate_saml1__AttributeStatementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AttributeStatementType * soap_new_saml1__AttributeStatementType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AttributeStatementType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AttributeStatementType * soap_new_req_saml1__AttributeStatementType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject, - int __sizeAttribute, - struct saml1__AttributeType *saml1__Attribute) -{ - struct saml1__AttributeStatementType *_p = ::soap_new_saml1__AttributeStatementType(soap); - if (_p) - { ::soap_default_saml1__AttributeStatementType(soap, _p); - _p->saml1__Subject = saml1__Subject; - _p->__sizeAttribute = __sizeAttribute; - _p->saml1__Attribute = saml1__Attribute; - } - return _p; -} - -inline struct saml1__AttributeStatementType * soap_new_set_saml1__AttributeStatementType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject, - int __sizeAttribute, - struct saml1__AttributeType *saml1__Attribute) -{ - struct saml1__AttributeStatementType *_p = ::soap_new_saml1__AttributeStatementType(soap); - if (_p) - { ::soap_default_saml1__AttributeStatementType(soap, _p); - _p->saml1__Subject = saml1__Subject; - _p->__sizeAttribute = __sizeAttribute; - _p->saml1__Attribute = saml1__Attribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AttributeStatementType(struct soap*, const struct saml1__AttributeStatementType *, const char*, const char*); - -inline int soap_write_saml1__AttributeStatementType(struct soap *soap, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AttributeStatementType(soap, p), 0) || ::soap_put_saml1__AttributeStatementType(soap, p, "saml1:AttributeStatementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AttributeStatementType(struct soap *soap, const char *URL, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeStatementType(soap, p), 0) || ::soap_put_saml1__AttributeStatementType(soap, p, "saml1:AttributeStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AttributeStatementType(struct soap *soap, const char *URL, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeStatementType(soap, p), 0) || ::soap_put_saml1__AttributeStatementType(soap, p, "saml1:AttributeStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AttributeStatementType(struct soap *soap, const char *URL, struct saml1__AttributeStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AttributeStatementType(soap, p), 0) || ::soap_put_saml1__AttributeStatementType(soap, p, "saml1:AttributeStatementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AttributeStatementType * SOAP_FMAC4 soap_get_saml1__AttributeStatementType(struct soap*, struct saml1__AttributeStatementType *, const char*, const char*); - -inline int soap_read_saml1__AttributeStatementType(struct soap *soap, struct saml1__AttributeStatementType *p) -{ - if (p) - { ::soap_default_saml1__AttributeStatementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AttributeStatementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AttributeStatementType(struct soap *soap, const char *URL, struct saml1__AttributeStatementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AttributeStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AttributeStatementType(struct soap *soap, struct saml1__AttributeStatementType *p) -{ - if (::soap_read_saml1__AttributeStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__EvidenceType_DEFINED -#define SOAP_TYPE_saml1__EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__EvidenceType(struct soap*, struct saml1__EvidenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__EvidenceType(struct soap*, const struct saml1__EvidenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__EvidenceType(struct soap*, const char*, int, const struct saml1__EvidenceType *, const char*); -SOAP_FMAC3 struct saml1__EvidenceType * SOAP_FMAC4 soap_in_saml1__EvidenceType(struct soap*, const char*, struct saml1__EvidenceType *, const char*); -SOAP_FMAC1 struct saml1__EvidenceType * SOAP_FMAC2 soap_instantiate_saml1__EvidenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__EvidenceType * soap_new_saml1__EvidenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__EvidenceType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__EvidenceType * soap_new_req_saml1__EvidenceType( - struct soap *soap, - int __size_EvidenceType, - struct __saml1__union_EvidenceType *__union_EvidenceType) -{ - struct saml1__EvidenceType *_p = ::soap_new_saml1__EvidenceType(soap); - if (_p) - { ::soap_default_saml1__EvidenceType(soap, _p); - _p->__size_EvidenceType = __size_EvidenceType; - _p->__union_EvidenceType = __union_EvidenceType; - } - return _p; -} - -inline struct saml1__EvidenceType * soap_new_set_saml1__EvidenceType( - struct soap *soap, - int __size_EvidenceType, - struct __saml1__union_EvidenceType *__union_EvidenceType) -{ - struct saml1__EvidenceType *_p = ::soap_new_saml1__EvidenceType(soap); - if (_p) - { ::soap_default_saml1__EvidenceType(soap, _p); - _p->__size_EvidenceType = __size_EvidenceType; - _p->__union_EvidenceType = __union_EvidenceType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__EvidenceType(struct soap*, const struct saml1__EvidenceType *, const char*, const char*); - -inline int soap_write_saml1__EvidenceType(struct soap *soap, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__EvidenceType(soap, p), 0) || ::soap_put_saml1__EvidenceType(soap, p, "saml1:EvidenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__EvidenceType(struct soap *soap, const char *URL, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__EvidenceType(soap, p), 0) || ::soap_put_saml1__EvidenceType(soap, p, "saml1:EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__EvidenceType(struct soap *soap, const char *URL, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__EvidenceType(soap, p), 0) || ::soap_put_saml1__EvidenceType(soap, p, "saml1:EvidenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__EvidenceType(struct soap *soap, const char *URL, struct saml1__EvidenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__EvidenceType(soap, p), 0) || ::soap_put_saml1__EvidenceType(soap, p, "saml1:EvidenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__EvidenceType * SOAP_FMAC4 soap_get_saml1__EvidenceType(struct soap*, struct saml1__EvidenceType *, const char*, const char*); - -inline int soap_read_saml1__EvidenceType(struct soap *soap, struct saml1__EvidenceType *p) -{ - if (p) - { ::soap_default_saml1__EvidenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__EvidenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__EvidenceType(struct soap *soap, const char *URL, struct saml1__EvidenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__EvidenceType(struct soap *soap, struct saml1__EvidenceType *p) -{ - if (::soap_read_saml1__EvidenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__ActionType_DEFINED -#define SOAP_TYPE_saml1__ActionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__ActionType(struct soap*, struct saml1__ActionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ActionType(struct soap*, const struct saml1__ActionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__ActionType(struct soap*, const char*, int, const struct saml1__ActionType *, const char*); -SOAP_FMAC3 struct saml1__ActionType * SOAP_FMAC4 soap_in_saml1__ActionType(struct soap*, const char*, struct saml1__ActionType *, const char*); -SOAP_FMAC1 struct saml1__ActionType * SOAP_FMAC2 soap_instantiate_saml1__ActionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__ActionType * soap_new_saml1__ActionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__ActionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__ActionType * soap_new_req_saml1__ActionType( - struct soap *soap) -{ - struct saml1__ActionType *_p = ::soap_new_saml1__ActionType(soap); - if (_p) - { ::soap_default_saml1__ActionType(soap, _p); - } - return _p; -} - -inline struct saml1__ActionType * soap_new_set_saml1__ActionType( - struct soap *soap, - char *__item, - char *Namespace) -{ - struct saml1__ActionType *_p = ::soap_new_saml1__ActionType(soap); - if (_p) - { ::soap_default_saml1__ActionType(soap, _p); - _p->__item = __item; - _p->Namespace = Namespace; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__ActionType(struct soap*, const struct saml1__ActionType *, const char*, const char*); - -inline int soap_write_saml1__ActionType(struct soap *soap, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__ActionType(soap, p), 0) || ::soap_put_saml1__ActionType(soap, p, "saml1:ActionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__ActionType(struct soap *soap, const char *URL, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ActionType(soap, p), 0) || ::soap_put_saml1__ActionType(soap, p, "saml1:ActionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__ActionType(struct soap *soap, const char *URL, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ActionType(soap, p), 0) || ::soap_put_saml1__ActionType(soap, p, "saml1:ActionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__ActionType(struct soap *soap, const char *URL, struct saml1__ActionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ActionType(soap, p), 0) || ::soap_put_saml1__ActionType(soap, p, "saml1:ActionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__ActionType * SOAP_FMAC4 soap_get_saml1__ActionType(struct soap*, struct saml1__ActionType *, const char*, const char*); - -inline int soap_read_saml1__ActionType(struct soap *soap, struct saml1__ActionType *p) -{ - if (p) - { ::soap_default_saml1__ActionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__ActionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__ActionType(struct soap *soap, const char *URL, struct saml1__ActionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__ActionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__ActionType(struct soap *soap, struct saml1__ActionType *p) -{ - if (::soap_read_saml1__ActionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AuthorizationDecisionStatementType_DEFINED -#define SOAP_TYPE_saml1__AuthorizationDecisionStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AuthorizationDecisionStatementType(struct soap*, struct saml1__AuthorizationDecisionStatementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthorizationDecisionStatementType(struct soap*, const struct saml1__AuthorizationDecisionStatementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AuthorizationDecisionStatementType(struct soap*, const char*, int, const struct saml1__AuthorizationDecisionStatementType *, const char*); -SOAP_FMAC3 struct saml1__AuthorizationDecisionStatementType * SOAP_FMAC4 soap_in_saml1__AuthorizationDecisionStatementType(struct soap*, const char*, struct saml1__AuthorizationDecisionStatementType *, const char*); -SOAP_FMAC1 struct saml1__AuthorizationDecisionStatementType * SOAP_FMAC2 soap_instantiate_saml1__AuthorizationDecisionStatementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AuthorizationDecisionStatementType * soap_new_saml1__AuthorizationDecisionStatementType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AuthorizationDecisionStatementType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AuthorizationDecisionStatementType * soap_new_req_saml1__AuthorizationDecisionStatementType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject, - int __sizeAction, - struct saml1__ActionType *saml1__Action, - char *Resource, - enum saml1__DecisionType Decision) -{ - struct saml1__AuthorizationDecisionStatementType *_p = ::soap_new_saml1__AuthorizationDecisionStatementType(soap); - if (_p) - { ::soap_default_saml1__AuthorizationDecisionStatementType(soap, _p); - _p->saml1__Subject = saml1__Subject; - _p->__sizeAction = __sizeAction; - _p->saml1__Action = saml1__Action; - _p->Resource = Resource; - _p->Decision = Decision; - } - return _p; -} - -inline struct saml1__AuthorizationDecisionStatementType * soap_new_set_saml1__AuthorizationDecisionStatementType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject, - int __sizeAction, - struct saml1__ActionType *saml1__Action, - struct saml1__EvidenceType *saml1__Evidence, - char *Resource, - enum saml1__DecisionType Decision) -{ - struct saml1__AuthorizationDecisionStatementType *_p = ::soap_new_saml1__AuthorizationDecisionStatementType(soap); - if (_p) - { ::soap_default_saml1__AuthorizationDecisionStatementType(soap, _p); - _p->saml1__Subject = saml1__Subject; - _p->__sizeAction = __sizeAction; - _p->saml1__Action = saml1__Action; - _p->saml1__Evidence = saml1__Evidence; - _p->Resource = Resource; - _p->Decision = Decision; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AuthorizationDecisionStatementType(struct soap*, const struct saml1__AuthorizationDecisionStatementType *, const char*, const char*); - -inline int soap_write_saml1__AuthorizationDecisionStatementType(struct soap *soap, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AuthorizationDecisionStatementType(soap, p), 0) || ::soap_put_saml1__AuthorizationDecisionStatementType(soap, p, "saml1:AuthorizationDecisionStatementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AuthorizationDecisionStatementType(struct soap *soap, const char *URL, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthorizationDecisionStatementType(soap, p), 0) || ::soap_put_saml1__AuthorizationDecisionStatementType(soap, p, "saml1:AuthorizationDecisionStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AuthorizationDecisionStatementType(struct soap *soap, const char *URL, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthorizationDecisionStatementType(soap, p), 0) || ::soap_put_saml1__AuthorizationDecisionStatementType(soap, p, "saml1:AuthorizationDecisionStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AuthorizationDecisionStatementType(struct soap *soap, const char *URL, struct saml1__AuthorizationDecisionStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthorizationDecisionStatementType(soap, p), 0) || ::soap_put_saml1__AuthorizationDecisionStatementType(soap, p, "saml1:AuthorizationDecisionStatementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AuthorizationDecisionStatementType * SOAP_FMAC4 soap_get_saml1__AuthorizationDecisionStatementType(struct soap*, struct saml1__AuthorizationDecisionStatementType *, const char*, const char*); - -inline int soap_read_saml1__AuthorizationDecisionStatementType(struct soap *soap, struct saml1__AuthorizationDecisionStatementType *p) -{ - if (p) - { ::soap_default_saml1__AuthorizationDecisionStatementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AuthorizationDecisionStatementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AuthorizationDecisionStatementType(struct soap *soap, const char *URL, struct saml1__AuthorizationDecisionStatementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AuthorizationDecisionStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AuthorizationDecisionStatementType(struct soap *soap, struct saml1__AuthorizationDecisionStatementType *p) -{ - if (::soap_read_saml1__AuthorizationDecisionStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AuthorityBindingType_DEFINED -#define SOAP_TYPE_saml1__AuthorityBindingType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AuthorityBindingType(struct soap*, struct saml1__AuthorityBindingType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthorityBindingType(struct soap*, const struct saml1__AuthorityBindingType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AuthorityBindingType(struct soap*, const char*, int, const struct saml1__AuthorityBindingType *, const char*); -SOAP_FMAC3 struct saml1__AuthorityBindingType * SOAP_FMAC4 soap_in_saml1__AuthorityBindingType(struct soap*, const char*, struct saml1__AuthorityBindingType *, const char*); -SOAP_FMAC1 struct saml1__AuthorityBindingType * SOAP_FMAC2 soap_instantiate_saml1__AuthorityBindingType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AuthorityBindingType * soap_new_saml1__AuthorityBindingType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AuthorityBindingType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AuthorityBindingType * soap_new_req_saml1__AuthorityBindingType( - struct soap *soap, - char *AuthorityKind, - char *Location, - char *Binding) -{ - struct saml1__AuthorityBindingType *_p = ::soap_new_saml1__AuthorityBindingType(soap); - if (_p) - { ::soap_default_saml1__AuthorityBindingType(soap, _p); - _p->AuthorityKind = AuthorityKind; - _p->Location = Location; - _p->Binding = Binding; - } - return _p; -} - -inline struct saml1__AuthorityBindingType * soap_new_set_saml1__AuthorityBindingType( - struct soap *soap, - char *AuthorityKind, - char *Location, - char *Binding) -{ - struct saml1__AuthorityBindingType *_p = ::soap_new_saml1__AuthorityBindingType(soap); - if (_p) - { ::soap_default_saml1__AuthorityBindingType(soap, _p); - _p->AuthorityKind = AuthorityKind; - _p->Location = Location; - _p->Binding = Binding; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AuthorityBindingType(struct soap*, const struct saml1__AuthorityBindingType *, const char*, const char*); - -inline int soap_write_saml1__AuthorityBindingType(struct soap *soap, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AuthorityBindingType(soap, p), 0) || ::soap_put_saml1__AuthorityBindingType(soap, p, "saml1:AuthorityBindingType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AuthorityBindingType(struct soap *soap, const char *URL, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthorityBindingType(soap, p), 0) || ::soap_put_saml1__AuthorityBindingType(soap, p, "saml1:AuthorityBindingType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AuthorityBindingType(struct soap *soap, const char *URL, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthorityBindingType(soap, p), 0) || ::soap_put_saml1__AuthorityBindingType(soap, p, "saml1:AuthorityBindingType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AuthorityBindingType(struct soap *soap, const char *URL, struct saml1__AuthorityBindingType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthorityBindingType(soap, p), 0) || ::soap_put_saml1__AuthorityBindingType(soap, p, "saml1:AuthorityBindingType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AuthorityBindingType * SOAP_FMAC4 soap_get_saml1__AuthorityBindingType(struct soap*, struct saml1__AuthorityBindingType *, const char*, const char*); - -inline int soap_read_saml1__AuthorityBindingType(struct soap *soap, struct saml1__AuthorityBindingType *p) -{ - if (p) - { ::soap_default_saml1__AuthorityBindingType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AuthorityBindingType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AuthorityBindingType(struct soap *soap, const char *URL, struct saml1__AuthorityBindingType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AuthorityBindingType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AuthorityBindingType(struct soap *soap, struct saml1__AuthorityBindingType *p) -{ - if (::soap_read_saml1__AuthorityBindingType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__SubjectLocalityType_DEFINED -#define SOAP_TYPE_saml1__SubjectLocalityType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectLocalityType(struct soap*, struct saml1__SubjectLocalityType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectLocalityType(struct soap*, const struct saml1__SubjectLocalityType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectLocalityType(struct soap*, const char*, int, const struct saml1__SubjectLocalityType *, const char*); -SOAP_FMAC3 struct saml1__SubjectLocalityType * SOAP_FMAC4 soap_in_saml1__SubjectLocalityType(struct soap*, const char*, struct saml1__SubjectLocalityType *, const char*); -SOAP_FMAC1 struct saml1__SubjectLocalityType * SOAP_FMAC2 soap_instantiate_saml1__SubjectLocalityType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__SubjectLocalityType * soap_new_saml1__SubjectLocalityType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__SubjectLocalityType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__SubjectLocalityType * soap_new_req_saml1__SubjectLocalityType( - struct soap *soap) -{ - struct saml1__SubjectLocalityType *_p = ::soap_new_saml1__SubjectLocalityType(soap); - if (_p) - { ::soap_default_saml1__SubjectLocalityType(soap, _p); - } - return _p; -} - -inline struct saml1__SubjectLocalityType * soap_new_set_saml1__SubjectLocalityType( - struct soap *soap, - char *IPAddress, - char *DNSAddress) -{ - struct saml1__SubjectLocalityType *_p = ::soap_new_saml1__SubjectLocalityType(soap); - if (_p) - { ::soap_default_saml1__SubjectLocalityType(soap, _p); - _p->IPAddress = IPAddress; - _p->DNSAddress = DNSAddress; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectLocalityType(struct soap*, const struct saml1__SubjectLocalityType *, const char*, const char*); - -inline int soap_write_saml1__SubjectLocalityType(struct soap *soap, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__SubjectLocalityType(soap, p), 0) || ::soap_put_saml1__SubjectLocalityType(soap, p, "saml1:SubjectLocalityType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__SubjectLocalityType(struct soap *soap, const char *URL, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectLocalityType(soap, p), 0) || ::soap_put_saml1__SubjectLocalityType(soap, p, "saml1:SubjectLocalityType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__SubjectLocalityType(struct soap *soap, const char *URL, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectLocalityType(soap, p), 0) || ::soap_put_saml1__SubjectLocalityType(soap, p, "saml1:SubjectLocalityType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__SubjectLocalityType(struct soap *soap, const char *URL, struct saml1__SubjectLocalityType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectLocalityType(soap, p), 0) || ::soap_put_saml1__SubjectLocalityType(soap, p, "saml1:SubjectLocalityType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__SubjectLocalityType * SOAP_FMAC4 soap_get_saml1__SubjectLocalityType(struct soap*, struct saml1__SubjectLocalityType *, const char*, const char*); - -inline int soap_read_saml1__SubjectLocalityType(struct soap *soap, struct saml1__SubjectLocalityType *p) -{ - if (p) - { ::soap_default_saml1__SubjectLocalityType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__SubjectLocalityType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__SubjectLocalityType(struct soap *soap, const char *URL, struct saml1__SubjectLocalityType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__SubjectLocalityType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__SubjectLocalityType(struct soap *soap, struct saml1__SubjectLocalityType *p) -{ - if (::soap_read_saml1__SubjectLocalityType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AuthenticationStatementType_DEFINED -#define SOAP_TYPE_saml1__AuthenticationStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AuthenticationStatementType(struct soap*, struct saml1__AuthenticationStatementType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AuthenticationStatementType(struct soap*, const struct saml1__AuthenticationStatementType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AuthenticationStatementType(struct soap*, const char*, int, const struct saml1__AuthenticationStatementType *, const char*); -SOAP_FMAC3 struct saml1__AuthenticationStatementType * SOAP_FMAC4 soap_in_saml1__AuthenticationStatementType(struct soap*, const char*, struct saml1__AuthenticationStatementType *, const char*); -SOAP_FMAC1 struct saml1__AuthenticationStatementType * SOAP_FMAC2 soap_instantiate_saml1__AuthenticationStatementType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AuthenticationStatementType * soap_new_saml1__AuthenticationStatementType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AuthenticationStatementType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AuthenticationStatementType * soap_new_req_saml1__AuthenticationStatementType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject, - int __sizeAuthorityBinding, - struct saml1__AuthorityBindingType *saml1__AuthorityBinding, - char *AuthenticationMethod, - const struct timeval& AuthenticationInstant) -{ - struct saml1__AuthenticationStatementType *_p = ::soap_new_saml1__AuthenticationStatementType(soap); - if (_p) - { ::soap_default_saml1__AuthenticationStatementType(soap, _p); - _p->saml1__Subject = saml1__Subject; - _p->__sizeAuthorityBinding = __sizeAuthorityBinding; - _p->saml1__AuthorityBinding = saml1__AuthorityBinding; - _p->AuthenticationMethod = AuthenticationMethod; - _p->AuthenticationInstant = AuthenticationInstant; - } - return _p; -} - -inline struct saml1__AuthenticationStatementType * soap_new_set_saml1__AuthenticationStatementType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject, - struct saml1__SubjectLocalityType *saml1__SubjectLocality, - int __sizeAuthorityBinding, - struct saml1__AuthorityBindingType *saml1__AuthorityBinding, - char *AuthenticationMethod, - const struct timeval& AuthenticationInstant) -{ - struct saml1__AuthenticationStatementType *_p = ::soap_new_saml1__AuthenticationStatementType(soap); - if (_p) - { ::soap_default_saml1__AuthenticationStatementType(soap, _p); - _p->saml1__Subject = saml1__Subject; - _p->saml1__SubjectLocality = saml1__SubjectLocality; - _p->__sizeAuthorityBinding = __sizeAuthorityBinding; - _p->saml1__AuthorityBinding = saml1__AuthorityBinding; - _p->AuthenticationMethod = AuthenticationMethod; - _p->AuthenticationInstant = AuthenticationInstant; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AuthenticationStatementType(struct soap*, const struct saml1__AuthenticationStatementType *, const char*, const char*); - -inline int soap_write_saml1__AuthenticationStatementType(struct soap *soap, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AuthenticationStatementType(soap, p), 0) || ::soap_put_saml1__AuthenticationStatementType(soap, p, "saml1:AuthenticationStatementType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AuthenticationStatementType(struct soap *soap, const char *URL, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthenticationStatementType(soap, p), 0) || ::soap_put_saml1__AuthenticationStatementType(soap, p, "saml1:AuthenticationStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AuthenticationStatementType(struct soap *soap, const char *URL, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthenticationStatementType(soap, p), 0) || ::soap_put_saml1__AuthenticationStatementType(soap, p, "saml1:AuthenticationStatementType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AuthenticationStatementType(struct soap *soap, const char *URL, struct saml1__AuthenticationStatementType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AuthenticationStatementType(soap, p), 0) || ::soap_put_saml1__AuthenticationStatementType(soap, p, "saml1:AuthenticationStatementType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AuthenticationStatementType * SOAP_FMAC4 soap_get_saml1__AuthenticationStatementType(struct soap*, struct saml1__AuthenticationStatementType *, const char*, const char*); - -inline int soap_read_saml1__AuthenticationStatementType(struct soap *soap, struct saml1__AuthenticationStatementType *p) -{ - if (p) - { ::soap_default_saml1__AuthenticationStatementType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AuthenticationStatementType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AuthenticationStatementType(struct soap *soap, const char *URL, struct saml1__AuthenticationStatementType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AuthenticationStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AuthenticationStatementType(struct soap *soap, struct saml1__AuthenticationStatementType *p) -{ - if (::soap_read_saml1__AuthenticationStatementType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__SubjectConfirmationType_DEFINED -#define SOAP_TYPE_saml1__SubjectConfirmationType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectConfirmationType(struct soap*, struct saml1__SubjectConfirmationType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectConfirmationType(struct soap*, const struct saml1__SubjectConfirmationType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectConfirmationType(struct soap*, const char*, int, const struct saml1__SubjectConfirmationType *, const char*); -SOAP_FMAC3 struct saml1__SubjectConfirmationType * SOAP_FMAC4 soap_in_saml1__SubjectConfirmationType(struct soap*, const char*, struct saml1__SubjectConfirmationType *, const char*); -SOAP_FMAC1 struct saml1__SubjectConfirmationType * SOAP_FMAC2 soap_instantiate_saml1__SubjectConfirmationType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__SubjectConfirmationType * soap_new_saml1__SubjectConfirmationType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__SubjectConfirmationType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__SubjectConfirmationType * soap_new_req_saml1__SubjectConfirmationType( - struct soap *soap, - int __sizeConfirmationMethod, - char **saml1__ConfirmationMethod) -{ - struct saml1__SubjectConfirmationType *_p = ::soap_new_saml1__SubjectConfirmationType(soap); - if (_p) - { ::soap_default_saml1__SubjectConfirmationType(soap, _p); - _p->__sizeConfirmationMethod = __sizeConfirmationMethod; - _p->saml1__ConfirmationMethod = saml1__ConfirmationMethod; - } - return _p; -} - -inline struct saml1__SubjectConfirmationType * soap_new_set_saml1__SubjectConfirmationType( - struct soap *soap, - int __sizeConfirmationMethod, - char **saml1__ConfirmationMethod, - char *saml1__SubjectConfirmationData, - struct ds__KeyInfoType *ds__KeyInfo) -{ - struct saml1__SubjectConfirmationType *_p = ::soap_new_saml1__SubjectConfirmationType(soap); - if (_p) - { ::soap_default_saml1__SubjectConfirmationType(soap, _p); - _p->__sizeConfirmationMethod = __sizeConfirmationMethod; - _p->saml1__ConfirmationMethod = saml1__ConfirmationMethod; - _p->saml1__SubjectConfirmationData = saml1__SubjectConfirmationData; - _p->ds__KeyInfo = ds__KeyInfo; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectConfirmationType(struct soap*, const struct saml1__SubjectConfirmationType *, const char*, const char*); - -inline int soap_write_saml1__SubjectConfirmationType(struct soap *soap, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml1__SubjectConfirmationType(soap, p, "saml1:SubjectConfirmationType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml1__SubjectConfirmationType(soap, p, "saml1:SubjectConfirmationType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml1__SubjectConfirmationType(soap, p, "saml1:SubjectConfirmationType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml1__SubjectConfirmationType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectConfirmationType(soap, p), 0) || ::soap_put_saml1__SubjectConfirmationType(soap, p, "saml1:SubjectConfirmationType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__SubjectConfirmationType * SOAP_FMAC4 soap_get_saml1__SubjectConfirmationType(struct soap*, struct saml1__SubjectConfirmationType *, const char*, const char*); - -inline int soap_read_saml1__SubjectConfirmationType(struct soap *soap, struct saml1__SubjectConfirmationType *p) -{ - if (p) - { ::soap_default_saml1__SubjectConfirmationType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__SubjectConfirmationType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__SubjectConfirmationType(struct soap *soap, const char *URL, struct saml1__SubjectConfirmationType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__SubjectConfirmationType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__SubjectConfirmationType(struct soap *soap, struct saml1__SubjectConfirmationType *p) -{ - if (::soap_read_saml1__SubjectConfirmationType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__NameIdentifierType_DEFINED -#define SOAP_TYPE_saml1__NameIdentifierType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__NameIdentifierType(struct soap*, struct saml1__NameIdentifierType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__NameIdentifierType(struct soap*, const struct saml1__NameIdentifierType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__NameIdentifierType(struct soap*, const char*, int, const struct saml1__NameIdentifierType *, const char*); -SOAP_FMAC3 struct saml1__NameIdentifierType * SOAP_FMAC4 soap_in_saml1__NameIdentifierType(struct soap*, const char*, struct saml1__NameIdentifierType *, const char*); -SOAP_FMAC1 struct saml1__NameIdentifierType * SOAP_FMAC2 soap_instantiate_saml1__NameIdentifierType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__NameIdentifierType * soap_new_saml1__NameIdentifierType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__NameIdentifierType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__NameIdentifierType * soap_new_req_saml1__NameIdentifierType( - struct soap *soap) -{ - struct saml1__NameIdentifierType *_p = ::soap_new_saml1__NameIdentifierType(soap); - if (_p) - { ::soap_default_saml1__NameIdentifierType(soap, _p); - } - return _p; -} - -inline struct saml1__NameIdentifierType * soap_new_set_saml1__NameIdentifierType( - struct soap *soap, - char *__item, - char *NameQualifier, - char *Format) -{ - struct saml1__NameIdentifierType *_p = ::soap_new_saml1__NameIdentifierType(soap); - if (_p) - { ::soap_default_saml1__NameIdentifierType(soap, _p); - _p->__item = __item; - _p->NameQualifier = NameQualifier; - _p->Format = Format; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__NameIdentifierType(struct soap*, const struct saml1__NameIdentifierType *, const char*, const char*); - -inline int soap_write_saml1__NameIdentifierType(struct soap *soap, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__NameIdentifierType(soap, p), 0) || ::soap_put_saml1__NameIdentifierType(soap, p, "saml1:NameIdentifierType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__NameIdentifierType(struct soap *soap, const char *URL, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__NameIdentifierType(soap, p), 0) || ::soap_put_saml1__NameIdentifierType(soap, p, "saml1:NameIdentifierType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__NameIdentifierType(struct soap *soap, const char *URL, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__NameIdentifierType(soap, p), 0) || ::soap_put_saml1__NameIdentifierType(soap, p, "saml1:NameIdentifierType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__NameIdentifierType(struct soap *soap, const char *URL, struct saml1__NameIdentifierType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__NameIdentifierType(soap, p), 0) || ::soap_put_saml1__NameIdentifierType(soap, p, "saml1:NameIdentifierType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__NameIdentifierType * SOAP_FMAC4 soap_get_saml1__NameIdentifierType(struct soap*, struct saml1__NameIdentifierType *, const char*, const char*); - -inline int soap_read_saml1__NameIdentifierType(struct soap *soap, struct saml1__NameIdentifierType *p) -{ - if (p) - { ::soap_default_saml1__NameIdentifierType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__NameIdentifierType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__NameIdentifierType(struct soap *soap, const char *URL, struct saml1__NameIdentifierType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__NameIdentifierType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__NameIdentifierType(struct soap *soap, struct saml1__NameIdentifierType *p) -{ - if (::soap_read_saml1__NameIdentifierType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__SubjectType_DEFINED -#define SOAP_TYPE_saml1__SubjectType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectType(struct soap*, struct saml1__SubjectType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectType(struct soap*, const struct saml1__SubjectType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectType(struct soap*, const char*, int, const struct saml1__SubjectType *, const char*); -SOAP_FMAC3 struct saml1__SubjectType * SOAP_FMAC4 soap_in_saml1__SubjectType(struct soap*, const char*, struct saml1__SubjectType *, const char*); -SOAP_FMAC1 struct saml1__SubjectType * SOAP_FMAC2 soap_instantiate_saml1__SubjectType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__SubjectType * soap_new_saml1__SubjectType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__SubjectType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__SubjectType * soap_new_req_saml1__SubjectType( - struct soap *soap) -{ - struct saml1__SubjectType *_p = ::soap_new_saml1__SubjectType(soap); - if (_p) - { ::soap_default_saml1__SubjectType(soap, _p); - } - return _p; -} - -inline struct saml1__SubjectType * soap_new_set_saml1__SubjectType( - struct soap *soap, - struct saml1__NameIdentifierType *saml1__NameIdentifier, - struct saml1__SubjectConfirmationType *saml1__SubjectConfirmation, - struct saml1__SubjectConfirmationType *saml1__SubjectConfirmation_) -{ - struct saml1__SubjectType *_p = ::soap_new_saml1__SubjectType(soap); - if (_p) - { ::soap_default_saml1__SubjectType(soap, _p); - _p->saml1__NameIdentifier = saml1__NameIdentifier; - _p->saml1__SubjectConfirmation = saml1__SubjectConfirmation; - _p->saml1__SubjectConfirmation_ = saml1__SubjectConfirmation_; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectType(struct soap*, const struct saml1__SubjectType *, const char*, const char*); - -inline int soap_write_saml1__SubjectType(struct soap *soap, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__SubjectType(soap, p), 0) || ::soap_put_saml1__SubjectType(soap, p, "saml1:SubjectType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__SubjectType(struct soap *soap, const char *URL, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectType(soap, p), 0) || ::soap_put_saml1__SubjectType(soap, p, "saml1:SubjectType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__SubjectType(struct soap *soap, const char *URL, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectType(soap, p), 0) || ::soap_put_saml1__SubjectType(soap, p, "saml1:SubjectType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__SubjectType(struct soap *soap, const char *URL, struct saml1__SubjectType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectType(soap, p), 0) || ::soap_put_saml1__SubjectType(soap, p, "saml1:SubjectType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__SubjectType * SOAP_FMAC4 soap_get_saml1__SubjectType(struct soap*, struct saml1__SubjectType *, const char*, const char*); - -inline int soap_read_saml1__SubjectType(struct soap *soap, struct saml1__SubjectType *p) -{ - if (p) - { ::soap_default_saml1__SubjectType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__SubjectType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__SubjectType(struct soap *soap, const char *URL, struct saml1__SubjectType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__SubjectType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__SubjectType(struct soap *soap, struct saml1__SubjectType *p) -{ - if (::soap_read_saml1__SubjectType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__SubjectStatementAbstractType_DEFINED -#define SOAP_TYPE_saml1__SubjectStatementAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__SubjectStatementAbstractType(struct soap*, struct saml1__SubjectStatementAbstractType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__SubjectStatementAbstractType(struct soap*, const struct saml1__SubjectStatementAbstractType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__SubjectStatementAbstractType(struct soap*, const char*, int, const struct saml1__SubjectStatementAbstractType *, const char*); -SOAP_FMAC3 struct saml1__SubjectStatementAbstractType * SOAP_FMAC4 soap_in_saml1__SubjectStatementAbstractType(struct soap*, const char*, struct saml1__SubjectStatementAbstractType *, const char*); -SOAP_FMAC1 struct saml1__SubjectStatementAbstractType * SOAP_FMAC2 soap_instantiate_saml1__SubjectStatementAbstractType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__SubjectStatementAbstractType * soap_new_saml1__SubjectStatementAbstractType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__SubjectStatementAbstractType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__SubjectStatementAbstractType * soap_new_req_saml1__SubjectStatementAbstractType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject) -{ - struct saml1__SubjectStatementAbstractType *_p = ::soap_new_saml1__SubjectStatementAbstractType(soap); - if (_p) - { ::soap_default_saml1__SubjectStatementAbstractType(soap, _p); - _p->saml1__Subject = saml1__Subject; - } - return _p; -} - -inline struct saml1__SubjectStatementAbstractType * soap_new_set_saml1__SubjectStatementAbstractType( - struct soap *soap, - struct saml1__SubjectType *saml1__Subject) -{ - struct saml1__SubjectStatementAbstractType *_p = ::soap_new_saml1__SubjectStatementAbstractType(soap); - if (_p) - { ::soap_default_saml1__SubjectStatementAbstractType(soap, _p); - _p->saml1__Subject = saml1__Subject; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__SubjectStatementAbstractType(struct soap*, const struct saml1__SubjectStatementAbstractType *, const char*, const char*); - -inline int soap_write_saml1__SubjectStatementAbstractType(struct soap *soap, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__SubjectStatementAbstractType(soap, p), 0) || ::soap_put_saml1__SubjectStatementAbstractType(soap, p, "saml1:SubjectStatementAbstractType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__SubjectStatementAbstractType(struct soap *soap, const char *URL, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectStatementAbstractType(soap, p), 0) || ::soap_put_saml1__SubjectStatementAbstractType(soap, p, "saml1:SubjectStatementAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__SubjectStatementAbstractType(struct soap *soap, const char *URL, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectStatementAbstractType(soap, p), 0) || ::soap_put_saml1__SubjectStatementAbstractType(soap, p, "saml1:SubjectStatementAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__SubjectStatementAbstractType(struct soap *soap, const char *URL, struct saml1__SubjectStatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__SubjectStatementAbstractType(soap, p), 0) || ::soap_put_saml1__SubjectStatementAbstractType(soap, p, "saml1:SubjectStatementAbstractType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__SubjectStatementAbstractType * SOAP_FMAC4 soap_get_saml1__SubjectStatementAbstractType(struct soap*, struct saml1__SubjectStatementAbstractType *, const char*, const char*); - -inline int soap_read_saml1__SubjectStatementAbstractType(struct soap *soap, struct saml1__SubjectStatementAbstractType *p) -{ - if (p) - { ::soap_default_saml1__SubjectStatementAbstractType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__SubjectStatementAbstractType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__SubjectStatementAbstractType(struct soap *soap, const char *URL, struct saml1__SubjectStatementAbstractType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__SubjectStatementAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__SubjectStatementAbstractType(struct soap *soap, struct saml1__SubjectStatementAbstractType *p) -{ - if (::soap_read_saml1__SubjectStatementAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__StatementAbstractType_DEFINED -#define SOAP_TYPE_saml1__StatementAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__StatementAbstractType(struct soap*, struct saml1__StatementAbstractType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__StatementAbstractType(struct soap*, const struct saml1__StatementAbstractType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__StatementAbstractType(struct soap*, const char*, int, const struct saml1__StatementAbstractType *, const char*); -SOAP_FMAC3 struct saml1__StatementAbstractType * SOAP_FMAC4 soap_in_saml1__StatementAbstractType(struct soap*, const char*, struct saml1__StatementAbstractType *, const char*); -SOAP_FMAC1 struct saml1__StatementAbstractType * SOAP_FMAC2 soap_instantiate_saml1__StatementAbstractType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__StatementAbstractType * soap_new_saml1__StatementAbstractType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__StatementAbstractType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__StatementAbstractType * soap_new_req_saml1__StatementAbstractType( - struct soap *soap) -{ - struct saml1__StatementAbstractType *_p = ::soap_new_saml1__StatementAbstractType(soap); - if (_p) - { ::soap_default_saml1__StatementAbstractType(soap, _p); - } - return _p; -} - -inline struct saml1__StatementAbstractType * soap_new_set_saml1__StatementAbstractType( - struct soap *soap) -{ - struct saml1__StatementAbstractType *_p = ::soap_new_saml1__StatementAbstractType(soap); - if (_p) - { ::soap_default_saml1__StatementAbstractType(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__StatementAbstractType(struct soap*, const struct saml1__StatementAbstractType *, const char*, const char*); - -inline int soap_write_saml1__StatementAbstractType(struct soap *soap, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__StatementAbstractType(soap, p), 0) || ::soap_put_saml1__StatementAbstractType(soap, p, "saml1:StatementAbstractType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__StatementAbstractType(struct soap *soap, const char *URL, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__StatementAbstractType(soap, p), 0) || ::soap_put_saml1__StatementAbstractType(soap, p, "saml1:StatementAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__StatementAbstractType(struct soap *soap, const char *URL, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__StatementAbstractType(soap, p), 0) || ::soap_put_saml1__StatementAbstractType(soap, p, "saml1:StatementAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__StatementAbstractType(struct soap *soap, const char *URL, struct saml1__StatementAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__StatementAbstractType(soap, p), 0) || ::soap_put_saml1__StatementAbstractType(soap, p, "saml1:StatementAbstractType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__StatementAbstractType * SOAP_FMAC4 soap_get_saml1__StatementAbstractType(struct soap*, struct saml1__StatementAbstractType *, const char*, const char*); - -inline int soap_read_saml1__StatementAbstractType(struct soap *soap, struct saml1__StatementAbstractType *p) -{ - if (p) - { ::soap_default_saml1__StatementAbstractType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__StatementAbstractType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__StatementAbstractType(struct soap *soap, const char *URL, struct saml1__StatementAbstractType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__StatementAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__StatementAbstractType(struct soap *soap, struct saml1__StatementAbstractType *p) -{ - if (::soap_read_saml1__StatementAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AdviceType_DEFINED -#define SOAP_TYPE_saml1__AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AdviceType(struct soap*, struct saml1__AdviceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AdviceType(struct soap*, const struct saml1__AdviceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AdviceType(struct soap*, const char*, int, const struct saml1__AdviceType *, const char*); -SOAP_FMAC3 struct saml1__AdviceType * SOAP_FMAC4 soap_in_saml1__AdviceType(struct soap*, const char*, struct saml1__AdviceType *, const char*); -SOAP_FMAC1 struct saml1__AdviceType * SOAP_FMAC2 soap_instantiate_saml1__AdviceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AdviceType * soap_new_saml1__AdviceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AdviceType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AdviceType * soap_new_req_saml1__AdviceType( - struct soap *soap, - int __size_AdviceType, - struct __saml1__union_AdviceType *__union_AdviceType) -{ - struct saml1__AdviceType *_p = ::soap_new_saml1__AdviceType(soap); - if (_p) - { ::soap_default_saml1__AdviceType(soap, _p); - _p->__size_AdviceType = __size_AdviceType; - _p->__union_AdviceType = __union_AdviceType; - } - return _p; -} - -inline struct saml1__AdviceType * soap_new_set_saml1__AdviceType( - struct soap *soap, - int __size_AdviceType, - struct __saml1__union_AdviceType *__union_AdviceType) -{ - struct saml1__AdviceType *_p = ::soap_new_saml1__AdviceType(soap); - if (_p) - { ::soap_default_saml1__AdviceType(soap, _p); - _p->__size_AdviceType = __size_AdviceType; - _p->__union_AdviceType = __union_AdviceType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AdviceType(struct soap*, const struct saml1__AdviceType *, const char*, const char*); - -inline int soap_write_saml1__AdviceType(struct soap *soap, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AdviceType(soap, p), 0) || ::soap_put_saml1__AdviceType(soap, p, "saml1:AdviceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AdviceType(struct soap *soap, const char *URL, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AdviceType(soap, p), 0) || ::soap_put_saml1__AdviceType(soap, p, "saml1:AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AdviceType(struct soap *soap, const char *URL, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AdviceType(soap, p), 0) || ::soap_put_saml1__AdviceType(soap, p, "saml1:AdviceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AdviceType(struct soap *soap, const char *URL, struct saml1__AdviceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AdviceType(soap, p), 0) || ::soap_put_saml1__AdviceType(soap, p, "saml1:AdviceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AdviceType * SOAP_FMAC4 soap_get_saml1__AdviceType(struct soap*, struct saml1__AdviceType *, const char*, const char*); - -inline int soap_read_saml1__AdviceType(struct soap *soap, struct saml1__AdviceType *p) -{ - if (p) - { ::soap_default_saml1__AdviceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AdviceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AdviceType(struct soap *soap, const char *URL, struct saml1__AdviceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AdviceType(struct soap *soap, struct saml1__AdviceType *p) -{ - if (::soap_read_saml1__AdviceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__DoNotCacheConditionType_DEFINED -#define SOAP_TYPE_saml1__DoNotCacheConditionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__DoNotCacheConditionType(struct soap*, struct saml1__DoNotCacheConditionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__DoNotCacheConditionType(struct soap*, const struct saml1__DoNotCacheConditionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__DoNotCacheConditionType(struct soap*, const char*, int, const struct saml1__DoNotCacheConditionType *, const char*); -SOAP_FMAC3 struct saml1__DoNotCacheConditionType * SOAP_FMAC4 soap_in_saml1__DoNotCacheConditionType(struct soap*, const char*, struct saml1__DoNotCacheConditionType *, const char*); -SOAP_FMAC1 struct saml1__DoNotCacheConditionType * SOAP_FMAC2 soap_instantiate_saml1__DoNotCacheConditionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__DoNotCacheConditionType * soap_new_saml1__DoNotCacheConditionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__DoNotCacheConditionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__DoNotCacheConditionType * soap_new_req_saml1__DoNotCacheConditionType( - struct soap *soap) -{ - struct saml1__DoNotCacheConditionType *_p = ::soap_new_saml1__DoNotCacheConditionType(soap); - if (_p) - { ::soap_default_saml1__DoNotCacheConditionType(soap, _p); - } - return _p; -} - -inline struct saml1__DoNotCacheConditionType * soap_new_set_saml1__DoNotCacheConditionType( - struct soap *soap) -{ - struct saml1__DoNotCacheConditionType *_p = ::soap_new_saml1__DoNotCacheConditionType(soap); - if (_p) - { ::soap_default_saml1__DoNotCacheConditionType(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__DoNotCacheConditionType(struct soap*, const struct saml1__DoNotCacheConditionType *, const char*, const char*); - -inline int soap_write_saml1__DoNotCacheConditionType(struct soap *soap, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__DoNotCacheConditionType(soap, p), 0) || ::soap_put_saml1__DoNotCacheConditionType(soap, p, "saml1:DoNotCacheConditionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__DoNotCacheConditionType(struct soap *soap, const char *URL, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__DoNotCacheConditionType(soap, p), 0) || ::soap_put_saml1__DoNotCacheConditionType(soap, p, "saml1:DoNotCacheConditionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__DoNotCacheConditionType(struct soap *soap, const char *URL, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__DoNotCacheConditionType(soap, p), 0) || ::soap_put_saml1__DoNotCacheConditionType(soap, p, "saml1:DoNotCacheConditionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__DoNotCacheConditionType(struct soap *soap, const char *URL, struct saml1__DoNotCacheConditionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__DoNotCacheConditionType(soap, p), 0) || ::soap_put_saml1__DoNotCacheConditionType(soap, p, "saml1:DoNotCacheConditionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__DoNotCacheConditionType * SOAP_FMAC4 soap_get_saml1__DoNotCacheConditionType(struct soap*, struct saml1__DoNotCacheConditionType *, const char*, const char*); - -inline int soap_read_saml1__DoNotCacheConditionType(struct soap *soap, struct saml1__DoNotCacheConditionType *p) -{ - if (p) - { ::soap_default_saml1__DoNotCacheConditionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__DoNotCacheConditionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__DoNotCacheConditionType(struct soap *soap, const char *URL, struct saml1__DoNotCacheConditionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__DoNotCacheConditionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__DoNotCacheConditionType(struct soap *soap, struct saml1__DoNotCacheConditionType *p) -{ - if (::soap_read_saml1__DoNotCacheConditionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AudienceRestrictionConditionType_DEFINED -#define SOAP_TYPE_saml1__AudienceRestrictionConditionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AudienceRestrictionConditionType(struct soap*, struct saml1__AudienceRestrictionConditionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AudienceRestrictionConditionType(struct soap*, const struct saml1__AudienceRestrictionConditionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AudienceRestrictionConditionType(struct soap*, const char*, int, const struct saml1__AudienceRestrictionConditionType *, const char*); -SOAP_FMAC3 struct saml1__AudienceRestrictionConditionType * SOAP_FMAC4 soap_in_saml1__AudienceRestrictionConditionType(struct soap*, const char*, struct saml1__AudienceRestrictionConditionType *, const char*); -SOAP_FMAC1 struct saml1__AudienceRestrictionConditionType * SOAP_FMAC2 soap_instantiate_saml1__AudienceRestrictionConditionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AudienceRestrictionConditionType * soap_new_saml1__AudienceRestrictionConditionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AudienceRestrictionConditionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AudienceRestrictionConditionType * soap_new_req_saml1__AudienceRestrictionConditionType( - struct soap *soap, - int __sizeAudience, - char **saml1__Audience) -{ - struct saml1__AudienceRestrictionConditionType *_p = ::soap_new_saml1__AudienceRestrictionConditionType(soap); - if (_p) - { ::soap_default_saml1__AudienceRestrictionConditionType(soap, _p); - _p->__sizeAudience = __sizeAudience; - _p->saml1__Audience = saml1__Audience; - } - return _p; -} - -inline struct saml1__AudienceRestrictionConditionType * soap_new_set_saml1__AudienceRestrictionConditionType( - struct soap *soap, - int __sizeAudience, - char **saml1__Audience) -{ - struct saml1__AudienceRestrictionConditionType *_p = ::soap_new_saml1__AudienceRestrictionConditionType(soap); - if (_p) - { ::soap_default_saml1__AudienceRestrictionConditionType(soap, _p); - _p->__sizeAudience = __sizeAudience; - _p->saml1__Audience = saml1__Audience; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AudienceRestrictionConditionType(struct soap*, const struct saml1__AudienceRestrictionConditionType *, const char*, const char*); - -inline int soap_write_saml1__AudienceRestrictionConditionType(struct soap *soap, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AudienceRestrictionConditionType(soap, p), 0) || ::soap_put_saml1__AudienceRestrictionConditionType(soap, p, "saml1:AudienceRestrictionConditionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AudienceRestrictionConditionType(struct soap *soap, const char *URL, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AudienceRestrictionConditionType(soap, p), 0) || ::soap_put_saml1__AudienceRestrictionConditionType(soap, p, "saml1:AudienceRestrictionConditionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AudienceRestrictionConditionType(struct soap *soap, const char *URL, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AudienceRestrictionConditionType(soap, p), 0) || ::soap_put_saml1__AudienceRestrictionConditionType(soap, p, "saml1:AudienceRestrictionConditionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AudienceRestrictionConditionType(struct soap *soap, const char *URL, struct saml1__AudienceRestrictionConditionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AudienceRestrictionConditionType(soap, p), 0) || ::soap_put_saml1__AudienceRestrictionConditionType(soap, p, "saml1:AudienceRestrictionConditionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AudienceRestrictionConditionType * SOAP_FMAC4 soap_get_saml1__AudienceRestrictionConditionType(struct soap*, struct saml1__AudienceRestrictionConditionType *, const char*, const char*); - -inline int soap_read_saml1__AudienceRestrictionConditionType(struct soap *soap, struct saml1__AudienceRestrictionConditionType *p) -{ - if (p) - { ::soap_default_saml1__AudienceRestrictionConditionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AudienceRestrictionConditionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AudienceRestrictionConditionType(struct soap *soap, const char *URL, struct saml1__AudienceRestrictionConditionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AudienceRestrictionConditionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AudienceRestrictionConditionType(struct soap *soap, struct saml1__AudienceRestrictionConditionType *p) -{ - if (::soap_read_saml1__AudienceRestrictionConditionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__ConditionAbstractType_DEFINED -#define SOAP_TYPE_saml1__ConditionAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__ConditionAbstractType(struct soap*, struct saml1__ConditionAbstractType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ConditionAbstractType(struct soap*, const struct saml1__ConditionAbstractType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__ConditionAbstractType(struct soap*, const char*, int, const struct saml1__ConditionAbstractType *, const char*); -SOAP_FMAC3 struct saml1__ConditionAbstractType * SOAP_FMAC4 soap_in_saml1__ConditionAbstractType(struct soap*, const char*, struct saml1__ConditionAbstractType *, const char*); -SOAP_FMAC1 struct saml1__ConditionAbstractType * SOAP_FMAC2 soap_instantiate_saml1__ConditionAbstractType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__ConditionAbstractType * soap_new_saml1__ConditionAbstractType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__ConditionAbstractType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__ConditionAbstractType * soap_new_req_saml1__ConditionAbstractType( - struct soap *soap) -{ - struct saml1__ConditionAbstractType *_p = ::soap_new_saml1__ConditionAbstractType(soap); - if (_p) - { ::soap_default_saml1__ConditionAbstractType(soap, _p); - } - return _p; -} - -inline struct saml1__ConditionAbstractType * soap_new_set_saml1__ConditionAbstractType( - struct soap *soap) -{ - struct saml1__ConditionAbstractType *_p = ::soap_new_saml1__ConditionAbstractType(soap); - if (_p) - { ::soap_default_saml1__ConditionAbstractType(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__ConditionAbstractType(struct soap*, const struct saml1__ConditionAbstractType *, const char*, const char*); - -inline int soap_write_saml1__ConditionAbstractType(struct soap *soap, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__ConditionAbstractType(soap, p), 0) || ::soap_put_saml1__ConditionAbstractType(soap, p, "saml1:ConditionAbstractType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__ConditionAbstractType(struct soap *soap, const char *URL, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ConditionAbstractType(soap, p), 0) || ::soap_put_saml1__ConditionAbstractType(soap, p, "saml1:ConditionAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__ConditionAbstractType(struct soap *soap, const char *URL, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ConditionAbstractType(soap, p), 0) || ::soap_put_saml1__ConditionAbstractType(soap, p, "saml1:ConditionAbstractType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__ConditionAbstractType(struct soap *soap, const char *URL, struct saml1__ConditionAbstractType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ConditionAbstractType(soap, p), 0) || ::soap_put_saml1__ConditionAbstractType(soap, p, "saml1:ConditionAbstractType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__ConditionAbstractType * SOAP_FMAC4 soap_get_saml1__ConditionAbstractType(struct soap*, struct saml1__ConditionAbstractType *, const char*, const char*); - -inline int soap_read_saml1__ConditionAbstractType(struct soap *soap, struct saml1__ConditionAbstractType *p) -{ - if (p) - { ::soap_default_saml1__ConditionAbstractType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__ConditionAbstractType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__ConditionAbstractType(struct soap *soap, const char *URL, struct saml1__ConditionAbstractType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__ConditionAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__ConditionAbstractType(struct soap *soap, struct saml1__ConditionAbstractType *p) -{ - if (::soap_read_saml1__ConditionAbstractType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__ConditionsType_DEFINED -#define SOAP_TYPE_saml1__ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__ConditionsType(struct soap*, struct saml1__ConditionsType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__ConditionsType(struct soap*, const struct saml1__ConditionsType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__ConditionsType(struct soap*, const char*, int, const struct saml1__ConditionsType *, const char*); -SOAP_FMAC3 struct saml1__ConditionsType * SOAP_FMAC4 soap_in_saml1__ConditionsType(struct soap*, const char*, struct saml1__ConditionsType *, const char*); -SOAP_FMAC1 struct saml1__ConditionsType * SOAP_FMAC2 soap_instantiate_saml1__ConditionsType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__ConditionsType * soap_new_saml1__ConditionsType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__ConditionsType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__ConditionsType * soap_new_req_saml1__ConditionsType( - struct soap *soap, - int __size_ConditionsType, - struct __saml1__union_ConditionsType *__union_ConditionsType) -{ - struct saml1__ConditionsType *_p = ::soap_new_saml1__ConditionsType(soap); - if (_p) - { ::soap_default_saml1__ConditionsType(soap, _p); - _p->__size_ConditionsType = __size_ConditionsType; - _p->__union_ConditionsType = __union_ConditionsType; - } - return _p; -} - -inline struct saml1__ConditionsType * soap_new_set_saml1__ConditionsType( - struct soap *soap, - int __size_ConditionsType, - struct __saml1__union_ConditionsType *__union_ConditionsType, - struct timeval *NotBefore, - struct timeval *NotOnOrAfter) -{ - struct saml1__ConditionsType *_p = ::soap_new_saml1__ConditionsType(soap); - if (_p) - { ::soap_default_saml1__ConditionsType(soap, _p); - _p->__size_ConditionsType = __size_ConditionsType; - _p->__union_ConditionsType = __union_ConditionsType; - _p->NotBefore = NotBefore; - _p->NotOnOrAfter = NotOnOrAfter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__ConditionsType(struct soap*, const struct saml1__ConditionsType *, const char*, const char*); - -inline int soap_write_saml1__ConditionsType(struct soap *soap, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__ConditionsType(soap, p), 0) || ::soap_put_saml1__ConditionsType(soap, p, "saml1:ConditionsType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__ConditionsType(struct soap *soap, const char *URL, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ConditionsType(soap, p), 0) || ::soap_put_saml1__ConditionsType(soap, p, "saml1:ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__ConditionsType(struct soap *soap, const char *URL, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ConditionsType(soap, p), 0) || ::soap_put_saml1__ConditionsType(soap, p, "saml1:ConditionsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__ConditionsType(struct soap *soap, const char *URL, struct saml1__ConditionsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__ConditionsType(soap, p), 0) || ::soap_put_saml1__ConditionsType(soap, p, "saml1:ConditionsType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__ConditionsType * SOAP_FMAC4 soap_get_saml1__ConditionsType(struct soap*, struct saml1__ConditionsType *, const char*, const char*); - -inline int soap_read_saml1__ConditionsType(struct soap *soap, struct saml1__ConditionsType *p) -{ - if (p) - { ::soap_default_saml1__ConditionsType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__ConditionsType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__ConditionsType(struct soap *soap, const char *URL, struct saml1__ConditionsType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__ConditionsType(struct soap *soap, struct saml1__ConditionsType *p) -{ - if (::soap_read_saml1__ConditionsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_saml1__AssertionType_DEFINED -#define SOAP_TYPE_saml1__AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_saml1__AssertionType(struct soap*, struct saml1__AssertionType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_saml1__AssertionType(struct soap*, const struct saml1__AssertionType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_saml1__AssertionType(struct soap*, const char*, int, const struct saml1__AssertionType *, const char*); -SOAP_FMAC3 struct saml1__AssertionType * SOAP_FMAC4 soap_in_saml1__AssertionType(struct soap*, const char*, struct saml1__AssertionType *, const char*); -SOAP_FMAC1 struct saml1__AssertionType * SOAP_FMAC2 soap_instantiate_saml1__AssertionType(struct soap*, int, const char*, const char*, size_t*); - -inline struct saml1__AssertionType * soap_new_saml1__AssertionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_saml1__AssertionType(soap, n, NULL, NULL, NULL); -} - -inline struct saml1__AssertionType * soap_new_req_saml1__AssertionType( - struct soap *soap, - int __size_AssertionType, - struct __saml1__union_AssertionType *__union_AssertionType, - char *MajorVersion, - char *MinorVersion, - char *AssertionID, - char *Issuer, - const struct timeval& IssueInstant) -{ - struct saml1__AssertionType *_p = ::soap_new_saml1__AssertionType(soap); - if (_p) - { ::soap_default_saml1__AssertionType(soap, _p); - _p->__size_AssertionType = __size_AssertionType; - _p->__union_AssertionType = __union_AssertionType; - _p->MajorVersion = MajorVersion; - _p->MinorVersion = MinorVersion; - _p->AssertionID = AssertionID; - _p->Issuer = Issuer; - _p->IssueInstant = IssueInstant; - } - return _p; -} - -inline struct saml1__AssertionType * soap_new_set_saml1__AssertionType( - struct soap *soap, - struct saml1__ConditionsType *saml1__Conditions, - struct saml1__AdviceType *saml1__Advice, - int __size_AssertionType, - struct __saml1__union_AssertionType *__union_AssertionType, - struct ds__SignatureType *ds__Signature, - char *MajorVersion, - char *MinorVersion, - char *AssertionID, - char *Issuer, - const struct timeval& IssueInstant, - char *wsu__Id) -{ - struct saml1__AssertionType *_p = ::soap_new_saml1__AssertionType(soap); - if (_p) - { ::soap_default_saml1__AssertionType(soap, _p); - _p->saml1__Conditions = saml1__Conditions; - _p->saml1__Advice = saml1__Advice; - _p->__size_AssertionType = __size_AssertionType; - _p->__union_AssertionType = __union_AssertionType; - _p->ds__Signature = ds__Signature; - _p->MajorVersion = MajorVersion; - _p->MinorVersion = MinorVersion; - _p->AssertionID = AssertionID; - _p->Issuer = Issuer; - _p->IssueInstant = IssueInstant; - _p->wsu__Id = wsu__Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_saml1__AssertionType(struct soap*, const struct saml1__AssertionType *, const char*, const char*); - -inline int soap_write_saml1__AssertionType(struct soap *soap, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_saml1__AssertionType(soap, p), 0) || ::soap_put_saml1__AssertionType(soap, p, "saml1:AssertionType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_saml1__AssertionType(struct soap *soap, const char *URL, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AssertionType(soap, p), 0) || ::soap_put_saml1__AssertionType(soap, p, "saml1:AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_saml1__AssertionType(struct soap *soap, const char *URL, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AssertionType(soap, p), 0) || ::soap_put_saml1__AssertionType(soap, p, "saml1:AssertionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_saml1__AssertionType(struct soap *soap, const char *URL, struct saml1__AssertionType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_saml1__AssertionType(soap, p), 0) || ::soap_put_saml1__AssertionType(soap, p, "saml1:AssertionType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct saml1__AssertionType * SOAP_FMAC4 soap_get_saml1__AssertionType(struct soap*, struct saml1__AssertionType *, const char*, const char*); - -inline int soap_read_saml1__AssertionType(struct soap *soap, struct saml1__AssertionType *p) -{ - if (p) - { ::soap_default_saml1__AssertionType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_saml1__AssertionType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_saml1__AssertionType(struct soap *soap, const char *URL, struct saml1__AssertionType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_saml1__AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_saml1__AssertionType(struct soap *soap, struct saml1__AssertionType *p) -{ - if (::soap_read_saml1__AssertionType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xsd__dateTime_DEFINED -#define SOAP_TYPE_xsd__dateTime_DEFINED -SOAP_FMAC1 void SOAP_FMAC2 soap_default_xsd__dateTime(struct soap*, struct timeval *); -SOAP_FMAC1 void SOAP_FMAC2 soap_serialize_xsd__dateTime(struct soap*, const struct timeval *); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_xsd__dateTime2s(struct soap*, struct timeval); -SOAP_FMAC1 int SOAP_FMAC2 soap_out_xsd__dateTime(struct soap*, const char*, int, const struct timeval *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2xsd__dateTime(struct soap*, const char*, struct timeval *); -SOAP_FMAC1 struct timeval * SOAP_FMAC2 soap_in_xsd__dateTime(struct soap*, const char*, struct timeval *, const char*); -SOAP_FMAC1 struct timeval * SOAP_FMAC2 soap_instantiate_xsd__dateTime(struct soap*, int, const char*, const char*, size_t*); - -inline struct timeval * soap_new_xsd__dateTime(struct soap *soap, int n = -1) -{ - return soap_instantiate_xsd__dateTime(soap, n, NULL, NULL, NULL); -} - -inline struct timeval * soap_new_req_xsd__dateTime( - struct soap *soap) -{ - struct timeval *_p = soap_new_xsd__dateTime(soap); - if (_p) - { - } - return _p; -} - -inline struct timeval * soap_new_set_xsd__dateTime( - struct soap *soap) -{ - struct timeval *_p = soap_new_xsd__dateTime(soap); - if (_p) - { - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__dateTime(struct soap*, const struct timeval *, const char*, const char*); - -inline int soap_write_xsd__dateTime(struct soap *soap, struct timeval const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (soap_serialize_xsd__dateTime(soap, p), 0) || soap_put_xsd__dateTime(soap, p, "xsd:dateTime", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xsd__dateTime(struct soap *soap, const char *URL, struct timeval const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (soap_serialize_xsd__dateTime(soap, p), 0) || soap_put_xsd__dateTime(soap, p, "xsd:dateTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xsd__dateTime(struct soap *soap, const char *URL, struct timeval const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (soap_serialize_xsd__dateTime(soap, p), 0) || soap_put_xsd__dateTime(soap, p, "xsd:dateTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xsd__dateTime(struct soap *soap, const char *URL, struct timeval const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (soap_serialize_xsd__dateTime(soap, p), 0) || soap_put_xsd__dateTime(soap, p, "xsd:dateTime", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct timeval * SOAP_FMAC4 soap_get_xsd__dateTime(struct soap*, struct timeval *, const char*, const char*); - -inline int soap_read_xsd__dateTime(struct soap *soap, struct timeval *p) -{ - if (p) - { soap_default_xsd__dateTime(soap, p); - if (soap_begin_recv(soap) || soap_get_xsd__dateTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xsd__dateTime(struct soap *soap, const char *URL, struct timeval *p) -{ - if (soap_GET(soap, URL, NULL) || soap_read_xsd__dateTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xsd__dateTime(struct soap *soap, struct timeval *p) -{ - if (soap_read_xsd__dateTime(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___wsc__DerivedKeyTokenType_sequence_DEFINED -#define SOAP_TYPE___wsc__DerivedKeyTokenType_sequence_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsc__DerivedKeyTokenType_sequence(struct soap*, struct __wsc__DerivedKeyTokenType_sequence *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsc__DerivedKeyTokenType_sequence(struct soap*, const struct __wsc__DerivedKeyTokenType_sequence *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsc__DerivedKeyTokenType_sequence(struct soap*, const char*, int, const struct __wsc__DerivedKeyTokenType_sequence *, const char*); -SOAP_FMAC3 struct __wsc__DerivedKeyTokenType_sequence * SOAP_FMAC4 soap_in___wsc__DerivedKeyTokenType_sequence(struct soap*, const char*, struct __wsc__DerivedKeyTokenType_sequence *, const char*); -SOAP_FMAC1 struct __wsc__DerivedKeyTokenType_sequence * SOAP_FMAC2 soap_instantiate___wsc__DerivedKeyTokenType_sequence(struct soap*, int, const char*, const char*, size_t*); - -inline struct __wsc__DerivedKeyTokenType_sequence * soap_new___wsc__DerivedKeyTokenType_sequence(struct soap *soap, int n = -1) -{ - return soap_instantiate___wsc__DerivedKeyTokenType_sequence(soap, n, NULL, NULL, NULL); -} - -inline struct __wsc__DerivedKeyTokenType_sequence * soap_new_req___wsc__DerivedKeyTokenType_sequence( - struct soap *soap, - const union _wsc__union_DerivedKeyTokenType& union_DerivedKeyTokenType) -{ - struct __wsc__DerivedKeyTokenType_sequence *_p = ::soap_new___wsc__DerivedKeyTokenType_sequence(soap); - if (_p) - { ::soap_default___wsc__DerivedKeyTokenType_sequence(soap, _p); - _p->union_DerivedKeyTokenType = union_DerivedKeyTokenType; - } - return _p; -} - -inline struct __wsc__DerivedKeyTokenType_sequence * soap_new_set___wsc__DerivedKeyTokenType_sequence( - struct soap *soap, - int __union_DerivedKeyTokenType, - const union _wsc__union_DerivedKeyTokenType& union_DerivedKeyTokenType, - ULONG64 *Length) -{ - struct __wsc__DerivedKeyTokenType_sequence *_p = ::soap_new___wsc__DerivedKeyTokenType_sequence(soap); - if (_p) - { ::soap_default___wsc__DerivedKeyTokenType_sequence(soap, _p); - _p->__union_DerivedKeyTokenType = __union_DerivedKeyTokenType; - _p->union_DerivedKeyTokenType = union_DerivedKeyTokenType; - _p->Length = Length; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsc__DerivedKeyTokenType_sequence(struct soap*, const struct __wsc__DerivedKeyTokenType_sequence *, const char*, const char*); - -inline int soap_write___wsc__DerivedKeyTokenType_sequence(struct soap *soap, struct __wsc__DerivedKeyTokenType_sequence const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___wsc__DerivedKeyTokenType_sequence(soap, p), 0) || ::soap_put___wsc__DerivedKeyTokenType_sequence(soap, p, "-wsc:DerivedKeyTokenType-sequence", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const char *URL, struct __wsc__DerivedKeyTokenType_sequence const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsc__DerivedKeyTokenType_sequence(soap, p), 0) || ::soap_put___wsc__DerivedKeyTokenType_sequence(soap, p, "-wsc:DerivedKeyTokenType-sequence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const char *URL, struct __wsc__DerivedKeyTokenType_sequence const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsc__DerivedKeyTokenType_sequence(soap, p), 0) || ::soap_put___wsc__DerivedKeyTokenType_sequence(soap, p, "-wsc:DerivedKeyTokenType-sequence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const char *URL, struct __wsc__DerivedKeyTokenType_sequence const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsc__DerivedKeyTokenType_sequence(soap, p), 0) || ::soap_put___wsc__DerivedKeyTokenType_sequence(soap, p, "-wsc:DerivedKeyTokenType-sequence", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __wsc__DerivedKeyTokenType_sequence * SOAP_FMAC4 soap_get___wsc__DerivedKeyTokenType_sequence(struct soap*, struct __wsc__DerivedKeyTokenType_sequence *, const char*, const char*); - -inline int soap_read___wsc__DerivedKeyTokenType_sequence(struct soap *soap, struct __wsc__DerivedKeyTokenType_sequence *p) -{ - if (p) - { ::soap_default___wsc__DerivedKeyTokenType_sequence(soap, p); - if (soap_begin_recv(soap) || ::soap_get___wsc__DerivedKeyTokenType_sequence(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___wsc__DerivedKeyTokenType_sequence(struct soap *soap, const char *URL, struct __wsc__DerivedKeyTokenType_sequence *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___wsc__DerivedKeyTokenType_sequence(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___wsc__DerivedKeyTokenType_sequence(struct soap *soap, struct __wsc__DerivedKeyTokenType_sequence *p) -{ - if (::soap_read___wsc__DerivedKeyTokenType_sequence(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsc__PropertiesType_DEFINED -#define SOAP_TYPE_wsc__PropertiesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsc__PropertiesType(struct soap*, struct wsc__PropertiesType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsc__PropertiesType(struct soap*, const struct wsc__PropertiesType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__PropertiesType(struct soap*, const char*, int, const struct wsc__PropertiesType *, const char*); -SOAP_FMAC3 struct wsc__PropertiesType * SOAP_FMAC4 soap_in_wsc__PropertiesType(struct soap*, const char*, struct wsc__PropertiesType *, const char*); -SOAP_FMAC1 struct wsc__PropertiesType * SOAP_FMAC2 soap_instantiate_wsc__PropertiesType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsc__PropertiesType * soap_new_wsc__PropertiesType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsc__PropertiesType(soap, n, NULL, NULL, NULL); -} - -inline struct wsc__PropertiesType * soap_new_req_wsc__PropertiesType( - struct soap *soap) -{ - struct wsc__PropertiesType *_p = ::soap_new_wsc__PropertiesType(soap); - if (_p) - { ::soap_default_wsc__PropertiesType(soap, _p); - } - return _p; -} - -inline struct wsc__PropertiesType * soap_new_set_wsc__PropertiesType( - struct soap *soap) -{ - struct wsc__PropertiesType *_p = ::soap_new_wsc__PropertiesType(soap); - if (_p) - { ::soap_default_wsc__PropertiesType(soap, _p); - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__PropertiesType(struct soap*, const struct wsc__PropertiesType *, const char*, const char*); - -inline int soap_write_wsc__PropertiesType(struct soap *soap, struct wsc__PropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsc__PropertiesType(soap, p), 0) || ::soap_put_wsc__PropertiesType(soap, p, "wsc:PropertiesType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsc__PropertiesType(struct soap *soap, const char *URL, struct wsc__PropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__PropertiesType(soap, p), 0) || ::soap_put_wsc__PropertiesType(soap, p, "wsc:PropertiesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsc__PropertiesType(struct soap *soap, const char *URL, struct wsc__PropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__PropertiesType(soap, p), 0) || ::soap_put_wsc__PropertiesType(soap, p, "wsc:PropertiesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsc__PropertiesType(struct soap *soap, const char *URL, struct wsc__PropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__PropertiesType(soap, p), 0) || ::soap_put_wsc__PropertiesType(soap, p, "wsc:PropertiesType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsc__PropertiesType * SOAP_FMAC4 soap_get_wsc__PropertiesType(struct soap*, struct wsc__PropertiesType *, const char*, const char*); - -inline int soap_read_wsc__PropertiesType(struct soap *soap, struct wsc__PropertiesType *p) -{ - if (p) - { ::soap_default_wsc__PropertiesType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsc__PropertiesType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsc__PropertiesType(struct soap *soap, const char *URL, struct wsc__PropertiesType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsc__PropertiesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsc__PropertiesType(struct soap *soap, struct wsc__PropertiesType *p) -{ - if (::soap_read_wsc__PropertiesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsc__DerivedKeyTokenType_DEFINED -#define SOAP_TYPE_wsc__DerivedKeyTokenType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsc__DerivedKeyTokenType(struct soap*, struct wsc__DerivedKeyTokenType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsc__DerivedKeyTokenType(struct soap*, const struct wsc__DerivedKeyTokenType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__DerivedKeyTokenType(struct soap*, const char*, int, const struct wsc__DerivedKeyTokenType *, const char*); -SOAP_FMAC3 struct wsc__DerivedKeyTokenType * SOAP_FMAC4 soap_in_wsc__DerivedKeyTokenType(struct soap*, const char*, struct wsc__DerivedKeyTokenType *, const char*); -SOAP_FMAC1 struct wsc__DerivedKeyTokenType * SOAP_FMAC2 soap_instantiate_wsc__DerivedKeyTokenType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsc__DerivedKeyTokenType * soap_new_wsc__DerivedKeyTokenType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsc__DerivedKeyTokenType(soap, n, NULL, NULL, NULL); -} - -inline struct wsc__DerivedKeyTokenType * soap_new_req_wsc__DerivedKeyTokenType( - struct soap *soap) -{ - struct wsc__DerivedKeyTokenType *_p = ::soap_new_wsc__DerivedKeyTokenType(soap); - if (_p) - { ::soap_default_wsc__DerivedKeyTokenType(soap, _p); - } - return _p; -} - -inline struct wsc__DerivedKeyTokenType * soap_new_set_wsc__DerivedKeyTokenType( - struct soap *soap, - struct _wsse__SecurityTokenReference *wsse__SecurityTokenReference, - struct wsc__PropertiesType *Properties, - struct __wsc__DerivedKeyTokenType_sequence *__DerivedKeyTokenType_sequence, - char *Label, - char *Nonce, - char *wsu__Id, - char *Algorithm) -{ - struct wsc__DerivedKeyTokenType *_p = ::soap_new_wsc__DerivedKeyTokenType(soap); - if (_p) - { ::soap_default_wsc__DerivedKeyTokenType(soap, _p); - _p->wsse__SecurityTokenReference = wsse__SecurityTokenReference; - _p->Properties = Properties; - _p->__DerivedKeyTokenType_sequence = __DerivedKeyTokenType_sequence; - _p->Label = Label; - _p->Nonce = Nonce; - _p->wsu__Id = wsu__Id; - _p->Algorithm = Algorithm; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__DerivedKeyTokenType(struct soap*, const struct wsc__DerivedKeyTokenType *, const char*, const char*); - -inline int soap_write_wsc__DerivedKeyTokenType(struct soap *soap, struct wsc__DerivedKeyTokenType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsc__DerivedKeyTokenType(soap, p), 0) || ::soap_put_wsc__DerivedKeyTokenType(soap, p, "wsc:DerivedKeyTokenType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsc__DerivedKeyTokenType(struct soap *soap, const char *URL, struct wsc__DerivedKeyTokenType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__DerivedKeyTokenType(soap, p), 0) || ::soap_put_wsc__DerivedKeyTokenType(soap, p, "wsc:DerivedKeyTokenType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsc__DerivedKeyTokenType(struct soap *soap, const char *URL, struct wsc__DerivedKeyTokenType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__DerivedKeyTokenType(soap, p), 0) || ::soap_put_wsc__DerivedKeyTokenType(soap, p, "wsc:DerivedKeyTokenType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsc__DerivedKeyTokenType(struct soap *soap, const char *URL, struct wsc__DerivedKeyTokenType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__DerivedKeyTokenType(soap, p), 0) || ::soap_put_wsc__DerivedKeyTokenType(soap, p, "wsc:DerivedKeyTokenType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsc__DerivedKeyTokenType * SOAP_FMAC4 soap_get_wsc__DerivedKeyTokenType(struct soap*, struct wsc__DerivedKeyTokenType *, const char*, const char*); - -inline int soap_read_wsc__DerivedKeyTokenType(struct soap *soap, struct wsc__DerivedKeyTokenType *p) -{ - if (p) - { ::soap_default_wsc__DerivedKeyTokenType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsc__DerivedKeyTokenType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsc__DerivedKeyTokenType(struct soap *soap, const char *URL, struct wsc__DerivedKeyTokenType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsc__DerivedKeyTokenType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsc__DerivedKeyTokenType(struct soap *soap, struct wsc__DerivedKeyTokenType *p) -{ - if (::soap_read_wsc__DerivedKeyTokenType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsc__SecurityContextTokenType_DEFINED -#define SOAP_TYPE_wsc__SecurityContextTokenType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsc__SecurityContextTokenType(struct soap*, struct wsc__SecurityContextTokenType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsc__SecurityContextTokenType(struct soap*, const struct wsc__SecurityContextTokenType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__SecurityContextTokenType(struct soap*, const char*, int, const struct wsc__SecurityContextTokenType *, const char*); -SOAP_FMAC3 struct wsc__SecurityContextTokenType * SOAP_FMAC4 soap_in_wsc__SecurityContextTokenType(struct soap*, const char*, struct wsc__SecurityContextTokenType *, const char*); -SOAP_FMAC1 struct wsc__SecurityContextTokenType * SOAP_FMAC2 soap_instantiate_wsc__SecurityContextTokenType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsc__SecurityContextTokenType * soap_new_wsc__SecurityContextTokenType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsc__SecurityContextTokenType(soap, n, NULL, NULL, NULL); -} - -inline struct wsc__SecurityContextTokenType * soap_new_req_wsc__SecurityContextTokenType( - struct soap *soap) -{ - struct wsc__SecurityContextTokenType *_p = ::soap_new_wsc__SecurityContextTokenType(soap); - if (_p) - { ::soap_default_wsc__SecurityContextTokenType(soap, _p); - } - return _p; -} - -inline struct wsc__SecurityContextTokenType * soap_new_set_wsc__SecurityContextTokenType( - struct soap *soap, - char *wsu__Id, - char *Identifier, - char *Instance) -{ - struct wsc__SecurityContextTokenType *_p = ::soap_new_wsc__SecurityContextTokenType(soap); - if (_p) - { ::soap_default_wsc__SecurityContextTokenType(soap, _p); - _p->wsu__Id = wsu__Id; - _p->Identifier = Identifier; - _p->Instance = Instance; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__SecurityContextTokenType(struct soap*, const struct wsc__SecurityContextTokenType *, const char*, const char*); - -inline int soap_write_wsc__SecurityContextTokenType(struct soap *soap, struct wsc__SecurityContextTokenType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsc__SecurityContextTokenType(soap, p), 0) || ::soap_put_wsc__SecurityContextTokenType(soap, p, "wsc:SecurityContextTokenType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsc__SecurityContextTokenType(struct soap *soap, const char *URL, struct wsc__SecurityContextTokenType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__SecurityContextTokenType(soap, p), 0) || ::soap_put_wsc__SecurityContextTokenType(soap, p, "wsc:SecurityContextTokenType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsc__SecurityContextTokenType(struct soap *soap, const char *URL, struct wsc__SecurityContextTokenType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__SecurityContextTokenType(soap, p), 0) || ::soap_put_wsc__SecurityContextTokenType(soap, p, "wsc:SecurityContextTokenType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsc__SecurityContextTokenType(struct soap *soap, const char *URL, struct wsc__SecurityContextTokenType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsc__SecurityContextTokenType(soap, p), 0) || ::soap_put_wsc__SecurityContextTokenType(soap, p, "wsc:SecurityContextTokenType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsc__SecurityContextTokenType * SOAP_FMAC4 soap_get_wsc__SecurityContextTokenType(struct soap*, struct wsc__SecurityContextTokenType *, const char*, const char*); - -inline int soap_read_wsc__SecurityContextTokenType(struct soap *soap, struct wsc__SecurityContextTokenType *p) -{ - if (p) - { ::soap_default_wsc__SecurityContextTokenType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsc__SecurityContextTokenType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsc__SecurityContextTokenType(struct soap *soap, const char *URL, struct wsc__SecurityContextTokenType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsc__SecurityContextTokenType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsc__SecurityContextTokenType(struct soap *soap, struct wsc__SecurityContextTokenType *p) -{ - if (::soap_read_wsc__SecurityContextTokenType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___xenc__union_ReferenceList_DEFINED -#define SOAP_TYPE___xenc__union_ReferenceList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___xenc__union_ReferenceList(struct soap*, struct __xenc__union_ReferenceList *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___xenc__union_ReferenceList(struct soap*, const struct __xenc__union_ReferenceList *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___xenc__union_ReferenceList(struct soap*, const char*, int, const struct __xenc__union_ReferenceList *, const char*); -SOAP_FMAC3 struct __xenc__union_ReferenceList * SOAP_FMAC4 soap_in___xenc__union_ReferenceList(struct soap*, const char*, struct __xenc__union_ReferenceList *, const char*); -SOAP_FMAC1 struct __xenc__union_ReferenceList * SOAP_FMAC2 soap_instantiate___xenc__union_ReferenceList(struct soap*, int, const char*, const char*, size_t*); - -inline struct __xenc__union_ReferenceList * soap_new___xenc__union_ReferenceList(struct soap *soap, int n = -1) -{ - return soap_instantiate___xenc__union_ReferenceList(soap, n, NULL, NULL, NULL); -} - -inline struct __xenc__union_ReferenceList * soap_new_req___xenc__union_ReferenceList( - struct soap *soap) -{ - struct __xenc__union_ReferenceList *_p = ::soap_new___xenc__union_ReferenceList(soap); - if (_p) - { ::soap_default___xenc__union_ReferenceList(soap, _p); - } - return _p; -} - -inline struct __xenc__union_ReferenceList * soap_new_set___xenc__union_ReferenceList( - struct soap *soap, - struct xenc__ReferenceType *DataReference, - struct xenc__ReferenceType *KeyReference) -{ - struct __xenc__union_ReferenceList *_p = ::soap_new___xenc__union_ReferenceList(soap); - if (_p) - { ::soap_default___xenc__union_ReferenceList(soap, _p); - _p->DataReference = DataReference; - _p->KeyReference = KeyReference; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___xenc__union_ReferenceList(struct soap*, const struct __xenc__union_ReferenceList *, const char*, const char*); - -inline int soap_write___xenc__union_ReferenceList(struct soap *soap, struct __xenc__union_ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___xenc__union_ReferenceList(soap, p), 0) || ::soap_put___xenc__union_ReferenceList(soap, p, "-xenc:union-ReferenceList", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___xenc__union_ReferenceList(struct soap *soap, const char *URL, struct __xenc__union_ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___xenc__union_ReferenceList(soap, p), 0) || ::soap_put___xenc__union_ReferenceList(soap, p, "-xenc:union-ReferenceList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___xenc__union_ReferenceList(struct soap *soap, const char *URL, struct __xenc__union_ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___xenc__union_ReferenceList(soap, p), 0) || ::soap_put___xenc__union_ReferenceList(soap, p, "-xenc:union-ReferenceList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___xenc__union_ReferenceList(struct soap *soap, const char *URL, struct __xenc__union_ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___xenc__union_ReferenceList(soap, p), 0) || ::soap_put___xenc__union_ReferenceList(soap, p, "-xenc:union-ReferenceList", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __xenc__union_ReferenceList * SOAP_FMAC4 soap_get___xenc__union_ReferenceList(struct soap*, struct __xenc__union_ReferenceList *, const char*, const char*); - -inline int soap_read___xenc__union_ReferenceList(struct soap *soap, struct __xenc__union_ReferenceList *p) -{ - if (p) - { ::soap_default___xenc__union_ReferenceList(soap, p); - if (soap_begin_recv(soap) || ::soap_get___xenc__union_ReferenceList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___xenc__union_ReferenceList(struct soap *soap, const char *URL, struct __xenc__union_ReferenceList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___xenc__union_ReferenceList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___xenc__union_ReferenceList(struct soap *soap, struct __xenc__union_ReferenceList *p) -{ - if (::soap_read___xenc__union_ReferenceList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__xenc__ReferenceList_DEFINED -#define SOAP_TYPE__xenc__ReferenceList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__xenc__ReferenceList(struct soap*, struct _xenc__ReferenceList *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__xenc__ReferenceList(struct soap*, const struct _xenc__ReferenceList *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__xenc__ReferenceList(struct soap*, const char*, int, const struct _xenc__ReferenceList *, const char*); -SOAP_FMAC3 struct _xenc__ReferenceList * SOAP_FMAC4 soap_in__xenc__ReferenceList(struct soap*, const char*, struct _xenc__ReferenceList *, const char*); -SOAP_FMAC1 struct _xenc__ReferenceList * SOAP_FMAC2 soap_instantiate__xenc__ReferenceList(struct soap*, int, const char*, const char*, size_t*); - -inline struct _xenc__ReferenceList * soap_new__xenc__ReferenceList(struct soap *soap, int n = -1) -{ - return soap_instantiate__xenc__ReferenceList(soap, n, NULL, NULL, NULL); -} - -inline struct _xenc__ReferenceList * soap_new_req__xenc__ReferenceList( - struct soap *soap, - int __size_ReferenceList, - struct __xenc__union_ReferenceList *__union_ReferenceList) -{ - struct _xenc__ReferenceList *_p = ::soap_new__xenc__ReferenceList(soap); - if (_p) - { ::soap_default__xenc__ReferenceList(soap, _p); - _p->__size_ReferenceList = __size_ReferenceList; - _p->__union_ReferenceList = __union_ReferenceList; - } - return _p; -} - -inline struct _xenc__ReferenceList * soap_new_set__xenc__ReferenceList( - struct soap *soap, - int __size_ReferenceList, - struct __xenc__union_ReferenceList *__union_ReferenceList) -{ - struct _xenc__ReferenceList *_p = ::soap_new__xenc__ReferenceList(soap); - if (_p) - { ::soap_default__xenc__ReferenceList(soap, _p); - _p->__size_ReferenceList = __size_ReferenceList; - _p->__union_ReferenceList = __union_ReferenceList; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__xenc__ReferenceList(struct soap*, const struct _xenc__ReferenceList *, const char*, const char*); - -inline int soap_write__xenc__ReferenceList(struct soap *soap, struct _xenc__ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__xenc__ReferenceList(soap, p), 0) || ::soap_put__xenc__ReferenceList(soap, p, "xenc:ReferenceList", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__xenc__ReferenceList(struct soap *soap, const char *URL, struct _xenc__ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__xenc__ReferenceList(soap, p), 0) || ::soap_put__xenc__ReferenceList(soap, p, "xenc:ReferenceList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__xenc__ReferenceList(struct soap *soap, const char *URL, struct _xenc__ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__xenc__ReferenceList(soap, p), 0) || ::soap_put__xenc__ReferenceList(soap, p, "xenc:ReferenceList", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__xenc__ReferenceList(struct soap *soap, const char *URL, struct _xenc__ReferenceList const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__xenc__ReferenceList(soap, p), 0) || ::soap_put__xenc__ReferenceList(soap, p, "xenc:ReferenceList", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _xenc__ReferenceList * SOAP_FMAC4 soap_get__xenc__ReferenceList(struct soap*, struct _xenc__ReferenceList *, const char*, const char*); - -inline int soap_read__xenc__ReferenceList(struct soap *soap, struct _xenc__ReferenceList *p) -{ - if (p) - { ::soap_default__xenc__ReferenceList(soap, p); - if (soap_begin_recv(soap) || ::soap_get__xenc__ReferenceList(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__xenc__ReferenceList(struct soap *soap, const char *URL, struct _xenc__ReferenceList *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__xenc__ReferenceList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__xenc__ReferenceList(struct soap *soap, struct _xenc__ReferenceList *p) -{ - if (::soap_read__xenc__ReferenceList(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__EncryptionPropertyType_DEFINED -#define SOAP_TYPE_xenc__EncryptionPropertyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptionPropertyType(struct soap*, struct xenc__EncryptionPropertyType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptionPropertyType(struct soap*, const struct xenc__EncryptionPropertyType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptionPropertyType(struct soap*, const char*, int, const struct xenc__EncryptionPropertyType *, const char*); -SOAP_FMAC3 struct xenc__EncryptionPropertyType * SOAP_FMAC4 soap_in_xenc__EncryptionPropertyType(struct soap*, const char*, struct xenc__EncryptionPropertyType *, const char*); -SOAP_FMAC1 struct xenc__EncryptionPropertyType * SOAP_FMAC2 soap_instantiate_xenc__EncryptionPropertyType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__EncryptionPropertyType * soap_new_xenc__EncryptionPropertyType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__EncryptionPropertyType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__EncryptionPropertyType * soap_new_req_xenc__EncryptionPropertyType( - struct soap *soap) -{ - struct xenc__EncryptionPropertyType *_p = ::soap_new_xenc__EncryptionPropertyType(soap); - if (_p) - { ::soap_default_xenc__EncryptionPropertyType(soap, _p); - } - return _p; -} - -inline struct xenc__EncryptionPropertyType * soap_new_set_xenc__EncryptionPropertyType( - struct soap *soap, - char *Target, - char *Id) -{ - struct xenc__EncryptionPropertyType *_p = ::soap_new_xenc__EncryptionPropertyType(soap); - if (_p) - { ::soap_default_xenc__EncryptionPropertyType(soap, _p); - _p->Target = Target; - _p->Id = Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptionPropertyType(struct soap*, const struct xenc__EncryptionPropertyType *, const char*, const char*); - -inline int soap_write_xenc__EncryptionPropertyType(struct soap *soap, struct xenc__EncryptionPropertyType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__EncryptionPropertyType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertyType(soap, p, "xenc:EncryptionPropertyType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__EncryptionPropertyType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertyType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionPropertyType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertyType(soap, p, "xenc:EncryptionPropertyType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__EncryptionPropertyType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertyType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionPropertyType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertyType(soap, p, "xenc:EncryptionPropertyType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__EncryptionPropertyType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertyType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionPropertyType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertyType(soap, p, "xenc:EncryptionPropertyType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__EncryptionPropertyType * SOAP_FMAC4 soap_get_xenc__EncryptionPropertyType(struct soap*, struct xenc__EncryptionPropertyType *, const char*, const char*); - -inline int soap_read_xenc__EncryptionPropertyType(struct soap *soap, struct xenc__EncryptionPropertyType *p) -{ - if (p) - { ::soap_default_xenc__EncryptionPropertyType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__EncryptionPropertyType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__EncryptionPropertyType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertyType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__EncryptionPropertyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__EncryptionPropertyType(struct soap *soap, struct xenc__EncryptionPropertyType *p) -{ - if (::soap_read_xenc__EncryptionPropertyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__EncryptionPropertiesType_DEFINED -#define SOAP_TYPE_xenc__EncryptionPropertiesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptionPropertiesType(struct soap*, struct xenc__EncryptionPropertiesType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptionPropertiesType(struct soap*, const struct xenc__EncryptionPropertiesType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptionPropertiesType(struct soap*, const char*, int, const struct xenc__EncryptionPropertiesType *, const char*); -SOAP_FMAC3 struct xenc__EncryptionPropertiesType * SOAP_FMAC4 soap_in_xenc__EncryptionPropertiesType(struct soap*, const char*, struct xenc__EncryptionPropertiesType *, const char*); -SOAP_FMAC1 struct xenc__EncryptionPropertiesType * SOAP_FMAC2 soap_instantiate_xenc__EncryptionPropertiesType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__EncryptionPropertiesType * soap_new_xenc__EncryptionPropertiesType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__EncryptionPropertiesType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__EncryptionPropertiesType * soap_new_req_xenc__EncryptionPropertiesType( - struct soap *soap, - int __sizeEncryptionProperty, - struct xenc__EncryptionPropertyType *EncryptionProperty) -{ - struct xenc__EncryptionPropertiesType *_p = ::soap_new_xenc__EncryptionPropertiesType(soap); - if (_p) - { ::soap_default_xenc__EncryptionPropertiesType(soap, _p); - _p->__sizeEncryptionProperty = __sizeEncryptionProperty; - _p->EncryptionProperty = EncryptionProperty; - } - return _p; -} - -inline struct xenc__EncryptionPropertiesType * soap_new_set_xenc__EncryptionPropertiesType( - struct soap *soap, - int __sizeEncryptionProperty, - struct xenc__EncryptionPropertyType *EncryptionProperty, - char *Id) -{ - struct xenc__EncryptionPropertiesType *_p = ::soap_new_xenc__EncryptionPropertiesType(soap); - if (_p) - { ::soap_default_xenc__EncryptionPropertiesType(soap, _p); - _p->__sizeEncryptionProperty = __sizeEncryptionProperty; - _p->EncryptionProperty = EncryptionProperty; - _p->Id = Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptionPropertiesType(struct soap*, const struct xenc__EncryptionPropertiesType *, const char*, const char*); - -inline int soap_write_xenc__EncryptionPropertiesType(struct soap *soap, struct xenc__EncryptionPropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__EncryptionPropertiesType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertiesType(soap, p, "xenc:EncryptionPropertiesType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__EncryptionPropertiesType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionPropertiesType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertiesType(soap, p, "xenc:EncryptionPropertiesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__EncryptionPropertiesType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionPropertiesType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertiesType(soap, p, "xenc:EncryptionPropertiesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__EncryptionPropertiesType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionPropertiesType(soap, p), 0) || ::soap_put_xenc__EncryptionPropertiesType(soap, p, "xenc:EncryptionPropertiesType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__EncryptionPropertiesType * SOAP_FMAC4 soap_get_xenc__EncryptionPropertiesType(struct soap*, struct xenc__EncryptionPropertiesType *, const char*, const char*); - -inline int soap_read_xenc__EncryptionPropertiesType(struct soap *soap, struct xenc__EncryptionPropertiesType *p) -{ - if (p) - { ::soap_default_xenc__EncryptionPropertiesType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__EncryptionPropertiesType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__EncryptionPropertiesType(struct soap *soap, const char *URL, struct xenc__EncryptionPropertiesType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__EncryptionPropertiesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__EncryptionPropertiesType(struct soap *soap, struct xenc__EncryptionPropertiesType *p) -{ - if (::soap_read_xenc__EncryptionPropertiesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__ReferenceType_DEFINED -#define SOAP_TYPE_xenc__ReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__ReferenceType(struct soap*, struct xenc__ReferenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__ReferenceType(struct soap*, const struct xenc__ReferenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__ReferenceType(struct soap*, const char*, int, const struct xenc__ReferenceType *, const char*); -SOAP_FMAC3 struct xenc__ReferenceType * SOAP_FMAC4 soap_in_xenc__ReferenceType(struct soap*, const char*, struct xenc__ReferenceType *, const char*); -SOAP_FMAC1 struct xenc__ReferenceType * SOAP_FMAC2 soap_instantiate_xenc__ReferenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__ReferenceType * soap_new_xenc__ReferenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__ReferenceType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__ReferenceType * soap_new_req_xenc__ReferenceType( - struct soap *soap, - char *URI) -{ - struct xenc__ReferenceType *_p = ::soap_new_xenc__ReferenceType(soap); - if (_p) - { ::soap_default_xenc__ReferenceType(soap, _p); - _p->URI = URI; - } - return _p; -} - -inline struct xenc__ReferenceType * soap_new_set_xenc__ReferenceType( - struct soap *soap, - char *URI) -{ - struct xenc__ReferenceType *_p = ::soap_new_xenc__ReferenceType(soap); - if (_p) - { ::soap_default_xenc__ReferenceType(soap, _p); - _p->URI = URI; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__ReferenceType(struct soap*, const struct xenc__ReferenceType *, const char*, const char*); - -inline int soap_write_xenc__ReferenceType(struct soap *soap, struct xenc__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__ReferenceType(soap, p), 0) || ::soap_put_xenc__ReferenceType(soap, p, "xenc:ReferenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__ReferenceType(struct soap *soap, const char *URL, struct xenc__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__ReferenceType(soap, p), 0) || ::soap_put_xenc__ReferenceType(soap, p, "xenc:ReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__ReferenceType(struct soap *soap, const char *URL, struct xenc__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__ReferenceType(soap, p), 0) || ::soap_put_xenc__ReferenceType(soap, p, "xenc:ReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__ReferenceType(struct soap *soap, const char *URL, struct xenc__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__ReferenceType(soap, p), 0) || ::soap_put_xenc__ReferenceType(soap, p, "xenc:ReferenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__ReferenceType * SOAP_FMAC4 soap_get_xenc__ReferenceType(struct soap*, struct xenc__ReferenceType *, const char*, const char*); - -inline int soap_read_xenc__ReferenceType(struct soap *soap, struct xenc__ReferenceType *p) -{ - if (p) - { ::soap_default_xenc__ReferenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__ReferenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__ReferenceType(struct soap *soap, const char *URL, struct xenc__ReferenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__ReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__ReferenceType(struct soap *soap, struct xenc__ReferenceType *p) -{ - if (::soap_read_xenc__ReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__AgreementMethodType_DEFINED -#define SOAP_TYPE_xenc__AgreementMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__AgreementMethodType(struct soap*, struct xenc__AgreementMethodType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__AgreementMethodType(struct soap*, const struct xenc__AgreementMethodType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__AgreementMethodType(struct soap*, const char*, int, const struct xenc__AgreementMethodType *, const char*); -SOAP_FMAC3 struct xenc__AgreementMethodType * SOAP_FMAC4 soap_in_xenc__AgreementMethodType(struct soap*, const char*, struct xenc__AgreementMethodType *, const char*); -SOAP_FMAC1 struct xenc__AgreementMethodType * SOAP_FMAC2 soap_instantiate_xenc__AgreementMethodType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__AgreementMethodType * soap_new_xenc__AgreementMethodType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__AgreementMethodType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__AgreementMethodType * soap_new_req_xenc__AgreementMethodType( - struct soap *soap, - char *Algorithm) -{ - struct xenc__AgreementMethodType *_p = ::soap_new_xenc__AgreementMethodType(soap); - if (_p) - { ::soap_default_xenc__AgreementMethodType(soap, _p); - _p->Algorithm = Algorithm; - } - return _p; -} - -inline struct xenc__AgreementMethodType * soap_new_set_xenc__AgreementMethodType( - struct soap *soap, - char *KA_Nonce, - struct ds__KeyInfoType *OriginatorKeyInfo, - struct ds__KeyInfoType *RecipientKeyInfo, - char *Algorithm, - char *__mixed) -{ - struct xenc__AgreementMethodType *_p = ::soap_new_xenc__AgreementMethodType(soap); - if (_p) - { ::soap_default_xenc__AgreementMethodType(soap, _p); - _p->KA_Nonce = KA_Nonce; - _p->OriginatorKeyInfo = OriginatorKeyInfo; - _p->RecipientKeyInfo = RecipientKeyInfo; - _p->Algorithm = Algorithm; - _p->__mixed = __mixed; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__AgreementMethodType(struct soap*, const struct xenc__AgreementMethodType *, const char*, const char*); - -inline int soap_write_xenc__AgreementMethodType(struct soap *soap, struct xenc__AgreementMethodType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__AgreementMethodType(soap, p), 0) || ::soap_put_xenc__AgreementMethodType(soap, p, "xenc:AgreementMethodType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__AgreementMethodType(struct soap *soap, const char *URL, struct xenc__AgreementMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__AgreementMethodType(soap, p), 0) || ::soap_put_xenc__AgreementMethodType(soap, p, "xenc:AgreementMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__AgreementMethodType(struct soap *soap, const char *URL, struct xenc__AgreementMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__AgreementMethodType(soap, p), 0) || ::soap_put_xenc__AgreementMethodType(soap, p, "xenc:AgreementMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__AgreementMethodType(struct soap *soap, const char *URL, struct xenc__AgreementMethodType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__AgreementMethodType(soap, p), 0) || ::soap_put_xenc__AgreementMethodType(soap, p, "xenc:AgreementMethodType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__AgreementMethodType * SOAP_FMAC4 soap_get_xenc__AgreementMethodType(struct soap*, struct xenc__AgreementMethodType *, const char*, const char*); - -inline int soap_read_xenc__AgreementMethodType(struct soap *soap, struct xenc__AgreementMethodType *p) -{ - if (p) - { ::soap_default_xenc__AgreementMethodType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__AgreementMethodType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__AgreementMethodType(struct soap *soap, const char *URL, struct xenc__AgreementMethodType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__AgreementMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__AgreementMethodType(struct soap *soap, struct xenc__AgreementMethodType *p) -{ - if (::soap_read_xenc__AgreementMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__EncryptedDataType_DEFINED -#define SOAP_TYPE_xenc__EncryptedDataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptedDataType(struct soap*, struct xenc__EncryptedDataType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptedDataType(struct soap*, const struct xenc__EncryptedDataType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptedDataType(struct soap*, const char*, int, const struct xenc__EncryptedDataType *, const char*); -SOAP_FMAC3 struct xenc__EncryptedDataType * SOAP_FMAC4 soap_in_xenc__EncryptedDataType(struct soap*, const char*, struct xenc__EncryptedDataType *, const char*); -SOAP_FMAC1 struct xenc__EncryptedDataType * SOAP_FMAC2 soap_instantiate_xenc__EncryptedDataType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__EncryptedDataType * soap_new_xenc__EncryptedDataType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__EncryptedDataType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__EncryptedDataType * soap_new_req_xenc__EncryptedDataType( - struct soap *soap, - struct xenc__CipherDataType *CipherData) -{ - struct xenc__EncryptedDataType *_p = ::soap_new_xenc__EncryptedDataType(soap); - if (_p) - { ::soap_default_xenc__EncryptedDataType(soap, _p); - _p->CipherData = CipherData; - } - return _p; -} - -inline struct xenc__EncryptedDataType * soap_new_set_xenc__EncryptedDataType( - struct soap *soap, - struct xenc__EncryptionMethodType *EncryptionMethod, - struct ds__KeyInfoType *ds__KeyInfo, - struct xenc__CipherDataType *CipherData, - struct xenc__EncryptionPropertiesType *EncryptionProperties, - char *Id, - char *Type, - char *MimeType, - char *Encoding) -{ - struct xenc__EncryptedDataType *_p = ::soap_new_xenc__EncryptedDataType(soap); - if (_p) - { ::soap_default_xenc__EncryptedDataType(soap, _p); - _p->EncryptionMethod = EncryptionMethod; - _p->ds__KeyInfo = ds__KeyInfo; - _p->CipherData = CipherData; - _p->EncryptionProperties = EncryptionProperties; - _p->Id = Id; - _p->Type = Type; - _p->MimeType = MimeType; - _p->Encoding = Encoding; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptedDataType(struct soap*, const struct xenc__EncryptedDataType *, const char*, const char*); - -inline int soap_write_xenc__EncryptedDataType(struct soap *soap, struct xenc__EncryptedDataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__EncryptedDataType(soap, p), 0) || ::soap_put_xenc__EncryptedDataType(soap, p, "xenc:EncryptedDataType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__EncryptedDataType(struct soap *soap, const char *URL, struct xenc__EncryptedDataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedDataType(soap, p), 0) || ::soap_put_xenc__EncryptedDataType(soap, p, "xenc:EncryptedDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__EncryptedDataType(struct soap *soap, const char *URL, struct xenc__EncryptedDataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedDataType(soap, p), 0) || ::soap_put_xenc__EncryptedDataType(soap, p, "xenc:EncryptedDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__EncryptedDataType(struct soap *soap, const char *URL, struct xenc__EncryptedDataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedDataType(soap, p), 0) || ::soap_put_xenc__EncryptedDataType(soap, p, "xenc:EncryptedDataType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__EncryptedDataType * SOAP_FMAC4 soap_get_xenc__EncryptedDataType(struct soap*, struct xenc__EncryptedDataType *, const char*, const char*); - -inline int soap_read_xenc__EncryptedDataType(struct soap *soap, struct xenc__EncryptedDataType *p) -{ - if (p) - { ::soap_default_xenc__EncryptedDataType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__EncryptedDataType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__EncryptedDataType(struct soap *soap, const char *URL, struct xenc__EncryptedDataType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__EncryptedDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__EncryptedDataType(struct soap *soap, struct xenc__EncryptedDataType *p) -{ - if (::soap_read_xenc__EncryptedDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__TransformsType_DEFINED -#define SOAP_TYPE_xenc__TransformsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__TransformsType(struct soap*, struct xenc__TransformsType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__TransformsType(struct soap*, const struct xenc__TransformsType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__TransformsType(struct soap*, const char*, int, const struct xenc__TransformsType *, const char*); -SOAP_FMAC3 struct xenc__TransformsType * SOAP_FMAC4 soap_in_xenc__TransformsType(struct soap*, const char*, struct xenc__TransformsType *, const char*); -SOAP_FMAC1 struct xenc__TransformsType * SOAP_FMAC2 soap_instantiate_xenc__TransformsType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__TransformsType * soap_new_xenc__TransformsType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__TransformsType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__TransformsType * soap_new_req_xenc__TransformsType( - struct soap *soap, - const struct ds__TransformType& ds__Transform) -{ - struct xenc__TransformsType *_p = ::soap_new_xenc__TransformsType(soap); - if (_p) - { ::soap_default_xenc__TransformsType(soap, _p); - _p->ds__Transform = ds__Transform; - } - return _p; -} - -inline struct xenc__TransformsType * soap_new_set_xenc__TransformsType( - struct soap *soap, - const struct ds__TransformType& ds__Transform) -{ - struct xenc__TransformsType *_p = ::soap_new_xenc__TransformsType(soap); - if (_p) - { ::soap_default_xenc__TransformsType(soap, _p); - _p->ds__Transform = ds__Transform; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__TransformsType(struct soap*, const struct xenc__TransformsType *, const char*, const char*); - -inline int soap_write_xenc__TransformsType(struct soap *soap, struct xenc__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__TransformsType(soap, p), 0) || ::soap_put_xenc__TransformsType(soap, p, "xenc:TransformsType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__TransformsType(struct soap *soap, const char *URL, struct xenc__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__TransformsType(soap, p), 0) || ::soap_put_xenc__TransformsType(soap, p, "xenc:TransformsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__TransformsType(struct soap *soap, const char *URL, struct xenc__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__TransformsType(soap, p), 0) || ::soap_put_xenc__TransformsType(soap, p, "xenc:TransformsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__TransformsType(struct soap *soap, const char *URL, struct xenc__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__TransformsType(soap, p), 0) || ::soap_put_xenc__TransformsType(soap, p, "xenc:TransformsType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__TransformsType * SOAP_FMAC4 soap_get_xenc__TransformsType(struct soap*, struct xenc__TransformsType *, const char*, const char*); - -inline int soap_read_xenc__TransformsType(struct soap *soap, struct xenc__TransformsType *p) -{ - if (p) - { ::soap_default_xenc__TransformsType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__TransformsType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__TransformsType(struct soap *soap, const char *URL, struct xenc__TransformsType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__TransformsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__TransformsType(struct soap *soap, struct xenc__TransformsType *p) -{ - if (::soap_read_xenc__TransformsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__CipherReferenceType_DEFINED -#define SOAP_TYPE_xenc__CipherReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__CipherReferenceType(struct soap*, struct xenc__CipherReferenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__CipherReferenceType(struct soap*, const struct xenc__CipherReferenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__CipherReferenceType(struct soap*, const char*, int, const struct xenc__CipherReferenceType *, const char*); -SOAP_FMAC3 struct xenc__CipherReferenceType * SOAP_FMAC4 soap_in_xenc__CipherReferenceType(struct soap*, const char*, struct xenc__CipherReferenceType *, const char*); -SOAP_FMAC1 struct xenc__CipherReferenceType * SOAP_FMAC2 soap_instantiate_xenc__CipherReferenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__CipherReferenceType * soap_new_xenc__CipherReferenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__CipherReferenceType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__CipherReferenceType * soap_new_req_xenc__CipherReferenceType( - struct soap *soap, - char *URI) -{ - struct xenc__CipherReferenceType *_p = ::soap_new_xenc__CipherReferenceType(soap); - if (_p) - { ::soap_default_xenc__CipherReferenceType(soap, _p); - _p->URI = URI; - } - return _p; -} - -inline struct xenc__CipherReferenceType * soap_new_set_xenc__CipherReferenceType( - struct soap *soap, - struct xenc__TransformsType *Transforms, - char *URI) -{ - struct xenc__CipherReferenceType *_p = ::soap_new_xenc__CipherReferenceType(soap); - if (_p) - { ::soap_default_xenc__CipherReferenceType(soap, _p); - _p->Transforms = Transforms; - _p->URI = URI; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__CipherReferenceType(struct soap*, const struct xenc__CipherReferenceType *, const char*, const char*); - -inline int soap_write_xenc__CipherReferenceType(struct soap *soap, struct xenc__CipherReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__CipherReferenceType(soap, p), 0) || ::soap_put_xenc__CipherReferenceType(soap, p, "xenc:CipherReferenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__CipherReferenceType(struct soap *soap, const char *URL, struct xenc__CipherReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__CipherReferenceType(soap, p), 0) || ::soap_put_xenc__CipherReferenceType(soap, p, "xenc:CipherReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__CipherReferenceType(struct soap *soap, const char *URL, struct xenc__CipherReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__CipherReferenceType(soap, p), 0) || ::soap_put_xenc__CipherReferenceType(soap, p, "xenc:CipherReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__CipherReferenceType(struct soap *soap, const char *URL, struct xenc__CipherReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__CipherReferenceType(soap, p), 0) || ::soap_put_xenc__CipherReferenceType(soap, p, "xenc:CipherReferenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__CipherReferenceType * SOAP_FMAC4 soap_get_xenc__CipherReferenceType(struct soap*, struct xenc__CipherReferenceType *, const char*, const char*); - -inline int soap_read_xenc__CipherReferenceType(struct soap *soap, struct xenc__CipherReferenceType *p) -{ - if (p) - { ::soap_default_xenc__CipherReferenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__CipherReferenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__CipherReferenceType(struct soap *soap, const char *URL, struct xenc__CipherReferenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__CipherReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__CipherReferenceType(struct soap *soap, struct xenc__CipherReferenceType *p) -{ - if (::soap_read_xenc__CipherReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__CipherDataType_DEFINED -#define SOAP_TYPE_xenc__CipherDataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__CipherDataType(struct soap*, struct xenc__CipherDataType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__CipherDataType(struct soap*, const struct xenc__CipherDataType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__CipherDataType(struct soap*, const char*, int, const struct xenc__CipherDataType *, const char*); -SOAP_FMAC3 struct xenc__CipherDataType * SOAP_FMAC4 soap_in_xenc__CipherDataType(struct soap*, const char*, struct xenc__CipherDataType *, const char*); -SOAP_FMAC1 struct xenc__CipherDataType * SOAP_FMAC2 soap_instantiate_xenc__CipherDataType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__CipherDataType * soap_new_xenc__CipherDataType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__CipherDataType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__CipherDataType * soap_new_req_xenc__CipherDataType( - struct soap *soap) -{ - struct xenc__CipherDataType *_p = ::soap_new_xenc__CipherDataType(soap); - if (_p) - { ::soap_default_xenc__CipherDataType(soap, _p); - } - return _p; -} - -inline struct xenc__CipherDataType * soap_new_set_xenc__CipherDataType( - struct soap *soap, - char *CipherValue, - struct xenc__CipherReferenceType *CipherReference) -{ - struct xenc__CipherDataType *_p = ::soap_new_xenc__CipherDataType(soap); - if (_p) - { ::soap_default_xenc__CipherDataType(soap, _p); - _p->CipherValue = CipherValue; - _p->CipherReference = CipherReference; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__CipherDataType(struct soap*, const struct xenc__CipherDataType *, const char*, const char*); - -inline int soap_write_xenc__CipherDataType(struct soap *soap, struct xenc__CipherDataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__CipherDataType(soap, p), 0) || ::soap_put_xenc__CipherDataType(soap, p, "xenc:CipherDataType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__CipherDataType(struct soap *soap, const char *URL, struct xenc__CipherDataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__CipherDataType(soap, p), 0) || ::soap_put_xenc__CipherDataType(soap, p, "xenc:CipherDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__CipherDataType(struct soap *soap, const char *URL, struct xenc__CipherDataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__CipherDataType(soap, p), 0) || ::soap_put_xenc__CipherDataType(soap, p, "xenc:CipherDataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__CipherDataType(struct soap *soap, const char *URL, struct xenc__CipherDataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__CipherDataType(soap, p), 0) || ::soap_put_xenc__CipherDataType(soap, p, "xenc:CipherDataType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__CipherDataType * SOAP_FMAC4 soap_get_xenc__CipherDataType(struct soap*, struct xenc__CipherDataType *, const char*, const char*); - -inline int soap_read_xenc__CipherDataType(struct soap *soap, struct xenc__CipherDataType *p) -{ - if (p) - { ::soap_default_xenc__CipherDataType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__CipherDataType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__CipherDataType(struct soap *soap, const char *URL, struct xenc__CipherDataType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__CipherDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__CipherDataType(struct soap *soap, struct xenc__CipherDataType *p) -{ - if (::soap_read_xenc__CipherDataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__EncryptionMethodType_DEFINED -#define SOAP_TYPE_xenc__EncryptionMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptionMethodType(struct soap*, struct xenc__EncryptionMethodType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptionMethodType(struct soap*, const struct xenc__EncryptionMethodType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptionMethodType(struct soap*, const char*, int, const struct xenc__EncryptionMethodType *, const char*); -SOAP_FMAC3 struct xenc__EncryptionMethodType * SOAP_FMAC4 soap_in_xenc__EncryptionMethodType(struct soap*, const char*, struct xenc__EncryptionMethodType *, const char*); -SOAP_FMAC1 struct xenc__EncryptionMethodType * SOAP_FMAC2 soap_instantiate_xenc__EncryptionMethodType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__EncryptionMethodType * soap_new_xenc__EncryptionMethodType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__EncryptionMethodType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__EncryptionMethodType * soap_new_req_xenc__EncryptionMethodType( - struct soap *soap, - char *Algorithm) -{ - struct xenc__EncryptionMethodType *_p = ::soap_new_xenc__EncryptionMethodType(soap); - if (_p) - { ::soap_default_xenc__EncryptionMethodType(soap, _p); - _p->Algorithm = Algorithm; - } - return _p; -} - -inline struct xenc__EncryptionMethodType * soap_new_set_xenc__EncryptionMethodType( - struct soap *soap, - int *KeySize, - char *OAEPparams, - char *Algorithm, - struct ds__DigestMethodType *ds__DigestMethod, - char *__mixed) -{ - struct xenc__EncryptionMethodType *_p = ::soap_new_xenc__EncryptionMethodType(soap); - if (_p) - { ::soap_default_xenc__EncryptionMethodType(soap, _p); - _p->KeySize = KeySize; - _p->OAEPparams = OAEPparams; - _p->Algorithm = Algorithm; - _p->ds__DigestMethod = ds__DigestMethod; - _p->__mixed = __mixed; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptionMethodType(struct soap*, const struct xenc__EncryptionMethodType *, const char*, const char*); - -inline int soap_write_xenc__EncryptionMethodType(struct soap *soap, struct xenc__EncryptionMethodType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__EncryptionMethodType(soap, p), 0) || ::soap_put_xenc__EncryptionMethodType(soap, p, "xenc:EncryptionMethodType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__EncryptionMethodType(struct soap *soap, const char *URL, struct xenc__EncryptionMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionMethodType(soap, p), 0) || ::soap_put_xenc__EncryptionMethodType(soap, p, "xenc:EncryptionMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__EncryptionMethodType(struct soap *soap, const char *URL, struct xenc__EncryptionMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionMethodType(soap, p), 0) || ::soap_put_xenc__EncryptionMethodType(soap, p, "xenc:EncryptionMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__EncryptionMethodType(struct soap *soap, const char *URL, struct xenc__EncryptionMethodType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptionMethodType(soap, p), 0) || ::soap_put_xenc__EncryptionMethodType(soap, p, "xenc:EncryptionMethodType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__EncryptionMethodType * SOAP_FMAC4 soap_get_xenc__EncryptionMethodType(struct soap*, struct xenc__EncryptionMethodType *, const char*, const char*); - -inline int soap_read_xenc__EncryptionMethodType(struct soap *soap, struct xenc__EncryptionMethodType *p) -{ - if (p) - { ::soap_default_xenc__EncryptionMethodType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__EncryptionMethodType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__EncryptionMethodType(struct soap *soap, const char *URL, struct xenc__EncryptionMethodType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__EncryptionMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__EncryptionMethodType(struct soap *soap, struct xenc__EncryptionMethodType *p) -{ - if (::soap_read_xenc__EncryptionMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__EncryptedType_DEFINED -#define SOAP_TYPE_xenc__EncryptedType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptedType(struct soap*, struct xenc__EncryptedType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptedType(struct soap*, const struct xenc__EncryptedType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptedType(struct soap*, const char*, int, const struct xenc__EncryptedType *, const char*); -SOAP_FMAC3 struct xenc__EncryptedType * SOAP_FMAC4 soap_in_xenc__EncryptedType(struct soap*, const char*, struct xenc__EncryptedType *, const char*); -SOAP_FMAC1 struct xenc__EncryptedType * SOAP_FMAC2 soap_instantiate_xenc__EncryptedType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__EncryptedType * soap_new_xenc__EncryptedType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__EncryptedType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__EncryptedType * soap_new_req_xenc__EncryptedType( - struct soap *soap, - struct xenc__CipherDataType *CipherData) -{ - struct xenc__EncryptedType *_p = ::soap_new_xenc__EncryptedType(soap); - if (_p) - { ::soap_default_xenc__EncryptedType(soap, _p); - _p->CipherData = CipherData; - } - return _p; -} - -inline struct xenc__EncryptedType * soap_new_set_xenc__EncryptedType( - struct soap *soap, - struct xenc__EncryptionMethodType *EncryptionMethod, - struct ds__KeyInfoType *ds__KeyInfo, - struct xenc__CipherDataType *CipherData, - struct xenc__EncryptionPropertiesType *EncryptionProperties, - char *Id, - char *Type, - char *MimeType, - char *Encoding) -{ - struct xenc__EncryptedType *_p = ::soap_new_xenc__EncryptedType(soap); - if (_p) - { ::soap_default_xenc__EncryptedType(soap, _p); - _p->EncryptionMethod = EncryptionMethod; - _p->ds__KeyInfo = ds__KeyInfo; - _p->CipherData = CipherData; - _p->EncryptionProperties = EncryptionProperties; - _p->Id = Id; - _p->Type = Type; - _p->MimeType = MimeType; - _p->Encoding = Encoding; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptedType(struct soap*, const struct xenc__EncryptedType *, const char*, const char*); - -inline int soap_write_xenc__EncryptedType(struct soap *soap, struct xenc__EncryptedType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__EncryptedType(soap, p), 0) || ::soap_put_xenc__EncryptedType(soap, p, "xenc:EncryptedType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__EncryptedType(struct soap *soap, const char *URL, struct xenc__EncryptedType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedType(soap, p), 0) || ::soap_put_xenc__EncryptedType(soap, p, "xenc:EncryptedType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__EncryptedType(struct soap *soap, const char *URL, struct xenc__EncryptedType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedType(soap, p), 0) || ::soap_put_xenc__EncryptedType(soap, p, "xenc:EncryptedType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__EncryptedType(struct soap *soap, const char *URL, struct xenc__EncryptedType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedType(soap, p), 0) || ::soap_put_xenc__EncryptedType(soap, p, "xenc:EncryptedType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__EncryptedType * SOAP_FMAC4 soap_get_xenc__EncryptedType(struct soap*, struct xenc__EncryptedType *, const char*, const char*); - -inline int soap_read_xenc__EncryptedType(struct soap *soap, struct xenc__EncryptedType *p) -{ - if (p) - { ::soap_default_xenc__EncryptedType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__EncryptedType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__EncryptedType(struct soap *soap, const char *URL, struct xenc__EncryptedType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__EncryptedType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__EncryptedType(struct soap *soap, struct xenc__EncryptedType *p) -{ - if (::soap_read_xenc__EncryptedType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__RSAKeyValueType_DEFINED -#define SOAP_TYPE_ds__RSAKeyValueType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__RSAKeyValueType(struct soap*, struct ds__RSAKeyValueType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__RSAKeyValueType(struct soap*, const struct ds__RSAKeyValueType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__RSAKeyValueType(struct soap*, const char*, int, const struct ds__RSAKeyValueType *, const char*); -SOAP_FMAC3 struct ds__RSAKeyValueType * SOAP_FMAC4 soap_in_ds__RSAKeyValueType(struct soap*, const char*, struct ds__RSAKeyValueType *, const char*); -SOAP_FMAC1 struct ds__RSAKeyValueType * SOAP_FMAC2 soap_instantiate_ds__RSAKeyValueType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__RSAKeyValueType * soap_new_ds__RSAKeyValueType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__RSAKeyValueType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__RSAKeyValueType * soap_new_req_ds__RSAKeyValueType( - struct soap *soap, - char *Modulus, - char *Exponent) -{ - struct ds__RSAKeyValueType *_p = ::soap_new_ds__RSAKeyValueType(soap); - if (_p) - { ::soap_default_ds__RSAKeyValueType(soap, _p); - _p->Modulus = Modulus; - _p->Exponent = Exponent; - } - return _p; -} - -inline struct ds__RSAKeyValueType * soap_new_set_ds__RSAKeyValueType( - struct soap *soap, - char *Modulus, - char *Exponent) -{ - struct ds__RSAKeyValueType *_p = ::soap_new_ds__RSAKeyValueType(soap); - if (_p) - { ::soap_default_ds__RSAKeyValueType(soap, _p); - _p->Modulus = Modulus; - _p->Exponent = Exponent; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__RSAKeyValueType(struct soap*, const struct ds__RSAKeyValueType *, const char*, const char*); - -inline int soap_write_ds__RSAKeyValueType(struct soap *soap, struct ds__RSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__RSAKeyValueType(soap, p), 0) || ::soap_put_ds__RSAKeyValueType(soap, p, "ds:RSAKeyValueType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__RSAKeyValueType(struct soap *soap, const char *URL, struct ds__RSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__RSAKeyValueType(soap, p), 0) || ::soap_put_ds__RSAKeyValueType(soap, p, "ds:RSAKeyValueType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__RSAKeyValueType(struct soap *soap, const char *URL, struct ds__RSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__RSAKeyValueType(soap, p), 0) || ::soap_put_ds__RSAKeyValueType(soap, p, "ds:RSAKeyValueType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__RSAKeyValueType(struct soap *soap, const char *URL, struct ds__RSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__RSAKeyValueType(soap, p), 0) || ::soap_put_ds__RSAKeyValueType(soap, p, "ds:RSAKeyValueType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__RSAKeyValueType * SOAP_FMAC4 soap_get_ds__RSAKeyValueType(struct soap*, struct ds__RSAKeyValueType *, const char*, const char*); - -inline int soap_read_ds__RSAKeyValueType(struct soap *soap, struct ds__RSAKeyValueType *p) -{ - if (p) - { ::soap_default_ds__RSAKeyValueType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__RSAKeyValueType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__RSAKeyValueType(struct soap *soap, const char *URL, struct ds__RSAKeyValueType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__RSAKeyValueType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__RSAKeyValueType(struct soap *soap, struct ds__RSAKeyValueType *p) -{ - if (::soap_read_ds__RSAKeyValueType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__DSAKeyValueType_DEFINED -#define SOAP_TYPE_ds__DSAKeyValueType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__DSAKeyValueType(struct soap*, struct ds__DSAKeyValueType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__DSAKeyValueType(struct soap*, const struct ds__DSAKeyValueType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__DSAKeyValueType(struct soap*, const char*, int, const struct ds__DSAKeyValueType *, const char*); -SOAP_FMAC3 struct ds__DSAKeyValueType * SOAP_FMAC4 soap_in_ds__DSAKeyValueType(struct soap*, const char*, struct ds__DSAKeyValueType *, const char*); -SOAP_FMAC1 struct ds__DSAKeyValueType * SOAP_FMAC2 soap_instantiate_ds__DSAKeyValueType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__DSAKeyValueType * soap_new_ds__DSAKeyValueType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__DSAKeyValueType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__DSAKeyValueType * soap_new_req_ds__DSAKeyValueType( - struct soap *soap, - char *Y, - char *P, - char *Q, - char *Seed, - char *PgenCounter) -{ - struct ds__DSAKeyValueType *_p = ::soap_new_ds__DSAKeyValueType(soap); - if (_p) - { ::soap_default_ds__DSAKeyValueType(soap, _p); - _p->Y = Y; - _p->P = P; - _p->Q = Q; - _p->Seed = Seed; - _p->PgenCounter = PgenCounter; - } - return _p; -} - -inline struct ds__DSAKeyValueType * soap_new_set_ds__DSAKeyValueType( - struct soap *soap, - char *G, - char *Y, - char *J, - char *P, - char *Q, - char *Seed, - char *PgenCounter) -{ - struct ds__DSAKeyValueType *_p = ::soap_new_ds__DSAKeyValueType(soap); - if (_p) - { ::soap_default_ds__DSAKeyValueType(soap, _p); - _p->G = G; - _p->Y = Y; - _p->J = J; - _p->P = P; - _p->Q = Q; - _p->Seed = Seed; - _p->PgenCounter = PgenCounter; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__DSAKeyValueType(struct soap*, const struct ds__DSAKeyValueType *, const char*, const char*); - -inline int soap_write_ds__DSAKeyValueType(struct soap *soap, struct ds__DSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__DSAKeyValueType(soap, p), 0) || ::soap_put_ds__DSAKeyValueType(soap, p, "ds:DSAKeyValueType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__DSAKeyValueType(struct soap *soap, const char *URL, struct ds__DSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__DSAKeyValueType(soap, p), 0) || ::soap_put_ds__DSAKeyValueType(soap, p, "ds:DSAKeyValueType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__DSAKeyValueType(struct soap *soap, const char *URL, struct ds__DSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__DSAKeyValueType(soap, p), 0) || ::soap_put_ds__DSAKeyValueType(soap, p, "ds:DSAKeyValueType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__DSAKeyValueType(struct soap *soap, const char *URL, struct ds__DSAKeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__DSAKeyValueType(soap, p), 0) || ::soap_put_ds__DSAKeyValueType(soap, p, "ds:DSAKeyValueType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__DSAKeyValueType * SOAP_FMAC4 soap_get_ds__DSAKeyValueType(struct soap*, struct ds__DSAKeyValueType *, const char*, const char*); - -inline int soap_read_ds__DSAKeyValueType(struct soap *soap, struct ds__DSAKeyValueType *p) -{ - if (p) - { ::soap_default_ds__DSAKeyValueType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__DSAKeyValueType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__DSAKeyValueType(struct soap *soap, const char *URL, struct ds__DSAKeyValueType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__DSAKeyValueType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__DSAKeyValueType(struct soap *soap, struct ds__DSAKeyValueType *p) -{ - if (::soap_read_ds__DSAKeyValueType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__X509IssuerSerialType_DEFINED -#define SOAP_TYPE_ds__X509IssuerSerialType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__X509IssuerSerialType(struct soap*, struct ds__X509IssuerSerialType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__X509IssuerSerialType(struct soap*, const struct ds__X509IssuerSerialType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__X509IssuerSerialType(struct soap*, const char*, int, const struct ds__X509IssuerSerialType *, const char*); -SOAP_FMAC3 struct ds__X509IssuerSerialType * SOAP_FMAC4 soap_in_ds__X509IssuerSerialType(struct soap*, const char*, struct ds__X509IssuerSerialType *, const char*); -SOAP_FMAC1 struct ds__X509IssuerSerialType * SOAP_FMAC2 soap_instantiate_ds__X509IssuerSerialType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__X509IssuerSerialType * soap_new_ds__X509IssuerSerialType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__X509IssuerSerialType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__X509IssuerSerialType * soap_new_req_ds__X509IssuerSerialType( - struct soap *soap, - char *X509IssuerName, - char *X509SerialNumber) -{ - struct ds__X509IssuerSerialType *_p = ::soap_new_ds__X509IssuerSerialType(soap); - if (_p) - { ::soap_default_ds__X509IssuerSerialType(soap, _p); - _p->X509IssuerName = X509IssuerName; - _p->X509SerialNumber = X509SerialNumber; - } - return _p; -} - -inline struct ds__X509IssuerSerialType * soap_new_set_ds__X509IssuerSerialType( - struct soap *soap, - char *X509IssuerName, - char *X509SerialNumber) -{ - struct ds__X509IssuerSerialType *_p = ::soap_new_ds__X509IssuerSerialType(soap); - if (_p) - { ::soap_default_ds__X509IssuerSerialType(soap, _p); - _p->X509IssuerName = X509IssuerName; - _p->X509SerialNumber = X509SerialNumber; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__X509IssuerSerialType(struct soap*, const struct ds__X509IssuerSerialType *, const char*, const char*); - -inline int soap_write_ds__X509IssuerSerialType(struct soap *soap, struct ds__X509IssuerSerialType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__X509IssuerSerialType(soap, p), 0) || ::soap_put_ds__X509IssuerSerialType(soap, p, "ds:X509IssuerSerialType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__X509IssuerSerialType(struct soap *soap, const char *URL, struct ds__X509IssuerSerialType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__X509IssuerSerialType(soap, p), 0) || ::soap_put_ds__X509IssuerSerialType(soap, p, "ds:X509IssuerSerialType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__X509IssuerSerialType(struct soap *soap, const char *URL, struct ds__X509IssuerSerialType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__X509IssuerSerialType(soap, p), 0) || ::soap_put_ds__X509IssuerSerialType(soap, p, "ds:X509IssuerSerialType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__X509IssuerSerialType(struct soap *soap, const char *URL, struct ds__X509IssuerSerialType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__X509IssuerSerialType(soap, p), 0) || ::soap_put_ds__X509IssuerSerialType(soap, p, "ds:X509IssuerSerialType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__X509IssuerSerialType * SOAP_FMAC4 soap_get_ds__X509IssuerSerialType(struct soap*, struct ds__X509IssuerSerialType *, const char*, const char*); - -inline int soap_read_ds__X509IssuerSerialType(struct soap *soap, struct ds__X509IssuerSerialType *p) -{ - if (p) - { ::soap_default_ds__X509IssuerSerialType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__X509IssuerSerialType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__X509IssuerSerialType(struct soap *soap, const char *URL, struct ds__X509IssuerSerialType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__X509IssuerSerialType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__X509IssuerSerialType(struct soap *soap, struct ds__X509IssuerSerialType *p) -{ - if (::soap_read_ds__X509IssuerSerialType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _ds__KeyInfo is a typedef synonym of ds__KeyInfoType */ - -#ifndef SOAP_TYPE__ds__KeyInfo_DEFINED -#define SOAP_TYPE__ds__KeyInfo_DEFINED - -#define soap_default__ds__KeyInfo soap_default_ds__KeyInfoType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__KeyInfoType(struct soap*, const struct ds__KeyInfoType *); - -#define soap_serialize__ds__KeyInfo soap_serialize_ds__KeyInfoType - - -#define soap__ds__KeyInfo2s soap_ds__KeyInfoType2s - - -#define soap_out__ds__KeyInfo soap_out_ds__KeyInfoType - - -#define soap_s2_ds__KeyInfo soap_s2ds__KeyInfoType - - -#define soap_in__ds__KeyInfo soap_in_ds__KeyInfoType - - -#define soap_instantiate__ds__KeyInfo soap_instantiate_ds__KeyInfoType - - -#define soap_new__ds__KeyInfo soap_new_ds__KeyInfoType - - -#define soap_new_req__ds__KeyInfo soap_new_req_ds__KeyInfoType - - -#define soap_new_set__ds__KeyInfo soap_new_set_ds__KeyInfoType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__ds__KeyInfo(struct soap*, const struct ds__KeyInfoType *, const char*, const char*); - -inline int soap_write__ds__KeyInfo(struct soap *soap, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__ds__KeyInfo(soap, p), 0) || ::soap_put__ds__KeyInfo(soap, p, "ds:KeyInfo", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__ds__KeyInfo(struct soap *soap, const char *URL, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__KeyInfo(soap, p), 0) || ::soap_put__ds__KeyInfo(soap, p, "ds:KeyInfo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__ds__KeyInfo(struct soap *soap, const char *URL, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__KeyInfo(soap, p), 0) || ::soap_put__ds__KeyInfo(soap, p, "ds:KeyInfo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__ds__KeyInfo(struct soap *soap, const char *URL, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__KeyInfo(soap, p), 0) || ::soap_put__ds__KeyInfo(soap, p, "ds:KeyInfo", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__ds__KeyInfo soap_get_ds__KeyInfoType - - -#define soap_read__ds__KeyInfo soap_read_ds__KeyInfoType - - -#define soap_GET__ds__KeyInfo soap_GET_ds__KeyInfoType - - -#define soap_POST_recv__ds__KeyInfo soap_POST_recv_ds__KeyInfoType - -#endif - -#ifndef SOAP_TYPE_ds__RetrievalMethodType_DEFINED -#define SOAP_TYPE_ds__RetrievalMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__RetrievalMethodType(struct soap*, struct ds__RetrievalMethodType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__RetrievalMethodType(struct soap*, const struct ds__RetrievalMethodType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__RetrievalMethodType(struct soap*, const char*, int, const struct ds__RetrievalMethodType *, const char*); -SOAP_FMAC3 struct ds__RetrievalMethodType * SOAP_FMAC4 soap_in_ds__RetrievalMethodType(struct soap*, const char*, struct ds__RetrievalMethodType *, const char*); -SOAP_FMAC1 struct ds__RetrievalMethodType * SOAP_FMAC2 soap_instantiate_ds__RetrievalMethodType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__RetrievalMethodType * soap_new_ds__RetrievalMethodType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__RetrievalMethodType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__RetrievalMethodType * soap_new_req_ds__RetrievalMethodType( - struct soap *soap) -{ - struct ds__RetrievalMethodType *_p = ::soap_new_ds__RetrievalMethodType(soap); - if (_p) - { ::soap_default_ds__RetrievalMethodType(soap, _p); - } - return _p; -} - -inline struct ds__RetrievalMethodType * soap_new_set_ds__RetrievalMethodType( - struct soap *soap, - struct ds__TransformsType *Transforms, - char *URI, - char *Type) -{ - struct ds__RetrievalMethodType *_p = ::soap_new_ds__RetrievalMethodType(soap); - if (_p) - { ::soap_default_ds__RetrievalMethodType(soap, _p); - _p->Transforms = Transforms; - _p->URI = URI; - _p->Type = Type; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__RetrievalMethodType(struct soap*, const struct ds__RetrievalMethodType *, const char*, const char*); - -inline int soap_write_ds__RetrievalMethodType(struct soap *soap, struct ds__RetrievalMethodType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__RetrievalMethodType(soap, p), 0) || ::soap_put_ds__RetrievalMethodType(soap, p, "ds:RetrievalMethodType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__RetrievalMethodType(struct soap *soap, const char *URL, struct ds__RetrievalMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__RetrievalMethodType(soap, p), 0) || ::soap_put_ds__RetrievalMethodType(soap, p, "ds:RetrievalMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__RetrievalMethodType(struct soap *soap, const char *URL, struct ds__RetrievalMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__RetrievalMethodType(soap, p), 0) || ::soap_put_ds__RetrievalMethodType(soap, p, "ds:RetrievalMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__RetrievalMethodType(struct soap *soap, const char *URL, struct ds__RetrievalMethodType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__RetrievalMethodType(soap, p), 0) || ::soap_put_ds__RetrievalMethodType(soap, p, "ds:RetrievalMethodType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__RetrievalMethodType * SOAP_FMAC4 soap_get_ds__RetrievalMethodType(struct soap*, struct ds__RetrievalMethodType *, const char*, const char*); - -inline int soap_read_ds__RetrievalMethodType(struct soap *soap, struct ds__RetrievalMethodType *p) -{ - if (p) - { ::soap_default_ds__RetrievalMethodType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__RetrievalMethodType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__RetrievalMethodType(struct soap *soap, const char *URL, struct ds__RetrievalMethodType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__RetrievalMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__RetrievalMethodType(struct soap *soap, struct ds__RetrievalMethodType *p) -{ - if (::soap_read_ds__RetrievalMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__KeyValueType_DEFINED -#define SOAP_TYPE_ds__KeyValueType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__KeyValueType(struct soap*, struct ds__KeyValueType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__KeyValueType(struct soap*, const struct ds__KeyValueType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__KeyValueType(struct soap*, const char*, int, const struct ds__KeyValueType *, const char*); -SOAP_FMAC3 struct ds__KeyValueType * SOAP_FMAC4 soap_in_ds__KeyValueType(struct soap*, const char*, struct ds__KeyValueType *, const char*); -SOAP_FMAC1 struct ds__KeyValueType * SOAP_FMAC2 soap_instantiate_ds__KeyValueType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__KeyValueType * soap_new_ds__KeyValueType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__KeyValueType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__KeyValueType * soap_new_req_ds__KeyValueType( - struct soap *soap) -{ - struct ds__KeyValueType *_p = ::soap_new_ds__KeyValueType(soap); - if (_p) - { ::soap_default_ds__KeyValueType(soap, _p); - } - return _p; -} - -inline struct ds__KeyValueType * soap_new_set_ds__KeyValueType( - struct soap *soap, - struct ds__DSAKeyValueType *DSAKeyValue, - struct ds__RSAKeyValueType *RSAKeyValue) -{ - struct ds__KeyValueType *_p = ::soap_new_ds__KeyValueType(soap); - if (_p) - { ::soap_default_ds__KeyValueType(soap, _p); - _p->DSAKeyValue = DSAKeyValue; - _p->RSAKeyValue = RSAKeyValue; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__KeyValueType(struct soap*, const struct ds__KeyValueType *, const char*, const char*); - -inline int soap_write_ds__KeyValueType(struct soap *soap, struct ds__KeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__KeyValueType(soap, p), 0) || ::soap_put_ds__KeyValueType(soap, p, "ds:KeyValueType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__KeyValueType(struct soap *soap, const char *URL, struct ds__KeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__KeyValueType(soap, p), 0) || ::soap_put_ds__KeyValueType(soap, p, "ds:KeyValueType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__KeyValueType(struct soap *soap, const char *URL, struct ds__KeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__KeyValueType(soap, p), 0) || ::soap_put_ds__KeyValueType(soap, p, "ds:KeyValueType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__KeyValueType(struct soap *soap, const char *URL, struct ds__KeyValueType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__KeyValueType(soap, p), 0) || ::soap_put_ds__KeyValueType(soap, p, "ds:KeyValueType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__KeyValueType * SOAP_FMAC4 soap_get_ds__KeyValueType(struct soap*, struct ds__KeyValueType *, const char*, const char*); - -inline int soap_read_ds__KeyValueType(struct soap *soap, struct ds__KeyValueType *p) -{ - if (p) - { ::soap_default_ds__KeyValueType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__KeyValueType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__KeyValueType(struct soap *soap, const char *URL, struct ds__KeyValueType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__KeyValueType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__KeyValueType(struct soap *soap, struct ds__KeyValueType *p) -{ - if (::soap_read_ds__KeyValueType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__DigestMethodType_DEFINED -#define SOAP_TYPE_ds__DigestMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__DigestMethodType(struct soap*, struct ds__DigestMethodType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__DigestMethodType(struct soap*, const struct ds__DigestMethodType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__DigestMethodType(struct soap*, const char*, int, const struct ds__DigestMethodType *, const char*); -SOAP_FMAC3 struct ds__DigestMethodType * SOAP_FMAC4 soap_in_ds__DigestMethodType(struct soap*, const char*, struct ds__DigestMethodType *, const char*); -SOAP_FMAC1 struct ds__DigestMethodType * SOAP_FMAC2 soap_instantiate_ds__DigestMethodType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__DigestMethodType * soap_new_ds__DigestMethodType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__DigestMethodType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__DigestMethodType * soap_new_req_ds__DigestMethodType( - struct soap *soap, - char *Algorithm) -{ - struct ds__DigestMethodType *_p = ::soap_new_ds__DigestMethodType(soap); - if (_p) - { ::soap_default_ds__DigestMethodType(soap, _p); - _p->Algorithm = Algorithm; - } - return _p; -} - -inline struct ds__DigestMethodType * soap_new_set_ds__DigestMethodType( - struct soap *soap, - char *Algorithm) -{ - struct ds__DigestMethodType *_p = ::soap_new_ds__DigestMethodType(soap); - if (_p) - { ::soap_default_ds__DigestMethodType(soap, _p); - _p->Algorithm = Algorithm; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__DigestMethodType(struct soap*, const struct ds__DigestMethodType *, const char*, const char*); - -inline int soap_write_ds__DigestMethodType(struct soap *soap, struct ds__DigestMethodType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__DigestMethodType(soap, p), 0) || ::soap_put_ds__DigestMethodType(soap, p, "ds:DigestMethodType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__DigestMethodType(struct soap *soap, const char *URL, struct ds__DigestMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__DigestMethodType(soap, p), 0) || ::soap_put_ds__DigestMethodType(soap, p, "ds:DigestMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__DigestMethodType(struct soap *soap, const char *URL, struct ds__DigestMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__DigestMethodType(soap, p), 0) || ::soap_put_ds__DigestMethodType(soap, p, "ds:DigestMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__DigestMethodType(struct soap *soap, const char *URL, struct ds__DigestMethodType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__DigestMethodType(soap, p), 0) || ::soap_put_ds__DigestMethodType(soap, p, "ds:DigestMethodType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__DigestMethodType * SOAP_FMAC4 soap_get_ds__DigestMethodType(struct soap*, struct ds__DigestMethodType *, const char*, const char*); - -inline int soap_read_ds__DigestMethodType(struct soap *soap, struct ds__DigestMethodType *p) -{ - if (p) - { ::soap_default_ds__DigestMethodType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__DigestMethodType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__DigestMethodType(struct soap *soap, const char *URL, struct ds__DigestMethodType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__DigestMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__DigestMethodType(struct soap *soap, struct ds__DigestMethodType *p) -{ - if (::soap_read_ds__DigestMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _ds__Transform is a typedef synonym of ds__TransformType */ - -#ifndef SOAP_TYPE__ds__Transform_DEFINED -#define SOAP_TYPE__ds__Transform_DEFINED - -#define soap_default__ds__Transform soap_default_ds__TransformType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__TransformType(struct soap*, const struct ds__TransformType *); - -#define soap_serialize__ds__Transform soap_serialize_ds__TransformType - - -#define soap__ds__Transform2s soap_ds__TransformType2s - - -#define soap_out__ds__Transform soap_out_ds__TransformType - - -#define soap_s2_ds__Transform soap_s2ds__TransformType - - -#define soap_in__ds__Transform soap_in_ds__TransformType - - -#define soap_instantiate__ds__Transform soap_instantiate_ds__TransformType - - -#define soap_new__ds__Transform soap_new_ds__TransformType - - -#define soap_new_req__ds__Transform soap_new_req_ds__TransformType - - -#define soap_new_set__ds__Transform soap_new_set_ds__TransformType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__ds__Transform(struct soap*, const struct ds__TransformType *, const char*, const char*); - -inline int soap_write__ds__Transform(struct soap *soap, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__ds__Transform(soap, p), 0) || ::soap_put__ds__Transform(soap, p, "ds:Transform", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__ds__Transform(struct soap *soap, const char *URL, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__Transform(soap, p), 0) || ::soap_put__ds__Transform(soap, p, "ds:Transform", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__ds__Transform(struct soap *soap, const char *URL, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__Transform(soap, p), 0) || ::soap_put__ds__Transform(soap, p, "ds:Transform", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__ds__Transform(struct soap *soap, const char *URL, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__Transform(soap, p), 0) || ::soap_put__ds__Transform(soap, p, "ds:Transform", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__ds__Transform soap_get_ds__TransformType - - -#define soap_read__ds__Transform soap_read_ds__TransformType - - -#define soap_GET__ds__Transform soap_GET_ds__TransformType - - -#define soap_POST_recv__ds__Transform soap_POST_recv_ds__TransformType - -#endif - -#ifndef SOAP_TYPE_ds__TransformType_DEFINED -#define SOAP_TYPE_ds__TransformType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__TransformType(struct soap*, struct ds__TransformType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__TransformType(struct soap*, const struct ds__TransformType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__TransformType(struct soap*, const char*, int, const struct ds__TransformType *, const char*); -SOAP_FMAC3 struct ds__TransformType * SOAP_FMAC4 soap_in_ds__TransformType(struct soap*, const char*, struct ds__TransformType *, const char*); -SOAP_FMAC1 struct ds__TransformType * SOAP_FMAC2 soap_instantiate_ds__TransformType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__TransformType * soap_new_ds__TransformType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__TransformType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__TransformType * soap_new_req_ds__TransformType( - struct soap *soap) -{ - struct ds__TransformType *_p = ::soap_new_ds__TransformType(soap); - if (_p) - { ::soap_default_ds__TransformType(soap, _p); - } - return _p; -} - -inline struct ds__TransformType * soap_new_set_ds__TransformType( - struct soap *soap, - struct _c14n__InclusiveNamespaces *c14n__InclusiveNamespaces, - char *__any, - char *Algorithm) -{ - struct ds__TransformType *_p = ::soap_new_ds__TransformType(soap); - if (_p) - { ::soap_default_ds__TransformType(soap, _p); - _p->c14n__InclusiveNamespaces = c14n__InclusiveNamespaces; - _p->__any = __any; - _p->Algorithm = Algorithm; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__TransformType(struct soap*, const struct ds__TransformType *, const char*, const char*); - -inline int soap_write_ds__TransformType(struct soap *soap, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__TransformType(soap, p), 0) || ::soap_put_ds__TransformType(soap, p, "ds:TransformType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__TransformType(struct soap *soap, const char *URL, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__TransformType(soap, p), 0) || ::soap_put_ds__TransformType(soap, p, "ds:TransformType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__TransformType(struct soap *soap, const char *URL, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__TransformType(soap, p), 0) || ::soap_put_ds__TransformType(soap, p, "ds:TransformType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__TransformType(struct soap *soap, const char *URL, struct ds__TransformType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__TransformType(soap, p), 0) || ::soap_put_ds__TransformType(soap, p, "ds:TransformType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__TransformType * SOAP_FMAC4 soap_get_ds__TransformType(struct soap*, struct ds__TransformType *, const char*, const char*); - -inline int soap_read_ds__TransformType(struct soap *soap, struct ds__TransformType *p) -{ - if (p) - { ::soap_default_ds__TransformType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__TransformType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__TransformType(struct soap *soap, const char *URL, struct ds__TransformType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__TransformType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__TransformType(struct soap *soap, struct ds__TransformType *p) -{ - if (::soap_read_ds__TransformType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__c14n__InclusiveNamespaces_DEFINED -#define SOAP_TYPE__c14n__InclusiveNamespaces_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__c14n__InclusiveNamespaces(struct soap*, struct _c14n__InclusiveNamespaces *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__c14n__InclusiveNamespaces(struct soap*, const struct _c14n__InclusiveNamespaces *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__c14n__InclusiveNamespaces(struct soap*, const char*, int, const struct _c14n__InclusiveNamespaces *, const char*); -SOAP_FMAC3 struct _c14n__InclusiveNamespaces * SOAP_FMAC4 soap_in__c14n__InclusiveNamespaces(struct soap*, const char*, struct _c14n__InclusiveNamespaces *, const char*); -SOAP_FMAC1 struct _c14n__InclusiveNamespaces * SOAP_FMAC2 soap_instantiate__c14n__InclusiveNamespaces(struct soap*, int, const char*, const char*, size_t*); - -inline struct _c14n__InclusiveNamespaces * soap_new__c14n__InclusiveNamespaces(struct soap *soap, int n = -1) -{ - return soap_instantiate__c14n__InclusiveNamespaces(soap, n, NULL, NULL, NULL); -} - -inline struct _c14n__InclusiveNamespaces * soap_new_req__c14n__InclusiveNamespaces( - struct soap *soap) -{ - struct _c14n__InclusiveNamespaces *_p = ::soap_new__c14n__InclusiveNamespaces(soap); - if (_p) - { ::soap_default__c14n__InclusiveNamespaces(soap, _p); - } - return _p; -} - -inline struct _c14n__InclusiveNamespaces * soap_new_set__c14n__InclusiveNamespaces( - struct soap *soap, - char *PrefixList) -{ - struct _c14n__InclusiveNamespaces *_p = ::soap_new__c14n__InclusiveNamespaces(soap); - if (_p) - { ::soap_default__c14n__InclusiveNamespaces(soap, _p); - _p->PrefixList = PrefixList; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__c14n__InclusiveNamespaces(struct soap*, const struct _c14n__InclusiveNamespaces *, const char*, const char*); - -inline int soap_write__c14n__InclusiveNamespaces(struct soap *soap, struct _c14n__InclusiveNamespaces const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__c14n__InclusiveNamespaces(soap, p), 0) || ::soap_put__c14n__InclusiveNamespaces(soap, p, "c14n:InclusiveNamespaces", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__c14n__InclusiveNamespaces(struct soap *soap, const char *URL, struct _c14n__InclusiveNamespaces const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__c14n__InclusiveNamespaces(soap, p), 0) || ::soap_put__c14n__InclusiveNamespaces(soap, p, "c14n:InclusiveNamespaces", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__c14n__InclusiveNamespaces(struct soap *soap, const char *URL, struct _c14n__InclusiveNamespaces const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__c14n__InclusiveNamespaces(soap, p), 0) || ::soap_put__c14n__InclusiveNamespaces(soap, p, "c14n:InclusiveNamespaces", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__c14n__InclusiveNamespaces(struct soap *soap, const char *URL, struct _c14n__InclusiveNamespaces const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__c14n__InclusiveNamespaces(soap, p), 0) || ::soap_put__c14n__InclusiveNamespaces(soap, p, "c14n:InclusiveNamespaces", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _c14n__InclusiveNamespaces * SOAP_FMAC4 soap_get__c14n__InclusiveNamespaces(struct soap*, struct _c14n__InclusiveNamespaces *, const char*, const char*); - -inline int soap_read__c14n__InclusiveNamespaces(struct soap *soap, struct _c14n__InclusiveNamespaces *p) -{ - if (p) - { ::soap_default__c14n__InclusiveNamespaces(soap, p); - if (soap_begin_recv(soap) || ::soap_get__c14n__InclusiveNamespaces(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__c14n__InclusiveNamespaces(struct soap *soap, const char *URL, struct _c14n__InclusiveNamespaces *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__c14n__InclusiveNamespaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__c14n__InclusiveNamespaces(struct soap *soap, struct _c14n__InclusiveNamespaces *p) -{ - if (::soap_read__c14n__InclusiveNamespaces(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__TransformsType_DEFINED -#define SOAP_TYPE_ds__TransformsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__TransformsType(struct soap*, struct ds__TransformsType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__TransformsType(struct soap*, const struct ds__TransformsType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__TransformsType(struct soap*, const char*, int, const struct ds__TransformsType *, const char*); -SOAP_FMAC3 struct ds__TransformsType * SOAP_FMAC4 soap_in_ds__TransformsType(struct soap*, const char*, struct ds__TransformsType *, const char*); -SOAP_FMAC1 struct ds__TransformsType * SOAP_FMAC2 soap_instantiate_ds__TransformsType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__TransformsType * soap_new_ds__TransformsType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__TransformsType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__TransformsType * soap_new_req_ds__TransformsType( - struct soap *soap, - int __sizeTransform, - struct ds__TransformType *Transform) -{ - struct ds__TransformsType *_p = ::soap_new_ds__TransformsType(soap); - if (_p) - { ::soap_default_ds__TransformsType(soap, _p); - _p->__sizeTransform = __sizeTransform; - _p->Transform = Transform; - } - return _p; -} - -inline struct ds__TransformsType * soap_new_set_ds__TransformsType( - struct soap *soap, - int __sizeTransform, - struct ds__TransformType *Transform) -{ - struct ds__TransformsType *_p = ::soap_new_ds__TransformsType(soap); - if (_p) - { ::soap_default_ds__TransformsType(soap, _p); - _p->__sizeTransform = __sizeTransform; - _p->Transform = Transform; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__TransformsType(struct soap*, const struct ds__TransformsType *, const char*, const char*); - -inline int soap_write_ds__TransformsType(struct soap *soap, struct ds__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__TransformsType(soap, p), 0) || ::soap_put_ds__TransformsType(soap, p, "ds:TransformsType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__TransformsType(struct soap *soap, const char *URL, struct ds__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__TransformsType(soap, p), 0) || ::soap_put_ds__TransformsType(soap, p, "ds:TransformsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__TransformsType(struct soap *soap, const char *URL, struct ds__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__TransformsType(soap, p), 0) || ::soap_put_ds__TransformsType(soap, p, "ds:TransformsType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__TransformsType(struct soap *soap, const char *URL, struct ds__TransformsType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__TransformsType(soap, p), 0) || ::soap_put_ds__TransformsType(soap, p, "ds:TransformsType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__TransformsType * SOAP_FMAC4 soap_get_ds__TransformsType(struct soap*, struct ds__TransformsType *, const char*, const char*); - -inline int soap_read_ds__TransformsType(struct soap *soap, struct ds__TransformsType *p) -{ - if (p) - { ::soap_default_ds__TransformsType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__TransformsType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__TransformsType(struct soap *soap, const char *URL, struct ds__TransformsType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__TransformsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__TransformsType(struct soap *soap, struct ds__TransformsType *p) -{ - if (::soap_read_ds__TransformsType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__ReferenceType_DEFINED -#define SOAP_TYPE_ds__ReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__ReferenceType(struct soap*, struct ds__ReferenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__ReferenceType(struct soap*, const struct ds__ReferenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__ReferenceType(struct soap*, const char*, int, const struct ds__ReferenceType *, const char*); -SOAP_FMAC3 struct ds__ReferenceType * SOAP_FMAC4 soap_in_ds__ReferenceType(struct soap*, const char*, struct ds__ReferenceType *, const char*); -SOAP_FMAC1 struct ds__ReferenceType * SOAP_FMAC2 soap_instantiate_ds__ReferenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__ReferenceType * soap_new_ds__ReferenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__ReferenceType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__ReferenceType * soap_new_req_ds__ReferenceType( - struct soap *soap, - struct ds__DigestMethodType *DigestMethod, - char *DigestValue) -{ - struct ds__ReferenceType *_p = ::soap_new_ds__ReferenceType(soap); - if (_p) - { ::soap_default_ds__ReferenceType(soap, _p); - _p->DigestMethod = DigestMethod; - _p->DigestValue = DigestValue; - } - return _p; -} - -inline struct ds__ReferenceType * soap_new_set_ds__ReferenceType( - struct soap *soap, - struct ds__TransformsType *Transforms, - struct ds__DigestMethodType *DigestMethod, - char *DigestValue, - char *Id, - char *URI, - char *Type) -{ - struct ds__ReferenceType *_p = ::soap_new_ds__ReferenceType(soap); - if (_p) - { ::soap_default_ds__ReferenceType(soap, _p); - _p->Transforms = Transforms; - _p->DigestMethod = DigestMethod; - _p->DigestValue = DigestValue; - _p->Id = Id; - _p->URI = URI; - _p->Type = Type; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__ReferenceType(struct soap*, const struct ds__ReferenceType *, const char*, const char*); - -inline int soap_write_ds__ReferenceType(struct soap *soap, struct ds__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__ReferenceType(soap, p), 0) || ::soap_put_ds__ReferenceType(soap, p, "ds:ReferenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__ReferenceType(struct soap *soap, const char *URL, struct ds__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__ReferenceType(soap, p), 0) || ::soap_put_ds__ReferenceType(soap, p, "ds:ReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__ReferenceType(struct soap *soap, const char *URL, struct ds__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__ReferenceType(soap, p), 0) || ::soap_put_ds__ReferenceType(soap, p, "ds:ReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__ReferenceType(struct soap *soap, const char *URL, struct ds__ReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__ReferenceType(soap, p), 0) || ::soap_put_ds__ReferenceType(soap, p, "ds:ReferenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__ReferenceType * SOAP_FMAC4 soap_get_ds__ReferenceType(struct soap*, struct ds__ReferenceType *, const char*, const char*); - -inline int soap_read_ds__ReferenceType(struct soap *soap, struct ds__ReferenceType *p) -{ - if (p) - { ::soap_default_ds__ReferenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__ReferenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__ReferenceType(struct soap *soap, const char *URL, struct ds__ReferenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__ReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__ReferenceType(struct soap *soap, struct ds__ReferenceType *p) -{ - if (::soap_read_ds__ReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__SignatureMethodType_DEFINED -#define SOAP_TYPE_ds__SignatureMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__SignatureMethodType(struct soap*, struct ds__SignatureMethodType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__SignatureMethodType(struct soap*, const struct ds__SignatureMethodType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__SignatureMethodType(struct soap*, const char*, int, const struct ds__SignatureMethodType *, const char*); -SOAP_FMAC3 struct ds__SignatureMethodType * SOAP_FMAC4 soap_in_ds__SignatureMethodType(struct soap*, const char*, struct ds__SignatureMethodType *, const char*); -SOAP_FMAC1 struct ds__SignatureMethodType * SOAP_FMAC2 soap_instantiate_ds__SignatureMethodType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__SignatureMethodType * soap_new_ds__SignatureMethodType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__SignatureMethodType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__SignatureMethodType * soap_new_req_ds__SignatureMethodType( - struct soap *soap, - char *Algorithm) -{ - struct ds__SignatureMethodType *_p = ::soap_new_ds__SignatureMethodType(soap); - if (_p) - { ::soap_default_ds__SignatureMethodType(soap, _p); - _p->Algorithm = Algorithm; - } - return _p; -} - -inline struct ds__SignatureMethodType * soap_new_set_ds__SignatureMethodType( - struct soap *soap, - int *HMACOutputLength, - char *Algorithm) -{ - struct ds__SignatureMethodType *_p = ::soap_new_ds__SignatureMethodType(soap); - if (_p) - { ::soap_default_ds__SignatureMethodType(soap, _p); - _p->HMACOutputLength = HMACOutputLength; - _p->Algorithm = Algorithm; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__SignatureMethodType(struct soap*, const struct ds__SignatureMethodType *, const char*, const char*); - -inline int soap_write_ds__SignatureMethodType(struct soap *soap, struct ds__SignatureMethodType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__SignatureMethodType(soap, p), 0) || ::soap_put_ds__SignatureMethodType(soap, p, "ds:SignatureMethodType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__SignatureMethodType(struct soap *soap, const char *URL, struct ds__SignatureMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignatureMethodType(soap, p), 0) || ::soap_put_ds__SignatureMethodType(soap, p, "ds:SignatureMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__SignatureMethodType(struct soap *soap, const char *URL, struct ds__SignatureMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignatureMethodType(soap, p), 0) || ::soap_put_ds__SignatureMethodType(soap, p, "ds:SignatureMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__SignatureMethodType(struct soap *soap, const char *URL, struct ds__SignatureMethodType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignatureMethodType(soap, p), 0) || ::soap_put_ds__SignatureMethodType(soap, p, "ds:SignatureMethodType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__SignatureMethodType * SOAP_FMAC4 soap_get_ds__SignatureMethodType(struct soap*, struct ds__SignatureMethodType *, const char*, const char*); - -inline int soap_read_ds__SignatureMethodType(struct soap *soap, struct ds__SignatureMethodType *p) -{ - if (p) - { ::soap_default_ds__SignatureMethodType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__SignatureMethodType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__SignatureMethodType(struct soap *soap, const char *URL, struct ds__SignatureMethodType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__SignatureMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__SignatureMethodType(struct soap *soap, struct ds__SignatureMethodType *p) -{ - if (::soap_read_ds__SignatureMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__CanonicalizationMethodType_DEFINED -#define SOAP_TYPE_ds__CanonicalizationMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__CanonicalizationMethodType(struct soap*, struct ds__CanonicalizationMethodType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__CanonicalizationMethodType(struct soap*, const struct ds__CanonicalizationMethodType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__CanonicalizationMethodType(struct soap*, const char*, int, const struct ds__CanonicalizationMethodType *, const char*); -SOAP_FMAC3 struct ds__CanonicalizationMethodType * SOAP_FMAC4 soap_in_ds__CanonicalizationMethodType(struct soap*, const char*, struct ds__CanonicalizationMethodType *, const char*); -SOAP_FMAC1 struct ds__CanonicalizationMethodType * SOAP_FMAC2 soap_instantiate_ds__CanonicalizationMethodType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__CanonicalizationMethodType * soap_new_ds__CanonicalizationMethodType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__CanonicalizationMethodType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__CanonicalizationMethodType * soap_new_req_ds__CanonicalizationMethodType( - struct soap *soap, - char *Algorithm) -{ - struct ds__CanonicalizationMethodType *_p = ::soap_new_ds__CanonicalizationMethodType(soap); - if (_p) - { ::soap_default_ds__CanonicalizationMethodType(soap, _p); - _p->Algorithm = Algorithm; - } - return _p; -} - -inline struct ds__CanonicalizationMethodType * soap_new_set_ds__CanonicalizationMethodType( - struct soap *soap, - char *Algorithm, - struct _c14n__InclusiveNamespaces *c14n__InclusiveNamespaces) -{ - struct ds__CanonicalizationMethodType *_p = ::soap_new_ds__CanonicalizationMethodType(soap); - if (_p) - { ::soap_default_ds__CanonicalizationMethodType(soap, _p); - _p->Algorithm = Algorithm; - _p->c14n__InclusiveNamespaces = c14n__InclusiveNamespaces; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__CanonicalizationMethodType(struct soap*, const struct ds__CanonicalizationMethodType *, const char*, const char*); - -inline int soap_write_ds__CanonicalizationMethodType(struct soap *soap, struct ds__CanonicalizationMethodType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__CanonicalizationMethodType(soap, p), 0) || ::soap_put_ds__CanonicalizationMethodType(soap, p, "ds:CanonicalizationMethodType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__CanonicalizationMethodType(struct soap *soap, const char *URL, struct ds__CanonicalizationMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__CanonicalizationMethodType(soap, p), 0) || ::soap_put_ds__CanonicalizationMethodType(soap, p, "ds:CanonicalizationMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__CanonicalizationMethodType(struct soap *soap, const char *URL, struct ds__CanonicalizationMethodType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__CanonicalizationMethodType(soap, p), 0) || ::soap_put_ds__CanonicalizationMethodType(soap, p, "ds:CanonicalizationMethodType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__CanonicalizationMethodType(struct soap *soap, const char *URL, struct ds__CanonicalizationMethodType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__CanonicalizationMethodType(soap, p), 0) || ::soap_put_ds__CanonicalizationMethodType(soap, p, "ds:CanonicalizationMethodType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__CanonicalizationMethodType * SOAP_FMAC4 soap_get_ds__CanonicalizationMethodType(struct soap*, struct ds__CanonicalizationMethodType *, const char*, const char*); - -inline int soap_read_ds__CanonicalizationMethodType(struct soap *soap, struct ds__CanonicalizationMethodType *p) -{ - if (p) - { ::soap_default_ds__CanonicalizationMethodType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__CanonicalizationMethodType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__CanonicalizationMethodType(struct soap *soap, const char *URL, struct ds__CanonicalizationMethodType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__CanonicalizationMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__CanonicalizationMethodType(struct soap *soap, struct ds__CanonicalizationMethodType *p) -{ - if (::soap_read_ds__CanonicalizationMethodType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _ds__Signature is a typedef synonym of ds__SignatureType */ - -#ifndef SOAP_TYPE__ds__Signature_DEFINED -#define SOAP_TYPE__ds__Signature_DEFINED - -#define soap_default__ds__Signature soap_default_ds__SignatureType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__SignatureType(struct soap*, const struct ds__SignatureType *); - -#define soap_serialize__ds__Signature soap_serialize_ds__SignatureType - - -#define soap__ds__Signature2s soap_ds__SignatureType2s - - -#define soap_out__ds__Signature soap_out_ds__SignatureType - - -#define soap_s2_ds__Signature soap_s2ds__SignatureType - - -#define soap_in__ds__Signature soap_in_ds__SignatureType - - -#define soap_instantiate__ds__Signature soap_instantiate_ds__SignatureType - - -#define soap_new__ds__Signature soap_new_ds__SignatureType - - -#define soap_new_req__ds__Signature soap_new_req_ds__SignatureType - - -#define soap_new_set__ds__Signature soap_new_set_ds__SignatureType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__ds__Signature(struct soap*, const struct ds__SignatureType *, const char*, const char*); - -inline int soap_write__ds__Signature(struct soap *soap, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__ds__Signature(soap, p), 0) || ::soap_put__ds__Signature(soap, p, "ds:Signature", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__ds__Signature(struct soap *soap, const char *URL, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__Signature(soap, p), 0) || ::soap_put__ds__Signature(soap, p, "ds:Signature", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__ds__Signature(struct soap *soap, const char *URL, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__Signature(soap, p), 0) || ::soap_put__ds__Signature(soap, p, "ds:Signature", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__ds__Signature(struct soap *soap, const char *URL, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__ds__Signature(soap, p), 0) || ::soap_put__ds__Signature(soap, p, "ds:Signature", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__ds__Signature soap_get_ds__SignatureType - - -#define soap_read__ds__Signature soap_read_ds__SignatureType - - -#define soap_GET__ds__Signature soap_GET_ds__SignatureType - - -#define soap_POST_recv__ds__Signature soap_POST_recv_ds__SignatureType - -#endif - -#ifndef SOAP_TYPE_ds__SignedInfoType_DEFINED -#define SOAP_TYPE_ds__SignedInfoType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__SignedInfoType(struct soap*, struct ds__SignedInfoType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__SignedInfoType(struct soap*, const struct ds__SignedInfoType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__SignedInfoType(struct soap*, const char*, int, const struct ds__SignedInfoType *, const char*); -SOAP_FMAC3 struct ds__SignedInfoType * SOAP_FMAC4 soap_in_ds__SignedInfoType(struct soap*, const char*, struct ds__SignedInfoType *, const char*); -SOAP_FMAC1 struct ds__SignedInfoType * SOAP_FMAC2 soap_instantiate_ds__SignedInfoType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__SignedInfoType * soap_new_ds__SignedInfoType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__SignedInfoType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__SignedInfoType * soap_new_req_ds__SignedInfoType( - struct soap *soap, - struct ds__CanonicalizationMethodType *CanonicalizationMethod, - struct ds__SignatureMethodType *SignatureMethod, - int __sizeReference, - struct ds__ReferenceType **Reference) -{ - struct ds__SignedInfoType *_p = ::soap_new_ds__SignedInfoType(soap); - if (_p) - { ::soap_default_ds__SignedInfoType(soap, _p); - _p->CanonicalizationMethod = CanonicalizationMethod; - _p->SignatureMethod = SignatureMethod; - _p->__sizeReference = __sizeReference; - _p->Reference = Reference; - } - return _p; -} - -inline struct ds__SignedInfoType * soap_new_set_ds__SignedInfoType( - struct soap *soap, - struct ds__CanonicalizationMethodType *CanonicalizationMethod, - struct ds__SignatureMethodType *SignatureMethod, - int __sizeReference, - struct ds__ReferenceType **Reference, - char *Id) -{ - struct ds__SignedInfoType *_p = ::soap_new_ds__SignedInfoType(soap); - if (_p) - { ::soap_default_ds__SignedInfoType(soap, _p); - _p->CanonicalizationMethod = CanonicalizationMethod; - _p->SignatureMethod = SignatureMethod; - _p->__sizeReference = __sizeReference; - _p->Reference = Reference; - _p->Id = Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__SignedInfoType(struct soap*, const struct ds__SignedInfoType *, const char*, const char*); - -inline int soap_write_ds__SignedInfoType(struct soap *soap, struct ds__SignedInfoType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__SignedInfoType(soap, p), 0) || ::soap_put_ds__SignedInfoType(soap, p, "ds:SignedInfoType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__SignedInfoType(struct soap *soap, const char *URL, struct ds__SignedInfoType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignedInfoType(soap, p), 0) || ::soap_put_ds__SignedInfoType(soap, p, "ds:SignedInfoType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__SignedInfoType(struct soap *soap, const char *URL, struct ds__SignedInfoType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignedInfoType(soap, p), 0) || ::soap_put_ds__SignedInfoType(soap, p, "ds:SignedInfoType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__SignedInfoType(struct soap *soap, const char *URL, struct ds__SignedInfoType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignedInfoType(soap, p), 0) || ::soap_put_ds__SignedInfoType(soap, p, "ds:SignedInfoType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__SignedInfoType * SOAP_FMAC4 soap_get_ds__SignedInfoType(struct soap*, struct ds__SignedInfoType *, const char*, const char*); - -inline int soap_read_ds__SignedInfoType(struct soap *soap, struct ds__SignedInfoType *p) -{ - if (p) - { ::soap_default_ds__SignedInfoType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__SignedInfoType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__SignedInfoType(struct soap *soap, const char *URL, struct ds__SignedInfoType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__SignedInfoType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__SignedInfoType(struct soap *soap, struct ds__SignedInfoType *p) -{ - if (::soap_read_ds__SignedInfoType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__SignatureType_DEFINED -#define SOAP_TYPE_ds__SignatureType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__SignatureType(struct soap*, struct ds__SignatureType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__SignatureType(struct soap*, const struct ds__SignatureType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__SignatureType(struct soap*, const char*, int, const struct ds__SignatureType *, const char*); -SOAP_FMAC3 struct ds__SignatureType * SOAP_FMAC4 soap_in_ds__SignatureType(struct soap*, const char*, struct ds__SignatureType *, const char*); -SOAP_FMAC1 struct ds__SignatureType * SOAP_FMAC2 soap_instantiate_ds__SignatureType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__SignatureType * soap_new_ds__SignatureType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__SignatureType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__SignatureType * soap_new_req_ds__SignatureType( - struct soap *soap) -{ - struct ds__SignatureType *_p = ::soap_new_ds__SignatureType(soap); - if (_p) - { ::soap_default_ds__SignatureType(soap, _p); - } - return _p; -} - -inline struct ds__SignatureType * soap_new_set_ds__SignatureType( - struct soap *soap, - struct ds__SignedInfoType *SignedInfo, - char *SignatureValue, - struct ds__KeyInfoType *KeyInfo, - char *Id) -{ - struct ds__SignatureType *_p = ::soap_new_ds__SignatureType(soap); - if (_p) - { ::soap_default_ds__SignatureType(soap, _p); - _p->SignedInfo = SignedInfo; - _p->SignatureValue = SignatureValue; - _p->KeyInfo = KeyInfo; - _p->Id = Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__SignatureType(struct soap*, const struct ds__SignatureType *, const char*, const char*); - -inline int soap_write_ds__SignatureType(struct soap *soap, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__SignatureType(soap, p), 0) || ::soap_put_ds__SignatureType(soap, p, "ds:SignatureType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__SignatureType(struct soap *soap, const char *URL, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignatureType(soap, p), 0) || ::soap_put_ds__SignatureType(soap, p, "ds:SignatureType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__SignatureType(struct soap *soap, const char *URL, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignatureType(soap, p), 0) || ::soap_put_ds__SignatureType(soap, p, "ds:SignatureType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__SignatureType(struct soap *soap, const char *URL, struct ds__SignatureType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__SignatureType(soap, p), 0) || ::soap_put_ds__SignatureType(soap, p, "ds:SignatureType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__SignatureType * SOAP_FMAC4 soap_get_ds__SignatureType(struct soap*, struct ds__SignatureType *, const char*, const char*); - -inline int soap_read_ds__SignatureType(struct soap *soap, struct ds__SignatureType *p) -{ - if (p) - { ::soap_default_ds__SignatureType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__SignatureType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__SignatureType(struct soap *soap, const char *URL, struct ds__SignatureType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__SignatureType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__SignatureType(struct soap *soap, struct ds__SignatureType *p) -{ - if (::soap_read_ds__SignatureType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_xenc__EncryptedKeyType_DEFINED -#define SOAP_TYPE_xenc__EncryptedKeyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_xenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_xenc__EncryptedKeyType(struct soap*, const struct xenc__EncryptedKeyType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_xenc__EncryptedKeyType(struct soap*, const char*, int, const struct xenc__EncryptedKeyType *, const char*); -SOAP_FMAC3 struct xenc__EncryptedKeyType * SOAP_FMAC4 soap_in_xenc__EncryptedKeyType(struct soap*, const char*, struct xenc__EncryptedKeyType *, const char*); -SOAP_FMAC1 struct xenc__EncryptedKeyType * SOAP_FMAC2 soap_instantiate_xenc__EncryptedKeyType(struct soap*, int, const char*, const char*, size_t*); - -inline struct xenc__EncryptedKeyType * soap_new_xenc__EncryptedKeyType(struct soap *soap, int n = -1) -{ - return soap_instantiate_xenc__EncryptedKeyType(soap, n, NULL, NULL, NULL); -} - -inline struct xenc__EncryptedKeyType * soap_new_req_xenc__EncryptedKeyType( - struct soap *soap, - struct xenc__CipherDataType *CipherData) -{ - struct xenc__EncryptedKeyType *_p = ::soap_new_xenc__EncryptedKeyType(soap); - if (_p) - { ::soap_default_xenc__EncryptedKeyType(soap, _p); - _p->CipherData = CipherData; - } - return _p; -} - -inline struct xenc__EncryptedKeyType * soap_new_set_xenc__EncryptedKeyType( - struct soap *soap, - struct xenc__EncryptionMethodType *EncryptionMethod, - struct ds__KeyInfoType *ds__KeyInfo, - struct xenc__CipherDataType *CipherData, - struct xenc__EncryptionPropertiesType *EncryptionProperties, - char *Id, - char *Type, - char *MimeType, - char *Encoding, - struct _xenc__ReferenceList *ReferenceList, - char *CarriedKeyName, - char *Recipient) -{ - struct xenc__EncryptedKeyType *_p = ::soap_new_xenc__EncryptedKeyType(soap); - if (_p) - { ::soap_default_xenc__EncryptedKeyType(soap, _p); - _p->EncryptionMethod = EncryptionMethod; - _p->ds__KeyInfo = ds__KeyInfo; - _p->CipherData = CipherData; - _p->EncryptionProperties = EncryptionProperties; - _p->Id = Id; - _p->Type = Type; - _p->MimeType = MimeType; - _p->Encoding = Encoding; - _p->ReferenceList = ReferenceList; - _p->CarriedKeyName = CarriedKeyName; - _p->Recipient = Recipient; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_xenc__EncryptedKeyType(struct soap*, const struct xenc__EncryptedKeyType *, const char*, const char*); - -inline int soap_write_xenc__EncryptedKeyType(struct soap *soap, struct xenc__EncryptedKeyType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_xenc__EncryptedKeyType(soap, p), 0) || ::soap_put_xenc__EncryptedKeyType(soap, p, "xenc:EncryptedKeyType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_xenc__EncryptedKeyType(struct soap *soap, const char *URL, struct xenc__EncryptedKeyType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedKeyType(soap, p), 0) || ::soap_put_xenc__EncryptedKeyType(soap, p, "xenc:EncryptedKeyType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_xenc__EncryptedKeyType(struct soap *soap, const char *URL, struct xenc__EncryptedKeyType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedKeyType(soap, p), 0) || ::soap_put_xenc__EncryptedKeyType(soap, p, "xenc:EncryptedKeyType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_xenc__EncryptedKeyType(struct soap *soap, const char *URL, struct xenc__EncryptedKeyType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_xenc__EncryptedKeyType(soap, p), 0) || ::soap_put_xenc__EncryptedKeyType(soap, p, "xenc:EncryptedKeyType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct xenc__EncryptedKeyType * SOAP_FMAC4 soap_get_xenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType *, const char*, const char*); - -inline int soap_read_xenc__EncryptedKeyType(struct soap *soap, struct xenc__EncryptedKeyType *p) -{ - if (p) - { ::soap_default_xenc__EncryptedKeyType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_xenc__EncryptedKeyType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_xenc__EncryptedKeyType(struct soap *soap, const char *URL, struct xenc__EncryptedKeyType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_xenc__EncryptedKeyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_xenc__EncryptedKeyType(struct soap *soap, struct xenc__EncryptedKeyType *p) -{ - if (::soap_read_xenc__EncryptedKeyType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__KeyInfoType_DEFINED -#define SOAP_TYPE_ds__KeyInfoType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__KeyInfoType(struct soap*, struct ds__KeyInfoType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__KeyInfoType(struct soap*, const struct ds__KeyInfoType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__KeyInfoType(struct soap*, const char*, int, const struct ds__KeyInfoType *, const char*); -SOAP_FMAC3 struct ds__KeyInfoType * SOAP_FMAC4 soap_in_ds__KeyInfoType(struct soap*, const char*, struct ds__KeyInfoType *, const char*); -SOAP_FMAC1 struct ds__KeyInfoType * SOAP_FMAC2 soap_instantiate_ds__KeyInfoType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__KeyInfoType * soap_new_ds__KeyInfoType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__KeyInfoType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__KeyInfoType * soap_new_req_ds__KeyInfoType( - struct soap *soap) -{ - struct ds__KeyInfoType *_p = ::soap_new_ds__KeyInfoType(soap); - if (_p) - { ::soap_default_ds__KeyInfoType(soap, _p); - } - return _p; -} - -inline struct ds__KeyInfoType * soap_new_set_ds__KeyInfoType( - struct soap *soap, - struct xenc__EncryptedKeyType *xenc__EncryptedKey, - char *KeyName, - struct ds__KeyValueType *KeyValue, - struct ds__RetrievalMethodType *RetrievalMethod, - struct ds__X509DataType *X509Data, - struct _wsse__SecurityTokenReference *wsse__SecurityTokenReference, - char *Id) -{ - struct ds__KeyInfoType *_p = ::soap_new_ds__KeyInfoType(soap); - if (_p) - { ::soap_default_ds__KeyInfoType(soap, _p); - _p->xenc__EncryptedKey = xenc__EncryptedKey; - _p->KeyName = KeyName; - _p->KeyValue = KeyValue; - _p->RetrievalMethod = RetrievalMethod; - _p->X509Data = X509Data; - _p->wsse__SecurityTokenReference = wsse__SecurityTokenReference; - _p->Id = Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__KeyInfoType(struct soap*, const struct ds__KeyInfoType *, const char*, const char*); - -inline int soap_write_ds__KeyInfoType(struct soap *soap, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__KeyInfoType(soap, p), 0) || ::soap_put_ds__KeyInfoType(soap, p, "ds:KeyInfoType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__KeyInfoType(struct soap *soap, const char *URL, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__KeyInfoType(soap, p), 0) || ::soap_put_ds__KeyInfoType(soap, p, "ds:KeyInfoType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__KeyInfoType(struct soap *soap, const char *URL, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__KeyInfoType(soap, p), 0) || ::soap_put_ds__KeyInfoType(soap, p, "ds:KeyInfoType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__KeyInfoType(struct soap *soap, const char *URL, struct ds__KeyInfoType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__KeyInfoType(soap, p), 0) || ::soap_put_ds__KeyInfoType(soap, p, "ds:KeyInfoType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__KeyInfoType * SOAP_FMAC4 soap_get_ds__KeyInfoType(struct soap*, struct ds__KeyInfoType *, const char*, const char*); - -inline int soap_read_ds__KeyInfoType(struct soap *soap, struct ds__KeyInfoType *p) -{ - if (p) - { ::soap_default_ds__KeyInfoType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__KeyInfoType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__KeyInfoType(struct soap *soap, const char *URL, struct ds__KeyInfoType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__KeyInfoType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__KeyInfoType(struct soap *soap, struct ds__KeyInfoType *p) -{ - if (::soap_read_ds__KeyInfoType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_ds__X509DataType_DEFINED -#define SOAP_TYPE_ds__X509DataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_ds__X509DataType(struct soap*, struct ds__X509DataType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ds__X509DataType(struct soap*, const struct ds__X509DataType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_ds__X509DataType(struct soap*, const char*, int, const struct ds__X509DataType *, const char*); -SOAP_FMAC3 struct ds__X509DataType * SOAP_FMAC4 soap_in_ds__X509DataType(struct soap*, const char*, struct ds__X509DataType *, const char*); -SOAP_FMAC1 struct ds__X509DataType * SOAP_FMAC2 soap_instantiate_ds__X509DataType(struct soap*, int, const char*, const char*, size_t*); - -inline struct ds__X509DataType * soap_new_ds__X509DataType(struct soap *soap, int n = -1) -{ - return soap_instantiate_ds__X509DataType(soap, n, NULL, NULL, NULL); -} - -inline struct ds__X509DataType * soap_new_req_ds__X509DataType( - struct soap *soap) -{ - struct ds__X509DataType *_p = ::soap_new_ds__X509DataType(soap); - if (_p) - { ::soap_default_ds__X509DataType(soap, _p); - } - return _p; -} - -inline struct ds__X509DataType * soap_new_set_ds__X509DataType( - struct soap *soap, - struct ds__X509IssuerSerialType *X509IssuerSerial, - char *X509SKI, - char *X509SubjectName, - char *X509Certificate, - char *X509CRL) -{ - struct ds__X509DataType *_p = ::soap_new_ds__X509DataType(soap); - if (_p) - { ::soap_default_ds__X509DataType(soap, _p); - _p->X509IssuerSerial = X509IssuerSerial; - _p->X509SKI = X509SKI; - _p->X509SubjectName = X509SubjectName; - _p->X509Certificate = X509Certificate; - _p->X509CRL = X509CRL; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_ds__X509DataType(struct soap*, const struct ds__X509DataType *, const char*, const char*); - -inline int soap_write_ds__X509DataType(struct soap *soap, struct ds__X509DataType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_ds__X509DataType(soap, p), 0) || ::soap_put_ds__X509DataType(soap, p, "ds:X509DataType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_ds__X509DataType(struct soap *soap, const char *URL, struct ds__X509DataType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__X509DataType(soap, p), 0) || ::soap_put_ds__X509DataType(soap, p, "ds:X509DataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_ds__X509DataType(struct soap *soap, const char *URL, struct ds__X509DataType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__X509DataType(soap, p), 0) || ::soap_put_ds__X509DataType(soap, p, "ds:X509DataType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_ds__X509DataType(struct soap *soap, const char *URL, struct ds__X509DataType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_ds__X509DataType(soap, p), 0) || ::soap_put_ds__X509DataType(soap, p, "ds:X509DataType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct ds__X509DataType * SOAP_FMAC4 soap_get_ds__X509DataType(struct soap*, struct ds__X509DataType *, const char*, const char*); - -inline int soap_read_ds__X509DataType(struct soap *soap, struct ds__X509DataType *p) -{ - if (p) - { ::soap_default_ds__X509DataType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_ds__X509DataType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_ds__X509DataType(struct soap *soap, const char *URL, struct ds__X509DataType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_ds__X509DataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_ds__X509DataType(struct soap *soap, struct ds__X509DataType *p) -{ - if (::soap_read_ds__X509DataType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__SecurityTokenReference_DEFINED -#define SOAP_TYPE__wsse__SecurityTokenReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__SecurityTokenReference(struct soap*, struct _wsse__SecurityTokenReference *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__SecurityTokenReference(struct soap*, const struct _wsse__SecurityTokenReference *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__SecurityTokenReference(struct soap*, const char*, int, const struct _wsse__SecurityTokenReference *, const char*); -SOAP_FMAC3 struct _wsse__SecurityTokenReference * SOAP_FMAC4 soap_in__wsse__SecurityTokenReference(struct soap*, const char*, struct _wsse__SecurityTokenReference *, const char*); -SOAP_FMAC1 struct _wsse__SecurityTokenReference * SOAP_FMAC2 soap_instantiate__wsse__SecurityTokenReference(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__SecurityTokenReference * soap_new__wsse__SecurityTokenReference(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__SecurityTokenReference(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__SecurityTokenReference * soap_new_req__wsse__SecurityTokenReference( - struct soap *soap) -{ - struct _wsse__SecurityTokenReference *_p = ::soap_new__wsse__SecurityTokenReference(soap); - if (_p) - { ::soap_default__wsse__SecurityTokenReference(soap, _p); - } - return _p; -} - -inline struct _wsse__SecurityTokenReference * soap_new_set__wsse__SecurityTokenReference( - struct soap *soap, - struct _wsse__Reference *Reference, - struct _wsse__KeyIdentifier *KeyIdentifier, - struct _wsse__Embedded *Embedded, - struct ds__X509DataType *ds__X509Data, - char *wsu__Id, - char *wsc__Instance, - char *Usage) -{ - struct _wsse__SecurityTokenReference *_p = ::soap_new__wsse__SecurityTokenReference(soap); - if (_p) - { ::soap_default__wsse__SecurityTokenReference(soap, _p); - _p->Reference = Reference; - _p->KeyIdentifier = KeyIdentifier; - _p->Embedded = Embedded; - _p->ds__X509Data = ds__X509Data; - _p->wsu__Id = wsu__Id; - _p->wsc__Instance = wsc__Instance; - _p->Usage = Usage; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__SecurityTokenReference(struct soap*, const struct _wsse__SecurityTokenReference *, const char*, const char*); - -inline int soap_write__wsse__SecurityTokenReference(struct soap *soap, struct _wsse__SecurityTokenReference const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__SecurityTokenReference(soap, p), 0) || ::soap_put__wsse__SecurityTokenReference(soap, p, "wsse:SecurityTokenReference", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__SecurityTokenReference(struct soap *soap, const char *URL, struct _wsse__SecurityTokenReference const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__SecurityTokenReference(soap, p), 0) || ::soap_put__wsse__SecurityTokenReference(soap, p, "wsse:SecurityTokenReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__SecurityTokenReference(struct soap *soap, const char *URL, struct _wsse__SecurityTokenReference const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__SecurityTokenReference(soap, p), 0) || ::soap_put__wsse__SecurityTokenReference(soap, p, "wsse:SecurityTokenReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__SecurityTokenReference(struct soap *soap, const char *URL, struct _wsse__SecurityTokenReference const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__SecurityTokenReference(soap, p), 0) || ::soap_put__wsse__SecurityTokenReference(soap, p, "wsse:SecurityTokenReference", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__SecurityTokenReference * SOAP_FMAC4 soap_get__wsse__SecurityTokenReference(struct soap*, struct _wsse__SecurityTokenReference *, const char*, const char*); - -inline int soap_read__wsse__SecurityTokenReference(struct soap *soap, struct _wsse__SecurityTokenReference *p) -{ - if (p) - { ::soap_default__wsse__SecurityTokenReference(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__SecurityTokenReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__SecurityTokenReference(struct soap *soap, const char *URL, struct _wsse__SecurityTokenReference *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__SecurityTokenReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__SecurityTokenReference(struct soap *soap, struct _wsse__SecurityTokenReference *p) -{ - if (::soap_read__wsse__SecurityTokenReference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__KeyIdentifier_DEFINED -#define SOAP_TYPE__wsse__KeyIdentifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__KeyIdentifier(struct soap*, struct _wsse__KeyIdentifier *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__KeyIdentifier(struct soap*, const struct _wsse__KeyIdentifier *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__KeyIdentifier(struct soap*, const char*, int, const struct _wsse__KeyIdentifier *, const char*); -SOAP_FMAC3 struct _wsse__KeyIdentifier * SOAP_FMAC4 soap_in__wsse__KeyIdentifier(struct soap*, const char*, struct _wsse__KeyIdentifier *, const char*); -SOAP_FMAC1 struct _wsse__KeyIdentifier * SOAP_FMAC2 soap_instantiate__wsse__KeyIdentifier(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__KeyIdentifier * soap_new__wsse__KeyIdentifier(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__KeyIdentifier(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__KeyIdentifier * soap_new_req__wsse__KeyIdentifier( - struct soap *soap) -{ - struct _wsse__KeyIdentifier *_p = ::soap_new__wsse__KeyIdentifier(soap); - if (_p) - { ::soap_default__wsse__KeyIdentifier(soap, _p); - } - return _p; -} - -inline struct _wsse__KeyIdentifier * soap_new_set__wsse__KeyIdentifier( - struct soap *soap, - char *__item, - char *wsu__Id, - char *ValueType, - char *EncodingType) -{ - struct _wsse__KeyIdentifier *_p = ::soap_new__wsse__KeyIdentifier(soap); - if (_p) - { ::soap_default__wsse__KeyIdentifier(soap, _p); - _p->__item = __item; - _p->wsu__Id = wsu__Id; - _p->ValueType = ValueType; - _p->EncodingType = EncodingType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__KeyIdentifier(struct soap*, const struct _wsse__KeyIdentifier *, const char*, const char*); - -inline int soap_write__wsse__KeyIdentifier(struct soap *soap, struct _wsse__KeyIdentifier const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__KeyIdentifier(soap, p), 0) || ::soap_put__wsse__KeyIdentifier(soap, p, "wsse:KeyIdentifier", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__KeyIdentifier(struct soap *soap, const char *URL, struct _wsse__KeyIdentifier const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__KeyIdentifier(soap, p), 0) || ::soap_put__wsse__KeyIdentifier(soap, p, "wsse:KeyIdentifier", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__KeyIdentifier(struct soap *soap, const char *URL, struct _wsse__KeyIdentifier const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__KeyIdentifier(soap, p), 0) || ::soap_put__wsse__KeyIdentifier(soap, p, "wsse:KeyIdentifier", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__KeyIdentifier(struct soap *soap, const char *URL, struct _wsse__KeyIdentifier const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__KeyIdentifier(soap, p), 0) || ::soap_put__wsse__KeyIdentifier(soap, p, "wsse:KeyIdentifier", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__KeyIdentifier * SOAP_FMAC4 soap_get__wsse__KeyIdentifier(struct soap*, struct _wsse__KeyIdentifier *, const char*, const char*); - -inline int soap_read__wsse__KeyIdentifier(struct soap *soap, struct _wsse__KeyIdentifier *p) -{ - if (p) - { ::soap_default__wsse__KeyIdentifier(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__KeyIdentifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__KeyIdentifier(struct soap *soap, const char *URL, struct _wsse__KeyIdentifier *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__KeyIdentifier(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__KeyIdentifier(struct soap *soap, struct _wsse__KeyIdentifier *p) -{ - if (::soap_read__wsse__KeyIdentifier(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__Embedded_DEFINED -#define SOAP_TYPE__wsse__Embedded_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Embedded(struct soap*, struct _wsse__Embedded *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Embedded(struct soap*, const struct _wsse__Embedded *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Embedded(struct soap*, const char*, int, const struct _wsse__Embedded *, const char*); -SOAP_FMAC3 struct _wsse__Embedded * SOAP_FMAC4 soap_in__wsse__Embedded(struct soap*, const char*, struct _wsse__Embedded *, const char*); -SOAP_FMAC1 struct _wsse__Embedded * SOAP_FMAC2 soap_instantiate__wsse__Embedded(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__Embedded * soap_new__wsse__Embedded(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__Embedded(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__Embedded * soap_new_req__wsse__Embedded( - struct soap *soap) -{ - struct _wsse__Embedded *_p = ::soap_new__wsse__Embedded(soap); - if (_p) - { ::soap_default__wsse__Embedded(soap, _p); - } - return _p; -} - -inline struct _wsse__Embedded * soap_new_set__wsse__Embedded( - struct soap *soap, - char *wsu__Id, - char *ValueType) -{ - struct _wsse__Embedded *_p = ::soap_new__wsse__Embedded(soap); - if (_p) - { ::soap_default__wsse__Embedded(soap, _p); - _p->wsu__Id = wsu__Id; - _p->ValueType = ValueType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Embedded(struct soap*, const struct _wsse__Embedded *, const char*, const char*); - -inline int soap_write__wsse__Embedded(struct soap *soap, struct _wsse__Embedded const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__Embedded(soap, p), 0) || ::soap_put__wsse__Embedded(soap, p, "wsse:Embedded", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__Embedded(struct soap *soap, const char *URL, struct _wsse__Embedded const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Embedded(soap, p), 0) || ::soap_put__wsse__Embedded(soap, p, "wsse:Embedded", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__Embedded(struct soap *soap, const char *URL, struct _wsse__Embedded const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Embedded(soap, p), 0) || ::soap_put__wsse__Embedded(soap, p, "wsse:Embedded", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__Embedded(struct soap *soap, const char *URL, struct _wsse__Embedded const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Embedded(soap, p), 0) || ::soap_put__wsse__Embedded(soap, p, "wsse:Embedded", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__Embedded * SOAP_FMAC4 soap_get__wsse__Embedded(struct soap*, struct _wsse__Embedded *, const char*, const char*); - -inline int soap_read__wsse__Embedded(struct soap *soap, struct _wsse__Embedded *p) -{ - if (p) - { ::soap_default__wsse__Embedded(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__Embedded(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__Embedded(struct soap *soap, const char *URL, struct _wsse__Embedded *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__Embedded(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__Embedded(struct soap *soap, struct _wsse__Embedded *p) -{ - if (::soap_read__wsse__Embedded(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__Reference_DEFINED -#define SOAP_TYPE__wsse__Reference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Reference(struct soap*, struct _wsse__Reference *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Reference(struct soap*, const struct _wsse__Reference *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Reference(struct soap*, const char*, int, const struct _wsse__Reference *, const char*); -SOAP_FMAC3 struct _wsse__Reference * SOAP_FMAC4 soap_in__wsse__Reference(struct soap*, const char*, struct _wsse__Reference *, const char*); -SOAP_FMAC1 struct _wsse__Reference * SOAP_FMAC2 soap_instantiate__wsse__Reference(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__Reference * soap_new__wsse__Reference(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__Reference(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__Reference * soap_new_req__wsse__Reference( - struct soap *soap) -{ - struct _wsse__Reference *_p = ::soap_new__wsse__Reference(soap); - if (_p) - { ::soap_default__wsse__Reference(soap, _p); - } - return _p; -} - -inline struct _wsse__Reference * soap_new_set__wsse__Reference( - struct soap *soap, - char *URI, - char *ValueType) -{ - struct _wsse__Reference *_p = ::soap_new__wsse__Reference(soap); - if (_p) - { ::soap_default__wsse__Reference(soap, _p); - _p->URI = URI; - _p->ValueType = ValueType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Reference(struct soap*, const struct _wsse__Reference *, const char*, const char*); - -inline int soap_write__wsse__Reference(struct soap *soap, struct _wsse__Reference const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__Reference(soap, p), 0) || ::soap_put__wsse__Reference(soap, p, "wsse:Reference", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__Reference(struct soap *soap, const char *URL, struct _wsse__Reference const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Reference(soap, p), 0) || ::soap_put__wsse__Reference(soap, p, "wsse:Reference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__Reference(struct soap *soap, const char *URL, struct _wsse__Reference const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Reference(soap, p), 0) || ::soap_put__wsse__Reference(soap, p, "wsse:Reference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__Reference(struct soap *soap, const char *URL, struct _wsse__Reference const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Reference(soap, p), 0) || ::soap_put__wsse__Reference(soap, p, "wsse:Reference", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__Reference * SOAP_FMAC4 soap_get__wsse__Reference(struct soap*, struct _wsse__Reference *, const char*, const char*); - -inline int soap_read__wsse__Reference(struct soap *soap, struct _wsse__Reference *p) -{ - if (p) - { ::soap_default__wsse__Reference(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__Reference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__Reference(struct soap *soap, const char *URL, struct _wsse__Reference *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__Reference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__Reference(struct soap *soap, struct _wsse__Reference *p) -{ - if (::soap_read__wsse__Reference(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__BinarySecurityToken_DEFINED -#define SOAP_TYPE__wsse__BinarySecurityToken_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__BinarySecurityToken(struct soap*, struct _wsse__BinarySecurityToken *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__BinarySecurityToken(struct soap*, const struct _wsse__BinarySecurityToken *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__BinarySecurityToken(struct soap*, const char*, int, const struct _wsse__BinarySecurityToken *, const char*); -SOAP_FMAC3 struct _wsse__BinarySecurityToken * SOAP_FMAC4 soap_in__wsse__BinarySecurityToken(struct soap*, const char*, struct _wsse__BinarySecurityToken *, const char*); -SOAP_FMAC1 struct _wsse__BinarySecurityToken * SOAP_FMAC2 soap_instantiate__wsse__BinarySecurityToken(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__BinarySecurityToken * soap_new__wsse__BinarySecurityToken(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__BinarySecurityToken(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__BinarySecurityToken * soap_new_req__wsse__BinarySecurityToken( - struct soap *soap) -{ - struct _wsse__BinarySecurityToken *_p = ::soap_new__wsse__BinarySecurityToken(soap); - if (_p) - { ::soap_default__wsse__BinarySecurityToken(soap, _p); - } - return _p; -} - -inline struct _wsse__BinarySecurityToken * soap_new_set__wsse__BinarySecurityToken( - struct soap *soap, - char *__item, - char *wsu__Id, - char *ValueType, - char *EncodingType) -{ - struct _wsse__BinarySecurityToken *_p = ::soap_new__wsse__BinarySecurityToken(soap); - if (_p) - { ::soap_default__wsse__BinarySecurityToken(soap, _p); - _p->__item = __item; - _p->wsu__Id = wsu__Id; - _p->ValueType = ValueType; - _p->EncodingType = EncodingType; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__BinarySecurityToken(struct soap*, const struct _wsse__BinarySecurityToken *, const char*, const char*); - -inline int soap_write__wsse__BinarySecurityToken(struct soap *soap, struct _wsse__BinarySecurityToken const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__BinarySecurityToken(soap, p), 0) || ::soap_put__wsse__BinarySecurityToken(soap, p, "wsse:BinarySecurityToken", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__BinarySecurityToken(struct soap *soap, const char *URL, struct _wsse__BinarySecurityToken const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__BinarySecurityToken(soap, p), 0) || ::soap_put__wsse__BinarySecurityToken(soap, p, "wsse:BinarySecurityToken", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__BinarySecurityToken(struct soap *soap, const char *URL, struct _wsse__BinarySecurityToken const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__BinarySecurityToken(soap, p), 0) || ::soap_put__wsse__BinarySecurityToken(soap, p, "wsse:BinarySecurityToken", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__BinarySecurityToken(struct soap *soap, const char *URL, struct _wsse__BinarySecurityToken const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__BinarySecurityToken(soap, p), 0) || ::soap_put__wsse__BinarySecurityToken(soap, p, "wsse:BinarySecurityToken", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__BinarySecurityToken * SOAP_FMAC4 soap_get__wsse__BinarySecurityToken(struct soap*, struct _wsse__BinarySecurityToken *, const char*, const char*); - -inline int soap_read__wsse__BinarySecurityToken(struct soap *soap, struct _wsse__BinarySecurityToken *p) -{ - if (p) - { ::soap_default__wsse__BinarySecurityToken(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__BinarySecurityToken(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__BinarySecurityToken(struct soap *soap, const char *URL, struct _wsse__BinarySecurityToken *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__BinarySecurityToken(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__BinarySecurityToken(struct soap *soap, struct _wsse__BinarySecurityToken *p) -{ - if (::soap_read__wsse__BinarySecurityToken(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__Password_DEFINED -#define SOAP_TYPE__wsse__Password_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__Password(struct soap*, struct _wsse__Password *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__Password(struct soap*, const struct _wsse__Password *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__Password(struct soap*, const char*, int, const struct _wsse__Password *, const char*); -SOAP_FMAC3 struct _wsse__Password * SOAP_FMAC4 soap_in__wsse__Password(struct soap*, const char*, struct _wsse__Password *, const char*); -SOAP_FMAC1 struct _wsse__Password * SOAP_FMAC2 soap_instantiate__wsse__Password(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__Password * soap_new__wsse__Password(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__Password(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__Password * soap_new_req__wsse__Password( - struct soap *soap) -{ - struct _wsse__Password *_p = ::soap_new__wsse__Password(soap); - if (_p) - { ::soap_default__wsse__Password(soap, _p); - } - return _p; -} - -inline struct _wsse__Password * soap_new_set__wsse__Password( - struct soap *soap, - char *__item, - char *Type) -{ - struct _wsse__Password *_p = ::soap_new__wsse__Password(soap); - if (_p) - { ::soap_default__wsse__Password(soap, _p); - _p->__item = __item; - _p->Type = Type; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__Password(struct soap*, const struct _wsse__Password *, const char*, const char*); - -inline int soap_write__wsse__Password(struct soap *soap, struct _wsse__Password const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__Password(soap, p), 0) || ::soap_put__wsse__Password(soap, p, "wsse:Password", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__Password(struct soap *soap, const char *URL, struct _wsse__Password const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Password(soap, p), 0) || ::soap_put__wsse__Password(soap, p, "wsse:Password", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__Password(struct soap *soap, const char *URL, struct _wsse__Password const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Password(soap, p), 0) || ::soap_put__wsse__Password(soap, p, "wsse:Password", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__Password(struct soap *soap, const char *URL, struct _wsse__Password const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__Password(soap, p), 0) || ::soap_put__wsse__Password(soap, p, "wsse:Password", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__Password * SOAP_FMAC4 soap_get__wsse__Password(struct soap*, struct _wsse__Password *, const char*, const char*); - -inline int soap_read__wsse__Password(struct soap *soap, struct _wsse__Password *p) -{ - if (p) - { ::soap_default__wsse__Password(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__Password(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__Password(struct soap *soap, const char *URL, struct _wsse__Password *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__Password(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__Password(struct soap *soap, struct _wsse__Password *p) -{ - if (::soap_read__wsse__Password(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsse__UsernameToken_DEFINED -#define SOAP_TYPE__wsse__UsernameToken_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsse__UsernameToken(struct soap*, struct _wsse__UsernameToken *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsse__UsernameToken(struct soap*, const struct _wsse__UsernameToken *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsse__UsernameToken(struct soap*, const char*, int, const struct _wsse__UsernameToken *, const char*); -SOAP_FMAC3 struct _wsse__UsernameToken * SOAP_FMAC4 soap_in__wsse__UsernameToken(struct soap*, const char*, struct _wsse__UsernameToken *, const char*); -SOAP_FMAC1 struct _wsse__UsernameToken * SOAP_FMAC2 soap_instantiate__wsse__UsernameToken(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsse__UsernameToken * soap_new__wsse__UsernameToken(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsse__UsernameToken(soap, n, NULL, NULL, NULL); -} - -inline struct _wsse__UsernameToken * soap_new_req__wsse__UsernameToken( - struct soap *soap) -{ - struct _wsse__UsernameToken *_p = ::soap_new__wsse__UsernameToken(soap); - if (_p) - { ::soap_default__wsse__UsernameToken(soap, _p); - } - return _p; -} - -inline struct _wsse__UsernameToken * soap_new_set__wsse__UsernameToken( - struct soap *soap, - char *Username, - struct _wsse__Password *Password, - struct wsse__EncodedString *Nonce, - char *Salt, - unsigned int *Iteration, - char *wsu__Created, - char *wsu__Id) -{ - struct _wsse__UsernameToken *_p = ::soap_new__wsse__UsernameToken(soap); - if (_p) - { ::soap_default__wsse__UsernameToken(soap, _p); - _p->Username = Username; - _p->Password = Password; - _p->Nonce = Nonce; - _p->Salt = Salt; - _p->Iteration = Iteration; - _p->wsu__Created = wsu__Created; - _p->wsu__Id = wsu__Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsse__UsernameToken(struct soap*, const struct _wsse__UsernameToken *, const char*, const char*); - -inline int soap_write__wsse__UsernameToken(struct soap *soap, struct _wsse__UsernameToken const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsse__UsernameToken(soap, p), 0) || ::soap_put__wsse__UsernameToken(soap, p, "wsse:UsernameToken", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsse__UsernameToken(struct soap *soap, const char *URL, struct _wsse__UsernameToken const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__UsernameToken(soap, p), 0) || ::soap_put__wsse__UsernameToken(soap, p, "wsse:UsernameToken", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsse__UsernameToken(struct soap *soap, const char *URL, struct _wsse__UsernameToken const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__UsernameToken(soap, p), 0) || ::soap_put__wsse__UsernameToken(soap, p, "wsse:UsernameToken", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsse__UsernameToken(struct soap *soap, const char *URL, struct _wsse__UsernameToken const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsse__UsernameToken(soap, p), 0) || ::soap_put__wsse__UsernameToken(soap, p, "wsse:UsernameToken", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsse__UsernameToken * SOAP_FMAC4 soap_get__wsse__UsernameToken(struct soap*, struct _wsse__UsernameToken *, const char*, const char*); - -inline int soap_read__wsse__UsernameToken(struct soap *soap, struct _wsse__UsernameToken *p) -{ - if (p) - { ::soap_default__wsse__UsernameToken(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsse__UsernameToken(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsse__UsernameToken(struct soap *soap, const char *URL, struct _wsse__UsernameToken *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsse__UsernameToken(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsse__UsernameToken(struct soap *soap, struct _wsse__UsernameToken *p) -{ - if (::soap_read__wsse__UsernameToken(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsse__EncodedString_DEFINED -#define SOAP_TYPE_wsse__EncodedString_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsse__EncodedString(struct soap*, struct wsse__EncodedString *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsse__EncodedString(struct soap*, const struct wsse__EncodedString *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsse__EncodedString(struct soap*, const char*, int, const struct wsse__EncodedString *, const char*); -SOAP_FMAC3 struct wsse__EncodedString * SOAP_FMAC4 soap_in_wsse__EncodedString(struct soap*, const char*, struct wsse__EncodedString *, const char*); -SOAP_FMAC1 struct wsse__EncodedString * SOAP_FMAC2 soap_instantiate_wsse__EncodedString(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsse__EncodedString * soap_new_wsse__EncodedString(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsse__EncodedString(soap, n, NULL, NULL, NULL); -} - -inline struct wsse__EncodedString * soap_new_req_wsse__EncodedString( - struct soap *soap) -{ - struct wsse__EncodedString *_p = ::soap_new_wsse__EncodedString(soap); - if (_p) - { ::soap_default_wsse__EncodedString(soap, _p); - } - return _p; -} - -inline struct wsse__EncodedString * soap_new_set_wsse__EncodedString( - struct soap *soap, - char *__item, - char *EncodingType, - char *wsu__Id) -{ - struct wsse__EncodedString *_p = ::soap_new_wsse__EncodedString(soap); - if (_p) - { ::soap_default_wsse__EncodedString(soap, _p); - _p->__item = __item; - _p->EncodingType = EncodingType; - _p->wsu__Id = wsu__Id; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsse__EncodedString(struct soap*, const struct wsse__EncodedString *, const char*, const char*); - -inline int soap_write_wsse__EncodedString(struct soap *soap, struct wsse__EncodedString const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsse__EncodedString(soap, p), 0) || ::soap_put_wsse__EncodedString(soap, p, "wsse:EncodedString", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsse__EncodedString(struct soap *soap, const char *URL, struct wsse__EncodedString const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsse__EncodedString(soap, p), 0) || ::soap_put_wsse__EncodedString(soap, p, "wsse:EncodedString", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsse__EncodedString(struct soap *soap, const char *URL, struct wsse__EncodedString const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsse__EncodedString(soap, p), 0) || ::soap_put_wsse__EncodedString(soap, p, "wsse:EncodedString", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsse__EncodedString(struct soap *soap, const char *URL, struct wsse__EncodedString const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsse__EncodedString(soap, p), 0) || ::soap_put_wsse__EncodedString(soap, p, "wsse:EncodedString", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsse__EncodedString * SOAP_FMAC4 soap_get_wsse__EncodedString(struct soap*, struct wsse__EncodedString *, const char*, const char*); - -inline int soap_read_wsse__EncodedString(struct soap *soap, struct wsse__EncodedString *p) -{ - if (p) - { ::soap_default_wsse__EncodedString(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsse__EncodedString(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsse__EncodedString(struct soap *soap, const char *URL, struct wsse__EncodedString *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsse__EncodedString(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsse__EncodedString(struct soap *soap, struct wsse__EncodedString *p) -{ - if (::soap_read_wsse__EncodedString(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__wsu__Timestamp_DEFINED -#define SOAP_TYPE__wsu__Timestamp_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default__wsu__Timestamp(struct soap*, struct _wsu__Timestamp *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsu__Timestamp(struct soap*, const struct _wsu__Timestamp *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsu__Timestamp(struct soap*, const char*, int, const struct _wsu__Timestamp *, const char*); -SOAP_FMAC3 struct _wsu__Timestamp * SOAP_FMAC4 soap_in__wsu__Timestamp(struct soap*, const char*, struct _wsu__Timestamp *, const char*); -SOAP_FMAC1 struct _wsu__Timestamp * SOAP_FMAC2 soap_instantiate__wsu__Timestamp(struct soap*, int, const char*, const char*, size_t*); - -inline struct _wsu__Timestamp * soap_new__wsu__Timestamp(struct soap *soap, int n = -1) -{ - return soap_instantiate__wsu__Timestamp(soap, n, NULL, NULL, NULL); -} - -inline struct _wsu__Timestamp * soap_new_req__wsu__Timestamp( - struct soap *soap) -{ - struct _wsu__Timestamp *_p = ::soap_new__wsu__Timestamp(soap); - if (_p) - { ::soap_default__wsu__Timestamp(soap, _p); - } - return _p; -} - -inline struct _wsu__Timestamp * soap_new_set__wsu__Timestamp( - struct soap *soap, - char *wsu__Id, - char *Created, - char *Expires) -{ - struct _wsu__Timestamp *_p = ::soap_new__wsu__Timestamp(soap); - if (_p) - { ::soap_default__wsu__Timestamp(soap, _p); - _p->wsu__Id = wsu__Id; - _p->Created = Created; - _p->Expires = Expires; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsu__Timestamp(struct soap*, const struct _wsu__Timestamp *, const char*, const char*); - -inline int soap_write__wsu__Timestamp(struct soap *soap, struct _wsu__Timestamp const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsu__Timestamp(soap, p), 0) || ::soap_put__wsu__Timestamp(soap, p, "wsu:Timestamp", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsu__Timestamp(struct soap *soap, const char *URL, struct _wsu__Timestamp const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsu__Timestamp(soap, p), 0) || ::soap_put__wsu__Timestamp(soap, p, "wsu:Timestamp", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsu__Timestamp(struct soap *soap, const char *URL, struct _wsu__Timestamp const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsu__Timestamp(soap, p), 0) || ::soap_put__wsu__Timestamp(soap, p, "wsu:Timestamp", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsu__Timestamp(struct soap *soap, const char *URL, struct _wsu__Timestamp const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsu__Timestamp(soap, p), 0) || ::soap_put__wsu__Timestamp(soap, p, "wsu:Timestamp", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct _wsu__Timestamp * SOAP_FMAC4 soap_get__wsu__Timestamp(struct soap*, struct _wsu__Timestamp *, const char*, const char*); - -inline int soap_read__wsu__Timestamp(struct soap *soap, struct _wsu__Timestamp *p) -{ - if (p) - { ::soap_default__wsu__Timestamp(soap, p); - if (soap_begin_recv(soap) || ::soap_get__wsu__Timestamp(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET__wsu__Timestamp(struct soap *soap, const char *URL, struct _wsu__Timestamp *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read__wsu__Timestamp(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv__wsu__Timestamp(struct soap *soap, struct _wsu__Timestamp *p) -{ - if (::soap_read__wsu__Timestamp(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___wsdd__ResolveMatches_DEFINED -#define SOAP_TYPE___wsdd__ResolveMatches_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__ResolveMatches(struct soap*, struct __wsdd__ResolveMatches *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__ResolveMatches(struct soap*, const struct __wsdd__ResolveMatches *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__ResolveMatches(struct soap*, const char*, int, const struct __wsdd__ResolveMatches *, const char*); -SOAP_FMAC3 struct __wsdd__ResolveMatches * SOAP_FMAC4 soap_in___wsdd__ResolveMatches(struct soap*, const char*, struct __wsdd__ResolveMatches *, const char*); -SOAP_FMAC1 struct __wsdd__ResolveMatches * SOAP_FMAC2 soap_instantiate___wsdd__ResolveMatches(struct soap*, int, const char*, const char*, size_t*); - -inline struct __wsdd__ResolveMatches * soap_new___wsdd__ResolveMatches(struct soap *soap, int n = -1) -{ - return soap_instantiate___wsdd__ResolveMatches(soap, n, NULL, NULL, NULL); -} - -inline struct __wsdd__ResolveMatches * soap_new_req___wsdd__ResolveMatches( - struct soap *soap) -{ - struct __wsdd__ResolveMatches *_p = ::soap_new___wsdd__ResolveMatches(soap); - if (_p) - { ::soap_default___wsdd__ResolveMatches(soap, _p); - } - return _p; -} - -inline struct __wsdd__ResolveMatches * soap_new_set___wsdd__ResolveMatches( - struct soap *soap, - struct wsdd__ResolveMatchesType *wsdd__ResolveMatches) -{ - struct __wsdd__ResolveMatches *_p = ::soap_new___wsdd__ResolveMatches(soap); - if (_p) - { ::soap_default___wsdd__ResolveMatches(soap, _p); - _p->wsdd__ResolveMatches = wsdd__ResolveMatches; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__ResolveMatches(struct soap*, const struct __wsdd__ResolveMatches *, const char*, const char*); - -inline int soap_write___wsdd__ResolveMatches(struct soap *soap, struct __wsdd__ResolveMatches const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___wsdd__ResolveMatches(soap, p), 0) || ::soap_put___wsdd__ResolveMatches(soap, p, "-wsdd:ResolveMatches", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___wsdd__ResolveMatches(struct soap *soap, const char *URL, struct __wsdd__ResolveMatches const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__ResolveMatches(soap, p), 0) || ::soap_put___wsdd__ResolveMatches(soap, p, "-wsdd:ResolveMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___wsdd__ResolveMatches(struct soap *soap, const char *URL, struct __wsdd__ResolveMatches const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__ResolveMatches(soap, p), 0) || ::soap_put___wsdd__ResolveMatches(soap, p, "-wsdd:ResolveMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___wsdd__ResolveMatches(struct soap *soap, const char *URL, struct __wsdd__ResolveMatches const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__ResolveMatches(soap, p), 0) || ::soap_put___wsdd__ResolveMatches(soap, p, "-wsdd:ResolveMatches", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __wsdd__ResolveMatches * SOAP_FMAC4 soap_get___wsdd__ResolveMatches(struct soap*, struct __wsdd__ResolveMatches *, const char*, const char*); - -inline int soap_read___wsdd__ResolveMatches(struct soap *soap, struct __wsdd__ResolveMatches *p) -{ - if (p) - { ::soap_default___wsdd__ResolveMatches(soap, p); - if (soap_begin_recv(soap) || ::soap_get___wsdd__ResolveMatches(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___wsdd__ResolveMatches(struct soap *soap, const char *URL, struct __wsdd__ResolveMatches *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___wsdd__ResolveMatches(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___wsdd__ResolveMatches(struct soap *soap, struct __wsdd__ResolveMatches *p) -{ - if (::soap_read___wsdd__ResolveMatches(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___wsdd__Resolve_DEFINED -#define SOAP_TYPE___wsdd__Resolve_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Resolve(struct soap*, struct __wsdd__Resolve *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Resolve(struct soap*, const struct __wsdd__Resolve *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Resolve(struct soap*, const char*, int, const struct __wsdd__Resolve *, const char*); -SOAP_FMAC3 struct __wsdd__Resolve * SOAP_FMAC4 soap_in___wsdd__Resolve(struct soap*, const char*, struct __wsdd__Resolve *, const char*); -SOAP_FMAC1 struct __wsdd__Resolve * SOAP_FMAC2 soap_instantiate___wsdd__Resolve(struct soap*, int, const char*, const char*, size_t*); - -inline struct __wsdd__Resolve * soap_new___wsdd__Resolve(struct soap *soap, int n = -1) -{ - return soap_instantiate___wsdd__Resolve(soap, n, NULL, NULL, NULL); -} - -inline struct __wsdd__Resolve * soap_new_req___wsdd__Resolve( - struct soap *soap) -{ - struct __wsdd__Resolve *_p = ::soap_new___wsdd__Resolve(soap); - if (_p) - { ::soap_default___wsdd__Resolve(soap, _p); - } - return _p; -} - -inline struct __wsdd__Resolve * soap_new_set___wsdd__Resolve( - struct soap *soap, - struct wsdd__ResolveType *wsdd__Resolve) -{ - struct __wsdd__Resolve *_p = ::soap_new___wsdd__Resolve(soap); - if (_p) - { ::soap_default___wsdd__Resolve(soap, _p); - _p->wsdd__Resolve = wsdd__Resolve; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Resolve(struct soap*, const struct __wsdd__Resolve *, const char*, const char*); - -inline int soap_write___wsdd__Resolve(struct soap *soap, struct __wsdd__Resolve const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___wsdd__Resolve(soap, p), 0) || ::soap_put___wsdd__Resolve(soap, p, "-wsdd:Resolve", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___wsdd__Resolve(struct soap *soap, const char *URL, struct __wsdd__Resolve const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Resolve(soap, p), 0) || ::soap_put___wsdd__Resolve(soap, p, "-wsdd:Resolve", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___wsdd__Resolve(struct soap *soap, const char *URL, struct __wsdd__Resolve const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Resolve(soap, p), 0) || ::soap_put___wsdd__Resolve(soap, p, "-wsdd:Resolve", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___wsdd__Resolve(struct soap *soap, const char *URL, struct __wsdd__Resolve const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Resolve(soap, p), 0) || ::soap_put___wsdd__Resolve(soap, p, "-wsdd:Resolve", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __wsdd__Resolve * SOAP_FMAC4 soap_get___wsdd__Resolve(struct soap*, struct __wsdd__Resolve *, const char*, const char*); - -inline int soap_read___wsdd__Resolve(struct soap *soap, struct __wsdd__Resolve *p) -{ - if (p) - { ::soap_default___wsdd__Resolve(soap, p); - if (soap_begin_recv(soap) || ::soap_get___wsdd__Resolve(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___wsdd__Resolve(struct soap *soap, const char *URL, struct __wsdd__Resolve *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___wsdd__Resolve(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___wsdd__Resolve(struct soap *soap, struct __wsdd__Resolve *p) -{ - if (::soap_read___wsdd__Resolve(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___wsdd__ProbeMatches_DEFINED -#define SOAP_TYPE___wsdd__ProbeMatches_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__ProbeMatches(struct soap*, struct __wsdd__ProbeMatches *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__ProbeMatches(struct soap*, const struct __wsdd__ProbeMatches *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__ProbeMatches(struct soap*, const char*, int, const struct __wsdd__ProbeMatches *, const char*); -SOAP_FMAC3 struct __wsdd__ProbeMatches * SOAP_FMAC4 soap_in___wsdd__ProbeMatches(struct soap*, const char*, struct __wsdd__ProbeMatches *, const char*); -SOAP_FMAC1 struct __wsdd__ProbeMatches * SOAP_FMAC2 soap_instantiate___wsdd__ProbeMatches(struct soap*, int, const char*, const char*, size_t*); - -inline struct __wsdd__ProbeMatches * soap_new___wsdd__ProbeMatches(struct soap *soap, int n = -1) -{ - return soap_instantiate___wsdd__ProbeMatches(soap, n, NULL, NULL, NULL); -} - -inline struct __wsdd__ProbeMatches * soap_new_req___wsdd__ProbeMatches( - struct soap *soap) -{ - struct __wsdd__ProbeMatches *_p = ::soap_new___wsdd__ProbeMatches(soap); - if (_p) - { ::soap_default___wsdd__ProbeMatches(soap, _p); - } - return _p; -} - -inline struct __wsdd__ProbeMatches * soap_new_set___wsdd__ProbeMatches( - struct soap *soap, - struct wsdd__ProbeMatchesType *wsdd__ProbeMatches) -{ - struct __wsdd__ProbeMatches *_p = ::soap_new___wsdd__ProbeMatches(soap); - if (_p) - { ::soap_default___wsdd__ProbeMatches(soap, _p); - _p->wsdd__ProbeMatches = wsdd__ProbeMatches; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__ProbeMatches(struct soap*, const struct __wsdd__ProbeMatches *, const char*, const char*); - -inline int soap_write___wsdd__ProbeMatches(struct soap *soap, struct __wsdd__ProbeMatches const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___wsdd__ProbeMatches(soap, p), 0) || ::soap_put___wsdd__ProbeMatches(soap, p, "-wsdd:ProbeMatches", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___wsdd__ProbeMatches(struct soap *soap, const char *URL, struct __wsdd__ProbeMatches const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__ProbeMatches(soap, p), 0) || ::soap_put___wsdd__ProbeMatches(soap, p, "-wsdd:ProbeMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___wsdd__ProbeMatches(struct soap *soap, const char *URL, struct __wsdd__ProbeMatches const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__ProbeMatches(soap, p), 0) || ::soap_put___wsdd__ProbeMatches(soap, p, "-wsdd:ProbeMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___wsdd__ProbeMatches(struct soap *soap, const char *URL, struct __wsdd__ProbeMatches const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__ProbeMatches(soap, p), 0) || ::soap_put___wsdd__ProbeMatches(soap, p, "-wsdd:ProbeMatches", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __wsdd__ProbeMatches * SOAP_FMAC4 soap_get___wsdd__ProbeMatches(struct soap*, struct __wsdd__ProbeMatches *, const char*, const char*); - -inline int soap_read___wsdd__ProbeMatches(struct soap *soap, struct __wsdd__ProbeMatches *p) -{ - if (p) - { ::soap_default___wsdd__ProbeMatches(soap, p); - if (soap_begin_recv(soap) || ::soap_get___wsdd__ProbeMatches(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___wsdd__ProbeMatches(struct soap *soap, const char *URL, struct __wsdd__ProbeMatches *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___wsdd__ProbeMatches(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___wsdd__ProbeMatches(struct soap *soap, struct __wsdd__ProbeMatches *p) -{ - if (::soap_read___wsdd__ProbeMatches(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___wsdd__Probe_DEFINED -#define SOAP_TYPE___wsdd__Probe_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Probe(struct soap*, struct __wsdd__Probe *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Probe(struct soap*, const struct __wsdd__Probe *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Probe(struct soap*, const char*, int, const struct __wsdd__Probe *, const char*); -SOAP_FMAC3 struct __wsdd__Probe * SOAP_FMAC4 soap_in___wsdd__Probe(struct soap*, const char*, struct __wsdd__Probe *, const char*); -SOAP_FMAC1 struct __wsdd__Probe * SOAP_FMAC2 soap_instantiate___wsdd__Probe(struct soap*, int, const char*, const char*, size_t*); - -inline struct __wsdd__Probe * soap_new___wsdd__Probe(struct soap *soap, int n = -1) -{ - return soap_instantiate___wsdd__Probe(soap, n, NULL, NULL, NULL); -} - -inline struct __wsdd__Probe * soap_new_req___wsdd__Probe( - struct soap *soap) -{ - struct __wsdd__Probe *_p = ::soap_new___wsdd__Probe(soap); - if (_p) - { ::soap_default___wsdd__Probe(soap, _p); - } - return _p; -} - -inline struct __wsdd__Probe * soap_new_set___wsdd__Probe( - struct soap *soap, - struct wsdd__ProbeType *wsdd__Probe) -{ - struct __wsdd__Probe *_p = ::soap_new___wsdd__Probe(soap); - if (_p) - { ::soap_default___wsdd__Probe(soap, _p); - _p->wsdd__Probe = wsdd__Probe; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Probe(struct soap*, const struct __wsdd__Probe *, const char*, const char*); - -inline int soap_write___wsdd__Probe(struct soap *soap, struct __wsdd__Probe const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___wsdd__Probe(soap, p), 0) || ::soap_put___wsdd__Probe(soap, p, "-wsdd:Probe", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___wsdd__Probe(struct soap *soap, const char *URL, struct __wsdd__Probe const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Probe(soap, p), 0) || ::soap_put___wsdd__Probe(soap, p, "-wsdd:Probe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___wsdd__Probe(struct soap *soap, const char *URL, struct __wsdd__Probe const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Probe(soap, p), 0) || ::soap_put___wsdd__Probe(soap, p, "-wsdd:Probe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___wsdd__Probe(struct soap *soap, const char *URL, struct __wsdd__Probe const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Probe(soap, p), 0) || ::soap_put___wsdd__Probe(soap, p, "-wsdd:Probe", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __wsdd__Probe * SOAP_FMAC4 soap_get___wsdd__Probe(struct soap*, struct __wsdd__Probe *, const char*, const char*); - -inline int soap_read___wsdd__Probe(struct soap *soap, struct __wsdd__Probe *p) -{ - if (p) - { ::soap_default___wsdd__Probe(soap, p); - if (soap_begin_recv(soap) || ::soap_get___wsdd__Probe(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___wsdd__Probe(struct soap *soap, const char *URL, struct __wsdd__Probe *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___wsdd__Probe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___wsdd__Probe(struct soap *soap, struct __wsdd__Probe *p) -{ - if (::soap_read___wsdd__Probe(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___wsdd__Bye_DEFINED -#define SOAP_TYPE___wsdd__Bye_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Bye(struct soap*, struct __wsdd__Bye *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Bye(struct soap*, const struct __wsdd__Bye *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Bye(struct soap*, const char*, int, const struct __wsdd__Bye *, const char*); -SOAP_FMAC3 struct __wsdd__Bye * SOAP_FMAC4 soap_in___wsdd__Bye(struct soap*, const char*, struct __wsdd__Bye *, const char*); -SOAP_FMAC1 struct __wsdd__Bye * SOAP_FMAC2 soap_instantiate___wsdd__Bye(struct soap*, int, const char*, const char*, size_t*); - -inline struct __wsdd__Bye * soap_new___wsdd__Bye(struct soap *soap, int n = -1) -{ - return soap_instantiate___wsdd__Bye(soap, n, NULL, NULL, NULL); -} - -inline struct __wsdd__Bye * soap_new_req___wsdd__Bye( - struct soap *soap) -{ - struct __wsdd__Bye *_p = ::soap_new___wsdd__Bye(soap); - if (_p) - { ::soap_default___wsdd__Bye(soap, _p); - } - return _p; -} - -inline struct __wsdd__Bye * soap_new_set___wsdd__Bye( - struct soap *soap, - struct wsdd__ByeType *wsdd__Bye) -{ - struct __wsdd__Bye *_p = ::soap_new___wsdd__Bye(soap); - if (_p) - { ::soap_default___wsdd__Bye(soap, _p); - _p->wsdd__Bye = wsdd__Bye; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Bye(struct soap*, const struct __wsdd__Bye *, const char*, const char*); - -inline int soap_write___wsdd__Bye(struct soap *soap, struct __wsdd__Bye const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___wsdd__Bye(soap, p), 0) || ::soap_put___wsdd__Bye(soap, p, "-wsdd:Bye", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___wsdd__Bye(struct soap *soap, const char *URL, struct __wsdd__Bye const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Bye(soap, p), 0) || ::soap_put___wsdd__Bye(soap, p, "-wsdd:Bye", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___wsdd__Bye(struct soap *soap, const char *URL, struct __wsdd__Bye const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Bye(soap, p), 0) || ::soap_put___wsdd__Bye(soap, p, "-wsdd:Bye", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___wsdd__Bye(struct soap *soap, const char *URL, struct __wsdd__Bye const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Bye(soap, p), 0) || ::soap_put___wsdd__Bye(soap, p, "-wsdd:Bye", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __wsdd__Bye * SOAP_FMAC4 soap_get___wsdd__Bye(struct soap*, struct __wsdd__Bye *, const char*, const char*); - -inline int soap_read___wsdd__Bye(struct soap *soap, struct __wsdd__Bye *p) -{ - if (p) - { ::soap_default___wsdd__Bye(soap, p); - if (soap_begin_recv(soap) || ::soap_get___wsdd__Bye(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___wsdd__Bye(struct soap *soap, const char *URL, struct __wsdd__Bye *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___wsdd__Bye(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___wsdd__Bye(struct soap *soap, struct __wsdd__Bye *p) -{ - if (::soap_read___wsdd__Bye(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE___wsdd__Hello_DEFINED -#define SOAP_TYPE___wsdd__Hello_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default___wsdd__Hello(struct soap*, struct __wsdd__Hello *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___wsdd__Hello(struct soap*, const struct __wsdd__Hello *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out___wsdd__Hello(struct soap*, const char*, int, const struct __wsdd__Hello *, const char*); -SOAP_FMAC3 struct __wsdd__Hello * SOAP_FMAC4 soap_in___wsdd__Hello(struct soap*, const char*, struct __wsdd__Hello *, const char*); -SOAP_FMAC1 struct __wsdd__Hello * SOAP_FMAC2 soap_instantiate___wsdd__Hello(struct soap*, int, const char*, const char*, size_t*); - -inline struct __wsdd__Hello * soap_new___wsdd__Hello(struct soap *soap, int n = -1) -{ - return soap_instantiate___wsdd__Hello(soap, n, NULL, NULL, NULL); -} - -inline struct __wsdd__Hello * soap_new_req___wsdd__Hello( - struct soap *soap) -{ - struct __wsdd__Hello *_p = ::soap_new___wsdd__Hello(soap); - if (_p) - { ::soap_default___wsdd__Hello(soap, _p); - } - return _p; -} - -inline struct __wsdd__Hello * soap_new_set___wsdd__Hello( - struct soap *soap, - struct wsdd__HelloType *wsdd__Hello) -{ - struct __wsdd__Hello *_p = ::soap_new___wsdd__Hello(soap); - if (_p) - { ::soap_default___wsdd__Hello(soap, _p); - _p->wsdd__Hello = wsdd__Hello; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put___wsdd__Hello(struct soap*, const struct __wsdd__Hello *, const char*, const char*); - -inline int soap_write___wsdd__Hello(struct soap *soap, struct __wsdd__Hello const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize___wsdd__Hello(soap, p), 0) || ::soap_put___wsdd__Hello(soap, p, "-wsdd:Hello", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT___wsdd__Hello(struct soap *soap, const char *URL, struct __wsdd__Hello const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Hello(soap, p), 0) || ::soap_put___wsdd__Hello(soap, p, "-wsdd:Hello", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH___wsdd__Hello(struct soap *soap, const char *URL, struct __wsdd__Hello const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Hello(soap, p), 0) || ::soap_put___wsdd__Hello(soap, p, "-wsdd:Hello", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send___wsdd__Hello(struct soap *soap, const char *URL, struct __wsdd__Hello const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___wsdd__Hello(soap, p), 0) || ::soap_put___wsdd__Hello(soap, p, "-wsdd:Hello", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct __wsdd__Hello * SOAP_FMAC4 soap_get___wsdd__Hello(struct soap*, struct __wsdd__Hello *, const char*, const char*); - -inline int soap_read___wsdd__Hello(struct soap *soap, struct __wsdd__Hello *p) -{ - if (p) - { ::soap_default___wsdd__Hello(soap, p); - if (soap_begin_recv(soap) || ::soap_get___wsdd__Hello(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET___wsdd__Hello(struct soap *soap, const char *URL, struct __wsdd__Hello *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read___wsdd__Hello(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv___wsdd__Hello(struct soap *soap, struct __wsdd__Hello *p) -{ - if (::soap_read___wsdd__Hello(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* _wsdd__AppSequence is a typedef synonym of wsdd__AppSequenceType */ - -#ifndef SOAP_TYPE__wsdd__AppSequence_DEFINED -#define SOAP_TYPE__wsdd__AppSequence_DEFINED - -#define soap_default__wsdd__AppSequence soap_default_wsdd__AppSequenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__AppSequenceType(struct soap*, const struct wsdd__AppSequenceType *); - -#define soap_serialize__wsdd__AppSequence soap_serialize_wsdd__AppSequenceType - - -#define soap__wsdd__AppSequence2s soap_wsdd__AppSequenceType2s - - -#define soap_out__wsdd__AppSequence soap_out_wsdd__AppSequenceType - - -#define soap_s2_wsdd__AppSequence soap_s2wsdd__AppSequenceType - - -#define soap_in__wsdd__AppSequence soap_in_wsdd__AppSequenceType - - -#define soap_instantiate__wsdd__AppSequence soap_instantiate_wsdd__AppSequenceType - - -#define soap_new__wsdd__AppSequence soap_new_wsdd__AppSequenceType - - -#define soap_new_req__wsdd__AppSequence soap_new_req_wsdd__AppSequenceType - - -#define soap_new_set__wsdd__AppSequence soap_new_set_wsdd__AppSequenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__AppSequence(struct soap*, const struct wsdd__AppSequenceType *, const char*, const char*); - -inline int soap_write__wsdd__AppSequence(struct soap *soap, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__AppSequence(soap, p), 0) || ::soap_put__wsdd__AppSequence(soap, p, "wsdd:AppSequence", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__AppSequence(struct soap *soap, const char *URL, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__AppSequence(soap, p), 0) || ::soap_put__wsdd__AppSequence(soap, p, "wsdd:AppSequence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__AppSequence(struct soap *soap, const char *URL, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__AppSequence(soap, p), 0) || ::soap_put__wsdd__AppSequence(soap, p, "wsdd:AppSequence", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__AppSequence(struct soap *soap, const char *URL, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__AppSequence(soap, p), 0) || ::soap_put__wsdd__AppSequence(soap, p, "wsdd:AppSequence", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__AppSequence soap_get_wsdd__AppSequenceType - - -#define soap_read__wsdd__AppSequence soap_read_wsdd__AppSequenceType - - -#define soap_GET__wsdd__AppSequence soap_GET_wsdd__AppSequenceType - - -#define soap_POST_recv__wsdd__AppSequence soap_POST_recv_wsdd__AppSequenceType - -#endif -/* _wsdd__Sig is a typedef synonym of wsdd__SigType */ - -#ifndef SOAP_TYPE__wsdd__Sig_DEFINED -#define SOAP_TYPE__wsdd__Sig_DEFINED - -#define soap_default__wsdd__Sig soap_default_wsdd__SigType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__SigType(struct soap*, const struct wsdd__SigType *); - -#define soap_serialize__wsdd__Sig soap_serialize_wsdd__SigType - - -#define soap__wsdd__Sig2s soap_wsdd__SigType2s - - -#define soap_out__wsdd__Sig soap_out_wsdd__SigType - - -#define soap_s2_wsdd__Sig soap_s2wsdd__SigType - - -#define soap_in__wsdd__Sig soap_in_wsdd__SigType - - -#define soap_instantiate__wsdd__Sig soap_instantiate_wsdd__SigType - - -#define soap_new__wsdd__Sig soap_new_wsdd__SigType - - -#define soap_new_req__wsdd__Sig soap_new_req_wsdd__SigType - - -#define soap_new_set__wsdd__Sig soap_new_set_wsdd__SigType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Sig(struct soap*, const struct wsdd__SigType *, const char*, const char*); - -inline int soap_write__wsdd__Sig(struct soap *soap, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__Sig(soap, p), 0) || ::soap_put__wsdd__Sig(soap, p, "wsdd:Sig", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Sig(struct soap *soap, const char *URL, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Sig(soap, p), 0) || ::soap_put__wsdd__Sig(soap, p, "wsdd:Sig", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Sig(struct soap *soap, const char *URL, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Sig(soap, p), 0) || ::soap_put__wsdd__Sig(soap, p, "wsdd:Sig", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Sig(struct soap *soap, const char *URL, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Sig(soap, p), 0) || ::soap_put__wsdd__Sig(soap, p, "wsdd:Sig", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Sig soap_get_wsdd__SigType - - -#define soap_read__wsdd__Sig soap_read_wsdd__SigType - - -#define soap_GET__wsdd__Sig soap_GET_wsdd__SigType - - -#define soap_POST_recv__wsdd__Sig soap_POST_recv_wsdd__SigType - -#endif -/* _wsdd__Security is a typedef synonym of wsdd__SecurityType */ - -#ifndef SOAP_TYPE__wsdd__Security_DEFINED -#define SOAP_TYPE__wsdd__Security_DEFINED - -#define soap_default__wsdd__Security soap_default_wsdd__SecurityType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__SecurityType(struct soap*, const struct wsdd__SecurityType *); - -#define soap_serialize__wsdd__Security soap_serialize_wsdd__SecurityType - - -#define soap__wsdd__Security2s soap_wsdd__SecurityType2s - - -#define soap_out__wsdd__Security soap_out_wsdd__SecurityType - - -#define soap_s2_wsdd__Security soap_s2wsdd__SecurityType - - -#define soap_in__wsdd__Security soap_in_wsdd__SecurityType - - -#define soap_instantiate__wsdd__Security soap_instantiate_wsdd__SecurityType - - -#define soap_new__wsdd__Security soap_new_wsdd__SecurityType - - -#define soap_new_req__wsdd__Security soap_new_req_wsdd__SecurityType - - -#define soap_new_set__wsdd__Security soap_new_set_wsdd__SecurityType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Security(struct soap*, const struct wsdd__SecurityType *, const char*, const char*); - -inline int soap_write__wsdd__Security(struct soap *soap, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__Security(soap, p), 0) || ::soap_put__wsdd__Security(soap, p, "wsdd:Security", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Security(struct soap *soap, const char *URL, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Security(soap, p), 0) || ::soap_put__wsdd__Security(soap, p, "wsdd:Security", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Security(struct soap *soap, const char *URL, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Security(soap, p), 0) || ::soap_put__wsdd__Security(soap, p, "wsdd:Security", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Security(struct soap *soap, const char *URL, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Security(soap, p), 0) || ::soap_put__wsdd__Security(soap, p, "wsdd:Security", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Security soap_get_wsdd__SecurityType - - -#define soap_read__wsdd__Security soap_read_wsdd__SecurityType - - -#define soap_GET__wsdd__Security soap_GET_wsdd__SecurityType - - -#define soap_POST_recv__wsdd__Security soap_POST_recv_wsdd__SecurityType - -#endif -/* _wsdd__Scopes is a typedef synonym of wsdd__ScopesType */ - -#ifndef SOAP_TYPE__wsdd__Scopes_DEFINED -#define SOAP_TYPE__wsdd__Scopes_DEFINED - -#define soap_default__wsdd__Scopes soap_default_wsdd__ScopesType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ScopesType(struct soap*, const struct wsdd__ScopesType *); - -#define soap_serialize__wsdd__Scopes soap_serialize_wsdd__ScopesType - - -#define soap__wsdd__Scopes2s soap_wsdd__ScopesType2s - - -#define soap_out__wsdd__Scopes soap_out_wsdd__ScopesType - - -#define soap_s2_wsdd__Scopes soap_s2wsdd__ScopesType - - -#define soap_in__wsdd__Scopes soap_in_wsdd__ScopesType - - -#define soap_instantiate__wsdd__Scopes soap_instantiate_wsdd__ScopesType - - -#define soap_new__wsdd__Scopes soap_new_wsdd__ScopesType - - -#define soap_new_req__wsdd__Scopes soap_new_req_wsdd__ScopesType - - -#define soap_new_set__wsdd__Scopes soap_new_set_wsdd__ScopesType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Scopes(struct soap*, const struct wsdd__ScopesType *, const char*, const char*); - -inline int soap_write__wsdd__Scopes(struct soap *soap, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__Scopes(soap, p), 0) || ::soap_put__wsdd__Scopes(soap, p, "wsdd:Scopes", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Scopes(struct soap *soap, const char *URL, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Scopes(soap, p), 0) || ::soap_put__wsdd__Scopes(soap, p, "wsdd:Scopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Scopes(struct soap *soap, const char *URL, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Scopes(soap, p), 0) || ::soap_put__wsdd__Scopes(soap, p, "wsdd:Scopes", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Scopes(struct soap *soap, const char *URL, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Scopes(soap, p), 0) || ::soap_put__wsdd__Scopes(soap, p, "wsdd:Scopes", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Scopes soap_get_wsdd__ScopesType - - -#define soap_read__wsdd__Scopes soap_read_wsdd__ScopesType - - -#define soap_GET__wsdd__Scopes soap_GET_wsdd__ScopesType - - -#define soap_POST_recv__wsdd__Scopes soap_POST_recv_wsdd__ScopesType - -#endif -/* _wsdd__ResolveMatches is a typedef synonym of wsdd__ResolveMatchesType */ - -#ifndef SOAP_TYPE__wsdd__ResolveMatches_DEFINED -#define SOAP_TYPE__wsdd__ResolveMatches_DEFINED - -#define soap_default__wsdd__ResolveMatches soap_default_wsdd__ResolveMatchesType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveMatchesType(struct soap*, const struct wsdd__ResolveMatchesType *); - -#define soap_serialize__wsdd__ResolveMatches soap_serialize_wsdd__ResolveMatchesType - - -#define soap__wsdd__ResolveMatches2s soap_wsdd__ResolveMatchesType2s - - -#define soap_out__wsdd__ResolveMatches soap_out_wsdd__ResolveMatchesType - - -#define soap_s2_wsdd__ResolveMatches soap_s2wsdd__ResolveMatchesType - - -#define soap_in__wsdd__ResolveMatches soap_in_wsdd__ResolveMatchesType - - -#define soap_instantiate__wsdd__ResolveMatches soap_instantiate_wsdd__ResolveMatchesType - - -#define soap_new__wsdd__ResolveMatches soap_new_wsdd__ResolveMatchesType - - -#define soap_new_req__wsdd__ResolveMatches soap_new_req_wsdd__ResolveMatchesType - - -#define soap_new_set__wsdd__ResolveMatches soap_new_set_wsdd__ResolveMatchesType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__ResolveMatches(struct soap*, const struct wsdd__ResolveMatchesType *, const char*, const char*); - -inline int soap_write__wsdd__ResolveMatches(struct soap *soap, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__ResolveMatches(soap, p), 0) || ::soap_put__wsdd__ResolveMatches(soap, p, "wsdd:ResolveMatches", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__ResolveMatches(struct soap *soap, const char *URL, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__ResolveMatches(soap, p), 0) || ::soap_put__wsdd__ResolveMatches(soap, p, "wsdd:ResolveMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__ResolveMatches(struct soap *soap, const char *URL, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__ResolveMatches(soap, p), 0) || ::soap_put__wsdd__ResolveMatches(soap, p, "wsdd:ResolveMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__ResolveMatches(struct soap *soap, const char *URL, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__ResolveMatches(soap, p), 0) || ::soap_put__wsdd__ResolveMatches(soap, p, "wsdd:ResolveMatches", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__ResolveMatches soap_get_wsdd__ResolveMatchesType - - -#define soap_read__wsdd__ResolveMatches soap_read_wsdd__ResolveMatchesType - - -#define soap_GET__wsdd__ResolveMatches soap_GET_wsdd__ResolveMatchesType - - -#define soap_POST_recv__wsdd__ResolveMatches soap_POST_recv_wsdd__ResolveMatchesType - -#endif -/* _wsdd__Resolve is a typedef synonym of wsdd__ResolveType */ - -#ifndef SOAP_TYPE__wsdd__Resolve_DEFINED -#define SOAP_TYPE__wsdd__Resolve_DEFINED - -#define soap_default__wsdd__Resolve soap_default_wsdd__ResolveType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveType(struct soap*, const struct wsdd__ResolveType *); - -#define soap_serialize__wsdd__Resolve soap_serialize_wsdd__ResolveType - - -#define soap__wsdd__Resolve2s soap_wsdd__ResolveType2s - - -#define soap_out__wsdd__Resolve soap_out_wsdd__ResolveType - - -#define soap_s2_wsdd__Resolve soap_s2wsdd__ResolveType - - -#define soap_in__wsdd__Resolve soap_in_wsdd__ResolveType - - -#define soap_instantiate__wsdd__Resolve soap_instantiate_wsdd__ResolveType - - -#define soap_new__wsdd__Resolve soap_new_wsdd__ResolveType - - -#define soap_new_req__wsdd__Resolve soap_new_req_wsdd__ResolveType - - -#define soap_new_set__wsdd__Resolve soap_new_set_wsdd__ResolveType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Resolve(struct soap*, const struct wsdd__ResolveType *, const char*, const char*); - -inline int soap_write__wsdd__Resolve(struct soap *soap, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__Resolve(soap, p), 0) || ::soap_put__wsdd__Resolve(soap, p, "wsdd:Resolve", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Resolve(struct soap *soap, const char *URL, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Resolve(soap, p), 0) || ::soap_put__wsdd__Resolve(soap, p, "wsdd:Resolve", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Resolve(struct soap *soap, const char *URL, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Resolve(soap, p), 0) || ::soap_put__wsdd__Resolve(soap, p, "wsdd:Resolve", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Resolve(struct soap *soap, const char *URL, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Resolve(soap, p), 0) || ::soap_put__wsdd__Resolve(soap, p, "wsdd:Resolve", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Resolve soap_get_wsdd__ResolveType - - -#define soap_read__wsdd__Resolve soap_read_wsdd__ResolveType - - -#define soap_GET__wsdd__Resolve soap_GET_wsdd__ResolveType - - -#define soap_POST_recv__wsdd__Resolve soap_POST_recv_wsdd__ResolveType - -#endif -/* _wsdd__ProbeMatches is a typedef synonym of wsdd__ProbeMatchesType */ - -#ifndef SOAP_TYPE__wsdd__ProbeMatches_DEFINED -#define SOAP_TYPE__wsdd__ProbeMatches_DEFINED - -#define soap_default__wsdd__ProbeMatches soap_default_wsdd__ProbeMatchesType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeMatchesType(struct soap*, const struct wsdd__ProbeMatchesType *); - -#define soap_serialize__wsdd__ProbeMatches soap_serialize_wsdd__ProbeMatchesType - - -#define soap__wsdd__ProbeMatches2s soap_wsdd__ProbeMatchesType2s - - -#define soap_out__wsdd__ProbeMatches soap_out_wsdd__ProbeMatchesType - - -#define soap_s2_wsdd__ProbeMatches soap_s2wsdd__ProbeMatchesType - - -#define soap_in__wsdd__ProbeMatches soap_in_wsdd__ProbeMatchesType - - -#define soap_instantiate__wsdd__ProbeMatches soap_instantiate_wsdd__ProbeMatchesType - - -#define soap_new__wsdd__ProbeMatches soap_new_wsdd__ProbeMatchesType - - -#define soap_new_req__wsdd__ProbeMatches soap_new_req_wsdd__ProbeMatchesType - - -#define soap_new_set__wsdd__ProbeMatches soap_new_set_wsdd__ProbeMatchesType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__ProbeMatches(struct soap*, const struct wsdd__ProbeMatchesType *, const char*, const char*); - -inline int soap_write__wsdd__ProbeMatches(struct soap *soap, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__ProbeMatches(soap, p), 0) || ::soap_put__wsdd__ProbeMatches(soap, p, "wsdd:ProbeMatches", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__ProbeMatches(struct soap *soap, const char *URL, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__ProbeMatches(soap, p), 0) || ::soap_put__wsdd__ProbeMatches(soap, p, "wsdd:ProbeMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__ProbeMatches(struct soap *soap, const char *URL, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__ProbeMatches(soap, p), 0) || ::soap_put__wsdd__ProbeMatches(soap, p, "wsdd:ProbeMatches", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__ProbeMatches(struct soap *soap, const char *URL, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__ProbeMatches(soap, p), 0) || ::soap_put__wsdd__ProbeMatches(soap, p, "wsdd:ProbeMatches", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__ProbeMatches soap_get_wsdd__ProbeMatchesType - - -#define soap_read__wsdd__ProbeMatches soap_read_wsdd__ProbeMatchesType - - -#define soap_GET__wsdd__ProbeMatches soap_GET_wsdd__ProbeMatchesType - - -#define soap_POST_recv__wsdd__ProbeMatches soap_POST_recv_wsdd__ProbeMatchesType - -#endif -/* _wsdd__Probe is a typedef synonym of wsdd__ProbeType */ - -#ifndef SOAP_TYPE__wsdd__Probe_DEFINED -#define SOAP_TYPE__wsdd__Probe_DEFINED - -#define soap_default__wsdd__Probe soap_default_wsdd__ProbeType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeType(struct soap*, const struct wsdd__ProbeType *); - -#define soap_serialize__wsdd__Probe soap_serialize_wsdd__ProbeType - - -#define soap__wsdd__Probe2s soap_wsdd__ProbeType2s - - -#define soap_out__wsdd__Probe soap_out_wsdd__ProbeType - - -#define soap_s2_wsdd__Probe soap_s2wsdd__ProbeType - - -#define soap_in__wsdd__Probe soap_in_wsdd__ProbeType - - -#define soap_instantiate__wsdd__Probe soap_instantiate_wsdd__ProbeType - - -#define soap_new__wsdd__Probe soap_new_wsdd__ProbeType - - -#define soap_new_req__wsdd__Probe soap_new_req_wsdd__ProbeType - - -#define soap_new_set__wsdd__Probe soap_new_set_wsdd__ProbeType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Probe(struct soap*, const struct wsdd__ProbeType *, const char*, const char*); - -inline int soap_write__wsdd__Probe(struct soap *soap, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__Probe(soap, p), 0) || ::soap_put__wsdd__Probe(soap, p, "wsdd:Probe", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Probe(struct soap *soap, const char *URL, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Probe(soap, p), 0) || ::soap_put__wsdd__Probe(soap, p, "wsdd:Probe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Probe(struct soap *soap, const char *URL, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Probe(soap, p), 0) || ::soap_put__wsdd__Probe(soap, p, "wsdd:Probe", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Probe(struct soap *soap, const char *URL, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Probe(soap, p), 0) || ::soap_put__wsdd__Probe(soap, p, "wsdd:Probe", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Probe soap_get_wsdd__ProbeType - - -#define soap_read__wsdd__Probe soap_read_wsdd__ProbeType - - -#define soap_GET__wsdd__Probe soap_GET_wsdd__ProbeType - - -#define soap_POST_recv__wsdd__Probe soap_POST_recv_wsdd__ProbeType - -#endif -/* _wsdd__Bye is a typedef synonym of wsdd__ByeType */ - -#ifndef SOAP_TYPE__wsdd__Bye_DEFINED -#define SOAP_TYPE__wsdd__Bye_DEFINED - -#define soap_default__wsdd__Bye soap_default_wsdd__ByeType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ByeType(struct soap*, const struct wsdd__ByeType *); - -#define soap_serialize__wsdd__Bye soap_serialize_wsdd__ByeType - - -#define soap__wsdd__Bye2s soap_wsdd__ByeType2s - - -#define soap_out__wsdd__Bye soap_out_wsdd__ByeType - - -#define soap_s2_wsdd__Bye soap_s2wsdd__ByeType - - -#define soap_in__wsdd__Bye soap_in_wsdd__ByeType - - -#define soap_instantiate__wsdd__Bye soap_instantiate_wsdd__ByeType - - -#define soap_new__wsdd__Bye soap_new_wsdd__ByeType - - -#define soap_new_req__wsdd__Bye soap_new_req_wsdd__ByeType - - -#define soap_new_set__wsdd__Bye soap_new_set_wsdd__ByeType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Bye(struct soap*, const struct wsdd__ByeType *, const char*, const char*); - -inline int soap_write__wsdd__Bye(struct soap *soap, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__Bye(soap, p), 0) || ::soap_put__wsdd__Bye(soap, p, "wsdd:Bye", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Bye(struct soap *soap, const char *URL, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Bye(soap, p), 0) || ::soap_put__wsdd__Bye(soap, p, "wsdd:Bye", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Bye(struct soap *soap, const char *URL, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Bye(soap, p), 0) || ::soap_put__wsdd__Bye(soap, p, "wsdd:Bye", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Bye(struct soap *soap, const char *URL, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Bye(soap, p), 0) || ::soap_put__wsdd__Bye(soap, p, "wsdd:Bye", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Bye soap_get_wsdd__ByeType - - -#define soap_read__wsdd__Bye soap_read_wsdd__ByeType - - -#define soap_GET__wsdd__Bye soap_GET_wsdd__ByeType - - -#define soap_POST_recv__wsdd__Bye soap_POST_recv_wsdd__ByeType - -#endif -/* _wsdd__Hello is a typedef synonym of wsdd__HelloType */ - -#ifndef SOAP_TYPE__wsdd__Hello_DEFINED -#define SOAP_TYPE__wsdd__Hello_DEFINED - -#define soap_default__wsdd__Hello soap_default_wsdd__HelloType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__HelloType(struct soap*, const struct wsdd__HelloType *); - -#define soap_serialize__wsdd__Hello soap_serialize_wsdd__HelloType - - -#define soap__wsdd__Hello2s soap_wsdd__HelloType2s - - -#define soap_out__wsdd__Hello soap_out_wsdd__HelloType - - -#define soap_s2_wsdd__Hello soap_s2wsdd__HelloType - - -#define soap_in__wsdd__Hello soap_in_wsdd__HelloType - - -#define soap_instantiate__wsdd__Hello soap_instantiate_wsdd__HelloType - - -#define soap_new__wsdd__Hello soap_new_wsdd__HelloType - - -#define soap_new_req__wsdd__Hello soap_new_req_wsdd__HelloType - - -#define soap_new_set__wsdd__Hello soap_new_set_wsdd__HelloType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Hello(struct soap*, const struct wsdd__HelloType *, const char*, const char*); - -inline int soap_write__wsdd__Hello(struct soap *soap, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsdd__Hello(soap, p), 0) || ::soap_put__wsdd__Hello(soap, p, "wsdd:Hello", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Hello(struct soap *soap, const char *URL, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Hello(soap, p), 0) || ::soap_put__wsdd__Hello(soap, p, "wsdd:Hello", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Hello(struct soap *soap, const char *URL, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Hello(soap, p), 0) || ::soap_put__wsdd__Hello(soap, p, "wsdd:Hello", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Hello(struct soap *soap, const char *URL, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsdd__Hello(soap, p), 0) || ::soap_put__wsdd__Hello(soap, p, "wsdd:Hello", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Hello soap_get_wsdd__HelloType - - -#define soap_read__wsdd__Hello soap_read_wsdd__HelloType - - -#define soap_GET__wsdd__Hello soap_GET_wsdd__HelloType - - -#define soap_POST_recv__wsdd__Hello soap_POST_recv_wsdd__HelloType - -#endif - -#ifndef SOAP_TYPE_wsdd__AppSequenceType_DEFINED -#define SOAP_TYPE_wsdd__AppSequenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__AppSequenceType(struct soap*, struct wsdd__AppSequenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__AppSequenceType(struct soap*, const struct wsdd__AppSequenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__AppSequenceType(struct soap*, const char*, int, const struct wsdd__AppSequenceType *, const char*); -SOAP_FMAC3 struct wsdd__AppSequenceType * SOAP_FMAC4 soap_in_wsdd__AppSequenceType(struct soap*, const char*, struct wsdd__AppSequenceType *, const char*); -SOAP_FMAC1 struct wsdd__AppSequenceType * SOAP_FMAC2 soap_instantiate_wsdd__AppSequenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__AppSequenceType * soap_new_wsdd__AppSequenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__AppSequenceType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__AppSequenceType * soap_new_req_wsdd__AppSequenceType( - struct soap *soap, - unsigned int InstanceId, - unsigned int MessageNumber) -{ - struct wsdd__AppSequenceType *_p = ::soap_new_wsdd__AppSequenceType(soap); - if (_p) - { ::soap_default_wsdd__AppSequenceType(soap, _p); - _p->InstanceId = InstanceId; - _p->MessageNumber = MessageNumber; - } - return _p; -} - -inline struct wsdd__AppSequenceType * soap_new_set_wsdd__AppSequenceType( - struct soap *soap, - unsigned int InstanceId, - char *SequenceId, - unsigned int MessageNumber) -{ - struct wsdd__AppSequenceType *_p = ::soap_new_wsdd__AppSequenceType(soap); - if (_p) - { ::soap_default_wsdd__AppSequenceType(soap, _p); - _p->InstanceId = InstanceId; - _p->SequenceId = SequenceId; - _p->MessageNumber = MessageNumber; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__AppSequenceType(struct soap*, const struct wsdd__AppSequenceType *, const char*, const char*); - -inline int soap_write_wsdd__AppSequenceType(struct soap *soap, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__AppSequenceType(soap, p), 0) || ::soap_put_wsdd__AppSequenceType(soap, p, "wsdd:AppSequenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__AppSequenceType(struct soap *soap, const char *URL, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__AppSequenceType(soap, p), 0) || ::soap_put_wsdd__AppSequenceType(soap, p, "wsdd:AppSequenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__AppSequenceType(struct soap *soap, const char *URL, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__AppSequenceType(soap, p), 0) || ::soap_put_wsdd__AppSequenceType(soap, p, "wsdd:AppSequenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__AppSequenceType(struct soap *soap, const char *URL, struct wsdd__AppSequenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__AppSequenceType(soap, p), 0) || ::soap_put_wsdd__AppSequenceType(soap, p, "wsdd:AppSequenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__AppSequenceType * SOAP_FMAC4 soap_get_wsdd__AppSequenceType(struct soap*, struct wsdd__AppSequenceType *, const char*, const char*); - -inline int soap_read_wsdd__AppSequenceType(struct soap *soap, struct wsdd__AppSequenceType *p) -{ - if (p) - { ::soap_default_wsdd__AppSequenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__AppSequenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__AppSequenceType(struct soap *soap, const char *URL, struct wsdd__AppSequenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__AppSequenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__AppSequenceType(struct soap *soap, struct wsdd__AppSequenceType *p) -{ - if (::soap_read_wsdd__AppSequenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__SigType_DEFINED -#define SOAP_TYPE_wsdd__SigType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__SigType(struct soap*, struct wsdd__SigType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__SigType(struct soap*, const struct wsdd__SigType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__SigType(struct soap*, const char*, int, const struct wsdd__SigType *, const char*); -SOAP_FMAC3 struct wsdd__SigType * SOAP_FMAC4 soap_in_wsdd__SigType(struct soap*, const char*, struct wsdd__SigType *, const char*); -SOAP_FMAC1 struct wsdd__SigType * SOAP_FMAC2 soap_instantiate_wsdd__SigType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__SigType * soap_new_wsdd__SigType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__SigType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__SigType * soap_new_req_wsdd__SigType( - struct soap *soap, - char *Scheme, - char *Refs, - char *Sig) -{ - struct wsdd__SigType *_p = ::soap_new_wsdd__SigType(soap); - if (_p) - { ::soap_default_wsdd__SigType(soap, _p); - _p->Scheme = Scheme; - _p->Refs = Refs; - _p->Sig = Sig; - } - return _p; -} - -inline struct wsdd__SigType * soap_new_set_wsdd__SigType( - struct soap *soap, - char *Scheme, - char *KeyId, - char *Refs, - char *Sig) -{ - struct wsdd__SigType *_p = ::soap_new_wsdd__SigType(soap); - if (_p) - { ::soap_default_wsdd__SigType(soap, _p); - _p->Scheme = Scheme; - _p->KeyId = KeyId; - _p->Refs = Refs; - _p->Sig = Sig; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__SigType(struct soap*, const struct wsdd__SigType *, const char*, const char*); - -inline int soap_write_wsdd__SigType(struct soap *soap, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__SigType(soap, p), 0) || ::soap_put_wsdd__SigType(soap, p, "wsdd:SigType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__SigType(struct soap *soap, const char *URL, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__SigType(soap, p), 0) || ::soap_put_wsdd__SigType(soap, p, "wsdd:SigType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__SigType(struct soap *soap, const char *URL, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__SigType(soap, p), 0) || ::soap_put_wsdd__SigType(soap, p, "wsdd:SigType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__SigType(struct soap *soap, const char *URL, struct wsdd__SigType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__SigType(soap, p), 0) || ::soap_put_wsdd__SigType(soap, p, "wsdd:SigType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__SigType * SOAP_FMAC4 soap_get_wsdd__SigType(struct soap*, struct wsdd__SigType *, const char*, const char*); - -inline int soap_read_wsdd__SigType(struct soap *soap, struct wsdd__SigType *p) -{ - if (p) - { ::soap_default_wsdd__SigType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__SigType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__SigType(struct soap *soap, const char *URL, struct wsdd__SigType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__SigType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__SigType(struct soap *soap, struct wsdd__SigType *p) -{ - if (::soap_read_wsdd__SigType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__SecurityType_DEFINED -#define SOAP_TYPE_wsdd__SecurityType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__SecurityType(struct soap*, struct wsdd__SecurityType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__SecurityType(struct soap*, const struct wsdd__SecurityType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__SecurityType(struct soap*, const char*, int, const struct wsdd__SecurityType *, const char*); -SOAP_FMAC3 struct wsdd__SecurityType * SOAP_FMAC4 soap_in_wsdd__SecurityType(struct soap*, const char*, struct wsdd__SecurityType *, const char*); -SOAP_FMAC1 struct wsdd__SecurityType * SOAP_FMAC2 soap_instantiate_wsdd__SecurityType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__SecurityType * soap_new_wsdd__SecurityType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__SecurityType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__SecurityType * soap_new_req_wsdd__SecurityType( - struct soap *soap) -{ - struct wsdd__SecurityType *_p = ::soap_new_wsdd__SecurityType(soap); - if (_p) - { ::soap_default_wsdd__SecurityType(soap, _p); - } - return _p; -} - -inline struct wsdd__SecurityType * soap_new_set_wsdd__SecurityType( - struct soap *soap, - struct wsdd__SigType *Sig) -{ - struct wsdd__SecurityType *_p = ::soap_new_wsdd__SecurityType(soap); - if (_p) - { ::soap_default_wsdd__SecurityType(soap, _p); - _p->Sig = Sig; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__SecurityType(struct soap*, const struct wsdd__SecurityType *, const char*, const char*); - -inline int soap_write_wsdd__SecurityType(struct soap *soap, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__SecurityType(soap, p), 0) || ::soap_put_wsdd__SecurityType(soap, p, "wsdd:SecurityType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__SecurityType(struct soap *soap, const char *URL, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__SecurityType(soap, p), 0) || ::soap_put_wsdd__SecurityType(soap, p, "wsdd:SecurityType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__SecurityType(struct soap *soap, const char *URL, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__SecurityType(soap, p), 0) || ::soap_put_wsdd__SecurityType(soap, p, "wsdd:SecurityType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__SecurityType(struct soap *soap, const char *URL, struct wsdd__SecurityType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__SecurityType(soap, p), 0) || ::soap_put_wsdd__SecurityType(soap, p, "wsdd:SecurityType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__SecurityType * SOAP_FMAC4 soap_get_wsdd__SecurityType(struct soap*, struct wsdd__SecurityType *, const char*, const char*); - -inline int soap_read_wsdd__SecurityType(struct soap *soap, struct wsdd__SecurityType *p) -{ - if (p) - { ::soap_default_wsdd__SecurityType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__SecurityType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__SecurityType(struct soap *soap, const char *URL, struct wsdd__SecurityType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__SecurityType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__SecurityType(struct soap *soap, struct wsdd__SecurityType *p) -{ - if (::soap_read_wsdd__SecurityType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ScopesType_DEFINED -#define SOAP_TYPE_wsdd__ScopesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ScopesType(struct soap*, struct wsdd__ScopesType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ScopesType(struct soap*, const struct wsdd__ScopesType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ScopesType(struct soap*, const char*, int, const struct wsdd__ScopesType *, const char*); -SOAP_FMAC3 struct wsdd__ScopesType * SOAP_FMAC4 soap_in_wsdd__ScopesType(struct soap*, const char*, struct wsdd__ScopesType *, const char*); -SOAP_FMAC1 struct wsdd__ScopesType * SOAP_FMAC2 soap_instantiate_wsdd__ScopesType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ScopesType * soap_new_wsdd__ScopesType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ScopesType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ScopesType * soap_new_req_wsdd__ScopesType( - struct soap *soap) -{ - struct wsdd__ScopesType *_p = ::soap_new_wsdd__ScopesType(soap); - if (_p) - { ::soap_default_wsdd__ScopesType(soap, _p); - } - return _p; -} - -inline struct wsdd__ScopesType * soap_new_set_wsdd__ScopesType( - struct soap *soap, - char *__item, - char *MatchBy) -{ - struct wsdd__ScopesType *_p = ::soap_new_wsdd__ScopesType(soap); - if (_p) - { ::soap_default_wsdd__ScopesType(soap, _p); - _p->__item = __item; - _p->MatchBy = MatchBy; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ScopesType(struct soap*, const struct wsdd__ScopesType *, const char*, const char*); - -inline int soap_write_wsdd__ScopesType(struct soap *soap, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ScopesType(soap, p), 0) || ::soap_put_wsdd__ScopesType(soap, p, "wsdd:ScopesType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ScopesType(struct soap *soap, const char *URL, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ScopesType(soap, p), 0) || ::soap_put_wsdd__ScopesType(soap, p, "wsdd:ScopesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ScopesType(struct soap *soap, const char *URL, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ScopesType(soap, p), 0) || ::soap_put_wsdd__ScopesType(soap, p, "wsdd:ScopesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ScopesType(struct soap *soap, const char *URL, struct wsdd__ScopesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ScopesType(soap, p), 0) || ::soap_put_wsdd__ScopesType(soap, p, "wsdd:ScopesType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ScopesType * SOAP_FMAC4 soap_get_wsdd__ScopesType(struct soap*, struct wsdd__ScopesType *, const char*, const char*); - -inline int soap_read_wsdd__ScopesType(struct soap *soap, struct wsdd__ScopesType *p) -{ - if (p) - { ::soap_default_wsdd__ScopesType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ScopesType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ScopesType(struct soap *soap, const char *URL, struct wsdd__ScopesType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ScopesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ScopesType(struct soap *soap, struct wsdd__ScopesType *p) -{ - if (::soap_read_wsdd__ScopesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ResolveMatchType_DEFINED -#define SOAP_TYPE_wsdd__ResolveMatchType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ResolveMatchType(struct soap*, struct wsdd__ResolveMatchType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveMatchType(struct soap*, const struct wsdd__ResolveMatchType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ResolveMatchType(struct soap*, const char*, int, const struct wsdd__ResolveMatchType *, const char*); -SOAP_FMAC3 struct wsdd__ResolveMatchType * SOAP_FMAC4 soap_in_wsdd__ResolveMatchType(struct soap*, const char*, struct wsdd__ResolveMatchType *, const char*); -SOAP_FMAC1 struct wsdd__ResolveMatchType * SOAP_FMAC2 soap_instantiate_wsdd__ResolveMatchType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ResolveMatchType * soap_new_wsdd__ResolveMatchType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ResolveMatchType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ResolveMatchType * soap_new_req_wsdd__ResolveMatchType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference, - unsigned int MetadataVersion) -{ - struct wsdd__ResolveMatchType *_p = ::soap_new_wsdd__ResolveMatchType(soap); - if (_p) - { ::soap_default_wsdd__ResolveMatchType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - _p->MetadataVersion = MetadataVersion; - } - return _p; -} - -inline struct wsdd__ResolveMatchType * soap_new_set_wsdd__ResolveMatchType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference, - char *Types, - struct wsdd__ScopesType *Scopes, - char *XAddrs, - unsigned int MetadataVersion) -{ - struct wsdd__ResolveMatchType *_p = ::soap_new_wsdd__ResolveMatchType(soap); - if (_p) - { ::soap_default_wsdd__ResolveMatchType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - _p->Types = Types; - _p->Scopes = Scopes; - _p->XAddrs = XAddrs; - _p->MetadataVersion = MetadataVersion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ResolveMatchType(struct soap*, const struct wsdd__ResolveMatchType *, const char*, const char*); - -inline int soap_write_wsdd__ResolveMatchType(struct soap *soap, struct wsdd__ResolveMatchType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ResolveMatchType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchType(soap, p, "wsdd:ResolveMatchType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ResolveMatchType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveMatchType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchType(soap, p, "wsdd:ResolveMatchType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ResolveMatchType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveMatchType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchType(soap, p, "wsdd:ResolveMatchType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ResolveMatchType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveMatchType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchType(soap, p, "wsdd:ResolveMatchType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ResolveMatchType * SOAP_FMAC4 soap_get_wsdd__ResolveMatchType(struct soap*, struct wsdd__ResolveMatchType *, const char*, const char*); - -inline int soap_read_wsdd__ResolveMatchType(struct soap *soap, struct wsdd__ResolveMatchType *p) -{ - if (p) - { ::soap_default_wsdd__ResolveMatchType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ResolveMatchType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ResolveMatchType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ResolveMatchType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ResolveMatchType(struct soap *soap, struct wsdd__ResolveMatchType *p) -{ - if (::soap_read_wsdd__ResolveMatchType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ResolveMatchesType_DEFINED -#define SOAP_TYPE_wsdd__ResolveMatchesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ResolveMatchesType(struct soap*, struct wsdd__ResolveMatchesType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveMatchesType(struct soap*, const struct wsdd__ResolveMatchesType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ResolveMatchesType(struct soap*, const char*, int, const struct wsdd__ResolveMatchesType *, const char*); -SOAP_FMAC3 struct wsdd__ResolveMatchesType * SOAP_FMAC4 soap_in_wsdd__ResolveMatchesType(struct soap*, const char*, struct wsdd__ResolveMatchesType *, const char*); -SOAP_FMAC1 struct wsdd__ResolveMatchesType * SOAP_FMAC2 soap_instantiate_wsdd__ResolveMatchesType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ResolveMatchesType * soap_new_wsdd__ResolveMatchesType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ResolveMatchesType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ResolveMatchesType * soap_new_req_wsdd__ResolveMatchesType( - struct soap *soap) -{ - struct wsdd__ResolveMatchesType *_p = ::soap_new_wsdd__ResolveMatchesType(soap); - if (_p) - { ::soap_default_wsdd__ResolveMatchesType(soap, _p); - } - return _p; -} - -inline struct wsdd__ResolveMatchesType * soap_new_set_wsdd__ResolveMatchesType( - struct soap *soap, - struct wsdd__ResolveMatchType *ResolveMatch) -{ - struct wsdd__ResolveMatchesType *_p = ::soap_new_wsdd__ResolveMatchesType(soap); - if (_p) - { ::soap_default_wsdd__ResolveMatchesType(soap, _p); - _p->ResolveMatch = ResolveMatch; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ResolveMatchesType(struct soap*, const struct wsdd__ResolveMatchesType *, const char*, const char*); - -inline int soap_write_wsdd__ResolveMatchesType(struct soap *soap, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ResolveMatchesType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchesType(soap, p, "wsdd:ResolveMatchesType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ResolveMatchesType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveMatchesType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchesType(soap, p, "wsdd:ResolveMatchesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ResolveMatchesType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveMatchesType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchesType(soap, p, "wsdd:ResolveMatchesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ResolveMatchesType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveMatchesType(soap, p), 0) || ::soap_put_wsdd__ResolveMatchesType(soap, p, "wsdd:ResolveMatchesType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ResolveMatchesType * SOAP_FMAC4 soap_get_wsdd__ResolveMatchesType(struct soap*, struct wsdd__ResolveMatchesType *, const char*, const char*); - -inline int soap_read_wsdd__ResolveMatchesType(struct soap *soap, struct wsdd__ResolveMatchesType *p) -{ - if (p) - { ::soap_default_wsdd__ResolveMatchesType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ResolveMatchesType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ResolveMatchesType(struct soap *soap, const char *URL, struct wsdd__ResolveMatchesType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ResolveMatchesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ResolveMatchesType(struct soap *soap, struct wsdd__ResolveMatchesType *p) -{ - if (::soap_read_wsdd__ResolveMatchesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ResolveType_DEFINED -#define SOAP_TYPE_wsdd__ResolveType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ResolveType(struct soap*, struct wsdd__ResolveType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ResolveType(struct soap*, const struct wsdd__ResolveType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ResolveType(struct soap*, const char*, int, const struct wsdd__ResolveType *, const char*); -SOAP_FMAC3 struct wsdd__ResolveType * SOAP_FMAC4 soap_in_wsdd__ResolveType(struct soap*, const char*, struct wsdd__ResolveType *, const char*); -SOAP_FMAC1 struct wsdd__ResolveType * SOAP_FMAC2 soap_instantiate_wsdd__ResolveType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ResolveType * soap_new_wsdd__ResolveType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ResolveType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ResolveType * soap_new_req_wsdd__ResolveType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference) -{ - struct wsdd__ResolveType *_p = ::soap_new_wsdd__ResolveType(soap); - if (_p) - { ::soap_default_wsdd__ResolveType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - } - return _p; -} - -inline struct wsdd__ResolveType * soap_new_set_wsdd__ResolveType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference) -{ - struct wsdd__ResolveType *_p = ::soap_new_wsdd__ResolveType(soap); - if (_p) - { ::soap_default_wsdd__ResolveType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ResolveType(struct soap*, const struct wsdd__ResolveType *, const char*, const char*); - -inline int soap_write_wsdd__ResolveType(struct soap *soap, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ResolveType(soap, p), 0) || ::soap_put_wsdd__ResolveType(soap, p, "wsdd:ResolveType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ResolveType(struct soap *soap, const char *URL, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveType(soap, p), 0) || ::soap_put_wsdd__ResolveType(soap, p, "wsdd:ResolveType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ResolveType(struct soap *soap, const char *URL, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveType(soap, p), 0) || ::soap_put_wsdd__ResolveType(soap, p, "wsdd:ResolveType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ResolveType(struct soap *soap, const char *URL, struct wsdd__ResolveType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ResolveType(soap, p), 0) || ::soap_put_wsdd__ResolveType(soap, p, "wsdd:ResolveType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ResolveType * SOAP_FMAC4 soap_get_wsdd__ResolveType(struct soap*, struct wsdd__ResolveType *, const char*, const char*); - -inline int soap_read_wsdd__ResolveType(struct soap *soap, struct wsdd__ResolveType *p) -{ - if (p) - { ::soap_default_wsdd__ResolveType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ResolveType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ResolveType(struct soap *soap, const char *URL, struct wsdd__ResolveType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ResolveType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ResolveType(struct soap *soap, struct wsdd__ResolveType *p) -{ - if (::soap_read_wsdd__ResolveType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ProbeMatchType_DEFINED -#define SOAP_TYPE_wsdd__ProbeMatchType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ProbeMatchType(struct soap*, struct wsdd__ProbeMatchType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeMatchType(struct soap*, const struct wsdd__ProbeMatchType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ProbeMatchType(struct soap*, const char*, int, const struct wsdd__ProbeMatchType *, const char*); -SOAP_FMAC3 struct wsdd__ProbeMatchType * SOAP_FMAC4 soap_in_wsdd__ProbeMatchType(struct soap*, const char*, struct wsdd__ProbeMatchType *, const char*); -SOAP_FMAC1 struct wsdd__ProbeMatchType * SOAP_FMAC2 soap_instantiate_wsdd__ProbeMatchType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ProbeMatchType * soap_new_wsdd__ProbeMatchType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ProbeMatchType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ProbeMatchType * soap_new_req_wsdd__ProbeMatchType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference, - unsigned int MetadataVersion) -{ - struct wsdd__ProbeMatchType *_p = ::soap_new_wsdd__ProbeMatchType(soap); - if (_p) - { ::soap_default_wsdd__ProbeMatchType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - _p->MetadataVersion = MetadataVersion; - } - return _p; -} - -inline struct wsdd__ProbeMatchType * soap_new_set_wsdd__ProbeMatchType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference, - char *Types, - struct wsdd__ScopesType *Scopes, - char *XAddrs, - unsigned int MetadataVersion) -{ - struct wsdd__ProbeMatchType *_p = ::soap_new_wsdd__ProbeMatchType(soap); - if (_p) - { ::soap_default_wsdd__ProbeMatchType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - _p->Types = Types; - _p->Scopes = Scopes; - _p->XAddrs = XAddrs; - _p->MetadataVersion = MetadataVersion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ProbeMatchType(struct soap*, const struct wsdd__ProbeMatchType *, const char*, const char*); - -inline int soap_write_wsdd__ProbeMatchType(struct soap *soap, struct wsdd__ProbeMatchType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ProbeMatchType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchType(soap, p, "wsdd:ProbeMatchType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ProbeMatchType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeMatchType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchType(soap, p, "wsdd:ProbeMatchType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ProbeMatchType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeMatchType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchType(soap, p, "wsdd:ProbeMatchType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ProbeMatchType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeMatchType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchType(soap, p, "wsdd:ProbeMatchType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ProbeMatchType * SOAP_FMAC4 soap_get_wsdd__ProbeMatchType(struct soap*, struct wsdd__ProbeMatchType *, const char*, const char*); - -inline int soap_read_wsdd__ProbeMatchType(struct soap *soap, struct wsdd__ProbeMatchType *p) -{ - if (p) - { ::soap_default_wsdd__ProbeMatchType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ProbeMatchType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ProbeMatchType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ProbeMatchType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ProbeMatchType(struct soap *soap, struct wsdd__ProbeMatchType *p) -{ - if (::soap_read_wsdd__ProbeMatchType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ProbeMatchesType_DEFINED -#define SOAP_TYPE_wsdd__ProbeMatchesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ProbeMatchesType(struct soap*, struct wsdd__ProbeMatchesType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeMatchesType(struct soap*, const struct wsdd__ProbeMatchesType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ProbeMatchesType(struct soap*, const char*, int, const struct wsdd__ProbeMatchesType *, const char*); -SOAP_FMAC3 struct wsdd__ProbeMatchesType * SOAP_FMAC4 soap_in_wsdd__ProbeMatchesType(struct soap*, const char*, struct wsdd__ProbeMatchesType *, const char*); -SOAP_FMAC1 struct wsdd__ProbeMatchesType * SOAP_FMAC2 soap_instantiate_wsdd__ProbeMatchesType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ProbeMatchesType * soap_new_wsdd__ProbeMatchesType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ProbeMatchesType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ProbeMatchesType * soap_new_req_wsdd__ProbeMatchesType( - struct soap *soap, - int __sizeProbeMatch, - struct wsdd__ProbeMatchType *ProbeMatch) -{ - struct wsdd__ProbeMatchesType *_p = ::soap_new_wsdd__ProbeMatchesType(soap); - if (_p) - { ::soap_default_wsdd__ProbeMatchesType(soap, _p); - _p->__sizeProbeMatch = __sizeProbeMatch; - _p->ProbeMatch = ProbeMatch; - } - return _p; -} - -inline struct wsdd__ProbeMatchesType * soap_new_set_wsdd__ProbeMatchesType( - struct soap *soap, - int __sizeProbeMatch, - struct wsdd__ProbeMatchType *ProbeMatch) -{ - struct wsdd__ProbeMatchesType *_p = ::soap_new_wsdd__ProbeMatchesType(soap); - if (_p) - { ::soap_default_wsdd__ProbeMatchesType(soap, _p); - _p->__sizeProbeMatch = __sizeProbeMatch; - _p->ProbeMatch = ProbeMatch; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ProbeMatchesType(struct soap*, const struct wsdd__ProbeMatchesType *, const char*, const char*); - -inline int soap_write_wsdd__ProbeMatchesType(struct soap *soap, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ProbeMatchesType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchesType(soap, p, "wsdd:ProbeMatchesType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ProbeMatchesType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeMatchesType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchesType(soap, p, "wsdd:ProbeMatchesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ProbeMatchesType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeMatchesType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchesType(soap, p, "wsdd:ProbeMatchesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ProbeMatchesType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeMatchesType(soap, p), 0) || ::soap_put_wsdd__ProbeMatchesType(soap, p, "wsdd:ProbeMatchesType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ProbeMatchesType * SOAP_FMAC4 soap_get_wsdd__ProbeMatchesType(struct soap*, struct wsdd__ProbeMatchesType *, const char*, const char*); - -inline int soap_read_wsdd__ProbeMatchesType(struct soap *soap, struct wsdd__ProbeMatchesType *p) -{ - if (p) - { ::soap_default_wsdd__ProbeMatchesType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ProbeMatchesType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ProbeMatchesType(struct soap *soap, const char *URL, struct wsdd__ProbeMatchesType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ProbeMatchesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ProbeMatchesType(struct soap *soap, struct wsdd__ProbeMatchesType *p) -{ - if (::soap_read_wsdd__ProbeMatchesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ProbeType_DEFINED -#define SOAP_TYPE_wsdd__ProbeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ProbeType(struct soap*, struct wsdd__ProbeType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ProbeType(struct soap*, const struct wsdd__ProbeType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ProbeType(struct soap*, const char*, int, const struct wsdd__ProbeType *, const char*); -SOAP_FMAC3 struct wsdd__ProbeType * SOAP_FMAC4 soap_in_wsdd__ProbeType(struct soap*, const char*, struct wsdd__ProbeType *, const char*); -SOAP_FMAC1 struct wsdd__ProbeType * SOAP_FMAC2 soap_instantiate_wsdd__ProbeType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ProbeType * soap_new_wsdd__ProbeType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ProbeType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ProbeType * soap_new_req_wsdd__ProbeType( - struct soap *soap) -{ - struct wsdd__ProbeType *_p = ::soap_new_wsdd__ProbeType(soap); - if (_p) - { ::soap_default_wsdd__ProbeType(soap, _p); - } - return _p; -} - -inline struct wsdd__ProbeType * soap_new_set_wsdd__ProbeType( - struct soap *soap, - char *Types, - struct wsdd__ScopesType *Scopes) -{ - struct wsdd__ProbeType *_p = ::soap_new_wsdd__ProbeType(soap); - if (_p) - { ::soap_default_wsdd__ProbeType(soap, _p); - _p->Types = Types; - _p->Scopes = Scopes; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ProbeType(struct soap*, const struct wsdd__ProbeType *, const char*, const char*); - -inline int soap_write_wsdd__ProbeType(struct soap *soap, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ProbeType(soap, p), 0) || ::soap_put_wsdd__ProbeType(soap, p, "wsdd:ProbeType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ProbeType(struct soap *soap, const char *URL, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeType(soap, p), 0) || ::soap_put_wsdd__ProbeType(soap, p, "wsdd:ProbeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ProbeType(struct soap *soap, const char *URL, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeType(soap, p), 0) || ::soap_put_wsdd__ProbeType(soap, p, "wsdd:ProbeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ProbeType(struct soap *soap, const char *URL, struct wsdd__ProbeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ProbeType(soap, p), 0) || ::soap_put_wsdd__ProbeType(soap, p, "wsdd:ProbeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ProbeType * SOAP_FMAC4 soap_get_wsdd__ProbeType(struct soap*, struct wsdd__ProbeType *, const char*, const char*); - -inline int soap_read_wsdd__ProbeType(struct soap *soap, struct wsdd__ProbeType *p) -{ - if (p) - { ::soap_default_wsdd__ProbeType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ProbeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ProbeType(struct soap *soap, const char *URL, struct wsdd__ProbeType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ProbeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ProbeType(struct soap *soap, struct wsdd__ProbeType *p) -{ - if (::soap_read_wsdd__ProbeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__ByeType_DEFINED -#define SOAP_TYPE_wsdd__ByeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__ByeType(struct soap*, struct wsdd__ByeType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__ByeType(struct soap*, const struct wsdd__ByeType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__ByeType(struct soap*, const char*, int, const struct wsdd__ByeType *, const char*); -SOAP_FMAC3 struct wsdd__ByeType * SOAP_FMAC4 soap_in_wsdd__ByeType(struct soap*, const char*, struct wsdd__ByeType *, const char*); -SOAP_FMAC1 struct wsdd__ByeType * SOAP_FMAC2 soap_instantiate_wsdd__ByeType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__ByeType * soap_new_wsdd__ByeType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__ByeType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__ByeType * soap_new_req_wsdd__ByeType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference) -{ - struct wsdd__ByeType *_p = ::soap_new_wsdd__ByeType(soap); - if (_p) - { ::soap_default_wsdd__ByeType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - } - return _p; -} - -inline struct wsdd__ByeType * soap_new_set_wsdd__ByeType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference, - char *Types, - struct wsdd__ScopesType *Scopes, - char *XAddrs, - unsigned int *MetadataVersion) -{ - struct wsdd__ByeType *_p = ::soap_new_wsdd__ByeType(soap); - if (_p) - { ::soap_default_wsdd__ByeType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - _p->Types = Types; - _p->Scopes = Scopes; - _p->XAddrs = XAddrs; - _p->MetadataVersion = MetadataVersion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__ByeType(struct soap*, const struct wsdd__ByeType *, const char*, const char*); - -inline int soap_write_wsdd__ByeType(struct soap *soap, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__ByeType(soap, p), 0) || ::soap_put_wsdd__ByeType(soap, p, "wsdd:ByeType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__ByeType(struct soap *soap, const char *URL, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ByeType(soap, p), 0) || ::soap_put_wsdd__ByeType(soap, p, "wsdd:ByeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__ByeType(struct soap *soap, const char *URL, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ByeType(soap, p), 0) || ::soap_put_wsdd__ByeType(soap, p, "wsdd:ByeType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__ByeType(struct soap *soap, const char *URL, struct wsdd__ByeType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__ByeType(soap, p), 0) || ::soap_put_wsdd__ByeType(soap, p, "wsdd:ByeType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__ByeType * SOAP_FMAC4 soap_get_wsdd__ByeType(struct soap*, struct wsdd__ByeType *, const char*, const char*); - -inline int soap_read_wsdd__ByeType(struct soap *soap, struct wsdd__ByeType *p) -{ - if (p) - { ::soap_default_wsdd__ByeType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__ByeType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__ByeType(struct soap *soap, const char *URL, struct wsdd__ByeType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__ByeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__ByeType(struct soap *soap, struct wsdd__ByeType *p) -{ - if (::soap_read_wsdd__ByeType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__HelloType_DEFINED -#define SOAP_TYPE_wsdd__HelloType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsdd__HelloType(struct soap*, struct wsdd__HelloType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__HelloType(struct soap*, const struct wsdd__HelloType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__HelloType(struct soap*, const char*, int, const struct wsdd__HelloType *, const char*); -SOAP_FMAC3 struct wsdd__HelloType * SOAP_FMAC4 soap_in_wsdd__HelloType(struct soap*, const char*, struct wsdd__HelloType *, const char*); -SOAP_FMAC1 struct wsdd__HelloType * SOAP_FMAC2 soap_instantiate_wsdd__HelloType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsdd__HelloType * soap_new_wsdd__HelloType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsdd__HelloType(soap, n, NULL, NULL, NULL); -} - -inline struct wsdd__HelloType * soap_new_req_wsdd__HelloType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference, - unsigned int MetadataVersion) -{ - struct wsdd__HelloType *_p = ::soap_new_wsdd__HelloType(soap); - if (_p) - { ::soap_default_wsdd__HelloType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - _p->MetadataVersion = MetadataVersion; - } - return _p; -} - -inline struct wsdd__HelloType * soap_new_set_wsdd__HelloType( - struct soap *soap, - const struct wsa__EndpointReferenceType& wsa__EndpointReference, - char *Types, - struct wsdd__ScopesType *Scopes, - char *XAddrs, - unsigned int MetadataVersion) -{ - struct wsdd__HelloType *_p = ::soap_new_wsdd__HelloType(soap); - if (_p) - { ::soap_default_wsdd__HelloType(soap, _p); - _p->wsa__EndpointReference = wsa__EndpointReference; - _p->Types = Types; - _p->Scopes = Scopes; - _p->XAddrs = XAddrs; - _p->MetadataVersion = MetadataVersion; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__HelloType(struct soap*, const struct wsdd__HelloType *, const char*, const char*); - -inline int soap_write_wsdd__HelloType(struct soap *soap, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsdd__HelloType(soap, p), 0) || ::soap_put_wsdd__HelloType(soap, p, "wsdd:HelloType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsdd__HelloType(struct soap *soap, const char *URL, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__HelloType(soap, p), 0) || ::soap_put_wsdd__HelloType(soap, p, "wsdd:HelloType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__HelloType(struct soap *soap, const char *URL, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__HelloType(soap, p), 0) || ::soap_put_wsdd__HelloType(soap, p, "wsdd:HelloType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__HelloType(struct soap *soap, const char *URL, struct wsdd__HelloType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsdd__HelloType(soap, p), 0) || ::soap_put_wsdd__HelloType(soap, p, "wsdd:HelloType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsdd__HelloType * SOAP_FMAC4 soap_get_wsdd__HelloType(struct soap*, struct wsdd__HelloType *, const char*, const char*); - -inline int soap_read_wsdd__HelloType(struct soap *soap, struct wsdd__HelloType *p) -{ - if (p) - { ::soap_default_wsdd__HelloType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsdd__HelloType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__HelloType(struct soap *soap, const char *URL, struct wsdd__HelloType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__HelloType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__HelloType(struct soap *soap, struct wsdd__HelloType *p) -{ - if (::soap_read_wsdd__HelloType(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__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__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, - const struct soap_dom_attribute& __anyAttribute, - wsnt__UnableToCreatePullPointFaultType *wsnt__UnableToCreatePullPointFault, - wsnt__InvalidFilterFaultType *wsnt__InvalidFilterFault, - wsnt__InvalidMessageContentExpressionFaultType *wsnt__InvalidMessageContentExpressionFault, - wsnt__InvalidProducerPropertiesExpressionFaultType *wsnt__InvalidProducerPropertiesExpressionFault, - wsnt__InvalidTopicExpressionFaultType *wsnt__InvalidTopicExpressionFault, - wsnt__NotifyMessageNotSupportedFaultType *wsnt__NotifyMessageNotSupportedFault, - wsrfr__ResourceUnknownFaultType *wsrfr__ResourceUnknownFault, - wsnt__SubscribeCreationFailedFaultType *wsnt__SubscribeCreationFailedFault, - wsnt__TopicExpressionDialectUnknownFaultType *wsnt__TopicExpressionDialectUnknownFault, - wsnt__TopicNotSupportedFaultType *wsnt__TopicNotSupportedFault, - wsnt__UnacceptableInitialTerminationTimeFaultType *wsnt__UnacceptableInitialTerminationTimeFault, - wsnt__UnrecognizedPolicyRequestFaultType *wsnt__UnrecognizedPolicyRequestFault, - wsnt__UnsupportedPolicyRequestFaultType *wsnt__UnsupportedPolicyRequestFault, - wsnt__MultipleTopicsSpecifiedFaultType *wsnt__MultipleTopicsSpecifiedFault, - wsnt__NoCurrentMessageOnTopicFaultType *wsnt__NoCurrentMessageOnTopicFault, - wsnt__UnableToDestroyPullPointFaultType *wsnt__UnableToDestroyPullPointFault, - wsnt__UnableToGetMessagesFaultType *wsnt__UnableToGetMessagesFault, - _tev__PullMessagesFaultResponse *tev__PullMessagesFaultResponse, - wsnt__PauseFailedFaultType *wsnt__PauseFailedFault, - wsnt__ResumeFailedFaultType *wsnt__ResumeFailedFault, - wsnt__UnableToDestroySubscriptionFaultType *wsnt__UnableToDestroySubscriptionFault, - wsnt__UnacceptableTerminationTimeFaultType *wsnt__UnacceptableTerminationTimeFault, - int __type, - void *fault, - char *__any) -{ - struct SOAP_ENV__Detail *_p = ::soap_new_SOAP_ENV__Detail(soap); - if (_p) - { ::soap_default_SOAP_ENV__Detail(soap, _p); - _p->__anyAttribute = __anyAttribute; - _p->wsnt__UnableToCreatePullPointFault = wsnt__UnableToCreatePullPointFault; - _p->wsnt__InvalidFilterFault = wsnt__InvalidFilterFault; - _p->wsnt__InvalidMessageContentExpressionFault = wsnt__InvalidMessageContentExpressionFault; - _p->wsnt__InvalidProducerPropertiesExpressionFault = wsnt__InvalidProducerPropertiesExpressionFault; - _p->wsnt__InvalidTopicExpressionFault = wsnt__InvalidTopicExpressionFault; - _p->wsnt__NotifyMessageNotSupportedFault = wsnt__NotifyMessageNotSupportedFault; - _p->wsrfr__ResourceUnknownFault = wsrfr__ResourceUnknownFault; - _p->wsnt__SubscribeCreationFailedFault = wsnt__SubscribeCreationFailedFault; - _p->wsnt__TopicExpressionDialectUnknownFault = wsnt__TopicExpressionDialectUnknownFault; - _p->wsnt__TopicNotSupportedFault = wsnt__TopicNotSupportedFault; - _p->wsnt__UnacceptableInitialTerminationTimeFault = wsnt__UnacceptableInitialTerminationTimeFault; - _p->wsnt__UnrecognizedPolicyRequestFault = wsnt__UnrecognizedPolicyRequestFault; - _p->wsnt__UnsupportedPolicyRequestFault = wsnt__UnsupportedPolicyRequestFault; - _p->wsnt__MultipleTopicsSpecifiedFault = wsnt__MultipleTopicsSpecifiedFault; - _p->wsnt__NoCurrentMessageOnTopicFault = wsnt__NoCurrentMessageOnTopicFault; - _p->wsnt__UnableToDestroyPullPointFault = wsnt__UnableToDestroyPullPointFault; - _p->wsnt__UnableToGetMessagesFault = wsnt__UnableToGetMessagesFault; - _p->tev__PullMessagesFaultResponse = tev__PullMessagesFaultResponse; - _p->wsnt__PauseFailedFault = wsnt__PauseFailedFault; - _p->wsnt__ResumeFailedFault = wsnt__ResumeFailedFault; - _p->wsnt__UnableToDestroySubscriptionFault = wsnt__UnableToDestroySubscriptionFault; - _p->wsnt__UnacceptableTerminationTimeFault = wsnt__UnacceptableTerminationTimeFault; - _p->__type = __type; - _p->fault = fault; - _p->__any = __any; - } - 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__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, - char *wsa__MessageID, - struct wsa__Relationship *wsa__RelatesTo, - struct wsa__EndpointReferenceType *wsa__From, - struct wsa__EndpointReferenceType *wsa__ReplyTo, - struct wsa__EndpointReferenceType *wsa__FaultTo, - char *wsa__To, - char *wsa__Action, - struct wsdd__AppSequenceType *wsdd__AppSequence, - struct _wsse__Security *wsse__Security, - char *wsa5__MessageID, - struct wsa5__RelatesToType *wsa5__RelatesTo, - struct wsa5__EndpointReferenceType *wsa5__From, - struct wsa5__EndpointReferenceType *wsa5__ReplyTo, - struct wsa5__EndpointReferenceType *wsa5__FaultTo, - char *wsa5__To, - char *wsa5__Action, - struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - struct SOAP_ENV__Header *_p = ::soap_new_SOAP_ENV__Header(soap); - if (_p) - { ::soap_default_SOAP_ENV__Header(soap, _p); - _p->wsa__MessageID = wsa__MessageID; - _p->wsa__RelatesTo = wsa__RelatesTo; - _p->wsa__From = wsa__From; - _p->wsa__ReplyTo = wsa__ReplyTo; - _p->wsa__FaultTo = wsa__FaultTo; - _p->wsa__To = wsa__To; - _p->wsa__Action = wsa__Action; - _p->wsdd__AppSequence = wsdd__AppSequence; - _p->wsse__Security = wsse__Security; - _p->wsa5__MessageID = wsa5__MessageID; - _p->wsa5__RelatesTo = wsa5__RelatesTo; - _p->wsa5__From = wsa5__From; - _p->wsa5__ReplyTo = wsa5__ReplyTo; - _p->wsa5__FaultTo = wsa5__FaultTo; - _p->wsa5__To = wsa5__To; - _p->wsa5__Action = wsa5__Action; - _p->chan__ChannelInstance = chan__ChannelInstance; - } - 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 -/* _wsa__FaultTo is a typedef synonym of wsa__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa__FaultTo_DEFINED -#define SOAP_TYPE__wsa__FaultTo_DEFINED - -#define soap_default__wsa__FaultTo soap_default_wsa__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__EndpointReferenceType(struct soap*, const struct wsa__EndpointReferenceType *); - -#define soap_serialize__wsa__FaultTo soap_serialize_wsa__EndpointReferenceType - - -#define soap__wsa__FaultTo2s soap_wsa__EndpointReferenceType2s - - -#define soap_out__wsa__FaultTo soap_out_wsa__EndpointReferenceType - - -#define soap_s2_wsa__FaultTo soap_s2wsa__EndpointReferenceType - - -#define soap_in__wsa__FaultTo soap_in_wsa__EndpointReferenceType - - -#define soap_instantiate__wsa__FaultTo soap_instantiate_wsa__EndpointReferenceType - - -#define soap_new__wsa__FaultTo soap_new_wsa__EndpointReferenceType - - -#define soap_new_req__wsa__FaultTo soap_new_req_wsa__EndpointReferenceType - - -#define soap_new_set__wsa__FaultTo soap_new_set_wsa__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__FaultTo(struct soap*, const struct wsa__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa__FaultTo(struct soap *soap, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa__FaultTo(soap, p), 0) || ::soap_put__wsa__FaultTo(soap, p, "wsa:FaultTo", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa__FaultTo(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__FaultTo(soap, p), 0) || ::soap_put__wsa__FaultTo(soap, p, "wsa:FaultTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__FaultTo(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__FaultTo(soap, p), 0) || ::soap_put__wsa__FaultTo(soap, p, "wsa:FaultTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__FaultTo(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__FaultTo(soap, p), 0) || ::soap_put__wsa__FaultTo(soap, p, "wsa:FaultTo", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__FaultTo soap_get_wsa__EndpointReferenceType - - -#define soap_read__wsa__FaultTo soap_read_wsa__EndpointReferenceType - - -#define soap_GET__wsa__FaultTo soap_GET_wsa__EndpointReferenceType - - -#define soap_POST_recv__wsa__FaultTo soap_POST_recv_wsa__EndpointReferenceType - -#endif -/* _wsa__ReplyTo is a typedef synonym of wsa__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa__ReplyTo_DEFINED -#define SOAP_TYPE__wsa__ReplyTo_DEFINED - -#define soap_default__wsa__ReplyTo soap_default_wsa__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__EndpointReferenceType(struct soap*, const struct wsa__EndpointReferenceType *); - -#define soap_serialize__wsa__ReplyTo soap_serialize_wsa__EndpointReferenceType - - -#define soap__wsa__ReplyTo2s soap_wsa__EndpointReferenceType2s - - -#define soap_out__wsa__ReplyTo soap_out_wsa__EndpointReferenceType - - -#define soap_s2_wsa__ReplyTo soap_s2wsa__EndpointReferenceType - - -#define soap_in__wsa__ReplyTo soap_in_wsa__EndpointReferenceType - - -#define soap_instantiate__wsa__ReplyTo soap_instantiate_wsa__EndpointReferenceType - - -#define soap_new__wsa__ReplyTo soap_new_wsa__EndpointReferenceType - - -#define soap_new_req__wsa__ReplyTo soap_new_req_wsa__EndpointReferenceType - - -#define soap_new_set__wsa__ReplyTo soap_new_set_wsa__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__ReplyTo(struct soap*, const struct wsa__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa__ReplyTo(struct soap *soap, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa__ReplyTo(soap, p), 0) || ::soap_put__wsa__ReplyTo(soap, p, "wsa:ReplyTo", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa__ReplyTo(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__ReplyTo(soap, p), 0) || ::soap_put__wsa__ReplyTo(soap, p, "wsa:ReplyTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__ReplyTo(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__ReplyTo(soap, p), 0) || ::soap_put__wsa__ReplyTo(soap, p, "wsa:ReplyTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__ReplyTo(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__ReplyTo(soap, p), 0) || ::soap_put__wsa__ReplyTo(soap, p, "wsa:ReplyTo", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__ReplyTo soap_get_wsa__EndpointReferenceType - - -#define soap_read__wsa__ReplyTo soap_read_wsa__EndpointReferenceType - - -#define soap_GET__wsa__ReplyTo soap_GET_wsa__EndpointReferenceType - - -#define soap_POST_recv__wsa__ReplyTo soap_POST_recv_wsa__EndpointReferenceType - -#endif -/* _wsa__From is a typedef synonym of wsa__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa__From_DEFINED -#define SOAP_TYPE__wsa__From_DEFINED - -#define soap_default__wsa__From soap_default_wsa__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__EndpointReferenceType(struct soap*, const struct wsa__EndpointReferenceType *); - -#define soap_serialize__wsa__From soap_serialize_wsa__EndpointReferenceType - - -#define soap__wsa__From2s soap_wsa__EndpointReferenceType2s - - -#define soap_out__wsa__From soap_out_wsa__EndpointReferenceType - - -#define soap_s2_wsa__From soap_s2wsa__EndpointReferenceType - - -#define soap_in__wsa__From soap_in_wsa__EndpointReferenceType - - -#define soap_instantiate__wsa__From soap_instantiate_wsa__EndpointReferenceType - - -#define soap_new__wsa__From soap_new_wsa__EndpointReferenceType - - -#define soap_new_req__wsa__From soap_new_req_wsa__EndpointReferenceType - - -#define soap_new_set__wsa__From soap_new_set_wsa__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__From(struct soap*, const struct wsa__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa__From(struct soap *soap, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa__From(soap, p), 0) || ::soap_put__wsa__From(soap, p, "wsa:From", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa__From(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__From(soap, p), 0) || ::soap_put__wsa__From(soap, p, "wsa:From", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__From(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__From(soap, p), 0) || ::soap_put__wsa__From(soap, p, "wsa:From", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__From(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__From(soap, p), 0) || ::soap_put__wsa__From(soap, p, "wsa:From", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__From soap_get_wsa__EndpointReferenceType - - -#define soap_read__wsa__From soap_read_wsa__EndpointReferenceType - - -#define soap_GET__wsa__From soap_GET_wsa__EndpointReferenceType - - -#define soap_POST_recv__wsa__From soap_POST_recv_wsa__EndpointReferenceType - -#endif -/* _wsa__RelatesTo is a typedef synonym of wsa__Relationship */ - -#ifndef SOAP_TYPE__wsa__RelatesTo_DEFINED -#define SOAP_TYPE__wsa__RelatesTo_DEFINED - -#define soap_default__wsa__RelatesTo soap_default_wsa__Relationship - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__Relationship(struct soap*, const struct wsa__Relationship *); - -#define soap_serialize__wsa__RelatesTo soap_serialize_wsa__Relationship - - -#define soap__wsa__RelatesTo2s soap_wsa__Relationship2s - - -#define soap_out__wsa__RelatesTo soap_out_wsa__Relationship - - -#define soap_s2_wsa__RelatesTo soap_s2wsa__Relationship - - -#define soap_in__wsa__RelatesTo soap_in_wsa__Relationship - - -#define soap_instantiate__wsa__RelatesTo soap_instantiate_wsa__Relationship - - -#define soap_new__wsa__RelatesTo soap_new_wsa__Relationship - - -#define soap_new_req__wsa__RelatesTo soap_new_req_wsa__Relationship - - -#define soap_new_set__wsa__RelatesTo soap_new_set_wsa__Relationship - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__RelatesTo(struct soap*, const struct wsa__Relationship *, const char*, const char*); - -inline int soap_write__wsa__RelatesTo(struct soap *soap, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa__RelatesTo(soap, p), 0) || ::soap_put__wsa__RelatesTo(soap, p, "wsa:RelatesTo", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa__RelatesTo(struct soap *soap, const char *URL, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__RelatesTo(soap, p), 0) || ::soap_put__wsa__RelatesTo(soap, p, "wsa:RelatesTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__RelatesTo(struct soap *soap, const char *URL, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__RelatesTo(soap, p), 0) || ::soap_put__wsa__RelatesTo(soap, p, "wsa:RelatesTo", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__RelatesTo(struct soap *soap, const char *URL, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__RelatesTo(soap, p), 0) || ::soap_put__wsa__RelatesTo(soap, p, "wsa:RelatesTo", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__RelatesTo soap_get_wsa__Relationship - - -#define soap_read__wsa__RelatesTo soap_read_wsa__Relationship - - -#define soap_GET__wsa__RelatesTo soap_GET_wsa__Relationship - - -#define soap_POST_recv__wsa__RelatesTo soap_POST_recv_wsa__Relationship - -#endif -/* _wsa__EndpointReference is a typedef synonym of wsa__EndpointReferenceType */ - -#ifndef SOAP_TYPE__wsa__EndpointReference_DEFINED -#define SOAP_TYPE__wsa__EndpointReference_DEFINED - -#define soap_default__wsa__EndpointReference soap_default_wsa__EndpointReferenceType - -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__EndpointReferenceType(struct soap*, const struct wsa__EndpointReferenceType *); - -#define soap_serialize__wsa__EndpointReference soap_serialize_wsa__EndpointReferenceType - - -#define soap__wsa__EndpointReference2s soap_wsa__EndpointReferenceType2s - - -#define soap_out__wsa__EndpointReference soap_out_wsa__EndpointReferenceType - - -#define soap_s2_wsa__EndpointReference soap_s2wsa__EndpointReferenceType - - -#define soap_in__wsa__EndpointReference soap_in_wsa__EndpointReferenceType - - -#define soap_instantiate__wsa__EndpointReference soap_instantiate_wsa__EndpointReferenceType - - -#define soap_new__wsa__EndpointReference soap_new_wsa__EndpointReferenceType - - -#define soap_new_req__wsa__EndpointReference soap_new_req_wsa__EndpointReferenceType - - -#define soap_new_set__wsa__EndpointReference soap_new_set_wsa__EndpointReferenceType - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__EndpointReference(struct soap*, const struct wsa__EndpointReferenceType *, const char*, const char*); - -inline int soap_write__wsa__EndpointReference(struct soap *soap, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize__wsa__EndpointReference(soap, p), 0) || ::soap_put__wsa__EndpointReference(soap, p, "wsa:EndpointReference", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT__wsa__EndpointReference(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__EndpointReference(soap, p), 0) || ::soap_put__wsa__EndpointReference(soap, p, "wsa:EndpointReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__EndpointReference(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__EndpointReference(soap, p), 0) || ::soap_put__wsa__EndpointReference(soap, p, "wsa:EndpointReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__EndpointReference(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize__wsa__EndpointReference(soap, p), 0) || ::soap_put__wsa__EndpointReference(soap, p, "wsa:EndpointReference", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__EndpointReference soap_get_wsa__EndpointReferenceType - - -#define soap_read__wsa__EndpointReference soap_read_wsa__EndpointReferenceType - - -#define soap_GET__wsa__EndpointReference soap_GET_wsa__EndpointReferenceType - - -#define soap_POST_recv__wsa__EndpointReference soap_POST_recv_wsa__EndpointReferenceType - -#endif - -#ifndef SOAP_TYPE_wsa__Relationship_DEFINED -#define SOAP_TYPE_wsa__Relationship_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__Relationship(struct soap*, struct wsa__Relationship *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__Relationship(struct soap*, const struct wsa__Relationship *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__Relationship(struct soap*, const char*, int, const struct wsa__Relationship *, const char*); -SOAP_FMAC3 struct wsa__Relationship * SOAP_FMAC4 soap_in_wsa__Relationship(struct soap*, const char*, struct wsa__Relationship *, const char*); -SOAP_FMAC1 struct wsa__Relationship * SOAP_FMAC2 soap_instantiate_wsa__Relationship(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa__Relationship * soap_new_wsa__Relationship(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa__Relationship(soap, n, NULL, NULL, NULL); -} - -inline struct wsa__Relationship * soap_new_req_wsa__Relationship( - struct soap *soap) -{ - struct wsa__Relationship *_p = ::soap_new_wsa__Relationship(soap); - if (_p) - { ::soap_default_wsa__Relationship(soap, _p); - } - return _p; -} - -inline struct wsa__Relationship * soap_new_set_wsa__Relationship( - struct soap *soap, - char *__item, - char *RelationshipType, - char *__anyAttribute) -{ - struct wsa__Relationship *_p = ::soap_new_wsa__Relationship(soap); - if (_p) - { ::soap_default_wsa__Relationship(soap, _p); - _p->__item = __item; - _p->RelationshipType = RelationshipType; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__Relationship(struct soap*, const struct wsa__Relationship *, const char*, const char*); - -inline int soap_write_wsa__Relationship(struct soap *soap, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa__Relationship(soap, p), 0) || ::soap_put_wsa__Relationship(soap, p, "wsa:Relationship", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa__Relationship(struct soap *soap, const char *URL, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__Relationship(soap, p), 0) || ::soap_put_wsa__Relationship(soap, p, "wsa:Relationship", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa__Relationship(struct soap *soap, const char *URL, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__Relationship(soap, p), 0) || ::soap_put_wsa__Relationship(soap, p, "wsa:Relationship", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa__Relationship(struct soap *soap, const char *URL, struct wsa__Relationship const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__Relationship(soap, p), 0) || ::soap_put_wsa__Relationship(soap, p, "wsa:Relationship", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa__Relationship * SOAP_FMAC4 soap_get_wsa__Relationship(struct soap*, struct wsa__Relationship *, const char*, const char*); - -inline int soap_read_wsa__Relationship(struct soap *soap, struct wsa__Relationship *p) -{ - if (p) - { ::soap_default_wsa__Relationship(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa__Relationship(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa__Relationship(struct soap *soap, const char *URL, struct wsa__Relationship *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa__Relationship(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa__Relationship(struct soap *soap, struct wsa__Relationship *p) -{ - if (::soap_read_wsa__Relationship(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa__ServiceNameType_DEFINED -#define SOAP_TYPE_wsa__ServiceNameType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__ServiceNameType(struct soap*, struct wsa__ServiceNameType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__ServiceNameType(struct soap*, const struct wsa__ServiceNameType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__ServiceNameType(struct soap*, const char*, int, const struct wsa__ServiceNameType *, const char*); -SOAP_FMAC3 struct wsa__ServiceNameType * SOAP_FMAC4 soap_in_wsa__ServiceNameType(struct soap*, const char*, struct wsa__ServiceNameType *, const char*); -SOAP_FMAC1 struct wsa__ServiceNameType * SOAP_FMAC2 soap_instantiate_wsa__ServiceNameType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa__ServiceNameType * soap_new_wsa__ServiceNameType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa__ServiceNameType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa__ServiceNameType * soap_new_req_wsa__ServiceNameType( - struct soap *soap) -{ - struct wsa__ServiceNameType *_p = ::soap_new_wsa__ServiceNameType(soap); - if (_p) - { ::soap_default_wsa__ServiceNameType(soap, _p); - } - return _p; -} - -inline struct wsa__ServiceNameType * soap_new_set_wsa__ServiceNameType( - struct soap *soap, - char *__item, - char *PortName, - char *__anyAttribute) -{ - struct wsa__ServiceNameType *_p = ::soap_new_wsa__ServiceNameType(soap); - if (_p) - { ::soap_default_wsa__ServiceNameType(soap, _p); - _p->__item = __item; - _p->PortName = PortName; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__ServiceNameType(struct soap*, const struct wsa__ServiceNameType *, const char*, const char*); - -inline int soap_write_wsa__ServiceNameType(struct soap *soap, struct wsa__ServiceNameType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa__ServiceNameType(soap, p), 0) || ::soap_put_wsa__ServiceNameType(soap, p, "wsa:ServiceNameType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa__ServiceNameType(struct soap *soap, const char *URL, struct wsa__ServiceNameType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ServiceNameType(soap, p), 0) || ::soap_put_wsa__ServiceNameType(soap, p, "wsa:ServiceNameType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa__ServiceNameType(struct soap *soap, const char *URL, struct wsa__ServiceNameType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ServiceNameType(soap, p), 0) || ::soap_put_wsa__ServiceNameType(soap, p, "wsa:ServiceNameType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa__ServiceNameType(struct soap *soap, const char *URL, struct wsa__ServiceNameType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ServiceNameType(soap, p), 0) || ::soap_put_wsa__ServiceNameType(soap, p, "wsa:ServiceNameType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa__ServiceNameType * SOAP_FMAC4 soap_get_wsa__ServiceNameType(struct soap*, struct wsa__ServiceNameType *, const char*, const char*); - -inline int soap_read_wsa__ServiceNameType(struct soap *soap, struct wsa__ServiceNameType *p) -{ - if (p) - { ::soap_default_wsa__ServiceNameType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa__ServiceNameType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa__ServiceNameType(struct soap *soap, const char *URL, struct wsa__ServiceNameType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa__ServiceNameType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa__ServiceNameType(struct soap *soap, struct wsa__ServiceNameType *p) -{ - if (::soap_read_wsa__ServiceNameType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa__ReferenceParametersType_DEFINED -#define SOAP_TYPE_wsa__ReferenceParametersType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__ReferenceParametersType(struct soap*, struct wsa__ReferenceParametersType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__ReferenceParametersType(struct soap*, const struct wsa__ReferenceParametersType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__ReferenceParametersType(struct soap*, const char*, int, const struct wsa__ReferenceParametersType *, const char*); -SOAP_FMAC3 struct wsa__ReferenceParametersType * SOAP_FMAC4 soap_in_wsa__ReferenceParametersType(struct soap*, const char*, struct wsa__ReferenceParametersType *, const char*); -SOAP_FMAC1 struct wsa__ReferenceParametersType * SOAP_FMAC2 soap_instantiate_wsa__ReferenceParametersType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa__ReferenceParametersType * soap_new_wsa__ReferenceParametersType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa__ReferenceParametersType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa__ReferenceParametersType * soap_new_req_wsa__ReferenceParametersType( - struct soap *soap, - int __size, - char **__any) -{ - struct wsa__ReferenceParametersType *_p = ::soap_new_wsa__ReferenceParametersType(soap); - if (_p) - { ::soap_default_wsa__ReferenceParametersType(soap, _p); - _p->__size = __size; - _p->__any = __any; - } - return _p; -} - -inline struct wsa__ReferenceParametersType * soap_new_set_wsa__ReferenceParametersType( - struct soap *soap, - int __size, - char **__any) -{ - struct wsa__ReferenceParametersType *_p = ::soap_new_wsa__ReferenceParametersType(soap); - if (_p) - { ::soap_default_wsa__ReferenceParametersType(soap, _p); - _p->__size = __size; - _p->__any = __any; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__ReferenceParametersType(struct soap*, const struct wsa__ReferenceParametersType *, const char*, const char*); - -inline int soap_write_wsa__ReferenceParametersType(struct soap *soap, struct wsa__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa__ReferenceParametersType(soap, p, "wsa:ReferenceParametersType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa__ReferenceParametersType(soap, p, "wsa:ReferenceParametersType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa__ReferenceParametersType(soap, p, "wsa:ReferenceParametersType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa__ReferenceParametersType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ReferenceParametersType(soap, p), 0) || ::soap_put_wsa__ReferenceParametersType(soap, p, "wsa:ReferenceParametersType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa__ReferenceParametersType * SOAP_FMAC4 soap_get_wsa__ReferenceParametersType(struct soap*, struct wsa__ReferenceParametersType *, const char*, const char*); - -inline int soap_read_wsa__ReferenceParametersType(struct soap *soap, struct wsa__ReferenceParametersType *p) -{ - if (p) - { ::soap_default_wsa__ReferenceParametersType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa__ReferenceParametersType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa__ReferenceParametersType(struct soap *soap, const char *URL, struct wsa__ReferenceParametersType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa__ReferenceParametersType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa__ReferenceParametersType(struct soap *soap, struct wsa__ReferenceParametersType *p) -{ - if (::soap_read_wsa__ReferenceParametersType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa__ReferencePropertiesType_DEFINED -#define SOAP_TYPE_wsa__ReferencePropertiesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__ReferencePropertiesType(struct soap*, struct wsa__ReferencePropertiesType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__ReferencePropertiesType(struct soap*, const struct wsa__ReferencePropertiesType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__ReferencePropertiesType(struct soap*, const char*, int, const struct wsa__ReferencePropertiesType *, const char*); -SOAP_FMAC3 struct wsa__ReferencePropertiesType * SOAP_FMAC4 soap_in_wsa__ReferencePropertiesType(struct soap*, const char*, struct wsa__ReferencePropertiesType *, const char*); -SOAP_FMAC1 struct wsa__ReferencePropertiesType * SOAP_FMAC2 soap_instantiate_wsa__ReferencePropertiesType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa__ReferencePropertiesType * soap_new_wsa__ReferencePropertiesType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa__ReferencePropertiesType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa__ReferencePropertiesType * soap_new_req_wsa__ReferencePropertiesType( - struct soap *soap, - int __size, - char **__any) -{ - struct wsa__ReferencePropertiesType *_p = ::soap_new_wsa__ReferencePropertiesType(soap); - if (_p) - { ::soap_default_wsa__ReferencePropertiesType(soap, _p); - _p->__size = __size; - _p->__any = __any; - } - return _p; -} - -inline struct wsa__ReferencePropertiesType * soap_new_set_wsa__ReferencePropertiesType( - struct soap *soap, - int __size, - char **__any) -{ - struct wsa__ReferencePropertiesType *_p = ::soap_new_wsa__ReferencePropertiesType(soap); - if (_p) - { ::soap_default_wsa__ReferencePropertiesType(soap, _p); - _p->__size = __size; - _p->__any = __any; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__ReferencePropertiesType(struct soap*, const struct wsa__ReferencePropertiesType *, const char*, const char*); - -inline int soap_write_wsa__ReferencePropertiesType(struct soap *soap, struct wsa__ReferencePropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa__ReferencePropertiesType(soap, p), 0) || ::soap_put_wsa__ReferencePropertiesType(soap, p, "wsa:ReferencePropertiesType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa__ReferencePropertiesType(struct soap *soap, const char *URL, struct wsa__ReferencePropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ReferencePropertiesType(soap, p), 0) || ::soap_put_wsa__ReferencePropertiesType(soap, p, "wsa:ReferencePropertiesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa__ReferencePropertiesType(struct soap *soap, const char *URL, struct wsa__ReferencePropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ReferencePropertiesType(soap, p), 0) || ::soap_put_wsa__ReferencePropertiesType(soap, p, "wsa:ReferencePropertiesType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa__ReferencePropertiesType(struct soap *soap, const char *URL, struct wsa__ReferencePropertiesType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__ReferencePropertiesType(soap, p), 0) || ::soap_put_wsa__ReferencePropertiesType(soap, p, "wsa:ReferencePropertiesType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa__ReferencePropertiesType * SOAP_FMAC4 soap_get_wsa__ReferencePropertiesType(struct soap*, struct wsa__ReferencePropertiesType *, const char*, const char*); - -inline int soap_read_wsa__ReferencePropertiesType(struct soap *soap, struct wsa__ReferencePropertiesType *p) -{ - if (p) - { ::soap_default_wsa__ReferencePropertiesType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa__ReferencePropertiesType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa__ReferencePropertiesType(struct soap *soap, const char *URL, struct wsa__ReferencePropertiesType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa__ReferencePropertiesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa__ReferencePropertiesType(struct soap *soap, struct wsa__ReferencePropertiesType *p) -{ - if (::soap_read_wsa__ReferencePropertiesType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa__EndpointReferenceType_DEFINED -#define SOAP_TYPE_wsa__EndpointReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_wsa__EndpointReferenceType(struct soap*, struct wsa__EndpointReferenceType *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa__EndpointReferenceType(struct soap*, const struct wsa__EndpointReferenceType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa__EndpointReferenceType(struct soap*, const char*, int, const struct wsa__EndpointReferenceType *, const char*); -SOAP_FMAC3 struct wsa__EndpointReferenceType * SOAP_FMAC4 soap_in_wsa__EndpointReferenceType(struct soap*, const char*, struct wsa__EndpointReferenceType *, const char*); -SOAP_FMAC1 struct wsa__EndpointReferenceType * SOAP_FMAC2 soap_instantiate_wsa__EndpointReferenceType(struct soap*, int, const char*, const char*, size_t*); - -inline struct wsa__EndpointReferenceType * soap_new_wsa__EndpointReferenceType(struct soap *soap, int n = -1) -{ - return soap_instantiate_wsa__EndpointReferenceType(soap, n, NULL, NULL, NULL); -} - -inline struct wsa__EndpointReferenceType * soap_new_req_wsa__EndpointReferenceType( - struct soap *soap, - char *Address, - int __size, - char **__any) -{ - struct wsa__EndpointReferenceType *_p = ::soap_new_wsa__EndpointReferenceType(soap); - if (_p) - { ::soap_default_wsa__EndpointReferenceType(soap, _p); - _p->Address = Address; - _p->__size = __size; - _p->__any = __any; - } - return _p; -} - -inline struct wsa__EndpointReferenceType * soap_new_set_wsa__EndpointReferenceType( - struct soap *soap, - char *Address, - struct wsa__ReferencePropertiesType *ReferenceProperties, - struct wsa__ReferenceParametersType *ReferenceParameters, - char **PortType, - struct wsa__ServiceNameType *ServiceName, - int __size, - char **__any, - char *__anyAttribute) -{ - struct wsa__EndpointReferenceType *_p = ::soap_new_wsa__EndpointReferenceType(soap); - if (_p) - { ::soap_default_wsa__EndpointReferenceType(soap, _p); - _p->Address = Address; - _p->ReferenceProperties = ReferenceProperties; - _p->ReferenceParameters = ReferenceParameters; - _p->PortType = PortType; - _p->ServiceName = ServiceName; - _p->__size = __size; - _p->__any = __any; - _p->__anyAttribute = __anyAttribute; - } - return _p; -} -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa__EndpointReferenceType(struct soap*, const struct wsa__EndpointReferenceType *, const char*, const char*); - -inline int soap_write_wsa__EndpointReferenceType(struct soap *soap, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_begin_send(soap) || (::soap_serialize_wsa__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa__EndpointReferenceType(soap, p, "wsa:EndpointReferenceType", "") || soap_end_send(soap)) - return soap->error; - return SOAP_OK; -} - -inline int soap_PUT_wsa__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa__EndpointReferenceType(soap, p, "wsa:EndpointReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa__EndpointReferenceType(soap, p, "wsa:EndpointReferenceType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType const*p) -{ - soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_wsa__EndpointReferenceType(soap, p), 0) || ::soap_put_wsa__EndpointReferenceType(soap, p, "wsa:EndpointReferenceType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 struct wsa__EndpointReferenceType * SOAP_FMAC4 soap_get_wsa__EndpointReferenceType(struct soap*, struct wsa__EndpointReferenceType *, const char*, const char*); - -inline int soap_read_wsa__EndpointReferenceType(struct soap *soap, struct wsa__EndpointReferenceType *p) -{ - if (p) - { ::soap_default_wsa__EndpointReferenceType(soap, p); - if (soap_begin_recv(soap) || ::soap_get_wsa__EndpointReferenceType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa__EndpointReferenceType(struct soap *soap, const char *URL, struct wsa__EndpointReferenceType *p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa__EndpointReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa__EndpointReferenceType(struct soap *soap, struct wsa__EndpointReferenceType *p) -{ - if (::soap_read_wsa__EndpointReferenceType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE__tmd__union_SerialData_DEFINED -#define SOAP_TYPE__tmd__union_SerialData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__tmd__union_SerialData(struct soap*, int, const union _tmd__union_SerialData *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tmd__union_SerialData(struct soap*, int, const union _tmd__union_SerialData *); -SOAP_FMAC3 union _tmd__union_SerialData * SOAP_FMAC4 soap_in__tmd__union_SerialData(struct soap*, int*, union _tmd__union_SerialData *); -#endif - -#ifndef SOAP_TYPE__tt__union_ColorOptions_DEFINED -#define SOAP_TYPE__tt__union_ColorOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__tt__union_ColorOptions(struct soap*, int, const union _tt__union_ColorOptions *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__union_ColorOptions(struct soap*, int, const union _tt__union_ColorOptions *); -SOAP_FMAC3 union _tt__union_ColorOptions * SOAP_FMAC4 soap_in__tt__union_ColorOptions(struct soap*, int*, union _tt__union_ColorOptions *); -#endif - -#ifndef SOAP_TYPE__tt__union_PTZPresetTourPresetDetail_DEFINED -#define SOAP_TYPE__tt__union_PTZPresetTourPresetDetail_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__tt__union_PTZPresetTourPresetDetail(struct soap*, int, const union _tt__union_PTZPresetTourPresetDetail *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__tt__union_PTZPresetTourPresetDetail(struct soap*, int, const union _tt__union_PTZPresetTourPresetDetail *); -SOAP_FMAC3 union _tt__union_PTZPresetTourPresetDetail * SOAP_FMAC4 soap_in__tt__union_PTZPresetTourPresetDetail(struct soap*, int*, union _tt__union_PTZPresetTourPresetDetail *); -#endif - -#ifndef SOAP_TYPE__wsc__union_DerivedKeyTokenType_DEFINED -#define SOAP_TYPE__wsc__union_DerivedKeyTokenType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__wsc__union_DerivedKeyTokenType(struct soap*, int, const union _wsc__union_DerivedKeyTokenType *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__wsc__union_DerivedKeyTokenType(struct soap*, int, const union _wsc__union_DerivedKeyTokenType *); -SOAP_FMAC3 union _wsc__union_DerivedKeyTokenType * SOAP_FMAC4 soap_in__wsc__union_DerivedKeyTokenType(struct soap*, int*, union _wsc__union_DerivedKeyTokenType *); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetMetadataSearchResults_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetMetadataSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetMetadataSearchResults(struct soap*, _tse__GetMetadataSearchResults *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetMetadataSearchResults(struct soap*, const char *, int, _tse__GetMetadataSearchResults *const*, const char *); -SOAP_FMAC3 _tse__GetMetadataSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetMetadataSearchResults(struct soap*, const char*, _tse__GetMetadataSearchResults **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetMetadataSearchResults(struct soap*, _tse__GetMetadataSearchResults *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetMetadataSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetMetadataSearchResults(struct soap*, _tse__GetMetadataSearchResults **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__FindMetadata_DEFINED -#define SOAP_TYPE_PointerTo_tse__FindMetadata_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindMetadata(struct soap*, _tse__FindMetadata *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindMetadata(struct soap*, const char *, int, _tse__FindMetadata *const*, const char *); -SOAP_FMAC3 _tse__FindMetadata ** SOAP_FMAC4 soap_in_PointerTo_tse__FindMetadata(struct soap*, const char*, _tse__FindMetadata **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindMetadata(struct soap*, _tse__FindMetadata *const*, const char*, const char*); -SOAP_FMAC3 _tse__FindMetadata ** SOAP_FMAC4 soap_get_PointerTo_tse__FindMetadata(struct soap*, _tse__FindMetadata **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__EndSearch_DEFINED -#define SOAP_TYPE_PointerTo_tse__EndSearch_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__EndSearch(struct soap*, _tse__EndSearch *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__EndSearch(struct soap*, const char *, int, _tse__EndSearch *const*, const char *); -SOAP_FMAC3 _tse__EndSearch ** SOAP_FMAC4 soap_in_PointerTo_tse__EndSearch(struct soap*, const char*, _tse__EndSearch **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__EndSearch(struct soap*, _tse__EndSearch *const*, const char*, const char*); -SOAP_FMAC3 _tse__EndSearch ** SOAP_FMAC4 soap_get_PointerTo_tse__EndSearch(struct soap*, _tse__EndSearch **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetSearchState_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetSearchState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetSearchState(struct soap*, _tse__GetSearchState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetSearchState(struct soap*, const char *, int, _tse__GetSearchState *const*, const char *); -SOAP_FMAC3 _tse__GetSearchState ** SOAP_FMAC4 soap_in_PointerTo_tse__GetSearchState(struct soap*, const char*, _tse__GetSearchState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetSearchState(struct soap*, _tse__GetSearchState *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetSearchState ** SOAP_FMAC4 soap_get_PointerTo_tse__GetSearchState(struct soap*, _tse__GetSearchState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetPTZPositionSearchResults_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetPTZPositionSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetPTZPositionSearchResults(struct soap*, _tse__GetPTZPositionSearchResults *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetPTZPositionSearchResults(struct soap*, const char *, int, _tse__GetPTZPositionSearchResults *const*, const char *); -SOAP_FMAC3 _tse__GetPTZPositionSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetPTZPositionSearchResults(struct soap*, const char*, _tse__GetPTZPositionSearchResults **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetPTZPositionSearchResults(struct soap*, _tse__GetPTZPositionSearchResults *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetPTZPositionSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetPTZPositionSearchResults(struct soap*, _tse__GetPTZPositionSearchResults **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__FindPTZPosition_DEFINED -#define SOAP_TYPE_PointerTo_tse__FindPTZPosition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindPTZPosition(struct soap*, _tse__FindPTZPosition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindPTZPosition(struct soap*, const char *, int, _tse__FindPTZPosition *const*, const char *); -SOAP_FMAC3 _tse__FindPTZPosition ** SOAP_FMAC4 soap_in_PointerTo_tse__FindPTZPosition(struct soap*, const char*, _tse__FindPTZPosition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindPTZPosition(struct soap*, _tse__FindPTZPosition *const*, const char*, const char*); -SOAP_FMAC3 _tse__FindPTZPosition ** SOAP_FMAC4 soap_get_PointerTo_tse__FindPTZPosition(struct soap*, _tse__FindPTZPosition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetEventSearchResults_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetEventSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetEventSearchResults(struct soap*, _tse__GetEventSearchResults *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetEventSearchResults(struct soap*, const char *, int, _tse__GetEventSearchResults *const*, const char *); -SOAP_FMAC3 _tse__GetEventSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetEventSearchResults(struct soap*, const char*, _tse__GetEventSearchResults **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetEventSearchResults(struct soap*, _tse__GetEventSearchResults *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetEventSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetEventSearchResults(struct soap*, _tse__GetEventSearchResults **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__FindEvents_DEFINED -#define SOAP_TYPE_PointerTo_tse__FindEvents_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindEvents(struct soap*, _tse__FindEvents *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindEvents(struct soap*, const char *, int, _tse__FindEvents *const*, const char *); -SOAP_FMAC3 _tse__FindEvents ** SOAP_FMAC4 soap_in_PointerTo_tse__FindEvents(struct soap*, const char*, _tse__FindEvents **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindEvents(struct soap*, _tse__FindEvents *const*, const char*, const char*); -SOAP_FMAC3 _tse__FindEvents ** SOAP_FMAC4 soap_get_PointerTo_tse__FindEvents(struct soap*, _tse__FindEvents **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetRecordingSearchResults_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetRecordingSearchResults_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetRecordingSearchResults(struct soap*, _tse__GetRecordingSearchResults *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetRecordingSearchResults(struct soap*, const char *, int, _tse__GetRecordingSearchResults *const*, const char *); -SOAP_FMAC3 _tse__GetRecordingSearchResults ** SOAP_FMAC4 soap_in_PointerTo_tse__GetRecordingSearchResults(struct soap*, const char*, _tse__GetRecordingSearchResults **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetRecordingSearchResults(struct soap*, _tse__GetRecordingSearchResults *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetRecordingSearchResults ** SOAP_FMAC4 soap_get_PointerTo_tse__GetRecordingSearchResults(struct soap*, _tse__GetRecordingSearchResults **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__FindRecordings_DEFINED -#define SOAP_TYPE_PointerTo_tse__FindRecordings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__FindRecordings(struct soap*, _tse__FindRecordings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__FindRecordings(struct soap*, const char *, int, _tse__FindRecordings *const*, const char *); -SOAP_FMAC3 _tse__FindRecordings ** SOAP_FMAC4 soap_in_PointerTo_tse__FindRecordings(struct soap*, const char*, _tse__FindRecordings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__FindRecordings(struct soap*, _tse__FindRecordings *const*, const char*, const char*); -SOAP_FMAC3 _tse__FindRecordings ** SOAP_FMAC4 soap_get_PointerTo_tse__FindRecordings(struct soap*, _tse__FindRecordings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetMediaAttributes_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetMediaAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetMediaAttributes(struct soap*, _tse__GetMediaAttributes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetMediaAttributes(struct soap*, const char *, int, _tse__GetMediaAttributes *const*, const char *); -SOAP_FMAC3 _tse__GetMediaAttributes ** SOAP_FMAC4 soap_in_PointerTo_tse__GetMediaAttributes(struct soap*, const char*, _tse__GetMediaAttributes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetMediaAttributes(struct soap*, _tse__GetMediaAttributes *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetMediaAttributes ** SOAP_FMAC4 soap_get_PointerTo_tse__GetMediaAttributes(struct soap*, _tse__GetMediaAttributes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetRecordingInformation_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetRecordingInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetRecordingInformation(struct soap*, _tse__GetRecordingInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetRecordingInformation(struct soap*, const char *, int, _tse__GetRecordingInformation *const*, const char *); -SOAP_FMAC3 _tse__GetRecordingInformation ** SOAP_FMAC4 soap_in_PointerTo_tse__GetRecordingInformation(struct soap*, const char*, _tse__GetRecordingInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetRecordingInformation(struct soap*, _tse__GetRecordingInformation *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetRecordingInformation ** SOAP_FMAC4 soap_get_PointerTo_tse__GetRecordingInformation(struct soap*, _tse__GetRecordingInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetRecordingSummary_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetRecordingSummary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetRecordingSummary(struct soap*, _tse__GetRecordingSummary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetRecordingSummary(struct soap*, const char *, int, _tse__GetRecordingSummary *const*, const char *); -SOAP_FMAC3 _tse__GetRecordingSummary ** SOAP_FMAC4 soap_in_PointerTo_tse__GetRecordingSummary(struct soap*, const char*, _tse__GetRecordingSummary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetRecordingSummary(struct soap*, _tse__GetRecordingSummary *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetRecordingSummary ** SOAP_FMAC4 soap_get_PointerTo_tse__GetRecordingSummary(struct soap*, _tse__GetRecordingSummary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tse__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_tse__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tse__GetServiceCapabilities(struct soap*, _tse__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tse__GetServiceCapabilities(struct soap*, const char *, int, _tse__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _tse__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tse__GetServiceCapabilities(struct soap*, const char*, _tse__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tse__GetServiceCapabilities(struct soap*, _tse__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _tse__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tse__GetServiceCapabilities(struct soap*, _tse__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__GetReceiverState_DEFINED -#define SOAP_TYPE_PointerTo_trv__GetReceiverState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetReceiverState(struct soap*, _trv__GetReceiverState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetReceiverState(struct soap*, const char *, int, _trv__GetReceiverState *const*, const char *); -SOAP_FMAC3 _trv__GetReceiverState ** SOAP_FMAC4 soap_in_PointerTo_trv__GetReceiverState(struct soap*, const char*, _trv__GetReceiverState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetReceiverState(struct soap*, _trv__GetReceiverState *const*, const char*, const char*); -SOAP_FMAC3 _trv__GetReceiverState ** SOAP_FMAC4 soap_get_PointerTo_trv__GetReceiverState(struct soap*, _trv__GetReceiverState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__SetReceiverMode_DEFINED -#define SOAP_TYPE_PointerTo_trv__SetReceiverMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__SetReceiverMode(struct soap*, _trv__SetReceiverMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__SetReceiverMode(struct soap*, const char *, int, _trv__SetReceiverMode *const*, const char *); -SOAP_FMAC3 _trv__SetReceiverMode ** SOAP_FMAC4 soap_in_PointerTo_trv__SetReceiverMode(struct soap*, const char*, _trv__SetReceiverMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__SetReceiverMode(struct soap*, _trv__SetReceiverMode *const*, const char*, const char*); -SOAP_FMAC3 _trv__SetReceiverMode ** SOAP_FMAC4 soap_get_PointerTo_trv__SetReceiverMode(struct soap*, _trv__SetReceiverMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__ConfigureReceiver_DEFINED -#define SOAP_TYPE_PointerTo_trv__ConfigureReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__ConfigureReceiver(struct soap*, _trv__ConfigureReceiver *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__ConfigureReceiver(struct soap*, const char *, int, _trv__ConfigureReceiver *const*, const char *); -SOAP_FMAC3 _trv__ConfigureReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__ConfigureReceiver(struct soap*, const char*, _trv__ConfigureReceiver **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__ConfigureReceiver(struct soap*, _trv__ConfigureReceiver *const*, const char*, const char*); -SOAP_FMAC3 _trv__ConfigureReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__ConfigureReceiver(struct soap*, _trv__ConfigureReceiver **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__DeleteReceiver_DEFINED -#define SOAP_TYPE_PointerTo_trv__DeleteReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__DeleteReceiver(struct soap*, _trv__DeleteReceiver *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__DeleteReceiver(struct soap*, const char *, int, _trv__DeleteReceiver *const*, const char *); -SOAP_FMAC3 _trv__DeleteReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__DeleteReceiver(struct soap*, const char*, _trv__DeleteReceiver **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__DeleteReceiver(struct soap*, _trv__DeleteReceiver *const*, const char*, const char*); -SOAP_FMAC3 _trv__DeleteReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__DeleteReceiver(struct soap*, _trv__DeleteReceiver **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__CreateReceiver_DEFINED -#define SOAP_TYPE_PointerTo_trv__CreateReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__CreateReceiver(struct soap*, _trv__CreateReceiver *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__CreateReceiver(struct soap*, const char *, int, _trv__CreateReceiver *const*, const char *); -SOAP_FMAC3 _trv__CreateReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__CreateReceiver(struct soap*, const char*, _trv__CreateReceiver **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__CreateReceiver(struct soap*, _trv__CreateReceiver *const*, const char*, const char*); -SOAP_FMAC3 _trv__CreateReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__CreateReceiver(struct soap*, _trv__CreateReceiver **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__GetReceiver_DEFINED -#define SOAP_TYPE_PointerTo_trv__GetReceiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetReceiver(struct soap*, _trv__GetReceiver *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetReceiver(struct soap*, const char *, int, _trv__GetReceiver *const*, const char *); -SOAP_FMAC3 _trv__GetReceiver ** SOAP_FMAC4 soap_in_PointerTo_trv__GetReceiver(struct soap*, const char*, _trv__GetReceiver **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetReceiver(struct soap*, _trv__GetReceiver *const*, const char*, const char*); -SOAP_FMAC3 _trv__GetReceiver ** SOAP_FMAC4 soap_get_PointerTo_trv__GetReceiver(struct soap*, _trv__GetReceiver **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__GetReceivers_DEFINED -#define SOAP_TYPE_PointerTo_trv__GetReceivers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetReceivers(struct soap*, _trv__GetReceivers *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetReceivers(struct soap*, const char *, int, _trv__GetReceivers *const*, const char *); -SOAP_FMAC3 _trv__GetReceivers ** SOAP_FMAC4 soap_in_PointerTo_trv__GetReceivers(struct soap*, const char*, _trv__GetReceivers **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetReceivers(struct soap*, _trv__GetReceivers *const*, const char*, const char*); -SOAP_FMAC3 _trv__GetReceivers ** SOAP_FMAC4 soap_get_PointerTo_trv__GetReceivers(struct soap*, _trv__GetReceivers **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trv__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_trv__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trv__GetServiceCapabilities(struct soap*, _trv__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trv__GetServiceCapabilities(struct soap*, const char *, int, _trv__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _trv__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_trv__GetServiceCapabilities(struct soap*, const char*, _trv__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trv__GetServiceCapabilities(struct soap*, _trv__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _trv__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_trv__GetServiceCapabilities(struct soap*, _trv__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__DeleteOSD_DEFINED -#define SOAP_TYPE_PointerTo_trt__DeleteOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__DeleteOSD(struct soap*, _trt__DeleteOSD *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__DeleteOSD(struct soap*, const char *, int, _trt__DeleteOSD *const*, const char *); -SOAP_FMAC3 _trt__DeleteOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__DeleteOSD(struct soap*, const char*, _trt__DeleteOSD **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__DeleteOSD(struct soap*, _trt__DeleteOSD *const*, const char*, const char*); -SOAP_FMAC3 _trt__DeleteOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__DeleteOSD(struct soap*, _trt__DeleteOSD **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__CreateOSD_DEFINED -#define SOAP_TYPE_PointerTo_trt__CreateOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__CreateOSD(struct soap*, _trt__CreateOSD *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__CreateOSD(struct soap*, const char *, int, _trt__CreateOSD *const*, const char *); -SOAP_FMAC3 _trt__CreateOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__CreateOSD(struct soap*, const char*, _trt__CreateOSD **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__CreateOSD(struct soap*, _trt__CreateOSD *const*, const char*, const char*); -SOAP_FMAC3 _trt__CreateOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__CreateOSD(struct soap*, _trt__CreateOSD **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetOSD_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetOSD(struct soap*, _trt__SetOSD *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetOSD(struct soap*, const char *, int, _trt__SetOSD *const*, const char *); -SOAP_FMAC3 _trt__SetOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__SetOSD(struct soap*, const char*, _trt__SetOSD **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetOSD(struct soap*, _trt__SetOSD *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__SetOSD(struct soap*, _trt__SetOSD **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetOSDOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetOSDOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetOSDOptions(struct soap*, _trt__GetOSDOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetOSDOptions(struct soap*, const char *, int, _trt__GetOSDOptions *const*, const char *); -SOAP_FMAC3 _trt__GetOSDOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetOSDOptions(struct soap*, const char*, _trt__GetOSDOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetOSDOptions(struct soap*, _trt__GetOSDOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetOSDOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetOSDOptions(struct soap*, _trt__GetOSDOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetOSD_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetOSD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetOSD(struct soap*, _trt__GetOSD *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetOSD(struct soap*, const char *, int, _trt__GetOSD *const*, const char *); -SOAP_FMAC3 _trt__GetOSD ** SOAP_FMAC4 soap_in_PointerTo_trt__GetOSD(struct soap*, const char*, _trt__GetOSD **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetOSD(struct soap*, _trt__GetOSD *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetOSD ** SOAP_FMAC4 soap_get_PointerTo_trt__GetOSD(struct soap*, _trt__GetOSD **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetOSDs_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetOSDs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetOSDs(struct soap*, _trt__GetOSDs *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetOSDs(struct soap*, const char *, int, _trt__GetOSDs *const*, const char *); -SOAP_FMAC3 _trt__GetOSDs ** SOAP_FMAC4 soap_in_PointerTo_trt__GetOSDs(struct soap*, const char*, _trt__GetOSDs **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetOSDs(struct soap*, _trt__GetOSDs *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetOSDs ** SOAP_FMAC4 soap_get_PointerTo_trt__GetOSDs(struct soap*, _trt__GetOSDs **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetVideoSourceMode_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetVideoSourceMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetVideoSourceMode(struct soap*, _trt__SetVideoSourceMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetVideoSourceMode(struct soap*, const char *, int, _trt__SetVideoSourceMode *const*, const char *); -SOAP_FMAC3 _trt__SetVideoSourceMode ** SOAP_FMAC4 soap_in_PointerTo_trt__SetVideoSourceMode(struct soap*, const char*, _trt__SetVideoSourceMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetVideoSourceMode(struct soap*, _trt__SetVideoSourceMode *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetVideoSourceMode ** SOAP_FMAC4 soap_get_PointerTo_trt__SetVideoSourceMode(struct soap*, _trt__SetVideoSourceMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoSourceModes_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoSourceModes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoSourceModes(struct soap*, _trt__GetVideoSourceModes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoSourceModes(struct soap*, const char *, int, _trt__GetVideoSourceModes *const*, const char *); -SOAP_FMAC3 _trt__GetVideoSourceModes ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoSourceModes(struct soap*, const char*, _trt__GetVideoSourceModes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoSourceModes(struct soap*, _trt__GetVideoSourceModes *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoSourceModes ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoSourceModes(struct soap*, _trt__GetVideoSourceModes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetSnapshotUri_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetSnapshotUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetSnapshotUri(struct soap*, _trt__GetSnapshotUri *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetSnapshotUri(struct soap*, const char *, int, _trt__GetSnapshotUri *const*, const char *); -SOAP_FMAC3 _trt__GetSnapshotUri ** SOAP_FMAC4 soap_in_PointerTo_trt__GetSnapshotUri(struct soap*, const char*, _trt__GetSnapshotUri **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetSnapshotUri(struct soap*, _trt__GetSnapshotUri *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetSnapshotUri ** SOAP_FMAC4 soap_get_PointerTo_trt__GetSnapshotUri(struct soap*, _trt__GetSnapshotUri **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetSynchronizationPoint_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetSynchronizationPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetSynchronizationPoint(struct soap*, _trt__SetSynchronizationPoint *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetSynchronizationPoint(struct soap*, const char *, int, _trt__SetSynchronizationPoint *const*, const char *); -SOAP_FMAC3 _trt__SetSynchronizationPoint ** SOAP_FMAC4 soap_in_PointerTo_trt__SetSynchronizationPoint(struct soap*, const char*, _trt__SetSynchronizationPoint **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetSynchronizationPoint(struct soap*, _trt__SetSynchronizationPoint *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetSynchronizationPoint ** SOAP_FMAC4 soap_get_PointerTo_trt__SetSynchronizationPoint(struct soap*, _trt__SetSynchronizationPoint **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__StopMulticastStreaming_DEFINED -#define SOAP_TYPE_PointerTo_trt__StopMulticastStreaming_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__StopMulticastStreaming(struct soap*, _trt__StopMulticastStreaming *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__StopMulticastStreaming(struct soap*, const char *, int, _trt__StopMulticastStreaming *const*, const char *); -SOAP_FMAC3 _trt__StopMulticastStreaming ** SOAP_FMAC4 soap_in_PointerTo_trt__StopMulticastStreaming(struct soap*, const char*, _trt__StopMulticastStreaming **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__StopMulticastStreaming(struct soap*, _trt__StopMulticastStreaming *const*, const char*, const char*); -SOAP_FMAC3 _trt__StopMulticastStreaming ** SOAP_FMAC4 soap_get_PointerTo_trt__StopMulticastStreaming(struct soap*, _trt__StopMulticastStreaming **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__StartMulticastStreaming_DEFINED -#define SOAP_TYPE_PointerTo_trt__StartMulticastStreaming_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__StartMulticastStreaming(struct soap*, _trt__StartMulticastStreaming *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__StartMulticastStreaming(struct soap*, const char *, int, _trt__StartMulticastStreaming *const*, const char *); -SOAP_FMAC3 _trt__StartMulticastStreaming ** SOAP_FMAC4 soap_in_PointerTo_trt__StartMulticastStreaming(struct soap*, const char*, _trt__StartMulticastStreaming **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__StartMulticastStreaming(struct soap*, _trt__StartMulticastStreaming *const*, const char*, const char*); -SOAP_FMAC3 _trt__StartMulticastStreaming ** SOAP_FMAC4 soap_get_PointerTo_trt__StartMulticastStreaming(struct soap*, _trt__StartMulticastStreaming **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetStreamUri_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetStreamUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetStreamUri(struct soap*, _trt__GetStreamUri *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetStreamUri(struct soap*, const char *, int, _trt__GetStreamUri *const*, const char *); -SOAP_FMAC3 _trt__GetStreamUri ** SOAP_FMAC4 soap_in_PointerTo_trt__GetStreamUri(struct soap*, const char*, _trt__GetStreamUri **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetStreamUri(struct soap*, _trt__GetStreamUri *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetStreamUri ** SOAP_FMAC4 soap_get_PointerTo_trt__GetStreamUri(struct soap*, _trt__GetStreamUri **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, _trt__GetGuaranteedNumberOfVideoEncoderInstances *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const char *, int, _trt__GetGuaranteedNumberOfVideoEncoderInstances *const*, const char *); -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances ** SOAP_FMAC4 soap_in_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, const char*, _trt__GetGuaranteedNumberOfVideoEncoderInstances **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, _trt__GetGuaranteedNumberOfVideoEncoderInstances *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetGuaranteedNumberOfVideoEncoderInstances ** SOAP_FMAC4 soap_get_PointerTo_trt__GetGuaranteedNumberOfVideoEncoderInstances(struct soap*, _trt__GetGuaranteedNumberOfVideoEncoderInstances **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap*, _trt__GetAudioDecoderConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap*, const char *, int, _trt__GetAudioDecoderConfigurationOptions *const*, const char *); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap*, const char*, _trt__GetAudioDecoderConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap*, _trt__GetAudioDecoderConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioDecoderConfigurationOptions(struct soap*, _trt__GetAudioDecoderConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap*, _trt__GetAudioOutputConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap*, const char *, int, _trt__GetAudioOutputConfigurationOptions *const*, const char *); -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap*, const char*, _trt__GetAudioOutputConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap*, _trt__GetAudioOutputConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioOutputConfigurationOptions(struct soap*, _trt__GetAudioOutputConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetMetadataConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetMetadataConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetMetadataConfigurationOptions(struct soap*, _trt__GetMetadataConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetMetadataConfigurationOptions(struct soap*, const char *, int, _trt__GetMetadataConfigurationOptions *const*, const char *); -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetMetadataConfigurationOptions(struct soap*, const char*, _trt__GetMetadataConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetMetadataConfigurationOptions(struct soap*, _trt__GetMetadataConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetMetadataConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetMetadataConfigurationOptions(struct soap*, _trt__GetMetadataConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap*, _trt__GetAudioEncoderConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap*, const char *, int, _trt__GetAudioEncoderConfigurationOptions *const*, const char *); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap*, const char*, _trt__GetAudioEncoderConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap*, _trt__GetAudioEncoderConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioEncoderConfigurationOptions(struct soap*, _trt__GetAudioEncoderConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap*, _trt__GetAudioSourceConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap*, const char *, int, _trt__GetAudioSourceConfigurationOptions *const*, const char *); -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap*, const char*, _trt__GetAudioSourceConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap*, _trt__GetAudioSourceConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioSourceConfigurationOptions(struct soap*, _trt__GetAudioSourceConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap*, _trt__GetVideoEncoderConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap*, const char *, int, _trt__GetVideoEncoderConfigurationOptions *const*, const char *); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap*, const char*, _trt__GetVideoEncoderConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap*, _trt__GetVideoEncoderConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoEncoderConfigurationOptions(struct soap*, _trt__GetVideoEncoderConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap*, _trt__GetVideoSourceConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap*, const char *, int, _trt__GetVideoSourceConfigurationOptions *const*, const char *); -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap*, const char*, _trt__GetVideoSourceConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap*, _trt__GetVideoSourceConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoSourceConfigurationOptions(struct soap*, _trt__GetVideoSourceConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetAudioDecoderConfiguration(struct soap*, _trt__SetAudioDecoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetAudioDecoderConfiguration(struct soap*, const char *, int, _trt__SetAudioDecoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetAudioDecoderConfiguration(struct soap*, const char*, _trt__SetAudioDecoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetAudioDecoderConfiguration(struct soap*, _trt__SetAudioDecoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetAudioDecoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetAudioDecoderConfiguration(struct soap*, _trt__SetAudioDecoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetAudioOutputConfiguration(struct soap*, _trt__SetAudioOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetAudioOutputConfiguration(struct soap*, const char *, int, _trt__SetAudioOutputConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetAudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetAudioOutputConfiguration(struct soap*, const char*, _trt__SetAudioOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetAudioOutputConfiguration(struct soap*, _trt__SetAudioOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetAudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetAudioOutputConfiguration(struct soap*, _trt__SetAudioOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetMetadataConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetMetadataConfiguration(struct soap*, _trt__SetMetadataConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetMetadataConfiguration(struct soap*, const char *, int, _trt__SetMetadataConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetMetadataConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetMetadataConfiguration(struct soap*, const char*, _trt__SetMetadataConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetMetadataConfiguration(struct soap*, _trt__SetMetadataConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetMetadataConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetMetadataConfiguration(struct soap*, _trt__SetMetadataConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap*, _trt__SetVideoAnalyticsConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap*, const char *, int, _trt__SetVideoAnalyticsConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap*, const char*, _trt__SetVideoAnalyticsConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap*, _trt__SetVideoAnalyticsConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetVideoAnalyticsConfiguration(struct soap*, _trt__SetVideoAnalyticsConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetAudioEncoderConfiguration(struct soap*, _trt__SetAudioEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetAudioEncoderConfiguration(struct soap*, const char *, int, _trt__SetAudioEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetAudioEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetAudioEncoderConfiguration(struct soap*, const char*, _trt__SetAudioEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetAudioEncoderConfiguration(struct soap*, _trt__SetAudioEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetAudioEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetAudioEncoderConfiguration(struct soap*, _trt__SetAudioEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetAudioSourceConfiguration(struct soap*, _trt__SetAudioSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetAudioSourceConfiguration(struct soap*, const char *, int, _trt__SetAudioSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetAudioSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetAudioSourceConfiguration(struct soap*, const char*, _trt__SetAudioSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetAudioSourceConfiguration(struct soap*, _trt__SetAudioSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetAudioSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetAudioSourceConfiguration(struct soap*, _trt__SetAudioSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetVideoEncoderConfiguration(struct soap*, _trt__SetVideoEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetVideoEncoderConfiguration(struct soap*, const char *, int, _trt__SetVideoEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetVideoEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetVideoEncoderConfiguration(struct soap*, const char*, _trt__SetVideoEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetVideoEncoderConfiguration(struct soap*, _trt__SetVideoEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetVideoEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetVideoEncoderConfiguration(struct soap*, _trt__SetVideoEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__SetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__SetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__SetVideoSourceConfiguration(struct soap*, _trt__SetVideoSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__SetVideoSourceConfiguration(struct soap*, const char *, int, _trt__SetVideoSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__SetVideoSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__SetVideoSourceConfiguration(struct soap*, const char*, _trt__SetVideoSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__SetVideoSourceConfiguration(struct soap*, _trt__SetVideoSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__SetVideoSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__SetVideoSourceConfiguration(struct soap*, _trt__SetVideoSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleAudioDecoderConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleAudioDecoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(struct soap*, _trt__GetCompatibleAudioDecoderConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const char *, int, _trt__GetCompatibleAudioDecoderConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioDecoderConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(struct soap*, _trt__GetCompatibleAudioDecoderConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioDecoderConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleAudioDecoderConfigurations(struct soap*, _trt__GetCompatibleAudioDecoderConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleAudioOutputConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleAudioOutputConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleAudioOutputConfigurations(struct soap*, _trt__GetCompatibleAudioOutputConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleAudioOutputConfigurations(struct soap*, const char *, int, _trt__GetCompatibleAudioOutputConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleAudioOutputConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioOutputConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleAudioOutputConfigurations(struct soap*, _trt__GetCompatibleAudioOutputConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioOutputConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleAudioOutputConfigurations(struct soap*, _trt__GetCompatibleAudioOutputConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleMetadataConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleMetadataConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleMetadataConfigurations(struct soap*, _trt__GetCompatibleMetadataConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleMetadataConfigurations(struct soap*, const char *, int, _trt__GetCompatibleMetadataConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleMetadataConfigurations(struct soap*, const char*, _trt__GetCompatibleMetadataConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleMetadataConfigurations(struct soap*, _trt__GetCompatibleMetadataConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleMetadataConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleMetadataConfigurations(struct soap*, _trt__GetCompatibleMetadataConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, _trt__GetCompatibleVideoAnalyticsConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const char *, int, _trt__GetCompatibleVideoAnalyticsConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, const char*, _trt__GetCompatibleVideoAnalyticsConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, _trt__GetCompatibleVideoAnalyticsConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoAnalyticsConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleVideoAnalyticsConfigurations(struct soap*, _trt__GetCompatibleVideoAnalyticsConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleAudioSourceConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleAudioSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleAudioSourceConfigurations(struct soap*, _trt__GetCompatibleAudioSourceConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleAudioSourceConfigurations(struct soap*, const char *, int, _trt__GetCompatibleAudioSourceConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleAudioSourceConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioSourceConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleAudioSourceConfigurations(struct soap*, _trt__GetCompatibleAudioSourceConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioSourceConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleAudioSourceConfigurations(struct soap*, _trt__GetCompatibleAudioSourceConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleAudioEncoderConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleAudioEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(struct soap*, _trt__GetCompatibleAudioEncoderConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const char *, int, _trt__GetCompatibleAudioEncoderConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(struct soap*, const char*, _trt__GetCompatibleAudioEncoderConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(struct soap*, _trt__GetCompatibleAudioEncoderConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleAudioEncoderConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleAudioEncoderConfigurations(struct soap*, _trt__GetCompatibleAudioEncoderConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleVideoSourceConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleVideoSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleVideoSourceConfigurations(struct soap*, _trt__GetCompatibleVideoSourceConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleVideoSourceConfigurations(struct soap*, const char *, int, _trt__GetCompatibleVideoSourceConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleVideoSourceConfigurations(struct soap*, const char*, _trt__GetCompatibleVideoSourceConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleVideoSourceConfigurations(struct soap*, _trt__GetCompatibleVideoSourceConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoSourceConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleVideoSourceConfigurations(struct soap*, _trt__GetCompatibleVideoSourceConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetCompatibleVideoEncoderConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetCompatibleVideoEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(struct soap*, _trt__GetCompatibleVideoEncoderConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const char *, int, _trt__GetCompatibleVideoEncoderConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(struct soap*, const char*, _trt__GetCompatibleVideoEncoderConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(struct soap*, _trt__GetCompatibleVideoEncoderConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetCompatibleVideoEncoderConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetCompatibleVideoEncoderConfigurations(struct soap*, _trt__GetCompatibleVideoEncoderConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioDecoderConfiguration(struct soap*, _trt__GetAudioDecoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioDecoderConfiguration(struct soap*, const char *, int, _trt__GetAudioDecoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetAudioDecoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioDecoderConfiguration(struct soap*, const char*, _trt__GetAudioDecoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioDecoderConfiguration(struct soap*, _trt__GetAudioDecoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioDecoderConfiguration(struct soap*, _trt__GetAudioDecoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioOutputConfiguration(struct soap*, _trt__GetAudioOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioOutputConfiguration(struct soap*, const char *, int, _trt__GetAudioOutputConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetAudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioOutputConfiguration(struct soap*, const char*, _trt__GetAudioOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioOutputConfiguration(struct soap*, _trt__GetAudioOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioOutputConfiguration(struct soap*, _trt__GetAudioOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetMetadataConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetMetadataConfiguration(struct soap*, _trt__GetMetadataConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetMetadataConfiguration(struct soap*, const char *, int, _trt__GetMetadataConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetMetadataConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetMetadataConfiguration(struct soap*, const char*, _trt__GetMetadataConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetMetadataConfiguration(struct soap*, _trt__GetMetadataConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetMetadataConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetMetadataConfiguration(struct soap*, _trt__GetMetadataConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoAnalyticsConfiguration(struct soap*, _trt__GetVideoAnalyticsConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoAnalyticsConfiguration(struct soap*, const char *, int, _trt__GetVideoAnalyticsConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoAnalyticsConfiguration(struct soap*, const char*, _trt__GetVideoAnalyticsConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoAnalyticsConfiguration(struct soap*, _trt__GetVideoAnalyticsConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoAnalyticsConfiguration(struct soap*, _trt__GetVideoAnalyticsConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioEncoderConfiguration(struct soap*, _trt__GetAudioEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioEncoderConfiguration(struct soap*, const char *, int, _trt__GetAudioEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetAudioEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioEncoderConfiguration(struct soap*, const char*, _trt__GetAudioEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioEncoderConfiguration(struct soap*, _trt__GetAudioEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioEncoderConfiguration(struct soap*, _trt__GetAudioEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioSourceConfiguration(struct soap*, _trt__GetAudioSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioSourceConfiguration(struct soap*, const char *, int, _trt__GetAudioSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetAudioSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioSourceConfiguration(struct soap*, const char*, _trt__GetAudioSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioSourceConfiguration(struct soap*, _trt__GetAudioSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioSourceConfiguration(struct soap*, _trt__GetAudioSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoEncoderConfiguration(struct soap*, _trt__GetVideoEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoEncoderConfiguration(struct soap*, const char *, int, _trt__GetVideoEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetVideoEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoEncoderConfiguration(struct soap*, const char*, _trt__GetVideoEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoEncoderConfiguration(struct soap*, _trt__GetVideoEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoEncoderConfiguration(struct soap*, _trt__GetVideoEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoSourceConfiguration(struct soap*, _trt__GetVideoSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoSourceConfiguration(struct soap*, const char *, int, _trt__GetVideoSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__GetVideoSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoSourceConfiguration(struct soap*, const char*, _trt__GetVideoSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoSourceConfiguration(struct soap*, _trt__GetVideoSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoSourceConfiguration(struct soap*, _trt__GetVideoSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioDecoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioDecoderConfigurations(struct soap*, _trt__GetAudioDecoderConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioDecoderConfigurations(struct soap*, const char *, int, _trt__GetAudioDecoderConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioDecoderConfigurations(struct soap*, const char*, _trt__GetAudioDecoderConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioDecoderConfigurations(struct soap*, _trt__GetAudioDecoderConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioDecoderConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioDecoderConfigurations(struct soap*, _trt__GetAudioDecoderConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioOutputConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioOutputConfigurations(struct soap*, _trt__GetAudioOutputConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioOutputConfigurations(struct soap*, const char *, int, _trt__GetAudioOutputConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetAudioOutputConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioOutputConfigurations(struct soap*, const char*, _trt__GetAudioOutputConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioOutputConfigurations(struct soap*, _trt__GetAudioOutputConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioOutputConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioOutputConfigurations(struct soap*, _trt__GetAudioOutputConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetMetadataConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetMetadataConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetMetadataConfigurations(struct soap*, _trt__GetMetadataConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetMetadataConfigurations(struct soap*, const char *, int, _trt__GetMetadataConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetMetadataConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetMetadataConfigurations(struct soap*, const char*, _trt__GetMetadataConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetMetadataConfigurations(struct soap*, _trt__GetMetadataConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetMetadataConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetMetadataConfigurations(struct soap*, _trt__GetMetadataConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoAnalyticsConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoAnalyticsConfigurations(struct soap*, _trt__GetVideoAnalyticsConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoAnalyticsConfigurations(struct soap*, const char *, int, _trt__GetVideoAnalyticsConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoAnalyticsConfigurations(struct soap*, const char*, _trt__GetVideoAnalyticsConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoAnalyticsConfigurations(struct soap*, _trt__GetVideoAnalyticsConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoAnalyticsConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoAnalyticsConfigurations(struct soap*, _trt__GetVideoAnalyticsConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioEncoderConfigurations(struct soap*, _trt__GetAudioEncoderConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioEncoderConfigurations(struct soap*, const char *, int, _trt__GetAudioEncoderConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioEncoderConfigurations(struct soap*, const char*, _trt__GetAudioEncoderConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioEncoderConfigurations(struct soap*, _trt__GetAudioEncoderConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioEncoderConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioEncoderConfigurations(struct soap*, _trt__GetAudioEncoderConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioSourceConfigurations(struct soap*, _trt__GetAudioSourceConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioSourceConfigurations(struct soap*, const char *, int, _trt__GetAudioSourceConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetAudioSourceConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioSourceConfigurations(struct soap*, const char*, _trt__GetAudioSourceConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioSourceConfigurations(struct soap*, _trt__GetAudioSourceConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioSourceConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioSourceConfigurations(struct soap*, _trt__GetAudioSourceConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoEncoderConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoEncoderConfigurations(struct soap*, _trt__GetVideoEncoderConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoEncoderConfigurations(struct soap*, const char *, int, _trt__GetVideoEncoderConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoEncoderConfigurations(struct soap*, const char*, _trt__GetVideoEncoderConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoEncoderConfigurations(struct soap*, _trt__GetVideoEncoderConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoEncoderConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoEncoderConfigurations(struct soap*, _trt__GetVideoEncoderConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoSourceConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoSourceConfigurations(struct soap*, _trt__GetVideoSourceConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoSourceConfigurations(struct soap*, const char *, int, _trt__GetVideoSourceConfigurations *const*, const char *); -SOAP_FMAC3 _trt__GetVideoSourceConfigurations ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoSourceConfigurations(struct soap*, const char*, _trt__GetVideoSourceConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoSourceConfigurations(struct soap*, _trt__GetVideoSourceConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoSourceConfigurations ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoSourceConfigurations(struct soap*, _trt__GetVideoSourceConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__DeleteProfile_DEFINED -#define SOAP_TYPE_PointerTo_trt__DeleteProfile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__DeleteProfile(struct soap*, _trt__DeleteProfile *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__DeleteProfile(struct soap*, const char *, int, _trt__DeleteProfile *const*, const char *); -SOAP_FMAC3 _trt__DeleteProfile ** SOAP_FMAC4 soap_in_PointerTo_trt__DeleteProfile(struct soap*, const char*, _trt__DeleteProfile **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__DeleteProfile(struct soap*, _trt__DeleteProfile *const*, const char*, const char*); -SOAP_FMAC3 _trt__DeleteProfile ** SOAP_FMAC4 soap_get_PointerTo_trt__DeleteProfile(struct soap*, _trt__DeleteProfile **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveAudioDecoderConfiguration(struct soap*, _trt__RemoveAudioDecoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveAudioDecoderConfiguration(struct soap*, const char *, int, _trt__RemoveAudioDecoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveAudioDecoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveAudioDecoderConfiguration(struct soap*, const char*, _trt__RemoveAudioDecoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveAudioDecoderConfiguration(struct soap*, _trt__RemoveAudioDecoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveAudioDecoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveAudioDecoderConfiguration(struct soap*, _trt__RemoveAudioDecoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveAudioOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveAudioOutputConfiguration(struct soap*, _trt__RemoveAudioOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveAudioOutputConfiguration(struct soap*, const char *, int, _trt__RemoveAudioOutputConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveAudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveAudioOutputConfiguration(struct soap*, const char*, _trt__RemoveAudioOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveAudioOutputConfiguration(struct soap*, _trt__RemoveAudioOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveAudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveAudioOutputConfiguration(struct soap*, _trt__RemoveAudioOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveMetadataConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveMetadataConfiguration(struct soap*, _trt__RemoveMetadataConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveMetadataConfiguration(struct soap*, const char *, int, _trt__RemoveMetadataConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveMetadataConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveMetadataConfiguration(struct soap*, const char*, _trt__RemoveMetadataConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveMetadataConfiguration(struct soap*, _trt__RemoveMetadataConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveMetadataConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveMetadataConfiguration(struct soap*, _trt__RemoveMetadataConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveVideoAnalyticsConfiguration(struct soap*, _trt__RemoveVideoAnalyticsConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveVideoAnalyticsConfiguration(struct soap*, const char *, int, _trt__RemoveVideoAnalyticsConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveVideoAnalyticsConfiguration(struct soap*, const char*, _trt__RemoveVideoAnalyticsConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveVideoAnalyticsConfiguration(struct soap*, _trt__RemoveVideoAnalyticsConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveVideoAnalyticsConfiguration(struct soap*, _trt__RemoveVideoAnalyticsConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemovePTZConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemovePTZConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemovePTZConfiguration(struct soap*, _trt__RemovePTZConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemovePTZConfiguration(struct soap*, const char *, int, _trt__RemovePTZConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemovePTZConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemovePTZConfiguration(struct soap*, const char*, _trt__RemovePTZConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemovePTZConfiguration(struct soap*, _trt__RemovePTZConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemovePTZConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemovePTZConfiguration(struct soap*, _trt__RemovePTZConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveAudioSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveAudioSourceConfiguration(struct soap*, _trt__RemoveAudioSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveAudioSourceConfiguration(struct soap*, const char *, int, _trt__RemoveAudioSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveAudioSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveAudioSourceConfiguration(struct soap*, const char*, _trt__RemoveAudioSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveAudioSourceConfiguration(struct soap*, _trt__RemoveAudioSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveAudioSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveAudioSourceConfiguration(struct soap*, _trt__RemoveAudioSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveAudioEncoderConfiguration(struct soap*, _trt__RemoveAudioEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveAudioEncoderConfiguration(struct soap*, const char *, int, _trt__RemoveAudioEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveAudioEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveAudioEncoderConfiguration(struct soap*, const char*, _trt__RemoveAudioEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveAudioEncoderConfiguration(struct soap*, _trt__RemoveAudioEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveAudioEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveAudioEncoderConfiguration(struct soap*, _trt__RemoveAudioEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveVideoSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveVideoSourceConfiguration(struct soap*, _trt__RemoveVideoSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveVideoSourceConfiguration(struct soap*, const char *, int, _trt__RemoveVideoSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveVideoSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveVideoSourceConfiguration(struct soap*, const char*, _trt__RemoveVideoSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveVideoSourceConfiguration(struct soap*, _trt__RemoveVideoSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveVideoSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveVideoSourceConfiguration(struct soap*, _trt__RemoveVideoSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__RemoveVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__RemoveVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__RemoveVideoEncoderConfiguration(struct soap*, _trt__RemoveVideoEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__RemoveVideoEncoderConfiguration(struct soap*, const char *, int, _trt__RemoveVideoEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__RemoveVideoEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__RemoveVideoEncoderConfiguration(struct soap*, const char*, _trt__RemoveVideoEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__RemoveVideoEncoderConfiguration(struct soap*, _trt__RemoveVideoEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__RemoveVideoEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__RemoveVideoEncoderConfiguration(struct soap*, _trt__RemoveVideoEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddAudioDecoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddAudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddAudioDecoderConfiguration(struct soap*, _trt__AddAudioDecoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddAudioDecoderConfiguration(struct soap*, const char *, int, _trt__AddAudioDecoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddAudioDecoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddAudioDecoderConfiguration(struct soap*, const char*, _trt__AddAudioDecoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddAudioDecoderConfiguration(struct soap*, _trt__AddAudioDecoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddAudioDecoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddAudioDecoderConfiguration(struct soap*, _trt__AddAudioDecoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddAudioOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddAudioOutputConfiguration(struct soap*, _trt__AddAudioOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddAudioOutputConfiguration(struct soap*, const char *, int, _trt__AddAudioOutputConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddAudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddAudioOutputConfiguration(struct soap*, const char*, _trt__AddAudioOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddAudioOutputConfiguration(struct soap*, _trt__AddAudioOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddAudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddAudioOutputConfiguration(struct soap*, _trt__AddAudioOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddMetadataConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddMetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddMetadataConfiguration(struct soap*, _trt__AddMetadataConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddMetadataConfiguration(struct soap*, const char *, int, _trt__AddMetadataConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddMetadataConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddMetadataConfiguration(struct soap*, const char*, _trt__AddMetadataConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddMetadataConfiguration(struct soap*, _trt__AddMetadataConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddMetadataConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddMetadataConfiguration(struct soap*, _trt__AddMetadataConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddVideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddVideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddVideoAnalyticsConfiguration(struct soap*, _trt__AddVideoAnalyticsConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddVideoAnalyticsConfiguration(struct soap*, const char *, int, _trt__AddVideoAnalyticsConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddVideoAnalyticsConfiguration(struct soap*, const char*, _trt__AddVideoAnalyticsConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddVideoAnalyticsConfiguration(struct soap*, _trt__AddVideoAnalyticsConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddVideoAnalyticsConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddVideoAnalyticsConfiguration(struct soap*, _trt__AddVideoAnalyticsConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddPTZConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddPTZConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddPTZConfiguration(struct soap*, _trt__AddPTZConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddPTZConfiguration(struct soap*, const char *, int, _trt__AddPTZConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddPTZConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddPTZConfiguration(struct soap*, const char*, _trt__AddPTZConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddPTZConfiguration(struct soap*, _trt__AddPTZConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddPTZConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddPTZConfiguration(struct soap*, _trt__AddPTZConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddAudioSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddAudioSourceConfiguration(struct soap*, _trt__AddAudioSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddAudioSourceConfiguration(struct soap*, const char *, int, _trt__AddAudioSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddAudioSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddAudioSourceConfiguration(struct soap*, const char*, _trt__AddAudioSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddAudioSourceConfiguration(struct soap*, _trt__AddAudioSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddAudioSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddAudioSourceConfiguration(struct soap*, _trt__AddAudioSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddAudioEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddAudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddAudioEncoderConfiguration(struct soap*, _trt__AddAudioEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddAudioEncoderConfiguration(struct soap*, const char *, int, _trt__AddAudioEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddAudioEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddAudioEncoderConfiguration(struct soap*, const char*, _trt__AddAudioEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddAudioEncoderConfiguration(struct soap*, _trt__AddAudioEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddAudioEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddAudioEncoderConfiguration(struct soap*, _trt__AddAudioEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddVideoSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddVideoSourceConfiguration(struct soap*, _trt__AddVideoSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddVideoSourceConfiguration(struct soap*, const char *, int, _trt__AddVideoSourceConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddVideoSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddVideoSourceConfiguration(struct soap*, const char*, _trt__AddVideoSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddVideoSourceConfiguration(struct soap*, _trt__AddVideoSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddVideoSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddVideoSourceConfiguration(struct soap*, _trt__AddVideoSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__AddVideoEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trt__AddVideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__AddVideoEncoderConfiguration(struct soap*, _trt__AddVideoEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__AddVideoEncoderConfiguration(struct soap*, const char *, int, _trt__AddVideoEncoderConfiguration *const*, const char *); -SOAP_FMAC3 _trt__AddVideoEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trt__AddVideoEncoderConfiguration(struct soap*, const char*, _trt__AddVideoEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__AddVideoEncoderConfiguration(struct soap*, _trt__AddVideoEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trt__AddVideoEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trt__AddVideoEncoderConfiguration(struct soap*, _trt__AddVideoEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetProfiles_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetProfiles_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetProfiles(struct soap*, _trt__GetProfiles *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetProfiles(struct soap*, const char *, int, _trt__GetProfiles *const*, const char *); -SOAP_FMAC3 _trt__GetProfiles ** SOAP_FMAC4 soap_in_PointerTo_trt__GetProfiles(struct soap*, const char*, _trt__GetProfiles **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetProfiles(struct soap*, _trt__GetProfiles *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetProfiles ** SOAP_FMAC4 soap_get_PointerTo_trt__GetProfiles(struct soap*, _trt__GetProfiles **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetProfile_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetProfile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetProfile(struct soap*, _trt__GetProfile *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetProfile(struct soap*, const char *, int, _trt__GetProfile *const*, const char *); -SOAP_FMAC3 _trt__GetProfile ** SOAP_FMAC4 soap_in_PointerTo_trt__GetProfile(struct soap*, const char*, _trt__GetProfile **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetProfile(struct soap*, _trt__GetProfile *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetProfile ** SOAP_FMAC4 soap_get_PointerTo_trt__GetProfile(struct soap*, _trt__GetProfile **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__CreateProfile_DEFINED -#define SOAP_TYPE_PointerTo_trt__CreateProfile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__CreateProfile(struct soap*, _trt__CreateProfile *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__CreateProfile(struct soap*, const char *, int, _trt__CreateProfile *const*, const char *); -SOAP_FMAC3 _trt__CreateProfile ** SOAP_FMAC4 soap_in_PointerTo_trt__CreateProfile(struct soap*, const char*, _trt__CreateProfile **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__CreateProfile(struct soap*, _trt__CreateProfile *const*, const char*, const char*); -SOAP_FMAC3 _trt__CreateProfile ** SOAP_FMAC4 soap_get_PointerTo_trt__CreateProfile(struct soap*, _trt__CreateProfile **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioOutputs_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioOutputs(struct soap*, _trt__GetAudioOutputs *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioOutputs(struct soap*, const char *, int, _trt__GetAudioOutputs *const*, const char *); -SOAP_FMAC3 _trt__GetAudioOutputs ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioOutputs(struct soap*, const char*, _trt__GetAudioOutputs **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioOutputs(struct soap*, _trt__GetAudioOutputs *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioOutputs ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioOutputs(struct soap*, _trt__GetAudioOutputs **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetAudioSources_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetAudioSources_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetAudioSources(struct soap*, _trt__GetAudioSources *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetAudioSources(struct soap*, const char *, int, _trt__GetAudioSources *const*, const char *); -SOAP_FMAC3 _trt__GetAudioSources ** SOAP_FMAC4 soap_in_PointerTo_trt__GetAudioSources(struct soap*, const char*, _trt__GetAudioSources **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetAudioSources(struct soap*, _trt__GetAudioSources *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetAudioSources ** SOAP_FMAC4 soap_get_PointerTo_trt__GetAudioSources(struct soap*, _trt__GetAudioSources **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetVideoSources_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetVideoSources_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetVideoSources(struct soap*, _trt__GetVideoSources *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetVideoSources(struct soap*, const char *, int, _trt__GetVideoSources *const*, const char *); -SOAP_FMAC3 _trt__GetVideoSources ** SOAP_FMAC4 soap_in_PointerTo_trt__GetVideoSources(struct soap*, const char*, _trt__GetVideoSources **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetVideoSources(struct soap*, _trt__GetVideoSources *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetVideoSources ** SOAP_FMAC4 soap_get_PointerTo_trt__GetVideoSources(struct soap*, _trt__GetVideoSources **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trt__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_trt__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trt__GetServiceCapabilities(struct soap*, _trt__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trt__GetServiceCapabilities(struct soap*, const char *, int, _trt__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _trt__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_trt__GetServiceCapabilities(struct soap*, const char*, _trt__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trt__GetServiceCapabilities(struct soap*, _trt__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _trt__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_trt__GetServiceCapabilities(struct soap*, _trt__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trp__SetReplayConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trp__SetReplayConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trp__SetReplayConfiguration(struct soap*, _trp__SetReplayConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trp__SetReplayConfiguration(struct soap*, const char *, int, _trp__SetReplayConfiguration *const*, const char *); -SOAP_FMAC3 _trp__SetReplayConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trp__SetReplayConfiguration(struct soap*, const char*, _trp__SetReplayConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trp__SetReplayConfiguration(struct soap*, _trp__SetReplayConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trp__SetReplayConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trp__SetReplayConfiguration(struct soap*, _trp__SetReplayConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trp__GetReplayConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trp__GetReplayConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trp__GetReplayConfiguration(struct soap*, _trp__GetReplayConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trp__GetReplayConfiguration(struct soap*, const char *, int, _trp__GetReplayConfiguration *const*, const char *); -SOAP_FMAC3 _trp__GetReplayConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trp__GetReplayConfiguration(struct soap*, const char*, _trp__GetReplayConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trp__GetReplayConfiguration(struct soap*, _trp__GetReplayConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trp__GetReplayConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trp__GetReplayConfiguration(struct soap*, _trp__GetReplayConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trp__GetReplayUri_DEFINED -#define SOAP_TYPE_PointerTo_trp__GetReplayUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trp__GetReplayUri(struct soap*, _trp__GetReplayUri *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trp__GetReplayUri(struct soap*, const char *, int, _trp__GetReplayUri *const*, const char *); -SOAP_FMAC3 _trp__GetReplayUri ** SOAP_FMAC4 soap_in_PointerTo_trp__GetReplayUri(struct soap*, const char*, _trp__GetReplayUri **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trp__GetReplayUri(struct soap*, _trp__GetReplayUri *const*, const char*, const char*); -SOAP_FMAC3 _trp__GetReplayUri ** SOAP_FMAC4 soap_get_PointerTo_trp__GetReplayUri(struct soap*, _trp__GetReplayUri **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trp__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_trp__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trp__GetServiceCapabilities(struct soap*, _trp__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trp__GetServiceCapabilities(struct soap*, const char *, int, _trp__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _trp__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_trp__GetServiceCapabilities(struct soap*, const char*, _trp__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trp__GetServiceCapabilities(struct soap*, _trp__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _trp__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_trp__GetServiceCapabilities(struct soap*, _trp__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetExportRecordedDataState_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetExportRecordedDataState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetExportRecordedDataState(struct soap*, _trc__GetExportRecordedDataState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetExportRecordedDataState(struct soap*, const char *, int, _trc__GetExportRecordedDataState *const*, const char *); -SOAP_FMAC3 _trc__GetExportRecordedDataState ** SOAP_FMAC4 soap_in_PointerTo_trc__GetExportRecordedDataState(struct soap*, const char*, _trc__GetExportRecordedDataState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetExportRecordedDataState(struct soap*, _trc__GetExportRecordedDataState *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetExportRecordedDataState ** SOAP_FMAC4 soap_get_PointerTo_trc__GetExportRecordedDataState(struct soap*, _trc__GetExportRecordedDataState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__StopExportRecordedData_DEFINED -#define SOAP_TYPE_PointerTo_trc__StopExportRecordedData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__StopExportRecordedData(struct soap*, _trc__StopExportRecordedData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__StopExportRecordedData(struct soap*, const char *, int, _trc__StopExportRecordedData *const*, const char *); -SOAP_FMAC3 _trc__StopExportRecordedData ** SOAP_FMAC4 soap_in_PointerTo_trc__StopExportRecordedData(struct soap*, const char*, _trc__StopExportRecordedData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__StopExportRecordedData(struct soap*, _trc__StopExportRecordedData *const*, const char*, const char*); -SOAP_FMAC3 _trc__StopExportRecordedData ** SOAP_FMAC4 soap_get_PointerTo_trc__StopExportRecordedData(struct soap*, _trc__StopExportRecordedData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__ExportRecordedData_DEFINED -#define SOAP_TYPE_PointerTo_trc__ExportRecordedData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__ExportRecordedData(struct soap*, _trc__ExportRecordedData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__ExportRecordedData(struct soap*, const char *, int, _trc__ExportRecordedData *const*, const char *); -SOAP_FMAC3 _trc__ExportRecordedData ** SOAP_FMAC4 soap_in_PointerTo_trc__ExportRecordedData(struct soap*, const char*, _trc__ExportRecordedData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__ExportRecordedData(struct soap*, _trc__ExportRecordedData *const*, const char*, const char*); -SOAP_FMAC3 _trc__ExportRecordedData ** SOAP_FMAC4 soap_get_PointerTo_trc__ExportRecordedData(struct soap*, _trc__ExportRecordedData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetRecordingJobState_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetRecordingJobState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetRecordingJobState(struct soap*, _trc__GetRecordingJobState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetRecordingJobState(struct soap*, const char *, int, _trc__GetRecordingJobState *const*, const char *); -SOAP_FMAC3 _trc__GetRecordingJobState ** SOAP_FMAC4 soap_in_PointerTo_trc__GetRecordingJobState(struct soap*, const char*, _trc__GetRecordingJobState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetRecordingJobState(struct soap*, _trc__GetRecordingJobState *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetRecordingJobState ** SOAP_FMAC4 soap_get_PointerTo_trc__GetRecordingJobState(struct soap*, _trc__GetRecordingJobState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__SetRecordingJobMode_DEFINED -#define SOAP_TYPE_PointerTo_trc__SetRecordingJobMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__SetRecordingJobMode(struct soap*, _trc__SetRecordingJobMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__SetRecordingJobMode(struct soap*, const char *, int, _trc__SetRecordingJobMode *const*, const char *); -SOAP_FMAC3 _trc__SetRecordingJobMode ** SOAP_FMAC4 soap_in_PointerTo_trc__SetRecordingJobMode(struct soap*, const char*, _trc__SetRecordingJobMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__SetRecordingJobMode(struct soap*, _trc__SetRecordingJobMode *const*, const char*, const char*); -SOAP_FMAC3 _trc__SetRecordingJobMode ** SOAP_FMAC4 soap_get_PointerTo_trc__SetRecordingJobMode(struct soap*, _trc__SetRecordingJobMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetRecordingJobConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetRecordingJobConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetRecordingJobConfiguration(struct soap*, _trc__GetRecordingJobConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetRecordingJobConfiguration(struct soap*, const char *, int, _trc__GetRecordingJobConfiguration *const*, const char *); -SOAP_FMAC3 _trc__GetRecordingJobConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trc__GetRecordingJobConfiguration(struct soap*, const char*, _trc__GetRecordingJobConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetRecordingJobConfiguration(struct soap*, _trc__GetRecordingJobConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetRecordingJobConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trc__GetRecordingJobConfiguration(struct soap*, _trc__GetRecordingJobConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__SetRecordingJobConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trc__SetRecordingJobConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__SetRecordingJobConfiguration(struct soap*, _trc__SetRecordingJobConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__SetRecordingJobConfiguration(struct soap*, const char *, int, _trc__SetRecordingJobConfiguration *const*, const char *); -SOAP_FMAC3 _trc__SetRecordingJobConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trc__SetRecordingJobConfiguration(struct soap*, const char*, _trc__SetRecordingJobConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__SetRecordingJobConfiguration(struct soap*, _trc__SetRecordingJobConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trc__SetRecordingJobConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trc__SetRecordingJobConfiguration(struct soap*, _trc__SetRecordingJobConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetRecordingJobs_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetRecordingJobs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetRecordingJobs(struct soap*, _trc__GetRecordingJobs *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetRecordingJobs(struct soap*, const char *, int, _trc__GetRecordingJobs *const*, const char *); -SOAP_FMAC3 _trc__GetRecordingJobs ** SOAP_FMAC4 soap_in_PointerTo_trc__GetRecordingJobs(struct soap*, const char*, _trc__GetRecordingJobs **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetRecordingJobs(struct soap*, _trc__GetRecordingJobs *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetRecordingJobs ** SOAP_FMAC4 soap_get_PointerTo_trc__GetRecordingJobs(struct soap*, _trc__GetRecordingJobs **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__DeleteRecordingJob_DEFINED -#define SOAP_TYPE_PointerTo_trc__DeleteRecordingJob_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__DeleteRecordingJob(struct soap*, _trc__DeleteRecordingJob *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__DeleteRecordingJob(struct soap*, const char *, int, _trc__DeleteRecordingJob *const*, const char *); -SOAP_FMAC3 _trc__DeleteRecordingJob ** SOAP_FMAC4 soap_in_PointerTo_trc__DeleteRecordingJob(struct soap*, const char*, _trc__DeleteRecordingJob **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__DeleteRecordingJob(struct soap*, _trc__DeleteRecordingJob *const*, const char*, const char*); -SOAP_FMAC3 _trc__DeleteRecordingJob ** SOAP_FMAC4 soap_get_PointerTo_trc__DeleteRecordingJob(struct soap*, _trc__DeleteRecordingJob **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__CreateRecordingJob_DEFINED -#define SOAP_TYPE_PointerTo_trc__CreateRecordingJob_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__CreateRecordingJob(struct soap*, _trc__CreateRecordingJob *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__CreateRecordingJob(struct soap*, const char *, int, _trc__CreateRecordingJob *const*, const char *); -SOAP_FMAC3 _trc__CreateRecordingJob ** SOAP_FMAC4 soap_in_PointerTo_trc__CreateRecordingJob(struct soap*, const char*, _trc__CreateRecordingJob **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__CreateRecordingJob(struct soap*, _trc__CreateRecordingJob *const*, const char*, const char*); -SOAP_FMAC3 _trc__CreateRecordingJob ** SOAP_FMAC4 soap_get_PointerTo_trc__CreateRecordingJob(struct soap*, _trc__CreateRecordingJob **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__SetTrackConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trc__SetTrackConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__SetTrackConfiguration(struct soap*, _trc__SetTrackConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__SetTrackConfiguration(struct soap*, const char *, int, _trc__SetTrackConfiguration *const*, const char *); -SOAP_FMAC3 _trc__SetTrackConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trc__SetTrackConfiguration(struct soap*, const char*, _trc__SetTrackConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__SetTrackConfiguration(struct soap*, _trc__SetTrackConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trc__SetTrackConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trc__SetTrackConfiguration(struct soap*, _trc__SetTrackConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetTrackConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetTrackConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetTrackConfiguration(struct soap*, _trc__GetTrackConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetTrackConfiguration(struct soap*, const char *, int, _trc__GetTrackConfiguration *const*, const char *); -SOAP_FMAC3 _trc__GetTrackConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trc__GetTrackConfiguration(struct soap*, const char*, _trc__GetTrackConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetTrackConfiguration(struct soap*, _trc__GetTrackConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetTrackConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trc__GetTrackConfiguration(struct soap*, _trc__GetTrackConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__DeleteTrack_DEFINED -#define SOAP_TYPE_PointerTo_trc__DeleteTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__DeleteTrack(struct soap*, _trc__DeleteTrack *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__DeleteTrack(struct soap*, const char *, int, _trc__DeleteTrack *const*, const char *); -SOAP_FMAC3 _trc__DeleteTrack ** SOAP_FMAC4 soap_in_PointerTo_trc__DeleteTrack(struct soap*, const char*, _trc__DeleteTrack **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__DeleteTrack(struct soap*, _trc__DeleteTrack *const*, const char*, const char*); -SOAP_FMAC3 _trc__DeleteTrack ** SOAP_FMAC4 soap_get_PointerTo_trc__DeleteTrack(struct soap*, _trc__DeleteTrack **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__CreateTrack_DEFINED -#define SOAP_TYPE_PointerTo_trc__CreateTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__CreateTrack(struct soap*, _trc__CreateTrack *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__CreateTrack(struct soap*, const char *, int, _trc__CreateTrack *const*, const char *); -SOAP_FMAC3 _trc__CreateTrack ** SOAP_FMAC4 soap_in_PointerTo_trc__CreateTrack(struct soap*, const char*, _trc__CreateTrack **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__CreateTrack(struct soap*, _trc__CreateTrack *const*, const char*, const char*); -SOAP_FMAC3 _trc__CreateTrack ** SOAP_FMAC4 soap_get_PointerTo_trc__CreateTrack(struct soap*, _trc__CreateTrack **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetRecordingOptions_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetRecordingOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetRecordingOptions(struct soap*, _trc__GetRecordingOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetRecordingOptions(struct soap*, const char *, int, _trc__GetRecordingOptions *const*, const char *); -SOAP_FMAC3 _trc__GetRecordingOptions ** SOAP_FMAC4 soap_in_PointerTo_trc__GetRecordingOptions(struct soap*, const char*, _trc__GetRecordingOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetRecordingOptions(struct soap*, _trc__GetRecordingOptions *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetRecordingOptions ** SOAP_FMAC4 soap_get_PointerTo_trc__GetRecordingOptions(struct soap*, _trc__GetRecordingOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetRecordingConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetRecordingConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetRecordingConfiguration(struct soap*, _trc__GetRecordingConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetRecordingConfiguration(struct soap*, const char *, int, _trc__GetRecordingConfiguration *const*, const char *); -SOAP_FMAC3 _trc__GetRecordingConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trc__GetRecordingConfiguration(struct soap*, const char*, _trc__GetRecordingConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetRecordingConfiguration(struct soap*, _trc__GetRecordingConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetRecordingConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trc__GetRecordingConfiguration(struct soap*, _trc__GetRecordingConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__SetRecordingConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_trc__SetRecordingConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__SetRecordingConfiguration(struct soap*, _trc__SetRecordingConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__SetRecordingConfiguration(struct soap*, const char *, int, _trc__SetRecordingConfiguration *const*, const char *); -SOAP_FMAC3 _trc__SetRecordingConfiguration ** SOAP_FMAC4 soap_in_PointerTo_trc__SetRecordingConfiguration(struct soap*, const char*, _trc__SetRecordingConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__SetRecordingConfiguration(struct soap*, _trc__SetRecordingConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _trc__SetRecordingConfiguration ** SOAP_FMAC4 soap_get_PointerTo_trc__SetRecordingConfiguration(struct soap*, _trc__SetRecordingConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetRecordings_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetRecordings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetRecordings(struct soap*, _trc__GetRecordings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetRecordings(struct soap*, const char *, int, _trc__GetRecordings *const*, const char *); -SOAP_FMAC3 _trc__GetRecordings ** SOAP_FMAC4 soap_in_PointerTo_trc__GetRecordings(struct soap*, const char*, _trc__GetRecordings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetRecordings(struct soap*, _trc__GetRecordings *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetRecordings ** SOAP_FMAC4 soap_get_PointerTo_trc__GetRecordings(struct soap*, _trc__GetRecordings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__DeleteRecording_DEFINED -#define SOAP_TYPE_PointerTo_trc__DeleteRecording_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__DeleteRecording(struct soap*, _trc__DeleteRecording *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__DeleteRecording(struct soap*, const char *, int, _trc__DeleteRecording *const*, const char *); -SOAP_FMAC3 _trc__DeleteRecording ** SOAP_FMAC4 soap_in_PointerTo_trc__DeleteRecording(struct soap*, const char*, _trc__DeleteRecording **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__DeleteRecording(struct soap*, _trc__DeleteRecording *const*, const char*, const char*); -SOAP_FMAC3 _trc__DeleteRecording ** SOAP_FMAC4 soap_get_PointerTo_trc__DeleteRecording(struct soap*, _trc__DeleteRecording **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__CreateRecording_DEFINED -#define SOAP_TYPE_PointerTo_trc__CreateRecording_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__CreateRecording(struct soap*, _trc__CreateRecording *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__CreateRecording(struct soap*, const char *, int, _trc__CreateRecording *const*, const char *); -SOAP_FMAC3 _trc__CreateRecording ** SOAP_FMAC4 soap_in_PointerTo_trc__CreateRecording(struct soap*, const char*, _trc__CreateRecording **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__CreateRecording(struct soap*, _trc__CreateRecording *const*, const char*, const char*); -SOAP_FMAC3 _trc__CreateRecording ** SOAP_FMAC4 soap_get_PointerTo_trc__CreateRecording(struct soap*, _trc__CreateRecording **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_trc__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__GetServiceCapabilities(struct soap*, _trc__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__GetServiceCapabilities(struct soap*, const char *, int, _trc__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _trc__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_trc__GetServiceCapabilities(struct soap*, const char*, _trc__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__GetServiceCapabilities(struct soap*, _trc__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _trc__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_trc__GetServiceCapabilities(struct soap*, _trc__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetCompatibleConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetCompatibleConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetCompatibleConfigurations(struct soap*, _tptz__GetCompatibleConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetCompatibleConfigurations(struct soap*, const char *, int, _tptz__GetCompatibleConfigurations *const*, const char *); -SOAP_FMAC3 _tptz__GetCompatibleConfigurations ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetCompatibleConfigurations(struct soap*, const char*, _tptz__GetCompatibleConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetCompatibleConfigurations(struct soap*, _tptz__GetCompatibleConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetCompatibleConfigurations ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetCompatibleConfigurations(struct soap*, _tptz__GetCompatibleConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__RemovePresetTour_DEFINED -#define SOAP_TYPE_PointerTo_tptz__RemovePresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__RemovePresetTour(struct soap*, _tptz__RemovePresetTour *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__RemovePresetTour(struct soap*, const char *, int, _tptz__RemovePresetTour *const*, const char *); -SOAP_FMAC3 _tptz__RemovePresetTour ** SOAP_FMAC4 soap_in_PointerTo_tptz__RemovePresetTour(struct soap*, const char*, _tptz__RemovePresetTour **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__RemovePresetTour(struct soap*, _tptz__RemovePresetTour *const*, const char*, const char*); -SOAP_FMAC3 _tptz__RemovePresetTour ** SOAP_FMAC4 soap_get_PointerTo_tptz__RemovePresetTour(struct soap*, _tptz__RemovePresetTour **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__OperatePresetTour_DEFINED -#define SOAP_TYPE_PointerTo_tptz__OperatePresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__OperatePresetTour(struct soap*, _tptz__OperatePresetTour *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__OperatePresetTour(struct soap*, const char *, int, _tptz__OperatePresetTour *const*, const char *); -SOAP_FMAC3 _tptz__OperatePresetTour ** SOAP_FMAC4 soap_in_PointerTo_tptz__OperatePresetTour(struct soap*, const char*, _tptz__OperatePresetTour **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__OperatePresetTour(struct soap*, _tptz__OperatePresetTour *const*, const char*, const char*); -SOAP_FMAC3 _tptz__OperatePresetTour ** SOAP_FMAC4 soap_get_PointerTo_tptz__OperatePresetTour(struct soap*, _tptz__OperatePresetTour **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__ModifyPresetTour_DEFINED -#define SOAP_TYPE_PointerTo_tptz__ModifyPresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__ModifyPresetTour(struct soap*, _tptz__ModifyPresetTour *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__ModifyPresetTour(struct soap*, const char *, int, _tptz__ModifyPresetTour *const*, const char *); -SOAP_FMAC3 _tptz__ModifyPresetTour ** SOAP_FMAC4 soap_in_PointerTo_tptz__ModifyPresetTour(struct soap*, const char*, _tptz__ModifyPresetTour **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__ModifyPresetTour(struct soap*, _tptz__ModifyPresetTour *const*, const char*, const char*); -SOAP_FMAC3 _tptz__ModifyPresetTour ** SOAP_FMAC4 soap_get_PointerTo_tptz__ModifyPresetTour(struct soap*, _tptz__ModifyPresetTour **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__CreatePresetTour_DEFINED -#define SOAP_TYPE_PointerTo_tptz__CreatePresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__CreatePresetTour(struct soap*, _tptz__CreatePresetTour *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__CreatePresetTour(struct soap*, const char *, int, _tptz__CreatePresetTour *const*, const char *); -SOAP_FMAC3 _tptz__CreatePresetTour ** SOAP_FMAC4 soap_in_PointerTo_tptz__CreatePresetTour(struct soap*, const char*, _tptz__CreatePresetTour **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__CreatePresetTour(struct soap*, _tptz__CreatePresetTour *const*, const char*, const char*); -SOAP_FMAC3 _tptz__CreatePresetTour ** SOAP_FMAC4 soap_get_PointerTo_tptz__CreatePresetTour(struct soap*, _tptz__CreatePresetTour **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetPresetTourOptions_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetPresetTourOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetPresetTourOptions(struct soap*, _tptz__GetPresetTourOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetPresetTourOptions(struct soap*, const char *, int, _tptz__GetPresetTourOptions *const*, const char *); -SOAP_FMAC3 _tptz__GetPresetTourOptions ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetPresetTourOptions(struct soap*, const char*, _tptz__GetPresetTourOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetPresetTourOptions(struct soap*, _tptz__GetPresetTourOptions *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetPresetTourOptions ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetPresetTourOptions(struct soap*, _tptz__GetPresetTourOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetPresetTour_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetPresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetPresetTour(struct soap*, _tptz__GetPresetTour *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetPresetTour(struct soap*, const char *, int, _tptz__GetPresetTour *const*, const char *); -SOAP_FMAC3 _tptz__GetPresetTour ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetPresetTour(struct soap*, const char*, _tptz__GetPresetTour **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetPresetTour(struct soap*, _tptz__GetPresetTour *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetPresetTour ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetPresetTour(struct soap*, _tptz__GetPresetTour **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetPresetTours_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetPresetTours_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetPresetTours(struct soap*, _tptz__GetPresetTours *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetPresetTours(struct soap*, const char *, int, _tptz__GetPresetTours *const*, const char *); -SOAP_FMAC3 _tptz__GetPresetTours ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetPresetTours(struct soap*, const char*, _tptz__GetPresetTours **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetPresetTours(struct soap*, _tptz__GetPresetTours *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetPresetTours ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetPresetTours(struct soap*, _tptz__GetPresetTours **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__Stop_DEFINED -#define SOAP_TYPE_PointerTo_tptz__Stop_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__Stop(struct soap*, _tptz__Stop *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__Stop(struct soap*, const char *, int, _tptz__Stop *const*, const char *); -SOAP_FMAC3 _tptz__Stop ** SOAP_FMAC4 soap_in_PointerTo_tptz__Stop(struct soap*, const char*, _tptz__Stop **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__Stop(struct soap*, _tptz__Stop *const*, const char*, const char*); -SOAP_FMAC3 _tptz__Stop ** SOAP_FMAC4 soap_get_PointerTo_tptz__Stop(struct soap*, _tptz__Stop **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__AbsoluteMove_DEFINED -#define SOAP_TYPE_PointerTo_tptz__AbsoluteMove_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__AbsoluteMove(struct soap*, _tptz__AbsoluteMove *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__AbsoluteMove(struct soap*, const char *, int, _tptz__AbsoluteMove *const*, const char *); -SOAP_FMAC3 _tptz__AbsoluteMove ** SOAP_FMAC4 soap_in_PointerTo_tptz__AbsoluteMove(struct soap*, const char*, _tptz__AbsoluteMove **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__AbsoluteMove(struct soap*, _tptz__AbsoluteMove *const*, const char*, const char*); -SOAP_FMAC3 _tptz__AbsoluteMove ** SOAP_FMAC4 soap_get_PointerTo_tptz__AbsoluteMove(struct soap*, _tptz__AbsoluteMove **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__SendAuxiliaryCommand_DEFINED -#define SOAP_TYPE_PointerTo_tptz__SendAuxiliaryCommand_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__SendAuxiliaryCommand(struct soap*, _tptz__SendAuxiliaryCommand *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__SendAuxiliaryCommand(struct soap*, const char *, int, _tptz__SendAuxiliaryCommand *const*, const char *); -SOAP_FMAC3 _tptz__SendAuxiliaryCommand ** SOAP_FMAC4 soap_in_PointerTo_tptz__SendAuxiliaryCommand(struct soap*, const char*, _tptz__SendAuxiliaryCommand **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__SendAuxiliaryCommand(struct soap*, _tptz__SendAuxiliaryCommand *const*, const char*, const char*); -SOAP_FMAC3 _tptz__SendAuxiliaryCommand ** SOAP_FMAC4 soap_get_PointerTo_tptz__SendAuxiliaryCommand(struct soap*, _tptz__SendAuxiliaryCommand **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__RelativeMove_DEFINED -#define SOAP_TYPE_PointerTo_tptz__RelativeMove_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__RelativeMove(struct soap*, _tptz__RelativeMove *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__RelativeMove(struct soap*, const char *, int, _tptz__RelativeMove *const*, const char *); -SOAP_FMAC3 _tptz__RelativeMove ** SOAP_FMAC4 soap_in_PointerTo_tptz__RelativeMove(struct soap*, const char*, _tptz__RelativeMove **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__RelativeMove(struct soap*, _tptz__RelativeMove *const*, const char*, const char*); -SOAP_FMAC3 _tptz__RelativeMove ** SOAP_FMAC4 soap_get_PointerTo_tptz__RelativeMove(struct soap*, _tptz__RelativeMove **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__ContinuousMove_DEFINED -#define SOAP_TYPE_PointerTo_tptz__ContinuousMove_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__ContinuousMove(struct soap*, _tptz__ContinuousMove *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__ContinuousMove(struct soap*, const char *, int, _tptz__ContinuousMove *const*, const char *); -SOAP_FMAC3 _tptz__ContinuousMove ** SOAP_FMAC4 soap_in_PointerTo_tptz__ContinuousMove(struct soap*, const char*, _tptz__ContinuousMove **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__ContinuousMove(struct soap*, _tptz__ContinuousMove *const*, const char*, const char*); -SOAP_FMAC3 _tptz__ContinuousMove ** SOAP_FMAC4 soap_get_PointerTo_tptz__ContinuousMove(struct soap*, _tptz__ContinuousMove **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__SetHomePosition_DEFINED -#define SOAP_TYPE_PointerTo_tptz__SetHomePosition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__SetHomePosition(struct soap*, _tptz__SetHomePosition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__SetHomePosition(struct soap*, const char *, int, _tptz__SetHomePosition *const*, const char *); -SOAP_FMAC3 _tptz__SetHomePosition ** SOAP_FMAC4 soap_in_PointerTo_tptz__SetHomePosition(struct soap*, const char*, _tptz__SetHomePosition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__SetHomePosition(struct soap*, _tptz__SetHomePosition *const*, const char*, const char*); -SOAP_FMAC3 _tptz__SetHomePosition ** SOAP_FMAC4 soap_get_PointerTo_tptz__SetHomePosition(struct soap*, _tptz__SetHomePosition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GotoHomePosition_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GotoHomePosition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GotoHomePosition(struct soap*, _tptz__GotoHomePosition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GotoHomePosition(struct soap*, const char *, int, _tptz__GotoHomePosition *const*, const char *); -SOAP_FMAC3 _tptz__GotoHomePosition ** SOAP_FMAC4 soap_in_PointerTo_tptz__GotoHomePosition(struct soap*, const char*, _tptz__GotoHomePosition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GotoHomePosition(struct soap*, _tptz__GotoHomePosition *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GotoHomePosition ** SOAP_FMAC4 soap_get_PointerTo_tptz__GotoHomePosition(struct soap*, _tptz__GotoHomePosition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetConfigurationOptions(struct soap*, _tptz__GetConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetConfigurationOptions(struct soap*, const char *, int, _tptz__GetConfigurationOptions *const*, const char *); -SOAP_FMAC3 _tptz__GetConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetConfigurationOptions(struct soap*, const char*, _tptz__GetConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetConfigurationOptions(struct soap*, _tptz__GetConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetConfigurationOptions(struct soap*, _tptz__GetConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__SetConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tptz__SetConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__SetConfiguration(struct soap*, _tptz__SetConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__SetConfiguration(struct soap*, const char *, int, _tptz__SetConfiguration *const*, const char *); -SOAP_FMAC3 _tptz__SetConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tptz__SetConfiguration(struct soap*, const char*, _tptz__SetConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__SetConfiguration(struct soap*, _tptz__SetConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tptz__SetConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tptz__SetConfiguration(struct soap*, _tptz__SetConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetNode_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetNode(struct soap*, _tptz__GetNode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetNode(struct soap*, const char *, int, _tptz__GetNode *const*, const char *); -SOAP_FMAC3 _tptz__GetNode ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetNode(struct soap*, const char*, _tptz__GetNode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetNode(struct soap*, _tptz__GetNode *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetNode ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetNode(struct soap*, _tptz__GetNode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetNodes_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetNodes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetNodes(struct soap*, _tptz__GetNodes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetNodes(struct soap*, const char *, int, _tptz__GetNodes *const*, const char *); -SOAP_FMAC3 _tptz__GetNodes ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetNodes(struct soap*, const char*, _tptz__GetNodes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetNodes(struct soap*, _tptz__GetNodes *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetNodes ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetNodes(struct soap*, _tptz__GetNodes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetConfiguration(struct soap*, _tptz__GetConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetConfiguration(struct soap*, const char *, int, _tptz__GetConfiguration *const*, const char *); -SOAP_FMAC3 _tptz__GetConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetConfiguration(struct soap*, const char*, _tptz__GetConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetConfiguration(struct soap*, _tptz__GetConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetConfiguration(struct soap*, _tptz__GetConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetStatus_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetStatus(struct soap*, _tptz__GetStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetStatus(struct soap*, const char *, int, _tptz__GetStatus *const*, const char *); -SOAP_FMAC3 _tptz__GetStatus ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetStatus(struct soap*, const char*, _tptz__GetStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetStatus(struct soap*, _tptz__GetStatus *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetStatus ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetStatus(struct soap*, _tptz__GetStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GotoPreset_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GotoPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GotoPreset(struct soap*, _tptz__GotoPreset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GotoPreset(struct soap*, const char *, int, _tptz__GotoPreset *const*, const char *); -SOAP_FMAC3 _tptz__GotoPreset ** SOAP_FMAC4 soap_in_PointerTo_tptz__GotoPreset(struct soap*, const char*, _tptz__GotoPreset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GotoPreset(struct soap*, _tptz__GotoPreset *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GotoPreset ** SOAP_FMAC4 soap_get_PointerTo_tptz__GotoPreset(struct soap*, _tptz__GotoPreset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__RemovePreset_DEFINED -#define SOAP_TYPE_PointerTo_tptz__RemovePreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__RemovePreset(struct soap*, _tptz__RemovePreset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__RemovePreset(struct soap*, const char *, int, _tptz__RemovePreset *const*, const char *); -SOAP_FMAC3 _tptz__RemovePreset ** SOAP_FMAC4 soap_in_PointerTo_tptz__RemovePreset(struct soap*, const char*, _tptz__RemovePreset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__RemovePreset(struct soap*, _tptz__RemovePreset *const*, const char*, const char*); -SOAP_FMAC3 _tptz__RemovePreset ** SOAP_FMAC4 soap_get_PointerTo_tptz__RemovePreset(struct soap*, _tptz__RemovePreset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__SetPreset_DEFINED -#define SOAP_TYPE_PointerTo_tptz__SetPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__SetPreset(struct soap*, _tptz__SetPreset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__SetPreset(struct soap*, const char *, int, _tptz__SetPreset *const*, const char *); -SOAP_FMAC3 _tptz__SetPreset ** SOAP_FMAC4 soap_in_PointerTo_tptz__SetPreset(struct soap*, const char*, _tptz__SetPreset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__SetPreset(struct soap*, _tptz__SetPreset *const*, const char*, const char*); -SOAP_FMAC3 _tptz__SetPreset ** SOAP_FMAC4 soap_get_PointerTo_tptz__SetPreset(struct soap*, _tptz__SetPreset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetPresets_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetPresets_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetPresets(struct soap*, _tptz__GetPresets *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetPresets(struct soap*, const char *, int, _tptz__GetPresets *const*, const char *); -SOAP_FMAC3 _tptz__GetPresets ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetPresets(struct soap*, const char*, _tptz__GetPresets **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetPresets(struct soap*, _tptz__GetPresets *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetPresets ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetPresets(struct soap*, _tptz__GetPresets **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetConfigurations(struct soap*, _tptz__GetConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetConfigurations(struct soap*, const char *, int, _tptz__GetConfigurations *const*, const char *); -SOAP_FMAC3 _tptz__GetConfigurations ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetConfigurations(struct soap*, const char*, _tptz__GetConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetConfigurations(struct soap*, _tptz__GetConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetConfigurations ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetConfigurations(struct soap*, _tptz__GetConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tptz__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_tptz__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tptz__GetServiceCapabilities(struct soap*, _tptz__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tptz__GetServiceCapabilities(struct soap*, const char *, int, _tptz__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _tptz__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tptz__GetServiceCapabilities(struct soap*, const char*, _tptz__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tptz__GetServiceCapabilities(struct soap*, _tptz__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _tptz__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tptz__GetServiceCapabilities(struct soap*, _tptz__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SendReceiveSerialCommand_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SendReceiveSerialCommand_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SendReceiveSerialCommand(struct soap*, _tmd__SendReceiveSerialCommand *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SendReceiveSerialCommand(struct soap*, const char *, int, _tmd__SendReceiveSerialCommand *const*, const char *); -SOAP_FMAC3 _tmd__SendReceiveSerialCommand ** SOAP_FMAC4 soap_in_PointerTo_tmd__SendReceiveSerialCommand(struct soap*, const char*, _tmd__SendReceiveSerialCommand **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SendReceiveSerialCommand(struct soap*, _tmd__SendReceiveSerialCommand *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SendReceiveSerialCommand ** SOAP_FMAC4 soap_get_PointerTo_tmd__SendReceiveSerialCommand(struct soap*, _tmd__SendReceiveSerialCommand **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetSerialPortConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetSerialPortConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetSerialPortConfigurationOptions(struct soap*, _tmd__GetSerialPortConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetSerialPortConfigurationOptions(struct soap*, const char *, int, _tmd__GetSerialPortConfigurationOptions *const*, const char *); -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetSerialPortConfigurationOptions(struct soap*, const char*, _tmd__GetSerialPortConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetSerialPortConfigurationOptions(struct soap*, _tmd__GetSerialPortConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetSerialPortConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetSerialPortConfigurationOptions(struct soap*, _tmd__GetSerialPortConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SetSerialPortConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SetSerialPortConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SetSerialPortConfiguration(struct soap*, _tmd__SetSerialPortConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SetSerialPortConfiguration(struct soap*, const char *, int, _tmd__SetSerialPortConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__SetSerialPortConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__SetSerialPortConfiguration(struct soap*, const char*, _tmd__SetSerialPortConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SetSerialPortConfiguration(struct soap*, _tmd__SetSerialPortConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SetSerialPortConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__SetSerialPortConfiguration(struct soap*, _tmd__SetSerialPortConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetSerialPortConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetSerialPortConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetSerialPortConfiguration(struct soap*, _tmd__GetSerialPortConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetSerialPortConfiguration(struct soap*, const char *, int, _tmd__GetSerialPortConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__GetSerialPortConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetSerialPortConfiguration(struct soap*, const char*, _tmd__GetSerialPortConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetSerialPortConfiguration(struct soap*, _tmd__GetSerialPortConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetSerialPortConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetSerialPortConfiguration(struct soap*, _tmd__GetSerialPortConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetSerialPorts_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetSerialPorts_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetSerialPorts(struct soap*, _tmd__GetSerialPorts *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetSerialPorts(struct soap*, const char *, int, _tmd__GetSerialPorts *const*, const char *); -SOAP_FMAC3 _tmd__GetSerialPorts ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetSerialPorts(struct soap*, const char*, _tmd__GetSerialPorts **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetSerialPorts(struct soap*, _tmd__GetSerialPorts *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetSerialPorts ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetSerialPorts(struct soap*, _tmd__GetSerialPorts **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SetDigitalInputConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SetDigitalInputConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SetDigitalInputConfigurations(struct soap*, _tmd__SetDigitalInputConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SetDigitalInputConfigurations(struct soap*, const char *, int, _tmd__SetDigitalInputConfigurations *const*, const char *); -SOAP_FMAC3 _tmd__SetDigitalInputConfigurations ** SOAP_FMAC4 soap_in_PointerTo_tmd__SetDigitalInputConfigurations(struct soap*, const char*, _tmd__SetDigitalInputConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SetDigitalInputConfigurations(struct soap*, _tmd__SetDigitalInputConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SetDigitalInputConfigurations ** SOAP_FMAC4 soap_get_PointerTo_tmd__SetDigitalInputConfigurations(struct soap*, _tmd__SetDigitalInputConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetDigitalInputConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetDigitalInputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetDigitalInputConfigurationOptions(struct soap*, _tmd__GetDigitalInputConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetDigitalInputConfigurationOptions(struct soap*, const char *, int, _tmd__GetDigitalInputConfigurationOptions *const*, const char *); -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetDigitalInputConfigurationOptions(struct soap*, const char*, _tmd__GetDigitalInputConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetDigitalInputConfigurationOptions(struct soap*, _tmd__GetDigitalInputConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetDigitalInputConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetDigitalInputConfigurationOptions(struct soap*, _tmd__GetDigitalInputConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetDigitalInputs_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetDigitalInputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetDigitalInputs(struct soap*, _tmd__GetDigitalInputs *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetDigitalInputs(struct soap*, const char *, int, _tmd__GetDigitalInputs *const*, const char *); -SOAP_FMAC3 _tmd__GetDigitalInputs ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetDigitalInputs(struct soap*, const char*, _tmd__GetDigitalInputs **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetDigitalInputs(struct soap*, _tmd__GetDigitalInputs *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetDigitalInputs ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetDigitalInputs(struct soap*, _tmd__GetDigitalInputs **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SetRelayOutputSettings_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SetRelayOutputSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SetRelayOutputSettings(struct soap*, _tmd__SetRelayOutputSettings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SetRelayOutputSettings(struct soap*, const char *, int, _tmd__SetRelayOutputSettings *const*, const char *); -SOAP_FMAC3 _tmd__SetRelayOutputSettings ** SOAP_FMAC4 soap_in_PointerTo_tmd__SetRelayOutputSettings(struct soap*, const char*, _tmd__SetRelayOutputSettings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SetRelayOutputSettings(struct soap*, _tmd__SetRelayOutputSettings *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SetRelayOutputSettings ** SOAP_FMAC4 soap_get_PointerTo_tmd__SetRelayOutputSettings(struct soap*, _tmd__SetRelayOutputSettings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetAudioOutputConfigurationOptions(struct soap*, _tmd__GetAudioOutputConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetAudioOutputConfigurationOptions(struct soap*, const char *, int, _tmd__GetAudioOutputConfigurationOptions *const*, const char *); -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetAudioOutputConfigurationOptions(struct soap*, const char*, _tmd__GetAudioOutputConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetAudioOutputConfigurationOptions(struct soap*, _tmd__GetAudioOutputConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetAudioOutputConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetAudioOutputConfigurationOptions(struct soap*, _tmd__GetAudioOutputConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetAudioSourceConfigurationOptions(struct soap*, _tmd__GetAudioSourceConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetAudioSourceConfigurationOptions(struct soap*, const char *, int, _tmd__GetAudioSourceConfigurationOptions *const*, const char *); -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetAudioSourceConfigurationOptions(struct soap*, const char*, _tmd__GetAudioSourceConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetAudioSourceConfigurationOptions(struct soap*, _tmd__GetAudioSourceConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetAudioSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetAudioSourceConfigurationOptions(struct soap*, _tmd__GetAudioSourceConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetVideoOutputConfigurationOptions(struct soap*, _tmd__GetVideoOutputConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetVideoOutputConfigurationOptions(struct soap*, const char *, int, _tmd__GetVideoOutputConfigurationOptions *const*, const char *); -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetVideoOutputConfigurationOptions(struct soap*, const char*, _tmd__GetVideoOutputConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetVideoOutputConfigurationOptions(struct soap*, _tmd__GetVideoOutputConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetVideoOutputConfigurationOptions(struct soap*, _tmd__GetVideoOutputConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetVideoSourceConfigurationOptions(struct soap*, _tmd__GetVideoSourceConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetVideoSourceConfigurationOptions(struct soap*, const char *, int, _tmd__GetVideoSourceConfigurationOptions *const*, const char *); -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetVideoSourceConfigurationOptions(struct soap*, const char*, _tmd__GetVideoSourceConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetVideoSourceConfigurationOptions(struct soap*, _tmd__GetVideoSourceConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetVideoSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetVideoSourceConfigurationOptions(struct soap*, _tmd__GetVideoSourceConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SetAudioOutputConfiguration(struct soap*, _tmd__SetAudioOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SetAudioOutputConfiguration(struct soap*, const char *, int, _tmd__SetAudioOutputConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__SetAudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__SetAudioOutputConfiguration(struct soap*, const char*, _tmd__SetAudioOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SetAudioOutputConfiguration(struct soap*, _tmd__SetAudioOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SetAudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__SetAudioOutputConfiguration(struct soap*, _tmd__SetAudioOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SetAudioSourceConfiguration(struct soap*, _tmd__SetAudioSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SetAudioSourceConfiguration(struct soap*, const char *, int, _tmd__SetAudioSourceConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__SetAudioSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__SetAudioSourceConfiguration(struct soap*, const char*, _tmd__SetAudioSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SetAudioSourceConfiguration(struct soap*, _tmd__SetAudioSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SetAudioSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__SetAudioSourceConfiguration(struct soap*, _tmd__SetAudioSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SetVideoOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SetVideoOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SetVideoOutputConfiguration(struct soap*, _tmd__SetVideoOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SetVideoOutputConfiguration(struct soap*, const char *, int, _tmd__SetVideoOutputConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__SetVideoOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__SetVideoOutputConfiguration(struct soap*, const char*, _tmd__SetVideoOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SetVideoOutputConfiguration(struct soap*, _tmd__SetVideoOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SetVideoOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__SetVideoOutputConfiguration(struct soap*, _tmd__SetVideoOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__SetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__SetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__SetVideoSourceConfiguration(struct soap*, _tmd__SetVideoSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__SetVideoSourceConfiguration(struct soap*, const char *, int, _tmd__SetVideoSourceConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__SetVideoSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__SetVideoSourceConfiguration(struct soap*, const char*, _tmd__SetVideoSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__SetVideoSourceConfiguration(struct soap*, _tmd__SetVideoSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__SetVideoSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__SetVideoSourceConfiguration(struct soap*, _tmd__SetVideoSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetAudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetAudioOutputConfiguration(struct soap*, _tmd__GetAudioOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetAudioOutputConfiguration(struct soap*, const char *, int, _tmd__GetAudioOutputConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__GetAudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetAudioOutputConfiguration(struct soap*, const char*, _tmd__GetAudioOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetAudioOutputConfiguration(struct soap*, _tmd__GetAudioOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetAudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetAudioOutputConfiguration(struct soap*, _tmd__GetAudioOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetAudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetAudioSourceConfiguration(struct soap*, _tmd__GetAudioSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetAudioSourceConfiguration(struct soap*, const char *, int, _tmd__GetAudioSourceConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__GetAudioSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetAudioSourceConfiguration(struct soap*, const char*, _tmd__GetAudioSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetAudioSourceConfiguration(struct soap*, _tmd__GetAudioSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetAudioSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetAudioSourceConfiguration(struct soap*, _tmd__GetAudioSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetVideoOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetVideoOutputConfiguration(struct soap*, _tmd__GetVideoOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetVideoOutputConfiguration(struct soap*, const char *, int, _tmd__GetVideoOutputConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__GetVideoOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetVideoOutputConfiguration(struct soap*, const char*, _tmd__GetVideoOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetVideoOutputConfiguration(struct soap*, _tmd__GetVideoOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetVideoOutputConfiguration(struct soap*, _tmd__GetVideoOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetVideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetVideoSourceConfiguration(struct soap*, _tmd__GetVideoSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetVideoSourceConfiguration(struct soap*, const char *, int, _tmd__GetVideoSourceConfiguration *const*, const char *); -SOAP_FMAC3 _tmd__GetVideoSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetVideoSourceConfiguration(struct soap*, const char*, _tmd__GetVideoSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetVideoSourceConfiguration(struct soap*, _tmd__GetVideoSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetVideoSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetVideoSourceConfiguration(struct soap*, _tmd__GetVideoSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetVideoOutputs_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetVideoOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetVideoOutputs(struct soap*, _tmd__GetVideoOutputs *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetVideoOutputs(struct soap*, const char *, int, _tmd__GetVideoOutputs *const*, const char *); -SOAP_FMAC3 _tmd__GetVideoOutputs ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetVideoOutputs(struct soap*, const char*, _tmd__GetVideoOutputs **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetVideoOutputs(struct soap*, _tmd__GetVideoOutputs *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetVideoOutputs ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetVideoOutputs(struct soap*, _tmd__GetVideoOutputs **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__Get_DEFINED -#define SOAP_TYPE_PointerTotmd__Get_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__Get(struct soap*, tmd__Get *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__Get(struct soap*, const char *, int, tmd__Get *const*, const char *); -SOAP_FMAC3 tmd__Get ** SOAP_FMAC4 soap_in_PointerTotmd__Get(struct soap*, const char*, tmd__Get **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__Get(struct soap*, tmd__Get *const*, const char*, const char*); -SOAP_FMAC3 tmd__Get ** SOAP_FMAC4 soap_get_PointerTotmd__Get(struct soap*, tmd__Get **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetRelayOutputOptions_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetRelayOutputOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetRelayOutputOptions(struct soap*, _tmd__GetRelayOutputOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetRelayOutputOptions(struct soap*, const char *, int, _tmd__GetRelayOutputOptions *const*, const char *); -SOAP_FMAC3 _tmd__GetRelayOutputOptions ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetRelayOutputOptions(struct soap*, const char*, _tmd__GetRelayOutputOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetRelayOutputOptions(struct soap*, _tmd__GetRelayOutputOptions *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetRelayOutputOptions ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetRelayOutputOptions(struct soap*, _tmd__GetRelayOutputOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tmd__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_tmd__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tmd__GetServiceCapabilities(struct soap*, _tmd__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tmd__GetServiceCapabilities(struct soap*, const char *, int, _tmd__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _tmd__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tmd__GetServiceCapabilities(struct soap*, const char*, _tmd__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tmd__GetServiceCapabilities(struct soap*, _tmd__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _tmd__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tmd__GetServiceCapabilities(struct soap*, _tmd__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__DeletePaneConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tls__DeletePaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__DeletePaneConfiguration(struct soap*, _tls__DeletePaneConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__DeletePaneConfiguration(struct soap*, const char *, int, _tls__DeletePaneConfiguration *const*, const char *); -SOAP_FMAC3 _tls__DeletePaneConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tls__DeletePaneConfiguration(struct soap*, const char*, _tls__DeletePaneConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__DeletePaneConfiguration(struct soap*, _tls__DeletePaneConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tls__DeletePaneConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tls__DeletePaneConfiguration(struct soap*, _tls__DeletePaneConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__CreatePaneConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tls__CreatePaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__CreatePaneConfiguration(struct soap*, _tls__CreatePaneConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__CreatePaneConfiguration(struct soap*, const char *, int, _tls__CreatePaneConfiguration *const*, const char *); -SOAP_FMAC3 _tls__CreatePaneConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tls__CreatePaneConfiguration(struct soap*, const char*, _tls__CreatePaneConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__CreatePaneConfiguration(struct soap*, _tls__CreatePaneConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tls__CreatePaneConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tls__CreatePaneConfiguration(struct soap*, _tls__CreatePaneConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__SetPaneConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tls__SetPaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__SetPaneConfiguration(struct soap*, _tls__SetPaneConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__SetPaneConfiguration(struct soap*, const char *, int, _tls__SetPaneConfiguration *const*, const char *); -SOAP_FMAC3 _tls__SetPaneConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tls__SetPaneConfiguration(struct soap*, const char*, _tls__SetPaneConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__SetPaneConfiguration(struct soap*, _tls__SetPaneConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tls__SetPaneConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tls__SetPaneConfiguration(struct soap*, _tls__SetPaneConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__SetPaneConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_tls__SetPaneConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__SetPaneConfigurations(struct soap*, _tls__SetPaneConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__SetPaneConfigurations(struct soap*, const char *, int, _tls__SetPaneConfigurations *const*, const char *); -SOAP_FMAC3 _tls__SetPaneConfigurations ** SOAP_FMAC4 soap_in_PointerTo_tls__SetPaneConfigurations(struct soap*, const char*, _tls__SetPaneConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__SetPaneConfigurations(struct soap*, _tls__SetPaneConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _tls__SetPaneConfigurations ** SOAP_FMAC4 soap_get_PointerTo_tls__SetPaneConfigurations(struct soap*, _tls__SetPaneConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__GetPaneConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tls__GetPaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__GetPaneConfiguration(struct soap*, _tls__GetPaneConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__GetPaneConfiguration(struct soap*, const char *, int, _tls__GetPaneConfiguration *const*, const char *); -SOAP_FMAC3 _tls__GetPaneConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tls__GetPaneConfiguration(struct soap*, const char*, _tls__GetPaneConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__GetPaneConfiguration(struct soap*, _tls__GetPaneConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tls__GetPaneConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tls__GetPaneConfiguration(struct soap*, _tls__GetPaneConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__GetPaneConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_tls__GetPaneConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__GetPaneConfigurations(struct soap*, _tls__GetPaneConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__GetPaneConfigurations(struct soap*, const char *, int, _tls__GetPaneConfigurations *const*, const char *); -SOAP_FMAC3 _tls__GetPaneConfigurations ** SOAP_FMAC4 soap_in_PointerTo_tls__GetPaneConfigurations(struct soap*, const char*, _tls__GetPaneConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__GetPaneConfigurations(struct soap*, _tls__GetPaneConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _tls__GetPaneConfigurations ** SOAP_FMAC4 soap_get_PointerTo_tls__GetPaneConfigurations(struct soap*, _tls__GetPaneConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__GetDisplayOptions_DEFINED -#define SOAP_TYPE_PointerTo_tls__GetDisplayOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__GetDisplayOptions(struct soap*, _tls__GetDisplayOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__GetDisplayOptions(struct soap*, const char *, int, _tls__GetDisplayOptions *const*, const char *); -SOAP_FMAC3 _tls__GetDisplayOptions ** SOAP_FMAC4 soap_in_PointerTo_tls__GetDisplayOptions(struct soap*, const char*, _tls__GetDisplayOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__GetDisplayOptions(struct soap*, _tls__GetDisplayOptions *const*, const char*, const char*); -SOAP_FMAC3 _tls__GetDisplayOptions ** SOAP_FMAC4 soap_get_PointerTo_tls__GetDisplayOptions(struct soap*, _tls__GetDisplayOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__SetLayout_DEFINED -#define SOAP_TYPE_PointerTo_tls__SetLayout_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__SetLayout(struct soap*, _tls__SetLayout *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__SetLayout(struct soap*, const char *, int, _tls__SetLayout *const*, const char *); -SOAP_FMAC3 _tls__SetLayout ** SOAP_FMAC4 soap_in_PointerTo_tls__SetLayout(struct soap*, const char*, _tls__SetLayout **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__SetLayout(struct soap*, _tls__SetLayout *const*, const char*, const char*); -SOAP_FMAC3 _tls__SetLayout ** SOAP_FMAC4 soap_get_PointerTo_tls__SetLayout(struct soap*, _tls__SetLayout **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__GetLayout_DEFINED -#define SOAP_TYPE_PointerTo_tls__GetLayout_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__GetLayout(struct soap*, _tls__GetLayout *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__GetLayout(struct soap*, const char *, int, _tls__GetLayout *const*, const char *); -SOAP_FMAC3 _tls__GetLayout ** SOAP_FMAC4 soap_in_PointerTo_tls__GetLayout(struct soap*, const char*, _tls__GetLayout **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__GetLayout(struct soap*, _tls__GetLayout *const*, const char*, const char*); -SOAP_FMAC3 _tls__GetLayout ** SOAP_FMAC4 soap_get_PointerTo_tls__GetLayout(struct soap*, _tls__GetLayout **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tls__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_tls__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tls__GetServiceCapabilities(struct soap*, _tls__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tls__GetServiceCapabilities(struct soap*, const char *, int, _tls__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _tls__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tls__GetServiceCapabilities(struct soap*, const char*, _tls__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tls__GetServiceCapabilities(struct soap*, _tls__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _tls__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tls__GetServiceCapabilities(struct soap*, _tls__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__SetCurrentPreset_DEFINED -#define SOAP_TYPE_PointerTo_timg__SetCurrentPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__SetCurrentPreset(struct soap*, _timg__SetCurrentPreset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__SetCurrentPreset(struct soap*, const char *, int, _timg__SetCurrentPreset *const*, const char *); -SOAP_FMAC3 _timg__SetCurrentPreset ** SOAP_FMAC4 soap_in_PointerTo_timg__SetCurrentPreset(struct soap*, const char*, _timg__SetCurrentPreset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__SetCurrentPreset(struct soap*, _timg__SetCurrentPreset *const*, const char*, const char*); -SOAP_FMAC3 _timg__SetCurrentPreset ** SOAP_FMAC4 soap_get_PointerTo_timg__SetCurrentPreset(struct soap*, _timg__SetCurrentPreset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__GetCurrentPreset_DEFINED -#define SOAP_TYPE_PointerTo_timg__GetCurrentPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__GetCurrentPreset(struct soap*, _timg__GetCurrentPreset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__GetCurrentPreset(struct soap*, const char *, int, _timg__GetCurrentPreset *const*, const char *); -SOAP_FMAC3 _timg__GetCurrentPreset ** SOAP_FMAC4 soap_in_PointerTo_timg__GetCurrentPreset(struct soap*, const char*, _timg__GetCurrentPreset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__GetCurrentPreset(struct soap*, _timg__GetCurrentPreset *const*, const char*, const char*); -SOAP_FMAC3 _timg__GetCurrentPreset ** SOAP_FMAC4 soap_get_PointerTo_timg__GetCurrentPreset(struct soap*, _timg__GetCurrentPreset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__GetPresets_DEFINED -#define SOAP_TYPE_PointerTo_timg__GetPresets_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__GetPresets(struct soap*, _timg__GetPresets *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__GetPresets(struct soap*, const char *, int, _timg__GetPresets *const*, const char *); -SOAP_FMAC3 _timg__GetPresets ** SOAP_FMAC4 soap_in_PointerTo_timg__GetPresets(struct soap*, const char*, _timg__GetPresets **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__GetPresets(struct soap*, _timg__GetPresets *const*, const char*, const char*); -SOAP_FMAC3 _timg__GetPresets ** SOAP_FMAC4 soap_get_PointerTo_timg__GetPresets(struct soap*, _timg__GetPresets **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__GetMoveOptions_DEFINED -#define SOAP_TYPE_PointerTo_timg__GetMoveOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__GetMoveOptions(struct soap*, _timg__GetMoveOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__GetMoveOptions(struct soap*, const char *, int, _timg__GetMoveOptions *const*, const char *); -SOAP_FMAC3 _timg__GetMoveOptions ** SOAP_FMAC4 soap_in_PointerTo_timg__GetMoveOptions(struct soap*, const char*, _timg__GetMoveOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__GetMoveOptions(struct soap*, _timg__GetMoveOptions *const*, const char*, const char*); -SOAP_FMAC3 _timg__GetMoveOptions ** SOAP_FMAC4 soap_get_PointerTo_timg__GetMoveOptions(struct soap*, _timg__GetMoveOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__GetStatus_DEFINED -#define SOAP_TYPE_PointerTo_timg__GetStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__GetStatus(struct soap*, _timg__GetStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__GetStatus(struct soap*, const char *, int, _timg__GetStatus *const*, const char *); -SOAP_FMAC3 _timg__GetStatus ** SOAP_FMAC4 soap_in_PointerTo_timg__GetStatus(struct soap*, const char*, _timg__GetStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__GetStatus(struct soap*, _timg__GetStatus *const*, const char*, const char*); -SOAP_FMAC3 _timg__GetStatus ** SOAP_FMAC4 soap_get_PointerTo_timg__GetStatus(struct soap*, _timg__GetStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__Stop_DEFINED -#define SOAP_TYPE_PointerTo_timg__Stop_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__Stop(struct soap*, _timg__Stop *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__Stop(struct soap*, const char *, int, _timg__Stop *const*, const char *); -SOAP_FMAC3 _timg__Stop ** SOAP_FMAC4 soap_in_PointerTo_timg__Stop(struct soap*, const char*, _timg__Stop **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__Stop(struct soap*, _timg__Stop *const*, const char*, const char*); -SOAP_FMAC3 _timg__Stop ** SOAP_FMAC4 soap_get_PointerTo_timg__Stop(struct soap*, _timg__Stop **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__Move_DEFINED -#define SOAP_TYPE_PointerTo_timg__Move_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__Move(struct soap*, _timg__Move *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__Move(struct soap*, const char *, int, _timg__Move *const*, const char *); -SOAP_FMAC3 _timg__Move ** SOAP_FMAC4 soap_in_PointerTo_timg__Move(struct soap*, const char*, _timg__Move **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__Move(struct soap*, _timg__Move *const*, const char*, const char*); -SOAP_FMAC3 _timg__Move ** SOAP_FMAC4 soap_get_PointerTo_timg__Move(struct soap*, _timg__Move **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__GetOptions_DEFINED -#define SOAP_TYPE_PointerTo_timg__GetOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__GetOptions(struct soap*, _timg__GetOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__GetOptions(struct soap*, const char *, int, _timg__GetOptions *const*, const char *); -SOAP_FMAC3 _timg__GetOptions ** SOAP_FMAC4 soap_in_PointerTo_timg__GetOptions(struct soap*, const char*, _timg__GetOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__GetOptions(struct soap*, _timg__GetOptions *const*, const char*, const char*); -SOAP_FMAC3 _timg__GetOptions ** SOAP_FMAC4 soap_get_PointerTo_timg__GetOptions(struct soap*, _timg__GetOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__SetImagingSettings_DEFINED -#define SOAP_TYPE_PointerTo_timg__SetImagingSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__SetImagingSettings(struct soap*, _timg__SetImagingSettings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__SetImagingSettings(struct soap*, const char *, int, _timg__SetImagingSettings *const*, const char *); -SOAP_FMAC3 _timg__SetImagingSettings ** SOAP_FMAC4 soap_in_PointerTo_timg__SetImagingSettings(struct soap*, const char*, _timg__SetImagingSettings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__SetImagingSettings(struct soap*, _timg__SetImagingSettings *const*, const char*, const char*); -SOAP_FMAC3 _timg__SetImagingSettings ** SOAP_FMAC4 soap_get_PointerTo_timg__SetImagingSettings(struct soap*, _timg__SetImagingSettings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__GetImagingSettings_DEFINED -#define SOAP_TYPE_PointerTo_timg__GetImagingSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__GetImagingSettings(struct soap*, _timg__GetImagingSettings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__GetImagingSettings(struct soap*, const char *, int, _timg__GetImagingSettings *const*, const char *); -SOAP_FMAC3 _timg__GetImagingSettings ** SOAP_FMAC4 soap_in_PointerTo_timg__GetImagingSettings(struct soap*, const char*, _timg__GetImagingSettings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__GetImagingSettings(struct soap*, _timg__GetImagingSettings *const*, const char*, const char*); -SOAP_FMAC3 _timg__GetImagingSettings ** SOAP_FMAC4 soap_get_PointerTo_timg__GetImagingSettings(struct soap*, _timg__GetImagingSettings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_timg__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_timg__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_timg__GetServiceCapabilities(struct soap*, _timg__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_timg__GetServiceCapabilities(struct soap*, const char *, int, _timg__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _timg__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_timg__GetServiceCapabilities(struct soap*, const char*, _timg__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_timg__GetServiceCapabilities(struct soap*, _timg__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _timg__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_timg__GetServiceCapabilities(struct soap*, _timg__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__ResumeSubscription_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__ResumeSubscription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__ResumeSubscription(struct soap*, _wsnt__ResumeSubscription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__ResumeSubscription(struct soap*, const char *, int, _wsnt__ResumeSubscription *const*, const char *); -SOAP_FMAC3 _wsnt__ResumeSubscription ** SOAP_FMAC4 soap_in_PointerTo_wsnt__ResumeSubscription(struct soap*, const char*, _wsnt__ResumeSubscription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__ResumeSubscription(struct soap*, _wsnt__ResumeSubscription *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__ResumeSubscription ** SOAP_FMAC4 soap_get_PointerTo_wsnt__ResumeSubscription(struct soap*, _wsnt__ResumeSubscription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__PauseSubscription_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__PauseSubscription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__PauseSubscription(struct soap*, _wsnt__PauseSubscription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__PauseSubscription(struct soap*, const char *, int, _wsnt__PauseSubscription *const*, const char *); -SOAP_FMAC3 _wsnt__PauseSubscription ** SOAP_FMAC4 soap_in_PointerTo_wsnt__PauseSubscription(struct soap*, const char*, _wsnt__PauseSubscription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__PauseSubscription(struct soap*, _wsnt__PauseSubscription *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__PauseSubscription ** SOAP_FMAC4 soap_get_PointerTo_wsnt__PauseSubscription(struct soap*, _wsnt__PauseSubscription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__Unsubscribe_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__Unsubscribe_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__Unsubscribe(struct soap*, _wsnt__Unsubscribe *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__Unsubscribe(struct soap*, const char *, int, _wsnt__Unsubscribe *const*, const char *); -SOAP_FMAC3 _wsnt__Unsubscribe ** SOAP_FMAC4 soap_in_PointerTo_wsnt__Unsubscribe(struct soap*, const char*, _wsnt__Unsubscribe **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__Unsubscribe(struct soap*, _wsnt__Unsubscribe *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__Unsubscribe ** SOAP_FMAC4 soap_get_PointerTo_wsnt__Unsubscribe(struct soap*, _wsnt__Unsubscribe **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__Renew_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__Renew_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__Renew(struct soap*, _wsnt__Renew *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__Renew(struct soap*, const char *, int, _wsnt__Renew *const*, const char *); -SOAP_FMAC3 _wsnt__Renew ** SOAP_FMAC4 soap_in_PointerTo_wsnt__Renew(struct soap*, const char*, _wsnt__Renew **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__Renew(struct soap*, _wsnt__Renew *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__Renew ** SOAP_FMAC4 soap_get_PointerTo_wsnt__Renew(struct soap*, _wsnt__Renew **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__SetSynchronizationPoint_DEFINED -#define SOAP_TYPE_PointerTo_tev__SetSynchronizationPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__SetSynchronizationPoint(struct soap*, _tev__SetSynchronizationPoint *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__SetSynchronizationPoint(struct soap*, const char *, int, _tev__SetSynchronizationPoint *const*, const char *); -SOAP_FMAC3 _tev__SetSynchronizationPoint ** SOAP_FMAC4 soap_in_PointerTo_tev__SetSynchronizationPoint(struct soap*, const char*, _tev__SetSynchronizationPoint **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__SetSynchronizationPoint(struct soap*, _tev__SetSynchronizationPoint *const*, const char*, const char*); -SOAP_FMAC3 _tev__SetSynchronizationPoint ** SOAP_FMAC4 soap_get_PointerTo_tev__SetSynchronizationPoint(struct soap*, _tev__SetSynchronizationPoint **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__Seek_DEFINED -#define SOAP_TYPE_PointerTo_tev__Seek_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__Seek(struct soap*, _tev__Seek *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__Seek(struct soap*, const char *, int, _tev__Seek *const*, const char *); -SOAP_FMAC3 _tev__Seek ** SOAP_FMAC4 soap_in_PointerTo_tev__Seek(struct soap*, const char*, _tev__Seek **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__Seek(struct soap*, _tev__Seek *const*, const char*, const char*); -SOAP_FMAC3 _tev__Seek ** SOAP_FMAC4 soap_get_PointerTo_tev__Seek(struct soap*, _tev__Seek **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__PullMessages_DEFINED -#define SOAP_TYPE_PointerTo_tev__PullMessages_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__PullMessages(struct soap*, _tev__PullMessages *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__PullMessages(struct soap*, const char *, int, _tev__PullMessages *const*, const char *); -SOAP_FMAC3 _tev__PullMessages ** SOAP_FMAC4 soap_in_PointerTo_tev__PullMessages(struct soap*, const char*, _tev__PullMessages **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__PullMessages(struct soap*, _tev__PullMessages *const*, const char*, const char*); -SOAP_FMAC3 _tev__PullMessages ** SOAP_FMAC4 soap_get_PointerTo_tev__PullMessages(struct soap*, _tev__PullMessages **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__DestroyPullPoint_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__DestroyPullPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__DestroyPullPoint(struct soap*, _wsnt__DestroyPullPoint *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__DestroyPullPoint(struct soap*, const char *, int, _wsnt__DestroyPullPoint *const*, const char *); -SOAP_FMAC3 _wsnt__DestroyPullPoint ** SOAP_FMAC4 soap_in_PointerTo_wsnt__DestroyPullPoint(struct soap*, const char*, _wsnt__DestroyPullPoint **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__DestroyPullPoint(struct soap*, _wsnt__DestroyPullPoint *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__DestroyPullPoint ** SOAP_FMAC4 soap_get_PointerTo_wsnt__DestroyPullPoint(struct soap*, _wsnt__DestroyPullPoint **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__GetMessages_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__GetMessages_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__GetMessages(struct soap*, _wsnt__GetMessages *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__GetMessages(struct soap*, const char *, int, _wsnt__GetMessages *const*, const char *); -SOAP_FMAC3 _wsnt__GetMessages ** SOAP_FMAC4 soap_in_PointerTo_wsnt__GetMessages(struct soap*, const char*, _wsnt__GetMessages **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__GetMessages(struct soap*, _wsnt__GetMessages *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__GetMessages ** SOAP_FMAC4 soap_get_PointerTo_wsnt__GetMessages(struct soap*, _wsnt__GetMessages **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__GetCurrentMessage_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__GetCurrentMessage_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__GetCurrentMessage(struct soap*, _wsnt__GetCurrentMessage *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__GetCurrentMessage(struct soap*, const char *, int, _wsnt__GetCurrentMessage *const*, const char *); -SOAP_FMAC3 _wsnt__GetCurrentMessage ** SOAP_FMAC4 soap_in_PointerTo_wsnt__GetCurrentMessage(struct soap*, const char*, _wsnt__GetCurrentMessage **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__GetCurrentMessage(struct soap*, _wsnt__GetCurrentMessage *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__GetCurrentMessage ** SOAP_FMAC4 soap_get_PointerTo_wsnt__GetCurrentMessage(struct soap*, _wsnt__GetCurrentMessage **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__Subscribe_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__Subscribe_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__Subscribe(struct soap*, _wsnt__Subscribe *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__Subscribe(struct soap*, const char *, int, _wsnt__Subscribe *const*, const char *); -SOAP_FMAC3 _wsnt__Subscribe ** SOAP_FMAC4 soap_in_PointerTo_wsnt__Subscribe(struct soap*, const char*, _wsnt__Subscribe **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__Subscribe(struct soap*, _wsnt__Subscribe *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__Subscribe ** SOAP_FMAC4 soap_get_PointerTo_wsnt__Subscribe(struct soap*, _wsnt__Subscribe **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__Notify_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__Notify_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__Notify(struct soap*, _wsnt__Notify *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__Notify(struct soap*, const char *, int, _wsnt__Notify *const*, const char *); -SOAP_FMAC3 _wsnt__Notify ** SOAP_FMAC4 soap_in_PointerTo_wsnt__Notify(struct soap*, const char*, _wsnt__Notify **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__Notify(struct soap*, _wsnt__Notify *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__Notify ** SOAP_FMAC4 soap_get_PointerTo_wsnt__Notify(struct soap*, _wsnt__Notify **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__GetEventProperties_DEFINED -#define SOAP_TYPE_PointerTo_tev__GetEventProperties_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__GetEventProperties(struct soap*, _tev__GetEventProperties *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__GetEventProperties(struct soap*, const char *, int, _tev__GetEventProperties *const*, const char *); -SOAP_FMAC3 _tev__GetEventProperties ** SOAP_FMAC4 soap_in_PointerTo_tev__GetEventProperties(struct soap*, const char*, _tev__GetEventProperties **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__GetEventProperties(struct soap*, _tev__GetEventProperties *const*, const char*, const char*); -SOAP_FMAC3 _tev__GetEventProperties ** SOAP_FMAC4 soap_get_PointerTo_tev__GetEventProperties(struct soap*, _tev__GetEventProperties **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription_DEFINED -#define SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__CreatePullPointSubscription(struct soap*, _tev__CreatePullPointSubscription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__CreatePullPointSubscription(struct soap*, const char *, int, _tev__CreatePullPointSubscription *const*, const char *); -SOAP_FMAC3 _tev__CreatePullPointSubscription ** SOAP_FMAC4 soap_in_PointerTo_tev__CreatePullPointSubscription(struct soap*, const char*, _tev__CreatePullPointSubscription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__CreatePullPointSubscription(struct soap*, _tev__CreatePullPointSubscription *const*, const char*, const char*); -SOAP_FMAC3 _tev__CreatePullPointSubscription ** SOAP_FMAC4 soap_get_PointerTo_tev__CreatePullPointSubscription(struct soap*, _tev__CreatePullPointSubscription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_tev__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__GetServiceCapabilities(struct soap*, _tev__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__GetServiceCapabilities(struct soap*, const char *, int, _tev__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _tev__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tev__GetServiceCapabilities(struct soap*, const char*, _tev__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__GetServiceCapabilities(struct soap*, _tev__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _tev__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tev__GetServiceCapabilities(struct soap*, _tev__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__CreatePullPoint_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__CreatePullPoint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__CreatePullPoint(struct soap*, _wsnt__CreatePullPoint *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__CreatePullPoint(struct soap*, const char *, int, _wsnt__CreatePullPoint *const*, const char *); -SOAP_FMAC3 _wsnt__CreatePullPoint ** SOAP_FMAC4 soap_in_PointerTo_wsnt__CreatePullPoint(struct soap*, const char*, _wsnt__CreatePullPoint **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__CreatePullPoint(struct soap*, _wsnt__CreatePullPoint *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__CreatePullPoint ** SOAP_FMAC4 soap_get_PointerTo_wsnt__CreatePullPoint(struct soap*, _wsnt__CreatePullPoint **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__DeleteGeoLocation_DEFINED -#define SOAP_TYPE_PointerTo_tds__DeleteGeoLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__DeleteGeoLocation(struct soap*, _tds__DeleteGeoLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__DeleteGeoLocation(struct soap*, const char *, int, _tds__DeleteGeoLocation *const*, const char *); -SOAP_FMAC3 _tds__DeleteGeoLocation ** SOAP_FMAC4 soap_in_PointerTo_tds__DeleteGeoLocation(struct soap*, const char*, _tds__DeleteGeoLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__DeleteGeoLocation(struct soap*, _tds__DeleteGeoLocation *const*, const char*, const char*); -SOAP_FMAC3 _tds__DeleteGeoLocation ** SOAP_FMAC4 soap_get_PointerTo_tds__DeleteGeoLocation(struct soap*, _tds__DeleteGeoLocation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetGeoLocation_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetGeoLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetGeoLocation(struct soap*, _tds__SetGeoLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetGeoLocation(struct soap*, const char *, int, _tds__SetGeoLocation *const*, const char *); -SOAP_FMAC3 _tds__SetGeoLocation ** SOAP_FMAC4 soap_in_PointerTo_tds__SetGeoLocation(struct soap*, const char*, _tds__SetGeoLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetGeoLocation(struct soap*, _tds__SetGeoLocation *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetGeoLocation ** SOAP_FMAC4 soap_get_PointerTo_tds__SetGeoLocation(struct soap*, _tds__SetGeoLocation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetGeoLocation_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetGeoLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetGeoLocation(struct soap*, _tds__GetGeoLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetGeoLocation(struct soap*, const char *, int, _tds__GetGeoLocation *const*, const char *); -SOAP_FMAC3 _tds__GetGeoLocation ** SOAP_FMAC4 soap_in_PointerTo_tds__GetGeoLocation(struct soap*, const char*, _tds__GetGeoLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetGeoLocation(struct soap*, _tds__GetGeoLocation *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetGeoLocation ** SOAP_FMAC4 soap_get_PointerTo_tds__GetGeoLocation(struct soap*, _tds__GetGeoLocation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__DeleteStorageConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__DeleteStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__DeleteStorageConfiguration(struct soap*, _tds__DeleteStorageConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__DeleteStorageConfiguration(struct soap*, const char *, int, _tds__DeleteStorageConfiguration *const*, const char *); -SOAP_FMAC3 _tds__DeleteStorageConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__DeleteStorageConfiguration(struct soap*, const char*, _tds__DeleteStorageConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__DeleteStorageConfiguration(struct soap*, _tds__DeleteStorageConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__DeleteStorageConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__DeleteStorageConfiguration(struct soap*, _tds__DeleteStorageConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetStorageConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetStorageConfiguration(struct soap*, _tds__SetStorageConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetStorageConfiguration(struct soap*, const char *, int, _tds__SetStorageConfiguration *const*, const char *); -SOAP_FMAC3 _tds__SetStorageConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__SetStorageConfiguration(struct soap*, const char*, _tds__SetStorageConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetStorageConfiguration(struct soap*, _tds__SetStorageConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetStorageConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__SetStorageConfiguration(struct soap*, _tds__SetStorageConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetStorageConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetStorageConfiguration(struct soap*, _tds__GetStorageConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetStorageConfiguration(struct soap*, const char *, int, _tds__GetStorageConfiguration *const*, const char *); -SOAP_FMAC3 _tds__GetStorageConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__GetStorageConfiguration(struct soap*, const char*, _tds__GetStorageConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetStorageConfiguration(struct soap*, _tds__GetStorageConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetStorageConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__GetStorageConfiguration(struct soap*, _tds__GetStorageConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__CreateStorageConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__CreateStorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__CreateStorageConfiguration(struct soap*, _tds__CreateStorageConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__CreateStorageConfiguration(struct soap*, const char *, int, _tds__CreateStorageConfiguration *const*, const char *); -SOAP_FMAC3 _tds__CreateStorageConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__CreateStorageConfiguration(struct soap*, const char*, _tds__CreateStorageConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__CreateStorageConfiguration(struct soap*, _tds__CreateStorageConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__CreateStorageConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__CreateStorageConfiguration(struct soap*, _tds__CreateStorageConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetStorageConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetStorageConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetStorageConfigurations(struct soap*, _tds__GetStorageConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetStorageConfigurations(struct soap*, const char *, int, _tds__GetStorageConfigurations *const*, const char *); -SOAP_FMAC3 _tds__GetStorageConfigurations ** SOAP_FMAC4 soap_in_PointerTo_tds__GetStorageConfigurations(struct soap*, const char*, _tds__GetStorageConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetStorageConfigurations(struct soap*, _tds__GetStorageConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetStorageConfigurations ** SOAP_FMAC4 soap_get_PointerTo_tds__GetStorageConfigurations(struct soap*, _tds__GetStorageConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__StartSystemRestore_DEFINED -#define SOAP_TYPE_PointerTo_tds__StartSystemRestore_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__StartSystemRestore(struct soap*, _tds__StartSystemRestore *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__StartSystemRestore(struct soap*, const char *, int, _tds__StartSystemRestore *const*, const char *); -SOAP_FMAC3 _tds__StartSystemRestore ** SOAP_FMAC4 soap_in_PointerTo_tds__StartSystemRestore(struct soap*, const char*, _tds__StartSystemRestore **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__StartSystemRestore(struct soap*, _tds__StartSystemRestore *const*, const char*, const char*); -SOAP_FMAC3 _tds__StartSystemRestore ** SOAP_FMAC4 soap_get_PointerTo_tds__StartSystemRestore(struct soap*, _tds__StartSystemRestore **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__StartFirmwareUpgrade_DEFINED -#define SOAP_TYPE_PointerTo_tds__StartFirmwareUpgrade_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__StartFirmwareUpgrade(struct soap*, _tds__StartFirmwareUpgrade *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__StartFirmwareUpgrade(struct soap*, const char *, int, _tds__StartFirmwareUpgrade *const*, const char *); -SOAP_FMAC3 _tds__StartFirmwareUpgrade ** SOAP_FMAC4 soap_in_PointerTo_tds__StartFirmwareUpgrade(struct soap*, const char*, _tds__StartFirmwareUpgrade **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__StartFirmwareUpgrade(struct soap*, _tds__StartFirmwareUpgrade *const*, const char*, const char*); -SOAP_FMAC3 _tds__StartFirmwareUpgrade ** SOAP_FMAC4 soap_get_PointerTo_tds__StartFirmwareUpgrade(struct soap*, _tds__StartFirmwareUpgrade **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetSystemUris_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetSystemUris_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetSystemUris(struct soap*, _tds__GetSystemUris *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetSystemUris(struct soap*, const char *, int, _tds__GetSystemUris *const*, const char *); -SOAP_FMAC3 _tds__GetSystemUris ** SOAP_FMAC4 soap_in_PointerTo_tds__GetSystemUris(struct soap*, const char*, _tds__GetSystemUris **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetSystemUris(struct soap*, _tds__GetSystemUris *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetSystemUris ** SOAP_FMAC4 soap_get_PointerTo_tds__GetSystemUris(struct soap*, _tds__GetSystemUris **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__ScanAvailableDot11Networks_DEFINED -#define SOAP_TYPE_PointerTo_tds__ScanAvailableDot11Networks_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__ScanAvailableDot11Networks(struct soap*, _tds__ScanAvailableDot11Networks *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__ScanAvailableDot11Networks(struct soap*, const char *, int, _tds__ScanAvailableDot11Networks *const*, const char *); -SOAP_FMAC3 _tds__ScanAvailableDot11Networks ** SOAP_FMAC4 soap_in_PointerTo_tds__ScanAvailableDot11Networks(struct soap*, const char*, _tds__ScanAvailableDot11Networks **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__ScanAvailableDot11Networks(struct soap*, _tds__ScanAvailableDot11Networks *const*, const char*, const char*); -SOAP_FMAC3 _tds__ScanAvailableDot11Networks ** SOAP_FMAC4 soap_get_PointerTo_tds__ScanAvailableDot11Networks(struct soap*, _tds__ScanAvailableDot11Networks **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDot11Status_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDot11Status_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDot11Status(struct soap*, _tds__GetDot11Status *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDot11Status(struct soap*, const char *, int, _tds__GetDot11Status *const*, const char *); -SOAP_FMAC3 _tds__GetDot11Status ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDot11Status(struct soap*, const char*, _tds__GetDot11Status **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDot11Status(struct soap*, _tds__GetDot11Status *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDot11Status ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDot11Status(struct soap*, _tds__GetDot11Status **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDot11Capabilities_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDot11Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDot11Capabilities(struct soap*, _tds__GetDot11Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDot11Capabilities(struct soap*, const char *, int, _tds__GetDot11Capabilities *const*, const char *); -SOAP_FMAC3 _tds__GetDot11Capabilities ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDot11Capabilities(struct soap*, const char*, _tds__GetDot11Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDot11Capabilities(struct soap*, _tds__GetDot11Capabilities *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDot11Capabilities ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDot11Capabilities(struct soap*, _tds__GetDot11Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__DeleteDot1XConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__DeleteDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__DeleteDot1XConfiguration(struct soap*, _tds__DeleteDot1XConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__DeleteDot1XConfiguration(struct soap*, const char *, int, _tds__DeleteDot1XConfiguration *const*, const char *); -SOAP_FMAC3 _tds__DeleteDot1XConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__DeleteDot1XConfiguration(struct soap*, const char*, _tds__DeleteDot1XConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__DeleteDot1XConfiguration(struct soap*, _tds__DeleteDot1XConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__DeleteDot1XConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__DeleteDot1XConfiguration(struct soap*, _tds__DeleteDot1XConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDot1XConfigurations_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDot1XConfigurations_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDot1XConfigurations(struct soap*, _tds__GetDot1XConfigurations *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDot1XConfigurations(struct soap*, const char *, int, _tds__GetDot1XConfigurations *const*, const char *); -SOAP_FMAC3 _tds__GetDot1XConfigurations ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDot1XConfigurations(struct soap*, const char*, _tds__GetDot1XConfigurations **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDot1XConfigurations(struct soap*, _tds__GetDot1XConfigurations *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDot1XConfigurations ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDot1XConfigurations(struct soap*, _tds__GetDot1XConfigurations **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDot1XConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDot1XConfiguration(struct soap*, _tds__GetDot1XConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDot1XConfiguration(struct soap*, const char *, int, _tds__GetDot1XConfiguration *const*, const char *); -SOAP_FMAC3 _tds__GetDot1XConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDot1XConfiguration(struct soap*, const char*, _tds__GetDot1XConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDot1XConfiguration(struct soap*, _tds__GetDot1XConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDot1XConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDot1XConfiguration(struct soap*, _tds__GetDot1XConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetDot1XConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetDot1XConfiguration(struct soap*, _tds__SetDot1XConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetDot1XConfiguration(struct soap*, const char *, int, _tds__SetDot1XConfiguration *const*, const char *); -SOAP_FMAC3 _tds__SetDot1XConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__SetDot1XConfiguration(struct soap*, const char*, _tds__SetDot1XConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetDot1XConfiguration(struct soap*, _tds__SetDot1XConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetDot1XConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__SetDot1XConfiguration(struct soap*, _tds__SetDot1XConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__CreateDot1XConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__CreateDot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__CreateDot1XConfiguration(struct soap*, _tds__CreateDot1XConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__CreateDot1XConfiguration(struct soap*, const char *, int, _tds__CreateDot1XConfiguration *const*, const char *); -SOAP_FMAC3 _tds__CreateDot1XConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__CreateDot1XConfiguration(struct soap*, const char*, _tds__CreateDot1XConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__CreateDot1XConfiguration(struct soap*, _tds__CreateDot1XConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__CreateDot1XConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__CreateDot1XConfiguration(struct soap*, _tds__CreateDot1XConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__LoadCACertificates_DEFINED -#define SOAP_TYPE_PointerTo_tds__LoadCACertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__LoadCACertificates(struct soap*, _tds__LoadCACertificates *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__LoadCACertificates(struct soap*, const char *, int, _tds__LoadCACertificates *const*, const char *); -SOAP_FMAC3 _tds__LoadCACertificates ** SOAP_FMAC4 soap_in_PointerTo_tds__LoadCACertificates(struct soap*, const char*, _tds__LoadCACertificates **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__LoadCACertificates(struct soap*, _tds__LoadCACertificates *const*, const char*, const char*); -SOAP_FMAC3 _tds__LoadCACertificates ** SOAP_FMAC4 soap_get_PointerTo_tds__LoadCACertificates(struct soap*, _tds__LoadCACertificates **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetCertificateInformation_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetCertificateInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetCertificateInformation(struct soap*, _tds__GetCertificateInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetCertificateInformation(struct soap*, const char *, int, _tds__GetCertificateInformation *const*, const char *); -SOAP_FMAC3 _tds__GetCertificateInformation ** SOAP_FMAC4 soap_in_PointerTo_tds__GetCertificateInformation(struct soap*, const char*, _tds__GetCertificateInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetCertificateInformation(struct soap*, _tds__GetCertificateInformation *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetCertificateInformation ** SOAP_FMAC4 soap_get_PointerTo_tds__GetCertificateInformation(struct soap*, _tds__GetCertificateInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__LoadCertificateWithPrivateKey_DEFINED -#define SOAP_TYPE_PointerTo_tds__LoadCertificateWithPrivateKey_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__LoadCertificateWithPrivateKey(struct soap*, _tds__LoadCertificateWithPrivateKey *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__LoadCertificateWithPrivateKey(struct soap*, const char *, int, _tds__LoadCertificateWithPrivateKey *const*, const char *); -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKey ** SOAP_FMAC4 soap_in_PointerTo_tds__LoadCertificateWithPrivateKey(struct soap*, const char*, _tds__LoadCertificateWithPrivateKey **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__LoadCertificateWithPrivateKey(struct soap*, _tds__LoadCertificateWithPrivateKey *const*, const char*, const char*); -SOAP_FMAC3 _tds__LoadCertificateWithPrivateKey ** SOAP_FMAC4 soap_get_PointerTo_tds__LoadCertificateWithPrivateKey(struct soap*, _tds__LoadCertificateWithPrivateKey **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetCACertificates_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetCACertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetCACertificates(struct soap*, _tds__GetCACertificates *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetCACertificates(struct soap*, const char *, int, _tds__GetCACertificates *const*, const char *); -SOAP_FMAC3 _tds__GetCACertificates ** SOAP_FMAC4 soap_in_PointerTo_tds__GetCACertificates(struct soap*, const char*, _tds__GetCACertificates **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetCACertificates(struct soap*, _tds__GetCACertificates *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetCACertificates ** SOAP_FMAC4 soap_get_PointerTo_tds__GetCACertificates(struct soap*, _tds__GetCACertificates **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SendAuxiliaryCommand_DEFINED -#define SOAP_TYPE_PointerTo_tds__SendAuxiliaryCommand_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SendAuxiliaryCommand(struct soap*, _tds__SendAuxiliaryCommand *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SendAuxiliaryCommand(struct soap*, const char *, int, _tds__SendAuxiliaryCommand *const*, const char *); -SOAP_FMAC3 _tds__SendAuxiliaryCommand ** SOAP_FMAC4 soap_in_PointerTo_tds__SendAuxiliaryCommand(struct soap*, const char*, _tds__SendAuxiliaryCommand **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SendAuxiliaryCommand(struct soap*, _tds__SendAuxiliaryCommand *const*, const char*, const char*); -SOAP_FMAC3 _tds__SendAuxiliaryCommand ** SOAP_FMAC4 soap_get_PointerTo_tds__SendAuxiliaryCommand(struct soap*, _tds__SendAuxiliaryCommand **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetRelayOutputState_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetRelayOutputState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetRelayOutputState(struct soap*, _tds__SetRelayOutputState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetRelayOutputState(struct soap*, const char *, int, _tds__SetRelayOutputState *const*, const char *); -SOAP_FMAC3 _tds__SetRelayOutputState ** SOAP_FMAC4 soap_in_PointerTo_tds__SetRelayOutputState(struct soap*, const char*, _tds__SetRelayOutputState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetRelayOutputState(struct soap*, _tds__SetRelayOutputState *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetRelayOutputState ** SOAP_FMAC4 soap_get_PointerTo_tds__SetRelayOutputState(struct soap*, _tds__SetRelayOutputState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetRelayOutputSettings_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetRelayOutputSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetRelayOutputSettings(struct soap*, _tds__SetRelayOutputSettings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetRelayOutputSettings(struct soap*, const char *, int, _tds__SetRelayOutputSettings *const*, const char *); -SOAP_FMAC3 _tds__SetRelayOutputSettings ** SOAP_FMAC4 soap_in_PointerTo_tds__SetRelayOutputSettings(struct soap*, const char*, _tds__SetRelayOutputSettings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetRelayOutputSettings(struct soap*, _tds__SetRelayOutputSettings *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetRelayOutputSettings ** SOAP_FMAC4 soap_get_PointerTo_tds__SetRelayOutputSettings(struct soap*, _tds__SetRelayOutputSettings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetRelayOutputs_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetRelayOutputs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetRelayOutputs(struct soap*, _tds__GetRelayOutputs *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetRelayOutputs(struct soap*, const char *, int, _tds__GetRelayOutputs *const*, const char *); -SOAP_FMAC3 _tds__GetRelayOutputs ** SOAP_FMAC4 soap_in_PointerTo_tds__GetRelayOutputs(struct soap*, const char*, _tds__GetRelayOutputs **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetRelayOutputs(struct soap*, _tds__GetRelayOutputs *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetRelayOutputs ** SOAP_FMAC4 soap_get_PointerTo_tds__GetRelayOutputs(struct soap*, _tds__GetRelayOutputs **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetClientCertificateMode_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetClientCertificateMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetClientCertificateMode(struct soap*, _tds__SetClientCertificateMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetClientCertificateMode(struct soap*, const char *, int, _tds__SetClientCertificateMode *const*, const char *); -SOAP_FMAC3 _tds__SetClientCertificateMode ** SOAP_FMAC4 soap_in_PointerTo_tds__SetClientCertificateMode(struct soap*, const char*, _tds__SetClientCertificateMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetClientCertificateMode(struct soap*, _tds__SetClientCertificateMode *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetClientCertificateMode ** SOAP_FMAC4 soap_get_PointerTo_tds__SetClientCertificateMode(struct soap*, _tds__SetClientCertificateMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetClientCertificateMode_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetClientCertificateMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetClientCertificateMode(struct soap*, _tds__GetClientCertificateMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetClientCertificateMode(struct soap*, const char *, int, _tds__GetClientCertificateMode *const*, const char *); -SOAP_FMAC3 _tds__GetClientCertificateMode ** SOAP_FMAC4 soap_in_PointerTo_tds__GetClientCertificateMode(struct soap*, const char*, _tds__GetClientCertificateMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetClientCertificateMode(struct soap*, _tds__GetClientCertificateMode *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetClientCertificateMode ** SOAP_FMAC4 soap_get_PointerTo_tds__GetClientCertificateMode(struct soap*, _tds__GetClientCertificateMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__LoadCertificates_DEFINED -#define SOAP_TYPE_PointerTo_tds__LoadCertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__LoadCertificates(struct soap*, _tds__LoadCertificates *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__LoadCertificates(struct soap*, const char *, int, _tds__LoadCertificates *const*, const char *); -SOAP_FMAC3 _tds__LoadCertificates ** SOAP_FMAC4 soap_in_PointerTo_tds__LoadCertificates(struct soap*, const char*, _tds__LoadCertificates **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__LoadCertificates(struct soap*, _tds__LoadCertificates *const*, const char*, const char*); -SOAP_FMAC3 _tds__LoadCertificates ** SOAP_FMAC4 soap_get_PointerTo_tds__LoadCertificates(struct soap*, _tds__LoadCertificates **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetPkcs10Request_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetPkcs10Request_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetPkcs10Request(struct soap*, _tds__GetPkcs10Request *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetPkcs10Request(struct soap*, const char *, int, _tds__GetPkcs10Request *const*, const char *); -SOAP_FMAC3 _tds__GetPkcs10Request ** SOAP_FMAC4 soap_in_PointerTo_tds__GetPkcs10Request(struct soap*, const char*, _tds__GetPkcs10Request **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetPkcs10Request(struct soap*, _tds__GetPkcs10Request *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetPkcs10Request ** SOAP_FMAC4 soap_get_PointerTo_tds__GetPkcs10Request(struct soap*, _tds__GetPkcs10Request **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__DeleteCertificates_DEFINED -#define SOAP_TYPE_PointerTo_tds__DeleteCertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__DeleteCertificates(struct soap*, _tds__DeleteCertificates *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__DeleteCertificates(struct soap*, const char *, int, _tds__DeleteCertificates *const*, const char *); -SOAP_FMAC3 _tds__DeleteCertificates ** SOAP_FMAC4 soap_in_PointerTo_tds__DeleteCertificates(struct soap*, const char*, _tds__DeleteCertificates **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__DeleteCertificates(struct soap*, _tds__DeleteCertificates *const*, const char*, const char*); -SOAP_FMAC3 _tds__DeleteCertificates ** SOAP_FMAC4 soap_get_PointerTo_tds__DeleteCertificates(struct soap*, _tds__DeleteCertificates **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetCertificatesStatus_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetCertificatesStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetCertificatesStatus(struct soap*, _tds__SetCertificatesStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetCertificatesStatus(struct soap*, const char *, int, _tds__SetCertificatesStatus *const*, const char *); -SOAP_FMAC3 _tds__SetCertificatesStatus ** SOAP_FMAC4 soap_in_PointerTo_tds__SetCertificatesStatus(struct soap*, const char*, _tds__SetCertificatesStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetCertificatesStatus(struct soap*, _tds__SetCertificatesStatus *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetCertificatesStatus ** SOAP_FMAC4 soap_get_PointerTo_tds__SetCertificatesStatus(struct soap*, _tds__SetCertificatesStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetCertificatesStatus_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetCertificatesStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetCertificatesStatus(struct soap*, _tds__GetCertificatesStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetCertificatesStatus(struct soap*, const char *, int, _tds__GetCertificatesStatus *const*, const char *); -SOAP_FMAC3 _tds__GetCertificatesStatus ** SOAP_FMAC4 soap_in_PointerTo_tds__GetCertificatesStatus(struct soap*, const char*, _tds__GetCertificatesStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetCertificatesStatus(struct soap*, _tds__GetCertificatesStatus *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetCertificatesStatus ** SOAP_FMAC4 soap_get_PointerTo_tds__GetCertificatesStatus(struct soap*, _tds__GetCertificatesStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetCertificates_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetCertificates_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetCertificates(struct soap*, _tds__GetCertificates *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetCertificates(struct soap*, const char *, int, _tds__GetCertificates *const*, const char *); -SOAP_FMAC3 _tds__GetCertificates ** SOAP_FMAC4 soap_in_PointerTo_tds__GetCertificates(struct soap*, const char*, _tds__GetCertificates **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetCertificates(struct soap*, _tds__GetCertificates *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetCertificates ** SOAP_FMAC4 soap_get_PointerTo_tds__GetCertificates(struct soap*, _tds__GetCertificates **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__CreateCertificate_DEFINED -#define SOAP_TYPE_PointerTo_tds__CreateCertificate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__CreateCertificate(struct soap*, _tds__CreateCertificate *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__CreateCertificate(struct soap*, const char *, int, _tds__CreateCertificate *const*, const char *); -SOAP_FMAC3 _tds__CreateCertificate ** SOAP_FMAC4 soap_in_PointerTo_tds__CreateCertificate(struct soap*, const char*, _tds__CreateCertificate **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__CreateCertificate(struct soap*, _tds__CreateCertificate *const*, const char*, const char*); -SOAP_FMAC3 _tds__CreateCertificate ** SOAP_FMAC4 soap_get_PointerTo_tds__CreateCertificate(struct soap*, _tds__CreateCertificate **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetAccessPolicy_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetAccessPolicy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetAccessPolicy(struct soap*, _tds__SetAccessPolicy *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetAccessPolicy(struct soap*, const char *, int, _tds__SetAccessPolicy *const*, const char *); -SOAP_FMAC3 _tds__SetAccessPolicy ** SOAP_FMAC4 soap_in_PointerTo_tds__SetAccessPolicy(struct soap*, const char*, _tds__SetAccessPolicy **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetAccessPolicy(struct soap*, _tds__SetAccessPolicy *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetAccessPolicy ** SOAP_FMAC4 soap_get_PointerTo_tds__SetAccessPolicy(struct soap*, _tds__SetAccessPolicy **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetAccessPolicy_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetAccessPolicy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetAccessPolicy(struct soap*, _tds__GetAccessPolicy *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetAccessPolicy(struct soap*, const char *, int, _tds__GetAccessPolicy *const*, const char *); -SOAP_FMAC3 _tds__GetAccessPolicy ** SOAP_FMAC4 soap_in_PointerTo_tds__GetAccessPolicy(struct soap*, const char*, _tds__GetAccessPolicy **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetAccessPolicy(struct soap*, _tds__GetAccessPolicy *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetAccessPolicy ** SOAP_FMAC4 soap_get_PointerTo_tds__GetAccessPolicy(struct soap*, _tds__GetAccessPolicy **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__RemoveIPAddressFilter_DEFINED -#define SOAP_TYPE_PointerTo_tds__RemoveIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__RemoveIPAddressFilter(struct soap*, _tds__RemoveIPAddressFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__RemoveIPAddressFilter(struct soap*, const char *, int, _tds__RemoveIPAddressFilter *const*, const char *); -SOAP_FMAC3 _tds__RemoveIPAddressFilter ** SOAP_FMAC4 soap_in_PointerTo_tds__RemoveIPAddressFilter(struct soap*, const char*, _tds__RemoveIPAddressFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__RemoveIPAddressFilter(struct soap*, _tds__RemoveIPAddressFilter *const*, const char*, const char*); -SOAP_FMAC3 _tds__RemoveIPAddressFilter ** SOAP_FMAC4 soap_get_PointerTo_tds__RemoveIPAddressFilter(struct soap*, _tds__RemoveIPAddressFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__AddIPAddressFilter_DEFINED -#define SOAP_TYPE_PointerTo_tds__AddIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__AddIPAddressFilter(struct soap*, _tds__AddIPAddressFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__AddIPAddressFilter(struct soap*, const char *, int, _tds__AddIPAddressFilter *const*, const char *); -SOAP_FMAC3 _tds__AddIPAddressFilter ** SOAP_FMAC4 soap_in_PointerTo_tds__AddIPAddressFilter(struct soap*, const char*, _tds__AddIPAddressFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__AddIPAddressFilter(struct soap*, _tds__AddIPAddressFilter *const*, const char*, const char*); -SOAP_FMAC3 _tds__AddIPAddressFilter ** SOAP_FMAC4 soap_get_PointerTo_tds__AddIPAddressFilter(struct soap*, _tds__AddIPAddressFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetIPAddressFilter_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetIPAddressFilter(struct soap*, _tds__SetIPAddressFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetIPAddressFilter(struct soap*, const char *, int, _tds__SetIPAddressFilter *const*, const char *); -SOAP_FMAC3 _tds__SetIPAddressFilter ** SOAP_FMAC4 soap_in_PointerTo_tds__SetIPAddressFilter(struct soap*, const char*, _tds__SetIPAddressFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetIPAddressFilter(struct soap*, _tds__SetIPAddressFilter *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetIPAddressFilter ** SOAP_FMAC4 soap_get_PointerTo_tds__SetIPAddressFilter(struct soap*, _tds__SetIPAddressFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetIPAddressFilter_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetIPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetIPAddressFilter(struct soap*, _tds__GetIPAddressFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetIPAddressFilter(struct soap*, const char *, int, _tds__GetIPAddressFilter *const*, const char *); -SOAP_FMAC3 _tds__GetIPAddressFilter ** SOAP_FMAC4 soap_in_PointerTo_tds__GetIPAddressFilter(struct soap*, const char*, _tds__GetIPAddressFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetIPAddressFilter(struct soap*, _tds__GetIPAddressFilter *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetIPAddressFilter ** SOAP_FMAC4 soap_get_PointerTo_tds__GetIPAddressFilter(struct soap*, _tds__GetIPAddressFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetZeroConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetZeroConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetZeroConfiguration(struct soap*, _tds__SetZeroConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetZeroConfiguration(struct soap*, const char *, int, _tds__SetZeroConfiguration *const*, const char *); -SOAP_FMAC3 _tds__SetZeroConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__SetZeroConfiguration(struct soap*, const char*, _tds__SetZeroConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetZeroConfiguration(struct soap*, _tds__SetZeroConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetZeroConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__SetZeroConfiguration(struct soap*, _tds__SetZeroConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetZeroConfiguration_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetZeroConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetZeroConfiguration(struct soap*, _tds__GetZeroConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetZeroConfiguration(struct soap*, const char *, int, _tds__GetZeroConfiguration *const*, const char *); -SOAP_FMAC3 _tds__GetZeroConfiguration ** SOAP_FMAC4 soap_in_PointerTo_tds__GetZeroConfiguration(struct soap*, const char*, _tds__GetZeroConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetZeroConfiguration(struct soap*, _tds__GetZeroConfiguration *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetZeroConfiguration ** SOAP_FMAC4 soap_get_PointerTo_tds__GetZeroConfiguration(struct soap*, _tds__GetZeroConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetNetworkDefaultGateway_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetNetworkDefaultGateway_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetNetworkDefaultGateway(struct soap*, _tds__SetNetworkDefaultGateway *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetNetworkDefaultGateway(struct soap*, const char *, int, _tds__SetNetworkDefaultGateway *const*, const char *); -SOAP_FMAC3 _tds__SetNetworkDefaultGateway ** SOAP_FMAC4 soap_in_PointerTo_tds__SetNetworkDefaultGateway(struct soap*, const char*, _tds__SetNetworkDefaultGateway **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetNetworkDefaultGateway(struct soap*, _tds__SetNetworkDefaultGateway *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetNetworkDefaultGateway ** SOAP_FMAC4 soap_get_PointerTo_tds__SetNetworkDefaultGateway(struct soap*, _tds__SetNetworkDefaultGateway **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetNetworkDefaultGateway_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetNetworkDefaultGateway_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetNetworkDefaultGateway(struct soap*, _tds__GetNetworkDefaultGateway *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetNetworkDefaultGateway(struct soap*, const char *, int, _tds__GetNetworkDefaultGateway *const*, const char *); -SOAP_FMAC3 _tds__GetNetworkDefaultGateway ** SOAP_FMAC4 soap_in_PointerTo_tds__GetNetworkDefaultGateway(struct soap*, const char*, _tds__GetNetworkDefaultGateway **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetNetworkDefaultGateway(struct soap*, _tds__GetNetworkDefaultGateway *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetNetworkDefaultGateway ** SOAP_FMAC4 soap_get_PointerTo_tds__GetNetworkDefaultGateway(struct soap*, _tds__GetNetworkDefaultGateway **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetNetworkProtocols_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetNetworkProtocols_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetNetworkProtocols(struct soap*, _tds__SetNetworkProtocols *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetNetworkProtocols(struct soap*, const char *, int, _tds__SetNetworkProtocols *const*, const char *); -SOAP_FMAC3 _tds__SetNetworkProtocols ** SOAP_FMAC4 soap_in_PointerTo_tds__SetNetworkProtocols(struct soap*, const char*, _tds__SetNetworkProtocols **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetNetworkProtocols(struct soap*, _tds__SetNetworkProtocols *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetNetworkProtocols ** SOAP_FMAC4 soap_get_PointerTo_tds__SetNetworkProtocols(struct soap*, _tds__SetNetworkProtocols **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetNetworkProtocols_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetNetworkProtocols_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetNetworkProtocols(struct soap*, _tds__GetNetworkProtocols *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetNetworkProtocols(struct soap*, const char *, int, _tds__GetNetworkProtocols *const*, const char *); -SOAP_FMAC3 _tds__GetNetworkProtocols ** SOAP_FMAC4 soap_in_PointerTo_tds__GetNetworkProtocols(struct soap*, const char*, _tds__GetNetworkProtocols **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetNetworkProtocols(struct soap*, _tds__GetNetworkProtocols *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetNetworkProtocols ** SOAP_FMAC4 soap_get_PointerTo_tds__GetNetworkProtocols(struct soap*, _tds__GetNetworkProtocols **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetNetworkInterfaces_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetNetworkInterfaces_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetNetworkInterfaces(struct soap*, _tds__SetNetworkInterfaces *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetNetworkInterfaces(struct soap*, const char *, int, _tds__SetNetworkInterfaces *const*, const char *); -SOAP_FMAC3 _tds__SetNetworkInterfaces ** SOAP_FMAC4 soap_in_PointerTo_tds__SetNetworkInterfaces(struct soap*, const char*, _tds__SetNetworkInterfaces **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetNetworkInterfaces(struct soap*, _tds__SetNetworkInterfaces *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetNetworkInterfaces ** SOAP_FMAC4 soap_get_PointerTo_tds__SetNetworkInterfaces(struct soap*, _tds__SetNetworkInterfaces **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetNetworkInterfaces_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetNetworkInterfaces_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetNetworkInterfaces(struct soap*, _tds__GetNetworkInterfaces *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetNetworkInterfaces(struct soap*, const char *, int, _tds__GetNetworkInterfaces *const*, const char *); -SOAP_FMAC3 _tds__GetNetworkInterfaces ** SOAP_FMAC4 soap_in_PointerTo_tds__GetNetworkInterfaces(struct soap*, const char*, _tds__GetNetworkInterfaces **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetNetworkInterfaces(struct soap*, _tds__GetNetworkInterfaces *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetNetworkInterfaces ** SOAP_FMAC4 soap_get_PointerTo_tds__GetNetworkInterfaces(struct soap*, _tds__GetNetworkInterfaces **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetDynamicDNS_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetDynamicDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetDynamicDNS(struct soap*, _tds__SetDynamicDNS *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetDynamicDNS(struct soap*, const char *, int, _tds__SetDynamicDNS *const*, const char *); -SOAP_FMAC3 _tds__SetDynamicDNS ** SOAP_FMAC4 soap_in_PointerTo_tds__SetDynamicDNS(struct soap*, const char*, _tds__SetDynamicDNS **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetDynamicDNS(struct soap*, _tds__SetDynamicDNS *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetDynamicDNS ** SOAP_FMAC4 soap_get_PointerTo_tds__SetDynamicDNS(struct soap*, _tds__SetDynamicDNS **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDynamicDNS_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDynamicDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDynamicDNS(struct soap*, _tds__GetDynamicDNS *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDynamicDNS(struct soap*, const char *, int, _tds__GetDynamicDNS *const*, const char *); -SOAP_FMAC3 _tds__GetDynamicDNS ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDynamicDNS(struct soap*, const char*, _tds__GetDynamicDNS **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDynamicDNS(struct soap*, _tds__GetDynamicDNS *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDynamicDNS ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDynamicDNS(struct soap*, _tds__GetDynamicDNS **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetNTP_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetNTP_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetNTP(struct soap*, _tds__SetNTP *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetNTP(struct soap*, const char *, int, _tds__SetNTP *const*, const char *); -SOAP_FMAC3 _tds__SetNTP ** SOAP_FMAC4 soap_in_PointerTo_tds__SetNTP(struct soap*, const char*, _tds__SetNTP **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetNTP(struct soap*, _tds__SetNTP *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetNTP ** SOAP_FMAC4 soap_get_PointerTo_tds__SetNTP(struct soap*, _tds__SetNTP **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetNTP_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetNTP_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetNTP(struct soap*, _tds__GetNTP *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetNTP(struct soap*, const char *, int, _tds__GetNTP *const*, const char *); -SOAP_FMAC3 _tds__GetNTP ** SOAP_FMAC4 soap_in_PointerTo_tds__GetNTP(struct soap*, const char*, _tds__GetNTP **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetNTP(struct soap*, _tds__GetNTP *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetNTP ** SOAP_FMAC4 soap_get_PointerTo_tds__GetNTP(struct soap*, _tds__GetNTP **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetDNS_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetDNS(struct soap*, _tds__SetDNS *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetDNS(struct soap*, const char *, int, _tds__SetDNS *const*, const char *); -SOAP_FMAC3 _tds__SetDNS ** SOAP_FMAC4 soap_in_PointerTo_tds__SetDNS(struct soap*, const char*, _tds__SetDNS **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetDNS(struct soap*, _tds__SetDNS *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetDNS ** SOAP_FMAC4 soap_get_PointerTo_tds__SetDNS(struct soap*, _tds__SetDNS **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDNS_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDNS_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDNS(struct soap*, _tds__GetDNS *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDNS(struct soap*, const char *, int, _tds__GetDNS *const*, const char *); -SOAP_FMAC3 _tds__GetDNS ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDNS(struct soap*, const char*, _tds__GetDNS **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDNS(struct soap*, _tds__GetDNS *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDNS ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDNS(struct soap*, _tds__GetDNS **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetHostnameFromDHCP_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetHostnameFromDHCP_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetHostnameFromDHCP(struct soap*, _tds__SetHostnameFromDHCP *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetHostnameFromDHCP(struct soap*, const char *, int, _tds__SetHostnameFromDHCP *const*, const char *); -SOAP_FMAC3 _tds__SetHostnameFromDHCP ** SOAP_FMAC4 soap_in_PointerTo_tds__SetHostnameFromDHCP(struct soap*, const char*, _tds__SetHostnameFromDHCP **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetHostnameFromDHCP(struct soap*, _tds__SetHostnameFromDHCP *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetHostnameFromDHCP ** SOAP_FMAC4 soap_get_PointerTo_tds__SetHostnameFromDHCP(struct soap*, _tds__SetHostnameFromDHCP **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetHostname_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetHostname_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetHostname(struct soap*, _tds__SetHostname *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetHostname(struct soap*, const char *, int, _tds__SetHostname *const*, const char *); -SOAP_FMAC3 _tds__SetHostname ** SOAP_FMAC4 soap_in_PointerTo_tds__SetHostname(struct soap*, const char*, _tds__SetHostname **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetHostname(struct soap*, _tds__SetHostname *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetHostname ** SOAP_FMAC4 soap_get_PointerTo_tds__SetHostname(struct soap*, _tds__SetHostname **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetHostname_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetHostname_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetHostname(struct soap*, _tds__GetHostname *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetHostname(struct soap*, const char *, int, _tds__GetHostname *const*, const char *); -SOAP_FMAC3 _tds__GetHostname ** SOAP_FMAC4 soap_in_PointerTo_tds__GetHostname(struct soap*, const char*, _tds__GetHostname **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetHostname(struct soap*, _tds__GetHostname *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetHostname ** SOAP_FMAC4 soap_get_PointerTo_tds__GetHostname(struct soap*, _tds__GetHostname **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetDPAddresses_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetDPAddresses_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetDPAddresses(struct soap*, _tds__SetDPAddresses *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetDPAddresses(struct soap*, const char *, int, _tds__SetDPAddresses *const*, const char *); -SOAP_FMAC3 _tds__SetDPAddresses ** SOAP_FMAC4 soap_in_PointerTo_tds__SetDPAddresses(struct soap*, const char*, _tds__SetDPAddresses **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetDPAddresses(struct soap*, _tds__SetDPAddresses *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetDPAddresses ** SOAP_FMAC4 soap_get_PointerTo_tds__SetDPAddresses(struct soap*, _tds__SetDPAddresses **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetCapabilities(struct soap*, _tds__GetCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetCapabilities(struct soap*, const char *, int, _tds__GetCapabilities *const*, const char *); -SOAP_FMAC3 _tds__GetCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tds__GetCapabilities(struct soap*, const char*, _tds__GetCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetCapabilities(struct soap*, _tds__GetCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tds__GetCapabilities(struct soap*, _tds__GetCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetWsdlUrl_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetWsdlUrl_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetWsdlUrl(struct soap*, _tds__GetWsdlUrl *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetWsdlUrl(struct soap*, const char *, int, _tds__GetWsdlUrl *const*, const char *); -SOAP_FMAC3 _tds__GetWsdlUrl ** SOAP_FMAC4 soap_in_PointerTo_tds__GetWsdlUrl(struct soap*, const char*, _tds__GetWsdlUrl **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetWsdlUrl(struct soap*, _tds__GetWsdlUrl *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetWsdlUrl ** SOAP_FMAC4 soap_get_PointerTo_tds__GetWsdlUrl(struct soap*, _tds__GetWsdlUrl **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetUser_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetUser_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetUser(struct soap*, _tds__SetUser *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetUser(struct soap*, const char *, int, _tds__SetUser *const*, const char *); -SOAP_FMAC3 _tds__SetUser ** SOAP_FMAC4 soap_in_PointerTo_tds__SetUser(struct soap*, const char*, _tds__SetUser **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetUser(struct soap*, _tds__SetUser *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetUser ** SOAP_FMAC4 soap_get_PointerTo_tds__SetUser(struct soap*, _tds__SetUser **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__DeleteUsers_DEFINED -#define SOAP_TYPE_PointerTo_tds__DeleteUsers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__DeleteUsers(struct soap*, _tds__DeleteUsers *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__DeleteUsers(struct soap*, const char *, int, _tds__DeleteUsers *const*, const char *); -SOAP_FMAC3 _tds__DeleteUsers ** SOAP_FMAC4 soap_in_PointerTo_tds__DeleteUsers(struct soap*, const char*, _tds__DeleteUsers **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__DeleteUsers(struct soap*, _tds__DeleteUsers *const*, const char*, const char*); -SOAP_FMAC3 _tds__DeleteUsers ** SOAP_FMAC4 soap_get_PointerTo_tds__DeleteUsers(struct soap*, _tds__DeleteUsers **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__CreateUsers_DEFINED -#define SOAP_TYPE_PointerTo_tds__CreateUsers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__CreateUsers(struct soap*, _tds__CreateUsers *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__CreateUsers(struct soap*, const char *, int, _tds__CreateUsers *const*, const char *); -SOAP_FMAC3 _tds__CreateUsers ** SOAP_FMAC4 soap_in_PointerTo_tds__CreateUsers(struct soap*, const char*, _tds__CreateUsers **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__CreateUsers(struct soap*, _tds__CreateUsers *const*, const char*, const char*); -SOAP_FMAC3 _tds__CreateUsers ** SOAP_FMAC4 soap_get_PointerTo_tds__CreateUsers(struct soap*, _tds__CreateUsers **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetUsers_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetUsers_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetUsers(struct soap*, _tds__GetUsers *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetUsers(struct soap*, const char *, int, _tds__GetUsers *const*, const char *); -SOAP_FMAC3 _tds__GetUsers ** SOAP_FMAC4 soap_in_PointerTo_tds__GetUsers(struct soap*, const char*, _tds__GetUsers **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetUsers(struct soap*, _tds__GetUsers *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetUsers ** SOAP_FMAC4 soap_get_PointerTo_tds__GetUsers(struct soap*, _tds__GetUsers **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetRemoteUser_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetRemoteUser_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetRemoteUser(struct soap*, _tds__SetRemoteUser *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetRemoteUser(struct soap*, const char *, int, _tds__SetRemoteUser *const*, const char *); -SOAP_FMAC3 _tds__SetRemoteUser ** SOAP_FMAC4 soap_in_PointerTo_tds__SetRemoteUser(struct soap*, const char*, _tds__SetRemoteUser **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetRemoteUser(struct soap*, _tds__SetRemoteUser *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetRemoteUser ** SOAP_FMAC4 soap_get_PointerTo_tds__SetRemoteUser(struct soap*, _tds__SetRemoteUser **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetRemoteUser_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetRemoteUser_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetRemoteUser(struct soap*, _tds__GetRemoteUser *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetRemoteUser(struct soap*, const char *, int, _tds__GetRemoteUser *const*, const char *); -SOAP_FMAC3 _tds__GetRemoteUser ** SOAP_FMAC4 soap_in_PointerTo_tds__GetRemoteUser(struct soap*, const char*, _tds__GetRemoteUser **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetRemoteUser(struct soap*, _tds__GetRemoteUser *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetRemoteUser ** SOAP_FMAC4 soap_get_PointerTo_tds__GetRemoteUser(struct soap*, _tds__GetRemoteUser **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetEndpointReference_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetEndpointReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetEndpointReference(struct soap*, _tds__GetEndpointReference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetEndpointReference(struct soap*, const char *, int, _tds__GetEndpointReference *const*, const char *); -SOAP_FMAC3 _tds__GetEndpointReference ** SOAP_FMAC4 soap_in_PointerTo_tds__GetEndpointReference(struct soap*, const char*, _tds__GetEndpointReference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetEndpointReference(struct soap*, _tds__GetEndpointReference *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetEndpointReference ** SOAP_FMAC4 soap_get_PointerTo_tds__GetEndpointReference(struct soap*, _tds__GetEndpointReference **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDPAddresses_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDPAddresses_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDPAddresses(struct soap*, _tds__GetDPAddresses *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDPAddresses(struct soap*, const char *, int, _tds__GetDPAddresses *const*, const char *); -SOAP_FMAC3 _tds__GetDPAddresses ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDPAddresses(struct soap*, const char*, _tds__GetDPAddresses **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDPAddresses(struct soap*, _tds__GetDPAddresses *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDPAddresses ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDPAddresses(struct soap*, _tds__GetDPAddresses **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetRemoteDiscoveryMode_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetRemoteDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetRemoteDiscoveryMode(struct soap*, _tds__SetRemoteDiscoveryMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetRemoteDiscoveryMode(struct soap*, const char *, int, _tds__SetRemoteDiscoveryMode *const*, const char *); -SOAP_FMAC3 _tds__SetRemoteDiscoveryMode ** SOAP_FMAC4 soap_in_PointerTo_tds__SetRemoteDiscoveryMode(struct soap*, const char*, _tds__SetRemoteDiscoveryMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetRemoteDiscoveryMode(struct soap*, _tds__SetRemoteDiscoveryMode *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetRemoteDiscoveryMode ** SOAP_FMAC4 soap_get_PointerTo_tds__SetRemoteDiscoveryMode(struct soap*, _tds__SetRemoteDiscoveryMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetRemoteDiscoveryMode_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetRemoteDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetRemoteDiscoveryMode(struct soap*, _tds__GetRemoteDiscoveryMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetRemoteDiscoveryMode(struct soap*, const char *, int, _tds__GetRemoteDiscoveryMode *const*, const char *); -SOAP_FMAC3 _tds__GetRemoteDiscoveryMode ** SOAP_FMAC4 soap_in_PointerTo_tds__GetRemoteDiscoveryMode(struct soap*, const char*, _tds__GetRemoteDiscoveryMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetRemoteDiscoveryMode(struct soap*, _tds__GetRemoteDiscoveryMode *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetRemoteDiscoveryMode ** SOAP_FMAC4 soap_get_PointerTo_tds__GetRemoteDiscoveryMode(struct soap*, _tds__GetRemoteDiscoveryMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetDiscoveryMode_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetDiscoveryMode(struct soap*, _tds__SetDiscoveryMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetDiscoveryMode(struct soap*, const char *, int, _tds__SetDiscoveryMode *const*, const char *); -SOAP_FMAC3 _tds__SetDiscoveryMode ** SOAP_FMAC4 soap_in_PointerTo_tds__SetDiscoveryMode(struct soap*, const char*, _tds__SetDiscoveryMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetDiscoveryMode(struct soap*, _tds__SetDiscoveryMode *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetDiscoveryMode ** SOAP_FMAC4 soap_get_PointerTo_tds__SetDiscoveryMode(struct soap*, _tds__SetDiscoveryMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDiscoveryMode_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDiscoveryMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDiscoveryMode(struct soap*, _tds__GetDiscoveryMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDiscoveryMode(struct soap*, const char *, int, _tds__GetDiscoveryMode *const*, const char *); -SOAP_FMAC3 _tds__GetDiscoveryMode ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDiscoveryMode(struct soap*, const char*, _tds__GetDiscoveryMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDiscoveryMode(struct soap*, _tds__GetDiscoveryMode *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDiscoveryMode ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDiscoveryMode(struct soap*, _tds__GetDiscoveryMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__RemoveScopes_DEFINED -#define SOAP_TYPE_PointerTo_tds__RemoveScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__RemoveScopes(struct soap*, _tds__RemoveScopes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__RemoveScopes(struct soap*, const char *, int, _tds__RemoveScopes *const*, const char *); -SOAP_FMAC3 _tds__RemoveScopes ** SOAP_FMAC4 soap_in_PointerTo_tds__RemoveScopes(struct soap*, const char*, _tds__RemoveScopes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__RemoveScopes(struct soap*, _tds__RemoveScopes *const*, const char*, const char*); -SOAP_FMAC3 _tds__RemoveScopes ** SOAP_FMAC4 soap_get_PointerTo_tds__RemoveScopes(struct soap*, _tds__RemoveScopes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__AddScopes_DEFINED -#define SOAP_TYPE_PointerTo_tds__AddScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__AddScopes(struct soap*, _tds__AddScopes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__AddScopes(struct soap*, const char *, int, _tds__AddScopes *const*, const char *); -SOAP_FMAC3 _tds__AddScopes ** SOAP_FMAC4 soap_in_PointerTo_tds__AddScopes(struct soap*, const char*, _tds__AddScopes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__AddScopes(struct soap*, _tds__AddScopes *const*, const char*, const char*); -SOAP_FMAC3 _tds__AddScopes ** SOAP_FMAC4 soap_get_PointerTo_tds__AddScopes(struct soap*, _tds__AddScopes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetScopes_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetScopes(struct soap*, _tds__SetScopes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetScopes(struct soap*, const char *, int, _tds__SetScopes *const*, const char *); -SOAP_FMAC3 _tds__SetScopes ** SOAP_FMAC4 soap_in_PointerTo_tds__SetScopes(struct soap*, const char*, _tds__SetScopes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetScopes(struct soap*, _tds__SetScopes *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetScopes ** SOAP_FMAC4 soap_get_PointerTo_tds__SetScopes(struct soap*, _tds__SetScopes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetScopes_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetScopes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetScopes(struct soap*, _tds__GetScopes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetScopes(struct soap*, const char *, int, _tds__GetScopes *const*, const char *); -SOAP_FMAC3 _tds__GetScopes ** SOAP_FMAC4 soap_in_PointerTo_tds__GetScopes(struct soap*, const char*, _tds__GetScopes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetScopes(struct soap*, _tds__GetScopes *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetScopes ** SOAP_FMAC4 soap_get_PointerTo_tds__GetScopes(struct soap*, _tds__GetScopes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetSystemSupportInformation_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetSystemSupportInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetSystemSupportInformation(struct soap*, _tds__GetSystemSupportInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetSystemSupportInformation(struct soap*, const char *, int, _tds__GetSystemSupportInformation *const*, const char *); -SOAP_FMAC3 _tds__GetSystemSupportInformation ** SOAP_FMAC4 soap_in_PointerTo_tds__GetSystemSupportInformation(struct soap*, const char*, _tds__GetSystemSupportInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetSystemSupportInformation(struct soap*, _tds__GetSystemSupportInformation *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetSystemSupportInformation ** SOAP_FMAC4 soap_get_PointerTo_tds__GetSystemSupportInformation(struct soap*, _tds__GetSystemSupportInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetSystemLog_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetSystemLog_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetSystemLog(struct soap*, _tds__GetSystemLog *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetSystemLog(struct soap*, const char *, int, _tds__GetSystemLog *const*, const char *); -SOAP_FMAC3 _tds__GetSystemLog ** SOAP_FMAC4 soap_in_PointerTo_tds__GetSystemLog(struct soap*, const char*, _tds__GetSystemLog **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetSystemLog(struct soap*, _tds__GetSystemLog *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetSystemLog ** SOAP_FMAC4 soap_get_PointerTo_tds__GetSystemLog(struct soap*, _tds__GetSystemLog **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetSystemBackup_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetSystemBackup_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetSystemBackup(struct soap*, _tds__GetSystemBackup *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetSystemBackup(struct soap*, const char *, int, _tds__GetSystemBackup *const*, const char *); -SOAP_FMAC3 _tds__GetSystemBackup ** SOAP_FMAC4 soap_in_PointerTo_tds__GetSystemBackup(struct soap*, const char*, _tds__GetSystemBackup **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetSystemBackup(struct soap*, _tds__GetSystemBackup *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetSystemBackup ** SOAP_FMAC4 soap_get_PointerTo_tds__GetSystemBackup(struct soap*, _tds__GetSystemBackup **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__RestoreSystem_DEFINED -#define SOAP_TYPE_PointerTo_tds__RestoreSystem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__RestoreSystem(struct soap*, _tds__RestoreSystem *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__RestoreSystem(struct soap*, const char *, int, _tds__RestoreSystem *const*, const char *); -SOAP_FMAC3 _tds__RestoreSystem ** SOAP_FMAC4 soap_in_PointerTo_tds__RestoreSystem(struct soap*, const char*, _tds__RestoreSystem **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__RestoreSystem(struct soap*, _tds__RestoreSystem *const*, const char*, const char*); -SOAP_FMAC3 _tds__RestoreSystem ** SOAP_FMAC4 soap_get_PointerTo_tds__RestoreSystem(struct soap*, _tds__RestoreSystem **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SystemReboot_DEFINED -#define SOAP_TYPE_PointerTo_tds__SystemReboot_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SystemReboot(struct soap*, _tds__SystemReboot *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SystemReboot(struct soap*, const char *, int, _tds__SystemReboot *const*, const char *); -SOAP_FMAC3 _tds__SystemReboot ** SOAP_FMAC4 soap_in_PointerTo_tds__SystemReboot(struct soap*, const char*, _tds__SystemReboot **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SystemReboot(struct soap*, _tds__SystemReboot *const*, const char*, const char*); -SOAP_FMAC3 _tds__SystemReboot ** SOAP_FMAC4 soap_get_PointerTo_tds__SystemReboot(struct soap*, _tds__SystemReboot **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__UpgradeSystemFirmware_DEFINED -#define SOAP_TYPE_PointerTo_tds__UpgradeSystemFirmware_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__UpgradeSystemFirmware(struct soap*, _tds__UpgradeSystemFirmware *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__UpgradeSystemFirmware(struct soap*, const char *, int, _tds__UpgradeSystemFirmware *const*, const char *); -SOAP_FMAC3 _tds__UpgradeSystemFirmware ** SOAP_FMAC4 soap_in_PointerTo_tds__UpgradeSystemFirmware(struct soap*, const char*, _tds__UpgradeSystemFirmware **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__UpgradeSystemFirmware(struct soap*, _tds__UpgradeSystemFirmware *const*, const char*, const char*); -SOAP_FMAC3 _tds__UpgradeSystemFirmware ** SOAP_FMAC4 soap_get_PointerTo_tds__UpgradeSystemFirmware(struct soap*, _tds__UpgradeSystemFirmware **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetSystemFactoryDefault_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetSystemFactoryDefault_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetSystemFactoryDefault(struct soap*, _tds__SetSystemFactoryDefault *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetSystemFactoryDefault(struct soap*, const char *, int, _tds__SetSystemFactoryDefault *const*, const char *); -SOAP_FMAC3 _tds__SetSystemFactoryDefault ** SOAP_FMAC4 soap_in_PointerTo_tds__SetSystemFactoryDefault(struct soap*, const char*, _tds__SetSystemFactoryDefault **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetSystemFactoryDefault(struct soap*, _tds__SetSystemFactoryDefault *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetSystemFactoryDefault ** SOAP_FMAC4 soap_get_PointerTo_tds__SetSystemFactoryDefault(struct soap*, _tds__SetSystemFactoryDefault **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetSystemDateAndTime_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetSystemDateAndTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetSystemDateAndTime(struct soap*, _tds__GetSystemDateAndTime *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetSystemDateAndTime(struct soap*, const char *, int, _tds__GetSystemDateAndTime *const*, const char *); -SOAP_FMAC3 _tds__GetSystemDateAndTime ** SOAP_FMAC4 soap_in_PointerTo_tds__GetSystemDateAndTime(struct soap*, const char*, _tds__GetSystemDateAndTime **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetSystemDateAndTime(struct soap*, _tds__GetSystemDateAndTime *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetSystemDateAndTime ** SOAP_FMAC4 soap_get_PointerTo_tds__GetSystemDateAndTime(struct soap*, _tds__GetSystemDateAndTime **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__SetSystemDateAndTime_DEFINED -#define SOAP_TYPE_PointerTo_tds__SetSystemDateAndTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__SetSystemDateAndTime(struct soap*, _tds__SetSystemDateAndTime *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__SetSystemDateAndTime(struct soap*, const char *, int, _tds__SetSystemDateAndTime *const*, const char *); -SOAP_FMAC3 _tds__SetSystemDateAndTime ** SOAP_FMAC4 soap_in_PointerTo_tds__SetSystemDateAndTime(struct soap*, const char*, _tds__SetSystemDateAndTime **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__SetSystemDateAndTime(struct soap*, _tds__SetSystemDateAndTime *const*, const char*, const char*); -SOAP_FMAC3 _tds__SetSystemDateAndTime ** SOAP_FMAC4 soap_get_PointerTo_tds__SetSystemDateAndTime(struct soap*, _tds__SetSystemDateAndTime **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetDeviceInformation_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetDeviceInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetDeviceInformation(struct soap*, _tds__GetDeviceInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetDeviceInformation(struct soap*, const char *, int, _tds__GetDeviceInformation *const*, const char *); -SOAP_FMAC3 _tds__GetDeviceInformation ** SOAP_FMAC4 soap_in_PointerTo_tds__GetDeviceInformation(struct soap*, const char*, _tds__GetDeviceInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetDeviceInformation(struct soap*, _tds__GetDeviceInformation *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetDeviceInformation ** SOAP_FMAC4 soap_get_PointerTo_tds__GetDeviceInformation(struct soap*, _tds__GetDeviceInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetServiceCapabilities(struct soap*, _tds__GetServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetServiceCapabilities(struct soap*, const char *, int, _tds__GetServiceCapabilities *const*, const char *); -SOAP_FMAC3 _tds__GetServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTo_tds__GetServiceCapabilities(struct soap*, const char*, _tds__GetServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetServiceCapabilities(struct soap*, _tds__GetServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTo_tds__GetServiceCapabilities(struct soap*, _tds__GetServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetServices_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetServices_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetServices(struct soap*, _tds__GetServices *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetServices(struct soap*, const char *, int, _tds__GetServices *const*, const char *); -SOAP_FMAC3 _tds__GetServices ** SOAP_FMAC4 soap_in_PointerTo_tds__GetServices(struct soap*, const char*, _tds__GetServices **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetServices(struct soap*, _tds__GetServices *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetServices ** SOAP_FMAC4 soap_get_PointerTo_tds__GetServices(struct soap*, _tds__GetServices **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnacceptableTerminationTimeFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnacceptableTerminationTimeFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnacceptableTerminationTimeFaultType(struct soap*, wsnt__UnacceptableTerminationTimeFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnacceptableTerminationTimeFaultType(struct soap*, const char *, int, wsnt__UnacceptableTerminationTimeFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnacceptableTerminationTimeFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnacceptableTerminationTimeFaultType(struct soap*, const char*, wsnt__UnacceptableTerminationTimeFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnacceptableTerminationTimeFaultType(struct soap*, wsnt__UnacceptableTerminationTimeFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnacceptableTerminationTimeFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnacceptableTerminationTimeFaultType(struct soap*, wsnt__UnacceptableTerminationTimeFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnableToDestroySubscriptionFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnableToDestroySubscriptionFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnableToDestroySubscriptionFaultType(struct soap*, wsnt__UnableToDestroySubscriptionFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnableToDestroySubscriptionFaultType(struct soap*, const char *, int, wsnt__UnableToDestroySubscriptionFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnableToDestroySubscriptionFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnableToDestroySubscriptionFaultType(struct soap*, const char*, wsnt__UnableToDestroySubscriptionFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnableToDestroySubscriptionFaultType(struct soap*, wsnt__UnableToDestroySubscriptionFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnableToDestroySubscriptionFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnableToDestroySubscriptionFaultType(struct soap*, wsnt__UnableToDestroySubscriptionFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__ResumeFailedFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__ResumeFailedFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__ResumeFailedFaultType(struct soap*, wsnt__ResumeFailedFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__ResumeFailedFaultType(struct soap*, const char *, int, wsnt__ResumeFailedFaultType *const*, const char *); -SOAP_FMAC3 wsnt__ResumeFailedFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__ResumeFailedFaultType(struct soap*, const char*, wsnt__ResumeFailedFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__ResumeFailedFaultType(struct soap*, wsnt__ResumeFailedFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__ResumeFailedFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__ResumeFailedFaultType(struct soap*, wsnt__ResumeFailedFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__PauseFailedFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__PauseFailedFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__PauseFailedFaultType(struct soap*, wsnt__PauseFailedFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__PauseFailedFaultType(struct soap*, const char *, int, wsnt__PauseFailedFaultType *const*, const char *); -SOAP_FMAC3 wsnt__PauseFailedFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__PauseFailedFaultType(struct soap*, const char*, wsnt__PauseFailedFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__PauseFailedFaultType(struct soap*, wsnt__PauseFailedFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__PauseFailedFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__PauseFailedFaultType(struct soap*, wsnt__PauseFailedFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__PullMessagesFaultResponse_DEFINED -#define SOAP_TYPE_PointerTo_tev__PullMessagesFaultResponse_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__PullMessagesFaultResponse(struct soap*, _tev__PullMessagesFaultResponse *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__PullMessagesFaultResponse(struct soap*, const char *, int, _tev__PullMessagesFaultResponse *const*, const char *); -SOAP_FMAC3 _tev__PullMessagesFaultResponse ** SOAP_FMAC4 soap_in_PointerTo_tev__PullMessagesFaultResponse(struct soap*, const char*, _tev__PullMessagesFaultResponse **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__PullMessagesFaultResponse(struct soap*, _tev__PullMessagesFaultResponse *const*, const char*, const char*); -SOAP_FMAC3 _tev__PullMessagesFaultResponse ** SOAP_FMAC4 soap_get_PointerTo_tev__PullMessagesFaultResponse(struct soap*, _tev__PullMessagesFaultResponse **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnableToGetMessagesFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnableToGetMessagesFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnableToGetMessagesFaultType(struct soap*, wsnt__UnableToGetMessagesFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnableToGetMessagesFaultType(struct soap*, const char *, int, wsnt__UnableToGetMessagesFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnableToGetMessagesFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnableToGetMessagesFaultType(struct soap*, const char*, wsnt__UnableToGetMessagesFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnableToGetMessagesFaultType(struct soap*, wsnt__UnableToGetMessagesFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnableToGetMessagesFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnableToGetMessagesFaultType(struct soap*, wsnt__UnableToGetMessagesFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnableToDestroyPullPointFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnableToDestroyPullPointFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnableToDestroyPullPointFaultType(struct soap*, wsnt__UnableToDestroyPullPointFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnableToDestroyPullPointFaultType(struct soap*, const char *, int, wsnt__UnableToDestroyPullPointFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnableToDestroyPullPointFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnableToDestroyPullPointFaultType(struct soap*, const char*, wsnt__UnableToDestroyPullPointFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnableToDestroyPullPointFaultType(struct soap*, wsnt__UnableToDestroyPullPointFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnableToDestroyPullPointFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnableToDestroyPullPointFaultType(struct soap*, wsnt__UnableToDestroyPullPointFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__NoCurrentMessageOnTopicFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__NoCurrentMessageOnTopicFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__NoCurrentMessageOnTopicFaultType(struct soap*, wsnt__NoCurrentMessageOnTopicFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__NoCurrentMessageOnTopicFaultType(struct soap*, const char *, int, wsnt__NoCurrentMessageOnTopicFaultType *const*, const char *); -SOAP_FMAC3 wsnt__NoCurrentMessageOnTopicFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__NoCurrentMessageOnTopicFaultType(struct soap*, const char*, wsnt__NoCurrentMessageOnTopicFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__NoCurrentMessageOnTopicFaultType(struct soap*, wsnt__NoCurrentMessageOnTopicFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__NoCurrentMessageOnTopicFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__NoCurrentMessageOnTopicFaultType(struct soap*, wsnt__NoCurrentMessageOnTopicFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__MultipleTopicsSpecifiedFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__MultipleTopicsSpecifiedFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__MultipleTopicsSpecifiedFaultType(struct soap*, wsnt__MultipleTopicsSpecifiedFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__MultipleTopicsSpecifiedFaultType(struct soap*, const char *, int, wsnt__MultipleTopicsSpecifiedFaultType *const*, const char *); -SOAP_FMAC3 wsnt__MultipleTopicsSpecifiedFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__MultipleTopicsSpecifiedFaultType(struct soap*, const char*, wsnt__MultipleTopicsSpecifiedFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__MultipleTopicsSpecifiedFaultType(struct soap*, wsnt__MultipleTopicsSpecifiedFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__MultipleTopicsSpecifiedFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__MultipleTopicsSpecifiedFaultType(struct soap*, wsnt__MultipleTopicsSpecifiedFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnsupportedPolicyRequestFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnsupportedPolicyRequestFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnsupportedPolicyRequestFaultType(struct soap*, wsnt__UnsupportedPolicyRequestFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnsupportedPolicyRequestFaultType(struct soap*, const char *, int, wsnt__UnsupportedPolicyRequestFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnsupportedPolicyRequestFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnsupportedPolicyRequestFaultType(struct soap*, const char*, wsnt__UnsupportedPolicyRequestFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnsupportedPolicyRequestFaultType(struct soap*, wsnt__UnsupportedPolicyRequestFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnsupportedPolicyRequestFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnsupportedPolicyRequestFaultType(struct soap*, wsnt__UnsupportedPolicyRequestFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnrecognizedPolicyRequestFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnrecognizedPolicyRequestFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnrecognizedPolicyRequestFaultType(struct soap*, wsnt__UnrecognizedPolicyRequestFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnrecognizedPolicyRequestFaultType(struct soap*, const char *, int, wsnt__UnrecognizedPolicyRequestFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnrecognizedPolicyRequestFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnrecognizedPolicyRequestFaultType(struct soap*, const char*, wsnt__UnrecognizedPolicyRequestFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnrecognizedPolicyRequestFaultType(struct soap*, wsnt__UnrecognizedPolicyRequestFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnrecognizedPolicyRequestFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnrecognizedPolicyRequestFaultType(struct soap*, wsnt__UnrecognizedPolicyRequestFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, wsnt__UnacceptableInitialTerminationTimeFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, const char *, int, wsnt__UnacceptableInitialTerminationTimeFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnacceptableInitialTerminationTimeFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, const char*, wsnt__UnacceptableInitialTerminationTimeFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, wsnt__UnacceptableInitialTerminationTimeFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnacceptableInitialTerminationTimeFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnacceptableInitialTerminationTimeFaultType(struct soap*, wsnt__UnacceptableInitialTerminationTimeFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__TopicNotSupportedFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__TopicNotSupportedFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__TopicNotSupportedFaultType(struct soap*, wsnt__TopicNotSupportedFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__TopicNotSupportedFaultType(struct soap*, const char *, int, wsnt__TopicNotSupportedFaultType *const*, const char *); -SOAP_FMAC3 wsnt__TopicNotSupportedFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__TopicNotSupportedFaultType(struct soap*, const char*, wsnt__TopicNotSupportedFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__TopicNotSupportedFaultType(struct soap*, wsnt__TopicNotSupportedFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__TopicNotSupportedFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__TopicNotSupportedFaultType(struct soap*, wsnt__TopicNotSupportedFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__TopicExpressionDialectUnknownFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__TopicExpressionDialectUnknownFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__TopicExpressionDialectUnknownFaultType(struct soap*, wsnt__TopicExpressionDialectUnknownFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__TopicExpressionDialectUnknownFaultType(struct soap*, const char *, int, wsnt__TopicExpressionDialectUnknownFaultType *const*, const char *); -SOAP_FMAC3 wsnt__TopicExpressionDialectUnknownFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__TopicExpressionDialectUnknownFaultType(struct soap*, const char*, wsnt__TopicExpressionDialectUnknownFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__TopicExpressionDialectUnknownFaultType(struct soap*, wsnt__TopicExpressionDialectUnknownFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__TopicExpressionDialectUnknownFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__TopicExpressionDialectUnknownFaultType(struct soap*, wsnt__TopicExpressionDialectUnknownFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__SubscribeCreationFailedFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__SubscribeCreationFailedFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__SubscribeCreationFailedFaultType(struct soap*, wsnt__SubscribeCreationFailedFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__SubscribeCreationFailedFaultType(struct soap*, const char *, int, wsnt__SubscribeCreationFailedFaultType *const*, const char *); -SOAP_FMAC3 wsnt__SubscribeCreationFailedFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__SubscribeCreationFailedFaultType(struct soap*, const char*, wsnt__SubscribeCreationFailedFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__SubscribeCreationFailedFaultType(struct soap*, wsnt__SubscribeCreationFailedFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__SubscribeCreationFailedFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__SubscribeCreationFailedFaultType(struct soap*, wsnt__SubscribeCreationFailedFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsrfr__ResourceUnknownFaultType_DEFINED -#define SOAP_TYPE_PointerTowsrfr__ResourceUnknownFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsrfr__ResourceUnknownFaultType(struct soap*, wsrfr__ResourceUnknownFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsrfr__ResourceUnknownFaultType(struct soap*, const char *, int, wsrfr__ResourceUnknownFaultType *const*, const char *); -SOAP_FMAC3 wsrfr__ResourceUnknownFaultType ** SOAP_FMAC4 soap_in_PointerTowsrfr__ResourceUnknownFaultType(struct soap*, const char*, wsrfr__ResourceUnknownFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsrfr__ResourceUnknownFaultType(struct soap*, wsrfr__ResourceUnknownFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsrfr__ResourceUnknownFaultType ** SOAP_FMAC4 soap_get_PointerTowsrfr__ResourceUnknownFaultType(struct soap*, wsrfr__ResourceUnknownFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__NotifyMessageNotSupportedFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__NotifyMessageNotSupportedFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__NotifyMessageNotSupportedFaultType(struct soap*, wsnt__NotifyMessageNotSupportedFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__NotifyMessageNotSupportedFaultType(struct soap*, const char *, int, wsnt__NotifyMessageNotSupportedFaultType *const*, const char *); -SOAP_FMAC3 wsnt__NotifyMessageNotSupportedFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__NotifyMessageNotSupportedFaultType(struct soap*, const char*, wsnt__NotifyMessageNotSupportedFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__NotifyMessageNotSupportedFaultType(struct soap*, wsnt__NotifyMessageNotSupportedFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__NotifyMessageNotSupportedFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__NotifyMessageNotSupportedFaultType(struct soap*, wsnt__NotifyMessageNotSupportedFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__InvalidTopicExpressionFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__InvalidTopicExpressionFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__InvalidTopicExpressionFaultType(struct soap*, wsnt__InvalidTopicExpressionFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__InvalidTopicExpressionFaultType(struct soap*, const char *, int, wsnt__InvalidTopicExpressionFaultType *const*, const char *); -SOAP_FMAC3 wsnt__InvalidTopicExpressionFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__InvalidTopicExpressionFaultType(struct soap*, const char*, wsnt__InvalidTopicExpressionFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__InvalidTopicExpressionFaultType(struct soap*, wsnt__InvalidTopicExpressionFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__InvalidTopicExpressionFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__InvalidTopicExpressionFaultType(struct soap*, wsnt__InvalidTopicExpressionFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, wsnt__InvalidProducerPropertiesExpressionFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, const char *, int, wsnt__InvalidProducerPropertiesExpressionFaultType *const*, const char *); -SOAP_FMAC3 wsnt__InvalidProducerPropertiesExpressionFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, const char*, wsnt__InvalidProducerPropertiesExpressionFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, wsnt__InvalidProducerPropertiesExpressionFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__InvalidProducerPropertiesExpressionFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__InvalidProducerPropertiesExpressionFaultType(struct soap*, wsnt__InvalidProducerPropertiesExpressionFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__InvalidMessageContentExpressionFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__InvalidMessageContentExpressionFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__InvalidMessageContentExpressionFaultType(struct soap*, wsnt__InvalidMessageContentExpressionFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__InvalidMessageContentExpressionFaultType(struct soap*, const char *, int, wsnt__InvalidMessageContentExpressionFaultType *const*, const char *); -SOAP_FMAC3 wsnt__InvalidMessageContentExpressionFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__InvalidMessageContentExpressionFaultType(struct soap*, const char*, wsnt__InvalidMessageContentExpressionFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__InvalidMessageContentExpressionFaultType(struct soap*, wsnt__InvalidMessageContentExpressionFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__InvalidMessageContentExpressionFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__InvalidMessageContentExpressionFaultType(struct soap*, wsnt__InvalidMessageContentExpressionFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__InvalidFilterFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__InvalidFilterFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__InvalidFilterFaultType(struct soap*, wsnt__InvalidFilterFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__InvalidFilterFaultType(struct soap*, const char *, int, wsnt__InvalidFilterFaultType *const*, const char *); -SOAP_FMAC3 wsnt__InvalidFilterFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__InvalidFilterFaultType(struct soap*, const char*, wsnt__InvalidFilterFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__InvalidFilterFaultType(struct soap*, wsnt__InvalidFilterFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__InvalidFilterFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__InvalidFilterFaultType(struct soap*, wsnt__InvalidFilterFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__UnableToCreatePullPointFaultType_DEFINED -#define SOAP_TYPE_PointerTowsnt__UnableToCreatePullPointFaultType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__UnableToCreatePullPointFaultType(struct soap*, wsnt__UnableToCreatePullPointFaultType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__UnableToCreatePullPointFaultType(struct soap*, const char *, int, wsnt__UnableToCreatePullPointFaultType *const*, const char *); -SOAP_FMAC3 wsnt__UnableToCreatePullPointFaultType ** SOAP_FMAC4 soap_in_PointerTowsnt__UnableToCreatePullPointFaultType(struct soap*, const char*, wsnt__UnableToCreatePullPointFaultType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__UnableToCreatePullPointFaultType(struct soap*, wsnt__UnableToCreatePullPointFaultType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__UnableToCreatePullPointFaultType ** SOAP_FMAC4 soap_get_PointerTowsnt__UnableToCreatePullPointFaultType(struct soap*, wsnt__UnableToCreatePullPointFaultType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__NCName_DEFINED -#define SOAP_TYPE_PointerToxsd__NCName_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__NCName(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__NCName(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToxsd__NCName(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__NCName(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToxsd__NCName(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowstop__ConcreteTopicExpression_DEFINED -#define SOAP_TYPE_PointerTowstop__ConcreteTopicExpression_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowstop__ConcreteTopicExpression(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowstop__ConcreteTopicExpression(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTowstop__ConcreteTopicExpression(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowstop__ConcreteTopicExpression(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTowstop__ConcreteTopicExpression(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__QName_DEFINED -#define SOAP_TYPE_PointerToxsd__QName_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__QName(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__QName(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToxsd__QName(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__QName(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToxsd__QName(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowstop__TopicType_DEFINED -#define SOAP_TYPE_PointerTowstop__TopicType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowstop__TopicType(struct soap*, wstop__TopicType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowstop__TopicType(struct soap*, const char *, int, wstop__TopicType *const*, const char *); -SOAP_FMAC3 wstop__TopicType ** SOAP_FMAC4 soap_in_PointerTowstop__TopicType(struct soap*, const char*, wstop__TopicType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowstop__TopicType(struct soap*, wstop__TopicType *const*, const char*, const char*); -SOAP_FMAC3 wstop__TopicType ** SOAP_FMAC4 soap_get_PointerTowstop__TopicType(struct soap*, wstop__TopicType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowstop__QueryExpressionType_DEFINED -#define SOAP_TYPE_PointerTowstop__QueryExpressionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowstop__QueryExpressionType(struct soap*, wstop__QueryExpressionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowstop__QueryExpressionType(struct soap*, const char *, int, wstop__QueryExpressionType *const*, const char *); -SOAP_FMAC3 wstop__QueryExpressionType ** SOAP_FMAC4 soap_in_PointerTowstop__QueryExpressionType(struct soap*, const char*, wstop__QueryExpressionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowstop__QueryExpressionType(struct soap*, wstop__QueryExpressionType *const*, const char*, const char*); -SOAP_FMAC3 wstop__QueryExpressionType ** SOAP_FMAC4 soap_get_PointerTowstop__QueryExpressionType(struct soap*, wstop__QueryExpressionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDConfigurationExtension(struct soap*, tt__OSDConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDConfigurationExtension(struct soap*, const char *, int, tt__OSDConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__OSDConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDConfigurationExtension(struct soap*, const char*, tt__OSDConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDConfigurationExtension(struct soap*, tt__OSDConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDConfigurationExtension(struct soap*, tt__OSDConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDImgConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__OSDImgConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDImgConfiguration(struct soap*, tt__OSDImgConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDImgConfiguration(struct soap*, const char *, int, tt__OSDImgConfiguration *const*, const char *); -SOAP_FMAC3 tt__OSDImgConfiguration ** SOAP_FMAC4 soap_in_PointerTott__OSDImgConfiguration(struct soap*, const char*, tt__OSDImgConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDImgConfiguration(struct soap*, tt__OSDImgConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDImgConfiguration ** SOAP_FMAC4 soap_get_PointerTott__OSDImgConfiguration(struct soap*, tt__OSDImgConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDTextConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__OSDTextConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDTextConfiguration(struct soap*, tt__OSDTextConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDTextConfiguration(struct soap*, const char *, int, tt__OSDTextConfiguration *const*, const char *); -SOAP_FMAC3 tt__OSDTextConfiguration ** SOAP_FMAC4 soap_in_PointerTott__OSDTextConfiguration(struct soap*, const char*, tt__OSDTextConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDTextConfiguration(struct soap*, tt__OSDTextConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDTextConfiguration ** SOAP_FMAC4 soap_get_PointerTott__OSDTextConfiguration(struct soap*, tt__OSDTextConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDPosConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__OSDPosConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDPosConfiguration(struct soap*, tt__OSDPosConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDPosConfiguration(struct soap*, const char *, int, tt__OSDPosConfiguration *const*, const char *); -SOAP_FMAC3 tt__OSDPosConfiguration ** SOAP_FMAC4 soap_in_PointerTott__OSDPosConfiguration(struct soap*, const char*, tt__OSDPosConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDPosConfiguration(struct soap*, tt__OSDPosConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDPosConfiguration ** SOAP_FMAC4 soap_get_PointerTott__OSDPosConfiguration(struct soap*, tt__OSDPosConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDReference_DEFINED -#define SOAP_TYPE_PointerTott__OSDReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDReference(struct soap*, tt__OSDReference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDReference(struct soap*, const char *, int, tt__OSDReference *const*, const char *); -SOAP_FMAC3 tt__OSDReference ** SOAP_FMAC4 soap_in_PointerTott__OSDReference(struct soap*, const char*, tt__OSDReference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDReference(struct soap*, tt__OSDReference *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDReference ** SOAP_FMAC4 soap_get_PointerTott__OSDReference(struct soap*, tt__OSDReference **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataInput_DEFINED -#define SOAP_TYPE_PointerTott__MetadataInput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataInput(struct soap*, tt__MetadataInput *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataInput(struct soap*, const char *, int, tt__MetadataInput *const*, const char *); -SOAP_FMAC3 tt__MetadataInput ** SOAP_FMAC4 soap_in_PointerTott__MetadataInput(struct soap*, const char*, tt__MetadataInput **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataInput(struct soap*, tt__MetadataInput *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataInput ** SOAP_FMAC4 soap_get_PointerTott__MetadataInput(struct soap*, tt__MetadataInput **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SourceIdentification_DEFINED -#define SOAP_TYPE_PointerTott__SourceIdentification_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SourceIdentification(struct soap*, tt__SourceIdentification *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SourceIdentification(struct soap*, const char *, int, tt__SourceIdentification *const*, const char *); -SOAP_FMAC3 tt__SourceIdentification ** SOAP_FMAC4 soap_in_PointerTott__SourceIdentification(struct soap*, const char*, tt__SourceIdentification **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SourceIdentification(struct soap*, tt__SourceIdentification *const*, const char*, const char*); -SOAP_FMAC3 tt__SourceIdentification ** SOAP_FMAC4 soap_get_PointerTott__SourceIdentification(struct soap*, tt__SourceIdentification **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsDeviceEngineConfiguration(struct soap*, tt__AnalyticsDeviceEngineConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsDeviceEngineConfiguration(struct soap*, const char *, int, tt__AnalyticsDeviceEngineConfiguration *const*, const char *); -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfiguration ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsDeviceEngineConfiguration(struct soap*, const char*, tt__AnalyticsDeviceEngineConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsDeviceEngineConfiguration(struct soap*, tt__AnalyticsDeviceEngineConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfiguration ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsDeviceEngineConfiguration(struct soap*, tt__AnalyticsDeviceEngineConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZConfigurationExtension(struct soap*, tt__PTZConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZConfigurationExtension(struct soap*, const char *, int, tt__PTZConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__PTZConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZConfigurationExtension(struct soap*, const char*, tt__PTZConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZConfigurationExtension(struct soap*, tt__PTZConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZConfigurationExtension(struct soap*, tt__PTZConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ZoomLimits_DEFINED -#define SOAP_TYPE_PointerTott__ZoomLimits_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ZoomLimits(struct soap*, tt__ZoomLimits *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ZoomLimits(struct soap*, const char *, int, tt__ZoomLimits *const*, const char *); -SOAP_FMAC3 tt__ZoomLimits ** SOAP_FMAC4 soap_in_PointerTott__ZoomLimits(struct soap*, const char*, tt__ZoomLimits **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ZoomLimits(struct soap*, tt__ZoomLimits *const*, const char*, const char*); -SOAP_FMAC3 tt__ZoomLimits ** SOAP_FMAC4 soap_get_PointerTott__ZoomLimits(struct soap*, tt__ZoomLimits **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PanTiltLimits_DEFINED -#define SOAP_TYPE_PointerTott__PanTiltLimits_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PanTiltLimits(struct soap*, tt__PanTiltLimits *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PanTiltLimits(struct soap*, const char *, int, tt__PanTiltLimits *const*, const char *); -SOAP_FMAC3 tt__PanTiltLimits ** SOAP_FMAC4 soap_in_PointerTott__PanTiltLimits(struct soap*, const char*, tt__PanTiltLimits **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PanTiltLimits(struct soap*, tt__PanTiltLimits *const*, const char*, const char*); -SOAP_FMAC3 tt__PanTiltLimits ** SOAP_FMAC4 soap_get_PointerTott__PanTiltLimits(struct soap*, tt__PanTiltLimits **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZNodeExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZNodeExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZNodeExtension(struct soap*, tt__PTZNodeExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZNodeExtension(struct soap*, const char *, int, tt__PTZNodeExtension *const*, const char *); -SOAP_FMAC3 tt__PTZNodeExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZNodeExtension(struct soap*, const char*, tt__PTZNodeExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZNodeExtension(struct soap*, tt__PTZNodeExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZNodeExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZNodeExtension(struct soap*, tt__PTZNodeExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DigitalIdleState_DEFINED -#define SOAP_TYPE_PointerTott__DigitalIdleState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DigitalIdleState(struct soap*, enum tt__DigitalIdleState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DigitalIdleState(struct soap*, const char *, int, enum tt__DigitalIdleState *const*, const char *); -SOAP_FMAC3 enum tt__DigitalIdleState ** SOAP_FMAC4 soap_in_PointerTott__DigitalIdleState(struct soap*, const char*, enum tt__DigitalIdleState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DigitalIdleState(struct soap*, enum tt__DigitalIdleState *const*, const char*, const char*); -SOAP_FMAC3 enum tt__DigitalIdleState ** SOAP_FMAC4 soap_get_PointerTott__DigitalIdleState(struct soap*, enum tt__DigitalIdleState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceExtension_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceExtension(struct soap*, tt__NetworkInterfaceExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceExtension(struct soap*, const char *, int, tt__NetworkInterfaceExtension *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceExtension ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceExtension(struct soap*, const char*, tt__NetworkInterfaceExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceExtension(struct soap*, tt__NetworkInterfaceExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceExtension ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceExtension(struct soap*, tt__NetworkInterfaceExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv6NetworkInterface_DEFINED -#define SOAP_TYPE_PointerTott__IPv6NetworkInterface_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv6NetworkInterface(struct soap*, tt__IPv6NetworkInterface *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv6NetworkInterface(struct soap*, const char *, int, tt__IPv6NetworkInterface *const*, const char *); -SOAP_FMAC3 tt__IPv6NetworkInterface ** SOAP_FMAC4 soap_in_PointerTott__IPv6NetworkInterface(struct soap*, const char*, tt__IPv6NetworkInterface **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv6NetworkInterface(struct soap*, tt__IPv6NetworkInterface *const*, const char*, const char*); -SOAP_FMAC3 tt__IPv6NetworkInterface ** SOAP_FMAC4 soap_get_PointerTott__IPv6NetworkInterface(struct soap*, tt__IPv6NetworkInterface **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv4NetworkInterface_DEFINED -#define SOAP_TYPE_PointerTott__IPv4NetworkInterface_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv4NetworkInterface(struct soap*, tt__IPv4NetworkInterface *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv4NetworkInterface(struct soap*, const char *, int, tt__IPv4NetworkInterface *const*, const char *); -SOAP_FMAC3 tt__IPv4NetworkInterface ** SOAP_FMAC4 soap_in_PointerTott__IPv4NetworkInterface(struct soap*, const char*, tt__IPv4NetworkInterface **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv4NetworkInterface(struct soap*, tt__IPv4NetworkInterface *const*, const char*, const char*); -SOAP_FMAC3 tt__IPv4NetworkInterface ** SOAP_FMAC4 soap_get_PointerTott__IPv4NetworkInterface(struct soap*, tt__IPv4NetworkInterface **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceLink_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceLink_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceLink(struct soap*, tt__NetworkInterfaceLink *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceLink(struct soap*, const char *, int, tt__NetworkInterfaceLink *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceLink ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceLink(struct soap*, const char*, tt__NetworkInterfaceLink **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceLink(struct soap*, tt__NetworkInterfaceLink *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceLink ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceLink(struct soap*, tt__NetworkInterfaceLink **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceInfo_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceInfo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceInfo(struct soap*, tt__NetworkInterfaceInfo *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceInfo(struct soap*, const char *, int, tt__NetworkInterfaceInfo *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceInfo ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceInfo(struct soap*, const char*, tt__NetworkInterfaceInfo **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceInfo(struct soap*, tt__NetworkInterfaceInfo *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceInfo ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceInfo(struct soap*, tt__NetworkInterfaceInfo **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoOutputExtension_DEFINED -#define SOAP_TYPE_PointerTott__VideoOutputExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoOutputExtension(struct soap*, tt__VideoOutputExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoOutputExtension(struct soap*, const char *, int, tt__VideoOutputExtension *const*, const char *); -SOAP_FMAC3 tt__VideoOutputExtension ** SOAP_FMAC4 soap_in_PointerTott__VideoOutputExtension(struct soap*, const char*, tt__VideoOutputExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoOutputExtension(struct soap*, tt__VideoOutputExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoOutputExtension ** SOAP_FMAC4 soap_get_PointerTott__VideoOutputExtension(struct soap*, tt__VideoOutputExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__MetadataConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataConfigurationExtension(struct soap*, tt__MetadataConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataConfigurationExtension(struct soap*, const char *, int, tt__MetadataConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__MetadataConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__MetadataConfigurationExtension(struct soap*, const char*, tt__MetadataConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataConfigurationExtension(struct soap*, tt__MetadataConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__MetadataConfigurationExtension(struct soap*, tt__MetadataConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EventSubscription_DEFINED -#define SOAP_TYPE_PointerTott__EventSubscription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EventSubscription(struct soap*, tt__EventSubscription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EventSubscription(struct soap*, const char *, int, tt__EventSubscription *const*, const char *); -SOAP_FMAC3 tt__EventSubscription ** SOAP_FMAC4 soap_in_PointerTott__EventSubscription(struct soap*, const char*, tt__EventSubscription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EventSubscription(struct soap*, tt__EventSubscription *const*, const char*, const char*); -SOAP_FMAC3 tt__EventSubscription ** SOAP_FMAC4 soap_get_PointerTott__EventSubscription(struct soap*, tt__EventSubscription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZFilter_DEFINED -#define SOAP_TYPE_PointerTott__PTZFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZFilter(struct soap*, tt__PTZFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZFilter(struct soap*, const char *, int, tt__PTZFilter *const*, const char *); -SOAP_FMAC3 tt__PTZFilter ** SOAP_FMAC4 soap_in_PointerTott__PTZFilter(struct soap*, const char*, tt__PTZFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZFilter(struct soap*, tt__PTZFilter *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZFilter ** SOAP_FMAC4 soap_get_PointerTott__PTZFilter(struct soap*, tt__PTZFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RuleEngineConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__RuleEngineConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RuleEngineConfiguration(struct soap*, tt__RuleEngineConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RuleEngineConfiguration(struct soap*, const char *, int, tt__RuleEngineConfiguration *const*, const char *); -SOAP_FMAC3 tt__RuleEngineConfiguration ** SOAP_FMAC4 soap_in_PointerTott__RuleEngineConfiguration(struct soap*, const char*, tt__RuleEngineConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RuleEngineConfiguration(struct soap*, tt__RuleEngineConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__RuleEngineConfiguration ** SOAP_FMAC4 soap_get_PointerTott__RuleEngineConfiguration(struct soap*, tt__RuleEngineConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsEngineConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsEngineConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsEngineConfiguration(struct soap*, tt__AnalyticsEngineConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsEngineConfiguration(struct soap*, const char *, int, tt__AnalyticsEngineConfiguration *const*, const char *); -SOAP_FMAC3 tt__AnalyticsEngineConfiguration ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsEngineConfiguration(struct soap*, const char*, tt__AnalyticsEngineConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsEngineConfiguration(struct soap*, tt__AnalyticsEngineConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsEngineConfiguration ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsEngineConfiguration(struct soap*, tt__AnalyticsEngineConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoRateControl2_DEFINED -#define SOAP_TYPE_PointerTott__VideoRateControl2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoRateControl2(struct soap*, tt__VideoRateControl2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoRateControl2(struct soap*, const char *, int, tt__VideoRateControl2 *const*, const char *); -SOAP_FMAC3 tt__VideoRateControl2 ** SOAP_FMAC4 soap_in_PointerTott__VideoRateControl2(struct soap*, const char*, tt__VideoRateControl2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoRateControl2(struct soap*, tt__VideoRateControl2 *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoRateControl2 ** SOAP_FMAC4 soap_get_PointerTott__VideoRateControl2(struct soap*, tt__VideoRateControl2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MulticastConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__MulticastConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MulticastConfiguration(struct soap*, tt__MulticastConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MulticastConfiguration(struct soap*, const char *, int, tt__MulticastConfiguration *const*, const char *); -SOAP_FMAC3 tt__MulticastConfiguration ** SOAP_FMAC4 soap_in_PointerTott__MulticastConfiguration(struct soap*, const char*, tt__MulticastConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MulticastConfiguration(struct soap*, tt__MulticastConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__MulticastConfiguration ** SOAP_FMAC4 soap_get_PointerTott__MulticastConfiguration(struct soap*, tt__MulticastConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__H264Configuration_DEFINED -#define SOAP_TYPE_PointerTott__H264Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__H264Configuration(struct soap*, tt__H264Configuration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__H264Configuration(struct soap*, const char *, int, tt__H264Configuration *const*, const char *); -SOAP_FMAC3 tt__H264Configuration ** SOAP_FMAC4 soap_in_PointerTott__H264Configuration(struct soap*, const char*, tt__H264Configuration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__H264Configuration(struct soap*, tt__H264Configuration *const*, const char*, const char*); -SOAP_FMAC3 tt__H264Configuration ** SOAP_FMAC4 soap_get_PointerTott__H264Configuration(struct soap*, tt__H264Configuration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Mpeg4Configuration_DEFINED -#define SOAP_TYPE_PointerTott__Mpeg4Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Mpeg4Configuration(struct soap*, tt__Mpeg4Configuration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Mpeg4Configuration(struct soap*, const char *, int, tt__Mpeg4Configuration *const*, const char *); -SOAP_FMAC3 tt__Mpeg4Configuration ** SOAP_FMAC4 soap_in_PointerTott__Mpeg4Configuration(struct soap*, const char*, tt__Mpeg4Configuration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Mpeg4Configuration(struct soap*, tt__Mpeg4Configuration *const*, const char*, const char*); -SOAP_FMAC3 tt__Mpeg4Configuration ** SOAP_FMAC4 soap_get_PointerTott__Mpeg4Configuration(struct soap*, tt__Mpeg4Configuration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoRateControl_DEFINED -#define SOAP_TYPE_PointerTott__VideoRateControl_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoRateControl(struct soap*, tt__VideoRateControl *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoRateControl(struct soap*, const char *, int, tt__VideoRateControl *const*, const char *); -SOAP_FMAC3 tt__VideoRateControl ** SOAP_FMAC4 soap_in_PointerTott__VideoRateControl(struct soap*, const char*, tt__VideoRateControl **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoRateControl(struct soap*, tt__VideoRateControl *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoRateControl ** SOAP_FMAC4 soap_get_PointerTott__VideoRateControl(struct soap*, tt__VideoRateControl **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceConfigurationExtension(struct soap*, tt__VideoSourceConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceConfigurationExtension(struct soap*, const char *, int, tt__VideoSourceConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__VideoSourceConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceConfigurationExtension(struct soap*, const char*, tt__VideoSourceConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceConfigurationExtension(struct soap*, tt__VideoSourceConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceConfigurationExtension(struct soap*, tt__VideoSourceConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IntRectangle_DEFINED -#define SOAP_TYPE_PointerTott__IntRectangle_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IntRectangle(struct soap*, tt__IntRectangle *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IntRectangle(struct soap*, const char *, int, tt__IntRectangle *const*, const char *); -SOAP_FMAC3 tt__IntRectangle ** SOAP_FMAC4 soap_in_PointerTott__IntRectangle(struct soap*, const char*, tt__IntRectangle **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IntRectangle(struct soap*, tt__IntRectangle *const*, const char*, const char*); -SOAP_FMAC3 tt__IntRectangle ** SOAP_FMAC4 soap_get_PointerTott__IntRectangle(struct soap*, tt__IntRectangle **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceExtension_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceExtension(struct soap*, tt__VideoSourceExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceExtension(struct soap*, const char *, int, tt__VideoSourceExtension *const*, const char *); -SOAP_FMAC3 tt__VideoSourceExtension ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceExtension(struct soap*, const char*, tt__VideoSourceExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceExtension(struct soap*, tt__VideoSourceExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceExtension ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceExtension(struct soap*, tt__VideoSourceExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingSettings_DEFINED -#define SOAP_TYPE_PointerTott__ImagingSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingSettings(struct soap*, tt__ImagingSettings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingSettings(struct soap*, const char *, int, tt__ImagingSettings *const*, const char *); -SOAP_FMAC3 tt__ImagingSettings ** SOAP_FMAC4 soap_in_PointerTott__ImagingSettings(struct soap*, const char*, tt__ImagingSettings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingSettings(struct soap*, tt__ImagingSettings *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingSettings ** SOAP_FMAC4 soap_get_PointerTott__ImagingSettings(struct soap*, tt__ImagingSettings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowstop__Documentation_DEFINED -#define SOAP_TYPE_PointerTowstop__Documentation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowstop__Documentation(struct soap*, wstop__Documentation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowstop__Documentation(struct soap*, const char *, int, wstop__Documentation *const*, const char *); -SOAP_FMAC3 wstop__Documentation ** SOAP_FMAC4 soap_in_PointerTowstop__Documentation(struct soap*, const char*, wstop__Documentation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowstop__Documentation(struct soap*, wstop__Documentation *const*, const char*, const char*); -SOAP_FMAC3 wstop__Documentation ** SOAP_FMAC4 soap_get_PointerTowstop__Documentation(struct soap*, wstop__Documentation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FindMetadataResultList_DEFINED -#define SOAP_TYPE_PointerTott__FindMetadataResultList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FindMetadataResultList(struct soap*, tt__FindMetadataResultList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FindMetadataResultList(struct soap*, const char *, int, tt__FindMetadataResultList *const*, const char *); -SOAP_FMAC3 tt__FindMetadataResultList ** SOAP_FMAC4 soap_in_PointerTott__FindMetadataResultList(struct soap*, const char*, tt__FindMetadataResultList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FindMetadataResultList(struct soap*, tt__FindMetadataResultList *const*, const char*, const char*); -SOAP_FMAC3 tt__FindMetadataResultList ** SOAP_FMAC4 soap_get_PointerTott__FindMetadataResultList(struct soap*, tt__FindMetadataResultList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataFilter_DEFINED -#define SOAP_TYPE_PointerTott__MetadataFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataFilter(struct soap*, tt__MetadataFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataFilter(struct soap*, const char *, int, tt__MetadataFilter *const*, const char *); -SOAP_FMAC3 tt__MetadataFilter ** SOAP_FMAC4 soap_in_PointerTott__MetadataFilter(struct soap*, const char*, tt__MetadataFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataFilter(struct soap*, tt__MetadataFilter *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataFilter ** SOAP_FMAC4 soap_get_PointerTott__MetadataFilter(struct soap*, tt__MetadataFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FindPTZPositionResultList_DEFINED -#define SOAP_TYPE_PointerTott__FindPTZPositionResultList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FindPTZPositionResultList(struct soap*, tt__FindPTZPositionResultList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FindPTZPositionResultList(struct soap*, const char *, int, tt__FindPTZPositionResultList *const*, const char *); -SOAP_FMAC3 tt__FindPTZPositionResultList ** SOAP_FMAC4 soap_in_PointerTott__FindPTZPositionResultList(struct soap*, const char*, tt__FindPTZPositionResultList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FindPTZPositionResultList(struct soap*, tt__FindPTZPositionResultList *const*, const char*, const char*); -SOAP_FMAC3 tt__FindPTZPositionResultList ** SOAP_FMAC4 soap_get_PointerTott__FindPTZPositionResultList(struct soap*, tt__FindPTZPositionResultList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPositionFilter_DEFINED -#define SOAP_TYPE_PointerTott__PTZPositionFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPositionFilter(struct soap*, tt__PTZPositionFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPositionFilter(struct soap*, const char *, int, tt__PTZPositionFilter *const*, const char *); -SOAP_FMAC3 tt__PTZPositionFilter ** SOAP_FMAC4 soap_in_PointerTott__PTZPositionFilter(struct soap*, const char*, tt__PTZPositionFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPositionFilter(struct soap*, tt__PTZPositionFilter *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPositionFilter ** SOAP_FMAC4 soap_get_PointerTott__PTZPositionFilter(struct soap*, tt__PTZPositionFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FindEventResultList_DEFINED -#define SOAP_TYPE_PointerTott__FindEventResultList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FindEventResultList(struct soap*, tt__FindEventResultList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FindEventResultList(struct soap*, const char *, int, tt__FindEventResultList *const*, const char *); -SOAP_FMAC3 tt__FindEventResultList ** SOAP_FMAC4 soap_in_PointerTott__FindEventResultList(struct soap*, const char*, tt__FindEventResultList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FindEventResultList(struct soap*, tt__FindEventResultList *const*, const char*, const char*); -SOAP_FMAC3 tt__FindEventResultList ** SOAP_FMAC4 soap_get_PointerTott__FindEventResultList(struct soap*, tt__FindEventResultList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EventFilter_DEFINED -#define SOAP_TYPE_PointerTott__EventFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EventFilter(struct soap*, tt__EventFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EventFilter(struct soap*, const char *, int, tt__EventFilter *const*, const char *); -SOAP_FMAC3 tt__EventFilter ** SOAP_FMAC4 soap_in_PointerTott__EventFilter(struct soap*, const char*, tt__EventFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EventFilter(struct soap*, tt__EventFilter *const*, const char*, const char*); -SOAP_FMAC3 tt__EventFilter ** SOAP_FMAC4 soap_get_PointerTott__EventFilter(struct soap*, tt__EventFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FindRecordingResultList_DEFINED -#define SOAP_TYPE_PointerTott__FindRecordingResultList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FindRecordingResultList(struct soap*, tt__FindRecordingResultList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FindRecordingResultList(struct soap*, const char *, int, tt__FindRecordingResultList *const*, const char *); -SOAP_FMAC3 tt__FindRecordingResultList ** SOAP_FMAC4 soap_in_PointerTott__FindRecordingResultList(struct soap*, const char*, tt__FindRecordingResultList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FindRecordingResultList(struct soap*, tt__FindRecordingResultList *const*, const char*, const char*); -SOAP_FMAC3 tt__FindRecordingResultList ** SOAP_FMAC4 soap_get_PointerTott__FindRecordingResultList(struct soap*, tt__FindRecordingResultList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MediaAttributes_DEFINED -#define SOAP_TYPE_PointerTott__MediaAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MediaAttributes(struct soap*, tt__MediaAttributes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MediaAttributes(struct soap*, const char *, int, tt__MediaAttributes *const*, const char *); -SOAP_FMAC3 tt__MediaAttributes ** SOAP_FMAC4 soap_in_PointerTott__MediaAttributes(struct soap*, const char*, tt__MediaAttributes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MediaAttributes(struct soap*, tt__MediaAttributes *const*, const char*, const char*); -SOAP_FMAC3 tt__MediaAttributes ** SOAP_FMAC4 soap_get_PointerTott__MediaAttributes(struct soap*, tt__MediaAttributes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingSummary_DEFINED -#define SOAP_TYPE_PointerTott__RecordingSummary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingSummary(struct soap*, tt__RecordingSummary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingSummary(struct soap*, const char *, int, tt__RecordingSummary *const*, const char *); -SOAP_FMAC3 tt__RecordingSummary ** SOAP_FMAC4 soap_in_PointerTott__RecordingSummary(struct soap*, const char*, tt__RecordingSummary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingSummary(struct soap*, tt__RecordingSummary *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingSummary ** SOAP_FMAC4 soap_get_PointerTott__RecordingSummary(struct soap*, tt__RecordingSummary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotse__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotse__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotse__Capabilities(struct soap*, tse__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotse__Capabilities(struct soap*, const char *, int, tse__Capabilities *const*, const char *); -SOAP_FMAC3 tse__Capabilities ** SOAP_FMAC4 soap_in_PointerTotse__Capabilities(struct soap*, const char*, tse__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotse__Capabilities(struct soap*, tse__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 tse__Capabilities ** SOAP_FMAC4 soap_get_PointerTotse__Capabilities(struct soap*, tse__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReplayConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__ReplayConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReplayConfiguration(struct soap*, tt__ReplayConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReplayConfiguration(struct soap*, const char *, int, tt__ReplayConfiguration *const*, const char *); -SOAP_FMAC3 tt__ReplayConfiguration ** SOAP_FMAC4 soap_in_PointerTott__ReplayConfiguration(struct soap*, const char*, tt__ReplayConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReplayConfiguration(struct soap*, tt__ReplayConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__ReplayConfiguration ** SOAP_FMAC4 soap_get_PointerTott__ReplayConfiguration(struct soap*, tt__ReplayConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrp__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotrp__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrp__Capabilities(struct soap*, trp__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrp__Capabilities(struct soap*, const char *, int, trp__Capabilities *const*, const char *); -SOAP_FMAC3 trp__Capabilities ** SOAP_FMAC4 soap_in_PointerTotrp__Capabilities(struct soap*, const char*, trp__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrp__Capabilities(struct soap*, trp__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 trp__Capabilities ** SOAP_FMAC4 soap_get_PointerTotrp__Capabilities(struct soap*, trp__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ArrayOfFileProgress_DEFINED -#define SOAP_TYPE_PointerTott__ArrayOfFileProgress_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ArrayOfFileProgress(struct soap*, tt__ArrayOfFileProgress *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ArrayOfFileProgress(struct soap*, const char *, int, tt__ArrayOfFileProgress *const*, const char *); -SOAP_FMAC3 tt__ArrayOfFileProgress ** SOAP_FMAC4 soap_in_PointerTott__ArrayOfFileProgress(struct soap*, const char*, tt__ArrayOfFileProgress **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ArrayOfFileProgress(struct soap*, tt__ArrayOfFileProgress *const*, const char*, const char*); -SOAP_FMAC3 tt__ArrayOfFileProgress ** SOAP_FMAC4 soap_get_PointerTott__ArrayOfFileProgress(struct soap*, tt__ArrayOfFileProgress **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_trc__ExportRecordedDataResponse_Extension_DEFINED -#define SOAP_TYPE_PointerTo_trc__ExportRecordedDataResponse_Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_trc__ExportRecordedDataResponse_Extension(struct soap*, _trc__ExportRecordedDataResponse_Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_trc__ExportRecordedDataResponse_Extension(struct soap*, const char *, int, _trc__ExportRecordedDataResponse_Extension *const*, const char *); -SOAP_FMAC3 _trc__ExportRecordedDataResponse_Extension ** SOAP_FMAC4 soap_in_PointerTo_trc__ExportRecordedDataResponse_Extension(struct soap*, const char*, _trc__ExportRecordedDataResponse_Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_trc__ExportRecordedDataResponse_Extension(struct soap*, _trc__ExportRecordedDataResponse_Extension *const*, const char*, const char*); -SOAP_FMAC3 _trc__ExportRecordedDataResponse_Extension ** SOAP_FMAC4 soap_get_PointerTo_trc__ExportRecordedDataResponse_Extension(struct soap*, _trc__ExportRecordedDataResponse_Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__StorageReferencePath_DEFINED -#define SOAP_TYPE_PointerTott__StorageReferencePath_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__StorageReferencePath(struct soap*, tt__StorageReferencePath *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__StorageReferencePath(struct soap*, const char *, int, tt__StorageReferencePath *const*, const char *); -SOAP_FMAC3 tt__StorageReferencePath ** SOAP_FMAC4 soap_in_PointerTott__StorageReferencePath(struct soap*, const char*, tt__StorageReferencePath **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__StorageReferencePath(struct soap*, tt__StorageReferencePath *const*, const char*, const char*); -SOAP_FMAC3 tt__StorageReferencePath ** SOAP_FMAC4 soap_get_PointerTott__StorageReferencePath(struct soap*, tt__StorageReferencePath **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SearchScope_DEFINED -#define SOAP_TYPE_PointerTott__SearchScope_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SearchScope(struct soap*, tt__SearchScope *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SearchScope(struct soap*, const char *, int, tt__SearchScope *const*, const char *); -SOAP_FMAC3 tt__SearchScope ** SOAP_FMAC4 soap_in_PointerTott__SearchScope(struct soap*, const char*, tt__SearchScope **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SearchScope(struct soap*, tt__SearchScope *const*, const char*, const char*); -SOAP_FMAC3 tt__SearchScope ** SOAP_FMAC4 soap_get_PointerTott__SearchScope(struct soap*, tt__SearchScope **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrc__RecordingOptions_DEFINED -#define SOAP_TYPE_PointerTotrc__RecordingOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrc__RecordingOptions(struct soap*, trc__RecordingOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrc__RecordingOptions(struct soap*, const char *, int, trc__RecordingOptions *const*, const char *); -SOAP_FMAC3 trc__RecordingOptions ** SOAP_FMAC4 soap_in_PointerTotrc__RecordingOptions(struct soap*, const char*, trc__RecordingOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrc__RecordingOptions(struct soap*, trc__RecordingOptions *const*, const char*, const char*); -SOAP_FMAC3 trc__RecordingOptions ** SOAP_FMAC4 soap_get_PointerTotrc__RecordingOptions(struct soap*, trc__RecordingOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobStateInformation_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobStateInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobStateInformation(struct soap*, tt__RecordingJobStateInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobStateInformation(struct soap*, const char *, int, tt__RecordingJobStateInformation *const*, const char *); -SOAP_FMAC3 tt__RecordingJobStateInformation ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobStateInformation(struct soap*, const char*, tt__RecordingJobStateInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobStateInformation(struct soap*, tt__RecordingJobStateInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobStateInformation ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobStateInformation(struct soap*, tt__RecordingJobStateInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__GetRecordingJobsResponseItem_DEFINED -#define SOAP_TYPE_PointerTott__GetRecordingJobsResponseItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__GetRecordingJobsResponseItem(struct soap*, tt__GetRecordingJobsResponseItem *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__GetRecordingJobsResponseItem(struct soap*, const char *, int, tt__GetRecordingJobsResponseItem *const*, const char *); -SOAP_FMAC3 tt__GetRecordingJobsResponseItem ** SOAP_FMAC4 soap_in_PointerTott__GetRecordingJobsResponseItem(struct soap*, const char*, tt__GetRecordingJobsResponseItem **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__GetRecordingJobsResponseItem(struct soap*, tt__GetRecordingJobsResponseItem *const*, const char*, const char*); -SOAP_FMAC3 tt__GetRecordingJobsResponseItem ** SOAP_FMAC4 soap_get_PointerTott__GetRecordingJobsResponseItem(struct soap*, tt__GetRecordingJobsResponseItem **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__GetRecordingsResponseItem_DEFINED -#define SOAP_TYPE_PointerTott__GetRecordingsResponseItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__GetRecordingsResponseItem(struct soap*, tt__GetRecordingsResponseItem *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__GetRecordingsResponseItem(struct soap*, const char *, int, tt__GetRecordingsResponseItem *const*, const char *); -SOAP_FMAC3 tt__GetRecordingsResponseItem ** SOAP_FMAC4 soap_in_PointerTott__GetRecordingsResponseItem(struct soap*, const char*, tt__GetRecordingsResponseItem **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__GetRecordingsResponseItem(struct soap*, tt__GetRecordingsResponseItem *const*, const char*, const char*); -SOAP_FMAC3 tt__GetRecordingsResponseItem ** SOAP_FMAC4 soap_get_PointerTott__GetRecordingsResponseItem(struct soap*, tt__GetRecordingsResponseItem **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrc__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotrc__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrc__Capabilities(struct soap*, trc__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrc__Capabilities(struct soap*, const char *, int, trc__Capabilities *const*, const char *); -SOAP_FMAC3 trc__Capabilities ** SOAP_FMAC4 soap_in_PointerTotrc__Capabilities(struct soap*, const char*, trc__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrc__Capabilities(struct soap*, trc__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 trc__Capabilities ** SOAP_FMAC4 soap_get_PointerTotrc__Capabilities(struct soap*, trc__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrc__TrackOptions_DEFINED -#define SOAP_TYPE_PointerTotrc__TrackOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrc__TrackOptions(struct soap*, trc__TrackOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrc__TrackOptions(struct soap*, const char *, int, trc__TrackOptions *const*, const char *); -SOAP_FMAC3 trc__TrackOptions ** SOAP_FMAC4 soap_in_PointerTotrc__TrackOptions(struct soap*, const char*, trc__TrackOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrc__TrackOptions(struct soap*, trc__TrackOptions *const*, const char*, const char*); -SOAP_FMAC3 trc__TrackOptions ** SOAP_FMAC4 soap_get_PointerTotrc__TrackOptions(struct soap*, trc__TrackOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrc__JobOptions_DEFINED -#define SOAP_TYPE_PointerTotrc__JobOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrc__JobOptions(struct soap*, trc__JobOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrc__JobOptions(struct soap*, const char *, int, trc__JobOptions *const*, const char *); -SOAP_FMAC3 trc__JobOptions ** SOAP_FMAC4 soap_in_PointerTotrc__JobOptions(struct soap*, const char*, trc__JobOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrc__JobOptions(struct soap*, trc__JobOptions *const*, const char*, const char*); -SOAP_FMAC3 trc__JobOptions ** SOAP_FMAC4 soap_get_PointerTotrc__JobOptions(struct soap*, trc__JobOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrc__EncodingTypes_DEFINED -#define SOAP_TYPE_PointerTotrc__EncodingTypes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrc__EncodingTypes(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrc__EncodingTypes(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTotrc__EncodingTypes(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrc__EncodingTypes(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTotrc__EncodingTypes(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReceiverStateInformation_DEFINED -#define SOAP_TYPE_PointerTott__ReceiverStateInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReceiverStateInformation(struct soap*, tt__ReceiverStateInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReceiverStateInformation(struct soap*, const char *, int, tt__ReceiverStateInformation *const*, const char *); -SOAP_FMAC3 tt__ReceiverStateInformation ** SOAP_FMAC4 soap_in_PointerTott__ReceiverStateInformation(struct soap*, const char*, tt__ReceiverStateInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReceiverStateInformation(struct soap*, tt__ReceiverStateInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__ReceiverStateInformation ** SOAP_FMAC4 soap_get_PointerTott__ReceiverStateInformation(struct soap*, tt__ReceiverStateInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Receiver_DEFINED -#define SOAP_TYPE_PointerTott__Receiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Receiver(struct soap*, tt__Receiver *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Receiver(struct soap*, const char *, int, tt__Receiver *const*, const char *); -SOAP_FMAC3 tt__Receiver ** SOAP_FMAC4 soap_in_PointerTott__Receiver(struct soap*, const char*, tt__Receiver **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Receiver(struct soap*, tt__Receiver *const*, const char*, const char*); -SOAP_FMAC3 tt__Receiver ** SOAP_FMAC4 soap_get_PointerTott__Receiver(struct soap*, tt__Receiver **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrv__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotrv__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrv__Capabilities(struct soap*, trv__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrv__Capabilities(struct soap*, const char *, int, trv__Capabilities *const*, const char *); -SOAP_FMAC3 trv__Capabilities ** SOAP_FMAC4 soap_in_PointerTotrv__Capabilities(struct soap*, const char*, trv__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrv__Capabilities(struct soap*, trv__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 trv__Capabilities ** SOAP_FMAC4 soap_get_PointerTotrv__Capabilities(struct soap*, trv__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourOptions_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourOptions(struct soap*, tt__PTZPresetTourOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourOptions(struct soap*, const char *, int, tt__PTZPresetTourOptions *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourOptions ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourOptions(struct soap*, const char*, tt__PTZPresetTourOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourOptions(struct soap*, tt__PTZPresetTourOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourOptions ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourOptions(struct soap*, tt__PTZPresetTourOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PresetTour_DEFINED -#define SOAP_TYPE_PointerTott__PresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PresetTour(struct soap*, tt__PresetTour *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PresetTour(struct soap*, const char *, int, tt__PresetTour *const*, const char *); -SOAP_FMAC3 tt__PresetTour ** SOAP_FMAC4 soap_in_PointerTott__PresetTour(struct soap*, const char*, tt__PresetTour **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PresetTour(struct soap*, tt__PresetTour *const*, const char*, const char*); -SOAP_FMAC3 tt__PresetTour ** SOAP_FMAC4 soap_get_PointerTott__PresetTour(struct soap*, tt__PresetTour **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZStatus_DEFINED -#define SOAP_TYPE_PointerTott__PTZStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZStatus(struct soap*, tt__PTZStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZStatus(struct soap*, const char *, int, tt__PTZStatus *const*, const char *); -SOAP_FMAC3 tt__PTZStatus ** SOAP_FMAC4 soap_in_PointerTott__PTZStatus(struct soap*, const char*, tt__PTZStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZStatus(struct soap*, tt__PTZStatus *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZStatus ** SOAP_FMAC4 soap_get_PointerTott__PTZStatus(struct soap*, tt__PTZStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPreset_DEFINED -#define SOAP_TYPE_PointerTott__PTZPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPreset(struct soap*, tt__PTZPreset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPreset(struct soap*, const char *, int, tt__PTZPreset *const*, const char *); -SOAP_FMAC3 tt__PTZPreset ** SOAP_FMAC4 soap_in_PointerTott__PTZPreset(struct soap*, const char*, tt__PTZPreset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPreset(struct soap*, tt__PTZPreset *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPreset ** SOAP_FMAC4 soap_get_PointerTott__PTZPreset(struct soap*, tt__PTZPreset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__PTZConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZConfigurationOptions(struct soap*, tt__PTZConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZConfigurationOptions(struct soap*, const char *, int, tt__PTZConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__PTZConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__PTZConfigurationOptions(struct soap*, const char*, tt__PTZConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZConfigurationOptions(struct soap*, tt__PTZConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__PTZConfigurationOptions(struct soap*, tt__PTZConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__tptz__SetConfigurationResponse_sequence_DEFINED -#define SOAP_TYPE_PointerTo__tptz__SetConfigurationResponse_sequence_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__tptz__SetConfigurationResponse_sequence(struct soap*, struct __tptz__SetConfigurationResponse_sequence *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__tptz__SetConfigurationResponse_sequence(struct soap*, const char *, int, struct __tptz__SetConfigurationResponse_sequence *const*, const char *); -SOAP_FMAC3 struct __tptz__SetConfigurationResponse_sequence ** SOAP_FMAC4 soap_in_PointerTo__tptz__SetConfigurationResponse_sequence(struct soap*, const char*, struct __tptz__SetConfigurationResponse_sequence **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__tptz__SetConfigurationResponse_sequence(struct soap*, struct __tptz__SetConfigurationResponse_sequence *const*, const char*, const char*); -SOAP_FMAC3 struct __tptz__SetConfigurationResponse_sequence ** SOAP_FMAC4 soap_get_PointerTo__tptz__SetConfigurationResponse_sequence(struct soap*, struct __tptz__SetConfigurationResponse_sequence **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZNode_DEFINED -#define SOAP_TYPE_PointerTott__PTZNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZNode(struct soap*, tt__PTZNode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZNode(struct soap*, const char *, int, tt__PTZNode *const*, const char *); -SOAP_FMAC3 tt__PTZNode ** SOAP_FMAC4 soap_in_PointerTott__PTZNode(struct soap*, const char*, tt__PTZNode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZNode(struct soap*, tt__PTZNode *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZNode ** SOAP_FMAC4 soap_get_PointerTott__PTZNode(struct soap*, tt__PTZNode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotptz__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotptz__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotptz__Capabilities(struct soap*, tptz__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotptz__Capabilities(struct soap*, const char *, int, tptz__Capabilities *const*, const char *); -SOAP_FMAC3 tptz__Capabilities ** SOAP_FMAC4 soap_in_PointerTotptz__Capabilities(struct soap*, const char*, tptz__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotptz__Capabilities(struct soap*, tptz__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 tptz__Capabilities ** SOAP_FMAC4 soap_get_PointerTotptz__Capabilities(struct soap*, tptz__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__OSDConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDConfigurationOptions(struct soap*, tt__OSDConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDConfigurationOptions(struct soap*, const char *, int, tt__OSDConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__OSDConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__OSDConfigurationOptions(struct soap*, const char*, tt__OSDConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDConfigurationOptions(struct soap*, tt__OSDConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__OSDConfigurationOptions(struct soap*, tt__OSDConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__OSDConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDConfiguration(struct soap*, tt__OSDConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDConfiguration(struct soap*, const char *, int, tt__OSDConfiguration *const*, const char *); -SOAP_FMAC3 tt__OSDConfiguration ** SOAP_FMAC4 soap_in_PointerTott__OSDConfiguration(struct soap*, const char*, tt__OSDConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDConfiguration(struct soap*, tt__OSDConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDConfiguration ** SOAP_FMAC4 soap_get_PointerTott__OSDConfiguration(struct soap*, tt__OSDConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrt__VideoSourceMode_DEFINED -#define SOAP_TYPE_PointerTotrt__VideoSourceMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrt__VideoSourceMode(struct soap*, trt__VideoSourceMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrt__VideoSourceMode(struct soap*, const char *, int, trt__VideoSourceMode *const*, const char *); -SOAP_FMAC3 trt__VideoSourceMode ** SOAP_FMAC4 soap_in_PointerTotrt__VideoSourceMode(struct soap*, const char*, trt__VideoSourceMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrt__VideoSourceMode(struct soap*, trt__VideoSourceMode *const*, const char*, const char*); -SOAP_FMAC3 trt__VideoSourceMode ** SOAP_FMAC4 soap_get_PointerTotrt__VideoSourceMode(struct soap*, trt__VideoSourceMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MediaUri_DEFINED -#define SOAP_TYPE_PointerTott__MediaUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MediaUri(struct soap*, tt__MediaUri *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MediaUri(struct soap*, const char *, int, tt__MediaUri *const*, const char *); -SOAP_FMAC3 tt__MediaUri ** SOAP_FMAC4 soap_in_PointerTott__MediaUri(struct soap*, const char*, tt__MediaUri **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MediaUri(struct soap*, tt__MediaUri *const*, const char*, const char*); -SOAP_FMAC3 tt__MediaUri ** SOAP_FMAC4 soap_get_PointerTott__MediaUri(struct soap*, tt__MediaUri **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__MetadataConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataConfigurationOptions(struct soap*, tt__MetadataConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataConfigurationOptions(struct soap*, const char *, int, tt__MetadataConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__MetadataConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__MetadataConfigurationOptions(struct soap*, const char*, tt__MetadataConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataConfigurationOptions(struct soap*, tt__MetadataConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__MetadataConfigurationOptions(struct soap*, tt__MetadataConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__VideoEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoEncoderConfigurationOptions(struct soap*, tt__VideoEncoderConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoEncoderConfigurationOptions(struct soap*, const char *, int, tt__VideoEncoderConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__VideoEncoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__VideoEncoderConfigurationOptions(struct soap*, const char*, tt__VideoEncoderConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoEncoderConfigurationOptions(struct soap*, tt__VideoEncoderConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoEncoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__VideoEncoderConfigurationOptions(struct soap*, tt__VideoEncoderConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Profile_DEFINED -#define SOAP_TYPE_PointerTott__Profile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Profile(struct soap*, tt__Profile *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Profile(struct soap*, const char *, int, tt__Profile *const*, const char *); -SOAP_FMAC3 tt__Profile ** SOAP_FMAC4 soap_in_PointerTott__Profile(struct soap*, const char*, tt__Profile **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Profile(struct soap*, tt__Profile *const*, const char*, const char*); -SOAP_FMAC3 tt__Profile ** SOAP_FMAC4 soap_get_PointerTott__Profile(struct soap*, tt__Profile **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioOutput_DEFINED -#define SOAP_TYPE_PointerTott__AudioOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioOutput(struct soap*, tt__AudioOutput *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioOutput(struct soap*, const char *, int, tt__AudioOutput *const*, const char *); -SOAP_FMAC3 tt__AudioOutput ** SOAP_FMAC4 soap_in_PointerTott__AudioOutput(struct soap*, const char*, tt__AudioOutput **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioOutput(struct soap*, tt__AudioOutput *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioOutput ** SOAP_FMAC4 soap_get_PointerTott__AudioOutput(struct soap*, tt__AudioOutput **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioSource_DEFINED -#define SOAP_TYPE_PointerTott__AudioSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioSource(struct soap*, tt__AudioSource *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioSource(struct soap*, const char *, int, tt__AudioSource *const*, const char *); -SOAP_FMAC3 tt__AudioSource ** SOAP_FMAC4 soap_in_PointerTott__AudioSource(struct soap*, const char*, tt__AudioSource **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioSource(struct soap*, tt__AudioSource *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioSource ** SOAP_FMAC4 soap_get_PointerTott__AudioSource(struct soap*, tt__AudioSource **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSource_DEFINED -#define SOAP_TYPE_PointerTott__VideoSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSource(struct soap*, tt__VideoSource *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSource(struct soap*, const char *, int, tt__VideoSource *const*, const char *); -SOAP_FMAC3 tt__VideoSource ** SOAP_FMAC4 soap_in_PointerTott__VideoSource(struct soap*, const char*, tt__VideoSource **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSource(struct soap*, tt__VideoSource *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSource ** SOAP_FMAC4 soap_get_PointerTott__VideoSource(struct soap*, tt__VideoSource **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrt__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotrt__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrt__Capabilities(struct soap*, trt__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrt__Capabilities(struct soap*, const char *, int, trt__Capabilities *const*, const char *); -SOAP_FMAC3 trt__Capabilities ** SOAP_FMAC4 soap_in_PointerTotrt__Capabilities(struct soap*, const char*, trt__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrt__Capabilities(struct soap*, trt__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 trt__Capabilities ** SOAP_FMAC4 soap_get_PointerTotrt__Capabilities(struct soap*, trt__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrt__VideoSourceModeExtension_DEFINED -#define SOAP_TYPE_PointerTotrt__VideoSourceModeExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrt__VideoSourceModeExtension(struct soap*, trt__VideoSourceModeExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrt__VideoSourceModeExtension(struct soap*, const char *, int, trt__VideoSourceModeExtension *const*, const char *); -SOAP_FMAC3 trt__VideoSourceModeExtension ** SOAP_FMAC4 soap_in_PointerTotrt__VideoSourceModeExtension(struct soap*, const char*, trt__VideoSourceModeExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrt__VideoSourceModeExtension(struct soap*, trt__VideoSourceModeExtension *const*, const char*, const char*); -SOAP_FMAC3 trt__VideoSourceModeExtension ** SOAP_FMAC4 soap_get_PointerTotrt__VideoSourceModeExtension(struct soap*, trt__VideoSourceModeExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Description_DEFINED -#define SOAP_TYPE_PointerTott__Description_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Description(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Description(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__Description(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Description(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__Description(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrt__StreamingCapabilities_DEFINED -#define SOAP_TYPE_PointerTotrt__StreamingCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrt__StreamingCapabilities(struct soap*, trt__StreamingCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrt__StreamingCapabilities(struct soap*, const char *, int, trt__StreamingCapabilities *const*, const char *); -SOAP_FMAC3 trt__StreamingCapabilities ** SOAP_FMAC4 soap_in_PointerTotrt__StreamingCapabilities(struct soap*, const char*, trt__StreamingCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrt__StreamingCapabilities(struct soap*, trt__StreamingCapabilities *const*, const char*, const char*); -SOAP_FMAC3 trt__StreamingCapabilities ** SOAP_FMAC4 soap_get_PointerTotrt__StreamingCapabilities(struct soap*, trt__StreamingCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotrt__ProfileCapabilities_DEFINED -#define SOAP_TYPE_PointerTotrt__ProfileCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotrt__ProfileCapabilities(struct soap*, trt__ProfileCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotrt__ProfileCapabilities(struct soap*, const char *, int, trt__ProfileCapabilities *const*, const char *); -SOAP_FMAC3 trt__ProfileCapabilities ** SOAP_FMAC4 soap_in_PointerTotrt__ProfileCapabilities(struct soap*, const char*, trt__ProfileCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotrt__ProfileCapabilities(struct soap*, trt__ProfileCapabilities *const*, const char*, const char*); -SOAP_FMAC3 trt__ProfileCapabilities ** SOAP_FMAC4 soap_get_PointerTotrt__ProfileCapabilities(struct soap*, trt__ProfileCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotimg__ImagingPreset_DEFINED -#define SOAP_TYPE_PointerTotimg__ImagingPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotimg__ImagingPreset(struct soap*, timg__ImagingPreset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotimg__ImagingPreset(struct soap*, const char *, int, timg__ImagingPreset *const*, const char *); -SOAP_FMAC3 timg__ImagingPreset ** SOAP_FMAC4 soap_in_PointerTotimg__ImagingPreset(struct soap*, const char*, timg__ImagingPreset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotimg__ImagingPreset(struct soap*, timg__ImagingPreset *const*, const char*, const char*); -SOAP_FMAC3 timg__ImagingPreset ** SOAP_FMAC4 soap_get_PointerTotimg__ImagingPreset(struct soap*, timg__ImagingPreset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingStatus20_DEFINED -#define SOAP_TYPE_PointerTott__ImagingStatus20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingStatus20(struct soap*, tt__ImagingStatus20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingStatus20(struct soap*, const char *, int, tt__ImagingStatus20 *const*, const char *); -SOAP_FMAC3 tt__ImagingStatus20 ** SOAP_FMAC4 soap_in_PointerTott__ImagingStatus20(struct soap*, const char*, tt__ImagingStatus20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingStatus20(struct soap*, tt__ImagingStatus20 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingStatus20 ** SOAP_FMAC4 soap_get_PointerTott__ImagingStatus20(struct soap*, tt__ImagingStatus20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MoveOptions20_DEFINED -#define SOAP_TYPE_PointerTott__MoveOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MoveOptions20(struct soap*, tt__MoveOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MoveOptions20(struct soap*, const char *, int, tt__MoveOptions20 *const*, const char *); -SOAP_FMAC3 tt__MoveOptions20 ** SOAP_FMAC4 soap_in_PointerTott__MoveOptions20(struct soap*, const char*, tt__MoveOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MoveOptions20(struct soap*, tt__MoveOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__MoveOptions20 ** SOAP_FMAC4 soap_get_PointerTott__MoveOptions20(struct soap*, tt__MoveOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusMove_DEFINED -#define SOAP_TYPE_PointerTott__FocusMove_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusMove(struct soap*, tt__FocusMove *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusMove(struct soap*, const char *, int, tt__FocusMove *const*, const char *); -SOAP_FMAC3 tt__FocusMove ** SOAP_FMAC4 soap_in_PointerTott__FocusMove(struct soap*, const char*, tt__FocusMove **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusMove(struct soap*, tt__FocusMove *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusMove ** SOAP_FMAC4 soap_get_PointerTott__FocusMove(struct soap*, tt__FocusMove **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingOptions20_DEFINED -#define SOAP_TYPE_PointerTott__ImagingOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingOptions20(struct soap*, tt__ImagingOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingOptions20(struct soap*, const char *, int, tt__ImagingOptions20 *const*, const char *); -SOAP_FMAC3 tt__ImagingOptions20 ** SOAP_FMAC4 soap_in_PointerTott__ImagingOptions20(struct soap*, const char*, tt__ImagingOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingOptions20(struct soap*, tt__ImagingOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingOptions20 ** SOAP_FMAC4 soap_get_PointerTott__ImagingOptions20(struct soap*, tt__ImagingOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotimg__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotimg__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotimg__Capabilities(struct soap*, timg__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotimg__Capabilities(struct soap*, const char *, int, timg__Capabilities *const*, const char *); -SOAP_FMAC3 timg__Capabilities ** SOAP_FMAC4 soap_in_PointerTotimg__Capabilities(struct soap*, const char*, timg__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotimg__Capabilities(struct soap*, timg__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 timg__Capabilities ** SOAP_FMAC4 soap_get_PointerTotimg__Capabilities(struct soap*, timg__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PaneConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__PaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PaneConfiguration(struct soap*, tt__PaneConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PaneConfiguration(struct soap*, const char *, int, tt__PaneConfiguration *const*, const char *); -SOAP_FMAC3 tt__PaneConfiguration ** SOAP_FMAC4 soap_in_PointerTott__PaneConfiguration(struct soap*, const char*, tt__PaneConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PaneConfiguration(struct soap*, tt__PaneConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__PaneConfiguration ** SOAP_FMAC4 soap_get_PointerTott__PaneConfiguration(struct soap*, tt__PaneConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CodingCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__CodingCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CodingCapabilities(struct soap*, tt__CodingCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CodingCapabilities(struct soap*, const char *, int, tt__CodingCapabilities *const*, const char *); -SOAP_FMAC3 tt__CodingCapabilities ** SOAP_FMAC4 soap_in_PointerTott__CodingCapabilities(struct soap*, const char*, tt__CodingCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CodingCapabilities(struct soap*, tt__CodingCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__CodingCapabilities ** SOAP_FMAC4 soap_get_PointerTott__CodingCapabilities(struct soap*, tt__CodingCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LayoutOptions_DEFINED -#define SOAP_TYPE_PointerTott__LayoutOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LayoutOptions(struct soap*, tt__LayoutOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LayoutOptions(struct soap*, const char *, int, tt__LayoutOptions *const*, const char *); -SOAP_FMAC3 tt__LayoutOptions ** SOAP_FMAC4 soap_in_PointerTott__LayoutOptions(struct soap*, const char*, tt__LayoutOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LayoutOptions(struct soap*, tt__LayoutOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__LayoutOptions ** SOAP_FMAC4 soap_get_PointerTott__LayoutOptions(struct soap*, tt__LayoutOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Layout_DEFINED -#define SOAP_TYPE_PointerTott__Layout_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Layout(struct soap*, tt__Layout *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Layout(struct soap*, const char *, int, tt__Layout *const*, const char *); -SOAP_FMAC3 tt__Layout ** SOAP_FMAC4 soap_in_PointerTott__Layout(struct soap*, const char*, tt__Layout **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Layout(struct soap*, tt__Layout *const*, const char*, const char*); -SOAP_FMAC3 tt__Layout ** SOAP_FMAC4 soap_get_PointerTott__Layout(struct soap*, tt__Layout **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotls__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotls__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotls__Capabilities(struct soap*, tls__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotls__Capabilities(struct soap*, const char *, int, tls__Capabilities *const*, const char *); -SOAP_FMAC3 tls__Capabilities ** SOAP_FMAC4 soap_in_PointerTotls__Capabilities(struct soap*, const char*, tls__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotls__Capabilities(struct soap*, tls__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 tls__Capabilities ** SOAP_FMAC4 soap_get_PointerTotls__Capabilities(struct soap*, tls__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LocationEntity_DEFINED -#define SOAP_TYPE_PointerTott__LocationEntity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LocationEntity(struct soap*, tt__LocationEntity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LocationEntity(struct soap*, const char *, int, tt__LocationEntity *const*, const char *); -SOAP_FMAC3 tt__LocationEntity ** SOAP_FMAC4 soap_in_PointerTott__LocationEntity(struct soap*, const char*, tt__LocationEntity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LocationEntity(struct soap*, tt__LocationEntity *const*, const char*, const char*); -SOAP_FMAC3 tt__LocationEntity ** SOAP_FMAC4 soap_get_PointerTott__LocationEntity(struct soap*, tt__LocationEntity **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__StorageConfigurationData_DEFINED -#define SOAP_TYPE_PointerTotds__StorageConfigurationData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__StorageConfigurationData(struct soap*, tds__StorageConfigurationData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__StorageConfigurationData(struct soap*, const char *, int, tds__StorageConfigurationData *const*, const char *); -SOAP_FMAC3 tds__StorageConfigurationData ** SOAP_FMAC4 soap_in_PointerTotds__StorageConfigurationData(struct soap*, const char*, tds__StorageConfigurationData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__StorageConfigurationData(struct soap*, tds__StorageConfigurationData *const*, const char*, const char*); -SOAP_FMAC3 tds__StorageConfigurationData ** SOAP_FMAC4 soap_get_PointerTotds__StorageConfigurationData(struct soap*, tds__StorageConfigurationData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__StorageConfiguration_DEFINED -#define SOAP_TYPE_PointerTotds__StorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__StorageConfiguration(struct soap*, tds__StorageConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__StorageConfiguration(struct soap*, const char *, int, tds__StorageConfiguration *const*, const char *); -SOAP_FMAC3 tds__StorageConfiguration ** SOAP_FMAC4 soap_in_PointerTotds__StorageConfiguration(struct soap*, const char*, tds__StorageConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__StorageConfiguration(struct soap*, tds__StorageConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tds__StorageConfiguration ** SOAP_FMAC4 soap_get_PointerTotds__StorageConfiguration(struct soap*, tds__StorageConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__GetSystemUrisResponse_Extension_DEFINED -#define SOAP_TYPE_PointerTo_tds__GetSystemUrisResponse_Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__GetSystemUrisResponse_Extension(struct soap*, _tds__GetSystemUrisResponse_Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__GetSystemUrisResponse_Extension(struct soap*, const char *, int, _tds__GetSystemUrisResponse_Extension *const*, const char *); -SOAP_FMAC3 _tds__GetSystemUrisResponse_Extension ** SOAP_FMAC4 soap_in_PointerTo_tds__GetSystemUrisResponse_Extension(struct soap*, const char*, _tds__GetSystemUrisResponse_Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__GetSystemUrisResponse_Extension(struct soap*, _tds__GetSystemUrisResponse_Extension *const*, const char*, const char*); -SOAP_FMAC3 _tds__GetSystemUrisResponse_Extension ** SOAP_FMAC4 soap_get_PointerTo_tds__GetSystemUrisResponse_Extension(struct soap*, _tds__GetSystemUrisResponse_Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemLogUriList_DEFINED -#define SOAP_TYPE_PointerTott__SystemLogUriList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemLogUriList(struct soap*, tt__SystemLogUriList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemLogUriList(struct soap*, const char *, int, tt__SystemLogUriList *const*, const char *); -SOAP_FMAC3 tt__SystemLogUriList ** SOAP_FMAC4 soap_in_PointerTott__SystemLogUriList(struct soap*, const char*, tt__SystemLogUriList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemLogUriList(struct soap*, tt__SystemLogUriList *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemLogUriList ** SOAP_FMAC4 soap_get_PointerTott__SystemLogUriList(struct soap*, tt__SystemLogUriList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11AvailableNetworks_DEFINED -#define SOAP_TYPE_PointerTott__Dot11AvailableNetworks_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11AvailableNetworks(struct soap*, tt__Dot11AvailableNetworks *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11AvailableNetworks(struct soap*, const char *, int, tt__Dot11AvailableNetworks *const*, const char *); -SOAP_FMAC3 tt__Dot11AvailableNetworks ** SOAP_FMAC4 soap_in_PointerTott__Dot11AvailableNetworks(struct soap*, const char*, tt__Dot11AvailableNetworks **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11AvailableNetworks(struct soap*, tt__Dot11AvailableNetworks *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11AvailableNetworks ** SOAP_FMAC4 soap_get_PointerTott__Dot11AvailableNetworks(struct soap*, tt__Dot11AvailableNetworks **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11Status_DEFINED -#define SOAP_TYPE_PointerTott__Dot11Status_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11Status(struct soap*, tt__Dot11Status *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11Status(struct soap*, const char *, int, tt__Dot11Status *const*, const char *); -SOAP_FMAC3 tt__Dot11Status ** SOAP_FMAC4 soap_in_PointerTott__Dot11Status(struct soap*, const char*, tt__Dot11Status **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11Status(struct soap*, tt__Dot11Status *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11Status ** SOAP_FMAC4 soap_get_PointerTott__Dot11Status(struct soap*, tt__Dot11Status **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11Capabilities_DEFINED -#define SOAP_TYPE_PointerTott__Dot11Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11Capabilities(struct soap*, tt__Dot11Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11Capabilities(struct soap*, const char *, int, tt__Dot11Capabilities *const*, const char *); -SOAP_FMAC3 tt__Dot11Capabilities ** SOAP_FMAC4 soap_in_PointerTott__Dot11Capabilities(struct soap*, const char*, tt__Dot11Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11Capabilities(struct soap*, tt__Dot11Capabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11Capabilities ** SOAP_FMAC4 soap_get_PointerTott__Dot11Capabilities(struct soap*, tt__Dot11Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AuxiliaryData_DEFINED -#define SOAP_TYPE_PointerTott__AuxiliaryData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AuxiliaryData(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AuxiliaryData(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__AuxiliaryData(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AuxiliaryData(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__AuxiliaryData(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RelayOutputSettings_DEFINED -#define SOAP_TYPE_PointerTott__RelayOutputSettings_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RelayOutputSettings(struct soap*, tt__RelayOutputSettings *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RelayOutputSettings(struct soap*, const char *, int, tt__RelayOutputSettings *const*, const char *); -SOAP_FMAC3 tt__RelayOutputSettings ** SOAP_FMAC4 soap_in_PointerTott__RelayOutputSettings(struct soap*, const char*, tt__RelayOutputSettings **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RelayOutputSettings(struct soap*, tt__RelayOutputSettings *const*, const char*, const char*); -SOAP_FMAC3 tt__RelayOutputSettings ** SOAP_FMAC4 soap_get_PointerTott__RelayOutputSettings(struct soap*, tt__RelayOutputSettings **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot1XConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__Dot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot1XConfiguration(struct soap*, tt__Dot1XConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot1XConfiguration(struct soap*, const char *, int, tt__Dot1XConfiguration *const*, const char *); -SOAP_FMAC3 tt__Dot1XConfiguration ** SOAP_FMAC4 soap_in_PointerTott__Dot1XConfiguration(struct soap*, const char*, tt__Dot1XConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot1XConfiguration(struct soap*, tt__Dot1XConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot1XConfiguration ** SOAP_FMAC4 soap_get_PointerTott__Dot1XConfiguration(struct soap*, tt__Dot1XConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CertificateInformation_DEFINED -#define SOAP_TYPE_PointerTott__CertificateInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CertificateInformation(struct soap*, tt__CertificateInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CertificateInformation(struct soap*, const char *, int, tt__CertificateInformation *const*, const char *); -SOAP_FMAC3 tt__CertificateInformation ** SOAP_FMAC4 soap_in_PointerTott__CertificateInformation(struct soap*, const char*, tt__CertificateInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CertificateInformation(struct soap*, tt__CertificateInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__CertificateInformation ** SOAP_FMAC4 soap_get_PointerTott__CertificateInformation(struct soap*, tt__CertificateInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CertificateWithPrivateKey_DEFINED -#define SOAP_TYPE_PointerTott__CertificateWithPrivateKey_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CertificateWithPrivateKey(struct soap*, tt__CertificateWithPrivateKey *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CertificateWithPrivateKey(struct soap*, const char *, int, tt__CertificateWithPrivateKey *const*, const char *); -SOAP_FMAC3 tt__CertificateWithPrivateKey ** SOAP_FMAC4 soap_in_PointerTott__CertificateWithPrivateKey(struct soap*, const char*, tt__CertificateWithPrivateKey **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CertificateWithPrivateKey(struct soap*, tt__CertificateWithPrivateKey *const*, const char*, const char*); -SOAP_FMAC3 tt__CertificateWithPrivateKey ** SOAP_FMAC4 soap_get_PointerTott__CertificateWithPrivateKey(struct soap*, tt__CertificateWithPrivateKey **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CertificateStatus_DEFINED -#define SOAP_TYPE_PointerTott__CertificateStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CertificateStatus(struct soap*, tt__CertificateStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CertificateStatus(struct soap*, const char *, int, tt__CertificateStatus *const*, const char *); -SOAP_FMAC3 tt__CertificateStatus ** SOAP_FMAC4 soap_in_PointerTott__CertificateStatus(struct soap*, const char*, tt__CertificateStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CertificateStatus(struct soap*, tt__CertificateStatus *const*, const char*, const char*); -SOAP_FMAC3 tt__CertificateStatus ** SOAP_FMAC4 soap_get_PointerTott__CertificateStatus(struct soap*, tt__CertificateStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Certificate_DEFINED -#define SOAP_TYPE_PointerTott__Certificate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Certificate(struct soap*, tt__Certificate *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Certificate(struct soap*, const char *, int, tt__Certificate *const*, const char *); -SOAP_FMAC3 tt__Certificate ** SOAP_FMAC4 soap_in_PointerTott__Certificate(struct soap*, const char*, tt__Certificate **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Certificate(struct soap*, tt__Certificate *const*, const char*, const char*); -SOAP_FMAC3 tt__Certificate ** SOAP_FMAC4 soap_get_PointerTott__Certificate(struct soap*, tt__Certificate **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPAddressFilter_DEFINED -#define SOAP_TYPE_PointerTott__IPAddressFilter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPAddressFilter(struct soap*, tt__IPAddressFilter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPAddressFilter(struct soap*, const char *, int, tt__IPAddressFilter *const*, const char *); -SOAP_FMAC3 tt__IPAddressFilter ** SOAP_FMAC4 soap_in_PointerTott__IPAddressFilter(struct soap*, const char*, tt__IPAddressFilter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPAddressFilter(struct soap*, tt__IPAddressFilter *const*, const char*, const char*); -SOAP_FMAC3 tt__IPAddressFilter ** SOAP_FMAC4 soap_get_PointerTott__IPAddressFilter(struct soap*, tt__IPAddressFilter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkGateway_DEFINED -#define SOAP_TYPE_PointerTott__NetworkGateway_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkGateway(struct soap*, tt__NetworkGateway *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkGateway(struct soap*, const char *, int, tt__NetworkGateway *const*, const char *); -SOAP_FMAC3 tt__NetworkGateway ** SOAP_FMAC4 soap_in_PointerTott__NetworkGateway(struct soap*, const char*, tt__NetworkGateway **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkGateway(struct soap*, tt__NetworkGateway *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkGateway ** SOAP_FMAC4 soap_get_PointerTott__NetworkGateway(struct soap*, tt__NetworkGateway **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkProtocol_DEFINED -#define SOAP_TYPE_PointerTott__NetworkProtocol_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkProtocol(struct soap*, tt__NetworkProtocol *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkProtocol(struct soap*, const char *, int, tt__NetworkProtocol *const*, const char *); -SOAP_FMAC3 tt__NetworkProtocol ** SOAP_FMAC4 soap_in_PointerTott__NetworkProtocol(struct soap*, const char*, tt__NetworkProtocol **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkProtocol(struct soap*, tt__NetworkProtocol *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkProtocol ** SOAP_FMAC4 soap_get_PointerTott__NetworkProtocol(struct soap*, tt__NetworkProtocol **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceSetConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceSetConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceSetConfiguration(struct soap*, tt__NetworkInterfaceSetConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceSetConfiguration(struct soap*, const char *, int, tt__NetworkInterfaceSetConfiguration *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceSetConfiguration ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceSetConfiguration(struct soap*, const char*, tt__NetworkInterfaceSetConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceSetConfiguration(struct soap*, tt__NetworkInterfaceSetConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceSetConfiguration ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceSetConfiguration(struct soap*, tt__NetworkInterfaceSetConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterface_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterface_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterface(struct soap*, tt__NetworkInterface *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterface(struct soap*, const char *, int, tt__NetworkInterface *const*, const char *); -SOAP_FMAC3 tt__NetworkInterface ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterface(struct soap*, const char*, tt__NetworkInterface **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterface(struct soap*, tt__NetworkInterface *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterface ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterface(struct soap*, tt__NetworkInterface **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DynamicDNSInformation_DEFINED -#define SOAP_TYPE_PointerTott__DynamicDNSInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DynamicDNSInformation(struct soap*, tt__DynamicDNSInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DynamicDNSInformation(struct soap*, const char *, int, tt__DynamicDNSInformation *const*, const char *); -SOAP_FMAC3 tt__DynamicDNSInformation ** SOAP_FMAC4 soap_in_PointerTott__DynamicDNSInformation(struct soap*, const char*, tt__DynamicDNSInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DynamicDNSInformation(struct soap*, tt__DynamicDNSInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__DynamicDNSInformation ** SOAP_FMAC4 soap_get_PointerTott__DynamicDNSInformation(struct soap*, tt__DynamicDNSInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NTPInformation_DEFINED -#define SOAP_TYPE_PointerTott__NTPInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NTPInformation(struct soap*, tt__NTPInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NTPInformation(struct soap*, const char *, int, tt__NTPInformation *const*, const char *); -SOAP_FMAC3 tt__NTPInformation ** SOAP_FMAC4 soap_in_PointerTott__NTPInformation(struct soap*, const char*, tt__NTPInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NTPInformation(struct soap*, tt__NTPInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__NTPInformation ** SOAP_FMAC4 soap_get_PointerTott__NTPInformation(struct soap*, tt__NTPInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DNSInformation_DEFINED -#define SOAP_TYPE_PointerTott__DNSInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DNSInformation(struct soap*, tt__DNSInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DNSInformation(struct soap*, const char *, int, tt__DNSInformation *const*, const char *); -SOAP_FMAC3 tt__DNSInformation ** SOAP_FMAC4 soap_in_PointerTott__DNSInformation(struct soap*, const char*, tt__DNSInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DNSInformation(struct soap*, tt__DNSInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__DNSInformation ** SOAP_FMAC4 soap_get_PointerTott__DNSInformation(struct soap*, tt__DNSInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__HostnameInformation_DEFINED -#define SOAP_TYPE_PointerTott__HostnameInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__HostnameInformation(struct soap*, tt__HostnameInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__HostnameInformation(struct soap*, const char *, int, tt__HostnameInformation *const*, const char *); -SOAP_FMAC3 tt__HostnameInformation ** SOAP_FMAC4 soap_in_PointerTott__HostnameInformation(struct soap*, const char*, tt__HostnameInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__HostnameInformation(struct soap*, tt__HostnameInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__HostnameInformation ** SOAP_FMAC4 soap_get_PointerTott__HostnameInformation(struct soap*, tt__HostnameInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Capabilities_DEFINED -#define SOAP_TYPE_PointerTott__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Capabilities(struct soap*, tt__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Capabilities(struct soap*, const char *, int, tt__Capabilities *const*, const char *); -SOAP_FMAC3 tt__Capabilities ** SOAP_FMAC4 soap_in_PointerTott__Capabilities(struct soap*, const char*, tt__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Capabilities(struct soap*, tt__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__Capabilities ** SOAP_FMAC4 soap_get_PointerTott__Capabilities(struct soap*, tt__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__User_DEFINED -#define SOAP_TYPE_PointerTott__User_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__User(struct soap*, tt__User *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__User(struct soap*, const char *, int, tt__User *const*, const char *); -SOAP_FMAC3 tt__User ** SOAP_FMAC4 soap_in_PointerTott__User(struct soap*, const char*, tt__User **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__User(struct soap*, tt__User *const*, const char*, const char*); -SOAP_FMAC3 tt__User ** SOAP_FMAC4 soap_get_PointerTott__User(struct soap*, tt__User **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RemoteUser_DEFINED -#define SOAP_TYPE_PointerTott__RemoteUser_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RemoteUser(struct soap*, tt__RemoteUser *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RemoteUser(struct soap*, const char *, int, tt__RemoteUser *const*, const char *); -SOAP_FMAC3 tt__RemoteUser ** SOAP_FMAC4 soap_in_PointerTott__RemoteUser(struct soap*, const char*, tt__RemoteUser **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RemoteUser(struct soap*, tt__RemoteUser *const*, const char*, const char*); -SOAP_FMAC3 tt__RemoteUser ** SOAP_FMAC4 soap_get_PointerTott__RemoteUser(struct soap*, tt__RemoteUser **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Scope_DEFINED -#define SOAP_TYPE_PointerTott__Scope_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Scope(struct soap*, tt__Scope *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Scope(struct soap*, const char *, int, tt__Scope *const*, const char *); -SOAP_FMAC3 tt__Scope ** SOAP_FMAC4 soap_in_PointerTott__Scope(struct soap*, const char*, tt__Scope **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Scope(struct soap*, tt__Scope *const*, const char*, const char*); -SOAP_FMAC3 tt__Scope ** SOAP_FMAC4 soap_get_PointerTott__Scope(struct soap*, tt__Scope **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemLog_DEFINED -#define SOAP_TYPE_PointerTott__SystemLog_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemLog(struct soap*, tt__SystemLog *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemLog(struct soap*, const char *, int, tt__SystemLog *const*, const char *); -SOAP_FMAC3 tt__SystemLog ** SOAP_FMAC4 soap_in_PointerTott__SystemLog(struct soap*, const char*, tt__SystemLog **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemLog(struct soap*, tt__SystemLog *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemLog ** SOAP_FMAC4 soap_get_PointerTott__SystemLog(struct soap*, tt__SystemLog **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SupportInformation_DEFINED -#define SOAP_TYPE_PointerTott__SupportInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SupportInformation(struct soap*, tt__SupportInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SupportInformation(struct soap*, const char *, int, tt__SupportInformation *const*, const char *); -SOAP_FMAC3 tt__SupportInformation ** SOAP_FMAC4 soap_in_PointerTott__SupportInformation(struct soap*, const char*, tt__SupportInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SupportInformation(struct soap*, tt__SupportInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__SupportInformation ** SOAP_FMAC4 soap_get_PointerTott__SupportInformation(struct soap*, tt__SupportInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__BackupFile_DEFINED -#define SOAP_TYPE_PointerTott__BackupFile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__BackupFile(struct soap*, tt__BackupFile *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__BackupFile(struct soap*, const char *, int, tt__BackupFile *const*, const char *); -SOAP_FMAC3 tt__BackupFile ** SOAP_FMAC4 soap_in_PointerTott__BackupFile(struct soap*, const char*, tt__BackupFile **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__BackupFile(struct soap*, tt__BackupFile *const*, const char*, const char*); -SOAP_FMAC3 tt__BackupFile ** SOAP_FMAC4 soap_get_PointerTott__BackupFile(struct soap*, tt__BackupFile **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemDateTime_DEFINED -#define SOAP_TYPE_PointerTott__SystemDateTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemDateTime(struct soap*, tt__SystemDateTime *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemDateTime(struct soap*, const char *, int, tt__SystemDateTime *const*, const char *); -SOAP_FMAC3 tt__SystemDateTime ** SOAP_FMAC4 soap_in_PointerTott__SystemDateTime(struct soap*, const char*, tt__SystemDateTime **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemDateTime(struct soap*, tt__SystemDateTime *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemDateTime ** SOAP_FMAC4 soap_get_PointerTott__SystemDateTime(struct soap*, tt__SystemDateTime **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__DeviceServiceCapabilities_DEFINED -#define SOAP_TYPE_PointerTotds__DeviceServiceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__DeviceServiceCapabilities(struct soap*, tds__DeviceServiceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__DeviceServiceCapabilities(struct soap*, const char *, int, tds__DeviceServiceCapabilities *const*, const char *); -SOAP_FMAC3 tds__DeviceServiceCapabilities ** SOAP_FMAC4 soap_in_PointerTotds__DeviceServiceCapabilities(struct soap*, const char*, tds__DeviceServiceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__DeviceServiceCapabilities(struct soap*, tds__DeviceServiceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tds__DeviceServiceCapabilities ** SOAP_FMAC4 soap_get_PointerTotds__DeviceServiceCapabilities(struct soap*, tds__DeviceServiceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__Service_DEFINED -#define SOAP_TYPE_PointerTotds__Service_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__Service(struct soap*, tds__Service *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__Service(struct soap*, const char *, int, tds__Service *const*, const char *); -SOAP_FMAC3 tds__Service ** SOAP_FMAC4 soap_in_PointerTotds__Service(struct soap*, const char*, tds__Service **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__Service(struct soap*, tds__Service *const*, const char*, const char*); -SOAP_FMAC3 tds__Service ** SOAP_FMAC4 soap_get_PointerTotds__Service(struct soap*, tds__Service **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__StorageConfigurationData_Extension_DEFINED -#define SOAP_TYPE_PointerTo_tds__StorageConfigurationData_Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__StorageConfigurationData_Extension(struct soap*, _tds__StorageConfigurationData_Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__StorageConfigurationData_Extension(struct soap*, const char *, int, _tds__StorageConfigurationData_Extension *const*, const char *); -SOAP_FMAC3 _tds__StorageConfigurationData_Extension ** SOAP_FMAC4 soap_in_PointerTo_tds__StorageConfigurationData_Extension(struct soap*, const char*, _tds__StorageConfigurationData_Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__StorageConfigurationData_Extension(struct soap*, _tds__StorageConfigurationData_Extension *const*, const char*, const char*); -SOAP_FMAC3 _tds__StorageConfigurationData_Extension ** SOAP_FMAC4 soap_get_PointerTo_tds__StorageConfigurationData_Extension(struct soap*, _tds__StorageConfigurationData_Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__UserCredential_DEFINED -#define SOAP_TYPE_PointerTotds__UserCredential_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__UserCredential(struct soap*, tds__UserCredential *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__UserCredential(struct soap*, const char *, int, tds__UserCredential *const*, const char *); -SOAP_FMAC3 tds__UserCredential ** SOAP_FMAC4 soap_in_PointerTotds__UserCredential(struct soap*, const char*, tds__UserCredential **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__UserCredential(struct soap*, tds__UserCredential *const*, const char*, const char*); -SOAP_FMAC3 tds__UserCredential ** SOAP_FMAC4 soap_get_PointerTotds__UserCredential(struct soap*, tds__UserCredential **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__UserCredential_Extension_DEFINED -#define SOAP_TYPE_PointerTo_tds__UserCredential_Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__UserCredential_Extension(struct soap*, _tds__UserCredential_Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__UserCredential_Extension(struct soap*, const char *, int, _tds__UserCredential_Extension *const*, const char *); -SOAP_FMAC3 _tds__UserCredential_Extension ** SOAP_FMAC4 soap_in_PointerTo_tds__UserCredential_Extension(struct soap*, const char*, _tds__UserCredential_Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__UserCredential_Extension(struct soap*, _tds__UserCredential_Extension *const*, const char*, const char*); -SOAP_FMAC3 _tds__UserCredential_Extension ** SOAP_FMAC4 soap_get_PointerTo_tds__UserCredential_Extension(struct soap*, _tds__UserCredential_Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__EAPMethodTypes_DEFINED -#define SOAP_TYPE_PointerTotds__EAPMethodTypes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__EAPMethodTypes(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__EAPMethodTypes(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTotds__EAPMethodTypes(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__EAPMethodTypes(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTotds__EAPMethodTypes(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__MiscCapabilities_DEFINED -#define SOAP_TYPE_PointerTotds__MiscCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__MiscCapabilities(struct soap*, tds__MiscCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__MiscCapabilities(struct soap*, const char *, int, tds__MiscCapabilities *const*, const char *); -SOAP_FMAC3 tds__MiscCapabilities ** SOAP_FMAC4 soap_in_PointerTotds__MiscCapabilities(struct soap*, const char*, tds__MiscCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__MiscCapabilities(struct soap*, tds__MiscCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tds__MiscCapabilities ** SOAP_FMAC4 soap_get_PointerTotds__MiscCapabilities(struct soap*, tds__MiscCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__SystemCapabilities_DEFINED -#define SOAP_TYPE_PointerTotds__SystemCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__SystemCapabilities(struct soap*, tds__SystemCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__SystemCapabilities(struct soap*, const char *, int, tds__SystemCapabilities *const*, const char *); -SOAP_FMAC3 tds__SystemCapabilities ** SOAP_FMAC4 soap_in_PointerTotds__SystemCapabilities(struct soap*, const char*, tds__SystemCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__SystemCapabilities(struct soap*, tds__SystemCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tds__SystemCapabilities ** SOAP_FMAC4 soap_get_PointerTotds__SystemCapabilities(struct soap*, tds__SystemCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__SecurityCapabilities_DEFINED -#define SOAP_TYPE_PointerTotds__SecurityCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__SecurityCapabilities(struct soap*, tds__SecurityCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__SecurityCapabilities(struct soap*, const char *, int, tds__SecurityCapabilities *const*, const char *); -SOAP_FMAC3 tds__SecurityCapabilities ** SOAP_FMAC4 soap_in_PointerTotds__SecurityCapabilities(struct soap*, const char*, tds__SecurityCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__SecurityCapabilities(struct soap*, tds__SecurityCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tds__SecurityCapabilities ** SOAP_FMAC4 soap_get_PointerTotds__SecurityCapabilities(struct soap*, tds__SecurityCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotds__NetworkCapabilities_DEFINED -#define SOAP_TYPE_PointerTotds__NetworkCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotds__NetworkCapabilities(struct soap*, tds__NetworkCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotds__NetworkCapabilities(struct soap*, const char *, int, tds__NetworkCapabilities *const*, const char *); -SOAP_FMAC3 tds__NetworkCapabilities ** SOAP_FMAC4 soap_in_PointerTotds__NetworkCapabilities(struct soap*, const char*, tds__NetworkCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotds__NetworkCapabilities(struct soap*, tds__NetworkCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tds__NetworkCapabilities ** SOAP_FMAC4 soap_get_PointerTotds__NetworkCapabilities(struct soap*, tds__NetworkCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tds__Service_Capabilities_DEFINED -#define SOAP_TYPE_PointerTo_tds__Service_Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tds__Service_Capabilities(struct soap*, _tds__Service_Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tds__Service_Capabilities(struct soap*, const char *, int, _tds__Service_Capabilities *const*, const char *); -SOAP_FMAC3 _tds__Service_Capabilities ** SOAP_FMAC4 soap_in_PointerTo_tds__Service_Capabilities(struct soap*, const char*, _tds__Service_Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tds__Service_Capabilities(struct soap*, _tds__Service_Capabilities *const*, const char*, const char*); -SOAP_FMAC3 _tds__Service_Capabilities ** SOAP_FMAC4 soap_get_PointerTo_tds__Service_Capabilities(struct soap*, _tds__Service_Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__SerialData_DEFINED -#define SOAP_TYPE_PointerTotmd__SerialData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__SerialData(struct soap*, tmd__SerialData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__SerialData(struct soap*, const char *, int, tmd__SerialData *const*, const char *); -SOAP_FMAC3 tmd__SerialData ** SOAP_FMAC4 soap_in_PointerTotmd__SerialData(struct soap*, const char*, tmd__SerialData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__SerialData(struct soap*, tmd__SerialData *const*, const char*, const char*); -SOAP_FMAC3 tmd__SerialData ** SOAP_FMAC4 soap_get_PointerTotmd__SerialData(struct soap*, tmd__SerialData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__SerialPortConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTotmd__SerialPortConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__SerialPortConfigurationOptions(struct soap*, tmd__SerialPortConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__SerialPortConfigurationOptions(struct soap*, const char *, int, tmd__SerialPortConfigurationOptions *const*, const char *); -SOAP_FMAC3 tmd__SerialPortConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTotmd__SerialPortConfigurationOptions(struct soap*, const char*, tmd__SerialPortConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__SerialPortConfigurationOptions(struct soap*, tmd__SerialPortConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tmd__SerialPortConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTotmd__SerialPortConfigurationOptions(struct soap*, tmd__SerialPortConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__SerialPortConfiguration_DEFINED -#define SOAP_TYPE_PointerTotmd__SerialPortConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__SerialPortConfiguration(struct soap*, tmd__SerialPortConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__SerialPortConfiguration(struct soap*, const char *, int, tmd__SerialPortConfiguration *const*, const char *); -SOAP_FMAC3 tmd__SerialPortConfiguration ** SOAP_FMAC4 soap_in_PointerTotmd__SerialPortConfiguration(struct soap*, const char*, tmd__SerialPortConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__SerialPortConfiguration(struct soap*, tmd__SerialPortConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tmd__SerialPortConfiguration ** SOAP_FMAC4 soap_get_PointerTotmd__SerialPortConfiguration(struct soap*, tmd__SerialPortConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__SerialPort_DEFINED -#define SOAP_TYPE_PointerTotmd__SerialPort_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__SerialPort(struct soap*, tmd__SerialPort *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__SerialPort(struct soap*, const char *, int, tmd__SerialPort *const*, const char *); -SOAP_FMAC3 tmd__SerialPort ** SOAP_FMAC4 soap_in_PointerTotmd__SerialPort(struct soap*, const char*, tmd__SerialPort **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__SerialPort(struct soap*, tmd__SerialPort *const*, const char*, const char*); -SOAP_FMAC3 tmd__SerialPort ** SOAP_FMAC4 soap_get_PointerTotmd__SerialPort(struct soap*, tmd__SerialPort **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__DigitalInputConfigurationInputOptions_DEFINED -#define SOAP_TYPE_PointerTotmd__DigitalInputConfigurationInputOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__DigitalInputConfigurationInputOptions(struct soap*, tmd__DigitalInputConfigurationInputOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__DigitalInputConfigurationInputOptions(struct soap*, const char *, int, tmd__DigitalInputConfigurationInputOptions *const*, const char *); -SOAP_FMAC3 tmd__DigitalInputConfigurationInputOptions ** SOAP_FMAC4 soap_in_PointerTotmd__DigitalInputConfigurationInputOptions(struct soap*, const char*, tmd__DigitalInputConfigurationInputOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__DigitalInputConfigurationInputOptions(struct soap*, tmd__DigitalInputConfigurationInputOptions *const*, const char*, const char*); -SOAP_FMAC3 tmd__DigitalInputConfigurationInputOptions ** SOAP_FMAC4 soap_get_PointerTotmd__DigitalInputConfigurationInputOptions(struct soap*, tmd__DigitalInputConfigurationInputOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DigitalInput_DEFINED -#define SOAP_TYPE_PointerTott__DigitalInput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DigitalInput(struct soap*, tt__DigitalInput *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DigitalInput(struct soap*, const char *, int, tt__DigitalInput *const*, const char *); -SOAP_FMAC3 tt__DigitalInput ** SOAP_FMAC4 soap_in_PointerTott__DigitalInput(struct soap*, const char*, tt__DigitalInput **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DigitalInput(struct soap*, tt__DigitalInput *const*, const char*, const char*); -SOAP_FMAC3 tt__DigitalInput ** SOAP_FMAC4 soap_get_PointerTott__DigitalInput(struct soap*, tt__DigitalInput **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RelayOutput_DEFINED -#define SOAP_TYPE_PointerTott__RelayOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RelayOutput(struct soap*, tt__RelayOutput *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RelayOutput(struct soap*, const char *, int, tt__RelayOutput *const*, const char *); -SOAP_FMAC3 tt__RelayOutput ** SOAP_FMAC4 soap_in_PointerTott__RelayOutput(struct soap*, const char*, tt__RelayOutput **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RelayOutput(struct soap*, tt__RelayOutput *const*, const char*, const char*); -SOAP_FMAC3 tt__RelayOutput ** SOAP_FMAC4 soap_get_PointerTott__RelayOutput(struct soap*, tt__RelayOutput **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioOutputConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__AudioOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioOutputConfigurationOptions(struct soap*, tt__AudioOutputConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioOutputConfigurationOptions(struct soap*, const char *, int, tt__AudioOutputConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__AudioOutputConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__AudioOutputConfigurationOptions(struct soap*, const char*, tt__AudioOutputConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioOutputConfigurationOptions(struct soap*, tt__AudioOutputConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioOutputConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__AudioOutputConfigurationOptions(struct soap*, tt__AudioOutputConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__AudioSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioSourceConfigurationOptions(struct soap*, tt__AudioSourceConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioSourceConfigurationOptions(struct soap*, const char *, int, tt__AudioSourceConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__AudioSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__AudioSourceConfigurationOptions(struct soap*, const char*, tt__AudioSourceConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioSourceConfigurationOptions(struct soap*, tt__AudioSourceConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__AudioSourceConfigurationOptions(struct soap*, tt__AudioSourceConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoOutputConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__VideoOutputConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoOutputConfigurationOptions(struct soap*, tt__VideoOutputConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoOutputConfigurationOptions(struct soap*, const char *, int, tt__VideoOutputConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__VideoOutputConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__VideoOutputConfigurationOptions(struct soap*, const char*, tt__VideoOutputConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoOutputConfigurationOptions(struct soap*, tt__VideoOutputConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoOutputConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__VideoOutputConfigurationOptions(struct soap*, tt__VideoOutputConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceConfigurationOptions(struct soap*, tt__VideoSourceConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceConfigurationOptions(struct soap*, const char *, int, tt__VideoSourceConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__VideoSourceConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceConfigurationOptions(struct soap*, const char*, tt__VideoSourceConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceConfigurationOptions(struct soap*, tt__VideoSourceConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceConfigurationOptions(struct soap*, tt__VideoSourceConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__VideoOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoOutputConfiguration(struct soap*, tt__VideoOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoOutputConfiguration(struct soap*, const char *, int, tt__VideoOutputConfiguration *const*, const char *); -SOAP_FMAC3 tt__VideoOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTott__VideoOutputConfiguration(struct soap*, const char*, tt__VideoOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoOutputConfiguration(struct soap*, tt__VideoOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTott__VideoOutputConfiguration(struct soap*, tt__VideoOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoOutput_DEFINED -#define SOAP_TYPE_PointerTott__VideoOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoOutput(struct soap*, tt__VideoOutput *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoOutput(struct soap*, const char *, int, tt__VideoOutput *const*, const char *); -SOAP_FMAC3 tt__VideoOutput ** SOAP_FMAC4 soap_in_PointerTott__VideoOutput(struct soap*, const char*, tt__VideoOutput **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoOutput(struct soap*, tt__VideoOutput *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoOutput ** SOAP_FMAC4 soap_get_PointerTott__VideoOutput(struct soap*, tt__VideoOutput **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__RelayOutputOptions_DEFINED -#define SOAP_TYPE_PointerTotmd__RelayOutputOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__RelayOutputOptions(struct soap*, tmd__RelayOutputOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__RelayOutputOptions(struct soap*, const char *, int, tmd__RelayOutputOptions *const*, const char *); -SOAP_FMAC3 tmd__RelayOutputOptions ** SOAP_FMAC4 soap_in_PointerTotmd__RelayOutputOptions(struct soap*, const char*, tmd__RelayOutputOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__RelayOutputOptions(struct soap*, tmd__RelayOutputOptions *const*, const char*, const char*); -SOAP_FMAC3 tmd__RelayOutputOptions ** SOAP_FMAC4 soap_get_PointerTotmd__RelayOutputOptions(struct soap*, tmd__RelayOutputOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotmd__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__Capabilities(struct soap*, tmd__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__Capabilities(struct soap*, const char *, int, tmd__Capabilities *const*, const char *); -SOAP_FMAC3 tmd__Capabilities ** SOAP_FMAC4 soap_in_PointerTotmd__Capabilities(struct soap*, const char*, tmd__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__Capabilities(struct soap*, tmd__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 tmd__Capabilities ** SOAP_FMAC4 soap_get_PointerTotmd__Capabilities(struct soap*, tmd__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__base64Binary_DEFINED -#define SOAP_TYPE_PointerToxsd__base64Binary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__base64Binary(struct soap*, xsd__base64Binary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__base64Binary(struct soap*, const char *, int, xsd__base64Binary *const*, const char *); -SOAP_FMAC3 xsd__base64Binary ** SOAP_FMAC4 soap_in_PointerToxsd__base64Binary(struct soap*, const char*, xsd__base64Binary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__base64Binary(struct soap*, xsd__base64Binary *const*, const char*, const char*); -SOAP_FMAC3 xsd__base64Binary ** SOAP_FMAC4 soap_get_PointerToxsd__base64Binary(struct soap*, xsd__base64Binary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__RelayOutputOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTotmd__RelayOutputOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__RelayOutputOptionsExtension(struct soap*, tmd__RelayOutputOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__RelayOutputOptionsExtension(struct soap*, const char *, int, tmd__RelayOutputOptionsExtension *const*, const char *); -SOAP_FMAC3 tmd__RelayOutputOptionsExtension ** SOAP_FMAC4 soap_in_PointerTotmd__RelayOutputOptionsExtension(struct soap*, const char*, tmd__RelayOutputOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__RelayOutputOptionsExtension(struct soap*, tmd__RelayOutputOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tmd__RelayOutputOptionsExtension ** SOAP_FMAC4 soap_get_PointerTotmd__RelayOutputOptionsExtension(struct soap*, tmd__RelayOutputOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotmd__DelayTimes_DEFINED -#define SOAP_TYPE_PointerTotmd__DelayTimes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotmd__DelayTimes(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotmd__DelayTimes(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTotmd__DelayTimes(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotmd__DelayTimes(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTotmd__DelayTimes(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PropertyOperation_DEFINED -#define SOAP_TYPE_PointerTott__PropertyOperation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PropertyOperation(struct soap*, enum tt__PropertyOperation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PropertyOperation(struct soap*, const char *, int, enum tt__PropertyOperation *const*, const char *); -SOAP_FMAC3 enum tt__PropertyOperation ** SOAP_FMAC4 soap_in_PointerTott__PropertyOperation(struct soap*, const char*, enum tt__PropertyOperation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PropertyOperation(struct soap*, enum tt__PropertyOperation *const*, const char*, const char*); -SOAP_FMAC3 enum tt__PropertyOperation ** SOAP_FMAC4 soap_get_PointerTott__PropertyOperation(struct soap*, enum tt__PropertyOperation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MessageExtension_DEFINED -#define SOAP_TYPE_PointerTott__MessageExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MessageExtension(struct soap*, tt__MessageExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MessageExtension(struct soap*, const char *, int, tt__MessageExtension *const*, const char *); -SOAP_FMAC3 tt__MessageExtension ** SOAP_FMAC4 soap_in_PointerTott__MessageExtension(struct soap*, const char*, tt__MessageExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MessageExtension(struct soap*, tt__MessageExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__MessageExtension ** SOAP_FMAC4 soap_get_PointerTott__MessageExtension(struct soap*, tt__MessageExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__StorageReferencePathExtension_DEFINED -#define SOAP_TYPE_PointerTott__StorageReferencePathExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__StorageReferencePathExtension(struct soap*, tt__StorageReferencePathExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__StorageReferencePathExtension(struct soap*, const char *, int, tt__StorageReferencePathExtension *const*, const char *); -SOAP_FMAC3 tt__StorageReferencePathExtension ** SOAP_FMAC4 soap_in_PointerTott__StorageReferencePathExtension(struct soap*, const char*, tt__StorageReferencePathExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__StorageReferencePathExtension(struct soap*, tt__StorageReferencePathExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__StorageReferencePathExtension ** SOAP_FMAC4 soap_get_PointerTott__StorageReferencePathExtension(struct soap*, tt__StorageReferencePathExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ArrayOfFileProgressExtension_DEFINED -#define SOAP_TYPE_PointerTott__ArrayOfFileProgressExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ArrayOfFileProgressExtension(struct soap*, tt__ArrayOfFileProgressExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ArrayOfFileProgressExtension(struct soap*, const char *, int, tt__ArrayOfFileProgressExtension *const*, const char *); -SOAP_FMAC3 tt__ArrayOfFileProgressExtension ** SOAP_FMAC4 soap_in_PointerTott__ArrayOfFileProgressExtension(struct soap*, const char*, tt__ArrayOfFileProgressExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ArrayOfFileProgressExtension(struct soap*, tt__ArrayOfFileProgressExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ArrayOfFileProgressExtension ** SOAP_FMAC4 soap_get_PointerTott__ArrayOfFileProgressExtension(struct soap*, tt__ArrayOfFileProgressExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FileProgress_DEFINED -#define SOAP_TYPE_PointerTott__FileProgress_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FileProgress(struct soap*, tt__FileProgress *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FileProgress(struct soap*, const char *, int, tt__FileProgress *const*, const char *); -SOAP_FMAC3 tt__FileProgress ** SOAP_FMAC4 soap_in_PointerTott__FileProgress(struct soap*, const char*, tt__FileProgress **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FileProgress(struct soap*, tt__FileProgress *const*, const char*, const char*); -SOAP_FMAC3 tt__FileProgress ** SOAP_FMAC4 soap_get_PointerTott__FileProgress(struct soap*, tt__FileProgress **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDConfigurationOptionsExtension(struct soap*, tt__OSDConfigurationOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDConfigurationOptionsExtension(struct soap*, const char *, int, tt__OSDConfigurationOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__OSDConfigurationOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDConfigurationOptionsExtension(struct soap*, const char*, tt__OSDConfigurationOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDConfigurationOptionsExtension(struct soap*, tt__OSDConfigurationOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDConfigurationOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDConfigurationOptionsExtension(struct soap*, tt__OSDConfigurationOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDImgOptions_DEFINED -#define SOAP_TYPE_PointerTott__OSDImgOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDImgOptions(struct soap*, tt__OSDImgOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDImgOptions(struct soap*, const char *, int, tt__OSDImgOptions *const*, const char *); -SOAP_FMAC3 tt__OSDImgOptions ** SOAP_FMAC4 soap_in_PointerTott__OSDImgOptions(struct soap*, const char*, tt__OSDImgOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDImgOptions(struct soap*, tt__OSDImgOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDImgOptions ** SOAP_FMAC4 soap_get_PointerTott__OSDImgOptions(struct soap*, tt__OSDImgOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDTextOptions_DEFINED -#define SOAP_TYPE_PointerTott__OSDTextOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDTextOptions(struct soap*, tt__OSDTextOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDTextOptions(struct soap*, const char *, int, tt__OSDTextOptions *const*, const char *); -SOAP_FMAC3 tt__OSDTextOptions ** SOAP_FMAC4 soap_in_PointerTott__OSDTextOptions(struct soap*, const char*, tt__OSDTextOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDTextOptions(struct soap*, tt__OSDTextOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDTextOptions ** SOAP_FMAC4 soap_get_PointerTott__OSDTextOptions(struct soap*, tt__OSDTextOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MaximumNumberOfOSDs_DEFINED -#define SOAP_TYPE_PointerTott__MaximumNumberOfOSDs_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MaximumNumberOfOSDs(struct soap*, tt__MaximumNumberOfOSDs *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MaximumNumberOfOSDs(struct soap*, const char *, int, tt__MaximumNumberOfOSDs *const*, const char *); -SOAP_FMAC3 tt__MaximumNumberOfOSDs ** SOAP_FMAC4 soap_in_PointerTott__MaximumNumberOfOSDs(struct soap*, const char*, tt__MaximumNumberOfOSDs **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MaximumNumberOfOSDs(struct soap*, tt__MaximumNumberOfOSDs *const*, const char*, const char*); -SOAP_FMAC3 tt__MaximumNumberOfOSDs ** SOAP_FMAC4 soap_get_PointerTott__MaximumNumberOfOSDs(struct soap*, tt__MaximumNumberOfOSDs **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDImgOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDImgOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDImgOptionsExtension(struct soap*, tt__OSDImgOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDImgOptionsExtension(struct soap*, const char *, int, tt__OSDImgOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__OSDImgOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDImgOptionsExtension(struct soap*, const char*, tt__OSDImgOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDImgOptionsExtension(struct soap*, tt__OSDImgOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDImgOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDImgOptionsExtension(struct soap*, tt__OSDImgOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDTextOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDTextOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDTextOptionsExtension(struct soap*, tt__OSDTextOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDTextOptionsExtension(struct soap*, const char *, int, tt__OSDTextOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__OSDTextOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDTextOptionsExtension(struct soap*, const char*, tt__OSDTextOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDTextOptionsExtension(struct soap*, tt__OSDTextOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDTextOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDTextOptionsExtension(struct soap*, tt__OSDTextOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDColorOptions_DEFINED -#define SOAP_TYPE_PointerTott__OSDColorOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDColorOptions(struct soap*, tt__OSDColorOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDColorOptions(struct soap*, const char *, int, tt__OSDColorOptions *const*, const char *); -SOAP_FMAC3 tt__OSDColorOptions ** SOAP_FMAC4 soap_in_PointerTott__OSDColorOptions(struct soap*, const char*, tt__OSDColorOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDColorOptions(struct soap*, tt__OSDColorOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDColorOptions ** SOAP_FMAC4 soap_get_PointerTott__OSDColorOptions(struct soap*, tt__OSDColorOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDColorOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDColorOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDColorOptionsExtension(struct soap*, tt__OSDColorOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDColorOptionsExtension(struct soap*, const char *, int, tt__OSDColorOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__OSDColorOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDColorOptionsExtension(struct soap*, const char*, tt__OSDColorOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDColorOptionsExtension(struct soap*, tt__OSDColorOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDColorOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDColorOptionsExtension(struct soap*, tt__OSDColorOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ColorOptions_DEFINED -#define SOAP_TYPE_PointerTott__ColorOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ColorOptions(struct soap*, tt__ColorOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ColorOptions(struct soap*, const char *, int, tt__ColorOptions *const*, const char *); -SOAP_FMAC3 tt__ColorOptions ** SOAP_FMAC4 soap_in_PointerTott__ColorOptions(struct soap*, const char*, tt__ColorOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ColorOptions(struct soap*, tt__ColorOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__ColorOptions ** SOAP_FMAC4 soap_get_PointerTott__ColorOptions(struct soap*, tt__ColorOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange_DEFINED -#define SOAP_TYPE_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, std::vector *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, const char *, int, std::vector *const*, const char *); -SOAP_FMAC3 std::vector ** SOAP_FMAC4 soap_in_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, const char*, std::vector **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, std::vector *const*, const char*, const char*); -SOAP_FMAC3 std::vector ** SOAP_FMAC4 soap_get_PointerTostd__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, std::vector **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ColorspaceRange_DEFINED -#define SOAP_TYPE_PointerTott__ColorspaceRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ColorspaceRange(struct soap*, tt__ColorspaceRange *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ColorspaceRange(struct soap*, const char *, int, tt__ColorspaceRange *const*, const char *); -SOAP_FMAC3 tt__ColorspaceRange ** SOAP_FMAC4 soap_in_PointerTott__ColorspaceRange(struct soap*, const char*, tt__ColorspaceRange **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ColorspaceRange(struct soap*, tt__ColorspaceRange *const*, const char*, const char*); -SOAP_FMAC3 tt__ColorspaceRange ** SOAP_FMAC4 soap_get_PointerTott__ColorspaceRange(struct soap*, tt__ColorspaceRange **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTostd__vectorTemplateOfPointerTott__Color_DEFINED -#define SOAP_TYPE_PointerTostd__vectorTemplateOfPointerTott__Color_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTostd__vectorTemplateOfPointerTott__Color(struct soap*, std::vector *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTostd__vectorTemplateOfPointerTott__Color(struct soap*, const char *, int, std::vector *const*, const char *); -SOAP_FMAC3 std::vector ** SOAP_FMAC4 soap_in_PointerTostd__vectorTemplateOfPointerTott__Color(struct soap*, const char*, std::vector **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTostd__vectorTemplateOfPointerTott__Color(struct soap*, std::vector *const*, const char*, const char*); -SOAP_FMAC3 std::vector ** SOAP_FMAC4 soap_get_PointerTostd__vectorTemplateOfPointerTott__Color(struct soap*, std::vector **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDImgConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDImgConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDImgConfigurationExtension(struct soap*, tt__OSDImgConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDImgConfigurationExtension(struct soap*, const char *, int, tt__OSDImgConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__OSDImgConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDImgConfigurationExtension(struct soap*, const char*, tt__OSDImgConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDImgConfigurationExtension(struct soap*, tt__OSDImgConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDImgConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDImgConfigurationExtension(struct soap*, tt__OSDImgConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDTextConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDTextConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDTextConfigurationExtension(struct soap*, tt__OSDTextConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDTextConfigurationExtension(struct soap*, const char *, int, tt__OSDTextConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__OSDTextConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDTextConfigurationExtension(struct soap*, const char*, tt__OSDTextConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDTextConfigurationExtension(struct soap*, tt__OSDTextConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDTextConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDTextConfigurationExtension(struct soap*, tt__OSDTextConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDColor_DEFINED -#define SOAP_TYPE_PointerTott__OSDColor_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDColor(struct soap*, tt__OSDColor *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDColor(struct soap*, const char *, int, tt__OSDColor *const*, const char *); -SOAP_FMAC3 tt__OSDColor ** SOAP_FMAC4 soap_in_PointerTott__OSDColor(struct soap*, const char*, tt__OSDColor **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDColor(struct soap*, tt__OSDColor *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDColor ** SOAP_FMAC4 soap_get_PointerTott__OSDColor(struct soap*, tt__OSDColor **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OSDPosConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__OSDPosConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OSDPosConfigurationExtension(struct soap*, tt__OSDPosConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OSDPosConfigurationExtension(struct soap*, const char *, int, tt__OSDPosConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__OSDPosConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__OSDPosConfigurationExtension(struct soap*, const char*, tt__OSDPosConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OSDPosConfigurationExtension(struct soap*, tt__OSDPosConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__OSDPosConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__OSDPosConfigurationExtension(struct soap*, tt__OSDPosConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ProfileStatusExtension_DEFINED -#define SOAP_TYPE_PointerTott__ProfileStatusExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ProfileStatusExtension(struct soap*, tt__ProfileStatusExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ProfileStatusExtension(struct soap*, const char *, int, tt__ProfileStatusExtension *const*, const char *); -SOAP_FMAC3 tt__ProfileStatusExtension ** SOAP_FMAC4 soap_in_PointerTott__ProfileStatusExtension(struct soap*, const char*, tt__ProfileStatusExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ProfileStatusExtension(struct soap*, tt__ProfileStatusExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ProfileStatusExtension ** SOAP_FMAC4 soap_get_PointerTott__ProfileStatusExtension(struct soap*, tt__ProfileStatusExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ActiveConnection_DEFINED -#define SOAP_TYPE_PointerTott__ActiveConnection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ActiveConnection(struct soap*, tt__ActiveConnection *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ActiveConnection(struct soap*, const char *, int, tt__ActiveConnection *const*, const char *); -SOAP_FMAC3 tt__ActiveConnection ** SOAP_FMAC4 soap_in_PointerTott__ActiveConnection(struct soap*, const char*, tt__ActiveConnection **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ActiveConnection(struct soap*, tt__ActiveConnection *const*, const char*, const char*); -SOAP_FMAC3 tt__ActiveConnection ** SOAP_FMAC4 soap_get_PointerTott__ActiveConnection(struct soap*, tt__ActiveConnection **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioClassDescriptorExtension_DEFINED -#define SOAP_TYPE_PointerTott__AudioClassDescriptorExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioClassDescriptorExtension(struct soap*, tt__AudioClassDescriptorExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioClassDescriptorExtension(struct soap*, const char *, int, tt__AudioClassDescriptorExtension *const*, const char *); -SOAP_FMAC3 tt__AudioClassDescriptorExtension ** SOAP_FMAC4 soap_in_PointerTott__AudioClassDescriptorExtension(struct soap*, const char*, tt__AudioClassDescriptorExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioClassDescriptorExtension(struct soap*, tt__AudioClassDescriptorExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioClassDescriptorExtension ** SOAP_FMAC4 soap_get_PointerTott__AudioClassDescriptorExtension(struct soap*, tt__AudioClassDescriptorExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioClassCandidate_DEFINED -#define SOAP_TYPE_PointerTott__AudioClassCandidate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioClassCandidate(struct soap*, tt__AudioClassCandidate *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioClassCandidate(struct soap*, const char *, int, tt__AudioClassCandidate *const*, const char *); -SOAP_FMAC3 tt__AudioClassCandidate ** SOAP_FMAC4 soap_in_PointerTott__AudioClassCandidate(struct soap*, const char*, tt__AudioClassCandidate **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioClassCandidate(struct soap*, tt__AudioClassCandidate *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioClassCandidate ** SOAP_FMAC4 soap_get_PointerTott__AudioClassCandidate(struct soap*, tt__AudioClassCandidate **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ActionEngineEventPayloadExtension_DEFINED -#define SOAP_TYPE_PointerTott__ActionEngineEventPayloadExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ActionEngineEventPayloadExtension(struct soap*, tt__ActionEngineEventPayloadExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ActionEngineEventPayloadExtension(struct soap*, const char *, int, tt__ActionEngineEventPayloadExtension *const*, const char *); -SOAP_FMAC3 tt__ActionEngineEventPayloadExtension ** SOAP_FMAC4 soap_in_PointerTott__ActionEngineEventPayloadExtension(struct soap*, const char*, tt__ActionEngineEventPayloadExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ActionEngineEventPayloadExtension(struct soap*, tt__ActionEngineEventPayloadExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ActionEngineEventPayloadExtension ** SOAP_FMAC4 soap_get_PointerTott__ActionEngineEventPayloadExtension(struct soap*, tt__ActionEngineEventPayloadExtension **, const char*, const char*); -#endif - -#ifndef WITH_NOGLOBAL - -#ifndef SOAP_TYPE_PointerToSOAP_ENV__Fault_DEFINED -#define SOAP_TYPE_PointerToSOAP_ENV__Fault_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Fault(struct soap*, struct SOAP_ENV__Fault *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Fault(struct soap*, const char *, int, struct SOAP_ENV__Fault *const*, const char *); -SOAP_FMAC3 struct SOAP_ENV__Fault ** SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Fault(struct soap*, const char*, struct SOAP_ENV__Fault **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Fault(struct soap*, struct SOAP_ENV__Fault *const*, const char*, const char*); -SOAP_FMAC3 struct SOAP_ENV__Fault ** SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Fault(struct soap*, struct SOAP_ENV__Fault **, const char*, const char*); -#endif - -#endif - -#ifndef SOAP_TYPE_PointerToSOAP_ENV__Envelope_DEFINED -#define SOAP_TYPE_PointerToSOAP_ENV__Envelope_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Envelope(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Envelope(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Envelope(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Envelope(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Envelope(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsState_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsState(struct soap*, tt__AnalyticsState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsState(struct soap*, const char *, int, tt__AnalyticsState *const*, const char *); -SOAP_FMAC3 tt__AnalyticsState ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsState(struct soap*, const char*, tt__AnalyticsState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsState(struct soap*, tt__AnalyticsState *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsState ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsState(struct soap*, tt__AnalyticsState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataInputExtension_DEFINED -#define SOAP_TYPE_PointerTott__MetadataInputExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataInputExtension(struct soap*, tt__MetadataInputExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataInputExtension(struct soap*, const char *, int, tt__MetadataInputExtension *const*, const char *); -SOAP_FMAC3 tt__MetadataInputExtension ** SOAP_FMAC4 soap_in_PointerTott__MetadataInputExtension(struct soap*, const char*, tt__MetadataInputExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataInputExtension(struct soap*, tt__MetadataInputExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataInputExtension ** SOAP_FMAC4 soap_get_PointerTott__MetadataInputExtension(struct soap*, tt__MetadataInputExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SourceIdentificationExtension_DEFINED -#define SOAP_TYPE_PointerTott__SourceIdentificationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SourceIdentificationExtension(struct soap*, tt__SourceIdentificationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SourceIdentificationExtension(struct soap*, const char *, int, tt__SourceIdentificationExtension *const*, const char *); -SOAP_FMAC3 tt__SourceIdentificationExtension ** SOAP_FMAC4 soap_in_PointerTott__SourceIdentificationExtension(struct soap*, const char*, tt__SourceIdentificationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SourceIdentificationExtension(struct soap*, tt__SourceIdentificationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__SourceIdentificationExtension ** SOAP_FMAC4 soap_get_PointerTott__SourceIdentificationExtension(struct soap*, tt__SourceIdentificationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsEngineInputInfoExtension_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsEngineInputInfoExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsEngineInputInfoExtension(struct soap*, tt__AnalyticsEngineInputInfoExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsEngineInputInfoExtension(struct soap*, const char *, int, tt__AnalyticsEngineInputInfoExtension *const*, const char *); -SOAP_FMAC3 tt__AnalyticsEngineInputInfoExtension ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsEngineInputInfoExtension(struct soap*, const char*, tt__AnalyticsEngineInputInfoExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsEngineInputInfoExtension(struct soap*, tt__AnalyticsEngineInputInfoExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsEngineInputInfoExtension ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsEngineInputInfoExtension(struct soap*, tt__AnalyticsEngineInputInfoExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsEngineInputInfo_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsEngineInputInfo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsEngineInputInfo(struct soap*, tt__AnalyticsEngineInputInfo *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsEngineInputInfo(struct soap*, const char *, int, tt__AnalyticsEngineInputInfo *const*, const char *); -SOAP_FMAC3 tt__AnalyticsEngineInputInfo ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsEngineInputInfo(struct soap*, const char*, tt__AnalyticsEngineInputInfo **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsEngineInputInfo(struct soap*, tt__AnalyticsEngineInputInfo *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsEngineInputInfo ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsEngineInputInfo(struct soap*, tt__AnalyticsEngineInputInfo **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsDeviceEngineConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsDeviceEngineConfigurationExtension(struct soap*, tt__AnalyticsDeviceEngineConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsDeviceEngineConfigurationExtension(struct soap*, const char *, int, tt__AnalyticsDeviceEngineConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsDeviceEngineConfigurationExtension(struct soap*, const char*, tt__AnalyticsDeviceEngineConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsDeviceEngineConfigurationExtension(struct soap*, tt__AnalyticsDeviceEngineConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceEngineConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsDeviceEngineConfigurationExtension(struct soap*, tt__AnalyticsDeviceEngineConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EngineConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__EngineConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EngineConfiguration(struct soap*, tt__EngineConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EngineConfiguration(struct soap*, const char *, int, tt__EngineConfiguration *const*, const char *); -SOAP_FMAC3 tt__EngineConfiguration ** SOAP_FMAC4 soap_in_PointerTott__EngineConfiguration(struct soap*, const char*, tt__EngineConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EngineConfiguration(struct soap*, tt__EngineConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__EngineConfiguration ** SOAP_FMAC4 soap_get_PointerTott__EngineConfiguration(struct soap*, tt__EngineConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobConfiguration(struct soap*, tt__RecordingJobConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobConfiguration(struct soap*, const char *, int, tt__RecordingJobConfiguration *const*, const char *); -SOAP_FMAC3 tt__RecordingJobConfiguration ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobConfiguration(struct soap*, const char*, tt__RecordingJobConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobConfiguration(struct soap*, tt__RecordingJobConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobConfiguration ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobConfiguration(struct soap*, tt__RecordingJobConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobStateTrack_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobStateTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobStateTrack(struct soap*, tt__RecordingJobStateTrack *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobStateTrack(struct soap*, const char *, int, tt__RecordingJobStateTrack *const*, const char *); -SOAP_FMAC3 tt__RecordingJobStateTrack ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobStateTrack(struct soap*, const char*, tt__RecordingJobStateTrack **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobStateTrack(struct soap*, tt__RecordingJobStateTrack *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobStateTrack ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobStateTrack(struct soap*, tt__RecordingJobStateTrack **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobStateTracks_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobStateTracks_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobStateTracks(struct soap*, tt__RecordingJobStateTracks *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobStateTracks(struct soap*, const char *, int, tt__RecordingJobStateTracks *const*, const char *); -SOAP_FMAC3 tt__RecordingJobStateTracks ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobStateTracks(struct soap*, const char*, tt__RecordingJobStateTracks **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobStateTracks(struct soap*, tt__RecordingJobStateTracks *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobStateTracks ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobStateTracks(struct soap*, tt__RecordingJobStateTracks **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobStateInformationExtension_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobStateInformationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobStateInformationExtension(struct soap*, tt__RecordingJobStateInformationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobStateInformationExtension(struct soap*, const char *, int, tt__RecordingJobStateInformationExtension *const*, const char *); -SOAP_FMAC3 tt__RecordingJobStateInformationExtension ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobStateInformationExtension(struct soap*, const char*, tt__RecordingJobStateInformationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobStateInformationExtension(struct soap*, tt__RecordingJobStateInformationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobStateInformationExtension ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobStateInformationExtension(struct soap*, tt__RecordingJobStateInformationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobStateSource_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobStateSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobStateSource(struct soap*, tt__RecordingJobStateSource *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobStateSource(struct soap*, const char *, int, tt__RecordingJobStateSource *const*, const char *); -SOAP_FMAC3 tt__RecordingJobStateSource ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobStateSource(struct soap*, const char*, tt__RecordingJobStateSource **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobStateSource(struct soap*, tt__RecordingJobStateSource *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobStateSource ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobStateSource(struct soap*, tt__RecordingJobStateSource **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobSourceExtension_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobSourceExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobSourceExtension(struct soap*, tt__RecordingJobSourceExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobSourceExtension(struct soap*, const char *, int, tt__RecordingJobSourceExtension *const*, const char *); -SOAP_FMAC3 tt__RecordingJobSourceExtension ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobSourceExtension(struct soap*, const char*, tt__RecordingJobSourceExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobSourceExtension(struct soap*, tt__RecordingJobSourceExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobSourceExtension ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobSourceExtension(struct soap*, tt__RecordingJobSourceExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobTrack_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobTrack(struct soap*, tt__RecordingJobTrack *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobTrack(struct soap*, const char *, int, tt__RecordingJobTrack *const*, const char *); -SOAP_FMAC3 tt__RecordingJobTrack ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobTrack(struct soap*, const char*, tt__RecordingJobTrack **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobTrack(struct soap*, tt__RecordingJobTrack *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobTrack ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobTrack(struct soap*, tt__RecordingJobTrack **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobConfigurationExtension(struct soap*, tt__RecordingJobConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobConfigurationExtension(struct soap*, const char *, int, tt__RecordingJobConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__RecordingJobConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobConfigurationExtension(struct soap*, const char*, tt__RecordingJobConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobConfigurationExtension(struct soap*, tt__RecordingJobConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobConfigurationExtension(struct soap*, tt__RecordingJobConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingJobSource_DEFINED -#define SOAP_TYPE_PointerTott__RecordingJobSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingJobSource(struct soap*, tt__RecordingJobSource *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingJobSource(struct soap*, const char *, int, tt__RecordingJobSource *const*, const char *); -SOAP_FMAC3 tt__RecordingJobSource ** SOAP_FMAC4 soap_in_PointerTott__RecordingJobSource(struct soap*, const char*, tt__RecordingJobSource **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingJobSource(struct soap*, tt__RecordingJobSource *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingJobSource ** SOAP_FMAC4 soap_get_PointerTott__RecordingJobSource(struct soap*, tt__RecordingJobSource **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__TrackConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__TrackConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__TrackConfiguration(struct soap*, tt__TrackConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__TrackConfiguration(struct soap*, const char *, int, tt__TrackConfiguration *const*, const char *); -SOAP_FMAC3 tt__TrackConfiguration ** SOAP_FMAC4 soap_in_PointerTott__TrackConfiguration(struct soap*, const char*, tt__TrackConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__TrackConfiguration(struct soap*, tt__TrackConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__TrackConfiguration ** SOAP_FMAC4 soap_get_PointerTott__TrackConfiguration(struct soap*, tt__TrackConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__GetTracksResponseItem_DEFINED -#define SOAP_TYPE_PointerTott__GetTracksResponseItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__GetTracksResponseItem(struct soap*, tt__GetTracksResponseItem *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__GetTracksResponseItem(struct soap*, const char *, int, tt__GetTracksResponseItem *const*, const char *); -SOAP_FMAC3 tt__GetTracksResponseItem ** SOAP_FMAC4 soap_in_PointerTott__GetTracksResponseItem(struct soap*, const char*, tt__GetTracksResponseItem **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__GetTracksResponseItem(struct soap*, tt__GetTracksResponseItem *const*, const char*, const char*); -SOAP_FMAC3 tt__GetTracksResponseItem ** SOAP_FMAC4 soap_get_PointerTott__GetTracksResponseItem(struct soap*, tt__GetTracksResponseItem **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__GetTracksResponseList_DEFINED -#define SOAP_TYPE_PointerTott__GetTracksResponseList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__GetTracksResponseList(struct soap*, tt__GetTracksResponseList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__GetTracksResponseList(struct soap*, const char *, int, tt__GetTracksResponseList *const*, const char *); -SOAP_FMAC3 tt__GetTracksResponseList ** SOAP_FMAC4 soap_in_PointerTott__GetTracksResponseList(struct soap*, const char*, tt__GetTracksResponseList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__GetTracksResponseList(struct soap*, tt__GetTracksResponseList *const*, const char*, const char*); -SOAP_FMAC3 tt__GetTracksResponseList ** SOAP_FMAC4 soap_get_PointerTott__GetTracksResponseList(struct soap*, tt__GetTracksResponseList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__RecordingConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingConfiguration(struct soap*, tt__RecordingConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingConfiguration(struct soap*, const char *, int, tt__RecordingConfiguration *const*, const char *); -SOAP_FMAC3 tt__RecordingConfiguration ** SOAP_FMAC4 soap_in_PointerTott__RecordingConfiguration(struct soap*, const char*, tt__RecordingConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingConfiguration(struct soap*, tt__RecordingConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingConfiguration ** SOAP_FMAC4 soap_get_PointerTott__RecordingConfiguration(struct soap*, tt__RecordingConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__TrackAttributesExtension_DEFINED -#define SOAP_TYPE_PointerTott__TrackAttributesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__TrackAttributesExtension(struct soap*, tt__TrackAttributesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__TrackAttributesExtension(struct soap*, const char *, int, tt__TrackAttributesExtension *const*, const char *); -SOAP_FMAC3 tt__TrackAttributesExtension ** SOAP_FMAC4 soap_in_PointerTott__TrackAttributesExtension(struct soap*, const char*, tt__TrackAttributesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__TrackAttributesExtension(struct soap*, tt__TrackAttributesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__TrackAttributesExtension ** SOAP_FMAC4 soap_get_PointerTott__TrackAttributesExtension(struct soap*, tt__TrackAttributesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataAttributes_DEFINED -#define SOAP_TYPE_PointerTott__MetadataAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataAttributes(struct soap*, tt__MetadataAttributes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataAttributes(struct soap*, const char *, int, tt__MetadataAttributes *const*, const char *); -SOAP_FMAC3 tt__MetadataAttributes ** SOAP_FMAC4 soap_in_PointerTott__MetadataAttributes(struct soap*, const char*, tt__MetadataAttributes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataAttributes(struct soap*, tt__MetadataAttributes *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataAttributes ** SOAP_FMAC4 soap_get_PointerTott__MetadataAttributes(struct soap*, tt__MetadataAttributes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioAttributes_DEFINED -#define SOAP_TYPE_PointerTott__AudioAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioAttributes(struct soap*, tt__AudioAttributes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioAttributes(struct soap*, const char *, int, tt__AudioAttributes *const*, const char *); -SOAP_FMAC3 tt__AudioAttributes ** SOAP_FMAC4 soap_in_PointerTott__AudioAttributes(struct soap*, const char*, tt__AudioAttributes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioAttributes(struct soap*, tt__AudioAttributes *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioAttributes ** SOAP_FMAC4 soap_get_PointerTott__AudioAttributes(struct soap*, tt__AudioAttributes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoAttributes_DEFINED -#define SOAP_TYPE_PointerTott__VideoAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoAttributes(struct soap*, tt__VideoAttributes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoAttributes(struct soap*, const char *, int, tt__VideoAttributes *const*, const char *); -SOAP_FMAC3 tt__VideoAttributes ** SOAP_FMAC4 soap_in_PointerTott__VideoAttributes(struct soap*, const char*, tt__VideoAttributes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoAttributes(struct soap*, tt__VideoAttributes *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoAttributes ** SOAP_FMAC4 soap_get_PointerTott__VideoAttributes(struct soap*, tt__VideoAttributes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__TrackAttributes_DEFINED -#define SOAP_TYPE_PointerTott__TrackAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__TrackAttributes(struct soap*, tt__TrackAttributes *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__TrackAttributes(struct soap*, const char *, int, tt__TrackAttributes *const*, const char *); -SOAP_FMAC3 tt__TrackAttributes ** SOAP_FMAC4 soap_in_PointerTott__TrackAttributes(struct soap*, const char*, tt__TrackAttributes **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__TrackAttributes(struct soap*, tt__TrackAttributes *const*, const char*, const char*); -SOAP_FMAC3 tt__TrackAttributes ** SOAP_FMAC4 soap_get_PointerTott__TrackAttributes(struct soap*, tt__TrackAttributes **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__TrackInformation_DEFINED -#define SOAP_TYPE_PointerTott__TrackInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__TrackInformation(struct soap*, tt__TrackInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__TrackInformation(struct soap*, const char *, int, tt__TrackInformation *const*, const char *); -SOAP_FMAC3 tt__TrackInformation ** SOAP_FMAC4 soap_in_PointerTott__TrackInformation(struct soap*, const char*, tt__TrackInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__TrackInformation(struct soap*, tt__TrackInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__TrackInformation ** SOAP_FMAC4 soap_get_PointerTott__TrackInformation(struct soap*, tt__TrackInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingSourceInformation_DEFINED -#define SOAP_TYPE_PointerTott__RecordingSourceInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingSourceInformation(struct soap*, tt__RecordingSourceInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingSourceInformation(struct soap*, const char *, int, tt__RecordingSourceInformation *const*, const char *); -SOAP_FMAC3 tt__RecordingSourceInformation ** SOAP_FMAC4 soap_in_PointerTott__RecordingSourceInformation(struct soap*, const char*, tt__RecordingSourceInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingSourceInformation(struct soap*, tt__RecordingSourceInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingSourceInformation ** SOAP_FMAC4 soap_get_PointerTott__RecordingSourceInformation(struct soap*, tt__RecordingSourceInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FindMetadataResult_DEFINED -#define SOAP_TYPE_PointerTott__FindMetadataResult_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FindMetadataResult(struct soap*, tt__FindMetadataResult *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FindMetadataResult(struct soap*, const char *, int, tt__FindMetadataResult *const*, const char *); -SOAP_FMAC3 tt__FindMetadataResult ** SOAP_FMAC4 soap_in_PointerTott__FindMetadataResult(struct soap*, const char*, tt__FindMetadataResult **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FindMetadataResult(struct soap*, tt__FindMetadataResult *const*, const char*, const char*); -SOAP_FMAC3 tt__FindMetadataResult ** SOAP_FMAC4 soap_get_PointerTott__FindMetadataResult(struct soap*, tt__FindMetadataResult **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FindPTZPositionResult_DEFINED -#define SOAP_TYPE_PointerTott__FindPTZPositionResult_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FindPTZPositionResult(struct soap*, tt__FindPTZPositionResult *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FindPTZPositionResult(struct soap*, const char *, int, tt__FindPTZPositionResult *const*, const char *); -SOAP_FMAC3 tt__FindPTZPositionResult ** SOAP_FMAC4 soap_in_PointerTott__FindPTZPositionResult(struct soap*, const char*, tt__FindPTZPositionResult **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FindPTZPositionResult(struct soap*, tt__FindPTZPositionResult *const*, const char*, const char*); -SOAP_FMAC3 tt__FindPTZPositionResult ** SOAP_FMAC4 soap_get_PointerTott__FindPTZPositionResult(struct soap*, tt__FindPTZPositionResult **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FindEventResult_DEFINED -#define SOAP_TYPE_PointerTott__FindEventResult_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FindEventResult(struct soap*, tt__FindEventResult *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FindEventResult(struct soap*, const char *, int, tt__FindEventResult *const*, const char *); -SOAP_FMAC3 tt__FindEventResult ** SOAP_FMAC4 soap_in_PointerTott__FindEventResult(struct soap*, const char*, tt__FindEventResult **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FindEventResult(struct soap*, tt__FindEventResult *const*, const char*, const char*); -SOAP_FMAC3 tt__FindEventResult ** SOAP_FMAC4 soap_get_PointerTott__FindEventResult(struct soap*, tt__FindEventResult **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingInformation_DEFINED -#define SOAP_TYPE_PointerTott__RecordingInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingInformation(struct soap*, tt__RecordingInformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingInformation(struct soap*, const char *, int, tt__RecordingInformation *const*, const char *); -SOAP_FMAC3 tt__RecordingInformation ** SOAP_FMAC4 soap_in_PointerTott__RecordingInformation(struct soap*, const char*, tt__RecordingInformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingInformation(struct soap*, tt__RecordingInformation *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingInformation ** SOAP_FMAC4 soap_get_PointerTott__RecordingInformation(struct soap*, tt__RecordingInformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SearchScopeExtension_DEFINED -#define SOAP_TYPE_PointerTott__SearchScopeExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SearchScopeExtension(struct soap*, tt__SearchScopeExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SearchScopeExtension(struct soap*, const char *, int, tt__SearchScopeExtension *const*, const char *); -SOAP_FMAC3 tt__SearchScopeExtension ** SOAP_FMAC4 soap_in_PointerTott__SearchScopeExtension(struct soap*, const char*, tt__SearchScopeExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SearchScopeExtension(struct soap*, tt__SearchScopeExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__SearchScopeExtension ** SOAP_FMAC4 soap_get_PointerTott__SearchScopeExtension(struct soap*, tt__SearchScopeExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__XPathExpression_DEFINED -#define SOAP_TYPE_PointerTott__XPathExpression_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__XPathExpression(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__XPathExpression(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__XPathExpression(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__XPathExpression(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__XPathExpression(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SourceReference_DEFINED -#define SOAP_TYPE_PointerTott__SourceReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SourceReference(struct soap*, tt__SourceReference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SourceReference(struct soap*, const char *, int, tt__SourceReference *const*, const char *); -SOAP_FMAC3 tt__SourceReference ** SOAP_FMAC4 soap_in_PointerTott__SourceReference(struct soap*, const char*, tt__SourceReference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SourceReference(struct soap*, tt__SourceReference *const*, const char*, const char*); -SOAP_FMAC3 tt__SourceReference ** SOAP_FMAC4 soap_get_PointerTott__SourceReference(struct soap*, tt__SourceReference **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__StreamSetup_DEFINED -#define SOAP_TYPE_PointerTott__StreamSetup_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__StreamSetup(struct soap*, tt__StreamSetup *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__StreamSetup(struct soap*, const char *, int, tt__StreamSetup *const*, const char *); -SOAP_FMAC3 tt__StreamSetup ** SOAP_FMAC4 soap_in_PointerTott__StreamSetup(struct soap*, const char*, tt__StreamSetup **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__StreamSetup(struct soap*, tt__StreamSetup *const*, const char*, const char*); -SOAP_FMAC3 tt__StreamSetup ** SOAP_FMAC4 soap_get_PointerTott__StreamSetup(struct soap*, tt__StreamSetup **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReceiverConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__ReceiverConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReceiverConfiguration(struct soap*, tt__ReceiverConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReceiverConfiguration(struct soap*, const char *, int, tt__ReceiverConfiguration *const*, const char *); -SOAP_FMAC3 tt__ReceiverConfiguration ** SOAP_FMAC4 soap_in_PointerTott__ReceiverConfiguration(struct soap*, const char*, tt__ReceiverConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReceiverConfiguration(struct soap*, tt__ReceiverConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__ReceiverConfiguration ** SOAP_FMAC4 soap_get_PointerTott__ReceiverConfiguration(struct soap*, tt__ReceiverConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PaneOptionExtension_DEFINED -#define SOAP_TYPE_PointerTott__PaneOptionExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PaneOptionExtension(struct soap*, tt__PaneOptionExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PaneOptionExtension(struct soap*, const char *, int, tt__PaneOptionExtension *const*, const char *); -SOAP_FMAC3 tt__PaneOptionExtension ** SOAP_FMAC4 soap_in_PointerTott__PaneOptionExtension(struct soap*, const char*, tt__PaneOptionExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PaneOptionExtension(struct soap*, tt__PaneOptionExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PaneOptionExtension ** SOAP_FMAC4 soap_get_PointerTott__PaneOptionExtension(struct soap*, tt__PaneOptionExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LayoutOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__LayoutOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LayoutOptionsExtension(struct soap*, tt__LayoutOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LayoutOptionsExtension(struct soap*, const char *, int, tt__LayoutOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__LayoutOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__LayoutOptionsExtension(struct soap*, const char*, tt__LayoutOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LayoutOptionsExtension(struct soap*, tt__LayoutOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__LayoutOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__LayoutOptionsExtension(struct soap*, tt__LayoutOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PaneLayoutOptions_DEFINED -#define SOAP_TYPE_PointerTott__PaneLayoutOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PaneLayoutOptions(struct soap*, tt__PaneLayoutOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PaneLayoutOptions(struct soap*, const char *, int, tt__PaneLayoutOptions *const*, const char *); -SOAP_FMAC3 tt__PaneLayoutOptions ** SOAP_FMAC4 soap_in_PointerTott__PaneLayoutOptions(struct soap*, const char*, tt__PaneLayoutOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PaneLayoutOptions(struct soap*, tt__PaneLayoutOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PaneLayoutOptions ** SOAP_FMAC4 soap_get_PointerTott__PaneLayoutOptions(struct soap*, tt__PaneLayoutOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoDecoderConfigurationOptions(struct soap*, tt__VideoDecoderConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoDecoderConfigurationOptions(struct soap*, const char *, int, tt__VideoDecoderConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__VideoDecoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__VideoDecoderConfigurationOptions(struct soap*, const char*, tt__VideoDecoderConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoDecoderConfigurationOptions(struct soap*, tt__VideoDecoderConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoDecoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__VideoDecoderConfigurationOptions(struct soap*, tt__VideoDecoderConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioDecoderConfigurationOptions(struct soap*, tt__AudioDecoderConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioDecoderConfigurationOptions(struct soap*, const char *, int, tt__AudioDecoderConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__AudioDecoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__AudioDecoderConfigurationOptions(struct soap*, const char*, tt__AudioDecoderConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioDecoderConfigurationOptions(struct soap*, tt__AudioDecoderConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioDecoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__AudioDecoderConfigurationOptions(struct soap*, tt__AudioDecoderConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioEncoderConfigurationOptions_DEFINED -#define SOAP_TYPE_PointerTott__AudioEncoderConfigurationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioEncoderConfigurationOptions(struct soap*, tt__AudioEncoderConfigurationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioEncoderConfigurationOptions(struct soap*, const char *, int, tt__AudioEncoderConfigurationOptions *const*, const char *); -SOAP_FMAC3 tt__AudioEncoderConfigurationOptions ** SOAP_FMAC4 soap_in_PointerTott__AudioEncoderConfigurationOptions(struct soap*, const char*, tt__AudioEncoderConfigurationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioEncoderConfigurationOptions(struct soap*, tt__AudioEncoderConfigurationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioEncoderConfigurationOptions ** SOAP_FMAC4 soap_get_PointerTott__AudioEncoderConfigurationOptions(struct soap*, tt__AudioEncoderConfigurationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LayoutExtension_DEFINED -#define SOAP_TYPE_PointerTott__LayoutExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LayoutExtension(struct soap*, tt__LayoutExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LayoutExtension(struct soap*, const char *, int, tt__LayoutExtension *const*, const char *); -SOAP_FMAC3 tt__LayoutExtension ** SOAP_FMAC4 soap_in_PointerTott__LayoutExtension(struct soap*, const char*, tt__LayoutExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LayoutExtension(struct soap*, tt__LayoutExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__LayoutExtension ** SOAP_FMAC4 soap_get_PointerTott__LayoutExtension(struct soap*, tt__LayoutExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PaneLayout_DEFINED -#define SOAP_TYPE_PointerTott__PaneLayout_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PaneLayout(struct soap*, tt__PaneLayout *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PaneLayout(struct soap*, const char *, int, tt__PaneLayout *const*, const char *); -SOAP_FMAC3 tt__PaneLayout ** SOAP_FMAC4 soap_in_PointerTott__PaneLayout(struct soap*, const char*, tt__PaneLayout **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PaneLayout(struct soap*, tt__PaneLayout *const*, const char*, const char*); -SOAP_FMAC3 tt__PaneLayout ** SOAP_FMAC4 soap_get_PointerTott__PaneLayout(struct soap*, tt__PaneLayout **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Transformation_DEFINED -#define SOAP_TYPE_PointerTott__Transformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Transformation(struct soap*, tt__Transformation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Transformation(struct soap*, const char *, int, tt__Transformation *const*, const char *); -SOAP_FMAC3 tt__Transformation ** SOAP_FMAC4 soap_in_PointerTott__Transformation(struct soap*, const char*, tt__Transformation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Transformation(struct soap*, tt__Transformation *const*, const char*, const char*); -SOAP_FMAC3 tt__Transformation ** SOAP_FMAC4 soap_get_PointerTott__Transformation(struct soap*, tt__Transformation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MotionExpression_DEFINED -#define SOAP_TYPE_PointerTott__MotionExpression_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MotionExpression(struct soap*, tt__MotionExpression *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MotionExpression(struct soap*, const char *, int, tt__MotionExpression *const*, const char *); -SOAP_FMAC3 tt__MotionExpression ** SOAP_FMAC4 soap_in_PointerTott__MotionExpression(struct soap*, const char*, tt__MotionExpression **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MotionExpression(struct soap*, tt__MotionExpression *const*, const char*, const char*); -SOAP_FMAC3 tt__MotionExpression ** SOAP_FMAC4 soap_get_PointerTott__MotionExpression(struct soap*, tt__MotionExpression **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PolylineArray_DEFINED -#define SOAP_TYPE_PointerTott__PolylineArray_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PolylineArray(struct soap*, tt__PolylineArray *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PolylineArray(struct soap*, const char *, int, tt__PolylineArray *const*, const char *); -SOAP_FMAC3 tt__PolylineArray ** SOAP_FMAC4 soap_in_PointerTott__PolylineArray(struct soap*, const char*, tt__PolylineArray **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PolylineArray(struct soap*, tt__PolylineArray *const*, const char*, const char*); -SOAP_FMAC3 tt__PolylineArray ** SOAP_FMAC4 soap_get_PointerTott__PolylineArray(struct soap*, tt__PolylineArray **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PolylineArrayExtension_DEFINED -#define SOAP_TYPE_PointerTott__PolylineArrayExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PolylineArrayExtension(struct soap*, tt__PolylineArrayExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PolylineArrayExtension(struct soap*, const char *, int, tt__PolylineArrayExtension *const*, const char *); -SOAP_FMAC3 tt__PolylineArrayExtension ** SOAP_FMAC4 soap_in_PointerTott__PolylineArrayExtension(struct soap*, const char*, tt__PolylineArrayExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PolylineArrayExtension(struct soap*, tt__PolylineArrayExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PolylineArrayExtension ** SOAP_FMAC4 soap_get_PointerTott__PolylineArrayExtension(struct soap*, tt__PolylineArrayExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Polyline_DEFINED -#define SOAP_TYPE_PointerTott__Polyline_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Polyline(struct soap*, tt__Polyline *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Polyline(struct soap*, const char *, int, tt__Polyline *const*, const char *); -SOAP_FMAC3 tt__Polyline ** SOAP_FMAC4 soap_in_PointerTott__Polyline(struct soap*, const char*, tt__Polyline **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Polyline(struct soap*, tt__Polyline *const*, const char*, const char*); -SOAP_FMAC3 tt__Polyline ** SOAP_FMAC4 soap_get_PointerTott__Polyline(struct soap*, tt__Polyline **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SupportedAnalyticsModulesExtension_DEFINED -#define SOAP_TYPE_PointerTott__SupportedAnalyticsModulesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SupportedAnalyticsModulesExtension(struct soap*, tt__SupportedAnalyticsModulesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SupportedAnalyticsModulesExtension(struct soap*, const char *, int, tt__SupportedAnalyticsModulesExtension *const*, const char *); -SOAP_FMAC3 tt__SupportedAnalyticsModulesExtension ** SOAP_FMAC4 soap_in_PointerTott__SupportedAnalyticsModulesExtension(struct soap*, const char*, tt__SupportedAnalyticsModulesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SupportedAnalyticsModulesExtension(struct soap*, tt__SupportedAnalyticsModulesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__SupportedAnalyticsModulesExtension ** SOAP_FMAC4 soap_get_PointerTott__SupportedAnalyticsModulesExtension(struct soap*, tt__SupportedAnalyticsModulesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SupportedRulesExtension_DEFINED -#define SOAP_TYPE_PointerTott__SupportedRulesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SupportedRulesExtension(struct soap*, tt__SupportedRulesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SupportedRulesExtension(struct soap*, const char *, int, tt__SupportedRulesExtension *const*, const char *); -SOAP_FMAC3 tt__SupportedRulesExtension ** SOAP_FMAC4 soap_in_PointerTott__SupportedRulesExtension(struct soap*, const char*, tt__SupportedRulesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SupportedRulesExtension(struct soap*, tt__SupportedRulesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__SupportedRulesExtension ** SOAP_FMAC4 soap_get_PointerTott__SupportedRulesExtension(struct soap*, tt__SupportedRulesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ConfigDescription_DEFINED -#define SOAP_TYPE_PointerTott__ConfigDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ConfigDescription(struct soap*, tt__ConfigDescription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ConfigDescription(struct soap*, const char *, int, tt__ConfigDescription *const*, const char *); -SOAP_FMAC3 tt__ConfigDescription ** SOAP_FMAC4 soap_in_PointerTott__ConfigDescription(struct soap*, const char*, tt__ConfigDescription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ConfigDescription(struct soap*, tt__ConfigDescription *const*, const char*, const char*); -SOAP_FMAC3 tt__ConfigDescription ** SOAP_FMAC4 soap_get_PointerTott__ConfigDescription(struct soap*, tt__ConfigDescription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__integer_DEFINED -#define SOAP_TYPE_PointerToxsd__integer_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__integer(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__integer(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToxsd__integer(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__integer(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToxsd__integer(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ConfigDescriptionExtension_DEFINED -#define SOAP_TYPE_PointerTott__ConfigDescriptionExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ConfigDescriptionExtension(struct soap*, tt__ConfigDescriptionExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ConfigDescriptionExtension(struct soap*, const char *, int, tt__ConfigDescriptionExtension *const*, const char *); -SOAP_FMAC3 tt__ConfigDescriptionExtension ** SOAP_FMAC4 soap_in_PointerTott__ConfigDescriptionExtension(struct soap*, const char*, tt__ConfigDescriptionExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ConfigDescriptionExtension(struct soap*, tt__ConfigDescriptionExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ConfigDescriptionExtension ** SOAP_FMAC4 soap_get_PointerTott__ConfigDescriptionExtension(struct soap*, tt__ConfigDescriptionExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ItemList_DEFINED -#define SOAP_TYPE_PointerTott__ItemList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ItemList(struct soap*, tt__ItemList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ItemList(struct soap*, const char *, int, tt__ItemList *const*, const char *); -SOAP_FMAC3 tt__ItemList ** SOAP_FMAC4 soap_in_PointerTott__ItemList(struct soap*, const char*, tt__ItemList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ItemList(struct soap*, tt__ItemList *const*, const char*, const char*); -SOAP_FMAC3 tt__ItemList ** SOAP_FMAC4 soap_get_PointerTott__ItemList(struct soap*, tt__ItemList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RuleEngineConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__RuleEngineConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RuleEngineConfigurationExtension(struct soap*, tt__RuleEngineConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RuleEngineConfigurationExtension(struct soap*, const char *, int, tt__RuleEngineConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__RuleEngineConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__RuleEngineConfigurationExtension(struct soap*, const char*, tt__RuleEngineConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RuleEngineConfigurationExtension(struct soap*, tt__RuleEngineConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__RuleEngineConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__RuleEngineConfigurationExtension(struct soap*, tt__RuleEngineConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsEngineConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsEngineConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsEngineConfigurationExtension(struct soap*, tt__AnalyticsEngineConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsEngineConfigurationExtension(struct soap*, const char *, int, tt__AnalyticsEngineConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__AnalyticsEngineConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsEngineConfigurationExtension(struct soap*, const char*, tt__AnalyticsEngineConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsEngineConfigurationExtension(struct soap*, tt__AnalyticsEngineConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsEngineConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsEngineConfigurationExtension(struct soap*, tt__AnalyticsEngineConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Config_DEFINED -#define SOAP_TYPE_PointerTott__Config_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Config(struct soap*, tt__Config *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Config(struct soap*, const char *, int, tt__Config *const*, const char *); -SOAP_FMAC3 tt__Config ** SOAP_FMAC4 soap_in_PointerTott__Config(struct soap*, const char*, tt__Config **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Config(struct soap*, tt__Config *const*, const char*, const char*); -SOAP_FMAC3 tt__Config ** SOAP_FMAC4 soap_get_PointerTott__Config(struct soap*, tt__Config **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ItemListDescriptionExtension_DEFINED -#define SOAP_TYPE_PointerTott__ItemListDescriptionExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ItemListDescriptionExtension(struct soap*, tt__ItemListDescriptionExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ItemListDescriptionExtension(struct soap*, const char *, int, tt__ItemListDescriptionExtension *const*, const char *); -SOAP_FMAC3 tt__ItemListDescriptionExtension ** SOAP_FMAC4 soap_in_PointerTott__ItemListDescriptionExtension(struct soap*, const char*, tt__ItemListDescriptionExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ItemListDescriptionExtension(struct soap*, tt__ItemListDescriptionExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ItemListDescriptionExtension ** SOAP_FMAC4 soap_get_PointerTott__ItemListDescriptionExtension(struct soap*, tt__ItemListDescriptionExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MessageDescriptionExtension_DEFINED -#define SOAP_TYPE_PointerTott__MessageDescriptionExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MessageDescriptionExtension(struct soap*, tt__MessageDescriptionExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MessageDescriptionExtension(struct soap*, const char *, int, tt__MessageDescriptionExtension *const*, const char *); -SOAP_FMAC3 tt__MessageDescriptionExtension ** SOAP_FMAC4 soap_in_PointerTott__MessageDescriptionExtension(struct soap*, const char*, tt__MessageDescriptionExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MessageDescriptionExtension(struct soap*, tt__MessageDescriptionExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__MessageDescriptionExtension ** SOAP_FMAC4 soap_get_PointerTott__MessageDescriptionExtension(struct soap*, tt__MessageDescriptionExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ItemListDescription_DEFINED -#define SOAP_TYPE_PointerTott__ItemListDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ItemListDescription(struct soap*, tt__ItemListDescription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ItemListDescription(struct soap*, const char *, int, tt__ItemListDescription *const*, const char *); -SOAP_FMAC3 tt__ItemListDescription ** SOAP_FMAC4 soap_in_PointerTott__ItemListDescription(struct soap*, const char*, tt__ItemListDescription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ItemListDescription(struct soap*, tt__ItemListDescription *const*, const char*, const char*); -SOAP_FMAC3 tt__ItemListDescription ** SOAP_FMAC4 soap_get_PointerTott__ItemListDescription(struct soap*, tt__ItemListDescription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ItemListExtension_DEFINED -#define SOAP_TYPE_PointerTott__ItemListExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ItemListExtension(struct soap*, tt__ItemListExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ItemListExtension(struct soap*, const char *, int, tt__ItemListExtension *const*, const char *); -SOAP_FMAC3 tt__ItemListExtension ** SOAP_FMAC4 soap_in_PointerTott__ItemListExtension(struct soap*, const char*, tt__ItemListExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ItemListExtension(struct soap*, tt__ItemListExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ItemListExtension ** SOAP_FMAC4 soap_get_PointerTott__ItemListExtension(struct soap*, tt__ItemListExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusOptions20Extension_DEFINED -#define SOAP_TYPE_PointerTott__FocusOptions20Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusOptions20Extension(struct soap*, tt__FocusOptions20Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusOptions20Extension(struct soap*, const char *, int, tt__FocusOptions20Extension *const*, const char *); -SOAP_FMAC3 tt__FocusOptions20Extension ** SOAP_FMAC4 soap_in_PointerTott__FocusOptions20Extension(struct soap*, const char*, tt__FocusOptions20Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusOptions20Extension(struct soap*, tt__FocusOptions20Extension *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusOptions20Extension ** SOAP_FMAC4 soap_get_PointerTott__FocusOptions20Extension(struct soap*, tt__FocusOptions20Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WhiteBalanceOptions20Extension_DEFINED -#define SOAP_TYPE_PointerTott__WhiteBalanceOptions20Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WhiteBalanceOptions20Extension(struct soap*, tt__WhiteBalanceOptions20Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WhiteBalanceOptions20Extension(struct soap*, const char *, int, tt__WhiteBalanceOptions20Extension *const*, const char *); -SOAP_FMAC3 tt__WhiteBalanceOptions20Extension ** SOAP_FMAC4 soap_in_PointerTott__WhiteBalanceOptions20Extension(struct soap*, const char*, tt__WhiteBalanceOptions20Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WhiteBalanceOptions20Extension(struct soap*, tt__WhiteBalanceOptions20Extension *const*, const char*, const char*); -SOAP_FMAC3 tt__WhiteBalanceOptions20Extension ** SOAP_FMAC4 soap_get_PointerTott__WhiteBalanceOptions20Extension(struct soap*, tt__WhiteBalanceOptions20Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusConfiguration20Extension_DEFINED -#define SOAP_TYPE_PointerTott__FocusConfiguration20Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusConfiguration20Extension(struct soap*, tt__FocusConfiguration20Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusConfiguration20Extension(struct soap*, const char *, int, tt__FocusConfiguration20Extension *const*, const char *); -SOAP_FMAC3 tt__FocusConfiguration20Extension ** SOAP_FMAC4 soap_in_PointerTott__FocusConfiguration20Extension(struct soap*, const char*, tt__FocusConfiguration20Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusConfiguration20Extension(struct soap*, tt__FocusConfiguration20Extension *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusConfiguration20Extension ** SOAP_FMAC4 soap_get_PointerTott__FocusConfiguration20Extension(struct soap*, tt__FocusConfiguration20Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WhiteBalance20Extension_DEFINED -#define SOAP_TYPE_PointerTott__WhiteBalance20Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WhiteBalance20Extension(struct soap*, tt__WhiteBalance20Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WhiteBalance20Extension(struct soap*, const char *, int, tt__WhiteBalance20Extension *const*, const char *); -SOAP_FMAC3 tt__WhiteBalance20Extension ** SOAP_FMAC4 soap_in_PointerTott__WhiteBalance20Extension(struct soap*, const char*, tt__WhiteBalance20Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WhiteBalance20Extension(struct soap*, tt__WhiteBalance20Extension *const*, const char*, const char*); -SOAP_FMAC3 tt__WhiteBalance20Extension ** SOAP_FMAC4 soap_get_PointerTott__WhiteBalance20Extension(struct soap*, tt__WhiteBalance20Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RelativeFocusOptions20_DEFINED -#define SOAP_TYPE_PointerTott__RelativeFocusOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RelativeFocusOptions20(struct soap*, tt__RelativeFocusOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RelativeFocusOptions20(struct soap*, const char *, int, tt__RelativeFocusOptions20 *const*, const char *); -SOAP_FMAC3 tt__RelativeFocusOptions20 ** SOAP_FMAC4 soap_in_PointerTott__RelativeFocusOptions20(struct soap*, const char*, tt__RelativeFocusOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RelativeFocusOptions20(struct soap*, tt__RelativeFocusOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__RelativeFocusOptions20 ** SOAP_FMAC4 soap_get_PointerTott__RelativeFocusOptions20(struct soap*, tt__RelativeFocusOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, tt__IrCutFilterAutoAdjustmentOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, const char *, int, tt__IrCutFilterAutoAdjustmentOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, const char*, tt__IrCutFilterAutoAdjustmentOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, tt__IrCutFilterAutoAdjustmentOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__IrCutFilterAutoAdjustmentOptionsExtension(struct soap*, tt__IrCutFilterAutoAdjustmentOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImageStabilizationOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__ImageStabilizationOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImageStabilizationOptionsExtension(struct soap*, tt__ImageStabilizationOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImageStabilizationOptionsExtension(struct soap*, const char *, int, tt__ImageStabilizationOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__ImageStabilizationOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__ImageStabilizationOptionsExtension(struct soap*, const char*, tt__ImageStabilizationOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImageStabilizationOptionsExtension(struct soap*, tt__ImageStabilizationOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ImageStabilizationOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__ImageStabilizationOptionsExtension(struct soap*, tt__ImageStabilizationOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingOptions20Extension4_DEFINED -#define SOAP_TYPE_PointerTott__ImagingOptions20Extension4_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingOptions20Extension4(struct soap*, tt__ImagingOptions20Extension4 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingOptions20Extension4(struct soap*, const char *, int, tt__ImagingOptions20Extension4 *const*, const char *); -SOAP_FMAC3 tt__ImagingOptions20Extension4 ** SOAP_FMAC4 soap_in_PointerTott__ImagingOptions20Extension4(struct soap*, const char*, tt__ImagingOptions20Extension4 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingOptions20Extension4(struct soap*, tt__ImagingOptions20Extension4 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension4 ** SOAP_FMAC4 soap_get_PointerTott__ImagingOptions20Extension4(struct soap*, tt__ImagingOptions20Extension4 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NoiseReductionOptions_DEFINED -#define SOAP_TYPE_PointerTott__NoiseReductionOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NoiseReductionOptions(struct soap*, tt__NoiseReductionOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NoiseReductionOptions(struct soap*, const char *, int, tt__NoiseReductionOptions *const*, const char *); -SOAP_FMAC3 tt__NoiseReductionOptions ** SOAP_FMAC4 soap_in_PointerTott__NoiseReductionOptions(struct soap*, const char*, tt__NoiseReductionOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NoiseReductionOptions(struct soap*, tt__NoiseReductionOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__NoiseReductionOptions ** SOAP_FMAC4 soap_get_PointerTott__NoiseReductionOptions(struct soap*, tt__NoiseReductionOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DefoggingOptions_DEFINED -#define SOAP_TYPE_PointerTott__DefoggingOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DefoggingOptions(struct soap*, tt__DefoggingOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DefoggingOptions(struct soap*, const char *, int, tt__DefoggingOptions *const*, const char *); -SOAP_FMAC3 tt__DefoggingOptions ** SOAP_FMAC4 soap_in_PointerTott__DefoggingOptions(struct soap*, const char*, tt__DefoggingOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DefoggingOptions(struct soap*, tt__DefoggingOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__DefoggingOptions ** SOAP_FMAC4 soap_get_PointerTott__DefoggingOptions(struct soap*, tt__DefoggingOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ToneCompensationOptions_DEFINED -#define SOAP_TYPE_PointerTott__ToneCompensationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ToneCompensationOptions(struct soap*, tt__ToneCompensationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ToneCompensationOptions(struct soap*, const char *, int, tt__ToneCompensationOptions *const*, const char *); -SOAP_FMAC3 tt__ToneCompensationOptions ** SOAP_FMAC4 soap_in_PointerTott__ToneCompensationOptions(struct soap*, const char*, tt__ToneCompensationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ToneCompensationOptions(struct soap*, tt__ToneCompensationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__ToneCompensationOptions ** SOAP_FMAC4 soap_get_PointerTott__ToneCompensationOptions(struct soap*, tt__ToneCompensationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingOptions20Extension3_DEFINED -#define SOAP_TYPE_PointerTott__ImagingOptions20Extension3_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingOptions20Extension3(struct soap*, tt__ImagingOptions20Extension3 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingOptions20Extension3(struct soap*, const char *, int, tt__ImagingOptions20Extension3 *const*, const char *); -SOAP_FMAC3 tt__ImagingOptions20Extension3 ** SOAP_FMAC4 soap_in_PointerTott__ImagingOptions20Extension3(struct soap*, const char*, tt__ImagingOptions20Extension3 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingOptions20Extension3(struct soap*, tt__ImagingOptions20Extension3 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension3 ** SOAP_FMAC4 soap_get_PointerTott__ImagingOptions20Extension3(struct soap*, tt__ImagingOptions20Extension3 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptions_DEFINED -#define SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IrCutFilterAutoAdjustmentOptions(struct soap*, tt__IrCutFilterAutoAdjustmentOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IrCutFilterAutoAdjustmentOptions(struct soap*, const char *, int, tt__IrCutFilterAutoAdjustmentOptions *const*, const char *); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptions ** SOAP_FMAC4 soap_in_PointerTott__IrCutFilterAutoAdjustmentOptions(struct soap*, const char*, tt__IrCutFilterAutoAdjustmentOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IrCutFilterAutoAdjustmentOptions(struct soap*, tt__IrCutFilterAutoAdjustmentOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentOptions ** SOAP_FMAC4 soap_get_PointerTott__IrCutFilterAutoAdjustmentOptions(struct soap*, tt__IrCutFilterAutoAdjustmentOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingOptions20Extension2_DEFINED -#define SOAP_TYPE_PointerTott__ImagingOptions20Extension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingOptions20Extension2(struct soap*, tt__ImagingOptions20Extension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingOptions20Extension2(struct soap*, const char *, int, tt__ImagingOptions20Extension2 *const*, const char *); -SOAP_FMAC3 tt__ImagingOptions20Extension2 ** SOAP_FMAC4 soap_in_PointerTott__ImagingOptions20Extension2(struct soap*, const char*, tt__ImagingOptions20Extension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingOptions20Extension2(struct soap*, tt__ImagingOptions20Extension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension2 ** SOAP_FMAC4 soap_get_PointerTott__ImagingOptions20Extension2(struct soap*, tt__ImagingOptions20Extension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImageStabilizationOptions_DEFINED -#define SOAP_TYPE_PointerTott__ImageStabilizationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImageStabilizationOptions(struct soap*, tt__ImageStabilizationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImageStabilizationOptions(struct soap*, const char *, int, tt__ImageStabilizationOptions *const*, const char *); -SOAP_FMAC3 tt__ImageStabilizationOptions ** SOAP_FMAC4 soap_in_PointerTott__ImageStabilizationOptions(struct soap*, const char*, tt__ImageStabilizationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImageStabilizationOptions(struct soap*, tt__ImageStabilizationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__ImageStabilizationOptions ** SOAP_FMAC4 soap_get_PointerTott__ImageStabilizationOptions(struct soap*, tt__ImageStabilizationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingOptions20Extension_DEFINED -#define SOAP_TYPE_PointerTott__ImagingOptions20Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingOptions20Extension(struct soap*, tt__ImagingOptions20Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingOptions20Extension(struct soap*, const char *, int, tt__ImagingOptions20Extension *const*, const char *); -SOAP_FMAC3 tt__ImagingOptions20Extension ** SOAP_FMAC4 soap_in_PointerTott__ImagingOptions20Extension(struct soap*, const char*, tt__ImagingOptions20Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingOptions20Extension(struct soap*, tt__ImagingOptions20Extension *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingOptions20Extension ** SOAP_FMAC4 soap_get_PointerTott__ImagingOptions20Extension(struct soap*, tt__ImagingOptions20Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WhiteBalanceOptions20_DEFINED -#define SOAP_TYPE_PointerTott__WhiteBalanceOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WhiteBalanceOptions20(struct soap*, tt__WhiteBalanceOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WhiteBalanceOptions20(struct soap*, const char *, int, tt__WhiteBalanceOptions20 *const*, const char *); -SOAP_FMAC3 tt__WhiteBalanceOptions20 ** SOAP_FMAC4 soap_in_PointerTott__WhiteBalanceOptions20(struct soap*, const char*, tt__WhiteBalanceOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WhiteBalanceOptions20(struct soap*, tt__WhiteBalanceOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__WhiteBalanceOptions20 ** SOAP_FMAC4 soap_get_PointerTott__WhiteBalanceOptions20(struct soap*, tt__WhiteBalanceOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WideDynamicRangeOptions20_DEFINED -#define SOAP_TYPE_PointerTott__WideDynamicRangeOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WideDynamicRangeOptions20(struct soap*, tt__WideDynamicRangeOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WideDynamicRangeOptions20(struct soap*, const char *, int, tt__WideDynamicRangeOptions20 *const*, const char *); -SOAP_FMAC3 tt__WideDynamicRangeOptions20 ** SOAP_FMAC4 soap_in_PointerTott__WideDynamicRangeOptions20(struct soap*, const char*, tt__WideDynamicRangeOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WideDynamicRangeOptions20(struct soap*, tt__WideDynamicRangeOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__WideDynamicRangeOptions20 ** SOAP_FMAC4 soap_get_PointerTott__WideDynamicRangeOptions20(struct soap*, tt__WideDynamicRangeOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusOptions20_DEFINED -#define SOAP_TYPE_PointerTott__FocusOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusOptions20(struct soap*, tt__FocusOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusOptions20(struct soap*, const char *, int, tt__FocusOptions20 *const*, const char *); -SOAP_FMAC3 tt__FocusOptions20 ** SOAP_FMAC4 soap_in_PointerTott__FocusOptions20(struct soap*, const char*, tt__FocusOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusOptions20(struct soap*, tt__FocusOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusOptions20 ** SOAP_FMAC4 soap_get_PointerTott__FocusOptions20(struct soap*, tt__FocusOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ExposureOptions20_DEFINED -#define SOAP_TYPE_PointerTott__ExposureOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ExposureOptions20(struct soap*, tt__ExposureOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ExposureOptions20(struct soap*, const char *, int, tt__ExposureOptions20 *const*, const char *); -SOAP_FMAC3 tt__ExposureOptions20 ** SOAP_FMAC4 soap_in_PointerTott__ExposureOptions20(struct soap*, const char*, tt__ExposureOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ExposureOptions20(struct soap*, tt__ExposureOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__ExposureOptions20 ** SOAP_FMAC4 soap_get_PointerTott__ExposureOptions20(struct soap*, tt__ExposureOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__BacklightCompensationOptions20_DEFINED -#define SOAP_TYPE_PointerTott__BacklightCompensationOptions20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__BacklightCompensationOptions20(struct soap*, tt__BacklightCompensationOptions20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__BacklightCompensationOptions20(struct soap*, const char *, int, tt__BacklightCompensationOptions20 *const*, const char *); -SOAP_FMAC3 tt__BacklightCompensationOptions20 ** SOAP_FMAC4 soap_in_PointerTott__BacklightCompensationOptions20(struct soap*, const char*, tt__BacklightCompensationOptions20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__BacklightCompensationOptions20(struct soap*, tt__BacklightCompensationOptions20 *const*, const char*, const char*); -SOAP_FMAC3 tt__BacklightCompensationOptions20 ** SOAP_FMAC4 soap_get_PointerTott__BacklightCompensationOptions20(struct soap*, tt__BacklightCompensationOptions20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DefoggingExtension_DEFINED -#define SOAP_TYPE_PointerTott__DefoggingExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DefoggingExtension(struct soap*, tt__DefoggingExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DefoggingExtension(struct soap*, const char *, int, tt__DefoggingExtension *const*, const char *); -SOAP_FMAC3 tt__DefoggingExtension ** SOAP_FMAC4 soap_in_PointerTott__DefoggingExtension(struct soap*, const char*, tt__DefoggingExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DefoggingExtension(struct soap*, tt__DefoggingExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__DefoggingExtension ** SOAP_FMAC4 soap_get_PointerTott__DefoggingExtension(struct soap*, tt__DefoggingExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ToneCompensationExtension_DEFINED -#define SOAP_TYPE_PointerTott__ToneCompensationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ToneCompensationExtension(struct soap*, tt__ToneCompensationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ToneCompensationExtension(struct soap*, const char *, int, tt__ToneCompensationExtension *const*, const char *); -SOAP_FMAC3 tt__ToneCompensationExtension ** SOAP_FMAC4 soap_in_PointerTott__ToneCompensationExtension(struct soap*, const char*, tt__ToneCompensationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ToneCompensationExtension(struct soap*, tt__ToneCompensationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ToneCompensationExtension ** SOAP_FMAC4 soap_get_PointerTott__ToneCompensationExtension(struct soap*, tt__ToneCompensationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ExposurePriority_DEFINED -#define SOAP_TYPE_PointerTott__ExposurePriority_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ExposurePriority(struct soap*, enum tt__ExposurePriority *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ExposurePriority(struct soap*, const char *, int, enum tt__ExposurePriority *const*, const char *); -SOAP_FMAC3 enum tt__ExposurePriority ** SOAP_FMAC4 soap_in_PointerTott__ExposurePriority(struct soap*, const char*, enum tt__ExposurePriority **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ExposurePriority(struct soap*, enum tt__ExposurePriority *const*, const char*, const char*); -SOAP_FMAC3 enum tt__ExposurePriority ** SOAP_FMAC4 soap_get_PointerTott__ExposurePriority(struct soap*, enum tt__ExposurePriority **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentExtension_DEFINED -#define SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustmentExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IrCutFilterAutoAdjustmentExtension(struct soap*, tt__IrCutFilterAutoAdjustmentExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IrCutFilterAutoAdjustmentExtension(struct soap*, const char *, int, tt__IrCutFilterAutoAdjustmentExtension *const*, const char *); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentExtension ** SOAP_FMAC4 soap_in_PointerTott__IrCutFilterAutoAdjustmentExtension(struct soap*, const char*, tt__IrCutFilterAutoAdjustmentExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IrCutFilterAutoAdjustmentExtension(struct soap*, tt__IrCutFilterAutoAdjustmentExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustmentExtension ** SOAP_FMAC4 soap_get_PointerTott__IrCutFilterAutoAdjustmentExtension(struct soap*, tt__IrCutFilterAutoAdjustmentExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImageStabilizationExtension_DEFINED -#define SOAP_TYPE_PointerTott__ImageStabilizationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImageStabilizationExtension(struct soap*, tt__ImageStabilizationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImageStabilizationExtension(struct soap*, const char *, int, tt__ImageStabilizationExtension *const*, const char *); -SOAP_FMAC3 tt__ImageStabilizationExtension ** SOAP_FMAC4 soap_in_PointerTott__ImageStabilizationExtension(struct soap*, const char*, tt__ImageStabilizationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImageStabilizationExtension(struct soap*, tt__ImageStabilizationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ImageStabilizationExtension ** SOAP_FMAC4 soap_get_PointerTott__ImageStabilizationExtension(struct soap*, tt__ImageStabilizationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingSettingsExtension204_DEFINED -#define SOAP_TYPE_PointerTott__ImagingSettingsExtension204_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingSettingsExtension204(struct soap*, tt__ImagingSettingsExtension204 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingSettingsExtension204(struct soap*, const char *, int, tt__ImagingSettingsExtension204 *const*, const char *); -SOAP_FMAC3 tt__ImagingSettingsExtension204 ** SOAP_FMAC4 soap_in_PointerTott__ImagingSettingsExtension204(struct soap*, const char*, tt__ImagingSettingsExtension204 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingSettingsExtension204(struct soap*, tt__ImagingSettingsExtension204 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension204 ** SOAP_FMAC4 soap_get_PointerTott__ImagingSettingsExtension204(struct soap*, tt__ImagingSettingsExtension204 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NoiseReduction_DEFINED -#define SOAP_TYPE_PointerTott__NoiseReduction_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NoiseReduction(struct soap*, tt__NoiseReduction *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NoiseReduction(struct soap*, const char *, int, tt__NoiseReduction *const*, const char *); -SOAP_FMAC3 tt__NoiseReduction ** SOAP_FMAC4 soap_in_PointerTott__NoiseReduction(struct soap*, const char*, tt__NoiseReduction **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NoiseReduction(struct soap*, tt__NoiseReduction *const*, const char*, const char*); -SOAP_FMAC3 tt__NoiseReduction ** SOAP_FMAC4 soap_get_PointerTott__NoiseReduction(struct soap*, tt__NoiseReduction **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Defogging_DEFINED -#define SOAP_TYPE_PointerTott__Defogging_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Defogging(struct soap*, tt__Defogging *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Defogging(struct soap*, const char *, int, tt__Defogging *const*, const char *); -SOAP_FMAC3 tt__Defogging ** SOAP_FMAC4 soap_in_PointerTott__Defogging(struct soap*, const char*, tt__Defogging **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Defogging(struct soap*, tt__Defogging *const*, const char*, const char*); -SOAP_FMAC3 tt__Defogging ** SOAP_FMAC4 soap_get_PointerTott__Defogging(struct soap*, tt__Defogging **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ToneCompensation_DEFINED -#define SOAP_TYPE_PointerTott__ToneCompensation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ToneCompensation(struct soap*, tt__ToneCompensation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ToneCompensation(struct soap*, const char *, int, tt__ToneCompensation *const*, const char *); -SOAP_FMAC3 tt__ToneCompensation ** SOAP_FMAC4 soap_in_PointerTott__ToneCompensation(struct soap*, const char*, tt__ToneCompensation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ToneCompensation(struct soap*, tt__ToneCompensation *const*, const char*, const char*); -SOAP_FMAC3 tt__ToneCompensation ** SOAP_FMAC4 soap_get_PointerTott__ToneCompensation(struct soap*, tt__ToneCompensation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingSettingsExtension203_DEFINED -#define SOAP_TYPE_PointerTott__ImagingSettingsExtension203_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingSettingsExtension203(struct soap*, tt__ImagingSettingsExtension203 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingSettingsExtension203(struct soap*, const char *, int, tt__ImagingSettingsExtension203 *const*, const char *); -SOAP_FMAC3 tt__ImagingSettingsExtension203 ** SOAP_FMAC4 soap_in_PointerTott__ImagingSettingsExtension203(struct soap*, const char*, tt__ImagingSettingsExtension203 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingSettingsExtension203(struct soap*, tt__ImagingSettingsExtension203 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension203 ** SOAP_FMAC4 soap_get_PointerTott__ImagingSettingsExtension203(struct soap*, tt__ImagingSettingsExtension203 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustment_DEFINED -#define SOAP_TYPE_PointerTott__IrCutFilterAutoAdjustment_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IrCutFilterAutoAdjustment(struct soap*, tt__IrCutFilterAutoAdjustment *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IrCutFilterAutoAdjustment(struct soap*, const char *, int, tt__IrCutFilterAutoAdjustment *const*, const char *); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustment ** SOAP_FMAC4 soap_in_PointerTott__IrCutFilterAutoAdjustment(struct soap*, const char*, tt__IrCutFilterAutoAdjustment **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IrCutFilterAutoAdjustment(struct soap*, tt__IrCutFilterAutoAdjustment *const*, const char*, const char*); -SOAP_FMAC3 tt__IrCutFilterAutoAdjustment ** SOAP_FMAC4 soap_get_PointerTott__IrCutFilterAutoAdjustment(struct soap*, tt__IrCutFilterAutoAdjustment **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingSettingsExtension202_DEFINED -#define SOAP_TYPE_PointerTott__ImagingSettingsExtension202_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingSettingsExtension202(struct soap*, tt__ImagingSettingsExtension202 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingSettingsExtension202(struct soap*, const char *, int, tt__ImagingSettingsExtension202 *const*, const char *); -SOAP_FMAC3 tt__ImagingSettingsExtension202 ** SOAP_FMAC4 soap_in_PointerTott__ImagingSettingsExtension202(struct soap*, const char*, tt__ImagingSettingsExtension202 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingSettingsExtension202(struct soap*, tt__ImagingSettingsExtension202 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension202 ** SOAP_FMAC4 soap_get_PointerTott__ImagingSettingsExtension202(struct soap*, tt__ImagingSettingsExtension202 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImageStabilization_DEFINED -#define SOAP_TYPE_PointerTott__ImageStabilization_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImageStabilization(struct soap*, tt__ImageStabilization *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImageStabilization(struct soap*, const char *, int, tt__ImageStabilization *const*, const char *); -SOAP_FMAC3 tt__ImageStabilization ** SOAP_FMAC4 soap_in_PointerTott__ImageStabilization(struct soap*, const char*, tt__ImageStabilization **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImageStabilization(struct soap*, tt__ImageStabilization *const*, const char*, const char*); -SOAP_FMAC3 tt__ImageStabilization ** SOAP_FMAC4 soap_get_PointerTott__ImageStabilization(struct soap*, tt__ImageStabilization **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingSettingsExtension20_DEFINED -#define SOAP_TYPE_PointerTott__ImagingSettingsExtension20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingSettingsExtension20(struct soap*, tt__ImagingSettingsExtension20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingSettingsExtension20(struct soap*, const char *, int, tt__ImagingSettingsExtension20 *const*, const char *); -SOAP_FMAC3 tt__ImagingSettingsExtension20 ** SOAP_FMAC4 soap_in_PointerTott__ImagingSettingsExtension20(struct soap*, const char*, tt__ImagingSettingsExtension20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingSettingsExtension20(struct soap*, tt__ImagingSettingsExtension20 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension20 ** SOAP_FMAC4 soap_get_PointerTott__ImagingSettingsExtension20(struct soap*, tt__ImagingSettingsExtension20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WhiteBalance20_DEFINED -#define SOAP_TYPE_PointerTott__WhiteBalance20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WhiteBalance20(struct soap*, tt__WhiteBalance20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WhiteBalance20(struct soap*, const char *, int, tt__WhiteBalance20 *const*, const char *); -SOAP_FMAC3 tt__WhiteBalance20 ** SOAP_FMAC4 soap_in_PointerTott__WhiteBalance20(struct soap*, const char*, tt__WhiteBalance20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WhiteBalance20(struct soap*, tt__WhiteBalance20 *const*, const char*, const char*); -SOAP_FMAC3 tt__WhiteBalance20 ** SOAP_FMAC4 soap_get_PointerTott__WhiteBalance20(struct soap*, tt__WhiteBalance20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WideDynamicRange20_DEFINED -#define SOAP_TYPE_PointerTott__WideDynamicRange20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WideDynamicRange20(struct soap*, tt__WideDynamicRange20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WideDynamicRange20(struct soap*, const char *, int, tt__WideDynamicRange20 *const*, const char *); -SOAP_FMAC3 tt__WideDynamicRange20 ** SOAP_FMAC4 soap_in_PointerTott__WideDynamicRange20(struct soap*, const char*, tt__WideDynamicRange20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WideDynamicRange20(struct soap*, tt__WideDynamicRange20 *const*, const char*, const char*); -SOAP_FMAC3 tt__WideDynamicRange20 ** SOAP_FMAC4 soap_get_PointerTott__WideDynamicRange20(struct soap*, tt__WideDynamicRange20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusConfiguration20_DEFINED -#define SOAP_TYPE_PointerTott__FocusConfiguration20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusConfiguration20(struct soap*, tt__FocusConfiguration20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusConfiguration20(struct soap*, const char *, int, tt__FocusConfiguration20 *const*, const char *); -SOAP_FMAC3 tt__FocusConfiguration20 ** SOAP_FMAC4 soap_in_PointerTott__FocusConfiguration20(struct soap*, const char*, tt__FocusConfiguration20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusConfiguration20(struct soap*, tt__FocusConfiguration20 *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusConfiguration20 ** SOAP_FMAC4 soap_get_PointerTott__FocusConfiguration20(struct soap*, tt__FocusConfiguration20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Exposure20_DEFINED -#define SOAP_TYPE_PointerTott__Exposure20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Exposure20(struct soap*, tt__Exposure20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Exposure20(struct soap*, const char *, int, tt__Exposure20 *const*, const char *); -SOAP_FMAC3 tt__Exposure20 ** SOAP_FMAC4 soap_in_PointerTott__Exposure20(struct soap*, const char*, tt__Exposure20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Exposure20(struct soap*, tt__Exposure20 *const*, const char*, const char*); -SOAP_FMAC3 tt__Exposure20 ** SOAP_FMAC4 soap_get_PointerTott__Exposure20(struct soap*, tt__Exposure20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__BacklightCompensation20_DEFINED -#define SOAP_TYPE_PointerTott__BacklightCompensation20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__BacklightCompensation20(struct soap*, tt__BacklightCompensation20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__BacklightCompensation20(struct soap*, const char *, int, tt__BacklightCompensation20 *const*, const char *); -SOAP_FMAC3 tt__BacklightCompensation20 ** SOAP_FMAC4 soap_in_PointerTott__BacklightCompensation20(struct soap*, const char*, tt__BacklightCompensation20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__BacklightCompensation20(struct soap*, tt__BacklightCompensation20 *const*, const char*, const char*); -SOAP_FMAC3 tt__BacklightCompensation20 ** SOAP_FMAC4 soap_get_PointerTott__BacklightCompensation20(struct soap*, tt__BacklightCompensation20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusStatus20Extension_DEFINED -#define SOAP_TYPE_PointerTott__FocusStatus20Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusStatus20Extension(struct soap*, tt__FocusStatus20Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusStatus20Extension(struct soap*, const char *, int, tt__FocusStatus20Extension *const*, const char *); -SOAP_FMAC3 tt__FocusStatus20Extension ** SOAP_FMAC4 soap_in_PointerTott__FocusStatus20Extension(struct soap*, const char*, tt__FocusStatus20Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusStatus20Extension(struct soap*, tt__FocusStatus20Extension *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusStatus20Extension ** SOAP_FMAC4 soap_get_PointerTott__FocusStatus20Extension(struct soap*, tt__FocusStatus20Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingStatus20Extension_DEFINED -#define SOAP_TYPE_PointerTott__ImagingStatus20Extension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingStatus20Extension(struct soap*, tt__ImagingStatus20Extension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingStatus20Extension(struct soap*, const char *, int, tt__ImagingStatus20Extension *const*, const char *); -SOAP_FMAC3 tt__ImagingStatus20Extension ** SOAP_FMAC4 soap_in_PointerTott__ImagingStatus20Extension(struct soap*, const char*, tt__ImagingStatus20Extension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingStatus20Extension(struct soap*, tt__ImagingStatus20Extension *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingStatus20Extension ** SOAP_FMAC4 soap_get_PointerTott__ImagingStatus20Extension(struct soap*, tt__ImagingStatus20Extension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusStatus20_DEFINED -#define SOAP_TYPE_PointerTott__FocusStatus20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusStatus20(struct soap*, tt__FocusStatus20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusStatus20(struct soap*, const char *, int, tt__FocusStatus20 *const*, const char *); -SOAP_FMAC3 tt__FocusStatus20 ** SOAP_FMAC4 soap_in_PointerTott__FocusStatus20(struct soap*, const char*, tt__FocusStatus20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusStatus20(struct soap*, tt__FocusStatus20 *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusStatus20 ** SOAP_FMAC4 soap_get_PointerTott__FocusStatus20(struct soap*, tt__FocusStatus20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ContinuousFocusOptions_DEFINED -#define SOAP_TYPE_PointerTott__ContinuousFocusOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ContinuousFocusOptions(struct soap*, tt__ContinuousFocusOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ContinuousFocusOptions(struct soap*, const char *, int, tt__ContinuousFocusOptions *const*, const char *); -SOAP_FMAC3 tt__ContinuousFocusOptions ** SOAP_FMAC4 soap_in_PointerTott__ContinuousFocusOptions(struct soap*, const char*, tt__ContinuousFocusOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ContinuousFocusOptions(struct soap*, tt__ContinuousFocusOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__ContinuousFocusOptions ** SOAP_FMAC4 soap_get_PointerTott__ContinuousFocusOptions(struct soap*, tt__ContinuousFocusOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RelativeFocusOptions_DEFINED -#define SOAP_TYPE_PointerTott__RelativeFocusOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RelativeFocusOptions(struct soap*, tt__RelativeFocusOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RelativeFocusOptions(struct soap*, const char *, int, tt__RelativeFocusOptions *const*, const char *); -SOAP_FMAC3 tt__RelativeFocusOptions ** SOAP_FMAC4 soap_in_PointerTott__RelativeFocusOptions(struct soap*, const char*, tt__RelativeFocusOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RelativeFocusOptions(struct soap*, tt__RelativeFocusOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__RelativeFocusOptions ** SOAP_FMAC4 soap_get_PointerTott__RelativeFocusOptions(struct soap*, tt__RelativeFocusOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AbsoluteFocusOptions_DEFINED -#define SOAP_TYPE_PointerTott__AbsoluteFocusOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AbsoluteFocusOptions(struct soap*, tt__AbsoluteFocusOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AbsoluteFocusOptions(struct soap*, const char *, int, tt__AbsoluteFocusOptions *const*, const char *); -SOAP_FMAC3 tt__AbsoluteFocusOptions ** SOAP_FMAC4 soap_in_PointerTott__AbsoluteFocusOptions(struct soap*, const char*, tt__AbsoluteFocusOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AbsoluteFocusOptions(struct soap*, tt__AbsoluteFocusOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__AbsoluteFocusOptions ** SOAP_FMAC4 soap_get_PointerTott__AbsoluteFocusOptions(struct soap*, tt__AbsoluteFocusOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ContinuousFocus_DEFINED -#define SOAP_TYPE_PointerTott__ContinuousFocus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ContinuousFocus(struct soap*, tt__ContinuousFocus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ContinuousFocus(struct soap*, const char *, int, tt__ContinuousFocus *const*, const char *); -SOAP_FMAC3 tt__ContinuousFocus ** SOAP_FMAC4 soap_in_PointerTott__ContinuousFocus(struct soap*, const char*, tt__ContinuousFocus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ContinuousFocus(struct soap*, tt__ContinuousFocus *const*, const char*, const char*); -SOAP_FMAC3 tt__ContinuousFocus ** SOAP_FMAC4 soap_get_PointerTott__ContinuousFocus(struct soap*, tt__ContinuousFocus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RelativeFocus_DEFINED -#define SOAP_TYPE_PointerTott__RelativeFocus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RelativeFocus(struct soap*, tt__RelativeFocus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RelativeFocus(struct soap*, const char *, int, tt__RelativeFocus *const*, const char *); -SOAP_FMAC3 tt__RelativeFocus ** SOAP_FMAC4 soap_in_PointerTott__RelativeFocus(struct soap*, const char*, tt__RelativeFocus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RelativeFocus(struct soap*, tt__RelativeFocus *const*, const char*, const char*); -SOAP_FMAC3 tt__RelativeFocus ** SOAP_FMAC4 soap_get_PointerTott__RelativeFocus(struct soap*, tt__RelativeFocus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AbsoluteFocus_DEFINED -#define SOAP_TYPE_PointerTott__AbsoluteFocus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AbsoluteFocus(struct soap*, tt__AbsoluteFocus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AbsoluteFocus(struct soap*, const char *, int, tt__AbsoluteFocus *const*, const char *); -SOAP_FMAC3 tt__AbsoluteFocus ** SOAP_FMAC4 soap_in_PointerTott__AbsoluteFocus(struct soap*, const char*, tt__AbsoluteFocus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AbsoluteFocus(struct soap*, tt__AbsoluteFocus *const*, const char*, const char*); -SOAP_FMAC3 tt__AbsoluteFocus ** SOAP_FMAC4 soap_get_PointerTott__AbsoluteFocus(struct soap*, tt__AbsoluteFocus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WhiteBalanceOptions_DEFINED -#define SOAP_TYPE_PointerTott__WhiteBalanceOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WhiteBalanceOptions(struct soap*, tt__WhiteBalanceOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WhiteBalanceOptions(struct soap*, const char *, int, tt__WhiteBalanceOptions *const*, const char *); -SOAP_FMAC3 tt__WhiteBalanceOptions ** SOAP_FMAC4 soap_in_PointerTott__WhiteBalanceOptions(struct soap*, const char*, tt__WhiteBalanceOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WhiteBalanceOptions(struct soap*, tt__WhiteBalanceOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__WhiteBalanceOptions ** SOAP_FMAC4 soap_get_PointerTott__WhiteBalanceOptions(struct soap*, tt__WhiteBalanceOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WideDynamicRangeOptions_DEFINED -#define SOAP_TYPE_PointerTott__WideDynamicRangeOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WideDynamicRangeOptions(struct soap*, tt__WideDynamicRangeOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WideDynamicRangeOptions(struct soap*, const char *, int, tt__WideDynamicRangeOptions *const*, const char *); -SOAP_FMAC3 tt__WideDynamicRangeOptions ** SOAP_FMAC4 soap_in_PointerTott__WideDynamicRangeOptions(struct soap*, const char*, tt__WideDynamicRangeOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WideDynamicRangeOptions(struct soap*, tt__WideDynamicRangeOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__WideDynamicRangeOptions ** SOAP_FMAC4 soap_get_PointerTott__WideDynamicRangeOptions(struct soap*, tt__WideDynamicRangeOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusOptions_DEFINED -#define SOAP_TYPE_PointerTott__FocusOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusOptions(struct soap*, tt__FocusOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusOptions(struct soap*, const char *, int, tt__FocusOptions *const*, const char *); -SOAP_FMAC3 tt__FocusOptions ** SOAP_FMAC4 soap_in_PointerTott__FocusOptions(struct soap*, const char*, tt__FocusOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusOptions(struct soap*, tt__FocusOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusOptions ** SOAP_FMAC4 soap_get_PointerTott__FocusOptions(struct soap*, tt__FocusOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ExposureOptions_DEFINED -#define SOAP_TYPE_PointerTott__ExposureOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ExposureOptions(struct soap*, tt__ExposureOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ExposureOptions(struct soap*, const char *, int, tt__ExposureOptions *const*, const char *); -SOAP_FMAC3 tt__ExposureOptions ** SOAP_FMAC4 soap_in_PointerTott__ExposureOptions(struct soap*, const char*, tt__ExposureOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ExposureOptions(struct soap*, tt__ExposureOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__ExposureOptions ** SOAP_FMAC4 soap_get_PointerTott__ExposureOptions(struct soap*, tt__ExposureOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__BacklightCompensationOptions_DEFINED -#define SOAP_TYPE_PointerTott__BacklightCompensationOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__BacklightCompensationOptions(struct soap*, tt__BacklightCompensationOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__BacklightCompensationOptions(struct soap*, const char *, int, tt__BacklightCompensationOptions *const*, const char *); -SOAP_FMAC3 tt__BacklightCompensationOptions ** SOAP_FMAC4 soap_in_PointerTott__BacklightCompensationOptions(struct soap*, const char*, tt__BacklightCompensationOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__BacklightCompensationOptions(struct soap*, tt__BacklightCompensationOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__BacklightCompensationOptions ** SOAP_FMAC4 soap_get_PointerTott__BacklightCompensationOptions(struct soap*, tt__BacklightCompensationOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Rectangle_DEFINED -#define SOAP_TYPE_PointerTott__Rectangle_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Rectangle(struct soap*, tt__Rectangle *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Rectangle(struct soap*, const char *, int, tt__Rectangle *const*, const char *); -SOAP_FMAC3 tt__Rectangle ** SOAP_FMAC4 soap_in_PointerTott__Rectangle(struct soap*, const char*, tt__Rectangle **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Rectangle(struct soap*, tt__Rectangle *const*, const char*, const char*); -SOAP_FMAC3 tt__Rectangle ** SOAP_FMAC4 soap_get_PointerTott__Rectangle(struct soap*, tt__Rectangle **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingSettingsExtension_DEFINED -#define SOAP_TYPE_PointerTott__ImagingSettingsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingSettingsExtension(struct soap*, tt__ImagingSettingsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingSettingsExtension(struct soap*, const char *, int, tt__ImagingSettingsExtension *const*, const char *); -SOAP_FMAC3 tt__ImagingSettingsExtension ** SOAP_FMAC4 soap_in_PointerTott__ImagingSettingsExtension(struct soap*, const char*, tt__ImagingSettingsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingSettingsExtension(struct soap*, tt__ImagingSettingsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingSettingsExtension ** SOAP_FMAC4 soap_get_PointerTott__ImagingSettingsExtension(struct soap*, tt__ImagingSettingsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WhiteBalance_DEFINED -#define SOAP_TYPE_PointerTott__WhiteBalance_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WhiteBalance(struct soap*, tt__WhiteBalance *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WhiteBalance(struct soap*, const char *, int, tt__WhiteBalance *const*, const char *); -SOAP_FMAC3 tt__WhiteBalance ** SOAP_FMAC4 soap_in_PointerTott__WhiteBalance(struct soap*, const char*, tt__WhiteBalance **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WhiteBalance(struct soap*, tt__WhiteBalance *const*, const char*, const char*); -SOAP_FMAC3 tt__WhiteBalance ** SOAP_FMAC4 soap_get_PointerTott__WhiteBalance(struct soap*, tt__WhiteBalance **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__WideDynamicRange_DEFINED -#define SOAP_TYPE_PointerTott__WideDynamicRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__WideDynamicRange(struct soap*, tt__WideDynamicRange *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__WideDynamicRange(struct soap*, const char *, int, tt__WideDynamicRange *const*, const char *); -SOAP_FMAC3 tt__WideDynamicRange ** SOAP_FMAC4 soap_in_PointerTott__WideDynamicRange(struct soap*, const char*, tt__WideDynamicRange **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__WideDynamicRange(struct soap*, tt__WideDynamicRange *const*, const char*, const char*); -SOAP_FMAC3 tt__WideDynamicRange ** SOAP_FMAC4 soap_get_PointerTott__WideDynamicRange(struct soap*, tt__WideDynamicRange **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IrCutFilterMode_DEFINED -#define SOAP_TYPE_PointerTott__IrCutFilterMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IrCutFilterMode(struct soap*, enum tt__IrCutFilterMode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IrCutFilterMode(struct soap*, const char *, int, enum tt__IrCutFilterMode *const*, const char *); -SOAP_FMAC3 enum tt__IrCutFilterMode ** SOAP_FMAC4 soap_in_PointerTott__IrCutFilterMode(struct soap*, const char*, enum tt__IrCutFilterMode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IrCutFilterMode(struct soap*, enum tt__IrCutFilterMode *const*, const char*, const char*); -SOAP_FMAC3 enum tt__IrCutFilterMode ** SOAP_FMAC4 soap_get_PointerTott__IrCutFilterMode(struct soap*, enum tt__IrCutFilterMode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__FocusConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusConfiguration(struct soap*, tt__FocusConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusConfiguration(struct soap*, const char *, int, tt__FocusConfiguration *const*, const char *); -SOAP_FMAC3 tt__FocusConfiguration ** SOAP_FMAC4 soap_in_PointerTott__FocusConfiguration(struct soap*, const char*, tt__FocusConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusConfiguration(struct soap*, tt__FocusConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusConfiguration ** SOAP_FMAC4 soap_get_PointerTott__FocusConfiguration(struct soap*, tt__FocusConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Exposure_DEFINED -#define SOAP_TYPE_PointerTott__Exposure_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Exposure(struct soap*, tt__Exposure *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Exposure(struct soap*, const char *, int, tt__Exposure *const*, const char *); -SOAP_FMAC3 tt__Exposure ** SOAP_FMAC4 soap_in_PointerTott__Exposure(struct soap*, const char*, tt__Exposure **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Exposure(struct soap*, tt__Exposure *const*, const char*, const char*); -SOAP_FMAC3 tt__Exposure ** SOAP_FMAC4 soap_get_PointerTott__Exposure(struct soap*, tt__Exposure **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__BacklightCompensation_DEFINED -#define SOAP_TYPE_PointerTott__BacklightCompensation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__BacklightCompensation(struct soap*, tt__BacklightCompensation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__BacklightCompensation(struct soap*, const char *, int, tt__BacklightCompensation *const*, const char *); -SOAP_FMAC3 tt__BacklightCompensation ** SOAP_FMAC4 soap_in_PointerTott__BacklightCompensation(struct soap*, const char*, tt__BacklightCompensation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__BacklightCompensation(struct soap*, tt__BacklightCompensation *const*, const char*, const char*); -SOAP_FMAC3 tt__BacklightCompensation ** SOAP_FMAC4 soap_get_PointerTott__BacklightCompensation(struct soap*, tt__BacklightCompensation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FocusStatus_DEFINED -#define SOAP_TYPE_PointerTott__FocusStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FocusStatus(struct soap*, tt__FocusStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FocusStatus(struct soap*, const char *, int, tt__FocusStatus *const*, const char *); -SOAP_FMAC3 tt__FocusStatus ** SOAP_FMAC4 soap_in_PointerTott__FocusStatus(struct soap*, const char*, tt__FocusStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FocusStatus(struct soap*, tt__FocusStatus *const*, const char*, const char*); -SOAP_FMAC3 tt__FocusStatus ** SOAP_FMAC4 soap_get_PointerTott__FocusStatus(struct soap*, tt__FocusStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourStartingConditionOptionsExtension(struct soap*, tt__PTZPresetTourStartingConditionOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourStartingConditionOptionsExtension(struct soap*, const char *, int, tt__PTZPresetTourStartingConditionOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourStartingConditionOptionsExtension(struct soap*, const char*, tt__PTZPresetTourStartingConditionOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourStartingConditionOptionsExtension(struct soap*, tt__PTZPresetTourStartingConditionOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourStartingConditionOptionsExtension(struct soap*, tt__PTZPresetTourStartingConditionOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourPresetDetailOptionsExtension(struct soap*, tt__PTZPresetTourPresetDetailOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourPresetDetailOptionsExtension(struct soap*, const char *, int, tt__PTZPresetTourPresetDetailOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourPresetDetailOptionsExtension(struct soap*, const char*, tt__PTZPresetTourPresetDetailOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourPresetDetailOptionsExtension(struct soap*, tt__PTZPresetTourPresetDetailOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourPresetDetailOptionsExtension(struct soap*, tt__PTZPresetTourPresetDetailOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptions_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourPresetDetailOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourPresetDetailOptions(struct soap*, tt__PTZPresetTourPresetDetailOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourPresetDetailOptions(struct soap*, const char *, int, tt__PTZPresetTourPresetDetailOptions *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptions ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourPresetDetailOptions(struct soap*, const char*, tt__PTZPresetTourPresetDetailOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourPresetDetailOptions(struct soap*, tt__PTZPresetTourPresetDetailOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourPresetDetailOptions ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourPresetDetailOptions(struct soap*, tt__PTZPresetTourPresetDetailOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourSpotOptions_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourSpotOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourSpotOptions(struct soap*, tt__PTZPresetTourSpotOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourSpotOptions(struct soap*, const char *, int, tt__PTZPresetTourSpotOptions *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourSpotOptions ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourSpotOptions(struct soap*, const char*, tt__PTZPresetTourSpotOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourSpotOptions(struct soap*, tt__PTZPresetTourSpotOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourSpotOptions ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourSpotOptions(struct soap*, tt__PTZPresetTourSpotOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptions_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourStartingConditionOptions(struct soap*, tt__PTZPresetTourStartingConditionOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourStartingConditionOptions(struct soap*, const char *, int, tt__PTZPresetTourStartingConditionOptions *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptions ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourStartingConditionOptions(struct soap*, const char*, tt__PTZPresetTourStartingConditionOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourStartingConditionOptions(struct soap*, tt__PTZPresetTourStartingConditionOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionOptions ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourStartingConditionOptions(struct soap*, tt__PTZPresetTourStartingConditionOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourStartingConditionExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourStartingConditionExtension(struct soap*, tt__PTZPresetTourStartingConditionExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourStartingConditionExtension(struct soap*, const char *, int, tt__PTZPresetTourStartingConditionExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourStartingConditionExtension(struct soap*, const char*, tt__PTZPresetTourStartingConditionExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourStartingConditionExtension(struct soap*, tt__PTZPresetTourStartingConditionExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingConditionExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourStartingConditionExtension(struct soap*, tt__PTZPresetTourStartingConditionExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourDirection_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourDirection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourDirection(struct soap*, enum tt__PTZPresetTourDirection *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourDirection(struct soap*, const char *, int, enum tt__PTZPresetTourDirection *const*, const char *); -SOAP_FMAC3 enum tt__PTZPresetTourDirection ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourDirection(struct soap*, const char*, enum tt__PTZPresetTourDirection **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourDirection(struct soap*, enum tt__PTZPresetTourDirection *const*, const char*, const char*); -SOAP_FMAC3 enum tt__PTZPresetTourDirection ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourDirection(struct soap*, enum tt__PTZPresetTourDirection **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourStatusExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourStatusExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourStatusExtension(struct soap*, tt__PTZPresetTourStatusExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourStatusExtension(struct soap*, const char *, int, tt__PTZPresetTourStatusExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourStatusExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourStatusExtension(struct soap*, const char*, tt__PTZPresetTourStatusExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourStatusExtension(struct soap*, tt__PTZPresetTourStatusExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourStatusExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourStatusExtension(struct soap*, tt__PTZPresetTourStatusExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourTypeExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourTypeExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourTypeExtension(struct soap*, tt__PTZPresetTourTypeExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourTypeExtension(struct soap*, const char *, int, tt__PTZPresetTourTypeExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourTypeExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourTypeExtension(struct soap*, const char*, tt__PTZPresetTourTypeExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourTypeExtension(struct soap*, tt__PTZPresetTourTypeExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourTypeExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourTypeExtension(struct soap*, tt__PTZPresetTourTypeExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourSpotExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourSpotExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourSpotExtension(struct soap*, tt__PTZPresetTourSpotExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourSpotExtension(struct soap*, const char *, int, tt__PTZPresetTourSpotExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourSpotExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourSpotExtension(struct soap*, const char*, tt__PTZPresetTourSpotExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourSpotExtension(struct soap*, tt__PTZPresetTourSpotExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourSpotExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourSpotExtension(struct soap*, tt__PTZPresetTourSpotExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZSpeed_DEFINED -#define SOAP_TYPE_PointerTott__PTZSpeed_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZSpeed(struct soap*, tt__PTZSpeed *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZSpeed(struct soap*, const char *, int, tt__PTZSpeed *const*, const char *); -SOAP_FMAC3 tt__PTZSpeed ** SOAP_FMAC4 soap_in_PointerTott__PTZSpeed(struct soap*, const char*, tt__PTZSpeed **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZSpeed(struct soap*, tt__PTZSpeed *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZSpeed ** SOAP_FMAC4 soap_get_PointerTott__PTZSpeed(struct soap*, tt__PTZSpeed **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourPresetDetail_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourPresetDetail_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourPresetDetail(struct soap*, tt__PTZPresetTourPresetDetail *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourPresetDetail(struct soap*, const char *, int, tt__PTZPresetTourPresetDetail *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourPresetDetail ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourPresetDetail(struct soap*, const char*, tt__PTZPresetTourPresetDetail **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourPresetDetail(struct soap*, tt__PTZPresetTourPresetDetail *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourPresetDetail ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourPresetDetail(struct soap*, tt__PTZPresetTourPresetDetail **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourExtension(struct soap*, tt__PTZPresetTourExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourExtension(struct soap*, const char *, int, tt__PTZPresetTourExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourExtension(struct soap*, const char*, tt__PTZPresetTourExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourExtension(struct soap*, tt__PTZPresetTourExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourExtension(struct soap*, tt__PTZPresetTourExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourSpot_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourSpot_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourSpot(struct soap*, tt__PTZPresetTourSpot *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourSpot(struct soap*, const char *, int, tt__PTZPresetTourSpot *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourSpot ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourSpot(struct soap*, const char*, tt__PTZPresetTourSpot **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourSpot(struct soap*, tt__PTZPresetTourSpot *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourSpot ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourSpot(struct soap*, tt__PTZPresetTourSpot **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourStartingCondition_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourStartingCondition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourStartingCondition(struct soap*, tt__PTZPresetTourStartingCondition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourStartingCondition(struct soap*, const char *, int, tt__PTZPresetTourStartingCondition *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourStartingCondition ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourStartingCondition(struct soap*, const char*, tt__PTZPresetTourStartingCondition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourStartingCondition(struct soap*, tt__PTZPresetTourStartingCondition *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourStartingCondition ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourStartingCondition(struct soap*, tt__PTZPresetTourStartingCondition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourStatus_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourStatus(struct soap*, tt__PTZPresetTourStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourStatus(struct soap*, const char *, int, tt__PTZPresetTourStatus *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourStatus ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourStatus(struct soap*, const char*, tt__PTZPresetTourStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourStatus(struct soap*, tt__PTZPresetTourStatus *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourStatus ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourStatus(struct soap*, tt__PTZPresetTourStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Name_DEFINED -#define SOAP_TYPE_PointerTott__Name_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Name(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Name(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__Name(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Name(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__Name(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZSpacesExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZSpacesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZSpacesExtension(struct soap*, tt__PTZSpacesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZSpacesExtension(struct soap*, const char *, int, tt__PTZSpacesExtension *const*, const char *); -SOAP_FMAC3 tt__PTZSpacesExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZSpacesExtension(struct soap*, const char*, tt__PTZSpacesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZSpacesExtension(struct soap*, tt__PTZSpacesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZSpacesExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZSpacesExtension(struct soap*, tt__PTZSpacesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Space1DDescription_DEFINED -#define SOAP_TYPE_PointerTott__Space1DDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Space1DDescription(struct soap*, tt__Space1DDescription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Space1DDescription(struct soap*, const char *, int, tt__Space1DDescription *const*, const char *); -SOAP_FMAC3 tt__Space1DDescription ** SOAP_FMAC4 soap_in_PointerTott__Space1DDescription(struct soap*, const char*, tt__Space1DDescription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Space1DDescription(struct soap*, tt__Space1DDescription *const*, const char*, const char*); -SOAP_FMAC3 tt__Space1DDescription ** SOAP_FMAC4 soap_get_PointerTott__Space1DDescription(struct soap*, tt__Space1DDescription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Space2DDescription_DEFINED -#define SOAP_TYPE_PointerTott__Space2DDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Space2DDescription(struct soap*, tt__Space2DDescription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Space2DDescription(struct soap*, const char *, int, tt__Space2DDescription *const*, const char *); -SOAP_FMAC3 tt__Space2DDescription ** SOAP_FMAC4 soap_in_PointerTott__Space2DDescription(struct soap*, const char*, tt__Space2DDescription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Space2DDescription(struct soap*, tt__Space2DDescription *const*, const char*, const char*); -SOAP_FMAC3 tt__Space2DDescription ** SOAP_FMAC4 soap_get_PointerTott__Space2DDescription(struct soap*, tt__Space2DDescription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReverseOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__ReverseOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReverseOptionsExtension(struct soap*, tt__ReverseOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReverseOptionsExtension(struct soap*, const char *, int, tt__ReverseOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__ReverseOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__ReverseOptionsExtension(struct soap*, const char*, tt__ReverseOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReverseOptionsExtension(struct soap*, tt__ReverseOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ReverseOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__ReverseOptionsExtension(struct soap*, tt__ReverseOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EFlipOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__EFlipOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EFlipOptionsExtension(struct soap*, tt__EFlipOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EFlipOptionsExtension(struct soap*, const char *, int, tt__EFlipOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__EFlipOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__EFlipOptionsExtension(struct soap*, const char*, tt__EFlipOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EFlipOptionsExtension(struct soap*, tt__EFlipOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__EFlipOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__EFlipOptionsExtension(struct soap*, tt__EFlipOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTControlDirectionOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTControlDirectionOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTControlDirectionOptionsExtension(struct soap*, tt__PTControlDirectionOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTControlDirectionOptionsExtension(struct soap*, const char *, int, tt__PTControlDirectionOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__PTControlDirectionOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__PTControlDirectionOptionsExtension(struct soap*, const char*, tt__PTControlDirectionOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTControlDirectionOptionsExtension(struct soap*, tt__PTControlDirectionOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTControlDirectionOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__PTControlDirectionOptionsExtension(struct soap*, tt__PTControlDirectionOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReverseOptions_DEFINED -#define SOAP_TYPE_PointerTott__ReverseOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReverseOptions(struct soap*, tt__ReverseOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReverseOptions(struct soap*, const char *, int, tt__ReverseOptions *const*, const char *); -SOAP_FMAC3 tt__ReverseOptions ** SOAP_FMAC4 soap_in_PointerTott__ReverseOptions(struct soap*, const char*, tt__ReverseOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReverseOptions(struct soap*, tt__ReverseOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__ReverseOptions ** SOAP_FMAC4 soap_get_PointerTott__ReverseOptions(struct soap*, tt__ReverseOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EFlipOptions_DEFINED -#define SOAP_TYPE_PointerTott__EFlipOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EFlipOptions(struct soap*, tt__EFlipOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EFlipOptions(struct soap*, const char *, int, tt__EFlipOptions *const*, const char *); -SOAP_FMAC3 tt__EFlipOptions ** SOAP_FMAC4 soap_in_PointerTott__EFlipOptions(struct soap*, const char*, tt__EFlipOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EFlipOptions(struct soap*, tt__EFlipOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__EFlipOptions ** SOAP_FMAC4 soap_get_PointerTott__EFlipOptions(struct soap*, tt__EFlipOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZConfigurationOptions2_DEFINED -#define SOAP_TYPE_PointerTott__PTZConfigurationOptions2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZConfigurationOptions2(struct soap*, tt__PTZConfigurationOptions2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZConfigurationOptions2(struct soap*, const char *, int, tt__PTZConfigurationOptions2 *const*, const char *); -SOAP_FMAC3 tt__PTZConfigurationOptions2 ** SOAP_FMAC4 soap_in_PointerTott__PTZConfigurationOptions2(struct soap*, const char*, tt__PTZConfigurationOptions2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZConfigurationOptions2(struct soap*, tt__PTZConfigurationOptions2 *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZConfigurationOptions2 ** SOAP_FMAC4 soap_get_PointerTott__PTZConfigurationOptions2(struct soap*, tt__PTZConfigurationOptions2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTControlDirectionOptions_DEFINED -#define SOAP_TYPE_PointerTott__PTControlDirectionOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTControlDirectionOptions(struct soap*, tt__PTControlDirectionOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTControlDirectionOptions(struct soap*, const char *, int, tt__PTControlDirectionOptions *const*, const char *); -SOAP_FMAC3 tt__PTControlDirectionOptions ** SOAP_FMAC4 soap_in_PointerTott__PTControlDirectionOptions(struct soap*, const char*, tt__PTControlDirectionOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTControlDirectionOptions(struct soap*, tt__PTControlDirectionOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PTControlDirectionOptions ** SOAP_FMAC4 soap_get_PointerTott__PTControlDirectionOptions(struct soap*, tt__PTControlDirectionOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DurationRange_DEFINED -#define SOAP_TYPE_PointerTott__DurationRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DurationRange(struct soap*, tt__DurationRange *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DurationRange(struct soap*, const char *, int, tt__DurationRange *const*, const char *); -SOAP_FMAC3 tt__DurationRange ** SOAP_FMAC4 soap_in_PointerTott__DurationRange(struct soap*, const char*, tt__DurationRange **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DurationRange(struct soap*, tt__DurationRange *const*, const char*, const char*); -SOAP_FMAC3 tt__DurationRange ** SOAP_FMAC4 soap_get_PointerTott__DurationRange(struct soap*, tt__DurationRange **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZSpaces_DEFINED -#define SOAP_TYPE_PointerTott__PTZSpaces_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZSpaces(struct soap*, tt__PTZSpaces *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZSpaces(struct soap*, const char *, int, tt__PTZSpaces *const*, const char *); -SOAP_FMAC3 tt__PTZSpaces ** SOAP_FMAC4 soap_in_PointerTott__PTZSpaces(struct soap*, const char*, tt__PTZSpaces **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZSpaces(struct soap*, tt__PTZSpaces *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZSpaces ** SOAP_FMAC4 soap_get_PointerTott__PTZSpaces(struct soap*, tt__PTZSpaces **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTControlDirectionExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTControlDirectionExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTControlDirectionExtension(struct soap*, tt__PTControlDirectionExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTControlDirectionExtension(struct soap*, const char *, int, tt__PTControlDirectionExtension *const*, const char *); -SOAP_FMAC3 tt__PTControlDirectionExtension ** SOAP_FMAC4 soap_in_PointerTott__PTControlDirectionExtension(struct soap*, const char*, tt__PTControlDirectionExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTControlDirectionExtension(struct soap*, tt__PTControlDirectionExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTControlDirectionExtension ** SOAP_FMAC4 soap_get_PointerTott__PTControlDirectionExtension(struct soap*, tt__PTControlDirectionExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Reverse_DEFINED -#define SOAP_TYPE_PointerTott__Reverse_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Reverse(struct soap*, tt__Reverse *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Reverse(struct soap*, const char *, int, tt__Reverse *const*, const char *); -SOAP_FMAC3 tt__Reverse ** SOAP_FMAC4 soap_in_PointerTott__Reverse(struct soap*, const char*, tt__Reverse **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Reverse(struct soap*, tt__Reverse *const*, const char*, const char*); -SOAP_FMAC3 tt__Reverse ** SOAP_FMAC4 soap_get_PointerTott__Reverse(struct soap*, tt__Reverse **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EFlip_DEFINED -#define SOAP_TYPE_PointerTott__EFlip_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EFlip(struct soap*, tt__EFlip *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EFlip(struct soap*, const char *, int, tt__EFlip *const*, const char *); -SOAP_FMAC3 tt__EFlip ** SOAP_FMAC4 soap_in_PointerTott__EFlip(struct soap*, const char*, tt__EFlip **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EFlip(struct soap*, tt__EFlip *const*, const char*, const char*); -SOAP_FMAC3 tt__EFlip ** SOAP_FMAC4 soap_get_PointerTott__EFlip(struct soap*, tt__EFlip **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZConfigurationExtension2_DEFINED -#define SOAP_TYPE_PointerTott__PTZConfigurationExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZConfigurationExtension2(struct soap*, tt__PTZConfigurationExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZConfigurationExtension2(struct soap*, const char *, int, tt__PTZConfigurationExtension2 *const*, const char *); -SOAP_FMAC3 tt__PTZConfigurationExtension2 ** SOAP_FMAC4 soap_in_PointerTott__PTZConfigurationExtension2(struct soap*, const char*, tt__PTZConfigurationExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZConfigurationExtension2(struct soap*, tt__PTZConfigurationExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZConfigurationExtension2 ** SOAP_FMAC4 soap_get_PointerTott__PTZConfigurationExtension2(struct soap*, tt__PTZConfigurationExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTControlDirection_DEFINED -#define SOAP_TYPE_PointerTott__PTControlDirection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTControlDirection(struct soap*, tt__PTControlDirection *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTControlDirection(struct soap*, const char *, int, tt__PTControlDirection *const*, const char *); -SOAP_FMAC3 tt__PTControlDirection ** SOAP_FMAC4 soap_in_PointerTott__PTControlDirection(struct soap*, const char*, tt__PTControlDirection **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTControlDirection(struct soap*, tt__PTControlDirection *const*, const char*, const char*); -SOAP_FMAC3 tt__PTControlDirection ** SOAP_FMAC4 soap_get_PointerTott__PTControlDirection(struct soap*, tt__PTControlDirection **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourSupportedExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourSupportedExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourSupportedExtension(struct soap*, tt__PTZPresetTourSupportedExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourSupportedExtension(struct soap*, const char *, int, tt__PTZPresetTourSupportedExtension *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourSupportedExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourSupportedExtension(struct soap*, const char*, tt__PTZPresetTourSupportedExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourSupportedExtension(struct soap*, tt__PTZPresetTourSupportedExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourSupportedExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourSupportedExtension(struct soap*, tt__PTZPresetTourSupportedExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZNodeExtension2_DEFINED -#define SOAP_TYPE_PointerTott__PTZNodeExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZNodeExtension2(struct soap*, tt__PTZNodeExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZNodeExtension2(struct soap*, const char *, int, tt__PTZNodeExtension2 *const*, const char *); -SOAP_FMAC3 tt__PTZNodeExtension2 ** SOAP_FMAC4 soap_in_PointerTott__PTZNodeExtension2(struct soap*, const char*, tt__PTZNodeExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZNodeExtension2(struct soap*, tt__PTZNodeExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZNodeExtension2 ** SOAP_FMAC4 soap_get_PointerTott__PTZNodeExtension2(struct soap*, tt__PTZNodeExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZPresetTourSupported_DEFINED -#define SOAP_TYPE_PointerTott__PTZPresetTourSupported_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZPresetTourSupported(struct soap*, tt__PTZPresetTourSupported *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZPresetTourSupported(struct soap*, const char *, int, tt__PTZPresetTourSupported *const*, const char *); -SOAP_FMAC3 tt__PTZPresetTourSupported ** SOAP_FMAC4 soap_in_PointerTott__PTZPresetTourSupported(struct soap*, const char*, tt__PTZPresetTourSupported **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZPresetTourSupported(struct soap*, tt__PTZPresetTourSupported *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZPresetTourSupported ** SOAP_FMAC4 soap_get_PointerTott__PTZPresetTourSupported(struct soap*, tt__PTZPresetTourSupported **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EapMethodExtension_DEFINED -#define SOAP_TYPE_PointerTott__EapMethodExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EapMethodExtension(struct soap*, tt__EapMethodExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EapMethodExtension(struct soap*, const char *, int, tt__EapMethodExtension *const*, const char *); -SOAP_FMAC3 tt__EapMethodExtension ** SOAP_FMAC4 soap_in_PointerTott__EapMethodExtension(struct soap*, const char*, tt__EapMethodExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EapMethodExtension(struct soap*, tt__EapMethodExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__EapMethodExtension ** SOAP_FMAC4 soap_get_PointerTott__EapMethodExtension(struct soap*, tt__EapMethodExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__TLSConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__TLSConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__TLSConfiguration(struct soap*, tt__TLSConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__TLSConfiguration(struct soap*, const char *, int, tt__TLSConfiguration *const*, const char *); -SOAP_FMAC3 tt__TLSConfiguration ** SOAP_FMAC4 soap_in_PointerTott__TLSConfiguration(struct soap*, const char*, tt__TLSConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__TLSConfiguration(struct soap*, tt__TLSConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__TLSConfiguration ** SOAP_FMAC4 soap_get_PointerTott__TLSConfiguration(struct soap*, tt__TLSConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot1XConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__Dot1XConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot1XConfigurationExtension(struct soap*, tt__Dot1XConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot1XConfigurationExtension(struct soap*, const char *, int, tt__Dot1XConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__Dot1XConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__Dot1XConfigurationExtension(struct soap*, const char*, tt__Dot1XConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot1XConfigurationExtension(struct soap*, tt__Dot1XConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot1XConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__Dot1XConfigurationExtension(struct soap*, tt__Dot1XConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EAPMethodConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__EAPMethodConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EAPMethodConfiguration(struct soap*, tt__EAPMethodConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EAPMethodConfiguration(struct soap*, const char *, int, tt__EAPMethodConfiguration *const*, const char *); -SOAP_FMAC3 tt__EAPMethodConfiguration ** SOAP_FMAC4 soap_in_PointerTott__EAPMethodConfiguration(struct soap*, const char*, tt__EAPMethodConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EAPMethodConfiguration(struct soap*, tt__EAPMethodConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__EAPMethodConfiguration ** SOAP_FMAC4 soap_get_PointerTott__EAPMethodConfiguration(struct soap*, tt__EAPMethodConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CertificateInformationExtension_DEFINED -#define SOAP_TYPE_PointerTott__CertificateInformationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CertificateInformationExtension(struct soap*, tt__CertificateInformationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CertificateInformationExtension(struct soap*, const char *, int, tt__CertificateInformationExtension *const*, const char *); -SOAP_FMAC3 tt__CertificateInformationExtension ** SOAP_FMAC4 soap_in_PointerTott__CertificateInformationExtension(struct soap*, const char*, tt__CertificateInformationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CertificateInformationExtension(struct soap*, tt__CertificateInformationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__CertificateInformationExtension ** SOAP_FMAC4 soap_get_PointerTott__CertificateInformationExtension(struct soap*, tt__CertificateInformationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DateTimeRange_DEFINED -#define SOAP_TYPE_PointerTott__DateTimeRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DateTimeRange(struct soap*, tt__DateTimeRange *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DateTimeRange(struct soap*, const char *, int, tt__DateTimeRange *const*, const char *); -SOAP_FMAC3 tt__DateTimeRange ** SOAP_FMAC4 soap_in_PointerTott__DateTimeRange(struct soap*, const char*, tt__DateTimeRange **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DateTimeRange(struct soap*, tt__DateTimeRange *const*, const char*, const char*); -SOAP_FMAC3 tt__DateTimeRange ** SOAP_FMAC4 soap_get_PointerTott__DateTimeRange(struct soap*, tt__DateTimeRange **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CertificateUsage_DEFINED -#define SOAP_TYPE_PointerTott__CertificateUsage_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CertificateUsage(struct soap*, tt__CertificateUsage *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CertificateUsage(struct soap*, const char *, int, tt__CertificateUsage *const*, const char *); -SOAP_FMAC3 tt__CertificateUsage ** SOAP_FMAC4 soap_in_PointerTott__CertificateUsage(struct soap*, const char*, tt__CertificateUsage **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CertificateUsage(struct soap*, tt__CertificateUsage *const*, const char*, const char*); -SOAP_FMAC3 tt__CertificateUsage ** SOAP_FMAC4 soap_get_PointerTott__CertificateUsage(struct soap*, tt__CertificateUsage **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__BinaryData_DEFINED -#define SOAP_TYPE_PointerTott__BinaryData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__BinaryData(struct soap*, tt__BinaryData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__BinaryData(struct soap*, const char *, int, tt__BinaryData *const*, const char *); -SOAP_FMAC3 tt__BinaryData ** SOAP_FMAC4 soap_in_PointerTott__BinaryData(struct soap*, const char*, tt__BinaryData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__BinaryData(struct soap*, tt__BinaryData *const*, const char*, const char*); -SOAP_FMAC3 tt__BinaryData ** SOAP_FMAC4 soap_get_PointerTott__BinaryData(struct soap*, tt__BinaryData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CertificateGenerationParametersExtension_DEFINED -#define SOAP_TYPE_PointerTott__CertificateGenerationParametersExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CertificateGenerationParametersExtension(struct soap*, tt__CertificateGenerationParametersExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CertificateGenerationParametersExtension(struct soap*, const char *, int, tt__CertificateGenerationParametersExtension *const*, const char *); -SOAP_FMAC3 tt__CertificateGenerationParametersExtension ** SOAP_FMAC4 soap_in_PointerTott__CertificateGenerationParametersExtension(struct soap*, const char*, tt__CertificateGenerationParametersExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CertificateGenerationParametersExtension(struct soap*, tt__CertificateGenerationParametersExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__CertificateGenerationParametersExtension ** SOAP_FMAC4 soap_get_PointerTott__CertificateGenerationParametersExtension(struct soap*, tt__CertificateGenerationParametersExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__UserExtension_DEFINED -#define SOAP_TYPE_PointerTott__UserExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__UserExtension(struct soap*, tt__UserExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__UserExtension(struct soap*, const char *, int, tt__UserExtension *const*, const char *); -SOAP_FMAC3 tt__UserExtension ** SOAP_FMAC4 soap_in_PointerTott__UserExtension(struct soap*, const char*, tt__UserExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__UserExtension(struct soap*, tt__UserExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__UserExtension ** SOAP_FMAC4 soap_get_PointerTott__UserExtension(struct soap*, tt__UserExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Date_DEFINED -#define SOAP_TYPE_PointerTott__Date_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Date(struct soap*, tt__Date *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Date(struct soap*, const char *, int, tt__Date *const*, const char *); -SOAP_FMAC3 tt__Date ** SOAP_FMAC4 soap_in_PointerTott__Date(struct soap*, const char*, tt__Date **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Date(struct soap*, tt__Date *const*, const char*, const char*); -SOAP_FMAC3 tt__Date ** SOAP_FMAC4 soap_get_PointerTott__Date(struct soap*, tt__Date **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Time_DEFINED -#define SOAP_TYPE_PointerTott__Time_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Time(struct soap*, tt__Time *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Time(struct soap*, const char *, int, tt__Time *const*, const char *); -SOAP_FMAC3 tt__Time ** SOAP_FMAC4 soap_in_PointerTott__Time(struct soap*, const char*, tt__Time **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Time(struct soap*, tt__Time *const*, const char*, const char*); -SOAP_FMAC3 tt__Time ** SOAP_FMAC4 soap_get_PointerTott__Time(struct soap*, tt__Time **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemDateTimeExtension_DEFINED -#define SOAP_TYPE_PointerTott__SystemDateTimeExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemDateTimeExtension(struct soap*, tt__SystemDateTimeExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemDateTimeExtension(struct soap*, const char *, int, tt__SystemDateTimeExtension *const*, const char *); -SOAP_FMAC3 tt__SystemDateTimeExtension ** SOAP_FMAC4 soap_in_PointerTott__SystemDateTimeExtension(struct soap*, const char*, tt__SystemDateTimeExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemDateTimeExtension(struct soap*, tt__SystemDateTimeExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemDateTimeExtension ** SOAP_FMAC4 soap_get_PointerTott__SystemDateTimeExtension(struct soap*, tt__SystemDateTimeExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DateTime_DEFINED -#define SOAP_TYPE_PointerTott__DateTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DateTime(struct soap*, tt__DateTime *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DateTime(struct soap*, const char *, int, tt__DateTime *const*, const char *); -SOAP_FMAC3 tt__DateTime ** SOAP_FMAC4 soap_in_PointerTott__DateTime(struct soap*, const char*, tt__DateTime **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DateTime(struct soap*, tt__DateTime *const*, const char*, const char*); -SOAP_FMAC3 tt__DateTime ** SOAP_FMAC4 soap_get_PointerTott__DateTime(struct soap*, tt__DateTime **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__TimeZone_DEFINED -#define SOAP_TYPE_PointerTott__TimeZone_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__TimeZone(struct soap*, tt__TimeZone *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__TimeZone(struct soap*, const char *, int, tt__TimeZone *const*, const char *); -SOAP_FMAC3 tt__TimeZone ** SOAP_FMAC4 soap_in_PointerTott__TimeZone(struct soap*, const char*, tt__TimeZone **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__TimeZone(struct soap*, tt__TimeZone *const*, const char*, const char*); -SOAP_FMAC3 tt__TimeZone ** SOAP_FMAC4 soap_get_PointerTott__TimeZone(struct soap*, tt__TimeZone **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemLogUri_DEFINED -#define SOAP_TYPE_PointerTott__SystemLogUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemLogUri(struct soap*, tt__SystemLogUri *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemLogUri(struct soap*, const char *, int, tt__SystemLogUri *const*, const char *); -SOAP_FMAC3 tt__SystemLogUri ** SOAP_FMAC4 soap_in_PointerTott__SystemLogUri(struct soap*, const char*, tt__SystemLogUri **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemLogUri(struct soap*, tt__SystemLogUri *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemLogUri ** SOAP_FMAC4 soap_get_PointerTott__SystemLogUri(struct soap*, tt__SystemLogUri **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxop__Include_DEFINED -#define SOAP_TYPE_PointerToxop__Include_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxop__Include(struct soap*, xop__Include *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxop__Include(struct soap*, const char *, int, xop__Include *const*, const char *); -SOAP_FMAC3 xop__Include ** SOAP_FMAC4 soap_in_PointerToxop__Include(struct soap*, const char*, xop__Include **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxop__Include(struct soap*, xop__Include *const*, const char*, const char*); -SOAP_FMAC3 xop__Include ** SOAP_FMAC4 soap_get_PointerToxop__Include(struct soap*, xop__Include **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_xmime__contentType_DEFINED -#define SOAP_TYPE_PointerTo_xmime__contentType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_xmime__contentType(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_xmime__contentType(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTo_xmime__contentType(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_xmime__contentType(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTo_xmime__contentType(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AttachmentData_DEFINED -#define SOAP_TYPE_PointerTott__AttachmentData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AttachmentData(struct soap*, tt__AttachmentData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AttachmentData(struct soap*, const char *, int, tt__AttachmentData *const*, const char *); -SOAP_FMAC3 tt__AttachmentData ** SOAP_FMAC4 soap_in_PointerTott__AttachmentData(struct soap*, const char*, tt__AttachmentData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AttachmentData(struct soap*, tt__AttachmentData *const*, const char*, const char*); -SOAP_FMAC3 tt__AttachmentData ** SOAP_FMAC4 soap_get_PointerTott__AttachmentData(struct soap*, tt__AttachmentData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsDeviceExtension_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsDeviceExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsDeviceExtension(struct soap*, tt__AnalyticsDeviceExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsDeviceExtension(struct soap*, const char *, int, tt__AnalyticsDeviceExtension *const*, const char *); -SOAP_FMAC3 tt__AnalyticsDeviceExtension ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsDeviceExtension(struct soap*, const char*, tt__AnalyticsDeviceExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsDeviceExtension(struct soap*, tt__AnalyticsDeviceExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceExtension ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsDeviceExtension(struct soap*, tt__AnalyticsDeviceExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_PointerTott__SystemCapabilitiesExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemCapabilitiesExtension2(struct soap*, tt__SystemCapabilitiesExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemCapabilitiesExtension2(struct soap*, const char *, int, tt__SystemCapabilitiesExtension2 *const*, const char *); -SOAP_FMAC3 tt__SystemCapabilitiesExtension2 ** SOAP_FMAC4 soap_in_PointerTott__SystemCapabilitiesExtension2(struct soap*, const char*, tt__SystemCapabilitiesExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemCapabilitiesExtension2(struct soap*, tt__SystemCapabilitiesExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemCapabilitiesExtension2 ** SOAP_FMAC4 soap_get_PointerTott__SystemCapabilitiesExtension2(struct soap*, tt__SystemCapabilitiesExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemCapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__SystemCapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemCapabilitiesExtension(struct soap*, tt__SystemCapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemCapabilitiesExtension(struct soap*, const char *, int, tt__SystemCapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__SystemCapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__SystemCapabilitiesExtension(struct soap*, const char*, tt__SystemCapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemCapabilitiesExtension(struct soap*, tt__SystemCapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemCapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__SystemCapabilitiesExtension(struct soap*, tt__SystemCapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__OnvifVersion_DEFINED -#define SOAP_TYPE_PointerTott__OnvifVersion_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__OnvifVersion(struct soap*, tt__OnvifVersion *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__OnvifVersion(struct soap*, const char *, int, tt__OnvifVersion *const*, const char *); -SOAP_FMAC3 tt__OnvifVersion ** SOAP_FMAC4 soap_in_PointerTott__OnvifVersion(struct soap*, const char*, tt__OnvifVersion **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__OnvifVersion(struct soap*, tt__OnvifVersion *const*, const char*, const char*); -SOAP_FMAC3 tt__OnvifVersion ** SOAP_FMAC4 soap_get_PointerTott__OnvifVersion(struct soap*, tt__OnvifVersion **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SecurityCapabilitiesExtension2(struct soap*, tt__SecurityCapabilitiesExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SecurityCapabilitiesExtension2(struct soap*, const char *, int, tt__SecurityCapabilitiesExtension2 *const*, const char *); -SOAP_FMAC3 tt__SecurityCapabilitiesExtension2 ** SOAP_FMAC4 soap_in_PointerTott__SecurityCapabilitiesExtension2(struct soap*, const char*, tt__SecurityCapabilitiesExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SecurityCapabilitiesExtension2(struct soap*, tt__SecurityCapabilitiesExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__SecurityCapabilitiesExtension2 ** SOAP_FMAC4 soap_get_PointerTott__SecurityCapabilitiesExtension2(struct soap*, tt__SecurityCapabilitiesExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__SecurityCapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SecurityCapabilitiesExtension(struct soap*, tt__SecurityCapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SecurityCapabilitiesExtension(struct soap*, const char *, int, tt__SecurityCapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__SecurityCapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__SecurityCapabilitiesExtension(struct soap*, const char*, tt__SecurityCapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SecurityCapabilitiesExtension(struct soap*, tt__SecurityCapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__SecurityCapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__SecurityCapabilitiesExtension(struct soap*, tt__SecurityCapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkCapabilitiesExtension2(struct soap*, tt__NetworkCapabilitiesExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkCapabilitiesExtension2(struct soap*, const char *, int, tt__NetworkCapabilitiesExtension2 *const*, const char *); -SOAP_FMAC3 tt__NetworkCapabilitiesExtension2 ** SOAP_FMAC4 soap_in_PointerTott__NetworkCapabilitiesExtension2(struct soap*, const char*, tt__NetworkCapabilitiesExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkCapabilitiesExtension2(struct soap*, tt__NetworkCapabilitiesExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkCapabilitiesExtension2 ** SOAP_FMAC4 soap_get_PointerTott__NetworkCapabilitiesExtension2(struct soap*, tt__NetworkCapabilitiesExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__NetworkCapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkCapabilitiesExtension(struct soap*, tt__NetworkCapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkCapabilitiesExtension(struct soap*, const char *, int, tt__NetworkCapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__NetworkCapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__NetworkCapabilitiesExtension(struct soap*, const char*, tt__NetworkCapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkCapabilitiesExtension(struct soap*, tt__NetworkCapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkCapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__NetworkCapabilitiesExtension(struct soap*, tt__NetworkCapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RealTimeStreamingCapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__RealTimeStreamingCapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RealTimeStreamingCapabilitiesExtension(struct soap*, tt__RealTimeStreamingCapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RealTimeStreamingCapabilitiesExtension(struct soap*, const char *, int, tt__RealTimeStreamingCapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__RealTimeStreamingCapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__RealTimeStreamingCapabilitiesExtension(struct soap*, const char*, tt__RealTimeStreamingCapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RealTimeStreamingCapabilitiesExtension(struct soap*, tt__RealTimeStreamingCapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__RealTimeStreamingCapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__RealTimeStreamingCapabilitiesExtension(struct soap*, tt__RealTimeStreamingCapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ProfileCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__ProfileCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ProfileCapabilities(struct soap*, tt__ProfileCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ProfileCapabilities(struct soap*, const char *, int, tt__ProfileCapabilities *const*, const char *); -SOAP_FMAC3 tt__ProfileCapabilities ** SOAP_FMAC4 soap_in_PointerTott__ProfileCapabilities(struct soap*, const char*, tt__ProfileCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ProfileCapabilities(struct soap*, tt__ProfileCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__ProfileCapabilities ** SOAP_FMAC4 soap_get_PointerTott__ProfileCapabilities(struct soap*, tt__ProfileCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MediaCapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__MediaCapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MediaCapabilitiesExtension(struct soap*, tt__MediaCapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MediaCapabilitiesExtension(struct soap*, const char *, int, tt__MediaCapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__MediaCapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__MediaCapabilitiesExtension(struct soap*, const char*, tt__MediaCapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MediaCapabilitiesExtension(struct soap*, tt__MediaCapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__MediaCapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__MediaCapabilitiesExtension(struct soap*, tt__MediaCapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RealTimeStreamingCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__RealTimeStreamingCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RealTimeStreamingCapabilities(struct soap*, tt__RealTimeStreamingCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RealTimeStreamingCapabilities(struct soap*, const char *, int, tt__RealTimeStreamingCapabilities *const*, const char *); -SOAP_FMAC3 tt__RealTimeStreamingCapabilities ** SOAP_FMAC4 soap_in_PointerTott__RealTimeStreamingCapabilities(struct soap*, const char*, tt__RealTimeStreamingCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RealTimeStreamingCapabilities(struct soap*, tt__RealTimeStreamingCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__RealTimeStreamingCapabilities ** SOAP_FMAC4 soap_get_PointerTott__RealTimeStreamingCapabilities(struct soap*, tt__RealTimeStreamingCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IOCapabilitiesExtension2_DEFINED -#define SOAP_TYPE_PointerTott__IOCapabilitiesExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IOCapabilitiesExtension2(struct soap*, tt__IOCapabilitiesExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IOCapabilitiesExtension2(struct soap*, const char *, int, tt__IOCapabilitiesExtension2 *const*, const char *); -SOAP_FMAC3 tt__IOCapabilitiesExtension2 ** SOAP_FMAC4 soap_in_PointerTott__IOCapabilitiesExtension2(struct soap*, const char*, tt__IOCapabilitiesExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IOCapabilitiesExtension2(struct soap*, tt__IOCapabilitiesExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__IOCapabilitiesExtension2 ** SOAP_FMAC4 soap_get_PointerTott__IOCapabilitiesExtension2(struct soap*, tt__IOCapabilitiesExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IOCapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__IOCapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IOCapabilitiesExtension(struct soap*, tt__IOCapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IOCapabilitiesExtension(struct soap*, const char *, int, tt__IOCapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__IOCapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__IOCapabilitiesExtension(struct soap*, const char*, tt__IOCapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IOCapabilitiesExtension(struct soap*, tt__IOCapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__IOCapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__IOCapabilitiesExtension(struct soap*, tt__IOCapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DeviceCapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__DeviceCapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DeviceCapabilitiesExtension(struct soap*, tt__DeviceCapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DeviceCapabilitiesExtension(struct soap*, const char *, int, tt__DeviceCapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__DeviceCapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__DeviceCapabilitiesExtension(struct soap*, const char*, tt__DeviceCapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DeviceCapabilitiesExtension(struct soap*, tt__DeviceCapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__DeviceCapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__DeviceCapabilitiesExtension(struct soap*, tt__DeviceCapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SecurityCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__SecurityCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SecurityCapabilities(struct soap*, tt__SecurityCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SecurityCapabilities(struct soap*, const char *, int, tt__SecurityCapabilities *const*, const char *); -SOAP_FMAC3 tt__SecurityCapabilities ** SOAP_FMAC4 soap_in_PointerTott__SecurityCapabilities(struct soap*, const char*, tt__SecurityCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SecurityCapabilities(struct soap*, tt__SecurityCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__SecurityCapabilities ** SOAP_FMAC4 soap_get_PointerTott__SecurityCapabilities(struct soap*, tt__SecurityCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IOCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__IOCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IOCapabilities(struct soap*, tt__IOCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IOCapabilities(struct soap*, const char *, int, tt__IOCapabilities *const*, const char *); -SOAP_FMAC3 tt__IOCapabilities ** SOAP_FMAC4 soap_in_PointerTott__IOCapabilities(struct soap*, const char*, tt__IOCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IOCapabilities(struct soap*, tt__IOCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__IOCapabilities ** SOAP_FMAC4 soap_get_PointerTott__IOCapabilities(struct soap*, tt__IOCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SystemCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__SystemCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SystemCapabilities(struct soap*, tt__SystemCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SystemCapabilities(struct soap*, const char *, int, tt__SystemCapabilities *const*, const char *); -SOAP_FMAC3 tt__SystemCapabilities ** SOAP_FMAC4 soap_in_PointerTott__SystemCapabilities(struct soap*, const char*, tt__SystemCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SystemCapabilities(struct soap*, tt__SystemCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__SystemCapabilities ** SOAP_FMAC4 soap_get_PointerTott__SystemCapabilities(struct soap*, tt__SystemCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__NetworkCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkCapabilities(struct soap*, tt__NetworkCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkCapabilities(struct soap*, const char *, int, tt__NetworkCapabilities *const*, const char *); -SOAP_FMAC3 tt__NetworkCapabilities ** SOAP_FMAC4 soap_in_PointerTott__NetworkCapabilities(struct soap*, const char*, tt__NetworkCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkCapabilities(struct soap*, tt__NetworkCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkCapabilities ** SOAP_FMAC4 soap_get_PointerTott__NetworkCapabilities(struct soap*, tt__NetworkCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CapabilitiesExtension2_DEFINED -#define SOAP_TYPE_PointerTott__CapabilitiesExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CapabilitiesExtension2(struct soap*, tt__CapabilitiesExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CapabilitiesExtension2(struct soap*, const char *, int, tt__CapabilitiesExtension2 *const*, const char *); -SOAP_FMAC3 tt__CapabilitiesExtension2 ** SOAP_FMAC4 soap_in_PointerTott__CapabilitiesExtension2(struct soap*, const char*, tt__CapabilitiesExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CapabilitiesExtension2(struct soap*, tt__CapabilitiesExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__CapabilitiesExtension2 ** SOAP_FMAC4 soap_get_PointerTott__CapabilitiesExtension2(struct soap*, tt__CapabilitiesExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsDeviceCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsDeviceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsDeviceCapabilities(struct soap*, tt__AnalyticsDeviceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsDeviceCapabilities(struct soap*, const char *, int, tt__AnalyticsDeviceCapabilities *const*, const char *); -SOAP_FMAC3 tt__AnalyticsDeviceCapabilities ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsDeviceCapabilities(struct soap*, const char*, tt__AnalyticsDeviceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsDeviceCapabilities(struct soap*, tt__AnalyticsDeviceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsDeviceCapabilities ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsDeviceCapabilities(struct soap*, tt__AnalyticsDeviceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReceiverCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__ReceiverCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReceiverCapabilities(struct soap*, tt__ReceiverCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReceiverCapabilities(struct soap*, const char *, int, tt__ReceiverCapabilities *const*, const char *); -SOAP_FMAC3 tt__ReceiverCapabilities ** SOAP_FMAC4 soap_in_PointerTott__ReceiverCapabilities(struct soap*, const char*, tt__ReceiverCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReceiverCapabilities(struct soap*, tt__ReceiverCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__ReceiverCapabilities ** SOAP_FMAC4 soap_get_PointerTott__ReceiverCapabilities(struct soap*, tt__ReceiverCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReplayCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__ReplayCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReplayCapabilities(struct soap*, tt__ReplayCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReplayCapabilities(struct soap*, const char *, int, tt__ReplayCapabilities *const*, const char *); -SOAP_FMAC3 tt__ReplayCapabilities ** SOAP_FMAC4 soap_in_PointerTott__ReplayCapabilities(struct soap*, const char*, tt__ReplayCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReplayCapabilities(struct soap*, tt__ReplayCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__ReplayCapabilities ** SOAP_FMAC4 soap_get_PointerTott__ReplayCapabilities(struct soap*, tt__ReplayCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SearchCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__SearchCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SearchCapabilities(struct soap*, tt__SearchCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SearchCapabilities(struct soap*, const char *, int, tt__SearchCapabilities *const*, const char *); -SOAP_FMAC3 tt__SearchCapabilities ** SOAP_FMAC4 soap_in_PointerTott__SearchCapabilities(struct soap*, const char*, tt__SearchCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SearchCapabilities(struct soap*, tt__SearchCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__SearchCapabilities ** SOAP_FMAC4 soap_get_PointerTott__SearchCapabilities(struct soap*, tt__SearchCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RecordingCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__RecordingCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RecordingCapabilities(struct soap*, tt__RecordingCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RecordingCapabilities(struct soap*, const char *, int, tt__RecordingCapabilities *const*, const char *); -SOAP_FMAC3 tt__RecordingCapabilities ** SOAP_FMAC4 soap_in_PointerTott__RecordingCapabilities(struct soap*, const char*, tt__RecordingCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RecordingCapabilities(struct soap*, tt__RecordingCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__RecordingCapabilities ** SOAP_FMAC4 soap_get_PointerTott__RecordingCapabilities(struct soap*, tt__RecordingCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DisplayCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__DisplayCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DisplayCapabilities(struct soap*, tt__DisplayCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DisplayCapabilities(struct soap*, const char *, int, tt__DisplayCapabilities *const*, const char *); -SOAP_FMAC3 tt__DisplayCapabilities ** SOAP_FMAC4 soap_in_PointerTott__DisplayCapabilities(struct soap*, const char*, tt__DisplayCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DisplayCapabilities(struct soap*, tt__DisplayCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__DisplayCapabilities ** SOAP_FMAC4 soap_get_PointerTott__DisplayCapabilities(struct soap*, tt__DisplayCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DeviceIOCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__DeviceIOCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DeviceIOCapabilities(struct soap*, tt__DeviceIOCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DeviceIOCapabilities(struct soap*, const char *, int, tt__DeviceIOCapabilities *const*, const char *); -SOAP_FMAC3 tt__DeviceIOCapabilities ** SOAP_FMAC4 soap_in_PointerTott__DeviceIOCapabilities(struct soap*, const char*, tt__DeviceIOCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DeviceIOCapabilities(struct soap*, tt__DeviceIOCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__DeviceIOCapabilities ** SOAP_FMAC4 soap_get_PointerTott__DeviceIOCapabilities(struct soap*, tt__DeviceIOCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__CapabilitiesExtension_DEFINED -#define SOAP_TYPE_PointerTott__CapabilitiesExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__CapabilitiesExtension(struct soap*, tt__CapabilitiesExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__CapabilitiesExtension(struct soap*, const char *, int, tt__CapabilitiesExtension *const*, const char *); -SOAP_FMAC3 tt__CapabilitiesExtension ** SOAP_FMAC4 soap_in_PointerTott__CapabilitiesExtension(struct soap*, const char*, tt__CapabilitiesExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__CapabilitiesExtension(struct soap*, tt__CapabilitiesExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__CapabilitiesExtension ** SOAP_FMAC4 soap_get_PointerTott__CapabilitiesExtension(struct soap*, tt__CapabilitiesExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__PTZCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZCapabilities(struct soap*, tt__PTZCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZCapabilities(struct soap*, const char *, int, tt__PTZCapabilities *const*, const char *); -SOAP_FMAC3 tt__PTZCapabilities ** SOAP_FMAC4 soap_in_PointerTott__PTZCapabilities(struct soap*, const char*, tt__PTZCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZCapabilities(struct soap*, tt__PTZCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZCapabilities ** SOAP_FMAC4 soap_get_PointerTott__PTZCapabilities(struct soap*, tt__PTZCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MediaCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__MediaCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MediaCapabilities(struct soap*, tt__MediaCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MediaCapabilities(struct soap*, const char *, int, tt__MediaCapabilities *const*, const char *); -SOAP_FMAC3 tt__MediaCapabilities ** SOAP_FMAC4 soap_in_PointerTott__MediaCapabilities(struct soap*, const char*, tt__MediaCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MediaCapabilities(struct soap*, tt__MediaCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__MediaCapabilities ** SOAP_FMAC4 soap_get_PointerTott__MediaCapabilities(struct soap*, tt__MediaCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__ImagingCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingCapabilities(struct soap*, tt__ImagingCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingCapabilities(struct soap*, const char *, int, tt__ImagingCapabilities *const*, const char *); -SOAP_FMAC3 tt__ImagingCapabilities ** SOAP_FMAC4 soap_in_PointerTott__ImagingCapabilities(struct soap*, const char*, tt__ImagingCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingCapabilities(struct soap*, tt__ImagingCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingCapabilities ** SOAP_FMAC4 soap_get_PointerTott__ImagingCapabilities(struct soap*, tt__ImagingCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__EventCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__EventCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__EventCapabilities(struct soap*, tt__EventCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__EventCapabilities(struct soap*, const char *, int, tt__EventCapabilities *const*, const char *); -SOAP_FMAC3 tt__EventCapabilities ** SOAP_FMAC4 soap_in_PointerTott__EventCapabilities(struct soap*, const char*, tt__EventCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__EventCapabilities(struct soap*, tt__EventCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__EventCapabilities ** SOAP_FMAC4 soap_get_PointerTott__EventCapabilities(struct soap*, tt__EventCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DeviceCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__DeviceCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DeviceCapabilities(struct soap*, tt__DeviceCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DeviceCapabilities(struct soap*, const char *, int, tt__DeviceCapabilities *const*, const char *); -SOAP_FMAC3 tt__DeviceCapabilities ** SOAP_FMAC4 soap_in_PointerTott__DeviceCapabilities(struct soap*, const char*, tt__DeviceCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DeviceCapabilities(struct soap*, tt__DeviceCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__DeviceCapabilities ** SOAP_FMAC4 soap_get_PointerTott__DeviceCapabilities(struct soap*, tt__DeviceCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AnalyticsCapabilities_DEFINED -#define SOAP_TYPE_PointerTott__AnalyticsCapabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AnalyticsCapabilities(struct soap*, tt__AnalyticsCapabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AnalyticsCapabilities(struct soap*, const char *, int, tt__AnalyticsCapabilities *const*, const char *); -SOAP_FMAC3 tt__AnalyticsCapabilities ** SOAP_FMAC4 soap_in_PointerTott__AnalyticsCapabilities(struct soap*, const char*, tt__AnalyticsCapabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AnalyticsCapabilities(struct soap*, tt__AnalyticsCapabilities *const*, const char*, const char*); -SOAP_FMAC3 tt__AnalyticsCapabilities ** SOAP_FMAC4 soap_get_PointerTott__AnalyticsCapabilities(struct soap*, tt__AnalyticsCapabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11AvailableNetworksExtension_DEFINED -#define SOAP_TYPE_PointerTott__Dot11AvailableNetworksExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11AvailableNetworksExtension(struct soap*, tt__Dot11AvailableNetworksExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11AvailableNetworksExtension(struct soap*, const char *, int, tt__Dot11AvailableNetworksExtension *const*, const char *); -SOAP_FMAC3 tt__Dot11AvailableNetworksExtension ** SOAP_FMAC4 soap_in_PointerTott__Dot11AvailableNetworksExtension(struct soap*, const char*, tt__Dot11AvailableNetworksExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11AvailableNetworksExtension(struct soap*, tt__Dot11AvailableNetworksExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11AvailableNetworksExtension ** SOAP_FMAC4 soap_get_PointerTott__Dot11AvailableNetworksExtension(struct soap*, tt__Dot11AvailableNetworksExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11SignalStrength_DEFINED -#define SOAP_TYPE_PointerTott__Dot11SignalStrength_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11SignalStrength(struct soap*, enum tt__Dot11SignalStrength *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11SignalStrength(struct soap*, const char *, int, enum tt__Dot11SignalStrength *const*, const char *); -SOAP_FMAC3 enum tt__Dot11SignalStrength ** SOAP_FMAC4 soap_in_PointerTott__Dot11SignalStrength(struct soap*, const char*, enum tt__Dot11SignalStrength **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11SignalStrength(struct soap*, enum tt__Dot11SignalStrength *const*, const char*, const char*); -SOAP_FMAC3 enum tt__Dot11SignalStrength ** SOAP_FMAC4 soap_get_PointerTott__Dot11SignalStrength(struct soap*, enum tt__Dot11SignalStrength **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11PSKSetExtension_DEFINED -#define SOAP_TYPE_PointerTott__Dot11PSKSetExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11PSKSetExtension(struct soap*, tt__Dot11PSKSetExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11PSKSetExtension(struct soap*, const char *, int, tt__Dot11PSKSetExtension *const*, const char *); -SOAP_FMAC3 tt__Dot11PSKSetExtension ** SOAP_FMAC4 soap_in_PointerTott__Dot11PSKSetExtension(struct soap*, const char*, tt__Dot11PSKSetExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11PSKSetExtension(struct soap*, tt__Dot11PSKSetExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11PSKSetExtension ** SOAP_FMAC4 soap_get_PointerTott__Dot11PSKSetExtension(struct soap*, tt__Dot11PSKSetExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11PSKPassphrase_DEFINED -#define SOAP_TYPE_PointerTott__Dot11PSKPassphrase_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11PSKPassphrase(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11PSKPassphrase(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__Dot11PSKPassphrase(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11PSKPassphrase(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__Dot11PSKPassphrase(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11PSK_DEFINED -#define SOAP_TYPE_PointerTott__Dot11PSK_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11PSK(struct soap*, xsd__hexBinary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11PSK(struct soap*, const char *, int, xsd__hexBinary *const*, const char *); -SOAP_FMAC3 xsd__hexBinary ** SOAP_FMAC4 soap_in_PointerTott__Dot11PSK(struct soap*, const char*, xsd__hexBinary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11PSK(struct soap*, xsd__hexBinary *const*, const char*, const char*); -SOAP_FMAC3 xsd__hexBinary ** SOAP_FMAC4 soap_get_PointerTott__Dot11PSK(struct soap*, xsd__hexBinary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11SecurityConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__Dot11SecurityConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11SecurityConfigurationExtension(struct soap*, tt__Dot11SecurityConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11SecurityConfigurationExtension(struct soap*, const char *, int, tt__Dot11SecurityConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__Dot11SecurityConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__Dot11SecurityConfigurationExtension(struct soap*, const char*, tt__Dot11SecurityConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11SecurityConfigurationExtension(struct soap*, tt__Dot11SecurityConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11SecurityConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__Dot11SecurityConfigurationExtension(struct soap*, tt__Dot11SecurityConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11PSKSet_DEFINED -#define SOAP_TYPE_PointerTott__Dot11PSKSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11PSKSet(struct soap*, tt__Dot11PSKSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11PSKSet(struct soap*, const char *, int, tt__Dot11PSKSet *const*, const char *); -SOAP_FMAC3 tt__Dot11PSKSet ** SOAP_FMAC4 soap_in_PointerTott__Dot11PSKSet(struct soap*, const char*, tt__Dot11PSKSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11PSKSet(struct soap*, tt__Dot11PSKSet *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11PSKSet ** SOAP_FMAC4 soap_get_PointerTott__Dot11PSKSet(struct soap*, tt__Dot11PSKSet **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11Cipher_DEFINED -#define SOAP_TYPE_PointerTott__Dot11Cipher_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11Cipher(struct soap*, enum tt__Dot11Cipher *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11Cipher(struct soap*, const char *, int, enum tt__Dot11Cipher *const*, const char *); -SOAP_FMAC3 enum tt__Dot11Cipher ** SOAP_FMAC4 soap_in_PointerTott__Dot11Cipher(struct soap*, const char*, enum tt__Dot11Cipher **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11Cipher(struct soap*, enum tt__Dot11Cipher *const*, const char*, const char*); -SOAP_FMAC3 enum tt__Dot11Cipher ** SOAP_FMAC4 soap_get_PointerTott__Dot11Cipher(struct soap*, enum tt__Dot11Cipher **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11SecurityConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__Dot11SecurityConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11SecurityConfiguration(struct soap*, tt__Dot11SecurityConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11SecurityConfiguration(struct soap*, const char *, int, tt__Dot11SecurityConfiguration *const*, const char *); -SOAP_FMAC3 tt__Dot11SecurityConfiguration ** SOAP_FMAC4 soap_in_PointerTott__Dot11SecurityConfiguration(struct soap*, const char*, tt__Dot11SecurityConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11SecurityConfiguration(struct soap*, tt__Dot11SecurityConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11SecurityConfiguration ** SOAP_FMAC4 soap_get_PointerTott__Dot11SecurityConfiguration(struct soap*, tt__Dot11SecurityConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPAddressFilterExtension_DEFINED -#define SOAP_TYPE_PointerTott__IPAddressFilterExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPAddressFilterExtension(struct soap*, tt__IPAddressFilterExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPAddressFilterExtension(struct soap*, const char *, int, tt__IPAddressFilterExtension *const*, const char *); -SOAP_FMAC3 tt__IPAddressFilterExtension ** SOAP_FMAC4 soap_in_PointerTott__IPAddressFilterExtension(struct soap*, const char*, tt__IPAddressFilterExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPAddressFilterExtension(struct soap*, tt__IPAddressFilterExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__IPAddressFilterExtension ** SOAP_FMAC4 soap_get_PointerTott__IPAddressFilterExtension(struct soap*, tt__IPAddressFilterExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension2_DEFINED -#define SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkZeroConfigurationExtension2(struct soap*, tt__NetworkZeroConfigurationExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkZeroConfigurationExtension2(struct soap*, const char *, int, tt__NetworkZeroConfigurationExtension2 *const*, const char *); -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension2 ** SOAP_FMAC4 soap_in_PointerTott__NetworkZeroConfigurationExtension2(struct soap*, const char*, tt__NetworkZeroConfigurationExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkZeroConfigurationExtension2(struct soap*, tt__NetworkZeroConfigurationExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension2 ** SOAP_FMAC4 soap_get_PointerTott__NetworkZeroConfigurationExtension2(struct soap*, tt__NetworkZeroConfigurationExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkZeroConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__NetworkZeroConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkZeroConfiguration(struct soap*, tt__NetworkZeroConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkZeroConfiguration(struct soap*, const char *, int, tt__NetworkZeroConfiguration *const*, const char *); -SOAP_FMAC3 tt__NetworkZeroConfiguration ** SOAP_FMAC4 soap_in_PointerTott__NetworkZeroConfiguration(struct soap*, const char*, tt__NetworkZeroConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkZeroConfiguration(struct soap*, tt__NetworkZeroConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkZeroConfiguration ** SOAP_FMAC4 soap_get_PointerTott__NetworkZeroConfiguration(struct soap*, tt__NetworkZeroConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__NetworkZeroConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkZeroConfigurationExtension(struct soap*, tt__NetworkZeroConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkZeroConfigurationExtension(struct soap*, const char *, int, tt__NetworkZeroConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__NetworkZeroConfigurationExtension(struct soap*, const char*, tt__NetworkZeroConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkZeroConfigurationExtension(struct soap*, tt__NetworkZeroConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkZeroConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__NetworkZeroConfigurationExtension(struct soap*, tt__NetworkZeroConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv6DHCPConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__IPv6DHCPConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv6DHCPConfiguration(struct soap*, enum tt__IPv6DHCPConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv6DHCPConfiguration(struct soap*, const char *, int, enum tt__IPv6DHCPConfiguration *const*, const char *); -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration ** SOAP_FMAC4 soap_in_PointerTott__IPv6DHCPConfiguration(struct soap*, const char*, enum tt__IPv6DHCPConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv6DHCPConfiguration(struct soap*, enum tt__IPv6DHCPConfiguration *const*, const char*, const char*); -SOAP_FMAC3 enum tt__IPv6DHCPConfiguration ** SOAP_FMAC4 soap_get_PointerTott__IPv6DHCPConfiguration(struct soap*, enum tt__IPv6DHCPConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension2_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceSetConfigurationExtension2(struct soap*, tt__NetworkInterfaceSetConfigurationExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceSetConfigurationExtension2(struct soap*, const char *, int, tt__NetworkInterfaceSetConfigurationExtension2 *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension2 ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceSetConfigurationExtension2(struct soap*, const char*, tt__NetworkInterfaceSetConfigurationExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceSetConfigurationExtension2(struct soap*, tt__NetworkInterfaceSetConfigurationExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension2 ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceSetConfigurationExtension2(struct soap*, tt__NetworkInterfaceSetConfigurationExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceSetConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceSetConfigurationExtension(struct soap*, tt__NetworkInterfaceSetConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceSetConfigurationExtension(struct soap*, const char *, int, tt__NetworkInterfaceSetConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceSetConfigurationExtension(struct soap*, const char*, tt__NetworkInterfaceSetConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceSetConfigurationExtension(struct soap*, tt__NetworkInterfaceSetConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceSetConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceSetConfigurationExtension(struct soap*, tt__NetworkInterfaceSetConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv6NetworkInterfaceSetConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__IPv6NetworkInterfaceSetConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv6NetworkInterfaceSetConfiguration(struct soap*, tt__IPv6NetworkInterfaceSetConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv6NetworkInterfaceSetConfiguration(struct soap*, const char *, int, tt__IPv6NetworkInterfaceSetConfiguration *const*, const char *); -SOAP_FMAC3 tt__IPv6NetworkInterfaceSetConfiguration ** SOAP_FMAC4 soap_in_PointerTott__IPv6NetworkInterfaceSetConfiguration(struct soap*, const char*, tt__IPv6NetworkInterfaceSetConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv6NetworkInterfaceSetConfiguration(struct soap*, tt__IPv6NetworkInterfaceSetConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__IPv6NetworkInterfaceSetConfiguration ** SOAP_FMAC4 soap_get_PointerTott__IPv6NetworkInterfaceSetConfiguration(struct soap*, tt__IPv6NetworkInterfaceSetConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv4NetworkInterfaceSetConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__IPv4NetworkInterfaceSetConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv4NetworkInterfaceSetConfiguration(struct soap*, tt__IPv4NetworkInterfaceSetConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv4NetworkInterfaceSetConfiguration(struct soap*, const char *, int, tt__IPv4NetworkInterfaceSetConfiguration *const*, const char *); -SOAP_FMAC3 tt__IPv4NetworkInterfaceSetConfiguration ** SOAP_FMAC4 soap_in_PointerTott__IPv4NetworkInterfaceSetConfiguration(struct soap*, const char*, tt__IPv4NetworkInterfaceSetConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv4NetworkInterfaceSetConfiguration(struct soap*, tt__IPv4NetworkInterfaceSetConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__IPv4NetworkInterfaceSetConfiguration ** SOAP_FMAC4 soap_get_PointerTott__IPv4NetworkInterfaceSetConfiguration(struct soap*, tt__IPv4NetworkInterfaceSetConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DynamicDNSInformationExtension_DEFINED -#define SOAP_TYPE_PointerTott__DynamicDNSInformationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DynamicDNSInformationExtension(struct soap*, tt__DynamicDNSInformationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DynamicDNSInformationExtension(struct soap*, const char *, int, tt__DynamicDNSInformationExtension *const*, const char *); -SOAP_FMAC3 tt__DynamicDNSInformationExtension ** SOAP_FMAC4 soap_in_PointerTott__DynamicDNSInformationExtension(struct soap*, const char*, tt__DynamicDNSInformationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DynamicDNSInformationExtension(struct soap*, tt__DynamicDNSInformationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__DynamicDNSInformationExtension ** SOAP_FMAC4 soap_get_PointerTott__DynamicDNSInformationExtension(struct soap*, tt__DynamicDNSInformationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__duration_DEFINED -#define SOAP_TYPE_PointerToxsd__duration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__duration(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__duration(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToxsd__duration(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__duration(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToxsd__duration(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NTPInformationExtension_DEFINED -#define SOAP_TYPE_PointerTott__NTPInformationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NTPInformationExtension(struct soap*, tt__NTPInformationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NTPInformationExtension(struct soap*, const char *, int, tt__NTPInformationExtension *const*, const char *); -SOAP_FMAC3 tt__NTPInformationExtension ** SOAP_FMAC4 soap_in_PointerTott__NTPInformationExtension(struct soap*, const char*, tt__NTPInformationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NTPInformationExtension(struct soap*, tt__NTPInformationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__NTPInformationExtension ** SOAP_FMAC4 soap_get_PointerTott__NTPInformationExtension(struct soap*, tt__NTPInformationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkHost_DEFINED -#define SOAP_TYPE_PointerTott__NetworkHost_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkHost(struct soap*, tt__NetworkHost *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkHost(struct soap*, const char *, int, tt__NetworkHost *const*, const char *); -SOAP_FMAC3 tt__NetworkHost ** SOAP_FMAC4 soap_in_PointerTott__NetworkHost(struct soap*, const char*, tt__NetworkHost **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkHost(struct soap*, tt__NetworkHost *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkHost ** SOAP_FMAC4 soap_get_PointerTott__NetworkHost(struct soap*, tt__NetworkHost **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DNSInformationExtension_DEFINED -#define SOAP_TYPE_PointerTott__DNSInformationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DNSInformationExtension(struct soap*, tt__DNSInformationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DNSInformationExtension(struct soap*, const char *, int, tt__DNSInformationExtension *const*, const char *); -SOAP_FMAC3 tt__DNSInformationExtension ** SOAP_FMAC4 soap_in_PointerTott__DNSInformationExtension(struct soap*, const char*, tt__DNSInformationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DNSInformationExtension(struct soap*, tt__DNSInformationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__DNSInformationExtension ** SOAP_FMAC4 soap_get_PointerTott__DNSInformationExtension(struct soap*, tt__DNSInformationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__HostnameInformationExtension_DEFINED -#define SOAP_TYPE_PointerTott__HostnameInformationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__HostnameInformationExtension(struct soap*, tt__HostnameInformationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__HostnameInformationExtension(struct soap*, const char *, int, tt__HostnameInformationExtension *const*, const char *); -SOAP_FMAC3 tt__HostnameInformationExtension ** SOAP_FMAC4 soap_in_PointerTott__HostnameInformationExtension(struct soap*, const char*, tt__HostnameInformationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__HostnameInformationExtension(struct soap*, tt__HostnameInformationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__HostnameInformationExtension ** SOAP_FMAC4 soap_get_PointerTott__HostnameInformationExtension(struct soap*, tt__HostnameInformationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__token_DEFINED -#define SOAP_TYPE_PointerToxsd__token_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__token(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__token(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToxsd__token(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__token(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToxsd__token(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkHostExtension_DEFINED -#define SOAP_TYPE_PointerTott__NetworkHostExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkHostExtension(struct soap*, tt__NetworkHostExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkHostExtension(struct soap*, const char *, int, tt__NetworkHostExtension *const*, const char *); -SOAP_FMAC3 tt__NetworkHostExtension ** SOAP_FMAC4 soap_in_PointerTott__NetworkHostExtension(struct soap*, const char*, tt__NetworkHostExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkHostExtension(struct soap*, tt__NetworkHostExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkHostExtension ** SOAP_FMAC4 soap_get_PointerTott__NetworkHostExtension(struct soap*, tt__NetworkHostExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__DNSName_DEFINED -#define SOAP_TYPE_PointerTott__DNSName_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__DNSName(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__DNSName(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__DNSName(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__DNSName(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__DNSName(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv6Address_DEFINED -#define SOAP_TYPE_PointerTott__IPv6Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv6Address(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv6Address(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__IPv6Address(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv6Address(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__IPv6Address(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv4Address_DEFINED -#define SOAP_TYPE_PointerTott__IPv4Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv4Address(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv4Address(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__IPv4Address(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv4Address(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__IPv4Address(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkProtocolExtension_DEFINED -#define SOAP_TYPE_PointerTott__NetworkProtocolExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkProtocolExtension(struct soap*, tt__NetworkProtocolExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkProtocolExtension(struct soap*, const char *, int, tt__NetworkProtocolExtension *const*, const char *); -SOAP_FMAC3 tt__NetworkProtocolExtension ** SOAP_FMAC4 soap_in_PointerTott__NetworkProtocolExtension(struct soap*, const char*, tt__NetworkProtocolExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkProtocolExtension(struct soap*, tt__NetworkProtocolExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkProtocolExtension ** SOAP_FMAC4 soap_get_PointerTott__NetworkProtocolExtension(struct soap*, tt__NetworkProtocolExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv6ConfigurationExtension_DEFINED -#define SOAP_TYPE_PointerTott__IPv6ConfigurationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv6ConfigurationExtension(struct soap*, tt__IPv6ConfigurationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv6ConfigurationExtension(struct soap*, const char *, int, tt__IPv6ConfigurationExtension *const*, const char *); -SOAP_FMAC3 tt__IPv6ConfigurationExtension ** SOAP_FMAC4 soap_in_PointerTott__IPv6ConfigurationExtension(struct soap*, const char*, tt__IPv6ConfigurationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv6ConfigurationExtension(struct soap*, tt__IPv6ConfigurationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__IPv6ConfigurationExtension ** SOAP_FMAC4 soap_get_PointerTott__IPv6ConfigurationExtension(struct soap*, tt__IPv6ConfigurationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PrefixedIPv6Address_DEFINED -#define SOAP_TYPE_PointerTott__PrefixedIPv6Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PrefixedIPv6Address(struct soap*, tt__PrefixedIPv6Address *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PrefixedIPv6Address(struct soap*, const char *, int, tt__PrefixedIPv6Address *const*, const char *); -SOAP_FMAC3 tt__PrefixedIPv6Address ** SOAP_FMAC4 soap_in_PointerTott__PrefixedIPv6Address(struct soap*, const char*, tt__PrefixedIPv6Address **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PrefixedIPv6Address(struct soap*, tt__PrefixedIPv6Address *const*, const char*, const char*); -SOAP_FMAC3 tt__PrefixedIPv6Address ** SOAP_FMAC4 soap_get_PointerTott__PrefixedIPv6Address(struct soap*, tt__PrefixedIPv6Address **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PrefixedIPv4Address_DEFINED -#define SOAP_TYPE_PointerTott__PrefixedIPv4Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PrefixedIPv4Address(struct soap*, tt__PrefixedIPv4Address *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PrefixedIPv4Address(struct soap*, const char *, int, tt__PrefixedIPv4Address *const*, const char *); -SOAP_FMAC3 tt__PrefixedIPv4Address ** SOAP_FMAC4 soap_in_PointerTott__PrefixedIPv4Address(struct soap*, const char*, tt__PrefixedIPv4Address **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PrefixedIPv4Address(struct soap*, tt__PrefixedIPv4Address *const*, const char*, const char*); -SOAP_FMAC3 tt__PrefixedIPv4Address ** SOAP_FMAC4 soap_get_PointerTott__PrefixedIPv4Address(struct soap*, tt__PrefixedIPv4Address **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv4Configuration_DEFINED -#define SOAP_TYPE_PointerTott__IPv4Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv4Configuration(struct soap*, tt__IPv4Configuration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv4Configuration(struct soap*, const char *, int, tt__IPv4Configuration *const*, const char *); -SOAP_FMAC3 tt__IPv4Configuration ** SOAP_FMAC4 soap_in_PointerTott__IPv4Configuration(struct soap*, const char*, tt__IPv4Configuration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv4Configuration(struct soap*, tt__IPv4Configuration *const*, const char*, const char*); -SOAP_FMAC3 tt__IPv4Configuration ** SOAP_FMAC4 soap_get_PointerTott__IPv4Configuration(struct soap*, tt__IPv4Configuration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPv6Configuration_DEFINED -#define SOAP_TYPE_PointerTott__IPv6Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPv6Configuration(struct soap*, tt__IPv6Configuration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPv6Configuration(struct soap*, const char *, int, tt__IPv6Configuration *const*, const char *); -SOAP_FMAC3 tt__IPv6Configuration ** SOAP_FMAC4 soap_in_PointerTott__IPv6Configuration(struct soap*, const char*, tt__IPv6Configuration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPv6Configuration(struct soap*, tt__IPv6Configuration *const*, const char*, const char*); -SOAP_FMAC3 tt__IPv6Configuration ** SOAP_FMAC4 soap_get_PointerTott__IPv6Configuration(struct soap*, tt__IPv6Configuration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceConnectionSetting_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceConnectionSetting_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceConnectionSetting(struct soap*, tt__NetworkInterfaceConnectionSetting *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceConnectionSetting(struct soap*, const char *, int, tt__NetworkInterfaceConnectionSetting *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceConnectionSetting ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceConnectionSetting(struct soap*, const char*, tt__NetworkInterfaceConnectionSetting **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceConnectionSetting(struct soap*, tt__NetworkInterfaceConnectionSetting *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceConnectionSetting ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceConnectionSetting(struct soap*, tt__NetworkInterfaceConnectionSetting **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__NetworkInterfaceExtension2_DEFINED -#define SOAP_TYPE_PointerTott__NetworkInterfaceExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__NetworkInterfaceExtension2(struct soap*, tt__NetworkInterfaceExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__NetworkInterfaceExtension2(struct soap*, const char *, int, tt__NetworkInterfaceExtension2 *const*, const char *); -SOAP_FMAC3 tt__NetworkInterfaceExtension2 ** SOAP_FMAC4 soap_in_PointerTott__NetworkInterfaceExtension2(struct soap*, const char*, tt__NetworkInterfaceExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__NetworkInterfaceExtension2(struct soap*, tt__NetworkInterfaceExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__NetworkInterfaceExtension2 ** SOAP_FMAC4 soap_get_PointerTott__NetworkInterfaceExtension2(struct soap*, tt__NetworkInterfaceExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot11Configuration_DEFINED -#define SOAP_TYPE_PointerTott__Dot11Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot11Configuration(struct soap*, tt__Dot11Configuration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot11Configuration(struct soap*, const char *, int, tt__Dot11Configuration *const*, const char *); -SOAP_FMAC3 tt__Dot11Configuration ** SOAP_FMAC4 soap_in_PointerTott__Dot11Configuration(struct soap*, const char*, tt__Dot11Configuration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot11Configuration(struct soap*, tt__Dot11Configuration *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot11Configuration ** SOAP_FMAC4 soap_get_PointerTott__Dot11Configuration(struct soap*, tt__Dot11Configuration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Dot3Configuration_DEFINED -#define SOAP_TYPE_PointerTott__Dot3Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Dot3Configuration(struct soap*, tt__Dot3Configuration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Dot3Configuration(struct soap*, const char *, int, tt__Dot3Configuration *const*, const char *); -SOAP_FMAC3 tt__Dot3Configuration ** SOAP_FMAC4 soap_in_PointerTott__Dot3Configuration(struct soap*, const char*, tt__Dot3Configuration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Dot3Configuration(struct soap*, tt__Dot3Configuration *const*, const char*, const char*); -SOAP_FMAC3 tt__Dot3Configuration ** SOAP_FMAC4 soap_get_PointerTott__Dot3Configuration(struct soap*, tt__Dot3Configuration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Transport_DEFINED -#define SOAP_TYPE_PointerTott__Transport_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Transport(struct soap*, tt__Transport *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Transport(struct soap*, const char *, int, tt__Transport *const*, const char *); -SOAP_FMAC3 tt__Transport ** SOAP_FMAC4 soap_in_PointerTott__Transport(struct soap*, const char*, tt__Transport **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Transport(struct soap*, tt__Transport *const*, const char*, const char*); -SOAP_FMAC3 tt__Transport ** SOAP_FMAC4 soap_get_PointerTott__Transport(struct soap*, tt__Transport **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IPAddress_DEFINED -#define SOAP_TYPE_PointerTott__IPAddress_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IPAddress(struct soap*, tt__IPAddress *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IPAddress(struct soap*, const char *, int, tt__IPAddress *const*, const char *); -SOAP_FMAC3 tt__IPAddress ** SOAP_FMAC4 soap_in_PointerTott__IPAddress(struct soap*, const char*, tt__IPAddress **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IPAddress(struct soap*, tt__IPAddress *const*, const char*, const char*); -SOAP_FMAC3 tt__IPAddress ** SOAP_FMAC4 soap_get_PointerTott__IPAddress(struct soap*, tt__IPAddress **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__AudioDecoderConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioDecoderConfigurationOptionsExtension(struct soap*, tt__AudioDecoderConfigurationOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioDecoderConfigurationOptionsExtension(struct soap*, const char *, int, tt__AudioDecoderConfigurationOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__AudioDecoderConfigurationOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__AudioDecoderConfigurationOptionsExtension(struct soap*, const char*, tt__AudioDecoderConfigurationOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioDecoderConfigurationOptionsExtension(struct soap*, tt__AudioDecoderConfigurationOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioDecoderConfigurationOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__AudioDecoderConfigurationOptionsExtension(struct soap*, tt__AudioDecoderConfigurationOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__G726DecOptions_DEFINED -#define SOAP_TYPE_PointerTott__G726DecOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__G726DecOptions(struct soap*, tt__G726DecOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__G726DecOptions(struct soap*, const char *, int, tt__G726DecOptions *const*, const char *); -SOAP_FMAC3 tt__G726DecOptions ** SOAP_FMAC4 soap_in_PointerTott__G726DecOptions(struct soap*, const char*, tt__G726DecOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__G726DecOptions(struct soap*, tt__G726DecOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__G726DecOptions ** SOAP_FMAC4 soap_get_PointerTott__G726DecOptions(struct soap*, tt__G726DecOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__G711DecOptions_DEFINED -#define SOAP_TYPE_PointerTott__G711DecOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__G711DecOptions(struct soap*, tt__G711DecOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__G711DecOptions(struct soap*, const char *, int, tt__G711DecOptions *const*, const char *); -SOAP_FMAC3 tt__G711DecOptions ** SOAP_FMAC4 soap_in_PointerTott__G711DecOptions(struct soap*, const char*, tt__G711DecOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__G711DecOptions(struct soap*, tt__G711DecOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__G711DecOptions ** SOAP_FMAC4 soap_get_PointerTott__G711DecOptions(struct soap*, tt__G711DecOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AACDecOptions_DEFINED -#define SOAP_TYPE_PointerTott__AACDecOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AACDecOptions(struct soap*, tt__AACDecOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AACDecOptions(struct soap*, const char *, int, tt__AACDecOptions *const*, const char *); -SOAP_FMAC3 tt__AACDecOptions ** SOAP_FMAC4 soap_in_PointerTott__AACDecOptions(struct soap*, const char*, tt__AACDecOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AACDecOptions(struct soap*, tt__AACDecOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__AACDecOptions ** SOAP_FMAC4 soap_get_PointerTott__AACDecOptions(struct soap*, tt__AACDecOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__VideoDecoderConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoDecoderConfigurationOptionsExtension(struct soap*, tt__VideoDecoderConfigurationOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoDecoderConfigurationOptionsExtension(struct soap*, const char *, int, tt__VideoDecoderConfigurationOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__VideoDecoderConfigurationOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__VideoDecoderConfigurationOptionsExtension(struct soap*, const char*, tt__VideoDecoderConfigurationOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoDecoderConfigurationOptionsExtension(struct soap*, tt__VideoDecoderConfigurationOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoDecoderConfigurationOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__VideoDecoderConfigurationOptionsExtension(struct soap*, tt__VideoDecoderConfigurationOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Mpeg4DecOptions_DEFINED -#define SOAP_TYPE_PointerTott__Mpeg4DecOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Mpeg4DecOptions(struct soap*, tt__Mpeg4DecOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Mpeg4DecOptions(struct soap*, const char *, int, tt__Mpeg4DecOptions *const*, const char *); -SOAP_FMAC3 tt__Mpeg4DecOptions ** SOAP_FMAC4 soap_in_PointerTott__Mpeg4DecOptions(struct soap*, const char*, tt__Mpeg4DecOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Mpeg4DecOptions(struct soap*, tt__Mpeg4DecOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__Mpeg4DecOptions ** SOAP_FMAC4 soap_get_PointerTott__Mpeg4DecOptions(struct soap*, tt__Mpeg4DecOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__H264DecOptions_DEFINED -#define SOAP_TYPE_PointerTott__H264DecOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__H264DecOptions(struct soap*, tt__H264DecOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__H264DecOptions(struct soap*, const char *, int, tt__H264DecOptions *const*, const char *); -SOAP_FMAC3 tt__H264DecOptions ** SOAP_FMAC4 soap_in_PointerTott__H264DecOptions(struct soap*, const char*, tt__H264DecOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__H264DecOptions(struct soap*, tt__H264DecOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__H264DecOptions ** SOAP_FMAC4 soap_get_PointerTott__H264DecOptions(struct soap*, tt__H264DecOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__JpegDecOptions_DEFINED -#define SOAP_TYPE_PointerTott__JpegDecOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__JpegDecOptions(struct soap*, tt__JpegDecOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__JpegDecOptions(struct soap*, const char *, int, tt__JpegDecOptions *const*, const char *); -SOAP_FMAC3 tt__JpegDecOptions ** SOAP_FMAC4 soap_in_PointerTott__JpegDecOptions(struct soap*, const char*, tt__JpegDecOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__JpegDecOptions(struct soap*, tt__JpegDecOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__JpegDecOptions ** SOAP_FMAC4 soap_get_PointerTott__JpegDecOptions(struct soap*, tt__JpegDecOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZStatusFilterOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__PTZStatusFilterOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZStatusFilterOptionsExtension(struct soap*, tt__PTZStatusFilterOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZStatusFilterOptionsExtension(struct soap*, const char *, int, tt__PTZStatusFilterOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__PTZStatusFilterOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__PTZStatusFilterOptionsExtension(struct soap*, const char*, tt__PTZStatusFilterOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZStatusFilterOptionsExtension(struct soap*, tt__PTZStatusFilterOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZStatusFilterOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__PTZStatusFilterOptionsExtension(struct soap*, tt__PTZStatusFilterOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension2_DEFINED -#define SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataConfigurationOptionsExtension2(struct soap*, tt__MetadataConfigurationOptionsExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataConfigurationOptionsExtension2(struct soap*, const char *, int, tt__MetadataConfigurationOptionsExtension2 *const*, const char *); -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension2 ** SOAP_FMAC4 soap_in_PointerTott__MetadataConfigurationOptionsExtension2(struct soap*, const char*, tt__MetadataConfigurationOptionsExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataConfigurationOptionsExtension2(struct soap*, tt__MetadataConfigurationOptionsExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension2 ** SOAP_FMAC4 soap_get_PointerTott__MetadataConfigurationOptionsExtension2(struct soap*, tt__MetadataConfigurationOptionsExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__MetadataConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataConfigurationOptionsExtension(struct soap*, tt__MetadataConfigurationOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataConfigurationOptionsExtension(struct soap*, const char *, int, tt__MetadataConfigurationOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__MetadataConfigurationOptionsExtension(struct soap*, const char*, tt__MetadataConfigurationOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataConfigurationOptionsExtension(struct soap*, tt__MetadataConfigurationOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataConfigurationOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__MetadataConfigurationOptionsExtension(struct soap*, tt__MetadataConfigurationOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZStatusFilterOptions_DEFINED -#define SOAP_TYPE_PointerTott__PTZStatusFilterOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZStatusFilterOptions(struct soap*, tt__PTZStatusFilterOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZStatusFilterOptions(struct soap*, const char *, int, tt__PTZStatusFilterOptions *const*, const char *); -SOAP_FMAC3 tt__PTZStatusFilterOptions ** SOAP_FMAC4 soap_in_PointerTott__PTZStatusFilterOptions(struct soap*, const char*, tt__PTZStatusFilterOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZStatusFilterOptions(struct soap*, tt__PTZStatusFilterOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZStatusFilterOptions ** SOAP_FMAC4 soap_get_PointerTott__PTZStatusFilterOptions(struct soap*, tt__PTZStatusFilterOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tt__EventSubscription_SubscriptionPolicy_DEFINED -#define SOAP_TYPE_PointerTo_tt__EventSubscription_SubscriptionPolicy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tt__EventSubscription_SubscriptionPolicy(struct soap*, _tt__EventSubscription_SubscriptionPolicy *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tt__EventSubscription_SubscriptionPolicy(struct soap*, const char *, int, _tt__EventSubscription_SubscriptionPolicy *const*, const char *); -SOAP_FMAC3 _tt__EventSubscription_SubscriptionPolicy ** SOAP_FMAC4 soap_in_PointerTo_tt__EventSubscription_SubscriptionPolicy(struct soap*, const char*, _tt__EventSubscription_SubscriptionPolicy **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tt__EventSubscription_SubscriptionPolicy(struct soap*, _tt__EventSubscription_SubscriptionPolicy *const*, const char*, const char*); -SOAP_FMAC3 _tt__EventSubscription_SubscriptionPolicy ** SOAP_FMAC4 soap_get_PointerTo_tt__EventSubscription_SubscriptionPolicy(struct soap*, _tt__EventSubscription_SubscriptionPolicy **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioEncoderConfigurationOption_DEFINED -#define SOAP_TYPE_PointerTott__AudioEncoderConfigurationOption_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioEncoderConfigurationOption(struct soap*, tt__AudioEncoderConfigurationOption *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioEncoderConfigurationOption(struct soap*, const char *, int, tt__AudioEncoderConfigurationOption *const*, const char *); -SOAP_FMAC3 tt__AudioEncoderConfigurationOption ** SOAP_FMAC4 soap_in_PointerTott__AudioEncoderConfigurationOption(struct soap*, const char*, tt__AudioEncoderConfigurationOption **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioEncoderConfigurationOption(struct soap*, tt__AudioEncoderConfigurationOption *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioEncoderConfigurationOption ** SOAP_FMAC4 soap_get_PointerTott__AudioEncoderConfigurationOption(struct soap*, tt__AudioEncoderConfigurationOption **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioSourceOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__AudioSourceOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioSourceOptionsExtension(struct soap*, tt__AudioSourceOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioSourceOptionsExtension(struct soap*, const char *, int, tt__AudioSourceOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__AudioSourceOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__AudioSourceOptionsExtension(struct soap*, const char*, tt__AudioSourceOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioSourceOptionsExtension(struct soap*, tt__AudioSourceOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioSourceOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__AudioSourceOptionsExtension(struct soap*, tt__AudioSourceOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__StringAttrList_DEFINED -#define SOAP_TYPE_PointerTott__StringAttrList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__StringAttrList(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__StringAttrList(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__StringAttrList(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__StringAttrList(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__StringAttrList(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FloatAttrList_DEFINED -#define SOAP_TYPE_PointerTott__FloatAttrList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FloatAttrList(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FloatAttrList(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__FloatAttrList(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FloatAttrList(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__FloatAttrList(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IntAttrList_DEFINED -#define SOAP_TYPE_PointerTott__IntAttrList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IntAttrList(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IntAttrList(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__IntAttrList(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IntAttrList(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__IntAttrList(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoResolution2_DEFINED -#define SOAP_TYPE_PointerTott__VideoResolution2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoResolution2(struct soap*, tt__VideoResolution2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoResolution2(struct soap*, const char *, int, tt__VideoResolution2 *const*, const char *); -SOAP_FMAC3 tt__VideoResolution2 ** SOAP_FMAC4 soap_in_PointerTott__VideoResolution2(struct soap*, const char*, tt__VideoResolution2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoResolution2(struct soap*, tt__VideoResolution2 *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoResolution2 ** SOAP_FMAC4 soap_get_PointerTott__VideoResolution2(struct soap*, tt__VideoResolution2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__FloatRange_DEFINED -#define SOAP_TYPE_PointerTott__FloatRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__FloatRange(struct soap*, tt__FloatRange *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__FloatRange(struct soap*, const char *, int, tt__FloatRange *const*, const char *); -SOAP_FMAC3 tt__FloatRange ** SOAP_FMAC4 soap_in_PointerTott__FloatRange(struct soap*, const char*, tt__FloatRange **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__FloatRange(struct soap*, tt__FloatRange *const*, const char*, const char*); -SOAP_FMAC3 tt__FloatRange ** SOAP_FMAC4 soap_get_PointerTott__FloatRange(struct soap*, tt__FloatRange **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoResolution_DEFINED -#define SOAP_TYPE_PointerTott__VideoResolution_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoResolution(struct soap*, tt__VideoResolution *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoResolution(struct soap*, const char *, int, tt__VideoResolution *const*, const char *); -SOAP_FMAC3 tt__VideoResolution ** SOAP_FMAC4 soap_in_PointerTott__VideoResolution(struct soap*, const char*, tt__VideoResolution **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoResolution(struct soap*, tt__VideoResolution *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoResolution ** SOAP_FMAC4 soap_get_PointerTott__VideoResolution(struct soap*, tt__VideoResolution **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension2_DEFINED -#define SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoEncoderOptionsExtension2(struct soap*, tt__VideoEncoderOptionsExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoEncoderOptionsExtension2(struct soap*, const char *, int, tt__VideoEncoderOptionsExtension2 *const*, const char *); -SOAP_FMAC3 tt__VideoEncoderOptionsExtension2 ** SOAP_FMAC4 soap_in_PointerTott__VideoEncoderOptionsExtension2(struct soap*, const char*, tt__VideoEncoderOptionsExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoEncoderOptionsExtension2(struct soap*, tt__VideoEncoderOptionsExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoEncoderOptionsExtension2 ** SOAP_FMAC4 soap_get_PointerTott__VideoEncoderOptionsExtension2(struct soap*, tt__VideoEncoderOptionsExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__H264Options2_DEFINED -#define SOAP_TYPE_PointerTott__H264Options2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__H264Options2(struct soap*, tt__H264Options2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__H264Options2(struct soap*, const char *, int, tt__H264Options2 *const*, const char *); -SOAP_FMAC3 tt__H264Options2 ** SOAP_FMAC4 soap_in_PointerTott__H264Options2(struct soap*, const char*, tt__H264Options2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__H264Options2(struct soap*, tt__H264Options2 *const*, const char*, const char*); -SOAP_FMAC3 tt__H264Options2 ** SOAP_FMAC4 soap_get_PointerTott__H264Options2(struct soap*, tt__H264Options2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Mpeg4Options2_DEFINED -#define SOAP_TYPE_PointerTott__Mpeg4Options2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Mpeg4Options2(struct soap*, tt__Mpeg4Options2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Mpeg4Options2(struct soap*, const char *, int, tt__Mpeg4Options2 *const*, const char *); -SOAP_FMAC3 tt__Mpeg4Options2 ** SOAP_FMAC4 soap_in_PointerTott__Mpeg4Options2(struct soap*, const char*, tt__Mpeg4Options2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Mpeg4Options2(struct soap*, tt__Mpeg4Options2 *const*, const char*, const char*); -SOAP_FMAC3 tt__Mpeg4Options2 ** SOAP_FMAC4 soap_get_PointerTott__Mpeg4Options2(struct soap*, tt__Mpeg4Options2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__JpegOptions2_DEFINED -#define SOAP_TYPE_PointerTott__JpegOptions2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__JpegOptions2(struct soap*, tt__JpegOptions2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__JpegOptions2(struct soap*, const char *, int, tt__JpegOptions2 *const*, const char *); -SOAP_FMAC3 tt__JpegOptions2 ** SOAP_FMAC4 soap_in_PointerTott__JpegOptions2(struct soap*, const char*, tt__JpegOptions2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__JpegOptions2(struct soap*, tt__JpegOptions2 *const*, const char*, const char*); -SOAP_FMAC3 tt__JpegOptions2 ** SOAP_FMAC4 soap_get_PointerTott__JpegOptions2(struct soap*, tt__JpegOptions2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__VideoEncoderOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoEncoderOptionsExtension(struct soap*, tt__VideoEncoderOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoEncoderOptionsExtension(struct soap*, const char *, int, tt__VideoEncoderOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__VideoEncoderOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__VideoEncoderOptionsExtension(struct soap*, const char*, tt__VideoEncoderOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoEncoderOptionsExtension(struct soap*, tt__VideoEncoderOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoEncoderOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__VideoEncoderOptionsExtension(struct soap*, tt__VideoEncoderOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__H264Options_DEFINED -#define SOAP_TYPE_PointerTott__H264Options_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__H264Options(struct soap*, tt__H264Options *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__H264Options(struct soap*, const char *, int, tt__H264Options *const*, const char *); -SOAP_FMAC3 tt__H264Options ** SOAP_FMAC4 soap_in_PointerTott__H264Options(struct soap*, const char*, tt__H264Options **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__H264Options(struct soap*, tt__H264Options *const*, const char*, const char*); -SOAP_FMAC3 tt__H264Options ** SOAP_FMAC4 soap_get_PointerTott__H264Options(struct soap*, tt__H264Options **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Mpeg4Options_DEFINED -#define SOAP_TYPE_PointerTott__Mpeg4Options_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Mpeg4Options(struct soap*, tt__Mpeg4Options *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Mpeg4Options(struct soap*, const char *, int, tt__Mpeg4Options *const*, const char *); -SOAP_FMAC3 tt__Mpeg4Options ** SOAP_FMAC4 soap_in_PointerTott__Mpeg4Options(struct soap*, const char*, tt__Mpeg4Options **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Mpeg4Options(struct soap*, tt__Mpeg4Options *const*, const char*, const char*); -SOAP_FMAC3 tt__Mpeg4Options ** SOAP_FMAC4 soap_get_PointerTott__Mpeg4Options(struct soap*, tt__Mpeg4Options **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__JpegOptions_DEFINED -#define SOAP_TYPE_PointerTott__JpegOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__JpegOptions(struct soap*, tt__JpegOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__JpegOptions(struct soap*, const char *, int, tt__JpegOptions *const*, const char *); -SOAP_FMAC3 tt__JpegOptions ** SOAP_FMAC4 soap_in_PointerTott__JpegOptions(struct soap*, const char*, tt__JpegOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__JpegOptions(struct soap*, tt__JpegOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__JpegOptions ** SOAP_FMAC4 soap_get_PointerTott__JpegOptions(struct soap*, tt__JpegOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RotateOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__RotateOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RotateOptionsExtension(struct soap*, tt__RotateOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RotateOptionsExtension(struct soap*, const char *, int, tt__RotateOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__RotateOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__RotateOptionsExtension(struct soap*, const char*, tt__RotateOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RotateOptionsExtension(struct soap*, tt__RotateOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__RotateOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__RotateOptionsExtension(struct soap*, tt__RotateOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IntItems_DEFINED -#define SOAP_TYPE_PointerTott__IntItems_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IntItems(struct soap*, tt__IntItems *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IntItems(struct soap*, const char *, int, tt__IntItems *const*, const char *); -SOAP_FMAC3 tt__IntItems ** SOAP_FMAC4 soap_in_PointerTott__IntItems(struct soap*, const char*, tt__IntItems **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IntItems(struct soap*, tt__IntItems *const*, const char*, const char*); -SOAP_FMAC3 tt__IntItems ** SOAP_FMAC4 soap_get_PointerTott__IntItems(struct soap*, tt__IntItems **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension2_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceConfigurationOptionsExtension2(struct soap*, tt__VideoSourceConfigurationOptionsExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceConfigurationOptionsExtension2(struct soap*, const char *, int, tt__VideoSourceConfigurationOptionsExtension2 *const*, const char *); -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension2 ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceConfigurationOptionsExtension2(struct soap*, const char*, tt__VideoSourceConfigurationOptionsExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceConfigurationOptionsExtension2(struct soap*, tt__VideoSourceConfigurationOptionsExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension2 ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceConfigurationOptionsExtension2(struct soap*, tt__VideoSourceConfigurationOptionsExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RotateOptions_DEFINED -#define SOAP_TYPE_PointerTott__RotateOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RotateOptions(struct soap*, tt__RotateOptions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RotateOptions(struct soap*, const char *, int, tt__RotateOptions *const*, const char *); -SOAP_FMAC3 tt__RotateOptions ** SOAP_FMAC4 soap_in_PointerTott__RotateOptions(struct soap*, const char*, tt__RotateOptions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RotateOptions(struct soap*, tt__RotateOptions *const*, const char*, const char*); -SOAP_FMAC3 tt__RotateOptions ** SOAP_FMAC4 soap_get_PointerTott__RotateOptions(struct soap*, tt__RotateOptions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceConfigurationOptionsExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceConfigurationOptionsExtension(struct soap*, tt__VideoSourceConfigurationOptionsExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceConfigurationOptionsExtension(struct soap*, const char *, int, tt__VideoSourceConfigurationOptionsExtension *const*, const char *); -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceConfigurationOptionsExtension(struct soap*, const char*, tt__VideoSourceConfigurationOptionsExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceConfigurationOptionsExtension(struct soap*, tt__VideoSourceConfigurationOptionsExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationOptionsExtension ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceConfigurationOptionsExtension(struct soap*, tt__VideoSourceConfigurationOptionsExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IntRectangleRange_DEFINED -#define SOAP_TYPE_PointerTott__IntRectangleRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IntRectangleRange(struct soap*, tt__IntRectangleRange *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IntRectangleRange(struct soap*, const char *, int, tt__IntRectangleRange *const*, const char *); -SOAP_FMAC3 tt__IntRectangleRange ** SOAP_FMAC4 soap_in_PointerTott__IntRectangleRange(struct soap*, const char*, tt__IntRectangleRange **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IntRectangleRange(struct soap*, tt__IntRectangleRange *const*, const char*, const char*); -SOAP_FMAC3 tt__IntRectangleRange ** SOAP_FMAC4 soap_get_PointerTott__IntRectangleRange(struct soap*, tt__IntRectangleRange **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LensProjection_DEFINED -#define SOAP_TYPE_PointerTott__LensProjection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LensProjection(struct soap*, tt__LensProjection *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LensProjection(struct soap*, const char *, int, tt__LensProjection *const*, const char *); -SOAP_FMAC3 tt__LensProjection ** SOAP_FMAC4 soap_in_PointerTott__LensProjection(struct soap*, const char*, tt__LensProjection **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LensProjection(struct soap*, tt__LensProjection *const*, const char*, const char*); -SOAP_FMAC3 tt__LensProjection ** SOAP_FMAC4 soap_get_PointerTott__LensProjection(struct soap*, tt__LensProjection **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LensOffset_DEFINED -#define SOAP_TYPE_PointerTott__LensOffset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LensOffset(struct soap*, tt__LensOffset *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LensOffset(struct soap*, const char *, int, tt__LensOffset *const*, const char *); -SOAP_FMAC3 tt__LensOffset ** SOAP_FMAC4 soap_in_PointerTott__LensOffset(struct soap*, const char*, tt__LensOffset **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LensOffset(struct soap*, tt__LensOffset *const*, const char*, const char*); -SOAP_FMAC3 tt__LensOffset ** SOAP_FMAC4 soap_get_PointerTott__LensOffset(struct soap*, tt__LensOffset **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__RotateExtension_DEFINED -#define SOAP_TYPE_PointerTott__RotateExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__RotateExtension(struct soap*, tt__RotateExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__RotateExtension(struct soap*, const char *, int, tt__RotateExtension *const*, const char *); -SOAP_FMAC3 tt__RotateExtension ** SOAP_FMAC4 soap_in_PointerTott__RotateExtension(struct soap*, const char*, tt__RotateExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__RotateExtension(struct soap*, tt__RotateExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__RotateExtension ** SOAP_FMAC4 soap_get_PointerTott__RotateExtension(struct soap*, tt__RotateExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__SceneOrientation_DEFINED -#define SOAP_TYPE_PointerTott__SceneOrientation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__SceneOrientation(struct soap*, tt__SceneOrientation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__SceneOrientation(struct soap*, const char *, int, tt__SceneOrientation *const*, const char *); -SOAP_FMAC3 tt__SceneOrientation ** SOAP_FMAC4 soap_in_PointerTott__SceneOrientation(struct soap*, const char*, tt__SceneOrientation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__SceneOrientation(struct soap*, tt__SceneOrientation *const*, const char*, const char*); -SOAP_FMAC3 tt__SceneOrientation ** SOAP_FMAC4 soap_get_PointerTott__SceneOrientation(struct soap*, tt__SceneOrientation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LensDescription_DEFINED -#define SOAP_TYPE_PointerTott__LensDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LensDescription(struct soap*, tt__LensDescription *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LensDescription(struct soap*, const char *, int, tt__LensDescription *const*, const char *); -SOAP_FMAC3 tt__LensDescription ** SOAP_FMAC4 soap_in_PointerTott__LensDescription(struct soap*, const char*, tt__LensDescription **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LensDescription(struct soap*, tt__LensDescription *const*, const char*, const char*); -SOAP_FMAC3 tt__LensDescription ** SOAP_FMAC4 soap_get_PointerTott__LensDescription(struct soap*, tt__LensDescription **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension2_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceConfigurationExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceConfigurationExtension2(struct soap*, tt__VideoSourceConfigurationExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceConfigurationExtension2(struct soap*, const char *, int, tt__VideoSourceConfigurationExtension2 *const*, const char *); -SOAP_FMAC3 tt__VideoSourceConfigurationExtension2 ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceConfigurationExtension2(struct soap*, const char*, tt__VideoSourceConfigurationExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceConfigurationExtension2(struct soap*, tt__VideoSourceConfigurationExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceConfigurationExtension2 ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceConfigurationExtension2(struct soap*, tt__VideoSourceConfigurationExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Rotate_DEFINED -#define SOAP_TYPE_PointerTott__Rotate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Rotate(struct soap*, tt__Rotate *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Rotate(struct soap*, const char *, int, tt__Rotate *const*, const char *); -SOAP_FMAC3 tt__Rotate ** SOAP_FMAC4 soap_in_PointerTott__Rotate(struct soap*, const char*, tt__Rotate **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Rotate(struct soap*, tt__Rotate *const*, const char*, const char*); -SOAP_FMAC3 tt__Rotate ** SOAP_FMAC4 soap_get_PointerTott__Rotate(struct soap*, tt__Rotate **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ProfileExtension2_DEFINED -#define SOAP_TYPE_PointerTott__ProfileExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ProfileExtension2(struct soap*, tt__ProfileExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ProfileExtension2(struct soap*, const char *, int, tt__ProfileExtension2 *const*, const char *); -SOAP_FMAC3 tt__ProfileExtension2 ** SOAP_FMAC4 soap_in_PointerTott__ProfileExtension2(struct soap*, const char*, tt__ProfileExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ProfileExtension2(struct soap*, tt__ProfileExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__ProfileExtension2 ** SOAP_FMAC4 soap_get_PointerTott__ProfileExtension2(struct soap*, tt__ProfileExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioDecoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__AudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioDecoderConfiguration(struct soap*, tt__AudioDecoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioDecoderConfiguration(struct soap*, const char *, int, tt__AudioDecoderConfiguration *const*, const char *); -SOAP_FMAC3 tt__AudioDecoderConfiguration ** SOAP_FMAC4 soap_in_PointerTott__AudioDecoderConfiguration(struct soap*, const char*, tt__AudioDecoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioDecoderConfiguration(struct soap*, tt__AudioDecoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioDecoderConfiguration ** SOAP_FMAC4 soap_get_PointerTott__AudioDecoderConfiguration(struct soap*, tt__AudioDecoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioOutputConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__AudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioOutputConfiguration(struct soap*, tt__AudioOutputConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioOutputConfiguration(struct soap*, const char *, int, tt__AudioOutputConfiguration *const*, const char *); -SOAP_FMAC3 tt__AudioOutputConfiguration ** SOAP_FMAC4 soap_in_PointerTott__AudioOutputConfiguration(struct soap*, const char*, tt__AudioOutputConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioOutputConfiguration(struct soap*, tt__AudioOutputConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioOutputConfiguration ** SOAP_FMAC4 soap_get_PointerTott__AudioOutputConfiguration(struct soap*, tt__AudioOutputConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ProfileExtension_DEFINED -#define SOAP_TYPE_PointerTott__ProfileExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ProfileExtension(struct soap*, tt__ProfileExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ProfileExtension(struct soap*, const char *, int, tt__ProfileExtension *const*, const char *); -SOAP_FMAC3 tt__ProfileExtension ** SOAP_FMAC4 soap_in_PointerTott__ProfileExtension(struct soap*, const char*, tt__ProfileExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ProfileExtension(struct soap*, tt__ProfileExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__ProfileExtension ** SOAP_FMAC4 soap_get_PointerTott__ProfileExtension(struct soap*, tt__ProfileExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MetadataConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__MetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MetadataConfiguration(struct soap*, tt__MetadataConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MetadataConfiguration(struct soap*, const char *, int, tt__MetadataConfiguration *const*, const char *); -SOAP_FMAC3 tt__MetadataConfiguration ** SOAP_FMAC4 soap_in_PointerTott__MetadataConfiguration(struct soap*, const char*, tt__MetadataConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MetadataConfiguration(struct soap*, tt__MetadataConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__MetadataConfiguration ** SOAP_FMAC4 soap_get_PointerTott__MetadataConfiguration(struct soap*, tt__MetadataConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__PTZConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZConfiguration(struct soap*, tt__PTZConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZConfiguration(struct soap*, const char *, int, tt__PTZConfiguration *const*, const char *); -SOAP_FMAC3 tt__PTZConfiguration ** SOAP_FMAC4 soap_in_PointerTott__PTZConfiguration(struct soap*, const char*, tt__PTZConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZConfiguration(struct soap*, tt__PTZConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZConfiguration ** SOAP_FMAC4 soap_get_PointerTott__PTZConfiguration(struct soap*, tt__PTZConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__VideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoAnalyticsConfiguration(struct soap*, tt__VideoAnalyticsConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoAnalyticsConfiguration(struct soap*, const char *, int, tt__VideoAnalyticsConfiguration *const*, const char *); -SOAP_FMAC3 tt__VideoAnalyticsConfiguration ** SOAP_FMAC4 soap_in_PointerTott__VideoAnalyticsConfiguration(struct soap*, const char*, tt__VideoAnalyticsConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoAnalyticsConfiguration(struct soap*, tt__VideoAnalyticsConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoAnalyticsConfiguration ** SOAP_FMAC4 soap_get_PointerTott__VideoAnalyticsConfiguration(struct soap*, tt__VideoAnalyticsConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__AudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioEncoderConfiguration(struct soap*, tt__AudioEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioEncoderConfiguration(struct soap*, const char *, int, tt__AudioEncoderConfiguration *const*, const char *); -SOAP_FMAC3 tt__AudioEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTott__AudioEncoderConfiguration(struct soap*, const char*, tt__AudioEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioEncoderConfiguration(struct soap*, tt__AudioEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTott__AudioEncoderConfiguration(struct soap*, tt__AudioEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoEncoderConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__VideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoEncoderConfiguration(struct soap*, tt__VideoEncoderConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoEncoderConfiguration(struct soap*, const char *, int, tt__VideoEncoderConfiguration *const*, const char *); -SOAP_FMAC3 tt__VideoEncoderConfiguration ** SOAP_FMAC4 soap_in_PointerTott__VideoEncoderConfiguration(struct soap*, const char*, tt__VideoEncoderConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoEncoderConfiguration(struct soap*, tt__VideoEncoderConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoEncoderConfiguration ** SOAP_FMAC4 soap_get_PointerTott__VideoEncoderConfiguration(struct soap*, tt__VideoEncoderConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__AudioSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__AudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__AudioSourceConfiguration(struct soap*, tt__AudioSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__AudioSourceConfiguration(struct soap*, const char *, int, tt__AudioSourceConfiguration *const*, const char *); -SOAP_FMAC3 tt__AudioSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTott__AudioSourceConfiguration(struct soap*, const char*, tt__AudioSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__AudioSourceConfiguration(struct soap*, tt__AudioSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__AudioSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTott__AudioSourceConfiguration(struct soap*, tt__AudioSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceConfiguration_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceConfiguration(struct soap*, tt__VideoSourceConfiguration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceConfiguration(struct soap*, const char *, int, tt__VideoSourceConfiguration *const*, const char *); -SOAP_FMAC3 tt__VideoSourceConfiguration ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceConfiguration(struct soap*, const char*, tt__VideoSourceConfiguration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceConfiguration(struct soap*, tt__VideoSourceConfiguration *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceConfiguration ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceConfiguration(struct soap*, tt__VideoSourceConfiguration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__VideoSourceExtension2_DEFINED -#define SOAP_TYPE_PointerTott__VideoSourceExtension2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__VideoSourceExtension2(struct soap*, tt__VideoSourceExtension2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__VideoSourceExtension2(struct soap*, const char *, int, tt__VideoSourceExtension2 *const*, const char *); -SOAP_FMAC3 tt__VideoSourceExtension2 ** SOAP_FMAC4 soap_in_PointerTott__VideoSourceExtension2(struct soap*, const char*, tt__VideoSourceExtension2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__VideoSourceExtension2(struct soap*, tt__VideoSourceExtension2 *const*, const char*, const char*); -SOAP_FMAC3 tt__VideoSourceExtension2 ** SOAP_FMAC4 soap_get_PointerTott__VideoSourceExtension2(struct soap*, tt__VideoSourceExtension2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ImagingSettings20_DEFINED -#define SOAP_TYPE_PointerTott__ImagingSettings20_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ImagingSettings20(struct soap*, tt__ImagingSettings20 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ImagingSettings20(struct soap*, const char *, int, tt__ImagingSettings20 *const*, const char *); -SOAP_FMAC3 tt__ImagingSettings20 ** SOAP_FMAC4 soap_in_PointerTott__ImagingSettings20(struct soap*, const char*, tt__ImagingSettings20 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ImagingSettings20(struct soap*, tt__ImagingSettings20 *const*, const char*, const char*); -SOAP_FMAC3 tt__ImagingSettings20 ** SOAP_FMAC4 soap_get_PointerTott__ImagingSettings20(struct soap*, tt__ImagingSettings20 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__IntRange_DEFINED -#define SOAP_TYPE_PointerTott__IntRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__IntRange(struct soap*, tt__IntRange *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__IntRange(struct soap*, const char *, int, tt__IntRange *const*, const char *); -SOAP_FMAC3 tt__IntRange ** SOAP_FMAC4 soap_in_PointerTott__IntRange(struct soap*, const char*, tt__IntRange **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__IntRange(struct soap*, tt__IntRange *const*, const char*, const char*); -SOAP_FMAC3 tt__IntRange ** SOAP_FMAC4 soap_get_PointerTott__IntRange(struct soap*, tt__IntRange **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ReferenceToken_DEFINED -#define SOAP_TYPE_PointerTott__ReferenceToken_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ReferenceToken(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ReferenceToken(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTott__ReferenceToken(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ReferenceToken(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTott__ReferenceToken(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LocalOrientation_DEFINED -#define SOAP_TYPE_PointerTott__LocalOrientation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LocalOrientation(struct soap*, tt__LocalOrientation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LocalOrientation(struct soap*, const char *, int, tt__LocalOrientation *const*, const char *); -SOAP_FMAC3 tt__LocalOrientation ** SOAP_FMAC4 soap_in_PointerTott__LocalOrientation(struct soap*, const char*, tt__LocalOrientation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LocalOrientation(struct soap*, tt__LocalOrientation *const*, const char*, const char*); -SOAP_FMAC3 tt__LocalOrientation ** SOAP_FMAC4 soap_get_PointerTott__LocalOrientation(struct soap*, tt__LocalOrientation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__LocalLocation_DEFINED -#define SOAP_TYPE_PointerTott__LocalLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__LocalLocation(struct soap*, tt__LocalLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__LocalLocation(struct soap*, const char *, int, tt__LocalLocation *const*, const char *); -SOAP_FMAC3 tt__LocalLocation ** SOAP_FMAC4 soap_in_PointerTott__LocalLocation(struct soap*, const char*, tt__LocalLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__LocalLocation(struct soap*, tt__LocalLocation *const*, const char*, const char*); -SOAP_FMAC3 tt__LocalLocation ** SOAP_FMAC4 soap_get_PointerTott__LocalLocation(struct soap*, tt__LocalLocation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__GeoOrientation_DEFINED -#define SOAP_TYPE_PointerTott__GeoOrientation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__GeoOrientation(struct soap*, tt__GeoOrientation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__GeoOrientation(struct soap*, const char *, int, tt__GeoOrientation *const*, const char *); -SOAP_FMAC3 tt__GeoOrientation ** SOAP_FMAC4 soap_in_PointerTott__GeoOrientation(struct soap*, const char*, tt__GeoOrientation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__GeoOrientation(struct soap*, tt__GeoOrientation *const*, const char*, const char*); -SOAP_FMAC3 tt__GeoOrientation ** SOAP_FMAC4 soap_get_PointerTott__GeoOrientation(struct soap*, tt__GeoOrientation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__GeoLocation_DEFINED -#define SOAP_TYPE_PointerTott__GeoLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__GeoLocation(struct soap*, tt__GeoLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__GeoLocation(struct soap*, const char *, int, tt__GeoLocation *const*, const char *); -SOAP_FMAC3 tt__GeoLocation ** SOAP_FMAC4 soap_in_PointerTott__GeoLocation(struct soap*, const char*, tt__GeoLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__GeoLocation(struct soap*, tt__GeoLocation *const*, const char*, const char*); -SOAP_FMAC3 tt__GeoLocation ** SOAP_FMAC4 soap_get_PointerTott__GeoLocation(struct soap*, tt__GeoLocation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTodouble_DEFINED -#define SOAP_TYPE_PointerTodouble_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTodouble(struct soap*, double *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTodouble(struct soap*, const char *, int, double *const*, const char *); -SOAP_FMAC3 double ** SOAP_FMAC4 soap_in_PointerTodouble(struct soap*, const char*, double **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTodouble(struct soap*, double *const*, const char*, const char*); -SOAP_FMAC3 double ** SOAP_FMAC4 soap_get_PointerTodouble(struct soap*, double **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__TransformationExtension_DEFINED -#define SOAP_TYPE_PointerTott__TransformationExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__TransformationExtension(struct soap*, tt__TransformationExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__TransformationExtension(struct soap*, const char *, int, tt__TransformationExtension *const*, const char *); -SOAP_FMAC3 tt__TransformationExtension ** SOAP_FMAC4 soap_in_PointerTott__TransformationExtension(struct soap*, const char*, tt__TransformationExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__TransformationExtension(struct soap*, tt__TransformationExtension *const*, const char*, const char*); -SOAP_FMAC3 tt__TransformationExtension ** SOAP_FMAC4 soap_get_PointerTott__TransformationExtension(struct soap*, tt__TransformationExtension **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__anyType_DEFINED -#define SOAP_TYPE_PointerToxsd__anyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__anyType(struct soap*, struct soap_dom_element *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__anyType(struct soap*, const char *, int, struct soap_dom_element *const*, const char *); -SOAP_FMAC3 struct soap_dom_element ** SOAP_FMAC4 soap_in_PointerToxsd__anyType(struct soap*, const char*, struct soap_dom_element **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__anyType(struct soap*, struct soap_dom_element *const*, const char*, const char*); -SOAP_FMAC3 struct soap_dom_element ** SOAP_FMAC4 soap_get_PointerToxsd__anyType(struct soap*, struct soap_dom_element **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__ColorCovariance_DEFINED -#define SOAP_TYPE_PointerTott__ColorCovariance_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__ColorCovariance(struct soap*, tt__ColorCovariance *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__ColorCovariance(struct soap*, const char *, int, tt__ColorCovariance *const*, const char *); -SOAP_FMAC3 tt__ColorCovariance ** SOAP_FMAC4 soap_in_PointerTott__ColorCovariance(struct soap*, const char*, tt__ColorCovariance **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__ColorCovariance(struct soap*, tt__ColorCovariance *const*, const char*, const char*); -SOAP_FMAC3 tt__ColorCovariance ** SOAP_FMAC4 soap_get_PointerTott__ColorCovariance(struct soap*, tt__ColorCovariance **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Color_DEFINED -#define SOAP_TYPE_PointerTott__Color_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Color(struct soap*, tt__Color *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Color(struct soap*, const char *, int, tt__Color *const*, const char *); -SOAP_FMAC3 tt__Color ** SOAP_FMAC4 soap_in_PointerTott__Color(struct soap*, const char*, tt__Color **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Color(struct soap*, tt__Color *const*, const char*, const char*); -SOAP_FMAC3 tt__Color ** SOAP_FMAC4 soap_get_PointerTott__Color(struct soap*, tt__Color **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Vector_DEFINED -#define SOAP_TYPE_PointerTott__Vector_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Vector(struct soap*, tt__Vector *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Vector(struct soap*, const char *, int, tt__Vector *const*, const char *); -SOAP_FMAC3 tt__Vector ** SOAP_FMAC4 soap_in_PointerTott__Vector(struct soap*, const char*, tt__Vector **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Vector(struct soap*, tt__Vector *const*, const char*, const char*); -SOAP_FMAC3 tt__Vector ** SOAP_FMAC4 soap_get_PointerTott__Vector(struct soap*, tt__Vector **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTofloat_DEFINED -#define SOAP_TYPE_PointerTofloat_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTofloat(struct soap*, float *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTofloat(struct soap*, const char *, int, float *const*, const char *); -SOAP_FMAC3 float ** SOAP_FMAC4 soap_in_PointerTofloat(struct soap*, const char*, float **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTofloat(struct soap*, float *const*, const char*, const char*); -SOAP_FMAC3 float ** SOAP_FMAC4 soap_get_PointerTofloat(struct soap*, float **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__MoveStatus_DEFINED -#define SOAP_TYPE_PointerTott__MoveStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__MoveStatus(struct soap*, enum tt__MoveStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__MoveStatus(struct soap*, const char *, int, enum tt__MoveStatus *const*, const char *); -SOAP_FMAC3 enum tt__MoveStatus ** SOAP_FMAC4 soap_in_PointerTott__MoveStatus(struct soap*, const char*, enum tt__MoveStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__MoveStatus(struct soap*, enum tt__MoveStatus *const*, const char*, const char*); -SOAP_FMAC3 enum tt__MoveStatus ** SOAP_FMAC4 soap_get_PointerTott__MoveStatus(struct soap*, enum tt__MoveStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTostd__string_DEFINED -#define SOAP_TYPE_PointerTostd__string_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTostd__string(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTostd__string(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTostd__string(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTostd__string(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTostd__string(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZMoveStatus_DEFINED -#define SOAP_TYPE_PointerTott__PTZMoveStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZMoveStatus(struct soap*, tt__PTZMoveStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZMoveStatus(struct soap*, const char *, int, tt__PTZMoveStatus *const*, const char *); -SOAP_FMAC3 tt__PTZMoveStatus ** SOAP_FMAC4 soap_in_PointerTott__PTZMoveStatus(struct soap*, const char*, tt__PTZMoveStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZMoveStatus(struct soap*, tt__PTZMoveStatus *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZMoveStatus ** SOAP_FMAC4 soap_get_PointerTott__PTZMoveStatus(struct soap*, tt__PTZMoveStatus **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__PTZVector_DEFINED -#define SOAP_TYPE_PointerTott__PTZVector_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__PTZVector(struct soap*, tt__PTZVector *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__PTZVector(struct soap*, const char *, int, tt__PTZVector *const*, const char *); -SOAP_FMAC3 tt__PTZVector ** SOAP_FMAC4 soap_in_PointerTott__PTZVector(struct soap*, const char*, tt__PTZVector **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__PTZVector(struct soap*, tt__PTZVector *const*, const char*, const char*); -SOAP_FMAC3 tt__PTZVector ** SOAP_FMAC4 soap_get_PointerTott__PTZVector(struct soap*, tt__PTZVector **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Vector1D_DEFINED -#define SOAP_TYPE_PointerTott__Vector1D_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Vector1D(struct soap*, tt__Vector1D *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Vector1D(struct soap*, const char *, int, tt__Vector1D *const*, const char *); -SOAP_FMAC3 tt__Vector1D ** SOAP_FMAC4 soap_in_PointerTott__Vector1D(struct soap*, const char*, tt__Vector1D **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Vector1D(struct soap*, tt__Vector1D *const*, const char*, const char*); -SOAP_FMAC3 tt__Vector1D ** SOAP_FMAC4 soap_get_PointerTott__Vector1D(struct soap*, tt__Vector1D **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTott__Vector2D_DEFINED -#define SOAP_TYPE_PointerTott__Vector2D_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTott__Vector2D(struct soap*, tt__Vector2D *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTott__Vector2D(struct soap*, const char *, int, tt__Vector2D *const*, const char *); -SOAP_FMAC3 tt__Vector2D ** SOAP_FMAC4 soap_in_PointerTott__Vector2D(struct soap*, const char*, tt__Vector2D **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTott__Vector2D(struct soap*, tt__Vector2D *const*, const char*, const char*); -SOAP_FMAC3 tt__Vector2D ** SOAP_FMAC4 soap_get_PointerTott__Vector2D(struct soap*, tt__Vector2D **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__anyURI_DEFINED -#define SOAP_TYPE_PointerToxsd__anyURI_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__anyURI(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__anyURI(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToxsd__anyURI(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__anyURI(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToxsd__anyURI(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy_DEFINED -#define SOAP_TYPE_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, _tev__CreatePullPointSubscription_SubscriptionPolicy *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, const char *, int, _tev__CreatePullPointSubscription_SubscriptionPolicy *const*, const char *); -SOAP_FMAC3 _tev__CreatePullPointSubscription_SubscriptionPolicy ** SOAP_FMAC4 soap_in_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, const char*, _tev__CreatePullPointSubscription_SubscriptionPolicy **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, _tev__CreatePullPointSubscription_SubscriptionPolicy *const*, const char*, const char*); -SOAP_FMAC3 _tev__CreatePullPointSubscription_SubscriptionPolicy ** SOAP_FMAC4 soap_get_PointerTo_tev__CreatePullPointSubscription_SubscriptionPolicy(struct soap*, _tev__CreatePullPointSubscription_SubscriptionPolicy **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTotev__Capabilities_DEFINED -#define SOAP_TYPE_PointerTotev__Capabilities_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTotev__Capabilities(struct soap*, tev__Capabilities *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTotev__Capabilities(struct soap*, const char *, int, tev__Capabilities *const*, const char *); -SOAP_FMAC3 tev__Capabilities ** SOAP_FMAC4 soap_in_PointerTotev__Capabilities(struct soap*, const char*, tev__Capabilities **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTotev__Capabilities(struct soap*, tev__Capabilities *const*, const char*, const char*); -SOAP_FMAC3 tev__Capabilities ** SOAP_FMAC4 soap_get_PointerTotev__Capabilities(struct soap*, tev__Capabilities **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_FaultCause_DEFINED -#define SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_FaultCause_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsrfbf__BaseFaultType_FaultCause(struct soap*, _wsrfbf__BaseFaultType_FaultCause *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsrfbf__BaseFaultType_FaultCause(struct soap*, const char *, int, _wsrfbf__BaseFaultType_FaultCause *const*, const char *); -SOAP_FMAC3 _wsrfbf__BaseFaultType_FaultCause ** SOAP_FMAC4 soap_in_PointerTo_wsrfbf__BaseFaultType_FaultCause(struct soap*, const char*, _wsrfbf__BaseFaultType_FaultCause **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsrfbf__BaseFaultType_FaultCause(struct soap*, _wsrfbf__BaseFaultType_FaultCause *const*, const char*, const char*); -SOAP_FMAC3 _wsrfbf__BaseFaultType_FaultCause ** SOAP_FMAC4 soap_get_PointerTo_wsrfbf__BaseFaultType_FaultCause(struct soap*, _wsrfbf__BaseFaultType_FaultCause **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_xml__lang_DEFINED -#define SOAP_TYPE_PointerTo_xml__lang_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_xml__lang(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_xml__lang(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTo_xml__lang(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_xml__lang(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTo_xml__lang(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_ErrorCode_DEFINED -#define SOAP_TYPE_PointerTo_wsrfbf__BaseFaultType_ErrorCode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsrfbf__BaseFaultType_ErrorCode(struct soap*, _wsrfbf__BaseFaultType_ErrorCode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsrfbf__BaseFaultType_ErrorCode(struct soap*, const char *, int, _wsrfbf__BaseFaultType_ErrorCode *const*, const char *); -SOAP_FMAC3 _wsrfbf__BaseFaultType_ErrorCode ** SOAP_FMAC4 soap_in_PointerTo_wsrfbf__BaseFaultType_ErrorCode(struct soap*, const char*, _wsrfbf__BaseFaultType_ErrorCode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsrfbf__BaseFaultType_ErrorCode(struct soap*, _wsrfbf__BaseFaultType_ErrorCode *const*, const char*, const char*); -SOAP_FMAC3 _wsrfbf__BaseFaultType_ErrorCode ** SOAP_FMAC4 soap_get_PointerTo_wsrfbf__BaseFaultType_ErrorCode(struct soap*, _wsrfbf__BaseFaultType_ErrorCode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__nonNegativeInteger_DEFINED -#define SOAP_TYPE_PointerToxsd__nonNegativeInteger_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__nonNegativeInteger(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__nonNegativeInteger(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToxsd__nonNegativeInteger(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__nonNegativeInteger(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToxsd__nonNegativeInteger(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsnt__Subscribe_SubscriptionPolicy_DEFINED -#define SOAP_TYPE_PointerTo_wsnt__Subscribe_SubscriptionPolicy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsnt__Subscribe_SubscriptionPolicy(struct soap*, _wsnt__Subscribe_SubscriptionPolicy *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsnt__Subscribe_SubscriptionPolicy(struct soap*, const char *, int, _wsnt__Subscribe_SubscriptionPolicy *const*, const char *); -SOAP_FMAC3 _wsnt__Subscribe_SubscriptionPolicy ** SOAP_FMAC4 soap_in_PointerTo_wsnt__Subscribe_SubscriptionPolicy(struct soap*, const char*, _wsnt__Subscribe_SubscriptionPolicy **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsnt__Subscribe_SubscriptionPolicy(struct soap*, _wsnt__Subscribe_SubscriptionPolicy *const*, const char*, const char*); -SOAP_FMAC3 _wsnt__Subscribe_SubscriptionPolicy ** SOAP_FMAC4 soap_get_PointerTo_wsnt__Subscribe_SubscriptionPolicy(struct soap*, _wsnt__Subscribe_SubscriptionPolicy **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__AbsoluteOrRelativeTimeType_DEFINED -#define SOAP_TYPE_PointerTowsnt__AbsoluteOrRelativeTimeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__AbsoluteOrRelativeTimeType(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__AbsoluteOrRelativeTimeType(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerTowsnt__AbsoluteOrRelativeTimeType(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__AbsoluteOrRelativeTimeType(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerTowsnt__AbsoluteOrRelativeTimeType(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__NotificationMessageHolderType_DEFINED -#define SOAP_TYPE_PointerTowsnt__NotificationMessageHolderType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__NotificationMessageHolderType(struct soap*, wsnt__NotificationMessageHolderType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__NotificationMessageHolderType(struct soap*, const char *, int, wsnt__NotificationMessageHolderType *const*, const char *); -SOAP_FMAC3 wsnt__NotificationMessageHolderType ** SOAP_FMAC4 soap_in_PointerTowsnt__NotificationMessageHolderType(struct soap*, const char*, wsnt__NotificationMessageHolderType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__NotificationMessageHolderType(struct soap*, wsnt__NotificationMessageHolderType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__NotificationMessageHolderType ** SOAP_FMAC4 soap_get_PointerTowsnt__NotificationMessageHolderType(struct soap*, wsnt__NotificationMessageHolderType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__SubscriptionPolicyType_DEFINED -#define SOAP_TYPE_PointerTowsnt__SubscriptionPolicyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__SubscriptionPolicyType(struct soap*, wsnt__SubscriptionPolicyType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__SubscriptionPolicyType(struct soap*, const char *, int, wsnt__SubscriptionPolicyType *const*, const char *); -SOAP_FMAC3 wsnt__SubscriptionPolicyType ** SOAP_FMAC4 soap_in_PointerTowsnt__SubscriptionPolicyType(struct soap*, const char*, wsnt__SubscriptionPolicyType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__SubscriptionPolicyType(struct soap*, wsnt__SubscriptionPolicyType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__SubscriptionPolicyType ** SOAP_FMAC4 soap_get_PointerTowsnt__SubscriptionPolicyType(struct soap*, wsnt__SubscriptionPolicyType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__FilterType_DEFINED -#define SOAP_TYPE_PointerTowsnt__FilterType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__FilterType(struct soap*, wsnt__FilterType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__FilterType(struct soap*, const char *, int, wsnt__FilterType *const*, const char *); -SOAP_FMAC3 wsnt__FilterType ** SOAP_FMAC4 soap_in_PointerTowsnt__FilterType(struct soap*, const char*, wsnt__FilterType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__FilterType(struct soap*, wsnt__FilterType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__FilterType ** SOAP_FMAC4 soap_get_PointerTowsnt__FilterType(struct soap*, wsnt__FilterType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowstop__TopicSetType_DEFINED -#define SOAP_TYPE_PointerTowstop__TopicSetType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowstop__TopicSetType(struct soap*, wstop__TopicSetType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowstop__TopicSetType(struct soap*, const char *, int, wstop__TopicSetType *const*, const char *); -SOAP_FMAC3 wstop__TopicSetType ** SOAP_FMAC4 soap_in_PointerTowstop__TopicSetType(struct soap*, const char*, wstop__TopicSetType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowstop__TopicSetType(struct soap*, wstop__TopicSetType *const*, const char*, const char*); -SOAP_FMAC3 wstop__TopicSetType ** SOAP_FMAC4 soap_get_PointerTowstop__TopicSetType(struct soap*, wstop__TopicSetType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTobool_DEFINED -#define SOAP_TYPE_PointerTobool_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTobool(struct soap*, bool *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTobool(struct soap*, const char *, int, bool *const*, const char *); -SOAP_FMAC3 bool ** SOAP_FMAC4 soap_in_PointerTobool(struct soap*, const char*, bool **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTobool(struct soap*, bool *const*, const char*, const char*); -SOAP_FMAC3 bool ** SOAP_FMAC4 soap_get_PointerTobool(struct soap*, bool **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsnt__TopicExpressionType_DEFINED -#define SOAP_TYPE_PointerTowsnt__TopicExpressionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsnt__TopicExpressionType(struct soap*, wsnt__TopicExpressionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsnt__TopicExpressionType(struct soap*, const char *, int, wsnt__TopicExpressionType *const*, const char *); -SOAP_FMAC3 wsnt__TopicExpressionType ** SOAP_FMAC4 soap_in_PointerTowsnt__TopicExpressionType(struct soap*, const char*, wsnt__TopicExpressionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsnt__TopicExpressionType(struct soap*, wsnt__TopicExpressionType *const*, const char*, const char*); -SOAP_FMAC3 wsnt__TopicExpressionType ** SOAP_FMAC4 soap_get_PointerTowsnt__TopicExpressionType(struct soap*, wsnt__TopicExpressionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsa5__EndpointReferenceType_DEFINED -#define SOAP_TYPE_PointerTowsa5__EndpointReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsa5__EndpointReferenceType(struct soap*, struct wsa5__EndpointReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsa5__EndpointReferenceType(struct soap*, const char *, int, struct wsa5__EndpointReferenceType *const*, const char *); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_in_PointerTowsa5__EndpointReferenceType(struct soap*, const char*, struct wsa5__EndpointReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsa5__EndpointReferenceType(struct soap*, struct wsa5__EndpointReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_get_PointerTowsa5__EndpointReferenceType(struct soap*, struct wsa5__EndpointReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTounsignedByte_DEFINED -#define SOAP_TYPE_PointerTounsignedByte_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTounsignedByte(struct soap*, unsigned char *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTounsignedByte(struct soap*, const char *, int, unsigned char *const*, const char *); -SOAP_FMAC3 unsigned char ** SOAP_FMAC4 soap_in_PointerTounsignedByte(struct soap*, const char*, unsigned char **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTounsignedByte(struct soap*, unsigned char *const*, const char*, const char*); -SOAP_FMAC3 unsigned char ** SOAP_FMAC4 soap_get_PointerTounsignedByte(struct soap*, unsigned char **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTochan__ChannelInstanceType_DEFINED -#define SOAP_TYPE_PointerTochan__ChannelInstanceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTochan__ChannelInstanceType(struct soap*, struct chan__ChannelInstanceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTochan__ChannelInstanceType(struct soap*, const char *, int, struct chan__ChannelInstanceType *const*, const char *); -SOAP_FMAC3 struct chan__ChannelInstanceType ** SOAP_FMAC4 soap_in_PointerTochan__ChannelInstanceType(struct soap*, const char*, struct chan__ChannelInstanceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTochan__ChannelInstanceType(struct soap*, struct chan__ChannelInstanceType *const*, const char*, const char*); -SOAP_FMAC3 struct chan__ChannelInstanceType ** SOAP_FMAC4 soap_get_PointerTochan__ChannelInstanceType(struct soap*, struct chan__ChannelInstanceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsa5__FaultTo_DEFINED -#define SOAP_TYPE_PointerTo_wsa5__FaultTo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa5__FaultTo(struct soap*, struct wsa5__EndpointReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa5__FaultTo(struct soap*, const char *, int, struct wsa5__EndpointReferenceType *const*, const char *); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_in_PointerTo_wsa5__FaultTo(struct soap*, const char*, struct wsa5__EndpointReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa5__FaultTo(struct soap*, struct wsa5__EndpointReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_get_PointerTo_wsa5__FaultTo(struct soap*, struct wsa5__EndpointReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsa5__ReplyTo_DEFINED -#define SOAP_TYPE_PointerTo_wsa5__ReplyTo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa5__ReplyTo(struct soap*, struct wsa5__EndpointReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa5__ReplyTo(struct soap*, const char *, int, struct wsa5__EndpointReferenceType *const*, const char *); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_in_PointerTo_wsa5__ReplyTo(struct soap*, const char*, struct wsa5__EndpointReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa5__ReplyTo(struct soap*, struct wsa5__EndpointReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_get_PointerTo_wsa5__ReplyTo(struct soap*, struct wsa5__EndpointReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsa5__From_DEFINED -#define SOAP_TYPE_PointerTo_wsa5__From_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa5__From(struct soap*, struct wsa5__EndpointReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa5__From(struct soap*, const char *, int, struct wsa5__EndpointReferenceType *const*, const char *); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_in_PointerTo_wsa5__From(struct soap*, const char*, struct wsa5__EndpointReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa5__From(struct soap*, struct wsa5__EndpointReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa5__EndpointReferenceType ** SOAP_FMAC4 soap_get_PointerTo_wsa5__From(struct soap*, struct wsa5__EndpointReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsa5__RelatesTo_DEFINED -#define SOAP_TYPE_PointerTo_wsa5__RelatesTo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa5__RelatesTo(struct soap*, struct wsa5__RelatesToType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa5__RelatesTo(struct soap*, const char *, int, struct wsa5__RelatesToType *const*, const char *); -SOAP_FMAC3 struct wsa5__RelatesToType ** SOAP_FMAC4 soap_in_PointerTo_wsa5__RelatesTo(struct soap*, const char*, struct wsa5__RelatesToType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa5__RelatesTo(struct soap*, struct wsa5__RelatesToType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa5__RelatesToType ** SOAP_FMAC4 soap_get_PointerTo_wsa5__RelatesTo(struct soap*, struct wsa5__RelatesToType **, const char*, const char*); -#endif -/* _wsa5__ProblemIRI is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsa5__ProblemIRI_DEFINED -#define SOAP_TYPE__wsa5__ProblemIRI_DEFINED - -#define soap_default__wsa5__ProblemIRI soap_default_string - - -#define soap_serialize__wsa5__ProblemIRI soap_serialize_string - - -#define soap__wsa5__ProblemIRI2s(soap, a) (a) - -#define soap_out__wsa5__ProblemIRI soap_out_string - - -#define soap_s2_wsa5__ProblemIRI(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsa5__ProblemIRI soap_in_string - - -#define soap_instantiate__wsa5__ProblemIRI soap_instantiate_string - - -#define soap_new__wsa5__ProblemIRI soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__ProblemIRI(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsa5__ProblemIRI(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa5__ProblemIRI(soap, p, "wsa5:ProblemIRI", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa5__ProblemIRI(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__wsa5__ProblemIRI(soap, p, "wsa5:ProblemIRI", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__ProblemIRI(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__wsa5__ProblemIRI(soap, p, "wsa5:ProblemIRI", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__ProblemIRI(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__wsa5__ProblemIRI(soap, p, "wsa5:ProblemIRI", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__ProblemIRI soap_get_string - - -#define soap_read__wsa5__ProblemIRI soap_read_string - - -#define soap_GET__wsa5__ProblemIRI soap_GET_string - - -#define soap_POST_recv__wsa5__ProblemIRI soap_POST_recv_string - -#endif -/* _wsa5__ProblemHeaderQName is a typedef synonym of _QName */ - -#ifndef SOAP_TYPE__wsa5__ProblemHeaderQName_DEFINED -#define SOAP_TYPE__wsa5__ProblemHeaderQName_DEFINED - -#define soap_default__wsa5__ProblemHeaderQName soap_default__QName - - -#define soap_serialize__wsa5__ProblemHeaderQName soap_serialize__QName - - -#define soap__wsa5__ProblemHeaderQName2s(soap, a) soap_QName2s(soap, (a)) - -#define soap_out__wsa5__ProblemHeaderQName soap_out__QName - - -#define soap_s2_wsa5__ProblemHeaderQName(soap, s, a) soap_s2QName((soap), (s), (char**)(a), 0, -1, NULL) - -#define soap_in__wsa5__ProblemHeaderQName soap_in__QName - - -#define soap_instantiate__wsa5__ProblemHeaderQName soap_instantiate__QName - - -#define soap_new__wsa5__ProblemHeaderQName soap_new__QName - - -#define soap_put__wsa5__ProblemHeaderQName soap_put__QName - - -#define soap_write__wsa5__ProblemHeaderQName soap_write__QName - - -#define soap_PUT__wsa5__ProblemHeaderQName soap_PUT__QName - - -#define soap_PATCH__wsa5__ProblemHeaderQName soap_PATCH__QName - - -#define soap_POST_send__wsa5__ProblemHeaderQName soap_POST_send__QName - - -#define soap_get__wsa5__ProblemHeaderQName soap_get__QName - - -#define soap_read__wsa5__ProblemHeaderQName soap_read__QName - - -#define soap_GET__wsa5__ProblemHeaderQName soap_GET__QName - - -#define soap_POST_recv__wsa5__ProblemHeaderQName soap_POST_recv__QName - -#endif -/* _wsa5__Action is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsa5__Action_DEFINED -#define SOAP_TYPE__wsa5__Action_DEFINED - -#define soap_default__wsa5__Action soap_default_string - - -#define soap_serialize__wsa5__Action soap_serialize_string - - -#define soap__wsa5__Action2s(soap, a) (a) - -#define soap_out__wsa5__Action soap_out_string - - -#define soap_s2_wsa5__Action(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsa5__Action soap_in_string - - -#define soap_instantiate__wsa5__Action soap_instantiate_string - - -#define soap_new__wsa5__Action soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__Action(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsa5__Action(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa5__Action(soap, p, "wsa5:Action", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa5__Action(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__wsa5__Action(soap, p, "wsa5:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__Action(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__wsa5__Action(soap, p, "wsa5:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__Action(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__wsa5__Action(soap, p, "wsa5:Action", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__Action soap_get_string - - -#define soap_read__wsa5__Action soap_read_string - - -#define soap_GET__wsa5__Action soap_GET_string - - -#define soap_POST_recv__wsa5__Action soap_POST_recv_string - -#endif -/* _wsa5__To is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsa5__To_DEFINED -#define SOAP_TYPE__wsa5__To_DEFINED - -#define soap_default__wsa5__To soap_default_string - - -#define soap_serialize__wsa5__To soap_serialize_string - - -#define soap__wsa5__To2s(soap, a) (a) - -#define soap_out__wsa5__To soap_out_string - - -#define soap_s2_wsa5__To(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsa5__To soap_in_string - - -#define soap_instantiate__wsa5__To soap_instantiate_string - - -#define soap_new__wsa5__To soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__To(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsa5__To(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa5__To(soap, p, "wsa5:To", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa5__To(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__wsa5__To(soap, p, "wsa5:To", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__To(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__wsa5__To(soap, p, "wsa5:To", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__To(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__wsa5__To(soap, p, "wsa5:To", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__To soap_get_string - - -#define soap_read__wsa5__To soap_read_string - - -#define soap_GET__wsa5__To soap_GET_string - - -#define soap_POST_recv__wsa5__To soap_POST_recv_string - -#endif -/* _wsa5__MessageID is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsa5__MessageID_DEFINED -#define SOAP_TYPE__wsa5__MessageID_DEFINED - -#define soap_default__wsa5__MessageID soap_default_string - - -#define soap_serialize__wsa5__MessageID soap_serialize_string - - -#define soap__wsa5__MessageID2s(soap, a) (a) - -#define soap_out__wsa5__MessageID soap_out_string - - -#define soap_s2_wsa5__MessageID(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsa5__MessageID soap_in_string - - -#define soap_instantiate__wsa5__MessageID soap_instantiate_string - - -#define soap_new__wsa5__MessageID soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa5__MessageID(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsa5__MessageID(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa5__MessageID(soap, p, "wsa5:MessageID", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa5__MessageID(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__wsa5__MessageID(soap, p, "wsa5:MessageID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa5__MessageID(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__wsa5__MessageID(soap, p, "wsa5:MessageID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa5__MessageID(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__wsa5__MessageID(soap, p, "wsa5:MessageID", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa5__MessageID soap_get_string - - -#define soap_read__wsa5__MessageID soap_read_string - - -#define soap_GET__wsa5__MessageID soap_GET_string - - -#define soap_POST_recv__wsa5__MessageID soap_POST_recv_string - -#endif - -#ifndef SOAP_TYPE_PointerTowsa5__MetadataType_DEFINED -#define SOAP_TYPE_PointerTowsa5__MetadataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsa5__MetadataType(struct soap*, struct wsa5__MetadataType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsa5__MetadataType(struct soap*, const char *, int, struct wsa5__MetadataType *const*, const char *); -SOAP_FMAC3 struct wsa5__MetadataType ** SOAP_FMAC4 soap_in_PointerTowsa5__MetadataType(struct soap*, const char*, struct wsa5__MetadataType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsa5__MetadataType(struct soap*, struct wsa5__MetadataType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa5__MetadataType ** SOAP_FMAC4 soap_get_PointerTowsa5__MetadataType(struct soap*, struct wsa5__MetadataType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsa5__ReferenceParametersType_DEFINED -#define SOAP_TYPE_PointerTowsa5__ReferenceParametersType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsa5__ReferenceParametersType(struct soap*, struct wsa5__ReferenceParametersType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsa5__ReferenceParametersType(struct soap*, const char *, int, struct wsa5__ReferenceParametersType *const*, const char *); -SOAP_FMAC3 struct wsa5__ReferenceParametersType ** SOAP_FMAC4 soap_in_PointerTowsa5__ReferenceParametersType(struct soap*, const char*, struct wsa5__ReferenceParametersType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsa5__ReferenceParametersType(struct soap*, struct wsa5__ReferenceParametersType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa5__ReferenceParametersType ** SOAP_FMAC4 soap_get_PointerTowsa5__ReferenceParametersType(struct soap*, struct wsa5__ReferenceParametersType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_wsa5__FaultCodesOpenEnumType_DEFINED -#define SOAP_TYPE_wsa5__FaultCodesOpenEnumType_DEFINED - -inline void soap_default_wsa5__FaultCodesOpenEnumType(struct soap *soap, char **a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsa5__FaultCodesOpenEnumType - *a = SOAP_DEFAULT_wsa5__FaultCodesOpenEnumType; -#else - *a = (char *)0; -#endif -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__FaultCodesOpenEnumType(struct soap*, char *const*); - -#define soap_wsa5__FaultCodesOpenEnumType2s(soap, a) (a) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__FaultCodesOpenEnumType(struct soap*, const char*, int, char*const*, const char*); - -#define soap_s2wsa5__FaultCodesOpenEnumType(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) -SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_wsa5__FaultCodesOpenEnumType(struct soap*, const char*, char **, const char*); - -#define soap_instantiate_wsa5__FaultCodesOpenEnumType soap_instantiate_string - - -#define soap_new_wsa5__FaultCodesOpenEnumType soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__FaultCodesOpenEnumType(struct soap*, char *const*, const char*, const char*); - -inline int soap_write_wsa5__FaultCodesOpenEnumType(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsa5__FaultCodesOpenEnumType(soap, p, "wsa5:FaultCodesOpenEnumType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsa5__FaultCodesOpenEnumType(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_wsa5__FaultCodesOpenEnumType(soap, p, "wsa5:FaultCodesOpenEnumType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__FaultCodesOpenEnumType(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_wsa5__FaultCodesOpenEnumType(soap, p, "wsa5:FaultCodesOpenEnumType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__FaultCodesOpenEnumType(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_wsa5__FaultCodesOpenEnumType(soap, p, "wsa5:FaultCodesOpenEnumType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 char ** SOAP_FMAC4 soap_get_wsa5__FaultCodesOpenEnumType(struct soap*, char **, const char*, const char*); - -inline int soap_read_wsa5__FaultCodesOpenEnumType(struct soap *soap, char **p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsa5__FaultCodesOpenEnumType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__FaultCodesOpenEnumType(struct soap *soap, const char *URL, char **p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__FaultCodesOpenEnumType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__FaultCodesOpenEnumType(struct soap *soap, char **p) -{ - if (::soap_read_wsa5__FaultCodesOpenEnumType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsa5__RelationshipTypeOpenEnum_DEFINED -#define SOAP_TYPE_wsa5__RelationshipTypeOpenEnum_DEFINED - -inline void soap_default_wsa5__RelationshipTypeOpenEnum(struct soap *soap, char **a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsa5__RelationshipTypeOpenEnum - *a = SOAP_DEFAULT_wsa5__RelationshipTypeOpenEnum; -#else - *a = (char *)0; -#endif -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsa5__RelationshipTypeOpenEnum(struct soap*, char *const*); - -#define soap_wsa5__RelationshipTypeOpenEnum2s(soap, a) (a) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsa5__RelationshipTypeOpenEnum(struct soap*, const char*, int, char*const*, const char*); - -#define soap_s2wsa5__RelationshipTypeOpenEnum(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) -SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_wsa5__RelationshipTypeOpenEnum(struct soap*, const char*, char **, const char*); - -#define soap_instantiate_wsa5__RelationshipTypeOpenEnum soap_instantiate_string - - -#define soap_new_wsa5__RelationshipTypeOpenEnum soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsa5__RelationshipTypeOpenEnum(struct soap*, char *const*, const char*, const char*); - -inline int soap_write_wsa5__RelationshipTypeOpenEnum(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsa5__RelationshipTypeOpenEnum(soap, p, "wsa5:RelationshipTypeOpenEnum", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsa5__RelationshipTypeOpenEnum(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_wsa5__RelationshipTypeOpenEnum(soap, p, "wsa5:RelationshipTypeOpenEnum", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsa5__RelationshipTypeOpenEnum(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_wsa5__RelationshipTypeOpenEnum(soap, p, "wsa5:RelationshipTypeOpenEnum", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsa5__RelationshipTypeOpenEnum(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_wsa5__RelationshipTypeOpenEnum(soap, p, "wsa5:RelationshipTypeOpenEnum", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 char ** SOAP_FMAC4 soap_get_wsa5__RelationshipTypeOpenEnum(struct soap*, char **, const char*, const char*); - -inline int soap_read_wsa5__RelationshipTypeOpenEnum(struct soap *soap, char **p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsa5__RelationshipTypeOpenEnum(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsa5__RelationshipTypeOpenEnum(struct soap *soap, const char *URL, char **p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsa5__RelationshipTypeOpenEnum(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsa5__RelationshipTypeOpenEnum(struct soap *soap, char **p) -{ - if (::soap_read_wsa5__RelationshipTypeOpenEnum(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__Security_DEFINED -#define SOAP_TYPE_PointerTo_wsse__Security_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__Security(struct soap*, struct _wsse__Security *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__Security(struct soap*, const char *, int, struct _wsse__Security *const*, const char *); -SOAP_FMAC3 struct _wsse__Security ** SOAP_FMAC4 soap_in_PointerTo_wsse__Security(struct soap*, const char*, struct _wsse__Security **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__Security(struct soap*, struct _wsse__Security *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__Security ** SOAP_FMAC4 soap_get_PointerTo_wsse__Security(struct soap*, struct _wsse__Security **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__SignatureType_DEFINED -#define SOAP_TYPE_PointerTods__SignatureType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__SignatureType(struct soap*, struct ds__SignatureType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__SignatureType(struct soap*, const char *, int, struct ds__SignatureType *const*, const char *); -SOAP_FMAC3 struct ds__SignatureType ** SOAP_FMAC4 soap_in_PointerTods__SignatureType(struct soap*, const char*, struct ds__SignatureType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__SignatureType(struct soap*, struct ds__SignatureType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__SignatureType ** SOAP_FMAC4 soap_get_PointerTods__SignatureType(struct soap*, struct ds__SignatureType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsc__SecurityContextTokenType_DEFINED -#define SOAP_TYPE_PointerTowsc__SecurityContextTokenType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsc__SecurityContextTokenType(struct soap*, struct wsc__SecurityContextTokenType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsc__SecurityContextTokenType(struct soap*, const char *, int, struct wsc__SecurityContextTokenType *const*, const char *); -SOAP_FMAC3 struct wsc__SecurityContextTokenType ** SOAP_FMAC4 soap_in_PointerTowsc__SecurityContextTokenType(struct soap*, const char*, struct wsc__SecurityContextTokenType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsc__SecurityContextTokenType(struct soap*, struct wsc__SecurityContextTokenType *const*, const char*, const char*); -SOAP_FMAC3 struct wsc__SecurityContextTokenType ** SOAP_FMAC4 soap_get_PointerTowsc__SecurityContextTokenType(struct soap*, struct wsc__SecurityContextTokenType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__BinarySecurityToken_DEFINED -#define SOAP_TYPE_PointerTo_wsse__BinarySecurityToken_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__BinarySecurityToken(struct soap*, struct _wsse__BinarySecurityToken *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__BinarySecurityToken(struct soap*, const char *, int, struct _wsse__BinarySecurityToken *const*, const char *); -SOAP_FMAC3 struct _wsse__BinarySecurityToken ** SOAP_FMAC4 soap_in_PointerTo_wsse__BinarySecurityToken(struct soap*, const char*, struct _wsse__BinarySecurityToken **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__BinarySecurityToken(struct soap*, struct _wsse__BinarySecurityToken *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__BinarySecurityToken ** SOAP_FMAC4 soap_get_PointerTo_wsse__BinarySecurityToken(struct soap*, struct _wsse__BinarySecurityToken **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__UsernameToken_DEFINED -#define SOAP_TYPE_PointerTo_wsse__UsernameToken_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__UsernameToken(struct soap*, struct _wsse__UsernameToken *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__UsernameToken(struct soap*, const char *, int, struct _wsse__UsernameToken *const*, const char *); -SOAP_FMAC3 struct _wsse__UsernameToken ** SOAP_FMAC4 soap_in_PointerTo_wsse__UsernameToken(struct soap*, const char*, struct _wsse__UsernameToken **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__UsernameToken(struct soap*, struct _wsse__UsernameToken *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__UsernameToken ** SOAP_FMAC4 soap_get_PointerTo_wsse__UsernameToken(struct soap*, struct _wsse__UsernameToken **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsu__Timestamp_DEFINED -#define SOAP_TYPE_PointerTo_wsu__Timestamp_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsu__Timestamp(struct soap*, struct _wsu__Timestamp *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsu__Timestamp(struct soap*, const char *, int, struct _wsu__Timestamp *const*, const char *); -SOAP_FMAC3 struct _wsu__Timestamp ** SOAP_FMAC4 soap_in_PointerTo_wsu__Timestamp(struct soap*, const char*, struct _wsu__Timestamp **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsu__Timestamp(struct soap*, struct _wsu__Timestamp *const*, const char*, const char*); -SOAP_FMAC3 struct _wsu__Timestamp ** SOAP_FMAC4 soap_get_PointerTo_wsu__Timestamp(struct soap*, struct _wsu__Timestamp **, const char*, const char*); -#endif -/* _saml2__AttributeValue is a typedef synonym of _XML */ - -#ifndef SOAP_TYPE__saml2__AttributeValue_DEFINED -#define SOAP_TYPE__saml2__AttributeValue_DEFINED -#endif -/* _saml2__AuthenticatingAuthority is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml2__AuthenticatingAuthority_DEFINED -#define SOAP_TYPE__saml2__AuthenticatingAuthority_DEFINED - -#define soap_default__saml2__AuthenticatingAuthority soap_default_string - - -#define soap_serialize__saml2__AuthenticatingAuthority soap_serialize_string - - -#define soap__saml2__AuthenticatingAuthority2s(soap, a) (a) - -#define soap_out__saml2__AuthenticatingAuthority soap_out_string - - -#define soap_s2_saml2__AuthenticatingAuthority(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml2__AuthenticatingAuthority soap_in_string - - -#define soap_instantiate__saml2__AuthenticatingAuthority soap_instantiate_string - - -#define soap_new__saml2__AuthenticatingAuthority soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthenticatingAuthority(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml2__AuthenticatingAuthority(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml2__AuthenticatingAuthority(soap, p, "saml2:AuthenticatingAuthority", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml2__AuthenticatingAuthority(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__saml2__AuthenticatingAuthority(soap, p, "saml2:AuthenticatingAuthority", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AuthenticatingAuthority(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__saml2__AuthenticatingAuthority(soap, p, "saml2:AuthenticatingAuthority", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AuthenticatingAuthority(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__saml2__AuthenticatingAuthority(soap, p, "saml2:AuthenticatingAuthority", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AuthenticatingAuthority soap_get_string - - -#define soap_read__saml2__AuthenticatingAuthority soap_read_string - - -#define soap_GET__saml2__AuthenticatingAuthority soap_GET_string - - -#define soap_POST_recv__saml2__AuthenticatingAuthority soap_POST_recv_string - -#endif -/* _saml2__AuthnContextDecl is a typedef synonym of _XML */ - -#ifndef SOAP_TYPE__saml2__AuthnContextDecl_DEFINED -#define SOAP_TYPE__saml2__AuthnContextDecl_DEFINED -#endif -/* _saml2__AuthnContextDeclRef is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml2__AuthnContextDeclRef_DEFINED -#define SOAP_TYPE__saml2__AuthnContextDeclRef_DEFINED - -#define soap_default__saml2__AuthnContextDeclRef soap_default_string - - -#define soap_serialize__saml2__AuthnContextDeclRef soap_serialize_string - - -#define soap__saml2__AuthnContextDeclRef2s(soap, a) (a) - -#define soap_out__saml2__AuthnContextDeclRef soap_out_string - - -#define soap_s2_saml2__AuthnContextDeclRef(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml2__AuthnContextDeclRef soap_in_string - - -#define soap_instantiate__saml2__AuthnContextDeclRef soap_instantiate_string - - -#define soap_new__saml2__AuthnContextDeclRef soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthnContextDeclRef(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml2__AuthnContextDeclRef(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml2__AuthnContextDeclRef(soap, p, "saml2:AuthnContextDeclRef", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml2__AuthnContextDeclRef(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__saml2__AuthnContextDeclRef(soap, p, "saml2:AuthnContextDeclRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AuthnContextDeclRef(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__saml2__AuthnContextDeclRef(soap, p, "saml2:AuthnContextDeclRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AuthnContextDeclRef(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__saml2__AuthnContextDeclRef(soap, p, "saml2:AuthnContextDeclRef", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AuthnContextDeclRef soap_get_string - - -#define soap_read__saml2__AuthnContextDeclRef soap_read_string - - -#define soap_GET__saml2__AuthnContextDeclRef soap_GET_string - - -#define soap_POST_recv__saml2__AuthnContextDeclRef soap_POST_recv_string - -#endif -/* _saml2__AuthnContextClassRef is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml2__AuthnContextClassRef_DEFINED -#define SOAP_TYPE__saml2__AuthnContextClassRef_DEFINED - -#define soap_default__saml2__AuthnContextClassRef soap_default_string - - -#define soap_serialize__saml2__AuthnContextClassRef soap_serialize_string - - -#define soap__saml2__AuthnContextClassRef2s(soap, a) (a) - -#define soap_out__saml2__AuthnContextClassRef soap_out_string - - -#define soap_s2_saml2__AuthnContextClassRef(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml2__AuthnContextClassRef soap_in_string - - -#define soap_instantiate__saml2__AuthnContextClassRef soap_instantiate_string - - -#define soap_new__saml2__AuthnContextClassRef soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AuthnContextClassRef(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml2__AuthnContextClassRef(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml2__AuthnContextClassRef(soap, p, "saml2:AuthnContextClassRef", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml2__AuthnContextClassRef(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__saml2__AuthnContextClassRef(soap, p, "saml2:AuthnContextClassRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AuthnContextClassRef(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__saml2__AuthnContextClassRef(soap, p, "saml2:AuthnContextClassRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AuthnContextClassRef(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__saml2__AuthnContextClassRef(soap, p, "saml2:AuthnContextClassRef", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AuthnContextClassRef soap_get_string - - -#define soap_read__saml2__AuthnContextClassRef soap_read_string - - -#define soap_GET__saml2__AuthnContextClassRef soap_GET_string - - -#define soap_POST_recv__saml2__AuthnContextClassRef soap_POST_recv_string - -#endif -/* _saml2__Audience is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml2__Audience_DEFINED -#define SOAP_TYPE__saml2__Audience_DEFINED - -#define soap_default__saml2__Audience soap_default_string - - -#define soap_serialize__saml2__Audience soap_serialize_string - - -#define soap__saml2__Audience2s(soap, a) (a) - -#define soap_out__saml2__Audience soap_out_string - - -#define soap_s2_saml2__Audience(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml2__Audience soap_in_string - - -#define soap_instantiate__saml2__Audience soap_instantiate_string - - -#define soap_new__saml2__Audience soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__Audience(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml2__Audience(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml2__Audience(soap, p, "saml2:Audience", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml2__Audience(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__saml2__Audience(soap, p, "saml2:Audience", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__Audience(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__saml2__Audience(soap, p, "saml2:Audience", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__Audience(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__saml2__Audience(soap, p, "saml2:Audience", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__Audience soap_get_string - - -#define soap_read__saml2__Audience soap_read_string - - -#define soap_GET__saml2__Audience soap_GET_string - - -#define soap_POST_recv__saml2__Audience soap_POST_recv_string - -#endif -/* _saml2__AssertionURIRef is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml2__AssertionURIRef_DEFINED -#define SOAP_TYPE__saml2__AssertionURIRef_DEFINED - -#define soap_default__saml2__AssertionURIRef soap_default_string - - -#define soap_serialize__saml2__AssertionURIRef soap_serialize_string - - -#define soap__saml2__AssertionURIRef2s(soap, a) (a) - -#define soap_out__saml2__AssertionURIRef soap_out_string - - -#define soap_s2_saml2__AssertionURIRef(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml2__AssertionURIRef soap_in_string - - -#define soap_instantiate__saml2__AssertionURIRef soap_instantiate_string - - -#define soap_new__saml2__AssertionURIRef soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AssertionURIRef(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml2__AssertionURIRef(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml2__AssertionURIRef(soap, p, "saml2:AssertionURIRef", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml2__AssertionURIRef(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__saml2__AssertionURIRef(soap, p, "saml2:AssertionURIRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AssertionURIRef(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__saml2__AssertionURIRef(soap, p, "saml2:AssertionURIRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AssertionURIRef(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__saml2__AssertionURIRef(soap, p, "saml2:AssertionURIRef", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AssertionURIRef soap_get_string - - -#define soap_read__saml2__AssertionURIRef soap_read_string - - -#define soap_GET__saml2__AssertionURIRef soap_GET_string - - -#define soap_POST_recv__saml2__AssertionURIRef soap_POST_recv_string - -#endif -/* _saml2__AssertionIDRef is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml2__AssertionIDRef_DEFINED -#define SOAP_TYPE__saml2__AssertionIDRef_DEFINED - -#define soap_default__saml2__AssertionIDRef soap_default_string - - -#define soap_serialize__saml2__AssertionIDRef soap_serialize_string - - -#define soap__saml2__AssertionIDRef2s(soap, a) (a) - -#define soap_out__saml2__AssertionIDRef soap_out_string - - -#define soap_s2_saml2__AssertionIDRef(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml2__AssertionIDRef soap_in_string - - -#define soap_instantiate__saml2__AssertionIDRef soap_instantiate_string - - -#define soap_new__saml2__AssertionIDRef soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml2__AssertionIDRef(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml2__AssertionIDRef(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml2__AssertionIDRef(soap, p, "saml2:AssertionIDRef", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml2__AssertionIDRef(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__saml2__AssertionIDRef(soap, p, "saml2:AssertionIDRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml2__AssertionIDRef(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__saml2__AssertionIDRef(soap, p, "saml2:AssertionIDRef", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml2__AssertionIDRef(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__saml2__AssertionIDRef(soap, p, "saml2:AssertionIDRef", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml2__AssertionIDRef soap_get_string - - -#define soap_read__saml2__AssertionIDRef soap_read_string - - -#define soap_GET__saml2__AssertionIDRef soap_GET_string - - -#define soap_POST_recv__saml2__AssertionIDRef soap_POST_recv_string - -#endif - -#ifndef SOAP_TYPE_PointerToPointerTo_ds__KeyInfo_DEFINED -#define SOAP_TYPE_PointerToPointerTo_ds__KeyInfo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToPointerTo_ds__KeyInfo(struct soap*, struct ds__KeyInfoType **const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToPointerTo_ds__KeyInfo(struct soap*, const char *, int, struct ds__KeyInfoType **const*, const char *); -SOAP_FMAC3 struct ds__KeyInfoType *** SOAP_FMAC4 soap_in_PointerToPointerTo_ds__KeyInfo(struct soap*, const char*, struct ds__KeyInfoType ***, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToPointerTo_ds__KeyInfo(struct soap*, struct ds__KeyInfoType **const*, const char*, const char*); -SOAP_FMAC3 struct ds__KeyInfoType *** SOAP_FMAC4 soap_get_PointerToPointerTo_ds__KeyInfo(struct soap*, struct ds__KeyInfoType ***, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml2__union_AttributeStatementType_DEFINED -#define SOAP_TYPE_PointerTo__saml2__union_AttributeStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml2__union_AttributeStatementType(struct soap*, struct __saml2__union_AttributeStatementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml2__union_AttributeStatementType(struct soap*, const char *, int, struct __saml2__union_AttributeStatementType *const*, const char *); -SOAP_FMAC3 struct __saml2__union_AttributeStatementType ** SOAP_FMAC4 soap_in_PointerTo__saml2__union_AttributeStatementType(struct soap*, const char*, struct __saml2__union_AttributeStatementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml2__union_AttributeStatementType(struct soap*, struct __saml2__union_AttributeStatementType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml2__union_AttributeStatementType ** SOAP_FMAC4 soap_get_PointerTo__saml2__union_AttributeStatementType(struct soap*, struct __saml2__union_AttributeStatementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AttributeType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AttributeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AttributeType(struct soap*, struct saml2__AttributeType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AttributeType(struct soap*, const char *, int, struct saml2__AttributeType *const*, const char *); -SOAP_FMAC3 struct saml2__AttributeType ** SOAP_FMAC4 soap_in_PointerTosaml2__AttributeType(struct soap*, const char*, struct saml2__AttributeType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AttributeType(struct soap*, struct saml2__AttributeType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AttributeType ** SOAP_FMAC4 soap_get_PointerTosaml2__AttributeType(struct soap*, struct saml2__AttributeType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__EvidenceType_DEFINED -#define SOAP_TYPE_PointerTosaml2__EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__EvidenceType(struct soap*, struct saml2__EvidenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__EvidenceType(struct soap*, const char *, int, struct saml2__EvidenceType *const*, const char *); -SOAP_FMAC3 struct saml2__EvidenceType ** SOAP_FMAC4 soap_in_PointerTosaml2__EvidenceType(struct soap*, const char*, struct saml2__EvidenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__EvidenceType(struct soap*, struct saml2__EvidenceType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__EvidenceType ** SOAP_FMAC4 soap_get_PointerTosaml2__EvidenceType(struct soap*, struct saml2__EvidenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__ActionType_DEFINED -#define SOAP_TYPE_PointerTosaml2__ActionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__ActionType(struct soap*, struct saml2__ActionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__ActionType(struct soap*, const char *, int, struct saml2__ActionType *const*, const char *); -SOAP_FMAC3 struct saml2__ActionType ** SOAP_FMAC4 soap_in_PointerTosaml2__ActionType(struct soap*, const char*, struct saml2__ActionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__ActionType(struct soap*, struct saml2__ActionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__ActionType ** SOAP_FMAC4 soap_get_PointerTosaml2__ActionType(struct soap*, struct saml2__ActionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AuthnContextType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AuthnContextType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AuthnContextType(struct soap*, struct saml2__AuthnContextType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AuthnContextType(struct soap*, const char *, int, struct saml2__AuthnContextType *const*, const char *); -SOAP_FMAC3 struct saml2__AuthnContextType ** SOAP_FMAC4 soap_in_PointerTosaml2__AuthnContextType(struct soap*, const char*, struct saml2__AuthnContextType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AuthnContextType(struct soap*, struct saml2__AuthnContextType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AuthnContextType ** SOAP_FMAC4 soap_get_PointerTosaml2__AuthnContextType(struct soap*, struct saml2__AuthnContextType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__SubjectLocalityType_DEFINED -#define SOAP_TYPE_PointerTosaml2__SubjectLocalityType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__SubjectLocalityType(struct soap*, struct saml2__SubjectLocalityType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__SubjectLocalityType(struct soap*, const char *, int, struct saml2__SubjectLocalityType *const*, const char *); -SOAP_FMAC3 struct saml2__SubjectLocalityType ** SOAP_FMAC4 soap_in_PointerTosaml2__SubjectLocalityType(struct soap*, const char*, struct saml2__SubjectLocalityType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__SubjectLocalityType(struct soap*, struct saml2__SubjectLocalityType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__SubjectLocalityType ** SOAP_FMAC4 soap_get_PointerTosaml2__SubjectLocalityType(struct soap*, struct saml2__SubjectLocalityType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml2__union_EvidenceType_DEFINED -#define SOAP_TYPE_PointerTo__saml2__union_EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml2__union_EvidenceType(struct soap*, struct __saml2__union_EvidenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml2__union_EvidenceType(struct soap*, const char *, int, struct __saml2__union_EvidenceType *const*, const char *); -SOAP_FMAC3 struct __saml2__union_EvidenceType ** SOAP_FMAC4 soap_in_PointerTo__saml2__union_EvidenceType(struct soap*, const char*, struct __saml2__union_EvidenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml2__union_EvidenceType(struct soap*, struct __saml2__union_EvidenceType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml2__union_EvidenceType ** SOAP_FMAC4 soap_get_PointerTo__saml2__union_EvidenceType(struct soap*, struct __saml2__union_EvidenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml2__union_AdviceType_DEFINED -#define SOAP_TYPE_PointerTo__saml2__union_AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml2__union_AdviceType(struct soap*, struct __saml2__union_AdviceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml2__union_AdviceType(struct soap*, const char *, int, struct __saml2__union_AdviceType *const*, const char *); -SOAP_FMAC3 struct __saml2__union_AdviceType ** SOAP_FMAC4 soap_in_PointerTo__saml2__union_AdviceType(struct soap*, const char*, struct __saml2__union_AdviceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml2__union_AdviceType(struct soap*, struct __saml2__union_AdviceType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml2__union_AdviceType ** SOAP_FMAC4 soap_get_PointerTo__saml2__union_AdviceType(struct soap*, struct __saml2__union_AdviceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AssertionType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AssertionType(struct soap*, struct saml2__AssertionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AssertionType(struct soap*, const char *, int, struct saml2__AssertionType *const*, const char *); -SOAP_FMAC3 struct saml2__AssertionType ** SOAP_FMAC4 soap_in_PointerTosaml2__AssertionType(struct soap*, const char*, struct saml2__AssertionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AssertionType(struct soap*, struct saml2__AssertionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AssertionType ** SOAP_FMAC4 soap_get_PointerTosaml2__AssertionType(struct soap*, struct saml2__AssertionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml2__union_ConditionsType_DEFINED -#define SOAP_TYPE_PointerTo__saml2__union_ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml2__union_ConditionsType(struct soap*, struct __saml2__union_ConditionsType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml2__union_ConditionsType(struct soap*, const char *, int, struct __saml2__union_ConditionsType *const*, const char *); -SOAP_FMAC3 struct __saml2__union_ConditionsType ** SOAP_FMAC4 soap_in_PointerTo__saml2__union_ConditionsType(struct soap*, const char*, struct __saml2__union_ConditionsType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml2__union_ConditionsType(struct soap*, struct __saml2__union_ConditionsType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml2__union_ConditionsType ** SOAP_FMAC4 soap_get_PointerTo__saml2__union_ConditionsType(struct soap*, struct __saml2__union_ConditionsType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__ProxyRestrictionType_DEFINED -#define SOAP_TYPE_PointerTosaml2__ProxyRestrictionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__ProxyRestrictionType(struct soap*, struct saml2__ProxyRestrictionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__ProxyRestrictionType(struct soap*, const char *, int, struct saml2__ProxyRestrictionType *const*, const char *); -SOAP_FMAC3 struct saml2__ProxyRestrictionType ** SOAP_FMAC4 soap_in_PointerTosaml2__ProxyRestrictionType(struct soap*, const char*, struct saml2__ProxyRestrictionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__ProxyRestrictionType(struct soap*, struct saml2__ProxyRestrictionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__ProxyRestrictionType ** SOAP_FMAC4 soap_get_PointerTosaml2__ProxyRestrictionType(struct soap*, struct saml2__ProxyRestrictionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__OneTimeUseType_DEFINED -#define SOAP_TYPE_PointerTosaml2__OneTimeUseType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__OneTimeUseType(struct soap*, struct saml2__OneTimeUseType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__OneTimeUseType(struct soap*, const char *, int, struct saml2__OneTimeUseType *const*, const char *); -SOAP_FMAC3 struct saml2__OneTimeUseType ** SOAP_FMAC4 soap_in_PointerTosaml2__OneTimeUseType(struct soap*, const char*, struct saml2__OneTimeUseType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__OneTimeUseType(struct soap*, struct saml2__OneTimeUseType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__OneTimeUseType ** SOAP_FMAC4 soap_get_PointerTosaml2__OneTimeUseType(struct soap*, struct saml2__OneTimeUseType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AudienceRestrictionType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AudienceRestrictionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AudienceRestrictionType(struct soap*, struct saml2__AudienceRestrictionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AudienceRestrictionType(struct soap*, const char *, int, struct saml2__AudienceRestrictionType *const*, const char *); -SOAP_FMAC3 struct saml2__AudienceRestrictionType ** SOAP_FMAC4 soap_in_PointerTosaml2__AudienceRestrictionType(struct soap*, const char*, struct saml2__AudienceRestrictionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AudienceRestrictionType(struct soap*, struct saml2__AudienceRestrictionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AudienceRestrictionType ** SOAP_FMAC4 soap_get_PointerTosaml2__AudienceRestrictionType(struct soap*, struct saml2__AudienceRestrictionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__ConditionAbstractType_DEFINED -#define SOAP_TYPE_PointerTosaml2__ConditionAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__ConditionAbstractType(struct soap*, struct saml2__ConditionAbstractType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__ConditionAbstractType(struct soap*, const char *, int, struct saml2__ConditionAbstractType *const*, const char *); -SOAP_FMAC3 struct saml2__ConditionAbstractType ** SOAP_FMAC4 soap_in_PointerTosaml2__ConditionAbstractType(struct soap*, const char*, struct saml2__ConditionAbstractType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__ConditionAbstractType(struct soap*, struct saml2__ConditionAbstractType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__ConditionAbstractType ** SOAP_FMAC4 soap_get_PointerTosaml2__ConditionAbstractType(struct soap*, struct saml2__ConditionAbstractType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__SubjectConfirmationDataType_DEFINED -#define SOAP_TYPE_PointerTosaml2__SubjectConfirmationDataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__SubjectConfirmationDataType(struct soap*, struct saml2__SubjectConfirmationDataType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__SubjectConfirmationDataType(struct soap*, const char *, int, struct saml2__SubjectConfirmationDataType *const*, const char *); -SOAP_FMAC3 struct saml2__SubjectConfirmationDataType ** SOAP_FMAC4 soap_in_PointerTosaml2__SubjectConfirmationDataType(struct soap*, const char*, struct saml2__SubjectConfirmationDataType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__SubjectConfirmationDataType(struct soap*, struct saml2__SubjectConfirmationDataType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__SubjectConfirmationDataType ** SOAP_FMAC4 soap_get_PointerTosaml2__SubjectConfirmationDataType(struct soap*, struct saml2__SubjectConfirmationDataType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__SubjectConfirmationType_DEFINED -#define SOAP_TYPE_PointerTosaml2__SubjectConfirmationType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__SubjectConfirmationType(struct soap*, struct saml2__SubjectConfirmationType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__SubjectConfirmationType(struct soap*, const char *, int, struct saml2__SubjectConfirmationType *const*, const char *); -SOAP_FMAC3 struct saml2__SubjectConfirmationType ** SOAP_FMAC4 soap_in_PointerTosaml2__SubjectConfirmationType(struct soap*, const char*, struct saml2__SubjectConfirmationType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__SubjectConfirmationType(struct soap*, struct saml2__SubjectConfirmationType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__SubjectConfirmationType ** SOAP_FMAC4 soap_get_PointerTosaml2__SubjectConfirmationType(struct soap*, struct saml2__SubjectConfirmationType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__EncryptedElementType_DEFINED -#define SOAP_TYPE_PointerTosaml2__EncryptedElementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__EncryptedElementType(struct soap*, struct saml2__EncryptedElementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__EncryptedElementType(struct soap*, const char *, int, struct saml2__EncryptedElementType *const*, const char *); -SOAP_FMAC3 struct saml2__EncryptedElementType ** SOAP_FMAC4 soap_in_PointerTosaml2__EncryptedElementType(struct soap*, const char*, struct saml2__EncryptedElementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__EncryptedElementType(struct soap*, struct saml2__EncryptedElementType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__EncryptedElementType ** SOAP_FMAC4 soap_get_PointerTosaml2__EncryptedElementType(struct soap*, struct saml2__EncryptedElementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__BaseIDAbstractType_DEFINED -#define SOAP_TYPE_PointerTosaml2__BaseIDAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__BaseIDAbstractType(struct soap*, struct saml2__BaseIDAbstractType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__BaseIDAbstractType(struct soap*, const char *, int, struct saml2__BaseIDAbstractType *const*, const char *); -SOAP_FMAC3 struct saml2__BaseIDAbstractType ** SOAP_FMAC4 soap_in_PointerTosaml2__BaseIDAbstractType(struct soap*, const char*, struct saml2__BaseIDAbstractType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__BaseIDAbstractType(struct soap*, struct saml2__BaseIDAbstractType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__BaseIDAbstractType ** SOAP_FMAC4 soap_get_PointerTosaml2__BaseIDAbstractType(struct soap*, struct saml2__BaseIDAbstractType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml2__union_AssertionType_DEFINED -#define SOAP_TYPE_PointerTo__saml2__union_AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml2__union_AssertionType(struct soap*, struct __saml2__union_AssertionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml2__union_AssertionType(struct soap*, const char *, int, struct __saml2__union_AssertionType *const*, const char *); -SOAP_FMAC3 struct __saml2__union_AssertionType ** SOAP_FMAC4 soap_in_PointerTo__saml2__union_AssertionType(struct soap*, const char*, struct __saml2__union_AssertionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml2__union_AssertionType(struct soap*, struct __saml2__union_AssertionType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml2__union_AssertionType ** SOAP_FMAC4 soap_get_PointerTo__saml2__union_AssertionType(struct soap*, struct __saml2__union_AssertionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AttributeStatementType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AttributeStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AttributeStatementType(struct soap*, struct saml2__AttributeStatementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AttributeStatementType(struct soap*, const char *, int, struct saml2__AttributeStatementType *const*, const char *); -SOAP_FMAC3 struct saml2__AttributeStatementType ** SOAP_FMAC4 soap_in_PointerTosaml2__AttributeStatementType(struct soap*, const char*, struct saml2__AttributeStatementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AttributeStatementType(struct soap*, struct saml2__AttributeStatementType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AttributeStatementType ** SOAP_FMAC4 soap_get_PointerTosaml2__AttributeStatementType(struct soap*, struct saml2__AttributeStatementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AuthzDecisionStatementType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AuthzDecisionStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AuthzDecisionStatementType(struct soap*, struct saml2__AuthzDecisionStatementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AuthzDecisionStatementType(struct soap*, const char *, int, struct saml2__AuthzDecisionStatementType *const*, const char *); -SOAP_FMAC3 struct saml2__AuthzDecisionStatementType ** SOAP_FMAC4 soap_in_PointerTosaml2__AuthzDecisionStatementType(struct soap*, const char*, struct saml2__AuthzDecisionStatementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AuthzDecisionStatementType(struct soap*, struct saml2__AuthzDecisionStatementType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AuthzDecisionStatementType ** SOAP_FMAC4 soap_get_PointerTosaml2__AuthzDecisionStatementType(struct soap*, struct saml2__AuthzDecisionStatementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AuthnStatementType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AuthnStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AuthnStatementType(struct soap*, struct saml2__AuthnStatementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AuthnStatementType(struct soap*, const char *, int, struct saml2__AuthnStatementType *const*, const char *); -SOAP_FMAC3 struct saml2__AuthnStatementType ** SOAP_FMAC4 soap_in_PointerTosaml2__AuthnStatementType(struct soap*, const char*, struct saml2__AuthnStatementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AuthnStatementType(struct soap*, struct saml2__AuthnStatementType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AuthnStatementType ** SOAP_FMAC4 soap_get_PointerTosaml2__AuthnStatementType(struct soap*, struct saml2__AuthnStatementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__StatementAbstractType_DEFINED -#define SOAP_TYPE_PointerTosaml2__StatementAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__StatementAbstractType(struct soap*, struct saml2__StatementAbstractType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__StatementAbstractType(struct soap*, const char *, int, struct saml2__StatementAbstractType *const*, const char *); -SOAP_FMAC3 struct saml2__StatementAbstractType ** SOAP_FMAC4 soap_in_PointerTosaml2__StatementAbstractType(struct soap*, const char*, struct saml2__StatementAbstractType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__StatementAbstractType(struct soap*, struct saml2__StatementAbstractType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__StatementAbstractType ** SOAP_FMAC4 soap_get_PointerTosaml2__StatementAbstractType(struct soap*, struct saml2__StatementAbstractType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__AdviceType_DEFINED -#define SOAP_TYPE_PointerTosaml2__AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__AdviceType(struct soap*, struct saml2__AdviceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__AdviceType(struct soap*, const char *, int, struct saml2__AdviceType *const*, const char *); -SOAP_FMAC3 struct saml2__AdviceType ** SOAP_FMAC4 soap_in_PointerTosaml2__AdviceType(struct soap*, const char*, struct saml2__AdviceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__AdviceType(struct soap*, struct saml2__AdviceType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__AdviceType ** SOAP_FMAC4 soap_get_PointerTosaml2__AdviceType(struct soap*, struct saml2__AdviceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__ConditionsType_DEFINED -#define SOAP_TYPE_PointerTosaml2__ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__ConditionsType(struct soap*, struct saml2__ConditionsType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__ConditionsType(struct soap*, const char *, int, struct saml2__ConditionsType *const*, const char *); -SOAP_FMAC3 struct saml2__ConditionsType ** SOAP_FMAC4 soap_in_PointerTosaml2__ConditionsType(struct soap*, const char*, struct saml2__ConditionsType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__ConditionsType(struct soap*, struct saml2__ConditionsType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__ConditionsType ** SOAP_FMAC4 soap_get_PointerTosaml2__ConditionsType(struct soap*, struct saml2__ConditionsType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__SubjectType_DEFINED -#define SOAP_TYPE_PointerTosaml2__SubjectType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__SubjectType(struct soap*, struct saml2__SubjectType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__SubjectType(struct soap*, const char *, int, struct saml2__SubjectType *const*, const char *); -SOAP_FMAC3 struct saml2__SubjectType ** SOAP_FMAC4 soap_in_PointerTosaml2__SubjectType(struct soap*, const char*, struct saml2__SubjectType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__SubjectType(struct soap*, struct saml2__SubjectType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__SubjectType ** SOAP_FMAC4 soap_get_PointerTosaml2__SubjectType(struct soap*, struct saml2__SubjectType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml2__NameIDType_DEFINED -#define SOAP_TYPE_PointerTosaml2__NameIDType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml2__NameIDType(struct soap*, struct saml2__NameIDType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml2__NameIDType(struct soap*, const char *, int, struct saml2__NameIDType *const*, const char *); -SOAP_FMAC3 struct saml2__NameIDType ** SOAP_FMAC4 soap_in_PointerTosaml2__NameIDType(struct soap*, const char*, struct saml2__NameIDType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml2__NameIDType(struct soap*, struct saml2__NameIDType *const*, const char*, const char*); -SOAP_FMAC3 struct saml2__NameIDType ** SOAP_FMAC4 soap_get_PointerTosaml2__NameIDType(struct soap*, struct saml2__NameIDType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToPointerToxenc__EncryptedKeyType_DEFINED -#define SOAP_TYPE_PointerToPointerToxenc__EncryptedKeyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToPointerToxenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType **const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToPointerToxenc__EncryptedKeyType(struct soap*, const char *, int, struct xenc__EncryptedKeyType **const*, const char *); -SOAP_FMAC3 struct xenc__EncryptedKeyType *** SOAP_FMAC4 soap_in_PointerToPointerToxenc__EncryptedKeyType(struct soap*, const char*, struct xenc__EncryptedKeyType ***, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToPointerToxenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType **const*, const char*, const char*); -SOAP_FMAC3 struct xenc__EncryptedKeyType *** SOAP_FMAC4 soap_get_PointerToPointerToxenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType ***, const char*, const char*); -#endif -/* _saml1__AttributeValue is a typedef synonym of _XML */ - -#ifndef SOAP_TYPE__saml1__AttributeValue_DEFINED -#define SOAP_TYPE__saml1__AttributeValue_DEFINED -#endif -/* _saml1__ConfirmationMethod is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml1__ConfirmationMethod_DEFINED -#define SOAP_TYPE__saml1__ConfirmationMethod_DEFINED - -#define soap_default__saml1__ConfirmationMethod soap_default_string - - -#define soap_serialize__saml1__ConfirmationMethod soap_serialize_string - - -#define soap__saml1__ConfirmationMethod2s(soap, a) (a) - -#define soap_out__saml1__ConfirmationMethod soap_out_string - - -#define soap_s2_saml1__ConfirmationMethod(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml1__ConfirmationMethod soap_in_string - - -#define soap_instantiate__saml1__ConfirmationMethod soap_instantiate_string - - -#define soap_new__saml1__ConfirmationMethod soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__ConfirmationMethod(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml1__ConfirmationMethod(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml1__ConfirmationMethod(soap, p, "saml1:ConfirmationMethod", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml1__ConfirmationMethod(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__saml1__ConfirmationMethod(soap, p, "saml1:ConfirmationMethod", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__ConfirmationMethod(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__saml1__ConfirmationMethod(soap, p, "saml1:ConfirmationMethod", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__ConfirmationMethod(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__saml1__ConfirmationMethod(soap, p, "saml1:ConfirmationMethod", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__ConfirmationMethod soap_get_string - - -#define soap_read__saml1__ConfirmationMethod soap_read_string - - -#define soap_GET__saml1__ConfirmationMethod soap_GET_string - - -#define soap_POST_recv__saml1__ConfirmationMethod soap_POST_recv_string - -#endif -/* _saml1__SubjectConfirmationData is a typedef synonym of _XML */ - -#ifndef SOAP_TYPE__saml1__SubjectConfirmationData_DEFINED -#define SOAP_TYPE__saml1__SubjectConfirmationData_DEFINED -#endif -/* _saml1__Audience is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml1__Audience_DEFINED -#define SOAP_TYPE__saml1__Audience_DEFINED - -#define soap_default__saml1__Audience soap_default_string - - -#define soap_serialize__saml1__Audience soap_serialize_string - - -#define soap__saml1__Audience2s(soap, a) (a) - -#define soap_out__saml1__Audience soap_out_string - - -#define soap_s2_saml1__Audience(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml1__Audience soap_in_string - - -#define soap_instantiate__saml1__Audience soap_instantiate_string - - -#define soap_new__saml1__Audience soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__Audience(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml1__Audience(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml1__Audience(soap, p, "saml1:Audience", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml1__Audience(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__saml1__Audience(soap, p, "saml1:Audience", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__Audience(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__saml1__Audience(soap, p, "saml1:Audience", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__Audience(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__saml1__Audience(soap, p, "saml1:Audience", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__Audience soap_get_string - - -#define soap_read__saml1__Audience soap_read_string - - -#define soap_GET__saml1__Audience soap_GET_string - - -#define soap_POST_recv__saml1__Audience soap_POST_recv_string - -#endif -/* _saml1__AssertionIDReference is a typedef synonym of string */ - -#ifndef SOAP_TYPE__saml1__AssertionIDReference_DEFINED -#define SOAP_TYPE__saml1__AssertionIDReference_DEFINED - -#define soap_default__saml1__AssertionIDReference soap_default_string - - -#define soap_serialize__saml1__AssertionIDReference soap_serialize_string - - -#define soap__saml1__AssertionIDReference2s(soap, a) (a) - -#define soap_out__saml1__AssertionIDReference soap_out_string - - -#define soap_s2_saml1__AssertionIDReference(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__saml1__AssertionIDReference soap_in_string - - -#define soap_instantiate__saml1__AssertionIDReference soap_instantiate_string - - -#define soap_new__saml1__AssertionIDReference soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__saml1__AssertionIDReference(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__saml1__AssertionIDReference(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__saml1__AssertionIDReference(soap, p, "saml1:AssertionIDReference", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__saml1__AssertionIDReference(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__saml1__AssertionIDReference(soap, p, "saml1:AssertionIDReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__saml1__AssertionIDReference(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__saml1__AssertionIDReference(soap, p, "saml1:AssertionIDReference", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__saml1__AssertionIDReference(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__saml1__AssertionIDReference(soap, p, "saml1:AssertionIDReference", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__saml1__AssertionIDReference soap_get_string - - -#define soap_read__saml1__AssertionIDReference soap_read_string - - -#define soap_GET__saml1__AssertionIDReference soap_GET_string - - -#define soap_POST_recv__saml1__AssertionIDReference soap_POST_recv_string - -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AttributeType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AttributeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AttributeType(struct soap*, struct saml1__AttributeType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AttributeType(struct soap*, const char *, int, struct saml1__AttributeType *const*, const char *); -SOAP_FMAC3 struct saml1__AttributeType ** SOAP_FMAC4 soap_in_PointerTosaml1__AttributeType(struct soap*, const char*, struct saml1__AttributeType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AttributeType(struct soap*, struct saml1__AttributeType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AttributeType ** SOAP_FMAC4 soap_get_PointerTosaml1__AttributeType(struct soap*, struct saml1__AttributeType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__EvidenceType_DEFINED -#define SOAP_TYPE_PointerTosaml1__EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__EvidenceType(struct soap*, struct saml1__EvidenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__EvidenceType(struct soap*, const char *, int, struct saml1__EvidenceType *const*, const char *); -SOAP_FMAC3 struct saml1__EvidenceType ** SOAP_FMAC4 soap_in_PointerTosaml1__EvidenceType(struct soap*, const char*, struct saml1__EvidenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__EvidenceType(struct soap*, struct saml1__EvidenceType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__EvidenceType ** SOAP_FMAC4 soap_get_PointerTosaml1__EvidenceType(struct soap*, struct saml1__EvidenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__ActionType_DEFINED -#define SOAP_TYPE_PointerTosaml1__ActionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__ActionType(struct soap*, struct saml1__ActionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__ActionType(struct soap*, const char *, int, struct saml1__ActionType *const*, const char *); -SOAP_FMAC3 struct saml1__ActionType ** SOAP_FMAC4 soap_in_PointerTosaml1__ActionType(struct soap*, const char*, struct saml1__ActionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__ActionType(struct soap*, struct saml1__ActionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__ActionType ** SOAP_FMAC4 soap_get_PointerTosaml1__ActionType(struct soap*, struct saml1__ActionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AuthorityBindingType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AuthorityBindingType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AuthorityBindingType(struct soap*, struct saml1__AuthorityBindingType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AuthorityBindingType(struct soap*, const char *, int, struct saml1__AuthorityBindingType *const*, const char *); -SOAP_FMAC3 struct saml1__AuthorityBindingType ** SOAP_FMAC4 soap_in_PointerTosaml1__AuthorityBindingType(struct soap*, const char*, struct saml1__AuthorityBindingType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AuthorityBindingType(struct soap*, struct saml1__AuthorityBindingType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AuthorityBindingType ** SOAP_FMAC4 soap_get_PointerTosaml1__AuthorityBindingType(struct soap*, struct saml1__AuthorityBindingType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__SubjectLocalityType_DEFINED -#define SOAP_TYPE_PointerTosaml1__SubjectLocalityType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__SubjectLocalityType(struct soap*, struct saml1__SubjectLocalityType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__SubjectLocalityType(struct soap*, const char *, int, struct saml1__SubjectLocalityType *const*, const char *); -SOAP_FMAC3 struct saml1__SubjectLocalityType ** SOAP_FMAC4 soap_in_PointerTosaml1__SubjectLocalityType(struct soap*, const char*, struct saml1__SubjectLocalityType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__SubjectLocalityType(struct soap*, struct saml1__SubjectLocalityType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__SubjectLocalityType ** SOAP_FMAC4 soap_get_PointerTosaml1__SubjectLocalityType(struct soap*, struct saml1__SubjectLocalityType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__SubjectType_DEFINED -#define SOAP_TYPE_PointerTosaml1__SubjectType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__SubjectType(struct soap*, struct saml1__SubjectType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__SubjectType(struct soap*, const char *, int, struct saml1__SubjectType *const*, const char *); -SOAP_FMAC3 struct saml1__SubjectType ** SOAP_FMAC4 soap_in_PointerTosaml1__SubjectType(struct soap*, const char*, struct saml1__SubjectType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__SubjectType(struct soap*, struct saml1__SubjectType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__SubjectType ** SOAP_FMAC4 soap_get_PointerTosaml1__SubjectType(struct soap*, struct saml1__SubjectType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml1__union_EvidenceType_DEFINED -#define SOAP_TYPE_PointerTo__saml1__union_EvidenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml1__union_EvidenceType(struct soap*, struct __saml1__union_EvidenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml1__union_EvidenceType(struct soap*, const char *, int, struct __saml1__union_EvidenceType *const*, const char *); -SOAP_FMAC3 struct __saml1__union_EvidenceType ** SOAP_FMAC4 soap_in_PointerTo__saml1__union_EvidenceType(struct soap*, const char*, struct __saml1__union_EvidenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml1__union_EvidenceType(struct soap*, struct __saml1__union_EvidenceType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml1__union_EvidenceType ** SOAP_FMAC4 soap_get_PointerTo__saml1__union_EvidenceType(struct soap*, struct __saml1__union_EvidenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTostring_DEFINED -#define SOAP_TYPE_PointerTostring_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTostring(struct soap*, char **const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTostring(struct soap*, const char *, int, char **const*, const char *); -SOAP_FMAC3 char *** SOAP_FMAC4 soap_in_PointerTostring(struct soap*, const char*, char ***, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTostring(struct soap*, char **const*, const char*, const char*); -SOAP_FMAC3 char *** SOAP_FMAC4 soap_get_PointerTostring(struct soap*, char ***, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__SubjectConfirmationType_DEFINED -#define SOAP_TYPE_PointerTosaml1__SubjectConfirmationType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__SubjectConfirmationType(struct soap*, struct saml1__SubjectConfirmationType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__SubjectConfirmationType(struct soap*, const char *, int, struct saml1__SubjectConfirmationType *const*, const char *); -SOAP_FMAC3 struct saml1__SubjectConfirmationType ** SOAP_FMAC4 soap_in_PointerTosaml1__SubjectConfirmationType(struct soap*, const char*, struct saml1__SubjectConfirmationType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__SubjectConfirmationType(struct soap*, struct saml1__SubjectConfirmationType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__SubjectConfirmationType ** SOAP_FMAC4 soap_get_PointerTosaml1__SubjectConfirmationType(struct soap*, struct saml1__SubjectConfirmationType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__NameIdentifierType_DEFINED -#define SOAP_TYPE_PointerTosaml1__NameIdentifierType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__NameIdentifierType(struct soap*, struct saml1__NameIdentifierType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__NameIdentifierType(struct soap*, const char *, int, struct saml1__NameIdentifierType *const*, const char *); -SOAP_FMAC3 struct saml1__NameIdentifierType ** SOAP_FMAC4 soap_in_PointerTosaml1__NameIdentifierType(struct soap*, const char*, struct saml1__NameIdentifierType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__NameIdentifierType(struct soap*, struct saml1__NameIdentifierType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__NameIdentifierType ** SOAP_FMAC4 soap_get_PointerTosaml1__NameIdentifierType(struct soap*, struct saml1__NameIdentifierType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml1__union_AdviceType_DEFINED -#define SOAP_TYPE_PointerTo__saml1__union_AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml1__union_AdviceType(struct soap*, struct __saml1__union_AdviceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml1__union_AdviceType(struct soap*, const char *, int, struct __saml1__union_AdviceType *const*, const char *); -SOAP_FMAC3 struct __saml1__union_AdviceType ** SOAP_FMAC4 soap_in_PointerTo__saml1__union_AdviceType(struct soap*, const char*, struct __saml1__union_AdviceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml1__union_AdviceType(struct soap*, struct __saml1__union_AdviceType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml1__union_AdviceType ** SOAP_FMAC4 soap_get_PointerTo__saml1__union_AdviceType(struct soap*, struct __saml1__union_AdviceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AssertionType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AssertionType(struct soap*, struct saml1__AssertionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AssertionType(struct soap*, const char *, int, struct saml1__AssertionType *const*, const char *); -SOAP_FMAC3 struct saml1__AssertionType ** SOAP_FMAC4 soap_in_PointerTosaml1__AssertionType(struct soap*, const char*, struct saml1__AssertionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AssertionType(struct soap*, struct saml1__AssertionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AssertionType ** SOAP_FMAC4 soap_get_PointerTosaml1__AssertionType(struct soap*, struct saml1__AssertionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxsd__dateTime_DEFINED -#define SOAP_TYPE_PointerToxsd__dateTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__dateTime(struct soap*, struct timeval *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxsd__dateTime(struct soap*, const char *, int, struct timeval *const*, const char *); -SOAP_FMAC3 struct timeval ** SOAP_FMAC4 soap_in_PointerToxsd__dateTime(struct soap*, const char*, struct timeval **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__dateTime(struct soap*, struct timeval *const*, const char*, const char*); -SOAP_FMAC3 struct timeval ** SOAP_FMAC4 soap_get_PointerToxsd__dateTime(struct soap*, struct timeval **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml1__union_ConditionsType_DEFINED -#define SOAP_TYPE_PointerTo__saml1__union_ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml1__union_ConditionsType(struct soap*, struct __saml1__union_ConditionsType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml1__union_ConditionsType(struct soap*, const char *, int, struct __saml1__union_ConditionsType *const*, const char *); -SOAP_FMAC3 struct __saml1__union_ConditionsType ** SOAP_FMAC4 soap_in_PointerTo__saml1__union_ConditionsType(struct soap*, const char*, struct __saml1__union_ConditionsType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml1__union_ConditionsType(struct soap*, struct __saml1__union_ConditionsType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml1__union_ConditionsType ** SOAP_FMAC4 soap_get_PointerTo__saml1__union_ConditionsType(struct soap*, struct __saml1__union_ConditionsType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__ConditionAbstractType_DEFINED -#define SOAP_TYPE_PointerTosaml1__ConditionAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__ConditionAbstractType(struct soap*, struct saml1__ConditionAbstractType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__ConditionAbstractType(struct soap*, const char *, int, struct saml1__ConditionAbstractType *const*, const char *); -SOAP_FMAC3 struct saml1__ConditionAbstractType ** SOAP_FMAC4 soap_in_PointerTosaml1__ConditionAbstractType(struct soap*, const char*, struct saml1__ConditionAbstractType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__ConditionAbstractType(struct soap*, struct saml1__ConditionAbstractType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__ConditionAbstractType ** SOAP_FMAC4 soap_get_PointerTosaml1__ConditionAbstractType(struct soap*, struct saml1__ConditionAbstractType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__DoNotCacheConditionType_DEFINED -#define SOAP_TYPE_PointerTosaml1__DoNotCacheConditionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__DoNotCacheConditionType(struct soap*, struct saml1__DoNotCacheConditionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__DoNotCacheConditionType(struct soap*, const char *, int, struct saml1__DoNotCacheConditionType *const*, const char *); -SOAP_FMAC3 struct saml1__DoNotCacheConditionType ** SOAP_FMAC4 soap_in_PointerTosaml1__DoNotCacheConditionType(struct soap*, const char*, struct saml1__DoNotCacheConditionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__DoNotCacheConditionType(struct soap*, struct saml1__DoNotCacheConditionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__DoNotCacheConditionType ** SOAP_FMAC4 soap_get_PointerTosaml1__DoNotCacheConditionType(struct soap*, struct saml1__DoNotCacheConditionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AudienceRestrictionConditionType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AudienceRestrictionConditionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AudienceRestrictionConditionType(struct soap*, struct saml1__AudienceRestrictionConditionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AudienceRestrictionConditionType(struct soap*, const char *, int, struct saml1__AudienceRestrictionConditionType *const*, const char *); -SOAP_FMAC3 struct saml1__AudienceRestrictionConditionType ** SOAP_FMAC4 soap_in_PointerTosaml1__AudienceRestrictionConditionType(struct soap*, const char*, struct saml1__AudienceRestrictionConditionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AudienceRestrictionConditionType(struct soap*, struct saml1__AudienceRestrictionConditionType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AudienceRestrictionConditionType ** SOAP_FMAC4 soap_get_PointerTosaml1__AudienceRestrictionConditionType(struct soap*, struct saml1__AudienceRestrictionConditionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_ds__Signature_DEFINED -#define SOAP_TYPE_PointerTo_ds__Signature_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ds__Signature(struct soap*, struct ds__SignatureType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_ds__Signature(struct soap*, const char *, int, struct ds__SignatureType *const*, const char *); -SOAP_FMAC3 struct ds__SignatureType ** SOAP_FMAC4 soap_in_PointerTo_ds__Signature(struct soap*, const char*, struct ds__SignatureType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ds__Signature(struct soap*, struct ds__SignatureType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__SignatureType ** SOAP_FMAC4 soap_get_PointerTo_ds__Signature(struct soap*, struct ds__SignatureType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__saml1__union_AssertionType_DEFINED -#define SOAP_TYPE_PointerTo__saml1__union_AssertionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__saml1__union_AssertionType(struct soap*, struct __saml1__union_AssertionType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__saml1__union_AssertionType(struct soap*, const char *, int, struct __saml1__union_AssertionType *const*, const char *); -SOAP_FMAC3 struct __saml1__union_AssertionType ** SOAP_FMAC4 soap_in_PointerTo__saml1__union_AssertionType(struct soap*, const char*, struct __saml1__union_AssertionType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__saml1__union_AssertionType(struct soap*, struct __saml1__union_AssertionType *const*, const char*, const char*); -SOAP_FMAC3 struct __saml1__union_AssertionType ** SOAP_FMAC4 soap_get_PointerTo__saml1__union_AssertionType(struct soap*, struct __saml1__union_AssertionType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AttributeStatementType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AttributeStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AttributeStatementType(struct soap*, struct saml1__AttributeStatementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AttributeStatementType(struct soap*, const char *, int, struct saml1__AttributeStatementType *const*, const char *); -SOAP_FMAC3 struct saml1__AttributeStatementType ** SOAP_FMAC4 soap_in_PointerTosaml1__AttributeStatementType(struct soap*, const char*, struct saml1__AttributeStatementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AttributeStatementType(struct soap*, struct saml1__AttributeStatementType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AttributeStatementType ** SOAP_FMAC4 soap_get_PointerTosaml1__AttributeStatementType(struct soap*, struct saml1__AttributeStatementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AuthorizationDecisionStatementType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AuthorizationDecisionStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AuthorizationDecisionStatementType(struct soap*, struct saml1__AuthorizationDecisionStatementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AuthorizationDecisionStatementType(struct soap*, const char *, int, struct saml1__AuthorizationDecisionStatementType *const*, const char *); -SOAP_FMAC3 struct saml1__AuthorizationDecisionStatementType ** SOAP_FMAC4 soap_in_PointerTosaml1__AuthorizationDecisionStatementType(struct soap*, const char*, struct saml1__AuthorizationDecisionStatementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AuthorizationDecisionStatementType(struct soap*, struct saml1__AuthorizationDecisionStatementType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AuthorizationDecisionStatementType ** SOAP_FMAC4 soap_get_PointerTosaml1__AuthorizationDecisionStatementType(struct soap*, struct saml1__AuthorizationDecisionStatementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AuthenticationStatementType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AuthenticationStatementType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AuthenticationStatementType(struct soap*, struct saml1__AuthenticationStatementType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AuthenticationStatementType(struct soap*, const char *, int, struct saml1__AuthenticationStatementType *const*, const char *); -SOAP_FMAC3 struct saml1__AuthenticationStatementType ** SOAP_FMAC4 soap_in_PointerTosaml1__AuthenticationStatementType(struct soap*, const char*, struct saml1__AuthenticationStatementType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AuthenticationStatementType(struct soap*, struct saml1__AuthenticationStatementType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AuthenticationStatementType ** SOAP_FMAC4 soap_get_PointerTosaml1__AuthenticationStatementType(struct soap*, struct saml1__AuthenticationStatementType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__SubjectStatementAbstractType_DEFINED -#define SOAP_TYPE_PointerTosaml1__SubjectStatementAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__SubjectStatementAbstractType(struct soap*, struct saml1__SubjectStatementAbstractType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__SubjectStatementAbstractType(struct soap*, const char *, int, struct saml1__SubjectStatementAbstractType *const*, const char *); -SOAP_FMAC3 struct saml1__SubjectStatementAbstractType ** SOAP_FMAC4 soap_in_PointerTosaml1__SubjectStatementAbstractType(struct soap*, const char*, struct saml1__SubjectStatementAbstractType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__SubjectStatementAbstractType(struct soap*, struct saml1__SubjectStatementAbstractType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__SubjectStatementAbstractType ** SOAP_FMAC4 soap_get_PointerTosaml1__SubjectStatementAbstractType(struct soap*, struct saml1__SubjectStatementAbstractType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__StatementAbstractType_DEFINED -#define SOAP_TYPE_PointerTosaml1__StatementAbstractType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__StatementAbstractType(struct soap*, struct saml1__StatementAbstractType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__StatementAbstractType(struct soap*, const char *, int, struct saml1__StatementAbstractType *const*, const char *); -SOAP_FMAC3 struct saml1__StatementAbstractType ** SOAP_FMAC4 soap_in_PointerTosaml1__StatementAbstractType(struct soap*, const char*, struct saml1__StatementAbstractType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__StatementAbstractType(struct soap*, struct saml1__StatementAbstractType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__StatementAbstractType ** SOAP_FMAC4 soap_get_PointerTosaml1__StatementAbstractType(struct soap*, struct saml1__StatementAbstractType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__AdviceType_DEFINED -#define SOAP_TYPE_PointerTosaml1__AdviceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__AdviceType(struct soap*, struct saml1__AdviceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__AdviceType(struct soap*, const char *, int, struct saml1__AdviceType *const*, const char *); -SOAP_FMAC3 struct saml1__AdviceType ** SOAP_FMAC4 soap_in_PointerTosaml1__AdviceType(struct soap*, const char*, struct saml1__AdviceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__AdviceType(struct soap*, struct saml1__AdviceType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__AdviceType ** SOAP_FMAC4 soap_get_PointerTosaml1__AdviceType(struct soap*, struct saml1__AdviceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTosaml1__ConditionsType_DEFINED -#define SOAP_TYPE_PointerTosaml1__ConditionsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTosaml1__ConditionsType(struct soap*, struct saml1__ConditionsType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTosaml1__ConditionsType(struct soap*, const char *, int, struct saml1__ConditionsType *const*, const char *); -SOAP_FMAC3 struct saml1__ConditionsType ** SOAP_FMAC4 soap_in_PointerTosaml1__ConditionsType(struct soap*, const char*, struct saml1__ConditionsType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTosaml1__ConditionsType(struct soap*, struct saml1__ConditionsType *const*, const char*, const char*); -SOAP_FMAC3 struct saml1__ConditionsType ** SOAP_FMAC4 soap_get_PointerTosaml1__ConditionsType(struct soap*, struct saml1__ConditionsType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__wsc__DerivedKeyTokenType_sequence_DEFINED -#define SOAP_TYPE_PointerTo__wsc__DerivedKeyTokenType_sequence_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__wsc__DerivedKeyTokenType_sequence(struct soap*, struct __wsc__DerivedKeyTokenType_sequence *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__wsc__DerivedKeyTokenType_sequence(struct soap*, const char *, int, struct __wsc__DerivedKeyTokenType_sequence *const*, const char *); -SOAP_FMAC3 struct __wsc__DerivedKeyTokenType_sequence ** SOAP_FMAC4 soap_in_PointerTo__wsc__DerivedKeyTokenType_sequence(struct soap*, const char*, struct __wsc__DerivedKeyTokenType_sequence **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__wsc__DerivedKeyTokenType_sequence(struct soap*, struct __wsc__DerivedKeyTokenType_sequence *const*, const char*, const char*); -SOAP_FMAC3 struct __wsc__DerivedKeyTokenType_sequence ** SOAP_FMAC4 soap_get_PointerTo__wsc__DerivedKeyTokenType_sequence(struct soap*, struct __wsc__DerivedKeyTokenType_sequence **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToULONG64_DEFINED -#define SOAP_TYPE_PointerToULONG64_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToULONG64(struct soap*, ULONG64 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToULONG64(struct soap*, const char *, int, ULONG64 *const*, const char *); -SOAP_FMAC3 ULONG64 ** SOAP_FMAC4 soap_in_PointerToULONG64(struct soap*, const char*, ULONG64 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToULONG64(struct soap*, ULONG64 *const*, const char*, const char*); -SOAP_FMAC3 ULONG64 ** SOAP_FMAC4 soap_get_PointerToULONG64(struct soap*, ULONG64 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsc__PropertiesType_DEFINED -#define SOAP_TYPE_PointerTowsc__PropertiesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsc__PropertiesType(struct soap*, struct wsc__PropertiesType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsc__PropertiesType(struct soap*, const char *, int, struct wsc__PropertiesType *const*, const char *); -SOAP_FMAC3 struct wsc__PropertiesType ** SOAP_FMAC4 soap_in_PointerTowsc__PropertiesType(struct soap*, const char*, struct wsc__PropertiesType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsc__PropertiesType(struct soap*, struct wsc__PropertiesType *const*, const char*, const char*); -SOAP_FMAC3 struct wsc__PropertiesType ** SOAP_FMAC4 soap_get_PointerTowsc__PropertiesType(struct soap*, struct wsc__PropertiesType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_wsc__FaultCodeOpenEnumType_DEFINED -#define SOAP_TYPE_wsc__FaultCodeOpenEnumType_DEFINED - -inline void soap_default_wsc__FaultCodeOpenEnumType(struct soap *soap, char **a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsc__FaultCodeOpenEnumType - *a = SOAP_DEFAULT_wsc__FaultCodeOpenEnumType; -#else - *a = (char *)0; -#endif -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsc__FaultCodeOpenEnumType(struct soap*, char *const*); - -#define soap_wsc__FaultCodeOpenEnumType2s(soap, a) (a) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsc__FaultCodeOpenEnumType(struct soap*, const char*, int, char*const*, const char*); - -#define soap_s2wsc__FaultCodeOpenEnumType(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) -SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_wsc__FaultCodeOpenEnumType(struct soap*, const char*, char **, const char*); - -#define soap_instantiate_wsc__FaultCodeOpenEnumType soap_instantiate_string - - -#define soap_new_wsc__FaultCodeOpenEnumType soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsc__FaultCodeOpenEnumType(struct soap*, char *const*, const char*, const char*); - -inline int soap_write_wsc__FaultCodeOpenEnumType(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsc__FaultCodeOpenEnumType(soap, p, "wsc:FaultCodeOpenEnumType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsc__FaultCodeOpenEnumType(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_wsc__FaultCodeOpenEnumType(soap, p, "wsc:FaultCodeOpenEnumType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsc__FaultCodeOpenEnumType(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_wsc__FaultCodeOpenEnumType(soap, p, "wsc:FaultCodeOpenEnumType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsc__FaultCodeOpenEnumType(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_wsc__FaultCodeOpenEnumType(soap, p, "wsc:FaultCodeOpenEnumType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 char ** SOAP_FMAC4 soap_get_wsc__FaultCodeOpenEnumType(struct soap*, char **, const char*, const char*); - -inline int soap_read_wsc__FaultCodeOpenEnumType(struct soap *soap, char **p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsc__FaultCodeOpenEnumType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsc__FaultCodeOpenEnumType(struct soap *soap, const char *URL, char **p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsc__FaultCodeOpenEnumType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsc__FaultCodeOpenEnumType(struct soap *soap, char **p) -{ - if (::soap_read_wsc__FaultCodeOpenEnumType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_PointerTo_xenc__ReferenceList_DEFINED -#define SOAP_TYPE_PointerTo_xenc__ReferenceList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_xenc__ReferenceList(struct soap*, struct _xenc__ReferenceList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_xenc__ReferenceList(struct soap*, const char *, int, struct _xenc__ReferenceList *const*, const char *); -SOAP_FMAC3 struct _xenc__ReferenceList ** SOAP_FMAC4 soap_in_PointerTo_xenc__ReferenceList(struct soap*, const char*, struct _xenc__ReferenceList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_xenc__ReferenceList(struct soap*, struct _xenc__ReferenceList *const*, const char*, const char*); -SOAP_FMAC3 struct _xenc__ReferenceList ** SOAP_FMAC4 soap_get_PointerTo_xenc__ReferenceList(struct soap*, struct _xenc__ReferenceList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo__xenc__union_ReferenceList_DEFINED -#define SOAP_TYPE_PointerTo__xenc__union_ReferenceList_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo__xenc__union_ReferenceList(struct soap*, struct __xenc__union_ReferenceList *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo__xenc__union_ReferenceList(struct soap*, const char *, int, struct __xenc__union_ReferenceList *const*, const char *); -SOAP_FMAC3 struct __xenc__union_ReferenceList ** SOAP_FMAC4 soap_in_PointerTo__xenc__union_ReferenceList(struct soap*, const char*, struct __xenc__union_ReferenceList **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo__xenc__union_ReferenceList(struct soap*, struct __xenc__union_ReferenceList *const*, const char*, const char*); -SOAP_FMAC3 struct __xenc__union_ReferenceList ** SOAP_FMAC4 soap_get_PointerTo__xenc__union_ReferenceList(struct soap*, struct __xenc__union_ReferenceList **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxenc__ReferenceType_DEFINED -#define SOAP_TYPE_PointerToxenc__ReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__ReferenceType(struct soap*, struct xenc__ReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__ReferenceType(struct soap*, const char *, int, struct xenc__ReferenceType *const*, const char *); -SOAP_FMAC3 struct xenc__ReferenceType ** SOAP_FMAC4 soap_in_PointerToxenc__ReferenceType(struct soap*, const char*, struct xenc__ReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__ReferenceType(struct soap*, struct xenc__ReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__ReferenceType ** SOAP_FMAC4 soap_get_PointerToxenc__ReferenceType(struct soap*, struct xenc__ReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxenc__EncryptionPropertyType_DEFINED -#define SOAP_TYPE_PointerToxenc__EncryptionPropertyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__EncryptionPropertyType(struct soap*, struct xenc__EncryptionPropertyType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__EncryptionPropertyType(struct soap*, const char *, int, struct xenc__EncryptionPropertyType *const*, const char *); -SOAP_FMAC3 struct xenc__EncryptionPropertyType ** SOAP_FMAC4 soap_in_PointerToxenc__EncryptionPropertyType(struct soap*, const char*, struct xenc__EncryptionPropertyType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__EncryptionPropertyType(struct soap*, struct xenc__EncryptionPropertyType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__EncryptionPropertyType ** SOAP_FMAC4 soap_get_PointerToxenc__EncryptionPropertyType(struct soap*, struct xenc__EncryptionPropertyType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxenc__TransformsType_DEFINED -#define SOAP_TYPE_PointerToxenc__TransformsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__TransformsType(struct soap*, struct xenc__TransformsType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__TransformsType(struct soap*, const char *, int, struct xenc__TransformsType *const*, const char *); -SOAP_FMAC3 struct xenc__TransformsType ** SOAP_FMAC4 soap_in_PointerToxenc__TransformsType(struct soap*, const char*, struct xenc__TransformsType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__TransformsType(struct soap*, struct xenc__TransformsType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__TransformsType ** SOAP_FMAC4 soap_get_PointerToxenc__TransformsType(struct soap*, struct xenc__TransformsType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxenc__CipherReferenceType_DEFINED -#define SOAP_TYPE_PointerToxenc__CipherReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__CipherReferenceType(struct soap*, struct xenc__CipherReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__CipherReferenceType(struct soap*, const char *, int, struct xenc__CipherReferenceType *const*, const char *); -SOAP_FMAC3 struct xenc__CipherReferenceType ** SOAP_FMAC4 soap_in_PointerToxenc__CipherReferenceType(struct soap*, const char*, struct xenc__CipherReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__CipherReferenceType(struct soap*, struct xenc__CipherReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__CipherReferenceType ** SOAP_FMAC4 soap_get_PointerToxenc__CipherReferenceType(struct soap*, struct xenc__CipherReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxenc__EncryptionPropertiesType_DEFINED -#define SOAP_TYPE_PointerToxenc__EncryptionPropertiesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__EncryptionPropertiesType(struct soap*, struct xenc__EncryptionPropertiesType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__EncryptionPropertiesType(struct soap*, const char *, int, struct xenc__EncryptionPropertiesType *const*, const char *); -SOAP_FMAC3 struct xenc__EncryptionPropertiesType ** SOAP_FMAC4 soap_in_PointerToxenc__EncryptionPropertiesType(struct soap*, const char*, struct xenc__EncryptionPropertiesType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__EncryptionPropertiesType(struct soap*, struct xenc__EncryptionPropertiesType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__EncryptionPropertiesType ** SOAP_FMAC4 soap_get_PointerToxenc__EncryptionPropertiesType(struct soap*, struct xenc__EncryptionPropertiesType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxenc__CipherDataType_DEFINED -#define SOAP_TYPE_PointerToxenc__CipherDataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__CipherDataType(struct soap*, struct xenc__CipherDataType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__CipherDataType(struct soap*, const char *, int, struct xenc__CipherDataType *const*, const char *); -SOAP_FMAC3 struct xenc__CipherDataType ** SOAP_FMAC4 soap_in_PointerToxenc__CipherDataType(struct soap*, const char*, struct xenc__CipherDataType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__CipherDataType(struct soap*, struct xenc__CipherDataType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__CipherDataType ** SOAP_FMAC4 soap_get_PointerToxenc__CipherDataType(struct soap*, struct xenc__CipherDataType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_ds__KeyInfo_DEFINED -#define SOAP_TYPE_PointerTo_ds__KeyInfo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ds__KeyInfo(struct soap*, struct ds__KeyInfoType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_ds__KeyInfo(struct soap*, const char *, int, struct ds__KeyInfoType *const*, const char *); -SOAP_FMAC3 struct ds__KeyInfoType ** SOAP_FMAC4 soap_in_PointerTo_ds__KeyInfo(struct soap*, const char*, struct ds__KeyInfoType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ds__KeyInfo(struct soap*, struct ds__KeyInfoType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__KeyInfoType ** SOAP_FMAC4 soap_get_PointerTo_ds__KeyInfo(struct soap*, struct ds__KeyInfoType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToxenc__EncryptionMethodType_DEFINED -#define SOAP_TYPE_PointerToxenc__EncryptionMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__EncryptionMethodType(struct soap*, struct xenc__EncryptionMethodType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__EncryptionMethodType(struct soap*, const char *, int, struct xenc__EncryptionMethodType *const*, const char *); -SOAP_FMAC3 struct xenc__EncryptionMethodType ** SOAP_FMAC4 soap_in_PointerToxenc__EncryptionMethodType(struct soap*, const char*, struct xenc__EncryptionMethodType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__EncryptionMethodType(struct soap*, struct xenc__EncryptionMethodType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__EncryptionMethodType ** SOAP_FMAC4 soap_get_PointerToxenc__EncryptionMethodType(struct soap*, struct xenc__EncryptionMethodType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__X509IssuerSerialType_DEFINED -#define SOAP_TYPE_PointerTods__X509IssuerSerialType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__X509IssuerSerialType(struct soap*, struct ds__X509IssuerSerialType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__X509IssuerSerialType(struct soap*, const char *, int, struct ds__X509IssuerSerialType *const*, const char *); -SOAP_FMAC3 struct ds__X509IssuerSerialType ** SOAP_FMAC4 soap_in_PointerTods__X509IssuerSerialType(struct soap*, const char*, struct ds__X509IssuerSerialType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__X509IssuerSerialType(struct soap*, struct ds__X509IssuerSerialType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__X509IssuerSerialType ** SOAP_FMAC4 soap_get_PointerTods__X509IssuerSerialType(struct soap*, struct ds__X509IssuerSerialType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__RSAKeyValueType_DEFINED -#define SOAP_TYPE_PointerTods__RSAKeyValueType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__RSAKeyValueType(struct soap*, struct ds__RSAKeyValueType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__RSAKeyValueType(struct soap*, const char *, int, struct ds__RSAKeyValueType *const*, const char *); -SOAP_FMAC3 struct ds__RSAKeyValueType ** SOAP_FMAC4 soap_in_PointerTods__RSAKeyValueType(struct soap*, const char*, struct ds__RSAKeyValueType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__RSAKeyValueType(struct soap*, struct ds__RSAKeyValueType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__RSAKeyValueType ** SOAP_FMAC4 soap_get_PointerTods__RSAKeyValueType(struct soap*, struct ds__RSAKeyValueType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__DSAKeyValueType_DEFINED -#define SOAP_TYPE_PointerTods__DSAKeyValueType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__DSAKeyValueType(struct soap*, struct ds__DSAKeyValueType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__DSAKeyValueType(struct soap*, const char *, int, struct ds__DSAKeyValueType *const*, const char *); -SOAP_FMAC3 struct ds__DSAKeyValueType ** SOAP_FMAC4 soap_in_PointerTods__DSAKeyValueType(struct soap*, const char*, struct ds__DSAKeyValueType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__DSAKeyValueType(struct soap*, struct ds__DSAKeyValueType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__DSAKeyValueType ** SOAP_FMAC4 soap_get_PointerTods__DSAKeyValueType(struct soap*, struct ds__DSAKeyValueType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__TransformType_DEFINED -#define SOAP_TYPE_PointerTods__TransformType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__TransformType(struct soap*, struct ds__TransformType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__TransformType(struct soap*, const char *, int, struct ds__TransformType *const*, const char *); -SOAP_FMAC3 struct ds__TransformType ** SOAP_FMAC4 soap_in_PointerTods__TransformType(struct soap*, const char*, struct ds__TransformType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__TransformType(struct soap*, struct ds__TransformType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__TransformType ** SOAP_FMAC4 soap_get_PointerTods__TransformType(struct soap*, struct ds__TransformType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__DigestMethodType_DEFINED -#define SOAP_TYPE_PointerTods__DigestMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__DigestMethodType(struct soap*, struct ds__DigestMethodType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__DigestMethodType(struct soap*, const char *, int, struct ds__DigestMethodType *const*, const char *); -SOAP_FMAC3 struct ds__DigestMethodType ** SOAP_FMAC4 soap_in_PointerTods__DigestMethodType(struct soap*, const char*, struct ds__DigestMethodType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__DigestMethodType(struct soap*, struct ds__DigestMethodType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__DigestMethodType ** SOAP_FMAC4 soap_get_PointerTods__DigestMethodType(struct soap*, struct ds__DigestMethodType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__TransformsType_DEFINED -#define SOAP_TYPE_PointerTods__TransformsType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__TransformsType(struct soap*, struct ds__TransformsType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__TransformsType(struct soap*, const char *, int, struct ds__TransformsType *const*, const char *); -SOAP_FMAC3 struct ds__TransformsType ** SOAP_FMAC4 soap_in_PointerTods__TransformsType(struct soap*, const char*, struct ds__TransformsType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__TransformsType(struct soap*, struct ds__TransformsType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__TransformsType ** SOAP_FMAC4 soap_get_PointerTods__TransformsType(struct soap*, struct ds__TransformsType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToint_DEFINED -#define SOAP_TYPE_PointerToint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToint(struct soap*, int *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToint(struct soap*, const char *, int, int *const*, const char *); -SOAP_FMAC3 int ** SOAP_FMAC4 soap_in_PointerToint(struct soap*, const char*, int **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToint(struct soap*, int *const*, const char*, const char*); -SOAP_FMAC3 int ** SOAP_FMAC4 soap_get_PointerToint(struct soap*, int **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerToPointerTods__ReferenceType_DEFINED -#define SOAP_TYPE_PointerToPointerTods__ReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToPointerTods__ReferenceType(struct soap*, struct ds__ReferenceType **const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToPointerTods__ReferenceType(struct soap*, const char *, int, struct ds__ReferenceType **const*, const char *); -SOAP_FMAC3 struct ds__ReferenceType *** SOAP_FMAC4 soap_in_PointerToPointerTods__ReferenceType(struct soap*, const char*, struct ds__ReferenceType ***, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToPointerTods__ReferenceType(struct soap*, struct ds__ReferenceType **const*, const char*, const char*); -SOAP_FMAC3 struct ds__ReferenceType *** SOAP_FMAC4 soap_get_PointerToPointerTods__ReferenceType(struct soap*, struct ds__ReferenceType ***, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__ReferenceType_DEFINED -#define SOAP_TYPE_PointerTods__ReferenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__ReferenceType(struct soap*, struct ds__ReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__ReferenceType(struct soap*, const char *, int, struct ds__ReferenceType *const*, const char *); -SOAP_FMAC3 struct ds__ReferenceType ** SOAP_FMAC4 soap_in_PointerTods__ReferenceType(struct soap*, const char*, struct ds__ReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__ReferenceType(struct soap*, struct ds__ReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__ReferenceType ** SOAP_FMAC4 soap_get_PointerTods__ReferenceType(struct soap*, struct ds__ReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__SignatureMethodType_DEFINED -#define SOAP_TYPE_PointerTods__SignatureMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__SignatureMethodType(struct soap*, struct ds__SignatureMethodType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__SignatureMethodType(struct soap*, const char *, int, struct ds__SignatureMethodType *const*, const char *); -SOAP_FMAC3 struct ds__SignatureMethodType ** SOAP_FMAC4 soap_in_PointerTods__SignatureMethodType(struct soap*, const char*, struct ds__SignatureMethodType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__SignatureMethodType(struct soap*, struct ds__SignatureMethodType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__SignatureMethodType ** SOAP_FMAC4 soap_get_PointerTods__SignatureMethodType(struct soap*, struct ds__SignatureMethodType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__CanonicalizationMethodType_DEFINED -#define SOAP_TYPE_PointerTods__CanonicalizationMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__CanonicalizationMethodType(struct soap*, struct ds__CanonicalizationMethodType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__CanonicalizationMethodType(struct soap*, const char *, int, struct ds__CanonicalizationMethodType *const*, const char *); -SOAP_FMAC3 struct ds__CanonicalizationMethodType ** SOAP_FMAC4 soap_in_PointerTods__CanonicalizationMethodType(struct soap*, const char*, struct ds__CanonicalizationMethodType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__CanonicalizationMethodType(struct soap*, struct ds__CanonicalizationMethodType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__CanonicalizationMethodType ** SOAP_FMAC4 soap_get_PointerTods__CanonicalizationMethodType(struct soap*, struct ds__CanonicalizationMethodType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__SecurityTokenReference_DEFINED -#define SOAP_TYPE_PointerTo_wsse__SecurityTokenReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__SecurityTokenReference(struct soap*, struct _wsse__SecurityTokenReference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__SecurityTokenReference(struct soap*, const char *, int, struct _wsse__SecurityTokenReference *const*, const char *); -SOAP_FMAC3 struct _wsse__SecurityTokenReference ** SOAP_FMAC4 soap_in_PointerTo_wsse__SecurityTokenReference(struct soap*, const char*, struct _wsse__SecurityTokenReference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__SecurityTokenReference(struct soap*, struct _wsse__SecurityTokenReference *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__SecurityTokenReference ** SOAP_FMAC4 soap_get_PointerTo_wsse__SecurityTokenReference(struct soap*, struct _wsse__SecurityTokenReference **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__RetrievalMethodType_DEFINED -#define SOAP_TYPE_PointerTods__RetrievalMethodType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__RetrievalMethodType(struct soap*, struct ds__RetrievalMethodType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__RetrievalMethodType(struct soap*, const char *, int, struct ds__RetrievalMethodType *const*, const char *); -SOAP_FMAC3 struct ds__RetrievalMethodType ** SOAP_FMAC4 soap_in_PointerTods__RetrievalMethodType(struct soap*, const char*, struct ds__RetrievalMethodType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__RetrievalMethodType(struct soap*, struct ds__RetrievalMethodType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__RetrievalMethodType ** SOAP_FMAC4 soap_get_PointerTods__RetrievalMethodType(struct soap*, struct ds__RetrievalMethodType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__KeyValueType_DEFINED -#define SOAP_TYPE_PointerTods__KeyValueType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__KeyValueType(struct soap*, struct ds__KeyValueType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__KeyValueType(struct soap*, const char *, int, struct ds__KeyValueType *const*, const char *); -SOAP_FMAC3 struct ds__KeyValueType ** SOAP_FMAC4 soap_in_PointerTods__KeyValueType(struct soap*, const char*, struct ds__KeyValueType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__KeyValueType(struct soap*, struct ds__KeyValueType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__KeyValueType ** SOAP_FMAC4 soap_get_PointerTods__KeyValueType(struct soap*, struct ds__KeyValueType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_c14n__InclusiveNamespaces_DEFINED -#define SOAP_TYPE_PointerTo_c14n__InclusiveNamespaces_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_c14n__InclusiveNamespaces(struct soap*, struct _c14n__InclusiveNamespaces *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_c14n__InclusiveNamespaces(struct soap*, const char *, int, struct _c14n__InclusiveNamespaces *const*, const char *); -SOAP_FMAC3 struct _c14n__InclusiveNamespaces ** SOAP_FMAC4 soap_in_PointerTo_c14n__InclusiveNamespaces(struct soap*, const char*, struct _c14n__InclusiveNamespaces **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_c14n__InclusiveNamespaces(struct soap*, struct _c14n__InclusiveNamespaces *const*, const char*, const char*); -SOAP_FMAC3 struct _c14n__InclusiveNamespaces ** SOAP_FMAC4 soap_get_PointerTo_c14n__InclusiveNamespaces(struct soap*, struct _c14n__InclusiveNamespaces **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__KeyInfoType_DEFINED -#define SOAP_TYPE_PointerTods__KeyInfoType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__KeyInfoType(struct soap*, struct ds__KeyInfoType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__KeyInfoType(struct soap*, const char *, int, struct ds__KeyInfoType *const*, const char *); -SOAP_FMAC3 struct ds__KeyInfoType ** SOAP_FMAC4 soap_in_PointerTods__KeyInfoType(struct soap*, const char*, struct ds__KeyInfoType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__KeyInfoType(struct soap*, struct ds__KeyInfoType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__KeyInfoType ** SOAP_FMAC4 soap_get_PointerTods__KeyInfoType(struct soap*, struct ds__KeyInfoType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__SignedInfoType_DEFINED -#define SOAP_TYPE_PointerTods__SignedInfoType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__SignedInfoType(struct soap*, struct ds__SignedInfoType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__SignedInfoType(struct soap*, const char *, int, struct ds__SignedInfoType *const*, const char *); -SOAP_FMAC3 struct ds__SignedInfoType ** SOAP_FMAC4 soap_in_PointerTods__SignedInfoType(struct soap*, const char*, struct ds__SignedInfoType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__SignedInfoType(struct soap*, struct ds__SignedInfoType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__SignedInfoType ** SOAP_FMAC4 soap_get_PointerTods__SignedInfoType(struct soap*, struct ds__SignedInfoType **, const char*, const char*); -#endif -/* _ds__SignatureValue is a typedef synonym of string */ - -#ifndef SOAP_TYPE__ds__SignatureValue_DEFINED -#define SOAP_TYPE__ds__SignatureValue_DEFINED - -#define soap_default__ds__SignatureValue soap_default_string - - -#define soap_serialize__ds__SignatureValue soap_serialize_string - - -#define soap__ds__SignatureValue2s(soap, a) (a) - -#define soap_out__ds__SignatureValue soap_out_string - - -#define soap_s2_ds__SignatureValue(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__ds__SignatureValue soap_in_string - - -#define soap_instantiate__ds__SignatureValue soap_instantiate_string - - -#define soap_new__ds__SignatureValue soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__ds__SignatureValue(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__ds__SignatureValue(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__ds__SignatureValue(soap, p, "ds:SignatureValue", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__ds__SignatureValue(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__ds__SignatureValue(soap, p, "ds:SignatureValue", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__ds__SignatureValue(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__ds__SignatureValue(soap, p, "ds:SignatureValue", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__ds__SignatureValue(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__ds__SignatureValue(soap, p, "ds:SignatureValue", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__ds__SignatureValue soap_get_string - - -#define soap_read__ds__SignatureValue soap_read_string - - -#define soap_GET__ds__SignatureValue soap_GET_string - - -#define soap_POST_recv__ds__SignatureValue soap_POST_recv_string - -#endif - -#ifndef SOAP_TYPE_PointerToxenc__EncryptedKeyType_DEFINED -#define SOAP_TYPE_PointerToxenc__EncryptedKeyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToxenc__EncryptedKeyType(struct soap*, const char *, int, struct xenc__EncryptedKeyType *const*, const char *); -SOAP_FMAC3 struct xenc__EncryptedKeyType ** SOAP_FMAC4 soap_in_PointerToxenc__EncryptedKeyType(struct soap*, const char*, struct xenc__EncryptedKeyType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType *const*, const char*, const char*); -SOAP_FMAC3 struct xenc__EncryptedKeyType ** SOAP_FMAC4 soap_get_PointerToxenc__EncryptedKeyType(struct soap*, struct xenc__EncryptedKeyType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTods__X509DataType_DEFINED -#define SOAP_TYPE_PointerTods__X509DataType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTods__X509DataType(struct soap*, struct ds__X509DataType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTods__X509DataType(struct soap*, const char *, int, struct ds__X509DataType *const*, const char *); -SOAP_FMAC3 struct ds__X509DataType ** SOAP_FMAC4 soap_in_PointerTods__X509DataType(struct soap*, const char*, struct ds__X509DataType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTods__X509DataType(struct soap*, struct ds__X509DataType *const*, const char*, const char*); -SOAP_FMAC3 struct ds__X509DataType ** SOAP_FMAC4 soap_get_PointerTods__X509DataType(struct soap*, struct ds__X509DataType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__Embedded_DEFINED -#define SOAP_TYPE_PointerTo_wsse__Embedded_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__Embedded(struct soap*, struct _wsse__Embedded *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__Embedded(struct soap*, const char *, int, struct _wsse__Embedded *const*, const char *); -SOAP_FMAC3 struct _wsse__Embedded ** SOAP_FMAC4 soap_in_PointerTo_wsse__Embedded(struct soap*, const char*, struct _wsse__Embedded **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__Embedded(struct soap*, struct _wsse__Embedded *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__Embedded ** SOAP_FMAC4 soap_get_PointerTo_wsse__Embedded(struct soap*, struct _wsse__Embedded **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__KeyIdentifier_DEFINED -#define SOAP_TYPE_PointerTo_wsse__KeyIdentifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__KeyIdentifier(struct soap*, struct _wsse__KeyIdentifier *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__KeyIdentifier(struct soap*, const char *, int, struct _wsse__KeyIdentifier *const*, const char *); -SOAP_FMAC3 struct _wsse__KeyIdentifier ** SOAP_FMAC4 soap_in_PointerTo_wsse__KeyIdentifier(struct soap*, const char*, struct _wsse__KeyIdentifier **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__KeyIdentifier(struct soap*, struct _wsse__KeyIdentifier *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__KeyIdentifier ** SOAP_FMAC4 soap_get_PointerTo_wsse__KeyIdentifier(struct soap*, struct _wsse__KeyIdentifier **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__Reference_DEFINED -#define SOAP_TYPE_PointerTo_wsse__Reference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__Reference(struct soap*, struct _wsse__Reference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__Reference(struct soap*, const char *, int, struct _wsse__Reference *const*, const char *); -SOAP_FMAC3 struct _wsse__Reference ** SOAP_FMAC4 soap_in_PointerTo_wsse__Reference(struct soap*, const char*, struct _wsse__Reference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__Reference(struct soap*, struct _wsse__Reference *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__Reference ** SOAP_FMAC4 soap_get_PointerTo_wsse__Reference(struct soap*, struct _wsse__Reference **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsse__EncodedString_DEFINED -#define SOAP_TYPE_PointerTowsse__EncodedString_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsse__EncodedString(struct soap*, struct wsse__EncodedString *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsse__EncodedString(struct soap*, const char *, int, struct wsse__EncodedString *const*, const char *); -SOAP_FMAC3 struct wsse__EncodedString ** SOAP_FMAC4 soap_in_PointerTowsse__EncodedString(struct soap*, const char*, struct wsse__EncodedString **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsse__EncodedString(struct soap*, struct wsse__EncodedString *const*, const char*, const char*); -SOAP_FMAC3 struct wsse__EncodedString ** SOAP_FMAC4 soap_get_PointerTowsse__EncodedString(struct soap*, struct wsse__EncodedString **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsse__Password_DEFINED -#define SOAP_TYPE_PointerTo_wsse__Password_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsse__Password(struct soap*, struct _wsse__Password *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsse__Password(struct soap*, const char *, int, struct _wsse__Password *const*, const char *); -SOAP_FMAC3 struct _wsse__Password ** SOAP_FMAC4 soap_in_PointerTo_wsse__Password(struct soap*, const char*, struct _wsse__Password **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsse__Password(struct soap*, struct _wsse__Password *const*, const char*, const char*); -SOAP_FMAC3 struct _wsse__Password ** SOAP_FMAC4 soap_get_PointerTo_wsse__Password(struct soap*, struct _wsse__Password **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ResolveMatchesType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ResolveMatchesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ResolveMatchesType(struct soap*, struct wsdd__ResolveMatchesType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ResolveMatchesType(struct soap*, const char *, int, struct wsdd__ResolveMatchesType *const*, const char *); -SOAP_FMAC3 struct wsdd__ResolveMatchesType ** SOAP_FMAC4 soap_in_PointerTowsdd__ResolveMatchesType(struct soap*, const char*, struct wsdd__ResolveMatchesType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ResolveMatchesType(struct soap*, struct wsdd__ResolveMatchesType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ResolveMatchesType ** SOAP_FMAC4 soap_get_PointerTowsdd__ResolveMatchesType(struct soap*, struct wsdd__ResolveMatchesType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ResolveType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ResolveType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ResolveType(struct soap*, struct wsdd__ResolveType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ResolveType(struct soap*, const char *, int, struct wsdd__ResolveType *const*, const char *); -SOAP_FMAC3 struct wsdd__ResolveType ** SOAP_FMAC4 soap_in_PointerTowsdd__ResolveType(struct soap*, const char*, struct wsdd__ResolveType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ResolveType(struct soap*, struct wsdd__ResolveType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ResolveType ** SOAP_FMAC4 soap_get_PointerTowsdd__ResolveType(struct soap*, struct wsdd__ResolveType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ProbeMatchesType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ProbeMatchesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ProbeMatchesType(struct soap*, struct wsdd__ProbeMatchesType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ProbeMatchesType(struct soap*, const char *, int, struct wsdd__ProbeMatchesType *const*, const char *); -SOAP_FMAC3 struct wsdd__ProbeMatchesType ** SOAP_FMAC4 soap_in_PointerTowsdd__ProbeMatchesType(struct soap*, const char*, struct wsdd__ProbeMatchesType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ProbeMatchesType(struct soap*, struct wsdd__ProbeMatchesType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ProbeMatchesType ** SOAP_FMAC4 soap_get_PointerTowsdd__ProbeMatchesType(struct soap*, struct wsdd__ProbeMatchesType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ProbeType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ProbeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ProbeType(struct soap*, struct wsdd__ProbeType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ProbeType(struct soap*, const char *, int, struct wsdd__ProbeType *const*, const char *); -SOAP_FMAC3 struct wsdd__ProbeType ** SOAP_FMAC4 soap_in_PointerTowsdd__ProbeType(struct soap*, const char*, struct wsdd__ProbeType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ProbeType(struct soap*, struct wsdd__ProbeType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ProbeType ** SOAP_FMAC4 soap_get_PointerTowsdd__ProbeType(struct soap*, struct wsdd__ProbeType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ByeType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ByeType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ByeType(struct soap*, struct wsdd__ByeType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ByeType(struct soap*, const char *, int, struct wsdd__ByeType *const*, const char *); -SOAP_FMAC3 struct wsdd__ByeType ** SOAP_FMAC4 soap_in_PointerTowsdd__ByeType(struct soap*, const char*, struct wsdd__ByeType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ByeType(struct soap*, struct wsdd__ByeType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ByeType ** SOAP_FMAC4 soap_get_PointerTowsdd__ByeType(struct soap*, struct wsdd__ByeType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__HelloType_DEFINED -#define SOAP_TYPE_PointerTowsdd__HelloType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__HelloType(struct soap*, struct wsdd__HelloType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__HelloType(struct soap*, const char *, int, struct wsdd__HelloType *const*, const char *); -SOAP_FMAC3 struct wsdd__HelloType ** SOAP_FMAC4 soap_in_PointerTowsdd__HelloType(struct soap*, const char*, struct wsdd__HelloType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__HelloType(struct soap*, struct wsdd__HelloType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__HelloType ** SOAP_FMAC4 soap_get_PointerTowsdd__HelloType(struct soap*, struct wsdd__HelloType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__AppSequenceType_DEFINED -#define SOAP_TYPE_PointerTowsdd__AppSequenceType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__AppSequenceType(struct soap*, struct wsdd__AppSequenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__AppSequenceType(struct soap*, const char *, int, struct wsdd__AppSequenceType *const*, const char *); -SOAP_FMAC3 struct wsdd__AppSequenceType ** SOAP_FMAC4 soap_in_PointerTowsdd__AppSequenceType(struct soap*, const char*, struct wsdd__AppSequenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__AppSequenceType(struct soap*, struct wsdd__AppSequenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__AppSequenceType ** SOAP_FMAC4 soap_get_PointerTowsdd__AppSequenceType(struct soap*, struct wsdd__AppSequenceType **, const char*, const char*); -#endif -/* _wsdd__Id is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsdd__Id_DEFINED -#define SOAP_TYPE__wsdd__Id_DEFINED - -#define soap_default__wsdd__Id soap_default_string - - -#define soap_serialize__wsdd__Id soap_serialize_string - - -#define soap__wsdd__Id2s(soap, a) (a) - -#define soap_out__wsdd__Id soap_out_string - - -#define soap_s2_wsdd__Id(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsdd__Id soap_in_string - - -#define soap_instantiate__wsdd__Id soap_instantiate_string - - -#define soap_new__wsdd__Id soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsdd__Id(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsdd__Id(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsdd__Id(soap, p, "wsdd:Id", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsdd__Id(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__wsdd__Id(soap, p, "wsdd:Id", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsdd__Id(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__wsdd__Id(soap, p, "wsdd:Id", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsdd__Id(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__wsdd__Id(soap, p, "wsdd:Id", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsdd__Id soap_get_string - - -#define soap_read__wsdd__Id soap_read_string - - -#define soap_GET__wsdd__Id soap_GET_string - - -#define soap_POST_recv__wsdd__Id soap_POST_recv_string - -#endif -/* _wsdd__SupportedMatchingRules is a typedef synonym of wsdd__UriListType */ - -#ifndef SOAP_TYPE__wsdd__SupportedMatchingRules_DEFINED -#define SOAP_TYPE__wsdd__SupportedMatchingRules_DEFINED - -#define soap_default__wsdd__SupportedMatchingRules soap_default_wsdd__UriListType - - -#define soap_serialize__wsdd__SupportedMatchingRules soap_serialize_wsdd__UriListType - - -#define soap__wsdd__SupportedMatchingRules2s(soap, a) (a) - -#define soap_out__wsdd__SupportedMatchingRules soap_out_wsdd__UriListType - - -#define soap_s2_wsdd__SupportedMatchingRules(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsdd__SupportedMatchingRules soap_in_wsdd__UriListType - - -#define soap_instantiate__wsdd__SupportedMatchingRules soap_instantiate_wsdd__UriListType - - -#define soap_new__wsdd__SupportedMatchingRules soap_new_wsdd__UriListType - - -#define soap_put__wsdd__SupportedMatchingRules soap_put_wsdd__UriListType - - -#define soap_write__wsdd__SupportedMatchingRules soap_write_wsdd__UriListType - - -#define soap_PUT__wsdd__SupportedMatchingRules soap_PUT_wsdd__UriListType - - -#define soap_PATCH__wsdd__SupportedMatchingRules soap_PATCH_wsdd__UriListType - - -#define soap_POST_send__wsdd__SupportedMatchingRules soap_POST_send_wsdd__UriListType - - -#define soap_get__wsdd__SupportedMatchingRules soap_get_wsdd__UriListType - - -#define soap_read__wsdd__SupportedMatchingRules soap_read_wsdd__UriListType - - -#define soap_GET__wsdd__SupportedMatchingRules soap_GET_wsdd__UriListType - - -#define soap_POST_recv__wsdd__SupportedMatchingRules soap_POST_recv_wsdd__UriListType - -#endif -/* _wsdd__XAddrs is a typedef synonym of wsdd__UriListType */ - -#ifndef SOAP_TYPE__wsdd__XAddrs_DEFINED -#define SOAP_TYPE__wsdd__XAddrs_DEFINED - -#define soap_default__wsdd__XAddrs soap_default_wsdd__UriListType - - -#define soap_serialize__wsdd__XAddrs soap_serialize_wsdd__UriListType - - -#define soap__wsdd__XAddrs2s(soap, a) (a) - -#define soap_out__wsdd__XAddrs soap_out_wsdd__UriListType - - -#define soap_s2_wsdd__XAddrs(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsdd__XAddrs soap_in_wsdd__UriListType - - -#define soap_instantiate__wsdd__XAddrs soap_instantiate_wsdd__UriListType - - -#define soap_new__wsdd__XAddrs soap_new_wsdd__UriListType - - -#define soap_put__wsdd__XAddrs soap_put_wsdd__UriListType - - -#define soap_write__wsdd__XAddrs soap_write_wsdd__UriListType - - -#define soap_PUT__wsdd__XAddrs soap_PUT_wsdd__UriListType - - -#define soap_PATCH__wsdd__XAddrs soap_PATCH_wsdd__UriListType - - -#define soap_POST_send__wsdd__XAddrs soap_POST_send_wsdd__UriListType - - -#define soap_get__wsdd__XAddrs soap_get_wsdd__UriListType - - -#define soap_read__wsdd__XAddrs soap_read_wsdd__UriListType - - -#define soap_GET__wsdd__XAddrs soap_GET_wsdd__UriListType - - -#define soap_POST_recv__wsdd__XAddrs soap_POST_recv_wsdd__UriListType - -#endif -/* _wsdd__Types is a typedef synonym of wsdd__QNameListType */ - -#ifndef SOAP_TYPE__wsdd__Types_DEFINED -#define SOAP_TYPE__wsdd__Types_DEFINED - -#define soap_default__wsdd__Types soap_default_wsdd__QNameListType - - -#define soap_serialize__wsdd__Types soap_serialize_wsdd__QNameListType - - -#define soap__wsdd__Types2s(soap, a) soap_QName2s(soap, (a)) - -#define soap_out__wsdd__Types soap_out_wsdd__QNameListType - - -#define soap_s2_wsdd__Types(soap, s, a) soap_s2QName((soap), (s), (char**)(a), 0, -1, NULL) - -#define soap_in__wsdd__Types soap_in_wsdd__QNameListType - - -#define soap_instantiate__wsdd__Types soap_instantiate_wsdd__QNameListType - - -#define soap_new__wsdd__Types soap_new_wsdd__QNameListType - - -#define soap_put__wsdd__Types soap_put_wsdd__QNameListType - - -#define soap_write__wsdd__Types soap_write_wsdd__QNameListType - - -#define soap_PUT__wsdd__Types soap_PUT_wsdd__QNameListType - - -#define soap_PATCH__wsdd__Types soap_PATCH_wsdd__QNameListType - - -#define soap_POST_send__wsdd__Types soap_POST_send_wsdd__QNameListType - - -#define soap_get__wsdd__Types soap_get_wsdd__QNameListType - - -#define soap_read__wsdd__Types soap_read_wsdd__QNameListType - - -#define soap_GET__wsdd__Types soap_GET_wsdd__QNameListType - - -#define soap_POST_recv__wsdd__Types soap_POST_recv_wsdd__QNameListType - -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__SigType_DEFINED -#define SOAP_TYPE_PointerTowsdd__SigType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__SigType(struct soap*, struct wsdd__SigType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__SigType(struct soap*, const char *, int, struct wsdd__SigType *const*, const char *); -SOAP_FMAC3 struct wsdd__SigType ** SOAP_FMAC4 soap_in_PointerTowsdd__SigType(struct soap*, const char*, struct wsdd__SigType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__SigType(struct soap*, struct wsdd__SigType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__SigType ** SOAP_FMAC4 soap_get_PointerTowsdd__SigType(struct soap*, struct wsdd__SigType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ResolveMatchType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ResolveMatchType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ResolveMatchType(struct soap*, struct wsdd__ResolveMatchType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ResolveMatchType(struct soap*, const char *, int, struct wsdd__ResolveMatchType *const*, const char *); -SOAP_FMAC3 struct wsdd__ResolveMatchType ** SOAP_FMAC4 soap_in_PointerTowsdd__ResolveMatchType(struct soap*, const char*, struct wsdd__ResolveMatchType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ResolveMatchType(struct soap*, struct wsdd__ResolveMatchType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ResolveMatchType ** SOAP_FMAC4 soap_get_PointerTowsdd__ResolveMatchType(struct soap*, struct wsdd__ResolveMatchType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ProbeMatchType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ProbeMatchType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ProbeMatchType(struct soap*, struct wsdd__ProbeMatchType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ProbeMatchType(struct soap*, const char *, int, struct wsdd__ProbeMatchType *const*, const char *); -SOAP_FMAC3 struct wsdd__ProbeMatchType ** SOAP_FMAC4 soap_in_PointerTowsdd__ProbeMatchType(struct soap*, const char*, struct wsdd__ProbeMatchType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ProbeMatchType(struct soap*, struct wsdd__ProbeMatchType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ProbeMatchType ** SOAP_FMAC4 soap_get_PointerTowsdd__ProbeMatchType(struct soap*, struct wsdd__ProbeMatchType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTounsignedInt_DEFINED -#define SOAP_TYPE_PointerTounsignedInt_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTounsignedInt(struct soap*, unsigned int *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTounsignedInt(struct soap*, const char *, int, unsigned int *const*, const char *); -SOAP_FMAC3 unsigned int ** SOAP_FMAC4 soap_in_PointerTounsignedInt(struct soap*, const char*, unsigned int **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTounsignedInt(struct soap*, unsigned int *const*, const char*, const char*); -SOAP_FMAC3 unsigned int ** SOAP_FMAC4 soap_get_PointerTounsignedInt(struct soap*, unsigned int **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsdd__ScopesType_DEFINED -#define SOAP_TYPE_PointerTowsdd__ScopesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsdd__ScopesType(struct soap*, struct wsdd__ScopesType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsdd__ScopesType(struct soap*, const char *, int, struct wsdd__ScopesType *const*, const char *); -SOAP_FMAC3 struct wsdd__ScopesType ** SOAP_FMAC4 soap_in_PointerTowsdd__ScopesType(struct soap*, const char*, struct wsdd__ScopesType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsdd__ScopesType(struct soap*, struct wsdd__ScopesType *const*, const char*, const char*); -SOAP_FMAC3 struct wsdd__ScopesType ** SOAP_FMAC4 soap_get_PointerTowsdd__ScopesType(struct soap*, struct wsdd__ScopesType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_wsdd__FaultCodeOpenType_DEFINED -#define SOAP_TYPE_wsdd__FaultCodeOpenType_DEFINED - -inline void soap_default_wsdd__FaultCodeOpenType(struct soap *soap, char **a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsdd__FaultCodeOpenType - *a = SOAP_DEFAULT_wsdd__FaultCodeOpenType; -#else - *a = (char *)0; -#endif -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__FaultCodeOpenType(struct soap*, char *const*); - -#define soap_wsdd__FaultCodeOpenType2s(soap, a) (a) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__FaultCodeOpenType(struct soap*, const char*, int, char*const*, const char*); - -#define soap_s2wsdd__FaultCodeOpenType(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) -SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_wsdd__FaultCodeOpenType(struct soap*, const char*, char **, const char*); - -#define soap_instantiate_wsdd__FaultCodeOpenType soap_instantiate_string - - -#define soap_new_wsdd__FaultCodeOpenType soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__FaultCodeOpenType(struct soap*, char *const*, const char*, const char*); - -inline int soap_write_wsdd__FaultCodeOpenType(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsdd__FaultCodeOpenType(soap, p, "wsdd:FaultCodeOpenType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsdd__FaultCodeOpenType(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_wsdd__FaultCodeOpenType(soap, p, "wsdd:FaultCodeOpenType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__FaultCodeOpenType(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_wsdd__FaultCodeOpenType(soap, p, "wsdd:FaultCodeOpenType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__FaultCodeOpenType(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_wsdd__FaultCodeOpenType(soap, p, "wsdd:FaultCodeOpenType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 char ** SOAP_FMAC4 soap_get_wsdd__FaultCodeOpenType(struct soap*, char **, const char*, const char*); - -inline int soap_read_wsdd__FaultCodeOpenType(struct soap *soap, char **p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsdd__FaultCodeOpenType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__FaultCodeOpenType(struct soap *soap, const char *URL, char **p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__FaultCodeOpenType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__FaultCodeOpenType(struct soap *soap, char **p) -{ - if (::soap_read_wsdd__FaultCodeOpenType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif - -#ifndef SOAP_TYPE_wsdd__UriListType_DEFINED -#define SOAP_TYPE_wsdd__UriListType_DEFINED - -inline void soap_default_wsdd__UriListType(struct soap *soap, char **a) -{ - (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_wsdd__UriListType - *a = SOAP_DEFAULT_wsdd__UriListType; -#else - *a = (char *)0; -#endif -} -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_wsdd__UriListType(struct soap*, char *const*); - -#define soap_wsdd__UriListType2s(soap, a) (a) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_wsdd__UriListType(struct soap*, const char*, int, char*const*, const char*); - -#define soap_s2wsdd__UriListType(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) -SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_wsdd__UriListType(struct soap*, const char*, char **, const char*); - -#define soap_instantiate_wsdd__UriListType soap_instantiate_string - - -#define soap_new_wsdd__UriListType soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_wsdd__UriListType(struct soap*, char *const*, const char*, const char*); - -inline int soap_write_wsdd__UriListType(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put_wsdd__UriListType(soap, p, "wsdd:UriListType", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT_wsdd__UriListType(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_wsdd__UriListType(soap, p, "wsdd:UriListType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH_wsdd__UriListType(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_wsdd__UriListType(soap, p, "wsdd:UriListType", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send_wsdd__UriListType(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_wsdd__UriListType(soap, p, "wsdd:UriListType", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} -SOAP_FMAC3 char ** SOAP_FMAC4 soap_get_wsdd__UriListType(struct soap*, char **, const char*, const char*); - -inline int soap_read_wsdd__UriListType(struct soap *soap, char **p) -{ - if (p) - { if (soap_begin_recv(soap) || ::soap_get_wsdd__UriListType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_GET_wsdd__UriListType(struct soap *soap, const char *URL, char **p) -{ - if (soap_GET(soap, URL, NULL) || ::soap_read_wsdd__UriListType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -inline int soap_POST_recv_wsdd__UriListType(struct soap *soap, char **p) -{ - if (::soap_read_wsdd__UriListType(soap, p)) - return soap_closesock(soap); - return soap_closesock(soap); -} -#endif -/* wsdd__QNameListType is a typedef synonym of _QName */ - -#ifndef SOAP_TYPE_wsdd__QNameListType_DEFINED -#define SOAP_TYPE_wsdd__QNameListType_DEFINED - -#define soap_default_wsdd__QNameListType soap_default__QName - - -#define soap_serialize_wsdd__QNameListType soap_serialize__QName - - -#define soap_wsdd__QNameListType2s(soap, a) soap_QName2s(soap, (a)) - -#define soap_out_wsdd__QNameListType soap_out__QName - - -#define soap_s2wsdd__QNameListType(soap, s, a) soap_s2QName((soap), (s), (char**)(a), 0, -1, NULL) - -#define soap_in_wsdd__QNameListType soap_in__QName - - -#define soap_instantiate_wsdd__QNameListType soap_instantiate__QName - - -#define soap_new_wsdd__QNameListType soap_new__QName - - -#define soap_put_wsdd__QNameListType soap_put__QName - - -#define soap_write_wsdd__QNameListType soap_write__QName - - -#define soap_PUT_wsdd__QNameListType soap_PUT__QName - - -#define soap_PATCH_wsdd__QNameListType soap_PATCH__QName - - -#define soap_POST_send_wsdd__QNameListType soap_POST_send__QName - - -#define soap_get_wsdd__QNameListType soap_get__QName - - -#define soap_read_wsdd__QNameListType soap_read__QName - - -#define soap_GET_wsdd__QNameListType soap_GET__QName - - -#define soap_POST_recv_wsdd__QNameListType soap_POST_recv__QName - -#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__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 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 SOAP_TYPE_PointerTo_wsa__FaultTo_DEFINED -#define SOAP_TYPE_PointerTo_wsa__FaultTo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa__FaultTo(struct soap*, struct wsa__EndpointReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa__FaultTo(struct soap*, const char *, int, struct wsa__EndpointReferenceType *const*, const char *); -SOAP_FMAC3 struct wsa__EndpointReferenceType ** SOAP_FMAC4 soap_in_PointerTo_wsa__FaultTo(struct soap*, const char*, struct wsa__EndpointReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa__FaultTo(struct soap*, struct wsa__EndpointReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa__EndpointReferenceType ** SOAP_FMAC4 soap_get_PointerTo_wsa__FaultTo(struct soap*, struct wsa__EndpointReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsa__ReplyTo_DEFINED -#define SOAP_TYPE_PointerTo_wsa__ReplyTo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa__ReplyTo(struct soap*, struct wsa__EndpointReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa__ReplyTo(struct soap*, const char *, int, struct wsa__EndpointReferenceType *const*, const char *); -SOAP_FMAC3 struct wsa__EndpointReferenceType ** SOAP_FMAC4 soap_in_PointerTo_wsa__ReplyTo(struct soap*, const char*, struct wsa__EndpointReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa__ReplyTo(struct soap*, struct wsa__EndpointReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa__EndpointReferenceType ** SOAP_FMAC4 soap_get_PointerTo_wsa__ReplyTo(struct soap*, struct wsa__EndpointReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsa__From_DEFINED -#define SOAP_TYPE_PointerTo_wsa__From_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa__From(struct soap*, struct wsa__EndpointReferenceType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa__From(struct soap*, const char *, int, struct wsa__EndpointReferenceType *const*, const char *); -SOAP_FMAC3 struct wsa__EndpointReferenceType ** SOAP_FMAC4 soap_in_PointerTo_wsa__From(struct soap*, const char*, struct wsa__EndpointReferenceType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa__From(struct soap*, struct wsa__EndpointReferenceType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa__EndpointReferenceType ** SOAP_FMAC4 soap_get_PointerTo_wsa__From(struct soap*, struct wsa__EndpointReferenceType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_wsa__RelatesTo_DEFINED -#define SOAP_TYPE_PointerTo_wsa__RelatesTo_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_wsa__RelatesTo(struct soap*, struct wsa__Relationship *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_wsa__RelatesTo(struct soap*, const char *, int, struct wsa__Relationship *const*, const char *); -SOAP_FMAC3 struct wsa__Relationship ** SOAP_FMAC4 soap_in_PointerTo_wsa__RelatesTo(struct soap*, const char*, struct wsa__Relationship **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_wsa__RelatesTo(struct soap*, struct wsa__Relationship *const*, const char*, const char*); -SOAP_FMAC3 struct wsa__Relationship ** SOAP_FMAC4 soap_get_PointerTo_wsa__RelatesTo(struct soap*, struct wsa__Relationship **, const char*, const char*); -#endif -/* _wsa__Action is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsa__Action_DEFINED -#define SOAP_TYPE__wsa__Action_DEFINED - -#define soap_default__wsa__Action soap_default_string - - -#define soap_serialize__wsa__Action soap_serialize_string - - -#define soap__wsa__Action2s(soap, a) (a) - -#define soap_out__wsa__Action soap_out_string - - -#define soap_s2_wsa__Action(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsa__Action soap_in_string - - -#define soap_instantiate__wsa__Action soap_instantiate_string - - -#define soap_new__wsa__Action soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__Action(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsa__Action(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa__Action(soap, p, "wsa:Action", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa__Action(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__wsa__Action(soap, p, "wsa:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__Action(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__wsa__Action(soap, p, "wsa:Action", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__Action(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__wsa__Action(soap, p, "wsa:Action", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__Action soap_get_string - - -#define soap_read__wsa__Action soap_read_string - - -#define soap_GET__wsa__Action soap_GET_string - - -#define soap_POST_recv__wsa__Action soap_POST_recv_string - -#endif -/* _wsa__To is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsa__To_DEFINED -#define SOAP_TYPE__wsa__To_DEFINED - -#define soap_default__wsa__To soap_default_string - - -#define soap_serialize__wsa__To soap_serialize_string - - -#define soap__wsa__To2s(soap, a) (a) - -#define soap_out__wsa__To soap_out_string - - -#define soap_s2_wsa__To(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsa__To soap_in_string - - -#define soap_instantiate__wsa__To soap_instantiate_string - - -#define soap_new__wsa__To soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__To(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsa__To(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa__To(soap, p, "wsa:To", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa__To(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__wsa__To(soap, p, "wsa:To", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__To(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__wsa__To(soap, p, "wsa:To", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__To(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__wsa__To(soap, p, "wsa:To", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__To soap_get_string - - -#define soap_read__wsa__To soap_read_string - - -#define soap_GET__wsa__To soap_GET_string - - -#define soap_POST_recv__wsa__To soap_POST_recv_string - -#endif -/* _wsa__MessageID is a typedef synonym of string */ - -#ifndef SOAP_TYPE__wsa__MessageID_DEFINED -#define SOAP_TYPE__wsa__MessageID_DEFINED - -#define soap_default__wsa__MessageID soap_default_string - - -#define soap_serialize__wsa__MessageID soap_serialize_string - - -#define soap__wsa__MessageID2s(soap, a) (a) - -#define soap_out__wsa__MessageID soap_out_string - - -#define soap_s2_wsa__MessageID(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL) - -#define soap_in__wsa__MessageID soap_in_string - - -#define soap_instantiate__wsa__MessageID soap_instantiate_string - - -#define soap_new__wsa__MessageID soap_new_string - -SOAP_FMAC3 int SOAP_FMAC4 soap_put__wsa__MessageID(struct soap*, char *const*, const char*, const char*); - -inline int soap_write__wsa__MessageID(struct soap *soap, char *const*p) -{ - soap_free_temp(soap); - if (p) - { if (soap_begin_send(soap) || ::soap_put__wsa__MessageID(soap, p, "wsa:MessageID", "") || soap_end_send(soap)) - return soap->error; - } - return SOAP_OK; -} - -inline int soap_PUT__wsa__MessageID(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__wsa__MessageID(soap, p, "wsa:MessageID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_PATCH__wsa__MessageID(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__wsa__MessageID(soap, p, "wsa:MessageID", "") || soap_end_send(soap) || soap_recv_empty_response(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -inline int soap_POST_send__wsa__MessageID(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__wsa__MessageID(soap, p, "wsa:MessageID", "") || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -#define soap_get__wsa__MessageID soap_get_string - - -#define soap_read__wsa__MessageID soap_read_string - - -#define soap_GET__wsa__MessageID soap_GET_string - - -#define soap_POST_recv__wsa__MessageID soap_POST_recv_string - -#endif - -#ifndef SOAP_TYPE_PointerTo_XML_DEFINED -#define SOAP_TYPE_PointerTo_XML_DEFINED -#endif - -#ifndef SOAP_TYPE_PointerTowsa__ServiceNameType_DEFINED -#define SOAP_TYPE_PointerTowsa__ServiceNameType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsa__ServiceNameType(struct soap*, struct wsa__ServiceNameType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsa__ServiceNameType(struct soap*, const char *, int, struct wsa__ServiceNameType *const*, const char *); -SOAP_FMAC3 struct wsa__ServiceNameType ** SOAP_FMAC4 soap_in_PointerTowsa__ServiceNameType(struct soap*, const char*, struct wsa__ServiceNameType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsa__ServiceNameType(struct soap*, struct wsa__ServiceNameType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa__ServiceNameType ** SOAP_FMAC4 soap_get_PointerTowsa__ServiceNameType(struct soap*, struct wsa__ServiceNameType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTo_QName_DEFINED -#define SOAP_TYPE_PointerTo_QName_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_QName(struct soap*, char **const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_QName(struct soap*, const char *, int, char **const*, const char *); -SOAP_FMAC3 char *** SOAP_FMAC4 soap_in_PointerTo_QName(struct soap*, const char*, char ***, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_QName(struct soap*, char **const*, const char*, const char*); -SOAP_FMAC3 char *** SOAP_FMAC4 soap_get_PointerTo_QName(struct soap*, char ***, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsa__ReferenceParametersType_DEFINED -#define SOAP_TYPE_PointerTowsa__ReferenceParametersType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsa__ReferenceParametersType(struct soap*, struct wsa__ReferenceParametersType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsa__ReferenceParametersType(struct soap*, const char *, int, struct wsa__ReferenceParametersType *const*, const char *); -SOAP_FMAC3 struct wsa__ReferenceParametersType ** SOAP_FMAC4 soap_in_PointerTowsa__ReferenceParametersType(struct soap*, const char*, struct wsa__ReferenceParametersType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsa__ReferenceParametersType(struct soap*, struct wsa__ReferenceParametersType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa__ReferenceParametersType ** SOAP_FMAC4 soap_get_PointerTowsa__ReferenceParametersType(struct soap*, struct wsa__ReferenceParametersType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_PointerTowsa__ReferencePropertiesType_DEFINED -#define SOAP_TYPE_PointerTowsa__ReferencePropertiesType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowsa__ReferencePropertiesType(struct soap*, struct wsa__ReferencePropertiesType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowsa__ReferencePropertiesType(struct soap*, const char *, int, struct wsa__ReferencePropertiesType *const*, const char *); -SOAP_FMAC3 struct wsa__ReferencePropertiesType ** SOAP_FMAC4 soap_in_PointerTowsa__ReferencePropertiesType(struct soap*, const char*, struct wsa__ReferencePropertiesType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTowsa__ReferencePropertiesType(struct soap*, struct wsa__ReferencePropertiesType *const*, const char*, const char*); -SOAP_FMAC3 struct wsa__ReferencePropertiesType ** SOAP_FMAC4 soap_get_PointerTowsa__ReferencePropertiesType(struct soap*, struct wsa__ReferencePropertiesType **, 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 - -#ifndef SOAP_TYPE_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(struct soap*, std::vector<_wstop__TopicNamespaceType_Topic> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(struct soap*, const std::vector<_wstop__TopicNamespaceType_Topic> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(struct soap*, const char*, int, const std::vector<_wstop__TopicNamespaceType_Topic> *, const char*); -SOAP_FMAC3 std::vector<_wstop__TopicNamespaceType_Topic> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(struct soap*, const char*, std::vector<_wstop__TopicNamespaceType_Topic> *, const char*); -SOAP_FMAC1 std::vector<_wstop__TopicNamespaceType_Topic> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_wstop__TopicNamespaceType_Topic> * soap_new_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_wstop__TopicNamespaceType_Topic(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTowstop__TopicType_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTowstop__TopicType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTowstop__TopicType(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTowstop__TopicType(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTowstop__TopicType(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTowstop__TopicType(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTowstop__TopicType(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTowstop__TopicType(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTowstop__TopicType(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfxsd__QName_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfxsd__QName_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfxsd__QName(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfxsd__QName(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfxsd__QName(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfxsd__QName(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfxsd__QName(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfxsd__QName(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfxsd__QName(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__MediaAttributes_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__MediaAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__MediaAttributes(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__MediaAttributes(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__MediaAttributes(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__MediaAttributes(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__MediaAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__MediaAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__MediaAttributes(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__GetRecordingJobsResponseItem(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__GetRecordingsResponseItem(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Receiver_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Receiver_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Receiver(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Receiver(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Receiver(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Receiver(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Receiver(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Receiver(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Receiver(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PresetTour_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PresetTour_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PresetTour(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PresetTour(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PresetTour(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PresetTour(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PresetTour(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PresetTour(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PresetTour(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPreset_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PTZPreset(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PTZPreset(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PTZPreset(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PTZPreset(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PTZPreset(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PTZPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PTZPreset(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PTZConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PTZConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PTZConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PTZConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PTZConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PTZConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PTZConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZNode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PTZNode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PTZNode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PTZNode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PTZNode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PTZNode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PTZNode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PTZNode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__OSDConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__OSDConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__OSDConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__OSDConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__OSDConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__OSDConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__OSDConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__OSDConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__OSDConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTotrt__VideoSourceMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTotrt__VideoSourceMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTotrt__VideoSourceMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTotrt__VideoSourceMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTotrt__VideoSourceMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTotrt__VideoSourceMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTotrt__VideoSourceMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTotrt__VideoSourceMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTotrt__VideoSourceMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioDecoderConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutputConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutputConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioOutputConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__MetadataConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__MetadataConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__MetadataConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__MetadataConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__MetadataConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__MetadataConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__MetadataConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__MetadataConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__MetadataConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__VideoAnalyticsConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSourceConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioSourceConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioEncoderConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSourceConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSourceConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__VideoSourceConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__VideoEncoderConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Profile_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Profile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Profile(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Profile(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Profile(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Profile(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Profile(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Profile(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Profile(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutput_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioOutput(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioOutput(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioOutput(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioOutput(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioOutput(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioOutput(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioOutput(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSource_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioSource(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioSource(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioSource(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioSource(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioSource(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioSource(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSource_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__VideoSource(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__VideoSource(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__VideoSource(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__VideoSource(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__VideoSource(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__VideoSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__VideoSource(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTotimg__ImagingPreset_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTotimg__ImagingPreset_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTotimg__ImagingPreset(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTotimg__ImagingPreset(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTotimg__ImagingPreset(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTotimg__ImagingPreset(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTotimg__ImagingPreset(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTotimg__ImagingPreset(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTotimg__ImagingPreset(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PaneConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PaneConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PaneConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PaneConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PaneConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PaneConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PaneConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__LocationEntity_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__LocationEntity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__LocationEntity(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__LocationEntity(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__LocationEntity(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__LocationEntity(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__LocationEntity(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__LocationEntity(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__LocationEntity(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTotds__StorageConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTotds__StorageConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTotds__StorageConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTotds__StorageConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTotds__StorageConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTotds__StorageConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTotds__StorageConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTotds__StorageConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTotds__StorageConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Dot11AvailableNetworks(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__RelayOutput_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__RelayOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__RelayOutput(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__RelayOutput(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__RelayOutput(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__RelayOutput(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__RelayOutput(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__RelayOutput(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__RelayOutput(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot1XConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot1XConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Dot1XConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Dot1XConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Dot1XConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Dot1XConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Dot1XConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Dot1XConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Dot1XConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__CertificateWithPrivateKey(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateStatus_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__CertificateStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__CertificateStatus(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__CertificateStatus(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__CertificateStatus(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__CertificateStatus(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__CertificateStatus(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__CertificateStatus(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__CertificateStatus(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Certificate_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Certificate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Certificate(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Certificate(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Certificate(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Certificate(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Certificate(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Certificate(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Certificate(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkProtocol_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkProtocol_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__NetworkProtocol(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__NetworkProtocol(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__NetworkProtocol(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__NetworkProtocol(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__NetworkProtocol(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__NetworkProtocol(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__NetworkProtocol(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkInterface_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkInterface_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__NetworkInterface(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__NetworkInterface(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__NetworkInterface(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__NetworkInterface(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__NetworkInterface(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__NetworkInterface(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__NetworkInterface(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__CapabilityCategory_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__CapabilityCategory_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__CapabilityCategory(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__CapabilityCategory(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__CapabilityCategory(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__CapabilityCategory(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__CapabilityCategory(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__CapabilityCategory(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__CapabilityCategory(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__User_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__User_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__User(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__User(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__User(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__User(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__User(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__User(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__User(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Scope_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Scope_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Scope(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Scope(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Scope(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Scope(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Scope(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Scope(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Scope(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__BackupFile_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__BackupFile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__BackupFile(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__BackupFile(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__BackupFile(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__BackupFile(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__BackupFile(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__BackupFile(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__BackupFile(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTotds__Service_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTotds__Service_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTotds__Service(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTotds__Service(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTotds__Service(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTotds__Service(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTotds__Service(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTotds__Service(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTotds__Service(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTotmd__SerialPort_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTotmd__SerialPort_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTotmd__SerialPort(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTotmd__SerialPort(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTotmd__SerialPort(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTotmd__SerialPort(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTotmd__SerialPort(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTotmd__SerialPort(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTotmd__SerialPort(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__DigitalInput_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__DigitalInput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__DigitalInput(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__DigitalInput(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__DigitalInput(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__DigitalInput(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__DigitalInput(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__DigitalInput(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__DigitalInput(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoOutput_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__VideoOutput(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__VideoOutput(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__VideoOutput(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__VideoOutput(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__VideoOutput(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__VideoOutput(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__VideoOutput(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTotmd__RelayOutputOptions_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTotmd__RelayOutputOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTotmd__RelayOutputOptions(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftmd__ParityBit_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftmd__ParityBit_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftmd__ParityBit(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftmd__ParityBit(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftmd__ParityBit(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftmd__ParityBit(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftmd__ParityBit(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftmd__ParityBit(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftmd__ParityBit(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__DigitalIdleState_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__DigitalIdleState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__DigitalIdleState(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__DigitalIdleState(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__DigitalIdleState(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__DigitalIdleState(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__DigitalIdleState(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__DigitalIdleState(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__DigitalIdleState(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__RelayMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__RelayMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__RelayMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__RelayMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__RelayMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__RelayMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__RelayMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__RelayMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__RelayMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__FileProgress_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__FileProgress_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__FileProgress(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__FileProgress(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__FileProgress(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__FileProgress(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__FileProgress(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__FileProgress(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__FileProgress(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__OSDType_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__OSDType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__OSDType(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__OSDType(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__OSDType(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__OSDType(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__OSDType(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__OSDType(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__OSDType(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__ColorspaceRange_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__ColorspaceRange_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__ColorspaceRange(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__ColorspaceRange(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__ColorspaceRange(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Color_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Color_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Color(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Color(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Color(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Color(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Color(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Color(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Color(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__ActiveConnection_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__ActiveConnection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__ActiveConnection(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__ActiveConnection(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__ActiveConnection(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__ActiveConnection(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__ActiveConnection(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__ActiveConnection(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__ActiveConnection(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioClassCandidate_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioClassCandidate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioClassCandidate(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioClassCandidate(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioClassCandidate(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioClassCandidate(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioClassCandidate(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioClassCandidate(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioClassCandidate(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__EngineConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__EngineConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__EngineConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__EngineConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__EngineConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__EngineConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__EngineConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__EngineConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__EngineConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateTrack_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobStateTrack(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateSource_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobStateSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__RecordingJobStateSource(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobStateSource(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__RecordingJobStateSource(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__RecordingJobStateSource(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobStateSource(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__RecordingJobStateSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobStateSource(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobTrack_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobTrack_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__RecordingJobTrack(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobTrack(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__RecordingJobTrack(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__RecordingJobTrack(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobTrack(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__RecordingJobTrack(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobTrack(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobSource_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingJobSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__RecordingJobSource(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__RecordingJobSource(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__RecordingJobSource(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__RecordingJobSource(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobSource(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__RecordingJobSource(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__RecordingJobSource(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__GetTracksResponseItem_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__GetTracksResponseItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__GetTracksResponseItem(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__GetTracksResponseItem(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__GetTracksResponseItem(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__GetTracksResponseItem(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__GetTracksResponseItem(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__GetTracksResponseItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__GetTracksResponseItem(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackAttributes_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackAttributes_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__TrackAttributes(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__TrackAttributes(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__TrackAttributes(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__TrackAttributes(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__TrackAttributes(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__TrackAttributes(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__TrackAttributes(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackInformation_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__TrackInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__TrackInformation(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__TrackInformation(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__TrackInformation(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__TrackInformation(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__TrackInformation(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__TrackInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__TrackInformation(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__FindMetadataResult_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__FindMetadataResult_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__FindMetadataResult(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__FindMetadataResult(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__FindMetadataResult(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__FindMetadataResult(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__FindMetadataResult(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__FindMetadataResult(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__FindMetadataResult(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__FindPTZPositionResult_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__FindPTZPositionResult_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__FindPTZPositionResult(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__FindPTZPositionResult(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__FindPTZPositionResult(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__FindPTZPositionResult(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__FindPTZPositionResult(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__FindPTZPositionResult(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__FindPTZPositionResult(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__FindEventResult_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__FindEventResult_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__FindEventResult(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__FindEventResult(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__FindEventResult(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__FindEventResult(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__FindEventResult(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__FindEventResult(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__FindEventResult(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingInformation_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__RecordingInformation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__RecordingInformation(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__RecordingInformation(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__RecordingInformation(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__RecordingInformation(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__RecordingInformation(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__RecordingInformation(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__RecordingInformation(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__RecordingReference_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__RecordingReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__RecordingReference(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__RecordingReference(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__RecordingReference(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__RecordingReference(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__RecordingReference(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__RecordingReference(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__RecordingReference(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__SourceReference_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__SourceReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__SourceReference(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__SourceReference(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__SourceReference(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__SourceReference(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__SourceReference(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__SourceReference(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__SourceReference(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Rectangle_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Rectangle_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Rectangle(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Rectangle(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Rectangle(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Rectangle(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Rectangle(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Rectangle(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Rectangle(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayoutOptions_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayoutOptions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PaneLayoutOptions(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PaneLayoutOptions(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PaneLayoutOptions(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PaneLayoutOptions(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PaneLayoutOptions(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PaneLayoutOptions(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PaneLayoutOptions(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayout_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PaneLayout_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PaneLayout(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PaneLayout(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PaneLayout(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PaneLayout(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PaneLayout(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PaneLayout(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PaneLayout(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Polyline_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Polyline_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Polyline(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Polyline(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Polyline(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Polyline(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Polyline(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Polyline(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Polyline(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__ConfigDescription_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__ConfigDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__ConfigDescription(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__ConfigDescription(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__ConfigDescription(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__ConfigDescription(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__ConfigDescription(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__ConfigDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__ConfigDescription(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOf_tt__ConfigDescription_Messages_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_tt__ConfigDescription_Messages_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_tt__ConfigDescription_Messages(struct soap*, std::vector<_tt__ConfigDescription_Messages> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_tt__ConfigDescription_Messages(struct soap*, const std::vector<_tt__ConfigDescription_Messages> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_tt__ConfigDescription_Messages(struct soap*, const char*, int, const std::vector<_tt__ConfigDescription_Messages> *, const char*); -SOAP_FMAC3 std::vector<_tt__ConfigDescription_Messages> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_tt__ConfigDescription_Messages(struct soap*, const char*, std::vector<_tt__ConfigDescription_Messages> *, const char*); -SOAP_FMAC1 std::vector<_tt__ConfigDescription_Messages> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_tt__ConfigDescription_Messages(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_tt__ConfigDescription_Messages> * soap_new_std__vectorTemplateOf_tt__ConfigDescription_Messages(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_tt__ConfigDescription_Messages(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Config_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Config_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Config(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Config(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Config(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Config(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Config(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Config(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Config(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(struct soap*, std::vector<_tt__ItemListDescription_ElementItemDescription> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(struct soap*, const std::vector<_tt__ItemListDescription_ElementItemDescription> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(struct soap*, const char*, int, const std::vector<_tt__ItemListDescription_ElementItemDescription> *, const char*); -SOAP_FMAC3 std::vector<_tt__ItemListDescription_ElementItemDescription> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(struct soap*, const char*, std::vector<_tt__ItemListDescription_ElementItemDescription> *, const char*); -SOAP_FMAC1 std::vector<_tt__ItemListDescription_ElementItemDescription> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_tt__ItemListDescription_ElementItemDescription> * soap_new_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_tt__ItemListDescription_ElementItemDescription(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(struct soap*, std::vector<_tt__ItemListDescription_SimpleItemDescription> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(struct soap*, const std::vector<_tt__ItemListDescription_SimpleItemDescription> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(struct soap*, const char*, int, const std::vector<_tt__ItemListDescription_SimpleItemDescription> *, const char*); -SOAP_FMAC3 std::vector<_tt__ItemListDescription_SimpleItemDescription> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(struct soap*, const char*, std::vector<_tt__ItemListDescription_SimpleItemDescription> *, const char*); -SOAP_FMAC1 std::vector<_tt__ItemListDescription_SimpleItemDescription> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_tt__ItemListDescription_SimpleItemDescription> * soap_new_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_tt__ItemListDescription_SimpleItemDescription(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_ElementItem_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_ElementItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_tt__ItemList_ElementItem(struct soap*, std::vector<_tt__ItemList_ElementItem> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_tt__ItemList_ElementItem(struct soap*, const std::vector<_tt__ItemList_ElementItem> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_tt__ItemList_ElementItem(struct soap*, const char*, int, const std::vector<_tt__ItemList_ElementItem> *, const char*); -SOAP_FMAC3 std::vector<_tt__ItemList_ElementItem> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_tt__ItemList_ElementItem(struct soap*, const char*, std::vector<_tt__ItemList_ElementItem> *, const char*); -SOAP_FMAC1 std::vector<_tt__ItemList_ElementItem> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_tt__ItemList_ElementItem(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_tt__ItemList_ElementItem> * soap_new_std__vectorTemplateOf_tt__ItemList_ElementItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_tt__ItemList_ElementItem(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_SimpleItem_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_tt__ItemList_SimpleItem_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_tt__ItemList_SimpleItem(struct soap*, std::vector<_tt__ItemList_SimpleItem> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_tt__ItemList_SimpleItem(struct soap*, const std::vector<_tt__ItemList_SimpleItem> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_tt__ItemList_SimpleItem(struct soap*, const char*, int, const std::vector<_tt__ItemList_SimpleItem> *, const char*); -SOAP_FMAC3 std::vector<_tt__ItemList_SimpleItem> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_tt__ItemList_SimpleItem(struct soap*, const char*, std::vector<_tt__ItemList_SimpleItem> *, const char*); -SOAP_FMAC1 std::vector<_tt__ItemList_SimpleItem> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_tt__ItemList_SimpleItem(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_tt__ItemList_SimpleItem> * soap_new_std__vectorTemplateOf_tt__ItemList_SimpleItem(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_tt__ItemList_SimpleItem(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__BacklightCompensationMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__BacklightCompensationMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__BacklightCompensationMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__BacklightCompensationMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__BacklightCompensationMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__BacklightCompensationMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__BacklightCompensationMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__BacklightCompensationMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__BacklightCompensationMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__ImageStabilizationMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__ImageStabilizationMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__ImageStabilizationMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__ImageStabilizationMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__ImageStabilizationMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__ImageStabilizationMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__ImageStabilizationMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__ImageStabilizationMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__ImageStabilizationMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__IrCutFilterAutoAdjustment(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__WhiteBalanceMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__WhiteBalanceMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__WhiteBalanceMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__WhiteBalanceMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__WhiteBalanceMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__WhiteBalanceMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__WhiteBalanceMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__WhiteBalanceMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__WhiteBalanceMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__ExposurePriority_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__ExposurePriority_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__ExposurePriority(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__ExposurePriority(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__ExposurePriority(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__ExposurePriority(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__ExposurePriority(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__ExposurePriority(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__ExposurePriority(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__ExposureMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__ExposureMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__ExposureMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__ExposureMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__ExposureMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__ExposureMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__ExposureMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__ExposureMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__ExposureMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__AutoFocusMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__AutoFocusMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__AutoFocusMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__AutoFocusMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__AutoFocusMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__AutoFocusMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__AutoFocusMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__AutoFocusMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__AutoFocusMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__WideDynamicMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__WideDynamicMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__WideDynamicMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__WideDynamicMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__WideDynamicMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__WideDynamicMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__WideDynamicMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__WideDynamicMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__WideDynamicMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__IrCutFilterMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__IrCutFilterMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__IrCutFilterMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__IrCutFilterMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__IrCutFilterMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__IrCutFilterMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__IrCutFilterMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__IrCutFilterMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__IrCutFilterMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourDirection_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourDirection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__PTZPresetTourDirection(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__PTZPresetTourDirection(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__PTZPresetTourDirection(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__PTZPresetTourDirection(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__PTZPresetTourDirection(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__PTZPresetTourDirection(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__PTZPresetTourDirection(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPresetTourSpot_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PTZPresetTourSpot_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PTZPresetTourSpot(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Space1DDescription_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Space1DDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Space1DDescription(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Space1DDescription(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Space1DDescription(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Space1DDescription(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Space1DDescription(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Space1DDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Space1DDescription(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Space2DDescription_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Space2DDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Space2DDescription(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Space2DDescription(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Space2DDescription(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Space2DDescription(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Space2DDescription(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Space2DDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Space2DDescription(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__ReverseMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__ReverseMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__ReverseMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__ReverseMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__ReverseMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__ReverseMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__ReverseMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__ReverseMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__ReverseMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__EFlipMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__EFlipMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__EFlipMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__EFlipMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__EFlipMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__EFlipMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__EFlipMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__EFlipMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__EFlipMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourOperation_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__PTZPresetTourOperation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__PTZPresetTourOperation(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__PTZPresetTourOperation(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__PTZPresetTourOperation(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__PTZPresetTourOperation(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__PTZPresetTourOperation(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__PTZPresetTourOperation(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__PTZPresetTourOperation(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__SystemLogUri_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__SystemLogUri_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__SystemLogUri(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__SystemLogUri(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__SystemLogUri(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__SystemLogUri(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__SystemLogUri(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__SystemLogUri(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__SystemLogUri(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__OnvifVersion_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__OnvifVersion_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__OnvifVersion(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__OnvifVersion(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__OnvifVersion(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__OnvifVersion(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__OnvifVersion(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__OnvifVersion(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__OnvifVersion(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__AuxiliaryData_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__AuxiliaryData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__AuxiliaryData(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__AuxiliaryData(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__AuxiliaryData(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__AuxiliaryData(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__AuxiliaryData(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__AuxiliaryData(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__AuxiliaryData(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__Dot11Cipher_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__Dot11Cipher_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__Dot11Cipher(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__Dot11Cipher(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__Dot11Cipher(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__Dot11Cipher(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__Dot11Cipher(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__Dot11Cipher(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__Dot11Cipher(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__Dot11AuthAndMangementSuite_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__Dot11AuthAndMangementSuite_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__Dot11AuthAndMangementSuite(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__NetworkZeroConfiguration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__IPv6Address_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__IPv6Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__IPv6Address(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__IPv6Address(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__IPv6Address(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__IPv6Address(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__IPv6Address(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__IPv6Address(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__IPv6Address(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__IPv4Address_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__IPv4Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__IPv4Address(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__IPv4Address(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__IPv4Address(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__IPv4Address(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__IPv4Address(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__IPv4Address(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__IPv4Address(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkHost_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__NetworkHost_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__NetworkHost(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__NetworkHost(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__NetworkHost(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__NetworkHost(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__NetworkHost(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__NetworkHost(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__NetworkHost(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__IPAddress_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__IPAddress_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__IPAddress(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__IPAddress(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__IPAddress(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__IPAddress(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__IPAddress(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__IPAddress(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__IPAddress(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfxsd__token_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfxsd__token_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfxsd__token(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfxsd__token(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfxsd__token(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfxsd__token(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfxsd__token(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfxsd__token(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfxsd__token(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv6Address_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv6Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PrefixedIPv6Address(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv4Address_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__PrefixedIPv4Address_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__PrefixedIPv4Address(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11Configuration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot11Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Dot11Configuration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Dot11Configuration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Dot11Configuration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Dot11Configuration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Dot11Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Dot11Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Dot11Configuration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot3Configuration_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Dot3Configuration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Dot3Configuration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Dot3Configuration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Dot3Configuration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Dot3Configuration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Dot3Configuration(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Dot3Configuration(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Dot3Configuration(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfstd__string_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfstd__string_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfstd__string(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfstd__string(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfstd__string(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfstd__string(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfstd__string(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfstd__string(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfstd__string(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__AudioEncoderConfigurationOption(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution2_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__VideoResolution2(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution2(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__VideoResolution2(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__VideoResolution2(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__VideoResolution2(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__VideoResolution2(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__VideoResolution2(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__H264Profile_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__H264Profile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__H264Profile(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__H264Profile(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__H264Profile(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__H264Profile(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__H264Profile(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__H264Profile(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__H264Profile(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__Mpeg4Profile_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__Mpeg4Profile_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__Mpeg4Profile(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__Mpeg4Profile(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__Mpeg4Profile(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__Mpeg4Profile(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__Mpeg4Profile(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__Mpeg4Profile(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__Mpeg4Profile(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__VideoResolution_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__VideoResolution(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__VideoResolution(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__VideoResolution(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__VideoResolution(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__VideoResolution(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__VideoResolution(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__VideoResolution(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__RotateMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__RotateMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__RotateMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__RotateMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__RotateMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__RotateMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__RotateMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__RotateMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__RotateMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__SceneOrientationMode_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__SceneOrientationMode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__SceneOrientationMode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__SceneOrientationMode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__SceneOrientationMode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__SceneOrientationMode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__SceneOrientationMode(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__SceneOrientationMode(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__SceneOrientationMode(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOftt__ReferenceToken_DEFINED -#define SOAP_TYPE_std__vectorTemplateOftt__ReferenceToken_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOftt__ReferenceToken(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOftt__ReferenceToken(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOftt__ReferenceToken(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOftt__ReferenceToken(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOftt__ReferenceToken(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOftt__ReferenceToken(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOftt__ReferenceToken(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__LensProjection_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__LensProjection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__LensProjection(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__LensProjection(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__LensProjection(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__LensProjection(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__LensProjection(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__LensProjection(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__LensProjection(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__LensDescription_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__LensDescription_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__LensDescription(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__LensDescription(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__LensDescription(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__LensDescription(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__LensDescription(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__LensDescription(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__LensDescription(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOffloat_DEFINED -#define SOAP_TYPE_std__vectorTemplateOffloat_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOffloat(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOffloat(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOffloat(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOffloat(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOffloat(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOffloat(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOffloat(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfint_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfint_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfint(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfint(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfint(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfint(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfint(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfint(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfint(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(struct soap*, std::vector<_tt__ColorDescriptor_ColorCluster> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(struct soap*, const std::vector<_tt__ColorDescriptor_ColorCluster> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(struct soap*, const char*, int, const std::vector<_tt__ColorDescriptor_ColorCluster> *, const char*); -SOAP_FMAC3 std::vector<_tt__ColorDescriptor_ColorCluster> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(struct soap*, const char*, std::vector<_tt__ColorDescriptor_ColorCluster> *, const char*); -SOAP_FMAC1 std::vector<_tt__ColorDescriptor_ColorCluster> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_tt__ColorDescriptor_ColorCluster> * soap_new_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_tt__ColorDescriptor_ColorCluster(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTott__Vector_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTott__Vector_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTott__Vector(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTott__Vector(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTott__Vector(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTott__Vector(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTott__Vector(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTott__Vector(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTott__Vector(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description_DEFINED -#define SOAP_TYPE_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(struct soap*, std::vector<_wsrfbf__BaseFaultType_Description> *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(struct soap*, const std::vector<_wsrfbf__BaseFaultType_Description> *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(struct soap*, const char*, int, const std::vector<_wsrfbf__BaseFaultType_Description> *, const char*); -SOAP_FMAC3 std::vector<_wsrfbf__BaseFaultType_Description> * SOAP_FMAC4 soap_in_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(struct soap*, const char*, std::vector<_wsrfbf__BaseFaultType_Description> *, const char*); -SOAP_FMAC1 std::vector<_wsrfbf__BaseFaultType_Description> * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector<_wsrfbf__BaseFaultType_Description> * soap_new_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOf_wsrfbf__BaseFaultType_Description(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTowsnt__NotificationMessageHolderType(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfxsd__anyURI_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfxsd__anyURI_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfxsd__anyURI(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfxsd__anyURI(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfxsd__anyURI(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfxsd__anyURI(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfxsd__anyURI(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfxsd__anyURI(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfxsd__anyURI(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__TopicExpressionType_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfPointerTowsnt__TopicExpressionType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfPointerTowsnt__TopicExpressionType(soap, n, NULL, NULL, NULL); -} -#endif - -#ifndef SOAP_TYPE_std__vectorTemplateOfxsd__anyType_DEFINED -#define SOAP_TYPE_std__vectorTemplateOfxsd__anyType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfxsd__anyType(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfxsd__anyType(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfxsd__anyType(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfxsd__anyType(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfxsd__anyType(struct soap*, int, const char*, const char*, size_t*); - -inline std::vector * soap_new_std__vectorTemplateOfxsd__anyType(struct soap *soap, int n = -1) -{ - return soap_instantiate_std__vectorTemplateOfxsd__anyType(soap, n, NULL, NULL, NULL); -} -#endif - -#endif - -/* End of soapH.h */ diff --git a/gen/soapImagingBindingService.cpp b/gen/soapImagingBindingService.cpp deleted file mode 100644 index a663653..0000000 --- a/gen/soapImagingBindingService.cpp +++ /dev/null @@ -1,785 +0,0 @@ -/* soapImagingBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapImagingBindingService.h" - -ImagingBindingService::ImagingBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - ImagingBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -ImagingBindingService::ImagingBindingService(const ImagingBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -ImagingBindingService::ImagingBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - ImagingBindingService_init(_soap->imode, _soap->omode); -} - -ImagingBindingService::ImagingBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - ImagingBindingService_init(iomode, iomode); -} - -ImagingBindingService::ImagingBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - ImagingBindingService_init(imode, omode); -} - -ImagingBindingService::~ImagingBindingService() -{ if (this->soap_own) - { ImagingBindingService::destroy(); - soap_free(this->soap); - } -} - -void ImagingBindingService::ImagingBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void ImagingBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void ImagingBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - ImagingBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -ImagingBindingService *ImagingBindingService::copy() -{ ImagingBindingService *dup = SOAP_NEW_UNMANAGED(ImagingBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -ImagingBindingService& ImagingBindingService::operator=(const ImagingBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int ImagingBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int ImagingBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int ImagingBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int ImagingBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int ImagingBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int ImagingBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void ImagingBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void ImagingBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *ImagingBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void ImagingBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void ImagingBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *ImagingBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int ImagingBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int ImagingBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET ImagingBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET ImagingBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int ImagingBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int ImagingBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___timg__GetServiceCapabilities(struct soap*, ImagingBindingService*); -static int serve___timg__GetImagingSettings(struct soap*, ImagingBindingService*); -static int serve___timg__SetImagingSettings(struct soap*, ImagingBindingService*); -static int serve___timg__GetOptions(struct soap*, ImagingBindingService*); -static int serve___timg__Move(struct soap*, ImagingBindingService*); -static int serve___timg__Stop(struct soap*, ImagingBindingService*); -static int serve___timg__GetStatus(struct soap*, ImagingBindingService*); -static int serve___timg__GetMoveOptions(struct soap*, ImagingBindingService*); -static int serve___timg__GetPresets(struct soap*, ImagingBindingService*); -static int serve___timg__GetCurrentPreset(struct soap*, ImagingBindingService*); -static int serve___timg__SetCurrentPreset(struct soap*, ImagingBindingService*); - -int ImagingBindingService::dispatch() -{ return dispatch(this->soap); -} - -int ImagingBindingService::dispatch(struct soap* soap) -{ - ImagingBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "timg:GetServiceCapabilities")) - return serve___timg__GetServiceCapabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:GetImagingSettings")) - return serve___timg__GetImagingSettings(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:SetImagingSettings")) - return serve___timg__SetImagingSettings(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:GetOptions")) - return serve___timg__GetOptions(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:Move")) - return serve___timg__Move(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:Stop")) - return serve___timg__Stop(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:GetStatus")) - return serve___timg__GetStatus(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:GetMoveOptions")) - return serve___timg__GetMoveOptions(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:GetPresets")) - return serve___timg__GetPresets(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:GetCurrentPreset")) - return serve___timg__GetCurrentPreset(soap, this); - if (!soap_match_tag(soap, soap->tag, "timg:SetCurrentPreset")) - return serve___timg__SetCurrentPreset(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___timg__GetServiceCapabilities(struct soap *soap, ImagingBindingService *service) -{ struct __timg__GetServiceCapabilities soap_tmp___timg__GetServiceCapabilities; - _timg__GetServiceCapabilitiesResponse timg__GetServiceCapabilitiesResponse; - timg__GetServiceCapabilitiesResponse.soap_default(soap); - soap_default___timg__GetServiceCapabilities(soap, &soap_tmp___timg__GetServiceCapabilities); - if (!soap_get___timg__GetServiceCapabilities(soap, &soap_tmp___timg__GetServiceCapabilities, "-timg:GetServiceCapabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetServiceCapabilities(soap_tmp___timg__GetServiceCapabilities.timg__GetServiceCapabilities, timg__GetServiceCapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__GetServiceCapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetServiceCapabilitiesResponse.soap_put(soap, "timg:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetServiceCapabilitiesResponse.soap_put(soap, "timg:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__GetImagingSettings(struct soap *soap, ImagingBindingService *service) -{ struct __timg__GetImagingSettings soap_tmp___timg__GetImagingSettings; - _timg__GetImagingSettingsResponse timg__GetImagingSettingsResponse; - timg__GetImagingSettingsResponse.soap_default(soap); - soap_default___timg__GetImagingSettings(soap, &soap_tmp___timg__GetImagingSettings); - if (!soap_get___timg__GetImagingSettings(soap, &soap_tmp___timg__GetImagingSettings, "-timg:GetImagingSettings", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetImagingSettings(soap_tmp___timg__GetImagingSettings.timg__GetImagingSettings, timg__GetImagingSettingsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__GetImagingSettingsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetImagingSettingsResponse.soap_put(soap, "timg:GetImagingSettingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetImagingSettingsResponse.soap_put(soap, "timg:GetImagingSettingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__SetImagingSettings(struct soap *soap, ImagingBindingService *service) -{ struct __timg__SetImagingSettings soap_tmp___timg__SetImagingSettings; - _timg__SetImagingSettingsResponse timg__SetImagingSettingsResponse; - timg__SetImagingSettingsResponse.soap_default(soap); - soap_default___timg__SetImagingSettings(soap, &soap_tmp___timg__SetImagingSettings); - if (!soap_get___timg__SetImagingSettings(soap, &soap_tmp___timg__SetImagingSettings, "-timg:SetImagingSettings", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetImagingSettings(soap_tmp___timg__SetImagingSettings.timg__SetImagingSettings, timg__SetImagingSettingsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__SetImagingSettingsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__SetImagingSettingsResponse.soap_put(soap, "timg:SetImagingSettingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__SetImagingSettingsResponse.soap_put(soap, "timg:SetImagingSettingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__GetOptions(struct soap *soap, ImagingBindingService *service) -{ struct __timg__GetOptions soap_tmp___timg__GetOptions; - _timg__GetOptionsResponse timg__GetOptionsResponse; - timg__GetOptionsResponse.soap_default(soap); - soap_default___timg__GetOptions(soap, &soap_tmp___timg__GetOptions); - if (!soap_get___timg__GetOptions(soap, &soap_tmp___timg__GetOptions, "-timg:GetOptions", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetOptions(soap_tmp___timg__GetOptions.timg__GetOptions, timg__GetOptionsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__GetOptionsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetOptionsResponse.soap_put(soap, "timg:GetOptionsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetOptionsResponse.soap_put(soap, "timg:GetOptionsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__Move(struct soap *soap, ImagingBindingService *service) -{ struct __timg__Move soap_tmp___timg__Move; - _timg__MoveResponse timg__MoveResponse; - timg__MoveResponse.soap_default(soap); - soap_default___timg__Move(soap, &soap_tmp___timg__Move); - if (!soap_get___timg__Move(soap, &soap_tmp___timg__Move, "-timg:Move", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->Move(soap_tmp___timg__Move.timg__Move, timg__MoveResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__MoveResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__MoveResponse.soap_put(soap, "timg:MoveResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__MoveResponse.soap_put(soap, "timg:MoveResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__Stop(struct soap *soap, ImagingBindingService *service) -{ struct __timg__Stop soap_tmp___timg__Stop; - _timg__StopResponse timg__StopResponse; - timg__StopResponse.soap_default(soap); - soap_default___timg__Stop(soap, &soap_tmp___timg__Stop); - if (!soap_get___timg__Stop(soap, &soap_tmp___timg__Stop, "-timg:Stop", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->Stop(soap_tmp___timg__Stop.timg__Stop, timg__StopResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__StopResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__StopResponse.soap_put(soap, "timg:StopResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__StopResponse.soap_put(soap, "timg:StopResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__GetStatus(struct soap *soap, ImagingBindingService *service) -{ struct __timg__GetStatus soap_tmp___timg__GetStatus; - _timg__GetStatusResponse timg__GetStatusResponse; - timg__GetStatusResponse.soap_default(soap); - soap_default___timg__GetStatus(soap, &soap_tmp___timg__GetStatus); - if (!soap_get___timg__GetStatus(soap, &soap_tmp___timg__GetStatus, "-timg:GetStatus", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetStatus(soap_tmp___timg__GetStatus.timg__GetStatus, timg__GetStatusResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__GetStatusResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetStatusResponse.soap_put(soap, "timg:GetStatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetStatusResponse.soap_put(soap, "timg:GetStatusResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__GetMoveOptions(struct soap *soap, ImagingBindingService *service) -{ struct __timg__GetMoveOptions soap_tmp___timg__GetMoveOptions; - _timg__GetMoveOptionsResponse timg__GetMoveOptionsResponse; - timg__GetMoveOptionsResponse.soap_default(soap); - soap_default___timg__GetMoveOptions(soap, &soap_tmp___timg__GetMoveOptions); - if (!soap_get___timg__GetMoveOptions(soap, &soap_tmp___timg__GetMoveOptions, "-timg:GetMoveOptions", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetMoveOptions(soap_tmp___timg__GetMoveOptions.timg__GetMoveOptions, timg__GetMoveOptionsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__GetMoveOptionsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetMoveOptionsResponse.soap_put(soap, "timg:GetMoveOptionsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetMoveOptionsResponse.soap_put(soap, "timg:GetMoveOptionsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__GetPresets(struct soap *soap, ImagingBindingService *service) -{ struct __timg__GetPresets soap_tmp___timg__GetPresets; - _timg__GetPresetsResponse timg__GetPresetsResponse; - timg__GetPresetsResponse.soap_default(soap); - soap_default___timg__GetPresets(soap, &soap_tmp___timg__GetPresets); - if (!soap_get___timg__GetPresets(soap, &soap_tmp___timg__GetPresets, "-timg:GetPresets", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetPresets(soap_tmp___timg__GetPresets.timg__GetPresets, timg__GetPresetsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__GetPresetsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetPresetsResponse.soap_put(soap, "timg:GetPresetsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetPresetsResponse.soap_put(soap, "timg:GetPresetsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__GetCurrentPreset(struct soap *soap, ImagingBindingService *service) -{ struct __timg__GetCurrentPreset soap_tmp___timg__GetCurrentPreset; - _timg__GetCurrentPresetResponse timg__GetCurrentPresetResponse; - timg__GetCurrentPresetResponse.soap_default(soap); - soap_default___timg__GetCurrentPreset(soap, &soap_tmp___timg__GetCurrentPreset); - if (!soap_get___timg__GetCurrentPreset(soap, &soap_tmp___timg__GetCurrentPreset, "-timg:GetCurrentPreset", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetCurrentPreset(soap_tmp___timg__GetCurrentPreset.timg__GetCurrentPreset, timg__GetCurrentPresetResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__GetCurrentPresetResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetCurrentPresetResponse.soap_put(soap, "timg:GetCurrentPresetResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__GetCurrentPresetResponse.soap_put(soap, "timg:GetCurrentPresetResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___timg__SetCurrentPreset(struct soap *soap, ImagingBindingService *service) -{ struct __timg__SetCurrentPreset soap_tmp___timg__SetCurrentPreset; - _timg__SetCurrentPresetResponse timg__SetCurrentPresetResponse; - timg__SetCurrentPresetResponse.soap_default(soap); - soap_default___timg__SetCurrentPreset(soap, &soap_tmp___timg__SetCurrentPreset); - if (!soap_get___timg__SetCurrentPreset(soap, &soap_tmp___timg__SetCurrentPreset, "-timg:SetCurrentPreset", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetCurrentPreset(soap_tmp___timg__SetCurrentPreset.timg__SetCurrentPreset, timg__SetCurrentPresetResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - timg__SetCurrentPresetResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__SetCurrentPresetResponse.soap_put(soap, "timg:SetCurrentPresetResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || timg__SetCurrentPresetResponse.soap_put(soap, "timg:SetCurrentPresetResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapImagingBindingService.h b/gen/soapImagingBindingService.h deleted file mode 100644 index 77c998b..0000000 --- a/gen/soapImagingBindingService.h +++ /dev/null @@ -1,133 +0,0 @@ -/* soapImagingBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapImagingBindingService_H -#define soapImagingBindingService_H -#include "soapH.h" - - class SOAP_CMAC ImagingBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - ImagingBindingService(); - /// Copy constructor - ImagingBindingService(const ImagingBindingService&); - /// Construct service given a shared managing context - ImagingBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - ImagingBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - ImagingBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~ImagingBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void ImagingBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual ImagingBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - ImagingBindingService& operator=(const ImagingBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_timg__GetServiceCapabilities *timg__GetServiceCapabilities, _timg__GetServiceCapabilitiesResponse &timg__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetImagingSettings' implementation, should return SOAP_OK or error code - virtual int GetImagingSettings(_timg__GetImagingSettings *timg__GetImagingSettings, _timg__GetImagingSettingsResponse &timg__GetImagingSettingsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetImagingSettings' implementation, should return SOAP_OK or error code - virtual int SetImagingSettings(_timg__SetImagingSettings *timg__SetImagingSettings, _timg__SetImagingSettingsResponse &timg__SetImagingSettingsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetOptions' implementation, should return SOAP_OK or error code - virtual int GetOptions(_timg__GetOptions *timg__GetOptions, _timg__GetOptionsResponse &timg__GetOptionsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'Move' implementation, should return SOAP_OK or error code - virtual int Move(_timg__Move *timg__Move, _timg__MoveResponse &timg__MoveResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'Stop' implementation, should return SOAP_OK or error code - virtual int Stop(_timg__Stop *timg__Stop, _timg__StopResponse &timg__StopResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetStatus' implementation, should return SOAP_OK or error code - virtual int GetStatus(_timg__GetStatus *timg__GetStatus, _timg__GetStatusResponse &timg__GetStatusResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetMoveOptions' implementation, should return SOAP_OK or error code - virtual int GetMoveOptions(_timg__GetMoveOptions *timg__GetMoveOptions, _timg__GetMoveOptionsResponse &timg__GetMoveOptionsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPresets' implementation, should return SOAP_OK or error code - virtual int GetPresets(_timg__GetPresets *timg__GetPresets, _timg__GetPresetsResponse &timg__GetPresetsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCurrentPreset' implementation, should return SOAP_OK or error code - virtual int GetCurrentPreset(_timg__GetCurrentPreset *timg__GetCurrentPreset, _timg__GetCurrentPresetResponse &timg__GetCurrentPresetResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetCurrentPreset' implementation, should return SOAP_OK or error code - virtual int SetCurrentPreset(_timg__SetCurrentPreset *timg__SetCurrentPreset, _timg__SetCurrentPresetResponse &timg__SetCurrentPresetResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapImagingBindingService.o b/gen/soapImagingBindingService.o deleted file mode 100644 index 7b4d8ab..0000000 Binary files a/gen/soapImagingBindingService.o and /dev/null differ diff --git a/gen/soapMediaBindingProxy.cpp b/gen/soapMediaBindingProxy.cpp deleted file mode 100644 index a559c52..0000000 --- a/gen/soapMediaBindingProxy.cpp +++ /dev/null @@ -1,4651 +0,0 @@ -/* soapMediaBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapMediaBindingProxy.h" - -MediaBindingProxy::MediaBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - MediaBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -MediaBindingProxy::MediaBindingProxy(const MediaBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -MediaBindingProxy::MediaBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - MediaBindingProxy_init(_soap->imode, _soap->omode); -} - -MediaBindingProxy::MediaBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - MediaBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -MediaBindingProxy::MediaBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - MediaBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -MediaBindingProxy::MediaBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - MediaBindingProxy_init(iomode, iomode); -} - -MediaBindingProxy::MediaBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - MediaBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -MediaBindingProxy::MediaBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - MediaBindingProxy_init(imode, omode); -} - -MediaBindingProxy::~MediaBindingProxy() -{ if (this->soap_own) - { MediaBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void MediaBindingProxy::MediaBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -MediaBindingProxy *MediaBindingProxy::copy() -{ MediaBindingProxy *dup = SOAP_NEW_UNMANAGED(MediaBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -MediaBindingProxy& MediaBindingProxy::operator=(const MediaBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void MediaBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void MediaBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - MediaBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void MediaBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void MediaBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *MediaBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *MediaBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *MediaBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *MediaBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *MediaBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int MediaBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int MediaBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void MediaBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void MediaBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *MediaBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int MediaBindingProxy::send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _trt__GetServiceCapabilities *trt__GetServiceCapabilities) -{ - struct __trt__GetServiceCapabilities soap_tmp___trt__GetServiceCapabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetServiceCapabilities"; - soap_tmp___trt__GetServiceCapabilities.trt__GetServiceCapabilities = trt__GetServiceCapabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetServiceCapabilities(soap, &soap_tmp___trt__GetServiceCapabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetServiceCapabilities(soap, &soap_tmp___trt__GetServiceCapabilities, "-trt:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetServiceCapabilities(soap, &soap_tmp___trt__GetServiceCapabilities, "-trt:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetServiceCapabilities(_trt__GetServiceCapabilitiesResponse &trt__GetServiceCapabilitiesResponse) -{ - trt__GetServiceCapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetServiceCapabilitiesResponse.soap_get(soap, "trt:GetServiceCapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoSources(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoSources *trt__GetVideoSources) -{ - struct __trt__GetVideoSources soap_tmp___trt__GetVideoSources; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdlGetVideoSources/"; - soap_tmp___trt__GetVideoSources.trt__GetVideoSources = trt__GetVideoSources; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoSources(soap, &soap_tmp___trt__GetVideoSources); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSources(soap, &soap_tmp___trt__GetVideoSources, "-trt:GetVideoSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSources(soap, &soap_tmp___trt__GetVideoSources, "-trt:GetVideoSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoSources(_trt__GetVideoSourcesResponse &trt__GetVideoSourcesResponse) -{ - trt__GetVideoSourcesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoSourcesResponse.soap_get(soap, "trt:GetVideoSourcesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioSources(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioSources *trt__GetAudioSources) -{ - struct __trt__GetAudioSources soap_tmp___trt__GetAudioSources; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioSources"; - soap_tmp___trt__GetAudioSources.trt__GetAudioSources = trt__GetAudioSources; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioSources(soap, &soap_tmp___trt__GetAudioSources); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSources(soap, &soap_tmp___trt__GetAudioSources, "-trt:GetAudioSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSources(soap, &soap_tmp___trt__GetAudioSources, "-trt:GetAudioSources", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioSources(_trt__GetAudioSourcesResponse &trt__GetAudioSourcesResponse) -{ - trt__GetAudioSourcesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioSourcesResponse.soap_get(soap, "trt:GetAudioSourcesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioOutputs(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioOutputs *trt__GetAudioOutputs) -{ - struct __trt__GetAudioOutputs soap_tmp___trt__GetAudioOutputs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioOutputs"; - soap_tmp___trt__GetAudioOutputs.trt__GetAudioOutputs = trt__GetAudioOutputs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioOutputs(soap, &soap_tmp___trt__GetAudioOutputs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputs(soap, &soap_tmp___trt__GetAudioOutputs, "-trt:GetAudioOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputs(soap, &soap_tmp___trt__GetAudioOutputs, "-trt:GetAudioOutputs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioOutputs(_trt__GetAudioOutputsResponse &trt__GetAudioOutputsResponse) -{ - trt__GetAudioOutputsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioOutputsResponse.soap_get(soap, "trt:GetAudioOutputsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_CreateProfile(const char *soap_endpoint_url, const char *soap_action, _trt__CreateProfile *trt__CreateProfile) -{ - struct __trt__CreateProfile soap_tmp___trt__CreateProfile; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/CreateProfile"; - soap_tmp___trt__CreateProfile.trt__CreateProfile = trt__CreateProfile; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__CreateProfile(soap, &soap_tmp___trt__CreateProfile); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__CreateProfile(soap, &soap_tmp___trt__CreateProfile, "-trt:CreateProfile", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__CreateProfile(soap, &soap_tmp___trt__CreateProfile, "-trt:CreateProfile", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_CreateProfile(_trt__CreateProfileResponse &trt__CreateProfileResponse) -{ - trt__CreateProfileResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__CreateProfileResponse.soap_get(soap, "trt:CreateProfileResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetProfile(const char *soap_endpoint_url, const char *soap_action, _trt__GetProfile *trt__GetProfile) -{ - struct __trt__GetProfile soap_tmp___trt__GetProfile; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdlGetProfile/"; - soap_tmp___trt__GetProfile.trt__GetProfile = trt__GetProfile; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetProfile(soap, &soap_tmp___trt__GetProfile); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetProfile(soap, &soap_tmp___trt__GetProfile, "-trt:GetProfile", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetProfile(soap, &soap_tmp___trt__GetProfile, "-trt:GetProfile", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetProfile(_trt__GetProfileResponse &trt__GetProfileResponse) -{ - trt__GetProfileResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetProfileResponse.soap_get(soap, "trt:GetProfileResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetProfiles(const char *soap_endpoint_url, const char *soap_action, _trt__GetProfiles *trt__GetProfiles) -{ - struct __trt__GetProfiles soap_tmp___trt__GetProfiles; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetProfiles"; - soap_tmp___trt__GetProfiles.trt__GetProfiles = trt__GetProfiles; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetProfiles(soap, &soap_tmp___trt__GetProfiles); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetProfiles(soap, &soap_tmp___trt__GetProfiles, "-trt:GetProfiles", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetProfiles(soap, &soap_tmp___trt__GetProfiles, "-trt:GetProfiles", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetProfiles(_trt__GetProfilesResponse &trt__GetProfilesResponse) -{ - trt__GetProfilesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetProfilesResponse.soap_get(soap, "trt:GetProfilesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddVideoEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddVideoEncoderConfiguration *trt__AddVideoEncoderConfiguration) -{ - struct __trt__AddVideoEncoderConfiguration soap_tmp___trt__AddVideoEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddVideoEncoderConfiguration"; - soap_tmp___trt__AddVideoEncoderConfiguration.trt__AddVideoEncoderConfiguration = trt__AddVideoEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddVideoEncoderConfiguration(soap, &soap_tmp___trt__AddVideoEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddVideoEncoderConfiguration(soap, &soap_tmp___trt__AddVideoEncoderConfiguration, "-trt:AddVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddVideoEncoderConfiguration(soap, &soap_tmp___trt__AddVideoEncoderConfiguration, "-trt:AddVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddVideoEncoderConfiguration(_trt__AddVideoEncoderConfigurationResponse &trt__AddVideoEncoderConfigurationResponse) -{ - trt__AddVideoEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddVideoEncoderConfigurationResponse.soap_get(soap, "trt:AddVideoEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddVideoSourceConfiguration *trt__AddVideoSourceConfiguration) -{ - struct __trt__AddVideoSourceConfiguration soap_tmp___trt__AddVideoSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddVideoSourceConfiguration"; - soap_tmp___trt__AddVideoSourceConfiguration.trt__AddVideoSourceConfiguration = trt__AddVideoSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddVideoSourceConfiguration(soap, &soap_tmp___trt__AddVideoSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddVideoSourceConfiguration(soap, &soap_tmp___trt__AddVideoSourceConfiguration, "-trt:AddVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddVideoSourceConfiguration(soap, &soap_tmp___trt__AddVideoSourceConfiguration, "-trt:AddVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddVideoSourceConfiguration(_trt__AddVideoSourceConfigurationResponse &trt__AddVideoSourceConfigurationResponse) -{ - trt__AddVideoSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddVideoSourceConfigurationResponse.soap_get(soap, "trt:AddVideoSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddAudioEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddAudioEncoderConfiguration *trt__AddAudioEncoderConfiguration) -{ - struct __trt__AddAudioEncoderConfiguration soap_tmp___trt__AddAudioEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddAudioEncoderConfiguration"; - soap_tmp___trt__AddAudioEncoderConfiguration.trt__AddAudioEncoderConfiguration = trt__AddAudioEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddAudioEncoderConfiguration(soap, &soap_tmp___trt__AddAudioEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioEncoderConfiguration(soap, &soap_tmp___trt__AddAudioEncoderConfiguration, "-trt:AddAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioEncoderConfiguration(soap, &soap_tmp___trt__AddAudioEncoderConfiguration, "-trt:AddAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddAudioEncoderConfiguration(_trt__AddAudioEncoderConfigurationResponse &trt__AddAudioEncoderConfigurationResponse) -{ - trt__AddAudioEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddAudioEncoderConfigurationResponse.soap_get(soap, "trt:AddAudioEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddAudioSourceConfiguration *trt__AddAudioSourceConfiguration) -{ - struct __trt__AddAudioSourceConfiguration soap_tmp___trt__AddAudioSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddAudioSourceConfiguration"; - soap_tmp___trt__AddAudioSourceConfiguration.trt__AddAudioSourceConfiguration = trt__AddAudioSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddAudioSourceConfiguration(soap, &soap_tmp___trt__AddAudioSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioSourceConfiguration(soap, &soap_tmp___trt__AddAudioSourceConfiguration, "-trt:AddAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioSourceConfiguration(soap, &soap_tmp___trt__AddAudioSourceConfiguration, "-trt:AddAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddAudioSourceConfiguration(_trt__AddAudioSourceConfigurationResponse &trt__AddAudioSourceConfigurationResponse) -{ - trt__AddAudioSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddAudioSourceConfigurationResponse.soap_get(soap, "trt:AddAudioSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddPTZConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddPTZConfiguration *trt__AddPTZConfiguration) -{ - struct __trt__AddPTZConfiguration soap_tmp___trt__AddPTZConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddPTZConfiguration"; - soap_tmp___trt__AddPTZConfiguration.trt__AddPTZConfiguration = trt__AddPTZConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddPTZConfiguration(soap, &soap_tmp___trt__AddPTZConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddPTZConfiguration(soap, &soap_tmp___trt__AddPTZConfiguration, "-trt:AddPTZConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddPTZConfiguration(soap, &soap_tmp___trt__AddPTZConfiguration, "-trt:AddPTZConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddPTZConfiguration(_trt__AddPTZConfigurationResponse &trt__AddPTZConfigurationResponse) -{ - trt__AddPTZConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddPTZConfigurationResponse.soap_get(soap, "trt:AddPTZConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddVideoAnalyticsConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddVideoAnalyticsConfiguration *trt__AddVideoAnalyticsConfiguration) -{ - struct __trt__AddVideoAnalyticsConfiguration soap_tmp___trt__AddVideoAnalyticsConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddVideoAnalyticsConfiguration"; - soap_tmp___trt__AddVideoAnalyticsConfiguration.trt__AddVideoAnalyticsConfiguration = trt__AddVideoAnalyticsConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddVideoAnalyticsConfiguration(soap, &soap_tmp___trt__AddVideoAnalyticsConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddVideoAnalyticsConfiguration(soap, &soap_tmp___trt__AddVideoAnalyticsConfiguration, "-trt:AddVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddVideoAnalyticsConfiguration(soap, &soap_tmp___trt__AddVideoAnalyticsConfiguration, "-trt:AddVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddVideoAnalyticsConfiguration(_trt__AddVideoAnalyticsConfigurationResponse &trt__AddVideoAnalyticsConfigurationResponse) -{ - trt__AddVideoAnalyticsConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddVideoAnalyticsConfigurationResponse.soap_get(soap, "trt:AddVideoAnalyticsConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddMetadataConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddMetadataConfiguration *trt__AddMetadataConfiguration) -{ - struct __trt__AddMetadataConfiguration soap_tmp___trt__AddMetadataConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddMetadataConfiguration"; - soap_tmp___trt__AddMetadataConfiguration.trt__AddMetadataConfiguration = trt__AddMetadataConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddMetadataConfiguration(soap, &soap_tmp___trt__AddMetadataConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddMetadataConfiguration(soap, &soap_tmp___trt__AddMetadataConfiguration, "-trt:AddMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddMetadataConfiguration(soap, &soap_tmp___trt__AddMetadataConfiguration, "-trt:AddMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddMetadataConfiguration(_trt__AddMetadataConfigurationResponse &trt__AddMetadataConfigurationResponse) -{ - trt__AddMetadataConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddMetadataConfigurationResponse.soap_get(soap, "trt:AddMetadataConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddAudioOutputConfiguration *trt__AddAudioOutputConfiguration) -{ - struct __trt__AddAudioOutputConfiguration soap_tmp___trt__AddAudioOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddAudioOutputConfiguration"; - soap_tmp___trt__AddAudioOutputConfiguration.trt__AddAudioOutputConfiguration = trt__AddAudioOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddAudioOutputConfiguration(soap, &soap_tmp___trt__AddAudioOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioOutputConfiguration(soap, &soap_tmp___trt__AddAudioOutputConfiguration, "-trt:AddAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioOutputConfiguration(soap, &soap_tmp___trt__AddAudioOutputConfiguration, "-trt:AddAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddAudioOutputConfiguration(_trt__AddAudioOutputConfigurationResponse &trt__AddAudioOutputConfigurationResponse) -{ - trt__AddAudioOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddAudioOutputConfigurationResponse.soap_get(soap, "trt:AddAudioOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_AddAudioDecoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__AddAudioDecoderConfiguration *trt__AddAudioDecoderConfiguration) -{ - struct __trt__AddAudioDecoderConfiguration soap_tmp___trt__AddAudioDecoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/AddAudioDecoderConfiguration"; - soap_tmp___trt__AddAudioDecoderConfiguration.trt__AddAudioDecoderConfiguration = trt__AddAudioDecoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__AddAudioDecoderConfiguration(soap, &soap_tmp___trt__AddAudioDecoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioDecoderConfiguration(soap, &soap_tmp___trt__AddAudioDecoderConfiguration, "-trt:AddAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__AddAudioDecoderConfiguration(soap, &soap_tmp___trt__AddAudioDecoderConfiguration, "-trt:AddAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_AddAudioDecoderConfiguration(_trt__AddAudioDecoderConfigurationResponse &trt__AddAudioDecoderConfigurationResponse) -{ - trt__AddAudioDecoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__AddAudioDecoderConfigurationResponse.soap_get(soap, "trt:AddAudioDecoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveVideoEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveVideoEncoderConfiguration *trt__RemoveVideoEncoderConfiguration) -{ - struct __trt__RemoveVideoEncoderConfiguration soap_tmp___trt__RemoveVideoEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveVideoEncoderConfiguration"; - soap_tmp___trt__RemoveVideoEncoderConfiguration.trt__RemoveVideoEncoderConfiguration = trt__RemoveVideoEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveVideoEncoderConfiguration(soap, &soap_tmp___trt__RemoveVideoEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveVideoEncoderConfiguration(soap, &soap_tmp___trt__RemoveVideoEncoderConfiguration, "-trt:RemoveVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveVideoEncoderConfiguration(soap, &soap_tmp___trt__RemoveVideoEncoderConfiguration, "-trt:RemoveVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveVideoEncoderConfiguration(_trt__RemoveVideoEncoderConfigurationResponse &trt__RemoveVideoEncoderConfigurationResponse) -{ - trt__RemoveVideoEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveVideoEncoderConfigurationResponse.soap_get(soap, "trt:RemoveVideoEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveVideoSourceConfiguration *trt__RemoveVideoSourceConfiguration) -{ - struct __trt__RemoveVideoSourceConfiguration soap_tmp___trt__RemoveVideoSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveVideoSourceConfiguration"; - soap_tmp___trt__RemoveVideoSourceConfiguration.trt__RemoveVideoSourceConfiguration = trt__RemoveVideoSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveVideoSourceConfiguration(soap, &soap_tmp___trt__RemoveVideoSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveVideoSourceConfiguration(soap, &soap_tmp___trt__RemoveVideoSourceConfiguration, "-trt:RemoveVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveVideoSourceConfiguration(soap, &soap_tmp___trt__RemoveVideoSourceConfiguration, "-trt:RemoveVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveVideoSourceConfiguration(_trt__RemoveVideoSourceConfigurationResponse &trt__RemoveVideoSourceConfigurationResponse) -{ - trt__RemoveVideoSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveVideoSourceConfigurationResponse.soap_get(soap, "trt:RemoveVideoSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveAudioEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveAudioEncoderConfiguration *trt__RemoveAudioEncoderConfiguration) -{ - struct __trt__RemoveAudioEncoderConfiguration soap_tmp___trt__RemoveAudioEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveAudioEncoderConfiguration"; - soap_tmp___trt__RemoveAudioEncoderConfiguration.trt__RemoveAudioEncoderConfiguration = trt__RemoveAudioEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveAudioEncoderConfiguration(soap, &soap_tmp___trt__RemoveAudioEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioEncoderConfiguration(soap, &soap_tmp___trt__RemoveAudioEncoderConfiguration, "-trt:RemoveAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioEncoderConfiguration(soap, &soap_tmp___trt__RemoveAudioEncoderConfiguration, "-trt:RemoveAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveAudioEncoderConfiguration(_trt__RemoveAudioEncoderConfigurationResponse &trt__RemoveAudioEncoderConfigurationResponse) -{ - trt__RemoveAudioEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveAudioEncoderConfigurationResponse.soap_get(soap, "trt:RemoveAudioEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveAudioSourceConfiguration *trt__RemoveAudioSourceConfiguration) -{ - struct __trt__RemoveAudioSourceConfiguration soap_tmp___trt__RemoveAudioSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveAudioSourceConfiguration"; - soap_tmp___trt__RemoveAudioSourceConfiguration.trt__RemoveAudioSourceConfiguration = trt__RemoveAudioSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveAudioSourceConfiguration(soap, &soap_tmp___trt__RemoveAudioSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioSourceConfiguration(soap, &soap_tmp___trt__RemoveAudioSourceConfiguration, "-trt:RemoveAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioSourceConfiguration(soap, &soap_tmp___trt__RemoveAudioSourceConfiguration, "-trt:RemoveAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveAudioSourceConfiguration(_trt__RemoveAudioSourceConfigurationResponse &trt__RemoveAudioSourceConfigurationResponse) -{ - trt__RemoveAudioSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveAudioSourceConfigurationResponse.soap_get(soap, "trt:RemoveAudioSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemovePTZConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemovePTZConfiguration *trt__RemovePTZConfiguration) -{ - struct __trt__RemovePTZConfiguration soap_tmp___trt__RemovePTZConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemovePTZConfiguration"; - soap_tmp___trt__RemovePTZConfiguration.trt__RemovePTZConfiguration = trt__RemovePTZConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemovePTZConfiguration(soap, &soap_tmp___trt__RemovePTZConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemovePTZConfiguration(soap, &soap_tmp___trt__RemovePTZConfiguration, "-trt:RemovePTZConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemovePTZConfiguration(soap, &soap_tmp___trt__RemovePTZConfiguration, "-trt:RemovePTZConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemovePTZConfiguration(_trt__RemovePTZConfigurationResponse &trt__RemovePTZConfigurationResponse) -{ - trt__RemovePTZConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemovePTZConfigurationResponse.soap_get(soap, "trt:RemovePTZConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveVideoAnalyticsConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveVideoAnalyticsConfiguration *trt__RemoveVideoAnalyticsConfiguration) -{ - struct __trt__RemoveVideoAnalyticsConfiguration soap_tmp___trt__RemoveVideoAnalyticsConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveVideoAnalyticsConfiguration"; - soap_tmp___trt__RemoveVideoAnalyticsConfiguration.trt__RemoveVideoAnalyticsConfiguration = trt__RemoveVideoAnalyticsConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveVideoAnalyticsConfiguration(soap, &soap_tmp___trt__RemoveVideoAnalyticsConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveVideoAnalyticsConfiguration(soap, &soap_tmp___trt__RemoveVideoAnalyticsConfiguration, "-trt:RemoveVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveVideoAnalyticsConfiguration(soap, &soap_tmp___trt__RemoveVideoAnalyticsConfiguration, "-trt:RemoveVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveVideoAnalyticsConfiguration(_trt__RemoveVideoAnalyticsConfigurationResponse &trt__RemoveVideoAnalyticsConfigurationResponse) -{ - trt__RemoveVideoAnalyticsConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveVideoAnalyticsConfigurationResponse.soap_get(soap, "trt:RemoveVideoAnalyticsConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveMetadataConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveMetadataConfiguration *trt__RemoveMetadataConfiguration) -{ - struct __trt__RemoveMetadataConfiguration soap_tmp___trt__RemoveMetadataConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveMetadataConfiguration"; - soap_tmp___trt__RemoveMetadataConfiguration.trt__RemoveMetadataConfiguration = trt__RemoveMetadataConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveMetadataConfiguration(soap, &soap_tmp___trt__RemoveMetadataConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveMetadataConfiguration(soap, &soap_tmp___trt__RemoveMetadataConfiguration, "-trt:RemoveMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveMetadataConfiguration(soap, &soap_tmp___trt__RemoveMetadataConfiguration, "-trt:RemoveMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveMetadataConfiguration(_trt__RemoveMetadataConfigurationResponse &trt__RemoveMetadataConfigurationResponse) -{ - trt__RemoveMetadataConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveMetadataConfigurationResponse.soap_get(soap, "trt:RemoveMetadataConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveAudioOutputConfiguration *trt__RemoveAudioOutputConfiguration) -{ - struct __trt__RemoveAudioOutputConfiguration soap_tmp___trt__RemoveAudioOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveAudioOutputConfiguration"; - soap_tmp___trt__RemoveAudioOutputConfiguration.trt__RemoveAudioOutputConfiguration = trt__RemoveAudioOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveAudioOutputConfiguration(soap, &soap_tmp___trt__RemoveAudioOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioOutputConfiguration(soap, &soap_tmp___trt__RemoveAudioOutputConfiguration, "-trt:RemoveAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioOutputConfiguration(soap, &soap_tmp___trt__RemoveAudioOutputConfiguration, "-trt:RemoveAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveAudioOutputConfiguration(_trt__RemoveAudioOutputConfigurationResponse &trt__RemoveAudioOutputConfigurationResponse) -{ - trt__RemoveAudioOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveAudioOutputConfigurationResponse.soap_get(soap, "trt:RemoveAudioOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_RemoveAudioDecoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__RemoveAudioDecoderConfiguration *trt__RemoveAudioDecoderConfiguration) -{ - struct __trt__RemoveAudioDecoderConfiguration soap_tmp___trt__RemoveAudioDecoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/RemoveAudioDecoderConfiguration"; - soap_tmp___trt__RemoveAudioDecoderConfiguration.trt__RemoveAudioDecoderConfiguration = trt__RemoveAudioDecoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__RemoveAudioDecoderConfiguration(soap, &soap_tmp___trt__RemoveAudioDecoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioDecoderConfiguration(soap, &soap_tmp___trt__RemoveAudioDecoderConfiguration, "-trt:RemoveAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__RemoveAudioDecoderConfiguration(soap, &soap_tmp___trt__RemoveAudioDecoderConfiguration, "-trt:RemoveAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_RemoveAudioDecoderConfiguration(_trt__RemoveAudioDecoderConfigurationResponse &trt__RemoveAudioDecoderConfigurationResponse) -{ - trt__RemoveAudioDecoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__RemoveAudioDecoderConfigurationResponse.soap_get(soap, "trt:RemoveAudioDecoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_DeleteProfile(const char *soap_endpoint_url, const char *soap_action, _trt__DeleteProfile *trt__DeleteProfile) -{ - struct __trt__DeleteProfile soap_tmp___trt__DeleteProfile; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/DeleteProfile"; - soap_tmp___trt__DeleteProfile.trt__DeleteProfile = trt__DeleteProfile; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__DeleteProfile(soap, &soap_tmp___trt__DeleteProfile); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__DeleteProfile(soap, &soap_tmp___trt__DeleteProfile, "-trt:DeleteProfile", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__DeleteProfile(soap, &soap_tmp___trt__DeleteProfile, "-trt:DeleteProfile", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_DeleteProfile(_trt__DeleteProfileResponse &trt__DeleteProfileResponse) -{ - trt__DeleteProfileResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__DeleteProfileResponse.soap_get(soap, "trt:DeleteProfileResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoSourceConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoSourceConfigurations *trt__GetVideoSourceConfigurations) -{ - struct __trt__GetVideoSourceConfigurations soap_tmp___trt__GetVideoSourceConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoSourceConfigurations"; - soap_tmp___trt__GetVideoSourceConfigurations.trt__GetVideoSourceConfigurations = trt__GetVideoSourceConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoSourceConfigurations(soap, &soap_tmp___trt__GetVideoSourceConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceConfigurations(soap, &soap_tmp___trt__GetVideoSourceConfigurations, "-trt:GetVideoSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceConfigurations(soap, &soap_tmp___trt__GetVideoSourceConfigurations, "-trt:GetVideoSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoSourceConfigurations(_trt__GetVideoSourceConfigurationsResponse &trt__GetVideoSourceConfigurationsResponse) -{ - trt__GetVideoSourceConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoSourceConfigurationsResponse.soap_get(soap, "trt:GetVideoSourceConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoEncoderConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoEncoderConfigurations *trt__GetVideoEncoderConfigurations) -{ - struct __trt__GetVideoEncoderConfigurations soap_tmp___trt__GetVideoEncoderConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoEncoderConfigurations"; - soap_tmp___trt__GetVideoEncoderConfigurations.trt__GetVideoEncoderConfigurations = trt__GetVideoEncoderConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoEncoderConfigurations(soap, &soap_tmp___trt__GetVideoEncoderConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoEncoderConfigurations(soap, &soap_tmp___trt__GetVideoEncoderConfigurations, "-trt:GetVideoEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoEncoderConfigurations(soap, &soap_tmp___trt__GetVideoEncoderConfigurations, "-trt:GetVideoEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoEncoderConfigurations(_trt__GetVideoEncoderConfigurationsResponse &trt__GetVideoEncoderConfigurationsResponse) -{ - trt__GetVideoEncoderConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoEncoderConfigurationsResponse.soap_get(soap, "trt:GetVideoEncoderConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioSourceConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioSourceConfigurations *trt__GetAudioSourceConfigurations) -{ - struct __trt__GetAudioSourceConfigurations soap_tmp___trt__GetAudioSourceConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdlGetAudioSourceConfigurations/"; - soap_tmp___trt__GetAudioSourceConfigurations.trt__GetAudioSourceConfigurations = trt__GetAudioSourceConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioSourceConfigurations(soap, &soap_tmp___trt__GetAudioSourceConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSourceConfigurations(soap, &soap_tmp___trt__GetAudioSourceConfigurations, "-trt:GetAudioSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSourceConfigurations(soap, &soap_tmp___trt__GetAudioSourceConfigurations, "-trt:GetAudioSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioSourceConfigurations(_trt__GetAudioSourceConfigurationsResponse &trt__GetAudioSourceConfigurationsResponse) -{ - trt__GetAudioSourceConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioSourceConfigurationsResponse.soap_get(soap, "trt:GetAudioSourceConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioEncoderConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioEncoderConfigurations *trt__GetAudioEncoderConfigurations) -{ - struct __trt__GetAudioEncoderConfigurations soap_tmp___trt__GetAudioEncoderConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioEncoderConfigurations"; - soap_tmp___trt__GetAudioEncoderConfigurations.trt__GetAudioEncoderConfigurations = trt__GetAudioEncoderConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioEncoderConfigurations(soap, &soap_tmp___trt__GetAudioEncoderConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioEncoderConfigurations(soap, &soap_tmp___trt__GetAudioEncoderConfigurations, "-trt:GetAudioEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioEncoderConfigurations(soap, &soap_tmp___trt__GetAudioEncoderConfigurations, "-trt:GetAudioEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioEncoderConfigurations(_trt__GetAudioEncoderConfigurationsResponse &trt__GetAudioEncoderConfigurationsResponse) -{ - trt__GetAudioEncoderConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioEncoderConfigurationsResponse.soap_get(soap, "trt:GetAudioEncoderConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoAnalyticsConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoAnalyticsConfigurations *trt__GetVideoAnalyticsConfigurations) -{ - struct __trt__GetVideoAnalyticsConfigurations soap_tmp___trt__GetVideoAnalyticsConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoAnalyticsConfigurations"; - soap_tmp___trt__GetVideoAnalyticsConfigurations.trt__GetVideoAnalyticsConfigurations = trt__GetVideoAnalyticsConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoAnalyticsConfigurations(soap, &soap_tmp___trt__GetVideoAnalyticsConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoAnalyticsConfigurations(soap, &soap_tmp___trt__GetVideoAnalyticsConfigurations, "-trt:GetVideoAnalyticsConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoAnalyticsConfigurations(soap, &soap_tmp___trt__GetVideoAnalyticsConfigurations, "-trt:GetVideoAnalyticsConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoAnalyticsConfigurations(_trt__GetVideoAnalyticsConfigurationsResponse &trt__GetVideoAnalyticsConfigurationsResponse) -{ - trt__GetVideoAnalyticsConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoAnalyticsConfigurationsResponse.soap_get(soap, "trt:GetVideoAnalyticsConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetMetadataConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetMetadataConfigurations *trt__GetMetadataConfigurations) -{ - struct __trt__GetMetadataConfigurations soap_tmp___trt__GetMetadataConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetMetadataConfigurations"; - soap_tmp___trt__GetMetadataConfigurations.trt__GetMetadataConfigurations = trt__GetMetadataConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetMetadataConfigurations(soap, &soap_tmp___trt__GetMetadataConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetMetadataConfigurations(soap, &soap_tmp___trt__GetMetadataConfigurations, "-trt:GetMetadataConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetMetadataConfigurations(soap, &soap_tmp___trt__GetMetadataConfigurations, "-trt:GetMetadataConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetMetadataConfigurations(_trt__GetMetadataConfigurationsResponse &trt__GetMetadataConfigurationsResponse) -{ - trt__GetMetadataConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetMetadataConfigurationsResponse.soap_get(soap, "trt:GetMetadataConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioOutputConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioOutputConfigurations *trt__GetAudioOutputConfigurations) -{ - struct __trt__GetAudioOutputConfigurations soap_tmp___trt__GetAudioOutputConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioOutputConfigurations"; - soap_tmp___trt__GetAudioOutputConfigurations.trt__GetAudioOutputConfigurations = trt__GetAudioOutputConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioOutputConfigurations(soap, &soap_tmp___trt__GetAudioOutputConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputConfigurations(soap, &soap_tmp___trt__GetAudioOutputConfigurations, "-trt:GetAudioOutputConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputConfigurations(soap, &soap_tmp___trt__GetAudioOutputConfigurations, "-trt:GetAudioOutputConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioOutputConfigurations(_trt__GetAudioOutputConfigurationsResponse &trt__GetAudioOutputConfigurationsResponse) -{ - trt__GetAudioOutputConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioOutputConfigurationsResponse.soap_get(soap, "trt:GetAudioOutputConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioDecoderConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioDecoderConfigurations *trt__GetAudioDecoderConfigurations) -{ - struct __trt__GetAudioDecoderConfigurations soap_tmp___trt__GetAudioDecoderConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioDecoderConfigurations"; - soap_tmp___trt__GetAudioDecoderConfigurations.trt__GetAudioDecoderConfigurations = trt__GetAudioDecoderConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioDecoderConfigurations(soap, &soap_tmp___trt__GetAudioDecoderConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioDecoderConfigurations(soap, &soap_tmp___trt__GetAudioDecoderConfigurations, "-trt:GetAudioDecoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioDecoderConfigurations(soap, &soap_tmp___trt__GetAudioDecoderConfigurations, "-trt:GetAudioDecoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioDecoderConfigurations(_trt__GetAudioDecoderConfigurationsResponse &trt__GetAudioDecoderConfigurationsResponse) -{ - trt__GetAudioDecoderConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioDecoderConfigurationsResponse.soap_get(soap, "trt:GetAudioDecoderConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoSourceConfiguration *trt__GetVideoSourceConfiguration) -{ - struct __trt__GetVideoSourceConfiguration soap_tmp___trt__GetVideoSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoSourceConfiguration"; - soap_tmp___trt__GetVideoSourceConfiguration.trt__GetVideoSourceConfiguration = trt__GetVideoSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoSourceConfiguration(soap, &soap_tmp___trt__GetVideoSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceConfiguration(soap, &soap_tmp___trt__GetVideoSourceConfiguration, "-trt:GetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceConfiguration(soap, &soap_tmp___trt__GetVideoSourceConfiguration, "-trt:GetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoSourceConfiguration(_trt__GetVideoSourceConfigurationResponse &trt__GetVideoSourceConfigurationResponse) -{ - trt__GetVideoSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoSourceConfigurationResponse.soap_get(soap, "trt:GetVideoSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoEncoderConfiguration *trt__GetVideoEncoderConfiguration) -{ - struct __trt__GetVideoEncoderConfiguration soap_tmp___trt__GetVideoEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoEncoderConfiguration"; - soap_tmp___trt__GetVideoEncoderConfiguration.trt__GetVideoEncoderConfiguration = trt__GetVideoEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoEncoderConfiguration(soap, &soap_tmp___trt__GetVideoEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoEncoderConfiguration(soap, &soap_tmp___trt__GetVideoEncoderConfiguration, "-trt:GetVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoEncoderConfiguration(soap, &soap_tmp___trt__GetVideoEncoderConfiguration, "-trt:GetVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoEncoderConfiguration(_trt__GetVideoEncoderConfigurationResponse &trt__GetVideoEncoderConfigurationResponse) -{ - trt__GetVideoEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoEncoderConfigurationResponse.soap_get(soap, "trt:GetVideoEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioSourceConfiguration *trt__GetAudioSourceConfiguration) -{ - struct __trt__GetAudioSourceConfiguration soap_tmp___trt__GetAudioSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioSourceConfiguration"; - soap_tmp___trt__GetAudioSourceConfiguration.trt__GetAudioSourceConfiguration = trt__GetAudioSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioSourceConfiguration(soap, &soap_tmp___trt__GetAudioSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSourceConfiguration(soap, &soap_tmp___trt__GetAudioSourceConfiguration, "-trt:GetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSourceConfiguration(soap, &soap_tmp___trt__GetAudioSourceConfiguration, "-trt:GetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioSourceConfiguration(_trt__GetAudioSourceConfigurationResponse &trt__GetAudioSourceConfigurationResponse) -{ - trt__GetAudioSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioSourceConfigurationResponse.soap_get(soap, "trt:GetAudioSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioEncoderConfiguration *trt__GetAudioEncoderConfiguration) -{ - struct __trt__GetAudioEncoderConfiguration soap_tmp___trt__GetAudioEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioEncoderConfiguration"; - soap_tmp___trt__GetAudioEncoderConfiguration.trt__GetAudioEncoderConfiguration = trt__GetAudioEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioEncoderConfiguration(soap, &soap_tmp___trt__GetAudioEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioEncoderConfiguration(soap, &soap_tmp___trt__GetAudioEncoderConfiguration, "-trt:GetAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioEncoderConfiguration(soap, &soap_tmp___trt__GetAudioEncoderConfiguration, "-trt:GetAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioEncoderConfiguration(_trt__GetAudioEncoderConfigurationResponse &trt__GetAudioEncoderConfigurationResponse) -{ - trt__GetAudioEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioEncoderConfigurationResponse.soap_get(soap, "trt:GetAudioEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoAnalyticsConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoAnalyticsConfiguration *trt__GetVideoAnalyticsConfiguration) -{ - struct __trt__GetVideoAnalyticsConfiguration soap_tmp___trt__GetVideoAnalyticsConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoAnalyticsConfiguration"; - soap_tmp___trt__GetVideoAnalyticsConfiguration.trt__GetVideoAnalyticsConfiguration = trt__GetVideoAnalyticsConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoAnalyticsConfiguration(soap, &soap_tmp___trt__GetVideoAnalyticsConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoAnalyticsConfiguration(soap, &soap_tmp___trt__GetVideoAnalyticsConfiguration, "-trt:GetVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoAnalyticsConfiguration(soap, &soap_tmp___trt__GetVideoAnalyticsConfiguration, "-trt:GetVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoAnalyticsConfiguration(_trt__GetVideoAnalyticsConfigurationResponse &trt__GetVideoAnalyticsConfigurationResponse) -{ - trt__GetVideoAnalyticsConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoAnalyticsConfigurationResponse.soap_get(soap, "trt:GetVideoAnalyticsConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetMetadataConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetMetadataConfiguration *trt__GetMetadataConfiguration) -{ - struct __trt__GetMetadataConfiguration soap_tmp___trt__GetMetadataConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetMetadataConfiguration"; - soap_tmp___trt__GetMetadataConfiguration.trt__GetMetadataConfiguration = trt__GetMetadataConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetMetadataConfiguration(soap, &soap_tmp___trt__GetMetadataConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetMetadataConfiguration(soap, &soap_tmp___trt__GetMetadataConfiguration, "-trt:GetMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetMetadataConfiguration(soap, &soap_tmp___trt__GetMetadataConfiguration, "-trt:GetMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetMetadataConfiguration(_trt__GetMetadataConfigurationResponse &trt__GetMetadataConfigurationResponse) -{ - trt__GetMetadataConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetMetadataConfigurationResponse.soap_get(soap, "trt:GetMetadataConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioOutputConfiguration *trt__GetAudioOutputConfiguration) -{ - struct __trt__GetAudioOutputConfiguration soap_tmp___trt__GetAudioOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioOutputConfiguration"; - soap_tmp___trt__GetAudioOutputConfiguration.trt__GetAudioOutputConfiguration = trt__GetAudioOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioOutputConfiguration(soap, &soap_tmp___trt__GetAudioOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputConfiguration(soap, &soap_tmp___trt__GetAudioOutputConfiguration, "-trt:GetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputConfiguration(soap, &soap_tmp___trt__GetAudioOutputConfiguration, "-trt:GetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioOutputConfiguration(_trt__GetAudioOutputConfigurationResponse &trt__GetAudioOutputConfigurationResponse) -{ - trt__GetAudioOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioOutputConfigurationResponse.soap_get(soap, "trt:GetAudioOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioDecoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioDecoderConfiguration *trt__GetAudioDecoderConfiguration) -{ - struct __trt__GetAudioDecoderConfiguration soap_tmp___trt__GetAudioDecoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioDecoderConfiguration"; - soap_tmp___trt__GetAudioDecoderConfiguration.trt__GetAudioDecoderConfiguration = trt__GetAudioDecoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioDecoderConfiguration(soap, &soap_tmp___trt__GetAudioDecoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioDecoderConfiguration(soap, &soap_tmp___trt__GetAudioDecoderConfiguration, "-trt:GetAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioDecoderConfiguration(soap, &soap_tmp___trt__GetAudioDecoderConfiguration, "-trt:GetAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioDecoderConfiguration(_trt__GetAudioDecoderConfigurationResponse &trt__GetAudioDecoderConfigurationResponse) -{ - trt__GetAudioDecoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioDecoderConfigurationResponse.soap_get(soap, "trt:GetAudioDecoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleVideoEncoderConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleVideoEncoderConfigurations *trt__GetCompatibleVideoEncoderConfigurations) -{ - struct __trt__GetCompatibleVideoEncoderConfigurations soap_tmp___trt__GetCompatibleVideoEncoderConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleVideoEncoderConfigurations"; - soap_tmp___trt__GetCompatibleVideoEncoderConfigurations.trt__GetCompatibleVideoEncoderConfigurations = trt__GetCompatibleVideoEncoderConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleVideoEncoderConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoEncoderConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleVideoEncoderConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoEncoderConfigurations, "-trt:GetCompatibleVideoEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleVideoEncoderConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoEncoderConfigurations, "-trt:GetCompatibleVideoEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleVideoEncoderConfigurations(_trt__GetCompatibleVideoEncoderConfigurationsResponse &trt__GetCompatibleVideoEncoderConfigurationsResponse) -{ - trt__GetCompatibleVideoEncoderConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleVideoEncoderConfigurationsResponse.soap_get(soap, "trt:GetCompatibleVideoEncoderConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleVideoSourceConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleVideoSourceConfigurations *trt__GetCompatibleVideoSourceConfigurations) -{ - struct __trt__GetCompatibleVideoSourceConfigurations soap_tmp___trt__GetCompatibleVideoSourceConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleVideoSourceConfigurations"; - soap_tmp___trt__GetCompatibleVideoSourceConfigurations.trt__GetCompatibleVideoSourceConfigurations = trt__GetCompatibleVideoSourceConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleVideoSourceConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoSourceConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleVideoSourceConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoSourceConfigurations, "-trt:GetCompatibleVideoSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleVideoSourceConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoSourceConfigurations, "-trt:GetCompatibleVideoSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleVideoSourceConfigurations(_trt__GetCompatibleVideoSourceConfigurationsResponse &trt__GetCompatibleVideoSourceConfigurationsResponse) -{ - trt__GetCompatibleVideoSourceConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleVideoSourceConfigurationsResponse.soap_get(soap, "trt:GetCompatibleVideoSourceConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleAudioEncoderConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleAudioEncoderConfigurations *trt__GetCompatibleAudioEncoderConfigurations) -{ - struct __trt__GetCompatibleAudioEncoderConfigurations soap_tmp___trt__GetCompatibleAudioEncoderConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioEncoderConfigurations"; - soap_tmp___trt__GetCompatibleAudioEncoderConfigurations.trt__GetCompatibleAudioEncoderConfigurations = trt__GetCompatibleAudioEncoderConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleAudioEncoderConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioEncoderConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioEncoderConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioEncoderConfigurations, "-trt:GetCompatibleAudioEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioEncoderConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioEncoderConfigurations, "-trt:GetCompatibleAudioEncoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleAudioEncoderConfigurations(_trt__GetCompatibleAudioEncoderConfigurationsResponse &trt__GetCompatibleAudioEncoderConfigurationsResponse) -{ - trt__GetCompatibleAudioEncoderConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleAudioEncoderConfigurationsResponse.soap_get(soap, "trt:GetCompatibleAudioEncoderConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleAudioSourceConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleAudioSourceConfigurations *trt__GetCompatibleAudioSourceConfigurations) -{ - struct __trt__GetCompatibleAudioSourceConfigurations soap_tmp___trt__GetCompatibleAudioSourceConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioSourceConfigurations"; - soap_tmp___trt__GetCompatibleAudioSourceConfigurations.trt__GetCompatibleAudioSourceConfigurations = trt__GetCompatibleAudioSourceConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleAudioSourceConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioSourceConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioSourceConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioSourceConfigurations, "-trt:GetCompatibleAudioSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioSourceConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioSourceConfigurations, "-trt:GetCompatibleAudioSourceConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleAudioSourceConfigurations(_trt__GetCompatibleAudioSourceConfigurationsResponse &trt__GetCompatibleAudioSourceConfigurationsResponse) -{ - trt__GetCompatibleAudioSourceConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleAudioSourceConfigurationsResponse.soap_get(soap, "trt:GetCompatibleAudioSourceConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleVideoAnalyticsConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleVideoAnalyticsConfigurations *trt__GetCompatibleVideoAnalyticsConfigurations) -{ - struct __trt__GetCompatibleVideoAnalyticsConfigurations soap_tmp___trt__GetCompatibleVideoAnalyticsConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleVideoAnalyticsConfigurations"; - soap_tmp___trt__GetCompatibleVideoAnalyticsConfigurations.trt__GetCompatibleVideoAnalyticsConfigurations = trt__GetCompatibleVideoAnalyticsConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleVideoAnalyticsConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoAnalyticsConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoAnalyticsConfigurations, "-trt:GetCompatibleVideoAnalyticsConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleVideoAnalyticsConfigurations(soap, &soap_tmp___trt__GetCompatibleVideoAnalyticsConfigurations, "-trt:GetCompatibleVideoAnalyticsConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleVideoAnalyticsConfigurations(_trt__GetCompatibleVideoAnalyticsConfigurationsResponse &trt__GetCompatibleVideoAnalyticsConfigurationsResponse) -{ - trt__GetCompatibleVideoAnalyticsConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleVideoAnalyticsConfigurationsResponse.soap_get(soap, "trt:GetCompatibleVideoAnalyticsConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleMetadataConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleMetadataConfigurations *trt__GetCompatibleMetadataConfigurations) -{ - struct __trt__GetCompatibleMetadataConfigurations soap_tmp___trt__GetCompatibleMetadataConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleMetadataConfigurations"; - soap_tmp___trt__GetCompatibleMetadataConfigurations.trt__GetCompatibleMetadataConfigurations = trt__GetCompatibleMetadataConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleMetadataConfigurations(soap, &soap_tmp___trt__GetCompatibleMetadataConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleMetadataConfigurations(soap, &soap_tmp___trt__GetCompatibleMetadataConfigurations, "-trt:GetCompatibleMetadataConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleMetadataConfigurations(soap, &soap_tmp___trt__GetCompatibleMetadataConfigurations, "-trt:GetCompatibleMetadataConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleMetadataConfigurations(_trt__GetCompatibleMetadataConfigurationsResponse &trt__GetCompatibleMetadataConfigurationsResponse) -{ - trt__GetCompatibleMetadataConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleMetadataConfigurationsResponse.soap_get(soap, "trt:GetCompatibleMetadataConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleAudioOutputConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleAudioOutputConfigurations *trt__GetCompatibleAudioOutputConfigurations) -{ - struct __trt__GetCompatibleAudioOutputConfigurations soap_tmp___trt__GetCompatibleAudioOutputConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioOutputConfigurations"; - soap_tmp___trt__GetCompatibleAudioOutputConfigurations.trt__GetCompatibleAudioOutputConfigurations = trt__GetCompatibleAudioOutputConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleAudioOutputConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioOutputConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioOutputConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioOutputConfigurations, "-trt:GetCompatibleAudioOutputConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioOutputConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioOutputConfigurations, "-trt:GetCompatibleAudioOutputConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleAudioOutputConfigurations(_trt__GetCompatibleAudioOutputConfigurationsResponse &trt__GetCompatibleAudioOutputConfigurationsResponse) -{ - trt__GetCompatibleAudioOutputConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleAudioOutputConfigurationsResponse.soap_get(soap, "trt:GetCompatibleAudioOutputConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetCompatibleAudioDecoderConfigurations(const char *soap_endpoint_url, const char *soap_action, _trt__GetCompatibleAudioDecoderConfigurations *trt__GetCompatibleAudioDecoderConfigurations) -{ - struct __trt__GetCompatibleAudioDecoderConfigurations soap_tmp___trt__GetCompatibleAudioDecoderConfigurations; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetCompatibleAudioDecoderConfigurations"; - soap_tmp___trt__GetCompatibleAudioDecoderConfigurations.trt__GetCompatibleAudioDecoderConfigurations = trt__GetCompatibleAudioDecoderConfigurations; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetCompatibleAudioDecoderConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioDecoderConfigurations); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioDecoderConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioDecoderConfigurations, "-trt:GetCompatibleAudioDecoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetCompatibleAudioDecoderConfigurations(soap, &soap_tmp___trt__GetCompatibleAudioDecoderConfigurations, "-trt:GetCompatibleAudioDecoderConfigurations", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetCompatibleAudioDecoderConfigurations(_trt__GetCompatibleAudioDecoderConfigurationsResponse &trt__GetCompatibleAudioDecoderConfigurationsResponse) -{ - trt__GetCompatibleAudioDecoderConfigurationsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetCompatibleAudioDecoderConfigurationsResponse.soap_get(soap, "trt:GetCompatibleAudioDecoderConfigurationsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetVideoSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetVideoSourceConfiguration *trt__SetVideoSourceConfiguration) -{ - struct __trt__SetVideoSourceConfiguration soap_tmp___trt__SetVideoSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetVideoSourceConfiguration"; - soap_tmp___trt__SetVideoSourceConfiguration.trt__SetVideoSourceConfiguration = trt__SetVideoSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetVideoSourceConfiguration(soap, &soap_tmp___trt__SetVideoSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoSourceConfiguration(soap, &soap_tmp___trt__SetVideoSourceConfiguration, "-trt:SetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoSourceConfiguration(soap, &soap_tmp___trt__SetVideoSourceConfiguration, "-trt:SetVideoSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetVideoSourceConfiguration(_trt__SetVideoSourceConfigurationResponse &trt__SetVideoSourceConfigurationResponse) -{ - trt__SetVideoSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetVideoSourceConfigurationResponse.soap_get(soap, "trt:SetVideoSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetVideoEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetVideoEncoderConfiguration *trt__SetVideoEncoderConfiguration) -{ - struct __trt__SetVideoEncoderConfiguration soap_tmp___trt__SetVideoEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetVideoEncoderConfiguration"; - soap_tmp___trt__SetVideoEncoderConfiguration.trt__SetVideoEncoderConfiguration = trt__SetVideoEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetVideoEncoderConfiguration(soap, &soap_tmp___trt__SetVideoEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoEncoderConfiguration(soap, &soap_tmp___trt__SetVideoEncoderConfiguration, "-trt:SetVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoEncoderConfiguration(soap, &soap_tmp___trt__SetVideoEncoderConfiguration, "-trt:SetVideoEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetVideoEncoderConfiguration(_trt__SetVideoEncoderConfigurationResponse &trt__SetVideoEncoderConfigurationResponse) -{ - trt__SetVideoEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetVideoEncoderConfigurationResponse.soap_get(soap, "trt:SetVideoEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetAudioSourceConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetAudioSourceConfiguration *trt__SetAudioSourceConfiguration) -{ - struct __trt__SetAudioSourceConfiguration soap_tmp___trt__SetAudioSourceConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetAudioSourceConfiguration"; - soap_tmp___trt__SetAudioSourceConfiguration.trt__SetAudioSourceConfiguration = trt__SetAudioSourceConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetAudioSourceConfiguration(soap, &soap_tmp___trt__SetAudioSourceConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioSourceConfiguration(soap, &soap_tmp___trt__SetAudioSourceConfiguration, "-trt:SetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioSourceConfiguration(soap, &soap_tmp___trt__SetAudioSourceConfiguration, "-trt:SetAudioSourceConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetAudioSourceConfiguration(_trt__SetAudioSourceConfigurationResponse &trt__SetAudioSourceConfigurationResponse) -{ - trt__SetAudioSourceConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetAudioSourceConfigurationResponse.soap_get(soap, "trt:SetAudioSourceConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetAudioEncoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetAudioEncoderConfiguration *trt__SetAudioEncoderConfiguration) -{ - struct __trt__SetAudioEncoderConfiguration soap_tmp___trt__SetAudioEncoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetAudioEncoderConfiguration"; - soap_tmp___trt__SetAudioEncoderConfiguration.trt__SetAudioEncoderConfiguration = trt__SetAudioEncoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetAudioEncoderConfiguration(soap, &soap_tmp___trt__SetAudioEncoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioEncoderConfiguration(soap, &soap_tmp___trt__SetAudioEncoderConfiguration, "-trt:SetAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioEncoderConfiguration(soap, &soap_tmp___trt__SetAudioEncoderConfiguration, "-trt:SetAudioEncoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetAudioEncoderConfiguration(_trt__SetAudioEncoderConfigurationResponse &trt__SetAudioEncoderConfigurationResponse) -{ - trt__SetAudioEncoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetAudioEncoderConfigurationResponse.soap_get(soap, "trt:SetAudioEncoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetVideoAnalyticsConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetVideoAnalyticsConfiguration *trt__SetVideoAnalyticsConfiguration) -{ - struct __trt__SetVideoAnalyticsConfiguration soap_tmp___trt__SetVideoAnalyticsConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetVideoAnalyticsConfiguration"; - soap_tmp___trt__SetVideoAnalyticsConfiguration.trt__SetVideoAnalyticsConfiguration = trt__SetVideoAnalyticsConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetVideoAnalyticsConfiguration(soap, &soap_tmp___trt__SetVideoAnalyticsConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoAnalyticsConfiguration(soap, &soap_tmp___trt__SetVideoAnalyticsConfiguration, "-trt:SetVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoAnalyticsConfiguration(soap, &soap_tmp___trt__SetVideoAnalyticsConfiguration, "-trt:SetVideoAnalyticsConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetVideoAnalyticsConfiguration(_trt__SetVideoAnalyticsConfigurationResponse &trt__SetVideoAnalyticsConfigurationResponse) -{ - trt__SetVideoAnalyticsConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetVideoAnalyticsConfigurationResponse.soap_get(soap, "trt:SetVideoAnalyticsConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetMetadataConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetMetadataConfiguration *trt__SetMetadataConfiguration) -{ - struct __trt__SetMetadataConfiguration soap_tmp___trt__SetMetadataConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetMetadataConfiguration"; - soap_tmp___trt__SetMetadataConfiguration.trt__SetMetadataConfiguration = trt__SetMetadataConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetMetadataConfiguration(soap, &soap_tmp___trt__SetMetadataConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetMetadataConfiguration(soap, &soap_tmp___trt__SetMetadataConfiguration, "-trt:SetMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetMetadataConfiguration(soap, &soap_tmp___trt__SetMetadataConfiguration, "-trt:SetMetadataConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetMetadataConfiguration(_trt__SetMetadataConfigurationResponse &trt__SetMetadataConfigurationResponse) -{ - trt__SetMetadataConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetMetadataConfigurationResponse.soap_get(soap, "trt:SetMetadataConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetAudioOutputConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetAudioOutputConfiguration *trt__SetAudioOutputConfiguration) -{ - struct __trt__SetAudioOutputConfiguration soap_tmp___trt__SetAudioOutputConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetAudioOutputConfiguration"; - soap_tmp___trt__SetAudioOutputConfiguration.trt__SetAudioOutputConfiguration = trt__SetAudioOutputConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetAudioOutputConfiguration(soap, &soap_tmp___trt__SetAudioOutputConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioOutputConfiguration(soap, &soap_tmp___trt__SetAudioOutputConfiguration, "-trt:SetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioOutputConfiguration(soap, &soap_tmp___trt__SetAudioOutputConfiguration, "-trt:SetAudioOutputConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetAudioOutputConfiguration(_trt__SetAudioOutputConfigurationResponse &trt__SetAudioOutputConfigurationResponse) -{ - trt__SetAudioOutputConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetAudioOutputConfigurationResponse.soap_get(soap, "trt:SetAudioOutputConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetAudioDecoderConfiguration(const char *soap_endpoint_url, const char *soap_action, _trt__SetAudioDecoderConfiguration *trt__SetAudioDecoderConfiguration) -{ - struct __trt__SetAudioDecoderConfiguration soap_tmp___trt__SetAudioDecoderConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetAudioDecoderConfiguration"; - soap_tmp___trt__SetAudioDecoderConfiguration.trt__SetAudioDecoderConfiguration = trt__SetAudioDecoderConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetAudioDecoderConfiguration(soap, &soap_tmp___trt__SetAudioDecoderConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioDecoderConfiguration(soap, &soap_tmp___trt__SetAudioDecoderConfiguration, "-trt:SetAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetAudioDecoderConfiguration(soap, &soap_tmp___trt__SetAudioDecoderConfiguration, "-trt:SetAudioDecoderConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetAudioDecoderConfiguration(_trt__SetAudioDecoderConfigurationResponse &trt__SetAudioDecoderConfigurationResponse) -{ - trt__SetAudioDecoderConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetAudioDecoderConfigurationResponse.soap_get(soap, "trt:SetAudioDecoderConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoSourceConfigurationOptions *trt__GetVideoSourceConfigurationOptions) -{ - struct __trt__GetVideoSourceConfigurationOptions soap_tmp___trt__GetVideoSourceConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdlGetVideoSourceConfigurationOptions/"; - soap_tmp___trt__GetVideoSourceConfigurationOptions.trt__GetVideoSourceConfigurationOptions = trt__GetVideoSourceConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoSourceConfigurationOptions(soap, &soap_tmp___trt__GetVideoSourceConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceConfigurationOptions(soap, &soap_tmp___trt__GetVideoSourceConfigurationOptions, "-trt:GetVideoSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceConfigurationOptions(soap, &soap_tmp___trt__GetVideoSourceConfigurationOptions, "-trt:GetVideoSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoSourceConfigurationOptions(_trt__GetVideoSourceConfigurationOptionsResponse &trt__GetVideoSourceConfigurationOptionsResponse) -{ - trt__GetVideoSourceConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoSourceConfigurationOptionsResponse.soap_get(soap, "trt:GetVideoSourceConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoEncoderConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoEncoderConfigurationOptions *trt__GetVideoEncoderConfigurationOptions) -{ - struct __trt__GetVideoEncoderConfigurationOptions soap_tmp___trt__GetVideoEncoderConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoEncoderConfigurationOptions"; - soap_tmp___trt__GetVideoEncoderConfigurationOptions.trt__GetVideoEncoderConfigurationOptions = trt__GetVideoEncoderConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoEncoderConfigurationOptions(soap, &soap_tmp___trt__GetVideoEncoderConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoEncoderConfigurationOptions(soap, &soap_tmp___trt__GetVideoEncoderConfigurationOptions, "-trt:GetVideoEncoderConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoEncoderConfigurationOptions(soap, &soap_tmp___trt__GetVideoEncoderConfigurationOptions, "-trt:GetVideoEncoderConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoEncoderConfigurationOptions(_trt__GetVideoEncoderConfigurationOptionsResponse &trt__GetVideoEncoderConfigurationOptionsResponse) -{ - trt__GetVideoEncoderConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoEncoderConfigurationOptionsResponse.soap_get(soap, "trt:GetVideoEncoderConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioSourceConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioSourceConfigurationOptions *trt__GetAudioSourceConfigurationOptions) -{ - struct __trt__GetAudioSourceConfigurationOptions soap_tmp___trt__GetAudioSourceConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioSourceConfigurationOptions"; - soap_tmp___trt__GetAudioSourceConfigurationOptions.trt__GetAudioSourceConfigurationOptions = trt__GetAudioSourceConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioSourceConfigurationOptions(soap, &soap_tmp___trt__GetAudioSourceConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSourceConfigurationOptions(soap, &soap_tmp___trt__GetAudioSourceConfigurationOptions, "-trt:GetAudioSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioSourceConfigurationOptions(soap, &soap_tmp___trt__GetAudioSourceConfigurationOptions, "-trt:GetAudioSourceConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioSourceConfigurationOptions(_trt__GetAudioSourceConfigurationOptionsResponse &trt__GetAudioSourceConfigurationOptionsResponse) -{ - trt__GetAudioSourceConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioSourceConfigurationOptionsResponse.soap_get(soap, "trt:GetAudioSourceConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioEncoderConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioEncoderConfigurationOptions *trt__GetAudioEncoderConfigurationOptions) -{ - struct __trt__GetAudioEncoderConfigurationOptions soap_tmp___trt__GetAudioEncoderConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioEncoderConfigurationOptions"; - soap_tmp___trt__GetAudioEncoderConfigurationOptions.trt__GetAudioEncoderConfigurationOptions = trt__GetAudioEncoderConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioEncoderConfigurationOptions(soap, &soap_tmp___trt__GetAudioEncoderConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioEncoderConfigurationOptions(soap, &soap_tmp___trt__GetAudioEncoderConfigurationOptions, "-trt:GetAudioEncoderConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioEncoderConfigurationOptions(soap, &soap_tmp___trt__GetAudioEncoderConfigurationOptions, "-trt:GetAudioEncoderConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioEncoderConfigurationOptions(_trt__GetAudioEncoderConfigurationOptionsResponse &trt__GetAudioEncoderConfigurationOptionsResponse) -{ - trt__GetAudioEncoderConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioEncoderConfigurationOptionsResponse.soap_get(soap, "trt:GetAudioEncoderConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetMetadataConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetMetadataConfigurationOptions *trt__GetMetadataConfigurationOptions) -{ - struct __trt__GetMetadataConfigurationOptions soap_tmp___trt__GetMetadataConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetMetadataConfigurationOptions"; - soap_tmp___trt__GetMetadataConfigurationOptions.trt__GetMetadataConfigurationOptions = trt__GetMetadataConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetMetadataConfigurationOptions(soap, &soap_tmp___trt__GetMetadataConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetMetadataConfigurationOptions(soap, &soap_tmp___trt__GetMetadataConfigurationOptions, "-trt:GetMetadataConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetMetadataConfigurationOptions(soap, &soap_tmp___trt__GetMetadataConfigurationOptions, "-trt:GetMetadataConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetMetadataConfigurationOptions(_trt__GetMetadataConfigurationOptionsResponse &trt__GetMetadataConfigurationOptionsResponse) -{ - trt__GetMetadataConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetMetadataConfigurationOptionsResponse.soap_get(soap, "trt:GetMetadataConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioOutputConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioOutputConfigurationOptions *trt__GetAudioOutputConfigurationOptions) -{ - struct __trt__GetAudioOutputConfigurationOptions soap_tmp___trt__GetAudioOutputConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioOutputConfigurationOptions"; - soap_tmp___trt__GetAudioOutputConfigurationOptions.trt__GetAudioOutputConfigurationOptions = trt__GetAudioOutputConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioOutputConfigurationOptions(soap, &soap_tmp___trt__GetAudioOutputConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputConfigurationOptions(soap, &soap_tmp___trt__GetAudioOutputConfigurationOptions, "-trt:GetAudioOutputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioOutputConfigurationOptions(soap, &soap_tmp___trt__GetAudioOutputConfigurationOptions, "-trt:GetAudioOutputConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioOutputConfigurationOptions(_trt__GetAudioOutputConfigurationOptionsResponse &trt__GetAudioOutputConfigurationOptionsResponse) -{ - trt__GetAudioOutputConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioOutputConfigurationOptionsResponse.soap_get(soap, "trt:GetAudioOutputConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetAudioDecoderConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetAudioDecoderConfigurationOptions *trt__GetAudioDecoderConfigurationOptions) -{ - struct __trt__GetAudioDecoderConfigurationOptions soap_tmp___trt__GetAudioDecoderConfigurationOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetAudioDecoderConfigurationOptions"; - soap_tmp___trt__GetAudioDecoderConfigurationOptions.trt__GetAudioDecoderConfigurationOptions = trt__GetAudioDecoderConfigurationOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetAudioDecoderConfigurationOptions(soap, &soap_tmp___trt__GetAudioDecoderConfigurationOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioDecoderConfigurationOptions(soap, &soap_tmp___trt__GetAudioDecoderConfigurationOptions, "-trt:GetAudioDecoderConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetAudioDecoderConfigurationOptions(soap, &soap_tmp___trt__GetAudioDecoderConfigurationOptions, "-trt:GetAudioDecoderConfigurationOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetAudioDecoderConfigurationOptions(_trt__GetAudioDecoderConfigurationOptionsResponse &trt__GetAudioDecoderConfigurationOptionsResponse) -{ - trt__GetAudioDecoderConfigurationOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetAudioDecoderConfigurationOptionsResponse.soap_get(soap, "trt:GetAudioDecoderConfigurationOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetGuaranteedNumberOfVideoEncoderInstances(const char *soap_endpoint_url, const char *soap_action, _trt__GetGuaranteedNumberOfVideoEncoderInstances *trt__GetGuaranteedNumberOfVideoEncoderInstances) -{ - struct __trt__GetGuaranteedNumberOfVideoEncoderInstances soap_tmp___trt__GetGuaranteedNumberOfVideoEncoderInstances; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetGuaranteedNumberOfVideoEncoderInstances"; - soap_tmp___trt__GetGuaranteedNumberOfVideoEncoderInstances.trt__GetGuaranteedNumberOfVideoEncoderInstances = trt__GetGuaranteedNumberOfVideoEncoderInstances; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, &soap_tmp___trt__GetGuaranteedNumberOfVideoEncoderInstances); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, &soap_tmp___trt__GetGuaranteedNumberOfVideoEncoderInstances, "-trt:GetGuaranteedNumberOfVideoEncoderInstances", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetGuaranteedNumberOfVideoEncoderInstances(soap, &soap_tmp___trt__GetGuaranteedNumberOfVideoEncoderInstances, "-trt:GetGuaranteedNumberOfVideoEncoderInstances", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetGuaranteedNumberOfVideoEncoderInstances(_trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse &trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse) -{ - trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetGuaranteedNumberOfVideoEncoderInstancesResponse.soap_get(soap, "trt:GetGuaranteedNumberOfVideoEncoderInstancesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetStreamUri(const char *soap_endpoint_url, const char *soap_action, _trt__GetStreamUri *trt__GetStreamUri) -{ - struct __trt__GetStreamUri soap_tmp___trt__GetStreamUri; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetStreamUri"; - soap_tmp___trt__GetStreamUri.trt__GetStreamUri = trt__GetStreamUri; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetStreamUri(soap, &soap_tmp___trt__GetStreamUri); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetStreamUri(soap, &soap_tmp___trt__GetStreamUri, "-trt:GetStreamUri", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetStreamUri(soap, &soap_tmp___trt__GetStreamUri, "-trt:GetStreamUri", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetStreamUri(_trt__GetStreamUriResponse &trt__GetStreamUriResponse) -{ - trt__GetStreamUriResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetStreamUriResponse.soap_get(soap, "trt:GetStreamUriResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_StartMulticastStreaming(const char *soap_endpoint_url, const char *soap_action, _trt__StartMulticastStreaming *trt__StartMulticastStreaming) -{ - struct __trt__StartMulticastStreaming soap_tmp___trt__StartMulticastStreaming; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/StartMulticastStreaming"; - soap_tmp___trt__StartMulticastStreaming.trt__StartMulticastStreaming = trt__StartMulticastStreaming; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__StartMulticastStreaming(soap, &soap_tmp___trt__StartMulticastStreaming); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__StartMulticastStreaming(soap, &soap_tmp___trt__StartMulticastStreaming, "-trt:StartMulticastStreaming", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__StartMulticastStreaming(soap, &soap_tmp___trt__StartMulticastStreaming, "-trt:StartMulticastStreaming", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_StartMulticastStreaming(_trt__StartMulticastStreamingResponse &trt__StartMulticastStreamingResponse) -{ - trt__StartMulticastStreamingResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__StartMulticastStreamingResponse.soap_get(soap, "trt:StartMulticastStreamingResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_StopMulticastStreaming(const char *soap_endpoint_url, const char *soap_action, _trt__StopMulticastStreaming *trt__StopMulticastStreaming) -{ - struct __trt__StopMulticastStreaming soap_tmp___trt__StopMulticastStreaming; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/StopMulticastStreaming"; - soap_tmp___trt__StopMulticastStreaming.trt__StopMulticastStreaming = trt__StopMulticastStreaming; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__StopMulticastStreaming(soap, &soap_tmp___trt__StopMulticastStreaming); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__StopMulticastStreaming(soap, &soap_tmp___trt__StopMulticastStreaming, "-trt:StopMulticastStreaming", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__StopMulticastStreaming(soap, &soap_tmp___trt__StopMulticastStreaming, "-trt:StopMulticastStreaming", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_StopMulticastStreaming(_trt__StopMulticastStreamingResponse &trt__StopMulticastStreamingResponse) -{ - trt__StopMulticastStreamingResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__StopMulticastStreamingResponse.soap_get(soap, "trt:StopMulticastStreamingResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetSynchronizationPoint(const char *soap_endpoint_url, const char *soap_action, _trt__SetSynchronizationPoint *trt__SetSynchronizationPoint) -{ - struct __trt__SetSynchronizationPoint soap_tmp___trt__SetSynchronizationPoint; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetSynchronizationPoint"; - soap_tmp___trt__SetSynchronizationPoint.trt__SetSynchronizationPoint = trt__SetSynchronizationPoint; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetSynchronizationPoint(soap, &soap_tmp___trt__SetSynchronizationPoint); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetSynchronizationPoint(soap, &soap_tmp___trt__SetSynchronizationPoint, "-trt:SetSynchronizationPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetSynchronizationPoint(soap, &soap_tmp___trt__SetSynchronizationPoint, "-trt:SetSynchronizationPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetSynchronizationPoint(_trt__SetSynchronizationPointResponse &trt__SetSynchronizationPointResponse) -{ - trt__SetSynchronizationPointResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetSynchronizationPointResponse.soap_get(soap, "trt:SetSynchronizationPointResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetSnapshotUri(const char *soap_endpoint_url, const char *soap_action, _trt__GetSnapshotUri *trt__GetSnapshotUri) -{ - struct __trt__GetSnapshotUri soap_tmp___trt__GetSnapshotUri; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetSnapshotUri"; - soap_tmp___trt__GetSnapshotUri.trt__GetSnapshotUri = trt__GetSnapshotUri; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetSnapshotUri(soap, &soap_tmp___trt__GetSnapshotUri); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetSnapshotUri(soap, &soap_tmp___trt__GetSnapshotUri, "-trt:GetSnapshotUri", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetSnapshotUri(soap, &soap_tmp___trt__GetSnapshotUri, "-trt:GetSnapshotUri", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetSnapshotUri(_trt__GetSnapshotUriResponse &trt__GetSnapshotUriResponse) -{ - trt__GetSnapshotUriResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetSnapshotUriResponse.soap_get(soap, "trt:GetSnapshotUriResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetVideoSourceModes(const char *soap_endpoint_url, const char *soap_action, _trt__GetVideoSourceModes *trt__GetVideoSourceModes) -{ - struct __trt__GetVideoSourceModes soap_tmp___trt__GetVideoSourceModes; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetVideoSourceModes"; - soap_tmp___trt__GetVideoSourceModes.trt__GetVideoSourceModes = trt__GetVideoSourceModes; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetVideoSourceModes(soap, &soap_tmp___trt__GetVideoSourceModes); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceModes(soap, &soap_tmp___trt__GetVideoSourceModes, "-trt:GetVideoSourceModes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetVideoSourceModes(soap, &soap_tmp___trt__GetVideoSourceModes, "-trt:GetVideoSourceModes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetVideoSourceModes(_trt__GetVideoSourceModesResponse &trt__GetVideoSourceModesResponse) -{ - trt__GetVideoSourceModesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetVideoSourceModesResponse.soap_get(soap, "trt:GetVideoSourceModesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetVideoSourceMode(const char *soap_endpoint_url, const char *soap_action, _trt__SetVideoSourceMode *trt__SetVideoSourceMode) -{ - struct __trt__SetVideoSourceMode soap_tmp___trt__SetVideoSourceMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetVideoSourceMode"; - soap_tmp___trt__SetVideoSourceMode.trt__SetVideoSourceMode = trt__SetVideoSourceMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetVideoSourceMode(soap, &soap_tmp___trt__SetVideoSourceMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoSourceMode(soap, &soap_tmp___trt__SetVideoSourceMode, "-trt:SetVideoSourceMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetVideoSourceMode(soap, &soap_tmp___trt__SetVideoSourceMode, "-trt:SetVideoSourceMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetVideoSourceMode(_trt__SetVideoSourceModeResponse &trt__SetVideoSourceModeResponse) -{ - trt__SetVideoSourceModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetVideoSourceModeResponse.soap_get(soap, "trt:SetVideoSourceModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetOSDs(const char *soap_endpoint_url, const char *soap_action, _trt__GetOSDs *trt__GetOSDs) -{ - struct __trt__GetOSDs soap_tmp___trt__GetOSDs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetOSDs"; - soap_tmp___trt__GetOSDs.trt__GetOSDs = trt__GetOSDs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetOSDs(soap, &soap_tmp___trt__GetOSDs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetOSDs(soap, &soap_tmp___trt__GetOSDs, "-trt:GetOSDs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetOSDs(soap, &soap_tmp___trt__GetOSDs, "-trt:GetOSDs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetOSDs(_trt__GetOSDsResponse &trt__GetOSDsResponse) -{ - trt__GetOSDsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetOSDsResponse.soap_get(soap, "trt:GetOSDsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetOSD(const char *soap_endpoint_url, const char *soap_action, _trt__GetOSD *trt__GetOSD) -{ - struct __trt__GetOSD soap_tmp___trt__GetOSD; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetOSD"; - soap_tmp___trt__GetOSD.trt__GetOSD = trt__GetOSD; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetOSD(soap, &soap_tmp___trt__GetOSD); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetOSD(soap, &soap_tmp___trt__GetOSD, "-trt:GetOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetOSD(soap, &soap_tmp___trt__GetOSD, "-trt:GetOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetOSD(_trt__GetOSDResponse &trt__GetOSDResponse) -{ - trt__GetOSDResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetOSDResponse.soap_get(soap, "trt:GetOSDResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_GetOSDOptions(const char *soap_endpoint_url, const char *soap_action, _trt__GetOSDOptions *trt__GetOSDOptions) -{ - struct __trt__GetOSDOptions soap_tmp___trt__GetOSDOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/GetOSDOptions"; - soap_tmp___trt__GetOSDOptions.trt__GetOSDOptions = trt__GetOSDOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__GetOSDOptions(soap, &soap_tmp___trt__GetOSDOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetOSDOptions(soap, &soap_tmp___trt__GetOSDOptions, "-trt:GetOSDOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__GetOSDOptions(soap, &soap_tmp___trt__GetOSDOptions, "-trt:GetOSDOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_GetOSDOptions(_trt__GetOSDOptionsResponse &trt__GetOSDOptionsResponse) -{ - trt__GetOSDOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__GetOSDOptionsResponse.soap_get(soap, "trt:GetOSDOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_SetOSD(const char *soap_endpoint_url, const char *soap_action, _trt__SetOSD *trt__SetOSD) -{ - struct __trt__SetOSD soap_tmp___trt__SetOSD; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/SetOSD"; - soap_tmp___trt__SetOSD.trt__SetOSD = trt__SetOSD; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__SetOSD(soap, &soap_tmp___trt__SetOSD); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetOSD(soap, &soap_tmp___trt__SetOSD, "-trt:SetOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__SetOSD(soap, &soap_tmp___trt__SetOSD, "-trt:SetOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_SetOSD(_trt__SetOSDResponse &trt__SetOSDResponse) -{ - trt__SetOSDResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__SetOSDResponse.soap_get(soap, "trt:SetOSDResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_CreateOSD(const char *soap_endpoint_url, const char *soap_action, _trt__CreateOSD *trt__CreateOSD) -{ - struct __trt__CreateOSD soap_tmp___trt__CreateOSD; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/CreateOSD"; - soap_tmp___trt__CreateOSD.trt__CreateOSD = trt__CreateOSD; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__CreateOSD(soap, &soap_tmp___trt__CreateOSD); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__CreateOSD(soap, &soap_tmp___trt__CreateOSD, "-trt:CreateOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__CreateOSD(soap, &soap_tmp___trt__CreateOSD, "-trt:CreateOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_CreateOSD(_trt__CreateOSDResponse &trt__CreateOSDResponse) -{ - trt__CreateOSDResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__CreateOSDResponse.soap_get(soap, "trt:CreateOSDResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int MediaBindingProxy::send_DeleteOSD(const char *soap_endpoint_url, const char *soap_action, _trt__DeleteOSD *trt__DeleteOSD) -{ - struct __trt__DeleteOSD soap_tmp___trt__DeleteOSD; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/media/wsdl/DeleteOSD"; - soap_tmp___trt__DeleteOSD.trt__DeleteOSD = trt__DeleteOSD; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trt__DeleteOSD(soap, &soap_tmp___trt__DeleteOSD); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__DeleteOSD(soap, &soap_tmp___trt__DeleteOSD, "-trt:DeleteOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trt__DeleteOSD(soap, &soap_tmp___trt__DeleteOSD, "-trt:DeleteOSD", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int MediaBindingProxy::recv_DeleteOSD(_trt__DeleteOSDResponse &trt__DeleteOSDResponse) -{ - trt__DeleteOSDResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trt__DeleteOSDResponse.soap_get(soap, "trt:DeleteOSDResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapMediaBindingService.o b/gen/soapMediaBindingService.o deleted file mode 100644 index 31b00b5..0000000 Binary files a/gen/soapMediaBindingService.o and /dev/null differ diff --git a/gen/soapNotificationConsumerBindingProxy.o b/gen/soapNotificationConsumerBindingProxy.o deleted file mode 100644 index d3638ac..0000000 Binary files a/gen/soapNotificationConsumerBindingProxy.o and /dev/null differ diff --git a/gen/soapNotificationConsumerBindingService.h b/gen/soapNotificationConsumerBindingService.h deleted file mode 100644 index cef3633..0000000 --- a/gen/soapNotificationConsumerBindingService.h +++ /dev/null @@ -1,105 +0,0 @@ -/* soapNotificationConsumerBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapNotificationConsumerBindingService_H -#define soapNotificationConsumerBindingService_H -#include "soapH.h" - - class SOAP_CMAC NotificationConsumerBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - NotificationConsumerBindingService(); - /// Copy constructor - NotificationConsumerBindingService(const NotificationConsumerBindingService&); - /// Construct service given a shared managing context - NotificationConsumerBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - NotificationConsumerBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - NotificationConsumerBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~NotificationConsumerBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void NotificationConsumerBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual NotificationConsumerBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - NotificationConsumerBindingService& operator=(const NotificationConsumerBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service one-way operation 'Notify' implementation, should return value of send_Notify_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int Notify(_wsnt__Notify *wsnt__Notify) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'Notify', returns SOAP_OK or error code - virtual int send_Notify_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - }; -#endif diff --git a/gen/soapNotificationProducerBindingProxy.h b/gen/soapNotificationProducerBindingProxy.h deleted file mode 100644 index 1accb8c..0000000 --- a/gen/soapNotificationProducerBindingProxy.h +++ /dev/null @@ -1,102 +0,0 @@ -/* soapNotificationProducerBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapNotificationProducerBindingProxy_H -#define soapNotificationProducerBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC NotificationProducerBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'NotificationProducerBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - NotificationProducerBindingProxy(); - /// Copy constructor - NotificationProducerBindingProxy(const NotificationProducerBindingProxy& rhs); - /// Construct proxy given a shared managing context - NotificationProducerBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - NotificationProducerBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - NotificationProducerBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - NotificationProducerBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - NotificationProducerBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - NotificationProducerBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~NotificationProducerBindingProxy(); - /// Initializer used by constructors - virtual void NotificationProducerBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual NotificationProducerBindingProxy *copy(); - /// Copy assignment - NotificationProducerBindingProxy& operator=(const NotificationProducerBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'Subscribe' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int Subscribe(_wsnt__Subscribe *wsnt__Subscribe, _wsnt__SubscribeResponse &wsnt__SubscribeResponse) { return this->Subscribe(NULL, NULL, wsnt__Subscribe, wsnt__SubscribeResponse); } - /// Web service synchronous operation 'Subscribe' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int Subscribe(const char *soap_endpoint_url, const char *soap_action, _wsnt__Subscribe *wsnt__Subscribe, _wsnt__SubscribeResponse &wsnt__SubscribeResponse) { return this->send_Subscribe(soap_endpoint_url, soap_action, wsnt__Subscribe) || this->recv_Subscribe(wsnt__SubscribeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_Subscribe' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_Subscribe(const char *soap_endpoint_url, const char *soap_action, _wsnt__Subscribe *wsnt__Subscribe); - /// Web service asynchronous operation 'recv_Subscribe' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_Subscribe(_wsnt__SubscribeResponse &wsnt__SubscribeResponse); - // - /// Web service synchronous operation 'GetCurrentMessage' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetCurrentMessage(_wsnt__GetCurrentMessage *wsnt__GetCurrentMessage, _wsnt__GetCurrentMessageResponse &wsnt__GetCurrentMessageResponse) { return this->GetCurrentMessage(NULL, NULL, wsnt__GetCurrentMessage, wsnt__GetCurrentMessageResponse); } - /// Web service synchronous operation 'GetCurrentMessage' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetCurrentMessage(const char *soap_endpoint_url, const char *soap_action, _wsnt__GetCurrentMessage *wsnt__GetCurrentMessage, _wsnt__GetCurrentMessageResponse &wsnt__GetCurrentMessageResponse) { return this->send_GetCurrentMessage(soap_endpoint_url, soap_action, wsnt__GetCurrentMessage) || this->recv_GetCurrentMessage(wsnt__GetCurrentMessageResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetCurrentMessage' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetCurrentMessage(const char *soap_endpoint_url, const char *soap_action, _wsnt__GetCurrentMessage *wsnt__GetCurrentMessage); - /// Web service asynchronous operation 'recv_GetCurrentMessage' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetCurrentMessage(_wsnt__GetCurrentMessageResponse &wsnt__GetCurrentMessageResponse); - }; -#endif diff --git a/gen/soapNotificationProducerBindingProxy.o b/gen/soapNotificationProducerBindingProxy.o deleted file mode 100644 index 09f5b74..0000000 Binary files a/gen/soapNotificationProducerBindingProxy.o and /dev/null differ diff --git a/gen/soapNotificationProducerBindingService.cpp b/gen/soapNotificationProducerBindingService.cpp deleted file mode 100644 index 89d8385..0000000 --- a/gen/soapNotificationProducerBindingService.cpp +++ /dev/null @@ -1,389 +0,0 @@ -/* soapNotificationProducerBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapNotificationProducerBindingService.h" - -NotificationProducerBindingService::NotificationProducerBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - NotificationProducerBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -NotificationProducerBindingService::NotificationProducerBindingService(const NotificationProducerBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -NotificationProducerBindingService::NotificationProducerBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - NotificationProducerBindingService_init(_soap->imode, _soap->omode); -} - -NotificationProducerBindingService::NotificationProducerBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - NotificationProducerBindingService_init(iomode, iomode); -} - -NotificationProducerBindingService::NotificationProducerBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - NotificationProducerBindingService_init(imode, omode); -} - -NotificationProducerBindingService::~NotificationProducerBindingService() -{ if (this->soap_own) - { NotificationProducerBindingService::destroy(); - soap_free(this->soap); - } -} - -void NotificationProducerBindingService::NotificationProducerBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void NotificationProducerBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void NotificationProducerBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - NotificationProducerBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -NotificationProducerBindingService *NotificationProducerBindingService::copy() -{ NotificationProducerBindingService *dup = SOAP_NEW_UNMANAGED(NotificationProducerBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -NotificationProducerBindingService& NotificationProducerBindingService::operator=(const NotificationProducerBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int NotificationProducerBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int NotificationProducerBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int NotificationProducerBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int NotificationProducerBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int NotificationProducerBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int NotificationProducerBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void NotificationProducerBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void NotificationProducerBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *NotificationProducerBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void NotificationProducerBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void NotificationProducerBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *NotificationProducerBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int NotificationProducerBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int NotificationProducerBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET NotificationProducerBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET NotificationProducerBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int NotificationProducerBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int NotificationProducerBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___tevnp__Subscribe(struct soap*, NotificationProducerBindingService*); -static int serve___tevnp__GetCurrentMessage(struct soap*, NotificationProducerBindingService*); - -int NotificationProducerBindingService::dispatch() -{ return dispatch(this->soap); -} - -int NotificationProducerBindingService::dispatch(struct soap* soap) -{ - NotificationProducerBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "wsnt:Subscribe")) - return serve___tevnp__Subscribe(soap, this); - if (!soap_match_tag(soap, soap->tag, "wsnt:GetCurrentMessage")) - return serve___tevnp__GetCurrentMessage(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___tevnp__Subscribe(struct soap *soap, NotificationProducerBindingService *service) -{ struct __tevnp__Subscribe soap_tmp___tevnp__Subscribe; - _wsnt__SubscribeResponse wsnt__SubscribeResponse; - wsnt__SubscribeResponse.soap_default(soap); - soap_default___tevnp__Subscribe(soap, &soap_tmp___tevnp__Subscribe); - if (!soap_get___tevnp__Subscribe(soap, &soap_tmp___tevnp__Subscribe, "-tevnp:Subscribe", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->Subscribe(soap_tmp___tevnp__Subscribe.wsnt__Subscribe, wsnt__SubscribeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - wsnt__SubscribeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__SubscribeResponse.soap_put(soap, "wsnt:SubscribeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__SubscribeResponse.soap_put(soap, "wsnt:SubscribeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tevnp__GetCurrentMessage(struct soap *soap, NotificationProducerBindingService *service) -{ struct __tevnp__GetCurrentMessage soap_tmp___tevnp__GetCurrentMessage; - _wsnt__GetCurrentMessageResponse wsnt__GetCurrentMessageResponse; - wsnt__GetCurrentMessageResponse.soap_default(soap); - soap_default___tevnp__GetCurrentMessage(soap, &soap_tmp___tevnp__GetCurrentMessage); - if (!soap_get___tevnp__GetCurrentMessage(soap, &soap_tmp___tevnp__GetCurrentMessage, "-tevnp:GetCurrentMessage", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetCurrentMessage(soap_tmp___tevnp__GetCurrentMessage.wsnt__GetCurrentMessage, wsnt__GetCurrentMessageResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - wsnt__GetCurrentMessageResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__GetCurrentMessageResponse.soap_put(soap, "wsnt:GetCurrentMessageResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__GetCurrentMessageResponse.soap_put(soap, "wsnt:GetCurrentMessageResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapNotificationProducerBindingService.h b/gen/soapNotificationProducerBindingService.h deleted file mode 100644 index 76ab53a..0000000 --- a/gen/soapNotificationProducerBindingService.h +++ /dev/null @@ -1,106 +0,0 @@ -/* soapNotificationProducerBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapNotificationProducerBindingService_H -#define soapNotificationProducerBindingService_H -#include "soapH.h" - - class SOAP_CMAC NotificationProducerBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - NotificationProducerBindingService(); - /// Copy constructor - NotificationProducerBindingService(const NotificationProducerBindingService&); - /// Construct service given a shared managing context - NotificationProducerBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - NotificationProducerBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - NotificationProducerBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~NotificationProducerBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void NotificationProducerBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual NotificationProducerBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - NotificationProducerBindingService& operator=(const NotificationProducerBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'Subscribe' implementation, should return SOAP_OK or error code - virtual int Subscribe(_wsnt__Subscribe *wsnt__Subscribe, _wsnt__SubscribeResponse &wsnt__SubscribeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCurrentMessage' implementation, should return SOAP_OK or error code - virtual int GetCurrentMessage(_wsnt__GetCurrentMessage *wsnt__GetCurrentMessage, _wsnt__GetCurrentMessageResponse &wsnt__GetCurrentMessageResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapPTZBindingProxy.h b/gen/soapPTZBindingProxy.h deleted file mode 100644 index d770a7c..0000000 --- a/gen/soapPTZBindingProxy.h +++ /dev/null @@ -1,327 +0,0 @@ -/* soapPTZBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapPTZBindingProxy_H -#define soapPTZBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC PTZBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'PTZBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - PTZBindingProxy(); - /// Copy constructor - PTZBindingProxy(const PTZBindingProxy& rhs); - /// Construct proxy given a shared managing context - PTZBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - PTZBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - PTZBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - PTZBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - PTZBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - PTZBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~PTZBindingProxy(); - /// Initializer used by constructors - virtual void PTZBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual PTZBindingProxy *copy(); - /// Copy assignment - PTZBindingProxy& operator=(const PTZBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'GetServiceCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(_tptz__GetServiceCapabilities *tptz__GetServiceCapabilities, _tptz__GetServiceCapabilitiesResponse &tptz__GetServiceCapabilitiesResponse) { return this->GetServiceCapabilities(NULL, NULL, tptz__GetServiceCapabilities, tptz__GetServiceCapabilitiesResponse); } - /// Web service synchronous operation 'GetServiceCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tptz__GetServiceCapabilities *tptz__GetServiceCapabilities, _tptz__GetServiceCapabilitiesResponse &tptz__GetServiceCapabilitiesResponse) { return this->send_GetServiceCapabilities(soap_endpoint_url, soap_action, tptz__GetServiceCapabilities) || this->recv_GetServiceCapabilities(tptz__GetServiceCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServiceCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tptz__GetServiceCapabilities *tptz__GetServiceCapabilities); - /// Web service asynchronous operation 'recv_GetServiceCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServiceCapabilities(_tptz__GetServiceCapabilitiesResponse &tptz__GetServiceCapabilitiesResponse); - // - /// Web service synchronous operation 'GetConfigurations' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetConfigurations(_tptz__GetConfigurations *tptz__GetConfigurations, _tptz__GetConfigurationsResponse &tptz__GetConfigurationsResponse) { return this->GetConfigurations(NULL, NULL, tptz__GetConfigurations, tptz__GetConfigurationsResponse); } - /// Web service synchronous operation 'GetConfigurations' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetConfigurations(const char *soap_endpoint_url, const char *soap_action, _tptz__GetConfigurations *tptz__GetConfigurations, _tptz__GetConfigurationsResponse &tptz__GetConfigurationsResponse) { return this->send_GetConfigurations(soap_endpoint_url, soap_action, tptz__GetConfigurations) || this->recv_GetConfigurations(tptz__GetConfigurationsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetConfigurations' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetConfigurations(const char *soap_endpoint_url, const char *soap_action, _tptz__GetConfigurations *tptz__GetConfigurations); - /// Web service asynchronous operation 'recv_GetConfigurations' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetConfigurations(_tptz__GetConfigurationsResponse &tptz__GetConfigurationsResponse); - // - /// Web service synchronous operation 'GetPresets' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetPresets(_tptz__GetPresets *tptz__GetPresets, _tptz__GetPresetsResponse &tptz__GetPresetsResponse) { return this->GetPresets(NULL, NULL, tptz__GetPresets, tptz__GetPresetsResponse); } - /// Web service synchronous operation 'GetPresets' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetPresets(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresets *tptz__GetPresets, _tptz__GetPresetsResponse &tptz__GetPresetsResponse) { return this->send_GetPresets(soap_endpoint_url, soap_action, tptz__GetPresets) || this->recv_GetPresets(tptz__GetPresetsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetPresets' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetPresets(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresets *tptz__GetPresets); - /// Web service asynchronous operation 'recv_GetPresets' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetPresets(_tptz__GetPresetsResponse &tptz__GetPresetsResponse); - // - /// Web service synchronous operation 'SetPreset' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetPreset(_tptz__SetPreset *tptz__SetPreset, _tptz__SetPresetResponse &tptz__SetPresetResponse) { return this->SetPreset(NULL, NULL, tptz__SetPreset, tptz__SetPresetResponse); } - /// Web service synchronous operation 'SetPreset' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetPreset(const char *soap_endpoint_url, const char *soap_action, _tptz__SetPreset *tptz__SetPreset, _tptz__SetPresetResponse &tptz__SetPresetResponse) { return this->send_SetPreset(soap_endpoint_url, soap_action, tptz__SetPreset) || this->recv_SetPreset(tptz__SetPresetResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetPreset' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetPreset(const char *soap_endpoint_url, const char *soap_action, _tptz__SetPreset *tptz__SetPreset); - /// Web service asynchronous operation 'recv_SetPreset' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetPreset(_tptz__SetPresetResponse &tptz__SetPresetResponse); - // - /// Web service synchronous operation 'RemovePreset' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int RemovePreset(_tptz__RemovePreset *tptz__RemovePreset, _tptz__RemovePresetResponse &tptz__RemovePresetResponse) { return this->RemovePreset(NULL, NULL, tptz__RemovePreset, tptz__RemovePresetResponse); } - /// Web service synchronous operation 'RemovePreset' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int RemovePreset(const char *soap_endpoint_url, const char *soap_action, _tptz__RemovePreset *tptz__RemovePreset, _tptz__RemovePresetResponse &tptz__RemovePresetResponse) { return this->send_RemovePreset(soap_endpoint_url, soap_action, tptz__RemovePreset) || this->recv_RemovePreset(tptz__RemovePresetResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_RemovePreset' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_RemovePreset(const char *soap_endpoint_url, const char *soap_action, _tptz__RemovePreset *tptz__RemovePreset); - /// Web service asynchronous operation 'recv_RemovePreset' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_RemovePreset(_tptz__RemovePresetResponse &tptz__RemovePresetResponse); - // - /// Web service synchronous operation 'GotoPreset' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GotoPreset(_tptz__GotoPreset *tptz__GotoPreset, _tptz__GotoPresetResponse &tptz__GotoPresetResponse) { return this->GotoPreset(NULL, NULL, tptz__GotoPreset, tptz__GotoPresetResponse); } - /// Web service synchronous operation 'GotoPreset' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GotoPreset(const char *soap_endpoint_url, const char *soap_action, _tptz__GotoPreset *tptz__GotoPreset, _tptz__GotoPresetResponse &tptz__GotoPresetResponse) { return this->send_GotoPreset(soap_endpoint_url, soap_action, tptz__GotoPreset) || this->recv_GotoPreset(tptz__GotoPresetResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GotoPreset' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GotoPreset(const char *soap_endpoint_url, const char *soap_action, _tptz__GotoPreset *tptz__GotoPreset); - /// Web service asynchronous operation 'recv_GotoPreset' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GotoPreset(_tptz__GotoPresetResponse &tptz__GotoPresetResponse); - // - /// Web service synchronous operation 'GetStatus' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetStatus(_tptz__GetStatus *tptz__GetStatus, _tptz__GetStatusResponse &tptz__GetStatusResponse) { return this->GetStatus(NULL, NULL, tptz__GetStatus, tptz__GetStatusResponse); } - /// Web service synchronous operation 'GetStatus' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetStatus(const char *soap_endpoint_url, const char *soap_action, _tptz__GetStatus *tptz__GetStatus, _tptz__GetStatusResponse &tptz__GetStatusResponse) { return this->send_GetStatus(soap_endpoint_url, soap_action, tptz__GetStatus) || this->recv_GetStatus(tptz__GetStatusResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetStatus' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetStatus(const char *soap_endpoint_url, const char *soap_action, _tptz__GetStatus *tptz__GetStatus); - /// Web service asynchronous operation 'recv_GetStatus' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetStatus(_tptz__GetStatusResponse &tptz__GetStatusResponse); - // - /// Web service synchronous operation 'GetConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetConfiguration(_tptz__GetConfiguration *tptz__GetConfiguration, _tptz__GetConfigurationResponse &tptz__GetConfigurationResponse) { return this->GetConfiguration(NULL, NULL, tptz__GetConfiguration, tptz__GetConfigurationResponse); } - /// Web service synchronous operation 'GetConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetConfiguration(const char *soap_endpoint_url, const char *soap_action, _tptz__GetConfiguration *tptz__GetConfiguration, _tptz__GetConfigurationResponse &tptz__GetConfigurationResponse) { return this->send_GetConfiguration(soap_endpoint_url, soap_action, tptz__GetConfiguration) || this->recv_GetConfiguration(tptz__GetConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetConfiguration(const char *soap_endpoint_url, const char *soap_action, _tptz__GetConfiguration *tptz__GetConfiguration); - /// Web service asynchronous operation 'recv_GetConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetConfiguration(_tptz__GetConfigurationResponse &tptz__GetConfigurationResponse); - // - /// Web service synchronous operation 'GetNodes' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetNodes(_tptz__GetNodes *tptz__GetNodes, _tptz__GetNodesResponse &tptz__GetNodesResponse) { return this->GetNodes(NULL, NULL, tptz__GetNodes, tptz__GetNodesResponse); } - /// Web service synchronous operation 'GetNodes' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetNodes(const char *soap_endpoint_url, const char *soap_action, _tptz__GetNodes *tptz__GetNodes, _tptz__GetNodesResponse &tptz__GetNodesResponse) { return this->send_GetNodes(soap_endpoint_url, soap_action, tptz__GetNodes) || this->recv_GetNodes(tptz__GetNodesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetNodes' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetNodes(const char *soap_endpoint_url, const char *soap_action, _tptz__GetNodes *tptz__GetNodes); - /// Web service asynchronous operation 'recv_GetNodes' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetNodes(_tptz__GetNodesResponse &tptz__GetNodesResponse); - // - /// Web service synchronous operation 'GetNode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetNode(_tptz__GetNode *tptz__GetNode, _tptz__GetNodeResponse &tptz__GetNodeResponse) { return this->GetNode(NULL, NULL, tptz__GetNode, tptz__GetNodeResponse); } - /// Web service synchronous operation 'GetNode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetNode(const char *soap_endpoint_url, const char *soap_action, _tptz__GetNode *tptz__GetNode, _tptz__GetNodeResponse &tptz__GetNodeResponse) { return this->send_GetNode(soap_endpoint_url, soap_action, tptz__GetNode) || this->recv_GetNode(tptz__GetNodeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetNode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetNode(const char *soap_endpoint_url, const char *soap_action, _tptz__GetNode *tptz__GetNode); - /// Web service asynchronous operation 'recv_GetNode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetNode(_tptz__GetNodeResponse &tptz__GetNodeResponse); - // - /// Web service synchronous operation 'SetConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetConfiguration(_tptz__SetConfiguration *tptz__SetConfiguration, _tptz__SetConfigurationResponse &tptz__SetConfigurationResponse) { return this->SetConfiguration(NULL, NULL, tptz__SetConfiguration, tptz__SetConfigurationResponse); } - /// Web service synchronous operation 'SetConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetConfiguration(const char *soap_endpoint_url, const char *soap_action, _tptz__SetConfiguration *tptz__SetConfiguration, _tptz__SetConfigurationResponse &tptz__SetConfigurationResponse) { return this->send_SetConfiguration(soap_endpoint_url, soap_action, tptz__SetConfiguration) || this->recv_SetConfiguration(tptz__SetConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetConfiguration(const char *soap_endpoint_url, const char *soap_action, _tptz__SetConfiguration *tptz__SetConfiguration); - /// Web service asynchronous operation 'recv_SetConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetConfiguration(_tptz__SetConfigurationResponse &tptz__SetConfigurationResponse); - // - /// Web service synchronous operation 'GetConfigurationOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetConfigurationOptions(_tptz__GetConfigurationOptions *tptz__GetConfigurationOptions, _tptz__GetConfigurationOptionsResponse &tptz__GetConfigurationOptionsResponse) { return this->GetConfigurationOptions(NULL, NULL, tptz__GetConfigurationOptions, tptz__GetConfigurationOptionsResponse); } - /// Web service synchronous operation 'GetConfigurationOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tptz__GetConfigurationOptions *tptz__GetConfigurationOptions, _tptz__GetConfigurationOptionsResponse &tptz__GetConfigurationOptionsResponse) { return this->send_GetConfigurationOptions(soap_endpoint_url, soap_action, tptz__GetConfigurationOptions) || this->recv_GetConfigurationOptions(tptz__GetConfigurationOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetConfigurationOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetConfigurationOptions(const char *soap_endpoint_url, const char *soap_action, _tptz__GetConfigurationOptions *tptz__GetConfigurationOptions); - /// Web service asynchronous operation 'recv_GetConfigurationOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetConfigurationOptions(_tptz__GetConfigurationOptionsResponse &tptz__GetConfigurationOptionsResponse); - // - /// Web service synchronous operation 'GotoHomePosition' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GotoHomePosition(_tptz__GotoHomePosition *tptz__GotoHomePosition, _tptz__GotoHomePositionResponse &tptz__GotoHomePositionResponse) { return this->GotoHomePosition(NULL, NULL, tptz__GotoHomePosition, tptz__GotoHomePositionResponse); } - /// Web service synchronous operation 'GotoHomePosition' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GotoHomePosition(const char *soap_endpoint_url, const char *soap_action, _tptz__GotoHomePosition *tptz__GotoHomePosition, _tptz__GotoHomePositionResponse &tptz__GotoHomePositionResponse) { return this->send_GotoHomePosition(soap_endpoint_url, soap_action, tptz__GotoHomePosition) || this->recv_GotoHomePosition(tptz__GotoHomePositionResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GotoHomePosition' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GotoHomePosition(const char *soap_endpoint_url, const char *soap_action, _tptz__GotoHomePosition *tptz__GotoHomePosition); - /// Web service asynchronous operation 'recv_GotoHomePosition' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GotoHomePosition(_tptz__GotoHomePositionResponse &tptz__GotoHomePositionResponse); - // - /// Web service synchronous operation 'SetHomePosition' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetHomePosition(_tptz__SetHomePosition *tptz__SetHomePosition, _tptz__SetHomePositionResponse &tptz__SetHomePositionResponse) { return this->SetHomePosition(NULL, NULL, tptz__SetHomePosition, tptz__SetHomePositionResponse); } - /// Web service synchronous operation 'SetHomePosition' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetHomePosition(const char *soap_endpoint_url, const char *soap_action, _tptz__SetHomePosition *tptz__SetHomePosition, _tptz__SetHomePositionResponse &tptz__SetHomePositionResponse) { return this->send_SetHomePosition(soap_endpoint_url, soap_action, tptz__SetHomePosition) || this->recv_SetHomePosition(tptz__SetHomePositionResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetHomePosition' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetHomePosition(const char *soap_endpoint_url, const char *soap_action, _tptz__SetHomePosition *tptz__SetHomePosition); - /// Web service asynchronous operation 'recv_SetHomePosition' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetHomePosition(_tptz__SetHomePositionResponse &tptz__SetHomePositionResponse); - // - /// Web service synchronous operation 'ContinuousMove' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int ContinuousMove(_tptz__ContinuousMove *tptz__ContinuousMove, _tptz__ContinuousMoveResponse &tptz__ContinuousMoveResponse) { return this->ContinuousMove(NULL, NULL, tptz__ContinuousMove, tptz__ContinuousMoveResponse); } - /// Web service synchronous operation 'ContinuousMove' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int ContinuousMove(const char *soap_endpoint_url, const char *soap_action, _tptz__ContinuousMove *tptz__ContinuousMove, _tptz__ContinuousMoveResponse &tptz__ContinuousMoveResponse) { return this->send_ContinuousMove(soap_endpoint_url, soap_action, tptz__ContinuousMove) || this->recv_ContinuousMove(tptz__ContinuousMoveResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_ContinuousMove' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_ContinuousMove(const char *soap_endpoint_url, const char *soap_action, _tptz__ContinuousMove *tptz__ContinuousMove); - /// Web service asynchronous operation 'recv_ContinuousMove' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_ContinuousMove(_tptz__ContinuousMoveResponse &tptz__ContinuousMoveResponse); - // - /// Web service synchronous operation 'RelativeMove' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int RelativeMove(_tptz__RelativeMove *tptz__RelativeMove, _tptz__RelativeMoveResponse &tptz__RelativeMoveResponse) { return this->RelativeMove(NULL, NULL, tptz__RelativeMove, tptz__RelativeMoveResponse); } - /// Web service synchronous operation 'RelativeMove' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int RelativeMove(const char *soap_endpoint_url, const char *soap_action, _tptz__RelativeMove *tptz__RelativeMove, _tptz__RelativeMoveResponse &tptz__RelativeMoveResponse) { return this->send_RelativeMove(soap_endpoint_url, soap_action, tptz__RelativeMove) || this->recv_RelativeMove(tptz__RelativeMoveResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_RelativeMove' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_RelativeMove(const char *soap_endpoint_url, const char *soap_action, _tptz__RelativeMove *tptz__RelativeMove); - /// Web service asynchronous operation 'recv_RelativeMove' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_RelativeMove(_tptz__RelativeMoveResponse &tptz__RelativeMoveResponse); - // - /// Web service synchronous operation 'SendAuxiliaryCommand' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SendAuxiliaryCommand(_tptz__SendAuxiliaryCommand *tptz__SendAuxiliaryCommand, _tptz__SendAuxiliaryCommandResponse &tptz__SendAuxiliaryCommandResponse) { return this->SendAuxiliaryCommand(NULL, NULL, tptz__SendAuxiliaryCommand, tptz__SendAuxiliaryCommandResponse); } - /// Web service synchronous operation 'SendAuxiliaryCommand' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SendAuxiliaryCommand(const char *soap_endpoint_url, const char *soap_action, _tptz__SendAuxiliaryCommand *tptz__SendAuxiliaryCommand, _tptz__SendAuxiliaryCommandResponse &tptz__SendAuxiliaryCommandResponse) { return this->send_SendAuxiliaryCommand(soap_endpoint_url, soap_action, tptz__SendAuxiliaryCommand) || this->recv_SendAuxiliaryCommand(tptz__SendAuxiliaryCommandResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SendAuxiliaryCommand' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SendAuxiliaryCommand(const char *soap_endpoint_url, const char *soap_action, _tptz__SendAuxiliaryCommand *tptz__SendAuxiliaryCommand); - /// Web service asynchronous operation 'recv_SendAuxiliaryCommand' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SendAuxiliaryCommand(_tptz__SendAuxiliaryCommandResponse &tptz__SendAuxiliaryCommandResponse); - // - /// Web service synchronous operation 'AbsoluteMove' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int AbsoluteMove(_tptz__AbsoluteMove *tptz__AbsoluteMove, _tptz__AbsoluteMoveResponse &tptz__AbsoluteMoveResponse) { return this->AbsoluteMove(NULL, NULL, tptz__AbsoluteMove, tptz__AbsoluteMoveResponse); } - /// Web service synchronous operation 'AbsoluteMove' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int AbsoluteMove(const char *soap_endpoint_url, const char *soap_action, _tptz__AbsoluteMove *tptz__AbsoluteMove, _tptz__AbsoluteMoveResponse &tptz__AbsoluteMoveResponse) { return this->send_AbsoluteMove(soap_endpoint_url, soap_action, tptz__AbsoluteMove) || this->recv_AbsoluteMove(tptz__AbsoluteMoveResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_AbsoluteMove' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_AbsoluteMove(const char *soap_endpoint_url, const char *soap_action, _tptz__AbsoluteMove *tptz__AbsoluteMove); - /// Web service asynchronous operation 'recv_AbsoluteMove' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_AbsoluteMove(_tptz__AbsoluteMoveResponse &tptz__AbsoluteMoveResponse); - // - /// Web service synchronous operation 'Stop' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int Stop(_tptz__Stop *tptz__Stop, _tptz__StopResponse &tptz__StopResponse) { return this->Stop(NULL, NULL, tptz__Stop, tptz__StopResponse); } - /// Web service synchronous operation 'Stop' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int Stop(const char *soap_endpoint_url, const char *soap_action, _tptz__Stop *tptz__Stop, _tptz__StopResponse &tptz__StopResponse) { return this->send_Stop(soap_endpoint_url, soap_action, tptz__Stop) || this->recv_Stop(tptz__StopResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_Stop' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_Stop(const char *soap_endpoint_url, const char *soap_action, _tptz__Stop *tptz__Stop); - /// Web service asynchronous operation 'recv_Stop' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_Stop(_tptz__StopResponse &tptz__StopResponse); - // - /// Web service synchronous operation 'GetPresetTours' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetPresetTours(_tptz__GetPresetTours *tptz__GetPresetTours, _tptz__GetPresetToursResponse &tptz__GetPresetToursResponse) { return this->GetPresetTours(NULL, NULL, tptz__GetPresetTours, tptz__GetPresetToursResponse); } - /// Web service synchronous operation 'GetPresetTours' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetPresetTours(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresetTours *tptz__GetPresetTours, _tptz__GetPresetToursResponse &tptz__GetPresetToursResponse) { return this->send_GetPresetTours(soap_endpoint_url, soap_action, tptz__GetPresetTours) || this->recv_GetPresetTours(tptz__GetPresetToursResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetPresetTours' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetPresetTours(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresetTours *tptz__GetPresetTours); - /// Web service asynchronous operation 'recv_GetPresetTours' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetPresetTours(_tptz__GetPresetToursResponse &tptz__GetPresetToursResponse); - // - /// Web service synchronous operation 'GetPresetTour' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetPresetTour(_tptz__GetPresetTour *tptz__GetPresetTour, _tptz__GetPresetTourResponse &tptz__GetPresetTourResponse) { return this->GetPresetTour(NULL, NULL, tptz__GetPresetTour, tptz__GetPresetTourResponse); } - /// Web service synchronous operation 'GetPresetTour' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetPresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresetTour *tptz__GetPresetTour, _tptz__GetPresetTourResponse &tptz__GetPresetTourResponse) { return this->send_GetPresetTour(soap_endpoint_url, soap_action, tptz__GetPresetTour) || this->recv_GetPresetTour(tptz__GetPresetTourResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetPresetTour' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetPresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresetTour *tptz__GetPresetTour); - /// Web service asynchronous operation 'recv_GetPresetTour' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetPresetTour(_tptz__GetPresetTourResponse &tptz__GetPresetTourResponse); - // - /// Web service synchronous operation 'GetPresetTourOptions' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetPresetTourOptions(_tptz__GetPresetTourOptions *tptz__GetPresetTourOptions, _tptz__GetPresetTourOptionsResponse &tptz__GetPresetTourOptionsResponse) { return this->GetPresetTourOptions(NULL, NULL, tptz__GetPresetTourOptions, tptz__GetPresetTourOptionsResponse); } - /// Web service synchronous operation 'GetPresetTourOptions' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetPresetTourOptions(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresetTourOptions *tptz__GetPresetTourOptions, _tptz__GetPresetTourOptionsResponse &tptz__GetPresetTourOptionsResponse) { return this->send_GetPresetTourOptions(soap_endpoint_url, soap_action, tptz__GetPresetTourOptions) || this->recv_GetPresetTourOptions(tptz__GetPresetTourOptionsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetPresetTourOptions' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetPresetTourOptions(const char *soap_endpoint_url, const char *soap_action, _tptz__GetPresetTourOptions *tptz__GetPresetTourOptions); - /// Web service asynchronous operation 'recv_GetPresetTourOptions' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetPresetTourOptions(_tptz__GetPresetTourOptionsResponse &tptz__GetPresetTourOptionsResponse); - // - /// Web service synchronous operation 'CreatePresetTour' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreatePresetTour(_tptz__CreatePresetTour *tptz__CreatePresetTour, _tptz__CreatePresetTourResponse &tptz__CreatePresetTourResponse) { return this->CreatePresetTour(NULL, NULL, tptz__CreatePresetTour, tptz__CreatePresetTourResponse); } - /// Web service synchronous operation 'CreatePresetTour' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreatePresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__CreatePresetTour *tptz__CreatePresetTour, _tptz__CreatePresetTourResponse &tptz__CreatePresetTourResponse) { return this->send_CreatePresetTour(soap_endpoint_url, soap_action, tptz__CreatePresetTour) || this->recv_CreatePresetTour(tptz__CreatePresetTourResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreatePresetTour' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreatePresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__CreatePresetTour *tptz__CreatePresetTour); - /// Web service asynchronous operation 'recv_CreatePresetTour' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreatePresetTour(_tptz__CreatePresetTourResponse &tptz__CreatePresetTourResponse); - // - /// Web service synchronous operation 'ModifyPresetTour' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int ModifyPresetTour(_tptz__ModifyPresetTour *tptz__ModifyPresetTour, _tptz__ModifyPresetTourResponse &tptz__ModifyPresetTourResponse) { return this->ModifyPresetTour(NULL, NULL, tptz__ModifyPresetTour, tptz__ModifyPresetTourResponse); } - /// Web service synchronous operation 'ModifyPresetTour' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int ModifyPresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__ModifyPresetTour *tptz__ModifyPresetTour, _tptz__ModifyPresetTourResponse &tptz__ModifyPresetTourResponse) { return this->send_ModifyPresetTour(soap_endpoint_url, soap_action, tptz__ModifyPresetTour) || this->recv_ModifyPresetTour(tptz__ModifyPresetTourResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_ModifyPresetTour' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_ModifyPresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__ModifyPresetTour *tptz__ModifyPresetTour); - /// Web service asynchronous operation 'recv_ModifyPresetTour' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_ModifyPresetTour(_tptz__ModifyPresetTourResponse &tptz__ModifyPresetTourResponse); - // - /// Web service synchronous operation 'OperatePresetTour' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int OperatePresetTour(_tptz__OperatePresetTour *tptz__OperatePresetTour, _tptz__OperatePresetTourResponse &tptz__OperatePresetTourResponse) { return this->OperatePresetTour(NULL, NULL, tptz__OperatePresetTour, tptz__OperatePresetTourResponse); } - /// Web service synchronous operation 'OperatePresetTour' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int OperatePresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__OperatePresetTour *tptz__OperatePresetTour, _tptz__OperatePresetTourResponse &tptz__OperatePresetTourResponse) { return this->send_OperatePresetTour(soap_endpoint_url, soap_action, tptz__OperatePresetTour) || this->recv_OperatePresetTour(tptz__OperatePresetTourResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_OperatePresetTour' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_OperatePresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__OperatePresetTour *tptz__OperatePresetTour); - /// Web service asynchronous operation 'recv_OperatePresetTour' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_OperatePresetTour(_tptz__OperatePresetTourResponse &tptz__OperatePresetTourResponse); - // - /// Web service synchronous operation 'RemovePresetTour' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int RemovePresetTour(_tptz__RemovePresetTour *tptz__RemovePresetTour, _tptz__RemovePresetTourResponse &tptz__RemovePresetTourResponse) { return this->RemovePresetTour(NULL, NULL, tptz__RemovePresetTour, tptz__RemovePresetTourResponse); } - /// Web service synchronous operation 'RemovePresetTour' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int RemovePresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__RemovePresetTour *tptz__RemovePresetTour, _tptz__RemovePresetTourResponse &tptz__RemovePresetTourResponse) { return this->send_RemovePresetTour(soap_endpoint_url, soap_action, tptz__RemovePresetTour) || this->recv_RemovePresetTour(tptz__RemovePresetTourResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_RemovePresetTour' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_RemovePresetTour(const char *soap_endpoint_url, const char *soap_action, _tptz__RemovePresetTour *tptz__RemovePresetTour); - /// Web service asynchronous operation 'recv_RemovePresetTour' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_RemovePresetTour(_tptz__RemovePresetTourResponse &tptz__RemovePresetTourResponse); - // - /// Web service synchronous operation 'GetCompatibleConfigurations' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetCompatibleConfigurations(_tptz__GetCompatibleConfigurations *tptz__GetCompatibleConfigurations, _tptz__GetCompatibleConfigurationsResponse &tptz__GetCompatibleConfigurationsResponse) { return this->GetCompatibleConfigurations(NULL, NULL, tptz__GetCompatibleConfigurations, tptz__GetCompatibleConfigurationsResponse); } - /// Web service synchronous operation 'GetCompatibleConfigurations' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetCompatibleConfigurations(const char *soap_endpoint_url, const char *soap_action, _tptz__GetCompatibleConfigurations *tptz__GetCompatibleConfigurations, _tptz__GetCompatibleConfigurationsResponse &tptz__GetCompatibleConfigurationsResponse) { return this->send_GetCompatibleConfigurations(soap_endpoint_url, soap_action, tptz__GetCompatibleConfigurations) || this->recv_GetCompatibleConfigurations(tptz__GetCompatibleConfigurationsResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetCompatibleConfigurations' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetCompatibleConfigurations(const char *soap_endpoint_url, const char *soap_action, _tptz__GetCompatibleConfigurations *tptz__GetCompatibleConfigurations); - /// Web service asynchronous operation 'recv_GetCompatibleConfigurations' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetCompatibleConfigurations(_tptz__GetCompatibleConfigurationsResponse &tptz__GetCompatibleConfigurationsResponse); - }; -#endif diff --git a/gen/soapPTZBindingProxy.o b/gen/soapPTZBindingProxy.o deleted file mode 100644 index d8c24b1..0000000 Binary files a/gen/soapPTZBindingProxy.o and /dev/null differ diff --git a/gen/soapPTZBindingService.h b/gen/soapPTZBindingService.h deleted file mode 100644 index cc8b541..0000000 --- a/gen/soapPTZBindingService.h +++ /dev/null @@ -1,181 +0,0 @@ -/* soapPTZBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapPTZBindingService_H -#define soapPTZBindingService_H -#include "soapH.h" - - class SOAP_CMAC PTZBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - PTZBindingService(); - /// Copy constructor - PTZBindingService(const PTZBindingService&); - /// Construct service given a shared managing context - PTZBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - PTZBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - PTZBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~PTZBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void PTZBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual PTZBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - PTZBindingService& operator=(const PTZBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_tptz__GetServiceCapabilities *tptz__GetServiceCapabilities, _tptz__GetServiceCapabilitiesResponse &tptz__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetConfigurations' implementation, should return SOAP_OK or error code - virtual int GetConfigurations(_tptz__GetConfigurations *tptz__GetConfigurations, _tptz__GetConfigurationsResponse &tptz__GetConfigurationsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPresets' implementation, should return SOAP_OK or error code - virtual int GetPresets(_tptz__GetPresets *tptz__GetPresets, _tptz__GetPresetsResponse &tptz__GetPresetsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetPreset' implementation, should return SOAP_OK or error code - virtual int SetPreset(_tptz__SetPreset *tptz__SetPreset, _tptz__SetPresetResponse &tptz__SetPresetResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'RemovePreset' implementation, should return SOAP_OK or error code - virtual int RemovePreset(_tptz__RemovePreset *tptz__RemovePreset, _tptz__RemovePresetResponse &tptz__RemovePresetResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GotoPreset' implementation, should return SOAP_OK or error code - virtual int GotoPreset(_tptz__GotoPreset *tptz__GotoPreset, _tptz__GotoPresetResponse &tptz__GotoPresetResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetStatus' implementation, should return SOAP_OK or error code - virtual int GetStatus(_tptz__GetStatus *tptz__GetStatus, _tptz__GetStatusResponse &tptz__GetStatusResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetConfiguration' implementation, should return SOAP_OK or error code - virtual int GetConfiguration(_tptz__GetConfiguration *tptz__GetConfiguration, _tptz__GetConfigurationResponse &tptz__GetConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetNodes' implementation, should return SOAP_OK or error code - virtual int GetNodes(_tptz__GetNodes *tptz__GetNodes, _tptz__GetNodesResponse &tptz__GetNodesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetNode' implementation, should return SOAP_OK or error code - virtual int GetNode(_tptz__GetNode *tptz__GetNode, _tptz__GetNodeResponse &tptz__GetNodeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetConfiguration' implementation, should return SOAP_OK or error code - virtual int SetConfiguration(_tptz__SetConfiguration *tptz__SetConfiguration, _tptz__SetConfigurationResponse &tptz__SetConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetConfigurationOptions' implementation, should return SOAP_OK or error code - virtual int GetConfigurationOptions(_tptz__GetConfigurationOptions *tptz__GetConfigurationOptions, _tptz__GetConfigurationOptionsResponse &tptz__GetConfigurationOptionsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GotoHomePosition' implementation, should return SOAP_OK or error code - virtual int GotoHomePosition(_tptz__GotoHomePosition *tptz__GotoHomePosition, _tptz__GotoHomePositionResponse &tptz__GotoHomePositionResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetHomePosition' implementation, should return SOAP_OK or error code - virtual int SetHomePosition(_tptz__SetHomePosition *tptz__SetHomePosition, _tptz__SetHomePositionResponse &tptz__SetHomePositionResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'ContinuousMove' implementation, should return SOAP_OK or error code - virtual int ContinuousMove(_tptz__ContinuousMove *tptz__ContinuousMove, _tptz__ContinuousMoveResponse &tptz__ContinuousMoveResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'RelativeMove' implementation, should return SOAP_OK or error code - virtual int RelativeMove(_tptz__RelativeMove *tptz__RelativeMove, _tptz__RelativeMoveResponse &tptz__RelativeMoveResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SendAuxiliaryCommand' implementation, should return SOAP_OK or error code - virtual int SendAuxiliaryCommand(_tptz__SendAuxiliaryCommand *tptz__SendAuxiliaryCommand, _tptz__SendAuxiliaryCommandResponse &tptz__SendAuxiliaryCommandResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'AbsoluteMove' implementation, should return SOAP_OK or error code - virtual int AbsoluteMove(_tptz__AbsoluteMove *tptz__AbsoluteMove, _tptz__AbsoluteMoveResponse &tptz__AbsoluteMoveResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'Stop' implementation, should return SOAP_OK or error code - virtual int Stop(_tptz__Stop *tptz__Stop, _tptz__StopResponse &tptz__StopResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPresetTours' implementation, should return SOAP_OK or error code - virtual int GetPresetTours(_tptz__GetPresetTours *tptz__GetPresetTours, _tptz__GetPresetToursResponse &tptz__GetPresetToursResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPresetTour' implementation, should return SOAP_OK or error code - virtual int GetPresetTour(_tptz__GetPresetTour *tptz__GetPresetTour, _tptz__GetPresetTourResponse &tptz__GetPresetTourResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPresetTourOptions' implementation, should return SOAP_OK or error code - virtual int GetPresetTourOptions(_tptz__GetPresetTourOptions *tptz__GetPresetTourOptions, _tptz__GetPresetTourOptionsResponse &tptz__GetPresetTourOptionsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreatePresetTour' implementation, should return SOAP_OK or error code - virtual int CreatePresetTour(_tptz__CreatePresetTour *tptz__CreatePresetTour, _tptz__CreatePresetTourResponse &tptz__CreatePresetTourResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'ModifyPresetTour' implementation, should return SOAP_OK or error code - virtual int ModifyPresetTour(_tptz__ModifyPresetTour *tptz__ModifyPresetTour, _tptz__ModifyPresetTourResponse &tptz__ModifyPresetTourResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'OperatePresetTour' implementation, should return SOAP_OK or error code - virtual int OperatePresetTour(_tptz__OperatePresetTour *tptz__OperatePresetTour, _tptz__OperatePresetTourResponse &tptz__OperatePresetTourResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'RemovePresetTour' implementation, should return SOAP_OK or error code - virtual int RemovePresetTour(_tptz__RemovePresetTour *tptz__RemovePresetTour, _tptz__RemovePresetTourResponse &tptz__RemovePresetTourResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetCompatibleConfigurations' implementation, should return SOAP_OK or error code - virtual int GetCompatibleConfigurations(_tptz__GetCompatibleConfigurations *tptz__GetCompatibleConfigurations, _tptz__GetCompatibleConfigurationsResponse &tptz__GetCompatibleConfigurationsResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapPTZBindingService.o b/gen/soapPTZBindingService.o deleted file mode 100644 index d44bc38..0000000 Binary files a/gen/soapPTZBindingService.o and /dev/null differ diff --git a/gen/soapPausableSubscriptionManagerBindingProxy.cpp b/gen/soapPausableSubscriptionManagerBindingProxy.cpp deleted file mode 100644 index 78f9dc5..0000000 --- a/gen/soapPausableSubscriptionManagerBindingProxy.cpp +++ /dev/null @@ -1,451 +0,0 @@ -/* soapPausableSubscriptionManagerBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapPausableSubscriptionManagerBindingProxy.h" - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - PausableSubscriptionManagerBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy(const PausableSubscriptionManagerBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - PausableSubscriptionManagerBindingProxy_init(_soap->imode, _soap->omode); -} - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - PausableSubscriptionManagerBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - PausableSubscriptionManagerBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - PausableSubscriptionManagerBindingProxy_init(iomode, iomode); -} - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - PausableSubscriptionManagerBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - PausableSubscriptionManagerBindingProxy_init(imode, omode); -} - -PausableSubscriptionManagerBindingProxy::~PausableSubscriptionManagerBindingProxy() -{ if (this->soap_own) - { PausableSubscriptionManagerBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void PausableSubscriptionManagerBindingProxy::PausableSubscriptionManagerBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -PausableSubscriptionManagerBindingProxy *PausableSubscriptionManagerBindingProxy::copy() -{ PausableSubscriptionManagerBindingProxy *dup = SOAP_NEW_UNMANAGED(PausableSubscriptionManagerBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -PausableSubscriptionManagerBindingProxy& PausableSubscriptionManagerBindingProxy::operator=(const PausableSubscriptionManagerBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void PausableSubscriptionManagerBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void PausableSubscriptionManagerBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - PausableSubscriptionManagerBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void PausableSubscriptionManagerBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void PausableSubscriptionManagerBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *PausableSubscriptionManagerBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *PausableSubscriptionManagerBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *PausableSubscriptionManagerBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *PausableSubscriptionManagerBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *PausableSubscriptionManagerBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int PausableSubscriptionManagerBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int PausableSubscriptionManagerBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void PausableSubscriptionManagerBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void PausableSubscriptionManagerBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *PausableSubscriptionManagerBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int PausableSubscriptionManagerBindingProxy::send_Renew(const char *soap_endpoint_url, const char *soap_action, _wsnt__Renew *wsnt__Renew) -{ - struct __tevps__Renew soap_tmp___tevps__Renew; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/PausableSubscriptionManager/RenewRequest"; - soap_tmp___tevps__Renew.wsnt__Renew = wsnt__Renew; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevps__Renew(soap, &soap_tmp___tevps__Renew); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__Renew(soap, &soap_tmp___tevps__Renew, "-tevps:Renew", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__Renew(soap, &soap_tmp___tevps__Renew, "-tevps:Renew", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PausableSubscriptionManagerBindingProxy::recv_Renew(_wsnt__RenewResponse &wsnt__RenewResponse) -{ - wsnt__RenewResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - wsnt__RenewResponse.soap_get(soap, "wsnt:RenewResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int PausableSubscriptionManagerBindingProxy::send_Unsubscribe(const char *soap_endpoint_url, const char *soap_action, _wsnt__Unsubscribe *wsnt__Unsubscribe) -{ - struct __tevps__Unsubscribe soap_tmp___tevps__Unsubscribe; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/PausableSubscriptionManager/UnsubscribeRequest"; - soap_tmp___tevps__Unsubscribe.wsnt__Unsubscribe = wsnt__Unsubscribe; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevps__Unsubscribe(soap, &soap_tmp___tevps__Unsubscribe); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__Unsubscribe(soap, &soap_tmp___tevps__Unsubscribe, "-tevps:Unsubscribe", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__Unsubscribe(soap, &soap_tmp___tevps__Unsubscribe, "-tevps:Unsubscribe", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PausableSubscriptionManagerBindingProxy::recv_Unsubscribe(_wsnt__UnsubscribeResponse &wsnt__UnsubscribeResponse) -{ - wsnt__UnsubscribeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - wsnt__UnsubscribeResponse.soap_get(soap, "wsnt:UnsubscribeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int PausableSubscriptionManagerBindingProxy::send_PauseSubscription(const char *soap_endpoint_url, const char *soap_action, _wsnt__PauseSubscription *wsnt__PauseSubscription) -{ - struct __tevps__PauseSubscription soap_tmp___tevps__PauseSubscription; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/PausableSubscriptionManager/PauseSubscriptionRequest"; - soap_tmp___tevps__PauseSubscription.wsnt__PauseSubscription = wsnt__PauseSubscription; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevps__PauseSubscription(soap, &soap_tmp___tevps__PauseSubscription); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__PauseSubscription(soap, &soap_tmp___tevps__PauseSubscription, "-tevps:PauseSubscription", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__PauseSubscription(soap, &soap_tmp___tevps__PauseSubscription, "-tevps:PauseSubscription", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PausableSubscriptionManagerBindingProxy::recv_PauseSubscription(_wsnt__PauseSubscriptionResponse &wsnt__PauseSubscriptionResponse) -{ - wsnt__PauseSubscriptionResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - wsnt__PauseSubscriptionResponse.soap_get(soap, "wsnt:PauseSubscriptionResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int PausableSubscriptionManagerBindingProxy::send_ResumeSubscription(const char *soap_endpoint_url, const char *soap_action, _wsnt__ResumeSubscription *wsnt__ResumeSubscription) -{ - struct __tevps__ResumeSubscription soap_tmp___tevps__ResumeSubscription; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/PausableSubscriptionManager/ResumeSubscriptionRequest"; - soap_tmp___tevps__ResumeSubscription.wsnt__ResumeSubscription = wsnt__ResumeSubscription; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevps__ResumeSubscription(soap, &soap_tmp___tevps__ResumeSubscription); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__ResumeSubscription(soap, &soap_tmp___tevps__ResumeSubscription, "-tevps:ResumeSubscription", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevps__ResumeSubscription(soap, &soap_tmp___tevps__ResumeSubscription, "-tevps:ResumeSubscription", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PausableSubscriptionManagerBindingProxy::recv_ResumeSubscription(_wsnt__ResumeSubscriptionResponse &wsnt__ResumeSubscriptionResponse) -{ - wsnt__ResumeSubscriptionResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - wsnt__ResumeSubscriptionResponse.soap_get(soap, "wsnt:ResumeSubscriptionResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapPausableSubscriptionManagerBindingService.h b/gen/soapPausableSubscriptionManagerBindingService.h deleted file mode 100644 index fae02ef..0000000 --- a/gen/soapPausableSubscriptionManagerBindingService.h +++ /dev/null @@ -1,112 +0,0 @@ -/* soapPausableSubscriptionManagerBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapPausableSubscriptionManagerBindingService_H -#define soapPausableSubscriptionManagerBindingService_H -#include "soapH.h" - - class SOAP_CMAC PausableSubscriptionManagerBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - PausableSubscriptionManagerBindingService(); - /// Copy constructor - PausableSubscriptionManagerBindingService(const PausableSubscriptionManagerBindingService&); - /// Construct service given a shared managing context - PausableSubscriptionManagerBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - PausableSubscriptionManagerBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - PausableSubscriptionManagerBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~PausableSubscriptionManagerBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void PausableSubscriptionManagerBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual PausableSubscriptionManagerBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - PausableSubscriptionManagerBindingService& operator=(const PausableSubscriptionManagerBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'Renew' implementation, should return SOAP_OK or error code - virtual int Renew(_wsnt__Renew *wsnt__Renew, _wsnt__RenewResponse &wsnt__RenewResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'Unsubscribe' implementation, should return SOAP_OK or error code - virtual int Unsubscribe(_wsnt__Unsubscribe *wsnt__Unsubscribe, _wsnt__UnsubscribeResponse &wsnt__UnsubscribeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'PauseSubscription' implementation, should return SOAP_OK or error code - virtual int PauseSubscription(_wsnt__PauseSubscription *wsnt__PauseSubscription, _wsnt__PauseSubscriptionResponse &wsnt__PauseSubscriptionResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'ResumeSubscription' implementation, should return SOAP_OK or error code - virtual int ResumeSubscription(_wsnt__ResumeSubscription *wsnt__ResumeSubscription, _wsnt__ResumeSubscriptionResponse &wsnt__ResumeSubscriptionResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapPullPointBindingProxy.cpp b/gen/soapPullPointBindingProxy.cpp deleted file mode 100644 index 40fa001..0000000 --- a/gen/soapPullPointBindingProxy.cpp +++ /dev/null @@ -1,398 +0,0 @@ -/* soapPullPointBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapPullPointBindingProxy.h" - -PullPointBindingProxy::PullPointBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -PullPointBindingProxy::PullPointBindingProxy(const PullPointBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -PullPointBindingProxy::PullPointBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - PullPointBindingProxy_init(_soap->imode, _soap->omode); -} - -PullPointBindingProxy::PullPointBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - PullPointBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -PullPointBindingProxy::PullPointBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -PullPointBindingProxy::PullPointBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingProxy_init(iomode, iomode); -} - -PullPointBindingProxy::PullPointBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -PullPointBindingProxy::PullPointBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingProxy_init(imode, omode); -} - -PullPointBindingProxy::~PullPointBindingProxy() -{ if (this->soap_own) - { PullPointBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void PullPointBindingProxy::PullPointBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -PullPointBindingProxy *PullPointBindingProxy::copy() -{ PullPointBindingProxy *dup = SOAP_NEW_UNMANAGED(PullPointBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -PullPointBindingProxy& PullPointBindingProxy::operator=(const PullPointBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void PullPointBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void PullPointBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - PullPointBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void PullPointBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void PullPointBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *PullPointBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *PullPointBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *PullPointBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *PullPointBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *PullPointBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int PullPointBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int PullPointBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void PullPointBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void PullPointBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *PullPointBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int PullPointBindingProxy::send_GetMessages(const char *soap_endpoint_url, const char *soap_action, _wsnt__GetMessages *wsnt__GetMessages) -{ - struct __tevpp__GetMessages soap_tmp___tevpp__GetMessages; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/PullPoint/GetMessagesRequest"; - soap_tmp___tevpp__GetMessages.wsnt__GetMessages = wsnt__GetMessages; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevpp__GetMessages(soap, &soap_tmp___tevpp__GetMessages); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpp__GetMessages(soap, &soap_tmp___tevpp__GetMessages, "-tevpp:GetMessages", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpp__GetMessages(soap, &soap_tmp___tevpp__GetMessages, "-tevpp:GetMessages", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PullPointBindingProxy::recv_GetMessages(_wsnt__GetMessagesResponse &wsnt__GetMessagesResponse) -{ - wsnt__GetMessagesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - wsnt__GetMessagesResponse.soap_get(soap, "wsnt:GetMessagesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int PullPointBindingProxy::send_DestroyPullPoint(const char *soap_endpoint_url, const char *soap_action, _wsnt__DestroyPullPoint *wsnt__DestroyPullPoint) -{ - struct __tevpp__DestroyPullPoint soap_tmp___tevpp__DestroyPullPoint; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/PullPoint/DestroyPullPointRequest"; - soap_tmp___tevpp__DestroyPullPoint.wsnt__DestroyPullPoint = wsnt__DestroyPullPoint; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevpp__DestroyPullPoint(soap, &soap_tmp___tevpp__DestroyPullPoint); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpp__DestroyPullPoint(soap, &soap_tmp___tevpp__DestroyPullPoint, "-tevpp:DestroyPullPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpp__DestroyPullPoint(soap, &soap_tmp___tevpp__DestroyPullPoint, "-tevpp:DestroyPullPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PullPointBindingProxy::recv_DestroyPullPoint(_wsnt__DestroyPullPointResponse &wsnt__DestroyPullPointResponse) -{ - wsnt__DestroyPullPointResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - wsnt__DestroyPullPointResponse.soap_get(soap, "wsnt:DestroyPullPointResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int PullPointBindingProxy::send_Notify(const char *soap_endpoint_url, const char *soap_action, _wsnt__Notify *wsnt__Notify) -{ - struct __tevpp__Notify soap_tmp___tevpp__Notify; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://docs.oasis-open.org/wsn/bw-2/PullPoint/Notify"; - soap_tmp___tevpp__Notify.wsnt__Notify = wsnt__Notify; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevpp__Notify(soap, &soap_tmp___tevpp__Notify); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpp__Notify(soap, &soap_tmp___tevpp__Notify, "-tevpp:Notify", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpp__Notify(soap, &soap_tmp___tevpp__Notify, "-tevpp:Notify", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PullPointBindingProxy::recv_Notify(struct __tevpp__Notify& tmp) -{ - struct __tevpp__Notify *_param_1 = &tmp; - soap_default___tevpp__Notify(soap, _param_1); - soap_begin(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - soap_get___tevpp__Notify(soap, _param_1, "-tevpp:Notify", NULL); - if (soap->error == SOAP_TAG_MISMATCH && soap->level == 2) - soap->error = SOAP_OK; - if (soap->error - || soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapPullPointBindingService.cpp b/gen/soapPullPointBindingService.cpp deleted file mode 100644 index 18d8e69..0000000 --- a/gen/soapPullPointBindingService.cpp +++ /dev/null @@ -1,407 +0,0 @@ -/* soapPullPointBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapPullPointBindingService.h" - -PullPointBindingService::PullPointBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -PullPointBindingService::PullPointBindingService(const PullPointBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -PullPointBindingService::PullPointBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - PullPointBindingService_init(_soap->imode, _soap->omode); -} - -PullPointBindingService::PullPointBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingService_init(iomode, iomode); -} - -PullPointBindingService::PullPointBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointBindingService_init(imode, omode); -} - -PullPointBindingService::~PullPointBindingService() -{ if (this->soap_own) - { PullPointBindingService::destroy(); - soap_free(this->soap); - } -} - -void PullPointBindingService::PullPointBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void PullPointBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void PullPointBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - PullPointBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -PullPointBindingService *PullPointBindingService::copy() -{ PullPointBindingService *dup = SOAP_NEW_UNMANAGED(PullPointBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -PullPointBindingService& PullPointBindingService::operator=(const PullPointBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int PullPointBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int PullPointBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int PullPointBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int PullPointBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int PullPointBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int PullPointBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void PullPointBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void PullPointBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *PullPointBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void PullPointBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void PullPointBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *PullPointBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int PullPointBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int PullPointBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET PullPointBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET PullPointBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int PullPointBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int PullPointBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___tevpp__GetMessages(struct soap*, PullPointBindingService*); -static int serve___tevpp__DestroyPullPoint(struct soap*, PullPointBindingService*); -static int serve___tevpp__Notify(struct soap*, PullPointBindingService*); - -int PullPointBindingService::dispatch() -{ return dispatch(this->soap); -} - -int PullPointBindingService::dispatch(struct soap* soap) -{ - PullPointBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "wsnt:GetMessages")) - return serve___tevpp__GetMessages(soap, this); - if (!soap_match_tag(soap, soap->tag, "wsnt:DestroyPullPoint")) - return serve___tevpp__DestroyPullPoint(soap, this); - if (!soap_match_tag(soap, soap->tag, "wsnt:Notify")) - return serve___tevpp__Notify(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___tevpp__GetMessages(struct soap *soap, PullPointBindingService *service) -{ struct __tevpp__GetMessages soap_tmp___tevpp__GetMessages; - _wsnt__GetMessagesResponse wsnt__GetMessagesResponse; - wsnt__GetMessagesResponse.soap_default(soap); - soap_default___tevpp__GetMessages(soap, &soap_tmp___tevpp__GetMessages); - if (!soap_get___tevpp__GetMessages(soap, &soap_tmp___tevpp__GetMessages, "-tevpp:GetMessages", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetMessages(soap_tmp___tevpp__GetMessages.wsnt__GetMessages, wsnt__GetMessagesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - wsnt__GetMessagesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__GetMessagesResponse.soap_put(soap, "wsnt:GetMessagesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__GetMessagesResponse.soap_put(soap, "wsnt:GetMessagesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tevpp__DestroyPullPoint(struct soap *soap, PullPointBindingService *service) -{ struct __tevpp__DestroyPullPoint soap_tmp___tevpp__DestroyPullPoint; - _wsnt__DestroyPullPointResponse wsnt__DestroyPullPointResponse; - wsnt__DestroyPullPointResponse.soap_default(soap); - soap_default___tevpp__DestroyPullPoint(soap, &soap_tmp___tevpp__DestroyPullPoint); - if (!soap_get___tevpp__DestroyPullPoint(soap, &soap_tmp___tevpp__DestroyPullPoint, "-tevpp:DestroyPullPoint", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DestroyPullPoint(soap_tmp___tevpp__DestroyPullPoint.wsnt__DestroyPullPoint, wsnt__DestroyPullPointResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - wsnt__DestroyPullPointResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__DestroyPullPointResponse.soap_put(soap, "wsnt:DestroyPullPointResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || wsnt__DestroyPullPointResponse.soap_put(soap, "wsnt:DestroyPullPointResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tevpp__Notify(struct soap *soap, PullPointBindingService *service) -{ struct __tevpp__Notify soap_tmp___tevpp__Notify; - soap_default___tevpp__Notify(soap, &soap_tmp___tevpp__Notify); - if (!soap_get___tevpp__Notify(soap, &soap_tmp___tevpp__Notify, "-tevpp:Notify", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->Notify(soap_tmp___tevpp__Notify.wsnt__Notify); - if (soap->error) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapPullPointBindingService.h b/gen/soapPullPointBindingService.h deleted file mode 100644 index be8dde3..0000000 --- a/gen/soapPullPointBindingService.h +++ /dev/null @@ -1,111 +0,0 @@ -/* soapPullPointBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapPullPointBindingService_H -#define soapPullPointBindingService_H -#include "soapH.h" - - class SOAP_CMAC PullPointBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - PullPointBindingService(); - /// Copy constructor - PullPointBindingService(const PullPointBindingService&); - /// Construct service given a shared managing context - PullPointBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - PullPointBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - PullPointBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~PullPointBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void PullPointBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual PullPointBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - PullPointBindingService& operator=(const PullPointBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetMessages' implementation, should return SOAP_OK or error code - virtual int GetMessages(_wsnt__GetMessages *wsnt__GetMessages, _wsnt__GetMessagesResponse &wsnt__GetMessagesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DestroyPullPoint' implementation, should return SOAP_OK or error code - virtual int DestroyPullPoint(_wsnt__DestroyPullPoint *wsnt__DestroyPullPoint, _wsnt__DestroyPullPointResponse &wsnt__DestroyPullPointResponse) SOAP_PURE_VIRTUAL; - // - /// Web service one-way operation 'Notify' implementation, should return value of send_Notify_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int Notify(_wsnt__Notify *wsnt__Notify) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'Notify', returns SOAP_OK or error code - virtual int send_Notify_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - }; -#endif diff --git a/gen/soapPullPointSubscriptionBindingProxy.cpp b/gen/soapPullPointSubscriptionBindingProxy.cpp deleted file mode 100644 index dddab5c..0000000 --- a/gen/soapPullPointSubscriptionBindingProxy.cpp +++ /dev/null @@ -1,395 +0,0 @@ -/* soapPullPointSubscriptionBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapPullPointSubscriptionBindingProxy.h" - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - PullPointSubscriptionBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy(const PullPointSubscriptionBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - PullPointSubscriptionBindingProxy_init(_soap->imode, _soap->omode); -} - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - PullPointSubscriptionBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointSubscriptionBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointSubscriptionBindingProxy_init(iomode, iomode); -} - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointSubscriptionBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - PullPointSubscriptionBindingProxy_init(imode, omode); -} - -PullPointSubscriptionBindingProxy::~PullPointSubscriptionBindingProxy() -{ if (this->soap_own) - { PullPointSubscriptionBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void PullPointSubscriptionBindingProxy::PullPointSubscriptionBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -PullPointSubscriptionBindingProxy *PullPointSubscriptionBindingProxy::copy() -{ PullPointSubscriptionBindingProxy *dup = SOAP_NEW_UNMANAGED(PullPointSubscriptionBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -PullPointSubscriptionBindingProxy& PullPointSubscriptionBindingProxy::operator=(const PullPointSubscriptionBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void PullPointSubscriptionBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void PullPointSubscriptionBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - PullPointSubscriptionBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void PullPointSubscriptionBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void PullPointSubscriptionBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *PullPointSubscriptionBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *PullPointSubscriptionBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *PullPointSubscriptionBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *PullPointSubscriptionBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *PullPointSubscriptionBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int PullPointSubscriptionBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int PullPointSubscriptionBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void PullPointSubscriptionBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void PullPointSubscriptionBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *PullPointSubscriptionBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int PullPointSubscriptionBindingProxy::send_PullMessages(const char *soap_endpoint_url, const char *soap_action, _tev__PullMessages *tev__PullMessages) -{ - struct __tevpps__PullMessages soap_tmp___tevpps__PullMessages; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/events/wsdl/PullPointSubscription/PullMessagesRequest"; - soap_tmp___tevpps__PullMessages.tev__PullMessages = tev__PullMessages; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevpps__PullMessages(soap, &soap_tmp___tevpps__PullMessages); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpps__PullMessages(soap, &soap_tmp___tevpps__PullMessages, "-tevpps:PullMessages", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpps__PullMessages(soap, &soap_tmp___tevpps__PullMessages, "-tevpps:PullMessages", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PullPointSubscriptionBindingProxy::recv_PullMessages(_tev__PullMessagesResponse &tev__PullMessagesResponse) -{ - tev__PullMessagesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tev__PullMessagesResponse.soap_get(soap, "tev:PullMessagesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int PullPointSubscriptionBindingProxy::send_Seek(const char *soap_endpoint_url, const char *soap_action, _tev__Seek *tev__Seek) -{ - struct __tevpps__Seek soap_tmp___tevpps__Seek; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/events/wsdl/PullPointSubscription/SeekRequest"; - soap_tmp___tevpps__Seek.tev__Seek = tev__Seek; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevpps__Seek(soap, &soap_tmp___tevpps__Seek); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpps__Seek(soap, &soap_tmp___tevpps__Seek, "-tevpps:Seek", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpps__Seek(soap, &soap_tmp___tevpps__Seek, "-tevpps:Seek", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PullPointSubscriptionBindingProxy::recv_Seek(_tev__SeekResponse &tev__SeekResponse) -{ - tev__SeekResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tev__SeekResponse.soap_get(soap, "tev:SeekResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int PullPointSubscriptionBindingProxy::send_SetSynchronizationPoint(const char *soap_endpoint_url, const char *soap_action, _tev__SetSynchronizationPoint *tev__SetSynchronizationPoint) -{ - struct __tevpps__SetSynchronizationPoint soap_tmp___tevpps__SetSynchronizationPoint; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/events/wsdl/PullPointSubscription/SetSynchronizationPointRequest"; - soap_tmp___tevpps__SetSynchronizationPoint.tev__SetSynchronizationPoint = tev__SetSynchronizationPoint; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tevpps__SetSynchronizationPoint(soap, &soap_tmp___tevpps__SetSynchronizationPoint); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpps__SetSynchronizationPoint(soap, &soap_tmp___tevpps__SetSynchronizationPoint, "-tevpps:SetSynchronizationPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tevpps__SetSynchronizationPoint(soap, &soap_tmp___tevpps__SetSynchronizationPoint, "-tevpps:SetSynchronizationPoint", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int PullPointSubscriptionBindingProxy::recv_SetSynchronizationPoint(_tev__SetSynchronizationPointResponse &tev__SetSynchronizationPointResponse) -{ - tev__SetSynchronizationPointResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tev__SetSynchronizationPointResponse.soap_get(soap, "tev:SetSynchronizationPointResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapPullPointSubscriptionBindingProxy.h b/gen/soapPullPointSubscriptionBindingProxy.h deleted file mode 100644 index 6915101..0000000 --- a/gen/soapPullPointSubscriptionBindingProxy.h +++ /dev/null @@ -1,111 +0,0 @@ -/* soapPullPointSubscriptionBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapPullPointSubscriptionBindingProxy_H -#define soapPullPointSubscriptionBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC PullPointSubscriptionBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'PullPointSubscriptionBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - PullPointSubscriptionBindingProxy(); - /// Copy constructor - PullPointSubscriptionBindingProxy(const PullPointSubscriptionBindingProxy& rhs); - /// Construct proxy given a shared managing context - PullPointSubscriptionBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - PullPointSubscriptionBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - PullPointSubscriptionBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - PullPointSubscriptionBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - PullPointSubscriptionBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - PullPointSubscriptionBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~PullPointSubscriptionBindingProxy(); - /// Initializer used by constructors - virtual void PullPointSubscriptionBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual PullPointSubscriptionBindingProxy *copy(); - /// Copy assignment - PullPointSubscriptionBindingProxy& operator=(const PullPointSubscriptionBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'PullMessages' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int PullMessages(_tev__PullMessages *tev__PullMessages, _tev__PullMessagesResponse &tev__PullMessagesResponse) { return this->PullMessages(NULL, NULL, tev__PullMessages, tev__PullMessagesResponse); } - /// Web service synchronous operation 'PullMessages' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int PullMessages(const char *soap_endpoint_url, const char *soap_action, _tev__PullMessages *tev__PullMessages, _tev__PullMessagesResponse &tev__PullMessagesResponse) { return this->send_PullMessages(soap_endpoint_url, soap_action, tev__PullMessages) || this->recv_PullMessages(tev__PullMessagesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_PullMessages' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_PullMessages(const char *soap_endpoint_url, const char *soap_action, _tev__PullMessages *tev__PullMessages); - /// Web service asynchronous operation 'recv_PullMessages' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_PullMessages(_tev__PullMessagesResponse &tev__PullMessagesResponse); - // - /// Web service synchronous operation 'Seek' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int Seek(_tev__Seek *tev__Seek, _tev__SeekResponse &tev__SeekResponse) { return this->Seek(NULL, NULL, tev__Seek, tev__SeekResponse); } - /// Web service synchronous operation 'Seek' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int Seek(const char *soap_endpoint_url, const char *soap_action, _tev__Seek *tev__Seek, _tev__SeekResponse &tev__SeekResponse) { return this->send_Seek(soap_endpoint_url, soap_action, tev__Seek) || this->recv_Seek(tev__SeekResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_Seek' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_Seek(const char *soap_endpoint_url, const char *soap_action, _tev__Seek *tev__Seek); - /// Web service asynchronous operation 'recv_Seek' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_Seek(_tev__SeekResponse &tev__SeekResponse); - // - /// Web service synchronous operation 'SetSynchronizationPoint' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetSynchronizationPoint(_tev__SetSynchronizationPoint *tev__SetSynchronizationPoint, _tev__SetSynchronizationPointResponse &tev__SetSynchronizationPointResponse) { return this->SetSynchronizationPoint(NULL, NULL, tev__SetSynchronizationPoint, tev__SetSynchronizationPointResponse); } - /// Web service synchronous operation 'SetSynchronizationPoint' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetSynchronizationPoint(const char *soap_endpoint_url, const char *soap_action, _tev__SetSynchronizationPoint *tev__SetSynchronizationPoint, _tev__SetSynchronizationPointResponse &tev__SetSynchronizationPointResponse) { return this->send_SetSynchronizationPoint(soap_endpoint_url, soap_action, tev__SetSynchronizationPoint) || this->recv_SetSynchronizationPoint(tev__SetSynchronizationPointResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetSynchronizationPoint' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetSynchronizationPoint(const char *soap_endpoint_url, const char *soap_action, _tev__SetSynchronizationPoint *tev__SetSynchronizationPoint); - /// Web service asynchronous operation 'recv_SetSynchronizationPoint' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetSynchronizationPoint(_tev__SetSynchronizationPointResponse &tev__SetSynchronizationPointResponse); - }; -#endif diff --git a/gen/soapReceiverBindingProxy.h b/gen/soapReceiverBindingProxy.h deleted file mode 100644 index 73d2652..0000000 --- a/gen/soapReceiverBindingProxy.h +++ /dev/null @@ -1,156 +0,0 @@ -/* soapReceiverBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapReceiverBindingProxy_H -#define soapReceiverBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC ReceiverBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'ReceiverBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - ReceiverBindingProxy(); - /// Copy constructor - ReceiverBindingProxy(const ReceiverBindingProxy& rhs); - /// Construct proxy given a shared managing context - ReceiverBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - ReceiverBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - ReceiverBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - ReceiverBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - ReceiverBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - ReceiverBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~ReceiverBindingProxy(); - /// Initializer used by constructors - virtual void ReceiverBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual ReceiverBindingProxy *copy(); - /// Copy assignment - ReceiverBindingProxy& operator=(const ReceiverBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'GetServiceCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(_trv__GetServiceCapabilities *trv__GetServiceCapabilities, _trv__GetServiceCapabilitiesResponse &trv__GetServiceCapabilitiesResponse) { return this->GetServiceCapabilities(NULL, NULL, trv__GetServiceCapabilities, trv__GetServiceCapabilitiesResponse); } - /// Web service synchronous operation 'GetServiceCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _trv__GetServiceCapabilities *trv__GetServiceCapabilities, _trv__GetServiceCapabilitiesResponse &trv__GetServiceCapabilitiesResponse) { return this->send_GetServiceCapabilities(soap_endpoint_url, soap_action, trv__GetServiceCapabilities) || this->recv_GetServiceCapabilities(trv__GetServiceCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServiceCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _trv__GetServiceCapabilities *trv__GetServiceCapabilities); - /// Web service asynchronous operation 'recv_GetServiceCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServiceCapabilities(_trv__GetServiceCapabilitiesResponse &trv__GetServiceCapabilitiesResponse); - // - /// Web service synchronous operation 'GetReceivers' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetReceivers(_trv__GetReceivers *trv__GetReceivers, _trv__GetReceiversResponse &trv__GetReceiversResponse) { return this->GetReceivers(NULL, NULL, trv__GetReceivers, trv__GetReceiversResponse); } - /// Web service synchronous operation 'GetReceivers' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetReceivers(const char *soap_endpoint_url, const char *soap_action, _trv__GetReceivers *trv__GetReceivers, _trv__GetReceiversResponse &trv__GetReceiversResponse) { return this->send_GetReceivers(soap_endpoint_url, soap_action, trv__GetReceivers) || this->recv_GetReceivers(trv__GetReceiversResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetReceivers' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetReceivers(const char *soap_endpoint_url, const char *soap_action, _trv__GetReceivers *trv__GetReceivers); - /// Web service asynchronous operation 'recv_GetReceivers' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetReceivers(_trv__GetReceiversResponse &trv__GetReceiversResponse); - // - /// Web service synchronous operation 'GetReceiver' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetReceiver(_trv__GetReceiver *trv__GetReceiver, _trv__GetReceiverResponse &trv__GetReceiverResponse) { return this->GetReceiver(NULL, NULL, trv__GetReceiver, trv__GetReceiverResponse); } - /// Web service synchronous operation 'GetReceiver' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__GetReceiver *trv__GetReceiver, _trv__GetReceiverResponse &trv__GetReceiverResponse) { return this->send_GetReceiver(soap_endpoint_url, soap_action, trv__GetReceiver) || this->recv_GetReceiver(trv__GetReceiverResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetReceiver' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__GetReceiver *trv__GetReceiver); - /// Web service asynchronous operation 'recv_GetReceiver' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetReceiver(_trv__GetReceiverResponse &trv__GetReceiverResponse); - // - /// Web service synchronous operation 'CreateReceiver' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int CreateReceiver(_trv__CreateReceiver *trv__CreateReceiver, _trv__CreateReceiverResponse &trv__CreateReceiverResponse) { return this->CreateReceiver(NULL, NULL, trv__CreateReceiver, trv__CreateReceiverResponse); } - /// Web service synchronous operation 'CreateReceiver' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int CreateReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__CreateReceiver *trv__CreateReceiver, _trv__CreateReceiverResponse &trv__CreateReceiverResponse) { return this->send_CreateReceiver(soap_endpoint_url, soap_action, trv__CreateReceiver) || this->recv_CreateReceiver(trv__CreateReceiverResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_CreateReceiver' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_CreateReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__CreateReceiver *trv__CreateReceiver); - /// Web service asynchronous operation 'recv_CreateReceiver' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_CreateReceiver(_trv__CreateReceiverResponse &trv__CreateReceiverResponse); - // - /// Web service synchronous operation 'DeleteReceiver' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int DeleteReceiver(_trv__DeleteReceiver *trv__DeleteReceiver, _trv__DeleteReceiverResponse &trv__DeleteReceiverResponse) { return this->DeleteReceiver(NULL, NULL, trv__DeleteReceiver, trv__DeleteReceiverResponse); } - /// Web service synchronous operation 'DeleteReceiver' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int DeleteReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__DeleteReceiver *trv__DeleteReceiver, _trv__DeleteReceiverResponse &trv__DeleteReceiverResponse) { return this->send_DeleteReceiver(soap_endpoint_url, soap_action, trv__DeleteReceiver) || this->recv_DeleteReceiver(trv__DeleteReceiverResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_DeleteReceiver' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_DeleteReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__DeleteReceiver *trv__DeleteReceiver); - /// Web service asynchronous operation 'recv_DeleteReceiver' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_DeleteReceiver(_trv__DeleteReceiverResponse &trv__DeleteReceiverResponse); - // - /// Web service synchronous operation 'ConfigureReceiver' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int ConfigureReceiver(_trv__ConfigureReceiver *trv__ConfigureReceiver, _trv__ConfigureReceiverResponse &trv__ConfigureReceiverResponse) { return this->ConfigureReceiver(NULL, NULL, trv__ConfigureReceiver, trv__ConfigureReceiverResponse); } - /// Web service synchronous operation 'ConfigureReceiver' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int ConfigureReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__ConfigureReceiver *trv__ConfigureReceiver, _trv__ConfigureReceiverResponse &trv__ConfigureReceiverResponse) { return this->send_ConfigureReceiver(soap_endpoint_url, soap_action, trv__ConfigureReceiver) || this->recv_ConfigureReceiver(trv__ConfigureReceiverResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_ConfigureReceiver' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_ConfigureReceiver(const char *soap_endpoint_url, const char *soap_action, _trv__ConfigureReceiver *trv__ConfigureReceiver); - /// Web service asynchronous operation 'recv_ConfigureReceiver' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_ConfigureReceiver(_trv__ConfigureReceiverResponse &trv__ConfigureReceiverResponse); - // - /// Web service synchronous operation 'SetReceiverMode' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetReceiverMode(_trv__SetReceiverMode *trv__SetReceiverMode, _trv__SetReceiverModeResponse &trv__SetReceiverModeResponse) { return this->SetReceiverMode(NULL, NULL, trv__SetReceiverMode, trv__SetReceiverModeResponse); } - /// Web service synchronous operation 'SetReceiverMode' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetReceiverMode(const char *soap_endpoint_url, const char *soap_action, _trv__SetReceiverMode *trv__SetReceiverMode, _trv__SetReceiverModeResponse &trv__SetReceiverModeResponse) { return this->send_SetReceiverMode(soap_endpoint_url, soap_action, trv__SetReceiverMode) || this->recv_SetReceiverMode(trv__SetReceiverModeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetReceiverMode' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetReceiverMode(const char *soap_endpoint_url, const char *soap_action, _trv__SetReceiverMode *trv__SetReceiverMode); - /// Web service asynchronous operation 'recv_SetReceiverMode' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetReceiverMode(_trv__SetReceiverModeResponse &trv__SetReceiverModeResponse); - // - /// Web service synchronous operation 'GetReceiverState' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetReceiverState(_trv__GetReceiverState *trv__GetReceiverState, _trv__GetReceiverStateResponse &trv__GetReceiverStateResponse) { return this->GetReceiverState(NULL, NULL, trv__GetReceiverState, trv__GetReceiverStateResponse); } - /// Web service synchronous operation 'GetReceiverState' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetReceiverState(const char *soap_endpoint_url, const char *soap_action, _trv__GetReceiverState *trv__GetReceiverState, _trv__GetReceiverStateResponse &trv__GetReceiverStateResponse) { return this->send_GetReceiverState(soap_endpoint_url, soap_action, trv__GetReceiverState) || this->recv_GetReceiverState(trv__GetReceiverStateResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetReceiverState' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetReceiverState(const char *soap_endpoint_url, const char *soap_action, _trv__GetReceiverState *trv__GetReceiverState); - /// Web service asynchronous operation 'recv_GetReceiverState' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetReceiverState(_trv__GetReceiverStateResponse &trv__GetReceiverStateResponse); - }; -#endif diff --git a/gen/soapReceiverBindingProxy.o b/gen/soapReceiverBindingProxy.o deleted file mode 100644 index 10a3563..0000000 Binary files a/gen/soapReceiverBindingProxy.o and /dev/null differ diff --git a/gen/soapReceiverBindingService.cpp b/gen/soapReceiverBindingService.cpp deleted file mode 100644 index a22dc6d..0000000 --- a/gen/soapReceiverBindingService.cpp +++ /dev/null @@ -1,653 +0,0 @@ -/* soapReceiverBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapReceiverBindingService.h" - -ReceiverBindingService::ReceiverBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - ReceiverBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -ReceiverBindingService::ReceiverBindingService(const ReceiverBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -ReceiverBindingService::ReceiverBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - ReceiverBindingService_init(_soap->imode, _soap->omode); -} - -ReceiverBindingService::ReceiverBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - ReceiverBindingService_init(iomode, iomode); -} - -ReceiverBindingService::ReceiverBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - ReceiverBindingService_init(imode, omode); -} - -ReceiverBindingService::~ReceiverBindingService() -{ if (this->soap_own) - { ReceiverBindingService::destroy(); - soap_free(this->soap); - } -} - -void ReceiverBindingService::ReceiverBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void ReceiverBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void ReceiverBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - ReceiverBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -ReceiverBindingService *ReceiverBindingService::copy() -{ ReceiverBindingService *dup = SOAP_NEW_UNMANAGED(ReceiverBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -ReceiverBindingService& ReceiverBindingService::operator=(const ReceiverBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int ReceiverBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int ReceiverBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int ReceiverBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int ReceiverBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int ReceiverBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int ReceiverBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void ReceiverBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void ReceiverBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *ReceiverBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void ReceiverBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void ReceiverBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *ReceiverBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int ReceiverBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int ReceiverBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET ReceiverBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET ReceiverBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int ReceiverBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int ReceiverBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___trv__GetServiceCapabilities(struct soap*, ReceiverBindingService*); -static int serve___trv__GetReceivers(struct soap*, ReceiverBindingService*); -static int serve___trv__GetReceiver(struct soap*, ReceiverBindingService*); -static int serve___trv__CreateReceiver(struct soap*, ReceiverBindingService*); -static int serve___trv__DeleteReceiver(struct soap*, ReceiverBindingService*); -static int serve___trv__ConfigureReceiver(struct soap*, ReceiverBindingService*); -static int serve___trv__SetReceiverMode(struct soap*, ReceiverBindingService*); -static int serve___trv__GetReceiverState(struct soap*, ReceiverBindingService*); - -int ReceiverBindingService::dispatch() -{ return dispatch(this->soap); -} - -int ReceiverBindingService::dispatch(struct soap* soap) -{ - ReceiverBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "trv:GetServiceCapabilities")) - return serve___trv__GetServiceCapabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "trv:GetReceivers")) - return serve___trv__GetReceivers(soap, this); - if (!soap_match_tag(soap, soap->tag, "trv:GetReceiver")) - return serve___trv__GetReceiver(soap, this); - if (!soap_match_tag(soap, soap->tag, "trv:CreateReceiver")) - return serve___trv__CreateReceiver(soap, this); - if (!soap_match_tag(soap, soap->tag, "trv:DeleteReceiver")) - return serve___trv__DeleteReceiver(soap, this); - if (!soap_match_tag(soap, soap->tag, "trv:ConfigureReceiver")) - return serve___trv__ConfigureReceiver(soap, this); - if (!soap_match_tag(soap, soap->tag, "trv:SetReceiverMode")) - return serve___trv__SetReceiverMode(soap, this); - if (!soap_match_tag(soap, soap->tag, "trv:GetReceiverState")) - return serve___trv__GetReceiverState(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___trv__GetServiceCapabilities(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__GetServiceCapabilities soap_tmp___trv__GetServiceCapabilities; - _trv__GetServiceCapabilitiesResponse trv__GetServiceCapabilitiesResponse; - trv__GetServiceCapabilitiesResponse.soap_default(soap); - soap_default___trv__GetServiceCapabilities(soap, &soap_tmp___trv__GetServiceCapabilities); - if (!soap_get___trv__GetServiceCapabilities(soap, &soap_tmp___trv__GetServiceCapabilities, "-trv:GetServiceCapabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetServiceCapabilities(soap_tmp___trv__GetServiceCapabilities.trv__GetServiceCapabilities, trv__GetServiceCapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__GetServiceCapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetServiceCapabilitiesResponse.soap_put(soap, "trv:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetServiceCapabilitiesResponse.soap_put(soap, "trv:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___trv__GetReceivers(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__GetReceivers soap_tmp___trv__GetReceivers; - _trv__GetReceiversResponse trv__GetReceiversResponse; - trv__GetReceiversResponse.soap_default(soap); - soap_default___trv__GetReceivers(soap, &soap_tmp___trv__GetReceivers); - if (!soap_get___trv__GetReceivers(soap, &soap_tmp___trv__GetReceivers, "-trv:GetReceivers", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetReceivers(soap_tmp___trv__GetReceivers.trv__GetReceivers, trv__GetReceiversResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__GetReceiversResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetReceiversResponse.soap_put(soap, "trv:GetReceiversResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetReceiversResponse.soap_put(soap, "trv:GetReceiversResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___trv__GetReceiver(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__GetReceiver soap_tmp___trv__GetReceiver; - _trv__GetReceiverResponse trv__GetReceiverResponse; - trv__GetReceiverResponse.soap_default(soap); - soap_default___trv__GetReceiver(soap, &soap_tmp___trv__GetReceiver); - if (!soap_get___trv__GetReceiver(soap, &soap_tmp___trv__GetReceiver, "-trv:GetReceiver", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetReceiver(soap_tmp___trv__GetReceiver.trv__GetReceiver, trv__GetReceiverResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__GetReceiverResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetReceiverResponse.soap_put(soap, "trv:GetReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetReceiverResponse.soap_put(soap, "trv:GetReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___trv__CreateReceiver(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__CreateReceiver soap_tmp___trv__CreateReceiver; - _trv__CreateReceiverResponse trv__CreateReceiverResponse; - trv__CreateReceiverResponse.soap_default(soap); - soap_default___trv__CreateReceiver(soap, &soap_tmp___trv__CreateReceiver); - if (!soap_get___trv__CreateReceiver(soap, &soap_tmp___trv__CreateReceiver, "-trv:CreateReceiver", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->CreateReceiver(soap_tmp___trv__CreateReceiver.trv__CreateReceiver, trv__CreateReceiverResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__CreateReceiverResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__CreateReceiverResponse.soap_put(soap, "trv:CreateReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__CreateReceiverResponse.soap_put(soap, "trv:CreateReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___trv__DeleteReceiver(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__DeleteReceiver soap_tmp___trv__DeleteReceiver; - _trv__DeleteReceiverResponse trv__DeleteReceiverResponse; - trv__DeleteReceiverResponse.soap_default(soap); - soap_default___trv__DeleteReceiver(soap, &soap_tmp___trv__DeleteReceiver); - if (!soap_get___trv__DeleteReceiver(soap, &soap_tmp___trv__DeleteReceiver, "-trv:DeleteReceiver", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->DeleteReceiver(soap_tmp___trv__DeleteReceiver.trv__DeleteReceiver, trv__DeleteReceiverResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__DeleteReceiverResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__DeleteReceiverResponse.soap_put(soap, "trv:DeleteReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__DeleteReceiverResponse.soap_put(soap, "trv:DeleteReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___trv__ConfigureReceiver(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__ConfigureReceiver soap_tmp___trv__ConfigureReceiver; - _trv__ConfigureReceiverResponse trv__ConfigureReceiverResponse; - trv__ConfigureReceiverResponse.soap_default(soap); - soap_default___trv__ConfigureReceiver(soap, &soap_tmp___trv__ConfigureReceiver); - if (!soap_get___trv__ConfigureReceiver(soap, &soap_tmp___trv__ConfigureReceiver, "-trv:ConfigureReceiver", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->ConfigureReceiver(soap_tmp___trv__ConfigureReceiver.trv__ConfigureReceiver, trv__ConfigureReceiverResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__ConfigureReceiverResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__ConfigureReceiverResponse.soap_put(soap, "trv:ConfigureReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__ConfigureReceiverResponse.soap_put(soap, "trv:ConfigureReceiverResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___trv__SetReceiverMode(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__SetReceiverMode soap_tmp___trv__SetReceiverMode; - _trv__SetReceiverModeResponse trv__SetReceiverModeResponse; - trv__SetReceiverModeResponse.soap_default(soap); - soap_default___trv__SetReceiverMode(soap, &soap_tmp___trv__SetReceiverMode); - if (!soap_get___trv__SetReceiverMode(soap, &soap_tmp___trv__SetReceiverMode, "-trv:SetReceiverMode", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->SetReceiverMode(soap_tmp___trv__SetReceiverMode.trv__SetReceiverMode, trv__SetReceiverModeResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__SetReceiverModeResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__SetReceiverModeResponse.soap_put(soap, "trv:SetReceiverModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__SetReceiverModeResponse.soap_put(soap, "trv:SetReceiverModeResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___trv__GetReceiverState(struct soap *soap, ReceiverBindingService *service) -{ struct __trv__GetReceiverState soap_tmp___trv__GetReceiverState; - _trv__GetReceiverStateResponse trv__GetReceiverStateResponse; - trv__GetReceiverStateResponse.soap_default(soap); - soap_default___trv__GetReceiverState(soap, &soap_tmp___trv__GetReceiverState); - if (!soap_get___trv__GetReceiverState(soap, &soap_tmp___trv__GetReceiverState, "-trv:GetReceiverState", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetReceiverState(soap_tmp___trv__GetReceiverState.trv__GetReceiverState, trv__GetReceiverStateResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - trv__GetReceiverStateResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetReceiverStateResponse.soap_put(soap, "trv:GetReceiverStateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || trv__GetReceiverStateResponse.soap_put(soap, "trv:GetReceiverStateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapReceiverBindingService.h b/gen/soapReceiverBindingService.h deleted file mode 100644 index b96c358..0000000 --- a/gen/soapReceiverBindingService.h +++ /dev/null @@ -1,124 +0,0 @@ -/* soapReceiverBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapReceiverBindingService_H -#define soapReceiverBindingService_H -#include "soapH.h" - - class SOAP_CMAC ReceiverBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - ReceiverBindingService(); - /// Copy constructor - ReceiverBindingService(const ReceiverBindingService&); - /// Construct service given a shared managing context - ReceiverBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - ReceiverBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - ReceiverBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~ReceiverBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void ReceiverBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual ReceiverBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - ReceiverBindingService& operator=(const ReceiverBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_trv__GetServiceCapabilities *trv__GetServiceCapabilities, _trv__GetServiceCapabilitiesResponse &trv__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetReceivers' implementation, should return SOAP_OK or error code - virtual int GetReceivers(_trv__GetReceivers *trv__GetReceivers, _trv__GetReceiversResponse &trv__GetReceiversResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetReceiver' implementation, should return SOAP_OK or error code - virtual int GetReceiver(_trv__GetReceiver *trv__GetReceiver, _trv__GetReceiverResponse &trv__GetReceiverResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateReceiver' implementation, should return SOAP_OK or error code - virtual int CreateReceiver(_trv__CreateReceiver *trv__CreateReceiver, _trv__CreateReceiverResponse &trv__CreateReceiverResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteReceiver' implementation, should return SOAP_OK or error code - virtual int DeleteReceiver(_trv__DeleteReceiver *trv__DeleteReceiver, _trv__DeleteReceiverResponse &trv__DeleteReceiverResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'ConfigureReceiver' implementation, should return SOAP_OK or error code - virtual int ConfigureReceiver(_trv__ConfigureReceiver *trv__ConfigureReceiver, _trv__ConfigureReceiverResponse &trv__ConfigureReceiverResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetReceiverMode' implementation, should return SOAP_OK or error code - virtual int SetReceiverMode(_trv__SetReceiverMode *trv__SetReceiverMode, _trv__SetReceiverModeResponse &trv__SetReceiverModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetReceiverState' implementation, should return SOAP_OK or error code - virtual int GetReceiverState(_trv__GetReceiverState *trv__GetReceiverState, _trv__GetReceiverStateResponse &trv__GetReceiverStateResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapReceiverBindingService.o b/gen/soapReceiverBindingService.o deleted file mode 100644 index 5213ae9..0000000 Binary files a/gen/soapReceiverBindingService.o and /dev/null differ diff --git a/gen/soapRecordingBindingProxy.cpp b/gen/soapRecordingBindingProxy.cpp deleted file mode 100644 index 2720b0e..0000000 --- a/gen/soapRecordingBindingProxy.cpp +++ /dev/null @@ -1,1403 +0,0 @@ -/* soapRecordingBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapRecordingBindingProxy.h" - -RecordingBindingProxy::RecordingBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - RecordingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -RecordingBindingProxy::RecordingBindingProxy(const RecordingBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -RecordingBindingProxy::RecordingBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - RecordingBindingProxy_init(_soap->imode, _soap->omode); -} - -RecordingBindingProxy::RecordingBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - RecordingBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -RecordingBindingProxy::RecordingBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - RecordingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -RecordingBindingProxy::RecordingBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - RecordingBindingProxy_init(iomode, iomode); -} - -RecordingBindingProxy::RecordingBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - RecordingBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -RecordingBindingProxy::RecordingBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - RecordingBindingProxy_init(imode, omode); -} - -RecordingBindingProxy::~RecordingBindingProxy() -{ if (this->soap_own) - { RecordingBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void RecordingBindingProxy::RecordingBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -RecordingBindingProxy *RecordingBindingProxy::copy() -{ RecordingBindingProxy *dup = SOAP_NEW_UNMANAGED(RecordingBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -RecordingBindingProxy& RecordingBindingProxy::operator=(const RecordingBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void RecordingBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void RecordingBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - RecordingBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void RecordingBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void RecordingBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *RecordingBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *RecordingBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *RecordingBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *RecordingBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *RecordingBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int RecordingBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int RecordingBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void RecordingBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void RecordingBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *RecordingBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int RecordingBindingProxy::send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _trc__GetServiceCapabilities *trc__GetServiceCapabilities) -{ - struct __trc__GetServiceCapabilities soap_tmp___trc__GetServiceCapabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetServiceCapabilities"; - soap_tmp___trc__GetServiceCapabilities.trc__GetServiceCapabilities = trc__GetServiceCapabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetServiceCapabilities(soap, &soap_tmp___trc__GetServiceCapabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetServiceCapabilities(soap, &soap_tmp___trc__GetServiceCapabilities, "-trc:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetServiceCapabilities(soap, &soap_tmp___trc__GetServiceCapabilities, "-trc:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetServiceCapabilities(_trc__GetServiceCapabilitiesResponse &trc__GetServiceCapabilitiesResponse) -{ - trc__GetServiceCapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetServiceCapabilitiesResponse.soap_get(soap, "trc:GetServiceCapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_CreateRecording(const char *soap_endpoint_url, const char *soap_action, _trc__CreateRecording *trc__CreateRecording) -{ - struct __trc__CreateRecording soap_tmp___trc__CreateRecording; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/CreateRecording"; - soap_tmp___trc__CreateRecording.trc__CreateRecording = trc__CreateRecording; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__CreateRecording(soap, &soap_tmp___trc__CreateRecording); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__CreateRecording(soap, &soap_tmp___trc__CreateRecording, "-trc:CreateRecording", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__CreateRecording(soap, &soap_tmp___trc__CreateRecording, "-trc:CreateRecording", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_CreateRecording(_trc__CreateRecordingResponse &trc__CreateRecordingResponse) -{ - trc__CreateRecordingResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__CreateRecordingResponse.soap_get(soap, "trc:CreateRecordingResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_DeleteRecording(const char *soap_endpoint_url, const char *soap_action, _trc__DeleteRecording *trc__DeleteRecording) -{ - struct __trc__DeleteRecording soap_tmp___trc__DeleteRecording; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/DeleteRecording"; - soap_tmp___trc__DeleteRecording.trc__DeleteRecording = trc__DeleteRecording; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__DeleteRecording(soap, &soap_tmp___trc__DeleteRecording); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__DeleteRecording(soap, &soap_tmp___trc__DeleteRecording, "-trc:DeleteRecording", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__DeleteRecording(soap, &soap_tmp___trc__DeleteRecording, "-trc:DeleteRecording", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_DeleteRecording(_trc__DeleteRecordingResponse &trc__DeleteRecordingResponse) -{ - trc__DeleteRecordingResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__DeleteRecordingResponse.soap_get(soap, "trc:DeleteRecordingResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetRecordings(const char *soap_endpoint_url, const char *soap_action, _trc__GetRecordings *trc__GetRecordings) -{ - struct __trc__GetRecordings soap_tmp___trc__GetRecordings; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetRecordings"; - soap_tmp___trc__GetRecordings.trc__GetRecordings = trc__GetRecordings; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetRecordings(soap, &soap_tmp___trc__GetRecordings); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordings(soap, &soap_tmp___trc__GetRecordings, "-trc:GetRecordings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordings(soap, &soap_tmp___trc__GetRecordings, "-trc:GetRecordings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetRecordings(_trc__GetRecordingsResponse &trc__GetRecordingsResponse) -{ - trc__GetRecordingsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetRecordingsResponse.soap_get(soap, "trc:GetRecordingsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_SetRecordingConfiguration(const char *soap_endpoint_url, const char *soap_action, _trc__SetRecordingConfiguration *trc__SetRecordingConfiguration) -{ - struct __trc__SetRecordingConfiguration soap_tmp___trc__SetRecordingConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/SetRecordingConfiguration"; - soap_tmp___trc__SetRecordingConfiguration.trc__SetRecordingConfiguration = trc__SetRecordingConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__SetRecordingConfiguration(soap, &soap_tmp___trc__SetRecordingConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetRecordingConfiguration(soap, &soap_tmp___trc__SetRecordingConfiguration, "-trc:SetRecordingConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetRecordingConfiguration(soap, &soap_tmp___trc__SetRecordingConfiguration, "-trc:SetRecordingConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_SetRecordingConfiguration(_trc__SetRecordingConfigurationResponse &trc__SetRecordingConfigurationResponse) -{ - trc__SetRecordingConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__SetRecordingConfigurationResponse.soap_get(soap, "trc:SetRecordingConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetRecordingConfiguration(const char *soap_endpoint_url, const char *soap_action, _trc__GetRecordingConfiguration *trc__GetRecordingConfiguration) -{ - struct __trc__GetRecordingConfiguration soap_tmp___trc__GetRecordingConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetRecordingConfiguration"; - soap_tmp___trc__GetRecordingConfiguration.trc__GetRecordingConfiguration = trc__GetRecordingConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetRecordingConfiguration(soap, &soap_tmp___trc__GetRecordingConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingConfiguration(soap, &soap_tmp___trc__GetRecordingConfiguration, "-trc:GetRecordingConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingConfiguration(soap, &soap_tmp___trc__GetRecordingConfiguration, "-trc:GetRecordingConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetRecordingConfiguration(_trc__GetRecordingConfigurationResponse &trc__GetRecordingConfigurationResponse) -{ - trc__GetRecordingConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetRecordingConfigurationResponse.soap_get(soap, "trc:GetRecordingConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetRecordingOptions(const char *soap_endpoint_url, const char *soap_action, _trc__GetRecordingOptions *trc__GetRecordingOptions) -{ - struct __trc__GetRecordingOptions soap_tmp___trc__GetRecordingOptions; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetRecordingOptions"; - soap_tmp___trc__GetRecordingOptions.trc__GetRecordingOptions = trc__GetRecordingOptions; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetRecordingOptions(soap, &soap_tmp___trc__GetRecordingOptions); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingOptions(soap, &soap_tmp___trc__GetRecordingOptions, "-trc:GetRecordingOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingOptions(soap, &soap_tmp___trc__GetRecordingOptions, "-trc:GetRecordingOptions", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetRecordingOptions(_trc__GetRecordingOptionsResponse &trc__GetRecordingOptionsResponse) -{ - trc__GetRecordingOptionsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetRecordingOptionsResponse.soap_get(soap, "trc:GetRecordingOptionsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_CreateTrack(const char *soap_endpoint_url, const char *soap_action, _trc__CreateTrack *trc__CreateTrack) -{ - struct __trc__CreateTrack soap_tmp___trc__CreateTrack; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/CreateTrack"; - soap_tmp___trc__CreateTrack.trc__CreateTrack = trc__CreateTrack; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__CreateTrack(soap, &soap_tmp___trc__CreateTrack); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__CreateTrack(soap, &soap_tmp___trc__CreateTrack, "-trc:CreateTrack", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__CreateTrack(soap, &soap_tmp___trc__CreateTrack, "-trc:CreateTrack", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_CreateTrack(_trc__CreateTrackResponse &trc__CreateTrackResponse) -{ - trc__CreateTrackResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__CreateTrackResponse.soap_get(soap, "trc:CreateTrackResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_DeleteTrack(const char *soap_endpoint_url, const char *soap_action, _trc__DeleteTrack *trc__DeleteTrack) -{ - struct __trc__DeleteTrack soap_tmp___trc__DeleteTrack; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/DeleteTrack"; - soap_tmp___trc__DeleteTrack.trc__DeleteTrack = trc__DeleteTrack; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__DeleteTrack(soap, &soap_tmp___trc__DeleteTrack); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__DeleteTrack(soap, &soap_tmp___trc__DeleteTrack, "-trc:DeleteTrack", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__DeleteTrack(soap, &soap_tmp___trc__DeleteTrack, "-trc:DeleteTrack", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_DeleteTrack(_trc__DeleteTrackResponse &trc__DeleteTrackResponse) -{ - trc__DeleteTrackResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__DeleteTrackResponse.soap_get(soap, "trc:DeleteTrackResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetTrackConfiguration(const char *soap_endpoint_url, const char *soap_action, _trc__GetTrackConfiguration *trc__GetTrackConfiguration) -{ - struct __trc__GetTrackConfiguration soap_tmp___trc__GetTrackConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetTrackConfiguration"; - soap_tmp___trc__GetTrackConfiguration.trc__GetTrackConfiguration = trc__GetTrackConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetTrackConfiguration(soap, &soap_tmp___trc__GetTrackConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetTrackConfiguration(soap, &soap_tmp___trc__GetTrackConfiguration, "-trc:GetTrackConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetTrackConfiguration(soap, &soap_tmp___trc__GetTrackConfiguration, "-trc:GetTrackConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetTrackConfiguration(_trc__GetTrackConfigurationResponse &trc__GetTrackConfigurationResponse) -{ - trc__GetTrackConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetTrackConfigurationResponse.soap_get(soap, "trc:GetTrackConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_SetTrackConfiguration(const char *soap_endpoint_url, const char *soap_action, _trc__SetTrackConfiguration *trc__SetTrackConfiguration) -{ - struct __trc__SetTrackConfiguration soap_tmp___trc__SetTrackConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/SetTrackConfiguration"; - soap_tmp___trc__SetTrackConfiguration.trc__SetTrackConfiguration = trc__SetTrackConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__SetTrackConfiguration(soap, &soap_tmp___trc__SetTrackConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetTrackConfiguration(soap, &soap_tmp___trc__SetTrackConfiguration, "-trc:SetTrackConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetTrackConfiguration(soap, &soap_tmp___trc__SetTrackConfiguration, "-trc:SetTrackConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_SetTrackConfiguration(_trc__SetTrackConfigurationResponse &trc__SetTrackConfigurationResponse) -{ - trc__SetTrackConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__SetTrackConfigurationResponse.soap_get(soap, "trc:SetTrackConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_CreateRecordingJob(const char *soap_endpoint_url, const char *soap_action, _trc__CreateRecordingJob *trc__CreateRecordingJob) -{ - struct __trc__CreateRecordingJob soap_tmp___trc__CreateRecordingJob; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/CreateRecordingJob"; - soap_tmp___trc__CreateRecordingJob.trc__CreateRecordingJob = trc__CreateRecordingJob; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__CreateRecordingJob(soap, &soap_tmp___trc__CreateRecordingJob); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__CreateRecordingJob(soap, &soap_tmp___trc__CreateRecordingJob, "-trc:CreateRecordingJob", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__CreateRecordingJob(soap, &soap_tmp___trc__CreateRecordingJob, "-trc:CreateRecordingJob", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_CreateRecordingJob(_trc__CreateRecordingJobResponse &trc__CreateRecordingJobResponse) -{ - trc__CreateRecordingJobResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__CreateRecordingJobResponse.soap_get(soap, "trc:CreateRecordingJobResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_DeleteRecordingJob(const char *soap_endpoint_url, const char *soap_action, _trc__DeleteRecordingJob *trc__DeleteRecordingJob) -{ - struct __trc__DeleteRecordingJob soap_tmp___trc__DeleteRecordingJob; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/DeleteRecordingJob"; - soap_tmp___trc__DeleteRecordingJob.trc__DeleteRecordingJob = trc__DeleteRecordingJob; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__DeleteRecordingJob(soap, &soap_tmp___trc__DeleteRecordingJob); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__DeleteRecordingJob(soap, &soap_tmp___trc__DeleteRecordingJob, "-trc:DeleteRecordingJob", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__DeleteRecordingJob(soap, &soap_tmp___trc__DeleteRecordingJob, "-trc:DeleteRecordingJob", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_DeleteRecordingJob(_trc__DeleteRecordingJobResponse &trc__DeleteRecordingJobResponse) -{ - trc__DeleteRecordingJobResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__DeleteRecordingJobResponse.soap_get(soap, "trc:DeleteRecordingJobResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetRecordingJobs(const char *soap_endpoint_url, const char *soap_action, _trc__GetRecordingJobs *trc__GetRecordingJobs) -{ - struct __trc__GetRecordingJobs soap_tmp___trc__GetRecordingJobs; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetRecordingJobs"; - soap_tmp___trc__GetRecordingJobs.trc__GetRecordingJobs = trc__GetRecordingJobs; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetRecordingJobs(soap, &soap_tmp___trc__GetRecordingJobs); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingJobs(soap, &soap_tmp___trc__GetRecordingJobs, "-trc:GetRecordingJobs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingJobs(soap, &soap_tmp___trc__GetRecordingJobs, "-trc:GetRecordingJobs", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetRecordingJobs(_trc__GetRecordingJobsResponse &trc__GetRecordingJobsResponse) -{ - trc__GetRecordingJobsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetRecordingJobsResponse.soap_get(soap, "trc:GetRecordingJobsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_SetRecordingJobConfiguration(const char *soap_endpoint_url, const char *soap_action, _trc__SetRecordingJobConfiguration *trc__SetRecordingJobConfiguration) -{ - struct __trc__SetRecordingJobConfiguration soap_tmp___trc__SetRecordingJobConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/SetRecordingJobConfiguration"; - soap_tmp___trc__SetRecordingJobConfiguration.trc__SetRecordingJobConfiguration = trc__SetRecordingJobConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__SetRecordingJobConfiguration(soap, &soap_tmp___trc__SetRecordingJobConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetRecordingJobConfiguration(soap, &soap_tmp___trc__SetRecordingJobConfiguration, "-trc:SetRecordingJobConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetRecordingJobConfiguration(soap, &soap_tmp___trc__SetRecordingJobConfiguration, "-trc:SetRecordingJobConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_SetRecordingJobConfiguration(_trc__SetRecordingJobConfigurationResponse &trc__SetRecordingJobConfigurationResponse) -{ - trc__SetRecordingJobConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__SetRecordingJobConfigurationResponse.soap_get(soap, "trc:SetRecordingJobConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetRecordingJobConfiguration(const char *soap_endpoint_url, const char *soap_action, _trc__GetRecordingJobConfiguration *trc__GetRecordingJobConfiguration) -{ - struct __trc__GetRecordingJobConfiguration soap_tmp___trc__GetRecordingJobConfiguration; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetRecordingJobConfiguration"; - soap_tmp___trc__GetRecordingJobConfiguration.trc__GetRecordingJobConfiguration = trc__GetRecordingJobConfiguration; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetRecordingJobConfiguration(soap, &soap_tmp___trc__GetRecordingJobConfiguration); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingJobConfiguration(soap, &soap_tmp___trc__GetRecordingJobConfiguration, "-trc:GetRecordingJobConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingJobConfiguration(soap, &soap_tmp___trc__GetRecordingJobConfiguration, "-trc:GetRecordingJobConfiguration", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetRecordingJobConfiguration(_trc__GetRecordingJobConfigurationResponse &trc__GetRecordingJobConfigurationResponse) -{ - trc__GetRecordingJobConfigurationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetRecordingJobConfigurationResponse.soap_get(soap, "trc:GetRecordingJobConfigurationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_SetRecordingJobMode(const char *soap_endpoint_url, const char *soap_action, _trc__SetRecordingJobMode *trc__SetRecordingJobMode) -{ - struct __trc__SetRecordingJobMode soap_tmp___trc__SetRecordingJobMode; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/SetRecordingJobMode"; - soap_tmp___trc__SetRecordingJobMode.trc__SetRecordingJobMode = trc__SetRecordingJobMode; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__SetRecordingJobMode(soap, &soap_tmp___trc__SetRecordingJobMode); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetRecordingJobMode(soap, &soap_tmp___trc__SetRecordingJobMode, "-trc:SetRecordingJobMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__SetRecordingJobMode(soap, &soap_tmp___trc__SetRecordingJobMode, "-trc:SetRecordingJobMode", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_SetRecordingJobMode(_trc__SetRecordingJobModeResponse &trc__SetRecordingJobModeResponse) -{ - trc__SetRecordingJobModeResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__SetRecordingJobModeResponse.soap_get(soap, "trc:SetRecordingJobModeResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetRecordingJobState(const char *soap_endpoint_url, const char *soap_action, _trc__GetRecordingJobState *trc__GetRecordingJobState) -{ - struct __trc__GetRecordingJobState soap_tmp___trc__GetRecordingJobState; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetRecordingJobState"; - soap_tmp___trc__GetRecordingJobState.trc__GetRecordingJobState = trc__GetRecordingJobState; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetRecordingJobState(soap, &soap_tmp___trc__GetRecordingJobState); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingJobState(soap, &soap_tmp___trc__GetRecordingJobState, "-trc:GetRecordingJobState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetRecordingJobState(soap, &soap_tmp___trc__GetRecordingJobState, "-trc:GetRecordingJobState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetRecordingJobState(_trc__GetRecordingJobStateResponse &trc__GetRecordingJobStateResponse) -{ - trc__GetRecordingJobStateResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetRecordingJobStateResponse.soap_get(soap, "trc:GetRecordingJobStateResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_ExportRecordedData(const char *soap_endpoint_url, const char *soap_action, _trc__ExportRecordedData *trc__ExportRecordedData) -{ - struct __trc__ExportRecordedData soap_tmp___trc__ExportRecordedData; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/ExportRecordedData"; - soap_tmp___trc__ExportRecordedData.trc__ExportRecordedData = trc__ExportRecordedData; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__ExportRecordedData(soap, &soap_tmp___trc__ExportRecordedData); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__ExportRecordedData(soap, &soap_tmp___trc__ExportRecordedData, "-trc:ExportRecordedData", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__ExportRecordedData(soap, &soap_tmp___trc__ExportRecordedData, "-trc:ExportRecordedData", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_ExportRecordedData(_trc__ExportRecordedDataResponse &trc__ExportRecordedDataResponse) -{ - trc__ExportRecordedDataResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__ExportRecordedDataResponse.soap_get(soap, "trc:ExportRecordedDataResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_StopExportRecordedData(const char *soap_endpoint_url, const char *soap_action, _trc__StopExportRecordedData *trc__StopExportRecordedData) -{ - struct __trc__StopExportRecordedData soap_tmp___trc__StopExportRecordedData; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/StopExportRecordedData"; - soap_tmp___trc__StopExportRecordedData.trc__StopExportRecordedData = trc__StopExportRecordedData; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__StopExportRecordedData(soap, &soap_tmp___trc__StopExportRecordedData); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__StopExportRecordedData(soap, &soap_tmp___trc__StopExportRecordedData, "-trc:StopExportRecordedData", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__StopExportRecordedData(soap, &soap_tmp___trc__StopExportRecordedData, "-trc:StopExportRecordedData", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_StopExportRecordedData(_trc__StopExportRecordedDataResponse &trc__StopExportRecordedDataResponse) -{ - trc__StopExportRecordedDataResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__StopExportRecordedDataResponse.soap_get(soap, "trc:StopExportRecordedDataResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int RecordingBindingProxy::send_GetExportRecordedDataState(const char *soap_endpoint_url, const char *soap_action, _trc__GetExportRecordedDataState *trc__GetExportRecordedDataState) -{ - struct __trc__GetExportRecordedDataState soap_tmp___trc__GetExportRecordedDataState; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/recording/wsdl/GetExportRecordedDataState"; - soap_tmp___trc__GetExportRecordedDataState.trc__GetExportRecordedDataState = trc__GetExportRecordedDataState; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___trc__GetExportRecordedDataState(soap, &soap_tmp___trc__GetExportRecordedDataState); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetExportRecordedDataState(soap, &soap_tmp___trc__GetExportRecordedDataState, "-trc:GetExportRecordedDataState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___trc__GetExportRecordedDataState(soap, &soap_tmp___trc__GetExportRecordedDataState, "-trc:GetExportRecordedDataState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int RecordingBindingProxy::recv_GetExportRecordedDataState(_trc__GetExportRecordedDataStateResponse &trc__GetExportRecordedDataStateResponse) -{ - trc__GetExportRecordedDataStateResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - trc__GetExportRecordedDataStateResponse.soap_get(soap, "trc:GetExportRecordedDataStateResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapRecordingBindingProxy.o b/gen/soapRecordingBindingProxy.o deleted file mode 100644 index aab5ddf..0000000 Binary files a/gen/soapRecordingBindingProxy.o and /dev/null differ diff --git a/gen/soapRecordingBindingService.h b/gen/soapRecordingBindingService.h deleted file mode 100644 index f98632a..0000000 --- a/gen/soapRecordingBindingService.h +++ /dev/null @@ -1,163 +0,0 @@ -/* soapRecordingBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapRecordingBindingService_H -#define soapRecordingBindingService_H -#include "soapH.h" - - class SOAP_CMAC RecordingBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - RecordingBindingService(); - /// Copy constructor - RecordingBindingService(const RecordingBindingService&); - /// Construct service given a shared managing context - RecordingBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - RecordingBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - RecordingBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~RecordingBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void RecordingBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual RecordingBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - RecordingBindingService& operator=(const RecordingBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_trc__GetServiceCapabilities *trc__GetServiceCapabilities, _trc__GetServiceCapabilitiesResponse &trc__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateRecording' implementation, should return SOAP_OK or error code - virtual int CreateRecording(_trc__CreateRecording *trc__CreateRecording, _trc__CreateRecordingResponse &trc__CreateRecordingResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteRecording' implementation, should return SOAP_OK or error code - virtual int DeleteRecording(_trc__DeleteRecording *trc__DeleteRecording, _trc__DeleteRecordingResponse &trc__DeleteRecordingResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordings' implementation, should return SOAP_OK or error code - virtual int GetRecordings(_trc__GetRecordings *trc__GetRecordings, _trc__GetRecordingsResponse &trc__GetRecordingsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetRecordingConfiguration' implementation, should return SOAP_OK or error code - virtual int SetRecordingConfiguration(_trc__SetRecordingConfiguration *trc__SetRecordingConfiguration, _trc__SetRecordingConfigurationResponse &trc__SetRecordingConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingConfiguration' implementation, should return SOAP_OK or error code - virtual int GetRecordingConfiguration(_trc__GetRecordingConfiguration *trc__GetRecordingConfiguration, _trc__GetRecordingConfigurationResponse &trc__GetRecordingConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingOptions' implementation, should return SOAP_OK or error code - virtual int GetRecordingOptions(_trc__GetRecordingOptions *trc__GetRecordingOptions, _trc__GetRecordingOptionsResponse &trc__GetRecordingOptionsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateTrack' implementation, should return SOAP_OK or error code - virtual int CreateTrack(_trc__CreateTrack *trc__CreateTrack, _trc__CreateTrackResponse &trc__CreateTrackResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteTrack' implementation, should return SOAP_OK or error code - virtual int DeleteTrack(_trc__DeleteTrack *trc__DeleteTrack, _trc__DeleteTrackResponse &trc__DeleteTrackResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetTrackConfiguration' implementation, should return SOAP_OK or error code - virtual int GetTrackConfiguration(_trc__GetTrackConfiguration *trc__GetTrackConfiguration, _trc__GetTrackConfigurationResponse &trc__GetTrackConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetTrackConfiguration' implementation, should return SOAP_OK or error code - virtual int SetTrackConfiguration(_trc__SetTrackConfiguration *trc__SetTrackConfiguration, _trc__SetTrackConfigurationResponse &trc__SetTrackConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'CreateRecordingJob' implementation, should return SOAP_OK or error code - virtual int CreateRecordingJob(_trc__CreateRecordingJob *trc__CreateRecordingJob, _trc__CreateRecordingJobResponse &trc__CreateRecordingJobResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'DeleteRecordingJob' implementation, should return SOAP_OK or error code - virtual int DeleteRecordingJob(_trc__DeleteRecordingJob *trc__DeleteRecordingJob, _trc__DeleteRecordingJobResponse &trc__DeleteRecordingJobResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingJobs' implementation, should return SOAP_OK or error code - virtual int GetRecordingJobs(_trc__GetRecordingJobs *trc__GetRecordingJobs, _trc__GetRecordingJobsResponse &trc__GetRecordingJobsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetRecordingJobConfiguration' implementation, should return SOAP_OK or error code - virtual int SetRecordingJobConfiguration(_trc__SetRecordingJobConfiguration *trc__SetRecordingJobConfiguration, _trc__SetRecordingJobConfigurationResponse &trc__SetRecordingJobConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingJobConfiguration' implementation, should return SOAP_OK or error code - virtual int GetRecordingJobConfiguration(_trc__GetRecordingJobConfiguration *trc__GetRecordingJobConfiguration, _trc__GetRecordingJobConfigurationResponse &trc__GetRecordingJobConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetRecordingJobMode' implementation, should return SOAP_OK or error code - virtual int SetRecordingJobMode(_trc__SetRecordingJobMode *trc__SetRecordingJobMode, _trc__SetRecordingJobModeResponse &trc__SetRecordingJobModeResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingJobState' implementation, should return SOAP_OK or error code - virtual int GetRecordingJobState(_trc__GetRecordingJobState *trc__GetRecordingJobState, _trc__GetRecordingJobStateResponse &trc__GetRecordingJobStateResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'ExportRecordedData' implementation, should return SOAP_OK or error code - virtual int ExportRecordedData(_trc__ExportRecordedData *trc__ExportRecordedData, _trc__ExportRecordedDataResponse &trc__ExportRecordedDataResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'StopExportRecordedData' implementation, should return SOAP_OK or error code - virtual int StopExportRecordedData(_trc__StopExportRecordedData *trc__StopExportRecordedData, _trc__StopExportRecordedDataResponse &trc__StopExportRecordedDataResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetExportRecordedDataState' implementation, should return SOAP_OK or error code - virtual int GetExportRecordedDataState(_trc__GetExportRecordedDataState *trc__GetExportRecordedDataState, _trc__GetExportRecordedDataStateResponse &trc__GetExportRecordedDataStateResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapReplayBindingProxy.h b/gen/soapReplayBindingProxy.h deleted file mode 100644 index b467ae2..0000000 --- a/gen/soapReplayBindingProxy.h +++ /dev/null @@ -1,120 +0,0 @@ -/* soapReplayBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapReplayBindingProxy_H -#define soapReplayBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC ReplayBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'ReplayBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - ReplayBindingProxy(); - /// Copy constructor - ReplayBindingProxy(const ReplayBindingProxy& rhs); - /// Construct proxy given a shared managing context - ReplayBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - ReplayBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - ReplayBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - ReplayBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - ReplayBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - ReplayBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~ReplayBindingProxy(); - /// Initializer used by constructors - virtual void ReplayBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual ReplayBindingProxy *copy(); - /// Copy assignment - ReplayBindingProxy& operator=(const ReplayBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'GetServiceCapabilities' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(_trp__GetServiceCapabilities *trp__GetServiceCapabilities, _trp__GetServiceCapabilitiesResponse &trp__GetServiceCapabilitiesResponse) { return this->GetServiceCapabilities(NULL, NULL, trp__GetServiceCapabilities, trp__GetServiceCapabilitiesResponse); } - /// Web service synchronous operation 'GetServiceCapabilities' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _trp__GetServiceCapabilities *trp__GetServiceCapabilities, _trp__GetServiceCapabilitiesResponse &trp__GetServiceCapabilitiesResponse) { return this->send_GetServiceCapabilities(soap_endpoint_url, soap_action, trp__GetServiceCapabilities) || this->recv_GetServiceCapabilities(trp__GetServiceCapabilitiesResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetServiceCapabilities' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _trp__GetServiceCapabilities *trp__GetServiceCapabilities); - /// Web service asynchronous operation 'recv_GetServiceCapabilities' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetServiceCapabilities(_trp__GetServiceCapabilitiesResponse &trp__GetServiceCapabilitiesResponse); - // - /// Web service synchronous operation 'GetReplayUri' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetReplayUri(_trp__GetReplayUri *trp__GetReplayUri, _trp__GetReplayUriResponse &trp__GetReplayUriResponse) { return this->GetReplayUri(NULL, NULL, trp__GetReplayUri, trp__GetReplayUriResponse); } - /// Web service synchronous operation 'GetReplayUri' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetReplayUri(const char *soap_endpoint_url, const char *soap_action, _trp__GetReplayUri *trp__GetReplayUri, _trp__GetReplayUriResponse &trp__GetReplayUriResponse) { return this->send_GetReplayUri(soap_endpoint_url, soap_action, trp__GetReplayUri) || this->recv_GetReplayUri(trp__GetReplayUriResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetReplayUri' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetReplayUri(const char *soap_endpoint_url, const char *soap_action, _trp__GetReplayUri *trp__GetReplayUri); - /// Web service asynchronous operation 'recv_GetReplayUri' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetReplayUri(_trp__GetReplayUriResponse &trp__GetReplayUriResponse); - // - /// Web service synchronous operation 'GetReplayConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int GetReplayConfiguration(_trp__GetReplayConfiguration *trp__GetReplayConfiguration, _trp__GetReplayConfigurationResponse &trp__GetReplayConfigurationResponse) { return this->GetReplayConfiguration(NULL, NULL, trp__GetReplayConfiguration, trp__GetReplayConfigurationResponse); } - /// Web service synchronous operation 'GetReplayConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int GetReplayConfiguration(const char *soap_endpoint_url, const char *soap_action, _trp__GetReplayConfiguration *trp__GetReplayConfiguration, _trp__GetReplayConfigurationResponse &trp__GetReplayConfigurationResponse) { return this->send_GetReplayConfiguration(soap_endpoint_url, soap_action, trp__GetReplayConfiguration) || this->recv_GetReplayConfiguration(trp__GetReplayConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_GetReplayConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_GetReplayConfiguration(const char *soap_endpoint_url, const char *soap_action, _trp__GetReplayConfiguration *trp__GetReplayConfiguration); - /// Web service asynchronous operation 'recv_GetReplayConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_GetReplayConfiguration(_trp__GetReplayConfigurationResponse &trp__GetReplayConfigurationResponse); - // - /// Web service synchronous operation 'SetReplayConfiguration' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int SetReplayConfiguration(_trp__SetReplayConfiguration *trp__SetReplayConfiguration, _trp__SetReplayConfigurationResponse &trp__SetReplayConfigurationResponse) { return this->SetReplayConfiguration(NULL, NULL, trp__SetReplayConfiguration, trp__SetReplayConfigurationResponse); } - /// Web service synchronous operation 'SetReplayConfiguration' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int SetReplayConfiguration(const char *soap_endpoint_url, const char *soap_action, _trp__SetReplayConfiguration *trp__SetReplayConfiguration, _trp__SetReplayConfigurationResponse &trp__SetReplayConfigurationResponse) { return this->send_SetReplayConfiguration(soap_endpoint_url, soap_action, trp__SetReplayConfiguration) || this->recv_SetReplayConfiguration(trp__SetReplayConfigurationResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_SetReplayConfiguration' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_SetReplayConfiguration(const char *soap_endpoint_url, const char *soap_action, _trp__SetReplayConfiguration *trp__SetReplayConfiguration); - /// Web service asynchronous operation 'recv_SetReplayConfiguration' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_SetReplayConfiguration(_trp__SetReplayConfigurationResponse &trp__SetReplayConfigurationResponse); - }; -#endif diff --git a/gen/soapReplayBindingProxy.o b/gen/soapReplayBindingProxy.o deleted file mode 100644 index dfcd3e7..0000000 Binary files a/gen/soapReplayBindingProxy.o and /dev/null differ diff --git a/gen/soapReplayBindingService.h b/gen/soapReplayBindingService.h deleted file mode 100644 index 59dd1f7..0000000 --- a/gen/soapReplayBindingService.h +++ /dev/null @@ -1,112 +0,0 @@ -/* soapReplayBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapReplayBindingService_H -#define soapReplayBindingService_H -#include "soapH.h" - - class SOAP_CMAC ReplayBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - ReplayBindingService(); - /// Copy constructor - ReplayBindingService(const ReplayBindingService&); - /// Construct service given a shared managing context - ReplayBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - ReplayBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - ReplayBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~ReplayBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void ReplayBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual ReplayBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - ReplayBindingService& operator=(const ReplayBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_trp__GetServiceCapabilities *trp__GetServiceCapabilities, _trp__GetServiceCapabilitiesResponse &trp__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetReplayUri' implementation, should return SOAP_OK or error code - virtual int GetReplayUri(_trp__GetReplayUri *trp__GetReplayUri, _trp__GetReplayUriResponse &trp__GetReplayUriResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetReplayConfiguration' implementation, should return SOAP_OK or error code - virtual int GetReplayConfiguration(_trp__GetReplayConfiguration *trp__GetReplayConfiguration, _trp__GetReplayConfigurationResponse &trp__GetReplayConfigurationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'SetReplayConfiguration' implementation, should return SOAP_OK or error code - virtual int SetReplayConfiguration(_trp__SetReplayConfiguration *trp__SetReplayConfiguration, _trp__SetReplayConfigurationResponse &trp__SetReplayConfigurationResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapSearchBindingProxy.cpp b/gen/soapSearchBindingProxy.cpp deleted file mode 100644 index 94bf387..0000000 --- a/gen/soapSearchBindingProxy.cpp +++ /dev/null @@ -1,1011 +0,0 @@ -/* soapSearchBindingProxy.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapSearchBindingProxy.h" - -SearchBindingProxy::SearchBindingProxy() -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -SearchBindingProxy::SearchBindingProxy(const SearchBindingProxy& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; -} - -SearchBindingProxy::SearchBindingProxy(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - SearchBindingProxy_init(_soap->imode, _soap->omode); -} - -SearchBindingProxy::SearchBindingProxy(struct soap *_soap, const char *soap_endpoint_url) -{ this->soap = _soap; - this->soap_own = false; - SearchBindingProxy_init(_soap->imode, _soap->omode); - soap_endpoint = soap_endpoint_url; -} - -SearchBindingProxy::SearchBindingProxy(const char *soap_endpoint_url) -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); - soap_endpoint = soap_endpoint_url; -} - -SearchBindingProxy::SearchBindingProxy(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingProxy_init(iomode, iomode); -} - -SearchBindingProxy::SearchBindingProxy(const char *soap_endpoint_url, soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingProxy_init(iomode, iomode); - soap_endpoint = soap_endpoint_url; -} - -SearchBindingProxy::SearchBindingProxy(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingProxy_init(imode, omode); -} - -SearchBindingProxy::~SearchBindingProxy() -{ if (this->soap_own) - { SearchBindingProxy::destroy(); - soap_free(this->soap); - } -} - -void SearchBindingProxy::SearchBindingProxy_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - soap_endpoint = NULL; - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -SearchBindingProxy *SearchBindingProxy::copy() -{ SearchBindingProxy *dup = SOAP_NEW_UNMANAGED(SearchBindingProxy); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} - -SearchBindingProxy& SearchBindingProxy::operator=(const SearchBindingProxy& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - this->soap_endpoint = rhs.soap_endpoint; - } - return *this; -} - -void SearchBindingProxy::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void SearchBindingProxy::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - SearchBindingProxy_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -void SearchBindingProxy::soap_noheader() -{ this->soap->header = NULL; -} - -void SearchBindingProxy::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *SearchBindingProxy::soap_header() -{ return this->soap->header; -} - -::SOAP_ENV__Fault *SearchBindingProxy::soap_fault() -{ return this->soap->fault; -} - -const char *SearchBindingProxy::soap_fault_subcode() -{ return ::soap_fault_subcode(this->soap); -} - -const char *SearchBindingProxy::soap_fault_string() -{ return ::soap_fault_string(this->soap); -} - -const char *SearchBindingProxy::soap_fault_detail() -{ return ::soap_fault_detail(this->soap); -} - -int SearchBindingProxy::soap_close_socket() -{ return ::soap_closesock(this->soap); -} - -int SearchBindingProxy::soap_force_close_socket() -{ return ::soap_force_closesock(this->soap); -} - -void SearchBindingProxy::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void SearchBindingProxy::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *SearchBindingProxy::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -int SearchBindingProxy::send_GetServiceCapabilities(const char *soap_endpoint_url, const char *soap_action, _tse__GetServiceCapabilities *tse__GetServiceCapabilities) -{ - struct __tse__GetServiceCapabilities soap_tmp___tse__GetServiceCapabilities; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetServiceCapabilities"; - soap_tmp___tse__GetServiceCapabilities.tse__GetServiceCapabilities = tse__GetServiceCapabilities; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetServiceCapabilities(soap, &soap_tmp___tse__GetServiceCapabilities); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetServiceCapabilities(soap, &soap_tmp___tse__GetServiceCapabilities, "-tse:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetServiceCapabilities(soap, &soap_tmp___tse__GetServiceCapabilities, "-tse:GetServiceCapabilities", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetServiceCapabilities(_tse__GetServiceCapabilitiesResponse &tse__GetServiceCapabilitiesResponse) -{ - tse__GetServiceCapabilitiesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetServiceCapabilitiesResponse.soap_get(soap, "tse:GetServiceCapabilitiesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetRecordingSummary(const char *soap_endpoint_url, const char *soap_action, _tse__GetRecordingSummary *tse__GetRecordingSummary) -{ - struct __tse__GetRecordingSummary soap_tmp___tse__GetRecordingSummary; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetRecordingSummary"; - soap_tmp___tse__GetRecordingSummary.tse__GetRecordingSummary = tse__GetRecordingSummary; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetRecordingSummary(soap, &soap_tmp___tse__GetRecordingSummary); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetRecordingSummary(soap, &soap_tmp___tse__GetRecordingSummary, "-tse:GetRecordingSummary", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetRecordingSummary(soap, &soap_tmp___tse__GetRecordingSummary, "-tse:GetRecordingSummary", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetRecordingSummary(_tse__GetRecordingSummaryResponse &tse__GetRecordingSummaryResponse) -{ - tse__GetRecordingSummaryResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetRecordingSummaryResponse.soap_get(soap, "tse:GetRecordingSummaryResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetRecordingInformation(const char *soap_endpoint_url, const char *soap_action, _tse__GetRecordingInformation *tse__GetRecordingInformation) -{ - struct __tse__GetRecordingInformation soap_tmp___tse__GetRecordingInformation; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetRecordingInformation"; - soap_tmp___tse__GetRecordingInformation.tse__GetRecordingInformation = tse__GetRecordingInformation; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetRecordingInformation(soap, &soap_tmp___tse__GetRecordingInformation); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetRecordingInformation(soap, &soap_tmp___tse__GetRecordingInformation, "-tse:GetRecordingInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetRecordingInformation(soap, &soap_tmp___tse__GetRecordingInformation, "-tse:GetRecordingInformation", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetRecordingInformation(_tse__GetRecordingInformationResponse &tse__GetRecordingInformationResponse) -{ - tse__GetRecordingInformationResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetRecordingInformationResponse.soap_get(soap, "tse:GetRecordingInformationResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetMediaAttributes(const char *soap_endpoint_url, const char *soap_action, _tse__GetMediaAttributes *tse__GetMediaAttributes) -{ - struct __tse__GetMediaAttributes soap_tmp___tse__GetMediaAttributes; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetMediaAttributes"; - soap_tmp___tse__GetMediaAttributes.tse__GetMediaAttributes = tse__GetMediaAttributes; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetMediaAttributes(soap, &soap_tmp___tse__GetMediaAttributes); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetMediaAttributes(soap, &soap_tmp___tse__GetMediaAttributes, "-tse:GetMediaAttributes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetMediaAttributes(soap, &soap_tmp___tse__GetMediaAttributes, "-tse:GetMediaAttributes", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetMediaAttributes(_tse__GetMediaAttributesResponse &tse__GetMediaAttributesResponse) -{ - tse__GetMediaAttributesResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetMediaAttributesResponse.soap_get(soap, "tse:GetMediaAttributesResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_FindRecordings(const char *soap_endpoint_url, const char *soap_action, _tse__FindRecordings *tse__FindRecordings) -{ - struct __tse__FindRecordings soap_tmp___tse__FindRecordings; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/FindRecordings"; - soap_tmp___tse__FindRecordings.tse__FindRecordings = tse__FindRecordings; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__FindRecordings(soap, &soap_tmp___tse__FindRecordings); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindRecordings(soap, &soap_tmp___tse__FindRecordings, "-tse:FindRecordings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindRecordings(soap, &soap_tmp___tse__FindRecordings, "-tse:FindRecordings", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_FindRecordings(_tse__FindRecordingsResponse &tse__FindRecordingsResponse) -{ - tse__FindRecordingsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__FindRecordingsResponse.soap_get(soap, "tse:FindRecordingsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetRecordingSearchResults(const char *soap_endpoint_url, const char *soap_action, _tse__GetRecordingSearchResults *tse__GetRecordingSearchResults) -{ - struct __tse__GetRecordingSearchResults soap_tmp___tse__GetRecordingSearchResults; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetRecordingSearchResults"; - soap_tmp___tse__GetRecordingSearchResults.tse__GetRecordingSearchResults = tse__GetRecordingSearchResults; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetRecordingSearchResults(soap, &soap_tmp___tse__GetRecordingSearchResults); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetRecordingSearchResults(soap, &soap_tmp___tse__GetRecordingSearchResults, "-tse:GetRecordingSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetRecordingSearchResults(soap, &soap_tmp___tse__GetRecordingSearchResults, "-tse:GetRecordingSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetRecordingSearchResults(_tse__GetRecordingSearchResultsResponse &tse__GetRecordingSearchResultsResponse) -{ - tse__GetRecordingSearchResultsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetRecordingSearchResultsResponse.soap_get(soap, "tse:GetRecordingSearchResultsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_FindEvents(const char *soap_endpoint_url, const char *soap_action, _tse__FindEvents *tse__FindEvents) -{ - struct __tse__FindEvents soap_tmp___tse__FindEvents; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/FindEvents"; - soap_tmp___tse__FindEvents.tse__FindEvents = tse__FindEvents; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__FindEvents(soap, &soap_tmp___tse__FindEvents); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindEvents(soap, &soap_tmp___tse__FindEvents, "-tse:FindEvents", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindEvents(soap, &soap_tmp___tse__FindEvents, "-tse:FindEvents", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_FindEvents(_tse__FindEventsResponse &tse__FindEventsResponse) -{ - tse__FindEventsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__FindEventsResponse.soap_get(soap, "tse:FindEventsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetEventSearchResults(const char *soap_endpoint_url, const char *soap_action, _tse__GetEventSearchResults *tse__GetEventSearchResults) -{ - struct __tse__GetEventSearchResults soap_tmp___tse__GetEventSearchResults; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetEventSearchResults"; - soap_tmp___tse__GetEventSearchResults.tse__GetEventSearchResults = tse__GetEventSearchResults; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetEventSearchResults(soap, &soap_tmp___tse__GetEventSearchResults); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetEventSearchResults(soap, &soap_tmp___tse__GetEventSearchResults, "-tse:GetEventSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetEventSearchResults(soap, &soap_tmp___tse__GetEventSearchResults, "-tse:GetEventSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetEventSearchResults(_tse__GetEventSearchResultsResponse &tse__GetEventSearchResultsResponse) -{ - tse__GetEventSearchResultsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetEventSearchResultsResponse.soap_get(soap, "tse:GetEventSearchResultsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_FindPTZPosition(const char *soap_endpoint_url, const char *soap_action, _tse__FindPTZPosition *tse__FindPTZPosition) -{ - struct __tse__FindPTZPosition soap_tmp___tse__FindPTZPosition; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/FindPTZPosition"; - soap_tmp___tse__FindPTZPosition.tse__FindPTZPosition = tse__FindPTZPosition; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__FindPTZPosition(soap, &soap_tmp___tse__FindPTZPosition); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindPTZPosition(soap, &soap_tmp___tse__FindPTZPosition, "-tse:FindPTZPosition", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindPTZPosition(soap, &soap_tmp___tse__FindPTZPosition, "-tse:FindPTZPosition", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_FindPTZPosition(_tse__FindPTZPositionResponse &tse__FindPTZPositionResponse) -{ - tse__FindPTZPositionResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__FindPTZPositionResponse.soap_get(soap, "tse:FindPTZPositionResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetPTZPositionSearchResults(const char *soap_endpoint_url, const char *soap_action, _tse__GetPTZPositionSearchResults *tse__GetPTZPositionSearchResults) -{ - struct __tse__GetPTZPositionSearchResults soap_tmp___tse__GetPTZPositionSearchResults; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetPTZPositionSearchResults"; - soap_tmp___tse__GetPTZPositionSearchResults.tse__GetPTZPositionSearchResults = tse__GetPTZPositionSearchResults; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetPTZPositionSearchResults(soap, &soap_tmp___tse__GetPTZPositionSearchResults); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetPTZPositionSearchResults(soap, &soap_tmp___tse__GetPTZPositionSearchResults, "-tse:GetPTZPositionSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetPTZPositionSearchResults(soap, &soap_tmp___tse__GetPTZPositionSearchResults, "-tse:GetPTZPositionSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetPTZPositionSearchResults(_tse__GetPTZPositionSearchResultsResponse &tse__GetPTZPositionSearchResultsResponse) -{ - tse__GetPTZPositionSearchResultsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetPTZPositionSearchResultsResponse.soap_get(soap, "tse:GetPTZPositionSearchResultsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetSearchState(const char *soap_endpoint_url, const char *soap_action, _tse__GetSearchState *tse__GetSearchState) -{ - struct __tse__GetSearchState soap_tmp___tse__GetSearchState; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetSearchState"; - soap_tmp___tse__GetSearchState.tse__GetSearchState = tse__GetSearchState; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetSearchState(soap, &soap_tmp___tse__GetSearchState); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetSearchState(soap, &soap_tmp___tse__GetSearchState, "-tse:GetSearchState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetSearchState(soap, &soap_tmp___tse__GetSearchState, "-tse:GetSearchState", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetSearchState(_tse__GetSearchStateResponse &tse__GetSearchStateResponse) -{ - tse__GetSearchStateResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetSearchStateResponse.soap_get(soap, "tse:GetSearchStateResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_EndSearch(const char *soap_endpoint_url, const char *soap_action, _tse__EndSearch *tse__EndSearch) -{ - struct __tse__EndSearch soap_tmp___tse__EndSearch; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/EndSearch"; - soap_tmp___tse__EndSearch.tse__EndSearch = tse__EndSearch; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__EndSearch(soap, &soap_tmp___tse__EndSearch); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__EndSearch(soap, &soap_tmp___tse__EndSearch, "-tse:EndSearch", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__EndSearch(soap, &soap_tmp___tse__EndSearch, "-tse:EndSearch", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_EndSearch(_tse__EndSearchResponse &tse__EndSearchResponse) -{ - tse__EndSearchResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__EndSearchResponse.soap_get(soap, "tse:EndSearchResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_FindMetadata(const char *soap_endpoint_url, const char *soap_action, _tse__FindMetadata *tse__FindMetadata) -{ - struct __tse__FindMetadata soap_tmp___tse__FindMetadata; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/FindMetadata"; - soap_tmp___tse__FindMetadata.tse__FindMetadata = tse__FindMetadata; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__FindMetadata(soap, &soap_tmp___tse__FindMetadata); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindMetadata(soap, &soap_tmp___tse__FindMetadata, "-tse:FindMetadata", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__FindMetadata(soap, &soap_tmp___tse__FindMetadata, "-tse:FindMetadata", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_FindMetadata(_tse__FindMetadataResponse &tse__FindMetadataResponse) -{ - tse__FindMetadataResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__FindMetadataResponse.soap_get(soap, "tse:FindMetadataResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} - -int SearchBindingProxy::send_GetMetadataSearchResults(const char *soap_endpoint_url, const char *soap_action, _tse__GetMetadataSearchResults *tse__GetMetadataSearchResults) -{ - struct __tse__GetMetadataSearchResults soap_tmp___tse__GetMetadataSearchResults; - if (soap_endpoint_url != NULL) - soap_endpoint = soap_endpoint_url; - if (soap_action == NULL) - soap_action = "http://www.onvif.org/ver10/search/wsdl/GetMetadataSearchResults"; - soap_tmp___tse__GetMetadataSearchResults.tse__GetMetadataSearchResults = tse__GetMetadataSearchResults; - soap_begin(soap); - soap_set_version(soap, 2); /* use SOAP1.2 */ - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - soap_serialize___tse__GetMetadataSearchResults(soap, &soap_tmp___tse__GetMetadataSearchResults); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetMetadataSearchResults(soap, &soap_tmp___tse__GetMetadataSearchResults, "-tse:GetMetadataSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - } - if (soap_end_count(soap)) - return soap->error; - if (soap_connect(soap, soap_endpoint, soap_action) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || soap_put___tse__GetMetadataSearchResults(soap, &soap_tmp___tse__GetMetadataSearchResults, "-tse:GetMetadataSearchResults", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap_closesock(soap); - return SOAP_OK; -} - -int SearchBindingProxy::recv_GetMetadataSearchResults(_tse__GetMetadataSearchResultsResponse &tse__GetMetadataSearchResultsResponse) -{ - tse__GetMetadataSearchResultsResponse.soap_default(soap); - if (soap_begin_recv(soap) - || soap_envelope_begin_in(soap) - || soap_recv_header(soap) - || soap_body_begin_in(soap)) - return soap_closesock(soap); - tse__GetMetadataSearchResultsResponse.soap_get(soap, "tse:GetMetadataSearchResultsResponse", NULL); - if (soap->error) - return soap_recv_fault(soap, 0); - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap_closesock(soap); - return soap_closesock(soap); -} -/* End of client proxy code */ diff --git a/gen/soapSearchBindingProxy.o b/gen/soapSearchBindingProxy.o deleted file mode 100644 index a60417b..0000000 Binary files a/gen/soapSearchBindingProxy.o and /dev/null differ diff --git a/gen/soapSearchBindingService.cpp b/gen/soapSearchBindingService.cpp deleted file mode 100644 index f84d870..0000000 --- a/gen/soapSearchBindingService.cpp +++ /dev/null @@ -1,917 +0,0 @@ -/* soapSearchBindingService.cpp - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 --------------------------------------------------------------------------------- -*/ - -#include "soapSearchBindingService.h" - -SearchBindingService::SearchBindingService() -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -SearchBindingService::SearchBindingService(const SearchBindingService& rhs) -{ this->soap = rhs.soap; - this->soap_own = false; -} - -SearchBindingService::SearchBindingService(struct soap *_soap) -{ this->soap = _soap; - this->soap_own = false; - SearchBindingService_init(_soap->imode, _soap->omode); -} - -SearchBindingService::SearchBindingService(soap_mode iomode) -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingService_init(iomode, iomode); -} - -SearchBindingService::SearchBindingService(soap_mode imode, soap_mode omode) -{ this->soap = soap_new(); - this->soap_own = true; - SearchBindingService_init(imode, omode); -} - -SearchBindingService::~SearchBindingService() -{ if (this->soap_own) - { SearchBindingService::destroy(); - soap_free(this->soap); - } -} - -void SearchBindingService::SearchBindingService_init(soap_mode imode, soap_mode omode) -{ soap_imode(this->soap, imode); - soap_omode(this->soap, omode); - static const struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; - soap_set_namespaces(this->soap, namespaces); -} - -void SearchBindingService::destroy() -{ soap_destroy(this->soap); - soap_end(this->soap); -} - -void SearchBindingService::reset() -{ this->destroy(); - soap_done(this->soap); - soap_initialize(this->soap); - SearchBindingService_init(SOAP_IO_DEFAULT, SOAP_IO_DEFAULT); -} - -#ifndef WITH_PURE_VIRTUAL -SearchBindingService *SearchBindingService::copy() -{ SearchBindingService *dup = SOAP_NEW_UNMANAGED(SearchBindingService); - if (dup) - { soap_done(dup->soap); - soap_copy_context(dup->soap, this->soap); - } - return dup; -} -#endif - -SearchBindingService& SearchBindingService::operator=(const SearchBindingService& rhs) -{ if (this->soap != rhs.soap) - { if (this->soap_own) - soap_free(this->soap); - this->soap = rhs.soap; - this->soap_own = false; - } - return *this; -} - -int SearchBindingService::soap_close_socket() -{ return soap_closesock(this->soap); -} - -int SearchBindingService::soap_force_close_socket() -{ return soap_force_closesock(this->soap); -} - -int SearchBindingService::soap_senderfault(const char *string, const char *detailXML) -{ return ::soap_sender_fault(this->soap, string, detailXML); -} - -int SearchBindingService::soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_sender_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -int SearchBindingService::soap_receiverfault(const char *string, const char *detailXML) -{ return ::soap_receiver_fault(this->soap, string, detailXML); -} - -int SearchBindingService::soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML) -{ return ::soap_receiver_fault_subcode(this->soap, subcodeQName, string, detailXML); -} - -void SearchBindingService::soap_print_fault(FILE *fd) -{ ::soap_print_fault(this->soap, fd); -} - -#ifndef WITH_LEAN -#ifndef WITH_COMPAT -void SearchBindingService::soap_stream_fault(std::ostream& os) -{ ::soap_stream_fault(this->soap, os); -} -#endif - -char *SearchBindingService::soap_sprint_fault(char *buf, size_t len) -{ return ::soap_sprint_fault(this->soap, buf, len); -} -#endif - -void SearchBindingService::soap_noheader() -{ this->soap->header = NULL; -} - -void SearchBindingService::soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance) -{ - ::soap_header(this->soap); - this->soap->header->wsa__MessageID = wsa__MessageID; - this->soap->header->wsa__RelatesTo = wsa__RelatesTo; - this->soap->header->wsa__From = wsa__From; - this->soap->header->wsa__ReplyTo = wsa__ReplyTo; - this->soap->header->wsa__FaultTo = wsa__FaultTo; - this->soap->header->wsa__To = wsa__To; - this->soap->header->wsa__Action = wsa__Action; - this->soap->header->wsdd__AppSequence = wsdd__AppSequence; - this->soap->header->wsse__Security = wsse__Security; - this->soap->header->wsa5__MessageID = wsa5__MessageID; - this->soap->header->wsa5__RelatesTo = wsa5__RelatesTo; - this->soap->header->wsa5__From = wsa5__From; - this->soap->header->wsa5__ReplyTo = wsa5__ReplyTo; - this->soap->header->wsa5__FaultTo = wsa5__FaultTo; - this->soap->header->wsa5__To = wsa5__To; - this->soap->header->wsa5__Action = wsa5__Action; - this->soap->header->chan__ChannelInstance = chan__ChannelInstance; -} - -::SOAP_ENV__Header *SearchBindingService::soap_header() -{ return this->soap->header; -} - -#ifndef WITH_NOIO -int SearchBindingService::run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int SearchBindingService::ssl_run(int port, int backlog) -{ if (!soap_valid_socket(this->soap->master) && !soap_valid_socket(this->bind(NULL, port, backlog))) - return this->soap->error; - for (;;) - { if (!soap_valid_socket(this->accept())) - { if (this->soap->errnum == 0) // timeout? - this->soap->error = SOAP_OK; - break; - } - if (this->ssl_accept() || this->serve()) - break; - this->destroy(); - } - return this->soap->error; -} -#endif - -SOAP_SOCKET SearchBindingService::bind(const char *host, int port, int backlog) -{ return soap_bind(this->soap, host, port, backlog); -} - -SOAP_SOCKET SearchBindingService::accept() -{ return soap_accept(this->soap); -} - -#if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) -int SearchBindingService::ssl_accept() -{ return soap_ssl_accept(this->soap); -} -#endif -#endif - -int SearchBindingService::serve() -{ -#ifndef WITH_FASTCGI - this->soap->keep_alive = this->soap->max_keep_alive + 1; -#endif - do - { -#ifndef WITH_FASTCGI - if (this->soap->keep_alive > 0 && this->soap->max_keep_alive > 0) - this->soap->keep_alive--; -#endif - if (soap_begin_serve(this->soap)) - { if (this->soap->error >= SOAP_STOP) - continue; - return this->soap->error; - } - if ((dispatch() || (this->soap->fserveloop && this->soap->fserveloop(this->soap))) && this->soap->error && this->soap->error < SOAP_STOP) - { -#ifdef WITH_FASTCGI - soap_send_fault(this->soap); -#else - return soap_send_fault(this->soap); -#endif - } -#ifdef WITH_FASTCGI - soap_destroy(this->soap); - soap_end(this->soap); - } while (1); -#else - } while (this->soap->keep_alive); -#endif - return SOAP_OK; -} - -static int serve___tse__GetServiceCapabilities(struct soap*, SearchBindingService*); -static int serve___tse__GetRecordingSummary(struct soap*, SearchBindingService*); -static int serve___tse__GetRecordingInformation(struct soap*, SearchBindingService*); -static int serve___tse__GetMediaAttributes(struct soap*, SearchBindingService*); -static int serve___tse__FindRecordings(struct soap*, SearchBindingService*); -static int serve___tse__GetRecordingSearchResults(struct soap*, SearchBindingService*); -static int serve___tse__FindEvents(struct soap*, SearchBindingService*); -static int serve___tse__GetEventSearchResults(struct soap*, SearchBindingService*); -static int serve___tse__FindPTZPosition(struct soap*, SearchBindingService*); -static int serve___tse__GetPTZPositionSearchResults(struct soap*, SearchBindingService*); -static int serve___tse__GetSearchState(struct soap*, SearchBindingService*); -static int serve___tse__EndSearch(struct soap*, SearchBindingService*); -static int serve___tse__FindMetadata(struct soap*, SearchBindingService*); -static int serve___tse__GetMetadataSearchResults(struct soap*, SearchBindingService*); - -int SearchBindingService::dispatch() -{ return dispatch(this->soap); -} - -int SearchBindingService::dispatch(struct soap* soap) -{ - SearchBindingService_init(soap->imode, soap->omode); - (void)soap_peek_element(soap); - if (!soap_match_tag(soap, soap->tag, "tse:GetServiceCapabilities")) - return serve___tse__GetServiceCapabilities(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetRecordingSummary")) - return serve___tse__GetRecordingSummary(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetRecordingInformation")) - return serve___tse__GetRecordingInformation(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetMediaAttributes")) - return serve___tse__GetMediaAttributes(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:FindRecordings")) - return serve___tse__FindRecordings(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetRecordingSearchResults")) - return serve___tse__GetRecordingSearchResults(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:FindEvents")) - return serve___tse__FindEvents(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetEventSearchResults")) - return serve___tse__GetEventSearchResults(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:FindPTZPosition")) - return serve___tse__FindPTZPosition(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetPTZPositionSearchResults")) - return serve___tse__GetPTZPositionSearchResults(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetSearchState")) - return serve___tse__GetSearchState(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:EndSearch")) - return serve___tse__EndSearch(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:FindMetadata")) - return serve___tse__FindMetadata(soap, this); - if (!soap_match_tag(soap, soap->tag, "tse:GetMetadataSearchResults")) - return serve___tse__GetMetadataSearchResults(soap, this); - return soap->error = SOAP_NO_METHOD; -} - -static int serve___tse__GetServiceCapabilities(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetServiceCapabilities soap_tmp___tse__GetServiceCapabilities; - _tse__GetServiceCapabilitiesResponse tse__GetServiceCapabilitiesResponse; - tse__GetServiceCapabilitiesResponse.soap_default(soap); - soap_default___tse__GetServiceCapabilities(soap, &soap_tmp___tse__GetServiceCapabilities); - if (!soap_get___tse__GetServiceCapabilities(soap, &soap_tmp___tse__GetServiceCapabilities, "-tse:GetServiceCapabilities", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetServiceCapabilities(soap_tmp___tse__GetServiceCapabilities.tse__GetServiceCapabilities, tse__GetServiceCapabilitiesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetServiceCapabilitiesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetServiceCapabilitiesResponse.soap_put(soap, "tse:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetServiceCapabilitiesResponse.soap_put(soap, "tse:GetServiceCapabilitiesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetRecordingSummary(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetRecordingSummary soap_tmp___tse__GetRecordingSummary; - _tse__GetRecordingSummaryResponse tse__GetRecordingSummaryResponse; - tse__GetRecordingSummaryResponse.soap_default(soap); - soap_default___tse__GetRecordingSummary(soap, &soap_tmp___tse__GetRecordingSummary); - if (!soap_get___tse__GetRecordingSummary(soap, &soap_tmp___tse__GetRecordingSummary, "-tse:GetRecordingSummary", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetRecordingSummary(soap_tmp___tse__GetRecordingSummary.tse__GetRecordingSummary, tse__GetRecordingSummaryResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetRecordingSummaryResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetRecordingSummaryResponse.soap_put(soap, "tse:GetRecordingSummaryResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetRecordingSummaryResponse.soap_put(soap, "tse:GetRecordingSummaryResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetRecordingInformation(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetRecordingInformation soap_tmp___tse__GetRecordingInformation; - _tse__GetRecordingInformationResponse tse__GetRecordingInformationResponse; - tse__GetRecordingInformationResponse.soap_default(soap); - soap_default___tse__GetRecordingInformation(soap, &soap_tmp___tse__GetRecordingInformation); - if (!soap_get___tse__GetRecordingInformation(soap, &soap_tmp___tse__GetRecordingInformation, "-tse:GetRecordingInformation", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetRecordingInformation(soap_tmp___tse__GetRecordingInformation.tse__GetRecordingInformation, tse__GetRecordingInformationResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetRecordingInformationResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetRecordingInformationResponse.soap_put(soap, "tse:GetRecordingInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetRecordingInformationResponse.soap_put(soap, "tse:GetRecordingInformationResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetMediaAttributes(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetMediaAttributes soap_tmp___tse__GetMediaAttributes; - _tse__GetMediaAttributesResponse tse__GetMediaAttributesResponse; - tse__GetMediaAttributesResponse.soap_default(soap); - soap_default___tse__GetMediaAttributes(soap, &soap_tmp___tse__GetMediaAttributes); - if (!soap_get___tse__GetMediaAttributes(soap, &soap_tmp___tse__GetMediaAttributes, "-tse:GetMediaAttributes", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetMediaAttributes(soap_tmp___tse__GetMediaAttributes.tse__GetMediaAttributes, tse__GetMediaAttributesResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetMediaAttributesResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetMediaAttributesResponse.soap_put(soap, "tse:GetMediaAttributesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetMediaAttributesResponse.soap_put(soap, "tse:GetMediaAttributesResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__FindRecordings(struct soap *soap, SearchBindingService *service) -{ struct __tse__FindRecordings soap_tmp___tse__FindRecordings; - _tse__FindRecordingsResponse tse__FindRecordingsResponse; - tse__FindRecordingsResponse.soap_default(soap); - soap_default___tse__FindRecordings(soap, &soap_tmp___tse__FindRecordings); - if (!soap_get___tse__FindRecordings(soap, &soap_tmp___tse__FindRecordings, "-tse:FindRecordings", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->FindRecordings(soap_tmp___tse__FindRecordings.tse__FindRecordings, tse__FindRecordingsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__FindRecordingsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindRecordingsResponse.soap_put(soap, "tse:FindRecordingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindRecordingsResponse.soap_put(soap, "tse:FindRecordingsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetRecordingSearchResults(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetRecordingSearchResults soap_tmp___tse__GetRecordingSearchResults; - _tse__GetRecordingSearchResultsResponse tse__GetRecordingSearchResultsResponse; - tse__GetRecordingSearchResultsResponse.soap_default(soap); - soap_default___tse__GetRecordingSearchResults(soap, &soap_tmp___tse__GetRecordingSearchResults); - if (!soap_get___tse__GetRecordingSearchResults(soap, &soap_tmp___tse__GetRecordingSearchResults, "-tse:GetRecordingSearchResults", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetRecordingSearchResults(soap_tmp___tse__GetRecordingSearchResults.tse__GetRecordingSearchResults, tse__GetRecordingSearchResultsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetRecordingSearchResultsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetRecordingSearchResultsResponse.soap_put(soap, "tse:GetRecordingSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetRecordingSearchResultsResponse.soap_put(soap, "tse:GetRecordingSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__FindEvents(struct soap *soap, SearchBindingService *service) -{ struct __tse__FindEvents soap_tmp___tse__FindEvents; - _tse__FindEventsResponse tse__FindEventsResponse; - tse__FindEventsResponse.soap_default(soap); - soap_default___tse__FindEvents(soap, &soap_tmp___tse__FindEvents); - if (!soap_get___tse__FindEvents(soap, &soap_tmp___tse__FindEvents, "-tse:FindEvents", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->FindEvents(soap_tmp___tse__FindEvents.tse__FindEvents, tse__FindEventsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__FindEventsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindEventsResponse.soap_put(soap, "tse:FindEventsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindEventsResponse.soap_put(soap, "tse:FindEventsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetEventSearchResults(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetEventSearchResults soap_tmp___tse__GetEventSearchResults; - _tse__GetEventSearchResultsResponse tse__GetEventSearchResultsResponse; - tse__GetEventSearchResultsResponse.soap_default(soap); - soap_default___tse__GetEventSearchResults(soap, &soap_tmp___tse__GetEventSearchResults); - if (!soap_get___tse__GetEventSearchResults(soap, &soap_tmp___tse__GetEventSearchResults, "-tse:GetEventSearchResults", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetEventSearchResults(soap_tmp___tse__GetEventSearchResults.tse__GetEventSearchResults, tse__GetEventSearchResultsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetEventSearchResultsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetEventSearchResultsResponse.soap_put(soap, "tse:GetEventSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetEventSearchResultsResponse.soap_put(soap, "tse:GetEventSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__FindPTZPosition(struct soap *soap, SearchBindingService *service) -{ struct __tse__FindPTZPosition soap_tmp___tse__FindPTZPosition; - _tse__FindPTZPositionResponse tse__FindPTZPositionResponse; - tse__FindPTZPositionResponse.soap_default(soap); - soap_default___tse__FindPTZPosition(soap, &soap_tmp___tse__FindPTZPosition); - if (!soap_get___tse__FindPTZPosition(soap, &soap_tmp___tse__FindPTZPosition, "-tse:FindPTZPosition", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->FindPTZPosition(soap_tmp___tse__FindPTZPosition.tse__FindPTZPosition, tse__FindPTZPositionResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__FindPTZPositionResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindPTZPositionResponse.soap_put(soap, "tse:FindPTZPositionResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindPTZPositionResponse.soap_put(soap, "tse:FindPTZPositionResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetPTZPositionSearchResults(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetPTZPositionSearchResults soap_tmp___tse__GetPTZPositionSearchResults; - _tse__GetPTZPositionSearchResultsResponse tse__GetPTZPositionSearchResultsResponse; - tse__GetPTZPositionSearchResultsResponse.soap_default(soap); - soap_default___tse__GetPTZPositionSearchResults(soap, &soap_tmp___tse__GetPTZPositionSearchResults); - if (!soap_get___tse__GetPTZPositionSearchResults(soap, &soap_tmp___tse__GetPTZPositionSearchResults, "-tse:GetPTZPositionSearchResults", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetPTZPositionSearchResults(soap_tmp___tse__GetPTZPositionSearchResults.tse__GetPTZPositionSearchResults, tse__GetPTZPositionSearchResultsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetPTZPositionSearchResultsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetPTZPositionSearchResultsResponse.soap_put(soap, "tse:GetPTZPositionSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetPTZPositionSearchResultsResponse.soap_put(soap, "tse:GetPTZPositionSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetSearchState(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetSearchState soap_tmp___tse__GetSearchState; - _tse__GetSearchStateResponse tse__GetSearchStateResponse; - tse__GetSearchStateResponse.soap_default(soap); - soap_default___tse__GetSearchState(soap, &soap_tmp___tse__GetSearchState); - if (!soap_get___tse__GetSearchState(soap, &soap_tmp___tse__GetSearchState, "-tse:GetSearchState", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetSearchState(soap_tmp___tse__GetSearchState.tse__GetSearchState, tse__GetSearchStateResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetSearchStateResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetSearchStateResponse.soap_put(soap, "tse:GetSearchStateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetSearchStateResponse.soap_put(soap, "tse:GetSearchStateResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__EndSearch(struct soap *soap, SearchBindingService *service) -{ struct __tse__EndSearch soap_tmp___tse__EndSearch; - _tse__EndSearchResponse tse__EndSearchResponse; - tse__EndSearchResponse.soap_default(soap); - soap_default___tse__EndSearch(soap, &soap_tmp___tse__EndSearch); - if (!soap_get___tse__EndSearch(soap, &soap_tmp___tse__EndSearch, "-tse:EndSearch", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->EndSearch(soap_tmp___tse__EndSearch.tse__EndSearch, tse__EndSearchResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__EndSearchResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__EndSearchResponse.soap_put(soap, "tse:EndSearchResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__EndSearchResponse.soap_put(soap, "tse:EndSearchResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__FindMetadata(struct soap *soap, SearchBindingService *service) -{ struct __tse__FindMetadata soap_tmp___tse__FindMetadata; - _tse__FindMetadataResponse tse__FindMetadataResponse; - tse__FindMetadataResponse.soap_default(soap); - soap_default___tse__FindMetadata(soap, &soap_tmp___tse__FindMetadata); - if (!soap_get___tse__FindMetadata(soap, &soap_tmp___tse__FindMetadata, "-tse:FindMetadata", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->FindMetadata(soap_tmp___tse__FindMetadata.tse__FindMetadata, tse__FindMetadataResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__FindMetadataResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindMetadataResponse.soap_put(soap, "tse:FindMetadataResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__FindMetadataResponse.soap_put(soap, "tse:FindMetadataResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} - -static int serve___tse__GetMetadataSearchResults(struct soap *soap, SearchBindingService *service) -{ struct __tse__GetMetadataSearchResults soap_tmp___tse__GetMetadataSearchResults; - _tse__GetMetadataSearchResultsResponse tse__GetMetadataSearchResultsResponse; - tse__GetMetadataSearchResultsResponse.soap_default(soap); - soap_default___tse__GetMetadataSearchResults(soap, &soap_tmp___tse__GetMetadataSearchResults); - if (!soap_get___tse__GetMetadataSearchResults(soap, &soap_tmp___tse__GetMetadataSearchResults, "-tse:GetMetadataSearchResults", NULL)) - return soap->error; - if (soap_body_end_in(soap) - || soap_envelope_end_in(soap) - || soap_end_recv(soap)) - return soap->error; - soap->error = service->GetMetadataSearchResults(soap_tmp___tse__GetMetadataSearchResults.tse__GetMetadataSearchResults, tse__GetMetadataSearchResultsResponse); - if (soap->error) - return soap->error; - soap->encodingStyle = NULL; /* use SOAP literal style */ - soap_serializeheader(soap); - tse__GetMetadataSearchResultsResponse.soap_serialize(soap); - if (soap_begin_count(soap)) - return soap->error; - if ((soap->mode & SOAP_IO_LENGTH)) - { if (soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetMetadataSearchResultsResponse.soap_put(soap, "tse:GetMetadataSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap)) - return soap->error; - }; - if (soap_end_count(soap) - || soap_response(soap, SOAP_OK) - || soap_envelope_begin_out(soap) - || soap_putheader(soap) - || soap_body_begin_out(soap) - || tse__GetMetadataSearchResultsResponse.soap_put(soap, "tse:GetMetadataSearchResultsResponse", "") - || soap_body_end_out(soap) - || soap_envelope_end_out(soap) - || soap_end_send(soap)) - return soap->error; - return soap_closesock(soap); -} -/* End of server object code */ diff --git a/gen/soapSearchBindingService.h b/gen/soapSearchBindingService.h deleted file mode 100644 index bc785c3..0000000 --- a/gen/soapSearchBindingService.h +++ /dev/null @@ -1,142 +0,0 @@ -/* soapSearchBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapSearchBindingService_H -#define soapSearchBindingService_H -#include "soapH.h" - - class SOAP_CMAC SearchBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - SearchBindingService(); - /// Copy constructor - SearchBindingService(const SearchBindingService&); - /// Construct service given a shared managing context - SearchBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - SearchBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - SearchBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~SearchBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void SearchBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual SearchBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - SearchBindingService& operator=(const SearchBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'GetServiceCapabilities' implementation, should return SOAP_OK or error code - virtual int GetServiceCapabilities(_tse__GetServiceCapabilities *tse__GetServiceCapabilities, _tse__GetServiceCapabilitiesResponse &tse__GetServiceCapabilitiesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingSummary' implementation, should return SOAP_OK or error code - virtual int GetRecordingSummary(_tse__GetRecordingSummary *tse__GetRecordingSummary, _tse__GetRecordingSummaryResponse &tse__GetRecordingSummaryResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingInformation' implementation, should return SOAP_OK or error code - virtual int GetRecordingInformation(_tse__GetRecordingInformation *tse__GetRecordingInformation, _tse__GetRecordingInformationResponse &tse__GetRecordingInformationResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetMediaAttributes' implementation, should return SOAP_OK or error code - virtual int GetMediaAttributes(_tse__GetMediaAttributes *tse__GetMediaAttributes, _tse__GetMediaAttributesResponse &tse__GetMediaAttributesResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'FindRecordings' implementation, should return SOAP_OK or error code - virtual int FindRecordings(_tse__FindRecordings *tse__FindRecordings, _tse__FindRecordingsResponse &tse__FindRecordingsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetRecordingSearchResults' implementation, should return SOAP_OK or error code - virtual int GetRecordingSearchResults(_tse__GetRecordingSearchResults *tse__GetRecordingSearchResults, _tse__GetRecordingSearchResultsResponse &tse__GetRecordingSearchResultsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'FindEvents' implementation, should return SOAP_OK or error code - virtual int FindEvents(_tse__FindEvents *tse__FindEvents, _tse__FindEventsResponse &tse__FindEventsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetEventSearchResults' implementation, should return SOAP_OK or error code - virtual int GetEventSearchResults(_tse__GetEventSearchResults *tse__GetEventSearchResults, _tse__GetEventSearchResultsResponse &tse__GetEventSearchResultsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'FindPTZPosition' implementation, should return SOAP_OK or error code - virtual int FindPTZPosition(_tse__FindPTZPosition *tse__FindPTZPosition, _tse__FindPTZPositionResponse &tse__FindPTZPositionResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetPTZPositionSearchResults' implementation, should return SOAP_OK or error code - virtual int GetPTZPositionSearchResults(_tse__GetPTZPositionSearchResults *tse__GetPTZPositionSearchResults, _tse__GetPTZPositionSearchResultsResponse &tse__GetPTZPositionSearchResultsResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetSearchState' implementation, should return SOAP_OK or error code - virtual int GetSearchState(_tse__GetSearchState *tse__GetSearchState, _tse__GetSearchStateResponse &tse__GetSearchStateResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'EndSearch' implementation, should return SOAP_OK or error code - virtual int EndSearch(_tse__EndSearch *tse__EndSearch, _tse__EndSearchResponse &tse__EndSearchResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'FindMetadata' implementation, should return SOAP_OK or error code - virtual int FindMetadata(_tse__FindMetadata *tse__FindMetadata, _tse__FindMetadataResponse &tse__FindMetadataResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'GetMetadataSearchResults' implementation, should return SOAP_OK or error code - virtual int GetMetadataSearchResults(_tse__GetMetadataSearchResults *tse__GetMetadataSearchResults, _tse__GetMetadataSearchResultsResponse &tse__GetMetadataSearchResultsResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapSubscriptionManagerBindingProxy.h b/gen/soapSubscriptionManagerBindingProxy.h deleted file mode 100644 index 1ce93c4..0000000 --- a/gen/soapSubscriptionManagerBindingProxy.h +++ /dev/null @@ -1,102 +0,0 @@ -/* soapSubscriptionManagerBindingProxy.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapSubscriptionManagerBindingProxy_H -#define soapSubscriptionManagerBindingProxy_H -#include "soapH.h" - - class SOAP_CMAC SubscriptionManagerBindingProxy { - public: - /// Context to manage proxy IO and data - struct soap *soap; - /// flag indicating that this context is owned by this proxy and should be deleted by the destructor - bool soap_own; - /// Endpoint URL of service 'SubscriptionManagerBindingProxy' (change as needed) - const char *soap_endpoint; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a proxy with new managing context - SubscriptionManagerBindingProxy(); - /// Copy constructor - SubscriptionManagerBindingProxy(const SubscriptionManagerBindingProxy& rhs); - /// Construct proxy given a shared managing context - SubscriptionManagerBindingProxy(struct soap*); - /// Construct proxy given a shared managing context and endpoint URL - SubscriptionManagerBindingProxy(struct soap*, const char *soap_endpoint_url); - /// Constructor taking an endpoint URL - SubscriptionManagerBindingProxy(const char *soap_endpoint_url); - /// Constructor taking input and output mode flags for the new managing context - SubscriptionManagerBindingProxy(soap_mode iomode); - /// Constructor taking endpoint URL and input and output mode flags for the new managing context - SubscriptionManagerBindingProxy(const char *soap_endpoint_url, soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - SubscriptionManagerBindingProxy(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~SubscriptionManagerBindingProxy(); - /// Initializer used by constructors - virtual void SubscriptionManagerBindingProxy_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual SubscriptionManagerBindingProxy *copy(); - /// Copy assignment - SubscriptionManagerBindingProxy& operator=(const SubscriptionManagerBindingProxy&); - /// Delete all deserialized data (uses soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to default - virtual void reset(); - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - /// Get SOAP Fault structure (i.e. soap->fault, which is NULL when absent) - virtual ::SOAP_ENV__Fault *soap_fault(); - /// Get SOAP Fault subcode QName string (NULL when absent) - virtual const char *soap_fault_subcode(); - /// Get SOAP Fault string/reason (NULL when absent) - virtual const char *soap_fault_string(); - /// Get SOAP Fault detail XML string (NULL when absent) - virtual const char *soap_fault_detail(); - /// Close connection (normally automatic, except for send_X ops) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - // - /// Web service synchronous operation 'Renew' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int Renew(_wsnt__Renew *wsnt__Renew, _wsnt__RenewResponse &wsnt__RenewResponse) { return this->Renew(NULL, NULL, wsnt__Renew, wsnt__RenewResponse); } - /// Web service synchronous operation 'Renew' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int Renew(const char *soap_endpoint_url, const char *soap_action, _wsnt__Renew *wsnt__Renew, _wsnt__RenewResponse &wsnt__RenewResponse) { return this->send_Renew(soap_endpoint_url, soap_action, wsnt__Renew) || this->recv_Renew(wsnt__RenewResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_Renew' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_Renew(const char *soap_endpoint_url, const char *soap_action, _wsnt__Renew *wsnt__Renew); - /// Web service asynchronous operation 'recv_Renew' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_Renew(_wsnt__RenewResponse &wsnt__RenewResponse); - // - /// Web service synchronous operation 'Unsubscribe' with default endpoint and default SOAP Action header, returns SOAP_OK or error code - virtual int Unsubscribe(_wsnt__Unsubscribe *wsnt__Unsubscribe, _wsnt__UnsubscribeResponse &wsnt__UnsubscribeResponse) { return this->Unsubscribe(NULL, NULL, wsnt__Unsubscribe, wsnt__UnsubscribeResponse); } - /// Web service synchronous operation 'Unsubscribe' to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int Unsubscribe(const char *soap_endpoint_url, const char *soap_action, _wsnt__Unsubscribe *wsnt__Unsubscribe, _wsnt__UnsubscribeResponse &wsnt__UnsubscribeResponse) { return this->send_Unsubscribe(soap_endpoint_url, soap_action, wsnt__Unsubscribe) || this->recv_Unsubscribe(wsnt__UnsubscribeResponse) ? this->soap->error : SOAP_OK; } - /// Web service asynchronous operation 'send_Unsubscribe' to send a request message to the specified endpoint and SOAP Action header, returns SOAP_OK or error code - virtual int send_Unsubscribe(const char *soap_endpoint_url, const char *soap_action, _wsnt__Unsubscribe *wsnt__Unsubscribe); - /// Web service asynchronous operation 'recv_Unsubscribe' to receive a response message from the connected endpoint, returns SOAP_OK or error code - virtual int recv_Unsubscribe(_wsnt__UnsubscribeResponse &wsnt__UnsubscribeResponse); - }; -#endif diff --git a/gen/soapSubscriptionManagerBindingProxy.o b/gen/soapSubscriptionManagerBindingProxy.o deleted file mode 100644 index 528a913..0000000 Binary files a/gen/soapSubscriptionManagerBindingProxy.o and /dev/null differ diff --git a/gen/soapSubscriptionManagerBindingService.h b/gen/soapSubscriptionManagerBindingService.h deleted file mode 100644 index 13c5fce..0000000 --- a/gen/soapSubscriptionManagerBindingService.h +++ /dev/null @@ -1,106 +0,0 @@ -/* soapSubscriptionManagerBindingService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapSubscriptionManagerBindingService_H -#define soapSubscriptionManagerBindingService_H -#include "soapH.h" - - class SOAP_CMAC SubscriptionManagerBindingService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - SubscriptionManagerBindingService(); - /// Copy constructor - SubscriptionManagerBindingService(const SubscriptionManagerBindingService&); - /// Construct service given a shared managing context - SubscriptionManagerBindingService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - SubscriptionManagerBindingService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - SubscriptionManagerBindingService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~SubscriptionManagerBindingService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void SubscriptionManagerBindingService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual SubscriptionManagerBindingService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - SubscriptionManagerBindingService& operator=(const SubscriptionManagerBindingService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service operation 'Renew' implementation, should return SOAP_OK or error code - virtual int Renew(_wsnt__Renew *wsnt__Renew, _wsnt__RenewResponse &wsnt__RenewResponse) SOAP_PURE_VIRTUAL; - // - /// Web service operation 'Unsubscribe' implementation, should return SOAP_OK or error code - virtual int Unsubscribe(_wsnt__Unsubscribe *wsnt__Unsubscribe, _wsnt__UnsubscribeResponse &wsnt__UnsubscribeResponse) SOAP_PURE_VIRTUAL; - }; -#endif diff --git a/gen/soapSubscriptionManagerBindingService.o b/gen/soapSubscriptionManagerBindingService.o deleted file mode 100644 index 333ca1e..0000000 Binary files a/gen/soapSubscriptionManagerBindingService.o and /dev/null differ diff --git a/gen/soapwsddService.h b/gen/soapwsddService.h deleted file mode 100644 index 7055f0f..0000000 --- a/gen/soapwsddService.h +++ /dev/null @@ -1,130 +0,0 @@ -/* soapwsddService.h - Generated by gSOAP 2.8.138 for gen/onvif.h - -gSOAP XML Web services tools -Copyright (C) 2000-2025, 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 soapwsddService_H -#define soapwsddService_H -#include "soapH.h" - - class SOAP_CMAC wsddService { - public: - /// Context to manage service IO and data - struct soap *soap; - /// flag indicating that this context is owned by this service and should be deleted by the destructor - bool soap_own; - /// Variables globally declared in gen/onvif.h, if any - /// Construct a service with new managing context - wsddService(); - /// Copy constructor - wsddService(const wsddService&); - /// Construct service given a shared managing context - wsddService(struct soap*); - /// Constructor taking input+output mode flags for the new managing context - wsddService(soap_mode iomode); - /// Constructor taking input and output mode flags for the new managing context - wsddService(soap_mode imode, soap_mode omode); - /// Destructor deletes deserialized data and its managing context, when the context was allocated by the constructor - virtual ~wsddService(); - /// Delete all deserialized data (with soap_destroy() and soap_end()) - virtual void destroy(); - /// Delete all deserialized data and reset to defaults - virtual void reset(); - /// Initializer used by constructors - virtual void wsddService_init(soap_mode imode, soap_mode omode); - /// Return a copy that has a new managing context with the same engine state - virtual wsddService *copy() SOAP_PURE_VIRTUAL_COPY; - /// Copy assignment - wsddService& operator=(const wsddService&); - /// Close connection (normally automatic) - virtual int soap_close_socket(); - /// Force close connection (can kill a thread blocked on IO) - virtual int soap_force_close_socket(); - /// Return sender-related fault to sender - virtual int soap_senderfault(const char *string, const char *detailXML); - /// Return sender-related fault with SOAP 1.2 subcode to sender - virtual int soap_senderfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Return receiver-related fault to sender - virtual int soap_receiverfault(const char *string, const char *detailXML); - /// Return receiver-related fault with SOAP 1.2 subcode to sender - virtual int soap_receiverfault(const char *subcodeQName, const char *string, const char *detailXML); - /// Print fault - virtual void soap_print_fault(FILE*); - #ifndef WITH_LEAN - #ifndef WITH_COMPAT - /// Print fault to stream - virtual void soap_stream_fault(std::ostream&); - #endif - /// Write fault to buffer - virtual char *soap_sprint_fault(char *buf, size_t len); - #endif - /// Disables and removes SOAP Header from message by setting soap->header = NULL - virtual void soap_noheader(); - /// Add SOAP Header to message - virtual void soap_header(char *wsa__MessageID, struct wsa__Relationship *wsa__RelatesTo, struct wsa__EndpointReferenceType *wsa__From, struct wsa__EndpointReferenceType *wsa__ReplyTo, struct wsa__EndpointReferenceType *wsa__FaultTo, char *wsa__To, char *wsa__Action, struct wsdd__AppSequenceType *wsdd__AppSequence, struct _wsse__Security *wsse__Security, char *wsa5__MessageID, struct wsa5__RelatesToType *wsa5__RelatesTo, struct wsa5__EndpointReferenceType *wsa5__From, struct wsa5__EndpointReferenceType *wsa5__ReplyTo, struct wsa5__EndpointReferenceType *wsa5__FaultTo, char *wsa5__To, char *wsa5__Action, struct chan__ChannelInstanceType *chan__ChannelInstance); - /// Get SOAP Header structure (i.e. soap->header, which is NULL when absent) - virtual ::SOAP_ENV__Header *soap_header(); - #ifndef WITH_NOIO - /// Run simple single-thread (iterative, non-SSL) service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int run(int port, int backlog = 1); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// Run simple single-thread SSL service on port until a connection error occurs (returns SOAP_OK or error code), use this->bind_flag = SO_REUSEADDR to rebind for immediate rerun - virtual int ssl_run(int port, int backlog = 1); - #endif - /// Bind service to port (returns master socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET bind(const char *host, int port, int backlog); - /// Accept next request (returns socket or SOAP_INVALID_SOCKET upon error) - virtual SOAP_SOCKET accept(); - #if defined(WITH_OPENSSL) || defined(WITH_GNUTLS) - /// When SSL is used, after accept() should perform and accept SSL handshake - virtual int ssl_accept(); - #endif - #endif - /// After accept() serve the pending request (returns SOAP_OK or error code) - virtual int serve(); - /// Used by serve() to dispatch a pending request (returns SOAP_OK or error code) - virtual int dispatch(); - virtual int dispatch(struct soap *soap); - // - // Service operations are listed below: you should define these - // Note: compile with -DWITH_PURE_VIRTUAL to declare pure virtual methods - // - /// Web service one-way operation 'Hello' implementation, should return value of send_Hello_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int Hello(struct wsdd__HelloType *wsdd__Hello) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'Hello', returns SOAP_OK or error code - virtual int send_Hello_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - // - /// Web service one-way operation 'Bye' implementation, should return value of send_Bye_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int Bye(struct wsdd__ByeType *wsdd__Bye) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'Bye', returns SOAP_OK or error code - virtual int send_Bye_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - // - /// Web service one-way operation 'Probe' implementation, should return value of send_Probe_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int Probe(struct wsdd__ProbeType *wsdd__Probe) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'Probe', returns SOAP_OK or error code - virtual int send_Probe_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - // - /// Web service one-way operation 'ProbeMatches' implementation, should return value of send_ProbeMatches_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int ProbeMatches(struct wsdd__ProbeMatchesType *wsdd__ProbeMatches) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'ProbeMatches', returns SOAP_OK or error code - virtual int send_ProbeMatches_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - // - /// Web service one-way operation 'Resolve' implementation, should return value of send_Resolve_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int Resolve(struct wsdd__ResolveType *wsdd__Resolve) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'Resolve', returns SOAP_OK or error code - virtual int send_Resolve_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - // - /// Web service one-way operation 'ResolveMatches' implementation, should return value of send_ResolveMatches_empty_response() to send HTTP Accept acknowledgment, or return an error code, or return SOAP_OK to immediately return without sending an HTTP response message - virtual int ResolveMatches(struct wsdd__ResolveMatchesType *wsdd__ResolveMatches) SOAP_PURE_VIRTUAL; - /// Web service asynchronous send of HTTP Accept acknowledgment to be called in 'ResolveMatches', returns SOAP_OK or error code - virtual int send_ResolveMatches_empty_response(int soap_http_status = 202) { return soap_send_empty_response(this->soap, soap_http_status); } - }; -#endif diff --git a/gen/wsdd.nsmap b/gen/wsdd.nsmap deleted file mode 100644 index f6956ba..0000000 --- a/gen/wsdd.nsmap +++ /dev/null @@ -1,49 +0,0 @@ - -#include "stdsoap2.h" -/* This defines the global XML namespaces[] table to #include and compile - The first four entries are mandatory and should not be removed */ -SOAP_NMAC struct Namespace namespaces[] = { - { "SOAP-ENV", "http://www.w3.org/2003/05/soap-envelope", "http://schemas.xmlsoap.org/soap/envelope/", NULL }, - { "SOAP-ENC", "http://www.w3.org/2003/05/soap-encoding", "http://schemas.xmlsoap.org/soap/encoding/", NULL }, - { "xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/*/XMLSchema-instance", NULL }, - { "xsd", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/*/XMLSchema", NULL }, - { "wsa", "http://schemas.xmlsoap.org/ws/2004/08/addressing", "http://www.w3.org/2005/08/addressing", NULL }, - { "wsdd", "http://schemas.xmlsoap.org/ws/2005/04/discovery", NULL, NULL }, - { "c14n", "http://www.w3.org/2001/10/xml-exc-c14n#", NULL, NULL }, - { "ds", "http://www.w3.org/2000/09/xmldsig#", NULL, NULL }, - { "saml1", "urn:oasis:names:tc:SAML:1.0:assertion", NULL, NULL }, - { "saml2", "urn:oasis:names:tc:SAML:2.0:assertion", NULL, NULL }, - { "wsu", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd", NULL, NULL }, - { "xenc", "http://www.w3.org/2001/04/xmlenc#", NULL, NULL }, - { "wsc", "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512", "http://schemas.xmlsoap.org/ws/2005/02/sc", NULL }, - { "wsse", "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd", NULL }, - { "chan", "http://schemas.microsoft.com/ws/2005/02/duplex", NULL, NULL }, - { "wsa5", "http://www.w3.org/2005/08/addressing", "http://schemas.xmlsoap.org/ws/2004/08/addressing", NULL }, - { "wsrfbf", "http://docs.oasis-open.org/wsrf/bf-2", NULL, NULL }, - { "xmime", "http://www.w3.org/2005/05/xmlmime", NULL, NULL }, - { "xop", "http://www.w3.org/2004/08/xop/include", NULL, NULL }, - { "tt", "http://www.onvif.org/ver10/schema", NULL, NULL }, - { "wstop", "http://docs.oasis-open.org/wsn/t-1", NULL, NULL }, - { "wsrfr", "http://docs.oasis-open.org/wsrf/r-2", NULL, NULL }, - { "tds", "http://www.onvif.org/ver10/device/wsdl", NULL, NULL }, - { "tevcpp", "http://www.onvif.org/ver10/events/wsdl/CreatePullPointBinding", NULL, NULL }, - { "teve", "http://www.onvif.org/ver10/events/wsdl/EventBinding", NULL, NULL }, - { "tevnc", "http://www.onvif.org/ver10/events/wsdl/NotificationConsumerBinding", NULL, NULL }, - { "tevnp", "http://www.onvif.org/ver10/events/wsdl/NotificationProducerBinding", NULL, NULL }, - { "tevpp", "http://www.onvif.org/ver10/events/wsdl/PullPointBinding", NULL, NULL }, - { "tevpps", "http://www.onvif.org/ver10/events/wsdl/PullPointSubscriptionBinding", NULL, NULL }, - { "tev", "http://www.onvif.org/ver10/events/wsdl", NULL, NULL }, - { "tevps", "http://www.onvif.org/ver10/events/wsdl/PausableSubscriptionManagerBinding", NULL, NULL }, - { "wsnt", "http://docs.oasis-open.org/wsn/b-2", NULL, NULL }, - { "tevs", "http://www.onvif.org/ver10/events/wsdl/SubscriptionManagerBinding", NULL, NULL }, - { "timg", "http://www.onvif.org/ver20/imaging/wsdl", NULL, NULL }, - { "tls", "http://www.onvif.org/ver10/display/wsdl", NULL, NULL }, - { "tmd", "http://www.onvif.org/ver10/deviceIO/wsdl", NULL, NULL }, - { "tptz", "http://www.onvif.org/ver20/ptz/wsdl", NULL, NULL }, - { "trc", "http://www.onvif.org/ver10/recording/wsdl", NULL, NULL }, - { "trp", "http://www.onvif.org/ver10/replay/wsdl", NULL, NULL }, - { "trt", "http://www.onvif.org/ver10/media/wsdl", NULL, NULL }, - { "trv", "http://www.onvif.org/ver10/receiver/wsdl", NULL, NULL }, - { "tse", "http://www.onvif.org/ver10/search/wsdl", NULL, NULL }, - { NULL, NULL, NULL, NULL} /* end of namespaces[] */ - }; diff --git a/libclient.a b/libclient.a deleted file mode 100644 index 6011d04..0000000 Binary files a/libclient.a and /dev/null differ diff --git a/libonvif.a b/libonvif.a deleted file mode 100644 index 4e91e56..0000000 Binary files a/libonvif.a and /dev/null differ diff --git a/libserver.a b/libserver.a deleted file mode 100644 index dd0d0e4..0000000 Binary files a/libserver.a and /dev/null differ diff --git a/onvif-server.exe b/onvif-server.exe index 2f305b7..c34f192 100755 Binary files a/onvif-server.exe and b/onvif-server.exe differ diff --git a/src/serverDevice.o b/src/serverDevice.o index 7f9fc8e..4043052 100644 Binary files a/src/serverDevice.o and b/src/serverDevice.o differ diff --git a/ws-discovery/gsoap/libwsdd.a b/ws-discovery/gsoap/libwsdd.a deleted file mode 100644 index 8003eb8..0000000 Binary files a/ws-discovery/gsoap/libwsdd.a and /dev/null differ